content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
data { // numbers of things int<lower=1> I; // items int<lower=1> S; // subjects int<lower=1> R; // responses int<lower=1> G; // grades // training data int<lower=1,upper=I> item[R]; int<lower=1,upper=S> subject[R]; int<lower=1,upper=G> grade[R]; // test data int<lower=1> R_holdout; int<lower=1,upper=I> item_holdout[R_holdout]; int<lower=1,upper=S> subject_holdout[R_holdout]; } parameters { // parameters ordered[G-1] difficulty[I]; vector[S] ability; // hyperparameters real mu_first_difficulty; real<lower=0> sigma_ability; real<lower=0> sigma_first_difficulty; real<lower=0> sigma_step; } model { // priors ability ~ normal(0, sigma_ability); difficulty[1:I, 1] ~ normal(mu_first_difficulty, sigma_first_difficulty); // prior for easiest grades for (i in 1:I){ difficulty[i, 2:G-1] - difficulty[i, 1:G-2] ~ normal(0, sigma_step); // priors for steps between grades } // data model for (response in 1:R){ grade[response] ~ ordered_logistic(ability[subject[response]], difficulty[item[response]]);} } generated quantities { int<lower=0,upper=G> predicted_grade[R_holdout]; for (response in 1:R_holdout) { predicted_grade[response] = ordered_logistic_rng(ability[subject_holdout[response]], difficulty[item_holdout[response]]); } }
Stan
5
simeond/stancon_talks
2017/Contributed-Talks/06_groves/graded_irt_xval.stan
[ "CC-BY-4.0", "BSD-3-Clause" ]
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target 20.00,4.45,0.12,4.45,0.12,-0.12,-0.05,0.02,4.33,4.33,4.33 20.20,4.44,0.12,4.45,0.12,-0.13,-0.05,0.02,4.32,4.32,4.32 20.40,4.43,0.12,4.44,0.13,-0.13,-0.05,0.02,4.30,4.31,4.31 20.61,4.43,0.13,4.43,0.13,-0.13,-0.05,0.03,4.30,4.30,4.30 20.81,4.42,0.14,4.42,0.14,-0.14,-0.05,0.03,4.29,4.29,4.28 21.02,4.41,0.14,4.42,0.14,-0.14,-0.06,0.03,4.27,4.28,4.27 21.23,4.40,0.15,4.41,0.14,-0.14,-0.06,0.03,4.26,4.27,4.26 21.44,4.40,0.14,4.40,0.14,-0.14,-0.06,0.03,4.26,4.26,4.27 21.66,4.39,0.15,4.39,0.14,-0.15,-0.06,0.03,4.25,4.25,4.25 21.87,4.38,0.14,4.39,0.14,-0.15,-0.06,0.04,4.24,4.24,4.25 22.09,4.38,0.16,4.38,0.15,-0.15,-0.06,0.04,4.24,4.23,4.23 22.31,4.37,0.15,4.37,0.15,-0.15,-0.06,0.04,4.23,4.23,4.23 22.54,4.36,0.15,4.37,0.15,-0.15,-0.06,0.04,4.22,4.22,4.22 22.76,4.36,0.15,4.36,0.15,-0.15,-0.07,0.04,4.21,4.21,4.22 22.99,4.35,0.15,4.35,0.15,-0.15,-0.07,0.04,4.21,4.21,4.21 23.22,4.34,0.15,4.35,0.15,-0.15,-0.07,0.05,4.20,4.20,4.19 23.45,4.34,0.14,4.34,0.14,-0.14,-0.07,0.05,4.20,4.20,4.20 23.69,4.33,0.14,4.33,0.14,-0.14,-0.07,0.05,4.19,4.19,4.19 23.92,4.32,0.14,4.33,0.14,-0.13,-0.07,0.05,4.19,4.19,4.18 24.16,4.32,0.13,4.32,0.13,-0.13,-0.07,0.06,4.19,4.19,4.19 24.40,4.31,0.12,4.31,0.12,-0.13,-0.08,0.06,4.19,4.19,4.19 24.65,4.30,0.11,4.31,0.11,-0.12,-0.08,0.06,4.18,4.18,4.19 24.89,4.29,0.10,4.30,0.11,-0.11,-0.08,0.06,4.18,4.18,4.19 25.14,4.29,0.11,4.29,0.11,-0.11,-0.08,0.06,4.19,4.18,4.18 25.39,4.28,0.11,4.28,0.11,-0.10,-0.08,0.07,4.18,4.18,4.18 25.65,4.27,0.10,4.27,0.10,-0.09,-0.08,0.07,4.18,4.18,4.18 25.91,4.26,0.09,4.26,0.08,-0.08,-0.09,0.07,4.18,4.18,4.18 26.16,4.25,0.07,4.25,0.07,-0.07,-0.09,0.07,4.18,4.18,4.19 26.43,4.24,0.06,4.24,0.06,-0.06,-0.09,0.07,4.18,4.18,4.18 26.69,4.23,0.05,4.23,0.05,-0.05,-0.09,0.07,4.18,4.18,4.18 26.96,4.22,0.04,4.22,0.04,-0.04,-0.09,0.08,4.18,4.18,4.18 27.23,4.21,0.03,4.21,0.03,-0.03,-0.09,0.08,4.18,4.18,4.18 27.50,4.20,0.02,4.21,0.02,-0.02,-0.10,0.08,4.18,4.19,4.18 27.77,4.20,0.01,4.20,0.01,-0.01,-0.10,0.08,4.19,4.19,4.19 28.05,4.19,0.01,4.19,0.00,0.00,-0.10,0.08,4.19,4.19,4.19 28.33,4.18,-0.01,4.18,-0.01,0.01,-0.10,0.08,4.20,4.20,4.20 28.62,4.17,-0.02,4.17,-0.03,0.02,-0.10,0.08,4.20,4.20,4.20 28.90,4.16,-0.04,4.16,-0.04,0.03,-0.11,0.08,4.20,4.20,4.20 29.19,4.15,-0.05,4.16,-0.05,0.04,-0.11,0.08,4.20,4.20,4.20 29.48,4.15,-0.05,4.15,-0.05,0.05,-0.11,0.08,4.20,4.20,4.20 29.78,4.14,-0.06,4.14,-0.06,0.06,-0.11,0.08,4.20,4.20,4.20 30.08,4.13,-0.06,4.13,-0.06,0.06,-0.12,0.08,4.20,4.20,4.20 30.38,4.12,-0.06,4.12,-0.07,0.07,-0.12,0.07,4.19,4.19,4.19 30.68,4.11,-0.07,4.11,-0.07,0.07,-0.12,0.07,4.19,4.19,4.18 30.99,4.10,-0.08,4.10,-0.08,0.08,-0.12,0.07,4.18,4.18,4.18 31.30,4.09,-0.09,4.09,-0.09,0.08,-0.13,0.07,4.18,4.18,4.18 31.61,4.08,-0.10,4.08,-0.09,0.09,-0.13,0.06,4.17,4.17,4.18 31.93,4.06,-0.09,4.07,-0.10,0.10,-0.13,0.06,4.16,4.17,4.16 32.24,4.06,-0.10,4.06,-0.10,0.10,-0.13,0.05,4.16,4.16,4.16 32.57,4.05,-0.10,4.05,-0.10,0.10,-0.14,0.05,4.16,4.16,4.15 32.89,4.04,-0.11,4.05,-0.10,0.10,-0.14,0.04,4.15,4.15,4.15 33.22,4.04,-0.10,4.04,-0.11,0.10,-0.14,0.04,4.15,4.14,4.15 33.55,4.03,-0.11,4.03,-0.11,0.10,-0.14,0.03,4.14,4.14,4.15 33.89,4.02,-0.11,4.03,-0.11,0.11,-0.15,0.03,4.13,4.13,4.13 34.23,4.02,-0.10,4.02,-0.10,0.11,-0.15,0.02,4.13,4.13,4.12 34.57,4.01,-0.10,4.01,-0.10,0.11,-0.15,0.01,4.12,4.12,4.12 34.92,4.00,-0.10,4.01,-0.11,0.11,-0.16,0.00,4.12,4.12,4.10 35.27,3.99,-0.13,3.99,-0.12,0.12,-0.16,-0.00,4.11,4.11,4.12 35.62,3.98,-0.11,3.98,-0.12,0.12,-0.16,-0.01,4.10,4.10,4.10 35.97,3.96,-0.13,3.97,-0.13,0.12,-0.17,-0.02,4.08,4.09,4.10 36.33,3.95,-0.13,3.95,-0.12,0.12,-0.17,-0.03,4.07,4.07,4.08 36.70,3.94,-0.11,3.94,-0.12,0.12,-0.17,-0.04,4.06,4.06,4.06 37.06,3.93,-0.11,3.93,-0.11,0.11,-0.18,-0.05,4.05,4.05,4.04 37.43,3.92,-0.11,3.92,-0.11,0.11,-0.18,-0.06,4.03,4.03,4.03 37.81,3.91,-0.10,3.92,-0.10,0.10,-0.18,-0.07,4.01,4.01,4.02 38.19,3.91,-0.08,3.91,-0.09,0.09,-0.19,-0.07,4.00,4.00,3.99 38.57,3.90,-0.07,3.90,-0.08,0.08,-0.19,-0.08,3.98,3.98,3.98 38.95,3.89,-0.07,3.89,-0.06,0.07,-0.19,-0.09,3.96,3.96,3.96 39.34,3.88,-0.06,3.88,-0.05,0.06,-0.20,-0.11,3.94,3.94,3.94 39.74,3.87,-0.04,3.87,-0.05,0.05,-0.20,-0.12,3.92,3.92,3.91 40.14,3.86,-0.04,3.86,-0.04,0.04,-0.21,-0.13,3.90,3.90,3.90 40.54,3.84,-0.04,3.85,-0.03,0.03,-0.21,-0.14,3.88,3.88,3.88 40.94,3.83,-0.02,3.83,-0.03,0.03,-0.22,-0.15,3.86,3.86,3.86 41.35,3.82,-0.02,3.82,-0.02,0.02,-0.22,-0.16,3.85,3.84,3.84 41.76,3.80,-0.01,3.80,-0.02,0.02,-0.22,-0.17,3.82,3.82,3.82 42.18,3.78,-0.03,3.79,-0.02,0.01,-0.23,-0.18,3.80,3.80,3.81 42.60,3.77,-0.01,3.77,-0.01,0.01,-0.23,-0.19,3.78,3.78,3.78 43.03,3.76,-0.00,3.76,-0.00,0.00,-0.24,-0.21,3.77,3.77,3.77 43.46,3.75,0.01,3.75,0.01,-0.00,-0.24,-0.22,3.75,3.75,3.74 43.90,3.73,0.01,3.74,0.02,-0.01,-0.25,-0.23,3.72,3.72,3.72 44.33,3.72,0.03,3.72,0.02,-0.02,-0.25,-0.24,3.70,3.70,3.70 44.78,3.71,0.03,3.71,0.03,-0.04,-0.26,-0.25,3.68,3.68,3.68 45.23,3.70,0.04,3.70,0.05,-0.05,-0.26,-0.27,3.65,3.65,3.66 45.68,3.69,0.07,3.69,0.07,-0.07,-0.27,-0.28,3.63,3.63,3.62 46.13,3.68,0.09,3.68,0.09,-0.09,-0.27,-0.29,3.60,3.60,3.59 46.60,3.67,0.11,3.67,0.11,-0.11,-0.28,-0.30,3.57,3.57,3.57 47.06,3.66,0.13,3.66,0.13,-0.13,-0.28,-0.32,3.53,3.53,3.54 47.53,3.65,0.15,3.65,0.15,-0.16,-0.29,-0.33,3.50,3.50,3.51 48.01,3.64,0.19,3.64,0.18,-0.18,-0.30,-0.34,3.46,3.46,3.46 48.49,3.63,0.21,3.63,0.20,-0.20,-0.30,-0.36,3.43,3.43,3.43 48.97,3.61,0.23,3.62,0.23,-0.23,-0.31,-0.37,3.39,3.39,3.39 49.46,3.60,0.25,3.60,0.25,-0.25,-0.31,-0.38,3.35,3.35,3.36 49.96,3.58,0.28,3.59,0.27,-0.27,-0.32,-0.40,3.31,3.32,3.30 50.46,3.57,0.29,3.57,0.29,-0.29,-0.33,-0.41,3.29,3.28,3.28 50.96,3.55,0.30,3.55,0.31,-0.30,-0.33,-0.43,3.25,3.25,3.25 51.47,3.53,0.32,3.53,0.32,-0.32,-0.34,-0.44,3.21,3.22,3.22 51.99,3.51,0.34,3.51,0.33,-0.33,-0.35,-0.45,3.18,3.18,3.17 52.51,3.49,0.34,3.49,0.34,-0.34,-0.35,-0.47,3.15,3.15,3.15 53.03,3.47,0.35,3.47,0.35,-0.35,-0.36,-0.48,3.12,3.12,3.13 53.56,3.45,0.36,3.45,0.36,-0.36,-0.37,-0.50,3.09,3.09,3.09 54.10,3.43,0.39,3.43,0.38,-0.37,-0.38,-0.51,3.06,3.06,3.05 54.64,3.40,0.38,3.41,0.39,-0.39,-0.38,-0.52,3.02,3.02,3.02 55.18,3.38,0.40,3.38,0.40,-0.40,-0.39,-0.54,2.99,2.99,2.99 55.74,3.36,0.41,3.36,0.41,-0.41,-0.40,-0.55,2.95,2.95,2.95 56.29,3.34,0.41,3.35,0.42,-0.42,-0.41,-0.56,2.92,2.92,2.93 56.86,3.33,0.43,3.33,0.43,-0.44,-0.41,-0.57,2.90,2.90,2.90 57.42,3.32,0.46,3.32,0.45,-0.45,-0.42,-0.59,2.87,2.87,2.87 58.00,3.31,0.48,3.31,0.47,-0.47,-0.43,-0.60,2.85,2.85,2.84 58.58,3.30,0.49,3.30,0.49,-0.48,-0.44,-0.61,2.82,2.82,2.82 59.16,3.29,0.50,3.29,0.50,-0.50,-0.45,-0.62,2.79,2.79,2.80 59.76,3.27,0.51,3.28,0.51,-0.52,-0.46,-0.63,2.75,2.76,2.77 60.35,3.26,0.54,3.26,0.54,-0.54,-0.47,-0.64,2.72,2.72,2.72 60.96,3.24,0.56,3.24,0.56,-0.56,-0.47,-0.65,2.68,2.68,2.68 61.57,3.22,0.59,3.22,0.59,-0.59,-0.48,-0.66,2.64,2.64,2.63 62.18,3.19,0.61,3.20,0.61,-0.61,-0.49,-0.67,2.59,2.59,2.59 62.80,3.17,0.63,3.18,0.64,-0.63,-0.50,-0.67,2.55,2.55,2.54 63.43,3.15,0.66,3.15,0.65,-0.65,-0.51,-0.68,2.51,2.50,2.50 64.07,3.13,0.67,3.13,0.67,-0.67,-0.52,-0.69,2.47,2.46,2.46 64.71,3.10,0.68,3.11,0.69,-0.68,-0.53,-0.70,2.42,2.42,2.42 65.35,3.08,0.70,3.08,0.70,-0.70,-0.54,-0.70,2.38,2.38,2.39 66.01,3.06,0.72,3.06,0.71,-0.72,-0.55,-0.71,2.35,2.34,2.35 66.67,3.04,0.72,3.04,0.73,-0.73,-0.56,-0.71,2.31,2.31,2.32 67.33,3.02,0.75,3.03,0.75,-0.75,-0.58,-0.72,2.27,2.28,2.27 68.01,3.01,0.77,3.01,0.77,-0.77,-0.59,-0.72,2.24,2.24,2.24 68.69,2.99,0.80,2.99,0.79,-0.79,-0.60,-0.73,2.20,2.20,2.20 69.37,2.97,0.81,2.97,0.81,-0.81,-0.61,-0.73,2.16,2.16,2.17 70.07,2.95,0.83,2.95,0.83,-0.84,-0.62,-0.74,2.12,2.12,2.12 70.77,2.93,0.85,2.93,0.85,-0.86,-0.63,-0.74,2.08,2.08,2.08 71.48,2.91,0.87,2.92,0.88,-0.88,-0.64,-0.74,2.03,2.04,2.04 72.19,2.90,0.91,2.90,0.90,-0.90,-0.66,-0.75,2.00,2.00,2.00 72.91,2.88,0.93,2.88,0.93,-0.92,-0.67,-0.75,1.96,1.96,1.95 73.64,2.86,0.95,2.87,0.95,-0.94,-0.68,-0.76,1.92,1.92,1.92 74.38,2.84,0.97,2.84,0.96,-0.96,-0.69,-0.76,1.88,1.88,1.88 75.12,2.82,0.98,2.82,0.97,-0.98,-0.71,-0.77,1.85,1.84,1.85 75.87,2.79,0.98,2.80,0.98,-0.99,-0.72,-0.77,1.80,1.81,1.82 76.63,2.78,1.01,2.78,1.00,-1.00,-0.73,-0.78,1.78,1.78,1.78 77.40,2.76,1.01,2.77,1.01,-1.02,-0.75,-0.79,1.75,1.75,1.76 78.17,2.75,1.04,2.75,1.03,-1.02,-0.76,-0.79,1.73,1.73,1.71 78.95,2.73,1.03,2.73,1.04,-1.03,-0.77,-0.80,1.70,1.70,1.70 79.74,2.71,1.05,2.71,1.05,-1.04,-0.79,-0.81,1.67,1.67,1.67 80.54,2.68,1.04,2.69,1.05,-1.05,-0.80,-0.82,1.64,1.64,1.64 81.35,2.66,1.06,2.66,1.05,-1.06,-0.82,-0.82,1.61,1.61,1.61 82.16,2.64,1.05,2.64,1.06,-1.06,-0.83,-0.83,1.58,1.58,1.59 82.98,2.61,1.06,2.62,1.06,-1.07,-0.84,-0.84,1.54,1.55,1.55 83.81,2.59,1.07,2.59,1.07,-1.08,-0.86,-0.85,1.52,1.52,1.52 84.65,2.57,1.09,2.57,1.09,-1.08,-0.87,-0.87,1.49,1.49,1.49 85.50,2.55,1.10,2.55,1.10,-1.09,-0.89,-0.88,1.46,1.46,1.46 86.35,2.53,1.11,2.53,1.10,-1.10,-0.90,-0.89,1.44,1.43,1.43 87.22,2.49,1.10,2.50,1.11,-1.11,-0.92,-0.90,1.39,1.39,1.39 88.09,2.47,1.11,2.47,1.11,-1.11,-0.94,-0.92,1.36,1.36,1.36 88.97,2.44,1.11,2.45,1.11,-1.12,-0.95,-0.93,1.32,1.32,1.33 89.86,2.42,1.13,2.43,1.13,-1.13,-0.97,-0.95,1.29,1.29,1.30 90.76,2.40,1.14,2.40,1.14,-1.14,-0.98,-0.97,1.26,1.26,1.26 91.66,2.38,1.16,2.38,1.15,-1.15,-1.00,-0.98,1.23,1.23,1.22 92.58,2.35,1.16,2.36,1.16,-1.16,-1.01,-1.00,1.19,1.19,1.20 93.51,2.33,1.17,2.33,1.18,-1.18,-1.03,-1.02,1.16,1.16,1.16 94.44,2.31,1.19,2.31,1.19,-1.19,-1.05,-1.04,1.13,1.12,1.13 95.39,2.28,1.20,2.29,1.20,-1.20,-1.06,-1.06,1.09,1.09,1.08 96.34,2.25,1.21,2.25,1.21,-1.21,-1.08,-1.08,1.05,1.05,1.04 97.30,2.22,1.22,2.22,1.22,-1.21,-1.10,-1.10,1.01,1.01,1.01 98.28,2.18,1.22,2.19,1.22,-1.22,-1.11,-1.12,0.96,0.97,0.96 99.26,2.15,1.23,2.15,1.23,-1.23,-1.13,-1.14,0.93,0.92,0.92 100.25,2.11,1.23,2.12,1.23,-1.23,-1.15,-1.17,0.88,0.88,0.89 101.25,2.08,1.23,2.09,1.23,-1.24,-1.16,-1.19,0.84,0.85,0.86 102.27,2.07,1.24,2.07,1.24,-1.25,-1.18,-1.21,0.83,0.82,0.83 103.29,2.05,1.26,2.05,1.26,-1.26,-1.19,-1.24,0.80,0.80,0.79 104.32,2.03,1.27,2.03,1.27,-1.27,-1.21,-1.26,0.77,0.77,0.77 105.37,2.01,1.28,2.01,1.28,-1.27,-1.23,-1.28,0.74,0.74,0.74 106.42,1.98,1.27,1.99,1.28,-1.28,-1.24,-1.31,0.71,0.71,0.71 107.48,1.96,1.29,1.96,1.29,-1.28,-1.26,-1.33,0.68,0.68,0.67 108.56,1.93,1.29,1.93,1.29,-1.28,-1.28,-1.35,0.65,0.65,0.64 109.64,1.89,1.28,1.89,1.28,-1.28,-1.29,-1.37,0.61,0.62,0.62 110.74,1.85,1.27,1.85,1.27,-1.28,-1.31,-1.39,0.57,0.58,0.58 111.85,1.81,1.27,1.82,1.27,-1.28,-1.32,-1.41,0.53,0.54,0.54 112.97,1.78,1.27,1.78,1.27,-1.28,-1.34,-1.43,0.50,0.50,0.51 114.10,1.75,1.28,1.75,1.28,-1.29,-1.35,-1.45,0.47,0.47,0.48 115.24,1.72,1.29,1.73,1.29,-1.29,-1.37,-1.47,0.43,0.44,0.43 116.39,1.70,1.31,1.70,1.30,-1.30,-1.38,-1.49,0.41,0.40,0.40 117.55,1.67,1.31,1.67,1.31,-1.30,-1.40,-1.50,0.37,0.37,0.36 118.73,1.64,1.32,1.64,1.31,-1.31,-1.41,-1.52,0.33,0.33,0.33 119.92,1.61,1.31,1.62,1.32,-1.32,-1.42,-1.53,0.29,0.30,0.30 121.12,1.59,1.32,1.60,1.32,-1.33,-1.44,-1.54,0.27,0.27,0.28 122.33,1.58,1.34,1.58,1.33,-1.33,-1.45,-1.55,0.25,0.25,0.24 123.55,1.56,1.34,1.56,1.34,-1.34,-1.46,-1.55,0.22,0.22,0.22 124.79,1.53,1.35,1.54,1.35,-1.35,-1.47,-1.56,0.18,0.19,0.19 126.03,1.50,1.35,1.51,1.36,-1.36,-1.48,-1.56,0.14,0.15,0.16 127.29,1.49,1.37,1.49,1.37,-1.37,-1.50,-1.57,0.12,0.12,0.12 128.57,1.47,1.39,1.47,1.38,-1.38,-1.51,-1.57,0.09,0.09,0.08 129.85,1.44,1.39,1.45,1.39,-1.39,-1.52,-1.56,0.06,0.06,0.05 131.15,1.41,1.40,1.42,1.40,-1.40,-1.53,-1.56,0.02,0.02,0.02 132.46,1.39,1.41,1.39,1.40,-1.40,-1.53,-1.56,-0.01,-0.02,-0.01 133.79,1.36,1.41,1.36,1.41,-1.41,-1.54,-1.55,-0.05,-0.05,-0.05 135.12,1.32,1.40,1.33,1.41,-1.41,-1.55,-1.54,-0.09,-0.08,-0.08 136.48,1.31,1.42,1.30,1.41,-1.41,-1.56,-1.53,-0.10,-0.11,-0.10 137.84,1.27,1.41,1.28,1.42,-1.41,-1.56,-1.53,-0.14,-0.13,-0.14 139.22,1.25,1.43,1.25,1.42,-1.41,-1.57,-1.51,-0.16,-0.16,-0.17 140.61,1.22,1.42,1.22,1.42,-1.41,-1.58,-1.50,-0.19,-0.19,-0.20 142.02,1.17,1.40,1.18,1.41,-1.41,-1.58,-1.49,-0.23,-0.23,-0.23 143.44,1.15,1.40,1.15,1.40,-1.41,-1.58,-1.48,-0.25,-0.26,-0.25 144.87,1.11,1.38,1.12,1.40,-1.40,-1.59,-1.47,-0.29,-0.28,-0.27 146.32,1.10,1.40,1.10,1.40,-1.40,-1.59,-1.45,-0.29,-0.30,-0.30 147.78,1.07,1.39,1.07,1.40,-1.39,-1.59,-1.44,-0.32,-0.32,-0.32 149.26,1.04,1.39,1.05,1.39,-1.39,-1.59,-1.43,-0.34,-0.34,-0.35 150.75,1.01,1.39,1.01,1.38,-1.38,-1.59,-1.41,-0.37,-0.37,-0.38 152.26,0.98,1.38,0.98,1.38,-1.38,-1.59,-1.40,-0.40,-0.40,-0.39 153.78,0.95,1.37,0.96,1.38,-1.38,-1.59,-1.39,-0.43,-0.42,-0.42 155.32,0.94,1.39,0.94,1.38,-1.38,-1.59,-1.38,-0.44,-0.45,-0.44 156.88,0.91,1.38,0.92,1.39,-1.39,-1.59,-1.37,-0.47,-0.47,-0.47 158.44,0.90,1.40,0.89,1.39,-1.39,-1.58,-1.35,-0.49,-0.50,-0.50 160.03,0.86,1.39,0.87,1.40,-1.40,-1.58,-1.34,-0.53,-0.53,-0.52 161.63,0.84,1.40,0.85,1.40,-1.41,-1.58,-1.33,-0.56,-0.56,-0.56 163.24,0.83,1.42,0.83,1.41,-1.41,-1.57,-1.33,-0.58,-0.59,-0.59 164.88,0.80,1.42,0.81,1.43,-1.42,-1.57,-1.32,-0.62,-0.61,-0.62 166.53,0.78,1.44,0.78,1.43,-1.43,-1.56,-1.31,-0.64,-0.64,-0.65 168.19,0.76,1.44,0.75,1.43,-1.43,-1.55,-1.30,-0.67,-0.68,-0.67 169.87,0.71,1.42,0.72,1.44,-1.44,-1.55,-1.30,-0.72,-0.71,-0.71 171.57,0.69,1.44,0.70,1.44,-1.44,-1.54,-1.30,-0.75,-0.75,-0.75 173.29,0.67,1.45,0.67,1.44,-1.45,-1.53,-1.29,-0.78,-0.78,-0.77 175.02,0.64,1.45,0.65,1.45,-1.45,-1.52,-1.29,-0.81,-0.81,-0.81 176.77,0.61,1.46,0.62,1.46,-1.46,-1.51,-1.29,-0.84,-0.84,-0.84 178.54,0.59,1.47,0.59,1.47,-1.46,-1.50,-1.29,-0.87,-0.87,-0.88 180.32,0.55,1.47,0.56,1.47,-1.47,-1.49,-1.29,-0.91,-0.91,-0.92 182.13,0.52,1.47,0.52,1.47,-1.47,-1.48,-1.29,-0.95,-0.95,-0.94 183.95,0.48,1.46,0.49,1.47,-1.47,-1.46,-1.29,-0.99,-0.98,-0.97 185.79,0.46,1.48,0.46,1.48,-1.48,-1.45,-1.30,-1.01,-1.01,-1.02 187.65,0.44,1.49,0.44,1.48,-1.48,-1.44,-1.30,-1.04,-1.04,-1.05 189.52,0.41,1.49,0.41,1.49,-1.49,-1.43,-1.31,-1.07,-1.07,-1.08 191.42,0.38,1.49,0.38,1.49,-1.49,-1.41,-1.32,-1.11,-1.11,-1.11 193.33,0.35,1.49,0.35,1.49,-1.50,-1.40,-1.32,-1.14,-1.14,-1.13 195.27,0.32,1.50,0.33,1.50,-1.50,-1.39,-1.33,-1.18,-1.18,-1.17 197.22,0.30,1.51,0.30,1.51,-1.51,-1.37,-1.34,-1.20,-1.20,-1.21 199.19,0.28,1.51,0.28,1.52,-1.51,-1.36,-1.35,-1.23,-1.23,-1.23 201.18,0.26,1.53,0.26,1.52,-1.52,-1.34,-1.36,-1.25,-1.25,-1.26 203.19,0.24,1.52,0.24,1.52,-1.52,-1.33,-1.37,-1.28,-1.28,-1.28 205.23,0.22,1.52,0.22,1.52,-1.52,-1.31,-1.38,-1.30,-1.30,-1.29 207.28,0.20,1.52,0.20,1.52,-1.52,-1.29,-1.39,-1.32,-1.32,-1.32 209.35,0.18,1.53,0.19,1.53,-1.52,-1.28,-1.40,-1.34,-1.34,-1.34 211.44,0.16,1.53,0.16,1.52,-1.52,-1.26,-1.41,-1.36,-1.36,-1.37 213.56,0.13,1.51,0.13,1.51,-1.52,-1.25,-1.43,-1.38,-1.39,-1.38 215.69,0.09,1.50,0.10,1.50,-1.51,-1.23,-1.44,-1.42,-1.41,-1.40 217.85,0.07,1.50,0.08,1.50,-1.50,-1.21,-1.45,-1.43,-1.43,-1.42 220.03,0.05,1.50,0.05,1.49,-1.49,-1.20,-1.46,-1.44,-1.44,-1.45 222.23,0.02,1.49,0.02,1.49,-1.47,-1.18,-1.47,-1.45,-1.45,-1.47 224.45,-0.02,1.46,-0.02,1.46,-1.45,-1.16,-1.48,-1.47,-1.47,-1.48 226.70,-0.06,1.44,-0.06,1.43,-1.43,-1.15,-1.48,-1.49,-1.49,-1.50 228.96,-0.12,1.38,-0.10,1.40,-1.41,-1.13,-1.49,-1.52,-1.51,-1.50 231.25,-0.15,1.37,-0.15,1.37,-1.38,-1.11,-1.50,-1.53,-1.53,-1.52 233.57,-0.18,1.35,-0.19,1.34,-1.36,-1.10,-1.50,-1.53,-1.54,-1.53 235.90,-0.23,1.31,-0.22,1.33,-1.33,-1.08,-1.50,-1.55,-1.54,-1.54 238.26,-0.25,1.31,-0.25,1.30,-1.30,-1.06,-1.51,-1.55,-1.55,-1.56 240.64,-0.27,1.28,-0.27,1.28,-1.27,-1.05,-1.50,-1.54,-1.55,-1.55 243.05,-0.30,1.26,-0.30,1.26,-1.25,-1.03,-1.50,-1.54,-1.55,-1.55 245.48,-0.33,1.24,-0.33,1.23,-1.22,-1.01,-1.50,-1.55,-1.55,-1.56 247.93,-0.37,1.20,-0.36,1.20,-1.20,-1.00,-1.49,-1.56,-1.56,-1.57 250.41,-0.39,1.17,-0.39,1.17,-1.18,-0.98,-1.48,-1.56,-1.57,-1.56 252.92,-0.42,1.14,-0.41,1.15,-1.16,-0.96,-1.47,-1.57,-1.57,-1.55 255.45,-0.43,1.14,-0.43,1.13,-1.14,-0.95,-1.46,-1.57,-1.57,-1.56 258.00,-0.44,1.12,-0.44,1.12,-1.13,-0.93,-1.45,-1.57,-1.57,-1.56 260.58,-0.44,1.12,-0.43,1.12,-1.13,-0.92,-1.43,-1.56,-1.56,-1.55 263.19,-0.43,1.12,-0.43,1.13,-1.12,-0.90,-1.42,-1.55,-1.55,-1.55 265.82,-0.42,1.14,-0.42,1.13,-1.13,-0.88,-1.40,-1.54,-1.55,-1.56 268.48,-0.42,1.14,-0.42,1.14,-1.13,-0.87,-1.37,-1.55,-1.55,-1.55 271.16,-0.42,1.13,-0.42,1.13,-1.13,-0.85,-1.35,-1.55,-1.55,-1.55 273.87,-0.42,1.14,-0.42,1.13,-1.14,-0.84,-1.33,-1.55,-1.55,-1.55 276.61,-0.42,1.13,-0.42,1.14,-1.14,-0.82,-1.30,-1.55,-1.55,-1.55 279.38,-0.42,1.15,-0.42,1.14,-1.14,-0.81,-1.28,-1.55,-1.55,-1.56 282.17,-0.42,1.14,-0.42,1.14,-1.13,-0.79,-1.25,-1.55,-1.55,-1.56 284.99,-0.42,1.13,-0.42,1.13,-1.13,-0.78,-1.22,-1.55,-1.55,-1.54 287.84,-0.42,1.12,-0.42,1.12,-1.12,-0.76,-1.19,-1.54,-1.54,-1.54 290.72,-0.42,1.12,-0.42,1.12,-1.12,-0.75,-1.16,-1.53,-1.53,-1.54 293.63,-0.42,1.11,-0.42,1.11,-1.11,-0.73,-1.13,-1.53,-1.53,-1.52 296.57,-0.42,1.10,-0.42,1.10,-1.10,-0.72,-1.10,-1.52,-1.52,-1.52 299.53,-0.42,1.10,-0.42,1.09,-1.10,-0.70,-1.06,-1.51,-1.51,-1.51 302.53,-0.42,1.08,-0.42,1.09,-1.09,-0.69,-1.03,-1.51,-1.51,-1.50 305.55,-0.42,1.08,-0.41,1.08,-1.09,-0.68,-1.00,-1.51,-1.50,-1.50 308.61,-0.41,1.08,-0.41,1.08,-1.09,-0.66,-0.97,-1.49,-1.49,-1.48 311.69,-0.40,1.08,-0.40,1.08,-1.08,-0.65,-0.93,-1.48,-1.48,-1.48 314.81,-0.39,1.08,-0.39,1.08,-1.07,-0.64,-0.90,-1.46,-1.46,-1.47 317.96,-0.39,1.08,-0.39,1.07,-1.06,-0.62,-0.87,-1.45,-1.45,-1.46 321.14,-0.40,1.05,-0.40,1.05,-1.04,-0.61,-0.84,-1.44,-1.44,-1.44 324.35,-0.42,1.03,-0.41,1.02,-1.02,-0.60,-0.81,-1.44,-1.44,-1.45 327.59,-0.44,0.98,-0.43,0.99,-0.99,-0.59,-0.77,-1.43,-1.43,-1.42 330.87,-0.46,0.97,-0.46,0.96,-0.96,-0.57,-0.74,-1.42,-1.42,-1.42 334.18,-0.49,0.93,-0.49,0.92,-0.92,-0.56,-0.71,-1.41,-1.41,-1.41 337.52,-0.53,0.88,-0.52,0.89,-0.88,-0.55,-0.68,-1.41,-1.40,-1.41 340.90,-0.55,0.84,-0.55,0.84,-0.84,-0.54,-0.65,-1.39,-1.39,-1.39 344.30,-0.59,0.80,-0.58,0.80,-0.80,-0.52,-0.62,-1.39,-1.38,-1.38 347.75,-0.62,0.76,-0.61,0.76,-0.76,-0.51,-0.59,-1.37,-1.37,-1.37 351.23,-0.65,0.73,-0.65,0.72,-0.72,-0.50,-0.56,-1.36,-1.36,-1.38 354.74,-0.68,0.67,-0.68,0.68,-0.68,-0.49,-0.53,-1.35,-1.35,-1.35 358.28,-0.71,0.64,-0.71,0.64,-0.64,-0.48,-0.50,-1.35,-1.35,-1.35 361.87,-0.73,0.61,-0.73,0.61,-0.61,-0.47,-0.47,-1.34,-1.35,-1.34 365.49,-0.76,0.58,-0.75,0.58,-0.59,-0.45,-0.45,-1.35,-1.34,-1.33 369.14,-0.76,0.56,-0.76,0.56,-0.57,-0.44,-0.42,-1.33,-1.33,-1.31 372.83,-0.76,0.55,-0.76,0.55,-0.56,-0.43,-0.39,-1.31,-1.32,-1.31 376.56,-0.76,0.55,-0.75,0.55,-0.55,-0.42,-0.37,-1.30,-1.30,-1.31 380.33,-0.75,0.55,-0.75,0.55,-0.54,-0.41,-0.34,-1.29,-1.29,-1.30 384.13,-0.74,0.54,-0.74,0.54,-0.54,-0.40,-0.31,-1.27,-1.28,-1.28 387.97,-0.74,0.54,-0.74,0.54,-0.53,-0.39,-0.29,-1.27,-1.27,-1.27 391.85,-0.74,0.53,-0.74,0.53,-0.53,-0.38,-0.26,-1.26,-1.26,-1.26 395.77,-0.74,0.52,-0.74,0.52,-0.52,-0.37,-0.24,-1.26,-1.26,-1.25 399.73,-0.74,0.51,-0.73,0.51,-0.51,-0.36,-0.21,-1.25,-1.25,-1.25 403.72,-0.73,0.49,-0.73,0.50,-0.51,-0.35,-0.19,-1.23,-1.23,-1.22 407.76,-0.72,0.50,-0.72,0.49,-0.49,-0.34,-0.17,-1.21,-1.21,-1.22 411.84,-0.72,0.49,-0.72,0.49,-0.48,-0.33,-0.14,-1.20,-1.20,-1.21 415.96,-0.73,0.46,-0.72,0.47,-0.46,-0.32,-0.12,-1.19,-1.19,-1.19 420.12,-0.74,0.45,-0.74,0.45,-0.44,-0.31,-0.10,-1.18,-1.18,-1.19 424.32,-0.76,0.43,-0.76,0.42,-0.42,-0.30,-0.08,-1.17,-1.17,-1.18 428.56,-0.78,0.39,-0.78,0.39,-0.39,-0.29,-0.06,-1.16,-1.16,-1.16 432.85,-0.81,0.35,-0.81,0.35,-0.35,-0.28,-0.04,-1.16,-1.16,-1.15 437.18,-0.84,0.32,-0.84,0.31,-0.31,-0.26,-0.02,-1.15,-1.15,-1.15 441.55,-0.88,0.27,-0.87,0.27,-0.27,-0.25,-0.00,-1.15,-1.14,-1.14 445.96,-0.91,0.23,-0.91,0.23,-0.22,-0.24,0.02,-1.13,-1.13,-1.14 450.42,-0.95,0.18,-0.95,0.18,-0.18,-0.23,0.03,-1.13,-1.13,-1.13 454.93,-0.98,0.14,-0.98,0.14,-0.14,-0.22,0.05,-1.11,-1.12,-1.12 459.48,-1.02,0.09,-1.01,0.09,-0.10,-0.21,0.06,-1.11,-1.11,-1.11 464.07,-1.04,0.05,-1.03,0.06,-0.06,-0.20,0.08,-1.10,-1.09,-1.09 468.71,-1.05,0.03,-1.06,0.02,-0.03,-0.19,0.09,-1.08,-1.09,-1.08 473.40,-1.08,-0.01,-1.07,-0.00,-0.01,-0.18,0.10,-1.08,-1.08,-1.07 478.13,-1.09,-0.03,-1.08,-0.02,0.01,-0.17,0.11,-1.07,-1.07,-1.06 482.91,-1.09,-0.04,-1.08,-0.03,0.03,-0.16,0.12,-1.06,-1.06,-1.05 487.74,-1.08,-0.04,-1.08,-0.04,0.04,-0.15,0.13,-1.04,-1.04,-1.04 492.62,-1.07,-0.03,-1.07,-0.04,0.05,-0.14,0.14,-1.02,-1.02,-1.03 497.55,-1.07,-0.04,-1.07,-0.04,0.06,-0.13,0.15,-1.01,-1.01,-1.02 502.52,-1.07,-0.05,-1.07,-0.06,0.06,-0.12,0.15,-1.00,-1.00,-1.01 507.55,-1.07,-0.07,-1.07,-0.07,0.07,-0.11,0.16,-0.99,-0.99,-0.99 512.62,-1.07,-0.08,-1.07,-0.09,0.08,-0.09,0.16,-0.98,-0.98,-0.98 517.75,-1.07,-0.10,-1.07,-0.10,0.09,-0.08,0.16,-0.97,-0.97,-0.96 522.93,-1.07,-0.11,-1.07,-0.11,0.11,-0.07,0.16,-0.96,-0.96,-0.95 528.16,-1.07,-0.12,-1.07,-0.12,0.12,-0.06,0.16,-0.94,-0.94,-0.94 533.44,-1.07,-0.13,-1.07,-0.13,0.14,-0.05,0.16,-0.93,-0.93,-0.93 538.77,-1.07,-0.14,-1.07,-0.14,0.15,-0.03,0.16,-0.92,-0.92,-0.93 544.16,-1.07,-0.16,-1.07,-0.16,0.16,-0.02,0.16,-0.91,-0.91,-0.91 549.60,-1.07,-0.17,-1.07,-0.17,0.17,-0.01,0.15,-0.90,-0.90,-0.90 555.10,-1.07,-0.19,-1.07,-0.19,0.18,0.00,0.15,-0.89,-0.89,-0.88 560.65,-1.07,-0.20,-1.07,-0.20,0.19,0.02,0.14,-0.88,-0.88,-0.87 566.25,-1.07,-0.20,-1.07,-0.20,0.20,0.03,0.14,-0.87,-0.87,-0.87 571.92,-1.07,-0.21,-1.07,-0.21,0.21,0.05,0.13,-0.86,-0.86,-0.86 577.64,-1.07,-0.22,-1.07,-0.22,0.22,0.06,0.13,-0.84,-0.84,-0.85 583.41,-1.07,-0.23,-1.07,-0.23,0.24,0.07,0.12,-0.83,-0.83,-0.84 589.25,-1.07,-0.24,-1.07,-0.24,0.25,0.09,0.11,-0.81,-0.82,-0.83 595.14,-1.08,-0.26,-1.08,-0.26,0.27,0.10,0.10,-0.81,-0.81,-0.82 601.09,-1.09,-0.28,-1.08,-0.28,0.28,0.12,0.09,-0.80,-0.80,-0.81 607.10,-1.09,-0.31,-1.09,-0.30,0.30,0.13,0.08,-0.79,-0.79,-0.78 613.17,-1.08,-0.32,-1.08,-0.32,0.31,0.15,0.08,-0.77,-0.77,-0.76 619.30,-1.07,-0.33,-1.06,-0.32,0.31,0.16,0.07,-0.75,-0.75,-0.74 625.50,-1.04,-0.32,-1.04,-0.32,0.31,0.18,0.06,-0.72,-0.73,-0.72 631.75,-1.02,-0.31,-1.02,-0.31,0.31,0.19,0.05,-0.71,-0.71,-0.71 638.07,-0.99,-0.30,-0.99,-0.30,0.30,0.21,0.04,-0.68,-0.69,-0.69 644.45,-0.97,-0.30,-0.96,-0.29,0.29,0.23,0.03,-0.68,-0.67,-0.67 650.89,-0.93,-0.27,-0.93,-0.28,0.27,0.24,0.02,-0.65,-0.65,-0.66 657.40,-0.90,-0.27,-0.89,-0.26,0.26,0.26,0.01,-0.64,-0.64,-0.63 663.98,-0.86,-0.24,-0.86,-0.24,0.24,0.27,-0.00,-0.62,-0.62,-0.62 670.62,-0.83,-0.23,-0.83,-0.23,0.23,0.29,-0.01,-0.60,-0.60,-0.60 677.32,-0.80,-0.22,-0.79,-0.21,0.21,0.30,-0.02,-0.58,-0.58,-0.58 684.10,-0.77,-0.21,-0.77,-0.20,0.21,0.32,-0.03,-0.56,-0.56,-0.56 690.94,-0.74,-0.20,-0.74,-0.20,0.20,0.33,-0.04,-0.53,-0.54,-0.54 697.85,-0.73,-0.20,-0.72,-0.20,0.21,0.34,-0.05,-0.52,-0.52,-0.53 704.83,-0.72,-0.21,-0.72,-0.21,0.21,0.35,-0.06,-0.50,-0.50,-0.51 711.87,-0.72,-0.23,-0.72,-0.23,0.23,0.36,-0.07,-0.49,-0.49,-0.49 718.99,-0.73,-0.25,-0.72,-0.25,0.25,0.37,-0.08,-0.48,-0.48,-0.48 726.18,-0.74,-0.28,-0.73,-0.27,0.27,0.38,-0.09,-0.47,-0.46,-0.46 733.44,-0.74,-0.29,-0.74,-0.29,0.29,0.39,-0.10,-0.44,-0.45,-0.45 740.78,-0.75,-0.32,-0.75,-0.32,0.31,0.40,-0.11,-0.43,-0.43,-0.43 748.19,-0.76,-0.35,-0.75,-0.34,0.34,0.40,-0.12,-0.42,-0.42,-0.41 755.67,-0.76,-0.36,-0.76,-0.36,0.35,0.40,-0.13,-0.40,-0.41,-0.40 763.23,-0.76,-0.37,-0.76,-0.37,0.37,0.41,-0.14,-0.39,-0.39,-0.39 770.86,-0.76,-0.39,-0.75,-0.38,0.37,0.41,-0.15,-0.38,-0.38,-0.37 778.57,-0.74,-0.37,-0.74,-0.38,0.38,0.40,-0.16,-0.36,-0.36,-0.36 786.35,-0.72,-0.37,-0.72,-0.38,0.38,0.40,-0.17,-0.34,-0.34,-0.34 794.22,-0.70,-0.37,-0.70,-0.37,0.37,0.39,-0.18,-0.33,-0.33,-0.32 802.16,-0.68,-0.36,-0.67,-0.36,0.36,0.38,-0.19,-0.32,-0.32,-0.31 810.18,-0.64,-0.33,-0.64,-0.34,0.34,0.37,-0.20,-0.30,-0.30,-0.30 818.28,-0.61,-0.32,-0.60,-0.32,0.32,0.36,-0.21,-0.28,-0.28,-0.28 826.46,-0.57,-0.29,-0.57,-0.30,0.30,0.34,-0.22,-0.26,-0.26,-0.27 834.73,-0.54,-0.28,-0.54,-0.28,0.29,0.33,-0.23,-0.25,-0.25,-0.25 843.08,-0.51,-0.26,-0.50,-0.26,0.27,0.31,-0.25,-0.24,-0.24,-0.24 851.51,-0.48,-0.23,-0.48,-0.25,0.25,0.28,-0.26,-0.22,-0.23,-0.24 860.02,-0.46,-0.23,-0.46,-0.23,0.24,0.26,-0.27,-0.22,-0.22,-0.22 868.62,-0.45,-0.23,-0.44,-0.23,0.22,0.24,-0.28,-0.23,-0.22,-0.21 877.31,-0.42,-0.21,-0.42,-0.22,0.21,0.21,-0.29,-0.21,-0.21,-0.20 886.08,-0.40,-0.20,-0.39,-0.20,0.20,0.18,-0.30,-0.20,-0.20,-0.19 894.94,-0.37,-0.16,-0.37,-0.17,0.18,0.15,-0.32,-0.18,-0.19,-0.20 903.89,-0.35,-0.15,-0.35,-0.16,0.17,0.12,-0.33,-0.18,-0.18,-0.19 912.93,-0.34,-0.14,-0.33,-0.15,0.15,0.09,-0.34,-0.18,-0.18,-0.19 922.06,-0.32,-0.14,-0.32,-0.14,0.13,0.05,-0.35,-0.19,-0.19,-0.17 931.28,-0.30,-0.11,-0.30,-0.12,0.10,0.02,-0.37,-0.19,-0.19,-0.18 940.59,-0.27,-0.08,-0.27,-0.08,0.07,-0.02,-0.38,-0.20,-0.20,-0.18 950.00,-0.24,-0.04,-0.23,-0.04,0.03,-0.06,-0.40,-0.20,-0.20,-0.19 959.50,-0.19,0.02,-0.19,0.01,-0.01,-0.10,-0.41,-0.20,-0.20,-0.20 969.09,-0.15,0.06,-0.14,0.06,-0.06,-0.14,-0.43,-0.21,-0.20,-0.20 978.78,-0.10,0.12,-0.10,0.12,-0.11,-0.18,-0.44,-0.21,-0.21,-0.21 988.57,-0.05,0.18,-0.05,0.18,-0.17,-0.22,-0.46,-0.21,-0.22,-0.22 998.46,-0.01,0.24,-0.00,0.24,-0.22,-0.27,-0.47,-0.23,-0.23,-0.24 1008.44,0.03,0.30,0.03,0.29,-0.28,-0.31,-0.49,-0.25,-0.25,-0.26 1018.53,0.06,0.34,0.06,0.34,-0.34,-0.36,-0.51,-0.27,-0.28,-0.27 1028.71,0.08,0.38,0.09,0.39,-0.40,-0.41,-0.53,-0.31,-0.31,-0.29 1039.00,0.11,0.45,0.12,0.44,-0.46,-0.46,-0.55,-0.34,-0.34,-0.33 1049.39,0.15,0.52,0.15,0.51,-0.52,-0.51,-0.57,-0.36,-0.36,-0.36 1059.88,0.19,0.59,0.20,0.59,-0.58,-0.56,-0.59,-0.39,-0.39,-0.39 1070.48,0.24,0.66,0.24,0.66,-0.65,-0.62,-0.61,-0.41,-0.41,-0.41 1081.19,0.27,0.73,0.28,0.73,-0.72,-0.67,-0.63,-0.45,-0.45,-0.45 1092.00,0.31,0.80,0.31,0.80,-0.79,-0.73,-0.65,-0.48,-0.48,-0.48 1102.92,0.35,0.87,0.35,0.87,-0.87,-0.79,-0.67,-0.51,-0.51,-0.51 1113.95,0.39,0.95,0.40,0.94,-0.94,-0.86,-0.70,-0.55,-0.54,-0.55 1125.09,0.44,1.02,0.44,1.02,-1.02,-0.92,-0.72,-0.57,-0.58,-0.57 1136.34,0.48,1.10,0.48,1.09,-1.09,-0.99,-0.75,-0.61,-0.61,-0.61 1147.70,0.52,1.16,0.53,1.16,-1.17,-1.07,-0.77,-0.65,-0.64,-0.63 1159.18,0.57,1.24,0.58,1.24,-1.25,-1.14,-0.80,-0.68,-0.67,-0.66 1170.77,0.63,1.33,0.63,1.33,-1.33,-1.22,-0.83,-0.70,-0.70,-0.69 1182.48,0.69,1.42,0.69,1.41,-1.41,-1.31,-0.85,-0.72,-0.72,-0.72 1194.30,0.75,1.50,0.75,1.49,-1.49,-1.39,-0.88,-0.73,-0.74,-0.74 1206.25,0.80,1.57,0.80,1.57,-1.56,-1.48,-0.91,-0.76,-0.76,-0.76 1218.31,0.85,1.64,0.86,1.64,-1.64,-1.57,-0.94,-0.78,-0.78,-0.78 1230.49,0.91,1.72,0.91,1.71,-1.71,-1.67,-0.98,-0.79,-0.80,-0.80 1242.80,0.96,1.78,0.97,1.77,-1.78,-1.76,-1.01,-0.81,-0.81,-0.81 1255.22,1.02,1.84,1.02,1.84,-1.84,-1.85,-1.04,-0.81,-0.81,-0.81 1267.78,1.08,1.89,1.09,1.89,-1.90,-1.93,-1.08,-0.81,-0.81,-0.80 1280.45,1.15,1.96,1.15,1.95,-1.95,-2.01,-1.11,-0.80,-0.80,-0.80 1293.26,1.22,2.01,1.22,2.00,-2.00,-2.08,-1.15,-0.78,-0.79,-0.78 1306.19,1.28,2.06,1.28,2.06,-2.05,-2.14,-1.19,-0.77,-0.77,-0.77 1319.25,1.34,2.10,1.35,2.10,-2.10,-2.19,-1.23,-0.76,-0.75,-0.75 1332.45,1.41,2.15,1.41,2.14,-2.14,-2.23,-1.27,-0.73,-0.73,-0.73 1345.77,1.48,2.19,1.48,2.19,-2.18,-2.26,-1.31,-0.70,-0.70,-0.70 1359.23,1.56,2.23,1.56,2.22,-2.22,-2.28,-1.36,-0.66,-0.67,-0.66 1372.82,1.62,2.26,1.63,2.26,-2.26,-2.29,-1.40,-0.64,-0.63,-0.63 1386.55,1.70,2.29,1.70,2.29,-2.30,-2.30,-1.45,-0.59,-0.59,-0.58 1400.41,1.78,2.33,1.78,2.32,-2.33,-2.31,-1.49,-0.54,-0.55,-0.54 1414.42,1.86,2.36,1.86,2.36,-2.36,-2.31,-1.54,-0.50,-0.50,-0.49 1428.56,1.94,2.40,1.94,2.39,-2.39,-2.32,-1.59,-0.45,-0.45,-0.45 1442.85,2.02,2.43,2.02,2.42,-2.42,-2.32,-1.64,-0.39,-0.40,-0.40 1457.28,2.09,2.44,2.10,2.44,-2.44,-2.33,-1.69,-0.35,-0.35,-0.34 1471.85,2.17,2.47,2.17,2.46,-2.46,-2.35,-1.75,-0.29,-0.29,-0.29 1486.57,2.25,2.49,2.25,2.49,-2.48,-2.36,-1.80,-0.23,-0.23,-0.23 1501.43,2.33,2.51,2.34,2.51,-2.50,-2.38,-1.86,-0.17,-0.17,-0.17 1516.45,2.42,2.53,2.42,2.52,-2.52,-2.41,-1.91,-0.10,-0.10,-0.10 1531.61,2.50,2.53,2.51,2.53,-2.54,-2.44,-1.97,-0.03,-0.03,-0.02 1546.93,2.59,2.55,2.60,2.55,-2.56,-2.47,-2.03,0.04,0.04,0.05 1562.40,2.69,2.57,2.69,2.57,-2.57,-2.50,-2.09,0.12,0.12,0.13 1578.02,2.79,2.59,2.79,2.59,-2.59,-2.54,-2.15,0.20,0.20,0.21 1593.80,2.89,2.63,2.89,2.62,-2.61,-2.58,-2.21,0.28,0.28,0.27 1609.74,2.99,2.64,3.00,2.64,-2.63,-2.62,-2.27,0.37,0.37,0.36 1625.84,3.10,2.66,3.10,2.65,-2.65,-2.66,-2.33,0.46,0.45,0.45 1642.10,3.20,2.66,3.21,2.66,-2.67,-2.70,-2.39,0.54,0.54,0.55 1658.52,3.31,2.68,3.31,2.68,-2.69,-2.75,-2.46,0.63,0.63,0.64 1675.10,3.42,2.70,3.43,2.70,-2.70,-2.80,-2.52,0.72,0.72,0.73 1691.85,3.54,2.73,3.54,2.72,-2.72,-2.84,-2.58,0.82,0.82,0.82 1708.77,3.66,2.75,3.66,2.74,-2.74,-2.89,-2.64,0.92,0.92,0.92 1725.86,3.78,2.76,3.79,2.77,-2.76,-2.93,-2.69,1.02,1.02,1.03 1743.12,3.91,2.79,3.91,2.78,-2.78,-2.97,-2.75,1.13,1.13,1.13 1760.55,4.04,2.81,4.04,2.80,-2.80,-3.02,-2.81,1.24,1.24,1.24 1778.15,4.16,2.81,4.17,2.82,-2.82,-3.06,-2.86,1.35,1.36,1.36 1795.94,4.30,2.85,4.30,2.83,-2.83,-3.09,-2.91,1.48,1.47,1.46 1813.90,4.42,2.84,4.42,2.84,-2.84,-3.13,-2.95,1.59,1.59,1.59 1832.03,4.54,2.85,4.55,2.85,-2.84,-3.16,-3.00,1.70,1.70,1.70 1850.36,4.67,2.85,4.67,2.85,-2.85,-3.19,-3.04,1.82,1.82,1.83 1868.86,4.80,2.85,4.80,2.85,-2.85,-3.21,-3.07,1.95,1.95,1.96 1887.55,4.93,2.86,4.94,2.86,-2.85,-3.23,-3.10,2.08,2.08,2.08 1906.42,5.06,2.86,5.07,2.86,-2.85,-3.25,-3.13,2.21,2.21,2.21 1925.49,5.20,2.87,5.20,2.86,-2.85,-3.26,-3.15,2.35,2.34,2.34 1944.74,5.32,2.85,5.33,2.86,-2.86,-3.27,-3.16,2.47,2.48,2.48 1964.19,5.46,2.87,5.46,2.86,-2.86,-3.27,-3.17,2.61,2.60,2.60 1983.83,5.59,2.86,5.59,2.86,-2.86,-3.27,-3.18,2.73,2.72,2.74 2003.67,5.71,2.86,5.72,2.86,-2.87,-3.26,-3.18,2.84,2.85,2.86 2023.71,5.84,2.87,5.85,2.87,-2.88,-3.24,-3.17,2.97,2.97,2.98 2043.94,5.97,2.89,5.97,2.89,-2.89,-3.22,-3.16,3.09,3.09,3.09 2064.38,6.10,2.92,6.10,2.91,-2.90,-3.20,-3.14,3.20,3.20,3.19 2085.03,6.22,2.92,6.22,2.92,-2.91,-3.17,-3.12,3.31,3.31,3.31 2105.88,6.33,2.92,6.34,2.92,-2.92,-3.13,-3.09,3.41,3.42,3.42 2126.94,6.45,2.93,6.45,2.92,-2.93,-3.09,-3.05,3.52,3.52,3.53 2148.20,6.56,2.93,6.57,2.93,-2.93,-3.05,-3.02,3.63,3.63,3.64 2169.69,6.68,2.94,6.68,2.93,-2.93,-3.00,-2.97,3.75,3.75,3.75 2191.38,6.79,2.94,6.79,2.93,-2.93,-2.94,-2.93,3.87,3.86,3.86 2213.30,6.88,2.92,6.88,2.92,-2.92,-2.89,-2.88,3.97,3.97,3.97 2235.43,6.96,2.90,6.97,2.90,-2.90,-2.83,-2.82,4.07,4.07,4.07 2257.78,7.04,2.88,7.05,2.88,-2.87,-2.76,-2.76,4.17,4.18,4.17 2280.36,7.12,2.85,7.12,2.85,-2.84,-2.69,-2.71,4.29,4.28,4.28 2303.17,7.19,2.82,7.19,2.81,-2.80,-2.62,-2.64,4.40,4.39,4.38 2326.20,7.24,2.75,7.25,2.75,-2.75,-2.55,-2.58,4.49,4.49,4.50 2349.46,7.29,2.69,7.29,2.69,-2.70,-2.48,-2.51,4.59,4.59,4.61 2372.95,7.32,2.63,7.33,2.63,-2.65,-2.40,-2.45,4.68,4.68,4.70 2396.68,7.36,2.59,7.36,2.58,-2.59,-2.32,-2.38,4.78,4.78,4.78 2420.65,7.39,2.53,7.39,2.53,-2.52,-2.24,-2.31,4.87,4.87,4.87 2444.86,7.41,2.47,7.41,2.46,-2.45,-2.16,-2.25,4.96,4.96,4.95 2469.31,7.41,2.39,7.42,2.38,-2.38,-2.08,-2.18,5.04,5.04,5.03 2494.00,7.41,2.30,7.41,2.30,-2.30,-2.00,-2.11,5.12,5.12,5.12 2518.94,7.39,2.21,7.40,2.21,-2.21,-1.91,-2.04,5.18,5.19,5.19 2544.13,7.37,2.13,7.37,2.12,-2.12,-1.83,-1.97,5.26,5.25,5.25 2569.57,7.33,2.02,7.33,2.02,-2.02,-1.74,-1.91,5.32,5.32,5.32 2595.27,7.28,1.91,7.29,1.91,-1.91,-1.66,-1.84,5.37,5.37,5.38 2621.22,7.23,1.80,7.23,1.80,-1.81,-1.57,-1.77,5.43,5.43,5.44 2647.43,7.17,1.69,7.18,1.69,-1.70,-1.48,-1.71,5.48,5.48,5.49 2673.90,7.11,1.60,7.11,1.59,-1.58,-1.39,-1.65,5.53,5.53,5.52 2700.64,7.03,1.48,7.03,1.47,-1.47,-1.31,-1.59,5.57,5.56,5.56 2727.65,6.93,1.36,6.94,1.35,-1.35,-1.21,-1.52,5.59,5.59,5.58 2754.93,6.82,1.22,6.83,1.22,-1.23,-1.12,-1.46,5.60,5.61,5.61 2782.48,6.72,1.10,6.72,1.10,-1.10,-1.03,-1.41,5.62,5.62,5.63 2810.30,6.60,0.97,6.60,0.97,-0.98,-0.93,-1.35,5.63,5.63,5.64 2838.40,6.47,0.86,6.47,0.85,-0.85,-0.84,-1.29,5.62,5.62,5.62 2866.79,6.33,0.73,6.33,0.72,-0.72,-0.74,-1.24,5.61,5.61,5.61 2895.46,6.18,0.59,6.19,0.59,-0.59,-0.64,-1.18,5.59,5.60,5.60 2924.41,6.04,0.47,6.04,0.46,-0.46,-0.53,-1.13,5.58,5.57,5.58 2953.65,5.88,0.34,5.89,0.33,-0.34,-0.42,-1.08,5.55,5.55,5.55 2983.19,5.73,0.21,5.73,0.21,-0.20,-0.31,-1.03,5.53,5.53,5.53 3013.02,5.57,0.08,5.57,0.08,-0.07,-0.19,-0.98,5.50,5.50,5.50 3043.15,5.41,-0.05,5.42,-0.05,0.06,-0.07,-0.93,5.47,5.48,5.47 3073.58,5.25,-0.17,5.25,-0.19,0.19,0.06,-0.88,5.44,5.44,5.43 3104.32,5.08,-0.32,5.08,-0.32,0.31,0.19,-0.84,5.40,5.40,5.41 3135.36,4.91,-0.45,4.92,-0.45,0.44,0.32,-0.79,5.35,5.36,5.37 3166.72,4.76,-0.56,4.76,-0.56,0.56,0.46,-0.75,5.32,5.32,5.33 3198.38,4.61,-0.66,4.61,-0.66,0.67,0.59,-0.70,5.28,5.28,5.28 3230.37,4.46,-0.76,4.46,-0.76,0.77,0.72,-0.66,5.24,5.23,5.23 3262.67,4.31,-0.85,4.31,-0.86,0.87,0.84,-0.62,5.18,5.18,5.17 3295.30,4.16,-0.96,4.17,-0.96,0.95,0.95,-0.58,5.12,5.12,5.13 3328.25,4.04,-1.03,4.04,-1.04,1.02,1.05,-0.54,5.07,5.07,5.08 3361.53,3.92,-1.10,3.93,-1.10,1.09,1.12,-0.49,5.01,5.02,5.03 3395.15,3.83,-1.14,3.83,-1.14,1.14,1.17,-0.45,4.98,4.97,4.98 3429.10,3.74,-1.17,3.74,-1.18,1.19,1.20,-0.41,4.93,4.93,4.92 3463.39,3.66,-1.20,3.66,-1.21,1.22,1.21,-0.37,4.88,4.88,4.87 3498.03,3.58,-1.23,3.59,-1.23,1.23,1.19,-0.33,4.81,4.82,4.82 3533.01,3.52,-1.24,3.53,-1.24,1.23,1.16,-0.29,4.76,4.76,4.77 3568.34,3.48,-1.23,3.48,-1.24,1.22,1.12,-0.25,4.71,4.70,4.72 3604.02,3.45,-1.21,3.46,-1.21,1.20,1.08,-0.21,4.66,4.66,4.67 3640.06,3.44,-1.18,3.45,-1.17,1.17,1.03,-0.17,4.62,4.62,4.63 3676.46,3.45,-1.12,3.45,-1.13,1.13,0.98,-0.13,4.58,4.58,4.58 3713.22,3.47,-1.06,3.47,-1.07,1.08,0.93,-0.09,4.55,4.55,4.54 3750.36,3.49,-1.02,3.49,-1.02,1.02,0.89,-0.05,4.52,4.52,4.52 3787.86,3.52,-0.96,3.53,-0.96,0.96,0.85,-0.01,4.49,4.49,4.49 3825.74,3.58,-0.89,3.58,-0.90,0.90,0.82,0.04,4.48,4.48,4.48 3864.00,3.64,-0.82,3.64,-0.83,0.84,0.78,0.08,4.48,4.48,4.47 3902.64,3.70,-0.76,3.70,-0.76,0.77,0.75,0.13,4.47,4.47,4.47 3941.66,3.77,-0.69,3.77,-0.70,0.70,0.73,0.17,4.47,4.47,4.47 3981.08,3.84,-0.64,3.85,-0.64,0.63,0.70,0.22,4.47,4.47,4.49 4020.89,3.93,-0.57,3.94,-0.57,0.55,0.68,0.27,4.49,4.49,4.51 4061.10,4.03,-0.48,4.03,-0.49,0.48,0.65,0.32,4.51,4.51,4.52 4101.71,4.13,-0.39,4.13,-0.40,0.41,0.62,0.37,4.54,4.54,4.53 4142.73,4.23,-0.32,4.23,-0.32,0.34,0.60,0.42,4.57,4.57,4.56 4184.15,4.32,-0.25,4.33,-0.25,0.27,0.56,0.47,4.59,4.59,4.58 4226.00,4.41,-0.19,4.41,-0.20,0.20,0.53,0.53,4.62,4.61,4.61 4268.26,4.48,-0.14,4.49,-0.14,0.14,0.49,0.59,4.63,4.63,4.63 4310.94,4.55,-0.09,4.56,-0.09,0.09,0.44,0.64,4.64,4.65,4.65 4354.05,4.62,-0.03,4.62,-0.04,0.04,0.38,0.70,4.66,4.66,4.66 4397.59,4.68,0.02,4.68,0.01,-0.01,0.32,0.76,4.67,4.67,4.67 4441.56,4.72,0.06,4.73,0.06,-0.06,0.24,0.83,4.66,4.66,4.67 4485.98,4.76,0.10,4.77,0.11,-0.11,0.15,0.89,4.65,4.66,4.67 4530.84,4.80,0.17,4.80,0.16,-0.16,0.05,0.95,4.64,4.64,4.64 4576.15,4.82,0.21,4.82,0.21,-0.21,-0.06,1.02,4.61,4.61,4.62 4621.91,4.83,0.27,4.83,0.26,-0.26,-0.18,1.09,4.57,4.57,4.57 4668.13,4.83,0.31,4.84,0.31,-0.31,-0.31,1.16,4.52,4.52,4.53 4714.81,4.82,0.36,4.82,0.36,-0.36,-0.44,1.23,4.46,4.46,4.47 4761.96,4.80,0.41,4.80,0.40,-0.41,-0.56,1.30,4.39,4.39,4.40 4809.58,4.75,0.43,4.76,0.44,-0.45,-0.66,1.38,4.31,4.32,4.33 4857.67,4.71,0.47,4.71,0.47,-0.47,-0.73,1.46,4.24,4.24,4.25 4906.25,4.64,0.49,4.64,0.49,-0.48,-0.75,1.53,4.16,4.16,4.16 4955.31,4.55,0.49,4.56,0.49,-0.47,-0.71,1.61,4.08,4.08,4.07 5004.87,4.44,0.47,4.44,0.46,-0.44,-0.62,1.70,4.00,4.00,3.98 5054.91,4.29,0.39,4.30,0.40,-0.38,-0.46,1.78,3.91,3.92,3.91 5105.46,4.12,0.31,4.12,0.30,-0.29,-0.26,1.87,3.83,3.83,3.82 5156.52,3.92,0.19,3.92,0.18,-0.17,-0.02,1.96,3.75,3.74,3.74 5208.08,3.68,0.03,3.69,0.03,-0.02,0.24,2.05,3.66,3.66,3.66 5260.16,3.42,-0.15,3.42,-0.15,0.16,0.51,2.14,3.58,3.58,3.58 5312.77,3.13,-0.36,3.13,-0.36,0.36,0.78,2.24,3.50,3.49,3.50 5365.89,2.81,-0.58,2.81,-0.59,0.60,1.05,2.34,3.41,3.41,3.40 5419.55,2.46,-0.84,2.46,-0.85,0.86,1.31,2.44,3.32,3.32,3.31 5473.75,2.09,-1.12,2.09,-1.13,1.13,1.56,2.54,3.23,3.22,3.22 5528.49,1.69,-1.42,1.69,-1.42,1.43,1.79,2.65,3.12,3.12,3.12 5583.77,1.28,-1.73,1.28,-1.73,1.73,2.02,2.76,3.02,3.01,3.02 5639.61,0.85,-2.04,0.85,-2.05,2.04,2.25,2.87,2.90,2.89,2.90 5696.00,0.42,-2.36,0.41,-2.36,2.36,2.47,2.99,2.78,2.77,2.79 5752.96,-0.03,-2.67,-0.04,-2.67,2.67,2.69,3.11,2.65,2.64,2.65 5810.49,-0.48,-2.98,-0.49,-2.98,2.98,2.90,3.23,2.50,2.48,2.51 5868.60,-0.94,-3.27,-0.95,-3.27,3.27,3.12,3.36,2.33,2.31,2.34 5927.28,-1.40,-3.56,-1.42,-3.56,3.54,3.35,3.49,2.15,2.12,2.17 5986.56,-1.86,-3.83,-1.88,-3.82,3.80,3.59,3.62,1.94,1.92,1.98 6046.42,-2.32,-4.07,-2.35,-4.05,4.04,3.83,3.76,1.72,1.69,1.76 6106.89,-2.77,-4.27,-2.81,-4.26,4.25,4.08,3.90,1.49,1.45,1.51 6167.96,-3.23,-4.47,-3.27,-4.44,4.45,4.32,4.05,1.22,1.18,1.25 6229.64,-3.68,-4.65,-3.73,-4.62,4.63,4.56,4.20,0.95,0.89,0.98 6291.93,-4.15,-4.84,-4.19,-4.79,4.78,4.77,4.35,0.64,0.59,0.70 6354.85,-4.61,-5.01,-4.65,-4.93,4.92,4.93,4.51,0.31,0.27,0.41 6418.40,-5.04,-5.13,-5.09,-5.05,5.04,5.05,4.67,0.00,-0.05,0.10 6482.58,-5.48,-5.25,-5.51,-5.15,5.14,5.11,4.83,-0.33,-0.37,-0.22 6547.41,-5.91,-5.35,-5.93,-5.24,5.24,5.15,5.00,-0.67,-0.69,-0.55 6612.88,-6.35,-5.45,-6.33,-5.32,5.32,5.18,5.17,-1.03,-1.01,-0.89 6679.01,-6.79,-5.54,-6.72,-5.39,5.39,5.20,5.34,-1.40,-1.33,-1.24 6745.80,-7.23,-5.59,-7.08,-5.45,5.45,5.23,5.52,-1.77,-1.63,-1.63 6813.26,-7.67,-5.62,-7.42,-5.51,5.53,5.27,5.70,-2.14,-1.89,-2.04 6881.39,-8.10,-5.62,-7.72,-5.57,5.61,5.33,5.87,-2.49,-2.11,-2.47 6950.21,-8.52,-5.61,-7.98,-5.64,5.68,5.39,6.05,-2.83,-2.30,-2.90 7019.71,-8.95,-5.58,-8.21,-5.73,5.76,5.47,6.23,-3.19,-2.45,-3.36 7089.91,-9.34,-5.50,-8.41,-5.82,5.83,5.55,6.40,-3.51,-2.59,-3.83 7160.81,-9.73,-5.39,-8.58,-5.93,5.89,5.64,6.57,-3.84,-2.70,-4.33 7232.41,-10.11,-5.26,-8.74,-6.06,5.94,5.73,6.74,-4.17,-2.80,-4.84 7304.74,-10.47,-5.12,-8.88,-6.20,5.98,5.83,6.90,-4.49,-2.90,-5.34 7377.79,-10.83,-5.00,-9.01,-6.34,6.00,5.93,7.05,-4.82,-3.01,-5.82 7451.56,-11.17,-4.88,-9.13,-6.49,6.02,6.02,7.19,-5.15,-3.12,-6.28 7526.08,-11.50,-4.78,-9.25,-6.65,6.02,6.12,7.32,-5.48,-3.23,-6.71 7601.34,-11.80,-4.68,-9.37,-6.79,6.01,6.21,7.43,-5.78,-3.35,-7.11 7677.35,-12.09,-4.64,-9.48,-6.93,6.00,6.30,7.53,-6.08,-3.47,-7.44 7754.13,-12.35,-4.61,-9.58,-7.06,6.00,6.39,7.61,-6.35,-3.58,-7.73 7831.67,-12.58,-4.62,-9.69,-7.18,6.00,6.47,7.67,-6.58,-3.69,-7.95 7909.98,-12.80,-4.69,-9.79,-7.29,6.00,6.55,7.70,-6.80,-3.79,-8.10 7989.08,-13.01,-4.82,-9.88,-7.40,6.00,6.62,7.72,-7.01,-3.88,-8.18 8068.98,-13.22,-5.01,-9.97,-7.48,6.00,6.68,7.71,-7.22,-3.97,-8.20 8149.67,-13.42,-5.25,-10.05,-7.56,6.00,6.74,7.67,-7.42,-4.05,-8.16 8231.16,-13.59,-5.54,-10.13,-7.63,6.00,6.78,7.62,-7.59,-4.13,-8.04 8313.47,-13.75,-5.88,-10.19,-7.69,6.00,6.82,7.54,-7.75,-4.19,-7.86 8396.61,-13.89,-6.27,-10.24,-7.73,6.00,6.85,7.44,-7.89,-4.24,-7.61 8480.57,-14.01,-6.70,-10.28,-7.76,6.00,6.86,7.32,-8.01,-4.28,-7.30 8565.38,-14.10,-7.11,-10.31,-7.79,6.00,6.87,7.18,-8.10,-4.31,-6.98 8651.03,-14.19,-7.57,-10.33,-7.80,6.00,6.87,7.03,-8.19,-4.33,-6.61 8737.54,-14.26,-8.03,-10.33,-7.80,6.00,6.85,6.86,-8.26,-4.33,-6.22 8824.92,-14.33,-8.50,-10.33,-7.80,6.00,6.83,6.69,-8.33,-4.33,-5.82 8913.17,-14.37,-8.95,-10.32,-7.78,6.00,6.80,6.50,-8.37,-4.32,-5.41 9002.30,-14.41,-9.40,-10.29,-7.76,6.00,6.75,6.30,-8.41,-4.29,-5.00 9092.32,-14.43,-9.82,-10.26,-7.73,6.00,6.70,6.10,-8.43,-4.26,-4.60 9183.25,-14.42,-10.19,-10.23,-7.69,6.00,6.64,5.90,-8.42,-4.23,-4.22 9275.08,-14.39,-10.52,-10.18,-7.64,6.00,6.58,5.69,-8.39,-4.18,-3.86 9367.83,-14.35,-10.83,-10.13,-7.59,6.00,6.50,5.48,-8.35,-4.13,-3.51 9461.51,-14.30,-11.10,-10.08,-7.54,6.00,6.42,5.27,-8.30,-4.08,-3.19 9556.12,-14.23,-11.34,-10.03,-7.47,6.00,6.34,5.07,-8.23,-4.03,-2.88 9651.68,-14.13,-11.51,-9.97,-7.41,6.00,6.25,4.86,-8.13,-3.97,-2.61 9748.20,-14.00,-11.64,-9.91,-7.34,6.00,6.16,4.66,-8.00,-3.91,-2.35 9845.68,-13.85,-11.73,-9.85,-7.26,6.00,6.07,4.45,-7.85,-3.85,-2.11 9944.14,-13.65,-11.76,-9.79,-7.18,6.00,5.98,4.26,-7.65,-3.79,-1.88 10043.58,-13.40,-11.72,-9.73,-7.10,6.00,5.89,4.06,-7.40,-3.73,-1.67 10144.02,-13.08,-11.63,-9.83,-7.02,6.00,5.80,3.87,-7.08,-3.83,-1.44 10245.46,-12.71,-11.47,-9.93,-6.93,6.00,5.71,3.69,-6.71,-3.93,-1.23 10347.91,-12.27,-11.23,-10.02,-6.83,6.00,5.63,3.51,-6.27,-4.02,-1.03 10451.39,-11.78,-10.93,-10.12,-6.73,6.01,5.54,3.33,-5.77,-4.11,-0.84 10555.91,-11.22,-10.54,-10.21,-6.63,6.02,5.47,3.16,-5.19,-4.19,-0.67 10661.46,-10.62,-10.10,-10.31,-6.51,6.03,5.40,2.99,-4.59,-4.28,-0.51 10768.08,-9.98,-9.60,-10.40,-6.39,6.03,5.33,2.82,-3.95,-4.37,-0.37 10875.76,-9.34,-9.08,-10.49,-6.27,6.01,5.27,2.66,-3.33,-4.48,-0.25 10984.52,-8.69,-8.53,-10.58,-6.14,5.97,5.22,2.51,-2.72,-4.61,-0.15 11094.36,-8.06,-7.98,-10.67,-6.01,5.91,5.17,2.35,-2.15,-4.76,-0.07 11205.31,-7.45,-7.43,-10.76,-5.87,5.82,5.12,2.20,-1.62,-4.94,-0.01 11317.36,-6.87,-6.88,-10.85,-5.72,5.72,5.08,2.06,-1.15,-5.14,0.02 11430.53,-6.34,-6.34,-10.94,-5.57,5.58,5.04,1.91,-0.75,-5.35,0.01 11544.84,-5.89,-5.85,-11.03,-5.41,5.43,5.00,1.77,-0.45,-5.59,-0.03 11660.29,-5.50,-5.39,-11.11,-5.24,5.26,4.96,1.63,-0.23,-5.85,-0.10 11776.89,-5.18,-4.96,-11.20,-5.07,5.08,4.90,1.50,-0.09,-6.11,-0.21 11894.66,-4.92,-4.57,-11.28,-4.90,4.90,4.84,1.36,-0.02,-6.38,-0.34 12013.60,-4.70,-4.17,-11.37,-4.72,4.72,4.76,1.23,0.02,-6.65,-0.52 12133.74,-4.53,-3.79,-11.45,-4.53,4.53,4.66,1.10,0.00,-6.92,-0.73 12255.08,-4.40,-3.40,-11.53,-4.34,4.34,4.53,0.97,-0.06,-7.20,-0.99 12377.63,-4.29,-2.99,-11.61,-4.14,4.14,4.38,0.84,-0.15,-7.48,-1.29 12501.41,-4.21,-2.57,-11.69,-3.93,3.93,4.19,0.71,-0.27,-7.76,-1.63 12626.42,-4.14,-2.11,-11.77,-3.72,3.72,3.97,0.58,-0.41,-8.05,-2.02 12752.68,-4.08,-1.63,-11.85,-3.51,3.51,3.73,0.44,-0.57,-8.35,-2.44 12880.21,-4.05,-1.13,-11.93,-3.29,3.29,3.45,0.31,-0.76,-8.65,-2.91 13009.01,-4.05,-0.65,-12.01,-3.06,3.06,3.15,0.18,-0.99,-8.95,-3.39 13139.10,-4.07,-0.15,-12.08,-2.83,2.83,2.83,0.04,-1.24,-9.26,-3.91 13270.49,-4.14,0.30,-12.16,-2.59,2.59,2.50,-0.10,-1.55,-9.57,-4.43 13403.20,-4.25,0.73,-12.24,-2.34,2.34,2.16,-0.25,-1.90,-9.89,-4.97 13537.23,-4.40,1.12,-12.31,-2.09,2.09,1.82,-0.40,-2.30,-10.22,-5.51 13672.60,-4.59,1.49,-12.38,-1.84,1.84,1.47,-0.55,-2.75,-10.55,-6.07 13809.33,-4.82,1.82,-12.46,-1.57,1.57,1.13,-0.71,-3.24,-10.88,-6.63 13947.42,-5.08,2.12,-12.53,-1.31,1.31,0.79,-0.88,-3.77,-11.22,-7.19 14086.90,-5.39,2.37,-12.60,-1.03,1.03,0.45,-1.05,-4.35,-11.57,-7.75 14227.77,-5.72,2.58,-12.67,-0.75,0.75,0.12,-1.23,-4.96,-11.91,-8.29 14370.04,-6.07,2.78,-12.74,-0.47,0.47,-0.20,-1.42,-5.60,-12.27,-8.84 14513.74,-6.42,2.97,-12.81,-0.18,0.18,-0.52,-1.62,-6.24,-12.63,-9.38 14658.88,-6.77,3.15,-12.87,0.12,-0.12,-0.83,-1.82,-6.88,-12.99,-9.91 14805.47,-7.13,3.32,-12.94,0.42,-0.42,-1.13,-2.03,-7.55,-13.36,-10.44 14953.52,-7.49,3.49,-13.01,0.73,-0.73,-1.43,-2.24,-8.21,-13.73,-10.97 15103.06,-7.83,3.71,-13.07,1.04,-1.04,-1.73,-2.45,-8.87,-14.11,-11.53 15254.09,-8.18,3.93,-13.14,1.36,-1.36,-2.03,-2.65,-9.54,-14.50,-12.10 15406.63,-8.53,4.15,-13.20,1.69,-1.69,-2.32,-2.84,-10.21,-14.89,-12.67 15560.70,-8.88,4.36,-13.26,2.02,-2.02,-2.61,-3.01,-10.89,-15.28,-13.23 15716.30,-9.26,4.55,-13.32,2.35,-2.35,-2.91,-3.15,-11.61,-15.68,-13.80 15873.47,-9.67,4.70,-13.39,2.70,-2.70,-3.20,-3.25,-12.36,-16.08,-14.36 16032.20,-10.15,4.82,-13.45,3.04,-3.04,-3.50,-3.29,-13.19,-16.49,-14.96 16192.52,-10.69,4.98,-13.51,3.40,-3.40,-3.81,-3.28,-14.08,-16.90,-15.66 16354.45,-11.32,5.07,-13.56,3.76,-3.76,-4.12,-3.21,-15.07,-17.32,-16.38 16517.99,-12.01,5.11,-13.62,4.12,-4.12,-4.44,-3.09,-16.13,-17.74,-17.11 16683.17,-12.77,5.13,-13.68,4.49,-4.49,-4.76,-2.92,-17.26,-18.17,-17.89 16850.01,-13.58,5.10,-13.74,4.87,-4.87,-5.10,-2.72,-18.45,-18.61,-18.67 17018.51,-14.45,5.05,-13.79,5.25,-5.25,-5.45,-2.49,-19.70,-19.04,-19.49 17188.69,-15.36,5.07,-13.85,5.64,-5.64,-5.81,-2.25,-21.00,-19.49,-20.42 17360.58,-16.27,5.10,-13.90,6.04,-6.04,-6.19,-2.02,-22.30,-19.94,-21.36 17534.18,-17.17,5.15,-13.95,6.44,-6.44,-6.58,-1.79,-23.60,-20.39,-22.31 17709.53,-18.05,5.21,-14.00,6.84,-6.84,-7.00,-1.57,-24.89,-20.85,-23.25 17886.62,-18.87,5.33,-14.06,7.25,-7.25,-7.43,-1.37,-26.12,-21.31,-24.19 18065.49,-19.64,5.46,-14.11,7.67,-7.67,-7.88,-1.19,-27.31,-21.78,-25.09 18246.14,-20.31,5.76,-14.16,8.09,-8.09,-8.35,-1.02,-28.40,-22.25,-26.06 18428.60,-20.90,6.13,-14.21,8.52,-8.52,-8.83,-0.87,-29.42,-22.73,-27.02 18612.89,-21.44,6.53,-14.25,8.96,-8.96,-9.33,-0.75,-30.39,-23.21,-27.96 18799.02,-21.92,6.98,-14.30,9.40,-9.40,-9.82,-0.63,-31.31,-23.70,-28.89 18987.01,-22.36,7.45,-14.35,9.84,-9.84,-10.30,-0.53,-32.20,-24.19,-29.80 19176.88,-22.75,8.05,-14.39,10.29,-10.29,-10.73,-0.44,-33.04,-24.69,-30.79 19368.65,-23.08,8.71,-14.44,10.75,-10.75,-11.06,-0.37,-33.83,-25.19,-31.78 19562.33,-23.35,9.41,-14.48,11.21,-11.21,-11.25,-0.30,-34.56,-25.70,-32.75 19757.96,-23.58,10.13,-14.53,11.68,-11.68,-11.22,-0.25,-35.26,-26.21,-33.70 19955.54,-23.75,10.91,-14.57,12.16,-12.16,-10.93,-0.20,-35.90,-26.72,-34.65
CSV
3
vinzmc/AutoEq
results/referenceaudioanalyzer/referenceaudioanalyzer_siec_harman_in-ear_2019v2/Whizzer A15 Pro/Whizzer A15 Pro.csv
[ "MIT" ]
/*--------------------------------------------------*/ /* SAS Programming for R Users - code for exercises */ /* Copyright 2016 SAS Institute Inc. */ /*--------------------------------------------------*/ /*SP4R08d01*/ /*Part A*/ ods select basicmeasures histogram; proc univariate data=sp4r.fish; var weight; histogram weight; run; /*Part B proc iml; submit / r; install.packages("boot") endsubmit; quit;*/ /* NOTE: You must delete the SAS comments in the SUBMIT block. The comments are passed to R and cause errors! */ /*Part C*/ proc iml; call ExportDataSetToR("sp4r.fish","fish"); /*Part D*/ submit / r; library(boot) set.seed(802) numreps = 1000 bootMean <- function(data,variable,index){ attach(data) result <- mean(variable[index],na.rm=TRUE) detach(data) return(result) } results <- boot(data=fish,statistic=bootMean, R=numreps,variable=Weight) /*Part E*/ boot.ci(results, conf=0.95, type="perc", index=1) plot(results) /*Part F*/ boots <- data.frame("boots"=results$t) endsubmit; /*Part G*/ call ImportDataSetFromR("sp4r.RData","boots"); submit; proc print data=sp4r.RData (obs=10); run; endsubmit; quit;
SAS
4
snowdj/sas-prog-for-r-users
code/SP4R08d01.sas
[ "CC-BY-4.0" ]
#!/usr/bin/env bash cd internal make clean && make
Shell
2
columbus9963/kubernetes
vendor/gonum.org/v1/gonum/graph/formats/dot/makeinternal.bash
[ "Apache-2.0" ]
#include <metal_stdlib> #include <simd/simd.h> using namespace metal; struct Inputs { }; struct Outputs { half4 sk_FragColor [[color(0)]]; }; fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) { Outputs _out; (void)_out; array<half, 3> rgb; half a; rgb[0] = 0.0h; rgb[1] = 1.0h; rgb[2] = 0.0h; a = 1.0h; _out.sk_FragColor = half4(rgb[0], rgb[1], rgb[2], a); return _out; }
Metal
3
fourgrad/skia
tests/sksl/shared/ArrayFollowedByScalar.metal
[ "BSD-3-Clause" ]
\begin{code} module Main (main) where import Distribution.Simple (defaultMain) main :: IO () main = defaultMain \end{code}
Literate Haskell
3
duobei/lens
Setup.lhs
[ "BSD-2-Clause" ]
((c++-mode (flycheck-gcc-language-standard . "c++11") (flycheck-clang-language-standard . "c++11") ))
Emacs Lisp
3
Neptos/openpilot
.dir-locals.el
[ "MIT" ]
# set terminal postscript eps color 20 lw 3 # set output '| epstopdf -f -o=computation-time-reduce-surface.pdf' set terminal svg fname 'Verdana' lw 2 # size 640 480 fname 'Verdana' lw 3 set output 'computation-time-reduce-surface.svg' set key autotitle columnheader set ylabel "Time (sec)" set xlabel "#Darts" set key left # set xtics (0, '' 1, 2, 4, 8, 16, 32, 64) #set ytics (0, 30, 60, 90, 120, 150, 180,200) set xrange [0:30500000] set yrange [0:35] # set auto y # set logscale x # set logscale y # set xtics ('5,000,000' 5000000, '12,000,000' 12000000, '19,000,000' 19000000, '26,000,000' 26000000, ) # set xtics ('5,000,000' 5000000, '11,000,000' 11000000, '17,000,000' 17000000, '23,000,000' 23000000, '29,000,000' 29000000 ) set xtics ('5,000,000' 5000000, '10,000,000' 10000000, '15,000,000' 15000000, '20,000,000' 20000000, '25,000,000' 25000000, '30,000,000' 30000000 ) # set auto x set format x '%.0f' FIT_LIMIT=1.e-14 # f(x) = a*x**2 + b*x + c f(x) = a*x + b fit f(x) 'computation-time-reduce-surface.dat' using 1:9 via a,b # fit f(x) 'computation-time-reduce-surface.dat' using (log($1)):(log($9)) via a,b plot 'computation-time-reduce-surface.dat' using 1:9 with points title "Reduce surface computation", f(x) title 'Model Fit'
Gnuplot
3
ffteja/cgal
Surface_mesh_topology/benchmark/Surface_mesh_topology/graphs/computation-time-reduce-surface.gnuplot
[ "CC0-1.0" ]
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime"); var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M19 8.7c-2.46 1.5-5.5 4.17-6 8.3h2v2H9v-2h2c-.5-4.5-4.37-8-9-8V7c4.39 0 8.22 2.55 10 6.3 1.38-2.97 3.86-5.03 5.96-6.31L14 7V5h7v7h-2V8.7z" }), 'AirlineStopsOutlined'); exports.default = _default;
JavaScript
3
dany-freeman/material-ui
packages/mui-icons-material/lib/AirlineStopsOutlined.js
[ "MIT" ]
#!/bin/bash # Copyright (c) Facebook, Inc. and its affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # Set terminal title echo -en "\\033]0;Metro\\a" clear THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd) # export packager environment variables source "$THIS_DIR/.packager.env" if [ -n "${RCT_PACKAGER_LOGS_DIR}" ] ; then echo "Writing logs to $RCT_PACKAGER_LOGS_DIR" # shellcheck source=/dev/null RCT_PACKAGER_LOG_PATH="$RCT_PACKAGER_LOGS_DIR/metro.log" \ . "$THIS_DIR/packager.sh" \ > "$RCT_PACKAGER_LOGS_DIR/packager.stdout.log" \ 2> "$RCT_PACKAGER_LOGS_DIR/packager.stderr.log" else # shellcheck source=/dev/null . "$THIS_DIR/packager.sh" fi if [[ -z "$CI" ]]; then echo "Process terminated. Press <enter> to close the window" read -r fi
Shell
4
peterc1731/react-native
scripts/launchPackager.command
[ "CC-BY-4.0", "MIT" ]
/home/spinalvm/hdl/riscv-compliance/work//I-SLTU-01.elf: file format elf32-littleriscv Disassembly of section .text.init: 80000000 <_start>: 80000000: 00001097 auipc ra,0x1 80000004: 00008093 mv ra,ra 80000008: 00001117 auipc sp,0x1 8000000c: 01810113 addi sp,sp,24 # 80001020 <codasip_signature_start> 80000010: 0000a183 lw gp,0(ra) # 80001000 <test_A1_data> 80000014: 00100213 li tp,1 80000018: 800002b7 lui t0,0x80000 8000001c: fff28293 addi t0,t0,-1 # 7fffffff <_end+0xffffef1f> 80000020: fff00313 li t1,-1 80000024: 00000393 li t2,0 80000028: 80000437 lui s0,0x80000 8000002c: 0041b233 sltu tp,gp,tp 80000030: 0051b2b3 sltu t0,gp,t0 80000034: 0061b333 sltu t1,gp,t1 80000038: 0071b3b3 sltu t2,gp,t2 8000003c: 0081b433 sltu s0,gp,s0 80000040: 00312023 sw gp,0(sp) 80000044: 00412223 sw tp,4(sp) 80000048: 00512423 sw t0,8(sp) 8000004c: 00612623 sw t1,12(sp) 80000050: 00712823 sw t2,16(sp) 80000054: 00812a23 sw s0,20(sp) 80000058: 00001097 auipc ra,0x1 8000005c: fac08093 addi ra,ra,-84 # 80001004 <test_A2_data> 80000060: 00001117 auipc sp,0x1 80000064: fd810113 addi sp,sp,-40 # 80001038 <test_A2_res> 80000068: 0000a403 lw s0,0(ra) 8000006c: 00100493 li s1,1 80000070: 80000537 lui a0,0x80000 80000074: fff50513 addi a0,a0,-1 # 7fffffff <_end+0xffffef1f> 80000078: fff00593 li a1,-1 8000007c: 00000613 li a2,0 80000080: 800006b7 lui a3,0x80000 80000084: 009434b3 sltu s1,s0,s1 80000088: 00a43533 sltu a0,s0,a0 8000008c: 00b435b3 sltu a1,s0,a1 80000090: 00c43633 sltu a2,s0,a2 80000094: 00d436b3 sltu a3,s0,a3 80000098: 00812023 sw s0,0(sp) 8000009c: 00912223 sw s1,4(sp) 800000a0: 00a12423 sw a0,8(sp) 800000a4: 00b12623 sw a1,12(sp) 800000a8: 00c12823 sw a2,16(sp) 800000ac: 00d12a23 sw a3,20(sp) 800000b0: 00001097 auipc ra,0x1 800000b4: f5808093 addi ra,ra,-168 # 80001008 <test_A3_data> 800000b8: 00001117 auipc sp,0x1 800000bc: f9810113 addi sp,sp,-104 # 80001050 <test_A3_res> 800000c0: 0000a683 lw a3,0(ra) 800000c4: 00100713 li a4,1 800000c8: 800007b7 lui a5,0x80000 800000cc: fff78793 addi a5,a5,-1 # 7fffffff <_end+0xffffef1f> 800000d0: fff00813 li a6,-1 800000d4: 00000893 li a7,0 800000d8: 80000937 lui s2,0x80000 800000dc: 00e6b733 sltu a4,a3,a4 800000e0: 00f6b7b3 sltu a5,a3,a5 800000e4: 0106b833 sltu a6,a3,a6 800000e8: 0116b8b3 sltu a7,a3,a7 800000ec: 0126b933 sltu s2,a3,s2 800000f0: 00d12023 sw a3,0(sp) 800000f4: 00e12223 sw a4,4(sp) 800000f8: 00f12423 sw a5,8(sp) 800000fc: 01012623 sw a6,12(sp) 80000100: 01112823 sw a7,16(sp) 80000104: 01212a23 sw s2,20(sp) 80000108: 00001097 auipc ra,0x1 8000010c: f0408093 addi ra,ra,-252 # 8000100c <test_A4_data> 80000110: 00001117 auipc sp,0x1 80000114: f5810113 addi sp,sp,-168 # 80001068 <test_A4_res> 80000118: 0000a903 lw s2,0(ra) 8000011c: 00100993 li s3,1 80000120: 80000a37 lui s4,0x80000 80000124: fffa0a13 addi s4,s4,-1 # 7fffffff <_end+0xffffef1f> 80000128: fff00a93 li s5,-1 8000012c: 00000b13 li s6,0 80000130: 80000bb7 lui s7,0x80000 80000134: 013939b3 sltu s3,s2,s3 80000138: 01493a33 sltu s4,s2,s4 8000013c: 01593ab3 sltu s5,s2,s5 80000140: 01693b33 sltu s6,s2,s6 80000144: 01793bb3 sltu s7,s2,s7 80000148: 01212023 sw s2,0(sp) 8000014c: 01312223 sw s3,4(sp) 80000150: 01412423 sw s4,8(sp) 80000154: 01512623 sw s5,12(sp) 80000158: 01612823 sw s6,16(sp) 8000015c: 01712a23 sw s7,20(sp) 80000160: 00001097 auipc ra,0x1 80000164: eb008093 addi ra,ra,-336 # 80001010 <test_A5_data> 80000168: 00001117 auipc sp,0x1 8000016c: f1810113 addi sp,sp,-232 # 80001080 <test_A5_res> 80000170: 0000ab83 lw s7,0(ra) 80000174: 00100c13 li s8,1 80000178: 80000cb7 lui s9,0x80000 8000017c: fffc8c93 addi s9,s9,-1 # 7fffffff <_end+0xffffef1f> 80000180: fff00d13 li s10,-1 80000184: 00000d93 li s11,0 80000188: 80000e37 lui t3,0x80000 8000018c: 018bbc33 sltu s8,s7,s8 80000190: 019bbcb3 sltu s9,s7,s9 80000194: 01abbd33 sltu s10,s7,s10 80000198: 01bbbdb3 sltu s11,s7,s11 8000019c: 01cbbe33 sltu t3,s7,t3 800001a0: 01712023 sw s7,0(sp) 800001a4: 01812223 sw s8,4(sp) 800001a8: 01912423 sw s9,8(sp) 800001ac: 01a12623 sw s10,12(sp) 800001b0: 01b12823 sw s11,16(sp) 800001b4: 01c12a23 sw t3,20(sp) 800001b8: 00001d17 auipc s10,0x1 800001bc: e5cd0d13 addi s10,s10,-420 # 80001014 <test_B_data> 800001c0: 00001d97 auipc s11,0x1 800001c4: ed8d8d93 addi s11,s11,-296 # 80001098 <test_B_res> 800001c8: 000d2083 lw ra,0(s10) 800001cc: fff00113 li sp,-1 800001d0: 0020b033 sltu zero,ra,sp 800001d4: 000da023 sw zero,0(s11) 800001d8: 001da223 sw ra,4(s11) 800001dc: 002da423 sw sp,8(s11) 800001e0: 00001f97 auipc t6,0x1 800001e4: ec4f8f93 addi t6,t6,-316 # 800010a4 <test_C_res> 800001e8: 00100093 li ra,1 800001ec: 7ff00113 li sp,2047 800001f0: fff00193 li gp,-1 800001f4: 00000213 li tp,0 800001f8: 80000293 li t0,-2048 800001fc: 00103333 snez t1,ra 80000200: 002033b3 snez t2,sp 80000204: 00303433 snez s0,gp 80000208: 004034b3 snez s1,tp 8000020c: 00503533 snez a0,t0 80000210: 0000b5b3 sltu a1,ra,zero 80000214: 00013633 sltu a2,sp,zero 80000218: 0001b6b3 sltu a3,gp,zero 8000021c: 00023733 sltu a4,tp,zero 80000220: 0002b7b3 sltu a5,t0,zero 80000224: 006fa023 sw t1,0(t6) 80000228: 007fa223 sw t2,4(t6) 8000022c: 008fa423 sw s0,8(t6) 80000230: 009fa623 sw s1,12(t6) 80000234: 00afa823 sw a0,16(t6) 80000238: 00bfaa23 sw a1,20(t6) 8000023c: 00cfac23 sw a2,24(t6) 80000240: 00dfae23 sw a3,28(t6) 80000244: 02efa023 sw a4,32(t6) 80000248: 02ffa223 sw a5,36(t6) 8000024c: 00001f97 auipc t6,0x1 80000250: e80f8f93 addi t6,t6,-384 # 800010cc <test_D_res> 80000254: 00100193 li gp,1 80000258: 003030b3 snez ra,gp 8000025c: 0030b133 sltu sp,ra,gp 80000260: 00313e33 sltu t3,sp,gp 80000264: 003e3eb3 sltu t4,t3,gp 80000268: 003ebf33 sltu t5,t4,gp 8000026c: 001fa023 sw ra,0(t6) 80000270: 002fa223 sw sp,4(t6) 80000274: 01cfa423 sw t3,8(t6) 80000278: 01dfa623 sw t4,12(t6) 8000027c: 01efa823 sw t5,16(t6) 80000280: 00001517 auipc a0,0x1 80000284: da050513 addi a0,a0,-608 # 80001020 <codasip_signature_start> 80000288: 00001597 auipc a1,0x1 8000028c: e5858593 addi a1,a1,-424 # 800010e0 <_end> 80000290: f0100637 lui a2,0xf0100 80000294: f2c60613 addi a2,a2,-212 # f00fff2c <_end+0x700fee4c> 80000298 <complience_halt_loop>: 80000298: 02b50663 beq a0,a1,800002c4 <complience_halt_break> 8000029c: 00c52683 lw a3,12(a0) 800002a0: 00d62023 sw a3,0(a2) 800002a4: 00852683 lw a3,8(a0) 800002a8: 00d62023 sw a3,0(a2) 800002ac: 00452683 lw a3,4(a0) 800002b0: 00d62023 sw a3,0(a2) 800002b4: 00052683 lw a3,0(a0) 800002b8: 00d62023 sw a3,0(a2) 800002bc: 01050513 addi a0,a0,16 800002c0: fd9ff06f j 80000298 <complience_halt_loop> 800002c4 <complience_halt_break>: 800002c4: f0100537 lui a0,0xf0100 800002c8: f2050513 addi a0,a0,-224 # f00fff20 <_end+0x700fee40> 800002cc: 00052023 sw zero,0(a0) 800002d0: 0000 unimp ... Disassembly of section .data: 80001000 <test_A1_data>: 80001000: 0000 unimp ... 80001004 <test_A2_data>: 80001004: 0001 nop ... 80001008 <test_A3_data>: 80001008: ffff 0xffff 8000100a: ffff 0xffff 8000100c <test_A4_data>: 8000100c: ffff 0xffff 8000100e: 7fff 0x7fff 80001010 <test_A5_data>: 80001010: 0000 unimp 80001012: 8000 0x8000 80001014 <test_B_data>: 80001014: 0001 nop ... 80001020 <codasip_signature_start>: 80001020: ffff 0xffff 80001022: ffff 0xffff 80001024: ffff 0xffff 80001026: ffff 0xffff 80001028: ffff 0xffff 8000102a: ffff 0xffff 8000102c: ffff 0xffff 8000102e: ffff 0xffff 80001030: ffff 0xffff 80001032: ffff 0xffff 80001034: ffff 0xffff 80001036: ffff 0xffff 80001038 <test_A2_res>: 80001038: ffff 0xffff 8000103a: ffff 0xffff 8000103c: ffff 0xffff 8000103e: ffff 0xffff 80001040: ffff 0xffff 80001042: ffff 0xffff 80001044: ffff 0xffff 80001046: ffff 0xffff 80001048: ffff 0xffff 8000104a: ffff 0xffff 8000104c: ffff 0xffff 8000104e: ffff 0xffff 80001050 <test_A3_res>: 80001050: ffff 0xffff 80001052: ffff 0xffff 80001054: ffff 0xffff 80001056: ffff 0xffff 80001058: ffff 0xffff 8000105a: ffff 0xffff 8000105c: ffff 0xffff 8000105e: ffff 0xffff 80001060: ffff 0xffff 80001062: ffff 0xffff 80001064: ffff 0xffff 80001066: ffff 0xffff 80001068 <test_A4_res>: 80001068: ffff 0xffff 8000106a: ffff 0xffff 8000106c: ffff 0xffff 8000106e: ffff 0xffff 80001070: ffff 0xffff 80001072: ffff 0xffff 80001074: ffff 0xffff 80001076: ffff 0xffff 80001078: ffff 0xffff 8000107a: ffff 0xffff 8000107c: ffff 0xffff 8000107e: ffff 0xffff 80001080 <test_A5_res>: 80001080: ffff 0xffff 80001082: ffff 0xffff 80001084: ffff 0xffff 80001086: ffff 0xffff 80001088: ffff 0xffff 8000108a: ffff 0xffff 8000108c: ffff 0xffff 8000108e: ffff 0xffff 80001090: ffff 0xffff 80001092: ffff 0xffff 80001094: ffff 0xffff 80001096: ffff 0xffff 80001098 <test_B_res>: 80001098: ffff 0xffff 8000109a: ffff 0xffff 8000109c: ffff 0xffff 8000109e: ffff 0xffff 800010a0: ffff 0xffff 800010a2: ffff 0xffff 800010a4 <test_C_res>: 800010a4: ffff 0xffff 800010a6: ffff 0xffff 800010a8: ffff 0xffff 800010aa: ffff 0xffff 800010ac: ffff 0xffff 800010ae: ffff 0xffff 800010b0: ffff 0xffff 800010b2: ffff 0xffff 800010b4: ffff 0xffff 800010b6: ffff 0xffff 800010b8: ffff 0xffff 800010ba: ffff 0xffff 800010bc: ffff 0xffff 800010be: ffff 0xffff 800010c0: ffff 0xffff 800010c2: ffff 0xffff 800010c4: ffff 0xffff 800010c6: ffff 0xffff 800010c8: ffff 0xffff 800010ca: ffff 0xffff 800010cc <test_D_res>: 800010cc: ffff 0xffff 800010ce: ffff 0xffff 800010d0: ffff 0xffff 800010d2: ffff 0xffff 800010d4: ffff 0xffff 800010d6: ffff 0xffff 800010d8: ffff 0xffff 800010da: ffff 0xffff 800010dc: ffff 0xffff 800010de: ffff 0xffff
ObjDump
3
cbrune/VexRiscv
src/test/resources/asm/I-SLTU-01.elf.objdump
[ "MIT" ]
%%% %%% Authors: %%% Leif Kornstaedt <kornstae@ps.uni-sb.de> %%% %%% Copyright: %%% Leif Kornstaedt, 1998 %%% %%% Last change: %%% $Date$ by $Author$ %%% $Revision$ %%% %%% This file is part of Mozart, an implementation of Oz 3: %%% http://www.mozart-oz.org %%% %%% See the file "LICENSE" or %%% http://www.mozart-oz.org/LICENSE.html %%% for information on usage and redistribution %%% of this file, and for a DISCLAIMER OF ALL %%% WARRANTIES. %%% functor import Compiler export Return define Return = compiler([unnestEquationInRecord(equal(proc {$ B} Y fun {P} B = {IsDet Y} Y end in _ = f({P} Y=y) end true) keys: [compiler unnesting fixedBug]) unnest(proc {$} fun {F1 X} X = 1 1 end fun {F2 X} {Wait X} 2 end X in _ = [{F1 X} {F2 X}] end keys: [compiler unnesting fixedBug]) localEnvInThreads(proc {$} fun {X Y} Y end S in {proc {$} thread case S of 1 then skip else skip end end {X {X S} _} end} end keys: [compiler codeGen fixedBug]) clippedTestTree(proc {$} {fun {$ X} case X of a(_ ...) then 1 [] b then 2 elseif {IsRecord X} then 3 else unit end end x} = 3 end keys: [compiler codeGen fixedBug]) xshuffle(%% PR#1329 proc {$} NUM = 20 LENGTH = 40000.0 fun {C2Pos C} ({IntToFloat C} - 1.0) * (LENGTH / {IntToFloat NUM}) end in {fun {$ Type Entry} Pos C Dur in local SpeedSec DurSoFar in SpeedSec = Entry.speed / 3.6 if Entry.c == NUM then DurSoFar = 0 else Pos = {C2Pos Entry.c+1} C = Entry.c+1 DurSoFar = (Pos - Entry.pos) / SpeedSec end %% {Show Entry} Dur = (Entry.buggyone - DurSoFar) end someatom(type:Type pos:Pos c:C buggyone:Dur) end handover someatom(c:1 buggyone:1.0 pos:1.0 speed:1.0 time:1.0) _} end keys: [compiler codeGen fixedBug]) exhandler_initsrs(%% PR#1291 proc {$} proc {Skip _} skip end in {IsDet {fun {$ V1} V2 in case V1 of a then try V2=a catch _ then skip end a=a else V2 = b end {Skip V2} V2 end a} true} end keys: [compiler codeGen fixedBug]) register_optimiser(%% PR#1070 %% If the engine throws an exception then this test will halt the %% test suite run immediately. We can't catch the exception, I guess %% the feedVirtualString runs the compiler in a sub-thread. proc {$} TestProg = "local proc {Skip _ _ _} skip end in "# "{fun lazy {$ S I N} "# "if I==N then skip else C in skip end "# "{Skip S I N} a "# "end a a a} "# "end" in {proc {$ VS ?Result} E I S in E = {New Compiler.engine init()} I = {New Compiler.interface init(E)} {E enqueue(setSwitch(expression true))} {E enqueue(setSwitch(threadedqueries false))} %% Test requires +staticvarnames {E enqueue(setSwitch(staticvarnames true))} {E enqueue(feedVirtualString(VS return(result: ?Result)))} thread {I sync()} if {I hasErrors($)} then Ms in {I getMessages(?Ms)} S = error(compiler(evalExpression VS Ms)) else S = success end end case S of error(M) then {Exception.raiseError M} [] success then skip end end TestProg _} end keys: [compiler codeGen fixedBug]) bigDatastructure(proc {$} {fun {$} f(f(["00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000"]) f(["00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000" "0000000000"]) f(["00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000" "00000000000000000000"])) end _} end keys: [compiler codeGen fixedBug]) ]) end
Oz
4
Ahzed11/mozart2
platform-test/base/compiler.oz
[ "BSD-2-Clause" ]
2016-02-18 11:42:24 > fsociety (whoami@localhost) has joined #telegram 2016-02-18 11:42:24 - Channel #telegram: 2 nicks (2 ops, 0 halfops, 0 voices, 0 normals)
IRC log
0
0x4b1dN/2016-dots
misc/weechat/logs/irc.bitlbee.#telegram.weechatlog
[ "MIT" ]
package { /** * @author Maeiky */ import GZ.File.File; public extension Resource { public var sFile : String; //public var oFileHandle : File; public var oFile : File; public var aSrcMemData : CArray<UInt8>; public var sPath : String; public var sVDrive : String; //public var nLocType : UInt = 0; public var bReadOnly : Bool = true; public var bRcLoaded : Bool = false; public var bDynamiqueData : Bool = false; public var bGpuLoaded : Bool = false; //public var oInterface : Interface = 0; public enum eLocation : Int { Unknow; Drive; Memory; } public var hLocation : eLocation = eLocation.Unknow; public var nSize :UInt; <cpp_class_h> cResource* fSet(const gzRcFolder* _oFolder, gzStr _sFile, const gzUInt8* _aSrcMemData, gzUInt _nSize){ aSrcMemData = (gzUInt8*)_aSrcMemData; sFile = _sFile; nSize = _nSize; hLocation = Lib_GZ::File::Resource::eLocation::Memory; return this; } </cpp_class_h> public function Resource(_sPath : String, _hLocation: eLocation = eLocation.Unknow):Void { hLocation = _hLocation; //oFileHandle = new File(); /* Debug.fTrace("AAAAAA Path string: " + _sPath); var _sMyString : String = "55:/**01/234:/*567"; var _nTest : Int = _sMyString.fFind(":/**",3); Debug.fTrace("Find: " + _nTest ); var _oResult : Result_Search = _sMyString.fFind(":/**"); Debug.fTrace("Val: " + _oResult.nVal ); var _aArray: Array<String> = _sMyString.fSplit("/"); Debug.fTrace("TestArray[0] = " + _aArray[0] ); Debug.fTrace("TestArray[1] = " + _aArray[1] ); Debug.fTrace("TestArray[2] = " + _aArray[2] ); Debug.fTrace("TestArray[3] = " + _aArray[3] ); if(_sMyString.fFind(":/*")){ Debug.fTrace("Pass"); }else{ Debug.fTrace("Fail" ); } */ if(_sPath.nSize > 0){ oFile = new File(_sPath); } /* var _aPath : Array<String> = _sPath.fSplit(":/"); sVDrive = _aPath[0]; sPath = _aPath[1]; Debug.fTrace("***sVDrive Path : " + sVDrive); Debug.fTrace("***sVDrive Path : " + sPath); */ } /* public function fLink(_oInterface:Interface):Void { oInterface = _oInterface; } */ public function fLoadFile():Void { //if( hLocation == eLocation.Drive){ if( hLocation == eLocation.Unknow || hLocation == eLocation.Drive){ //TODO check for virtual path (Embed Drive) //aSrcMemData = oFileHandle.fLoadFileFromVDrive(sVDrive, sPath); //File.fLoadFileFromVDrive(this); oFile.fLoadFileFromVDrive(this); } } public function fSetDynamicMemData(_aSrcMemData : CArray<UInt8>, _nSize:UIntX):Void { //Will be auto freed fFreeData(); aSrcMemData = _aSrcMemData; nSize = _nSize; bDynamiqueData = true; } public function fSetStaticMemData(_aSrcMemData : CArray<UInt8>, _nSize:UIntX):Void { //Will not freed fFreeData(); bDynamiqueData = false; aSrcMemData = _aSrcMemData; nSize = _nSize; } public function fFreeData():Void { <cpp> if(bDynamiqueData){ GZ_fFree(aSrcMemData); } </cpp> } public function fCpuLoad():Bool { } public function fGpuLoad():Bool { } destructor{ fFreeData(); } } }
Redcode
3
VLiance/GZE
src/Lib_GZ/File/Resource.cw
[ "Apache-2.0" ]
(* Module: Grub Parses grub configuration Author: David Lutterkort <lutter@redhat.com> About: License This file is licenced under the LGPL v2+, like the rest of Augeas. About: Lens Usage To be documented *) module Grub = autoload xfm (* This only covers the most basic grub directives. Needs to be *) (* expanded to cover more (and more esoteric) directives *) (* It is good enough to handle the grub.conf on my Fedora 8 box *) (************************************************************************ * Group: USEFUL PRIMITIVES *************************************************************************) (* View: value_to_eol *) let value_to_eol = store /[^= \t\n][^\n]*[^= \t\n]|[^= \t\n]/ (* View: eol *) let eol = Util.eol (* View: del_to_eol *) let del_to_eol = del /[^ \t\n]*/ "" (* View: spc *) let spc = Util.del_ws_spc (* View: opt_ws *) let opt_ws = Util.del_opt_ws "" (* View: dels *) let dels (s:string) = Util.del_str s (* View: eq *) let eq = dels "=" (* View: switch *) let switch (n:regexp) = dels "--" . key n (* View: switch_arg *) let switch_arg (n:regexp) = switch n . eq . store Rx.no_spaces (* View: value_sep *) let value_sep (dflt:string) = del /[ \t]*[ \t=][ \t]*/ dflt (* View: comment_re *) let comment_re = /([^ \t\n].*[^ \t\n]|[^ \t\n])/ - /# ## (Start|End) Default Options ##/ (* View: comment *) let comment = [ Util.indent . label "#comment" . del /#[ \t]*/ "# " . store comment_re . eol ] (* View: empty *) let empty = Util.empty (************************************************************************ * Group: USEFUL FUNCTIONS *************************************************************************) (* View: command *) let command (kw:regexp) (indent:string) = Util.del_opt_ws indent . key kw (* View: kw_arg *) let kw_arg (kw:regexp) (indent:string) (dflt_sep:string) = [ command kw indent . value_sep dflt_sep . value_to_eol . eol ] (* View: kw_boot_arg *) let kw_boot_arg (kw:regexp) = kw_arg kw "\t" " " (* View: kw_menu_arg *) let kw_menu_arg (kw:regexp) = kw_arg kw "" " " (* View: password_arg *) let password_arg = [ command "password" "" . (spc . [ switch "md5" ])? . (spc . [ switch "encrypted" ])? . spc . store (/[^ \t\n]+/ - /--[^ \t\n]+/) . (spc . [ label "file" . store /[^ \t\n]+/ ])? . eol ] (* View: kw_pres *) let kw_pres (kw:string) = [ opt_ws . key kw . del_to_eol . eol ] (************************************************************************ * Group: BOOT ENTRIES *************************************************************************) (* View: device * This is a shell-only directive in upstream grub; the grub versions * in at least Fedora/RHEL use this to find devices for UEFI boot *) let device = [ command "device" "" . Sep.space . store /\([A-Za-z0-9_.-]+\)/ . spc . [ label "file" . value_to_eol ] . Util.eol ] (* View: color *) let color = (* Should we nail it down to exactly the color names that *) (* grub supports ? *) let color_name = store /[A-Za-z-]+/ in let color_spec = [ label "foreground" . color_name] . dels "/" . [ label "background" . color_name ] in [ opt_ws . key "color" . spc . [ label "normal" . color_spec ] . (spc . [ label "highlight" . color_spec ])? . eol ] (* View: serial *) let serial = [ command "serial" "" . [ spc . switch_arg /unit|port|speed|word|parity|stop|device/ ]* . eol ] (* View: terminal *) let terminal = [ command "terminal" "" . ([ spc . switch /dumb|no-echo|no-edit|silent/ ] |[ spc . switch_arg /timeout|lines/ ])* . [ spc . key /console|serial|hercules/ ]* . eol ] (* View: setkey *) let setkey = [ command "setkey" "" . ( spc . [ label "to" . store Rx.no_spaces ] . spc . [ label "from" . store Rx.no_spaces ] )? . eol ] (* View: menu_setting *) let menu_setting = kw_menu_arg "default" | kw_menu_arg "fallback" | kw_pres "hiddenmenu" | kw_menu_arg "timeout" | kw_menu_arg "splashimage" | kw_menu_arg "gfxmenu" | kw_menu_arg "foreground" | kw_menu_arg "background" | kw_menu_arg "verbose" | kw_menu_arg "boot" (* only for CLI, ignored in conf *) | serial | terminal | password_arg | color | device | setkey (* View: title *) let title = del /title[ \t=]+/ "title " . value_to_eol . eol (* View: multiboot_arg * Permits a second form for Solaris multiboot kernels that * take a path (with a slash) as their first arg, e.g. * /boot/multiboot kernel/unix another=arg *) let multiboot_arg = [ label "@path" . store (Rx.word . "/" . Rx.no_spaces) ] (* View: kernel_args Parse the file name and args on a kernel or module line. *) let kernel_args = let arg = /[A-Za-z0-9_.$-]+/ - /type|no-mem-option/ in store /(\([a-z0-9,]+\))?\/[^ \t\n]*/ . (spc . multiboot_arg)? . (spc . [ key arg . (eq. store /([^ \t\n])*/)?])* . eol (* View: module_line Solaris extension adds module$ and kernel$ for variable interpolation *) let module_line = [ command /module\$?/ "\t" . spc . kernel_args ] (* View: map_line *) let map_line = [ command "map" "\t" . spc . [ label "from" . store /[()A-za-z0-9]+/ ] . spc . [ label "to" . store /[()A-za-z0-9]+/ ] . eol ] (* View: kernel *) let kernel = [ command /kernel\$?/ "\t" . (spc . ([switch "type" . eq . store /[a-z]+/] |[switch "no-mem-option"]))* . spc . kernel_args ] (* View: chainloader *) let chainloader = [ command "chainloader" "\t" . [ spc . switch "force" ]? . spc . store Rx.no_spaces . eol ] (* View: savedefault *) let savedefault = [ command "savedefault" "\t" . (spc . store Rx.integer)? . eol ] (* View: configfile *) let configfile = [ command "configfile" "\t" . spc . store Rx.no_spaces . eol ] (* View: boot_setting <boot> entries *) let boot_setting = let boot_arg_re = "root" | "initrd" | "rootnoverify" | "uuid" | "findroot" | "bootfs" (* Solaris extensions *) in kw_boot_arg boot_arg_re | kernel | chainloader | kw_pres "quiet" (* Seems to be a Ubuntu extension *) | savedefault | configfile | module_line | map_line | kw_pres "lock" | kw_pres "makeactive" | password_arg (* View: boot *) let boot = let line = ((boot_setting|comment)* . boot_setting)? in [ label "title" . title . line ] (************************************************************************ * Group: DEBIAN-SPECIFIC SECTIONS *************************************************************************) (* View: debian_header Header for a <debian>-specific section *) let debian_header = "## ## Start Default Options ##\n" (* View: debian_footer Footer for a <debian>-specific section *) let debian_footer = "## ## End Default Options ##\n" (* View: debian_comment_re *) let debian_comment_re = /([^ \t\n].*[^ \t\n]|[^ \t\n])/ - "## End Default Options ##" (* View: debian_comment A comment entry inside a <debian>-specific section *) let debian_comment = [ Util.indent . label "#comment" . del /##[ \t]*/ "## " . store debian_comment_re . eol ] (* View: debian_setting_re *) let debian_setting_re = "kopt" | "groot" | "alternative" | "lockalternative" | "defoptions" | "lockold" | "xenhopt" | "xenkopt" | "altoptions" | "howmany" | "memtest86" | "updatedefaultentry" | "savedefault" | "indomU" (* View: debian_entry *) let debian_entry = [ Util.del_str "#" . Util.indent . key debian_setting_re . del /[ \t]*=/ "=" . value_to_eol? . eol ] (* View: debian A debian-specific section, made of <debian_entry> lines *) let debian = [ label "debian" . del debian_header debian_header . (debian_comment|empty|debian_entry)* . del debian_footer debian_footer ] (************************************************************************ * Group: LENS AND FILTER *************************************************************************) (* View: lns *) let lns = (comment | empty | menu_setting | debian)* . (boot . (comment | empty | boot)*)? (* View: filter *) let filter = incl "/boot/grub/grub.conf" . incl "/boot/grub/menu.lst" . incl "/etc/grub.conf" . incl "/boot/efi/EFI/*/grub.conf" let xfm = transform lns filter
Augeas
4
zwass/launcher
pkg/augeas/assets/lenses/grub.aug
[ "MIT" ]
/* * Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include <AK/OwnPtr.h> #include <AK/RefPtr.h> #include <AK/Types.h> #include <Kernel/Devices/BlockDevice.h> #include <Kernel/Storage/StorageController.h> namespace Kernel { class AsyncBlockDeviceRequest; class ATADevice; class ATAController : public StorageController , public Weakable<ATAController> { public: virtual void start_request(const ATADevice&, AsyncBlockDeviceRequest&) = 0; protected: ATAController() = default; }; }
C
4
r00ster91/serenity
Kernel/Storage/ATA/ATAController.h
[ "BSD-2-Clause" ]
// @jsx: react declare const React: any let Foo = { Bar() {} } let Baz = () => {} let x = < Foo.Bar >Hello let y = < Baz >Hello
TypeScript
3
monciego/TypeScript
tests/cases/compiler/errorSpanForUnclosedJsxTag.tsx
[ "Apache-2.0" ]
@app mockapp @static
Arc
0
copperinc/sandbox
test/mock/root-handling/bare-static/app.arc
[ "Apache-2.0" ]
var complex1 = require("./lib/complex1"); require.ensure(["./lib/complex1", "complexm/step2"], function(require) { require("./lib/complex1"); var a = function() {} require.ensure(["complexm/step1"], function(require) { require("./lib/complex1"); var s1 = require("complexm/step1"); var s2 = require("complexm/step2"); console.log(s1); console.log(s2); }); }); console.log(complex1);
JavaScript
2
1shenxi/webpack
test/fixtures/complex.js
[ "MIT" ]
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. #pragma once #include <winrt/Microsoft.Terminal.TerminalConnection.h> #include <til/latch.h> namespace winrt::Microsoft::TerminalApp::implementation { class DebugInputTapConnection; class DebugTapConnection : public winrt::implements<DebugTapConnection, winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection> { public: explicit DebugTapConnection(Microsoft::Terminal::TerminalConnection::ITerminalConnection wrappedConnection); void Initialize(const Windows::Foundation::Collections::ValueSet& /*settings*/){}; ~DebugTapConnection(); void Start(); void WriteInput(const hstring& data); void Resize(uint32_t rows, uint32_t columns); void Close(); winrt::Microsoft::Terminal::TerminalConnection::ConnectionState State() const noexcept; void SetInputTap(const Microsoft::Terminal::TerminalConnection::ITerminalConnection& inputTap); WINRT_CALLBACK(TerminalOutput, winrt::Microsoft::Terminal::TerminalConnection::TerminalOutputHandler); TYPED_EVENT(StateChanged, winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection, winrt::Windows::Foundation::IInspectable); private: void _PrintInput(const hstring& data); void _OutputHandler(const hstring str); winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection::TerminalOutput_revoker _outputRevoker; winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection::StateChanged_revoker _stateChangedRevoker; winrt::weak_ref<Microsoft::Terminal::TerminalConnection::ITerminalConnection> _wrappedConnection; winrt::weak_ref<Microsoft::Terminal::TerminalConnection::ITerminalConnection> _inputSide; til::latch _start{ 1 }; friend class DebugInputTapConnection; }; } std::tuple<winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection, winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection> OpenDebugTapConnection(winrt::Microsoft::Terminal::TerminalConnection::ITerminalConnection baseConnection);
C
4
sonvt1710/terminal
src/cascadia/TerminalApp/DebugTapConnection.h
[ "MIT" ]
{% set tmp_dir = pillar['tmp_dir'] %} {{ tmp_dir }}/pki: file.directory {{ tmp_dir }}/pki/issued_certs: file.directory {{ tmp_dir }}/pki/ca.key: x509.private_key_managed: # speed this up - bits: 1024 - require: - file: {{ tmp_dir }}/pki {{ tmp_dir }}/pki/ca.crt: x509.certificate_managed: - signing_private_key: {{ tmp_dir }}/pki/ca.key - CN: ca.example.com - C: US - ST: Utah - L: Salt Lake City - basicConstraints: "critical CA:true" - keyUsage: "critical cRLSign, keyCertSign" - subjectKeyIdentifier: hash - authorityKeyIdentifier: keyid,issuer:always - days_valid: 3650 - days_remaining: 0 - backup: True - require: - file: {{ tmp_dir }}/pki - x509: {{ tmp_dir }}/pki/ca.key {{ tmp_dir }}/pki/test.key: x509.private_key_managed: # speed this up - bits: 1024 - backup: True test_crt: x509.certificate_managed: - name: {{ tmp_dir }}/pki/test.crt - ca_server: minion - signing_policy: ca_policy - public_key: {{ tmp_dir }}/pki/test.key - CN: minion - days_remaining: 30 - backup: True - require: - x509: {{ tmp_dir }}/pki/ca.crt - x509: {{ tmp_dir }}/pki/test.key second_test_crt: x509.certificate_managed: - name: {{ tmp_dir }}/pki/test.crt - ca_server: minion - signing_policy: ca_policy - public_key: {{ tmp_dir }}/pki/test.key - CN: minion - days_remaining: 30 - backup: True - require: - x509: {{ tmp_dir }}/pki/ca.crt - x509: {{ tmp_dir }}/pki/test.key - x509: {{ tmp_dir }}/pki/test.crt
SaltStack
4
babs/salt
tests/integration/files/file/base/x509/proper_cert_comparison.sls
[ "Apache-2.0" ]
/********************************************************************** * File: statistc.h (Formerly stats.h) * Description: Class description for STATS class. * Author: Ray Smith * * (C) Copyright 1991, Hewlett-Packard Ltd. ** Licensed under the Apache License, Version 2.0 (the "License"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** http://www.apache.org/licenses/LICENSE-2.0 ** Unless required by applicable law or agreed to in writing, software ** distributed under the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ** See the License for the specific language governing permissions and ** limitations under the License. * **********************************************************************/ #ifndef TESSERACT_CCSTRUCT_STATISTC_H_ #define TESSERACT_CCSTRUCT_STATISTC_H_ #include <cstdio> #include "kdpair.h" #include "scrollview.h" namespace tesseract { // Simple histogram-based statistics for integer values in a known // range, such that the range is small compared to the number of samples. class TESS_API STATS { public: // The histogram buckets are in the range // [min_bucket_value, max_bucket_value_plus_1 - 1] i.e. // [min_bucket_value, max_bucket_value]. // Any data under min_bucket value is silently mapped to min_bucket_value, // and likewise, any data over max_bucket_value is silently mapped to // max_bucket_value. // In the internal array, min_bucket_value maps to 0 and // max_bucket_value_plus_1 - min_bucket_value to the array size. // TODO(rays) This is ugly. Convert the second argument to // max_bucket_value and all the code that uses it. STATS(int32_t min_bucket_value, int32_t max_bucket_value_plus_1); STATS() = default; // empty for arrays ~STATS(); // (Re)Sets the range and clears the counts. // See the constructor for info on max and min values. bool set_range(int32_t min_bucket_value, int32_t max_bucket_value_plus_1); void clear(); // empty buckets void add(int32_t value, int32_t count); // "Accessors" return various statistics on the data. int32_t mode() const; // get mode of samples double mean() const; // get mean of samples double sd() const; // standard deviation // Returns the fractile value such that frac fraction (in [0,1]) of samples // has a value less than the return value. double ile(double frac) const; // Returns the minimum used entry in the histogram (ie the minimum of the // data, NOT the minimum of the supplied range, nor is it an index.) // Would normally be called min(), but that is a reserved word in VC++. int32_t min_bucket() const; // Find min // Returns the maximum used entry in the histogram (ie the maximum of the // data, NOT the maximum of the supplied range, nor is it an index.) int32_t max_bucket() const; // Find max // Finds a more useful estimate of median than ile(0.5). // Overcomes a problem with ile() - if the samples are, for example, // 6,6,13,14 ile(0.5) return 7.0 - when a more useful value would be midway // between 6 and 13 = 9.5 double median() const; // get median of samples // Returns the count of the given value. int32_t pile_count(int32_t value) const { if (value <= rangemin_) { return buckets_[0]; } if (value >= rangemax_ - 1) { return buckets_[rangemax_ - rangemin_ - 1]; } return buckets_[value - rangemin_]; } // Returns the total count of all buckets. int32_t get_total() const { return total_count_; // total of all piles } // Returns true if x is a local min. bool local_min(int32_t x) const; // Apply a triangular smoothing filter to the stats. // This makes the modes a bit more useful. // The factor gives the height of the triangle, i.e. the weight of the // centre. void smooth(int32_t factor); // Cluster the samples into max_cluster clusters. // Each call runs one iteration. The array of clusters must be // max_clusters+1 in size as cluster 0 is used to indicate which samples // have been used. // The return value is the current number of clusters. int32_t cluster(float lower, // thresholds float upper, float multiple, // distance threshold int32_t max_clusters, // max no to make STATS *clusters); // array of clusters // Finds (at most) the top max_modes modes, well actually the whole peak // around each mode, returning them in the given modes vector as a <mean of // peak, total count of peak> pair in order of decreasing total count. Since // the mean is the key and the count the data in the pair, a single call to // sort on the output will re-sort by increasing mean of peak if that is more // useful than decreasing total count. Returns the actual number of modes // found. int top_n_modes(int max_modes, std::vector<KDPairInc<float, int>> &modes) const; // Prints a summary and table of the histogram. void print() const; // Prints summary stats only of the histogram. void print_summary() const; #ifndef GRAPHICS_DISABLED // Draws the histogram as a series of rectangles. void plot(ScrollView *window, // window to draw in float xorigin, // origin of histo float yorigin, // gram float xscale, // size of one unit float yscale, // size of one uint ScrollView::Color colour) const; // colour to draw in // Draws a line graph of the histogram. void plotline(ScrollView *window, // window to draw in float xorigin, // origin of histo float yorigin, // gram float xscale, // size of one unit float yscale, // size of one uint ScrollView::Color colour) const; // colour to draw in #endif // !GRAPHICS_DISABLED private: int32_t rangemin_ = 0; // min of range // rangemax_ is not well named as it is really one past the max. int32_t rangemax_ = 0; // max of range int32_t total_count_ = 0; // no of samples int32_t *buckets_ = nullptr; // array of cells }; } // namespace tesseract #endif // TESSERACT_CCSTRUCT_STATISTC_H_
C
5
CatBruh/tesseract
src/ccstruct/statistc.h
[ "Apache-2.0" ]
' ********** Copyright 2016 Roku Corp. All Rights Reserved. ********** sub init() m.top.SetFocus(true) infoPane = m.top.findNode("infoPane") infoPane.infoText = "The InfoPane node class is used to display an opaque, white-bordered, rounded rectangular label with text providing help for a specific setting." + chr(10) + chr(10) + "This component can be used to help customers successfully configure settings related to their account profile, closed captioning, parental controls, and so on." End sub
Brightscript
4
khangh/samples
ux components/screen elements/renderable nodes/InfoPaneExample/components/MainScene.brs
[ "MIT" ]
(defproject todomvc "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-3058" :scope "provided"] [reagent "0.5.0"] [secretary "1.2.2"] [alandipert/storage-atom "1.2.4"]] :jvm-opts ["--add-modules" "java.xml.bind"] :min-lein-version "2.5.0" :plugins [[lein-cljsbuild "1.0.4"]] :profiles {:dev {:cljsbuild {:builds [{:source-paths ["src/cljs"] :compiler {:output-to "js/app.js"}}]}} :prod {:cljsbuild {:builds [{:source-paths ["src/cljs"] :compiler {:output-to "js/app.js" :optimizations :advanced :elide-asserts true :pretty-print false}}]}}})
Clojure
4
dtelaroli/todomvc
examples/reagent/project.clj
[ "MIT" ]
const { app, BrowserWindow } = require('electron'); const windows = []; function createWindow (id) { const window = new BrowserWindow({ show: false }); window.loadURL(`data:,window${id}`); windows.push(window); } app.whenReady().then(() => { for (let i = 1; i <= 5; i++) { createWindow(i); } setImmediate(function () { app.exit(123); }); });
JavaScript
4
lingxiao-Zhu/electron
spec/fixtures/api/exit-closes-all-windows-app/main.js
[ "MIT" ]
Support code for Leisure 'use strict' define ['./base', './ast', './runtime', './gen', './eval', './org', './transaction'], (Base, Ast, Runtime, Gen, Eval, Org, Transaction)-> { define getType cons unescapePresentationHtml isNil isPartial partialCall doPartial Nil } = root = Ast { Node resolve lazy defaultEnv } = Base rz = resolve lz = lazy lc = Leisure_call { runMonad2 newConsFrom setValue getValue makeSyncMonad makeHamt _true _false _identity unit jsonConvert Monad2 some none lacons: acons right left bind } = Runtime { evalLeisure } = Eval { parseCodeAttributes } = Org currentDataChange = null getSvgElement = (id)-> if (el = document.getElementById id) then el else svg = createNode "<svg id='HIDDEN_SVG' xmlns='http://www.w3.org/2000/svg' version='1.1' style='top: -100000px; position: absolute'><text id='HIDDEN_TEXT'>bubba</text></svg>" document.body.appendChild(svg) document.getElementById id svgMeasureText = (text)->(style)->(f)-> txt = getSvgElement('HIDDEN_TEXT') if rz style then txt.setAttribute 'style', rz style txt.lastChild.textContent = rz text bx = txt.getBBox() rz(f)(lz bx.width)(lz bx.height) # try to take strokeWidth into account svgMeasure = (content)-> primSvgMeasure content, baseStrokeWidth # (unused) try to take strokeWidth into account svgBetterMeasure = (content)-> primSvgMeasure content, transformStrokeWidth # try to take strokeWidth into account primSvgMeasure = (content, transformFunc)->(f)-> svg = createNode "<svg xmlns='http://www.w3.org/2000/svg' version='1.1' style='top: -100000'><g>#{content}</g></svg>" document.body.appendChild(svg) g = svg.firstChild bbox = g.getBBox() pad = getMaxStrokeWidth g, g, svg, transformFunc document.body.removeChild(svg) rz(f)(lz bbox.x - Math.ceil(pad/2))(lz bbox.y - Math.ceil(pad/2))(lz bbox.width + pad)(lz bbox.height + pad) baseElements = ['path', 'rect', 'circle', 'ellipse', 'line', 'polyline', 'polygon'] foldLeft = (func, val, thing)-> if thing instanceof Leisure_cons then thing.foldl func, val else primFoldLeft func, val, thing, 0 primFoldLeft = (func, val, array, index)-> if index < array.length then primFoldLeft func, func(val, array[index]), array, index + 1 else val getMaxStrokeWidth = (el, base, svg, transformFunc)-> if base.nodeName in baseElements #hack to parse strokeWidth string by setting the width of the svg to it svg.setAttribute 'width', (getComputedStyle(base).strokeWidth ? '0'), svg transformFunc el, svg.width.baseVal.value else if base.nodeName == 'use' then getMaxStrokeWidth base, base.instanceRoot.correspondingElement, svg, transformFunc else if base.nodeName == 'g' foldLeft ((v, n)-> Math.max v, (getMaxStrokeWidth n, n, svg, transformFunc)), 0, el.childNodes else 0 baseStrokeWidth = (el, w)-> w transformStrokeWidth = (el, w)-> if w == 0 then 0 else ctm = el.getScreenCTM() tp1 = transformedPoint pt, bx.x - Math.ceil(w), bx.y - Math.ceil(w), ctm, isctm tp2 = transformedPoint pt, bx.x + bx.width + Math.ceil(w), bx.y + bx.height + Math.ceil(w), ctm, isctm x = tp2.x - tp1.x y = tp2.y - tp1.y Math.sqrt(x * x + y * y) createNode = (txt)-> scratch = document.createElement 'DIV' scratch.innerHTML = txt scratch.firstChild define 'svgMeasure', ((content)->svgMeasure(rz content)), 1 define 'svgMeasureText', ((text)->svgMeasureText(rz text)), 1 define 'dataMod', setDataType ((op)-> m = new Monad2 (env, cont)-> data = {} runMods env, rz(op), data, cont, true m.op = op m.leisureType = 'dataMod' m), 'dataMod' define 'dataModOperation', (mod)-> rz (rz mod).op define 'setTheme', (theme)-> new Monad2 (env, cont)-> env.opts.setTheme theme cont unit() collabId = 0 envData = (env)-> (env.data || env.opts.data || Lounge.data) dispatchCollaborative = (name, args)-> new Monad2 "collaborative-#{name}", (env, cont)-> envData(env).doCollaboratively(name, _.map(args, (el)-> L_toJson(el))) .then (result)-> cont right jsonConvert result .catch (err)-> cont left err.stack defaultEnvWithData = (data)-> env = Object.create defaultEnv env.data = data env define 'makeCollaborative', (func)-> new Monad2 'makeCollaborative', (env, cont)-> data = envData env func = rz func name = func.L$info?.name if func.length > 1 dispatchSrc = """ (function(#{('a' + i for i in [1 .. func.length - 1]).join ', '}){ return isPartial(arguments) ? partialCall(arguments) : dispatchCollaborative(name, arguments); }) """ dispatchFunc = eval dispatchSrc funcLen = dispatchFunc.length else dispatchFunc = dispatchCollaborative name, [] funcLen = 0 define name, dispatchFunc, funcLen, dispatchSrc data.openRegistration() data.registerCollaborativeCode name, (context, args...)-> cvtArgs = _.map(args, (el)-> jsonConvert(el)) cvtArgs.unshift acons 'options', context.options, acons('slaveId', context.slaveId, L_nil) runMonad2 func.apply(null, cvtArgs), defaultEnvWithData(data), -> data.closeRegistration() cont unit() define 'getData', (name)-> new Monad2 'getData', (env, cont)-> d = envData(env).getData rz(name) if d then cont jsonConvert d else cont unit() define 'getDataOpt', (name)-> new Monad2 'getData', (env, cont)-> d = envData(env).getData rz(name) if d then cont some jsonConvert d else cont none define 'getDataUnsafe', (name)-> new Monad2 'getData', (env, cont)-> d = envData(env).getData rz(name), true if d then cont jsonConvert d else cont unit() define 'getDataUnsafeOpt', (name)-> new Monad2 'getData', (env, cont)-> d = envData(env).getData rz(name), true if d then cont some jsonConvert d else cont none define 'getLocalData', (name)-> new Monad2 'getLocalData', (env, cont)-> d = envData(env).getLocalData rz(name), true if d then cont jsonConvert d else cont unit() define 'getLocalDataOpt', (name)-> new Monad2 'getLocalData', (env, cont)-> d = envData(env).getLocalData rz(name), true if d then cont some jsonConvert d else cont none define 'setData', (name, value)-> if r = doPartial arguments then r else new Monad2 'setData', (env, cont)-> cont jsonConvert envData(env).setData rz(name), L_toJson rz value define 'setLocalData', (name, value)-> if r = doPartial arguments then r else new Monad2 'setLocalData', (env, cont)-> cont jsonConvert envData(env).setLocalData rz(name), L_toJson rz value define 'appendData', (headline, name, value)-> if r = doPartial arguments then r else new Monad2 'appendData', (env, cont)-> envData(env).appendDataToHeadline rz(headline), rz(name), L_toJson rz value cont jsonConvert rz value define 'appendDataWithAttrs', (headline, name, attrs, value)-> if r = doPartial arguments then r else new Monad2 'appendDataWithAttrs', (env, cont)-> envData(env).appendDataToHeadline rz(headline), (!isNil(rz name) && rz(name)), L_toJson(rz(value)), parseCodeAttributes(rz(attrs)) cont rz value define 'removeData', (name)-> new Monad2 'removeData', (env, cont)-> envData(env).removeData rz(name) cont unit() define 'getImage', (name)-> if isPartial arguments then partialCall arguments else data = Lounge.opts.data new Monad2 (env, cont)-> data.getImage rz(name), ((url)-> cont right url), (failure)-> cont left failure startMonitor = -> new Monad2 (env, cont)-> cont monitorChanges env.opt.data endMonitor = (mon)-> new Monad2 (env, cont)-> cont mon.stop() define '_monitorChanges', (val)-> bind startMonitor(), lz (mon)-> bind val, lz (result)-> bind endMonitor(mon), (ignore)-> cons mon, result evalLeisure """ defMacro 'monitorChanges' \\list . ['_monitorChanges' ['do' | list]] """
Literate CoffeeScript
4
zot/Leisure
src/leisure-support.litcoffee
[ "Zlib" ]
// Copyright 2017-2018 Elias Aebi // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. namespace Xi { class Utilities { public static Gdk.RGBA convert_color(uint32 color) { return Gdk.RGBA() { red = ((color >> 16) & 0xFF) / 255.0, green = ((color >> 8) & 0xFF) / 255.0, blue = (color & 0xFF) / 255.0, alpha = ((color >> 24) & 0xFF) / 255.0 }; } public static int get_digits(int64 number) { int result = 1; while (number >= 10) { result++; number /= 10; } return result; } } }
Vala
4
Timmmm/xi-gtk
src/Utilities.vala
[ "Apache-2.0" ]
% Pretty-printing parser for HTML files % Jim Cordy, Queen's, September 2007 include "html.grm" function main match [program] P [program] end function
TXL
3
grammarware/slps
topics/grammars/html/cordy/HTML/html.txl
[ "BSD-3-Clause" ]
RPTSTR(S,N) ;Repeat a string S for N times NEW I FOR I=1:1:N WRITE S KILL I QUIT RPTSTR1(S,N) ;Functionally equivalent, but denser to read F I=1:1:N W S Q
M
4
LaudateCorpus1/RosettaCodeData
Task/Repeat-a-string/MUMPS/repeat-a-string-1.mumps
[ "Info-ZIP" ]
#***************************************************************************** # * # Make file for VMS * # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * # Date : 9 October 2009 * # * #***************************************************************************** .first define wx [--.include.wx] .ifdef __WXMOTIF__ CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\ /assume=(nostdnew,noglobal_array_new) CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short) .else .ifdef __WXGTK__ CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\ /assume=(nostdnew,noglobal_array_new) CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm .else .ifdef __WXX11__ CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\ /name=(as_is,short)/assume=(nostdnew,noglobal_array_new) CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\ /name=(as_is,short) .else .ifdef __WXGTK2__ CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1)/float=ieee\ /name=(as_is,short)/assume=(nostdnew,noglobal_array_new) CC_DEFINE = /define=(__WX_GTK__=1,VMS_GTK2==1)/float=ieee\ /name=(as_is,short) .else CXX_DEFINE = CC_DEFINE = .endif .endif .endif .endif .suffixes : .cpp .cpp.obj : cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp .c.obj : cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c OBJECTS = \ aboutdlgg.obj,\ busyinfo.obj,\ calctrlg.obj,\ caret.obj,\ choicbkg.obj,\ choicdgg.obj,\ datectlg.obj,\ dcpsg.obj,\ dirctrlg.obj,\ dirdlgg.obj,\ fdrepdlg.obj,\ fontdlgg.obj,\ grid.obj,\ gridctrl.obj,\ gridsel.obj,\ helpext.obj,\ htmllbox.obj,\ imaglist.obj,\ laywin.obj,\ listbkg.obj,\ listctrl.obj,\ logg.obj,\ msgdlgg.obj,\ numdlgg.obj,\ odcombo.obj,\ panelg.obj,\ printps.obj,\ prntdlgg.obj,\ propdlg.obj,\ progdlgg.obj,\ renderg.obj,\ sashwin.obj,\ scrlwing.obj,\ selstore.obj,\ splitter.obj,\ tabg.obj,\ textdlgg.obj,\ tipdlg.obj,\ tipwin.obj,\ toolbkg.obj,\ treebkg.obj,\ treectlg.obj,\ wizard.obj,\ hyperlinkg.obj,\ filepickerg.obj,\ bmpcboxg.obj,\ filectrlg.obj,srchctlg.obj,notifmsgg.obj,headerctrlg.obj,\ grideditors.obj,vlbox.obj,vscroll.obj,stattextg.obj,\ editlbox.obj,datavgen.obj,dbgrptg.obj,dragimgg.obj SOURCES = \ aboutdlgg.cpp,\ accel.cpp,\ animateg.cpp,\ busyinfo.cpp,\ calctrlg.cpp,\ caret.cpp,\ choicbkg.cpp,\ choicdgg.cpp,\ collpaneg.cpp,\ colrdlgg.cpp,\ clrpickerg.cpp,\ datectlg.cpp,\ dcpsg.cpp,\ dirctrlg.cpp,\ dirdlgg.cpp,\ filedlgg.cpp,\ fdrepdlg.cpp,\ fontdlgg.cpp,\ fontpickerg.cpp,\ grid.cpp,\ gridctrl.cpp,\ gridsel.cpp,\ helpext.cpp,\ htmllbox.cpp,\ imaglist.cpp,\ laywin.cpp,\ listbkg.cpp,\ listctrl.cpp,\ logg.cpp,\ msgdlgg.cpp,\ notebook.cpp,\ numdlgg.cpp,\ odcombo.cpp,\ paletteg.cpp,\ panelg.cpp,\ printps.cpp,\ prntdlgg.cpp,\ propdlg.cpp,\ progdlgg.cpp,\ renderg.cpp,\ sashwin.cpp,\ selstore.cpp,\ splitter.cpp,\ statline.cpp,\ statusbr.cpp,\ tabg.cpp,\ textdlgg.cpp,\ tipdlg.cpp,\ tipwin.cpp,\ toolbkg.cpp,\ treebkg.cpp,\ treectlg.cpp,\ wizard.cpp,\ dragimgg.cpp,\ fdrepdlg.cpp,\ htmllbox.cpp,\ listbkg.cpp,\ mdig.cpp,\ scrlwing.cpp,\ spinctlg.cpp,\ splash.cpp,\ timer.cpp,\ vlbox.cpp,\ hyperlinkg.cpp,\ filepickerg.cpp,\ vscroll.cpp,\ icon.cpp,bmpcboxg.cpp,filectrlg.cpp,srchctlg.cpp,notifmsgg.cpp\ ,headerctrlg.cpp,grideditors.cpp,stattextg.cpp,editlbox.cpp,\ datavgen.cpp,dbgrptg.cpp,dragimgg.cpp .ifdef __WXMOTIF__ OBJECTS0=statusbr.obj,statline.obj,notebook.obj,spinctlg.obj,collpaneg.obj,\ combog.obj,animateg.obj,colrdlgg.obj,clrpickerg.obj,fontpickerg.obj,\ mdig.obj,infobar.obj .else .ifdef __WXX11__ OBJECTS0=accel.obj,filedlgg.obj,dragimgg.obj,fdrepdlg.obj,htmllbox.obj,\ listbkg.obj,mdig.obj,spinctlg.obj,splash.obj,timer.obj,\ combog.obj,icon.obj,collpaneg.obj,animateg.obj,\ colrdlgg.obj,clrpickerg.obj,fontpickerg.obj,infobar.obj .else .ifdef __WXGTK__ OBJECTS0=accel.obj,statusbr.obj,filedlgg.obj,paletteg.obj,\ combog.obj,icon.obj,collpaneg.obj,animateg.obj,\ colrdlgg.obj,clrpickerg.obj,fontpickerg.obj,infobar.obj .else OBJECTS0=accel.obj,statusbr.obj,filedlgg.obj,paletteg.obj,\ combog.obj,icon.obj .endif .endif .endif all : $(SOURCES) $(MMS)$(MMSQUALIFIERS) $(OBJECTS) $(MMS)$(MMSQUALIFIERS) $(OBJECTS0) .ifdef __WXMOTIF__ library/crea [--.lib]libwx_motif.olb $(OBJECTS) library [--.lib]libwx_motif.olb $(OBJECTS0) .else .ifdef __WXGTK__ library/crea [--.lib]libwx_gtk.olb $(OBJECTS) library [--.lib]libwx_gtk.olb $(OBJECTS0) .else .ifdef __WXGTK2__ library/crea [--.lib]libwx_gtk2.olb $(OBJECTS) library [--.lib]libwx_gtk2.olb $(OBJECTS0) .else .ifdef __WXX11__ library/crea [--.lib]libwx_x11_univ.olb $(OBJECTS) library [--.lib]libwx_x11_univ.olb $(OBJECTS0) .endif .endif .endif .endif $(OBJECTS) : [--.include.wx]setup.h $(OBJECTS0) : [--.include.wx]setup.h aboutdlgg.obj : aboutdlgg.cpp accel.obj : accel.cpp animateg.obj : animateg.cpp busyinfo.obj : busyinfo.cpp calctrlg.obj : calctrlg.cpp caret.obj : caret.cpp choicdgg.obj : choicdgg.cpp clrpickerg.obj : clrpickerg.cpp collpaneg.obj : collpaneg.cpp colrdlgg.obj : colrdlgg.cpp datectlg.obj : datectlg.cpp dcpsg.obj : dcpsg.cpp dirctrlg.obj : dirctrlg.cpp dirdlgg.obj : dirdlgg.cpp filedlgg.obj : filedlgg.cpp fontdlgg.obj : fontdlgg.cpp fdrepdlg.obj : fdrepdlg.cpp grid.obj : grid.cpp gridctrl.obj : gridctrl.cpp gridsel.obj : gridsel.cpp helpext.obj : helpext.cpp htmllbox.obj : htmllbox.cpp icon.obj : icon.cpp imaglist.obj : imaglist.cpp laywin.obj : laywin.cpp listctrl.obj : listctrl.cpp logg.obj : logg.cpp msgdlgg.obj : msgdlgg.cpp notebook.obj : notebook.cpp numdlgg.obj : numdlgg.cpp odcombo.obj : odcombo.cpp paletteg.obj : paletteg.cpp panelg.obj : panelg.cpp printps.obj : printps.cpp prntdlgg.obj : prntdlgg.cpp progdlgg.obj : progdlgg.cpp propdlg.obj : propdlg.cpp scrlwing.obj : scrlwing.cpp spinctlg.obj : spinctlg.cpp renderg.obj : renderg.cpp sashwin.obj : sashwin.cpp selstore.obj : selstore.cpp splitter.obj : splitter.cpp statline.obj : statline.cpp statusbr.obj : statusbr.cpp tabg.obj : tabg.cpp textdlgg.obj : textdlgg.cpp tipdlg.obj : tipdlg.cpp tipwin.obj : tipwin.cpp treectlg.obj : treectlg.cpp wizard.obj : wizard.cpp dragimgg.obj : dragimgg.cpp fdrepdlg.obj : fdrepdlg.cpp htmllbox.obj : htmllbox.cpp listbkg.obj : listbkg.cpp mdig.obj : mdig.cpp scrlwing.obj : scrlwing.cpp spinctlg.obj : spinctlg.cpp splash.obj : splash.cpp timer.obj : timer.cpp vlbox.obj : vlbox.cpp vscroll.obj : vscroll.cpp cxx $(CXXFLAGS)$(CXX_DEFINE)/nowarn vscroll.cpp listbkg.obj : listbkg.cpp choicbkg.obj : choicbkg.cpp toolbkg.obj : toolbkg.cpp treebkg.obj : treebkg.cpp combog.obj : combog.cpp fontpickerg.obj : fontpickerg.cpp hyperlinkg.obj : hyperlinkg.cpp filepickerg.obj : filepickerg.cpp bmpcboxg.obj : bmpcboxg.cpp filectrlg.obj : filectrlg.cpp srchctlg.obj : srchctlg.cpp notifmsgg.obj : notifmsgg.cpp stattextg.obj : stattextg.cpp headerctrlg.obj : headerctrlg.cpp grideditors.obj : grideditors.cpp infobar.obj : infobar.cpp datavgen.obj : datavgen.cpp dbgrptg.obj : dbgrptg.cpp dragimgg.obj : dragimgg.cpp
Module Management System
2
gamekit-developers/gamekit
wxWidgets-2.9.1/src/generic/descrip.mms
[ "Zlib", "MIT" ]
discard """ ccodecheck: "\\i !@('systemInit')" ccodecheck: "\\i !@('systemDatInit')" output: "hello" """ # bug #2041: Macros need to be available for os:standalone! import macros proc printf(frmt: cstring) {.varargs, header: "<stdio.h>", cdecl.} var x = 0 inc x printf("hi %ld\n", x+4777) proc substr(a: string): string = a[0 .. 3] # This should compile. See #9762 const a = substr("foobar")
Nimrod
3
JohnAD/Nim
tests/manyloc/standalone/barebone.nim
[ "MIT" ]
,AA,AAPL,GE,IBM,JNJ,MSFT,PEP,SPX,XOM 1990-02-01 00:00:00,4.98,7.86,2.87,16.79,4.27,0.51,6.04,328.79,6.12 1990-02-02 00:00:00,5.04,8.0,2.87,16.89,4.37,0.51,6.09,330.92,6.24 1990-02-05 00:00:00,5.07,8.18,2.87,17.32,4.34,0.51,6.05,331.85,6.25 1990-02-06 00:00:00,5.01,8.12,2.88,17.56,4.32,0.51,6.15,329.66,6.23 1990-02-07 00:00:00,5.04,7.77,2.91,17.93,4.38,0.51,6.17,333.75,6.33 1990-02-08 00:00:00,5.04,7.71,2.92,17.86,4.46,0.51,6.22,332.96,6.35 1990-02-09 00:00:00,5.06,8.0,2.94,17.82,4.49,0.52,6.24,333.62,6.37 1990-02-12 00:00:00,4.96,7.94,2.89,17.58,4.46,0.52,6.23,330.08,6.22 1990-02-13 00:00:00,4.91,8.06,2.88,17.95,4.43,0.52,6.09,331.02,6.23 1990-02-14 00:00:00,4.94,8.0,2.89,18.04,4.47,0.52,6.1,332.01,6.2 1990-02-15 00:00:00,4.99,8.0,2.91,18.04,4.54,0.53,6.15,334.89,6.4 1990-02-16 00:00:00,5.1,7.91,2.88,17.99,4.47,0.53,6.11,332.72,6.33 1990-02-20 00:00:00,5.04,7.85,2.83,17.88,4.39,0.55,6.01,327.99,6.25 1990-02-21 00:00:00,5.01,7.97,2.81,18.23,4.33,0.52,5.91,327.67,6.28 1990-02-22 00:00:00,5.06,7.73,2.82,17.95,4.28,0.53,5.87,325.7,6.22 1990-02-23 00:00:00,5.07,7.79,2.81,17.84,4.2,0.53,5.88,324.15,6.22 1990-02-26 00:00:00,5.13,7.97,2.84,18.08,4.3,0.54,5.93,328.67,6.37 1990-02-27 00:00:00,5.16,7.85,2.88,18.04,4.3,0.53,6.0,330.26,6.38 1990-02-28 00:00:00,5.22,7.97,2.89,18.06,4.32,0.54,6.06,331.89,6.2 1990-03-01 00:00:00,5.26,8.03,2.88,18.08,4.35,0.55,5.98,332.74,6.13 1990-03-02 00:00:00,5.41,7.91,2.92,18.23,4.43,0.57,5.89,335.54,6.17 1990-03-05 00:00:00,5.39,8.08,2.89,18.25,4.36,0.57,5.89,333.74,6.1 1990-03-06 00:00:00,5.4,8.26,2.92,18.39,4.45,0.57,5.97,337.93,6.22 1990-03-07 00:00:00,5.36,8.29,2.93,18.34,4.45,0.56,6.06,336.95,6.13 1990-03-08 00:00:00,5.34,8.61,2.95,18.6,4.5,0.58,6.18,340.27,6.17 1990-03-09 00:00:00,5.33,8.64,2.93,18.52,4.48,0.58,6.1,337.93,6.12 1990-03-12 00:00:00,5.34,8.58,2.92,18.73,4.46,0.59,6.22,338.67,6.13 1990-03-13 00:00:00,5.29,8.64,2.9,18.47,4.38,0.58,6.18,336.0,6.02 1990-03-14 00:00:00,5.28,8.67,2.95,18.47,4.44,0.59,6.15,336.87,6.13 1990-03-15 00:00:00,5.36,8.61,2.96,18.6,4.58,0.61,6.18,338.07,6.18 1990-03-16 00:00:00,5.44,9.43,2.99,18.88,4.61,0.62,6.26,341.91,6.27 1990-03-19 00:00:00,5.53,9.93,3.03,18.95,4.59,0.64,6.43,343.53,6.27 1990-03-20 00:00:00,5.46,9.7,3.01,18.78,4.54,0.62,6.4,341.57,6.17 1990-03-21 00:00:00,5.41,9.76,3.0,18.65,4.5,0.62,6.4,339.74,6.1 1990-03-22 00:00:00,5.34,9.55,2.96,18.52,4.42,0.61,6.31,335.69,6.07 1990-03-23 00:00:00,5.33,9.9,2.98,18.25,4.49,0.6,6.41,337.22,6.09 1990-03-26 00:00:00,5.32,9.9,2.99,18.1,4.5,0.61,6.51,337.63,6.04 1990-03-27 00:00:00,5.35,9.84,3.03,18.17,4.6,0.61,6.61,341.5,6.15 1990-03-28 00:00:00,5.41,9.67,3.03,18.41,4.6,0.61,6.65,342.0,6.1 1990-03-29 00:00:00,5.36,9.64,3.02,18.43,4.56,0.6,6.58,340.79,6.09 1990-03-30 00:00:00,5.26,9.43,3.01,18.45,4.52,0.6,6.52,339.94,6.1 1990-04-02 00:00:00,5.18,9.43,2.99,18.41,4.52,0.61,6.54,338.7,6.1 1990-04-03 00:00:00,5.17,9.78,3.04,18.54,4.64,0.63,6.66,343.64,6.22 1990-04-04 00:00:00,5.13,9.67,3.01,18.52,4.57,0.64,6.61,341.09,6.13 1990-04-05 00:00:00,5.15,9.43,3.01,18.45,4.6,0.62,6.64,340.73,6.1 1990-04-06 00:00:00,5.04,9.35,3.01,18.41,4.6,0.62,6.77,340.08,6.09 1990-04-09 00:00:00,5.06,9.64,3.02,18.34,4.68,0.62,6.92,341.37,6.07 1990-04-10 00:00:00,5.11,9.67,3.01,18.41,4.68,0.64,6.91,342.07,6.07 1990-04-11 00:00:00,5.2,9.96,3.03,18.49,4.69,0.66,6.95,341.92,6.02 1990-04-12 00:00:00,5.25,10.13,3.09,18.62,4.72,0.66,7.04,344.34,6.04 1990-04-16 00:00:00,5.27,10.25,3.12,19.28,4.7,0.66,7.05,344.74,6.02 1990-04-17 00:00:00,5.26,10.13,3.13,19.32,4.76,0.68,7.05,344.68,6.04 1990-04-18 00:00:00,5.21,10.13,3.11,19.1,4.72,0.66,6.91,340.72,6.0 1990-04-19 00:00:00,5.15,9.43,3.08,18.97,4.68,0.65,6.82,338.09,6.07 1990-04-20 00:00:00,5.1,9.43,3.06,19.01,4.69,0.65,6.8,335.12,6.12 1990-04-23 00:00:00,5.04,9.31,3.02,19.01,4.6,0.64,6.77,331.05,6.04 1990-04-24 00:00:00,5.07,9.08,3.01,18.93,4.56,0.63,6.77,330.36,5.97 1990-04-25 00:00:00,5.1,9.08,3.01,19.01,4.55,0.63,6.74,332.03,5.97 1990-04-26 00:00:00,5.12,9.11,3.02,18.91,4.6,0.63,6.78,332.92,6.02 1990-04-27 00:00:00,5.14,9.17,2.99,18.67,4.54,0.61,6.71,329.11,5.94 1990-04-30 00:00:00,5.07,9.23,2.99,18.95,4.56,0.63,6.9,330.8,5.97 1990-05-01 00:00:00,5.07,9.29,3.01,18.78,4.61,0.62,6.84,332.25,5.95 1990-05-02 00:00:00,5.09,9.31,3.03,18.97,4.69,0.64,6.96,334.48,6.05 1990-05-03 00:00:00,5.11,9.37,3.03,18.99,4.67,0.64,7.03,335.57,6.12 1990-05-04 00:00:00,5.11,9.37,3.06,19.43,4.75,0.67,7.1,338.39,6.13 1990-05-07 00:00:00,5.19,9.72,3.08,19.43,4.78,0.7,7.06,340.53,6.13 1990-05-08 00:00:00,5.23,9.78,3.1,19.47,4.77,0.68,7.05,342.01,6.11 1990-05-09 00:00:00,5.19,9.81,3.12,19.56,4.7,0.68,6.99,342.86,6.15 1990-05-10 00:00:00,5.19,9.7,3.15,19.75,4.73,0.7,7.01,343.82,6.23 1990-05-11 00:00:00,5.25,9.99,3.19,20.04,4.83,0.71,7.25,352.0,6.4 1990-05-14 00:00:00,5.27,9.78,3.2,20.09,4.88,0.72,7.22,354.75,6.42 1990-05-15 00:00:00,5.31,9.78,3.19,20.33,4.91,0.71,7.16,354.28,6.35 1990-05-16 00:00:00,5.28,9.76,3.19,20.28,4.93,0.71,7.13,354.0,6.4 1990-05-17 00:00:00,5.35,9.72,3.18,20.41,4.96,0.71,7.18,354.47,6.4 1990-05-18 00:00:00,5.37,9.31,3.19,20.28,4.92,0.74,7.22,354.64,6.38 1990-05-21 00:00:00,5.44,9.28,3.2,20.57,5.0,0.77,7.39,358.0,6.4 1990-05-22 00:00:00,5.51,9.72,3.2,20.7,5.03,0.78,7.39,358.43,6.4 1990-05-23 00:00:00,5.44,9.87,3.2,20.88,5.04,0.83,7.48,359.29,6.33 1990-05-24 00:00:00,5.32,9.87,3.25,20.88,5.14,0.83,7.44,358.41,6.3 1990-05-25 00:00:00,5.31,9.4,3.2,20.44,5.07,0.81,7.31,354.58,6.21 1990-05-29 00:00:00,5.35,9.63,3.26,21.05,5.16,0.82,7.48,360.65,6.37 1990-05-30 00:00:00,5.35,9.72,3.25,21.25,5.19,0.82,7.61,360.86,6.38 1990-05-31 00:00:00,5.39,9.69,3.24,21.1,5.17,0.8,7.69,361.23,6.42 1990-06-01 00:00:00,5.46,9.58,3.27,21.01,5.2,0.82,7.81,363.16,6.38 1990-06-04 00:00:00,5.58,9.58,3.31,21.16,5.27,0.83,7.94,367.4,6.45 1990-06-05 00:00:00,5.57,9.28,3.29,21.23,5.28,0.8,7.92,366.64,6.45 1990-06-06 00:00:00,5.55,9.28,3.27,21.21,5.23,0.8,7.82,364.96,6.4 1990-06-07 00:00:00,5.5,9.16,3.26,21.21,5.2,0.79,7.75,363.15,6.37 1990-06-08 00:00:00,5.48,8.99,3.23,20.88,5.1,0.8,7.64,358.71,6.28 1990-06-11 00:00:00,5.5,9.16,3.24,21.07,5.18,0.82,7.63,361.63,6.4 1990-06-12 00:00:00,5.51,9.52,3.31,21.14,5.26,0.83,7.76,366.25,6.53 1990-06-13 00:00:00,5.49,9.34,3.31,21.34,5.24,0.83,7.76,364.9,6.43 1990-06-14 00:00:00,5.46,9.34,3.28,21.25,5.17,0.82,7.75,362.9,6.43 1990-06-15 00:00:00,5.39,9.28,3.3,21.16,5.21,0.83,7.73,362.91,6.4 1990-06-18 00:00:00,5.33,9.22,3.26,20.85,5.13,0.82,7.67,356.88,6.35 1990-06-19 00:00:00,5.31,9.31,3.29,20.88,5.16,0.82,7.76,358.47,6.33 1990-06-20 00:00:00,5.39,9.4,3.3,20.74,5.23,0.85,7.82,359.1,6.4 1990-06-21 00:00:00,5.39,9.84,3.3,20.94,5.39,0.84,7.86,360.47,6.5 1990-06-22 00:00:00,5.32,9.75,3.27,20.44,5.29,0.83,7.84,355.43,6.4 1990-06-25 00:00:00,5.29,9.69,3.27,20.5,5.24,0.81,7.75,352.31,6.32 1990-06-26 00:00:00,5.22,9.55,3.25,20.52,5.25,0.82,7.89,352.06,6.28 1990-06-27 00:00:00,5.22,9.75,3.26,20.74,5.39,0.83,7.99,355.14,6.42 1990-06-28 00:00:00,5.21,10.1,3.26,20.68,5.49,0.83,8.15,357.63,6.45 1990-06-29 00:00:00,5.21,10.52,3.26,20.66,5.48,0.83,8.11,358.02,6.4 1990-07-02 00:00:00,5.23,10.34,3.32,20.83,5.63,0.8,8.14,359.54,6.38 1990-07-03 00:00:00,5.29,10.34,3.35,20.68,5.6,0.79,8.23,360.16,6.33 1990-07-05 00:00:00,5.24,10.22,3.31,20.63,5.53,0.79,8.13,355.68,6.25 1990-07-06 00:00:00,5.44,10.52,3.33,20.74,5.57,0.8,8.35,358.42,6.38 1990-07-09 00:00:00,5.47,10.96,3.36,20.92,5.53,0.81,8.24,359.52,6.33 1990-07-10 00:00:00,5.39,11.04,3.33,20.7,5.5,0.8,8.22,356.49,6.25 1990-07-11 00:00:00,5.53,11.04,3.4,20.94,5.63,0.82,8.36,361.23,6.4 1990-07-12 00:00:00,5.58,11.13,3.46,21.1,5.74,0.85,8.36,365.44,6.58 1990-07-13 00:00:00,5.62,10.99,3.53,21.27,5.71,0.86,8.48,367.31,6.52 1990-07-16 00:00:00,5.66,10.72,3.52,21.51,5.74,0.86,8.58,368.95,6.52 1990-07-17 00:00:00,5.55,10.4,3.5,21.23,5.76,0.85,8.67,367.52,6.5 1990-07-18 00:00:00,5.51,10.49,3.5,21.07,5.78,0.83,8.56,364.22,6.48 1990-07-19 00:00:00,5.54,9.81,3.53,21.1,5.89,0.84,8.62,365.32,6.68 1990-07-20 00:00:00,5.41,9.63,3.49,20.68,5.91,0.8,8.46,361.61,6.5 1990-07-23 00:00:00,5.39,9.75,3.41,20.37,5.75,0.79,8.19,355.31,6.4 1990-07-24 00:00:00,5.53,9.9,3.43,20.17,5.83,0.76,8.2,355.79,6.68 1990-07-25 00:00:00,5.65,9.93,3.45,20.17,5.93,0.78,8.19,357.09,6.63 1990-07-26 00:00:00,5.64,9.72,3.44,19.89,5.94,0.75,8.33,355.91,6.53 1990-07-27 00:00:00,5.59,9.72,3.39,19.58,5.86,0.75,8.3,353.44,6.58 1990-07-30 00:00:00,5.75,9.96,3.41,19.71,5.8,0.74,8.13,355.55,6.78 1990-07-31 00:00:00,5.74,9.87,3.37,19.6,5.71,0.73,8.05,356.15,6.93 1990-08-01 00:00:00,5.64,9.96,3.39,19.62,5.71,0.73,8.06,355.52,6.97 1990-08-02 00:00:00,5.56,10.22,3.33,19.29,5.56,0.72,7.94,351.48,7.12 1990-08-03 00:00:00,5.41,9.69,3.29,19.01,5.44,0.69,7.96,344.86,7.1 1990-08-06 00:00:00,5.15,9.28,3.11,18.47,5.18,0.66,7.55,334.43,7.25 1990-08-07 00:00:00,5.21,9.28,3.17,18.31,5.28,0.67,7.62,334.83,7.21 1990-08-08 00:00:00,5.27,9.43,3.2,18.33,5.43,0.69,7.86,338.35,6.99 1990-08-09 00:00:00,5.31,9.28,3.2,18.36,5.41,0.71,8.01,339.94,7.01 1990-08-10 00:00:00,5.23,9.11,3.14,18.13,5.35,0.7,7.94,335.52,6.98 1990-08-13 00:00:00,5.28,9.37,3.18,18.45,5.45,0.71,7.99,338.84,7.08 1990-08-14 00:00:00,5.32,9.34,3.16,18.56,5.47,0.7,8.1,339.39,7.06 1990-08-15 00:00:00,5.35,9.22,3.12,18.67,5.56,0.7,8.24,340.06,7.03 1990-08-16 00:00:00,5.25,9.05,3.06,18.45,5.44,0.67,7.86,332.39,6.99 1990-08-17 00:00:00,5.21,8.58,3.01,18.02,5.36,0.66,7.65,327.83,7.05 1990-08-20 00:00:00,5.18,8.66,3.01,18.18,5.29,0.61,7.65,328.51,7.13 1990-08-21 00:00:00,5.11,8.54,2.91,17.87,5.2,0.59,7.37,321.86,7.01 1990-08-22 00:00:00,5.05,8.28,2.84,17.6,5.1,0.59,7.11,316.55,6.94 1990-08-23 00:00:00,5.02,8.13,2.76,17.22,4.95,0.56,6.88,307.06,6.71 1990-08-24 00:00:00,5.06,8.37,2.89,17.84,5.04,0.62,7.29,311.51,6.61 1990-08-27 00:00:00,5.13,8.9,2.99,18.56,5.26,0.66,7.63,321.44,6.71 1990-08-28 00:00:00,5.13,8.99,2.96,18.42,5.27,0.69,7.64,321.34,6.77 1990-08-29 00:00:00,5.2,8.78,2.95,18.47,5.37,0.66,7.85,324.19,6.74 1990-08-30 00:00:00,5.25,8.54,2.91,18.09,5.3,0.65,7.67,318.71,6.61 1990-08-31 00:00:00,5.32,8.72,2.92,18.11,5.34,0.67,7.85,322.56,6.76 1990-09-04 00:00:00,5.39,8.72,2.88,18.22,5.38,0.68,7.79,323.09,6.77 1990-09-05 00:00:00,5.52,8.48,2.84,18.22,5.38,0.64,7.92,324.39,6.88 1990-09-06 00:00:00,5.48,8.43,2.83,18.2,5.27,0.63,7.68,320.46,6.81 1990-09-07 00:00:00,5.52,8.57,2.86,18.76,5.34,0.63,7.92,323.4,6.88 1990-09-10 00:00:00,5.54,8.43,2.88,18.82,5.31,0.61,7.83,321.63,6.81 1990-09-11 00:00:00,5.47,8.01,2.93,19.11,5.29,0.61,7.91,321.04,6.88 1990-09-12 00:00:00,5.64,8.01,2.92,19.18,5.29,0.63,8.03,322.54,6.94 1990-09-13 00:00:00,5.56,7.95,2.84,18.67,5.18,0.63,7.87,318.65,6.86 1990-09-14 00:00:00,5.51,8.01,2.8,18.56,5.19,0.65,7.79,316.83,6.94 1990-09-17 00:00:00,5.58,7.95,2.78,18.69,5.22,0.66,7.63,317.77,6.98 1990-09-18 00:00:00,5.63,7.87,2.76,19.07,5.27,0.67,7.51,318.6,6.93 1990-09-19 00:00:00,5.77,7.66,2.64,19.27,5.21,0.68,7.36,316.6,6.93 1990-09-20 00:00:00,5.65,7.45,2.62,19.18,5.06,0.65,7.16,311.48,6.91 1990-09-21 00:00:00,5.58,7.42,2.65,18.98,5.08,0.66,7.0,311.32,6.93 1990-09-24 00:00:00,5.27,7.13,2.59,18.67,4.99,0.64,6.81,304.59,6.82 1990-09-25 00:00:00,5.2,7.07,2.64,18.91,5.12,0.66,6.92,308.26,6.82 1990-09-26 00:00:00,5.19,7.01,2.61,18.73,5.1,0.66,6.92,305.06,6.74 1990-09-27 00:00:00,5.16,6.66,2.45,18.56,5.07,0.65,6.96,300.97,6.72 1990-09-28 00:00:00,5.18,6.83,2.59,18.91,5.14,0.69,7.24,306.05,6.62 1990-10-01 00:00:00,5.25,7.19,2.67,19.38,5.36,0.73,7.75,314.94,6.71 1990-10-02 00:00:00,5.2,6.98,2.65,19.25,5.4,0.72,7.71,315.21,6.69 1990-10-03 00:00:00,5.18,6.36,2.59,19.09,5.32,0.72,7.59,311.4,6.71 1990-10-04 00:00:00,5.16,6.6,2.58,19.18,5.33,0.7,7.79,312.69,6.81 1990-10-05 00:00:00,5.12,6.6,2.58,19.25,5.33,0.71,7.63,311.5,6.74 1990-10-08 00:00:00,5.11,6.86,2.59,19.47,5.41,0.72,7.67,313.48,6.81 1990-10-09 00:00:00,4.94,6.6,2.51,18.73,5.3,0.69,7.24,305.1,6.72 1990-10-10 00:00:00,4.67,6.25,2.47,18.4,5.25,0.65,7.24,300.39,6.59 1990-10-11 00:00:00,4.5,6.54,2.43,17.96,5.15,0.63,7.12,295.46,6.5 1990-10-12 00:00:00,4.42,6.66,2.52,17.82,5.23,0.62,7.48,300.03,6.55 1990-10-15 00:00:00,4.36,6.54,2.58,17.65,5.32,0.62,7.63,303.23,6.66 1990-10-16 00:00:00,4.29,5.89,2.45,17.67,5.27,0.6,7.44,298.92,6.57 1990-10-17 00:00:00,4.35,6.25,2.5,17.91,5.3,0.62,7.16,298.76,6.55 1990-10-18 00:00:00,4.46,6.72,2.59,18.73,5.44,0.67,7.51,305.74,6.55 1990-10-19 00:00:00,4.49,7.39,2.64,19.13,5.48,0.68,7.87,312.48,6.74 1990-10-22 00:00:00,4.54,7.33,2.55,19.16,5.55,0.7,7.83,314.76,6.71 1990-10-23 00:00:00,4.54,7.31,2.56,18.98,5.58,0.7,7.75,312.36,6.55 1990-10-24 00:00:00,4.6,7.19,2.46,19.31,5.52,0.71,7.71,312.6,6.55 1990-10-25 00:00:00,4.6,7.07,2.43,19.22,5.5,0.71,7.67,310.17,6.45 1990-10-26 00:00:00,4.56,7.07,2.4,19.0,5.38,0.69,7.48,304.71,6.39 1990-10-29 00:00:00,4.53,7.04,2.42,18.85,5.33,0.68,7.24,301.88,6.44 1990-10-30 00:00:00,4.44,7.16,2.51,18.91,5.35,0.7,7.51,304.06,6.61 1990-10-31 00:00:00,4.42,7.25,2.47,18.76,5.24,0.7,7.55,304.0,6.62 1990-11-01 00:00:00,4.43,7.19,2.49,19.07,5.35,0.69,7.59,307.02,6.72 1990-11-02 00:00:00,4.52,7.48,2.52,19.27,5.42,0.71,7.67,311.85,6.71 1990-11-05 00:00:00,4.5,7.84,2.56,19.39,5.49,0.72,7.87,314.59,6.71 1990-11-06 00:00:00,4.41,7.9,2.54,19.39,5.4,0.7,7.67,311.62,6.75 1990-11-07 00:00:00,4.31,7.84,2.47,19.15,5.32,0.7,7.48,306.01,6.61 1990-11-08 00:00:00,4.2,8.13,2.46,19.33,5.29,0.69,7.51,307.61,6.75 1990-11-09 00:00:00,4.2,8.37,2.55,19.82,5.33,0.71,7.67,313.74,6.9 1990-11-12 00:00:00,4.35,8.54,2.63,20.32,5.43,0.75,7.87,319.48,6.88 1990-11-13 00:00:00,4.33,8.48,2.64,20.14,5.39,0.75,7.95,317.67,6.85 1990-11-14 00:00:00,4.38,8.72,2.62,20.41,5.42,0.76,8.07,320.4,6.88 1990-11-15 00:00:00,4.43,8.48,2.61,20.25,5.38,0.74,7.99,317.02,6.85 1990-11-16 00:00:00,4.41,8.31,2.63,20.43,5.36,0.74,8.03,317.12,6.9 1990-11-19 00:00:00,4.41,8.6,2.63,20.63,5.44,0.76,8.18,319.34,6.94 1990-11-20 00:00:00,4.41,8.39,2.53,20.38,5.4,0.74,8.03,315.31,6.94 1990-11-21 00:00:00,4.49,8.54,2.55,20.52,5.4,0.75,8.11,316.03,6.95 1990-11-23 00:00:00,4.51,8.6,2.55,20.25,5.35,0.75,8.07,315.1,7.0 1990-11-26 00:00:00,4.51,8.69,2.54,20.47,5.34,0.77,8.07,316.51,6.99 1990-11-27 00:00:00,4.57,8.87,2.54,20.41,5.36,0.78,8.18,318.1,6.9 1990-11-28 00:00:00,4.56,8.69,2.5,20.2,5.48,0.77,7.99,317.95,6.9 1990-11-29 00:00:00,4.54,8.69,2.52,20.14,5.56,0.78,7.87,316.42,6.88 1990-11-30 00:00:00,4.57,8.69,2.6,20.43,5.7,0.79,8.07,322.22,6.94 1990-12-03 00:00:00,4.58,9.02,2.61,20.38,5.8,0.81,8.18,324.1,6.95 1990-12-04 00:00:00,4.58,9.1,2.66,20.63,5.8,0.81,8.34,326.35,6.9 1990-12-05 00:00:00,4.68,9.49,2.73,20.61,5.76,0.82,8.46,329.92,6.88 1990-12-06 00:00:00,4.69,9.75,2.76,20.05,5.77,0.82,8.46,329.07,6.8 1990-12-07 00:00:00,4.69,10.05,2.76,20.23,5.78,0.81,8.38,327.75,6.75 1990-12-10 00:00:00,4.79,9.87,2.73,20.38,5.75,0.81,8.33,328.89,6.8 1990-12-11 00:00:00,4.77,9.46,2.72,20.29,5.74,0.79,8.18,326.44,6.82 1990-12-12 00:00:00,4.87,9.37,2.73,20.56,5.83,0.79,8.37,330.19,6.9 1990-12-13 00:00:00,4.86,9.64,2.7,20.29,5.78,0.79,8.41,329.34,6.92 1990-12-14 00:00:00,4.81,9.43,2.67,20.0,5.73,0.8,8.21,326.82,6.95 1990-12-17 00:00:00,4.78,9.49,2.66,20.05,5.75,0.81,8.21,326.02,6.99 1990-12-18 00:00:00,4.81,9.99,2.73,20.41,5.86,0.82,8.33,330.05,6.99 1990-12-19 00:00:00,4.9,9.9,2.72,20.27,5.86,0.82,8.37,330.2,6.92 1990-12-20 00:00:00,4.88,10.4,2.76,20.45,5.85,0.82,8.37,330.12,6.9 1990-12-21 00:00:00,4.9,10.64,2.78,20.47,5.81,0.83,8.33,331.75,6.95 1990-12-24 00:00:00,4.86,10.4,2.76,20.47,5.81,0.82,8.25,329.9,7.02 1990-12-26 00:00:00,4.87,10.35,2.75,20.41,5.83,0.82,8.14,330.85,7.09 1990-12-27 00:00:00,4.8,10.29,2.74,20.43,5.78,0.82,8.14,328.29,7.02 1990-12-28 00:00:00,4.76,10.17,2.75,20.38,5.8,0.82,8.14,328.72,7.07 1990-12-31 00:00:00,4.8,10.17,2.75,20.32,5.87,0.82,8.21,330.22,7.09 1991-01-02 00:00:00,4.83,10.29,2.71,20.16,5.72,0.82,8.14,326.45,6.95 1991-01-03 00:00:00,4.8,10.17,2.65,20.23,5.66,0.82,7.9,321.91,6.99 1991-01-04 00:00:00,4.69,10.23,2.62,20.16,5.62,0.83,7.86,321.0,7.06 1991-01-07 00:00:00,4.66,10.23,2.58,19.82,5.45,0.82,7.66,315.44,6.97 1991-01-08 00:00:00,4.59,10.23,2.6,19.6,5.5,0.8,7.7,314.9,6.95 1991-01-09 00:00:00,4.51,10.7,2.6,19.22,5.36,0.81,7.7,311.49,6.83 1991-01-10 00:00:00,4.62,11.15,2.6,19.48,5.51,0.85,7.66,314.53,6.9 1991-01-11 00:00:00,4.63,11.11,2.59,19.44,5.55,0.85,7.74,315.23,6.83 1991-01-14 00:00:00,4.63,10.94,2.6,19.19,5.56,0.84,7.7,312.49,6.85 1991-01-15 00:00:00,4.65,11.06,2.61,19.33,5.57,0.86,7.62,313.73,6.83 1991-01-16 00:00:00,4.65,11.76,2.62,19.62,5.67,0.9,7.86,316.17,6.82 1991-01-17 00:00:00,4.87,12.12,2.78,20.81,5.85,0.92,8.49,327.97,6.97 1991-01-18 00:00:00,4.97,11.88,2.77,21.15,5.88,0.93,8.61,332.23,7.07 1991-01-21 00:00:00,5.01,12.0,2.75,21.51,5.9,0.98,8.45,331.06,7.02 1991-01-22 00:00:00,4.87,12.12,2.72,21.22,5.87,0.97,8.33,328.31,6.97 1991-01-23 00:00:00,4.97,12.24,2.74,21.44,5.97,0.97,8.49,330.21,7.12 1991-01-24 00:00:00,4.91,12.33,2.8,21.76,6.11,0.99,8.85,334.78,7.12 1991-01-25 00:00:00,4.93,12.65,2.87,22.05,6.1,0.98,8.57,336.07,7.21 1991-01-28 00:00:00,4.99,12.89,2.91,22.34,6.11,1.01,8.33,336.03,7.19 1991-01-29 00:00:00,5.15,12.71,2.91,22.39,6.15,1.01,8.57,335.84,7.12 1991-01-30 00:00:00,5.46,13.12,2.97,22.83,6.24,1.05,8.73,340.91,7.09 1991-01-31 00:00:00,5.41,13.12,3.07,22.79,6.25,1.07,8.69,343.93,7.07 1991-02-01 00:00:00,5.49,13.18,3.07,22.81,6.14,1.09,8.53,343.05,6.92 1991-02-04 00:00:00,5.6,13.07,3.12,23.12,6.24,1.08,8.53,348.34,7.02 1991-02-05 00:00:00,5.55,13.66,3.18,23.33,6.23,1.11,9.08,351.26,7.03 1991-02-06 00:00:00,5.51,13.45,3.19,23.58,6.32,1.15,9.56,358.07,7.34 1991-02-07 00:00:00,5.43,13.66,3.11,23.33,6.24,1.12,9.36,356.52,7.46 1991-02-08 00:00:00,5.49,14.16,3.13,23.51,6.32,1.14,9.32,359.35,7.38 1991-02-11 00:00:00,5.75,14.51,3.2,24.03,6.53,1.14,9.68,368.58,7.57 1991-02-12 00:00:00,5.61,14.19,3.2,24.1,6.45,1.13,9.56,365.5,7.41 1991-02-13 00:00:00,5.86,14.19,3.25,24.44,6.5,1.15,9.79,369.02,7.6 1991-02-14 00:00:00,5.68,13.51,3.23,24.51,6.4,1.1,10.03,364.22,7.46 1991-02-15 00:00:00,5.72,13.66,3.34,24.94,6.65,1.13,10.11,369.06,7.41 1991-02-19 00:00:00,5.68,14.22,3.34,25.32,6.64,1.12,10.19,369.39,7.43 1991-02-20 00:00:00,5.58,14.46,3.28,25.03,6.57,1.12,9.99,365.14,7.44 1991-02-21 00:00:00,5.5,13.98,3.27,24.6,6.6,1.09,10.19,364.97,7.48 1991-02-22 00:00:00,5.44,14.16,3.32,24.19,6.61,1.12,10.51,365.65,7.46 1991-02-25 00:00:00,5.34,13.74,3.36,24.26,6.75,1.12,10.58,367.26,7.48 1991-02-26 00:00:00,5.45,13.8,3.28,23.55,6.64,1.11,10.35,362.81,7.46 1991-02-27 00:00:00,5.38,13.8,3.33,23.76,6.76,1.15,10.62,367.74,7.74 1991-02-28 00:00:00,5.39,13.57,3.28,23.37,6.74,1.13,10.35,367.07,7.65 1991-03-01 00:00:00,5.53,13.69,3.33,23.78,6.73,1.15,10.43,370.47,7.74 1991-03-04 00:00:00,5.62,13.83,3.3,23.71,6.66,1.17,10.1,369.33,7.58 1991-03-05 00:00:00,5.7,14.96,3.33,24.23,6.84,1.22,10.74,376.72,7.62 1991-03-06 00:00:00,5.79,14.93,3.31,24.12,7.19,1.17,10.38,376.17,7.62 1991-03-07 00:00:00,5.7,15.94,3.29,24.05,7.42,1.14,10.38,375.91,7.67 1991-03-08 00:00:00,5.67,15.4,3.22,23.83,7.37,1.12,10.3,374.95,7.69 1991-03-11 00:00:00,5.64,15.05,3.3,23.44,7.25,1.08,10.18,372.96,7.7 1991-03-12 00:00:00,5.65,14.9,3.28,23.05,7.18,1.05,9.9,370.03,7.81 1991-03-13 00:00:00,5.8,15.7,3.35,23.44,7.31,1.1,10.22,374.57,7.95 1991-03-14 00:00:00,5.79,15.46,3.31,23.26,7.53,1.07,10.5,373.5,7.91 1991-03-15 00:00:00,5.71,15.7,3.31,22.99,7.69,1.05,10.58,373.59,7.93 1991-03-18 00:00:00,5.68,16.06,3.32,23.21,7.62,1.08,10.5,372.11,7.83 1991-03-19 00:00:00,5.57,16.47,3.26,20.9,7.44,1.08,10.3,366.59,7.83 1991-03-20 00:00:00,5.56,16.06,3.22,20.72,7.39,1.08,10.62,367.92,7.93 1991-03-21 00:00:00,5.47,15.34,3.2,20.31,7.4,1.03,10.66,366.58,7.95 1991-03-22 00:00:00,5.52,14.99,3.2,20.26,7.5,1.02,10.42,367.48,8.03 1991-03-25 00:00:00,5.54,15.28,3.23,20.6,7.8,1.07,10.38,369.83,8.21 1991-03-26 00:00:00,5.61,16.59,3.39,20.67,8.01,1.15,10.81,376.3,8.26 1991-03-27 00:00:00,5.59,16.41,3.36,20.49,7.94,1.18,10.81,375.35,8.1 1991-03-28 00:00:00,5.51,16.11,3.36,20.67,7.87,1.16,10.85,375.22,8.12 1991-04-01 00:00:00,5.42,16.23,3.37,20.38,7.75,1.17,10.77,371.3,7.98 1991-04-02 00:00:00,5.54,17.24,3.48,20.56,7.92,1.23,11.29,379.5,8.17 1991-04-03 00:00:00,5.51,16.59,3.45,20.53,7.91,1.24,10.77,378.94,8.03 1991-04-04 00:00:00,5.47,16.94,3.47,20.6,7.79,1.24,10.81,379.77,7.98 1991-04-05 00:00:00,5.45,16.44,3.42,20.44,7.67,1.2,10.54,375.36,7.97 1991-04-08 00:00:00,5.44,16.59,3.46,20.51,7.95,1.22,10.3,378.66,8.0 1991-04-09 00:00:00,5.4,16.29,3.44,20.2,7.85,1.2,10.26,373.56,7.91 1991-04-10 00:00:00,5.33,15.85,3.5,20.2,7.81,1.17,10.3,373.15,7.93 1991-04-11 00:00:00,5.3,16.83,3.51,20.08,7.99,1.21,10.46,377.63,8.09 1991-04-12 00:00:00,5.23,17.0,3.53,19.7,8.03,1.17,10.5,380.4,8.29 1991-04-15 00:00:00,5.5,14.75,3.56,19.4,7.96,1.24,10.62,381.19,8.26 1991-04-16 00:00:00,5.5,15.23,3.62,19.83,8.23,1.23,10.77,387.62,8.35 1991-04-17 00:00:00,5.72,14.99,3.63,19.94,8.17,1.22,10.62,390.45,8.35 1991-04-18 00:00:00,5.7,14.46,3.62,19.92,8.08,1.2,10.5,388.46,8.31 1991-04-19 00:00:00,5.66,14.13,3.59,19.88,7.98,1.17,10.42,384.2,8.35 1991-04-22 00:00:00,5.63,14.57,3.54,19.7,7.92,1.11,10.3,380.95,8.35 1991-04-23 00:00:00,5.73,14.57,3.52,19.67,7.86,1.11,10.34,381.76,8.45 1991-04-24 00:00:00,5.88,14.4,3.5,19.65,7.71,1.12,10.38,382.76,8.45 1991-04-25 00:00:00,5.73,13.86,3.45,19.61,7.8,1.1,10.18,379.25,8.21 1991-04-26 00:00:00,5.63,13.89,3.47,19.49,7.79,1.1,10.22,379.02,8.26 1991-04-29 00:00:00,5.68,13.8,3.38,19.04,7.78,1.07,9.67,373.66,8.21 1991-04-30 00:00:00,5.71,13.03,3.42,18.7,7.76,1.08,10.1,375.34,8.26 1991-05-01 00:00:00,5.92,11.2,3.5,18.88,7.9,1.1,10.42,380.29,8.38 1991-05-02 00:00:00,6.01,11.61,3.5,19.22,7.74,1.1,10.26,380.52,8.28 1991-05-03 00:00:00,5.97,11.61,3.51,18.81,7.74,1.11,10.06,380.8,8.22 1991-05-06 00:00:00,6.05,11.91,3.52,18.99,7.72,1.12,10.14,380.08,8.17 1991-05-07 00:00:00,5.99,12.0,3.53,18.71,7.73,1.11,10.02,377.32,8.09 1991-05-08 00:00:00,5.97,11.79,3.52,19.06,7.69,1.12,10.06,378.51,8.18 1991-05-09 00:00:00,6.0,12.03,3.56,19.45,7.82,1.15,10.22,383.25,8.37 1991-05-10 00:00:00,6.04,12.14,3.44,18.99,7.66,1.12,10.02,375.74,8.13 1991-05-13 00:00:00,5.86,12.5,3.45,19.45,7.64,1.13,10.22,376.76,8.07 1991-05-14 00:00:00,5.74,12.68,3.42,19.47,7.58,1.11,10.02,371.62,7.9 1991-05-15 00:00:00,5.63,11.97,3.42,18.87,7.53,1.07,9.9,368.57,7.92 1991-05-16 00:00:00,5.67,11.61,3.43,19.12,7.59,1.08,10.02,372.19,8.09 1991-05-17 00:00:00,5.57,11.14,3.45,19.06,7.42,1.08,9.94,372.39,8.14 1991-05-20 00:00:00,5.63,10.51,3.49,18.96,7.52,1.08,10.06,372.28,8.18 1991-05-21 00:00:00,5.72,10.75,3.51,18.64,7.72,1.11,10.3,375.35,8.28 1991-05-22 00:00:00,5.74,10.99,3.45,19.22,7.77,1.17,10.3,376.19,8.28 1991-05-23 00:00:00,5.66,10.72,3.49,19.22,7.72,1.2,10.02,374.96,8.25 1991-05-24 00:00:00,5.73,10.9,3.53,19.29,7.64,1.2,10.06,377.49,8.23 1991-05-28 00:00:00,5.99,10.93,3.58,19.31,7.78,1.21,10.22,381.94,8.23 1991-05-29 00:00:00,6.09,11.17,3.6,19.12,7.72,1.2,10.18,382.79,8.25 1991-05-30 00:00:00,6.04,11.32,3.69,19.17,7.59,1.2,10.02,386.96,8.21 1991-05-31 00:00:00,6.02,11.17,3.76,19.49,7.47,1.2,9.94,389.83,8.18 1991-06-03 00:00:00,6.06,11.7,3.77,19.54,7.29,1.22,9.78,388.06,8.27 1991-06-04 00:00:00,6.09,11.67,3.74,19.29,7.32,1.23,9.82,387.74,8.21 1991-06-05 00:00:00,6.05,11.4,3.68,18.96,7.3,1.22,9.71,385.09,8.13 1991-06-06 00:00:00,5.91,11.08,3.66,18.92,7.29,1.21,9.82,383.63,8.18 1991-06-07 00:00:00,5.82,10.96,3.6,18.73,7.15,1.2,9.74,379.43,8.07 1991-06-10 00:00:00,5.76,10.93,3.62,18.8,7.15,1.21,9.62,378.57,8.14 1991-06-11 00:00:00,5.68,10.6,3.66,18.78,7.16,1.21,9.7,381.05,8.21 1991-06-12 00:00:00,5.66,10.07,3.61,18.64,7.03,1.21,9.58,376.65,8.09 1991-06-13 00:00:00,5.66,10.01,3.64,18.48,7.0,1.21,9.54,377.63,8.13 1991-06-14 00:00:00,5.71,9.77,3.68,18.44,7.05,1.24,9.82,382.29,8.18 1991-06-17 00:00:00,5.83,9.98,3.63,18.28,7.03,1.24,9.82,380.13,8.07 1991-06-18 00:00:00,5.88,10.01,3.63,18.53,6.99,1.22,9.66,378.59,8.0 1991-06-19 00:00:00,5.88,9.92,3.6,18.55,6.9,1.13,9.5,375.09,8.0 1991-06-20 00:00:00,5.88,9.98,3.6,18.21,7.0,1.1,9.54,375.42,8.16 1991-06-21 00:00:00,5.85,9.98,3.65,18.3,7.05,1.12,9.54,377.75,8.21 1991-06-24 00:00:00,5.7,9.92,3.59,18.07,6.93,1.07,9.43,370.94,8.16 1991-06-25 00:00:00,5.64,10.07,3.58,18.25,6.91,1.08,9.15,370.65,8.21 1991-06-26 00:00:00,5.63,10.22,3.57,18.11,6.83,1.1,9.23,371.59,8.32 1991-06-27 00:00:00,5.74,10.1,3.63,17.93,6.94,1.11,9.27,374.4,8.28 1991-06-28 00:00:00,5.71,9.86,3.6,17.84,6.89,1.12,9.23,371.16,8.16 1991-07-01 00:00:00,5.65,10.1,3.64,18.07,6.97,1.17,9.27,377.92,8.41 1991-07-02 00:00:00,5.81,10.04,3.65,18.21,6.84,1.12,9.46,377.47,8.25 1991-07-03 00:00:00,5.74,10.25,3.6,18.02,6.76,1.05,9.35,373.33,8.06 1991-07-05 00:00:00,5.7,10.84,3.59,18.11,6.97,1.01,9.27,374.08,8.07 1991-07-08 00:00:00,5.78,11.11,3.64,18.46,7.02,1.1,9.46,377.94,8.21 1991-07-09 00:00:00,5.74,11.14,3.63,18.28,7.06,1.11,9.5,376.11,8.09 1991-07-10 00:00:00,5.75,11.23,3.61,18.14,7.13,1.07,9.11,375.74,8.06 1991-07-11 00:00:00,5.87,11.11,3.65,18.05,7.18,1.08,9.11,376.97,8.13 1991-07-12 00:00:00,5.96,11.11,3.66,18.25,7.19,1.11,9.23,380.25,8.25 1991-07-15 00:00:00,6.05,10.81,3.66,18.23,7.16,1.14,9.5,382.39,8.3 1991-07-16 00:00:00,6.04,10.39,3.59,17.75,7.23,1.11,9.62,381.54,8.28 1991-07-17 00:00:00,5.92,10.1,3.49,17.68,7.13,1.11,9.46,381.18,8.41 1991-07-18 00:00:00,6.05,10.66,3.56,18.05,7.25,1.1,9.46,385.37,8.41 1991-07-19 00:00:00,6.11,10.93,3.58,18.46,7.23,1.11,9.35,384.22,8.37 1991-07-22 00:00:00,6.05,10.93,3.56,18.73,7.24,1.11,9.23,382.88,8.35 1991-07-23 00:00:00,6.12,10.69,3.51,18.48,7.18,1.09,9.23,379.42,8.21 1991-07-24 00:00:00,5.98,10.69,3.47,18.51,7.15,1.07,9.43,378.64,8.27 1991-07-25 00:00:00,6.0,10.75,3.53,18.46,7.22,1.08,9.46,380.96,8.3 1991-07-26 00:00:00,6.01,10.66,3.54,18.46,7.25,1.16,9.39,380.93,8.25 1991-07-29 00:00:00,5.95,10.81,3.54,18.62,7.4,1.15,9.5,383.15,8.32 1991-07-30 00:00:00,5.99,11.05,3.56,18.67,7.49,1.19,10.02,386.69,8.35 1991-07-31 00:00:00,6.01,10.99,3.56,18.6,7.55,1.2,10.14,387.81,8.34 1991-08-01 00:00:00,5.95,11.67,3.55,18.6,7.5,1.2,10.1,387.12,8.34 1991-08-02 00:00:00,5.91,11.88,3.54,18.44,7.55,1.2,10.06,387.18,8.25 1991-08-05 00:00:00,5.77,11.52,3.5,18.55,7.51,1.18,9.98,385.06,8.2 1991-08-06 00:00:00,5.81,11.76,3.54,18.66,7.63,1.22,10.26,390.62,8.39 1991-08-07 00:00:00,5.91,11.97,3.59,18.4,7.65,1.24,10.34,390.56,8.36 1991-08-08 00:00:00,5.75,12.0,3.59,18.45,7.6,1.29,10.34,389.32,8.25 1991-08-09 00:00:00,5.82,12.06,3.58,18.38,7.61,1.32,10.18,387.12,8.17 1991-08-12 00:00:00,5.82,12.29,3.57,18.33,7.55,1.36,10.26,388.02,8.18 1991-08-13 00:00:00,5.84,12.71,3.56,18.4,7.61,1.35,10.22,389.62,8.22 1991-08-14 00:00:00,5.74,13.04,3.55,18.31,7.53,1.35,10.42,389.9,8.13 1991-08-15 00:00:00,5.73,12.65,3.53,18.29,7.55,1.33,10.46,389.33,8.17 1991-08-16 00:00:00,5.74,12.65,3.5,17.94,7.39,1.34,10.22,385.58,8.17 1991-08-19 00:00:00,5.63,12.02,3.42,17.66,7.21,1.31,9.78,376.47,8.18 1991-08-20 00:00:00,5.5,12.14,3.43,17.8,7.23,1.32,10.06,379.43,8.17 1991-08-21 00:00:00,5.57,12.8,3.54,17.78,7.48,1.38,10.5,390.59,8.27 1991-08-22 00:00:00,5.65,12.92,3.55,17.54,7.55,1.38,10.46,391.33,8.31 1991-08-23 00:00:00,5.91,12.62,3.63,17.64,7.63,1.4,10.62,394.17,8.38 1991-08-26 00:00:00,5.96,12.62,3.63,17.68,7.65,1.4,10.5,393.85,8.31 1991-08-27 00:00:00,5.9,12.86,3.6,17.71,7.61,1.39,10.46,393.06,8.33 1991-08-28 00:00:00,5.93,12.68,3.64,17.57,7.69,1.4,10.58,396.64,8.45 1991-08-29 00:00:00,5.88,12.62,3.63,17.75,7.7,1.4,10.5,396.47,8.36 1991-08-30 00:00:00,5.89,12.62,3.64,18.01,7.69,1.4,10.3,395.43,8.27 1991-09-03 00:00:00,5.83,12.5,3.6,18.22,7.62,1.36,10.02,392.15,8.24 1991-09-04 00:00:00,5.78,12.26,3.58,18.33,7.55,1.35,9.9,389.97,8.22 1991-09-05 00:00:00,5.78,12.14,3.51,18.26,7.48,1.32,9.5,389.14,8.34 1991-09-06 00:00:00,5.74,12.26,3.45,18.47,7.44,1.32,9.27,389.1,8.38 1991-09-09 00:00:00,5.68,12.68,3.43,18.78,7.4,1.32,9.5,388.57,8.36 1991-09-10 00:00:00,5.64,11.94,3.42,18.52,7.33,1.31,9.3,384.56,8.33 1991-09-11 00:00:00,5.69,12.02,3.42,18.84,7.31,1.34,9.46,385.09,8.36 1991-09-12 00:00:00,5.65,12.06,3.39,19.33,7.44,1.4,9.54,387.34,8.36 1991-09-13 00:00:00,5.63,11.58,3.3,19.12,7.38,1.36,9.42,383.59,8.29 1991-09-16 00:00:00,5.73,11.25,3.39,19.26,7.47,1.36,9.3,385.78,8.47 1991-09-17 00:00:00,5.7,11.67,3.36,19.5,7.43,1.38,9.3,385.5,8.43 1991-09-18 00:00:00,5.7,11.94,3.37,19.59,7.4,1.39,9.34,386.94,8.41 1991-09-19 00:00:00,5.67,11.85,3.38,19.5,7.42,1.41,9.42,387.56,8.43 1991-09-20 00:00:00,5.62,12.06,3.4,19.38,7.34,1.42,9.3,387.92,8.38 1991-09-23 00:00:00,5.52,11.79,3.38,19.45,7.37,1.39,9.3,385.92,8.33 1991-09-24 00:00:00,5.43,11.97,3.42,19.68,7.51,1.44,9.22,387.71,8.45 1991-09-25 00:00:00,5.4,12.02,3.37,19.52,7.43,1.44,9.1,386.88,8.43 1991-09-26 00:00:00,5.47,11.91,3.38,19.5,7.41,1.46,9.06,386.49,8.34 1991-09-27 00:00:00,5.43,11.67,3.37,19.01,7.33,1.44,9.06,385.9,8.34 1991-09-30 00:00:00,5.44,11.79,3.4,19.26,7.32,1.46,9.1,387.86,8.45 1991-10-01 00:00:00,5.36,12.08,3.42,19.08,7.35,1.45,9.26,389.2,8.56 1991-10-02 00:00:00,5.17,11.85,3.45,18.8,7.25,1.42,9.3,388.26,8.56 1991-10-03 00:00:00,5.05,11.37,3.39,18.4,7.22,1.43,9.18,384.47,8.45 1991-10-04 00:00:00,4.98,11.49,3.35,18.26,7.18,1.44,9.1,381.25,8.4 1991-10-07 00:00:00,4.96,11.46,3.29,18.38,7.17,1.45,9.18,379.5,8.41 1991-10-08 00:00:00,5.09,11.49,3.28,18.22,7.19,1.46,9.26,380.67,8.54 1991-10-09 00:00:00,5.17,11.43,3.2,18.08,7.14,1.47,9.22,376.8,8.43 1991-10-10 00:00:00,5.22,11.37,3.29,18.54,7.15,1.47,9.22,380.55,8.56 1991-10-11 00:00:00,5.2,11.55,3.26,18.57,7.15,1.47,9.18,381.45,8.54 1991-10-14 00:00:00,5.16,11.88,3.31,18.82,7.21,1.51,9.26,386.47,8.65 1991-10-15 00:00:00,5.18,12.5,3.43,19.38,7.28,1.5,9.26,391.01,8.65 1991-10-16 00:00:00,5.44,12.74,3.49,18.89,7.34,1.49,9.14,392.8,8.59 1991-10-17 00:00:00,5.47,12.47,3.5,18.57,7.44,1.46,9.02,391.92,8.66 1991-10-18 00:00:00,5.45,13.1,3.5,18.66,7.54,1.47,8.98,392.5,8.73 1991-10-21 00:00:00,5.44,13.04,3.48,18.64,7.36,1.49,8.91,390.02,8.7 1991-10-22 00:00:00,5.44,12.98,3.48,18.31,7.72,1.5,8.67,387.83,8.68 1991-10-23 00:00:00,5.36,12.65,3.53,18.31,7.81,1.48,8.94,387.94,8.65 1991-10-24 00:00:00,5.31,12.41,3.48,18.26,7.69,1.48,8.87,385.07,8.59 1991-10-25 00:00:00,5.27,12.2,3.39,18.22,7.69,1.47,8.87,384.2,8.61 1991-10-28 00:00:00,5.29,12.26,3.44,18.26,7.83,1.48,8.94,389.52,8.77 1991-10-29 00:00:00,5.33,12.32,3.47,18.38,7.88,1.49,9.1,391.48,8.75 1991-10-30 00:00:00,5.44,11.85,3.43,18.64,7.89,1.55,9.14,392.96,8.68 1991-10-31 00:00:00,5.43,12.26,3.38,18.26,7.88,1.54,9.1,392.45,8.66 1991-11-01 00:00:00,5.4,12.14,3.35,18.29,7.9,1.52,9.18,391.32,8.59 1991-11-04 00:00:00,5.36,11.85,3.36,18.26,8.0,1.49,9.38,390.28,8.75 1991-11-05 00:00:00,5.41,11.61,3.33,18.19,7.97,1.53,9.22,388.71,8.72 1991-11-06 00:00:00,5.36,11.43,3.36,18.19,7.94,1.56,9.14,389.97,8.78 1991-11-07 00:00:00,5.43,11.85,3.36,18.8,7.96,1.55,9.38,393.72,8.7 1991-11-08 00:00:00,5.39,12.68,3.37,18.87,7.95,1.56,9.26,392.89,8.63 1991-11-11 00:00:00,5.36,12.8,3.36,18.84,8.12,1.6,9.26,393.12,8.65 1991-11-12 00:00:00,5.29,12.98,3.39,18.7,8.24,1.64,9.42,396.74,8.65 1991-11-13 00:00:00,5.3,12.89,3.41,18.61,8.16,1.65,9.38,397.41,8.65 1991-11-14 00:00:00,5.3,13.04,3.45,18.82,8.22,1.62,9.54,397.15,8.58 1991-11-15 00:00:00,5.11,11.91,3.3,18.12,7.84,1.56,9.1,382.62,8.22 1991-11-18 00:00:00,5.14,12.44,3.36,18.3,8.05,1.59,9.5,385.24,8.36 1991-11-19 00:00:00,4.88,12.23,3.34,18.16,7.92,1.58,9.3,379.42,8.47 1991-11-20 00:00:00,4.99,12.05,3.28,17.97,7.84,1.58,9.18,378.53,8.38 1991-11-21 00:00:00,5.07,12.17,3.27,17.95,7.92,1.59,9.38,380.06,8.43 1991-11-22 00:00:00,4.98,12.23,3.25,17.83,7.89,1.57,9.22,376.14,8.29 1991-11-25 00:00:00,4.94,12.23,3.22,17.9,7.84,1.57,9.18,375.34,8.35 1991-11-26 00:00:00,4.95,12.29,3.22,18.42,7.82,1.55,9.5,377.96,8.36 1991-11-27 00:00:00,4.86,12.17,3.21,17.74,7.96,1.56,9.46,376.55,8.38 1991-11-29 00:00:00,5.01,12.11,3.17,17.41,8.01,1.59,9.46,375.22,8.42 1991-12-02 00:00:00,4.96,12.35,3.22,17.36,8.21,1.66,9.78,381.4,8.52 1991-12-03 00:00:00,5.09,12.05,3.19,17.17,8.28,1.66,9.7,380.96,8.4 1991-12-04 00:00:00,5.01,12.05,3.14,16.94,8.42,1.67,9.7,380.07,8.31 1991-12-05 00:00:00,4.96,11.93,3.08,16.99,8.32,1.67,9.66,377.39,8.2 1991-12-06 00:00:00,5.04,11.64,3.16,16.75,8.53,1.71,9.66,379.1,8.2 1991-12-09 00:00:00,4.92,11.73,3.2,16.02,8.4,1.67,9.78,378.26,8.06 1991-12-10 00:00:00,4.75,11.73,3.21,16.23,8.68,1.67,9.86,377.9,8.09 1991-12-11 00:00:00,4.86,11.7,3.25,16.52,8.53,1.65,9.86,377.7,8.15 1991-12-12 00:00:00,4.92,11.79,3.29,16.68,8.63,1.67,10.06,381.55,8.27 1991-12-13 00:00:00,4.92,12.03,3.35,16.56,8.69,1.67,9.98,384.47,8.33 1991-12-16 00:00:00,4.95,12.05,3.35,16.35,8.83,1.67,10.06,384.46,8.31 1991-12-17 00:00:00,4.8,12.05,3.38,16.09,8.87,1.67,10.18,382.74,8.33 1991-12-18 00:00:00,4.84,12.35,3.37,16.23,8.83,1.68,10.26,383.48,8.36 1991-12-19 00:00:00,4.97,12.11,3.36,15.97,8.87,1.68,10.5,382.52,8.43 1991-12-20 00:00:00,5.09,11.99,3.45,16.14,9.02,1.69,10.62,387.04,8.49 1991-12-23 00:00:00,5.31,12.29,3.56,16.61,9.21,1.75,10.58,396.82,8.4 1991-12-24 00:00:00,5.5,12.47,3.65,16.61,9.19,1.74,10.54,399.33,8.25 1991-12-26 00:00:00,5.48,13.1,3.71,16.61,9.35,1.77,10.78,404.84,8.24 1991-12-27 00:00:00,5.6,13.13,3.66,16.82,9.46,1.81,10.82,406.46,8.36 1991-12-30 00:00:00,5.5,13.55,3.8,17.01,9.6,1.81,10.95,415.14,8.4 1991-12-31 00:00:00,5.51,13.46,3.78,16.75,9.52,1.82,10.86,417.09,8.74 1992-01-02 00:00:00,5.48,14.2,3.78,16.99,9.33,1.87,10.86,417.26,8.61 1992-01-03 00:00:00,5.54,14.08,3.77,17.01,9.29,1.85,11.03,419.34,8.63 1992-01-06 00:00:00,5.49,13.84,3.75,17.36,9.38,1.91,10.86,417.96,8.56 1992-01-07 00:00:00,5.49,14.11,3.73,17.81,9.5,1.96,10.86,417.4,8.51 1992-01-08 00:00:00,5.5,14.44,3.72,17.39,9.68,2.03,11.31,418.1,8.4 1992-01-09 00:00:00,5.4,14.86,3.67,17.17,9.66,2.08,11.31,417.61,8.35 1992-01-10 00:00:00,5.38,14.86,3.68,17.1,9.56,2.05,10.91,415.1,8.43 1992-01-13 00:00:00,5.29,14.8,3.72,16.99,9.56,2.08,11.07,414.34,8.51 1992-01-14 00:00:00,5.35,15.4,3.77,17.39,9.45,2.1,11.19,420.44,8.65 1992-01-15 00:00:00,5.75,15.16,3.81,17.95,9.01,2.15,11.19,420.77,8.54 1992-01-16 00:00:00,5.82,14.98,3.85,17.97,8.7,2.09,10.82,418.21,8.49 1992-01-17 00:00:00,5.91,15.46,3.93,18.14,8.92,2.07,10.82,418.86,8.6 1992-01-20 00:00:00,5.92,15.28,3.98,17.93,8.73,2.01,10.58,416.36,8.61 1992-01-21 00:00:00,5.67,14.59,3.85,17.48,8.66,1.95,10.54,412.64,8.74 1992-01-22 00:00:00,5.76,15.16,3.93,18.0,8.94,2.05,10.58,418.13,8.54 1992-01-23 00:00:00,5.67,15.4,3.9,17.6,8.87,2.05,10.62,414.96,8.47 1992-01-24 00:00:00,5.69,15.42,3.87,17.53,8.92,2.04,10.58,415.48,8.65 1992-01-27 00:00:00,5.74,15.4,3.87,17.65,8.83,1.97,10.54,414.99,8.69 1992-01-28 00:00:00,5.77,15.57,3.86,17.55,8.77,1.98,10.74,414.96,8.67 1992-01-29 00:00:00,5.72,15.1,3.82,17.29,8.59,2.04,10.5,410.34,8.52 1992-01-30 00:00:00,5.69,15.22,3.78,17.27,8.81,2.02,10.86,411.62,8.47 1992-01-31 00:00:00,5.53,15.46,3.72,16.94,8.94,1.97,10.82,408.78,8.36 1992-02-03 00:00:00,5.56,15.69,3.75,17.2,8.81,2.05,10.74,409.53,8.49 1992-02-04 00:00:00,5.58,15.69,3.8,17.36,8.94,2.04,10.82,413.85,8.54 1992-02-05 00:00:00,5.52,15.78,3.83,17.17,8.98,2.08,10.54,413.84,8.42 1992-02-06 00:00:00,5.48,15.3,3.83,17.14,8.98,2.07,10.54,413.82,8.51 1992-02-07 00:00:00,5.52,15.28,3.82,17.02,8.82,2.06,10.34,411.09,8.49 1992-02-10 00:00:00,5.62,15.07,3.82,17.12,8.86,2.04,10.22,413.77,8.48 1992-02-11 00:00:00,5.68,15.01,3.8,17.21,8.71,2.01,10.34,413.76,8.44 1992-02-12 00:00:00,5.75,15.57,3.85,17.57,8.84,2.06,10.54,417.13,8.53 1992-02-13 00:00:00,5.66,15.34,3.82,17.31,8.59,2.01,10.22,413.69,8.46 1992-02-14 00:00:00,5.84,15.33,3.81,17.12,8.43,1.94,10.18,412.48,8.46 1992-02-18 00:00:00,6.08,15.01,3.81,17.09,8.15,1.94,9.86,407.38,8.3 1992-02-19 00:00:00,6.18,14.83,3.87,17.09,8.23,1.88,10.1,408.26,8.31 1992-02-20 00:00:00,6.12,15.45,3.97,17.12,8.33,1.92,10.5,413.9,8.42 1992-02-21 00:00:00,6.02,15.54,3.97,17.14,8.3,1.87,10.34,411.43,8.4 1992-02-24 00:00:00,6.05,15.81,3.96,17.05,8.41,1.88,10.46,412.27,8.37 1992-02-25 00:00:00,5.89,16.38,3.92,16.83,8.43,1.9,10.26,410.45,8.31 1992-02-26 00:00:00,5.96,16.71,3.92,16.83,8.64,2.0,10.46,415.35,8.37 1992-02-27 00:00:00,5.98,16.38,3.9,16.74,8.59,2.04,10.42,413.86,8.31 1992-02-28 00:00:00,5.98,16.14,3.88,16.57,8.45,2.02,10.34,412.7,8.3 1992-03-02 00:00:00,6.1,16.08,3.93,16.69,8.42,2.01,10.42,412.45,8.13 1992-03-03 00:00:00,6.36,15.87,3.9,16.83,8.33,2.02,10.38,412.85,8.08 1992-03-04 00:00:00,6.24,15.54,3.86,16.67,8.16,2.01,10.38,409.33,7.99 1992-03-05 00:00:00,6.08,15.19,3.87,16.52,8.12,1.99,10.22,406.51,8.08 1992-03-06 00:00:00,5.99,15.3,3.85,16.47,8.02,1.94,10.18,404.44,8.08 1992-03-09 00:00:00,5.85,15.25,3.85,16.67,8.18,1.95,10.18,405.21,8.06 1992-03-10 00:00:00,5.83,15.25,3.87,16.76,8.06,1.99,10.18,406.89,8.04 1992-03-11 00:00:00,5.78,15.13,3.84,16.74,8.03,1.97,10.26,404.03,8.04 1992-03-12 00:00:00,5.75,15.01,3.84,17.0,8.01,1.98,10.18,403.89,8.2 1992-03-13 00:00:00,5.96,15.1,3.88,17.09,8.01,1.98,10.26,405.84,8.3 1992-03-16 00:00:00,6.15,15.16,3.88,16.93,8.12,2.03,10.3,406.39,8.26 1992-03-17 00:00:00,6.17,15.04,3.91,16.71,8.13,2.1,10.46,409.58,8.26 1992-03-18 00:00:00,6.06,15.25,3.9,16.69,8.02,2.07,10.42,409.15,8.09 1992-03-19 00:00:00,6.07,15.07,3.89,16.38,8.03,2.09,10.38,409.8,8.04 1992-03-20 00:00:00,6.07,15.13,3.91,16.43,8.01,2.1,10.58,411.3,7.95 1992-03-23 00:00:00,6.08,15.07,3.89,16.33,7.9,2.1,10.54,409.91,8.02 1992-03-24 00:00:00,6.13,15.54,3.87,16.26,8.09,2.09,10.42,408.88,8.0 1992-03-25 00:00:00,6.25,15.42,3.87,16.24,8.13,2.1,10.62,407.52,7.99 1992-03-26 00:00:00,6.29,15.3,3.82,16.05,8.18,2.05,10.7,407.86,8.09 1992-03-27 00:00:00,6.11,14.59,3.79,15.88,8.03,1.99,11.07,403.5,8.0 1992-03-30 00:00:00,6.09,13.9,3.78,15.9,7.98,1.96,10.99,403.0,7.99 1992-03-31 00:00:00,6.08,13.93,3.77,15.93,8.14,1.94,11.03,403.69,7.95 1992-04-01 00:00:00,6.07,14.11,3.8,15.81,8.19,1.97,11.19,404.23,8.0 1992-04-02 00:00:00,6.08,14.05,3.74,15.69,8.1,1.92,11.15,400.5,7.95 1992-04-03 00:00:00,5.87,14.11,3.72,15.59,8.22,1.92,11.27,401.55,8.11 1992-04-06 00:00:00,5.97,14.53,3.76,15.85,8.15,1.99,11.11,405.59,8.39 1992-04-07 00:00:00,5.9,13.69,3.69,15.71,8.0,1.9,11.03,398.06,8.22 1992-04-08 00:00:00,5.78,13.36,3.62,16.19,8.04,1.92,11.07,394.5,8.31 1992-04-09 00:00:00,5.83,13.69,3.72,16.24,8.15,1.96,11.27,400.64,8.31 1992-04-10 00:00:00,5.87,13.27,3.78,16.4,8.41,1.9,11.39,404.29,8.37 1992-04-13 00:00:00,6.36,13.51,3.74,16.69,8.43,1.92,11.39,406.08,8.22 1992-04-14 00:00:00,6.19,14.05,3.82,16.83,8.53,1.92,11.43,412.39,8.37 1992-04-15 00:00:00,6.44,14.47,3.88,16.88,8.39,2.11,11.39,416.28,8.57 1992-04-16 00:00:00,6.61,14.11,3.93,16.9,8.29,2.09,11.31,416.04,8.53 1992-04-20 00:00:00,6.71,13.57,3.92,17.07,8.08,1.93,11.15,410.18,8.51 1992-04-21 00:00:00,6.57,13.45,3.87,17.17,8.01,1.9,11.15,410.26,8.59 1992-04-22 00:00:00,6.47,13.78,3.84,17.19,7.76,1.93,11.07,409.81,8.42 1992-04-23 00:00:00,6.51,13.63,3.81,17.02,7.58,1.9,11.15,411.6,8.6 1992-04-24 00:00:00,6.61,13.51,3.77,16.81,7.69,1.84,10.95,409.02,8.55 1992-04-27 00:00:00,6.38,13.33,3.77,16.81,7.81,1.85,10.91,408.45,8.53 1992-04-28 00:00:00,6.49,12.97,3.78,16.88,7.87,1.78,11.23,409.11,8.6 1992-04-29 00:00:00,6.47,13.63,3.77,16.81,7.89,1.82,11.43,412.02,8.6 1992-04-30 00:00:00,6.71,14.38,3.81,17.31,7.92,1.81,11.75,414.95,8.71 1992-05-01 00:00:00,6.6,14.17,3.77,17.29,7.99,1.86,11.67,412.53,8.6 1992-05-04 00:00:00,6.57,14.47,3.84,17.64,8.13,1.87,11.75,416.91,8.71 1992-05-05 00:00:00,6.55,14.47,3.83,17.91,8.11,1.91,11.67,416.84,8.69 1992-05-06 00:00:00,6.47,14.77,3.83,17.81,7.93,1.9,11.55,416.79,8.62 1992-05-07 00:00:00,6.56,14.53,3.82,18.12,7.99,1.88,11.59,415.85,8.62 1992-05-08 00:00:00,6.57,14.83,3.85,18.0,7.96,1.87,11.63,416.05,8.65 1992-05-11 00:00:00,6.77,14.89,3.94,18.14,8.06,1.87,11.67,418.49,8.75 1992-05-12 00:00:00,6.71,14.89,3.93,18.07,7.93,1.87,11.55,416.29,8.65 1992-05-13 00:00:00,6.75,15.01,3.9,17.85,7.98,1.85,11.75,416.45,8.75 1992-05-14 00:00:00,6.68,14.68,3.87,17.73,7.86,1.81,11.75,413.14,8.82 1992-05-15 00:00:00,6.56,14.5,3.84,17.71,7.81,1.8,11.71,410.09,8.71 1992-05-18 00:00:00,6.7,14.44,3.82,17.54,7.87,1.85,11.63,412.81,8.78 1992-05-19 00:00:00,6.72,14.2,3.89,17.88,7.99,1.87,11.59,416.37,8.82 1992-05-20 00:00:00,6.67,14.35,3.86,17.71,7.89,1.91,11.67,415.39,8.71 1992-05-21 00:00:00,6.65,14.14,3.82,17.68,7.88,1.91,11.51,412.6,8.76 1992-05-22 00:00:00,6.67,14.23,3.81,17.73,7.96,1.9,11.59,414.02,8.89 1992-05-26 00:00:00,6.7,14.17,3.74,17.49,7.73,1.89,11.23,411.41,9.41 1992-05-27 00:00:00,6.67,14.41,3.77,17.56,7.92,1.88,11.31,412.17,9.08 1992-05-28 00:00:00,6.74,14.23,3.84,17.61,8.16,1.95,11.59,416.74,9.11 1992-05-29 00:00:00,6.73,14.29,3.8,17.54,8.12,1.98,11.75,415.35,8.91 1992-06-01 00:00:00,6.83,13.78,3.8,17.51,8.22,2.03,11.59,417.3,9.02 1992-06-02 00:00:00,6.84,13.54,3.78,17.51,7.75,2.01,11.67,413.5,9.02 1992-06-03 00:00:00,6.93,12.97,3.81,17.34,7.56,2.01,11.59,414.59,9.24 1992-06-04 00:00:00,6.9,13.06,3.82,17.2,7.55,2.01,11.47,413.26,9.26 1992-06-05 00:00:00,6.85,13.15,3.88,17.46,7.56,1.98,11.47,413.48,9.22 1992-06-08 00:00:00,6.85,13.0,3.82,17.59,7.59,1.94,11.39,413.36,9.19 1992-06-09 00:00:00,6.74,12.94,3.81,17.51,7.57,1.88,11.35,410.06,9.33 1992-06-10 00:00:00,6.64,12.88,3.8,17.42,7.38,1.84,11.27,407.25,9.24 1992-06-11 00:00:00,6.57,12.91,3.85,17.78,7.57,1.77,11.51,409.05,9.3 1992-06-12 00:00:00,6.63,13.09,3.82,17.97,7.55,1.84,11.63,409.76,9.1 1992-06-15 00:00:00,6.62,12.61,3.83,18.19,7.42,1.86,11.47,410.29,9.13 1992-06-16 00:00:00,6.62,11.8,3.88,18.0,7.4,1.79,11.43,408.32,9.13 1992-06-17 00:00:00,6.68,11.38,3.81,17.9,7.23,1.78,11.39,402.26,9.13 1992-06-18 00:00:00,6.43,10.84,3.81,18.26,7.34,1.77,11.23,400.96,9.02 1992-06-19 00:00:00,6.37,10.72,3.81,18.36,7.44,1.81,11.35,403.67,9.17 1992-06-22 00:00:00,6.39,10.6,3.82,18.41,7.57,1.82,11.15,403.4,9.11 1992-06-23 00:00:00,6.35,10.84,3.83,18.53,7.53,1.81,11.23,404.04,9.02 1992-06-24 00:00:00,6.38,11.02,3.83,18.87,7.34,1.77,11.11,403.84,9.04 1992-06-25 00:00:00,6.42,10.93,3.87,18.77,7.34,1.72,11.15,403.12,9.02 1992-06-26 00:00:00,6.39,10.84,3.91,18.79,7.51,1.64,11.23,403.45,9.04 1992-06-29 00:00:00,6.49,11.2,3.96,19.06,7.63,1.77,11.47,408.94,9.15 1992-06-30 00:00:00,6.58,11.5,3.9,18.91,7.51,1.72,11.27,408.14,9.1 1992-07-01 00:00:00,6.73,11.74,3.93,18.99,7.65,1.77,11.39,412.88,9.08 1992-07-02 00:00:00,6.51,11.08,3.87,18.72,7.65,1.72,11.63,411.77,9.1 1992-07-06 00:00:00,6.37,11.08,3.88,18.96,7.84,1.71,11.63,413.84,9.13 1992-07-07 00:00:00,6.21,10.6,3.81,18.7,7.76,1.67,11.63,409.16,9.08 1992-07-08 00:00:00,6.29,10.96,3.86,18.91,7.93,1.69,11.71,410.28,9.08 1992-07-09 00:00:00,6.41,10.99,3.9,18.84,7.91,1.69,11.88,414.23,9.06 1992-07-10 00:00:00,6.33,10.96,3.83,18.87,7.86,1.71,11.88,414.62,9.04 1992-07-13 00:00:00,6.37,11.26,3.85,18.91,7.86,1.72,11.83,414.87,8.98 1992-07-14 00:00:00,6.43,11.38,3.9,18.91,7.76,1.75,11.75,417.68,9.11 1992-07-15 00:00:00,6.24,11.5,3.91,19.18,7.8,1.76,11.63,417.1,9.02 1992-07-16 00:00:00,6.26,11.68,3.88,19.37,7.84,1.77,11.63,417.54,9.19 1992-07-17 00:00:00,6.31,10.78,3.88,18.36,7.78,1.73,11.63,415.62,9.13 1992-07-20 00:00:00,6.21,10.72,3.87,17.95,7.7,1.7,11.51,413.75,9.13 1992-07-21 00:00:00,6.18,10.96,3.86,18.12,7.65,1.76,11.88,413.76,9.08 1992-07-22 00:00:00,6.16,10.6,3.83,17.88,7.72,1.72,11.63,410.93,9.11 1992-07-23 00:00:00,6.17,10.72,3.85,17.92,7.67,1.74,11.79,412.08,9.26 1992-07-24 00:00:00,6.26,10.99,3.74,17.92,7.72,1.79,11.88,411.6,9.17 1992-07-27 00:00:00,6.28,10.84,3.76,17.85,7.91,1.79,11.71,411.54,9.11 1992-07-28 00:00:00,6.38,11.14,3.8,18.12,8.18,1.82,12.12,417.52,9.13 1992-07-29 00:00:00,6.54,11.32,3.86,18.24,8.22,1.82,12.12,422.23,9.11 1992-07-30 00:00:00,6.43,11.32,3.82,18.43,8.33,1.8,11.96,423.92,9.32 1992-07-31 00:00:00,6.39,11.2,3.83,18.31,8.26,1.79,12.08,424.21,9.33 1992-08-03 00:00:00,6.35,10.96,3.77,18.33,8.39,1.81,12.08,425.09,9.44 1992-08-04 00:00:00,6.27,10.9,3.78,18.21,8.35,1.81,12.12,424.36,9.55 1992-08-05 00:00:00,6.21,10.72,3.75,17.71,8.35,1.77,12.12,422.19,9.41 1992-08-06 00:00:00,6.13,10.54,3.79,17.28,8.35,1.76,12.08,420.59,9.39 1992-08-07 00:00:00,6.13,10.39,3.78,17.06,8.37,1.74,11.96,418.88,9.44 1992-08-10 00:00:00,6.05,10.57,3.79,17.33,8.37,1.74,12.08,419.42,9.57 1992-08-11 00:00:00,5.97,10.42,3.8,17.23,8.24,1.75,12.16,418.9,9.57 1992-08-12 00:00:00,5.96,10.57,3.76,17.31,8.2,1.74,12.32,417.78,9.42 1992-08-13 00:00:00,5.92,10.72,3.77,17.26,8.17,1.74,12.44,417.73,9.53 1992-08-14 00:00:00,5.96,10.72,3.78,17.31,8.36,1.74,12.44,419.91,9.51 1992-08-17 00:00:00,5.93,10.75,3.81,17.36,8.51,1.71,12.48,420.74,9.46 1992-08-18 00:00:00,5.91,10.75,3.84,17.23,8.58,1.71,12.44,421.34,9.57 1992-08-19 00:00:00,5.91,10.69,3.81,16.96,8.53,1.7,12.2,418.19,9.64 1992-08-20 00:00:00,5.92,10.75,3.81,16.82,8.47,1.73,12.4,418.26,9.72 1992-08-21 00:00:00,5.64,10.72,3.76,16.84,8.15,1.71,12.16,414.85,9.4 1992-08-24 00:00:00,5.55,10.39,3.71,16.67,8.28,1.69,12.04,410.72,9.55 1992-08-25 00:00:00,5.58,10.66,3.71,17.06,8.28,1.73,12.16,411.61,9.48 1992-08-26 00:00:00,5.62,10.63,3.69,16.91,8.51,1.76,12.24,413.51,9.51 1992-08-27 00:00:00,5.62,10.69,3.72,17.11,8.49,1.81,12.24,413.53,9.46 1992-08-28 00:00:00,5.78,10.81,3.68,17.09,8.43,1.83,12.24,414.84,9.53 1992-08-31 00:00:00,5.63,11.05,3.71,16.96,8.32,1.83,12.12,414.03,9.55 1992-09-01 00:00:00,5.68,11.17,3.72,17.16,8.49,1.83,12.04,416.07,9.57 1992-09-02 00:00:00,5.92,11.65,3.73,17.14,8.51,1.85,11.96,417.98,9.55 1992-09-03 00:00:00,5.88,11.47,3.74,16.96,8.87,1.88,12.28,417.98,9.25 1992-09-04 00:00:00,5.8,11.35,3.74,16.84,8.83,1.87,12.2,417.08,9.29 1992-09-08 00:00:00,5.71,11.47,3.71,16.87,8.85,1.88,12.24,414.44,9.29 1992-09-09 00:00:00,5.82,11.77,3.73,17.01,8.76,1.92,12.24,416.36,9.33 1992-09-10 00:00:00,6.04,11.83,3.77,17.14,8.83,1.94,12.32,419.95,9.35 1992-09-11 00:00:00,5.95,11.44,3.76,17.23,8.72,1.93,12.32,419.58,9.35 1992-09-14 00:00:00,6.12,11.89,3.88,17.31,8.72,2.01,12.44,425.27,9.33 1992-09-15 00:00:00,5.95,11.59,3.87,16.74,8.51,2.0,12.4,419.77,9.27 1992-09-16 00:00:00,6.0,11.29,3.91,16.28,8.58,1.97,12.44,419.92,9.38 1992-09-17 00:00:00,5.95,11.05,3.96,16.4,8.51,1.99,12.6,419.93,9.38 1992-09-18 00:00:00,5.97,11.17,3.99,16.35,8.66,1.96,12.52,422.93,9.51 1992-09-21 00:00:00,5.97,11.17,3.96,16.52,8.66,1.94,12.48,422.14,9.53 1992-09-22 00:00:00,5.9,10.99,3.9,16.3,8.53,1.91,12.0,417.14,9.46 1992-09-23 00:00:00,5.85,11.41,3.92,16.38,8.6,1.94,12.04,417.44,9.53 1992-09-24 00:00:00,5.91,11.11,3.93,16.16,8.51,1.97,12.24,418.47,9.48 1992-09-25 00:00:00,5.79,10.93,3.93,16.11,8.03,1.93,12.12,414.35,9.44 1992-09-28 00:00:00,5.82,10.75,4.0,16.21,8.01,1.89,12.28,416.62,9.61 1992-09-29 00:00:00,5.72,10.78,3.94,15.86,8.03,1.93,12.28,416.8,9.5 1992-09-30 00:00:00,5.78,10.84,3.95,15.81,7.94,1.98,12.28,417.8,9.5 1992-10-01 00:00:00,5.71,10.63,3.93,15.69,7.88,1.96,12.69,416.29,9.48 1992-10-02 00:00:00,5.62,10.51,3.82,15.37,7.73,1.93,12.48,410.47,9.4 1992-10-05 00:00:00,5.59,10.45,3.8,15.45,7.75,2.01,12.36,407.57,9.29 1992-10-06 00:00:00,5.63,10.75,3.76,15.62,7.58,2.03,12.24,407.18,9.24 1992-10-07 00:00:00,5.6,10.51,3.72,15.35,7.67,1.99,12.12,404.25,9.2 1992-10-08 00:00:00,5.6,10.45,3.81,15.54,7.92,2.05,12.28,407.75,9.35 1992-10-09 00:00:00,5.59,10.42,3.79,15.37,7.88,2.02,12.08,402.66,9.16 1992-10-12 00:00:00,5.66,10.57,3.8,15.37,8.11,2.06,12.28,407.44,9.14 1992-10-13 00:00:00,5.75,10.9,3.78,15.42,8.11,2.07,12.52,409.3,9.18 1992-10-14 00:00:00,5.69,11.05,3.79,15.28,8.09,2.05,12.65,409.37,9.24 1992-10-15 00:00:00,5.6,10.93,3.79,14.27,8.26,2.08,12.77,409.6,9.33 1992-10-16 00:00:00,5.75,11.77,3.85,13.86,8.22,2.1,12.89,411.73,9.38 1992-10-19 00:00:00,5.84,11.77,3.85,13.41,8.22,2.16,12.97,414.98,9.4 1992-10-20 00:00:00,5.85,11.8,3.86,13.39,8.3,2.16,13.01,415.48,9.31 1992-10-21 00:00:00,5.92,11.65,3.84,13.41,8.49,2.21,13.01,415.67,9.31 1992-10-22 00:00:00,5.98,11.71,3.85,13.41,8.47,2.2,12.97,414.9,9.22 1992-10-23 00:00:00,5.97,11.71,3.83,13.54,8.3,2.18,12.77,414.1,9.22 1992-10-26 00:00:00,6.03,12.37,3.88,13.22,8.36,2.21,12.77,418.16,9.2 1992-10-27 00:00:00,5.93,12.37,3.87,12.88,8.28,2.16,12.93,418.49,9.33 1992-10-28 00:00:00,6.09,12.55,3.92,13.14,8.34,2.17,13.01,420.13,9.29 1992-10-29 00:00:00,6.1,12.79,3.91,12.93,8.36,2.21,12.93,420.86,9.24 1992-10-30 00:00:00,6.08,12.61,3.87,13.1,8.43,2.18,12.93,418.68,9.11 1992-11-02 00:00:00,6.09,12.55,3.96,13.49,8.55,2.2,13.05,422.75,8.96 1992-11-03 00:00:00,6.1,12.49,3.94,13.54,8.38,2.17,12.93,419.92,8.84 1992-11-04 00:00:00,6.08,12.61,3.96,13.37,8.28,2.17,12.77,417.11,8.9 1992-11-05 00:00:00,6.04,13.21,3.95,13.13,8.13,2.26,12.6,418.34,8.92 1992-11-06 00:00:00,6.04,13.39,3.91,13.21,8.28,2.28,12.77,417.58,8.76 1992-11-09 00:00:00,5.99,13.27,3.94,13.46,8.3,2.26,12.85,418.59,8.8 1992-11-10 00:00:00,5.93,13.51,3.9,13.13,8.36,2.28,12.93,418.62,8.86 1992-11-11 00:00:00,5.92,13.63,3.96,12.96,8.53,2.3,13.25,422.2,8.8 1992-11-12 00:00:00,5.95,13.67,3.97,12.78,8.55,2.3,13.09,422.87,8.84 1992-11-13 00:00:00,5.83,13.51,3.98,12.93,8.45,2.29,13.13,422.43,8.92 1992-11-16 00:00:00,5.67,13.79,3.94,12.93,8.42,2.28,13.13,420.68,8.86 1992-11-17 00:00:00,5.62,13.27,3.94,12.81,8.45,2.21,13.29,419.27,8.84 1992-11-18 00:00:00,5.72,13.88,3.97,12.59,8.53,2.26,13.58,422.85,9.03 1992-11-19 00:00:00,5.74,14.0,3.94,12.21,8.51,2.31,13.5,423.61,9.03 1992-11-20 00:00:00,5.83,13.82,4.04,12.41,8.55,2.33,13.78,426.65,9.14 1992-11-23 00:00:00,5.83,13.63,4.14,12.61,8.51,2.17,13.54,425.12,8.99 1992-11-24 00:00:00,5.92,13.82,4.17,12.93,8.7,2.25,13.42,427.59,8.97 1992-11-25 00:00:00,5.97,13.57,4.18,13.03,8.7,2.24,13.29,429.19,9.01 1992-11-27 00:00:00,6.02,13.57,4.18,13.16,8.64,2.25,13.29,430.16,8.95 1992-11-30 00:00:00,6.15,13.84,4.2,13.61,8.53,2.29,13.21,431.35,8.95 1992-12-01 00:00:00,6.23,14.03,4.18,13.51,8.53,2.29,13.21,430.78,8.88 1992-12-02 00:00:00,6.18,13.78,4.21,13.53,8.47,2.23,13.5,429.89,8.8 1992-12-03 00:00:00,6.14,13.84,4.15,13.41,8.51,2.25,13.37,429.91,8.84 1992-12-04 00:00:00,6.15,13.7,4.2,13.36,8.66,2.25,13.58,432.06,9.01 1992-12-07 00:00:00,6.15,13.9,4.21,13.13,8.8,2.29,13.62,435.31,9.03 1992-12-08 00:00:00,6.2,14.0,4.25,13.03,8.8,2.27,13.82,436.99,9.09 1992-12-09 00:00:00,6.39,13.88,4.27,12.49,8.68,2.26,13.78,435.65,9.12 1992-12-10 00:00:00,6.32,13.78,4.24,12.31,8.72,2.19,13.62,434.64,9.22 1992-12-11 00:00:00,6.3,13.84,4.26,12.44,8.64,2.12,13.78,433.73,9.16 1992-12-14 00:00:00,6.23,13.78,4.23,12.54,8.68,2.14,13.82,432.84,9.1 1992-12-15 00:00:00,6.24,13.57,4.28,11.19,8.66,2.12,13.9,432.57,9.2 1992-12-16 00:00:00,6.23,13.24,4.25,10.34,8.74,2.14,13.7,431.52,9.2 1992-12-17 00:00:00,6.25,13.7,4.34,10.57,8.93,2.21,13.66,435.43,9.33 1992-12-18 00:00:00,6.32,14.03,4.41,10.24,9.12,2.21,13.78,441.28,9.46 1992-12-21 00:00:00,6.3,14.36,4.45,9.75,9.04,2.22,13.86,440.7,9.46 1992-12-22 00:00:00,6.27,14.6,4.42,10.32,9.0,2.15,13.82,440.31,9.39 1992-12-23 00:00:00,6.25,14.39,4.39,10.22,8.74,2.14,13.78,439.03,9.31 1992-12-24 00:00:00,6.23,14.21,4.4,10.52,8.72,2.14,13.74,439.77,9.35 1992-12-28 00:00:00,6.18,14.33,4.42,10.32,8.57,2.15,13.9,439.15,9.4 1992-12-29 00:00:00,6.19,14.36,4.39,9.92,8.53,2.12,13.7,437.98,9.27 1992-12-30 00:00:00,6.29,14.15,4.41,9.99,8.59,2.11,13.7,438.82,9.24 1992-12-31 00:00:00,6.28,14.39,4.35,10.04,8.55,2.1,13.5,435.71,9.2 1993-01-04 00:00:00,6.4,14.03,4.35,9.99,8.38,2.09,13.38,435.38,9.24 1993-01-05 00:00:00,6.41,14.27,4.4,9.75,8.19,2.12,13.25,434.34,9.33 1993-01-06 00:00:00,6.37,14.87,4.38,9.57,7.94,2.19,13.05,434.52,9.29 1993-01-07 00:00:00,6.36,14.69,4.37,9.37,7.73,2.14,12.68,430.73,9.27 1993-01-08 00:00:00,6.18,14.99,4.36,9.27,7.92,2.14,12.89,429.05,9.12 1993-01-11 00:00:00,6.21,15.44,4.32,9.52,7.92,2.19,12.89,430.95,9.1 1993-01-12 00:00:00,6.12,14.81,4.33,9.72,7.94,2.2,13.05,431.04,9.03 1993-01-13 00:00:00,6.02,15.29,4.31,9.52,7.92,2.24,13.05,433.03,9.07 1993-01-14 00:00:00,6.02,15.65,4.32,9.72,7.83,2.24,13.25,435.94,9.09 1993-01-15 00:00:00,6.1,14.51,4.3,9.62,7.94,2.2,13.5,437.15,9.05 1993-01-18 00:00:00,6.1,14.33,4.3,9.87,7.92,2.19,13.5,436.84,8.93 1993-01-19 00:00:00,6.04,14.39,4.28,9.65,7.68,2.17,13.38,435.13,8.86 1993-01-20 00:00:00,6.03,14.45,4.2,9.35,7.75,2.17,13.29,433.37,8.8 1993-01-21 00:00:00,6.06,14.45,4.25,9.25,7.79,2.2,13.38,435.49,8.75 1993-01-22 00:00:00,6.16,14.33,4.29,9.7,7.77,2.19,13.34,436.11,8.75 1993-01-25 00:00:00,6.24,14.45,4.32,9.75,7.62,2.17,13.34,440.01,9.12 1993-01-26 00:00:00,6.24,14.63,4.33,9.77,7.39,2.16,13.58,439.95,9.22 1993-01-27 00:00:00,6.35,14.51,4.3,9.89,7.49,2.12,13.78,438.11,9.1 1993-01-28 00:00:00,6.51,14.42,4.35,10.02,7.43,2.14,13.62,438.66,9.27 1993-01-29 00:00:00,6.52,14.33,4.38,10.27,7.45,2.12,13.62,438.78,9.2 1993-02-01 00:00:00,6.45,14.75,4.39,10.49,7.45,2.15,13.74,442.52,9.25 1993-02-02 00:00:00,6.5,14.51,4.32,10.39,7.37,2.19,13.58,442.55,9.37 1993-02-03 00:00:00,6.52,14.45,4.38,10.19,7.66,2.17,13.5,447.2,9.4 1993-02-04 00:00:00,6.7,14.33,4.41,10.35,7.73,2.09,13.5,449.56,9.44 1993-02-05 00:00:00,6.84,13.78,4.42,10.48,7.62,2.19,13.17,448.93,9.42 1993-02-08 00:00:00,6.74,13.6,4.41,10.66,7.6,2.11,13.13,447.85,9.57 1993-02-09 00:00:00,6.63,13.7,4.41,10.76,7.6,2.06,12.81,445.33,9.51 1993-02-10 00:00:00,6.61,13.42,4.41,10.53,7.74,2.1,12.93,446.23,9.5 1993-02-11 00:00:00,6.62,13.27,4.39,10.3,7.66,2.09,13.21,447.66,9.5 1993-02-12 00:00:00,6.52,13.0,4.32,10.23,7.66,2.05,12.85,444.58,9.4 1993-02-16 00:00:00,6.33,12.79,4.22,10.08,7.26,1.97,12.85,433.91,9.46 1993-02-17 00:00:00,6.41,13.0,4.2,10.18,7.15,1.97,13.13,433.3,9.4 1993-02-18 00:00:00,6.38,13.27,4.16,10.18,7.06,2.0,13.01,431.9,9.42 1993-02-19 00:00:00,6.27,13.27,4.18,10.18,6.92,1.96,13.01,434.22,9.78 1993-02-22 00:00:00,6.26,13.3,4.23,10.33,6.66,1.88,12.93,435.24,9.82 1993-02-23 00:00:00,6.28,13.09,4.25,10.3,6.83,1.95,13.09,434.8,9.67 1993-02-24 00:00:00,6.33,12.94,4.28,10.45,7.19,2.06,13.13,440.87,9.67 1993-02-25 00:00:00,6.23,13.21,4.3,10.83,7.09,2.07,12.89,442.34,9.69 1993-02-26 00:00:00,6.18,12.79,4.28,10.96,7.23,2.05,12.97,443.38,9.69 1993-03-01 00:00:00,6.1,12.85,4.24,11.03,7.3,2.0,12.77,442.01,9.72 1993-03-02 00:00:00,6.18,13.09,4.35,10.93,7.4,2.08,13.17,447.9,9.82 1993-03-03 00:00:00,6.16,13.18,4.39,11.13,7.23,2.08,13.34,449.26,9.74 1993-03-04 00:00:00,6.04,13.27,4.36,11.06,7.04,2.06,13.29,447.34,9.8 1993-03-05 00:00:00,6.16,13.27,4.39,11.13,6.87,2.03,13.46,446.11,9.63 1993-03-08 00:00:00,6.35,13.63,4.48,11.31,7.21,2.05,13.87,454.71,9.82 1993-03-09 00:00:00,6.47,13.69,4.47,11.41,7.34,2.07,13.74,454.4,9.76 1993-03-10 00:00:00,6.34,13.69,4.5,11.26,7.62,2.09,13.74,456.33,9.72 1993-03-11 00:00:00,6.25,13.73,4.48,11.06,7.51,2.12,13.7,453.72,9.65 1993-03-12 00:00:00,6.13,13.57,4.43,11.21,7.43,2.19,13.25,449.83,9.53 1993-03-15 00:00:00,6.24,13.75,4.43,11.08,7.4,2.15,13.25,451.43,9.63 1993-03-16 00:00:00,6.23,13.63,4.45,11.11,7.15,2.15,13.34,451.37,9.74 1993-03-17 00:00:00,6.23,13.3,4.46,10.98,6.87,2.1,13.38,448.31,9.76 1993-03-18 00:00:00,6.25,13.15,4.53,11.01,6.85,2.09,13.54,451.89,9.87 1993-03-19 00:00:00,6.18,12.97,4.54,10.83,6.68,2.07,13.7,450.18,9.84 1993-03-22 00:00:00,6.18,12.85,4.55,10.81,6.72,2.05,13.62,448.88,9.87 1993-03-23 00:00:00,6.08,12.73,4.51,10.93,6.92,2.04,13.46,448.76,9.84 1993-03-24 00:00:00,6.07,12.97,4.6,10.3,6.72,2.12,13.62,448.07,9.89 1993-03-25 00:00:00,6.05,13.21,4.62,10.18,6.98,2.15,13.79,450.88,9.99 1993-03-26 00:00:00,5.99,12.85,4.6,10.35,6.72,2.13,13.7,447.78,9.93 1993-03-29 00:00:00,5.98,12.31,4.62,10.43,6.81,2.14,13.91,450.77,10.08 1993-03-30 00:00:00,5.8,12.61,4.66,10.08,7.15,2.23,13.95,451.97,10.12 1993-03-31 00:00:00,5.69,12.43,4.57,10.25,7.26,2.27,13.99,451.67,10.06 1993-04-01 00:00:00,5.72,12.49,4.59,10.45,6.94,2.28,13.95,450.3,9.97 1993-04-02 00:00:00,5.69,12.1,4.56,10.6,6.83,2.2,13.58,441.39,10.06 1993-04-05 00:00:00,5.63,12.06,4.59,10.6,7.04,2.25,13.21,442.29,10.2 1993-04-06 00:00:00,5.54,11.76,4.68,10.48,6.81,2.2,13.05,441.16,10.29 1993-04-07 00:00:00,5.5,12.19,4.7,10.53,6.77,2.22,12.93,442.73,10.39 1993-04-08 00:00:00,5.32,12.0,4.71,10.13,6.55,2.19,12.72,441.84,10.35 1993-04-12 00:00:00,5.46,12.06,4.78,10.28,6.81,2.21,12.81,448.37,10.46 1993-04-13 00:00:00,5.5,11.7,4.77,9.95,6.7,2.18,12.85,449.22,10.43 1993-04-14 00:00:00,5.52,11.76,4.84,9.87,6.68,2.19,12.81,448.66,10.45 1993-04-15 00:00:00,5.57,11.4,4.9,9.82,6.6,2.14,12.64,448.4,10.35 1993-04-16 00:00:00,5.62,11.61,4.88,9.87,6.7,2.14,12.03,448.94,10.5 1993-04-19 00:00:00,5.61,11.7,4.87,9.92,7.06,2.14,11.91,447.46,10.33 1993-04-20 00:00:00,5.69,12.06,4.84,10.2,7.23,2.13,11.87,445.1,10.14 1993-04-21 00:00:00,5.81,11.98,4.76,9.9,7.19,2.08,12.24,443.63,10.08 1993-04-22 00:00:00,5.73,12.06,4.73,9.77,6.92,2.04,11.95,439.46,10.03 1993-04-23 00:00:00,5.63,11.88,4.77,9.62,6.79,2.0,11.95,437.03,9.78 1993-04-26 00:00:00,5.76,11.82,4.71,9.75,6.74,1.97,12.15,433.54,9.8 1993-04-27 00:00:00,5.8,12.13,4.74,9.75,7.28,2.03,11.95,438.01,9.95 1993-04-28 00:00:00,5.75,12.4,4.63,10.05,7.26,2.11,12.19,438.02,10.01 1993-04-29 00:00:00,5.82,12.25,4.69,9.85,7.21,2.1,12.32,438.89,10.05 1993-04-30 00:00:00,5.83,12.37,4.64,9.8,7.43,2.1,12.28,440.19,10.05 1993-05-03 00:00:00,5.79,12.52,4.66,9.92,7.64,2.11,12.07,442.46,10.08 1993-05-04 00:00:00,5.73,12.88,4.6,9.92,7.49,2.16,12.07,444.05,9.97 1993-05-05 00:00:00,5.7,13.15,4.73,9.95,7.6,2.19,12.32,444.52,9.87 1993-05-06 00:00:00,5.7,12.97,4.79,9.83,7.43,2.14,12.11,443.26,9.95 1993-05-07 00:00:00,5.64,13.21,4.83,9.91,7.36,2.14,12.07,442.31,9.87 1993-05-10 00:00:00,5.61,13.27,4.82,9.96,7.47,2.19,11.95,442.8,9.79 1993-05-11 00:00:00,5.71,13.15,4.76,9.96,7.64,2.15,12.15,444.36,9.81 1993-05-12 00:00:00,5.85,12.85,4.78,9.78,7.45,2.12,12.15,444.8,9.87 1993-05-13 00:00:00,5.85,13.39,4.73,9.68,7.25,2.11,11.83,439.23,9.77 1993-05-14 00:00:00,5.83,13.39,4.78,9.75,7.4,2.1,11.66,439.56,9.81 1993-05-17 00:00:00,5.91,13.45,4.8,9.7,7.49,2.12,12.07,440.37,9.91 1993-05-18 00:00:00,5.99,13.39,4.73,9.98,7.49,2.17,11.91,440.32,9.89 1993-05-19 00:00:00,6.1,13.81,4.78,10.11,7.68,2.27,12.07,447.57,9.95 1993-05-20 00:00:00,6.03,14.18,4.76,10.03,7.79,2.31,12.32,450.59,10.04 1993-05-21 00:00:00,6.0,13.87,4.72,9.86,7.73,2.27,12.03,445.84,9.97 1993-05-24 00:00:00,6.02,13.91,4.75,10.14,7.73,2.26,11.91,448.0,10.0 1993-05-25 00:00:00,6.14,13.6,4.73,10.26,7.64,2.24,11.95,448.85,10.0 1993-05-26 00:00:00,6.1,13.94,4.76,10.75,7.77,2.34,11.95,453.44,9.95 1993-05-27 00:00:00,6.12,13.87,4.81,10.85,7.58,2.31,11.83,452.41,9.98 1993-05-28 00:00:00,5.99,13.69,4.75,10.75,7.64,2.27,11.83,450.19,10.08 1993-06-01 00:00:00,6.08,13.78,4.82,10.59,7.66,2.36,11.83,453.83,10.02 1993-06-02 00:00:00,6.15,13.78,4.85,10.98,7.58,2.35,11.79,453.85,9.98 1993-06-03 00:00:00,6.15,13.63,4.85,10.98,7.47,2.32,11.75,452.49,10.0 1993-06-04 00:00:00,6.19,13.27,4.84,11.0,7.34,2.31,11.75,450.06,10.04 1993-06-07 00:00:00,6.15,12.27,4.83,10.64,7.34,2.29,11.59,447.69,10.06 1993-06-08 00:00:00,6.09,11.97,4.82,10.64,7.36,2.27,11.55,444.71,10.2 1993-06-09 00:00:00,6.01,10.7,4.82,10.77,7.43,2.23,11.43,445.78,10.37 1993-06-10 00:00:00,5.98,10.76,4.82,10.7,7.62,2.24,11.68,445.38,10.31 1993-06-11 00:00:00,5.89,10.58,4.86,10.7,7.66,2.19,11.96,447.26,10.04 1993-06-14 00:00:00,5.91,10.79,4.79,10.59,7.68,2.27,11.88,447.71,10.08 1993-06-15 00:00:00,5.81,10.16,4.85,10.16,7.7,2.27,11.68,446.27,9.97 1993-06-16 00:00:00,5.83,10.22,4.92,10.26,7.75,2.24,11.68,447.43,10.2 1993-06-17 00:00:00,5.92,9.97,4.91,10.11,7.83,2.23,12.09,448.54,10.33 1993-06-18 00:00:00,5.99,9.91,4.89,10.06,7.34,2.15,11.92,443.68,10.12 1993-06-21 00:00:00,6.0,9.58,4.91,10.03,7.28,2.18,11.92,446.22,10.08 1993-06-22 00:00:00,6.02,10.01,4.9,10.03,7.1,2.16,11.96,445.93,10.18 1993-06-23 00:00:00,6.0,9.79,4.95,9.91,7.02,2.18,11.84,443.19,10.04 1993-06-24 00:00:00,6.08,10.1,4.93,9.93,7.17,2.17,11.96,446.62,10.08 1993-06-25 00:00:00,6.06,9.67,4.89,10.14,7.19,2.17,11.88,447.6,10.06 1993-06-28 00:00:00,6.05,9.7,4.92,10.26,7.06,2.22,12.04,451.85,10.18 1993-06-29 00:00:00,6.12,9.43,4.93,10.06,7.19,2.19,12.13,450.69,10.04 1993-06-30 00:00:00,6.21,9.55,4.94,10.06,7.1,2.16,12.13,450.53,10.18 1993-07-01 00:00:00,6.4,9.19,4.91,10.03,6.91,2.14,12.0,449.02,10.02 1993-07-02 00:00:00,6.34,9.31,4.93,9.83,6.83,2.14,11.88,445.84,9.95 1993-07-06 00:00:00,6.23,9.13,4.88,9.55,6.78,2.11,11.76,441.43,9.85 1993-07-07 00:00:00,6.24,8.83,4.88,9.5,6.78,2.05,11.84,442.83,9.89 1993-07-08 00:00:00,6.23,8.83,5.0,9.5,6.87,2.08,11.72,448.64,9.91 1993-07-09 00:00:00,6.34,8.89,5.0,9.5,6.8,2.08,11.63,448.11,9.83 1993-07-12 00:00:00,6.25,9.19,5.02,9.81,6.83,2.06,11.63,448.98,9.93 1993-07-13 00:00:00,6.26,9.01,5.06,9.7,6.96,2.03,11.43,448.09,9.97 1993-07-14 00:00:00,6.33,9.01,5.09,9.65,6.93,2.07,11.51,450.08,9.95 1993-07-15 00:00:00,6.35,8.64,5.1,9.68,6.78,2.05,11.76,449.22,9.89 1993-07-16 00:00:00,6.22,6.65,5.15,9.3,6.72,1.99,11.68,445.75,9.77 1993-07-19 00:00:00,6.24,6.2,5.13,8.89,6.76,1.93,11.63,446.03,9.97 1993-07-20 00:00:00,6.25,6.5,5.11,8.74,6.8,1.98,11.92,447.31,9.87 1993-07-21 00:00:00,6.21,6.35,5.11,8.89,6.55,1.94,12.21,447.18,9.87 1993-07-22 00:00:00,6.16,6.41,5.06,8.84,6.51,1.91,12.41,444.51,9.87 1993-07-23 00:00:00,6.25,6.35,5.04,8.61,6.57,1.91,12.37,447.1,10.02 1993-07-26 00:00:00,6.3,6.5,5.09,8.63,6.55,1.92,12.29,449.09,10.1 1993-07-27 00:00:00,6.43,6.41,5.07,9.3,6.51,1.85,12.13,448.24,10.25 1993-07-28 00:00:00,6.53,6.5,5.04,8.96,6.44,1.92,12.17,447.19,10.24 1993-07-29 00:00:00,6.36,6.59,5.09,8.94,6.29,1.94,12.25,450.24,10.18 1993-07-30 00:00:00,6.32,6.71,5.08,9.07,6.25,1.82,12.25,448.13,10.1 1993-08-02 00:00:00,6.4,6.89,5.11,8.94,6.4,1.79,12.29,450.15,10.16 1993-08-03 00:00:00,6.56,7.01,5.09,8.84,6.46,1.79,12.21,449.27,10.02 1993-08-04 00:00:00,6.53,7.31,5.07,9.04,6.44,1.79,12.04,448.54,9.93 1993-08-05 00:00:00,6.47,7.13,5.13,8.96,6.33,1.84,12.25,448.13,9.85 1993-08-06 00:00:00,6.39,7.07,5.13,8.89,6.42,1.8,12.04,448.68,9.97 1993-08-09 00:00:00,6.34,7.19,5.13,8.84,6.29,1.79,12.17,450.72,10.06 1993-08-10 00:00:00,6.48,6.89,5.11,8.86,6.25,1.74,12.17,449.45,10.1 1993-08-11 00:00:00,6.47,6.65,5.09,8.66,6.14,1.78,12.45,450.46,10.02 1993-08-12 00:00:00,6.43,6.41,5.06,8.55,6.27,1.82,12.17,448.96,10.06 1993-08-13 00:00:00,6.39,6.62,5.02,8.53,6.36,1.85,12.25,450.14,10.1 1993-08-16 00:00:00,6.59,6.68,5.04,8.4,6.42,1.91,12.25,452.38,10.08 1993-08-17 00:00:00,6.62,6.89,5.0,8.81,6.64,1.9,12.33,453.13,9.92 1993-08-18 00:00:00,6.64,6.92,5.01,8.76,6.9,1.9,12.74,456.04,9.98 1993-08-19 00:00:00,6.63,6.68,4.98,8.81,6.96,1.82,13.15,456.43,10.04 1993-08-20 00:00:00,6.63,6.8,5.09,8.84,7.07,1.87,12.82,456.16,10.08 1993-08-23 00:00:00,6.66,6.89,5.04,9.09,6.96,1.89,12.86,455.23,10.06 1993-08-24 00:00:00,6.76,6.8,5.09,8.99,6.9,1.86,12.9,459.77,10.14 1993-08-25 00:00:00,6.82,6.62,5.09,9.01,6.85,1.82,12.7,460.13,10.25 1993-08-26 00:00:00,6.86,6.53,5.09,9.01,6.96,1.77,12.62,461.04,10.31 1993-08-27 00:00:00,6.76,6.44,5.06,9.04,6.96,1.76,12.86,460.54,10.17 1993-08-30 00:00:00,6.77,6.31,5.08,9.14,6.98,1.78,12.78,461.9,10.14 1993-08-31 00:00:00,6.7,6.44,5.07,9.37,7.03,1.84,12.9,463.56,10.17 1993-09-01 00:00:00,6.7,6.34,5.06,9.4,6.96,1.88,12.95,463.15,10.14 1993-09-02 00:00:00,6.51,6.25,5.03,9.42,7.05,1.88,12.78,461.3,10.02 1993-09-03 00:00:00,6.63,6.25,5.02,9.37,6.88,1.86,12.83,461.34,10.19 1993-09-07 00:00:00,6.51,6.38,5.0,9.32,6.79,1.84,12.96,458.52,10.12 1993-09-08 00:00:00,6.39,6.5,4.96,9.09,6.62,1.83,13.08,456.65,10.19 1993-09-09 00:00:00,6.43,6.31,4.95,9.09,6.68,1.87,13.12,457.5,10.1 1993-09-10 00:00:00,6.39,6.38,4.98,8.96,6.68,1.92,13.25,461.72,10.21 1993-09-13 00:00:00,6.37,6.13,4.99,8.99,6.66,1.88,13.41,462.06,10.17 1993-09-14 00:00:00,6.36,5.89,5.06,8.91,6.79,1.85,13.45,459.9,10.19 1993-09-15 00:00:00,6.38,5.95,5.06,8.94,6.72,1.88,13.7,461.6,10.29 1993-09-16 00:00:00,6.48,6.01,5.07,8.91,6.68,1.87,13.66,459.43,10.19 1993-09-17 00:00:00,6.38,6.13,5.09,8.89,6.75,1.87,13.53,458.83,10.12 1993-09-20 00:00:00,6.13,6.04,5.05,8.66,6.53,1.86,13.16,455.05,10.08 1993-09-21 00:00:00,5.96,5.95,5.0,8.63,6.7,1.87,13.08,452.95,10.14 1993-09-22 00:00:00,6.08,6.19,5.01,8.58,6.77,1.9,13.41,456.2,10.1 1993-09-23 00:00:00,6.01,6.01,5.0,8.58,6.83,1.93,13.41,457.74,10.04 1993-09-24 00:00:00,6.07,6.07,4.93,8.55,6.75,1.96,13.29,457.63,10.19 1993-09-27 00:00:00,6.14,6.01,5.01,8.55,6.83,2.02,13.49,461.8,10.19 1993-09-28 00:00:00,6.05,6.01,4.98,8.55,6.77,2.06,13.33,461.53,10.21 1993-09-29 00:00:00,5.96,5.8,4.95,8.53,6.81,2.04,13.08,460.11,10.37 1993-09-30 00:00:00,5.99,5.68,4.98,8.61,6.79,2.03,12.92,458.93,10.19 1993-10-01 00:00:00,6.13,5.53,4.98,8.99,6.75,2.01,12.75,461.28,10.31 1993-10-04 00:00:00,6.14,5.53,5.0,9.07,6.66,2.03,13.0,461.34,10.21 1993-10-05 00:00:00,6.03,5.71,4.96,8.96,6.81,2.04,13.0,461.2,10.23 1993-10-06 00:00:00,6.07,5.74,4.96,9.01,6.79,2.08,12.79,460.74,10.19 1993-10-07 00:00:00,6.11,5.59,4.96,9.01,6.83,2.07,12.83,459.18,10.19 1993-10-08 00:00:00,6.04,5.49,4.98,9.07,6.79,2.08,12.83,460.31,10.17 1993-10-11 00:00:00,5.96,5.77,5.01,9.04,6.88,2.06,13.04,460.88,10.12 1993-10-12 00:00:00,6.02,5.83,4.96,8.96,6.9,2.07,13.08,461.12,10.14 1993-10-13 00:00:00,6.01,5.83,4.99,8.84,6.94,2.04,13.0,461.49,10.04 1993-10-14 00:00:00,5.94,5.77,5.01,8.73,7.03,2.02,13.33,466.83,10.08 1993-10-15 00:00:00,5.95,6.86,5.11,9.12,7.11,1.98,13.57,469.5,10.16 1993-10-18 00:00:00,6.07,6.89,5.09,9.01,7.18,2.04,13.41,468.45,10.08 1993-10-19 00:00:00,6.13,6.74,5.09,8.89,7.13,1.97,13.2,466.21,10.1 1993-10-20 00:00:00,6.07,6.74,5.1,8.94,7.26,1.99,13.2,466.07,10.12 1993-10-21 00:00:00,6.04,7.35,5.05,9.22,7.35,1.95,13.0,465.36,10.06 1993-10-22 00:00:00,6.15,7.35,4.98,9.12,7.2,1.97,13.04,463.27,10.06 1993-10-25 00:00:00,6.31,7.29,4.97,9.2,7.24,1.98,12.88,464.2,10.21 1993-10-26 00:00:00,6.21,7.23,5.0,9.48,7.16,1.95,13.04,464.3,10.23 1993-10-27 00:00:00,6.11,7.71,5.05,9.42,7.18,1.96,12.92,464.61,10.21 1993-10-28 00:00:00,6.03,7.53,5.03,9.37,7.2,1.94,13.33,467.73,10.25 1993-10-29 00:00:00,6.07,7.47,5.04,9.42,7.26,1.97,13.0,467.83,10.17 1993-11-01 00:00:00,6.08,7.65,5.06,9.78,7.37,1.99,12.79,469.1,10.14 1993-11-02 00:00:00,6.1,7.95,5.04,10.42,7.37,1.97,12.88,468.44,10.12 1993-11-03 00:00:00,6.0,7.68,5.0,10.4,7.37,1.93,12.59,463.02,10.06 1993-11-04 00:00:00,6.06,7.83,4.87,10.24,7.31,1.88,12.46,457.49,10.06 1993-11-05 00:00:00,6.1,7.74,4.89,10.27,7.35,1.93,12.51,459.57,10.11 1993-11-08 00:00:00,6.11,7.47,4.87,10.35,7.44,1.93,12.55,460.21,10.07 1993-11-09 00:00:00,6.13,7.32,4.91,10.12,7.44,1.92,12.83,460.33,10.05 1993-11-10 00:00:00,6.26,7.47,4.91,10.27,7.55,2.0,13.04,463.72,10.11 1993-11-11 00:00:00,6.21,7.62,4.87,10.71,7.48,2.0,13.0,462.64,10.03 1993-11-12 00:00:00,6.25,7.71,4.87,10.63,7.52,2.01,12.83,465.39,9.98 1993-11-15 00:00:00,6.21,7.77,4.89,10.5,7.57,1.98,13.12,463.75,9.88 1993-11-16 00:00:00,6.21,8.26,5.01,10.86,7.68,2.02,13.16,466.74,9.88 1993-11-17 00:00:00,6.17,8.14,5.02,10.68,7.61,1.98,13.08,464.81,10.03 1993-11-18 00:00:00,6.15,8.14,5.06,10.86,7.72,1.97,13.29,463.62,10.15 1993-11-19 00:00:00,6.3,8.04,5.1,10.68,7.72,1.97,13.2,462.6,10.11 1993-11-22 00:00:00,6.44,7.92,5.1,10.71,7.76,1.89,13.04,459.13,10.11 1993-11-23 00:00:00,6.47,8.04,5.11,10.94,7.83,1.9,12.96,461.03,10.05 1993-11-24 00:00:00,6.38,8.04,5.07,11.35,7.76,1.93,13.16,462.36,9.96 1993-11-26 00:00:00,6.38,7.95,5.11,11.48,7.65,1.94,13.25,463.06,9.72 1993-11-29 00:00:00,6.27,7.74,5.08,11.2,7.68,1.95,13.12,461.9,9.74 1993-11-30 00:00:00,6.21,7.68,5.11,11.09,7.57,1.96,13.25,461.79,9.88 1993-12-01 00:00:00,6.3,7.68,5.12,10.94,7.63,2.0,13.16,461.89,9.76 1993-12-02 00:00:00,6.31,7.74,5.19,11.07,7.68,2.04,13.16,463.11,9.8 1993-12-03 00:00:00,6.24,7.68,5.2,11.02,7.76,2.11,13.12,464.89,9.86 1993-12-06 00:00:00,6.17,7.86,5.21,11.07,7.87,2.08,13.3,466.43,9.88 1993-12-07 00:00:00,6.21,7.86,5.18,11.07,7.83,2.1,13.42,466.76,9.86 1993-12-08 00:00:00,6.5,7.77,5.21,11.09,7.87,2.05,13.42,466.29,9.8 1993-12-09 00:00:00,6.42,7.31,5.24,11.04,7.68,1.99,13.38,464.18,9.8 1993-12-10 00:00:00,6.49,6.89,5.28,11.38,7.55,2.01,13.46,463.93,9.9 1993-12-13 00:00:00,6.61,7.19,5.24,11.81,7.46,2.0,13.59,465.7,9.9 1993-12-14 00:00:00,6.49,7.1,5.31,11.56,7.39,1.96,13.42,463.06,9.92 1993-12-15 00:00:00,6.34,7.25,5.37,11.71,7.5,1.96,13.46,461.84,9.94 1993-12-16 00:00:00,6.3,7.16,5.37,11.84,7.46,1.96,13.55,463.34,9.99 1993-12-17 00:00:00,6.27,7.19,5.46,12.3,7.48,1.98,13.51,466.38,10.07 1993-12-20 00:00:00,6.25,6.95,5.41,12.02,7.39,2.01,13.51,465.85,10.03 1993-12-21 00:00:00,6.13,6.7,5.47,12.07,7.39,2.03,13.55,465.3,9.94 1993-12-22 00:00:00,6.15,6.82,5.47,12.2,7.44,1.99,13.63,467.32,9.92 1993-12-23 00:00:00,6.12,6.64,5.51,12.07,7.55,1.99,13.84,467.38,9.92 1993-12-27 00:00:00,6.16,6.95,5.58,12.17,7.7,1.98,13.79,470.54,10.11 1993-12-28 00:00:00,6.26,7.1,5.57,12.02,7.74,2.03,13.67,470.94,10.07 1993-12-29 00:00:00,6.22,6.95,5.57,11.97,7.76,2.0,13.67,470.58,10.02 1993-12-30 00:00:00,6.22,7.25,5.53,11.74,7.81,2.0,13.63,468.64,10.02 1993-12-31 00:00:00,6.22,7.13,5.48,11.63,7.79,1.98,13.51,466.45,9.94 1994-01-03 00:00:00,6.34,7.28,5.44,11.87,7.85,1.97,13.42,465.44,10.03 1994-01-04 00:00:00,6.33,7.68,5.42,12.15,7.83,1.98,13.26,466.89,10.11 1994-01-05 00:00:00,6.48,8.23,5.38,12.25,7.81,2.02,13.13,467.55,10.17 1994-01-06 00:00:00,6.45,7.98,5.43,12.04,7.65,2.08,12.97,467.12,10.11 1994-01-07 00:00:00,6.48,8.08,5.46,12.12,7.74,2.09,13.26,469.9,10.03 1994-01-10 00:00:00,6.65,8.2,5.48,12.2,7.89,2.11,13.51,475.27,10.17 1994-01-11 00:00:00,6.43,7.77,5.52,12.07,7.72,2.09,13.42,474.13,10.15 1994-01-12 00:00:00,6.54,7.43,5.54,11.97,7.7,2.1,13.3,474.17,10.21 1994-01-13 00:00:00,6.57,7.46,5.5,12.1,7.59,2.1,13.22,472.47,10.33 1994-01-14 00:00:00,6.55,7.56,5.58,12.07,7.59,2.1,13.22,474.91,10.19 1994-01-17 00:00:00,6.66,7.4,5.6,11.84,7.65,2.08,13.09,473.3,10.23 1994-01-18 00:00:00,6.63,7.16,5.66,11.76,7.57,2.08,13.09,474.25,10.21 1994-01-19 00:00:00,6.72,7.13,5.68,11.53,7.44,2.04,13.34,474.3,10.31 1994-01-20 00:00:00,6.67,7.28,5.67,11.38,7.22,2.12,13.22,474.98,10.45 1994-01-21 00:00:00,6.63,8.14,5.64,11.38,7.26,2.12,13.22,474.72,10.41 1994-01-24 00:00:00,6.78,8.53,5.63,12.07,7.0,2.09,13.01,471.97,10.41 1994-01-25 00:00:00,6.8,8.26,5.59,11.99,7.09,2.09,12.97,470.92,10.43 1994-01-26 00:00:00,6.86,8.17,5.57,11.61,7.26,2.07,12.93,473.2,10.41 1994-01-27 00:00:00,6.86,8.32,5.66,11.76,7.35,2.07,13.3,477.05,10.33 1994-01-28 00:00:00,6.89,8.29,5.64,11.89,7.37,2.08,13.26,478.7,10.35 1994-01-31 00:00:00,7.14,7.98,5.63,11.63,7.35,2.09,13.34,481.61,10.47 1994-02-01 00:00:00,7.16,8.1,5.59,11.63,7.31,2.09,13.09,479.62,10.43 1994-02-02 00:00:00,7.15,8.04,5.7,11.61,7.39,2.06,13.09,482.0,10.56 1994-02-03 00:00:00,7.06,8.17,5.74,11.48,7.35,2.08,12.97,480.71,10.55 1994-02-04 00:00:00,6.87,8.17,5.57,10.75,7.29,2.0,12.64,469.81,10.42 1994-02-07 00:00:00,7.05,8.93,5.66,11.22,7.22,1.98,12.72,471.76,10.4 1994-02-08 00:00:00,7.16,8.75,5.61,11.09,7.39,1.93,12.72,471.05,10.4 1994-02-09 00:00:00,7.26,8.87,5.66,10.99,7.27,1.96,12.68,472.77,10.5 1994-02-10 00:00:00,7.15,8.93,5.57,10.94,7.22,1.95,12.68,468.93,10.48 1994-02-11 00:00:00,7.05,9.05,5.61,11.01,7.31,1.93,12.89,470.18,10.58 1994-02-14 00:00:00,7.07,9.05,5.65,11.17,7.35,1.94,12.76,470.23,10.54 1994-02-15 00:00:00,7.05,9.08,5.7,11.27,7.37,1.96,12.8,472.52,10.6 1994-02-16 00:00:00,7.18,8.99,5.68,11.3,7.29,1.93,12.97,472.79,10.62 1994-02-17 00:00:00,7.1,9.05,5.7,10.91,7.2,1.93,12.72,470.34,10.62 1994-02-18 00:00:00,7.04,8.87,5.64,10.89,7.24,1.96,12.89,467.69,10.52 1994-02-22 00:00:00,6.94,9.11,5.64,11.09,7.2,1.95,13.09,471.46,10.6 1994-02-23 00:00:00,6.85,9.11,5.61,11.07,7.16,1.99,13.09,470.69,10.58 1994-02-24 00:00:00,6.88,8.96,5.51,10.94,7.07,1.96,12.84,464.26,10.38 1994-02-25 00:00:00,6.88,8.81,5.49,10.94,7.09,1.99,12.8,466.07,10.42 1994-02-28 00:00:00,6.79,8.93,5.51,10.94,7.0,2.03,12.93,467.14,10.32 1994-03-01 00:00:00,6.72,8.87,5.52,11.09,7.05,2.04,12.93,464.44,10.32 1994-03-02 00:00:00,6.9,8.72,5.57,10.96,7.02,2.03,12.84,464.81,10.48 1994-03-03 00:00:00,6.75,8.75,5.53,10.89,6.94,1.99,12.6,463.01,10.52 1994-03-04 00:00:00,6.78,8.99,5.52,10.89,6.94,1.99,12.56,464.74,10.38 1994-03-07 00:00:00,6.81,9.27,5.57,10.81,6.92,2.0,12.44,466.91,10.38 1994-03-08 00:00:00,6.74,9.05,5.53,11.32,6.94,1.99,12.32,465.88,10.4 1994-03-09 00:00:00,6.75,9.17,5.55,11.45,7.0,1.99,12.19,467.06,10.42 1994-03-10 00:00:00,6.59,9.11,5.5,11.58,6.92,1.99,12.11,463.9,10.32 1994-03-11 00:00:00,6.67,9.11,5.54,11.56,6.92,2.01,11.99,466.44,10.38 1994-03-14 00:00:00,6.63,9.33,5.54,11.89,6.94,2.06,11.95,467.39,10.38 1994-03-15 00:00:00,6.64,9.2,5.52,11.87,6.96,2.08,12.24,467.01,10.3 1994-03-16 00:00:00,6.65,8.99,5.46,12.05,6.89,2.08,12.36,469.42,10.32 1994-03-17 00:00:00,6.81,8.93,5.42,11.97,6.87,2.08,12.57,470.9,10.44 1994-03-18 00:00:00,6.96,8.9,5.5,11.82,6.89,2.08,12.48,471.06,10.48 1994-03-21 00:00:00,6.96,8.68,5.47,12.13,6.89,2.04,12.36,468.54,10.42 1994-03-22 00:00:00,7.07,8.56,5.43,12.05,6.83,2.08,12.36,468.8,10.44 1994-03-23 00:00:00,7.1,8.59,5.47,11.84,6.72,2.12,12.28,468.54,10.4 1994-03-24 00:00:00,7.06,8.47,5.45,11.66,6.74,2.14,12.44,464.35,10.42 1994-03-25 00:00:00,6.88,8.01,5.37,11.17,6.74,2.15,12.36,460.58,10.42 1994-03-28 00:00:00,6.83,8.13,5.45,11.09,6.79,2.12,12.36,460.0,10.34 1994-03-29 00:00:00,6.73,8.01,5.38,10.89,6.63,2.03,12.28,452.48,10.34 1994-03-30 00:00:00,6.47,7.95,5.2,11.07,6.48,2.05,12.11,445.55,10.1 1994-03-31 00:00:00,6.46,8.13,5.26,11.3,6.59,2.08,12.15,445.77,10.0 1994-04-04 00:00:00,6.5,8.13,5.16,10.96,6.44,2.08,12.03,438.92,9.71 1994-04-05 00:00:00,6.49,8.19,5.2,11.04,6.48,2.15,12.15,448.29,9.73 1994-04-06 00:00:00,6.53,8.19,5.14,10.99,6.41,2.19,12.15,448.05,9.73 1994-04-07 00:00:00,6.53,8.17,5.17,10.99,6.48,2.2,12.15,450.88,9.75 1994-04-08 00:00:00,6.44,8.19,5.12,10.86,6.52,2.14,12.15,447.1,9.71 1994-04-11 00:00:00,6.46,8.19,5.18,10.96,6.76,2.14,12.11,449.87,9.81 1994-04-12 00:00:00,6.46,7.83,5.22,10.94,6.89,2.08,12.19,447.57,9.81 1994-04-13 00:00:00,6.27,7.77,5.2,10.83,6.94,2.08,12.24,446.26,9.82 1994-04-14 00:00:00,6.26,7.71,5.13,11.14,6.81,2.07,12.24,446.38,10.0 1994-04-15 00:00:00,6.11,7.4,5.09,10.96,6.85,2.08,12.19,446.18,10.02 1994-04-18 00:00:00,5.99,7.25,4.99,11.04,6.79,2.04,12.15,442.46,9.9 1994-04-19 00:00:00,5.86,7.09,5.03,11.04,7.05,2.16,12.19,442.54,10.04 1994-04-20 00:00:00,5.98,6.91,5.03,10.81,7.07,2.2,11.95,441.96,10.02 1994-04-21 00:00:00,6.02,7.25,5.07,12.07,7.13,2.25,12.03,448.73,9.94 1994-04-22 00:00:00,6.11,7.28,5.05,12.15,7.02,2.25,11.82,447.63,10.04 1994-04-25 00:00:00,6.19,7.58,5.09,12.25,7.0,2.3,12.19,452.71,10.12 1994-04-26 00:00:00,6.2,7.64,5.05,12.1,7.02,2.33,12.15,451.87,10.0 1994-04-28 00:00:00,6.12,7.4,5.08,11.82,7.27,2.26,12.28,449.1,9.85 1994-04-29 00:00:00,6.13,7.34,5.01,11.89,7.22,2.27,12.11,450.91,10.0 1994-05-02 00:00:00,6.4,7.58,5.05,12.0,7.33,2.35,12.53,453.02,9.79 1994-05-03 00:00:00,6.31,7.4,5.07,12.07,7.27,2.3,12.28,453.03,9.75 1994-05-04 00:00:00,6.27,8.07,5.15,11.94,7.29,2.34,12.28,451.72,9.65 1994-05-05 00:00:00,6.25,8.04,5.14,11.87,7.22,2.32,11.95,451.38,9.67 1994-05-06 00:00:00,6.2,7.9,5.08,11.74,7.11,2.27,11.9,447.82,9.98 1994-05-09 00:00:00,6.17,7.64,4.99,11.84,7.11,2.27,11.86,442.32,9.88 1994-05-10 00:00:00,6.15,7.58,5.0,12.05,7.27,2.31,11.9,446.01,10.0 1994-05-11 00:00:00,6.13,7.4,4.91,11.89,7.45,2.3,11.74,441.49,9.88 1994-05-12 00:00:00,6.11,7.26,4.93,11.89,7.38,2.32,11.86,443.75,9.98 1994-05-13 00:00:00,6.23,7.34,5.02,11.94,7.47,2.37,11.78,444.14,9.98 1994-05-16 00:00:00,6.2,7.22,4.99,12.15,7.51,2.33,11.95,444.49,9.9 1994-05-17 00:00:00,6.4,7.18,5.01,12.72,7.6,2.32,12.28,449.37,9.96 1994-05-18 00:00:00,6.5,7.49,5.04,12.62,7.6,2.38,12.32,453.69,9.94 1994-05-19 00:00:00,6.46,7.86,5.08,12.75,7.62,2.42,12.19,456.48,10.02 1994-05-20 00:00:00,6.48,7.6,5.01,12.91,7.6,2.4,12.15,454.92,10.0 1994-05-23 00:00:00,6.41,7.46,4.95,12.83,7.69,2.48,11.99,453.2,9.94 1994-05-24 00:00:00,6.32,7.52,5.0,13.11,7.67,2.51,12.07,454.81,9.88 1994-05-25 00:00:00,6.4,7.64,5.0,13.22,7.73,2.58,12.07,456.34,9.9 1994-05-26 00:00:00,6.35,7.46,5.1,13.29,7.76,2.55,12.15,457.06,9.88 1994-05-27 00:00:00,6.37,7.35,5.16,13.22,7.82,2.57,12.11,457.33,9.86 1994-05-31 00:00:00,6.41,7.18,5.24,13.09,7.78,2.64,11.95,456.5,9.84 1994-06-01 00:00:00,6.38,6.94,5.28,13.19,7.73,2.6,12.03,457.63,9.78 1994-06-02 00:00:00,6.38,6.72,5.26,12.88,7.69,2.57,12.19,457.65,9.8 1994-06-03 00:00:00,6.41,6.78,5.2,12.67,7.69,2.6,11.95,460.13,9.88 1994-06-06 00:00:00,6.44,6.72,5.13,13.01,7.51,2.68,11.55,458.88,9.84 1994-06-07 00:00:00,6.34,6.75,5.13,13.01,7.65,2.63,11.63,458.21,9.92 1994-06-08 00:00:00,6.41,6.41,5.07,12.8,7.62,2.55,11.5,457.06,9.88 1994-06-09 00:00:00,6.46,6.63,5.09,12.88,7.71,2.57,10.5,457.86,9.94 1994-06-10 00:00:00,6.62,6.51,5.03,13.01,7.62,2.58,10.38,458.67,10.0 1994-06-13 00:00:00,6.83,6.63,5.08,13.24,7.67,2.6,10.46,459.1,9.6 1994-06-14 00:00:00,6.88,6.65,5.05,13.5,7.69,2.63,10.63,462.37,9.48 1994-06-15 00:00:00,6.76,6.83,5.0,13.24,7.62,2.66,10.71,460.61,9.17 1994-06-16 00:00:00,6.79,6.48,5.05,13.06,7.69,2.63,10.59,461.93,9.48 1994-06-17 00:00:00,6.77,6.51,5.03,12.96,7.67,2.6,10.42,458.45,9.46 1994-06-20 00:00:00,6.67,6.66,4.99,12.8,7.67,2.63,10.34,455.48,9.44 1994-06-21 00:00:00,6.75,6.39,4.86,12.67,7.71,2.58,10.5,451.34,9.34 1994-06-22 00:00:00,6.76,6.45,4.82,12.88,7.62,2.53,10.59,453.09,9.38 1994-06-23 00:00:00,6.78,6.17,4.87,12.65,7.6,2.46,10.38,449.63,9.36 1994-06-24 00:00:00,6.58,6.29,4.87,12.44,7.49,2.43,10.25,442.8,9.21 1994-06-27 00:00:00,6.66,6.45,4.99,12.78,7.51,2.55,10.34,447.31,9.2 1994-06-28 00:00:00,6.54,6.57,5.01,12.7,7.6,2.52,10.3,446.07,9.11 1994-06-29 00:00:00,6.6,6.41,5.05,12.54,7.65,2.52,10.42,447.63,9.09 1994-06-30 00:00:00,6.63,6.51,4.95,12.2,7.54,2.54,10.21,444.27,9.13 1994-07-01 00:00:00,6.85,6.32,4.92,11.84,7.54,2.47,10.17,446.2,9.2 1994-07-05 00:00:00,6.88,6.51,4.98,11.68,7.51,2.41,10.21,446.37,9.16 1994-07-06 00:00:00,6.99,6.41,5.01,11.84,7.45,2.37,10.05,446.13,9.13 1994-07-07 00:00:00,6.83,6.58,5.03,11.79,7.47,2.47,10.21,448.38,9.24 1994-07-08 00:00:00,7.16,6.65,5.03,11.76,7.51,2.43,10.25,449.55,9.32 1994-07-11 00:00:00,7.11,6.63,5.01,11.56,7.56,2.38,10.3,448.06,9.42 1994-07-12 00:00:00,7.19,6.97,4.97,11.61,7.49,2.36,10.21,447.95,9.4 1994-07-13 00:00:00,7.18,7.29,4.97,11.79,7.45,2.43,10.17,448.73,9.36 1994-07-14 00:00:00,7.2,7.03,5.05,12.1,7.56,2.39,10.25,453.41,9.32 1994-07-15 00:00:00,7.29,6.94,5.08,11.82,7.69,2.39,10.42,454.16,9.34 1994-07-18 00:00:00,7.48,6.97,5.08,11.82,7.67,2.48,10.17,455.22,9.38 1994-07-19 00:00:00,7.44,6.8,5.18,11.56,7.67,2.46,10.17,453.86,9.42 1994-07-20 00:00:00,7.31,6.54,5.17,11.61,7.86,2.38,10.13,451.6,9.42 1994-07-21 00:00:00,7.34,6.88,5.14,12.96,8.15,2.35,10.05,452.61,9.4 1994-07-22 00:00:00,7.2,7.61,5.26,12.75,7.98,2.48,10.05,453.11,9.32 1994-07-25 00:00:00,7.17,7.78,5.29,12.93,8.22,2.51,10.0,454.25,9.38 1994-07-26 00:00:00,7.31,7.7,5.21,12.96,8.2,2.47,10.05,453.36,9.38 1994-07-27 00:00:00,7.06,7.63,5.17,12.98,8.33,2.43,9.96,452.57,9.42 1994-07-28 00:00:00,6.97,7.83,5.25,12.93,8.26,2.43,9.92,454.24,9.5 1994-07-29 00:00:00,7.1,8.27,5.34,12.85,8.26,2.53,10.17,458.26,9.58 1994-08-01 00:00:00,7.2,8.2,5.33,13.06,8.26,2.62,10.3,461.01,9.68 1994-08-02 00:00:00,7.27,8.0,5.3,12.93,8.28,2.59,10.3,460.56,9.54 1994-08-03 00:00:00,7.28,8.14,5.26,13.09,8.44,2.62,10.3,461.45,9.54 1994-08-04 00:00:00,7.23,8.17,5.14,13.17,8.52,2.59,10.34,458.4,9.56 1994-08-05 00:00:00,7.17,8.17,5.2,13.01,8.41,2.58,10.34,457.09,9.52 1994-08-08 00:00:00,7.17,8.29,5.25,13.19,8.37,2.6,10.5,457.89,9.64 1994-08-09 00:00:00,7.19,8.26,5.18,13.45,8.41,2.63,10.38,457.92,9.55 1994-08-10 00:00:00,7.18,8.5,5.12,13.37,8.58,2.66,10.38,460.3,9.61 1994-08-11 00:00:00,7.12,8.43,5.05,13.48,8.44,2.71,10.38,458.88,9.47 1994-08-12 00:00:00,7.11,8.53,5.1,13.3,8.6,2.71,10.59,461.94,9.82 1994-08-15 00:00:00,7.02,8.53,5.17,13.42,8.75,2.67,10.38,461.23,9.76 1994-08-16 00:00:00,7.06,8.56,5.14,13.48,8.75,2.7,10.8,465.01,9.67 1994-08-17 00:00:00,7.04,8.63,5.08,13.53,8.71,2.74,11.09,465.17,9.71 1994-08-18 00:00:00,7.03,8.53,5.0,13.82,8.51,2.73,10.92,463.17,9.67 1994-08-19 00:00:00,7.01,8.6,5.08,14.21,8.66,2.7,11.17,463.68,9.69 1994-08-22 00:00:00,7.04,8.6,5.06,14.13,8.69,2.68,11.17,462.32,9.65 1994-08-23 00:00:00,7.06,8.63,5.17,14.1,8.6,2.73,11.34,464.51,9.61 1994-08-24 00:00:00,7.25,8.6,5.22,14.05,8.71,2.74,11.5,469.03,9.76 1994-08-25 00:00:00,7.27,8.64,5.26,14.47,8.66,2.76,11.3,468.08,9.63 1994-08-26 00:00:00,7.4,8.81,5.38,14.6,8.75,2.79,11.42,473.8,9.73 1994-08-29 00:00:00,7.47,8.72,5.33,14.47,8.75,2.8,11.25,474.59,9.73 1994-08-30 00:00:00,7.6,8.93,5.3,14.47,8.69,2.87,11.17,476.07,9.71 1994-08-31 00:00:00,7.66,8.92,5.28,14.29,8.86,2.86,11.05,475.49,9.69 1994-09-01 00:00:00,7.57,8.63,5.33,14.15,8.93,2.76,11.21,473.17,9.69 1994-09-02 00:00:00,7.53,8.72,5.3,14.03,8.86,2.75,11.32,470.99,9.69 1994-09-06 00:00:00,7.59,8.76,5.24,14.08,8.84,2.75,11.23,471.86,9.71 1994-09-07 00:00:00,7.52,8.9,5.2,14.08,8.73,2.79,11.15,470.99,9.77 1994-09-08 00:00:00,7.59,8.9,5.21,14.15,8.82,2.85,11.23,473.14,9.77 1994-09-09 00:00:00,7.56,8.81,5.21,14.03,8.82,2.79,11.11,468.18,9.67 1994-09-12 00:00:00,7.53,8.81,5.21,14.15,8.73,2.76,11.06,466.21,9.59 1994-09-13 00:00:00,7.66,8.82,5.25,14.44,8.78,2.83,11.06,467.51,9.61 1994-09-14 00:00:00,7.69,8.66,5.33,14.55,8.66,2.83,11.15,468.8,9.57 1994-09-15 00:00:00,7.79,8.87,5.45,14.55,8.82,2.86,11.4,474.81,9.69 1994-09-16 00:00:00,7.89,8.97,5.41,14.81,8.82,2.79,11.15,471.19,9.82 1994-09-19 00:00:00,7.82,8.75,5.36,14.68,8.82,2.79,11.19,470.85,9.69 1994-09-20 00:00:00,7.77,8.52,5.25,14.65,8.73,2.75,10.9,463.36,9.55 1994-09-21 00:00:00,7.75,8.41,5.25,14.49,8.73,2.81,10.9,461.46,9.49 1994-09-22 00:00:00,7.69,8.35,5.21,14.52,8.66,2.8,10.94,461.27,9.43 1994-09-23 00:00:00,7.72,8.36,5.17,14.42,8.73,2.75,10.9,459.67,9.43 1994-09-26 00:00:00,7.79,8.36,5.26,14.39,8.69,2.73,11.06,460.82,9.47 1994-09-27 00:00:00,7.94,8.35,5.21,14.39,9.06,2.78,10.98,462.05,9.37 1994-09-28 00:00:00,7.98,8.35,5.21,14.29,9.15,2.8,11.19,464.84,9.45 1994-09-29 00:00:00,7.82,8.41,5.21,14.49,9.04,2.78,11.11,462.24,9.43 1994-09-30 00:00:00,7.73,8.3,5.14,14.52,9.15,2.76,11.11,462.71,9.37 1994-10-03 00:00:00,7.83,8.16,5.09,14.36,9.09,2.74,11.27,461.74,9.41 1994-10-04 00:00:00,7.71,8.32,5.02,14.26,8.86,2.7,10.94,454.59,9.27 1994-10-05 00:00:00,7.55,9.33,5.06,14.42,8.91,2.73,11.19,453.52,9.27 1994-10-06 00:00:00,7.59,8.93,5.02,14.34,8.93,2.68,11.06,452.36,9.31 1994-10-07 00:00:00,7.69,9.12,5.0,14.83,9.0,2.67,10.81,455.1,9.55 1994-10-10 00:00:00,7.59,9.58,5.01,14.91,8.97,2.69,10.9,459.04,9.55 1994-10-11 00:00:00,7.6,9.77,5.17,14.94,9.22,2.74,11.65,465.79,9.61 1994-10-12 00:00:00,7.68,10.38,5.36,15.25,9.28,2.76,11.57,465.47,9.55 1994-10-13 00:00:00,7.6,10.14,5.34,15.07,9.33,2.81,11.57,467.79,9.71 1994-10-14 00:00:00,7.93,10.14,5.38,15.25,9.26,2.75,11.44,469.1,9.77 1994-10-17 00:00:00,7.89,9.8,5.38,15.28,9.39,2.71,11.44,468.96,9.76 1994-10-18 00:00:00,7.89,10.17,5.33,15.54,9.39,2.78,11.4,467.66,9.73 1994-10-19 00:00:00,8.06,10.17,5.37,15.72,9.64,2.83,11.65,470.28,9.69 1994-10-20 00:00:00,8.23,10.1,5.24,15.64,9.7,2.93,11.48,466.85,9.76 1994-10-21 00:00:00,8.09,10.51,5.06,15.56,9.66,2.92,11.52,464.89,9.76 1994-10-24 00:00:00,7.87,10.41,5.12,15.22,9.55,2.89,11.4,460.83,9.69 1994-10-25 00:00:00,7.76,10.51,5.1,15.41,9.59,2.93,11.48,461.53,9.84 1994-10-26 00:00:00,7.75,10.66,5.12,15.51,9.62,3.0,11.65,462.62,9.98 1994-10-27 00:00:00,7.75,10.54,5.14,15.46,9.62,3.03,11.69,465.85,10.12 1994-10-28 00:00:00,7.76,10.38,5.28,15.87,9.75,3.05,11.78,473.77,10.2 1994-10-31 00:00:00,7.81,10.64,5.22,15.54,9.66,3.09,11.73,472.35,10.24 1994-11-01 00:00:00,7.72,10.63,5.18,15.41,9.86,3.08,11.9,468.42,10.06 1994-11-02 00:00:00,7.59,10.2,5.16,15.48,9.81,3.09,11.82,466.51,10.1 1994-11-03 00:00:00,7.65,10.23,5.18,15.33,9.64,3.08,11.94,467.91,10.2 1994-11-04 00:00:00,7.67,9.95,5.13,14.88,9.31,3.02,11.86,462.28,10.02 1994-11-07 00:00:00,7.62,10.04,5.16,15.04,9.39,3.04,11.94,463.07,10.08 1994-11-08 00:00:00,7.68,10.41,5.25,15.28,9.69,3.13,12.03,465.65,10.02 1994-11-09 00:00:00,7.48,10.26,5.21,15.49,9.73,3.13,11.94,465.4,9.94 1994-11-10 00:00:00,7.42,10.18,5.21,15.07,9.71,3.13,11.82,464.37,9.81 1994-11-11 00:00:00,7.42,10.14,5.21,15.14,9.6,3.06,12.36,462.35,9.79 1994-11-14 00:00:00,7.63,10.47,5.21,15.25,9.73,3.17,12.45,466.04,9.85 1994-11-15 00:00:00,7.68,10.2,5.21,15.3,9.65,3.17,12.32,465.03,9.88 1994-11-16 00:00:00,7.67,10.09,5.26,15.22,9.65,3.17,12.32,465.62,10.0 1994-11-17 00:00:00,7.59,9.86,5.21,15.3,9.62,3.16,12.4,463.57,10.04 1994-11-18 00:00:00,7.67,9.89,5.21,15.33,9.78,3.15,12.28,461.47,10.0 1994-11-21 00:00:00,7.63,9.42,5.06,15.25,9.6,3.12,12.36,458.3,9.96 1994-11-22 00:00:00,7.39,9.24,4.97,14.6,9.38,3.05,12.07,450.09,9.98 1994-11-23 00:00:00,7.15,9.12,4.94,14.65,9.42,3.02,11.9,449.93,9.98 1994-11-25 00:00:00,7.36,9.33,4.94,14.81,9.4,3.06,12.03,452.29,10.02 1994-11-28 00:00:00,7.44,9.35,5.05,14.78,9.49,3.11,12.07,454.16,10.02 1994-11-29 00:00:00,7.42,9.45,4.98,14.78,9.49,3.15,12.03,455.17,9.98 1994-11-30 00:00:00,7.48,9.21,4.92,14.81,9.49,3.09,11.82,453.69,9.96 1994-12-01 00:00:00,7.41,8.95,4.88,14.54,9.51,3.07,11.78,448.92,9.79 1994-12-02 00:00:00,7.51,9.04,5.04,14.94,9.56,3.11,12.03,453.3,9.96 1994-12-05 00:00:00,7.57,9.19,5.01,14.94,9.54,3.11,12.17,453.32,9.85 1994-12-06 00:00:00,7.59,9.28,4.97,14.99,9.54,3.11,12.09,453.11,9.92 1994-12-07 00:00:00,7.52,9.05,5.06,14.91,9.51,3.09,12.09,451.23,10.02 1994-12-08 00:00:00,7.25,8.87,4.93,14.67,9.36,3.07,11.84,445.45,10.04 1994-12-09 00:00:00,7.23,8.96,5.01,14.96,9.42,3.1,11.88,446.96,10.16 1994-12-12 00:00:00,7.35,9.02,5.06,14.78,9.47,3.1,12.05,449.47,10.23 1994-12-13 00:00:00,7.27,8.99,5.12,14.6,9.49,3.08,12.05,450.15,10.06 1994-12-14 00:00:00,7.32,9.36,5.21,14.7,9.67,3.11,12.0,454.97,10.06 1994-12-15 00:00:00,7.48,9.18,5.24,14.75,9.73,3.12,12.09,455.34,10.0 1994-12-16 00:00:00,7.65,9.21,5.37,14.67,9.82,3.11,12.38,458.8,10.18 1994-12-19 00:00:00,7.51,9.67,5.34,14.99,9.85,3.08,12.34,457.91,10.14 1994-12-20 00:00:00,7.4,9.52,5.32,14.81,9.71,2.94,12.21,457.1,10.1 1994-12-21 00:00:00,7.59,9.49,5.33,15.41,9.67,3.02,12.26,459.61,10.14 1994-12-22 00:00:00,7.65,9.55,5.4,15.38,9.71,2.98,12.21,459.68,10.16 1994-12-23 00:00:00,7.71,9.61,5.36,15.38,9.82,2.99,12.21,459.83,10.14 1994-12-27 00:00:00,7.8,9.67,5.52,15.54,9.87,2.98,12.38,462.47,10.18 1994-12-28 00:00:00,7.81,9.67,5.51,15.28,9.8,3.0,12.34,460.86,10.18 1994-12-29 00:00:00,7.81,9.76,5.56,15.56,9.78,3.04,12.34,461.17,10.12 1994-12-30 00:00:00,7.94,9.64,5.49,15.38,9.73,3.0,12.21,459.27,10.02 1995-01-03 00:00:00,7.83,9.49,5.49,15.43,9.69,2.96,12.13,459.11,10.0 1995-01-04 00:00:00,7.86,9.73,5.49,15.56,9.78,2.98,11.96,460.71,10.04 1995-01-05 00:00:00,7.8,9.61,5.51,15.49,9.73,2.93,11.71,460.34,10.06 1995-01-06 00:00:00,8.03,10.38,5.48,15.72,9.67,2.98,11.71,460.68,10.06 1995-01-09 00:00:00,8.11,10.18,5.43,15.8,9.56,2.96,11.75,460.83,9.98 1995-01-10 00:00:00,8.07,10.8,5.47,16.03,9.76,3.0,11.63,461.68,10.02 1995-01-11 00:00:00,8.05,11.56,5.55,15.9,9.76,3.01,11.46,461.66,9.96 1995-01-12 00:00:00,8.1,11.22,5.53,15.9,9.67,3.01,11.41,461.64,9.96 1995-01-13 00:00:00,8.17,11.09,5.6,15.98,9.65,3.08,11.54,465.97,10.04 1995-01-16 00:00:00,8.11,11.0,5.67,16.22,9.73,3.15,11.67,469.38,10.02 1995-01-17 00:00:00,7.98,11.12,5.6,16.22,9.78,3.17,11.84,470.05,10.12 1995-01-18 00:00:00,8.1,11.28,5.63,16.17,9.76,3.2,11.67,469.71,10.25 1995-01-19 00:00:00,8.01,11.34,5.49,16.01,9.69,3.12,11.63,466.95,10.25 1995-01-20 00:00:00,7.89,10.54,5.49,15.77,9.69,3.03,11.58,464.78,10.35 1995-01-23 00:00:00,7.9,10.44,5.41,15.54,9.94,3.08,11.71,465.82,10.51 1995-01-24 00:00:00,7.77,10.29,5.43,15.49,9.8,3.05,11.79,465.86,10.31 1995-01-25 00:00:00,7.86,10.13,5.47,15.14,9.73,3.03,11.96,467.44,10.35 1995-01-26 00:00:00,7.74,9.76,5.49,15.14,9.94,2.94,12.0,468.32,10.41 1995-01-27 00:00:00,7.42,9.86,5.44,15.17,10.16,2.94,12.26,470.39,10.31 1995-01-30 00:00:00,7.14,9.92,5.51,15.01,10.25,2.9,12.26,468.51,10.31 1995-01-31 00:00:00,7.24,9.98,5.55,15.09,10.34,2.92,12.43,470.42,10.31 1995-02-01 00:00:00,7.4,9.92,5.51,15.41,10.09,2.9,12.51,470.4,10.25 1995-02-02 00:00:00,7.43,10.29,5.52,15.56,10.11,2.9,12.8,472.79,10.18 1995-02-03 00:00:00,7.73,10.01,5.62,15.62,10.2,2.95,13.1,478.65,10.35 1995-02-06 00:00:00,7.37,10.01,5.6,15.62,10.27,2.99,13.02,481.14,10.37 1995-02-07 00:00:00,7.37,10.09,5.6,15.59,10.29,3.0,12.76,480.81,10.39 1995-02-08 00:00:00,7.19,10.46,5.6,15.59,10.27,3.04,12.43,481.19,10.43 1995-02-09 00:00:00,7.36,10.78,5.63,15.75,10.14,3.04,12.43,480.19,10.31 1995-02-10 00:00:00,7.39,10.81,5.62,15.75,10.21,3.05,12.64,481.46,10.33 1995-02-13 00:00:00,7.42,10.84,5.67,15.72,10.21,3.05,12.47,481.65,10.43 1995-02-14 00:00:00,7.45,10.64,5.67,15.88,10.19,3.04,13.02,482.55,10.5 1995-02-15 00:00:00,7.53,10.55,5.78,15.88,10.1,2.98,12.93,484.54,10.58 1995-02-16 00:00:00,7.65,10.7,5.83,15.85,10.1,2.99,13.02,485.22,10.68 1995-02-17 00:00:00,7.44,10.53,5.78,15.75,9.94,2.97,13.02,481.97,10.58 1995-02-21 00:00:00,7.61,10.16,5.8,15.59,9.99,2.93,13.14,482.72,10.68 1995-02-22 00:00:00,7.46,10.12,5.94,15.59,10.14,3.02,13.14,485.07,10.7 1995-02-23 00:00:00,7.57,9.96,5.97,15.59,10.19,3.03,13.23,486.91,10.64 1995-02-24 00:00:00,7.46,9.67,5.9,15.72,10.21,3.01,13.35,488.11,10.58 1995-02-27 00:00:00,7.28,9.48,5.78,15.54,10.16,3.03,13.06,483.81,10.62 1995-02-28 00:00:00,7.19,9.79,5.9,15.8,10.14,3.09,13.18,487.39,10.66 1995-03-01 00:00:00,7.0,9.91,5.88,15.83,10.12,3.11,13.06,485.65,10.61 1995-03-02 00:00:00,7.09,9.91,5.77,16.22,10.39,3.13,13.06,485.13,10.58 1995-03-03 00:00:00,7.23,9.98,5.75,16.77,10.32,3.13,13.1,485.42,10.56 1995-03-06 00:00:00,7.03,9.85,5.73,16.85,10.36,3.16,13.29,485.63,10.68 1995-03-07 00:00:00,6.86,9.5,5.71,16.74,10.36,3.21,12.99,482.12,10.68 1995-03-08 00:00:00,7.0,9.81,5.78,16.74,10.39,3.36,12.91,483.14,10.81 1995-03-09 00:00:00,6.93,9.85,5.78,16.93,10.39,3.33,13.03,483.16,10.77 1995-03-10 00:00:00,7.05,9.79,5.94,17.03,10.54,3.37,13.46,489.57,10.85 1995-03-13 00:00:00,7.03,9.45,5.93,17.22,10.77,3.39,13.37,490.05,10.83 1995-03-14 00:00:00,6.89,8.67,5.97,17.11,10.77,3.52,13.46,492.89,10.81 1995-03-15 00:00:00,7.03,8.67,5.83,17.16,10.97,3.46,13.5,491.88,10.77 1995-03-16 00:00:00,7.05,8.74,5.96,17.53,11.01,3.44,13.54,495.41,10.89 1995-03-17 00:00:00,6.93,8.71,5.89,17.35,11.17,3.44,13.58,495.52,10.89 1995-03-20 00:00:00,7.09,8.74,5.88,17.53,11.08,3.49,13.63,496.14,10.87 1995-03-21 00:00:00,6.98,8.98,5.9,17.27,11.03,3.46,13.79,495.07,10.77 1995-03-22 00:00:00,7.37,9.43,5.93,17.14,10.99,3.48,13.84,495.67,10.95 1995-03-23 00:00:00,7.37,9.2,5.92,17.5,10.92,3.57,13.75,495.95,10.93 1995-03-24 00:00:00,7.53,9.36,5.97,17.56,11.06,3.63,13.63,500.97,10.99 1995-03-27 00:00:00,7.44,9.22,5.93,17.85,11.06,3.59,13.67,503.2,11.08 1995-03-28 00:00:00,7.49,8.52,5.96,17.74,11.03,3.62,13.63,503.9,11.02 1995-03-29 00:00:00,7.44,8.52,5.97,17.43,10.72,3.55,13.58,503.12,11.08 1995-03-30 00:00:00,7.9,8.77,5.94,17.29,10.72,3.54,13.2,502.22,11.04 1995-03-31 00:00:00,7.65,8.74,5.86,17.24,10.63,3.49,13.24,500.71,11.12 1995-04-03 00:00:00,7.6,8.8,5.93,17.4,10.63,3.44,13.41,501.85,11.06 1995-04-04 00:00:00,7.69,8.4,5.96,17.43,10.7,3.43,13.5,505.24,11.23 1995-04-05 00:00:00,7.86,8.61,5.96,17.64,10.66,3.47,13.54,505.57,11.35 1995-04-06 00:00:00,7.72,9.11,6.0,17.61,10.59,3.44,13.5,506.08,11.14 1995-04-07 00:00:00,7.72,9.11,5.96,17.64,10.54,3.42,13.5,506.42,11.16 1995-04-10 00:00:00,7.88,9.08,5.97,18.06,10.72,3.48,13.67,507.01,11.16 1995-04-11 00:00:00,7.95,9.36,5.94,18.21,10.74,3.54,13.67,505.53,11.14 1995-04-12 00:00:00,7.86,9.67,5.94,18.29,10.74,3.52,13.84,507.17,11.16 1995-04-13 00:00:00,8.25,9.48,5.97,18.13,11.01,3.56,13.88,509.23,11.2 1995-04-17 00:00:00,8.02,9.51,5.85,18.45,10.81,3.8,13.71,506.13,11.23 1995-04-18 00:00:00,7.92,9.29,5.86,18.53,11.19,3.77,13.88,505.37,11.35 1995-04-19 00:00:00,8.09,9.02,5.94,18.29,11.21,3.74,13.71,504.92,11.43 1995-04-20 00:00:00,8.13,9.33,5.86,18.69,11.26,3.7,13.67,505.29,11.64 1995-04-21 00:00:00,8.25,9.7,5.97,19.24,11.3,3.68,13.96,508.49,11.56 1995-04-24 00:00:00,8.41,9.67,6.02,19.63,11.44,3.82,14.01,512.89,11.62 1995-04-25 00:00:00,8.32,9.36,6.05,19.66,11.39,3.93,13.96,512.1,11.68 1995-04-26 00:00:00,8.13,9.48,6.06,20.0,11.46,3.91,14.09,512.66,11.64 1995-04-27 00:00:00,8.02,9.39,6.12,20.34,11.33,3.86,13.92,513.55,11.62 1995-04-28 00:00:00,8.27,9.48,6.08,19.87,11.61,4.02,14.09,514.71,11.6 1995-05-01 00:00:00,8.2,9.48,6.12,19.34,11.59,4.03,14.22,514.26,11.83 1995-05-02 00:00:00,8.29,9.45,6.11,19.5,11.61,3.91,14.56,514.86,11.83 1995-05-03 00:00:00,8.45,9.45,6.15,19.79,11.75,3.97,15.15,520.48,11.81 1995-05-04 00:00:00,8.13,9.54,6.2,19.74,11.81,4.0,15.19,520.54,11.85 1995-05-05 00:00:00,7.71,9.64,6.23,19.6,11.7,3.93,15.02,520.12,11.85 1995-05-08 00:00:00,8.06,10.04,6.35,19.74,11.88,3.92,15.28,523.96,11.87 1995-05-09 00:00:00,7.96,10.22,6.36,19.71,11.88,3.92,15.11,523.56,11.79 1995-05-10 00:00:00,8.03,10.27,6.42,19.76,11.96,3.89,15.45,524.36,11.85 1995-05-11 00:00:00,8.24,10.16,6.34,19.84,12.12,4.0,15.45,524.37,11.79 1995-05-12 00:00:00,8.64,10.81,6.4,19.87,11.63,3.97,15.02,525.55,11.79 1995-05-15 00:00:00,8.8,10.81,6.25,20.0,11.43,3.99,15.49,527.74,11.89 1995-05-16 00:00:00,8.7,10.84,6.17,19.92,11.4,4.17,15.36,528.19,12.02 1995-05-17 00:00:00,8.61,10.91,6.24,19.97,11.54,4.22,15.36,527.07,12.02 1995-05-18 00:00:00,8.47,10.75,6.13,19.6,11.13,4.16,14.94,519.58,11.91 1995-05-19 00:00:00,8.7,10.6,6.13,19.66,11.25,4.19,15.19,519.19,11.81 1995-05-22 00:00:00,8.87,10.94,6.2,20.05,11.43,4.29,15.15,523.65,11.79 1995-05-23 00:00:00,9.01,10.88,6.25,20.47,11.63,4.35,15.4,528.59,11.98 1995-05-24 00:00:00,8.91,10.78,6.2,20.24,11.67,4.3,15.91,528.61,12.06 1995-05-25 00:00:00,8.68,10.75,6.13,20.37,11.65,4.38,15.74,528.59,12.04 1995-05-26 00:00:00,8.66,10.61,6.12,20.0,11.51,4.3,15.74,523.65,11.77 1995-05-30 00:00:00,8.64,10.44,6.15,19.5,11.51,4.08,16.04,523.58,11.85 1995-05-31 00:00:00,8.61,10.33,6.3,19.58,11.87,4.16,16.59,533.4,12.04 1995-06-01 00:00:00,8.57,10.49,6.3,19.84,11.94,4.13,16.29,533.49,12.02 1995-06-02 00:00:00,8.33,10.47,6.16,19.76,11.83,4.08,16.0,532.51,11.91 1995-06-05 00:00:00,8.54,10.81,6.28,19.21,11.83,4.16,15.74,535.6,11.98 1995-06-06 00:00:00,8.43,10.94,6.25,19.24,11.92,4.08,15.68,535.55,11.94 1995-06-07 00:00:00,8.43,10.72,6.23,18.92,11.9,4.13,15.68,533.13,11.98 1995-06-08 00:00:00,8.43,10.67,6.17,18.81,11.92,4.13,15.94,532.35,12.0 1995-06-09 00:00:00,8.29,10.81,6.04,18.76,11.87,4.17,15.94,527.94,11.91 1995-06-12 00:00:00,8.24,10.98,6.16,19.0,11.9,4.11,15.94,530.88,11.87 1995-06-13 00:00:00,8.2,10.94,6.24,19.32,12.12,4.12,15.89,536.05,11.89 1995-06-14 00:00:00,8.24,10.84,6.27,19.58,12.26,4.12,15.98,536.47,11.91 1995-06-15 00:00:00,8.27,10.84,6.27,19.58,12.17,4.17,15.81,537.12,12.04 1995-06-16 00:00:00,8.29,10.91,6.23,19.5,12.35,4.27,15.85,539.83,12.17 1995-06-19 00:00:00,8.57,11.03,6.28,19.74,12.44,4.41,15.85,545.22,12.08 1995-06-20 00:00:00,8.5,11.78,6.21,20.58,12.28,4.49,15.94,544.98,11.83 1995-06-21 00:00:00,8.66,12.27,6.2,20.45,12.5,4.44,15.94,543.98,11.68 1995-06-22 00:00:00,8.77,12.21,6.21,20.53,12.77,4.51,16.06,551.07,11.64 1995-06-23 00:00:00,8.77,12.12,6.2,20.76,12.77,4.48,15.98,549.71,11.77 1995-06-26 00:00:00,8.8,11.96,6.17,20.68,12.48,4.41,15.94,544.13,11.83 1995-06-27 00:00:00,8.77,11.53,6.16,20.08,12.14,4.27,15.51,542.43,11.91 1995-06-28 00:00:00,8.89,11.59,6.16,20.24,12.26,4.32,15.51,544.73,12.17 1995-06-29 00:00:00,8.98,11.74,6.08,20.42,12.28,4.39,15.6,543.87,12.15 1995-06-30 00:00:00,9.28,11.54,6.16,20.21,12.12,4.44,15.47,544.75,11.91 1995-07-03 00:00:00,9.45,11.67,6.24,20.55,12.16,4.47,15.34,547.09,11.96 1995-07-05 00:00:00,9.77,11.56,6.31,20.37,11.94,4.45,14.92,547.26,11.94 1995-07-06 00:00:00,10.09,11.68,6.45,20.81,12.1,4.56,14.96,553.99,12.19 1995-07-07 00:00:00,10.37,12.09,6.56,20.95,11.65,4.7,14.92,556.37,12.08 1995-07-10 00:00:00,10.09,12.09,6.53,21.18,11.72,4.86,14.96,557.19,11.96 1995-07-11 00:00:00,9.95,11.71,6.45,21.0,11.92,4.74,15.0,554.78,12.04 1995-07-12 00:00:00,10.35,11.68,6.47,21.39,11.85,4.91,15.17,560.89,12.12 1995-07-13 00:00:00,10.51,11.84,6.4,21.84,11.94,4.92,15.38,561.0,12.12 1995-07-14 00:00:00,10.6,12.12,6.36,21.87,12.01,5.09,15.43,559.89,12.08 1995-07-17 00:00:00,10.51,12.18,6.51,22.58,12.08,5.35,15.38,562.72,12.19 1995-07-18 00:00:00,10.35,11.96,6.45,22.53,12.32,5.0,15.34,558.46,12.1 1995-07-19 00:00:00,10.19,11.31,6.36,21.32,12.39,4.64,15.17,550.98,12.21 1995-07-20 00:00:00,10.16,11.7,6.49,21.92,12.32,4.72,14.92,553.54,12.34 1995-07-21 00:00:00,10.19,10.87,6.55,21.81,12.41,4.52,15.09,553.62,12.36 1995-07-24 00:00:00,10.02,11.28,6.52,22.63,12.53,4.6,15.26,556.63,12.27 1995-07-25 00:00:00,10.28,11.37,6.52,22.81,12.57,4.73,15.51,561.1,12.21 1995-07-26 00:00:00,10.23,11.28,6.48,22.95,12.66,4.72,15.85,561.61,12.29 1995-07-27 00:00:00,10.4,11.63,6.48,23.32,12.84,4.74,15.72,565.22,12.27 1995-07-28 00:00:00,10.53,11.31,6.42,23.29,12.88,4.55,15.81,562.93,12.12 1995-07-31 00:00:00,10.56,11.18,6.45,22.92,12.88,4.44,15.94,562.06,12.23 1995-08-01 00:00:00,10.37,10.81,6.41,23.08,12.77,4.4,15.81,559.64,12.04 1995-08-02 00:00:00,10.37,11.03,6.27,22.63,12.66,4.37,15.68,558.8,12.02 1995-08-03 00:00:00,10.6,11.18,6.27,22.95,12.55,4.48,15.51,558.75,12.04 1995-08-04 00:00:00,10.53,11.0,6.3,22.87,12.68,4.61,15.64,558.94,11.91 1995-08-07 00:00:00,10.72,10.78,6.42,22.92,12.71,4.6,15.81,560.03,11.89 1995-08-08 00:00:00,10.69,10.56,6.45,23.13,12.68,4.59,15.81,560.39,11.87 1995-08-09 00:00:00,10.55,10.72,6.41,23.18,12.64,4.74,15.72,559.71,11.96 1995-08-10 00:00:00,10.46,10.63,6.34,23.03,12.62,4.62,15.68,557.45,11.94 1995-08-11 00:00:00,10.55,10.7,6.31,23.05,12.38,4.74,15.72,555.11,11.83 1995-08-14 00:00:00,10.53,10.78,6.41,23.37,12.54,4.85,15.98,559.74,11.91 1995-08-15 00:00:00,10.37,10.95,6.41,23.63,12.45,4.83,15.89,558.57,11.87 1995-08-16 00:00:00,10.83,11.09,6.37,23.71,12.27,4.85,15.6,559.97,11.81 1995-08-17 00:00:00,10.95,11.12,6.3,23.97,12.18,4.87,15.38,559.04,11.7 1995-08-18 00:00:00,10.81,11.19,6.26,23.5,12.16,4.77,15.43,559.21,11.74 1995-08-21 00:00:00,10.9,11.0,6.29,22.53,12.2,4.64,15.38,558.11,11.72 1995-08-22 00:00:00,11.11,11.15,6.29,22.71,12.27,4.88,15.34,559.52,11.7 1995-08-23 00:00:00,10.97,11.34,6.26,22.5,12.31,4.81,15.17,557.14,11.66 1995-08-24 00:00:00,10.86,11.4,6.31,22.13,12.27,4.72,15.47,557.46,11.7 1995-08-25 00:00:00,10.92,11.15,6.38,21.92,12.27,4.64,15.47,560.1,11.85 1995-08-28 00:00:00,10.9,10.72,6.42,21.44,12.43,4.42,15.43,559.05,11.74 1995-08-29 00:00:00,11.06,10.75,6.44,21.6,12.45,4.51,15.38,560.0,11.72 1995-08-30 00:00:00,10.97,10.81,6.45,21.44,12.45,4.58,15.55,560.92,11.7 1995-08-31 00:00:00,10.62,10.72,6.44,21.81,12.45,4.54,15.38,561.88,11.72 1995-09-01 00:00:00,10.58,10.7,6.42,21.68,12.4,4.41,15.47,563.84,11.89 1995-09-05 00:00:00,10.67,10.84,6.42,21.34,12.52,4.67,15.72,569.17,12.0 1995-09-06 00:00:00,10.74,10.9,6.49,21.26,12.54,4.59,15.79,570.17,11.98 1995-09-07 00:00:00,10.74,11.15,6.47,20.97,12.56,4.65,15.75,570.29,12.17 1995-09-08 00:00:00,10.83,11.15,6.42,20.86,12.58,4.69,15.62,572.68,12.15 1995-09-11 00:00:00,11.11,11.03,6.44,20.34,12.63,4.79,15.79,573.91,12.19 1995-09-12 00:00:00,11.11,10.7,6.56,20.57,12.58,4.73,16.22,576.51,12.38 1995-09-13 00:00:00,10.9,10.56,6.63,19.97,12.67,4.72,16.65,578.77,12.51 1995-09-14 00:00:00,10.86,9.97,6.82,19.7,12.97,4.66,16.82,583.61,12.6 1995-09-15 00:00:00,10.51,8.94,6.98,19.47,12.9,4.59,16.99,583.35,12.55 1995-09-18 00:00:00,10.25,9.14,6.82,19.86,12.88,4.52,17.37,582.77,12.38 1995-09-19 00:00:00,10.04,9.16,6.78,20.42,13.01,4.58,17.29,584.2,12.49 1995-09-20 00:00:00,9.95,9.13,6.78,20.2,12.92,4.57,17.41,586.77,12.45 1995-09-21 00:00:00,10.04,9.22,6.79,19.91,13.31,4.45,17.16,583.0,12.38 1995-09-22 00:00:00,9.88,9.24,6.89,19.81,13.13,4.41,17.5,581.73,12.34 1995-09-25 00:00:00,9.65,9.35,7.04,19.57,13.33,4.43,17.71,581.81,12.4 1995-09-26 00:00:00,9.48,9.32,7.02,19.6,13.42,4.33,17.67,581.41,12.23 1995-09-27 00:00:00,9.69,9.03,6.99,19.91,13.46,4.35,17.46,581.04,12.28 1995-09-28 00:00:00,9.81,9.41,6.96,19.81,13.26,4.49,17.5,585.87,12.36 1995-09-29 00:00:00,9.83,9.28,7.01,19.94,13.37,4.44,17.41,584.41,12.32 1995-10-02 00:00:00,9.74,9.38,6.99,19.73,13.26,4.33,17.41,581.72,12.23 1995-10-03 00:00:00,9.39,9.38,6.95,20.02,13.49,4.36,17.76,582.34,12.34 1995-10-04 00:00:00,9.2,9.07,7.0,19.78,13.62,4.23,18.23,581.47,12.53 1995-10-05 00:00:00,9.6,9.1,6.93,19.94,13.62,4.3,17.84,582.63,12.49 1995-10-06 00:00:00,9.88,8.89,6.92,19.86,13.94,4.22,17.76,582.49,12.55 1995-10-09 00:00:00,9.81,8.68,6.92,19.41,13.82,4.08,17.67,578.37,12.53 1995-10-10 00:00:00,9.88,8.65,6.89,19.15,13.73,4.11,17.71,577.52,12.57 1995-10-11 00:00:00,9.79,8.69,6.84,19.52,13.73,4.25,17.67,579.46,12.49 1995-10-12 00:00:00,9.53,8.8,6.92,19.62,13.8,4.3,17.59,583.1,12.45 1995-10-13 00:00:00,9.6,8.97,6.93,19.52,14.0,4.24,17.33,584.5,12.75 1995-10-16 00:00:00,9.83,9.0,6.92,19.83,14.0,4.26,17.76,583.03,12.7 1995-10-17 00:00:00,9.62,9.13,7.04,20.44,13.98,4.48,17.54,586.78,12.75 1995-10-18 00:00:00,9.44,9.32,7.07,20.34,14.09,4.7,17.59,587.44,12.75 1995-10-19 00:00:00,9.51,8.66,7.18,20.73,14.25,4.75,18.18,590.65,12.81 1995-10-20 00:00:00,9.51,8.76,7.11,20.12,14.39,4.69,17.97,587.46,12.92 1995-10-23 00:00:00,9.0,8.76,6.99,20.89,14.57,4.73,17.97,585.06,12.79 1995-10-24 00:00:00,9.37,8.76,6.93,20.68,14.93,4.79,17.93,586.54,12.92 1995-10-25 00:00:00,9.23,8.66,6.93,20.28,14.79,4.71,18.05,582.47,13.04 1995-10-26 00:00:00,9.02,8.69,6.88,20.23,14.5,4.81,17.8,576.72,12.79 1995-10-27 00:00:00,9.16,8.66,6.85,20.36,14.57,4.91,18.05,579.7,12.72 1995-10-30 00:00:00,9.6,8.79,6.95,20.73,14.73,5.05,17.97,583.25,12.96 1995-10-31 00:00:00,9.48,9.05,6.96,20.52,14.7,4.91,17.97,581.5,13.02 1995-11-01 00:00:00,9.55,9.13,6.85,20.44,14.75,4.83,17.97,584.22,13.09 1995-11-02 00:00:00,9.62,9.13,6.99,21.02,14.66,4.91,18.05,589.72,12.83 1995-11-03 00:00:00,9.71,9.1,6.9,21.42,14.48,4.89,18.18,590.57,12.98 1995-11-06 00:00:00,9.71,9.5,6.92,21.21,14.46,4.78,17.84,588.46,12.85 1995-11-07 00:00:00,9.69,9.88,6.99,20.84,14.75,4.57,17.84,586.32,12.72 1995-11-08 00:00:00,9.78,9.69,7.14,20.68,14.82,4.68,18.44,591.71,13.06 1995-11-09 00:00:00,9.83,9.81,7.15,20.81,14.68,4.86,18.23,593.26,13.06 1995-11-10 00:00:00,10.11,9.91,7.22,20.6,14.45,4.76,18.18,592.72,13.0 1995-11-13 00:00:00,10.11,10.19,7.22,20.6,14.81,4.73,18.4,592.3,13.15 1995-11-14 00:00:00,9.92,10.34,7.21,20.18,15.06,4.62,18.05,589.29,13.22 1995-11-15 00:00:00,9.78,10.22,7.26,20.2,15.56,4.62,18.44,593.96,13.39 1995-11-16 00:00:00,9.81,9.95,7.44,20.23,15.26,4.41,18.44,597.34,13.41 1995-11-17 00:00:00,9.81,10.0,7.37,20.12,15.28,4.29,18.7,600.07,13.67 1995-11-20 00:00:00,9.78,9.63,7.32,19.67,15.15,4.22,18.61,596.85,13.67 1995-11-21 00:00:00,10.3,9.66,7.41,19.99,15.47,4.32,18.74,600.24,13.73 1995-11-22 00:00:00,10.79,9.66,7.29,20.15,15.35,4.29,18.57,598.4,13.56 1995-11-24 00:00:00,10.83,10.05,7.26,20.28,15.31,4.32,18.57,599.97,13.54 1995-11-27 00:00:00,10.86,9.85,7.19,20.28,15.28,4.29,18.35,601.32,13.62 1995-11-28 00:00:00,10.74,10.0,7.37,20.52,15.44,4.49,18.74,606.45,13.62 1995-11-29 00:00:00,10.9,9.81,7.44,20.55,15.58,4.41,18.7,607.64,13.56 1995-11-30 00:00:00,10.93,9.53,7.39,20.44,15.69,4.28,18.91,605.37,13.32 1995-12-01 00:00:00,10.72,9.41,7.55,20.04,15.56,4.24,18.82,606.98,13.39 1995-12-04 00:00:00,10.76,9.88,7.65,20.33,15.9,4.32,19.25,613.68,13.54 1995-12-05 00:00:00,10.88,9.88,7.69,20.26,16.21,4.22,19.59,617.68,13.73 1995-12-06 00:00:00,10.88,9.69,7.85,20.26,16.44,4.45,19.66,620.18,13.86 1995-12-07 00:00:00,10.62,9.64,7.8,20.04,16.46,4.44,19.87,616.17,13.91 1995-12-08 00:00:00,10.46,9.85,7.74,20.49,16.35,4.64,19.83,617.48,14.08 1995-12-11 00:00:00,10.27,9.66,7.79,20.36,16.33,4.57,19.75,619.52,14.48 1995-12-12 00:00:00,10.16,9.5,7.92,20.18,16.44,4.49,19.83,618.78,14.55 1995-12-13 00:00:00,10.2,9.6,7.92,19.99,16.46,4.51,19.83,621.69,14.77 1995-12-14 00:00:00,10.2,9.56,7.85,19.83,16.58,4.36,19.79,616.92,14.29 1995-12-15 00:00:00,10.2,8.81,7.96,19.09,16.55,4.34,19.75,616.34,14.16 1995-12-18 00:00:00,10.06,8.06,7.99,18.83,16.15,4.27,19.49,606.81,13.9 1995-12-19 00:00:00,10.55,8.19,7.92,19.43,15.76,4.46,19.57,611.93,14.12 1995-12-20 00:00:00,10.48,8.16,7.7,18.91,15.81,4.28,18.76,605.94,13.84 1995-12-21 00:00:00,9.97,8.12,7.76,19.22,16.01,4.42,18.67,610.49,13.95 1995-12-22 00:00:00,9.97,8.06,7.88,19.3,15.67,4.44,19.06,611.95,14.01 1995-12-26 00:00:00,9.62,8.02,7.94,19.41,15.67,4.43,19.1,614.3,14.03 1995-12-27 00:00:00,9.29,8.1,7.95,19.46,15.74,4.36,19.23,614.53,14.12 1995-12-28 00:00:00,9.43,8.0,7.88,19.06,15.58,4.29,19.27,614.12,14.27 1995-12-29 00:00:00,9.88,7.97,7.97,19.33,15.49,4.31,19.15,615.93,13.97 1996-01-02 00:00:00,10.16,8.03,8.14,19.22,15.26,4.41,19.1,620.73,13.88 1996-01-03 00:00:00,10.32,8.03,8.15,18.88,15.87,4.27,19.15,621.32,13.92 1996-01-04 00:00:00,10.41,7.89,8.06,18.38,15.72,4.29,19.1,617.7,14.01 1996-01-05 00:00:00,10.34,8.56,8.07,18.75,15.72,4.24,19.06,616.71,14.36 1996-01-08 00:00:00,9.78,8.66,8.13,18.85,15.92,4.24,19.06,618.46,14.53 1996-01-09 00:00:00,9.61,8.19,8.05,18.35,16.01,3.94,18.97,609.45,14.25 1996-01-10 00:00:00,9.43,8.56,7.79,18.46,15.49,4.05,18.85,598.48,13.82 1996-01-11 00:00:00,9.57,8.75,7.81,18.46,15.17,4.25,18.97,602.69,13.9 1996-01-12 00:00:00,9.53,8.47,7.78,18.27,15.53,4.21,19.32,601.81,13.71 1996-01-15 00:00:00,9.43,8.53,7.78,17.58,15.67,4.05,19.32,599.82,13.56 1996-01-16 00:00:00,9.41,8.64,7.85,18.4,15.72,4.24,19.62,608.44,13.75 1996-01-17 00:00:00,9.43,8.5,7.9,18.54,15.83,4.17,19.62,606.37,13.82 1996-01-18 00:00:00,9.6,7.99,8.03,20.36,15.72,4.3,19.79,608.24,13.95 1996-01-19 00:00:00,9.81,7.47,8.22,21.58,15.65,4.51,19.7,611.83,13.97 1996-01-22 00:00:00,9.76,7.62,8.2,21.63,15.72,4.52,19.79,613.4,13.71 1996-01-23 00:00:00,9.99,7.91,8.08,21.79,15.9,4.4,19.92,612.79,13.43 1996-01-24 00:00:00,9.95,8.06,8.17,22.64,16.98,4.48,20.09,619.96,13.41 1996-01-25 00:00:00,9.85,7.56,8.28,22.03,16.85,4.39,20.26,617.03,13.56 1996-01-26 00:00:00,9.88,7.66,8.36,22.16,16.89,4.44,20.26,621.62,13.73 1996-01-29 00:00:00,10.09,7.28,8.29,22.53,17.07,4.44,20.6,624.22,13.65 1996-01-30 00:00:00,10.51,6.83,8.36,22.98,17.46,4.46,20.47,630.15,13.54 1996-01-31 00:00:00,10.41,6.91,8.5,22.95,17.39,4.54,20.43,636.02,13.82 1996-02-01 00:00:00,10.29,7.09,8.53,23.06,17.1,4.62,20.6,638.46,13.97 1996-02-02 00:00:00,10.5,7.31,8.54,23.19,17.37,4.57,20.43,635.84,13.9 1996-02-05 00:00:00,10.38,7.31,8.65,23.75,17.73,4.77,20.6,641.43,13.9 1996-02-06 00:00:00,10.45,7.41,8.76,24.27,17.59,4.74,20.86,646.33,14.01 1996-02-07 00:00:00,10.64,7.06,8.68,23.88,17.57,4.76,22.06,649.93,14.03 1996-02-08 00:00:00,10.69,6.97,8.8,24.06,17.89,4.86,21.89,656.07,14.36 1996-02-09 00:00:00,10.57,6.94,8.79,24.06,17.96,4.92,22.19,656.37,14.36 1996-02-12 00:00:00,10.78,7.09,8.82,24.43,17.91,4.89,22.06,661.45,14.49 1996-02-13 00:00:00,10.64,7.03,8.83,24.09,17.93,4.89,21.8,660.51,14.49 1996-02-14 00:00:00,10.59,6.91,8.72,24.22,17.68,4.85,21.5,655.58,14.36 1996-02-15 00:00:00,10.48,7.0,8.64,24.94,17.29,4.84,21.37,651.32,14.38 1996-02-16 00:00:00,10.45,6.88,8.58,25.02,17.11,4.81,21.07,647.98,14.16 1996-02-20 00:00:00,10.17,7.25,8.53,25.25,16.84,4.8,20.82,640.65,14.05 1996-02-21 00:00:00,10.24,7.41,8.62,25.49,17.25,4.91,21.29,648.1,14.23 1996-02-22 00:00:00,10.55,7.47,8.82,26.31,17.29,5.03,21.72,658.86,14.51 1996-02-23 00:00:00,10.88,7.47,8.83,26.63,17.0,5.08,22.57,659.08,14.29 1996-02-26 00:00:00,10.48,7.38,8.69,26.47,17.04,4.94,22.27,650.46,13.97 1996-02-27 00:00:00,10.31,7.16,8.61,27.3,17.0,4.92,21.97,647.24,13.79 1996-02-28 00:00:00,10.24,6.94,8.43,27.0,17.06,4.92,21.72,644.75,13.6 1996-02-29 00:00:00,10.67,6.88,8.36,26.0,17.0,4.85,21.67,640.43,13.82 1996-03-01 00:00:00,10.74,6.72,8.51,25.04,17.45,4.69,21.97,644.37,13.86 1996-03-04 00:00:00,10.9,6.56,8.68,24.62,17.59,4.73,22.62,650.81,13.79 1996-03-05 00:00:00,10.88,6.66,8.72,25.23,17.5,4.82,22.87,655.79,14.05 1996-03-06 00:00:00,10.95,6.55,8.68,24.8,17.43,4.76,22.13,652.0,14.29 1996-03-07 00:00:00,11.02,6.45,8.68,24.83,17.86,4.78,22.38,653.65,14.38 1996-03-08 00:00:00,10.9,6.5,8.33,24.22,17.27,4.67,21.52,633.5,13.77 1996-03-11 00:00:00,11.53,6.47,8.52,24.86,17.31,4.74,21.65,640.02,13.82 1996-03-12 00:00:00,11.51,6.45,8.36,24.22,17.11,4.7,22.04,637.09,13.86 1996-03-13 00:00:00,11.56,6.44,8.31,24.57,16.88,4.95,21.7,638.55,13.9 1996-03-14 00:00:00,11.53,6.41,8.37,24.78,16.84,4.89,21.57,640.87,14.08 1996-03-15 00:00:00,11.44,6.47,8.44,25.41,17.09,5.03,21.44,641.43,13.73 1996-03-18 00:00:00,11.93,6.53,8.68,26.42,17.15,5.17,21.74,652.65,14.16 1996-03-19 00:00:00,11.88,6.44,8.59,25.81,16.81,5.25,21.65,651.69,14.4 1996-03-20 00:00:00,11.6,6.31,8.61,24.8,17.04,5.14,21.74,649.98,13.99 1996-03-21 00:00:00,11.77,6.28,8.62,24.35,17.11,4.95,21.7,649.19,13.99 1996-03-22 00:00:00,11.7,6.34,8.73,24.22,17.18,4.97,21.74,650.62,14.14 1996-03-25 00:00:00,11.77,6.0,8.8,23.06,17.02,4.91,21.82,650.04,14.53 1996-03-26 00:00:00,11.91,5.97,8.8,23.48,17.2,5.05,21.91,652.97,14.95 1996-03-27 00:00:00,11.79,6.31,8.79,23.59,16.93,5.03,21.91,648.91,14.62 1996-03-28 00:00:00,12.07,6.05,8.72,23.27,16.86,5.02,21.87,648.94,14.55 1996-03-29 00:00:00,11.74,6.14,8.68,23.59,16.77,5.06,21.74,645.5,14.16 1996-04-01 00:00:00,11.56,6.38,8.84,23.4,16.95,5.05,22.0,653.73,14.42 1996-04-02 00:00:00,11.53,6.25,8.86,24.94,17.31,5.14,22.0,655.26,14.55 1996-04-03 00:00:00,11.32,6.14,8.94,25.39,17.11,5.13,22.17,655.88,14.58 1996-04-04 00:00:00,11.63,6.03,8.95,24.96,17.2,5.13,22.13,655.86,14.84 1996-04-08 00:00:00,11.86,6.09,8.87,25.31,16.75,5.1,21.61,644.24,14.49 1996-04-09 00:00:00,12.07,6.5,8.73,24.99,16.59,4.99,21.39,642.19,14.49 1996-04-10 00:00:00,12.26,6.5,8.54,24.59,16.04,4.99,20.75,633.5,14.31 1996-04-11 00:00:00,12.19,6.44,8.42,24.91,15.91,4.97,20.88,631.18,14.31 1996-04-12 00:00:00,12.24,6.38,8.56,23.64,16.11,4.97,21.31,636.71,14.23 1996-04-15 00:00:00,12.19,6.44,8.72,24.19,16.31,5.08,21.48,642.49,14.53 1996-04-16 00:00:00,12.12,6.47,8.66,24.49,16.56,5.17,21.27,645.0,14.53 1996-04-17 00:00:00,12.02,6.31,8.72,22.31,16.47,5.2,21.05,641.61,14.51 1996-04-18 00:00:00,12.09,6.19,8.83,22.37,16.65,5.35,21.09,643.61,14.23 1996-04-19 00:00:00,11.91,6.26,8.81,22.34,16.52,5.39,20.97,645.07,14.25 1996-04-22 00:00:00,11.84,6.28,8.86,22.74,16.36,5.54,21.01,647.89,14.25 1996-04-23 00:00:00,11.81,6.19,8.84,22.68,16.45,5.53,20.88,651.58,14.71 1996-04-24 00:00:00,11.72,6.06,8.8,22.63,16.31,5.48,20.41,650.17,14.64 1996-04-25 00:00:00,11.67,6.22,8.69,22.95,16.38,5.54,20.58,652.87,14.69 1996-04-26 00:00:00,11.74,6.19,8.68,22.84,16.47,5.57,20.58,653.46,14.66 1996-04-29 00:00:00,11.84,6.19,8.65,23.03,16.7,5.53,21.09,654.16,14.92 1996-04-30 00:00:00,11.7,6.09,8.61,22.84,16.81,5.56,21.82,654.17,14.77 1996-05-01 00:00:00,11.67,6.09,8.68,22.87,16.86,5.65,22.0,654.58,14.53 1996-05-02 00:00:00,11.57,5.94,8.63,22.87,16.27,5.48,21.65,643.38,14.36 1996-05-03 00:00:00,11.81,5.97,8.58,22.92,16.27,5.45,21.52,641.63,14.31 1996-05-06 00:00:00,12.42,6.41,8.5,22.68,16.31,5.49,21.52,640.81,14.36 1996-05-07 00:00:00,12.23,6.72,8.4,22.45,16.31,5.56,21.82,638.26,14.31 1996-05-08 00:00:00,12.23,6.69,8.47,22.52,16.7,5.61,22.21,644.77,14.53 1996-05-09 00:00:00,12.16,6.53,8.58,22.76,16.52,5.57,22.55,645.44,14.56 1996-05-10 00:00:00,12.4,6.81,8.66,22.63,16.65,5.64,22.51,652.09,14.65 1996-05-13 00:00:00,12.47,6.76,8.75,22.89,16.84,5.83,22.86,661.51,14.83 1996-05-14 00:00:00,12.37,6.88,8.79,23.1,16.81,5.84,22.77,665.6,14.87 1996-05-15 00:00:00,12.4,7.12,8.77,23.19,17.06,5.78,22.98,665.42,14.85 1996-05-16 00:00:00,12.33,7.09,8.9,23.1,17.13,5.75,23.37,664.85,14.71 1996-05-17 00:00:00,12.26,6.91,9.05,23.58,17.31,5.75,23.71,668.91,14.87 1996-05-20 00:00:00,11.9,6.99,9.4,23.85,17.38,5.73,23.76,673.15,15.31 1996-05-21 00:00:00,11.98,6.78,9.27,23.61,17.45,5.65,23.5,672.76,15.11 1996-05-22 00:00:00,11.83,6.51,9.46,23.48,17.7,5.74,23.46,678.42,15.4 1996-05-23 00:00:00,11.76,6.56,9.43,23.24,17.61,5.82,23.33,676.0,15.42 1996-05-24 00:00:00,11.81,6.69,9.47,23.13,17.82,5.82,23.24,678.51,15.26 1996-05-28 00:00:00,11.57,6.59,9.22,23.03,17.77,5.76,22.81,672.23,15.15 1996-05-29 00:00:00,11.65,6.22,9.16,22.73,17.57,5.75,22.86,667.93,14.93 1996-05-30 00:00:00,11.79,6.38,9.27,22.81,17.84,5.81,23.03,671.7,15.2 1996-05-31 00:00:00,11.6,6.53,9.22,22.71,17.77,5.83,22.86,669.12,14.87 1996-06-03 00:00:00,11.62,6.19,9.23,22.41,17.7,5.81,23.03,667.68,14.74 1996-06-04 00:00:00,11.5,6.05,9.34,22.52,17.93,5.79,22.94,672.56,14.89 1996-06-05 00:00:00,11.22,6.28,9.4,22.31,18.11,5.94,23.19,678.44,14.89 1996-06-06 00:00:00,10.89,6.06,9.61,21.54,17.93,5.88,23.37,673.03,14.8 1996-06-07 00:00:00,11.22,6.09,9.57,21.64,18.0,5.96,23.28,673.31,15.07 1996-06-10 00:00:00,11.22,6.03,9.58,21.83,18.14,5.92,23.19,672.16,14.98 1996-06-11 00:00:00,11.27,6.0,9.43,21.93,18.25,6.0,23.11,670.97,14.91 1996-06-12 00:00:00,11.22,6.06,9.5,21.91,18.25,6.14,23.11,669.04,14.76 1996-06-13 00:00:00,11.18,6.16,9.55,21.96,17.84,6.12,23.11,667.92,14.74 1996-06-14 00:00:00,11.03,5.99,9.55,21.62,17.89,6.04,22.85,665.85,14.65 1996-06-17 00:00:00,11.06,5.91,9.61,21.8,17.79,6.12,22.93,665.16,14.83 1996-06-18 00:00:00,11.22,5.69,9.54,21.54,17.48,6.01,23.19,662.06,14.8 1996-06-19 00:00:00,11.18,5.78,9.54,21.72,17.52,5.98,23.71,661.96,14.89 1996-06-20 00:00:00,11.1,5.69,9.54,21.43,17.48,5.98,23.45,662.1,15.02 1996-06-21 00:00:00,11.13,5.66,9.69,20.98,17.57,6.08,23.62,666.84,15.13 1996-06-24 00:00:00,10.94,5.56,9.73,21.19,17.66,6.1,23.88,668.85,15.09 1996-06-25 00:00:00,10.82,5.16,9.78,21.22,18.02,5.99,24.14,668.48,15.15 1996-06-26 00:00:00,10.87,4.97,9.68,20.98,18.02,5.92,24.14,664.39,15.26 1996-06-27 00:00:00,10.87,5.16,9.75,21.03,17.93,5.89,24.57,668.55,15.35 1996-06-28 00:00:00,10.8,5.25,9.66,21.06,18.07,5.9,24.49,670.63,15.24 1996-07-01 00:00:00,10.92,5.38,9.77,21.59,18.12,6.01,24.57,675.88,15.31 1996-07-02 00:00:00,10.87,5.25,9.8,21.27,18.16,5.97,24.4,673.61,15.55 1996-07-03 00:00:00,10.7,4.84,9.77,20.95,18.02,5.95,23.97,672.4,15.66 1996-07-05 00:00:00,10.54,4.88,9.59,20.82,17.66,5.81,23.45,657.44,15.44 1996-07-08 00:00:00,10.54,4.78,9.39,20.92,17.52,5.91,23.19,652.54,15.44 1996-07-09 00:00:00,10.68,4.75,9.48,21.06,17.25,5.89,23.11,654.75,15.53 1996-07-10 00:00:00,10.94,4.69,9.56,21.03,17.52,5.87,23.19,656.06,15.59 1996-07-11 00:00:00,10.68,4.47,9.39,20.42,17.52,5.62,22.68,645.67,15.68 1996-07-12 00:00:00,10.85,4.51,9.41,20.27,17.23,5.52,22.93,646.19,15.74 1996-07-15 00:00:00,10.49,4.3,9.11,19.33,16.79,5.43,22.07,629.8,15.5 1996-07-16 00:00:00,10.44,4.22,9.06,20.37,17.61,5.67,21.81,628.37,15.15 1996-07-17 00:00:00,10.59,4.22,9.27,20.02,17.34,5.75,21.55,634.07,14.93 1996-07-18 00:00:00,10.63,5.22,9.39,20.05,17.93,5.89,22.5,643.56,15.04 1996-07-19 00:00:00,10.61,5.19,9.2,19.94,18.02,5.94,22.42,638.73,14.98 1996-07-22 00:00:00,10.52,5.06,9.06,19.68,17.84,5.88,22.68,633.77,14.98 1996-07-23 00:00:00,10.49,5.12,8.89,19.2,17.29,5.51,22.93,626.87,14.85 1996-07-24 00:00:00,10.54,5.2,8.95,19.52,17.34,5.64,22.24,626.65,14.67 1996-07-25 00:00:00,10.63,5.25,9.03,22.04,17.29,5.82,21.81,631.17,14.71 1996-07-26 00:00:00,10.77,5.5,9.11,22.09,17.57,5.85,21.99,635.9,14.61 1996-07-29 00:00:00,10.87,5.56,8.96,22.28,17.39,5.74,21.81,630.91,14.5 1996-07-30 00:00:00,10.92,5.34,8.97,22.84,17.61,5.83,22.07,635.26,14.34 1996-07-31 00:00:00,10.96,5.5,9.21,22.87,17.43,5.79,21.9,639.95,14.43 1996-08-01 00:00:00,11.29,5.31,9.34,22.81,17.93,5.92,22.16,650.02,14.63 1996-08-02 00:00:00,11.48,5.41,9.65,23.16,18.12,6.06,23.11,662.49,14.87 1996-08-05 00:00:00,11.45,5.25,9.62,23.24,18.39,5.98,22.85,660.23,14.78 1996-08-06 00:00:00,11.5,5.38,9.69,23.32,18.43,6.09,22.85,662.38,14.74 1996-08-07 00:00:00,11.43,5.59,9.6,24.03,18.8,6.13,22.33,664.16,14.56 1996-08-08 00:00:00,11.43,5.53,9.51,24.22,18.71,6.15,21.73,662.59,14.5 1996-08-09 00:00:00,11.48,5.78,9.38,23.98,18.71,6.11,20.95,662.1,14.28 1996-08-12 00:00:00,11.43,5.75,9.52,23.93,19.21,6.15,21.21,665.77,14.46 1996-08-13 00:00:00,11.41,5.62,9.52,23.34,19.16,6.07,21.81,660.2,14.41 1996-08-14 00:00:00,11.67,5.69,9.56,23.74,19.39,6.13,21.81,662.05,14.33 1996-08-15 00:00:00,11.52,5.56,9.49,23.66,19.39,6.15,21.55,662.28,14.3 1996-08-16 00:00:00,11.64,5.62,9.51,23.47,18.91,6.1,21.73,665.21,14.59 1996-08-19 00:00:00,11.67,5.91,9.52,23.47,19.1,6.07,21.04,666.58,14.79 1996-08-20 00:00:00,11.93,5.88,9.52,23.58,18.96,6.06,20.78,665.69,14.84 1996-08-21 00:00:00,12.11,5.75,9.41,23.95,19.01,6.07,21.12,665.07,14.68 1996-08-22 00:00:00,11.93,5.81,9.48,24.03,19.05,6.14,21.55,670.68,14.81 1996-08-23 00:00:00,12.04,5.97,9.6,24.11,18.73,6.05,21.64,667.03,14.61 1996-08-26 00:00:00,11.88,6.03,9.59,24.01,18.5,6.03,21.81,663.88,14.46 1996-08-27 00:00:00,11.88,6.22,9.69,23.85,18.64,6.13,21.38,666.4,14.61 1996-08-28 00:00:00,11.97,6.22,9.67,24.54,18.46,6.17,20.69,664.81,14.48 1996-08-29 00:00:00,11.76,6.12,9.49,24.57,18.27,6.1,19.74,657.4,14.17 1996-08-30 00:00:00,11.74,6.06,9.31,24.41,18.04,6.02,19.83,651.99,14.44 1996-09-03 00:00:00,11.88,6.03,9.42,24.59,18.0,6.06,19.74,654.72,14.84 1996-09-04 00:00:00,12.0,6.03,9.44,24.46,18.0,6.06,19.91,655.61,14.86 1996-09-05 00:00:00,11.9,5.72,9.32,24.14,17.77,5.97,19.56,649.44,14.72 1996-09-06 00:00:00,11.74,5.75,9.49,24.65,18.23,6.02,19.74,655.68,14.88 1996-09-09 00:00:00,11.83,5.5,9.59,25.1,18.27,6.13,19.91,663.76,14.92 1996-09-10 00:00:00,11.69,5.38,9.63,25.21,18.09,6.11,20.43,663.81,14.77 1996-09-11 00:00:00,11.57,5.28,9.63,25.18,18.04,6.15,20.69,667.28,15.03 1996-09-12 00:00:00,11.69,5.09,9.74,25.02,18.04,6.32,20.69,671.15,15.06 1996-09-13 00:00:00,11.71,5.25,9.9,26.06,18.32,6.43,20.69,680.54,14.97 1996-09-16 00:00:00,12.0,5.59,9.9,26.19,18.36,6.46,19.82,683.98,15.08 1996-09-17 00:00:00,11.93,5.75,9.74,26.38,18.32,6.58,20.08,682.94,15.08 1996-09-18 00:00:00,11.86,5.88,9.77,26.57,18.18,6.7,20.43,681.47,15.19 1996-09-19 00:00:00,11.62,5.84,9.84,26.35,18.32,6.77,20.86,683.0,15.21 1996-09-20 00:00:00,11.43,5.72,9.98,26.25,18.5,6.78,20.86,687.03,15.39 1996-09-23 00:00:00,11.1,5.59,9.91,26.51,18.59,6.77,20.6,686.48,15.34 1996-09-24 00:00:00,11.05,5.62,10.07,26.49,18.46,6.72,20.78,685.61,15.28 1996-09-25 00:00:00,11.19,5.59,10.25,26.99,18.41,6.66,20.86,685.83,15.08 1996-09-26 00:00:00,11.15,5.59,10.17,26.54,18.68,6.48,20.95,685.86,14.88 1996-09-27 00:00:00,11.12,5.58,10.3,26.62,18.87,6.6,19.48,686.19,14.77 1996-09-30 00:00:00,11.15,5.55,10.24,26.57,18.77,6.48,19.56,687.33,14.75 1996-10-01 00:00:00,11.36,6.16,10.2,26.41,18.73,6.49,19.65,689.08,15.1 1996-10-02 00:00:00,11.48,5.91,10.34,26.86,18.77,6.62,19.91,694.01,15.19 1996-10-03 00:00:00,11.41,5.59,10.34,26.67,18.68,6.58,20.26,692.78,15.23 1996-10-04 00:00:00,11.34,5.7,10.53,27.02,19.01,6.7,20.34,701.46,15.57 1996-10-07 00:00:00,11.03,5.78,10.6,27.29,19.05,6.75,20.0,703.34,15.57 1996-10-08 00:00:00,10.65,5.81,10.51,27.4,19.01,6.65,19.91,700.64,15.5 1996-10-09 00:00:00,10.56,5.75,10.45,26.94,18.77,6.61,19.74,696.74,15.26 1996-10-10 00:00:00,10.98,6.05,10.36,27.26,18.64,6.57,19.91,694.61,15.21 1996-10-11 00:00:00,11.03,6.06,10.62,27.72,18.87,6.74,20.08,700.66,15.3 1996-10-14 00:00:00,11.03,6.31,10.69,27.74,19.23,6.71,20.08,703.54,15.52 1996-10-15 00:00:00,11.12,6.31,10.72,27.63,18.77,6.82,19.91,702.57,15.43 1996-10-16 00:00:00,11.1,6.44,10.69,27.23,18.77,6.78,20.26,704.41,15.48 1996-10-17 00:00:00,11.31,6.59,10.71,26.81,19.19,6.66,20.86,706.99,15.61 1996-10-18 00:00:00,11.27,6.64,10.71,27.61,19.01,6.62,21.12,710.82,15.83 1996-10-21 00:00:00,11.24,6.41,10.78,27.77,18.59,6.58,20.86,709.85,15.77 1996-10-22 00:00:00,11.05,6.22,10.76,27.1,18.23,6.51,20.43,706.57,15.59 1996-10-23 00:00:00,10.96,6.19,10.86,27.58,18.23,6.61,20.6,707.27,15.7 1996-10-24 00:00:00,11.31,6.19,10.82,27.18,17.81,6.71,20.6,702.29,15.46 1996-10-25 00:00:00,11.29,6.12,10.79,26.99,17.31,6.7,20.78,700.92,15.68 1996-10-28 00:00:00,11.24,6.12,10.69,27.18,17.45,6.71,20.78,697.26,15.63 1996-10-29 00:00:00,11.41,5.81,10.81,26.81,17.68,6.65,20.52,701.5,15.88 1996-10-30 00:00:00,11.26,5.72,10.81,26.97,17.58,6.69,20.6,700.9,15.79 1996-10-31 00:00:00,11.14,5.75,10.89,27.53,18.04,6.74,20.52,705.27,15.7 1996-11-01 00:00:00,11.28,6.06,10.88,27.21,18.0,6.75,20.78,703.77,15.63 1996-11-04 00:00:00,11.21,6.09,10.96,27.47,17.91,6.78,20.69,706.73,15.68 1996-11-05 00:00:00,11.38,6.38,11.12,27.79,18.32,6.95,20.78,714.14,15.63 1996-11-06 00:00:00,11.38,6.38,11.44,28.54,19.23,7.1,20.86,724.59,15.7 1996-11-07 00:00:00,11.38,6.47,11.57,28.62,18.87,7.05,20.95,727.65,15.82 1996-11-08 00:00:00,11.4,6.56,11.5,28.75,18.87,7.05,21.81,730.82,15.97 1996-11-11 00:00:00,11.35,6.5,11.48,28.78,18.87,7.05,21.73,731.87,16.09 1996-11-12 00:00:00,11.64,6.31,11.47,28.51,18.64,6.96,21.9,729.56,15.91 1996-11-13 00:00:00,11.59,6.39,11.66,28.83,18.64,7.12,22.16,731.13,16.13 1996-11-14 00:00:00,11.71,6.41,11.82,29.29,18.64,7.35,22.77,735.88,16.11 1996-11-15 00:00:00,11.68,6.25,11.74,31.03,18.66,7.32,22.59,737.62,16.13 1996-11-18 00:00:00,11.78,6.19,11.64,31.4,18.62,7.39,22.07,737.02,16.31 1996-11-19 00:00:00,11.73,6.22,11.59,32.98,18.98,7.66,21.9,742.16,16.44 1996-11-20 00:00:00,12.06,6.25,11.57,32.66,18.89,7.53,21.81,743.95,16.31 1996-11-21 00:00:00,11.85,6.12,11.44,32.98,19.17,7.39,21.04,742.75,16.24 1996-11-22 00:00:00,11.85,6.31,11.37,33.91,19.21,7.39,20.78,748.73,16.6 1996-11-25 00:00:00,12.02,6.25,11.68,33.73,19.76,7.54,20.78,757.03,16.96 1996-11-26 00:00:00,12.04,6.06,11.48,33.81,19.72,7.55,20.69,755.96,16.96 1996-11-27 00:00:00,12.04,6.12,11.54,33.83,19.67,7.64,20.95,755.0,16.76 1996-11-29 00:00:00,12.09,6.03,11.71,34.1,19.58,7.71,20.95,757.02,16.87 1996-12-02 00:00:00,12.11,6.28,11.62,34.88,19.44,7.75,20.78,756.56,16.96 1996-12-03 00:00:00,11.99,6.28,11.17,34.8,19.03,7.6,20.69,748.28,16.89 1996-12-04 00:00:00,11.87,6.25,11.13,34.66,19.12,7.53,20.86,745.1,16.78 1996-12-05 00:00:00,12.23,6.25,10.99,33.91,18.98,7.51,20.6,744.38,16.98 1996-12-06 00:00:00,11.95,6.28,11.02,33.3,19.03,7.51,20.42,739.6,16.96 1996-12-09 00:00:00,11.99,6.25,11.09,34.23,19.26,8.03,20.6,749.76,16.98 1996-12-10 00:00:00,12.25,6.12,11.05,33.75,19.3,8.04,20.68,747.54,16.8 1996-12-11 00:00:00,12.09,6.0,10.92,33.41,19.03,8.19,20.51,740.73,16.89 1996-12-12 00:00:00,12.14,5.97,10.89,32.44,18.57,7.96,20.07,729.3,16.89 1996-12-13 00:00:00,11.97,5.81,10.89,32.71,18.29,7.86,20.25,728.64,16.93 1996-12-16 00:00:00,11.8,5.66,10.71,31.8,17.97,7.54,20.16,720.98,16.89 1996-12-17 00:00:00,11.66,5.62,10.99,32.5,17.88,7.85,19.9,726.04,17.25 1996-12-18 00:00:00,11.57,5.78,11.17,33.94,18.07,8.12,19.99,731.54,17.38 1996-12-19 00:00:00,11.95,5.56,11.57,33.83,18.62,8.34,19.99,745.76,17.81 1996-12-20 00:00:00,12.04,5.88,11.51,33.09,18.34,8.21,20.34,748.87,17.81 1996-12-23 00:00:00,11.76,5.81,11.37,33.0,18.34,8.23,20.51,746.92,17.92 1996-12-24 00:00:00,11.76,5.78,11.48,33.33,18.39,8.34,20.34,751.03,17.92 1996-12-26 00:00:00,11.83,5.75,11.62,33.33,18.43,8.4,20.51,755.82,17.92 1996-12-27 00:00:00,11.83,5.78,11.6,33.19,18.57,8.28,20.6,756.79,17.85 1996-12-30 00:00:00,12.02,5.44,11.5,32.87,18.8,8.2,20.77,753.85,17.76 1996-12-31 00:00:00,12.11,5.22,11.19,32.42,18.29,8.12,20.34,740.74,17.52 1997-01-02 00:00:00,12.37,5.25,11.04,32.79,18.29,8.02,20.51,737.01,17.58 1997-01-03 00:00:00,12.92,5.44,11.21,34.05,18.48,8.31,20.68,748.03,17.63 1997-01-06 00:00:00,12.89,4.47,11.2,34.5,18.62,8.29,20.34,747.65,17.87 1997-01-07 00:00:00,12.82,4.38,11.43,34.96,18.66,8.35,20.51,753.23,17.92 1997-01-08 00:00:00,12.8,4.41,11.27,34.21,18.8,8.19,20.6,748.41,17.78 1997-01-09 00:00:00,13.23,4.44,11.44,34.64,18.94,8.09,20.34,754.85,18.39 1997-01-10 00:00:00,13.54,4.56,11.47,34.88,18.8,8.28,20.25,759.5,18.9 1997-01-13 00:00:00,13.44,4.53,11.68,35.06,18.48,8.23,20.51,759.51,18.43 1997-01-14 00:00:00,13.51,4.47,11.84,35.74,18.84,8.39,20.68,768.86,18.52 1997-01-15 00:00:00,13.49,4.31,11.64,35.23,19.17,8.31,20.6,767.2,18.59 1997-01-16 00:00:00,13.61,4.19,11.48,35.41,18.98,8.45,21.03,769.75,18.45 1997-01-17 00:00:00,13.87,4.19,11.72,35.36,18.89,8.56,21.2,776.17,18.39 1997-01-20 00:00:00,13.77,4.24,11.88,35.73,18.75,8.91,21.73,776.7,18.32 1997-01-21 00:00:00,13.42,4.31,11.94,35.95,19.67,9.33,22.07,782.72,18.52 1997-01-22 00:00:00,13.13,4.3,12.15,33.81,21.1,9.56,22.25,786.23,18.95 1997-01-23 00:00:00,12.78,4.31,11.78,32.47,20.64,9.31,24.68,777.56,18.39 1997-01-24 00:00:00,12.87,4.22,11.53,32.2,20.27,9.42,23.55,770.52,17.92 1997-01-27 00:00:00,12.66,4.16,11.36,31.19,20.09,9.44,23.72,765.02,18.45 1997-01-28 00:00:00,12.92,4.16,11.38,32.26,20.0,9.39,23.98,765.02,17.96 1997-01-29 00:00:00,13.01,4.16,11.72,33.46,20.22,9.55,23.81,772.5,18.45 1997-01-30 00:00:00,13.16,4.19,11.95,33.65,20.92,9.93,23.98,784.17,18.61 1997-01-31 00:00:00,13.11,4.16,11.71,33.57,21.24,10.02,24.25,786.16,18.52 1997-02-03 00:00:00,13.08,4.08,11.91,33.14,21.05,10.06,23.72,786.73,18.28 1997-02-04 00:00:00,12.97,3.85,11.75,32.87,21.65,10.13,22.86,789.26,18.48 1997-02-05 00:00:00,12.82,3.81,11.65,31.83,21.1,9.66,22.16,778.28,18.39 1997-02-06 00:00:00,12.72,4.0,11.77,31.31,21.65,9.54,22.51,780.15,18.35 1997-02-07 00:00:00,12.89,3.95,11.88,31.9,21.97,9.86,22.42,789.56,18.19 1997-02-10 00:00:00,12.7,3.91,11.75,30.62,21.93,9.6,22.42,785.43,18.03 1997-02-11 00:00:00,12.72,3.92,11.84,31.15,22.06,9.68,22.59,789.59,18.3 1997-02-12 00:00:00,12.77,3.94,11.98,31.1,22.39,9.81,22.42,802.77,18.55 1997-02-13 00:00:00,12.89,4.03,12.13,31.39,22.78,9.82,22.16,811.82,18.73 1997-02-14 00:00:00,13.2,4.08,12.03,31.1,22.64,9.61,22.42,808.48,18.71 1997-02-18 00:00:00,13.39,4.47,12.16,31.15,23.15,9.56,22.77,816.29,18.75 1997-02-19 00:00:00,13.56,4.41,12.16,30.8,22.73,9.58,22.86,812.49,18.6 1997-02-20 00:00:00,13.51,4.25,11.96,30.29,22.22,9.36,23.29,802.8,18.57 1997-02-21 00:00:00,13.56,4.09,11.89,29.52,22.22,9.33,23.98,801.77,18.69 1997-02-24 00:00:00,13.53,4.16,12.06,30.86,22.41,9.83,23.72,810.28,18.48 1997-02-25 00:00:00,13.34,4.22,11.99,31.42,22.13,9.77,23.55,812.03,18.64 1997-02-26 00:00:00,13.06,4.28,12.02,31.5,21.67,9.85,22.94,805.68,18.39 1997-02-27 00:00:00,13.53,4.25,11.89,30.67,21.26,9.44,23.03,795.07,17.99 1997-02-28 00:00:00,13.58,4.06,11.64,30.83,21.21,9.58,22.94,790.82,18.06 1997-03-03 00:00:00,13.77,4.03,11.7,31.13,21.53,9.77,23.2,795.31,17.88 1997-03-04 00:00:00,13.79,4.12,11.53,31.07,21.17,9.74,22.42,790.95,18.01 1997-03-05 00:00:00,13.68,4.25,11.78,31.21,21.9,9.91,22.42,801.99,18.24 1997-03-06 00:00:00,13.68,4.16,11.9,31.45,21.81,9.6,22.16,798.56,18.17 1997-03-07 00:00:00,13.79,4.12,11.98,31.04,22.36,9.5,22.07,804.97,18.08 1997-03-10 00:00:00,14.27,4.16,12.04,31.34,22.59,9.82,22.25,813.65,18.55 1997-03-11 00:00:00,14.49,4.09,11.95,31.31,22.46,9.66,22.59,811.34,18.51 1997-03-12 00:00:00,14.32,4.06,11.91,31.07,21.99,9.7,22.33,804.26,18.28 1997-03-13 00:00:00,14.01,4.09,11.78,30.64,21.67,9.79,21.89,789.56,18.01 1997-03-14 00:00:00,14.22,4.14,11.71,30.8,21.35,9.72,21.72,793.17,18.21 1997-03-17 00:00:00,14.34,4.12,11.87,29.92,21.35,9.87,21.54,795.71,18.17 1997-03-18 00:00:00,14.08,4.06,11.71,29.89,21.26,9.79,21.63,789.66,18.24 1997-03-19 00:00:00,14.08,4.03,11.77,29.57,21.17,9.5,22.33,785.77,18.24 1997-03-20 00:00:00,13.94,4.31,11.67,29.36,21.07,9.43,22.76,782.65,18.21 1997-03-21 00:00:00,13.75,4.16,11.68,28.42,20.89,9.23,22.67,784.1,18.64 1997-03-24 00:00:00,13.72,4.12,12.04,29.33,21.35,8.85,22.85,790.89,18.82 1997-03-25 00:00:00,13.34,4.12,11.94,29.14,21.21,8.87,23.2,789.07,19.05 1997-03-26 00:00:00,13.41,4.19,11.81,30.08,21.07,9.26,23.2,790.5,19.7 1997-03-27 00:00:00,13.08,4.66,11.51,29.38,20.34,9.21,23.2,773.88,19.47 1997-03-31 00:00:00,12.96,4.56,11.29,29.44,19.51,9.01,22.59,757.12,19.41 1997-04-01 00:00:00,13.15,4.38,11.21,29.33,20.24,9.16,22.24,759.64,19.25 1997-04-02 00:00:00,12.98,4.5,11.12,28.69,20.06,9.04,22.24,750.11,18.87 1997-04-03 00:00:00,12.87,4.72,11.19,28.12,19.92,9.34,22.24,750.32,18.42 1997-04-04 00:00:00,12.89,4.81,11.47,27.72,20.15,9.25,22.06,757.9,18.35 1997-04-07 00:00:00,12.72,4.88,11.43,28.42,20.1,9.42,22.41,762.13,18.91 1997-04-08 00:00:00,12.68,4.78,11.51,29.3,20.1,9.65,22.41,766.12,18.73 1997-04-09 00:00:00,12.72,4.75,11.58,28.55,19.78,9.63,22.85,760.6,18.66 1997-04-10 00:00:00,12.72,4.72,11.54,28.52,20.06,9.5,23.02,758.34,18.64 1997-04-11 00:00:00,12.56,4.56,11.13,28.61,19.27,9.33,22.24,737.65,18.24 1997-04-14 00:00:00,12.53,4.69,11.37,29.28,19.55,9.56,22.76,743.73,18.64 1997-04-15 00:00:00,12.72,4.61,11.7,29.57,20.29,9.54,22.94,754.72,18.82 1997-04-16 00:00:00,13.08,4.64,11.98,29.49,20.61,9.65,22.94,763.53,18.82 1997-04-17 00:00:00,13.01,4.75,11.81,29.54,20.38,9.64,23.2,761.77,18.55 1997-04-18 00:00:00,13.03,4.59,11.91,29.97,20.56,10.57,23.11,766.34,19.27 1997-04-21 00:00:00,12.84,4.5,11.87,29.46,21.12,10.57,22.85,760.37,19.23 1997-04-22 00:00:00,13.25,4.62,12.34,30.03,21.76,10.87,23.37,774.61,19.9 1997-04-23 00:00:00,13.29,4.53,12.18,30.54,21.39,11.31,23.2,773.64,19.77 1997-04-24 00:00:00,13.27,4.47,12.12,32.95,21.44,11.21,23.37,771.18,19.54 1997-04-25 00:00:00,13.25,4.38,12.11,32.33,21.44,11.16,22.33,765.37,19.0 1997-04-28 00:00:00,13.06,4.41,12.2,32.25,21.95,11.28,21.8,772.96,19.41 1997-04-29 00:00:00,13.29,4.42,12.58,33.97,22.13,11.69,23.98,794.05,20.04 1997-04-30 00:00:00,13.37,4.25,12.62,34.42,22.55,11.94,24.33,801.34,20.4 1997-05-01 00:00:00,13.25,4.25,12.48,34.61,21.99,11.89,24.33,798.53,20.13 1997-05-02 00:00:00,13.44,4.25,12.86,34.77,22.64,11.86,24.77,812.97,20.31 1997-05-05 00:00:00,13.51,4.25,13.25,35.63,23.01,11.81,25.55,830.29,21.07 1997-05-06 00:00:00,13.84,4.22,13.28,35.5,22.68,11.52,25.38,827.76,21.12 1997-05-07 00:00:00,13.49,4.12,13.16,34.77,22.27,11.35,25.2,815.62,20.89 1997-05-08 00:00:00,13.68,4.25,13.2,35.9,22.13,11.43,24.59,820.26,20.89 1997-05-09 00:00:00,13.65,4.26,13.25,35.92,22.55,11.47,25.47,824.78,20.95 1997-05-12 00:00:00,13.94,4.39,13.62,37.21,22.87,11.6,25.64,837.66,21.45 1997-05-13 00:00:00,14.06,4.39,13.82,37.24,22.96,11.57,25.73,833.13,21.63 1997-05-14 00:00:00,13.84,4.42,13.85,37.29,22.59,11.38,25.9,836.04,21.72 1997-05-15 00:00:00,14.04,4.44,14.1,37.29,22.78,11.5,26.08,841.88,21.36 1997-05-16 00:00:00,14.01,4.31,13.76,36.46,22.3,11.34,25.64,829.75,21.09 1997-05-19 00:00:00,14.08,4.25,13.87,36.19,22.67,11.31,26.16,833.27,21.45 1997-05-20 00:00:00,13.92,4.31,14.21,37.26,22.54,11.7,26.16,841.66,21.45 1997-05-21 00:00:00,13.82,4.22,14.04,37.56,21.98,11.82,25.29,839.35,21.59 1997-05-22 00:00:00,13.77,4.16,13.87,37.0,22.03,11.85,24.77,835.66,21.22 1997-05-23 00:00:00,14.11,4.22,13.96,37.19,22.17,12.07,25.47,847.03,21.72 1997-05-27 00:00:00,14.3,4.31,13.85,38.44,22.17,12.44,25.81,849.71,21.63 1997-05-28 00:00:00,14.06,4.25,13.87,38.66,21.98,12.36,26.08,847.21,21.31 1997-05-29 00:00:00,14.08,4.16,13.9,37.64,21.8,12.36,26.08,844.08,21.31 1997-05-30 00:00:00,14.08,4.16,13.73,37.1,22.21,12.18,25.64,848.28,21.5 1997-06-02 00:00:00,14.06,4.24,13.79,37.37,21.98,12.22,26.34,846.36,21.77 1997-06-03 00:00:00,14.27,4.17,13.79,36.19,22.12,11.86,26.6,845.48,21.72 1997-06-04 00:00:00,14.13,4.16,13.85,35.76,21.98,11.71,25.12,840.11,21.77 1997-06-05 00:00:00,14.25,4.17,13.7,35.55,21.93,11.84,25.64,843.43,21.81 1997-06-06 00:00:00,14.3,4.19,14.16,36.73,22.26,12.19,25.9,858.01,22.22 1997-06-09 00:00:00,13.94,4.16,14.3,37.26,22.81,12.29,26.08,862.91,22.31 1997-06-10 00:00:00,14.25,4.06,14.38,37.0,22.91,12.26,26.25,865.27,22.13 1997-06-11 00:00:00,14.66,4.08,14.47,37.37,23.65,12.48,26.51,869.57,22.49 1997-06-12 00:00:00,14.87,4.01,14.81,37.8,24.25,12.48,27.04,883.46,23.08 1997-06-13 00:00:00,14.85,3.95,15.04,38.18,24.57,12.73,27.3,893.27,23.13 1997-06-16 00:00:00,14.7,3.88,15.12,38.28,24.52,12.91,26.95,893.9,23.35 1997-06-17 00:00:00,14.63,4.09,15.12,38.55,24.06,13.18,26.95,894.42,23.08 1997-06-18 00:00:00,14.54,3.98,15.07,38.18,23.78,12.79,27.13,889.06,22.99 1997-06-19 00:00:00,14.54,3.94,15.26,38.44,24.34,12.7,26.95,897.99,22.81 1997-06-20 00:00:00,14.54,3.89,15.38,38.55,24.38,12.76,26.69,898.7,23.04 1997-06-23 00:00:00,14.2,3.85,14.9,37.64,23.69,12.58,25.99,878.62,22.4 1997-06-24 00:00:00,14.38,3.83,15.08,39.38,24.57,12.97,26.12,896.34,22.67 1997-06-25 00:00:00,14.23,3.78,14.87,39.41,24.13,12.81,25.9,888.99,22.11 1997-06-26 00:00:00,14.42,3.67,14.81,38.87,23.65,12.6,26.08,883.68,22.2 1997-06-27 00:00:00,14.54,3.67,14.85,39.14,23.83,12.52,26.51,887.3,21.93 1997-06-30 00:00:00,14.42,3.56,14.78,38.71,23.83,12.41,26.29,885.14,22.22 1997-07-01 00:00:00,14.61,3.3,15.12,39.38,23.37,12.27,26.78,891.03,22.95 1997-07-02 00:00:00,14.97,3.27,15.43,40.08,23.48,12.61,26.6,904.03,22.9 1997-07-03 00:00:00,14.73,3.42,15.84,40.67,23.76,12.73,27.26,916.92,23.44 1997-07-07 00:00:00,14.97,3.45,15.95,40.54,23.97,12.72,27.3,912.2,22.97 1997-07-08 00:00:00,15.27,3.44,15.87,41.07,24.25,12.89,27.43,918.75,23.06 1997-07-09 00:00:00,14.9,3.42,15.63,41.26,23.58,12.84,26.86,907.54,22.47 1997-07-10 00:00:00,14.88,3.31,15.87,41.07,23.09,12.76,27.17,913.78,22.42 1997-07-11 00:00:00,14.75,3.8,16.12,41.07,23.34,12.75,26.16,916.68,22.4 1997-07-14 00:00:00,14.84,3.91,16.21,40.86,23.3,13.35,26.51,918.38,22.04 1997-07-15 00:00:00,15.23,3.98,16.48,41.18,22.86,13.6,26.08,925.76,22.58 1997-07-16 00:00:00,15.48,4.11,16.9,41.87,22.95,14.58,25.59,936.59,22.77 1997-07-17 00:00:00,15.77,4.38,16.71,42.73,23.09,14.69,24.98,931.61,22.81 1997-07-18 00:00:00,15.51,4.34,16.24,44.82,22.28,13.8,25.2,915.3,21.93 1997-07-21 00:00:00,15.47,4.04,16.12,44.5,22.47,13.35,24.89,912.94,22.24 1997-07-22 00:00:00,15.93,4.14,16.41,44.18,23.3,14.16,26.64,933.98,22.81 1997-07-23 00:00:00,16.26,4.03,16.48,45.09,23.18,13.89,25.9,936.56,22.29 1997-07-24 00:00:00,16.07,3.95,16.41,46.24,22.91,13.56,26.25,940.3,22.49 1997-07-25 00:00:00,16.13,4.06,16.51,45.9,22.79,13.61,26.91,938.79,22.79 1997-07-28 00:00:00,16.51,4.11,16.34,45.04,22.42,13.46,26.91,936.45,22.99 1997-07-29 00:00:00,16.46,4.12,16.2,44.13,22.6,13.75,26.43,942.29,22.77 1997-07-30 00:00:00,16.82,4.34,16.15,45.47,22.81,13.86,27.08,952.29,23.2 1997-07-31 00:00:00,16.93,4.38,16.01,45.36,23.0,13.89,26.78,954.31,23.31 1997-08-01 00:00:00,16.74,4.8,15.78,44.93,22.6,13.81,26.64,947.14,23.08 1997-08-04 00:00:00,16.69,4.94,15.53,45.58,22.56,13.91,26.91,950.3,23.22 1997-08-05 00:00:00,16.83,4.94,15.47,45.68,22.74,14.08,27.17,952.37,23.06 1997-08-06 00:00:00,16.87,6.58,15.82,46.27,23.04,14.09,27.78,960.32,23.53 1997-08-07 00:00:00,17.03,7.3,15.58,46.14,22.47,14.14,27.3,951.19,23.26 1997-08-08 00:00:00,16.63,6.7,15.31,45.23,21.96,13.75,26.25,933.54,22.49 1997-08-11 00:00:00,16.46,6.14,15.44,44.26,21.59,13.58,26.73,937.0,22.96 1997-08-12 00:00:00,16.31,5.51,15.11,44.45,21.31,13.36,26.21,926.53,22.83 1997-08-13 00:00:00,16.21,5.91,15.24,44.85,21.12,13.37,25.68,922.02,22.19 1997-08-14 00:00:00,16.08,5.75,15.24,44.53,21.84,13.38,25.38,924.77,22.05 1997-08-15 00:00:00,15.66,5.81,14.47,42.95,20.83,13.05,25.03,900.81,21.55 1997-08-18 00:00:00,16.05,5.91,15.04,44.69,21.57,13.15,25.33,912.49,22.71 1997-08-19 00:00:00,16.31,6.11,15.15,46.39,21.97,13.64,25.33,926.01,22.73 1997-08-20 00:00:00,16.32,6.16,15.5,46.41,22.13,13.81,25.2,939.35,23.15 1997-08-21 00:00:00,16.28,6.0,15.06,45.44,21.97,13.54,25.33,925.05,22.76 1997-08-22 00:00:00,16.27,5.91,14.81,45.71,21.81,13.48,25.73,923.54,22.92 1997-08-25 00:00:00,16.58,5.76,14.64,45.12,21.46,13.41,25.46,920.16,22.76 1997-08-26 00:00:00,16.45,5.56,14.44,44.4,21.25,13.26,25.68,913.02,22.55 1997-08-27 00:00:00,16.1,5.67,14.33,44.64,21.55,13.22,25.94,913.7,23.1 1997-08-28 00:00:00,16.15,5.5,14.27,43.46,21.18,12.97,25.73,903.67,22.6 1997-08-29 00:00:00,15.78,5.44,14.28,43.56,21.06,12.99,25.2,899.47,22.35 1997-09-02 00:00:00,16.34,5.59,15.11,44.72,21.69,13.48,25.77,927.58,23.37 1997-09-03 00:00:00,16.11,5.62,15.3,44.5,21.53,13.41,26.29,927.86,23.42 1997-09-04 00:00:00,15.99,5.62,15.2,44.59,21.81,13.57,26.21,930.87,23.46 1997-09-05 00:00:00,16.02,5.55,15.13,44.53,21.6,13.49,26.25,929.05,23.37 1997-09-08 00:00:00,15.74,5.38,15.28,44.21,21.36,13.68,26.69,931.2,23.46 1997-09-09 00:00:00,15.85,5.45,15.24,42.97,21.44,13.7,26.91,933.62,23.56 1997-09-10 00:00:00,15.59,5.74,15.06,41.68,20.88,13.27,26.43,919.03,22.99 1997-09-11 00:00:00,15.36,5.59,14.84,42.11,21.04,13.44,26.25,912.59,22.69 1997-09-12 00:00:00,15.08,5.51,15.13,42.01,21.36,13.55,26.64,923.91,23.03 1997-09-15 00:00:00,15.37,5.38,15.15,41.36,21.48,12.84,26.47,919.77,22.92 1997-09-16 00:00:00,15.8,5.49,15.65,42.81,21.83,13.4,26.95,945.64,23.6 1997-09-17 00:00:00,15.56,5.45,15.91,42.81,21.48,13.08,27.21,943.0,23.6 1997-09-18 00:00:00,15.89,5.58,16.01,42.44,21.46,12.99,26.69,947.29,24.1 1997-09-19 00:00:00,15.93,5.49,16.03,42.65,21.78,13.28,26.82,950.51,24.03 1997-09-22 00:00:00,15.75,5.7,16.05,44.64,22.39,13.1,27.3,955.43,23.44 1997-09-23 00:00:00,15.75,5.44,15.78,44.37,22.02,13.31,27.21,951.93,23.78 1997-09-24 00:00:00,15.48,5.38,15.67,43.64,21.78,13.01,27.7,944.48,23.44 1997-09-25 00:00:00,15.48,5.28,15.27,43.67,21.39,13.04,27.87,937.91,23.33 1997-09-26 00:00:00,15.41,5.33,15.66,44.1,21.41,13.1,28.22,945.22,23.46 1997-09-29 00:00:00,15.71,5.51,15.83,45.12,21.55,13.21,28.79,953.34,23.67 1997-09-30 00:00:00,15.73,5.42,15.6,45.55,21.44,13.0,28.49,947.28,23.4 1997-10-01 00:00:00,15.9,5.38,15.71,44.48,21.51,13.15,28.22,955.41,23.85 1997-10-02 00:00:00,15.91,5.49,15.93,44.93,21.76,13.08,27.92,960.46,23.72 1997-10-03 00:00:00,15.61,5.53,15.83,44.83,22.16,13.26,28.0,965.03,23.81 1997-10-06 00:00:00,15.49,5.49,16.01,45.04,22.22,13.27,28.22,972.69,24.38 1997-10-07 00:00:00,15.75,5.45,16.5,45.9,22.85,13.41,29.57,983.12,24.4 1997-10-08 00:00:00,15.38,5.38,16.16,45.23,22.67,13.65,29.95,973.84,23.83 1997-10-09 00:00:00,15.17,5.44,16.19,44.96,22.48,13.65,29.85,970.62,23.67 1997-10-10 00:00:00,15.29,5.67,16.01,45.1,22.32,13.41,30.14,966.98,23.58 1997-10-13 00:00:00,15.45,5.67,15.9,44.91,22.53,13.43,29.85,968.1,23.58 1997-10-14 00:00:00,15.54,5.67,15.9,44.4,22.46,13.43,29.57,970.28,23.58 1997-10-15 00:00:00,15.43,5.95,15.76,43.7,22.06,13.33,28.61,965.72,23.67 1997-10-16 00:00:00,15.26,5.38,15.89,42.92,21.88,13.15,28.42,955.25,23.37 1997-10-17 00:00:00,15.21,5.03,15.9,41.01,21.67,12.99,28.95,944.16,23.24 1997-10-20 00:00:00,15.27,4.67,16.07,41.9,21.92,13.03,29.66,955.61,23.74 1997-10-21 00:00:00,15.35,4.76,16.19,45.2,22.22,13.61,30.52,972.28,23.78 1997-10-22 00:00:00,15.49,4.64,15.92,45.17,22.27,13.33,29.33,968.49,23.69 1997-10-23 00:00:00,14.82,4.44,15.44,43.13,21.74,13.32,28.81,950.69,23.06 1997-10-24 00:00:00,14.66,4.14,15.11,42.11,21.67,13.3,28.52,941.64,22.87 1997-10-27 00:00:00,13.24,4.19,14.2,38.68,20.44,12.66,26.66,876.99,21.18 1997-10-28 00:00:00,13.4,4.53,15.24,42.7,20.81,13.1,28.76,921.85,22.44 1997-10-29 00:00:00,13.7,4.38,14.87,42.22,21.23,12.86,27.66,919.16,22.03 1997-10-30 00:00:00,13.82,4.12,14.5,41.17,20.99,12.64,27.28,903.68,22.16 1997-10-31 00:00:00,14.0,4.26,14.81,42.33,21.32,12.77,28.14,914.62,22.44 1997-11-03 00:00:00,14.2,4.34,15.38,43.67,21.92,13.18,28.52,938.99,22.73 1997-11-04 00:00:00,13.98,4.49,15.69,43.81,22.34,13.19,28.42,940.76,22.85 1997-11-05 00:00:00,14.24,4.59,15.84,44.16,22.36,13.12,28.52,942.76,22.6 1997-11-06 00:00:00,13.91,4.75,15.76,43.51,22.36,12.97,28.19,938.03,22.37 1997-11-07 00:00:00,13.5,4.94,15.53,42.84,22.22,12.92,27.8,927.51,22.11 1997-11-10 00:00:00,13.47,4.67,15.36,42.06,22.18,12.79,27.23,921.13,21.95 1997-11-11 00:00:00,13.28,4.59,15.44,42.63,22.5,12.83,27.33,923.78,21.99 1997-11-12 00:00:00,12.72,4.41,15.07,41.6,21.69,12.69,26.99,905.96,21.65 1997-11-13 00:00:00,13.1,4.5,15.67,42.68,22.27,12.92,27.37,916.66,22.02 1997-11-14 00:00:00,13.47,4.61,15.89,43.7,23.26,13.1,27.9,928.35,22.41 1997-11-17 00:00:00,13.28,4.62,16.32,44.56,23.66,13.25,28.52,946.2,22.77 1997-11-18 00:00:00,13.33,4.51,15.94,43.97,23.49,13.16,27.8,938.23,22.87 1997-11-19 00:00:00,13.31,4.56,16.2,44.38,23.54,13.27,28.66,944.59,22.82 1997-11-20 00:00:00,13.53,4.62,16.49,45.1,23.96,13.45,28.76,958.98,23.05 1997-11-21 00:00:00,13.43,4.55,16.68,45.45,24.22,13.54,29.0,963.09,23.51 1997-11-24 00:00:00,13.28,4.41,16.42,44.4,23.91,13.31,28.28,946.67,23.12 1997-11-25 00:00:00,13.13,4.34,16.68,46.23,23.87,13.65,28.38,950.82,22.48 1997-11-26 00:00:00,12.95,4.38,16.83,47.26,23.38,13.91,28.19,951.64,22.5 1997-11-28 00:00:00,12.95,4.44,16.93,47.15,23.47,13.9,28.14,955.4,22.43 1997-12-01 00:00:00,12.91,4.44,16.96,48.47,24.12,14.13,28.76,974.77,22.63 1997-12-02 00:00:00,13.11,3.97,16.87,47.69,24.01,13.97,28.52,971.68,22.5 1997-12-03 00:00:00,13.16,3.94,16.73,47.52,24.05,14.21,28.85,976.77,22.96 1997-12-04 00:00:00,13.34,3.91,16.62,47.04,24.01,14.0,28.52,973.1,22.91 1997-12-05 00:00:00,13.44,3.95,16.83,48.33,24.31,14.06,28.47,983.79,23.53 1997-12-08 00:00:00,13.57,3.89,16.86,48.6,24.31,14.35,27.85,982.37,23.23 1997-12-09 00:00:00,13.69,3.81,17.1,47.52,24.24,14.18,27.33,975.78,22.94 1997-12-10 00:00:00,13.76,3.69,16.9,45.86,24.61,13.97,27.18,969.79,23.07 1997-12-11 00:00:00,13.27,3.64,16.62,43.76,24.31,13.66,26.99,954.94,22.94 1997-12-12 00:00:00,13.04,3.53,16.56,43.22,23.87,13.43,26.9,953.39,22.8 1997-12-15 00:00:00,13.35,3.48,17.1,43.43,24.24,13.37,27.61,963.39,23.09 1997-12-16 00:00:00,13.42,3.58,17.28,44.67,24.36,13.66,27.14,968.04,23.37 1997-12-17 00:00:00,13.83,3.48,17.19,43.92,24.75,13.32,26.7,965.54,23.07 1997-12-18 00:00:00,13.55,3.45,16.96,43.06,24.92,12.86,26.61,955.3,22.68 1997-12-19 00:00:00,13.43,3.42,16.73,43.97,24.71,12.64,26.7,946.78,22.15 1997-12-22 00:00:00,13.46,3.33,16.93,44.16,24.96,12.48,26.9,953.7,22.17 1997-12-23 00:00:00,13.38,3.23,16.29,42.46,24.64,12.11,26.23,939.13,22.13 1997-12-24 00:00:00,13.26,3.28,16.29,42.68,24.26,11.68,26.37,932.7,22.11 1997-12-26 00:00:00,13.19,3.33,16.23,43.79,24.19,11.86,26.61,936.46,22.31 1997-12-29 00:00:00,13.31,3.28,16.67,44.24,24.36,12.41,26.7,953.35,22.63 1997-12-30 00:00:00,13.45,3.3,17.12,44.4,24.71,12.79,28.09,970.84,22.91 1997-12-31 00:00:00,13.55,3.28,16.89,45.05,24.56,12.7,27.76,970.43,22.5 1998-01-02 00:00:00,13.72,4.06,17.03,45.48,24.26,12.88,27.57,975.04,22.75 1998-01-05 00:00:00,13.96,3.97,17.34,45.83,24.24,12.81,27.95,977.07,22.5 1998-01-06 00:00:00,13.64,4.74,17.11,45.32,23.87,12.88,26.94,966.58,21.69 1998-01-07 00:00:00,13.67,4.38,17.25,44.89,24.1,12.73,27.47,964.0,22.38 1998-01-08 00:00:00,13.09,4.55,17.09,44.86,24.38,12.82,27.47,956.05,21.9 1998-01-09 00:00:00,12.75,4.55,16.67,43.08,24.1,12.48,26.61,927.69,21.37 1998-01-12 00:00:00,12.73,4.56,17.13,43.11,24.59,12.72,27.09,939.21,21.6 1998-01-13 00:00:00,12.7,4.88,17.19,43.97,24.75,12.98,27.95,952.12,22.08 1998-01-14 00:00:00,12.74,4.94,17.12,44.19,24.8,12.88,28.09,957.94,22.36 1998-01-15 00:00:00,12.69,4.8,16.73,44.54,24.5,13.0,27.52,950.73,21.88 1998-01-16 00:00:00,12.8,4.7,16.89,45.21,25.27,13.29,28.09,961.51,22.36 1998-01-20 00:00:00,13.15,4.76,17.39,46.66,25.85,13.54,28.81,978.6,22.38 1998-01-21 00:00:00,13.21,4.73,17.39,43.11,25.4,13.46,28.33,970.81,22.45 1998-01-22 00:00:00,13.02,4.81,17.31,42.79,25.08,13.62,28.24,963.04,21.9 1998-01-23 00:00:00,13.31,4.88,17.05,42.71,24.94,13.58,27.81,957.59,21.71 1998-01-26 00:00:00,13.38,4.86,17.19,42.25,25.06,13.92,27.9,956.95,22.15 1998-01-27 00:00:00,13.46,4.78,17.55,41.55,25.15,14.26,27.61,969.02,22.2 1998-01-28 00:00:00,13.88,4.8,17.55,41.77,24.94,14.64,27.9,977.46,21.76 1998-01-29 00:00:00,14.58,4.62,17.75,42.28,24.94,14.56,28.24,985.49,22.34 1998-01-30 00:00:00,14.7,4.58,17.84,42.52,24.96,14.66,27.66,980.28,21.81 1998-02-02 00:00:00,15.03,4.42,18.08,43.3,25.66,15.21,27.95,1001.27,22.24 1998-02-03 00:00:00,14.83,4.58,17.85,42.79,25.92,15.31,26.94,1006.0,22.36 1998-02-04 00:00:00,14.72,4.56,17.69,42.33,25.64,15.4,27.14,1006.9,22.63 1998-02-05 00:00:00,14.62,4.58,17.65,42.87,25.68,15.27,26.99,1003.54,22.77 1998-02-06 00:00:00,14.69,4.62,17.88,42.28,26.01,15.53,27.09,1012.46,22.95 1998-02-09 00:00:00,14.56,4.8,17.74,42.28,25.68,15.44,27.37,1010.74,22.95 1998-02-10 00:00:00,14.7,4.86,17.84,43.52,26.01,15.64,27.23,1019.01,22.97 1998-02-11 00:00:00,14.64,4.75,18.06,44.31,25.8,15.61,27.28,1020.01,23.2 1998-02-12 00:00:00,14.88,4.84,18.07,44.38,26.02,15.59,27.57,1024.14,23.34 1998-02-13 00:00:00,14.87,4.88,17.91,44.17,25.84,15.47,27.95,1020.09,23.37 1998-02-17 00:00:00,14.69,4.91,17.97,44.01,26.0,15.16,27.33,1022.76,23.0 1998-02-18 00:00:00,14.41,5.14,18.06,44.33,26.38,15.19,26.99,1032.08,23.62 1998-02-19 00:00:00,14.22,5.11,17.91,44.33,26.4,15.21,27.14,1028.28,23.55 1998-02-20 00:00:00,13.98,5.0,18.0,44.27,26.21,15.24,27.14,1034.21,23.8 1998-02-23 00:00:00,13.69,5.31,17.88,44.38,26.94,16.04,26.99,1038.14,23.13 1998-02-24 00:00:00,13.7,5.33,17.67,44.22,27.36,16.13,26.94,1030.56,23.23 1998-02-25 00:00:00,13.89,5.58,17.75,45.41,27.78,16.69,27.85,1042.9,23.25 1998-02-26 00:00:00,13.98,5.88,17.72,45.52,27.82,16.8,28.19,1048.67,23.34 1998-02-27 00:00:00,14.19,5.91,17.9,45.06,28.2,16.65,27.95,1049.34,23.6 1998-03-02 00:00:00,13.71,5.69,17.62,43.98,27.97,16.37,28.33,1047.7,23.5 1998-03-03 00:00:00,13.99,5.78,17.78,44.06,27.87,16.6,28.62,1052.02,23.78 1998-03-04 00:00:00,13.87,6.11,17.57,42.71,27.43,16.17,28.38,1047.33,23.48 1998-03-05 00:00:00,13.7,6.01,17.65,42.69,27.03,15.73,28.0,1035.05,23.3 1998-03-06 00:00:00,13.85,6.11,18.08,42.33,27.64,16.26,29.1,1055.69,23.23 1998-03-09 00:00:00,13.82,5.69,18.14,41.47,27.76,15.64,30.05,1052.31,23.13 1998-03-10 00:00:00,14.17,6.01,18.2,42.07,28.06,16.01,30.72,1064.25,23.48 1998-03-11 00:00:00,13.99,6.53,18.26,42.76,28.41,15.85,30.92,1068.47,23.67 1998-03-12 00:00:00,13.81,6.75,18.3,43.25,28.43,16.08,33.03,1069.92,23.64 1998-03-13 00:00:00,13.53,6.78,18.1,42.98,28.1,16.18,32.98,1068.61,23.8 1998-03-16 00:00:00,13.94,6.67,18.34,43.68,28.01,16.11,33.27,1079.27,23.76 1998-03-17 00:00:00,14.08,6.59,18.49,43.52,28.08,15.79,33.46,1080.45,23.3 1998-03-18 00:00:00,14.05,6.74,18.42,43.82,27.99,16.06,32.69,1085.52,23.92 1998-03-19 00:00:00,14.36,6.69,18.5,44.38,27.87,16.11,32.16,1089.74,23.99 1998-03-20 00:00:00,14.16,6.59,18.86,44.03,28.34,16.07,33.03,1099.16,24.84 1998-03-23 00:00:00,13.96,6.53,18.59,43.74,27.76,16.48,32.4,1095.55,25.17 1998-03-24 00:00:00,13.85,7.0,19.09,44.65,27.64,16.69,32.5,1105.65,25.31 1998-03-25 00:00:00,13.96,6.79,18.95,45.73,27.38,17.45,32.84,1101.93,25.08 1998-03-26 00:00:00,13.88,6.64,19.05,45.33,27.19,17.34,33.22,1100.8,25.24 1998-03-27 00:00:00,13.69,6.74,19.3,45.03,26.75,17.25,32.5,1095.44,25.03 1998-03-30 00:00:00,13.21,6.86,19.71,44.55,26.82,17.28,32.84,1093.6,25.15 1998-03-31 00:00:00,13.31,6.88,19.92,44.81,27.48,17.58,32.79,1101.75,25.03 1998-04-01 00:00:00,13.25,6.88,19.98,45.06,27.45,17.75,33.51,1108.15,25.52 1998-04-02 00:00:00,13.46,6.83,20.28,45.65,28.53,17.94,33.94,1120.01,25.86 1998-04-03 00:00:00,13.35,6.76,20.19,45.17,28.81,18.27,34.33,1122.7,25.61 1998-04-06 00:00:00,13.46,6.56,20.06,45.73,28.5,17.67,32.98,1121.38,25.33 1998-04-07 00:00:00,13.11,6.38,20.13,45.17,28.15,17.14,32.55,1109.55,25.08 1998-04-08 00:00:00,13.27,6.25,19.9,45.09,27.57,17.47,32.31,1101.65,24.47 1998-04-09 00:00:00,13.55,6.41,19.99,45.89,27.85,17.49,32.26,1110.67,24.71 1998-04-13 00:00:00,13.79,6.61,20.06,44.95,27.59,17.41,31.73,1109.69,25.05 1998-04-14 00:00:00,14.7,6.74,20.02,45.84,27.15,17.38,31.73,1115.75,24.87 1998-04-15 00:00:00,15.18,6.86,20.0,47.35,26.77,17.95,32.12,1119.32,25.42 1998-04-16 00:00:00,14.89,7.16,19.79,46.51,26.19,18.01,31.97,1108.17,26.02 1998-04-17 00:00:00,14.82,6.99,20.16,46.49,27.15,18.1,32.12,1122.72,26.67 1998-04-20 00:00:00,14.94,7.25,19.9,47.97,26.7,18.59,32.16,1123.65,27.0 1998-04-21 00:00:00,15.16,7.25,19.89,50.91,26.47,18.64,32.31,1126.67,27.13 1998-04-22 00:00:00,15.22,6.88,19.69,49.51,26.7,19.42,33.7,1130.54,27.0 1998-04-23 00:00:00,15.28,6.92,19.51,50.69,26.51,18.57,33.94,1119.58,27.3 1998-04-24 00:00:00,15.1,6.99,19.38,50.64,26.42,18.1,33.51,1107.9,27.2 1998-04-27 00:00:00,14.92,6.94,19.05,49.75,25.95,17.74,33.08,1086.54,27.5 1998-04-28 00:00:00,14.75,6.74,18.75,49.91,25.81,17.66,30.53,1085.11,27.16 1998-04-29 00:00:00,14.85,6.75,19.02,49.86,25.89,17.78,30.24,1094.62,27.0 1998-04-30 00:00:00,14.99,6.84,19.69,49.99,26.75,17.71,30.48,1111.75,27.04 1998-05-01 00:00:00,15.05,7.0,19.64,50.42,26.26,17.61,30.24,1121.0,27.99 1998-05-04 00:00:00,15.13,7.26,19.5,50.32,26.47,17.3,30.24,1122.07,27.67 1998-05-05 00:00:00,14.94,7.42,19.25,50.83,26.33,17.24,30.87,1115.5,27.39 1998-05-06 00:00:00,14.76,7.58,19.19,50.68,25.93,16.97,30.05,1104.92,27.55 1998-05-07 00:00:00,14.54,7.55,18.92,50.63,26.02,16.38,29.09,1095.14,27.11 1998-05-08 00:00:00,14.65,7.61,19.22,51.87,26.61,16.85,29.72,1108.14,27.09 1998-05-11 00:00:00,14.82,7.74,19.22,51.57,26.23,16.55,29.76,1106.64,27.15 1998-05-12 00:00:00,14.92,7.53,19.28,51.71,26.51,16.83,30.29,1115.79,27.47 1998-05-13 00:00:00,14.89,7.61,19.56,52.68,27.1,17.08,29.86,1118.86,27.4 1998-05-14 00:00:00,14.77,7.51,19.44,54.38,27.01,17.47,30.0,1117.37,27.4 1998-05-15 00:00:00,14.36,7.39,19.09,54.01,26.42,17.57,28.85,1108.73,27.43 1998-05-18 00:00:00,14.2,7.12,19.07,53.87,26.65,16.91,29.04,1105.82,27.01 1998-05-19 00:00:00,13.88,7.34,19.15,54.03,26.54,16.99,29.14,1109.52,26.91 1998-05-20 00:00:00,13.88,7.39,19.8,53.38,26.73,16.85,31.11,1119.06,26.52 1998-05-21 00:00:00,13.86,7.22,19.86,53.43,26.63,16.97,30.77,1114.64,26.19 1998-05-22 00:00:00,13.84,6.97,19.64,52.71,26.47,16.81,30.63,1110.47,26.26 1998-05-26 00:00:00,13.72,6.67,19.14,52.3,26.23,16.43,31.01,1094.02,25.89 1998-05-27 00:00:00,13.78,6.69,19.35,51.98,26.07,16.9,31.59,1092.23,26.19 1998-05-28 00:00:00,13.62,6.86,19.5,51.9,26.28,16.96,31.06,1097.6,26.4 1998-05-29 00:00:00,13.46,6.66,19.27,50.79,25.93,16.66,31.35,1090.82,26.24 1998-06-01 00:00:00,13.32,6.56,19.15,50.66,25.88,16.45,31.88,1090.98,26.29 1998-06-02 00:00:00,13.43,6.72,19.12,49.95,25.69,16.8,31.64,1093.22,26.03 1998-06-03 00:00:00,13.28,6.58,18.79,49.22,25.43,16.56,31.3,1082.73,25.68 1998-06-04 00:00:00,13.2,6.7,19.28,50.17,26.04,16.91,31.3,1094.83,26.17 1998-06-05 00:00:00,13.33,6.72,19.59,51.38,26.84,16.94,32.26,1113.86,26.73 1998-06-08 00:00:00,13.39,6.81,19.51,51.36,26.56,16.83,31.78,1115.72,26.5 1998-06-09 00:00:00,13.32,7.06,19.6,51.55,27.05,17.1,32.26,1118.41,26.03 1998-06-10 00:00:00,12.95,7.01,19.7,50.68,27.33,16.9,31.88,1112.28,25.61 1998-06-11 00:00:00,12.67,6.95,19.46,50.14,27.36,16.76,31.11,1094.58,25.33 1998-06-12 00:00:00,12.61,7.03,19.7,50.25,27.41,16.85,31.35,1098.84,25.8 1998-06-15 00:00:00,12.37,6.88,19.38,48.52,26.79,16.88,31.73,1077.01,25.5 1998-06-16 00:00:00,12.25,7.0,19.7,47.55,27.41,17.66,31.88,1087.59,25.89 1998-06-17 00:00:00,12.55,7.03,20.23,47.98,27.87,17.89,32.26,1107.11,26.43 1998-06-18 00:00:00,12.4,6.83,20.32,47.03,28.11,17.92,32.26,1106.37,26.33 1998-06-19 00:00:00,12.51,6.76,20.11,45.87,28.39,18.6,31.16,1100.65,26.08 1998-06-22 00:00:00,12.42,6.84,19.9,46.74,28.06,18.82,31.25,1103.21,26.29 1998-06-23 00:00:00,12.52,6.95,20.36,48.3,28.67,19.79,31.73,1119.49,26.73 1998-06-24 00:00:00,12.32,7.06,20.75,48.41,29.19,20.62,32.46,1132.88,26.96 1998-06-25 00:00:00,12.29,7.14,20.74,48.6,28.88,19.95,31.93,1129.28,26.98 1998-06-26 00:00:00,12.76,7.05,20.81,48.84,28.88,20.52,31.73,1133.2,26.89 1998-06-29 00:00:00,12.82,7.17,21.0,49.33,28.91,21.11,31.78,1138.49,26.61 1998-06-30 00:00:00,12.8,7.17,21.0,49.63,27.78,21.29,31.73,1133.84,26.56 1998-07-01 00:00:00,13.0,7.49,21.07,50.47,27.5,21.49,32.36,1148.56,27.15 1998-07-02 00:00:00,12.86,7.25,21.02,49.79,27.66,21.07,33.66,1146.42,27.12 1998-07-06 00:00:00,12.61,7.59,21.3,49.14,27.17,21.18,33.13,1157.33,27.29 1998-07-07 00:00:00,12.75,7.62,21.47,49.22,27.99,21.21,32.55,1154.66,27.08 1998-07-08 00:00:00,12.88,8.14,21.63,49.71,27.43,21.59,32.36,1166.38,27.24 1998-07-09 00:00:00,12.76,7.92,21.82,50.6,27.2,21.81,31.83,1158.56,26.71 1998-07-10 00:00:00,12.49,8.02,21.75,51.22,26.98,22.24,32.6,1164.33,26.68 1998-07-13 00:00:00,12.69,8.48,21.69,51.6,26.96,23.1,31.93,1165.19,26.24 1998-07-14 00:00:00,13.32,8.36,22.04,51.71,27.87,22.89,30.24,1177.58,26.82 1998-07-15 00:00:00,14.04,8.61,21.81,50.57,28.48,23.06,29.38,1174.81,26.66 1998-07-16 00:00:00,14.19,9.38,22.2,51.17,29.05,23.06,29.23,1183.99,26.56 1998-07-17 00:00:00,14.08,9.22,22.42,51.95,29.12,23.17,30.43,1186.75,26.94 1998-07-20 00:00:00,13.94,9.06,22.14,52.73,28.95,22.99,30.63,1184.1,26.26 1998-07-21 00:00:00,13.92,8.91,21.55,55.38,28.63,22.16,30.92,1165.07,26.13 1998-07-22 00:00:00,13.95,8.75,21.18,55.09,29.14,22.94,30.43,1164.08,26.73 1998-07-23 00:00:00,13.83,8.73,20.87,53.54,28.16,22.2,28.94,1139.75,26.1 1998-07-24 00:00:00,13.71,8.67,21.26,53.71,28.74,22.36,30.63,1140.8,26.19 1998-07-27 00:00:00,13.62,8.61,21.33,54.25,28.91,22.94,30.82,1147.27,26.59 1998-07-28 00:00:00,13.49,8.41,21.06,54.22,28.98,22.05,30.72,1130.24,25.91 1998-07-29 00:00:00,13.52,8.78,20.75,55.27,29.45,21.75,29.81,1125.21,26.31 1998-07-30 00:00:00,13.69,9.12,21.17,57.65,29.8,22.29,30.05,1142.95,26.84 1998-07-31 00:00:00,13.45,8.66,20.74,57.27,29.0,21.6,30.0,1120.67,26.15 1998-08-03 00:00:00,13.17,8.78,20.75,57.38,28.39,21.3,30.34,1112.44,25.5 1998-08-04 00:00:00,12.73,8.55,19.81,54.81,27.59,20.53,28.8,1072.12,24.98 1998-08-05 00:00:00,12.66,9.0,20.11,55.65,28.13,20.49,29.09,1081.43,24.64 1998-08-06 00:00:00,12.69,9.22,20.59,56.18,28.34,21.0,29.13,1089.63,24.17 1998-08-07 00:00:00,13.0,9.12,20.43,55.91,28.51,20.8,28.89,1089.45,24.92 1998-08-10 00:00:00,13.09,9.48,20.36,56.24,27.92,20.52,27.59,1083.14,25.17 1998-08-11 00:00:00,12.75,9.75,20.24,55.64,27.78,20.32,26.68,1068.98,25.46 1998-08-12 00:00:00,12.76,10.02,20.72,55.42,28.18,20.64,26.29,1084.22,25.11 1998-08-13 00:00:00,12.48,9.86,20.37,54.64,28.44,20.42,26.44,1074.91,25.54 1998-08-14 00:00:00,12.31,10.12,20.27,54.28,28.25,20.48,26.1,1062.75,25.6 1998-08-17 00:00:00,12.59,10.48,20.71,54.18,28.79,21.08,26.1,1083.67,26.07 1998-08-18 00:00:00,13.05,10.64,21.04,55.8,28.7,21.86,26.53,1101.2,26.28 1998-08-19 00:00:00,13.25,10.25,21.16,56.26,28.6,21.72,26.1,1098.06,26.49 1998-08-20 00:00:00,13.38,10.16,20.97,55.45,28.44,22.11,25.72,1091.6,26.7 1998-08-21 00:00:00,12.94,10.75,20.78,55.37,28.67,21.73,25.04,1081.24,26.54 1998-08-24 00:00:00,12.66,10.3,20.81,55.67,28.84,21.68,25.86,1088.14,26.42 1998-08-25 00:00:00,12.42,10.2,20.94,55.61,28.63,22.16,26.97,1092.85,26.35 1998-08-26 00:00:00,12.18,10.1,20.97,56.67,28.95,22.11,26.29,1084.19,26.35 1998-08-27 00:00:00,11.55,9.38,20.07,54.23,27.85,21.46,25.38,1042.59,25.93 1998-08-28 00:00:00,11.81,8.55,19.91,53.07,27.94,20.68,24.17,1027.14,25.3 1998-08-31 00:00:00,11.67,7.8,18.55,48.76,25.99,18.85,21.48,957.28,24.51 1998-09-01 00:00:00,12.3,8.53,19.17,51.07,27.26,19.89,24.94,994.26,24.85 1998-09-02 00:00:00,12.12,8.89,18.63,52.18,27.38,19.76,23.93,990.48,23.97 1998-09-03 00:00:00,12.6,8.66,18.03,52.72,28.2,19.5,23.79,982.26,23.94 1998-09-04 00:00:00,12.42,8.78,17.59,51.69,28.67,18.98,23.84,973.89,24.74 1998-09-08 00:00:00,13.1,9.56,18.98,54.53,29.73,20.03,24.42,1023.46,25.25 1998-09-09 00:00:00,12.93,9.35,18.59,53.47,28.86,20.09,23.07,1006.2,25.72 1998-09-10 00:00:00,12.65,9.53,17.87,53.04,28.48,19.79,22.0,980.19,26.1 1998-09-11 00:00:00,13.26,9.41,18.37,54.8,28.77,20.48,23.02,1009.06,26.42 1998-09-14 00:00:00,13.65,9.3,18.34,55.91,29.76,20.83,24.23,1029.72,26.4 1998-09-15 00:00:00,13.69,9.55,18.1,56.29,29.4,21.28,23.21,1037.68,26.68 1998-09-16 00:00:00,13.83,9.33,18.52,56.51,28.95,21.26,23.98,1045.48,26.14 1998-09-17 00:00:00,13.22,9.0,18.14,54.88,28.72,20.62,23.26,1018.87,25.67 1998-09-18 00:00:00,13.21,9.19,18.05,53.99,28.91,20.7,23.31,1020.09,25.51 1998-09-21 00:00:00,13.25,9.23,18.37,55.51,29.87,21.19,23.45,1023.89,25.54 1998-09-22 00:00:00,13.28,9.25,18.52,55.31,29.47,21.45,24.27,1029.63,25.11 1998-09-23 00:00:00,14.05,9.58,19.49,57.18,29.92,22.32,23.69,1066.09,26.33 1998-09-24 00:00:00,13.71,9.62,18.95,56.53,29.66,21.63,23.98,1042.72,25.98 1998-09-25 00:00:00,13.98,9.69,19.26,57.8,29.31,22.21,23.55,1044.75,25.6 1998-09-28 00:00:00,14.14,9.77,19.44,57.86,30.13,21.87,23.98,1048.69,25.49 1998-09-29 00:00:00,14.1,9.88,19.28,56.91,29.87,22.17,23.84,1049.02,26.68 1998-09-30 00:00:00,13.83,9.53,18.51,55.64,29.47,21.62,22.77,1017.01,26.45 1998-10-01 00:00:00,13.28,8.92,17.58,54.28,28.77,20.44,22.92,986.39,26.42 1998-10-02 00:00:00,13.47,8.77,17.54,54.04,29.05,20.46,23.55,1002.6,27.34 1998-10-05 00:00:00,13.28,8.05,16.99,52.07,29.92,19.88,24.27,988.56,28.04 1998-10-06 00:00:00,14.12,8.14,17.16,51.63,29.97,19.18,25.63,984.59,28.37 1998-10-07 00:00:00,14.15,7.99,17.45,52.28,29.12,18.49,25.87,970.68,27.73 1998-10-08 00:00:00,14.27,7.7,16.65,53.47,28.55,17.92,26.01,959.44,26.85 1998-10-09 00:00:00,15.18,8.78,16.87,55.12,28.63,19.03,24.85,984.39,26.49 1998-10-12 00:00:00,15.29,9.36,17.23,56.67,28.79,19.6,24.52,997.71,26.89 1998-10-13 00:00:00,14.56,9.69,17.71,55.51,29.29,18.95,24.76,994.8,27.34 1998-10-14 00:00:00,14.22,9.35,18.06,56.51,30.08,19.68,23.79,1005.53,27.71 1998-10-15 00:00:00,15.02,9.16,19.08,59.1,31.12,20.72,24.71,1047.49,28.32 1998-10-16 00:00:00,15.44,9.17,19.5,58.86,31.31,20.64,25.92,1056.42,28.58 1998-10-19 00:00:00,15.21,9.38,19.4,60.35,31.19,20.22,25.53,1062.39,28.04 1998-10-20 00:00:00,15.26,9.02,19.14,59.7,30.6,19.7,26.26,1063.93,28.67 1998-10-21 00:00:00,15.22,9.28,19.52,61.78,30.44,20.91,27.56,1069.92,28.3 1998-10-22 00:00:00,15.1,9.19,20.13,61.4,31.31,21.61,28.38,1078.48,26.87 1998-10-23 00:00:00,14.82,8.88,20.14,61.29,31.55,20.9,27.8,1070.67,26.68 1998-10-26 00:00:00,14.65,9.36,19.98,61.94,30.89,21.03,27.47,1072.32,26.66 1998-10-27 00:00:00,14.78,8.81,19.9,62.52,30.72,20.72,26.5,1065.34,26.05 1998-10-28 00:00:00,14.51,9.2,19.77,63.3,30.44,20.76,25.87,1068.09,26.38 1998-10-29 00:00:00,15.1,9.11,20.2,64.41,31.03,20.95,26.74,1085.93,27.22 1998-10-30 00:00:00,15.44,9.28,20.36,64.3,30.7,20.8,26.11,1098.67,26.82 1998-11-02 00:00:00,15.04,9.41,20.33,64.25,30.72,20.79,27.71,1111.6,26.98 1998-11-03 00:00:00,15.2,9.45,20.59,63.81,30.96,20.67,27.76,1110.84,27.34 1998-11-04 00:00:00,15.5,9.67,20.65,64.03,30.84,20.73,27.71,1118.67,26.96 1998-11-05 00:00:00,15.63,9.55,21.13,64.52,30.77,20.9,28.53,1133.85,27.29 1998-11-06 00:00:00,15.51,9.52,21.03,65.02,30.86,21.48,27.9,1141.01,27.52 1998-11-09 00:00:00,15.45,9.16,20.65,65.64,30.96,21.75,27.71,1130.2,27.11 1998-11-10 00:00:00,15.33,8.78,20.72,67.65,31.38,22.02,28.82,1128.26,26.41 1998-11-11 00:00:00,15.43,8.39,20.29,68.14,31.33,21.82,28.58,1120.97,26.45 1998-11-12 00:00:00,15.26,8.5,20.16,68.46,31.81,21.37,29.4,1117.69,27.42 1998-11-13 00:00:00,15.41,8.92,20.52,68.27,31.97,21.61,30.56,1125.72,27.44 1998-11-16 00:00:00,15.06,9.0,21.05,69.11,32.21,21.38,29.4,1135.87,26.9 1998-11-17 00:00:00,15.43,8.7,20.94,68.51,32.06,21.98,28.58,1139.32,26.57 1998-11-18 00:00:00,15.48,8.86,21.35,68.95,32.47,21.56,28.72,1144.48,26.62 1998-11-19 00:00:00,15.5,8.94,21.54,68.76,32.72,21.95,28.92,1152.61,26.31 1998-11-20 00:00:00,15.6,8.83,21.57,69.44,33.62,22.32,28.87,1163.55,27.11 1998-11-23 00:00:00,15.7,9.06,22.02,72.23,33.24,23.42,29.01,1188.21,27.14 1998-11-24 00:00:00,15.22,8.98,21.93,71.66,32.21,23.91,28.82,1182.99,27.37 1998-11-25 00:00:00,15.24,8.78,21.69,72.31,31.28,24.41,29.35,1186.87,27.37 1998-11-27 00:00:00,15.28,8.77,21.48,73.72,31.07,25.16,30.27,1192.33,28.01 1998-11-30 00:00:00,14.51,7.99,21.03,71.61,30.69,23.97,29.93,1163.63,28.24 1998-12-01 00:00:00,14.27,8.53,21.2,73.67,30.6,25.44,31.67,1175.28,26.97 1998-12-02 00:00:00,14.58,9.0,21.16,72.61,30.41,24.9,30.75,1171.25,26.83 1998-12-03 00:00:00,14.28,8.42,20.49,70.9,30.06,23.99,30.56,1150.14,26.57 1998-12-04 00:00:00,14.08,8.19,20.97,71.22,30.88,25.02,30.51,1176.74,26.93 1998-12-07 00:00:00,14.51,8.44,21.13,72.5,30.83,26.24,30.51,1187.7,27.49 1998-12-08 00:00:00,14.57,8.02,21.05,72.93,30.06,25.77,30.41,1181.38,27.56 1998-12-09 00:00:00,14.51,8.0,20.94,73.47,30.17,26.25,30.42,1183.49,27.84 1998-12-10 00:00:00,14.21,8.0,20.58,71.55,29.94,25.85,29.5,1165.02,27.77 1998-12-11 00:00:00,14.26,8.44,20.72,72.85,30.15,26.33,29.35,1166.46,28.1 1998-12-14 00:00:00,14.26,8.12,20.2,70.63,29.8,25.14,28.77,1141.2,28.03 1998-12-15 00:00:00,13.89,8.39,21.67,71.55,30.51,25.91,29.64,1162.83,27.87 1998-12-16 00:00:00,14.01,8.2,21.41,71.28,30.27,26.28,29.25,1161.94,28.45 1998-12-17 00:00:00,13.77,8.36,21.95,72.01,30.22,26.4,29.89,1179.98,28.19 1998-12-18 00:00:00,13.56,8.8,22.54,74.39,30.03,27.07,30.56,1188.03,28.6 1998-12-21 00:00:00,13.61,8.77,22.89,76.48,29.04,27.59,30.76,1202.84,28.17 1998-12-22 00:00:00,13.53,9.5,23.05,79.03,29.09,27.2,30.71,1203.57,28.22 1998-12-23 00:00:00,13.99,9.95,23.59,80.22,29.77,28.2,31.29,1228.54,28.27 1998-12-24 00:00:00,14.13,9.81,23.49,81.5,29.98,27.85,31.39,1226.27,28.1 1998-12-28 00:00:00,14.09,10.22,23.66,82.06,30.43,27.97,31.24,1225.49,28.06 1998-12-29 00:00:00,14.18,10.2,24.11,81.15,31.64,27.6,31.83,1241.81,28.48 1998-12-30 00:00:00,14.51,10.02,23.89,80.98,31.73,27.31,31.05,1231.93,28.1 1998-12-31 00:00:00,14.57,10.23,23.82,79.95,31.68,27.25,31.73,1229.23,27.54 1999-01-04 00:00:00,14.41,10.31,23.48,79.35,31.24,27.7,31.58,1228.1,27.35 1999-01-05 00:00:00,14.71,10.83,23.98,82.23,31.36,28.78,31.63,1244.78,27.11 1999-01-06 00:00:00,15.29,10.44,24.45,81.85,31.73,29.72,32.46,1272.34,28.19 1999-01-07 00:00:00,15.1,11.25,24.04,82.47,31.43,29.57,31.63,1269.73,28.15 1999-01-08 00:00:00,16.64,11.25,23.9,81.33,31.45,29.45,32.12,1275.09,27.98 1999-01-11 00:00:00,17.24,11.47,23.28,82.06,30.29,28.98,31.73,1263.88,26.83 1999-01-12 00:00:00,16.66,11.53,22.82,80.25,30.15,27.94,31.05,1239.51,26.64 1999-01-13 00:00:00,16.39,11.62,22.55,80.44,29.09,28.25,31.24,1234.4,26.55 1999-01-14 00:00:00,15.95,10.35,22.66,78.33,29.49,27.85,30.08,1212.19,26.27 1999-01-15 00:00:00,16.82,10.33,23.53,80.2,30.22,29.42,30.66,1243.26,26.76 1999-01-19 00:00:00,16.8,10.22,23.69,83.37,30.39,30.58,29.11,1252.0,26.76 1999-01-20 00:00:00,16.39,10.14,23.44,84.34,30.6,31.95,29.84,1256.62,26.74 1999-01-21 00:00:00,16.42,9.7,23.19,85.43,30.22,31.1,29.45,1235.16,26.78 1999-01-22 00:00:00,15.88,9.69,22.85,77.95,29.66,30.7,30.22,1225.19,26.88 1999-01-25 00:00:00,16.24,9.85,23.47,78.92,29.75,31.8,31.24,1233.98,27.11 1999-01-26 00:00:00,16.27,10.12,23.82,80.5,31.17,33.71,30.81,1252.31,27.21 1999-01-27 00:00:00,15.99,10.03,23.7,77.32,31.59,33.13,31.15,1243.17,26.74 1999-01-28 00:00:00,16.37,10.22,24.15,77.49,32.02,34.18,30.9,1265.37,26.74 1999-01-29 00:00:00,16.33,10.3,24.49,79.46,32.16,34.38,30.27,1279.64,26.45 1999-02-01 00:00:00,16.21,10.23,23.86,77.95,31.62,33.98,29.59,1273.0,26.22 1999-02-02 00:00:00,15.99,9.8,23.82,76.64,31.33,32.93,30.22,1261.99,25.87 1999-02-03 00:00:00,16.32,10.05,24.02,75.99,31.87,32.77,30.13,1272.07,26.5 1999-02-04 00:00:00,17.02,9.47,23.38,73.53,31.68,31.25,29.55,1248.49,26.29 1999-02-05 00:00:00,17.58,9.08,22.88,71.98,31.73,31.43,29.4,1239.4,27.0 1999-02-08 00:00:00,17.38,9.44,22.78,72.51,31.73,32.47,29.74,1243.77,27.53 1999-02-09 00:00:00,17.31,9.3,22.42,70.67,31.24,31.45,29.3,1216.14,27.34 1999-02-10 00:00:00,17.01,9.58,22.87,73.33,31.66,31.56,29.89,1223.55,27.48 1999-02-11 00:00:00,16.96,9.91,23.35,77.51,32.06,31.97,29.4,1254.04,26.65 1999-02-12 00:00:00,16.63,9.42,22.79,75.01,32.06,30.99,28.82,1230.13,26.3 1999-02-16 00:00:00,15.88,9.58,23.12,74.9,32.82,30.7,28.91,1241.87,25.97 1999-02-17 00:00:00,15.54,9.25,23.19,74.03,32.49,29.47,29.16,1224.03,25.99 1999-02-18 00:00:00,16.09,9.0,23.5,75.66,32.7,28.63,29.16,1237.28,26.08 1999-02-19 00:00:00,16.3,9.3,23.44,74.52,32.82,29.03,30.42,1239.22,25.94 1999-02-22 00:00:00,16.34,9.61,24.28,77.26,33.32,29.24,30.66,1272.14,25.83 1999-02-23 00:00:00,16.25,9.61,24.05,76.83,33.11,30.54,30.66,1271.18,25.66 1999-02-24 00:00:00,16.3,9.36,23.58,75.44,32.49,30.04,30.27,1253.41,25.7 1999-02-25 00:00:00,16.14,9.23,23.44,75.39,32.0,30.16,29.74,1245.02,25.49 1999-02-26 00:00:00,15.91,8.7,23.42,73.71,32.35,29.5,29.16,1238.33,25.21 1999-03-01 00:00:00,16.25,8.44,23.57,73.11,32.37,29.81,29.5,1236.16,24.69 1999-03-02 00:00:00,15.57,8.66,23.19,72.84,32.23,29.19,28.62,1225.5,24.55 1999-03-03 00:00:00,15.22,8.55,23.06,72.4,32.09,29.4,28.91,1227.7,24.88 1999-03-04 00:00:00,15.37,8.36,23.55,74.25,32.94,29.91,29.3,1246.64,25.68 1999-03-05 00:00:00,15.79,8.3,24.3,77.45,33.72,30.44,30.95,1275.47,26.39 1999-03-08 00:00:00,15.54,8.6,24.56,77.67,33.75,31.24,30.32,1282.73,26.87 1999-03-09 00:00:00,14.88,8.53,24.84,79.11,33.2,31.79,29.84,1279.84,26.49 1999-03-10 00:00:00,15.27,8.14,24.78,78.81,33.15,31.71,29.65,1286.84,27.77 1999-03-11 00:00:00,15.32,8.05,25.09,79.41,33.65,31.72,29.65,1297.68,28.31 1999-03-12 00:00:00,14.68,8.3,25.16,77.29,33.56,31.47,29.99,1294.59,28.0 1999-03-15 00:00:00,14.83,8.52,25.8,79.03,34.46,32.59,30.28,1307.26,27.91 1999-03-16 00:00:00,14.85,8.88,25.78,78.59,34.2,33.21,31.06,1306.38,27.69 1999-03-17 00:00:00,15.42,8.52,25.41,77.31,34.08,32.83,31.2,1297.82,28.17 1999-03-18 00:00:00,15.96,8.88,25.78,77.13,34.03,33.88,31.25,1316.55,28.29 1999-03-19 00:00:00,16.65,8.38,26.25,73.19,34.5,33.63,31.11,1299.29,27.67 1999-03-22 00:00:00,16.25,8.77,25.86,72.51,34.72,33.95,30.96,1297.01,27.93 1999-03-23 00:00:00,15.71,8.25,24.97,71.81,34.2,32.72,30.28,1262.14,27.55 1999-03-24 00:00:00,16.1,8.42,25.02,73.6,34.36,33.64,29.79,1268.59,26.87 1999-03-25 00:00:00,16.55,8.45,25.43,74.38,34.86,35.35,30.57,1289.99,27.06 1999-03-26 00:00:00,15.91,8.31,25.26,74.85,34.6,35.0,31.15,1282.8,27.1 1999-03-29 00:00:00,16.42,8.85,26.25,77.24,35.6,36.29,31.69,1310.17,27.65 1999-03-30 00:00:00,15.96,8.97,26.55,77.53,35.26,36.54,31.06,1300.75,27.01 1999-03-31 00:00:00,16.18,8.98,25.92,76.96,35.43,35.21,30.52,1286.37,26.72 1999-04-01 00:00:00,16.06,9.02,26.16,76.85,35.66,36.42,30.08,1293.72,26.56 1999-04-05 00:00:00,16.01,9.27,26.86,79.87,35.95,37.3,30.28,1321.12,27.34 1999-04-06 00:00:00,16.13,9.5,26.55,79.46,35.71,36.96,29.79,1317.89,27.53 1999-04-07 00:00:00,17.28,9.28,26.83,80.98,35.95,36.66,29.16,1326.89,27.72 1999-04-08 00:00:00,16.89,9.22,26.68,81.2,36.85,37.16,29.99,1343.98,28.12 1999-04-09 00:00:00,17.21,9.19,26.29,80.9,37.13,37.03,29.79,1348.35,28.29 1999-04-12 00:00:00,17.7,9.06,27.3,79.65,37.75,36.54,30.77,1358.63,28.57 1999-04-13 00:00:00,18.34,8.66,27.4,78.16,37.37,35.41,29.69,1349.82,28.48 1999-04-14 00:00:00,20.92,8.88,26.73,77.89,35.88,33.74,29.6,1328.44,28.1 1999-04-15 00:00:00,21.14,8.94,26.36,77.18,34.93,34.92,28.82,1322.85,29.38 1999-04-16 00:00:00,20.7,8.86,26.07,73.98,35.28,34.04,28.38,1319.0,30.28 1999-04-19 00:00:00,21.48,8.47,24.55,72.4,34.2,31.83,28.62,1289.48,31.15 1999-04-20 00:00:00,20.77,8.52,25.62,73.71,36.47,32.66,28.92,1306.17,30.58 1999-04-21 00:00:00,20.67,8.6,26.61,74.63,38.18,32.22,30.33,1336.12,29.71 1999-04-22 00:00:00,21.01,9.1,26.54,84.45,38.84,33.38,28.77,1358.82,29.9 1999-04-23 00:00:00,21.21,9.8,26.45,86.73,38.55,33.79,28.23,1356.85,29.66 1999-04-26 00:00:00,20.92,10.23,26.6,91.13,37.96,34.58,28.62,1360.04,29.42 1999-04-27 00:00:00,21.75,11.44,26.36,92.05,38.63,33.01,29.45,1362.8,29.64 1999-04-28 00:00:00,24.35,11.02,26.13,89.01,37.7,32.27,29.26,1350.91,30.87 1999-04-29 00:00:00,25.41,10.75,25.22,88.93,37.39,32.24,28.77,1342.83,32.0 1999-04-30 00:00:00,24.45,11.5,24.69,90.83,36.94,31.95,28.77,1335.18,31.46 1999-05-03 00:00:00,23.86,12.39,24.75,92.16,37.04,31.38,29.16,1354.63,32.59 1999-05-04 00:00:00,24.08,11.62,24.59,92.05,36.0,30.67,28.87,1332.0,32.74 1999-05-05 00:00:00,23.72,11.75,25.54,92.11,35.62,31.09,29.01,1347.31,32.12 1999-05-06 00:00:00,25.12,11.12,25.37,90.96,36.99,30.62,28.57,1332.05,31.2 1999-05-07 00:00:00,25.17,11.47,25.76,94.44,36.42,31.06,28.62,1345.0,31.41 1999-05-10 00:00:00,25.64,11.31,25.48,95.04,35.38,31.31,27.46,1340.3,31.35 1999-05-11 00:00:00,25.64,11.19,26.0,96.07,35.17,31.38,26.97,1355.61,31.07 1999-05-12 00:00:00,24.75,11.62,25.82,98.02,35.88,31.63,27.65,1364.0,30.09 1999-05-13 00:00:00,24.43,11.55,25.62,106.94,36.09,31.09,28.92,1367.56,30.21 1999-05-14 00:00:00,24.63,11.1,24.83,104.0,35.29,30.2,29.74,1337.8,29.97 1999-05-17 00:00:00,24.88,11.1,24.9,103.24,34.87,31.09,29.31,1339.49,30.07 1999-05-18 00:00:00,24.14,11.31,24.43,103.68,34.34,30.92,29.4,1333.32,29.59 1999-05-19 00:00:00,24.04,11.3,25.31,102.54,35.48,31.16,29.21,1344.23,29.95 1999-05-20 00:00:00,22.98,10.62,24.94,101.23,36.1,30.82,29.31,1338.83,30.45 1999-05-21 00:00:00,23.62,10.98,24.4,100.15,35.15,30.48,29.84,1330.29,31.5 1999-05-24 00:00:00,23.77,10.48,24.25,97.26,34.39,30.35,29.45,1306.65,30.31 1999-05-25 00:00:00,22.39,10.38,23.99,96.15,33.37,29.96,29.21,1284.4,30.52 1999-05-26 00:00:00,22.71,11.02,24.16,102.7,34.2,30.84,28.62,1304.76,31.19 1999-05-27 00:00:00,22.32,10.88,23.6,100.85,34.3,30.79,28.04,1281.41,30.0 1999-05-28 00:00:00,21.67,11.02,23.83,100.85,35.2,31.71,27.65,1301.84,30.4 1999-06-01 00:00:00,23.6,11.2,24.03,97.37,35.2,30.84,28.33,1294.26,29.97 1999-06-02 00:00:00,23.35,11.64,23.92,98.89,34.84,30.82,28.23,1294.81,30.55 1999-06-03 00:00:00,23.57,11.86,24.11,98.19,35.6,30.01,28.04,1299.54,30.43 1999-06-04 00:00:00,24.41,12.03,24.57,100.85,36.75,31.26,28.28,1327.75,30.71 1999-06-07 00:00:00,24.06,12.23,24.47,104.76,36.46,31.53,28.19,1334.52,30.78 1999-06-08 00:00:00,24.85,11.92,23.99,101.39,35.25,31.19,27.8,1317.33,30.38 1999-06-09 00:00:00,24.83,12.11,24.06,101.72,34.89,32.34,27.51,1318.64,30.5 1999-06-10 00:00:00,25.52,12.03,23.67,100.2,34.01,31.38,27.46,1302.82,30.31 1999-06-11 00:00:00,24.83,11.61,23.75,99.38,34.53,30.7,27.66,1293.64,30.05 1999-06-14 00:00:00,25.61,11.36,24.31,100.42,34.44,30.48,27.51,1294.0,30.88 1999-06-15 00:00:00,25.49,11.52,24.42,100.74,34.46,30.53,27.85,1301.16,31.26 1999-06-16 00:00:00,25.59,11.98,25.03,104.93,34.53,31.83,27.95,1330.41,30.66 1999-06-17 00:00:00,26.55,11.6,25.41,104.49,34.94,32.56,28.39,1339.9,30.93 1999-06-18 00:00:00,26.62,11.78,25.2,104.98,34.49,33.4,28.15,1342.84,30.59 1999-06-21 00:00:00,24.98,11.62,24.74,108.46,34.23,34.95,27.46,1349.0,29.78 1999-06-22 00:00:00,24.53,11.35,24.81,107.26,34.51,33.99,28.19,1335.88,29.31 1999-06-23 00:00:00,24.36,10.92,24.79,106.88,34.39,33.79,28.0,1333.06,29.73 1999-06-24 00:00:00,23.79,10.58,25.02,106.55,34.8,33.25,27.66,1315.78,29.12 1999-06-25 00:00:00,24.68,10.55,24.47,107.04,34.44,33.38,27.95,1315.31,29.0 1999-06-28 00:00:00,24.92,10.64,24.88,106.55,34.53,34.09,28.78,1331.35,28.57 1999-06-29 00:00:00,24.8,11.35,25.7,108.34,35.72,34.58,29.71,1351.45,29.31 1999-06-30 00:00:00,24.39,11.58,26.48,112.37,37.24,35.44,30.25,1372.71,29.35 1999-07-01 00:00:00,24.8,11.33,26.13,113.89,37.03,35.83,29.56,1380.96,29.86 1999-07-02 00:00:00,24.73,11.58,26.41,114.98,37.03,36.15,29.42,1391.22,30.26 1999-07-06 00:00:00,25.12,11.85,26.78,113.89,36.81,35.19,29.42,1388.12,30.47 1999-07-07 00:00:00,24.19,12.47,27.72,115.46,37.19,36.27,29.91,1395.86,30.62 1999-07-08 00:00:00,24.61,13.62,27.5,116.5,36.37,36.37,30.15,1394.42,30.31 1999-07-09 00:00:00,24.68,13.91,27.53,119.44,36.51,36.64,30.1,1403.28,30.24 1999-07-12 00:00:00,24.51,13.62,27.12,119.81,37.03,37.01,30.3,1399.1,30.24 1999-07-13 00:00:00,24.46,13.42,27.16,119.87,36.77,36.79,30.54,1393.56,29.86 1999-07-14 00:00:00,24.36,13.98,27.22,119.32,36.53,37.3,30.05,1398.17,29.86 1999-07-15 00:00:00,23.94,13.31,27.63,118.51,36.77,37.08,30.2,1409.62,30.05 1999-07-16 00:00:00,24.06,13.27,27.94,118.46,37.05,39.07,30.69,1418.78,30.19 1999-07-19 00:00:00,24.04,13.61,28.21,117.05,36.46,38.65,30.15,1407.65,30.0 1999-07-20 00:00:00,23.82,13.22,27.63,111.5,36.65,36.66,30.39,1377.1,29.67 1999-07-21 00:00:00,23.7,13.52,27.49,112.15,37.03,37.21,31.52,1379.29,29.73 1999-07-22 00:00:00,24.24,13.1,27.03,107.69,37.38,35.78,31.13,1360.97,29.76 1999-07-23 00:00:00,23.45,13.33,27.08,108.51,37.17,35.46,30.78,1356.94,30.12 1999-07-26 00:00:00,23.1,12.73,26.8,106.94,36.96,34.43,30.98,1347.76,29.69 1999-07-27 00:00:00,23.89,13.42,27.33,109.76,36.77,34.9,31.08,1362.84,29.52 1999-07-28 00:00:00,24.24,13.6,26.8,111.61,36.39,35.36,31.18,1365.4,30.05 1999-07-29 00:00:00,23.72,13.47,26.33,109.0,35.44,34.16,30.54,1341.03,29.64 1999-07-30 00:00:00,23.6,13.92,25.62,109.27,34.61,33.72,30.44,1328.72,30.21 1999-08-02 00:00:00,24.21,13.94,25.36,106.28,34.94,33.32,30.15,1328.05,29.64 1999-08-03 00:00:00,24.51,13.81,25.36,103.78,35.8,33.3,29.95,1322.18,30.0 1999-08-04 00:00:00,25.3,13.45,25.09,103.02,34.96,33.38,29.86,1305.33,30.4 1999-08-05 00:00:00,25.03,13.69,25.75,107.1,34.51,33.69,29.71,1313.71,31.28 1999-08-06 00:00:00,24.76,13.53,25.15,107.48,34.94,33.45,28.98,1300.29,30.59 1999-08-09 00:00:00,25.94,13.61,24.7,106.34,35.37,32.93,30.05,1297.8,30.59 1999-08-10 00:00:00,26.27,13.85,24.65,103.83,35.06,32.59,30.44,1281.43,30.9 1999-08-11 00:00:00,27.42,14.92,24.93,107.31,35.15,33.08,29.95,1301.93,31.35 1999-08-12 00:00:00,26.78,15.0,24.7,105.4,36.01,32.12,30.1,1298.16,31.3 1999-08-13 00:00:00,26.29,15.02,25.33,107.36,37.09,33.28,29.76,1327.68,31.2 1999-08-16 00:00:00,26.44,15.12,25.81,110.84,37.19,33.13,30.1,1330.77,31.2 1999-08-17 00:00:00,26.39,15.08,26.2,111.83,37.47,33.23,29.12,1344.16,31.3 1999-08-18 00:00:00,26.44,15.03,26.25,107.8,36.66,33.4,27.95,1332.84,31.58 1999-08-19 00:00:00,25.77,14.69,26.09,106.99,36.52,32.93,27.66,1323.59,31.3 1999-08-20 00:00:00,26.76,14.8,26.52,105.95,37.71,32.76,27.8,1336.61,31.58 1999-08-23 00:00:00,26.14,15.19,27.4,108.29,38.61,33.96,27.46,1360.22,31.68 1999-08-24 00:00:00,25.72,15.1,27.41,106.17,39.33,36.22,26.92,1363.5,31.22 1999-08-25 00:00:00,25.13,15.35,28.05,106.49,40.31,37.45,27.95,1381.79,31.47 1999-08-26 00:00:00,24.98,15.53,27.96,106.99,39.81,37.18,27.71,1362.01,30.72 1999-08-27 00:00:00,25.23,16.19,27.4,107.91,38.95,36.64,27.61,1348.27,30.34 1999-08-30 00:00:00,25.35,15.52,26.86,107.21,39.02,36.25,26.78,1324.02,29.77 1999-08-31 00:00:00,25.52,16.31,26.4,108.4,38.97,36.37,26.68,1320.41,30.17 1999-09-01 00:00:00,25.6,17.16,26.72,110.74,38.69,36.29,26.48,1331.07,29.96 1999-09-02 00:00:00,25.42,17.64,26.55,109.54,38.12,36.07,26.24,1319.11,29.65 1999-09-03 00:00:00,25.42,18.38,27.36,112.14,38.64,37.67,27.07,1357.24,30.24 1999-09-07 00:00:00,25.7,19.09,28.16,114.87,38.81,37.03,26.34,1350.45,30.41 1999-09-08 00:00:00,25.89,18.62,28.41,113.78,38.31,36.25,26.3,1344.15,31.06 1999-09-09 00:00:00,25.94,18.89,28.15,117.27,38.42,36.96,26.69,1347.66,31.08 1999-09-10 00:00:00,26.02,19.36,28.02,117.48,37.93,37.33,26.15,1351.66,30.77 1999-09-13 00:00:00,25.84,18.75,27.87,115.2,37.85,36.88,25.9,1344.13,30.08 1999-09-14 00:00:00,25.84,19.45,27.44,116.01,37.33,37.35,25.51,1336.29,30.29 1999-09-15 00:00:00,25.77,18.84,27.27,114.82,37.04,36.39,26.3,1317.97,29.55 1999-09-16 00:00:00,25.3,19.2,27.56,113.13,36.5,36.94,26.05,1318.48,29.72 1999-09-17 00:00:00,25.89,19.24,28.21,109.1,36.61,37.89,26.39,1335.42,30.55 1999-09-20 00:00:00,25.67,19.76,28.68,113.25,36.78,38.33,26.64,1335.53,29.91 1999-09-21 00:00:00,24.69,17.31,28.03,110.63,35.83,37.18,25.9,1307.58,29.36 1999-09-22 00:00:00,24.51,17.58,27.97,108.95,35.54,37.74,25.71,1310.51,28.83 1999-09-23 00:00:00,23.97,15.83,27.44,106.17,34.73,35.83,24.82,1280.41,28.62 1999-09-24 00:00:00,23.67,16.24,27.74,108.78,34.3,35.73,25.07,1277.36,28.62 1999-09-27 00:00:00,24.17,15.33,28.21,107.04,35.07,35.93,25.51,1283.31,28.74 1999-09-28 00:00:00,24.07,14.91,27.91,107.48,34.88,36.2,24.97,1282.2,28.57 1999-09-29 00:00:00,24.14,14.77,27.45,104.48,34.95,35.17,24.33,1268.37,28.6 1999-09-30 00:00:00,24.53,15.83,27.95,105.3,35.02,35.58,23.94,1282.71,29.07 1999-10-01 00:00:00,23.82,15.43,27.67,102.47,35.83,35.36,24.63,1282.81,28.55 1999-10-04 00:00:00,24.66,16.14,28.3,104.32,36.02,36.37,24.97,1304.6,27.93 1999-10-05 00:00:00,25.35,16.99,28.51,106.17,35.9,36.07,24.68,1301.35,27.62 1999-10-06 00:00:00,24.51,16.8,29.16,103.72,36.11,36.81,26.05,1325.4,28.31 1999-10-07 00:00:00,24.36,16.59,28.73,101.27,35.92,36.84,26.0,1317.64,27.97 1999-10-08 00:00:00,24.36,16.39,29.41,98.77,37.64,37.3,26.98,1336.02,27.83 1999-10-11 00:00:00,24.91,16.67,29.03,99.43,37.49,37.06,27.23,1335.21,28.07 1999-10-12 00:00:00,24.59,16.92,28.61,95.73,36.88,36.37,26.98,1313.04,28.05 1999-10-13 00:00:00,24.09,16.01,28.19,91.43,36.33,35.78,26.2,1285.55,28.16 1999-10-14 00:00:00,24.31,18.3,28.32,93.12,36.06,35.63,26.35,1283.42,28.45 1999-10-15 00:00:00,24.31,18.64,27.29,93.87,35.57,34.6,25.27,1247.41,27.54 1999-10-18 00:00:00,24.14,18.31,27.73,93.12,36.02,34.53,25.81,1254.13,27.93 1999-10-19 00:00:00,24.12,17.12,27.83,93.22,38.02,33.91,26.59,1261.32,28.09 1999-10-20 00:00:00,24.69,18.78,28.67,93.12,39.07,36.25,26.0,1289.43,29.27 1999-10-21 00:00:00,24.69,19.03,29.06,79.19,39.95,36.57,26.15,1283.61,29.1 1999-10-22 00:00:00,24.83,18.49,29.62,81.75,39.93,36.42,26.79,1301.65,29.41 1999-10-25 00:00:00,24.76,18.62,29.53,81.69,40.12,36.32,26.89,1293.63,28.31 1999-10-26 00:00:00,24.19,18.76,29.62,83.11,40.14,36.29,26.59,1281.91,27.57 1999-10-27 00:00:00,23.2,19.09,30.28,80.93,39.76,35.71,26.74,1296.71,27.45 1999-10-28 00:00:00,22.93,19.47,31.35,82.62,39.64,35.31,27.23,1342.44,27.97 1999-10-29 00:00:00,24.02,20.03,31.94,85.5,39.93,36.37,27.23,1362.93,28.33 1999-11-01 00:00:00,24.14,19.41,30.5,84.2,40.04,36.29,26.35,1354.12,28.6 1999-11-02 00:00:00,24.04,20.06,30.41,82.51,39.07,36.37,26.44,1347.74,28.36 1999-11-03 00:00:00,23.68,20.38,30.97,82.13,39.74,36.15,26.89,1354.93,27.93 1999-11-04 00:00:00,23.7,20.91,31.09,79.68,40.14,36.05,25.9,1362.64,27.93 1999-11-05 00:00:00,24.27,22.08,31.53,78.54,40.21,35.98,26.54,1370.23,27.02 1999-11-08 00:00:00,23.75,24.09,31.59,81.86,39.81,35.34,26.44,1377.01,28.43 1999-11-09 00:00:00,23.82,22.41,31.44,81.58,39.5,34.92,25.71,1365.28,28.98 1999-11-10 00:00:00,23.62,22.86,31.59,84.53,39.26,34.23,25.66,1373.46,29.25 1999-11-11 00:00:00,24.15,23.06,31.59,82.78,39.57,35.21,25.71,1381.46,29.56 1999-11-12 00:00:00,24.72,22.66,31.92,83.54,39.65,35.05,26.0,1396.06,29.97 1999-11-15 00:00:00,25.36,22.36,31.94,81.96,39.56,34.18,25.56,1394.39,30.02 1999-11-16 00:00:00,25.16,22.8,32.92,82.45,40.56,34.31,26.49,1420.07,30.48 1999-11-17 00:00:00,24.87,22.56,33.29,81.69,40.37,33.4,26.79,1410.71,30.88 1999-11-18 00:00:00,24.84,22.41,32.86,85.4,39.89,33.38,27.13,1424.94,31.19 1999-11-19 00:00:00,25.31,23.11,32.46,90.57,40.2,33.79,27.08,1422.0,30.67 1999-11-22 00:00:00,25.63,22.66,33.05,94.0,40.25,35.29,28.5,1420.94,30.61 1999-11-23 00:00:00,25.83,23.2,32.45,92.42,39.77,35.21,28.31,1404.64,30.02 1999-11-24 00:00:00,25.49,23.67,32.27,91.06,40.03,36.03,27.62,1417.08,30.45 1999-11-26 00:00:00,25.88,23.76,31.97,91.5,39.44,35.8,27.38,1416.62,30.02 1999-11-29 00:00:00,25.78,23.64,31.39,90.79,40.15,35.44,27.23,1407.83,30.54 1999-11-30 00:00:00,25.98,24.47,30.68,89.81,39.65,35.78,27.13,1388.91,30.52 1999-12-01 00:00:00,26.5,25.76,31.71,90.12,39.17,36.62,27.07,1397.72,31.75 1999-12-02 00:00:00,27.54,27.55,31.75,91.73,38.25,37.25,28.8,1409.04,31.59 1999-12-03 00:00:00,28.24,28.75,32.12,97.48,37.17,37.77,29.14,1433.3,31.76 1999-12-06 00:00:00,28.8,29.0,32.35,101.08,37.0,37.5,28.95,1423.33,32.28 1999-12-07 00:00:00,28.88,29.45,33.01,101.62,35.68,36.54,29.0,1409.17,32.28 1999-12-08 00:00:00,28.47,27.51,33.3,103.07,34.86,36.05,29.16,1403.88,32.13 1999-12-09 00:00:00,29.1,26.31,33.84,98.79,35.64,36.44,28.31,1408.11,33.14 1999-12-10 00:00:00,30.09,25.75,34.76,94.98,36.07,36.88,29.1,1417.04,31.87 1999-12-13 00:00:00,30.05,24.75,35.08,95.59,35.62,37.96,27.82,1415.22,31.81 1999-12-14 00:00:00,29.63,23.72,35.33,95.2,36.0,38.78,27.67,1403.17,31.7 1999-12-15 00:00:00,31.34,24.25,34.02,93.24,36.18,42.61,27.33,1413.33,31.96 1999-12-16 00:00:00,30.24,24.58,34.8,95.15,36.16,44.67,26.79,1418.78,32.23 1999-12-17 00:00:00,30.92,25.0,35.81,95.85,36.26,45.28,27.57,1421.03,31.8 1999-12-20 00:00:00,30.45,24.5,36.13,95.16,35.15,44.3,27.9,1418.09,31.53 1999-12-21 00:00:00,30.17,25.62,37.2,95.96,34.78,45.53,27.48,1433.43,31.08 1999-12-22 00:00:00,30.37,24.99,37.32,94.11,34.99,46.19,27.62,1436.13,31.17 1999-12-23 00:00:00,31.38,25.88,37.23,94.65,36.52,46.15,27.92,1458.34,32.25 1999-12-27 00:00:00,30.96,24.83,37.7,95.64,37.36,46.81,28.71,1457.1,31.56 1999-12-28 00:00:00,31.93,24.55,37.17,95.69,36.48,46.17,28.86,1457.66,31.05 1999-12-29 00:00:00,32.43,25.17,37.01,94.98,35.33,46.34,28.02,1463.46,31.24 1999-12-30 00:00:00,31.95,25.08,36.64,94.77,35.73,46.22,27.97,1464.47,30.96 1999-12-31 00:00:00,32.92,25.7,36.58,94.0,35.64,45.87,27.77,1469.25,31.0 2000-01-03 00:00:00,32.11,27.99,35.45,101.08,35.23,45.8,29.05,1455.22,30.14 2000-01-04 00:00:00,32.25,25.62,34.04,97.65,33.94,44.25,28.31,1399.42,29.56 2000-01-05 00:00:00,34.11,26.0,33.98,101.08,34.3,44.72,27.62,1402.11,31.17 2000-01-06 00:00:00,33.66,23.75,34.43,99.34,35.38,43.22,28.86,1403.45,32.78 2000-01-07 00:00:00,33.56,24.88,35.76,98.9,36.88,43.79,29.64,1441.47,32.69 2000-01-10 00:00:00,33.47,24.44,35.75,102.83,35.95,44.11,29.05,1457.6,32.23 2000-01-11 00:00:00,33.27,23.19,35.81,103.7,36.07,42.97,28.95,1438.56,32.33 2000-01-12 00:00:00,32.97,21.8,35.93,104.13,35.73,41.58,28.61,1432.25,32.13 2000-01-13 00:00:00,32.37,24.19,36.34,103.04,35.68,42.36,28.31,1449.68,32.88 2000-01-14 00:00:00,31.73,25.11,35.69,104.24,35.81,44.11,28.51,1465.15,32.23 2000-01-18 00:00:00,30.94,25.99,34.98,100.87,34.9,45.31,28.56,1455.14,32.61 2000-01-19 00:00:00,30.99,26.64,35.15,104.13,35.02,42.04,28.71,1455.9,32.93 2000-01-20 00:00:00,29.15,28.38,34.5,103.7,35.14,41.65,28.46,1445.57,32.21 2000-01-21 00:00:00,29.9,27.83,34.07,105.88,34.35,40.77,28.46,1441.36,32.71 2000-01-24 00:00:00,29.13,26.56,32.65,105.88,31.99,39.78,27.82,1401.53,32.42 2000-01-25 00:00:00,28.68,28.06,32.74,103.8,32.58,40.4,27.03,1410.03,32.35 2000-01-26 00:00:00,28.24,27.55,33.43,101.74,31.91,39.05,26.74,1404.09,32.13 2000-01-27 00:00:00,27.96,27.5,33.5,98.9,30.77,38.8,26.64,1398.56,31.17 2000-01-28 00:00:00,27.57,25.41,31.67,97.21,32.29,38.61,26.2,1360.16,30.35 2000-01-31 00:00:00,27.64,25.94,31.67,97.82,32.89,38.46,26.89,1394.46,31.89 2000-02-01 00:00:00,28.61,25.06,32.15,95.85,32.41,40.45,26.79,1409.28,32.01 2000-02-02 00:00:00,29.68,24.7,31.69,98.9,32.63,39.61,26.0,1409.12,32.25 2000-02-03 00:00:00,28.76,25.83,32.91,102.06,31.84,40.72,26.05,1424.97,31.7 2000-02-04 00:00:00,28.06,27.0,33.46,100.75,31.39,41.87,25.8,1424.37,31.12 2000-02-07 00:00:00,27.11,28.51,32.26,99.44,31.13,41.89,25.51,1424.24,31.08 2000-02-08 00:00:00,26.25,28.72,32.4,103.64,31.36,43.2,26.25,1441.72,30.38 2000-02-09 00:00:00,25.72,28.16,31.69,102.38,30.57,40.86,26.79,1411.71,29.51 2000-02-10 00:00:00,26.07,28.38,32.01,103.91,29.81,41.65,27.28,1416.83,29.36 2000-02-11 00:00:00,26.94,27.19,31.61,100.64,29.7,39.27,27.08,1387.12,28.59 2000-02-14 00:00:00,28.76,28.95,31.76,101.24,29.77,39.14,26.84,1389.94,29.58 2000-02-15 00:00:00,29.4,29.75,32.5,102.17,30.57,38.73,26.93,1402.05,30.69 2000-02-16 00:00:00,29.35,28.53,32.07,100.97,30.61,38.36,26.79,1387.67,30.96 2000-02-17 00:00:00,30.62,28.72,30.96,101.84,30.37,39.14,27.03,1388.26,30.14 2000-02-18 00:00:00,29.9,27.81,29.57,98.14,29.7,37.35,26.98,1346.09,29.02 2000-02-22 00:00:00,28.86,28.45,30.64,96.83,30.16,36.86,27.33,1352.17,29.19 2000-02-23 00:00:00,28.31,29.06,30.85,94.86,29.2,37.03,26.93,1360.69,28.88 2000-02-24 00:00:00,27.74,28.8,30.96,96.39,28.29,37.23,26.79,1353.43,28.18 2000-02-25 00:00:00,27.94,27.59,29.81,94.21,27.62,35.88,25.8,1333.36,27.5 2000-02-28 00:00:00,28.28,28.31,30.6,91.16,27.9,35.98,26.2,1348.05,28.44 2000-02-29 00:00:00,27.27,28.66,31.29,89.63,27.62,35.12,25.31,1366.42,29.14 2000-03-01 00:00:00,27.76,32.58,31.05,87.45,28.14,35.68,25.65,1379.19,29.43 2000-03-02 00:00:00,26.59,30.5,31.97,89.95,28.26,36.69,24.87,1381.76,29.8 2000-03-03 00:00:00,27.04,32.0,32.94,94.21,28.19,37.77,24.92,1409.17,29.29 2000-03-06 00:00:00,26.57,31.42,32.58,89.9,27.04,35.61,24.42,1391.28,28.23 2000-03-07 00:00:00,25.85,30.72,30.8,89.85,26.27,36.49,24.13,1355.62,30.96 2000-03-08 00:00:00,26.82,30.5,30.89,92.68,27.23,37.55,24.14,1366.7,30.81 2000-03-09 00:00:00,26.94,30.56,30.58,94.21,27.88,39.29,24.83,1401.69,31.13 2000-03-10 00:00:00,26.67,31.44,31.22,91.81,27.18,39.69,24.33,1395.07,29.81 2000-03-13 00:00:00,27.09,30.33,30.69,93.94,26.85,38.51,24.63,1383.62,29.36 2000-03-14 00:00:00,24.38,28.56,30.11,94.75,27.9,37.38,24.28,1359.15,29.9 2000-03-15 00:00:00,25.5,29.06,31.66,93.34,29.51,37.47,26.26,1392.14,30.09 2000-03-16 00:00:00,27.44,30.39,32.95,95.08,30.61,37.47,26.96,1458.47,30.86 2000-03-17 00:00:00,25.75,31.25,33.16,95.96,30.52,39.05,26.11,1464.47,29.84 2000-03-20 00:00:00,26.1,30.75,33.41,98.35,30.42,38.26,26.31,1456.63,28.97 2000-03-21 00:00:00,27.19,33.74,35.68,99.01,30.78,40.37,27.15,1493.87,29.8 2000-03-22 00:00:00,26.62,36.05,35.77,99.66,31.55,40.57,26.51,1500.64,29.0 2000-03-23 00:00:00,27.66,35.33,37.93,100.54,30.69,43.96,26.51,1527.35,29.22 2000-03-24 00:00:00,28.48,34.67,37.71,105.22,27.71,43.89,26.06,1527.46,29.9 2000-03-27 00:00:00,28.68,34.89,37.44,110.67,26.75,40.89,25.61,1523.86,29.61 2000-03-28 00:00:00,28.31,34.78,36.98,106.86,27.62,40.99,25.72,1507.73,30.57 2000-03-29 00:00:00,28.71,33.99,38.64,103.81,27.26,42.12,26.31,1508.52,31.15 2000-03-30 00:00:00,28.61,31.44,37.63,107.08,27.14,40.62,28.44,1487.92,30.43 2000-03-31 00:00:00,27.96,33.95,36.89,103.26,26.95,41.75,27.6,1498.58,30.19 2000-04-03 00:00:00,28.56,33.33,38.17,106.42,27.71,35.71,28.59,1505.97,31.15 2000-04-04 00:00:00,28.14,31.83,36.51,105.72,29.44,34.8,28.83,1494.73,31.93 2000-04-05 00:00:00,27.54,32.6,36.34,109.04,29.73,33.94,29.08,1487.37,30.86 2000-04-06 00:00:00,28.24,31.3,37.19,107.08,28.72,33.79,29.13,1501.34,31.64 2000-04-07 00:00:00,27.04,32.94,37.65,107.4,28.41,34.99,28.49,1516.35,30.79 2000-04-10 00:00:00,26.94,31.25,37.8,106.53,29.15,33.82,28.69,1504.46,30.28 2000-04-11 00:00:00,28.01,29.86,38.32,104.13,30.01,32.95,29.33,1500.59,30.72 2000-04-12 00:00:00,27.99,27.31,37.16,99.23,29.53,31.19,29.48,1467.17,30.94 2000-04-13 00:00:00,27.79,28.45,35.68,96.5,29.25,31.14,28.83,1440.51,30.96 2000-04-14 00:00:00,26.89,27.97,34.55,91.59,28.12,29.12,28.83,1356.56,30.48 2000-04-17 00:00:00,25.72,30.97,36.03,97.59,29.73,29.81,28.98,1401.44,29.22 2000-04-18 00:00:00,24.93,31.72,37.1,97.26,31.26,31.65,28.44,1441.61,29.48 2000-04-19 00:00:00,25.03,30.28,36.86,91.59,31.55,30.92,27.94,1427.47,29.97 2000-04-20 00:00:00,25.9,29.72,37.57,90.72,31.31,31.02,29.43,1434.54,30.57 2000-04-24 00:00:00,25.82,30.12,38.42,92.9,32.17,26.18,29.97,1429.86,30.91 2000-04-25 00:00:00,27.27,32.08,39.35,98.14,32.34,27.26,29.63,1477.44,31.35 2000-04-26 00:00:00,26.12,30.33,38.7,96.39,31.74,26.72,29.87,1460.99,31.01 2000-04-27 00:00:00,25.97,31.69,38.29,96.5,31.84,27.43,29.63,1464.92,31.23 2000-04-28 00:00:00,25.82,31.01,37.28,97.26,31.64,27.41,29.03,1452.43,30.07 2000-05-01 00:00:00,25.25,31.08,37.78,97.7,31.72,28.86,29.28,1468.25,30.19 2000-05-02 00:00:00,25.72,29.47,38.18,97.15,32.29,27.45,29.68,1446.29,30.28 2000-05-03 00:00:00,25.43,28.76,37.0,94.32,31.93,27.72,29.72,1415.1,29.99 2000-05-04 00:00:00,25.82,27.67,36.51,93.88,31.86,27.68,29.03,1409.57,30.77 2000-05-05 00:00:00,26.62,28.28,37.46,94.1,32.22,27.94,29.68,1432.63,30.96 2000-05-08 00:00:00,26.42,27.53,37.29,95.85,33.66,27.43,30.02,1424.17,31.13 2000-05-09 00:00:00,26.42,26.36,37.07,95.2,33.37,26.64,29.82,1412.14,30.74 2000-05-10 00:00:00,26.05,24.83,36.01,89.96,32.79,26.01,31.01,1383.05,31.54 2000-05-11 00:00:00,26.02,25.7,36.23,91.22,33.01,26.67,31.65,1407.81,32.27 2000-05-12 00:00:00,26.06,26.91,37.16,91.22,32.79,27.04,31.26,1420.96,31.92 2000-05-15 00:00:00,27.12,25.25,38.4,91.0,33.08,27.26,31.16,1452.36,32.54 2000-05-16 00:00:00,26.75,26.42,38.58,95.2,33.49,27.31,30.96,1466.04,32.39 2000-05-17 00:00:00,26.12,25.34,38.14,94.21,33.39,26.6,30.86,1447.8,31.66 2000-05-18 00:00:00,26.22,25.19,37.79,92.63,33.95,26.01,31.27,1437.21,31.69 2000-05-19 00:00:00,25.97,23.5,36.9,92.96,34.16,25.56,31.06,1406.95,31.81 2000-05-22 00:00:00,25.45,22.49,35.56,95.42,33.44,25.22,31.46,1400.72,32.42 2000-05-23 00:00:00,24.75,21.45,35.56,93.77,33.49,24.83,31.21,1373.86,32.29 2000-05-24 00:00:00,24.67,21.92,36.09,95.74,34.62,25.76,32.25,1399.05,32.27 2000-05-25 00:00:00,24.05,21.82,36.09,93.01,34.38,24.16,31.6,1381.52,31.69 2000-05-26 00:00:00,22.9,21.59,35.25,93.4,33.92,24.14,32.45,1378.02,32.05 2000-05-30 00:00:00,23.2,21.89,36.45,96.89,34.24,24.9,32.45,1422.45,32.49 2000-05-31 00:00:00,23.35,21.0,37.43,93.72,34.45,24.58,32.2,1420.6,32.42 2000-06-01 00:00:00,23.05,22.28,37.25,92.58,33.76,25.37,31.7,1448.81,32.27 2000-06-02 00:00:00,24.77,23.14,37.52,95.03,32.34,26.05,31.9,1477.26,30.81 2000-06-05 00:00:00,24.4,22.83,36.67,98.53,32.34,26.27,31.26,1467.63,30.86 2000-06-06 00:00:00,24.53,23.22,36.41,98.14,32.38,27.36,32.45,1457.84,32.03 2000-06-07 00:00:00,24.07,24.14,36.54,105.68,32.22,27.7,32.8,1471.36,31.56 2000-06-08 00:00:00,23.7,23.7,36.19,104.59,32.67,27.04,33.7,1461.67,31.15 2000-06-09 00:00:00,23.18,23.94,35.47,104.53,33.15,27.04,32.75,1456.95,30.81 2000-06-12 00:00:00,23.07,22.8,35.47,103.79,32.64,26.27,33.33,1446.0,31.42 2000-06-13 00:00:00,22.53,23.62,36.41,104.2,33.88,26.67,34.0,1469.44,31.59 2000-06-14 00:00:00,23.93,22.61,36.27,101.31,34.55,27.7,34.54,1470.54,32.15 2000-06-15 00:00:00,24.47,23.09,36.9,102.02,34.88,28.44,34.44,1478.73,32.08 2000-06-16 00:00:00,24.82,22.8,36.36,98.91,34.48,28.51,34.74,1464.46,32.83 2000-06-19 00:00:00,24.02,24.16,35.74,105.13,34.72,28.95,34.69,1486.0,32.71 2000-06-20 00:00:00,24.02,25.31,36.27,101.63,34.09,29.45,32.66,1475.95,32.39 2000-06-21 00:00:00,22.94,27.82,35.16,100.0,34.6,31.71,33.55,1479.13,32.66 2000-06-22 00:00:00,23.27,26.88,34.67,97.65,34.09,31.38,33.3,1452.18,32.17 2000-06-23 00:00:00,24.17,25.84,35.47,97.7,34.55,30.53,33.4,1441.48,32.34 2000-06-26 00:00:00,23.07,27.07,35.52,99.92,36.76,31.24,34.59,1455.31,32.43 2000-06-27 00:00:00,23.93,25.88,35.03,95.85,37.7,30.97,34.49,1450.55,31.93 2000-06-28 00:00:00,23.7,27.22,35.95,99.37,37.76,31.02,34.47,1454.82,31.95 2000-06-29 00:00:00,23.18,25.62,35.38,99.56,37.94,30.33,33.95,1442.39,31.59 2000-06-30 00:00:00,23.18,26.19,37.69,95.69,39.22,31.43,35.29,1454.6,30.54 2000-07-03 00:00:00,23.77,26.66,36.98,95.63,38.9,31.43,34.14,1469.54,30.95 2000-07-05 00:00:00,23.58,25.82,35.61,91.7,38.88,30.84,34.44,1446.23,29.94 2000-07-06 00:00:00,23.13,25.91,35.79,88.43,38.38,31.8,34.84,1456.67,30.42 2000-07-07 00:00:00,22.07,27.22,36.59,91.76,38.4,32.22,33.7,1478.9,30.55 2000-07-10 00:00:00,23.97,28.57,37.39,90.23,38.57,31.21,32.51,1475.62,30.4 2000-07-11 00:00:00,25.97,28.47,37.26,89.08,38.57,31.09,32.26,1480.88,31.35 2000-07-12 00:00:00,25.68,29.44,38.33,91.37,37.75,31.56,31.56,1492.92,30.59 2000-07-13 00:00:00,26.02,28.25,37.44,90.83,36.67,31.41,32.06,1495.84,30.35 2000-07-14 00:00:00,26.32,28.84,36.72,90.78,35.34,31.02,33.1,1509.98,30.18 2000-07-17 00:00:00,24.57,29.16,38.28,92.14,36.32,30.72,34.05,1510.49,30.64 2000-07-18 00:00:00,24.22,28.62,37.26,90.23,36.57,30.84,34.14,1493.74,30.42 2000-07-19 00:00:00,24.47,26.34,37.61,94.98,35.87,28.73,34.44,1481.96,30.62 2000-07-20 00:00:00,24.37,27.57,38.73,102.4,35.37,29.39,34.74,1495.57,30.4 2000-07-21 00:00:00,25.37,26.78,38.6,100.22,35.51,28.41,35.14,1480.19,30.01 2000-07-24 00:00:00,25.33,24.34,38.51,98.25,36.36,27.72,34.64,1464.29,30.06 2000-07-25 00:00:00,25.02,25.03,38.19,97.82,35.99,27.11,35.04,1474.47,29.33 2000-07-26 00:00:00,24.47,25.03,37.17,95.96,34.74,26.64,34.79,1452.42,29.65 2000-07-27 00:00:00,25.17,26.0,37.44,96.34,35.36,27.26,35.19,1449.62,31.32 2000-07-28 00:00:00,24.77,24.16,36.32,97.65,36.05,27.38,35.53,1419.89,31.13 2000-07-31 00:00:00,24.17,25.41,36.86,98.04,35.82,27.43,36.38,1430.83,31.2 2000-08-01 00:00:00,24.82,24.66,37.61,96.51,36.5,26.99,36.43,1438.1,31.13 2000-08-02 00:00:00,25.52,23.62,37.08,99.78,37.15,27.26,36.23,1438.7,32.24 2000-08-03 00:00:00,25.07,24.0,37.71,101.31,37.34,27.6,35.83,1452.56,31.69 2000-08-04 00:00:00,25.03,23.69,38.06,101.2,37.17,27.16,35.78,1462.93,31.79 2000-08-07 00:00:00,25.98,23.97,37.53,101.58,37.29,27.5,35.43,1479.32,31.47 2000-08-08 00:00:00,27.79,23.38,38.33,103.93,37.21,29.12,35.29,1482.8,31.44 2000-08-09 00:00:00,26.88,23.75,39.89,103.83,36.5,29.17,34.94,1472.87,31.54 2000-08-10 00:00:00,26.93,23.78,40.64,104.7,37.5,28.53,35.78,1460.25,31.69 2000-08-11 00:00:00,26.73,23.84,40.33,105.46,37.66,28.46,36.38,1471.84,31.83 2000-08-14 00:00:00,27.39,23.53,40.64,107.76,37.46,28.37,37.32,1491.56,32.3 2000-08-15 00:00:00,27.48,23.34,40.82,106.67,36.99,28.14,36.48,1484.43,31.81 2000-08-16 00:00:00,27.63,24.25,40.51,106.99,37.66,27.9,34.94,1479.85,32.38 2000-08-17 00:00:00,27.73,25.72,40.42,107.11,37.34,28.12,34.53,1496.07,32.79 2000-08-18 00:00:00,27.48,25.0,40.07,105.31,37.24,27.9,34.84,1491.72,32.44 2000-08-21 00:00:00,26.53,25.25,40.33,106.18,37.46,27.75,35.19,1499.48,32.67 2000-08-22 00:00:00,26.28,25.84,40.11,106.12,37.75,28.0,34.34,1498.13,32.52 2000-08-23 00:00:00,26.83,27.16,41.32,107.76,37.44,27.8,34.42,1505.97,33.06 2000-08-24 00:00:00,26.63,28.06,42.03,109.13,37.17,27.94,34.54,1508.31,32.45 2000-08-25 00:00:00,26.78,28.41,42.25,112.79,36.86,27.75,33.95,1506.45,32.45 2000-08-28 00:00:00,27.33,29.03,42.78,114.98,36.6,28.02,34.39,1514.09,32.4 2000-08-29 00:00:00,26.18,29.59,42.7,116.18,35.92,27.87,33.75,1509.84,32.28 2000-08-30 00:00:00,26.23,29.75,41.0,113.94,35.24,27.5,33.3,1502.59,31.83 2000-08-31 00:00:00,26.7,30.47,41.81,115.43,35.51,27.43,33.86,1517.68,31.94 2000-09-01 00:00:00,26.63,31.72,41.71,116.84,35.77,27.58,33.6,1520.77,32.28 2000-09-05 00:00:00,27.13,31.22,41.22,114.71,36.02,27.55,33.95,1507.08,32.62 2000-09-06 00:00:00,27.03,29.22,42.07,114.92,36.02,27.28,33.41,1492.25,32.47 2000-09-07 00:00:00,26.28,31.0,42.07,116.62,36.09,27.53,34.41,1502.51,32.76 2000-09-08 00:00:00,26.68,29.44,42.7,113.23,36.49,27.23,33.91,1494.5,32.67 2000-09-11 00:00:00,25.81,29.22,42.56,108.86,36.7,27.04,34.06,1489.26,33.25 2000-09-12 00:00:00,24.27,28.88,42.11,109.29,37.32,26.77,34.95,1481.99,33.55 2000-09-13 00:00:00,24.42,29.0,42.11,111.65,37.7,26.82,35.6,1484.91,33.57 2000-09-14 00:00:00,23.72,28.43,42.07,110.93,37.05,25.86,35.15,1480.87,33.36 2000-09-15 00:00:00,22.94,27.61,40.47,109.29,36.69,25.22,34.85,1465.81,34.43 2000-09-18 00:00:00,21.66,30.33,41.0,107.76,35.58,24.75,35.05,1444.51,35.07 2000-09-19 00:00:00,20.71,29.97,40.64,109.24,35.46,25.54,34.97,1459.9,34.43 2000-09-20 00:00:00,20.21,30.52,40.38,109.08,35.18,25.25,33.16,1451.34,33.84 2000-09-21 00:00:00,19.46,28.34,40.11,106.23,36.4,25.22,34.56,1449.05,33.77 2000-09-22 00:00:00,20.06,26.09,40.87,108.31,37.03,24.85,36.15,1448.72,33.84 2000-09-25 00:00:00,19.06,26.75,41.4,107.55,37.02,24.07,35.7,1439.03,33.59 2000-09-26 00:00:00,19.15,25.72,41.36,104.15,36.5,24.63,35.4,1427.21,33.89 2000-09-27 00:00:00,18.86,24.47,42.38,103.17,36.73,23.82,36.25,1426.57,34.92 2000-09-28 00:00:00,19.55,26.75,42.07,100.77,36.06,24.09,36.05,1458.29,34.87 2000-09-29 00:00:00,20.31,12.88,41.32,98.47,36.28,23.7,36.65,1436.51,34.86 2000-10-02 00:00:00,19.66,12.12,41.81,103.01,35.99,23.23,37.74,1436.23,35.77 2000-10-03 00:00:00,21.62,11.15,42.21,96.67,35.73,22.22,36.65,1426.46,35.53 2000-10-04 00:00:00,21.87,11.81,42.08,100.0,34.88,21.78,35.95,1434.32,34.92 2000-10-05 00:00:00,21.76,11.03,42.7,98.97,35.94,21.76,36.5,1436.28,34.89 2000-10-06 00:00:00,22.11,11.1,42.48,101.42,35.65,21.83,36.95,1408.99,34.99 2000-10-09 00:00:00,22.96,10.88,41.81,103.12,35.27,21.29,37.49,1402.03,35.65 2000-10-10 00:00:00,23.77,10.44,41.5,100.44,36.55,21.44,37.74,1387.02,36.5 2000-10-11 00:00:00,21.82,9.81,40.47,97.93,37.08,21.91,37.29,1364.59,36.68 2000-10-12 00:00:00,20.81,10.0,38.95,90.16,37.46,21.37,38.14,1329.78,36.82 2000-10-13 00:00:00,20.71,11.03,40.74,95.36,37.0,21.12,36.25,1374.17,35.41 2000-10-16 00:00:00,20.26,10.75,41.28,97.16,37.44,19.8,37.14,1374.62,34.35 2000-10-17 00:00:00,20.86,10.06,39.76,98.8,37.49,19.82,37.54,1349.97,34.35 2000-10-18 00:00:00,19.81,10.06,39.67,83.45,36.4,20.33,38.19,1342.13,33.86 2000-10-19 00:00:00,19.51,9.47,39.76,84.32,35.44,24.31,38.09,1388.76,33.84 2000-10-20 00:00:00,18.9,9.75,37.26,82.84,35.48,25.61,37.09,1396.93,34.6 2000-10-23 00:00:00,19.26,10.19,35.56,81.2,35.36,24.41,37.24,1395.78,34.84 2000-10-24 00:00:00,20.01,9.44,38.15,79.95,35.41,24.16,36.75,1398.13,33.94 2000-10-25 00:00:00,20.01,9.25,37.84,76.56,36.28,24.07,38.64,1364.9,34.11 2000-10-26 00:00:00,19.86,9.25,37.26,81.1,35.97,25.32,37.44,1364.44,34.33 2000-10-27 00:00:00,20.06,9.28,37.34,81.92,35.82,26.6,38.34,1379.58,34.25 2000-10-30 00:00:00,22.67,9.65,38.6,81.59,36.45,27.14,39.14,1398.66,34.99 2000-10-31 00:00:00,23.02,9.78,39.17,86.12,35.58,27.06,38.59,1429.4,34.89 2000-11-01 00:00:00,23.42,10.25,38.91,86.18,35.15,27.36,38.24,1421.22,36.02 2000-11-02 00:00:00,22.36,11.15,38.37,89.13,34.71,27.63,37.49,1428.32,34.5 2000-11-03 00:00:00,22.26,11.12,38.1,87.54,35.41,26.82,36.5,1426.69,34.23 2000-11-06 00:00:00,23.22,10.72,38.95,87.71,35.56,27.31,37.84,1432.19,34.7 2000-11-07 00:00:00,23.37,10.65,39.27,89.45,35.58,27.7,37.54,1431.87,34.82 2000-11-08 00:00:00,23.32,10.03,39.0,87.55,36.09,27.28,37.74,1409.28,35.48 2000-11-09 00:00:00,23.02,10.1,39.0,87.06,36.14,27.85,39.04,1400.14,35.33 2000-11-10 00:00:00,22.92,9.53,38.51,81.42,36.48,26.47,38.89,1365.98,35.21 2000-11-13 00:00:00,22.72,9.69,36.77,85.31,35.94,26.11,38.39,1351.26,35.36 2000-11-14 00:00:00,23.27,10.12,37.7,87.11,36.55,27.04,38.09,1382.95,35.33 2000-11-15 00:00:00,23.57,9.94,37.52,86.99,36.69,27.53,37.09,1389.81,35.53 2000-11-16 00:00:00,22.52,9.5,37.62,86.01,36.38,27.09,35.3,1372.32,35.65 2000-11-17 00:00:00,21.76,9.25,37.08,89.24,36.86,27.14,35.0,1367.72,35.5 2000-11-20 00:00:00,21.11,9.47,35.78,90.39,37.28,26.4,35.85,1342.62,35.92 2000-11-21 00:00:00,21.15,9.4,36.27,86.23,37.88,26.62,37.04,1347.35,36.61 2000-11-22 00:00:00,21.05,9.25,34.71,86.23,37.4,26.82,35.65,1322.36,37.05 2000-11-24 00:00:00,21.05,9.65,35.29,87.49,36.84,27.48,35.45,1341.77,37.13 2000-11-27 00:00:00,21.65,9.35,35.11,86.18,37.74,27.78,35.35,1348.97,36.61 2000-11-28 00:00:00,22.41,9.02,35.6,85.68,38.8,26.33,35.95,1336.09,36.58 2000-11-29 00:00:00,22.46,8.78,35.51,87.38,38.85,25.56,36.15,1341.93,34.96 2000-11-30 00:00:00,22.72,8.25,35.42,81.86,38.75,22.55,36.15,1314.95,34.59 2000-12-01 00:00:00,23.37,8.53,36.45,83.71,37.88,22.25,33.76,1315.23,34.91 2000-12-04 00:00:00,24.98,8.35,36.9,86.12,38.58,22.18,34.9,1324.97,35.65 2000-12-05 00:00:00,25.39,8.5,38.69,90.5,38.56,23.53,35.2,1376.54,34.74 2000-12-06 00:00:00,25.23,7.16,38.55,84.7,37.25,22.27,36.21,1351.46,33.91 2000-12-07 00:00:00,23.52,7.16,38.24,81.52,37.62,20.88,37.51,1343.55,34.59 2000-12-08 00:00:00,24.63,7.53,39.45,84.92,37.35,21.39,37.91,1369.89,34.79 2000-12-11 00:00:00,25.94,7.59,39.53,83.17,37.06,22.81,37.61,1380.2,33.71 2000-12-12 00:00:00,25.48,7.69,37.74,82.18,37.59,22.94,37.86,1371.18,34.03 2000-12-13 00:00:00,26.34,7.5,37.88,79.89,38.25,22.5,38.71,1359.99,34.47 2000-12-14 00:00:00,25.59,7.22,36.77,80.93,38.46,21.81,39.76,1340.93,33.61 2000-12-15 00:00:00,24.93,7.03,35.6,76.87,38.2,19.33,39.01,1312.15,33.07 2000-12-18 00:00:00,26.04,7.12,36.45,79.23,38.2,18.79,39.41,1322.74,33.95 2000-12-19 00:00:00,27.0,7.0,35.83,78.9,38.44,17.61,39.31,1305.6,34.28 2000-12-20 00:00:00,25.34,7.19,33.91,75.29,38.99,16.31,39.06,1264.74,33.49 2000-12-21 00:00:00,25.59,7.03,34.22,71.4,39.14,17.07,38.96,1274.86,33.32 2000-12-22 00:00:00,28.05,7.5,34.94,77.92,39.34,18.25,38.86,1305.95,34.13 2000-12-26 00:00:00,27.85,7.34,35.24,74.25,39.67,18.42,39.06,1315.19,34.82 2000-12-27 00:00:00,27.55,7.41,34.55,74.14,39.92,18.25,39.06,1328.92,34.5 2000-12-28 00:00:00,27.91,7.41,34.73,74.63,40.6,17.51,38.96,1334.22,34.15 2000-12-29 00:00:00,27.0,7.44,34.38,74.41,40.72,17.05,39.61,1320.28,34.18 2001-01-02 00:00:00,25.99,7.44,31.37,74.25,39.53,17.05,39.46,1283.27,35.04 2001-01-03 00:00:00,26.34,8.19,34.28,82.84,38.27,18.84,37.16,1347.56,33.51 2001-01-04 00:00:00,27.2,8.53,34.46,81.58,37.44,19.03,35.46,1333.34,32.58 2001-01-05 00:00:00,26.7,8.19,33.92,82.29,37.93,19.3,36.21,1298.35,32.73 2001-01-08 00:00:00,27.1,8.28,32.67,81.91,37.88,19.23,36.81,1295.86,32.58 2001-01-09 00:00:00,26.09,8.6,32.0,81.03,38.15,20.36,37.36,1300.8,32.24 2001-01-10 00:00:00,26.39,8.28,32.05,81.8,37.15,20.78,36.76,1313.27,31.84 2001-01-11 00:00:00,25.39,9.0,33.39,82.02,35.82,21.61,36.81,1326.82,32.14 2001-01-12 00:00:00,25.64,8.6,32.76,82.13,36.65,21.02,36.51,1318.55,32.55 2001-01-16 00:00:00,27.05,8.56,33.97,81.2,36.5,20.65,36.71,1326.65,32.16 2001-01-17 00:00:00,27.05,8.4,33.48,84.65,35.53,20.8,36.26,1329.47,31.55 2001-01-18 00:00:00,27.76,9.35,34.15,94.82,36.43,21.81,35.96,1347.97,31.1 2001-01-19 00:00:00,26.34,9.75,33.7,97.4,36.48,23.97,35.01,1342.54,31.23 2001-01-22 00:00:00,27.05,9.62,32.81,95.04,36.55,23.63,35.01,1342.9,31.55 2001-01-23 00:00:00,27.35,10.25,33.48,95.48,35.92,23.8,34.52,1360.4,32.16 2001-01-24 00:00:00,27.85,10.25,33.21,96.69,35.1,24.73,34.17,1364.3,32.09 2001-01-25 00:00:00,28.56,9.97,32.94,96.96,35.56,24.29,34.96,1357.51,32.43 2001-01-26 00:00:00,27.85,9.78,32.0,99.97,35.63,25.15,35.21,1354.95,31.84 2001-01-29 00:00:00,27.42,10.85,31.82,100.66,35.5,25.34,34.88,1364.17,31.53 2001-01-30 00:00:00,28.54,10.88,33.16,102.09,35.5,24.9,35.58,1373.73,32.23 2001-01-31 00:00:00,29.73,10.81,32.97,98.05,36.09,23.99,35.22,1366.01,33.08 2001-02-01 00:00:00,30.75,10.56,33.15,99.85,36.38,24.51,34.9,1373.47,32.82 2001-02-02 00:00:00,30.39,10.31,33.19,96.54,36.86,23.89,35.96,1349.47,32.63 2001-02-05 00:00:00,29.85,10.1,34.31,98.24,36.4,24.34,35.94,1354.31,33.34 2001-02-06 00:00:00,30.14,10.56,34.13,99.97,36.2,24.58,36.17,1352.26,33.16 2001-02-07 00:00:00,29.78,10.38,33.67,102.47,36.78,25.42,37.55,1340.89,33.34 2001-02-08 00:00:00,29.95,10.38,33.8,100.0,36.67,24.46,37.44,1332.53,33.39 2001-02-09 00:00:00,30.03,9.56,32.74,98.16,36.81,23.23,36.92,1314.76,33.93 2001-02-12 00:00:00,29.53,9.85,34.07,100.71,38.02,23.08,37.52,1330.31,33.89 2001-02-13 00:00:00,28.89,9.56,33.82,99.7,37.55,22.86,37.68,1318.8,33.51 2001-02-14 00:00:00,28.72,9.75,33.17,100.88,37.07,22.94,37.32,1315.92,33.17 2001-02-15 00:00:00,29.44,10.03,34.4,102.35,36.63,23.11,37.44,1326.61,32.6 2001-02-16 00:00:00,28.33,9.5,33.7,100.79,36.76,22.52,37.82,1301.53,33.2 2001-02-20 00:00:00,28.49,9.15,34.2,97.73,37.34,21.96,38.76,1278.94,33.12 2001-02-21 00:00:00,27.78,9.44,33.92,94.23,37.68,22.1,37.76,1255.27,33.01 2001-02-22 00:00:00,28.61,9.4,33.77,95.45,37.53,21.69,37.2,1252.82,33.28 2001-02-23 00:00:00,28.08,9.4,33.11,91.15,37.13,22.3,37.07,1245.86,33.0 2001-02-26 00:00:00,29.14,9.75,34.4,92.29,37.23,23.4,36.99,1267.65,33.12 2001-02-27 00:00:00,29.34,9.69,34.42,89.92,37.31,23.33,36.81,1257.94,32.52 2001-02-28 00:00:00,28.94,9.12,33.34,87.56,37.85,23.18,36.83,1239.94,32.03 2001-03-01 00:00:00,29.52,9.38,32.92,92.95,38.53,23.32,36.61,1241.23,32.17 2001-03-02 00:00:00,29.95,9.62,31.96,89.66,38.55,22.27,35.84,1234.18,32.88 2001-03-05 00:00:00,30.82,10.19,32.44,91.95,38.29,22.57,36.46,1241.41,33.14 2001-03-06 00:00:00,30.75,10.75,32.69,92.9,37.64,23.36,36.61,1253.8,33.04 2001-03-07 00:00:00,31.8,10.62,33.09,94.26,36.86,23.85,36.89,1261.89,33.28 2001-03-08 00:00:00,31.56,10.4,33.01,93.32,38.06,23.28,37.6,1264.74,33.93 2001-03-09 00:00:00,29.95,10.12,31.53,87.02,37.6,22.27,37.2,1233.42,33.98 2001-03-12 00:00:00,29.13,9.31,28.5,83.69,36.92,20.41,36.51,1180.16,33.1 2001-03-13 00:00:00,29.99,9.78,30.46,86.24,36.61,21.29,35.95,1197.66,32.92 2001-03-14 00:00:00,28.77,10.22,29.53,83.23,36.26,21.22,35.49,1166.71,32.66 2001-03-15 00:00:00,28.95,9.85,29.56,83.75,36.3,21.1,35.3,1173.56,32.78 2001-03-16 00:00:00,28.32,9.81,29.22,78.97,35.77,21.44,34.46,1150.53,32.29 2001-03-19 00:00:00,29.08,10.28,29.58,81.16,35.75,21.34,34.21,1170.81,32.11 2001-03-20 00:00:00,29.36,9.85,28.82,77.39,35.31,20.7,33.36,1142.62,31.88 2001-03-21 00:00:00,28.04,10.06,28.07,78.08,33.92,19.67,33.68,1122.14,31.54 2001-03-22 00:00:00,26.98,10.81,27.13,78.09,34.14,21.22,34.15,1117.58,30.71 2001-03-23 00:00:00,27.21,11.5,28.78,81.96,34.3,22.22,35.15,1139.83,30.39 2001-03-26 00:00:00,27.52,10.89,28.95,83.61,33.2,22.03,35.11,1152.69,30.92 2001-03-27 00:00:00,28.98,11.44,30.16,87.21,32.37,22.89,35.3,1182.17,31.87 2001-03-28 00:00:00,28.37,11.09,29.9,82.75,33.55,21.83,34.53,1153.29,31.08 2001-03-29 00:00:00,28.37,11.27,29.79,83.3,34.37,21.76,34.67,1147.95,30.94 2001-03-30 00:00:00,29.1,11.03,30.12,84.3,34.01,21.49,35.23,1160.33,32.01 2001-04-02 00:00:00,28.58,10.8,30.08,82.97,33.95,21.93,35.31,1145.87,31.46 2001-04-03 00:00:00,27.88,10.12,28.56,79.22,33.48,20.97,34.53,1106.46,30.78 2001-04-04 00:00:00,28.77,9.75,28.5,80.63,33.79,20.41,35.19,1103.25,31.1 2001-04-05 00:00:00,30.35,10.44,30.3,86.08,34.56,22.3,35.35,1151.44,31.98 2001-04-06 00:00:00,29.46,10.3,29.63,85.85,35.15,22.08,33.67,1128.43,32.44 2001-04-09 00:00:00,30.35,10.27,30.22,84.14,35.48,22.46,33.27,1137.59,32.61 2001-04-10 00:00:00,31.77,11.02,31.54,86.81,35.79,23.45,33.79,1168.38,33.2 2001-04-11 00:00:00,31.57,10.9,31.14,85.39,35.32,23.59,33.18,1165.89,32.38 2001-04-12 00:00:00,31.56,11.21,32.17,84.32,35.37,24.43,33.6,1183.5,32.41 2001-04-16 00:00:00,31.56,10.72,32.13,84.8,36.01,23.89,33.83,1179.68,33.41 2001-04-17 00:00:00,30.9,10.2,32.71,87.38,36.73,24.16,33.89,1191.81,33.48 2001-04-18 00:00:00,32.05,11.4,34.46,93.34,36.53,25.71,33.72,1238.16,33.64 2001-04-19 00:00:00,31.92,12.86,34.91,100.33,36.1,26.73,34.05,1253.69,33.37 2001-04-20 00:00:00,32.66,12.52,34.61,100.64,35.82,27.11,33.08,1242.98,33.66 2001-04-23 00:00:00,32.71,12.12,33.97,98.16,35.74,26.82,33.89,1224.36,34.78 2001-04-24 00:00:00,32.34,12.02,33.1,98.75,35.97,26.54,34.59,1209.47,34.57 2001-04-25 00:00:00,32.77,12.36,34.41,100.66,36.55,27.38,35.33,1228.75,35.21 2001-04-26 00:00:00,34.06,12.35,35.48,99.69,37.15,27.16,35.99,1234.52,35.11 2001-04-27 00:00:00,33.98,13.1,35.95,101.84,37.09,26.37,35.35,1253.05,35.2 2001-04-30 00:00:00,33.51,12.74,34.92,100.92,37.52,26.62,35.01,1249.46,35.01 2001-05-01 00:00:00,33.59,12.97,35.2,103.87,37.64,27.57,35.79,1266.44,35.09 2001-05-02 00:00:00,33.57,13.3,35.33,101.14,37.91,27.41,35.52,1267.43,34.18 2001-05-03 00:00:00,33.21,12.48,34.9,99.65,37.62,26.93,35.46,1248.58,34.03 2001-05-04 00:00:00,34.03,12.88,35.93,101.55,38.01,27.8,35.82,1266.61,34.6 2001-05-07 00:00:00,33.3,12.48,35.95,101.58,38.15,28.05,35.91,1263.51,34.85 2001-05-08 00:00:00,32.77,12.28,35.61,103.28,38.09,28.31,36.07,1261.2,35.07 2001-05-09 00:00:00,33.61,11.99,35.57,102.65,38.2,27.66,36.51,1255.54,35.46 2001-05-10 00:00:00,34.04,11.5,35.86,101.09,37.81,27.5,37.25,1255.18,34.99 2001-05-11 00:00:00,32.71,11.43,35.27,98.12,37.82,27.27,37.01,1245.67,34.8 2001-05-14 00:00:00,33.55,11.65,35.79,98.77,38.03,27.0,37.0,1248.92,35.37 2001-05-15 00:00:00,34.11,11.59,36.09,99.67,37.75,26.83,36.07,1249.44,35.52 2001-05-16 00:00:00,36.15,12.05,37.57,101.62,38.8,27.17,36.28,1284.99,35.54 2001-05-17 00:00:00,36.36,11.77,37.5,100.98,39.15,26.79,36.02,1288.49,35.24 2001-05-18 00:00:00,36.51,11.77,38.13,103.06,39.41,26.75,36.06,1291.96,35.82 2001-05-21 00:00:00,36.84,11.78,38.43,104.46,39.27,27.03,36.02,1312.83,35.25 2001-05-22 00:00:00,35.41,11.75,37.91,103.56,38.63,27.63,35.26,1309.38,35.27 2001-05-23 00:00:00,35.4,11.61,36.95,103.02,38.14,27.39,35.87,1289.05,34.66 2001-05-24 00:00:00,34.53,11.6,36.99,104.95,38.03,28.18,36.05,1293.17,34.92 2001-05-25 00:00:00,35.06,11.38,35.95,103.37,37.95,27.86,35.92,1277.89,34.99 2001-05-29 00:00:00,35.3,10.73,35.74,101.15,38.03,27.64,36.01,1267.93,34.87 2001-05-30 00:00:00,34.41,9.89,35.28,98.85,37.89,27.19,36.55,1248.08,35.29 2001-05-31 00:00:00,35.05,9.98,35.26,98.11,37.83,27.18,35.88,1255.82,35.25 2001-06-01 00:00:00,35.35,10.44,35.26,99.06,38.24,27.64,35.92,1260.67,35.33 2001-06-04 00:00:00,35.54,10.33,35.59,99.72,39.08,27.81,36.01,1267.11,36.07 2001-06-05 00:00:00,36.42,10.47,35.39,102.64,39.88,28.53,36.56,1283.57,36.36 2001-06-06 00:00:00,35.73,10.36,35.08,103.11,40.23,28.43,35.87,1270.03,35.5 2001-06-07 00:00:00,35.36,10.83,35.2,102.89,40.22,28.95,35.63,1276.96,35.42 2001-06-08 00:00:00,34.95,10.66,34.64,101.88,39.81,28.76,35.79,1264.96,35.5 2001-06-11 00:00:00,34.23,10.02,34.11,102.99,39.56,28.34,35.4,1254.39,35.62 2001-06-12 00:00:00,32.9,10.15,35.1,102.89,39.73,28.32,35.56,1255.85,35.79 2001-06-13 00:00:00,32.74,10.23,34.43,102.27,39.58,27.78,35.64,1241.6,35.73 2001-06-14 00:00:00,31.86,9.94,35.16,101.57,39.73,27.07,35.21,1219.87,35.29 2001-06-15 00:00:00,31.65,10.22,35.13,99.69,40.62,26.73,34.79,1214.36,35.31 2001-06-18 00:00:00,30.87,10.16,35.26,100.27,40.61,26.28,34.87,1208.43,35.15 2001-06-19 00:00:00,30.54,10.1,35.17,100.77,41.58,26.45,35.15,1212.58,35.1 2001-06-20 00:00:00,30.93,10.84,36.54,99.24,41.84,27.27,35.43,1223.14,34.85 2001-06-21 00:00:00,32.23,11.24,36.88,98.81,41.38,27.44,36.33,1237.04,35.12 2001-06-22 00:00:00,31.76,11.13,37.32,99.05,40.89,27.05,36.45,1225.35,35.32 2001-06-25 00:00:00,30.87,11.99,36.16,98.85,40.27,27.05,36.09,1218.6,35.16 2001-06-26 00:00:00,30.96,11.88,35.11,99.2,39.89,27.56,36.05,1216.76,35.18 2001-06-27 00:00:00,31.24,11.67,34.73,99.62,39.57,27.95,36.49,1211.07,34.65 2001-06-28 00:00:00,32.49,11.77,35.17,101.0,40.74,28.58,36.66,1226.2,34.49 2001-06-29 00:00:00,32.49,11.62,35.26,99.6,38.99,28.68,35.55,1224.38,34.7 2001-07-02 00:00:00,32.88,11.95,36.13,100.34,39.95,27.74,36.34,1236.72,34.84 2001-07-03 00:00:00,32.69,11.92,35.63,99.14,39.84,27.69,36.69,1234.45,34.69 2001-07-05 00:00:00,33.12,11.6,34.99,98.37,39.73,26.92,36.17,1219.24,34.56 2001-07-06 00:00:00,32.33,11.02,33.85,93.46,39.34,25.96,36.1,1190.59,34.48 2001-07-09 00:00:00,32.79,11.35,33.82,91.89,40.68,25.81,36.37,1198.78,34.45 2001-07-10 00:00:00,32.08,10.57,33.04,89.47,40.98,25.34,36.37,1181.52,34.07 2001-07-11 00:00:00,31.61,11.27,32.21,91.13,41.64,26.13,36.26,1180.18,33.74 2001-07-12 00:00:00,33.08,12.18,33.93,94.11,41.24,28.13,36.63,1208.14,33.94 2001-07-13 00:00:00,33.68,12.43,34.26,95.24,41.4,28.03,36.54,1215.68,34.15 2001-07-16 00:00:00,32.22,11.98,33.37,94.61,41.94,27.97,36.99,1202.45,34.16 2001-07-17 00:00:00,31.99,12.55,33.29,95.24,42.86,28.22,37.11,1214.44,33.88 2001-07-18 00:00:00,33.22,10.4,33.32,91.51,42.46,27.73,37.79,1207.71,33.47 2001-07-19 00:00:00,32.9,9.98,33.56,91.26,42.3,28.51,37.37,1215.02,34.22 2001-07-20 00:00:00,32.56,9.99,33.67,92.75,42.53,27.18,37.19,1210.85,34.45 2001-07-23 00:00:00,32.12,9.77,32.71,92.89,41.83,26.36,36.23,1191.03,33.76 2001-07-24 00:00:00,30.24,9.55,31.77,91.71,41.14,26.06,35.88,1171.65,32.55 2001-07-25 00:00:00,31.73,9.23,31.62,92.04,41.13,26.51,36.83,1190.49,33.47 2001-07-26 00:00:00,32.12,9.3,31.59,93.02,41.51,26.16,36.78,1202.93,33.94 2001-07-27 00:00:00,31.35,9.48,32.24,91.88,41.37,25.72,36.73,1205.82,33.95 2001-07-30 00:00:00,31.72,9.47,31.48,92.89,41.3,25.85,37.07,1204.52,33.69 2001-07-31 00:00:00,31.86,9.4,31.41,92.32,42.22,26.01,37.5,1211.23,33.18 2001-08-01 00:00:00,31.32,9.53,30.9,93.95,41.99,26.12,35.14,1215.93,33.05 2001-08-02 00:00:00,30.86,9.91,30.47,95.47,41.51,26.5,35.75,1220.75,33.15 2001-08-03 00:00:00,30.8,9.75,30.86,94.93,41.82,26.28,35.74,1214.35,32.78 2001-08-06 00:00:00,30.19,9.56,29.88,93.46,41.65,25.98,35.38,1200.48,32.45 2001-08-07 00:00:00,30.17,9.62,30.88,93.24,42.13,26.07,35.78,1204.4,32.87 2001-08-08 00:00:00,29.36,9.45,30.07,91.55,41.92,25.49,35.89,1183.53,32.77 2001-08-09 00:00:00,29.26,9.52,30.25,91.45,42.04,25.54,36.45,1183.43,32.71 2001-08-10 00:00:00,30.18,9.51,30.73,92.22,42.94,25.74,36.72,1190.16,33.03 2001-08-13 00:00:00,30.28,9.55,30.49,93.02,43.47,25.87,36.23,1191.29,33.07 2001-08-14 00:00:00,30.1,9.36,30.21,93.32,44.48,25.42,36.63,1186.73,32.87 2001-08-15 00:00:00,29.42,9.22,30.16,92.27,44.49,24.83,36.64,1178.02,33.15 2001-08-16 00:00:00,29.59,9.32,30.03,92.92,42.84,25.39,36.95,1181.66,32.99 2001-08-17 00:00:00,29.92,9.03,29.46,91.9,42.09,24.31,36.74,1161.97,32.33 2001-08-20 00:00:00,30.82,9.06,29.98,91.47,42.95,24.64,37.4,1171.41,32.56 2001-08-21 00:00:00,30.5,8.96,29.22,89.53,42.52,23.88,37.03,1157.26,32.27 2001-08-22 00:00:00,31.11,9.1,29.49,91.35,42.9,23.83,37.74,1165.31,32.52 2001-08-23 00:00:00,31.01,8.9,29.63,90.5,42.79,23.23,38.0,1162.09,32.67 2001-08-24 00:00:00,32.0,9.28,30.32,94.01,42.75,24.38,37.88,1184.93,33.31 2001-08-27 00:00:00,31.86,9.46,30.45,93.9,42.56,24.48,37.7,1179.21,32.79 2001-08-28 00:00:00,31.62,9.2,29.77,92.22,42.18,23.87,37.48,1161.51,32.36 2001-08-29 00:00:00,30.98,8.91,29.32,91.5,41.72,23.67,37.79,1148.56,32.26 2001-08-30 00:00:00,30.57,8.91,29.02,88.18,41.57,22.37,38.02,1129.03,32.08 2001-08-31 00:00:00,31.08,9.27,29.53,87.82,41.27,22.42,37.8,1133.58,32.08 2001-09-04 00:00:00,31.42,9.12,29.48,89.18,43.97,22.04,38.04,1132.94,32.56 2001-09-05 00:00:00,30.98,9.27,30.11,88.18,44.04,22.69,38.56,1131.74,32.93 2001-09-06 00:00:00,30.19,8.86,29.24,86.11,44.59,22.01,37.99,1106.4,32.68 2001-09-07 00:00:00,28.91,8.64,28.63,84.87,43.64,21.77,38.24,1085.78,32.68 2001-09-10 00:00:00,27.56,8.69,28.41,84.77,43.55,22.62,37.83,1092.54,32.95 2001-09-17 00:00:00,24.53,8.49,25.38,82.02,43.71,20.79,38.64,1038.77,32.08 2001-09-18 00:00:00,24.62,8.14,24.44,84.7,42.68,21.34,39.93,1032.74,31.54 2001-09-19 00:00:00,24.87,8.51,23.46,84.35,41.92,21.17,40.0,1016.1,30.69 2001-09-20 00:00:00,23.33,7.84,21.93,82.07,40.99,19.94,39.33,984.54,29.58 2001-09-21 00:00:00,23.08,7.86,22.6,79.52,40.91,19.53,37.91,965.8,28.62 2001-09-24 00:00:00,24.62,8.23,25.41,83.3,41.04,20.44,38.24,1003.45,28.65 2001-09-25 00:00:00,24.49,7.77,25.63,82.99,41.45,20.16,38.72,1012.27,28.98 2001-09-26 00:00:00,23.68,7.57,25.73,80.22,42.39,19.75,38.86,1007.04,28.77 2001-09-27 00:00:00,24.67,7.76,26.07,79.08,42.66,19.63,39.44,1018.61,30.69 2001-09-28 00:00:00,25.28,7.76,26.98,80.59,43.38,20.11,39.12,1040.94,31.48 2001-10-01 00:00:00,25.22,7.77,27.3,81.46,43.4,20.35,39.48,1038.55,31.23 2001-10-02 00:00:00,26.05,7.53,27.6,82.39,43.06,20.84,39.81,1051.33,31.95 2001-10-03 00:00:00,26.17,7.49,27.67,85.19,42.5,22.09,39.59,1072.28,31.83 2001-10-04 00:00:00,25.13,7.94,27.12,85.5,42.64,22.18,39.24,1069.63,32.42 2001-10-05 00:00:00,25.72,8.07,27.16,86.13,42.83,22.68,39.41,1071.38,32.51 2001-10-08 00:00:00,24.51,8.1,26.69,86.55,43.67,22.81,39.22,1062.44,32.71 2001-10-09 00:00:00,25.77,8.0,26.7,85.35,43.41,21.44,39.47,1056.75,32.8 2001-10-10 00:00:00,25.94,8.41,27.49,85.45,43.88,21.81,40.25,1080.99,33.78 2001-10-11 00:00:00,26.68,8.87,28.25,87.34,43.02,22.13,39.53,1097.43,33.63 2001-10-12 00:00:00,26.35,9.01,28.28,88.61,43.34,22.15,38.54,1091.65,33.79 2001-10-15 00:00:00,26.09,8.99,28.18,89.63,43.63,22.81,38.64,1089.98,33.27 2001-10-16 00:00:00,26.75,9.01,27.9,89.49,44.45,22.97,38.66,1097.54,33.35 2001-10-17 00:00:00,26.12,8.49,26.94,90.42,45.24,22.02,38.85,1077.09,33.11 2001-10-18 00:00:00,26.01,9.0,27.02,88.98,45.48,22.3,38.36,1068.61,32.28 2001-10-19 00:00:00,25.82,9.15,27.02,90.2,45.75,22.75,38.17,1073.48,32.39 2001-10-22 00:00:00,26.77,9.51,27.28,92.48,46.18,23.64,38.48,1089.9,32.85 2001-10-23 00:00:00,27.52,9.07,27.03,92.97,46.08,23.74,38.64,1084.78,32.65 2001-10-24 00:00:00,27.7,9.48,26.89,95.4,46.4,24.09,38.92,1085.2,31.84 2001-10-25 00:00:00,28.38,9.6,27.46,97.23,46.18,24.58,39.04,1100.09,32.4 2001-10-26 00:00:00,28.44,9.34,28.2,97.67,45.94,24.44,39.29,1104.61,32.8 2001-10-29 00:00:00,27.76,8.81,27.15,95.44,45.86,23.43,38.84,1078.3,32.5 2001-10-30 00:00:00,27.05,8.8,26.36,95.47,45.3,23.14,39.33,1059.79,31.52 2001-10-31 00:00:00,26.43,8.78,26.41,94.96,45.35,22.85,39.29,1059.78,31.52 2001-11-01 00:00:00,26.81,9.3,27.49,96.56,46.1,24.3,39.12,1084.1,32.35 2001-11-02 00:00:00,27.24,9.28,27.53,96.22,46.18,24.13,39.53,1087.2,31.76 2001-11-05 00:00:00,27.2,9.53,28.12,96.63,45.79,24.86,39.21,1102.84,31.47 2001-11-06 00:00:00,27.86,9.78,28.86,99.83,46.2,25.45,39.32,1118.86,31.53 2001-11-07 00:00:00,28.17,9.8,28.54,100.16,46.0,25.25,39.42,1115.8,31.4 2001-11-08 00:00:00,28.36,9.35,29.26,100.13,46.2,25.31,39.55,1118.54,31.74 2001-11-09 00:00:00,28.66,9.35,29.31,100.36,46.64,25.62,39.69,1120.31,32.34 2001-11-12 00:00:00,28.41,9.38,28.6,101.05,46.22,25.85,39.54,1118.33,32.19 2001-11-13 00:00:00,29.73,9.69,29.42,102.67,46.71,26.68,39.88,1139.09,32.55 2001-11-14 00:00:00,30.8,9.81,29.65,100.6,47.04,25.91,40.56,1141.21,31.1 2001-11-15 00:00:00,30.72,9.73,30.13,100.95,46.98,25.98,40.51,1142.24,29.89 2001-11-16 00:00:00,30.4,9.48,29.63,100.73,47.06,25.83,40.14,1138.65,30.17 2001-11-19 00:00:00,31.53,10.0,29.92,101.17,47.05,26.15,40.27,1151.06,29.74 2001-11-20 00:00:00,30.99,9.77,29.81,101.56,47.74,25.7,40.08,1142.66,30.5 2001-11-21 00:00:00,30.95,9.84,29.34,100.59,47.79,25.17,39.79,1137.03,30.44 2001-11-23 00:00:00,31.78,9.92,29.75,101.48,47.89,25.43,39.85,1150.34,30.89 2001-11-26 00:00:00,31.34,10.69,29.97,102.34,47.52,25.6,39.52,1157.42,30.35 2001-11-27 00:00:00,31.35,10.5,29.79,100.47,47.13,25.05,39.08,1149.5,30.01 2001-11-28 00:00:00,31.07,10.27,28.54,98.67,47.12,24.68,39.08,1128.52,29.81 2001-11-29 00:00:00,31.13,10.21,28.81,100.67,45.93,25.48,39.15,1140.2,30.09 2001-11-30 00:00:00,31.62,10.65,27.92,101.69,45.75,25.23,39.23,1139.45,30.05 2001-12-03 00:00:00,31.0,10.52,26.78,100.41,45.8,25.45,39.35,1129.9,30.26 2001-12-04 00:00:00,31.21,11.2,27.09,102.62,44.95,25.93,39.1,1144.8,30.79 2001-12-05 00:00:00,32.72,11.88,27.23,106.8,44.45,26.76,39.08,1170.35,31.24 2001-12-06 00:00:00,32.39,11.39,27.38,105.69,43.72,26.97,38.42,1167.1,30.0 2001-12-07 00:00:00,31.82,11.27,26.94,105.92,44.49,26.65,38.51,1158.31,30.59 2001-12-10 00:00:00,31.54,11.27,26.69,105.27,43.61,26.35,38.01,1139.93,30.17 2001-12-11 00:00:00,31.56,10.89,26.68,106.89,44.09,26.45,37.7,1136.76,29.58 2001-12-12 00:00:00,30.98,10.74,26.87,108.39,44.02,26.7,38.1,1137.07,30.07 2001-12-13 00:00:00,29.71,10.5,26.87,105.79,44.16,26.04,38.21,1119.38,29.28 2001-12-14 00:00:00,30.32,10.19,27.31,106.54,44.22,26.5,38.42,1123.09,29.62 2001-12-17 00:00:00,29.9,10.31,27.78,106.75,44.34,27.1,38.35,1134.36,30.11 2001-12-18 00:00:00,30.85,10.51,28.81,107.51,44.6,27.22,38.34,1142.92,30.17 2001-12-19 00:00:00,28.98,10.81,29.58,108.99,45.32,27.3,39.95,1149.56,30.82 2001-12-20 00:00:00,28.6,10.34,29.62,107.95,45.8,26.23,39.73,1139.93,30.78 2001-12-21 00:00:00,28.02,10.5,29.99,107.33,46.9,26.54,39.74,1144.89,30.94 2001-12-24 00:00:00,28.21,10.68,29.87,106.85,46.7,26.43,39.85,1144.65,31.34 2001-12-26 00:00:00,28.79,10.74,29.41,107.68,46.87,26.59,40.01,1149.37,31.82 2001-12-27 00:00:00,29.04,11.03,29.83,108.65,47.14,26.66,39.97,1157.13,31.97 2001-12-28 00:00:00,29.61,11.22,29.67,108.12,47.01,26.67,39.69,1161.02,31.97 2001-12-31 00:00:00,29.12,10.95,29.2,106.42,46.42,26.03,39.39,1148.08,31.58 2002-01-02 00:00:00,29.22,11.65,29.83,106.89,46.1,26.34,39.77,1154.67,31.82 2002-01-03 00:00:00,29.6,11.79,29.58,108.79,46.09,27.2,39.48,1165.27,31.87 2002-01-04 00:00:00,30.55,11.85,29.83,110.5,45.66,27.07,39.13,1172.51,32.14 2002-01-07 00:00:00,31.26,11.45,28.67,109.13,45.45,26.94,38.9,1164.89,31.86 2002-01-08 00:00:00,30.58,11.31,28.37,109.71,45.15,27.26,38.67,1160.71,31.9 2002-01-09 00:00:00,29.9,10.82,28.08,109.52,44.7,27.0,38.52,1155.14,31.53 2002-01-10 00:00:00,29.41,10.61,28.13,107.45,45.77,27.22,38.96,1156.55,31.65 2002-01-11 00:00:00,29.2,10.52,27.85,105.84,45.73,26.96,39.2,1145.6,30.94 2002-01-14 00:00:00,28.67,10.57,27.61,103.86,46.28,26.9,39.06,1138.41,31.05 2002-01-15 00:00:00,28.27,10.85,28.2,104.56,46.47,27.33,39.34,1146.19,31.58 2002-01-16 00:00:00,27.52,10.39,27.48,103.28,46.79,26.67,39.35,1127.57,30.94 2002-01-17 00:00:00,27.66,11.24,28.23,105.48,46.99,27.45,39.33,1138.88,31.05 2002-01-18 00:00:00,27.6,11.09,28.18,100.51,46.89,25.97,39.73,1127.58,30.86 2002-01-22 00:00:00,27.81,10.91,27.9,97.21,46.43,25.33,39.99,1119.31,30.55 2002-01-23 00:00:00,28.67,11.51,27.43,94.93,46.17,25.05,39.98,1128.18,31.26 2002-01-24 00:00:00,28.85,11.6,27.35,95.65,45.59,25.38,40.13,1132.15,31.18 2002-01-25 00:00:00,29.1,11.62,27.87,96.14,45.28,25.07,39.74,1133.28,31.47 2002-01-28 00:00:00,29.32,11.64,27.79,95.15,45.4,25.08,39.35,1133.06,31.31 2002-01-29 00:00:00,28.47,11.53,26.56,90.62,44.91,24.49,38.47,1100.64,30.5 2002-01-30 00:00:00,28.05,12.05,26.87,92.86,44.93,24.7,39.38,1113.57,31.09 2002-01-31 00:00:00,29.36,12.36,27.06,94.92,45.17,25.03,40.53,1130.2,31.38 2002-02-01 00:00:00,28.79,12.2,26.84,95.01,45.24,24.62,,1122.2,31.34 2002-02-04 00:00:00,27.69,12.68,25.5,93.96,44.23,24.02,40.7,1094.44,30.82 2002-02-05 00:00:00,27.39,12.73,26.38,93.52,43.59,24.03,41.11,1090.02,30.8 2002-02-06 00:00:00,27.72,12.34,26.92,93.93,43.89,23.73,39.73,1083.51,31.28 2002-02-07 00:00:00,27.6,12.15,27.1,91.54,44.37,23.5,39.32,1080.17,30.96 2002-02-08 00:00:00,28.32,12.02,27.14,92.49,44.67,23.83,39.3,1096.22,30.95 2002-02-11 00:00:00,29.4,12.49,27.54,94.59,44.81,24.02,39.58,1111.94,31.12 2002-02-12 00:00:00,29.22,12.35,27.32,93.88,45.0,23.63,39.66,1107.5,31.04 2002-02-13 00:00:00,29.86,12.51,27.75,95.2,45.62,24.29,40.15,1118.51,31.24 2002-02-14 00:00:00,29.82,12.3,27.68,95.04,45.14,24.24,39.98,1116.48,31.53 2002-02-15 00:00:00,29.95,11.95,27.03,90.64,45.1,23.67,40.36,1104.18,31.45 2002-02-19 00:00:00,29.0,11.31,26.52,89.24,44.84,23.16,40.03,1083.34,31.34 2002-02-20 00:00:00,30.12,11.56,27.37,87.48,45.79,23.54,40.39,1097.98,31.52 2002-02-21 00:00:00,30.84,10.75,27.33,84.9,45.7,22.81,40.03,1080.95,31.65 2002-02-22 00:00:00,31.1,11.37,27.75,86.73,46.8,22.79,40.62,1089.84,32.92 2002-02-25 00:00:00,31.29,11.9,28.56,86.59,47.03,23.21,40.96,1109.43,33.14 2002-02-26 00:00:00,30.85,11.84,28.23,85.58,47.28,23.01,40.8,1109.38,32.92 2002-02-27 00:00:00,31.14,10.98,28.36,86.18,47.45,22.94,40.96,1109.89,33.08 2002-02-28 00:00:00,30.91,10.85,28.18,86.44,47.98,22.92,40.86,1106.73,33.39 2002-03-01 00:00:00,31.2,11.73,28.87,90.75,48.93,24.11,41.47,1131.78,33.95 2002-03-04 00:00:00,32.55,12.15,29.42,93.29,48.78,24.87,41.26,1153.84,34.48 2002-03-05 00:00:00,31.62,11.77,29.64,93.09,48.3,24.79,40.77,1146.14,34.36 2002-03-06 00:00:00,32.45,12.03,30.41,93.64,49.26,25.0,40.47,1162.77,34.93 2002-03-07 00:00:00,32.32,12.19,29.97,91.36,50.12,24.64,40.15,1157.54,34.67 2002-03-08 00:00:00,31.5,12.33,29.71,92.58,50.15,25.13,40.19,1164.31,34.69 2002-03-11 00:00:00,31.47,12.53,30.12,92.71,50.27,25.28,40.17,1168.26,35.16 2002-03-12 00:00:00,32.02,12.36,30.08,95.58,50.15,24.57,40.51,1165.58,35.57 2002-03-13 00:00:00,31.55,12.24,29.27,94.42,50.34,24.4,40.22,1154.09,34.86 2002-03-14 00:00:00,31.67,12.22,29.57,93.91,50.72,24.05,40.67,1153.04,34.95 2002-03-15 00:00:00,32.11,12.48,29.41,94.07,50.9,24.55,41.28,1166.16,35.25 2002-03-18 00:00:00,32.08,12.37,29.2,93.69,50.94,24.42,41.15,1165.55,35.36 2002-03-19 00:00:00,31.92,12.43,29.2,94.69,51.6,24.45,41.58,1170.29,35.41 2002-03-20 00:00:00,31.47,12.46,28.4,92.94,50.81,23.61,41.02,1151.85,35.19 2002-03-21 00:00:00,31.05,12.14,27.41,94.07,51.05,24.11,40.9,1153.59,35.19 2002-03-22 00:00:00,30.49,12.05,27.72,93.03,51.09,23.75,41.3,1148.7,35.14 2002-03-25 00:00:00,30.24,11.68,27.11,91.23,50.7,23.27,41.61,1131.87,34.64 2002-03-26 00:00:00,31.13,11.73,27.31,90.65,50.98,23.21,42.15,1138.49,35.36 2002-03-27 00:00:00,31.09,11.73,27.41,91.08,51.32,23.36,41.42,1144.58,35.53 2002-03-28 00:00:00,31.05,11.84,27.37,91.62,51.17,23.7,41.79,1147.39,35.43 2002-04-01 00:00:00,30.97,12.23,27.3,90.61,50.9,23.72,41.73,1146.54,35.43 2002-04-02 00:00:00,31.19,12.03,27.15,88.93,50.78,22.51,41.07,1136.76,35.87 2002-04-03 00:00:00,30.65,11.88,26.9,88.06,50.44,22.13,40.55,1125.4,35.32 2002-04-04 00:00:00,30.34,12.45,27.3,88.83,50.01,22.18,40.92,1126.34,34.88 2002-04-05 00:00:00,31.27,12.37,27.15,85.67,49.67,21.95,41.07,1122.73,34.46 2002-04-08 00:00:00,31.15,12.28,26.98,77.0,49.93,22.48,41.23,1125.29,34.95 2002-04-09 00:00:00,30.76,12.05,26.68,77.29,49.63,21.56,41.73,1117.8,34.53 2002-04-10 00:00:00,31.55,12.33,27.23,78.41,49.98,22.12,42.43,1130.47,34.9 2002-04-11 00:00:00,31.27,12.43,24.7,74.16,49.4,21.53,42.08,1103.69,34.27 2002-04-12 00:00:00,30.71,12.53,24.55,75.41,49.37,21.98,42.11,1111.01,33.39 2002-04-15 00:00:00,30.2,12.5,23.31,75.19,48.97,21.88,41.56,1102.55,33.63 2002-04-16 00:00:00,30.92,12.87,24.22,75.94,49.84,22.72,42.16,1128.37,34.18 2002-04-17 00:00:00,30.99,13.06,24.63,74.71,49.26,22.25,42.12,1126.07,34.13 2002-04-18 00:00:00,30.8,12.7,24.74,78.36,50.65,22.15,42.04,1124.47,34.32 2002-04-19 00:00:00,30.84,12.49,24.66,78.4,50.81,22.48,43.1,1125.17,34.37 2002-04-22 00:00:00,29.38,12.27,24.05,77.46,49.9,21.84,42.87,1107.83,33.83 2002-04-23 00:00:00,29.36,12.12,24.01,76.93,49.48,21.21,42.36,1100.96,33.43 2002-04-24 00:00:00,28.79,11.89,23.79,76.2,50.12,20.83,42.95,1093.14,32.58 2002-04-25 00:00:00,28.73,12.06,23.46,76.38,49.95,21.11,42.56,1091.48,32.77 2002-04-26 00:00:00,28.5,11.51,23.05,74.62,50.12,20.24,42.38,1076.32,32.33 2002-04-29 00:00:00,27.89,11.98,22.58,73.9,49.56,20.53,42.45,1065.45,32.09 2002-04-30 00:00:00,28.0,12.14,23.09,73.79,50.31,20.53,42.11,1076.92,32.47 2002-05-01 00:00:00,28.1,11.99,23.2,74.26,50.38,20.73,42.94,1086.46,32.89 2002-05-02 00:00:00,28.45,11.85,23.13,73.87,50.58,20.12,43.06,1084.56,32.98 2002-05-03 00:00:00,28.65,11.76,23.2,72.04,49.97,19.47,42.6,1073.43,32.81 2002-05-06 00:00:00,28.18,11.32,22.67,66.95,48.93,19.1,42.19,1052.67,31.73 2002-05-07 00:00:00,28.45,11.23,22.43,67.39,47.6,19.44,42.06,1049.49,31.61 2002-05-08 00:00:00,28.92,12.19,24.04,72.77,47.98,21.6,41.89,1088.85,32.34 2002-05-09 00:00:00,28.84,12.1,23.05,70.55,48.35,20.48,42.24,1073.01,32.0 2002-05-10 00:00:00,28.92,11.66,22.43,70.33,48.73,19.67,42.52,1054.99,31.68 2002-05-13 00:00:00,29.21,11.97,22.58,72.55,48.72,20.7,42.65,1074.56,32.53 2002-05-14 00:00:00,29.96,12.81,23.11,75.45,48.09,21.56,42.8,1097.28,32.99 2002-05-15 00:00:00,29.81,12.64,22.64,74.58,47.46,21.51,42.36,1091.07,32.29 2002-05-16 00:00:00,29.63,12.6,23.42,75.42,47.7,21.9,42.64,1098.23,32.74 2002-05-17 00:00:00,29.47,12.51,24.48,75.63,48.59,22.02,42.31,1106.59,32.68 2002-05-20 00:00:00,29.24,12.37,23.86,74.54,47.79,21.22,41.83,1091.88,32.19 2002-05-21 00:00:00,29.42,11.73,23.53,73.66,47.94,20.51,41.43,1079.88,32.33 2002-05-22 00:00:00,29.3,12.16,23.36,74.14,49.01,21.1,41.89,1086.02,32.87 2002-05-23 00:00:00,29.67,12.59,24.12,74.45,48.82,21.54,41.53,1097.08,33.25 2002-05-24 00:00:00,29.4,12.07,23.86,73.35,48.54,20.93,40.76,1083.82,32.71 2002-05-28 00:00:00,29.26,11.99,23.46,72.45,48.39,20.56,41.3,1074.55,32.39 2002-05-29 00:00:00,29.17,11.99,22.98,72.02,48.51,20.45,41.33,1067.66,32.77 2002-05-30 00:00:00,29.05,12.1,22.83,72.6,48.51,20.68,41.33,1064.66,31.99 2002-05-31 00:00:00,28.91,11.65,22.79,71.01,48.5,20.0,42.18,1067.14,32.46 2002-06-03 00:00:00,28.09,11.45,22.04,68.94,47.47,19.42,41.5,1040.68,31.77 2002-06-04 00:00:00,27.62,11.39,21.99,70.0,46.96,19.64,42.02,1040.69,31.9 2002-06-05 00:00:00,27.6,11.36,22.07,71.1,47.12,20.3,42.35,1049.9,32.16 2002-06-06 00:00:00,26.53,11.08,21.44,70.31,46.44,20.39,41.41,1029.15,31.83 2002-06-07 00:00:00,26.28,10.7,22.1,69.11,46.1,20.42,41.75,1027.53,32.05 2002-06-10 00:00:00,26.4,10.74,21.92,67.79,46.64,20.75,41.71,1030.74,31.81 2002-06-11 00:00:00,25.93,10.23,21.52,66.63,45.45,20.66,41.44,1013.6,31.73 2002-06-12 00:00:00,26.49,10.05,22.21,65.89,45.25,21.82,42.03,1020.26,32.28 2002-06-13 00:00:00,26.38,9.77,21.85,66.73,45.38,21.3,41.69,1009.56,32.0 2002-06-14 00:00:00,25.92,10.05,21.74,67.23,44.92,21.71,41.42,1007.27,31.83 2002-06-17 00:00:00,26.1,10.27,22.33,68.09,45.42,21.88,42.11,1036.17,32.55 2002-06-18 00:00:00,26.45,10.07,22.8,67.03,44.63,22.0,41.71,1037.14,32.46 2002-06-19 00:00:00,25.88,8.56,22.21,64.74,44.56,21.36,42.22,1019.99,32.01 2002-06-20 00:00:00,25.78,8.56,21.74,63.18,43.51,21.26,41.71,1006.29,32.31 2002-06-21 00:00:00,25.25,8.43,21.19,60.68,41.9,20.54,41.18,989.14,31.91 2002-06-24 00:00:00,25.45,8.64,21.66,61.52,42.79,21.28,41.06,992.72,32.52 2002-06-25 00:00:00,25.73,8.57,21.15,60.55,42.17,20.81,39.9,976.14,32.2 2002-06-26 00:00:00,25.91,8.27,21.73,61.83,42.8,21.27,40.08,973.53,32.07 2002-06-27 00:00:00,26.43,8.53,22.02,63.46,43.01,21.58,39.55,990.64,32.72 2002-06-28 00:00:00,27.4,8.86,21.39,63.55,41.31,21.49,39.22,989.82,33.27 2002-07-01 00:00:00,27.27,8.53,20.95,59.67,39.92,20.69,39.89,968.65,33.05 2002-07-02 00:00:00,26.66,8.47,20.69,60.53,40.8,20.21,38.86,948.09,32.65 2002-07-03 00:00:00,26.82,8.77,20.55,62.24,41.86,20.37,38.64,953.99,32.45 2002-07-05 00:00:00,27.59,9.37,21.87,64.88,43.15,21.55,39.14,989.03,32.94 2002-07-08 00:00:00,26.86,9.01,21.67,62.93,42.36,20.79,39.75,976.98,32.81 2002-07-09 00:00:00,26.41,8.77,20.84,61.49,41.6,20.91,36.84,952.83,32.36 2002-07-10 00:00:00,25.12,8.66,19.92,60.69,39.76,20.53,36.3,920.47,31.08 2002-07-11 00:00:00,25.09,9.15,20.14,61.27,40.3,20.79,35.32,927.37,30.16 2002-07-12 00:00:00,24.89,8.76,21.06,61.09,39.92,20.38,34.26,921.39,29.7 2002-07-15 00:00:00,24.13,9.11,20.8,62.67,38.74,20.35,34.38,917.93,29.07 2002-07-16 00:00:00,23.77,8.93,20.29,60.91,39.61,20.14,32.96,900.94,28.62 2002-07-17 00:00:00,23.85,7.82,20.8,62.39,40.51,20.43,34.49,906.04,28.95 2002-07-18 00:00:00,23.33,7.49,20.4,63.6,39.31,20.08,32.8,881.56,28.25 2002-07-19 00:00:00,22.31,7.48,19.53,63.55,33.08,19.47,29.46,847.75,26.34 2002-07-22 00:00:00,20.54,7.46,18.9,60.46,33.62,18.67,28.89,819.85,24.61 2002-07-23 00:00:00,19.67,7.24,18.26,59.18,34.85,16.9,29.27,797.7,25.14 2002-07-24 00:00:00,20.61,7.6,19.54,61.38,37.71,18.16,32.19,843.43,27.59 2002-07-25 00:00:00,20.0,7.18,19.63,61.21,38.5,16.83,32.89,838.68,27.56 2002-07-26 00:00:00,21.16,7.17,20.47,58.61,39.22,17.82,32.71,852.84,28.53 2002-07-29 00:00:00,22.6,7.51,22.43,62.83,40.52,18.96,34.62,898.96,29.54 2002-07-30 00:00:00,21.59,7.72,23.27,63.37,40.27,18.9,33.97,902.78,29.0 2002-07-31 00:00:00,22.48,7.63,23.71,62.14,41.58,18.85,34.94,911.62,29.89 2002-08-01 00:00:00,21.85,7.4,23.12,60.24,40.65,17.98,34.59,884.66,27.36 2002-08-02 00:00:00,21.2,7.22,21.73,59.91,41.31,17.45,34.95,864.24,27.33 2002-08-05 00:00:00,20.03,6.99,20.84,58.25,39.61,17.28,33.32,834.6,26.42 2002-08-06 00:00:00,20.75,7.37,21.84,59.93,40.38,17.94,32.97,859.57,27.16 2002-08-07 00:00:00,20.97,7.51,22.65,61.19,41.51,18.5,34.11,876.77,27.89 2002-08-08 00:00:00,21.25,7.65,23.53,63.35,43.14,19.22,34.55,905.46,29.27 2002-08-09 00:00:00,21.78,7.5,23.86,63.54,43.09,18.91,35.64,908.64,29.54 2002-08-12 00:00:00,21.69,7.49,23.75,63.49,43.15,19.05,36.05,903.8,29.24 2002-08-13 00:00:00,21.05,7.3,22.79,63.6,42.19,18.49,35.73,884.21,28.51 2002-08-14 00:00:00,20.57,7.59,23.49,66.27,43.87,19.53,36.63,919.62,29.78 2002-08-15 00:00:00,21.14,7.8,23.78,67.67,44.25,19.56,36.21,930.25,30.39 2002-08-16 00:00:00,20.59,7.91,23.24,70.19,43.89,19.65,36.12,928.77,30.15 2002-08-19 00:00:00,21.7,7.99,24.22,72.97,44.35,20.43,35.74,950.7,30.41 2002-08-20 00:00:00,21.44,7.95,23.75,71.89,43.56,20.05,35.49,937.43,29.6 2002-08-21 00:00:00,22.46,8.06,23.79,71.65,43.55,20.54,35.47,949.36,29.82 2002-08-22 00:00:00,22.9,7.99,24.08,72.53,44.59,20.92,35.59,962.7,30.3 2002-08-23 00:00:00,22.33,7.86,23.75,71.12,43.5,20.52,35.11,940.86,29.58 2002-08-26 00:00:00,22.5,7.76,23.62,70.26,44.2,20.47,34.61,947.95,30.01 2002-08-27 00:00:00,22.19,7.43,23.53,68.96,43.44,19.98,33.61,934.82,30.19 2002-08-28 00:00:00,20.84,7.35,23.05,67.28,43.13,19.4,32.49,917.87,29.15 2002-08-29 00:00:00,20.51,7.35,22.35,67.78,42.97,19.87,31.74,917.8,28.96 2002-08-30 00:00:00,20.85,7.38,22.2,66.68,43.09,19.28,32.19,916.07,29.01 2002-09-03 00:00:00,19.55,7.03,20.96,64.0,41.8,18.48,31.27,878.02,27.51 2002-09-04 00:00:00,19.23,7.24,21.14,65.22,43.12,18.94,30.87,893.4,27.67 2002-09-05 00:00:00,18.41,7.09,20.62,63.85,43.18,18.04,30.31,879.15,27.63 2002-09-06 00:00:00,18.78,7.19,20.84,64.75,43.58,18.79,31.04,893.92,28.07 2002-09-09 00:00:00,19.37,7.18,21.2,65.9,43.8,19.14,31.59,902.96,27.82 2002-09-10 00:00:00,19.75,7.16,21.42,66.88,43.95,19.56,32.62,909.58,28.47 2002-09-11 00:00:00,19.84,7.14,21.36,65.64,44.02,19.09,32.26,909.45,28.31 2002-09-12 00:00:00,18.93,7.07,20.62,63.58,42.82,18.53,32.16,886.91,27.49 2002-09-13 00:00:00,18.28,7.09,19.92,64.13,42.96,18.83,32.8,889.81,27.89 2002-09-16 00:00:00,18.53,7.25,20.55,63.97,43.56,18.77,33.46,891.1,28.15 2002-09-17 00:00:00,17.89,7.4,20.4,63.47,42.52,18.58,32.07,873.52,27.06 2002-09-18 00:00:00,17.4,7.51,20.14,61.52,42.73,18.76,31.09,869.46,27.17 2002-09-19 00:00:00,16.72,7.29,19.55,57.32,41.23,18.55,30.35,843.32,26.48 2002-09-20 00:00:00,17.55,7.43,19.7,56.54,41.5,18.65,30.64,845.39,26.9 2002-09-23 00:00:00,16.88,7.43,19.44,56.06,41.93,17.77,30.39,833.7,26.77 2002-09-24 00:00:00,16.27,7.32,19.07,52.86,42.54,17.93,30.04,819.29,26.14 2002-09-25 00:00:00,16.61,7.47,20.02,55.74,42.57,18.28,30.23,839.66,26.68 2002-09-26 00:00:00,16.62,7.35,19.57,54.86,44.07,18.15,30.55,854.95,27.94 2002-09-27 00:00:00,16.04,7.36,18.15,53.39,43.72,17.78,29.97,827.37,26.86 2002-09-30 00:00:00,16.04,7.25,18.28,51.58,42.91,17.19,30.19,815.28,26.1 2002-10-01 00:00:00,17.25,7.26,19.43,54.11,44.67,18.16,30.8,847.91,27.76 2002-10-02 00:00:00,16.91,7.09,18.39,52.75,46.26,17.92,30.84,827.91,26.72 2002-10-03 00:00:00,16.71,7.15,18.26,53.08,46.0,17.6,30.41,818.95,27.15 2002-10-04 00:00:00,15.88,7.01,17.81,50.07,45.19,17.2,30.23,800.58,27.05 2002-10-07 00:00:00,15.49,6.89,17.02,50.3,44.99,17.31,29.23,785.28,27.16 2002-10-08 00:00:00,15.39,6.84,17.32,50.47,46.41,17.68,33.58,798.55,26.76 2002-10-09 00:00:00,14.99,6.8,16.32,48.72,44.59,17.28,33.99,776.76,26.86 2002-10-10 00:00:00,15.5,7.05,16.76,50.94,45.07,18.22,33.96,803.92,27.65 2002-10-11 00:00:00,16.91,7.26,17.95,56.54,44.99,19.2,34.86,835.32,28.26 2002-10-14 00:00:00,16.79,7.39,18.06,56.1,45.88,19.37,35.11,841.44,28.58 2002-10-15 00:00:00,18.0,7.58,19.43,60.58,47.26,20.55,35.39,881.27,29.7 2002-10-16 00:00:00,17.6,7.28,18.99,57.41,46.73,19.81,35.58,860.02,29.07 2002-10-17 00:00:00,18.7,7.05,19.94,63.87,47.76,19.95,35.73,879.2,29.7 2002-10-18 00:00:00,18.97,7.17,19.76,65.68,47.09,20.88,35.78,884.39,29.46 2002-10-21 00:00:00,19.72,7.28,20.13,66.83,48.49,20.63,36.68,899.72,29.46 2002-10-22 00:00:00,19.4,7.35,20.08,65.89,47.46,20.3,36.53,890.16,28.79 2002-10-23 00:00:00,18.78,7.44,19.95,65.99,45.98,20.9,36.43,896.14,28.75 2002-10-24 00:00:00,18.86,7.34,19.28,63.78,45.79,20.13,36.42,882.5,28.37 2002-10-25 00:00:00,19.34,7.71,19.46,65.96,45.83,20.7,36.1,897.65,28.73 2002-10-28 00:00:00,18.92,7.8,19.47,67.73,45.44,20.41,35.22,890.23,28.34 2002-10-29 00:00:00,18.59,7.72,19.17,67.88,44.63,20.46,35.67,882.15,27.19 2002-10-30 00:00:00,18.95,7.99,18.65,69.59,45.46,20.87,35.77,890.71,27.89 2002-10-31 00:00:00,18.34,8.03,18.73,69.83,46.61,21.01,36.03,885.76,27.54 2002-11-01 00:00:00,19.16,8.18,19.28,71.12,46.49,20.83,36.19,900.96,28.36 2002-11-04 00:00:00,19.55,8.44,19.65,72.98,46.58,22.04,35.48,908.35,28.03 2002-11-05 00:00:00,19.42,8.45,19.65,72.25,47.52,22.27,35.95,915.39,29.11 2002-11-06 00:00:00,19.95,8.61,19.73,72.26,47.82,22.41,35.56,923.76,28.73 2002-11-07 00:00:00,19.63,8.0,19.36,69.97,47.52,22.01,35.52,902.65,28.4 2002-11-08 00:00:00,19.45,7.92,18.61,68.76,47.82,21.65,35.77,894.74,28.51 2002-11-11 00:00:00,18.74,7.58,17.95,68.5,47.61,21.16,35.33,876.19,27.9 2002-11-12 00:00:00,19.18,7.82,17.69,70.15,47.62,21.42,34.68,882.95,28.04 2002-11-13 00:00:00,18.7,7.8,17.87,70.32,47.55,21.75,35.47,882.53,27.51 2002-11-14 00:00:00,19.48,8.15,18.17,71.54,47.97,22.39,36.15,904.27,28.42 2002-11-15 00:00:00,19.18,7.97,17.69,70.91,47.89,22.27,36.69,909.83,28.7 2002-11-18 00:00:00,19.04,7.82,17.5,70.17,47.04,21.94,36.18,900.36,28.8 2002-11-19 00:00:00,18.86,7.64,17.72,69.45,46.81,21.56,36.68,896.74,28.99 2002-11-20 00:00:00,19.02,7.76,18.39,72.33,47.77,22.25,35.74,914.15,29.03 2002-11-21 00:00:00,20.67,8.18,19.91,75.24,47.35,22.73,34.47,933.76,28.71 2002-11-22 00:00:00,20.5,8.01,19.62,74.82,46.61,22.88,34.34,930.55,28.19 2002-11-25 00:00:00,20.54,7.99,19.88,76.39,46.69,22.88,33.89,932.87,28.5 2002-11-26 00:00:00,20.5,7.7,19.54,75.38,44.91,22.36,33.89,913.31,27.97 2002-11-27 00:00:00,21.31,7.86,20.13,77.72,45.97,22.82,34.54,938.87,28.8 2002-11-29 00:00:00,21.37,7.75,20.11,77.03,45.4,22.66,34.71,936.31,28.66 2002-12-02 00:00:00,21.4,7.59,20.17,77.37,44.34,22.67,34.48,934.53,28.48 2002-12-03 00:00:00,20.72,7.58,19.84,75.52,44.45,22.28,35.05,920.75,28.75 2002-12-04 00:00:00,20.35,7.49,19.67,74.17,45.16,22.22,35.56,917.58,28.64 2002-12-05 00:00:00,20.02,7.32,19.13,73.61,44.48,21.74,35.44,906.55,28.64 2002-12-06 00:00:00,20.01,7.47,19.32,72.95,44.0,21.8,36.05,912.23,28.95 2002-12-09 00:00:00,19.26,7.38,18.91,70.54,44.23,21.03,35.43,892.0,28.42 2002-12-10 00:00:00,19.25,7.64,19.23,71.61,44.47,21.22,35.87,904.45,28.86 2002-12-11 00:00:00,18.98,7.74,19.39,72.18,44.72,21.48,35.38,904.96,28.84 2002-12-12 00:00:00,19.45,7.59,19.21,71.05,43.83,21.28,35.4,901.58,28.73 2002-12-13 00:00:00,19.27,7.39,18.91,70.9,43.72,20.63,34.31,889.48,28.86 2002-12-16 00:00:00,20.2,7.43,19.6,72.33,44.25,21.41,34.76,910.4,29.54 2002-12-17 00:00:00,19.99,7.54,19.28,71.17,43.52,21.36,33.76,902.99,29.26 2002-12-18 00:00:00,19.39,7.28,19.03,70.13,42.75,21.03,33.49,891.12,29.27 2002-12-19 00:00:00,19.24,7.1,18.84,69.71,42.52,20.87,33.18,884.25,28.95 2002-12-20 00:00:00,19.95,7.07,19.24,70.71,43.41,20.84,33.83,895.76,29.4 2002-12-23 00:00:00,19.59,7.24,19.08,71.13,43.39,21.22,34.22,897.38,29.45 2002-12-24 00:00:00,19.27,7.18,18.79,70.69,43.71,21.15,34.43,892.47,29.17 2002-12-26 00:00:00,19.29,7.2,18.76,69.57,42.88,20.98,34.77,889.66,29.09 2002-12-27 00:00:00,18.86,7.03,18.46,68.56,42.28,20.81,34.16,875.4,28.53 2002-12-30 00:00:00,19.02,7.03,18.31,67.58,42.82,20.73,34.47,879.39,28.62 2002-12-31 00:00:00,19.06,7.16,18.19,68.68,42.76,20.31,34.61,879.82,28.78 2003-01-02 00:00:00,19.7,7.4,19.04,71.4,44.05,21.11,35.34,909.03,29.22 2003-01-03 00:00:00,19.91,7.45,18.98,72.36,45.23,21.14,35.58,908.59,29.24 2003-01-06 00:00:00,20.4,7.45,19.47,74.08,45.66,21.52,35.22,929.01,29.96 2003-01-07 00:00:00,20.4,7.43,19.35,76.22,44.63,21.93,34.58,922.93,28.95 2003-01-08 00:00:00,18.28,7.28,19.05,74.61,44.37,21.31,35.01,909.93,28.83 2003-01-09 00:00:00,18.82,7.34,19.35,77.1,45.26,21.93,35.37,927.57,29.44 2003-01-10 00:00:00,19.07,7.36,19.17,77.71,45.54,21.97,35.14,927.57,29.03 2003-01-13 00:00:00,19.13,7.32,19.16,77.55,44.62,22.16,35.45,926.26,28.91 2003-01-14 00:00:00,19.37,7.3,19.21,78.5,44.87,22.39,35.62,931.66,29.17 2003-01-15 00:00:00,18.57,7.22,18.82,77.63,43.79,22.11,35.2,918.22,28.77 2003-01-16 00:00:00,18.5,7.31,18.7,76.26,43.53,21.75,35.85,914.6,28.9 2003-01-17 00:00:00,18.53,7.05,18.59,72.05,43.62,20.22,35.79,901.78,28.6 2003-01-21 00:00:00,17.68,7.01,17.98,71.38,42.98,20.17,35.54,887.62,27.94 2003-01-22 00:00:00,17.4,6.94,17.6,70.63,42.99,20.04,35.09,878.36,27.58 2003-01-23 00:00:00,18.15,7.09,17.9,71.83,43.63,20.54,34.38,887.34,27.52 2003-01-24 00:00:00,17.33,6.9,17.23,70.0,42.68,19.59,33.66,861.4,26.93 2003-01-27 00:00:00,16.86,7.07,17.22,69.5,41.54,19.32,33.24,847.48,26.21 2003-01-28 00:00:00,16.95,7.29,17.3,71.0,42.23,19.18,33.23,858.54,26.9 2003-01-29 00:00:00,17.02,7.47,17.21,71.18,41.72,19.61,33.21,864.36,27.88 2003-01-30 00:00:00,16.62,7.16,16.85,69.39,41.03,18.95,31.74,844.61,27.37 2003-01-31 00:00:00,16.54,7.18,17.29,69.3,42.68,18.65,33.19,855.7,28.13 2003-02-03 00:00:00,16.69,7.33,17.67,69.29,42.47,19.08,33.4,860.32,28.52 2003-02-04 00:00:00,16.16,7.3,17.22,68.32,42.0,18.59,33.78,848.2,28.52 2003-02-05 00:00:00,16.73,7.22,17.19,68.47,41.48,18.45,33.68,843.59,28.11 2003-02-06 00:00:00,16.41,7.22,17.1,68.83,41.49,18.63,32.97,838.15,27.87 2003-02-07 00:00:00,16.52,7.07,16.96,68.46,41.27,18.3,31.98,829.69,27.66 2003-02-10 00:00:00,16.69,7.18,16.91,69.18,41.43,18.62,32.18,835.97,27.87 2003-02-11 00:00:00,16.7,7.18,16.81,68.72,41.4,18.25,31.47,829.2,27.67 2003-02-12 00:00:00,16.67,7.2,16.63,67.93,39.81,18.25,31.49,818.68,27.12 2003-02-13 00:00:00,16.69,7.27,16.57,67.36,41.02,18.46,31.89,817.37,27.47 2003-02-14 00:00:00,16.9,7.34,16.8,68.77,41.37,18.98,32.68,834.89,27.73 2003-02-18 00:00:00,17.66,7.64,17.12,70.44,42.42,19.61,32.99,851.17,27.99 2003-02-19 00:00:00,17.31,7.43,17.45,70.6,42.03,19.34,32.83,845.13,28.01 2003-02-20 00:00:00,17.07,7.39,17.45,70.28,41.51,19.03,32.27,837.1,27.89 2003-02-21 00:00:00,17.51,7.5,17.78,70.99,42.75,19.42,32.3,848.17,28.34 2003-02-24 00:00:00,16.82,7.37,17.5,69.76,41.91,18.98,31.83,832.58,28.19 2003-02-25 00:00:00,17.15,7.51,17.92,70.21,42.18,19.07,31.84,838.57,28.31 2003-02-26 00:00:00,17.1,7.25,17.6,68.73,41.43,18.61,31.35,827.55,28.06 2003-02-27 00:00:00,17.26,7.43,18.0,68.62,42.19,18.59,31.33,837.28,28.18 2003-02-28 00:00:00,17.28,7.51,18.11,69.22,41.93,18.68,31.42,841.15,28.21 2003-03-03 00:00:00,17.23,7.32,18.0,68.67,41.91,18.56,31.24,834.81,28.58 2003-03-04 00:00:00,16.85,7.28,17.62,68.11,41.32,18.19,31.2,821.99,28.39 2003-03-05 00:00:00,16.87,7.31,17.93,69.02,42.22,18.48,30.58,829.85,28.96 2003-03-06 00:00:00,16.2,7.28,18.04,68.44,42.61,18.35,30.87,822.1,28.66 2003-03-07 00:00:00,16.13,7.26,18.3,69.17,44.21,18.57,31.56,828.89,28.85 2003-03-10 00:00:00,15.85,7.18,17.78,67.22,43.27,18.09,30.97,807.48,28.48 2003-03-11 00:00:00,15.66,7.11,17.59,66.91,43.55,17.98,30.91,800.73,28.67 2003-03-12 00:00:00,15.91,7.11,17.93,66.76,43.71,18.44,31.06,804.19,28.24 2003-03-13 00:00:00,16.76,7.36,18.99,69.66,44.35,19.45,31.99,831.9,28.6 2003-03-14 00:00:00,16.81,7.39,19.32,70.15,44.12,19.6,32.1,833.27,28.52 2003-03-17 00:00:00,17.55,7.51,19.79,73.22,45.08,20.44,33.25,862.79,29.07 2003-03-18 00:00:00,17.82,7.5,19.88,73.23,45.39,20.53,33.1,866.45,29.23 2003-03-19 00:00:00,17.92,7.47,20.32,72.81,45.81,20.75,33.3,874.02,29.51 2003-03-20 00:00:00,17.87,7.45,20.22,72.99,45.88,20.69,33.05,875.67,29.51 2003-03-21 00:00:00,18.45,7.5,21.09,75.39,46.9,20.95,34.16,895.79,29.85 2003-03-24 00:00:00,17.56,7.18,20.13,73.03,45.37,19.94,32.99,864.23,29.28 2003-03-25 00:00:00,17.98,7.28,20.32,74.1,45.63,20.1,33.01,874.74,29.58 2003-03-26 00:00:00,17.52,7.2,20.03,72.41,45.29,19.91,32.78,869.95,29.74 2003-03-27 00:00:00,17.06,7.24,19.91,72.32,45.53,19.74,33.16,868.52,29.79 2003-03-28 00:00:00,17.2,7.28,19.61,71.79,45.87,19.45,32.84,863.5,29.88 2003-03-31 00:00:00,16.34,7.07,19.21,69.64,46.26,19.09,32.92,848.18,28.98 2003-04-01 00:00:00,16.36,7.08,19.68,69.91,46.7,19.2,32.91,858.48,29.56 2003-04-02 00:00:00,16.95,7.3,20.37,72.33,46.69,20.28,32.68,880.9,29.6 2003-04-03 00:00:00,16.79,7.23,20.75,72.73,45.93,20.29,31.42,876.45,29.07 2003-04-04 00:00:00,16.9,7.2,20.81,71.74,46.24,19.78,31.81,878.85,29.45 2003-04-07 00:00:00,18.24,7.24,20.91,71.45,45.83,19.84,32.04,879.93,29.07 2003-04-08 00:00:00,18.19,7.22,21.13,71.1,45.97,20.17,32.29,878.29,28.68 2003-04-09 00:00:00,18.04,7.09,20.56,69.89,45.77,19.37,32.42,865.99,28.58 2003-04-10 00:00:00,17.92,7.18,20.62,70.16,45.73,19.39,32.75,871.58,28.76 2003-04-11 00:00:00,17.94,6.6,20.83,69.93,45.87,19.08,33.15,868.3,28.47 2003-04-14 00:00:00,18.59,6.79,20.91,71.1,46.19,19.52,33.72,885.23,28.92 2003-04-15 00:00:00,19.05,6.7,21.32,73.51,44.75,19.39,33.39,890.81,29.07 2003-04-16 00:00:00,18.86,6.62,20.96,73.59,43.48,19.65,32.84,879.91,28.77 2003-04-17 00:00:00,19.15,6.56,21.46,74.82,43.98,20.1,35.02,893.58,29.05 2003-04-21 00:00:00,19.18,6.57,21.21,74.02,44.26,19.88,34.44,892.01,28.92 2003-04-22 00:00:00,19.12,6.76,21.84,76.04,44.84,20.31,34.82,911.37,29.37 2003-04-23 00:00:00,19.15,6.79,22.14,76.14,45.41,20.28,35.39,919.02,29.31 2003-04-24 00:00:00,18.56,6.72,21.92,75.65,45.97,20.1,35.67,911.43,29.13 2003-04-25 00:00:00,18.48,6.68,21.93,74.48,44.93,19.88,35.11,898.81,28.85 2003-04-28 00:00:00,18.94,6.93,22.23,75.58,45.57,20.29,35.76,914.84,29.36 2003-04-29 00:00:00,19.15,7.03,22.14,76.06,45.48,20.34,35.76,917.84,28.88 2003-04-30 00:00:00,19.46,7.11,22.18,75.39,45.05,20.16,35.62,916.92,29.19 2003-05-01 00:00:00,19.34,7.18,21.92,76.27,45.02,20.28,36.02,916.3,29.42 2003-05-02 00:00:00,19.59,7.22,21.9,77.76,45.28,20.58,35.75,930.08,29.89 2003-05-05 00:00:00,19.67,8.05,21.71,76.83,45.13,20.39,35.62,926.55,29.4 2003-05-06 00:00:00,19.72,8.75,21.93,77.71,45.18,20.79,35.72,934.39,29.19 2003-05-07 00:00:00,19.57,8.82,21.73,77.11,45.57,20.49,35.65,929.62,29.36 2003-05-08 00:00:00,19.3,9.0,21.44,76.55,45.12,20.29,35.48,920.27,29.31 2003-05-09 00:00:00,19.6,9.15,21.84,77.88,45.04,20.78,35.96,933.41,29.62 2003-05-12 00:00:00,19.75,9.28,21.82,79.17,44.89,20.66,35.95,945.11,29.69 2003-05-13 00:00:00,19.49,9.34,21.5,80.04,44.37,20.49,35.78,942.3,29.67 2003-05-14 00:00:00,19.27,9.27,21.55,78.91,44.25,20.2,35.7,939.28,29.41 2003-05-15 00:00:00,19.31,9.36,21.45,79.97,44.32,20.33,36.03,946.67,29.47 2003-05-16 00:00:00,19.29,9.4,20.98,79.16,44.99,20.16,35.64,944.3,29.61 2003-05-19 00:00:00,18.65,9.05,20.75,76.9,43.86,19.52,35.38,920.77,29.26 2003-05-20 00:00:00,18.8,8.9,20.89,76.3,43.35,19.42,35.39,919.73,29.5 2003-05-21 00:00:00,19.45,8.93,20.79,76.66,42.91,18.94,35.64,923.42,29.89 2003-05-22 00:00:00,20.13,9.12,20.89,76.58,42.86,19.05,36.0,931.87,30.02 2003-05-23 00:00:00,20.23,9.16,20.82,75.85,42.63,19.09,35.86,933.22,30.05 2003-05-27 00:00:00,20.72,9.44,21.32,78.01,42.89,19.54,36.37,951.48,30.66 2003-05-28 00:00:00,20.67,9.14,21.29,77.9,43.08,19.24,35.85,953.22,30.44 2003-05-29 00:00:00,20.39,9.05,21.28,77.71,42.87,19.24,36.0,949.64,30.04 2003-05-30 00:00:00,20.89,8.98,21.62,78.32,43.64,19.4,36.38,963.59,30.4 2003-06-02 00:00:00,21.47,8.73,21.84,77.69,42.73,19.43,36.3,967.0,30.55 2003-06-03 00:00:00,21.28,8.65,21.88,74.57,43.24,19.61,36.41,971.56,30.88 2003-06-04 00:00:00,22.05,8.8,22.11,74.95,43.4,19.61,36.93,986.24,31.23 2003-06-05 00:00:00,21.93,8.82,22.43,72.86,41.77,18.99,36.65,990.14,31.03 2003-06-06 00:00:00,22.01,8.57,22.82,71.21,42.35,18.66,36.46,987.76,31.18 2003-06-09 00:00:00,21.64,8.4,22.7,72.95,42.33,18.72,36.23,975.93,31.28 2003-06-10 00:00:00,22.02,8.59,23.04,72.69,42.26,19.46,36.53,984.84,31.35 2003-06-11 00:00:00,22.13,8.73,23.33,74.7,42.55,19.61,36.7,997.48,31.9 2003-06-12 00:00:00,22.19,8.89,23.4,74.68,42.77,19.7,36.84,998.51,31.9 2003-06-13 00:00:00,21.71,8.71,23.09,73.61,42.2,19.43,36.96,988.61,31.68 2003-06-16 00:00:00,22.3,9.14,23.61,75.17,43.11,20.02,37.59,1010.74,31.99 2003-06-17 00:00:00,22.58,9.1,23.5,74.99,43.97,20.47,37.08,1011.66,31.46 2003-06-18 00:00:00,22.58,9.56,23.15,75.35,44.12,20.55,37.14,1010.09,31.18 2003-06-19 00:00:00,22.36,9.57,22.49,75.21,43.69,20.55,36.85,994.7,30.8 2003-06-20 00:00:00,22.27,9.6,22.6,75.54,43.72,20.76,36.7,995.69,30.81 2003-06-23 00:00:00,21.28,9.53,22.5,74.0,42.83,20.32,36.49,981.64,30.85 2003-06-24 00:00:00,21.18,9.39,22.54,74.4,42.23,20.26,36.3,983.45,30.82 2003-06-25 00:00:00,20.8,9.55,22.04,73.38,42.13,19.91,35.98,975.32,30.62 2003-06-26 00:00:00,21.42,9.65,22.1,75.04,41.99,20.3,36.48,985.82,30.65 2003-06-27 00:00:00,21.29,9.36,21.7,74.21,41.38,20.21,36.22,976.22,30.37 2003-06-30 00:00:00,21.64,9.53,21.74,73.39,41.51,20.21,36.76,974.5,29.99 2003-07-01 00:00:00,21.64,9.55,21.7,74.36,42.09,20.62,36.67,982.32,30.22 2003-07-02 00:00:00,21.67,9.64,21.69,75.38,42.47,21.19,36.73,993.75,30.3 2003-07-03 00:00:00,21.47,9.56,21.64,74.68,42.54,20.89,36.37,985.7,30.12 2003-07-07 00:00:00,21.82,9.94,22.19,76.58,42.54,21.62,36.65,1004.42,30.11 2003-07-08 00:00:00,21.91,10.2,21.84,76.73,42.14,21.84,37.27,1007.84,29.77 2003-07-09 00:00:00,21.62,9.94,21.52,76.03,41.69,21.66,36.8,1002.21,29.95 2003-07-10 00:00:00,21.18,9.79,21.37,74.75,41.15,21.22,38.79,988.7,29.65 2003-07-11 00:00:00,21.45,9.93,21.32,75.52,41.65,21.53,39.17,998.14,29.73 2003-07-14 00:00:00,21.31,9.95,21.26,75.99,43.03,21.6,38.88,1003.86,29.48 2003-07-15 00:00:00,21.01,9.81,20.98,76.9,42.19,21.5,39.23,1000.42,29.39 2003-07-16 00:00:00,20.88,9.94,20.76,77.16,42.23,21.7,39.45,994.09,29.16 2003-07-17 00:00:00,20.63,10.45,20.54,74.13,41.97,21.04,38.64,981.73,29.4 2003-07-18 00:00:00,20.96,10.43,21.06,74.48,42.34,21.2,39.09,993.32,29.97 2003-07-21 00:00:00,20.53,10.31,20.59,73.39,41.25,20.53,38.88,978.8,29.55 2003-07-22 00:00:00,21.11,10.4,20.78,72.81,41.56,20.8,38.87,988.11,29.83 2003-07-23 00:00:00,21.77,10.4,20.79,73.21,41.91,20.85,38.83,988.61,29.79 2003-07-24 00:00:00,21.93,10.26,20.8,72.51,41.51,20.5,38.55,981.6,29.44 2003-07-25 00:00:00,22.67,10.77,21.55,74.32,41.93,21.2,38.93,998.68,29.87 2003-07-28 00:00:00,22.86,10.49,21.51,73.43,41.32,20.98,38.31,996.52,29.86 2003-07-29 00:00:00,22.86,10.36,21.15,72.77,40.65,20.87,38.0,989.28,29.59 2003-07-30 00:00:00,22.87,10.14,21.2,72.02,41.0,20.68,38.29,987.49,29.5 2003-07-31 00:00:00,23.57,10.54,21.56,72.28,41.58,20.82,38.06,990.31,29.71 2003-08-01 00:00:00,23.01,10.36,21.58,72.3,40.49,20.63,37.46,980.15,29.51 2003-08-04 00:00:00,23.23,10.6,21.59,72.17,40.63,20.64,37.22,982.82,29.74 2003-08-05 00:00:00,22.76,10.19,21.08,71.03,39.97,20.23,36.88,965.46,29.52 2003-08-06 00:00:00,22.57,9.81,20.98,71.09,40.31,20.22,36.98,967.08,29.86 2003-08-07 00:00:00,22.62,9.97,21.29,71.92,41.59,20.27,37.17,974.12,30.27 2003-08-08 00:00:00,22.9,9.82,21.29,72.09,41.55,20.17,37.55,977.59,30.5 2003-08-11 00:00:00,23.21,9.83,21.44,72.22,41.49,20.19,37.35,980.59,30.71 2003-08-12 00:00:00,23.13,9.85,21.48,72.66,41.16,20.29,37.67,990.35,30.87 2003-08-13 00:00:00,23.06,10.09,21.24,72.38,40.94,20.18,37.15,984.03,30.69 2003-08-14 00:00:00,23.73,9.98,21.64,72.7,40.95,20.21,37.17,990.51,31.06 2003-08-15 00:00:00,23.64,9.85,21.82,72.91,41.18,20.14,37.37,990.67,30.97 2003-08-18 00:00:00,24.05,10.17,22.59,74.45,40.67,20.26,37.42,999.74,31.05 2003-08-19 00:00:00,23.94,10.16,22.63,73.85,40.38,20.99,36.93,1002.35,30.84 2003-08-20 00:00:00,24.12,10.51,22.33,74.03,40.36,20.85,36.51,1000.3,30.95 2003-08-21 00:00:00,24.4,10.84,22.86,73.85,39.85,20.69,36.36,1003.27,31.16 2003-08-22 00:00:00,24.01,10.44,22.65,73.96,39.96,20.67,35.95,993.06,30.72 2003-08-25 00:00:00,23.72,10.43,22.63,73.06,39.99,20.89,36.11,993.71,30.92 2003-08-26 00:00:00,23.68,10.52,22.65,73.54,40.07,20.95,36.41,996.73,30.97 2003-08-27 00:00:00,23.57,10.74,22.55,73.09,39.74,20.83,36.37,996.79,31.32 2003-08-28 00:00:00,24.2,11.1,22.5,73.0,39.64,20.9,36.98,1002.84,31.58 2003-08-29 00:00:00,24.38,11.31,22.42,73.1,40.0,20.91,36.79,1008.01,31.7 2003-09-02 00:00:00,24.43,11.43,23.08,76.44,40.33,21.49,37.12,1021.99,31.93 2003-09-03 00:00:00,24.15,11.48,23.59,76.95,40.53,22.31,37.14,1026.27,32.02 2003-09-04 00:00:00,23.97,11.41,23.74,78.36,41.24,22.41,36.98,1027.97,32.09 2003-09-05 00:00:00,23.89,11.25,23.53,77.5,40.74,22.37,36.62,1021.39,31.93 2003-09-08 00:00:00,24.07,11.37,23.79,79.42,41.38,22.74,37.03,1031.64,32.35 2003-09-09 00:00:00,24.38,11.19,23.62,79.71,41.34,22.37,36.8,1023.17,32.05 2003-09-10 00:00:00,23.83,11.09,23.52,78.3,41.98,21.72,37.08,1010.92,31.95 2003-09-11 00:00:00,24.09,11.28,23.87,78.37,42.15,21.95,37.08,1016.42,31.95 2003-09-12 00:00:00,24.9,11.55,23.9,79.06,41.65,22.34,37.46,1018.63,31.73 2003-09-15 00:00:00,24.36,11.1,23.8,78.88,41.01,22.36,37.43,1014.81,31.54 2003-09-16 00:00:00,24.02,11.18,24.21,80.48,41.02,22.78,38.0,1029.32,31.71 2003-09-17 00:00:00,23.91,11.06,24.05,80.79,40.51,22.47,37.62,1025.97,30.98 2003-09-18 00:00:00,24.15,11.44,24.34,82.01,40.93,23.26,37.91,1039.58,31.18 2003-09-19 00:00:00,24.28,11.29,24.21,83.15,40.58,23.62,37.94,1036.3,31.11 2003-09-22 00:00:00,23.61,11.04,23.8,81.46,40.48,22.92,37.56,1022.82,30.88 2003-09-23 00:00:00,23.6,11.22,23.93,81.42,40.35,23.34,37.88,1029.03,31.16 2003-09-24 00:00:00,23.43,10.66,23.36,79.69,39.89,22.44,37.55,1009.38,31.03 2003-09-25 00:00:00,23.18,10.22,23.17,79.7,39.95,22.26,37.73,1003.27,31.24 2003-09-26 00:00:00,22.77,10.35,22.79,79.38,39.67,22.22,37.83,996.85,30.93 2003-09-29 00:00:00,23.35,10.65,23.17,79.73,40.22,22.73,38.32,1006.58,31.13 2003-09-30 00:00:00,22.33,10.36,22.74,78.73,39.95,21.92,38.0,995.97,30.78 2003-10-01 00:00:00,22.78,10.4,23.37,80.54,40.55,22.48,38.7,1018.22,31.41 2003-10-02 00:00:00,23.16,10.28,23.46,80.29,40.58,22.47,38.89,1020.24,31.58 2003-10-03 00:00:00,24.03,10.85,23.51,80.79,40.42,22.93,39.13,1029.85,31.74 2003-10-06 00:00:00,24.13,11.15,23.49,81.28,40.46,23.01,39.38,1034.35,32.03 2003-10-07 00:00:00,24.06,11.61,23.38,81.74,40.41,22.97,39.3,1039.25,32.24 2003-10-08 00:00:00,24.47,11.53,23.04,82.59,40.16,22.72,39.63,1033.78,31.99 2003-10-09 00:00:00,25.33,11.73,22.98,82.41,39.84,22.82,39.78,1038.73,31.91 2003-10-10 00:00:00,25.37,11.84,22.37,82.6,39.72,22.79,39.8,1038.06,32.21 2003-10-13 00:00:00,25.7,12.18,22.07,83.08,40.16,22.69,40.07,1045.35,32.36 2003-10-14 00:00:00,26.23,12.27,22.34,82.65,41.08,22.61,40.2,1049.48,32.58 2003-10-15 00:00:00,26.25,12.41,22.01,82.67,40.74,23.05,39.72,1046.76,32.37 2003-10-16 00:00:00,26.3,11.62,22.14,79.58,40.89,23.17,39.81,1050.07,32.72 2003-10-17 00:00:00,25.71,11.38,21.78,79.54,40.66,22.94,39.7,1039.32,32.51 2003-10-20 00:00:00,25.78,11.61,21.95,79.33,40.84,23.27,39.92,1044.68,32.48 2003-10-21 00:00:00,25.72,11.59,22.03,79.27,41.02,23.27,39.69,1046.03,32.25 2003-10-22 00:00:00,25.31,11.38,21.63,78.85,40.26,22.9,39.56,1030.36,31.41 2003-10-23 00:00:00,25.22,11.49,21.66,78.57,40.58,22.92,39.81,1033.77,31.62 2003-10-24 00:00:00,24.89,11.3,21.59,78.82,40.62,21.1,39.78,1028.91,31.83 2003-10-27 00:00:00,25.6,11.3,21.53,78.9,40.27,21.33,39.44,1031.13,31.74 2003-10-28 00:00:00,26.0,11.86,21.76,80.13,40.77,21.56,40.21,1046.79,31.95 2003-10-29 00:00:00,26.71,11.85,21.99,79.64,39.91,21.2,39.9,1048.11,31.79 2003-10-30 00:00:00,27.44,11.55,22.03,79.44,39.91,20.71,39.8,1046.94,30.53 2003-10-31 00:00:00,26.94,11.44,22.13,79.76,40.6,20.72,39.65,1050.71,30.76 2003-11-03 00:00:00,27.47,11.57,21.97,79.94,40.16,21.15,39.65,1059.02,30.84 2003-11-04 00:00:00,27.34,11.45,21.86,79.46,39.65,20.67,39.59,1053.25,30.54 2003-11-05 00:00:00,27.41,11.52,21.69,78.88,39.65,20.69,39.28,1051.81,30.3 2003-11-06 00:00:00,27.6,11.56,21.69,79.78,39.66,20.8,39.77,1058.05,30.21 2003-11-07 00:00:00,28.27,11.25,21.45,78.82,39.37,20.69,39.37,1053.21,30.11 2003-11-10 00:00:00,27.5,10.95,21.49,80.32,39.31,20.61,39.31,1047.11,30.28 2003-11-11 00:00:00,26.94,10.77,21.44,79.8,39.59,20.45,39.74,1046.57,30.53 2003-11-12 00:00:00,28.05,11.16,21.89,80.99,39.93,20.6,39.85,1058.53,30.5 2003-11-13 00:00:00,28.41,11.21,21.62,81.34,40.61,20.37,39.38,1058.41,30.71 2003-11-14 00:00:00,27.76,10.73,21.27,80.59,42.25,20.22,39.24,1050.35,30.48 2003-11-17 00:00:00,27.95,10.56,21.21,80.19,41.88,19.94,39.52,1043.63,30.15 2003-11-18 00:00:00,27.65,10.2,21.69,79.43,42.1,19.94,39.13,1034.15,29.77 2003-11-19 00:00:00,27.5,10.21,22.48,79.83,42.36,20.1,39.75,1042.44,30.01 2003-11-20 00:00:00,26.9,10.19,22.08,78.93,41.74,19.9,39.19,1033.65,29.9 2003-11-21 00:00:00,26.89,10.14,21.79,79.15,41.24,19.91,39.39,1035.28,29.93 2003-11-24 00:00:00,27.17,10.57,21.93,80.07,41.73,20.4,39.8,1052.08,30.11 2003-11-25 00:00:00,27.73,10.34,22.05,79.86,41.09,20.14,39.59,1053.89,30.33 2003-11-26 00:00:00,27.96,10.36,21.95,80.29,40.28,20.18,39.76,1058.45,30.72 2003-11-28 00:00:00,28.13,10.45,21.87,80.85,39.96,20.38,39.9,1058.2,30.65 2003-12-01 00:00:00,29.09,10.85,22.14,81.27,40.12,20.49,40.38,1070.12,30.82 2003-12-02 00:00:00,29.28,10.77,22.49,81.04,39.68,20.34,39.91,1066.62,30.91 2003-12-03 00:00:00,29.56,10.52,22.52,80.64,39.85,20.35,39.55,1064.73,30.94 2003-12-04 00:00:00,30.4,10.57,22.24,81.64,39.98,20.77,39.92,1069.72,31.35 2003-12-05 00:00:00,30.0,10.43,22.2,80.94,39.85,20.6,40.21,1061.5,31.15 2003-12-08 00:00:00,30.46,10.52,22.4,81.44,40.41,20.8,40.01,1069.3,31.67 2003-12-09 00:00:00,29.98,10.23,22.55,80.93,40.54,20.91,39.3,1060.18,31.87 2003-12-10 00:00:00,28.92,10.19,22.67,81.91,40.73,21.08,39.02,1059.05,32.0 2003-12-11 00:00:00,29.71,10.6,23.19,82.51,40.53,21.1,39.0,1071.21,32.1 2003-12-12 00:00:00,29.87,10.44,22.97,82.79,40.03,21.13,39.0,1074.14,32.23 2003-12-15 00:00:00,29.96,10.09,23.14,82.25,40.09,21.2,39.41,1068.04,32.01 2003-12-16 00:00:00,30.0,10.06,23.38,83.92,40.06,21.45,39.43,1075.13,32.58 2003-12-17 00:00:00,30.54,9.94,23.44,83.4,40.0,21.44,39.22,1076.48,32.92 2003-12-18 00:00:00,31.2,10.02,23.53,82.81,40.5,21.72,39.22,1089.18,33.37 2003-12-19 00:00:00,31.98,9.85,23.56,83.17,40.61,21.69,39.24,1088.66,33.53 2003-12-22 00:00:00,32.34,9.93,23.65,83.4,40.92,21.55,39.09,1092.94,33.42 2003-12-23 00:00:00,32.05,9.9,23.72,82.86,40.97,21.52,38.67,1096.02,33.66 2003-12-24 00:00:00,31.74,10.2,23.57,82.4,41.12,21.44,38.42,1094.04,33.73 2003-12-26 00:00:00,32.15,10.39,23.43,82.96,41.03,21.57,38.66,1095.89,33.91 2003-12-29 00:00:00,33.37,10.57,23.67,83.51,41.54,21.77,38.9,1109.48,34.36 2003-12-30 00:00:00,32.68,10.64,23.59,82.72,41.64,21.82,38.78,1109.64,34.45 2003-12-31 00:00:00,32.59,10.69,23.79,82.76,41.87,21.7,38.78,1111.92,34.72 2004-01-02 00:00:00,32.2,10.64,23.89,81.75,41.87,21.76,38.65,1108.48,34.41 2004-01-05 00:00:00,33.25,11.09,24.25,83.09,42.12,22.31,39.31,1122.22,35.21 2004-01-06 00:00:00,33.01,11.05,24.09,83.1,41.93,22.39,39.56,1123.67,34.97 2004-01-07 00:00:00,32.76,11.3,24.32,82.85,41.95,22.36,39.05,1126.33,34.72 2004-01-08 00:00:00,33.15,11.68,24.76,83.08,42.14,22.33,38.27,1131.92,34.63 2004-01-09 00:00:00,31.94,11.5,24.42,81.45,41.66,21.93,38.08,1121.86,34.12 2004-01-12 00:00:00,30.84,11.86,24.64,81.75,42.46,21.86,38.13,1127.23,34.6 2004-01-13 00:00:00,30.14,12.06,24.27,80.1,42.35,21.75,37.97,1121.22,34.45 2004-01-14 00:00:00,30.84,12.1,24.57,80.65,42.15,21.96,38.05,1130.52,34.45 2004-01-15 00:00:00,30.42,11.43,24.57,83.96,42.02,21.83,37.85,1132.05,34.11 2004-01-16 00:00:00,30.05,11.36,25.61,85.12,40.89,22.05,37.76,1139.83,34.3 2004-01-20 00:00:00,31.06,11.36,25.61,86.71,41.74,22.28,38.31,1138.77,34.62 2004-01-21 00:00:00,31.13,11.31,25.99,87.24,42.6,22.44,38.42,1147.62,35.08 2004-01-22 00:00:00,31.24,11.09,25.74,87.08,43.0,22.21,38.72,1143.94,34.96 2004-01-23 00:00:00,30.36,11.28,25.5,87.42,42.96,22.58,38.72,1141.55,34.75 2004-01-26 00:00:00,30.31,11.51,26.21,89.16,43.36,22.83,38.92,1155.37,35.18 2004-01-27 00:00:00,30.24,11.53,26.25,88.23,43.19,22.4,38.64,1144.05,34.88 2004-01-28 00:00:00,28.97,11.26,25.92,86.96,43.09,21.97,38.47,1128.48,34.56 2004-01-29 00:00:00,28.55,11.34,26.13,87.52,43.68,22.13,39.12,1134.11,35.12 2004-01-30 00:00:00,29.31,11.28,25.82,88.61,43.3,21.92,39.31,1131.13,34.54 2004-02-02 00:00:00,28.71,11.16,25.82,88.75,43.39,21.72,39.88,1135.26,34.46 2004-02-03 00:00:00,29.24,11.13,25.5,89.3,43.64,21.64,39.64,1136.03,34.22 2004-02-04 00:00:00,29.28,10.9,25.48,89.47,44.16,21.41,39.6,1126.52,34.17 2004-02-05 00:00:00,29.6,11.21,25.74,88.28,44.17,21.37,40.39,1128.59,34.19 2004-02-06 00:00:00,30.21,11.35,25.48,88.5,43.89,21.47,41.77,1142.76,34.3 2004-02-09 00:00:00,30.09,11.34,25.25,88.5,43.86,21.33,41.54,1139.81,34.7 2004-02-10 00:00:00,30.61,11.49,24.95,89.09,44.12,21.42,42.25,1145.54,35.01 2004-02-11 00:00:00,32.2,11.9,25.4,89.41,44.3,21.52,42.51,1157.76,35.72 2004-02-12 00:00:00,31.78,11.86,25.23,88.82,44.45,21.37,42.36,1152.11,35.71 2004-02-13 00:00:00,31.88,11.5,25.12,89.18,44.15,21.08,42.03,1145.81,35.71 2004-02-17 00:00:00,32.51,11.58,25.38,88.88,44.3,21.4,42.43,1156.99,35.98 2004-02-18 00:00:00,32.55,11.63,25.15,88.03,43.87,21.22,42.65,1151.82,35.62 2004-02-19 00:00:00,32.51,11.23,25.03,87.48,43.61,20.98,42.7,1147.06,35.74 2004-02-20 00:00:00,31.72,11.2,25.11,87.04,43.39,21.06,43.05,1144.11,35.81 2004-02-23 00:00:00,32.02,11.1,25.66,85.83,43.19,21.1,43.33,1140.99,36.28 2004-02-24 00:00:00,32.09,11.18,25.55,86.57,44.11,21.31,43.34,1139.09,36.05 2004-02-25 00:00:00,31.7,11.4,25.31,86.35,44.01,21.17,43.34,1143.67,36.34 2004-02-26 00:00:00,32.01,11.52,25.24,86.57,43.94,21.01,43.04,1144.91,36.05 2004-02-27 00:00:00,32.27,11.96,25.12,86.31,43.89,21.03,43.17,1144.94,35.93 2004-03-01 00:00:00,33.07,12.01,25.33,86.8,43.77,21.17,43.39,1155.97,36.23 2004-03-02 00:00:00,32.48,11.9,25.1,86.6,43.04,20.92,43.51,1149.1,35.82 2004-03-03 00:00:00,31.88,11.96,25.38,86.62,43.33,20.91,43.62,1151.03,35.7 2004-03-04 00:00:00,31.95,12.58,25.42,86.21,43.17,20.91,43.5,1154.87,35.57 2004-03-05 00:00:00,32.01,13.37,25.31,86.27,43.25,20.89,43.44,1156.86,36.2 2004-03-08 00:00:00,31.37,13.0,24.59,84.6,43.23,20.48,43.49,1147.2,36.26 2004-03-09 00:00:00,30.7,13.55,24.38,84.55,42.88,20.39,43.88,1140.58,36.45 2004-03-10 00:00:00,29.46,13.84,24.02,83.24,42.15,20.11,43.59,1123.89,36.15 2004-03-11 00:00:00,29.52,13.57,23.5,81.58,41.61,19.89,43.14,1106.78,35.23 2004-03-12 00:00:00,30.25,13.78,23.64,83.45,41.28,20.12,43.01,1120.57,35.81 2004-03-15 00:00:00,29.38,13.23,23.41,82.13,41.17,19.95,42.85,1104.49,35.6 2004-03-16 00:00:00,29.6,12.91,23.56,82.69,41.59,19.96,42.72,1110.7,35.85 2004-03-17 00:00:00,30.03,13.1,23.76,83.53,41.42,19.92,42.91,1123.75,35.99 2004-03-18 00:00:00,29.98,12.84,23.73,83.05,41.5,19.73,42.91,1122.32,36.18 2004-03-19 00:00:00,30.02,12.93,23.28,81.95,40.75,19.53,42.5,1109.78,35.36 2004-03-22 00:00:00,29.4,12.93,22.72,81.41,40.3,19.42,42.38,1095.4,34.88 2004-03-23 00:00:00,29.14,12.65,22.56,81.68,40.42,19.15,42.52,1093.95,34.73 2004-03-24 00:00:00,28.53,12.75,22.54,82.08,40.42,19.35,42.38,1091.33,34.17 2004-03-25 00:00:00,29.71,13.44,22.94,82.64,40.87,19.97,42.74,1109.19,34.3 2004-03-26 00:00:00,29.84,13.52,23.25,82.98,40.81,19.84,42.61,1108.06,34.71 2004-03-29 00:00:00,29.83,13.95,23.55,82.9,41.17,20.07,43.56,1122.47,35.01 2004-03-30 00:00:00,30.19,13.96,23.71,82.57,41.05,19.98,44.46,1127.0,35.4 2004-03-31 00:00:00,29.88,13.52,23.58,82.14,41.29,19.76,44.93,1126.21,35.44 2004-04-01 00:00:00,29.83,13.56,23.65,82.62,41.13,19.88,45.18,1132.17,35.38 2004-04-02 00:00:00,30.92,13.75,23.99,84.26,41.67,20.49,44.93,1141.81,35.71 2004-04-05 00:00:00,30.91,14.16,24.4,84.24,41.94,20.57,45.46,1150.57,36.0 2004-04-06 00:00:00,31.44,13.91,24.35,83.81,41.91,20.45,45.65,1148.16,35.95 2004-04-07 00:00:00,29.84,13.65,24.26,83.25,41.83,20.29,45.76,1140.53,35.7 2004-04-08 00:00:00,29.16,13.77,24.26,83.29,41.41,20.2,45.68,1139.32,36.17 2004-04-12 00:00:00,29.51,14.02,24.43,83.84,41.68,20.3,45.9,1145.2,36.73 2004-04-13 00:00:00,28.79,13.47,23.95,83.22,41.84,20.18,45.68,1129.44,36.49 2004-04-14 00:00:00,28.44,13.32,23.55,83.81,42.82,20.22,45.82,1128.17,36.89 2004-04-15 00:00:00,28.42,14.65,23.76,83.58,44.39,19.99,45.73,1128.84,37.22 2004-04-16 00:00:00,29.28,14.59,24.13,82.54,44.07,19.95,45.72,1134.61,37.37 2004-04-19 00:00:00,29.01,14.18,24.02,82.23,43.9,20.24,45.95,1135.82,37.26 2004-04-20 00:00:00,28.49,13.86,23.54,81.08,43.25,20.08,45.23,1118.15,36.89 2004-04-21 00:00:00,27.34,13.86,23.72,81.63,43.7,20.18,45.62,1124.09,36.6 2004-04-22 00:00:00,28.52,13.89,23.83,81.16,43.67,20.57,45.8,1139.93,36.89 2004-04-23 00:00:00,28.17,13.85,23.71,81.64,43.7,21.83,45.85,1140.6,36.61 2004-04-26 00:00:00,27.85,13.56,23.75,80.88,43.88,21.6,45.63,1135.53,36.65 2004-04-27 00:00:00,27.82,13.47,23.6,81.49,44.26,21.58,45.59,1138.11,37.28 2004-04-28 00:00:00,26.71,13.23,23.19,80.87,44.12,21.06,44.97,1122.41,36.74 2004-04-29 00:00:00,26.52,13.39,23.21,79.68,44.04,20.99,45.15,1113.89,36.25 2004-04-30 00:00:00,26.48,12.89,23.14,78.86,43.99,20.72,45.47,1107.3,36.26 2004-05-03 00:00:00,26.3,13.03,23.41,78.73,44.72,20.89,45.78,1117.49,37.22 2004-05-04 00:00:00,26.96,13.07,23.52,79.6,44.61,20.87,45.38,1119.55,37.08 2004-05-05 00:00:00,26.8,13.32,23.55,79.57,44.03,20.85,45.49,1121.53,37.48 2004-05-06 00:00:00,26.4,13.29,23.54,79.19,44.65,20.71,45.77,1113.99,37.35 2004-05-07 00:00:00,25.22,13.34,23.18,79.04,45.02,20.44,45.36,1098.7,36.85 2004-05-10 00:00:00,25.5,13.14,23.2,77.87,45.14,20.56,44.89,1087.12,35.83 2004-05-11 00:00:00,25.84,13.57,23.37,78.09,44.89,20.57,44.87,1095.45,36.53 2004-05-12 00:00:00,26.1,13.65,23.48,77.8,44.97,20.57,44.76,1097.28,36.88 2004-05-13 00:00:00,25.9,13.6,23.45,78.14,44.72,20.69,44.35,1096.44,36.64 2004-05-14 00:00:00,25.77,13.53,23.3,77.44,44.62,20.5,44.85,1095.7,37.11 2004-05-17 00:00:00,24.84,13.32,23.15,76.66,44.76,20.25,44.66,1084.1,36.92 2004-05-18 00:00:00,25.74,13.53,23.51,77.13,44.71,20.48,44.43,1091.49,36.61 2004-05-19 00:00:00,25.58,13.23,23.37,78.02,44.42,20.31,44.14,1088.68,36.53 2004-05-20 00:00:00,25.36,13.35,23.35,78.35,44.67,20.4,44.89,1089.19,36.64 2004-05-21 00:00:00,25.51,13.56,23.68,78.09,44.96,20.53,44.61,1093.56,36.53 2004-05-24 00:00:00,26.14,13.67,23.78,78.06,44.45,20.42,44.57,1095.41,36.7 2004-05-25 00:00:00,27.15,14.2,24.11,79.5,45.3,20.69,44.91,1113.05,37.58 2004-05-26 00:00:00,26.83,14.26,24.17,79.18,45.4,20.72,44.47,1114.94,37.35 2004-05-27 00:00:00,26.93,14.09,24.15,79.4,45.66,20.76,44.67,1121.28,37.19 2004-05-28 00:00:00,27.09,14.03,24.04,79.4,45.59,20.8,44.53,1120.68,37.09 2004-06-01 00:00:00,27.05,14.03,23.98,78.98,45.64,20.7,44.61,1121.2,37.48 2004-06-02 00:00:00,27.04,14.46,24.02,78.85,45.99,20.72,45.28,1124.99,37.54 2004-06-03 00:00:00,26.32,14.2,23.95,78.29,46.31,20.53,45.03,1116.64,37.35 2004-06-04 00:00:00,26.5,14.39,24.13,78.48,46.14,20.57,45.34,1122.5,37.19 2004-06-07 00:00:00,27.11,14.9,24.47,79.44,46.42,20.95,45.62,1140.42,37.73 2004-06-08 00:00:00,27.35,15.18,24.31,80.7,46.62,21.09,45.85,1142.18,37.64 2004-06-09 00:00:00,26.72,15.1,24.09,80.74,46.45,20.99,45.75,1131.33,37.26 2004-06-10 00:00:00,26.92,15.37,24.33,81.07,46.7,21.22,46.04,1136.47,37.72 2004-06-14 00:00:00,26.5,15.06,24.39,80.73,46.66,21.33,45.8,1125.29,37.6 2004-06-15 00:00:00,26.95,15.35,24.57,81.15,46.0,21.73,46.24,1132.01,37.8 2004-06-16 00:00:00,27.01,16.37,24.81,81.0,45.73,21.66,46.27,1133.56,38.36 2004-06-17 00:00:00,27.09,16.41,25.0,81.06,45.46,22.02,46.04,1132.05,38.39 2004-06-18 00:00:00,28.15,16.45,25.17,80.72,45.21,22.48,46.09,1135.02,38.57 2004-06-21 00:00:00,27.68,16.17,25.18,80.21,45.24,22.48,46.0,1130.3,38.36 2004-06-22 00:00:00,27.71,16.5,25.38,80.68,45.31,22.43,46.55,1134.41,38.5 2004-06-23 00:00:00,28.27,16.85,25.82,81.37,45.53,22.44,46.5,1144.06,38.99 2004-06-24 00:00:00,28.43,16.59,25.86,80.65,45.57,22.51,46.19,1140.65,38.82 2004-06-25 00:00:00,28.98,16.85,25.01,80.26,44.6,22.65,45.25,1134.43,37.95 2004-06-28 00:00:00,28.45,16.25,25.11,79.51,44.99,22.42,45.39,1133.35,38.06 2004-06-29 00:00:00,28.51,16.25,25.13,79.13,45.62,22.59,45.0,1136.2,38.22 2004-06-30 00:00:00,28.59,16.27,25.18,79.0,45.58,22.64,45.15,1140.84,38.08 2004-07-01 00:00:00,27.95,16.15,24.88,78.42,45.39,22.7,44.87,1128.94,38.24 2004-07-02 00:00:00,27.85,15.54,24.61,78.01,45.3,22.65,44.61,1125.38,38.35 2004-07-06 00:00:00,27.68,15.48,24.74,76.81,44.97,22.21,44.83,1116.21,38.68 2004-07-07 00:00:00,28.36,15.19,24.88,76.49,44.63,22.28,44.71,1118.33,38.91 2004-07-08 00:00:00,28.3,15.07,24.64,74.97,44.81,21.91,44.56,1109.11,38.86 2004-07-09 00:00:00,28.06,15.02,25.0,75.19,45.0,22.09,44.45,1112.81,38.98 2004-07-12 00:00:00,27.84,14.57,25.34,75.37,44.92,22.11,44.47,1114.35,38.97 2004-07-13 00:00:00,27.86,14.61,25.52,76.41,45.32,21.88,44.56,1115.14,38.77 2004-07-14 00:00:00,28.0,14.79,25.75,75.4,45.76,22.3,44.75,1111.47,38.99 2004-07-15 00:00:00,28.46,16.47,25.93,75.3,45.3,22.1,43.5,1106.69,38.86 2004-07-16 00:00:00,28.52,16.1,25.72,75.54,46.48,21.79,43.82,1101.39,39.3 2004-07-19 00:00:00,28.03,15.98,25.82,76.45,46.16,22.16,43.69,1100.9,39.36 2004-07-20 00:00:00,27.82,16.1,25.81,77.4,46.08,22.45,43.29,1108.67,39.36 2004-07-21 00:00:00,26.96,15.81,25.34,76.45,45.62,22.88,42.83,1093.88,38.74 2004-07-22 00:00:00,26.76,15.84,25.55,77.13,46.03,22.99,42.34,1096.84,38.93 2004-07-23 00:00:00,26.52,15.35,25.27,76.05,45.62,22.22,42.63,1086.2,38.86 2004-07-26 00:00:00,26.2,15.63,25.11,76.26,45.36,22.72,43.19,1084.07,38.87 2004-07-27 00:00:00,26.98,16.22,25.49,76.97,45.54,22.55,42.73,1094.83,38.94 2004-07-28 00:00:00,27.28,16.14,25.87,76.94,45.57,22.66,42.89,1095.42,39.29 2004-07-29 00:00:00,27.92,16.32,25.81,77.77,45.39,22.58,41.81,1100.43,39.47 2004-07-30 00:00:00,27.72,16.17,25.84,78.04,45.23,22.59,41.9,1101.72,39.71 2004-08-02 00:00:00,27.73,15.79,25.85,77.7,45.44,22.61,42.8,1106.62,39.66 2004-08-03 00:00:00,27.21,15.65,25.55,76.82,45.36,22.25,42.9,1099.69,40.21 2004-08-04 00:00:00,27.01,15.9,25.55,77.05,45.48,22.25,43.54,1098.63,39.65 2004-08-05 00:00:00,26.51,15.69,25.04,76.35,45.19,21.83,43.16,1080.7,39.3 2004-08-06 00:00:00,26.04,14.89,24.5,74.98,44.68,21.52,42.61,1063.97,38.69 2004-08-09 00:00:00,25.99,15.15,24.75,75.04,44.59,21.55,42.57,1065.22,39.07 2004-08-10 00:00:00,26.38,15.76,24.94,76.33,45.0,21.98,42.81,1079.04,38.84 2004-08-11 00:00:00,26.22,15.51,25.02,75.17,45.83,21.73,43.38,1075.79,38.93 2004-08-12 00:00:00,25.69,15.19,24.57,73.84,46.07,21.31,42.84,1063.23,38.44 2004-08-13 00:00:00,25.77,15.42,24.78,75.36,45.68,21.42,42.64,1064.8,38.75 2004-08-16 00:00:00,26.79,15.39,25.1,75.46,46.14,21.48,42.63,1079.34,38.9 2004-08-17 00:00:00,27.18,15.44,24.98,75.48,46.51,21.45,42.16,1081.71,38.27 2004-08-18 00:00:00,27.51,15.87,25.48,76.46,46.91,21.77,42.12,1095.17,38.66 2004-08-19 00:00:00,27.46,15.35,25.42,76.24,46.7,21.5,42.05,1091.23,38.9 2004-08-20 00:00:00,28.05,15.4,25.37,76.57,46.92,21.56,41.89,1098.35,39.04 2004-08-23 00:00:00,27.65,15.54,25.27,76.03,46.93,21.66,41.8,1095.68,38.81 2004-08-24 00:00:00,27.45,15.98,25.36,76.08,47.02,21.66,41.37,1096.19,38.69 2004-08-25 00:00:00,27.86,16.52,25.48,76.41,47.43,21.91,41.06,1104.96,38.99 2004-08-26 00:00:00,28.09,17.33,25.48,76.06,47.31,21.82,41.4,1105.09,39.04 2004-08-27 00:00:00,28.57,17.17,25.47,76.29,47.47,21.83,41.28,1107.77,39.2 2004-08-30 00:00:00,28.28,17.06,25.31,75.8,47.33,21.71,41.37,1099.15,38.93 2004-08-31 00:00:00,28.16,17.25,25.48,76.06,47.79,21.71,41.9,1104.24,39.77 2004-09-01 00:00:00,28.19,17.93,25.55,75.64,47.53,21.78,41.68,1105.91,40.06 2004-09-02 00:00:00,28.48,17.83,25.75,75.96,47.48,21.96,42.42,1118.31,40.53 2004-09-03 00:00:00,28.57,17.61,25.52,75.79,47.58,21.56,42.6,1113.63,40.6 2004-09-07 00:00:00,28.76,17.88,25.91,76.32,47.59,21.76,42.78,1121.3,40.68 2004-09-08 00:00:00,28.61,18.17,26.16,77.11,47.93,21.68,41.83,1116.27,40.61 2004-09-09 00:00:00,28.95,17.85,26.31,77.64,47.3,21.69,42.34,1118.38,40.96 2004-09-10 00:00:00,26.74,17.93,26.33,77.92,47.35,21.86,42.36,1123.92,40.87 2004-09-13 00:00:00,26.78,17.8,26.23,77.68,47.83,21.67,42.66,1125.82,40.98 2004-09-14 00:00:00,26.7,17.75,26.28,77.89,47.99,21.82,42.53,1128.33,40.95 2004-09-15 00:00:00,26.44,17.6,26.06,77.57,47.85,21.62,41.66,1120.37,40.92 2004-09-16 00:00:00,26.39,18.17,26.06,77.35,47.81,21.68,41.22,1123.5,41.02 2004-09-17 00:00:00,26.65,18.57,26.59,77.01,48.13,21.87,41.83,1128.55,41.73 2004-09-20 00:00:00,26.81,18.85,26.59,76.97,47.64,21.87,41.38,1122.2,41.59 2004-09-21 00:00:00,27.19,19.0,26.78,76.99,47.62,21.68,41.19,1129.3,42.7 2004-09-22 00:00:00,27.04,18.46,26.37,75.72,47.13,21.56,40.98,1113.56,42.15 2004-09-23 00:00:00,27.04,18.64,26.13,75.34,46.52,21.75,40.84,1108.36,41.2 2004-09-24 00:00:00,27.16,18.65,26.12,75.83,46.51,21.7,40.67,1110.11,41.26 2004-09-27 00:00:00,27.27,18.76,25.89,75.59,46.5,21.62,40.43,1103.52,41.38 2004-09-28 00:00:00,28.44,19.02,26.04,75.88,46.97,21.68,40.49,1110.06,41.87 2004-09-29 00:00:00,28.91,19.34,26.15,76.32,46.91,21.93,40.49,1114.8,41.54 2004-09-30 00:00:00,29.21,19.38,26.25,77.01,46.33,21.99,40.95,1114.58,41.69 2004-10-01 00:00:00,29.58,19.33,26.56,77.89,46.88,22.46,42.15,1131.5,42.18 2004-10-04 00:00:00,29.56,19.4,26.67,78.28,47.09,22.36,41.87,1135.17,42.2 2004-10-05 00:00:00,29.18,19.68,26.62,78.43,47.26,22.57,41.54,1134.48,42.55 2004-10-06 00:00:00,29.71,20.32,26.88,79.07,47.5,22.69,41.5,1142.05,43.16 2004-10-07 00:00:00,29.64,19.81,26.54,78.52,46.0,22.4,41.25,1130.65,42.91 2004-10-08 00:00:00,29.04,19.53,26.38,77.88,45.5,22.26,41.08,1122.14,43.0 2004-10-11 00:00:00,29.0,19.3,26.58,77.81,45.54,22.31,41.02,1124.39,42.95 2004-10-12 00:00:00,28.86,19.15,26.6,77.24,46.74,22.29,40.65,1121.84,42.59 2004-10-13 00:00:00,27.99,19.88,26.35,76.32,46.48,22.29,40.44,1113.65,41.82 2004-10-14 00:00:00,28.31,22.49,26.16,76.14,46.49,22.1,40.28,1103.29,42.02 2004-10-15 00:00:00,28.32,22.75,26.23,76.21,46.54,22.26,40.65,1108.2,42.29 2004-10-18 00:00:00,28.25,23.88,26.49,77.17,47.15,22.59,41.24,1114.02,42.06 2004-10-19 00:00:00,27.22,23.71,26.13,80.27,46.56,22.41,41.41,1103.23,41.68 2004-10-20 00:00:00,27.18,23.74,25.97,79.77,47.3,22.82,41.1,1103.66,42.16 2004-10-21 00:00:00,27.61,23.97,26.09,79.13,47.53,22.71,41.13,1106.49,42.11 2004-10-22 00:00:00,27.53,23.7,25.76,78.49,47.12,22.06,40.81,1095.74,42.01 2004-10-25 00:00:00,27.88,23.77,25.72,79.42,46.95,21.97,40.6,1094.8,42.11 2004-10-26 00:00:00,28.73,23.99,26.29,79.93,47.07,22.18,40.78,1111.09,42.61 2004-10-27 00:00:00,29.02,25.15,26.54,80.83,47.52,22.38,41.79,1125.4,42.23 2004-10-28 00:00:00,28.18,26.09,26.6,80.38,47.72,22.27,41.7,1127.44,41.94 2004-10-29 00:00:00,28.26,26.2,26.67,80.61,48.02,22.24,41.73,1130.2,42.46 2004-11-01 00:00:00,28.58,26.23,26.62,80.93,48.07,22.33,41.5,1130.51,42.12 2004-11-02 00:00:00,27.9,26.75,26.62,81.26,47.74,22.45,41.78,1130.56,41.78 2004-11-03 00:00:00,28.05,27.66,26.84,81.91,48.9,22.64,42.2,1143.2,42.51 2004-11-04 00:00:00,29.01,27.23,27.43,82.97,48.71,23.06,43.1,1161.67,43.3 2004-11-05 00:00:00,29.13,27.36,27.51,83.78,48.68,23.31,43.1,1166.17,43.47 2004-11-08 00:00:00,29.11,27.19,27.46,84.02,49.22,23.28,42.82,1164.89,43.28 2004-11-09 00:00:00,28.96,27.02,27.69,84.02,49.21,23.67,42.94,1164.08,42.77 2004-11-10 00:00:00,28.96,27.38,27.61,84.24,49.45,23.64,43.2,1162.91,43.08 2004-11-11 00:00:00,29.23,27.65,27.99,85.3,49.85,23.84,43.38,1173.48,43.07 2004-11-12 00:00:00,29.94,27.75,28.34,85.78,50.41,23.83,43.95,1184.17,43.73 2004-11-15 00:00:00,29.54,27.62,28.22,86.32,50.54,24.27,43.71,1183.81,43.0 2004-11-16 00:00:00,29.36,27.47,28.22,85.39,50.44,24.03,43.14,1175.43,42.86 2004-11-17 00:00:00,29.59,27.45,28.42,85.9,50.33,24.08,43.17,1181.94,43.37 2004-11-18 00:00:00,29.67,27.69,28.79,85.58,50.51,23.99,43.12,1183.55,43.41 2004-11-19 00:00:00,29.36,27.58,28.35,84.99,50.03,23.8,42.8,1170.34,43.7 2004-11-22 00:00:00,29.4,30.67,28.21,85.59,50.3,23.62,43.11,1177.24,44.16 2004-11-23 00:00:00,29.34,30.64,27.99,85.74,50.06,23.51,43.23,1176.94,44.41 2004-11-24 00:00:00,29.49,32.03,27.86,85.9,50.01,23.61,43.14,1181.76,44.66 2004-11-26 00:00:00,30.26,32.28,27.71,85.24,49.96,23.57,43.15,1182.65,44.8 2004-11-29 00:00:00,30.12,34.22,27.6,85.94,49.75,23.72,42.46,1178.57,44.56 2004-11-30 00:00:00,29.69,33.53,27.64,84.8,49.85,23.76,42.01,1173.82,44.45 2004-12-01 00:00:00,29.96,33.9,28.16,86.28,50.57,24.15,42.78,1191.37,44.37 2004-12-02 00:00:00,29.21,32.6,28.1,86.17,51.03,24.01,43.31,1190.33,43.52 2004-12-03 00:00:00,28.71,31.34,28.01,87.36,51.16,24.13,43.0,1191.17,43.6 2004-12-06 00:00:00,28.33,32.89,27.89,87.89,51.1,24.22,42.73,1190.25,43.49 2004-12-07 00:00:00,27.69,31.44,27.6,86.48,49.92,23.99,42.5,1177.07,43.11 2004-12-08 00:00:00,27.84,31.64,27.92,86.97,50.54,24.25,43.2,1182.81,43.39 2004-12-09 00:00:00,28.04,32.0,28.16,87.75,50.67,24.13,43.62,1189.24,43.65 2004-12-10 00:00:00,28.05,32.58,28.68,86.99,49.79,24.0,43.31,1188.0,43.5 2004-12-13 00:00:00,28.23,32.46,29.3,86.79,50.11,24.15,43.72,1198.68,43.95 2004-12-14 00:00:00,27.74,32.65,29.22,87.57,50.77,24.13,43.77,1203.38,43.94 2004-12-15 00:00:00,27.35,32.63,29.23,87.59,50.33,24.03,44.6,1205.72,43.81 2004-12-16 00:00:00,27.14,33.3,29.01,87.69,52.44,24.07,44.24,1203.21,43.46 2004-12-17 00:00:00,26.87,32.49,28.73,86.57,52.54,23.89,43.98,1194.2,43.2 2004-12-20 00:00:00,26.96,31.36,29.01,86.88,52.12,23.88,43.73,1194.65,44.29 2004-12-21 00:00:00,27.31,31.84,29.06,87.31,52.02,23.99,44.05,1205.45,44.83 2004-12-22 00:00:00,27.35,31.88,28.97,87.84,52.31,23.9,44.11,1209.57,44.49 2004-12-23 00:00:00,27.43,32.01,28.92,87.94,52.56,23.94,43.92,1210.13,45.08 2004-12-27 00:00:00,27.48,31.58,28.76,87.74,52.5,23.79,43.96,1204.92,44.13 2004-12-28 00:00:00,27.68,32.09,28.85,88.46,52.69,23.88,44.38,1213.54,44.28 2004-12-29 00:00:00,27.86,32.22,28.75,88.35,52.5,23.84,44.18,1213.45,44.35 2004-12-30 00:00:00,27.48,32.4,28.78,88.46,52.52,23.72,44.18,1213.55,44.26 2004-12-31 00:00:00,27.44,32.2,28.7,88.71,52.41,23.68,44.14,1211.92,44.46 2005-01-03 00:00:00,27.08,31.65,28.78,87.96,51.98,23.7,43.92,1202.08,43.45 2005-01-04 00:00:00,26.59,31.97,28.43,87.02,51.82,23.79,43.61,1188.05,43.15 2005-01-05 00:00:00,26.43,32.25,28.26,86.84,51.78,23.73,43.66,1183.74,42.93 2005-01-06 00:00:00,26.54,32.28,28.48,86.57,51.93,23.71,43.97,1187.89,43.47 2005-01-07 00:00:00,26.81,34.62,28.31,86.19,51.74,23.64,44.35,1186.19,43.19 2005-01-10 00:00:00,26.62,34.48,28.24,86.1,52.15,23.75,45.46,1190.25,43.35 2005-01-11 00:00:00,25.91,32.28,27.84,85.49,51.97,23.69,45.21,1182.99,43.24 2005-01-12 00:00:00,25.71,32.73,28.06,85.68,52.33,23.73,45.33,1187.7,43.88 2005-01-13 00:00:00,25.77,34.9,27.71,84.99,51.21,23.28,44.75,1177.45,43.85 2005-01-14 00:00:00,26.12,35.1,27.93,84.68,51.82,23.15,44.67,1184.52,44.3 2005-01-18 00:00:00,26.01,35.33,28.28,85.4,52.09,23.33,45.23,1195.98,44.67 2005-01-19 00:00:00,25.49,34.94,27.87,83.78,51.92,23.02,45.69,1184.63,44.28 2005-01-20 00:00:00,25.08,35.23,27.82,83.69,51.64,22.92,45.28,1175.41,43.99 2005-01-21 00:00:00,25.28,35.24,27.63,83.13,51.11,22.73,45.3,1167.87,43.75 2005-01-24 00:00:00,25.17,35.38,27.73,82.6,50.82,22.75,45.08,1163.75,44.35 2005-01-25 00:00:00,24.79,36.03,28.08,82.96,52.66,23.06,45.14,1168.41,44.52 2005-01-26 00:00:00,25.02,36.12,27.91,82.74,53.43,23.05,45.16,1174.07,44.84 2005-01-27 00:00:00,25.39,36.32,28.0,82.77,53.07,23.14,45.2,1174.55,44.89 2005-01-28 00:00:00,25.31,36.99,28.11,83.59,53.4,23.2,45.0,1171.36,44.47 2005-01-31 00:00:00,25.78,38.45,28.41,84.07,53.47,23.29,45.41,1181.27,44.76 2005-02-01 00:00:00,25.83,38.76,28.53,84.46,54.06,23.39,45.56,1189.41,46.21 2005-02-02 00:00:00,25.89,39.81,28.51,84.86,54.54,23.45,45.78,1193.19,46.78 2005-02-03 00:00:00,25.59,38.9,28.37,84.17,54.25,23.2,45.94,1189.89,47.29 2005-02-04 00:00:00,25.79,39.42,28.51,85.05,54.74,23.33,46.77,1203.03,47.96 2005-02-07 00:00:00,26.01,39.47,28.49,85.07,54.92,23.18,46.25,1201.72,48.05 2005-02-08 00:00:00,26.34,40.45,28.65,84.87,54.82,23.25,46.93,1202.3,48.62 2005-02-09 00:00:00,25.68,39.37,28.38,83.58,54.7,23.1,46.5,1191.99,48.41 2005-02-10 00:00:00,25.88,39.18,28.35,83.63,54.65,23.09,46.64,1197.01,49.11 2005-02-11 00:00:00,26.21,40.6,28.49,84.12,55.28,23.02,46.59,1205.3,48.91 2005-02-14 00:00:00,26.25,42.31,28.56,84.36,54.78,23.05,46.34,1206.14,49.53 2005-02-15 00:00:00,26.18,44.21,28.62,85.05,54.71,23.05,46.2,1210.12,49.61 2005-02-16 00:00:00,26.87,45.06,28.48,85.31,54.56,22.93,46.12,1210.34,50.97 2005-02-17 00:00:00,27.26,43.9,28.33,84.52,54.24,22.8,45.43,1200.75,50.67 2005-02-18 00:00:00,27.31,43.4,28.22,84.09,54.31,22.65,45.83,1201.59,51.78 2005-02-22 00:00:00,26.97,42.65,27.8,83.24,54.01,22.43,44.97,1184.16,50.77 2005-02-23 00:00:00,27.21,44.12,27.74,83.04,54.29,22.4,45.18,1190.8,51.79 2005-02-24 00:00:00,27.63,44.47,28.13,83.52,54.69,22.55,45.36,1200.2,53.28 2005-02-25 00:00:00,27.78,44.49,28.19,83.67,54.96,22.45,45.64,1211.37,55.14 2005-02-28 00:00:00,28.21,44.86,27.86,83.47,54.45,22.37,45.54,1203.6,55.18 2005-03-01 00:00:00,27.8,44.5,27.87,84.12,55.32,22.47,45.71,1210.41,54.13 2005-03-02 00:00:00,27.49,44.12,28.17,83.78,55.58,22.45,45.67,1210.08,54.63 2005-03-03 00:00:00,27.47,41.79,28.13,83.32,55.4,22.37,45.69,1210.47,54.96 2005-03-04 00:00:00,27.93,42.81,28.58,83.28,56.22,22.37,45.63,1222.12,55.41 2005-03-07 00:00:00,27.53,42.75,28.59,82.59,56.8,22.64,45.84,1225.31,54.91 2005-03-08 00:00:00,27.43,40.53,28.54,83.06,56.6,22.58,45.53,1219.43,55.0 2005-03-09 00:00:00,27.15,39.35,28.28,83.26,56.24,22.5,44.98,1207.01,52.99 2005-03-10 00:00:00,26.77,39.83,28.59,83.32,56.44,22.61,45.13,1209.25,52.62 2005-03-11 00:00:00,27.22,40.27,28.35,82.51,56.11,22.3,44.75,1200.08,53.21 2005-03-14 00:00:00,27.38,40.32,28.66,82.86,56.29,22.32,44.78,1206.83,53.41 2005-03-15 00:00:00,27.74,40.96,28.49,82.39,55.83,22.14,44.59,1197.75,52.6 2005-03-16 00:00:00,27.56,41.18,28.18,81.73,55.65,21.89,44.29,1188.07,52.55 2005-03-17 00:00:00,27.71,42.25,27.99,81.02,55.6,21.81,44.41,1190.21,53.6 2005-03-18 00:00:00,27.82,42.96,28.39,80.49,55.82,21.61,44.68,1189.65,54.61 2005-03-21 00:00:00,27.63,43.7,28.5,80.7,55.49,21.51,44.63,1183.78,54.17 2005-03-22 00:00:00,27.19,42.83,28.09,80.69,55.44,21.33,44.24,1171.71,53.08 2005-03-23 00:00:00,26.69,42.55,28.09,81.61,56.61,21.49,44.17,1172.53,52.38 2005-03-24 00:00:00,26.66,42.5,28.28,81.78,56.51,21.58,44.09,1171.42,51.43 2005-03-28 00:00:00,26.39,42.53,28.46,82.08,56.73,21.51,44.46,1174.28,51.33 2005-03-29 00:00:00,25.97,41.75,28.12,81.68,56.37,21.26,44.4,1165.36,50.79 2005-03-30 00:00:00,26.26,42.8,28.65,81.76,56.48,21.48,45.31,1181.41,51.64 2005-03-31 00:00:00,26.69,41.67,28.54,82.39,55.74,21.49,45.03,1180.59,51.95 2005-04-01 00:00:00,26.58,40.89,28.07,81.54,55.49,21.44,44.8,1172.92,52.78 2005-04-04 00:00:00,26.41,41.09,27.89,81.43,56.42,21.54,44.79,1176.12,52.86 2005-04-05 00:00:00,26.33,41.89,28.09,80.76,57.28,21.75,45.01,1181.39,52.35 2005-04-06 00:00:00,26.33,42.33,28.09,80.24,57.11,21.93,44.92,1184.07,53.08 2005-04-07 00:00:00,27.64,43.56,28.31,79.74,57.47,22.31,45.36,1191.14,53.04 2005-04-08 00:00:00,27.76,43.74,28.28,78.98,56.97,22.17,45.08,1181.2,52.31 2005-04-11 00:00:00,27.37,41.92,28.35,77.72,57.18,22.2,45.09,1181.21,52.55 2005-04-12 00:00:00,27.5,42.66,28.56,77.31,56.97,22.51,45.55,1187.76,52.67 2005-04-13 00:00:00,26.7,41.04,28.2,76.25,56.93,22.26,45.54,1173.79,51.56 2005-04-14 00:00:00,26.26,37.26,28.09,75.41,57.48,22.08,46.82,1162.05,51.21 2005-04-15 00:00:00,25.73,35.35,28.29,69.15,57.6,21.74,46.56,1142.62,48.98 2005-04-18 00:00:00,25.98,35.62,28.49,69.11,57.3,21.91,46.27,1145.98,49.9 2005-04-19 00:00:00,25.81,37.09,28.49,68.05,57.31,21.89,46.28,1152.78,51.1 2005-04-20 00:00:00,25.38,35.51,28.11,64.92,56.52,21.62,45.99,1137.5,49.8 2005-04-21 00:00:00,25.95,37.18,28.58,66.75,56.68,22.47,46.46,1159.95,51.67 2005-04-22 00:00:00,25.64,35.5,28.57,66.91,56.85,22.21,46.26,1152.12,51.79 2005-04-25 00:00:00,25.85,36.98,28.79,67.27,56.89,22.21,46.82,1162.1,52.26 2005-04-26 00:00:00,25.33,36.19,28.63,68.01,56.46,22.01,46.88,1151.83,51.66 2005-04-27 00:00:00,25.23,35.95,28.81,69.47,56.71,22.21,46.91,1156.38,50.89 2005-04-28 00:00:00,25.09,35.54,28.23,68.44,56.16,21.73,46.79,1143.22,48.81 2005-04-29 00:00:00,25.48,36.06,28.65,68.86,56.96,22.49,47.25,1156.85,49.71 2005-05-02 00:00:00,25.63,36.43,28.69,68.98,57.09,22.43,47.48,1162.16,50.33 2005-05-03 00:00:00,25.73,36.21,28.57,68.95,57.05,22.54,47.49,1161.17,49.25 2005-05-04 00:00:00,26.0,37.15,28.65,69.5,56.62,22.41,48.08,1175.65,49.88 2005-05-05 00:00:00,25.91,36.68,28.37,68.07,56.86,22.43,47.93,1172.63,50.38 2005-05-06 00:00:00,25.88,37.24,28.37,68.03,56.61,22.42,47.59,1171.35,50.21 2005-05-09 00:00:00,25.91,36.97,28.67,67.78,56.58,22.32,47.87,1178.84,50.56 2005-05-10 00:00:00,25.27,36.42,28.35,66.26,56.22,22.13,47.87,1166.22,49.88 2005-05-11 00:00:00,25.07,35.61,28.64,66.24,56.4,22.14,48.34,1171.11,50.19 2005-05-12 00:00:00,24.32,34.13,28.39,65.65,56.15,22.22,48.13,1159.36,48.03 2005-05-13 00:00:00,23.57,34.77,28.25,66.14,55.97,22.49,47.92,1154.05,47.04 2005-05-16 00:00:00,23.48,35.55,28.68,67.2,56.42,22.73,48.12,1165.69,46.74 2005-05-17 00:00:00,24.02,35.36,28.85,67.16,56.64,22.7,47.8,1173.8,47.18 2005-05-18 00:00:00,24.58,35.84,29.2,69.03,56.38,22.92,48.14,1185.56,47.0 2005-05-19 00:00:00,24.42,37.55,29.22,69.75,56.22,23.11,48.43,1191.08,48.03 2005-05-20 00:00:00,24.23,37.55,29.28,69.07,56.05,22.95,48.51,1189.28,47.32 2005-05-23 00:00:00,24.49,39.76,29.42,69.16,56.1,23.05,48.18,1193.86,47.96 2005-05-24 00:00:00,24.24,39.7,29.34,68.53,56.38,22.96,48.21,1194.07,48.22 2005-05-25 00:00:00,23.97,39.78,29.17,68.7,56.27,22.93,48.4,1190.01,48.78 2005-05-26 00:00:00,24.13,40.74,29.23,69.73,56.23,23.1,48.41,1197.62,49.25 2005-05-27 00:00:00,24.25,40.56,29.19,69.7,56.24,23.25,48.06,1198.78,49.76 2005-05-31 00:00:00,23.92,39.76,28.87,68.3,55.97,23.01,47.78,1191.5,49.23 2005-06-01 00:00:00,24.41,40.3,29.22,69.46,56.14,23.02,48.25,1202.22,50.07 2005-06-02 00:00:00,24.51,40.04,29.2,69.92,55.88,23.0,48.32,1204.29,50.22 2005-06-03 00:00:00,24.11,38.24,29.04,68.51,55.42,22.68,47.56,1196.02,50.07 2005-06-06 00:00:00,24.12,37.92,28.97,67.8,55.37,22.62,47.36,1197.51,50.46 2005-06-07 00:00:00,24.08,36.54,29.15,67.84,55.5,22.75,47.47,1197.26,50.33 2005-06-08 00:00:00,24.08,36.92,29.12,67.62,55.35,22.65,47.33,1194.67,49.7 2005-06-09 00:00:00,23.81,37.65,29.11,67.74,55.66,22.75,47.35,1200.93,51.2 2005-06-10 00:00:00,23.92,35.81,28.99,67.59,55.45,22.68,47.37,1198.11,51.14 2005-06-13 00:00:00,24.19,35.9,28.92,67.84,55.44,22.57,47.41,1200.82,51.21 2005-06-14 00:00:00,24.07,36.0,28.81,67.7,55.53,22.62,47.39,1203.91,51.29 2005-06-15 00:00:00,24.33,37.13,28.74,68.97,55.34,22.53,47.61,1206.58,51.91 2005-06-16 00:00:00,24.65,37.98,28.58,69.65,55.3,22.33,47.81,1210.96,52.67 2005-06-17 00:00:00,24.94,38.31,28.88,69.06,55.52,22.33,47.57,1216.96,53.34 2005-06-20 00:00:00,24.71,37.61,28.71,69.2,55.51,22.39,47.78,1216.1,53.31 2005-06-21 00:00:00,24.54,37.86,28.61,69.07,55.49,22.43,47.67,1213.61,52.13 2005-06-22 00:00:00,24.44,38.55,28.27,69.82,55.05,22.36,47.11,1213.88,52.27 2005-06-23 00:00:00,24.0,38.89,27.6,68.17,54.51,22.57,46.81,1200.73,51.71 2005-06-24 00:00:00,23.36,37.76,27.69,66.9,54.7,22.33,46.3,1191.57,50.94 2005-06-27 00:00:00,23.03,37.1,27.56,66.79,54.76,22.34,46.31,1190.69,51.95 2005-06-28 00:00:00,23.28,37.31,27.99,68.07,55.11,22.36,46.78,1201.57,51.77 2005-06-29 00:00:00,23.21,36.37,27.87,67.56,54.8,22.37,46.44,1199.85,51.2 2005-06-30 00:00:00,23.06,36.81,27.59,67.08,54.21,22.15,46.01,1191.33,50.35 2005-07-01 00:00:00,23.07,36.5,27.66,67.5,54.17,22.04,45.65,1194.44,51.08 2005-07-05 00:00:00,23.13,37.98,27.65,67.61,54.09,22.28,45.69,1204.99,52.69 2005-07-06 00:00:00,22.95,37.39,27.33,68.53,53.51,22.03,44.86,1194.94,51.78 2005-07-07 00:00:00,23.03,37.63,27.22,69.95,53.31,21.98,45.03,1197.87,52.14 2005-07-08 00:00:00,24.01,38.25,27.86,71.69,53.61,22.37,45.67,1211.86,52.04 2005-07-11 00:00:00,24.44,38.1,27.96,71.38,54.04,22.55,45.94,1219.44,52.54 2005-07-12 00:00:00,24.41,38.24,27.95,72.36,54.03,22.84,46.58,1222.21,52.47 2005-07-13 00:00:00,24.2,38.35,28.01,73.63,53.73,22.88,46.81,1223.29,52.35 2005-07-14 00:00:00,24.34,40.75,28.37,74.51,53.88,23.16,47.3,1226.5,51.33 2005-07-15 00:00:00,24.27,41.55,28.29,74.47,54.24,23.0,47.31,1227.92,50.95 2005-07-18 00:00:00,24.42,41.49,28.03,73.96,53.88,22.78,46.62,1221.13,50.94 2005-07-19 00:00:00,24.8,43.19,28.13,75.66,54.23,23.33,47.38,1229.35,51.5 2005-07-20 00:00:00,25.19,43.63,28.11,76.48,54.18,23.36,46.58,1235.2,51.69 2005-07-21 00:00:00,25.27,43.29,27.87,76.3,53.36,23.58,46.65,1227.04,50.72 2005-07-22 00:00:00,25.25,44.0,27.92,76.33,53.65,22.9,46.78,1233.68,52.13 2005-07-25 00:00:00,25.03,43.81,27.69,76.12,52.83,22.91,46.56,1229.03,52.51 2005-07-26 00:00:00,24.95,43.63,27.63,76.04,52.27,22.78,46.47,1231.16,52.21 2005-07-27 00:00:00,24.85,43.99,27.71,75.82,53.83,22.94,46.71,1236.79,52.21 2005-07-28 00:00:00,25.22,43.8,27.77,75.75,53.99,22.96,46.86,1243.72,52.56 2005-07-29 00:00:00,24.76,42.65,27.47,75.45,53.35,22.84,46.52,1234.18,51.47 2005-08-01 00:00:00,24.64,42.75,27.27,75.42,53.8,23.11,46.59,1235.35,51.89 2005-08-02 00:00:00,25.39,43.19,27.27,75.31,53.91,23.91,46.79,1244.12,52.4 2005-08-03 00:00:00,25.47,43.22,27.24,75.99,54.11,24.3,46.66,1245.04,51.69 2005-08-04 00:00:00,24.93,42.71,27.08,75.14,53.51,24.36,46.67,1235.86,51.27 2005-08-05 00:00:00,24.61,42.99,26.92,75.36,53.0,24.76,46.4,1226.42,50.89 2005-08-08 00:00:00,24.88,42.65,26.88,75.54,52.91,24.19,45.99,1223.13,51.56 2005-08-09 00:00:00,25.39,43.82,27.18,75.67,53.4,24.39,46.28,1231.38,52.09 2005-08-10 00:00:00,25.62,43.38,26.98,74.32,53.26,24.03,46.39,1229.13,52.73 2005-08-11 00:00:00,26.41,44.0,27.48,74.9,53.64,24.32,46.68,1237.81,53.66 2005-08-12 00:00:00,26.37,46.1,27.27,74.48,53.01,24.12,46.59,1230.39,53.75 2005-08-15 00:00:00,25.94,47.68,27.24,74.76,52.84,24.27,46.88,1233.87,53.19 2005-08-16 00:00:00,25.57,46.25,26.98,73.67,52.55,23.92,46.74,1219.34,52.0 2005-08-17 00:00:00,25.19,47.15,27.15,73.67,52.96,24.1,46.69,1220.24,51.22 2005-08-18 00:00:00,24.91,46.3,27.06,73.54,53.59,23.99,46.57,1219.02,51.16 2005-08-19 00:00:00,24.93,45.83,27.03,74.99,53.3,23.9,46.87,1219.71,51.78 2005-08-22 00:00:00,25.16,45.87,27.05,74.85,53.24,24.07,46.97,1221.73,52.0 2005-08-23 00:00:00,24.56,45.74,27.05,74.33,52.62,24.03,46.85,1217.59,51.94 2005-08-24 00:00:00,24.3,45.77,26.71,73.69,52.19,23.98,46.34,1209.59,51.84 2005-08-25 00:00:00,24.37,46.06,26.67,73.49,52.42,24.18,46.51,1212.37,52.1 2005-08-26 00:00:00,24.21,45.74,26.58,72.84,51.93,24.12,46.34,1205.1,51.42 2005-08-29 00:00:00,24.38,45.84,26.75,73.71,52.83,24.28,46.76,1212.28,51.43 2005-08-30 00:00:00,24.03,46.57,26.47,72.98,52.82,24.31,46.75,1208.41,51.6 2005-08-31 00:00:00,23.77,46.89,26.76,73.06,53.14,24.49,46.8,1220.33,52.73 2005-09-01 00:00:00,24.12,46.26,26.39,72.08,52.93,24.33,46.88,1221.59,54.3 2005-09-02 00:00:00,23.89,46.22,26.54,72.0,52.73,24.17,46.63,1218.02,53.42 2005-09-06 00:00:00,23.92,48.8,27.02,73.42,53.48,24.15,47.09,1233.39,53.75 2005-09-07 00:00:00,23.57,48.68,27.08,73.38,54.33,24.02,47.53,1236.36,54.11 2005-09-08 00:00:00,23.44,49.78,26.95,73.22,53.74,23.8,47.24,1231.67,53.97 2005-09-09 00:00:00,23.82,51.31,27.06,73.8,54.27,23.77,47.34,1241.48,55.64 2005-09-12 00:00:00,24.06,51.4,27.42,73.83,54.23,23.8,47.51,1240.56,55.04 2005-09-13 00:00:00,23.78,50.82,27.3,73.17,53.7,23.68,47.54,1231.2,54.47 2005-09-14 00:00:00,23.56,49.61,27.11,72.93,53.91,23.53,47.45,1227.16,55.0 2005-09-15 00:00:00,23.41,49.87,27.38,72.5,53.97,23.5,47.74,1227.73,54.99 2005-09-16 00:00:00,23.67,51.21,27.45,72.79,54.64,23.32,48.0,1237.91,56.08 2005-09-19 00:00:00,23.39,52.64,27.11,71.98,54.2,23.25,47.51,1231.02,56.9 2005-09-20 00:00:00,23.21,53.19,26.95,71.32,53.99,23.11,46.97,1221.34,56.81 2005-09-21 00:00:00,23.14,52.11,26.71,70.28,54.24,22.8,46.31,1210.2,57.2 2005-09-22 00:00:00,22.98,51.9,26.69,70.87,54.23,22.66,46.42,1214.62,57.21 2005-09-23 00:00:00,21.67,53.2,26.77,70.68,53.65,22.6,46.73,1215.29,56.19 2005-09-26 00:00:00,21.47,53.84,26.67,70.15,53.55,22.6,46.59,1215.63,56.87 2005-09-27 00:00:00,21.3,53.44,26.96,70.67,53.19,22.66,47.24,1215.66,56.89 2005-09-28 00:00:00,21.36,51.08,26.84,72.04,52.99,22.96,47.2,1216.89,56.96 2005-09-29 00:00:00,21.69,52.34,26.97,72.82,53.45,23.2,48.43,1227.68,57.05 2005-09-30 00:00:00,21.67,53.61,26.99,72.69,53.05,23.01,48.61,1228.81,55.94 2005-10-03 00:00:00,21.18,54.44,26.63,72.9,52.47,22.81,48.44,1226.7,55.01 2005-10-04 00:00:00,20.73,53.75,26.33,72.59,52.86,22.34,48.46,1214.47,53.31 2005-10-05 00:00:00,20.36,52.78,26.19,72.33,52.19,22.07,49.07,1196.39,51.9 2005-10-06 00:00:00,20.33,51.7,26.92,72.22,51.62,22.12,49.68,1191.49,51.56 2005-10-07 00:00:00,20.44,51.3,27.43,72.95,51.43,21.99,49.26,1195.9,52.47 2005-10-10 00:00:00,20.11,50.37,27.24,73.63,51.53,21.88,49.12,1187.33,51.5 2005-10-11 00:00:00,20.27,51.59,27.09,75.38,51.38,21.83,48.97,1184.87,52.29 2005-10-12 00:00:00,20.15,49.25,27.09,74.48,51.81,21.73,49.47,1177.68,51.89 2005-10-13 00:00:00,20.0,53.74,27.27,74.49,53.67,21.99,49.26,1176.84,51.2 2005-10-14 00:00:00,20.38,54.0,27.52,74.62,53.4,22.07,49.3,1186.57,51.62 2005-10-17 00:00:00,20.59,53.44,27.26,74.84,52.82,21.94,49.51,1190.1,51.82 2005-10-18 00:00:00,20.66,52.21,27.25,75.65,52.79,21.98,49.99,1178.14,49.56 2005-10-19 00:00:00,21.05,54.94,27.58,76.27,53.92,22.44,49.83,1195.76,50.33 2005-10-20 00:00:00,20.73,56.14,27.16,75.37,53.8,22.17,49.43,1177.8,48.6 2005-10-21 00:00:00,20.72,55.66,27.04,75.51,53.71,22.16,49.37,1179.59,48.75 2005-10-24 00:00:00,21.24,56.79,27.36,75.64,53.74,22.45,49.68,1199.38,50.05 2005-10-25 00:00:00,21.07,56.1,27.18,75.54,53.3,22.39,49.72,1196.54,50.36 2005-10-26 00:00:00,21.15,57.03,27.01,75.11,52.66,22.46,49.33,1191.38,49.48 2005-10-27 00:00:00,21.18,55.41,26.91,74.59,51.51,22.23,49.95,1178.9,48.95 2005-10-28 00:00:00,21.31,54.47,27.29,73.78,52.78,22.83,50.43,1198.41,49.57 2005-10-31 00:00:00,21.55,57.59,27.18,74.2,52.5,22.99,50.64,1207.01,49.42 2005-11-01 00:00:00,21.83,57.5,26.93,73.93,51.9,23.22,50.2,1202.76,49.65 2005-11-02 00:00:00,22.13,59.95,27.1,73.45,51.39,23.67,50.55,1214.76,50.52 2005-11-03 00:00:00,22.43,61.85,27.24,75.09,51.31,23.65,50.62,1219.94,51.56 2005-11-04 00:00:00,22.47,61.15,27.27,75.21,51.04,23.85,50.23,1220.14,50.97 2005-11-07 00:00:00,23.16,60.23,27.27,75.76,51.5,24.16,50.2,1222.81,50.27 2005-11-08 00:00:00,23.2,59.9,27.06,75.53,50.95,24.19,49.97,1218.59,50.76 2005-11-09 00:00:00,23.39,60.11,27.19,75.25,51.16,24.11,49.97,1220.65,50.88 2005-11-10 00:00:00,23.46,61.18,27.65,76.29,51.48,24.23,50.48,1230.96,49.95 2005-11-11 00:00:00,23.82,61.54,27.77,76.8,51.07,24.4,50.32,1234.72,50.01 2005-11-14 00:00:00,23.76,61.45,27.57,76.63,50.73,24.48,50.23,1233.76,50.13 2005-11-15 00:00:00,23.44,62.28,27.57,77.69,52.67,24.67,50.32,1229.01,49.93 2005-11-16 00:00:00,23.51,64.95,27.68,78.61,53.03,24.88,50.3,1231.21,50.6 2005-11-17 00:00:00,23.61,64.52,27.78,78.93,53.1,25.09,49.92,1242.8,50.77 2005-11-18 00:00:00,23.57,64.56,28.65,79.73,52.71,25.18,50.16,1248.27,51.54 2005-11-21 00:00:00,23.85,64.96,29.01,79.29,52.24,25.26,50.06,1254.85,52.53 2005-11-22 00:00:00,23.84,66.52,28.9,79.92,51.92,25.04,50.89,1261.23,52.79 2005-11-23 00:00:00,24.01,67.11,28.81,80.66,51.97,25.05,51.09,1265.61,52.98 2005-11-25 00:00:00,24.4,69.34,29.01,80.66,52.38,24.9,51.35,1268.25,53.19 2005-11-28 00:00:00,24.64,69.66,28.84,80.94,52.59,24.89,51.11,1257.46,51.98 2005-11-29 00:00:00,24.88,68.1,28.8,80.93,52.25,24.83,51.23,1257.48,51.62 2005-11-30 00:00:00,24.47,67.82,28.63,80.75,52.04,24.83,50.75,1249.48,51.35 2005-12-01 00:00:00,25.25,71.6,28.65,81.03,51.99,25.02,51.31,1264.67,52.52 2005-12-02 00:00:00,25.09,72.63,28.45,80.52,51.59,25.13,51.35,1265.08,52.27 2005-12-05 00:00:00,24.97,71.82,28.67,80.32,51.45,24.98,51.31,1262.09,52.66 2005-12-06 00:00:00,25.21,74.05,28.69,80.97,50.96,24.84,51.18,1263.7,52.82 2005-12-07 00:00:00,25.52,73.95,28.51,80.59,50.6,24.89,50.99,1257.37,52.22 2005-12-08 00:00:00,25.38,74.08,28.33,79.48,50.63,24.84,50.86,1255.84,52.58 2005-12-09 00:00:00,25.13,74.33,28.48,79.0,50.65,24.86,50.8,1259.37,51.76 2005-12-12 00:00:00,25.06,74.91,28.49,78.08,50.69,24.62,51.06,1260.43,52.08 2005-12-13 00:00:00,25.45,74.98,28.43,76.04,50.78,24.34,50.77,1267.43,52.26 2005-12-14 00:00:00,25.43,72.01,28.67,75.51,50.66,24.3,51.01,1272.74,52.97 2005-12-15 00:00:00,25.2,72.18,28.85,75.87,50.7,24.15,51.31,1270.94,52.64 2005-12-16 00:00:00,25.2,71.11,28.9,75.73,51.29,24.13,51.5,1267.32,51.37 2005-12-19 00:00:00,25.49,71.38,28.71,75.17,51.57,24.07,51.26,1259.92,51.06 2005-12-20 00:00:00,25.26,72.11,28.49,74.92,51.22,24.09,50.94,1259.62,51.26 2005-12-21 00:00:00,25.88,73.5,28.31,75.5,51.31,23.98,51.0,1262.79,50.97 2005-12-22 00:00:00,26.18,74.02,28.59,75.59,51.68,23.85,50.99,1268.12,50.53 2005-12-23 00:00:00,26.29,73.35,28.59,75.83,51.5,23.9,50.98,1268.66,50.53 2005-12-27 00:00:00,26.11,74.23,28.3,75.38,50.82,23.74,50.96,1256.54,49.44 2005-12-28 00:00:00,26.43,73.57,28.34,75.43,50.92,23.67,51.08,1258.17,49.77 2005-12-29 00:00:00,26.47,71.45,28.41,74.85,50.78,23.57,51.26,1254.42,49.76 2005-12-30 00:00:00,26.4,71.89,28.29,74.67,50.65,23.46,50.86,1248.29,49.7 2006-01-03 00:00:00,26.69,74.75,28.55,74.54,51.94,24.08,51.45,1268.8,51.74 2006-01-04 00:00:00,26.84,74.97,28.51,74.44,52.74,24.19,51.42,1273.46,51.83 2006-01-05 00:00:00,27.06,74.38,28.44,74.94,52.52,24.21,51.12,1273.48,51.57 2006-01-06 00:00:00,26.97,76.3,28.63,77.16,52.76,24.14,51.31,1285.45,52.59 2006-01-09 00:00:00,27.29,76.05,28.56,76.06,53.09,24.09,51.05,1290.15,52.56 2006-01-10 00:00:00,26.43,80.86,28.41,76.36,53.18,24.22,50.88,1289.69,52.97 2006-01-11 00:00:00,26.07,83.9,28.6,76.46,52.67,24.48,50.68,1294.18,53.33 2006-01-12 00:00:00,25.72,84.29,28.25,75.91,52.43,24.35,50.66,1286.06,52.77 2006-01-13 00:00:00,25.84,85.59,28.33,75.55,52.1,24.39,50.54,1287.61,53.95 2006-01-17 00:00:00,26.0,84.71,28.2,75.39,51.64,24.21,50.31,1283.03,54.45 2006-01-18 00:00:00,25.84,82.49,28.11,76.12,52.41,24.07,50.27,1277.93,53.69 2006-01-19 00:00:00,26.33,79.04,27.99,75.47,52.39,24.24,50.22,1285.04,54.42 2006-01-20 00:00:00,25.71,76.09,26.94,73.9,51.24,23.69,49.32,1261.49,53.56 2006-01-23 00:00:00,26.05,77.67,26.87,73.95,51.57,23.64,49.5,1263.82,54.15 2006-01-24 00:00:00,26.17,76.04,26.61,73.44,50.03,23.57,49.97,1266.86,53.94 2006-01-25 00:00:00,26.55,74.2,26.44,73.49,49.3,23.68,49.63,1264.68,53.28 2006-01-26 00:00:00,27.48,72.33,26.65,73.32,49.42,23.77,49.42,1273.83,53.05 2006-01-27 00:00:00,27.94,72.03,26.6,73.59,49.48,24.93,50.11,1283.72,54.23 2006-01-30 00:00:00,27.26,75.0,26.58,74.15,49.22,25.12,49.63,1285.19,55.84 2006-01-31 00:00:00,28.12,75.51,26.44,73.85,48.49,25.25,49.23,1280.08,55.52 2006-02-01 00:00:00,27.91,75.42,26.75,74.43,48.76,25.15,49.31,1282.46,54.82 2006-02-02 00:00:00,27.49,72.1,26.56,73.78,48.59,24.83,49.46,1270.84,54.82 2006-02-03 00:00:00,27.43,71.85,26.52,72.64,48.36,24.7,49.37,1264.03,54.32 2006-02-06 00:00:00,28.73,67.3,26.44,72.22,47.91,24.37,48.88,1265.02,54.83 2006-02-07 00:00:00,27.69,67.6,26.08,72.53,47.87,24.17,48.95,1254.78,53.58 2006-02-08 00:00:00,27.97,68.81,26.43,73.58,49.39,24.14,49.32,1265.65,53.72 2006-02-09 00:00:00,27.87,64.95,26.57,73.21,49.34,23.92,49.69,1263.78,53.3 2006-02-10 00:00:00,27.68,67.31,26.86,74.06,49.21,23.94,49.87,1266.99,52.87 2006-02-13 00:00:00,27.13,64.71,26.84,73.25,49.3,23.67,49.59,1262.86,53.02 2006-02-14 00:00:00,28.14,67.64,27.01,73.84,49.77,23.91,49.89,1275.53,52.97 2006-02-15 00:00:00,27.71,69.22,27.01,73.62,49.81,24.19,49.83,1280.0,53.16 2006-02-16 00:00:00,27.24,70.57,26.92,73.68,49.71,24.13,50.54,1289.38,53.6 2006-02-17 00:00:00,27.25,70.29,27.13,73.5,49.78,24.03,50.73,1287.24,53.86 2006-02-21 00:00:00,27.09,69.08,26.93,73.31,49.84,23.89,50.66,1283.03,54.05 2006-02-22 00:00:00,27.18,71.32,27.16,74.08,49.75,24.05,50.8,1292.67,53.6 2006-02-23 00:00:00,26.99,71.75,27.05,73.03,49.38,24.0,51.36,1287.79,53.22 2006-02-24 00:00:00,27.05,71.46,26.95,72.94,48.95,23.97,51.26,1289.43,53.75 2006-02-27 00:00:00,26.52,70.99,27.1,73.42,49.08,24.35,51.24,1294.12,53.3 2006-02-28 00:00:00,26.3,68.49,26.73,73.07,48.86,24.19,50.89,1280.66,52.81 2006-03-01 00:00:00,26.51,69.1,26.64,72.76,48.87,24.43,51.01,1291.24,53.68 2006-03-02 00:00:00,26.82,69.61,26.72,72.8,48.89,24.28,51.04,1289.14,54.13 2006-03-03 00:00:00,27.27,67.72,26.89,72.81,48.71,24.24,51.21,1287.23,54.25 2006-03-06 00:00:00,26.73,65.48,26.92,72.85,49.03,24.22,51.38,1278.26,53.36 2006-03-07 00:00:00,26.19,66.31,26.96,73.11,49.34,24.36,51.45,1275.88,53.24 2006-03-08 00:00:00,25.82,65.66,27.19,73.89,49.78,24.53,51.73,1278.47,53.12 2006-03-09 00:00:00,25.84,63.93,27.0,73.78,49.42,24.3,51.88,1272.23,52.41 2006-03-10 00:00:00,26.22,63.19,27.37,74.28,50.04,24.46,52.18,1281.42,52.64 2006-03-13 00:00:00,26.09,65.68,27.38,74.61,50.07,24.4,52.31,1284.13,53.05 2006-03-14 00:00:00,26.55,67.32,27.47,75.47,50.25,24.51,52.25,1297.48,54.09 2006-03-15 00:00:00,26.82,66.23,27.99,75.93,50.68,24.63,51.93,1303.02,54.28 2006-03-16 00:00:00,27.12,64.31,27.96,75.46,50.87,24.55,51.8,1305.33,54.83 2006-03-17 00:00:00,27.01,64.66,28.07,75.85,51.14,24.75,51.93,1307.25,54.31 2006-03-20 00:00:00,26.73,63.99,28.06,76.11,51.26,25.1,51.76,1305.08,53.96 2006-03-21 00:00:00,26.14,61.81,27.93,76.32,51.34,24.97,51.48,1297.23,54.01 2006-03-22 00:00:00,26.34,61.67,28.08,76.9,51.7,24.44,51.73,1305.04,54.31 2006-03-23 00:00:00,26.48,60.16,27.75,75.76,51.54,24.17,51.13,1301.67,54.49 2006-03-24 00:00:00,26.76,59.96,27.61,75.91,51.18,24.31,51.31,1302.95,54.41 2006-03-27 00:00:00,27.21,59.51,27.48,75.65,50.8,24.31,51.01,1301.61,54.52 2006-03-28 00:00:00,27.06,58.71,27.33,75.06,50.51,24.21,50.53,1293.23,54.22 2006-03-29 00:00:00,27.55,62.33,27.59,75.7,50.44,24.32,50.51,1302.89,54.51 2006-03-30 00:00:00,27.56,62.75,28.18,75.76,50.3,24.51,50.25,1300.25,54.37 2006-03-31 00:00:00,27.41,62.72,28.29,75.1,50.19,24.49,49.97,1294.87,54.14 2006-04-03 00:00:00,27.72,62.65,28.21,75.64,50.15,24.81,50.02,1297.81,54.29 2006-04-04 00:00:00,27.68,61.17,28.22,75.99,49.85,24.88,49.99,1305.93,54.93 2006-04-05 00:00:00,28.41,67.21,27.99,76.65,49.5,24.97,50.06,1311.56,55.29 2006-04-06 00:00:00,28.85,71.24,28.07,76.32,49.58,24.81,50.17,1309.04,55.23 2006-04-07 00:00:00,29.15,69.79,27.68,75.11,49.01,24.53,49.98,1295.5,54.56 2006-04-10 00:00:00,29.45,68.67,27.59,74.76,48.91,24.56,50.23,1296.62,55.1 2006-04-11 00:00:00,30.58,67.99,27.69,73.91,48.95,24.42,49.99,1286.57,55.15 2006-04-12 00:00:00,30.58,66.71,28.03,73.53,49.05,24.48,50.05,1288.12,54.67 2006-04-13 00:00:00,30.24,66.47,27.56,74.65,49.08,24.37,50.04,1289.12,54.76 2006-04-17 00:00:00,30.5,64.81,27.07,74.34,48.86,24.16,49.63,1285.33,55.2 2006-04-18 00:00:00,31.54,66.22,27.55,75.86,49.27,24.5,50.22,1307.28,56.52 2006-04-19 00:00:00,31.35,65.65,27.56,74.54,49.17,24.33,50.22,1309.93,57.2 2006-04-20 00:00:00,31.19,67.63,27.75,74.69,49.34,24.33,49.55,1311.46,56.86 2006-04-21 00:00:00,31.75,67.04,27.63,74.36,49.47,24.44,49.46,1311.28,57.82 2006-04-24 00:00:00,31.87,65.75,27.59,74.77,49.44,24.4,49.52,1308.11,57.3 2006-04-25 00:00:00,31.49,66.17,27.63,75.28,49.33,24.4,49.72,1301.74,56.89 2006-04-26 00:00:00,31.36,68.15,27.76,75.9,49.61,24.39,50.03,1305.41,56.13 2006-04-27 00:00:00,29.96,69.36,28.0,76.38,49.71,24.53,50.22,1309.72,55.53 2006-04-28 00:00:00,30.3,70.39,28.13,74.98,49.67,21.74,50.36,1310.61,56.11 2006-05-01 00:00:00,30.56,69.6,27.97,74.88,49.66,21.86,50.3,1305.19,56.42 2006-05-02 00:00:00,30.75,71.62,28.04,75.05,49.72,21.61,50.11,1313.21,57.53 2006-05-03 00:00:00,30.38,71.14,27.98,75.31,49.45,20.85,50.54,1308.12,56.73 2006-05-04 00:00:00,31.06,71.13,28.3,75.06,49.38,21.1,50.79,1312.25,56.32 2006-05-05 00:00:00,31.62,71.89,28.59,75.84,49.75,21.42,51.17,1325.76,56.93 2006-05-08 00:00:00,32.54,71.89,28.46,75.75,49.76,21.36,50.93,1324.66,56.67 2006-05-09 00:00:00,32.97,71.03,28.46,76.07,49.46,21.26,50.77,1325.14,56.88 2006-05-10 00:00:00,32.63,70.6,28.22,75.76,49.43,21.39,50.88,1322.85,57.11 2006-05-11 00:00:00,32.45,68.15,28.07,75.36,49.87,20.9,50.46,1305.92,56.74 2006-05-12 00:00:00,31.36,67.7,27.88,75.3,49.86,20.85,50.71,1291.24,55.64 2006-05-15 00:00:00,30.15,67.79,28.11,75.75,50.83,20.92,51.63,1294.5,55.43 2006-05-16 00:00:00,30.31,64.98,28.29,75.09,51.06,20.79,51.59,1292.08,55.39 2006-05-17 00:00:00,28.97,65.26,27.99,74.27,50.96,20.54,51.58,1270.32,53.8 2006-05-18 00:00:00,28.21,63.18,27.77,73.72,50.97,20.63,50.75,1261.81,53.54 2006-05-19 00:00:00,28.81,64.51,27.78,73.37,50.77,20.38,50.67,1267.03,54.04 2006-05-22 00:00:00,28.06,63.38,27.71,73.13,50.73,20.67,51.25,1262.07,54.34 2006-05-23 00:00:00,27.79,63.15,27.66,72.96,50.85,20.59,51.65,1256.58,53.99 2006-05-24 00:00:00,27.95,63.34,27.86,72.91,51.52,21.23,52.19,1258.57,53.73 2006-05-25 00:00:00,28.52,64.33,27.99,73.24,51.55,21.45,52.37,1272.88,55.0 2006-05-26 00:00:00,29.1,63.55,27.92,73.8,51.76,21.43,52.45,1280.16,55.05 2006-05-30 00:00:00,28.38,61.22,27.69,73.26,51.04,20.92,52.25,1259.87,53.82 2006-05-31 00:00:00,28.58,59.77,27.86,73.02,51.36,20.47,52.28,1270.09,54.46 2006-06-01 00:00:00,29.34,62.17,28.1,73.74,51.72,20.62,52.83,1285.71,54.63 2006-06-02 00:00:00,29.34,61.66,28.19,72.67,51.8,20.57,52.46,1288.22,55.12 2006-06-05 00:00:00,28.27,60.0,27.83,72.25,51.28,20.33,51.67,1265.29,53.69 2006-06-06 00:00:00,27.65,59.72,28.1,72.89,51.97,20.0,52.33,1263.85,54.0 2006-06-07 00:00:00,27.07,58.56,27.98,72.34,52.17,19.92,52.4,1256.15,52.59 2006-06-08 00:00:00,27.09,60.76,28.11,70.4,52.5,19.98,52.25,1257.93,53.26 2006-06-09 00:00:00,27.19,59.24,27.71,70.95,52.34,19.81,52.08,1252.3,52.57 2006-06-12 00:00:00,26.79,57.0,27.55,70.39,52.34,19.62,51.9,1237.44,52.07 2006-06-13 00:00:00,26.08,58.33,27.43,70.31,52.06,19.44,51.26,1223.69,50.65 2006-06-14 00:00:00,26.63,57.61,27.57,71.02,52.23,19.77,51.15,1230.04,51.67 2006-06-15 00:00:00,27.26,59.38,27.74,71.8,52.42,19.94,51.34,1256.16,52.86 2006-06-16 00:00:00,27.11,57.56,27.59,71.24,52.6,19.97,51.88,1251.54,52.57 2006-06-19 00:00:00,26.22,57.2,27.42,70.98,52.32,20.38,51.54,1240.13,51.31 2006-06-20 00:00:00,26.3,57.47,27.41,71.28,52.47,20.38,51.52,1240.12,51.31 2006-06-21 00:00:00,26.88,57.86,27.38,71.56,52.69,20.85,51.8,1252.2,51.91 2006-06-22 00:00:00,27.02,59.58,27.24,70.55,52.17,20.67,52.16,1245.6,51.83 2006-06-23 00:00:00,27.19,58.83,27.17,70.46,52.29,20.33,51.7,1244.5,51.94 2006-06-26 00:00:00,27.6,58.99,27.21,70.51,51.35,20.62,51.72,1250.56,52.59 2006-06-27 00:00:00,27.37,57.43,26.94,70.03,50.78,20.66,51.37,1239.2,53.33 2006-06-28 00:00:00,27.52,56.02,26.98,69.97,50.51,20.93,51.19,1246.0,54.64 2006-06-29 00:00:00,28.74,58.97,27.26,70.91,51.07,21.21,51.71,1272.87,55.76 2006-06-30 00:00:00,29.15,57.27,27.01,70.21,51.1,21.05,52.18,1270.2,54.85 2006-07-03 00:00:00,29.81,57.95,27.31,71.3,51.3,21.42,52.38,1280.19,55.56 2006-07-05 00:00:00,29.59,57.0,27.29,71.08,51.2,21.1,52.38,1270.91,55.92 2006-07-06 00:00:00,30.11,55.77,27.45,71.37,51.61,21.22,52.45,1274.08,56.74 2006-07-07 00:00:00,30.23,55.4,27.28,69.84,51.7,21.05,52.54,1265.48,56.18 2006-07-10 00:00:00,30.1,55.0,27.41,70.07,51.98,21.23,52.97,1267.34,56.36 2006-07-11 00:00:00,28.63,55.65,27.25,69.89,51.82,20.87,53.52,1272.43,57.2 2006-07-12 00:00:00,28.88,52.96,27.09,68.98,51.7,20.46,53.1,1258.6,57.19 2006-07-13 00:00:00,27.92,52.25,26.77,67.85,51.4,20.11,53.94,1242.28,57.28 2006-07-14 00:00:00,27.74,50.67,26.31,67.24,51.56,20.14,53.71,1236.2,58.02 2006-07-17 00:00:00,27.23,52.37,26.51,67.36,51.94,20.31,54.12,1234.49,57.22 2006-07-18 00:00:00,27.4,52.9,26.6,67.87,51.68,20.55,54.93,1236.86,57.76 2006-07-19 00:00:00,27.92,54.1,26.94,69.52,52.28,21.14,54.46,1259.81,57.81 2006-07-20 00:00:00,27.0,60.5,26.61,68.98,52.34,20.65,54.3,1249.13,57.44 2006-07-21 00:00:00,26.63,60.72,26.42,68.42,52.64,21.57,54.54,1240.29,57.16 2006-07-24 00:00:00,26.79,61.42,26.73,69.45,52.86,21.69,55.05,1260.91,58.43 2006-07-25 00:00:00,27.01,61.93,26.79,69.36,52.87,21.88,54.5,1268.88,58.77 2006-07-26 00:00:00,26.83,63.87,26.78,69.3,52.92,22.02,55.3,1268.4,59.54 2006-07-27 00:00:00,26.42,63.4,26.75,69.59,53.35,21.57,54.31,1263.2,59.43 2006-07-28 00:00:00,26.79,65.59,27.06,70.33,53.66,21.91,54.86,1278.55,59.9 2006-07-31 00:00:00,26.98,67.96,26.78,70.75,53.34,21.74,55.08,1276.66,60.56 2006-08-01 00:00:00,26.39,67.18,26.68,69.59,53.45,21.68,54.9,1270.92,60.95 2006-08-02 00:00:00,26.85,68.16,26.71,69.75,53.85,21.96,54.92,1277.41,61.22 2006-08-03 00:00:00,26.81,69.59,26.82,69.76,53.79,21.88,54.61,1280.27,61.12 2006-08-04 00:00:00,26.78,68.3,26.87,69.38,54.18,21.95,54.9,1279.36,61.41 2006-08-07 00:00:00,26.62,67.21,26.78,69.02,53.96,21.88,54.89,1275.77,61.89 2006-08-08 00:00:00,26.31,64.78,26.5,69.12,54.2,21.99,55.29,1271.48,61.93 2006-08-09 00:00:00,26.12,63.59,26.45,69.17,54.0,22.08,54.61,1265.95,61.95 2006-08-10 00:00:00,26.2,64.07,26.77,69.5,54.2,22.1,54.92,1271.81,62.28 2006-08-11 00:00:00,25.6,63.65,26.63,69.26,54.13,22.07,55.03,1266.74,62.63 2006-08-14 00:00:00,25.29,63.94,26.89,70.36,54.5,22.17,55.57,1268.21,62.2 2006-08-15 00:00:00,25.8,66.45,27.2,70.73,54.93,22.33,55.26,1285.58,61.7 2006-08-16 00:00:00,26.0,67.98,27.62,72.57,55.1,22.4,55.0,1295.43,60.69 2006-08-17 00:00:00,25.82,67.59,27.79,72.83,54.78,22.4,54.45,1297.48,61.15 2006-08-18 00:00:00,25.75,67.91,27.86,73.31,54.94,23.39,54.76,1302.3,62.06 2006-08-21 00:00:00,26.05,66.56,27.83,72.74,54.81,23.69,55.01,1297.52,62.72 2006-08-22 00:00:00,26.32,67.62,27.83,72.44,54.72,23.24,55.39,1298.82,63.06 2006-08-23 00:00:00,26.2,67.31,27.69,72.18,54.5,23.28,55.68,1292.99,62.54 2006-08-24 00:00:00,25.96,67.81,27.74,72.84,55.43,23.34,55.74,1296.06,63.52 2006-08-25 00:00:00,26.2,68.75,27.73,73.29,55.47,23.44,55.77,1295.09,63.26 2006-08-28 00:00:00,26.13,66.98,27.8,73.7,55.39,23.53,56.49,1301.78,62.96 2006-08-29 00:00:00,26.08,66.48,28.01,74.69,55.41,23.43,57.19,1304.28,62.34 2006-08-30 00:00:00,25.77,66.96,28.08,74.52,55.41,23.4,57.04,1305.37,61.35 2006-08-31 00:00:00,25.89,67.85,27.91,74.29,55.46,23.31,56.73,1303.82,60.78 2006-09-01 00:00:00,26.27,68.38,27.97,74.7,55.51,23.43,56.84,1311.01,61.17 2006-09-05 00:00:00,26.16,71.48,27.83,74.18,55.16,23.23,56.66,1313.25,61.51 2006-09-06 00:00:00,26.07,70.03,27.82,73.66,54.83,23.23,56.69,1300.26,60.34 2006-09-07 00:00:00,26.18,72.8,27.89,72.85,54.43,23.06,56.07,1294.02,60.8 2006-09-08 00:00:00,25.97,72.52,27.87,74.01,54.54,23.22,56.51,1298.92,60.01 2006-09-11 00:00:00,24.6,72.5,28.21,74.26,54.93,23.5,56.5,1299.54,58.33 2006-09-12 00:00:00,24.81,72.63,28.41,75.5,54.75,23.52,56.92,1313.0,58.11 2006-09-13 00:00:00,25.36,74.2,28.55,75.43,54.73,23.56,56.43,1318.07,58.7 2006-09-14 00:00:00,25.23,74.17,28.5,75.67,54.66,23.88,56.35,1316.28,58.12 2006-09-15 00:00:00,25.47,74.1,28.55,76.1,54.72,24.35,56.77,1319.66,58.07 2006-09-18 00:00:00,25.79,73.89,28.57,75.46,55.03,24.3,56.29,1321.18,59.55 2006-09-19 00:00:00,25.43,73.77,28.55,75.12,55.05,24.36,56.55,1317.64,58.83 2006-09-20 00:00:00,25.05,75.26,28.69,76.54,55.06,24.65,56.85,1325.18,57.58 2006-09-21 00:00:00,25.06,74.65,28.42,74.88,55.09,24.4,56.41,1318.03,58.18 2006-09-22 00:00:00,24.89,73.0,28.39,74.51,54.86,24.18,56.12,1314.78,58.3 2006-09-25 00:00:00,24.71,75.75,28.79,75.24,55.06,24.44,56.81,1326.37,58.44 2006-09-26 00:00:00,25.06,77.61,29.25,75.7,55.47,24.67,57.12,1336.35,59.67 2006-09-27 00:00:00,25.13,76.41,29.16,75.32,55.6,24.89,57.54,1336.59,60.29 2006-09-28 00:00:00,25.26,77.01,29.28,75.23,55.67,24.85,57.01,1338.88,60.59 2006-09-29 00:00:00,25.39,76.98,29.13,75.18,55.7,24.8,56.97,1335.85,60.27 2006-10-02 00:00:00,25.01,74.86,29.3,75.12,55.83,24.81,56.16,1331.32,60.18 2006-10-03 00:00:00,24.54,74.08,29.47,74.92,56.18,24.82,56.45,1334.11,58.75 2006-10-04 00:00:00,24.6,75.38,29.79,76.25,56.47,25.34,56.67,1350.2,59.83 2006-10-05 00:00:00,24.97,74.83,29.95,76.08,55.85,25.32,56.56,1353.22,60.47 2006-10-06 00:00:00,25.12,74.22,29.82,76.29,55.8,25.28,56.24,1349.59,60.64 2006-10-09 00:00:00,25.35,74.63,29.84,77.07,55.64,25.14,55.63,1350.66,59.77 2006-10-10 00:00:00,25.62,73.81,29.96,77.25,55.72,25.11,55.36,1353.42,60.36 2006-10-11 00:00:00,24.32,73.23,29.85,77.25,55.84,24.98,55.75,1349.95,59.76 2006-10-12 00:00:00,24.09,75.26,29.89,77.72,55.62,25.59,54.87,1362.83,60.76 2006-10-13 00:00:00,24.12,75.02,29.69,78.98,55.39,25.73,54.52,1365.62,61.44 2006-10-16 00:00:00,24.74,75.4,29.35,79.56,55.69,25.8,54.72,1369.06,62.72 2006-10-17 00:00:00,24.92,74.29,29.35,79.78,56.68,25.79,54.45,1364.05,62.34 2006-10-18 00:00:00,24.8,74.53,29.35,82.42,58.46,25.87,55.17,1365.8,62.13 2006-10-19 00:00:00,24.93,78.99,29.11,82.45,58.36,25.66,54.84,1366.96,62.63 2006-10-20 00:00:00,24.87,79.95,29.27,83.02,58.86,25.78,54.84,1368.6,62.47 2006-10-23 00:00:00,24.89,81.46,29.32,84.01,59.27,25.8,55.16,1377.02,62.8 2006-10-24 00:00:00,25.09,81.05,29.23,83.95,58.97,25.65,55.18,1377.38,62.77 2006-10-25 00:00:00,25.15,81.68,29.39,84.26,59.04,25.67,55.56,1382.22,63.78 2006-10-26 00:00:00,25.0,82.19,29.37,83.99,59.03,25.71,55.72,1389.08,64.33 2006-10-27 00:00:00,25.63,80.41,29.06,83.28,58.47,25.7,55.47,1377.34,64.18 2006-10-30 00:00:00,25.59,80.42,29.05,83.96,58.07,25.87,55.46,1377.93,63.63 2006-10-31 00:00:00,26.18,81.08,28.97,84.72,57.81,26.04,55.39,1377.94,64.15 2006-11-01 00:00:00,25.79,79.16,28.8,84.23,57.62,26.13,55.31,1367.81,63.82 2006-11-02 00:00:00,25.94,78.98,28.64,84.12,58.24,26.09,55.18,1367.34,63.94 2006-11-03 00:00:00,25.93,78.29,28.69,83.87,58.16,26.06,55.21,1364.3,64.8 2006-11-06 00:00:00,26.24,79.71,29.11,84.97,58.69,26.16,55.25,1379.78,65.49 2006-11-07 00:00:00,26.27,80.51,29.33,85.1,58.94,26.26,55.35,1382.84,65.14 2006-11-08 00:00:00,26.15,82.45,29.36,85.23,58.32,26.28,55.46,1385.72,66.58 2006-11-09 00:00:00,26.41,83.34,29.12,85.08,56.74,26.54,54.73,1378.33,67.3 2006-11-10 00:00:00,25.95,83.12,29.02,84.47,56.86,26.52,54.61,1380.9,67.13 2006-11-13 00:00:00,25.93,84.35,29.18,84.75,56.56,26.62,53.61,1384.42,67.14 2006-11-14 00:00:00,25.86,85.0,29.37,85.88,57.09,26.6,54.08,1393.22,67.16 2006-11-15 00:00:00,25.99,84.05,29.54,85.71,57.07,26.5,53.46,1396.57,67.47 2006-11-16 00:00:00,25.77,85.61,29.68,86.04,57.07,26.82,53.95,1399.76,65.55 2006-11-17 00:00:00,25.73,85.85,29.92,86.36,57.67,26.75,54.37,1401.2,65.92 2006-11-20 00:00:00,25.92,86.47,29.69,85.84,57.48,27.2,54.56,1400.5,65.34 2006-11-21 00:00:00,26.57,88.6,29.54,85.68,57.13,27.23,54.62,1402.81,66.2 2006-11-22 00:00:00,27.7,90.31,29.7,86.09,57.27,27.23,54.6,1406.09,65.77 2006-11-24 00:00:00,27.96,91.63,29.45,85.93,56.8,27.08,54.43,1400.95,65.29 2006-11-27 00:00:00,27.46,89.54,29.25,84.18,56.63,26.83,53.69,1381.96,65.37 2006-11-28 00:00:00,27.49,91.81,29.05,84.09,56.9,26.75,53.97,1386.72,66.9 2006-11-29 00:00:00,28.21,91.8,29.17,84.25,57.1,26.91,54.54,1399.48,68.58 2006-11-30 00:00:00,28.37,91.66,29.11,84.62,56.85,26.72,54.1,1400.63,69.29 2006-12-01 00:00:00,28.1,91.32,29.11,84.0,56.9,26.5,54.09,1396.71,69.64 2006-12-04 00:00:00,28.38,91.12,29.21,86.08,57.17,26.69,54.9,1409.12,70.15 2006-12-05 00:00:00,28.07,91.27,29.11,86.97,57.08,26.51,56.02,1414.76,70.42 2006-12-06 00:00:00,27.99,89.83,28.97,86.64,56.96,26.38,55.88,1412.9,68.84 2006-12-07 00:00:00,28.05,87.04,29.02,86.74,56.98,26.25,55.63,1407.29,68.3 2006-12-08 00:00:00,28.32,88.26,29.11,86.4,56.89,26.75,55.5,1409.84,68.11 2006-12-11 00:00:00,28.27,88.75,29.07,86.2,56.67,26.88,55.05,1413.04,67.98 2006-12-12 00:00:00,27.86,86.14,29.41,86.64,56.57,26.78,55.13,1411.56,68.78 2006-12-13 00:00:00,27.72,89.05,29.3,87.24,56.47,26.89,55.05,1413.21,69.78 2006-12-14 00:00:00,28.0,88.55,29.88,87.78,57.15,27.36,54.82,1425.49,71.02 2006-12-15 00:00:00,28.26,87.72,30.83,87.73,57.18,27.47,55.15,1427.09,69.73 2006-12-18 00:00:00,27.69,85.47,31.36,87.86,57.45,27.2,55.32,1422.48,68.12 2006-12-19 00:00:00,27.75,86.31,31.37,88.37,57.69,27.29,55.51,1425.55,69.45 2006-12-20 00:00:00,27.35,84.76,31.48,88.37,57.3,27.38,55.52,1423.53,68.63 2006-12-21 00:00:00,26.72,82.9,31.4,88.29,56.93,27.28,55.6,1418.3,68.44 2006-12-22 00:00:00,26.66,82.2,31.23,87.68,56.63,26.97,55.35,1410.76,68.03 2006-12-26 00:00:00,26.78,81.51,31.35,88.06,56.62,27.29,55.12,1416.9,68.6 2006-12-27 00:00:00,27.37,81.52,31.42,89.48,56.94,27.32,55.16,1426.84,69.42 2006-12-28 00:00:00,27.37,80.87,31.16,89.26,57.29,27.28,55.48,1424.73,69.76 2006-12-29 00:00:00,27.36,84.84,30.93,89.43,56.95,27.17,54.86,1418.3,69.13 2007-01-03 00:00:00,26.74,83.8,31.57,89.54,57.28,27.17,55.01,1416.6,66.85 2007-01-04 00:00:00,26.54,85.66,31.38,90.5,57.99,27.13,55.39,1418.34,65.6 2007-01-05 00:00:00,26.22,85.05,31.23,89.68,57.47,26.97,55.22,1409.71,66.07 2007-01-08 00:00:00,25.97,85.47,31.22,91.04,57.37,27.24,55.34,1412.84,65.54 2007-01-09 00:00:00,26.01,92.57,31.22,92.12,57.16,27.26,55.57,1412.11,65.03 2007-01-10 00:00:00,27.56,97.0,31.23,91.03,57.06,26.99,56.27,1414.85,64.04 2007-01-11 00:00:00,27.78,95.8,31.52,90.81,57.56,27.94,56.97,1423.82,64.03 2007-01-12 00:00:00,28.08,94.62,31.5,91.45,57.48,28.4,56.75,1430.73,65.54 2007-01-16 00:00:00,27.88,97.1,31.68,92.81,57.4,28.36,56.88,1431.9,64.62 2007-01-17 00:00:00,27.84,94.95,31.57,92.07,57.68,28.3,57.01,1430.62,65.36 2007-01-18 00:00:00,27.63,89.07,31.59,91.55,58.41,28.21,56.94,1426.37,64.91 2007-01-19 00:00:00,28.63,88.5,30.72,88.53,58.45,28.31,56.86,1430.5,66.33 2007-01-22 00:00:00,28.42,86.79,30.55,89.39,57.95,27.96,56.85,1422.95,65.76 2007-01-23 00:00:00,28.79,85.7,30.39,89.37,57.36,27.97,56.87,1427.99,67.2 2007-01-24 00:00:00,29.0,86.7,30.46,89.66,57.8,28.29,57.19,1440.13,67.57 2007-01-25 00:00:00,28.7,86.25,30.21,89.76,57.52,27.71,56.51,1423.9,66.32 2007-01-26 00:00:00,29.24,85.38,29.99,89.71,56.99,27.85,56.53,1422.18,66.4 2007-01-29 00:00:00,29.0,85.94,30.09,90.71,57.06,27.78,56.66,1420.62,66.03 2007-01-30 00:00:00,29.46,85.55,29.95,91.47,57.27,27.74,57.09,1428.82,67.11 2007-01-31 00:00:00,29.61,85.73,29.97,91.27,57.62,28.08,57.22,1438.24,66.84 2007-02-01 00:00:00,30.07,84.74,30.12,91.13,57.8,27.81,57.35,1445.94,67.73 2007-02-02 00:00:00,29.74,84.75,30.15,91.29,57.43,27.47,57.05,1448.39,68.14 2007-02-05 00:00:00,29.85,83.94,30.24,92.4,57.19,26.95,56.86,1446.99,68.26 2007-02-06 00:00:00,30.11,84.15,30.19,91.92,56.93,26.85,56.48,1448.0,68.07 2007-02-07 00:00:00,29.47,86.15,30.01,91.91,56.76,26.73,56.58,1450.02,67.75 2007-02-08 00:00:00,29.92,86.18,29.71,91.98,56.72,26.63,55.53,1448.31,68.36 2007-02-09 00:00:00,29.81,83.27,29.54,90.99,56.59,26.37,56.06,1438.06,68.14 2007-02-12 00:00:00,30.16,84.88,29.63,91.02,56.47,26.34,55.89,1433.37,67.58 2007-02-13 00:00:00,32.08,84.7,29.74,90.75,56.4,26.49,55.97,1444.26,68.35 2007-02-14 00:00:00,31.69,85.3,30.32,91.59,56.8,26.85,55.57,1455.3,68.49 2007-02-15 00:00:00,31.82,85.21,30.04,91.33,56.75,26.9,56.21,1456.81,68.25 2007-02-16 00:00:00,31.88,84.83,29.82,91.4,56.51,26.24,56.68,1455.54,68.21 2007-02-20 00:00:00,31.96,85.9,30.02,91.73,56.47,26.33,56.67,1459.68,67.83 2007-02-21 00:00:00,32.22,89.2,29.85,91.49,56.07,26.8,57.03,1457.63,67.74 2007-02-22 00:00:00,31.85,89.51,29.66,90.95,55.88,26.84,56.72,1456.38,68.02 2007-02-23 00:00:00,32.16,89.07,29.41,90.24,55.66,26.39,56.65,1451.19,68.14 2007-02-26 00:00:00,32.41,88.51,29.61,89.48,55.79,26.55,56.57,1449.37,68.31 2007-02-27 00:00:00,30.97,83.93,29.04,86.75,54.7,25.45,55.05,1399.04,65.07 2007-02-28 00:00:00,30.63,84.61,29.25,85.81,54.6,25.72,55.39,1406.82,64.94 2007-03-01 00:00:00,30.48,87.06,29.33,85.19,54.18,25.65,55.64,1403.17,64.31 2007-03-02 00:00:00,29.97,85.41,29.22,83.93,53.75,25.35,55.2,1387.17,63.42 2007-03-05 00:00:00,29.09,86.32,28.95,84.77,53.64,25.16,55.06,1374.12,63.4 2007-03-06 00:00:00,29.71,88.19,29.09,86.61,53.53,25.41,55.49,1395.41,64.32 2007-03-07 00:00:00,29.69,87.72,28.76,86.74,53.67,25.21,55.3,1391.97,64.9 2007-03-08 00:00:00,29.78,88.0,28.87,85.87,53.55,24.95,55.57,1401.89,65.09 2007-03-09 00:00:00,30.43,87.97,28.76,86.13,53.91,24.92,55.42,1402.84,64.43 2007-03-12 00:00:00,30.63,89.87,28.86,86.89,53.61,25.06,55.67,1406.6,64.2 2007-03-13 00:00:00,30.02,88.4,28.56,85.6,52.72,24.4,54.78,1377.95,63.33 2007-03-14 00:00:00,30.54,90.0,28.75,86.57,52.67,25.02,55.25,1387.17,64.34 2007-03-15 00:00:00,31.06,89.57,28.92,86.28,52.52,24.91,55.51,1392.28,64.04 2007-03-16 00:00:00,30.69,89.59,28.79,86.1,52.5,24.96,55.14,1386.95,63.29 2007-03-19 00:00:00,31.13,91.13,29.05,86.78,52.69,25.41,55.38,1402.06,64.41 2007-03-20 00:00:00,31.23,91.48,29.13,87.25,52.98,25.42,55.88,1410.94,65.23 2007-03-21 00:00:00,31.03,93.87,29.73,88.05,53.12,26.04,56.56,1435.04,66.34 2007-03-22 00:00:00,30.88,93.96,30.0,87.89,52.8,25.82,56.5,1434.54,67.36 2007-03-23 00:00:00,31.34,93.52,30.01,87.74,52.5,25.59,56.48,1436.11,67.96 2007-03-26 00:00:00,31.32,95.85,30.16,87.71,52.27,25.77,56.31,1437.5,68.37 2007-03-27 00:00:00,31.17,95.46,29.99,87.47,52.08,25.31,55.48,1428.61,68.59 2007-03-28 00:00:00,30.78,93.24,29.79,87.03,52.06,25.24,55.43,1417.23,68.45 2007-03-29 00:00:00,30.87,93.75,29.79,87.32,52.35,25.34,56.04,1422.53,69.07 2007-03-30 00:00:00,31.07,92.91,29.63,87.03,52.28,25.45,56.02,1420.86,68.35 2007-04-02 00:00:00,31.09,93.65,29.57,87.91,52.14,25.33,55.87,1424.55,68.99 2007-04-03 00:00:00,31.73,94.5,29.59,88.73,52.61,25.45,55.88,1437.77,69.57 2007-04-04 00:00:00,31.62,94.27,29.42,88.83,53.18,26.03,56.17,1439.37,69.85 2007-04-05 00:00:00,31.71,94.68,29.34,89.12,53.4,26.07,56.12,1443.76,69.95 2007-04-09 00:00:00,31.96,93.65,29.14,89.21,53.47,26.09,55.51,1444.61,69.57 2007-04-10 00:00:00,31.99,94.25,29.23,89.06,53.51,25.93,55.88,1448.39,70.27 2007-04-11 00:00:00,32.16,92.59,29.28,87.86,53.7,25.67,55.71,1438.87,69.55 2007-04-12 00:00:00,32.15,92.19,29.48,88.33,53.72,26.06,56.55,1447.8,70.11 2007-04-13 00:00:00,32.19,90.24,29.64,87.65,54.1,26.13,56.76,1452.85,70.13 2007-04-16 00:00:00,32.03,91.43,29.63,88.8,54.68,26.24,56.9,1468.33,70.82 2007-04-17 00:00:00,31.87,90.35,29.49,89.67,56.0,26.34,57.99,1471.48,71.02 2007-04-18 00:00:00,31.6,90.4,29.43,87.53,55.9,26.12,58.1,1472.5,70.84 2007-04-19 00:00:00,31.47,90.27,29.33,87.06,56.34,26.2,58.19,1470.73,70.17 2007-04-20 00:00:00,31.51,90.97,29.43,87.33,56.5,26.5,58.74,1484.35,72.26 2007-04-23 00:00:00,31.3,93.51,29.16,87.91,56.18,26.28,58.69,1480.93,71.75 2007-04-24 00:00:00,31.12,93.24,29.12,90.94,55.95,26.29,58.53,1480.41,71.2 2007-04-25 00:00:00,32.78,95.35,29.67,93.68,56.12,26.47,59.03,1495.42,72.4 2007-04-26 00:00:00,32.83,98.84,30.03,93.16,55.74,26.57,58.53,1494.25,72.97 2007-04-27 00:00:00,32.99,99.92,30.87,93.41,55.67,27.5,58.42,1494.07,72.8 2007-04-30 00:00:00,32.53,99.8,30.88,94.37,55.72,27.34,58.25,1482.37,71.91 2007-05-01 00:00:00,31.86,99.47,31.09,95.26,56.01,27.76,58.52,1486.3,72.17 2007-05-02 00:00:00,32.13,100.39,31.26,94.38,55.94,27.95,59.07,1495.92,72.31 2007-05-03 00:00:00,32.3,100.4,31.29,94.92,55.8,28.28,59.32,1502.39,73.09 2007-05-04 00:00:00,32.85,100.81,31.13,95.06,55.94,27.91,59.42,1505.62,72.97 2007-05-07 00:00:00,35.58,103.92,31.2,95.25,55.75,28.04,59.47,1509.48,73.22 2007-05-08 00:00:00,36.39,105.06,31.07,95.74,55.27,28.08,59.18,1507.72,73.72 2007-05-09 00:00:00,35.68,106.88,31.22,96.75,55.62,28.11,59.2,1512.58,73.76 2007-05-10 00:00:00,34.66,107.34,30.82,97.03,54.23,27.92,58.48,1491.47,72.23 2007-05-11 00:00:00,35.03,108.74,30.98,98.23,54.03,28.21,58.87,1505.85,73.91 2007-05-14 00:00:00,35.33,109.36,30.67,97.85,54.32,28.28,58.86,1503.15,73.92 2007-05-15 00:00:00,36.19,107.52,30.7,97.17,53.64,28.31,59.44,1501.19,73.81 2007-05-16 00:00:00,35.96,107.34,30.86,98.13,54.7,28.46,60.49,1514.14,74.11 2007-05-17 00:00:00,36.06,109.44,30.61,97.61,54.43,28.38,60.36,1512.75,74.42 2007-05-18 00:00:00,36.6,110.02,30.97,100.1,55.02,28.24,61.23,1522.75,75.75 2007-05-21 00:00:00,35.92,111.98,31.09,99.22,55.11,28.45,60.84,1525.1,76.05 2007-05-22 00:00:00,35.88,113.54,31.29,98.9,55.16,28.12,60.52,1524.12,75.31 2007-05-23 00:00:00,37.19,112.89,31.5,97.86,55.36,28.02,60.54,1522.28,75.51 2007-05-24 00:00:00,37.04,110.69,31.32,96.35,55.44,27.64,60.33,1507.51,74.86 2007-05-25 00:00:00,37.68,113.62,31.47,97.49,55.18,27.92,60.65,1515.73,75.98 2007-05-29 00:00:00,37.19,114.35,31.34,98.17,55.06,28.21,60.35,1518.11,75.17 2007-05-30 00:00:00,37.99,118.77,31.61,99.11,55.21,28.5,60.43,1530.23,76.43 2007-05-31 00:00:00,38.03,121.19,31.49,98.81,55.25,28.12,60.22,1530.62,75.67 2007-06-01 00:00:00,38.19,118.4,31.38,98.75,55.38,28.02,60.55,1536.34,76.63 2007-06-04 00:00:00,37.76,121.33,31.68,98.47,55.54,28.14,60.2,1539.18,76.63 2007-06-05 00:00:00,37.39,122.67,31.34,98.1,55.29,28.02,59.59,1530.95,76.66 2007-06-06 00:00:00,36.71,123.64,31.24,94.92,54.93,27.75,59.43,1517.38,76.08 2007-06-07 00:00:00,35.86,124.07,30.8,94.36,54.14,27.14,58.8,1490.72,74.57 2007-06-08 00:00:00,36.53,124.49,31.27,95.54,54.26,27.53,59.03,1507.67,75.22 2007-06-11 00:00:00,36.2,120.19,31.39,95.68,54.38,27.5,58.53,1509.12,75.57 2007-06-12 00:00:00,36.24,120.38,31.04,94.86,54.0,27.35,58.52,1493.0,74.61 2007-06-13 00:00:00,37.29,117.5,31.54,95.58,54.3,27.84,58.84,1515.67,75.83 2007-06-14 00:00:00,37.91,118.75,31.67,96.26,54.54,27.96,59.28,1522.97,77.13 2007-06-15 00:00:00,38.32,120.5,31.94,97.41,54.82,27.93,59.09,1532.91,78.19 2007-06-18 00:00:00,38.58,125.09,31.9,97.63,54.43,27.95,59.01,1531.05,78.57 2007-06-19 00:00:00,38.3,123.66,32.92,98.72,54.51,27.91,58.31,1533.7,78.1 2007-06-20 00:00:00,37.08,121.55,32.74,98.25,54.18,27.49,58.07,1512.84,75.35 2007-06-21 00:00:00,37.16,123.9,32.74,98.81,54.24,27.69,58.38,1522.19,76.7 2007-06-22 00:00:00,36.85,123.0,32.27,96.81,53.03,27.02,57.48,1502.56,75.08 2007-06-25 00:00:00,36.3,122.34,32.25,97.42,53.37,27.02,57.29,1497.74,74.94 2007-06-26 00:00:00,35.65,119.65,32.09,97.63,53.84,27.04,57.3,1492.89,74.44 2007-06-27 00:00:00,35.9,121.89,32.12,97.72,53.66,27.36,57.76,1506.34,75.95 2007-06-28 00:00:00,36.2,120.56,32.17,98.21,53.71,27.33,57.83,1505.71,76.06 2007-06-29 00:00:00,37.33,122.04,32.31,97.56,53.81,27.0,57.47,1503.35,76.32 2007-07-02 00:00:00,37.85,121.26,32.29,97.33,54.01,27.25,57.87,1519.43,77.17 2007-07-03 00:00:00,38.23,127.17,32.66,98.79,54.1,27.5,58.13,1524.87,77.66 2007-07-05 00:00:00,38.09,132.75,32.53,100.15,54.39,27.47,58.41,1525.4,77.48 2007-07-06 00:00:00,38.38,132.3,32.47,101.06,54.26,27.46,58.69,1530.44,78.66 2007-07-09 00:00:00,39.02,130.33,32.59,101.0,54.77,27.36,58.54,1531.85,79.56 2007-07-10 00:00:00,38.38,132.35,31.98,100.69,54.32,26.87,58.38,1510.12,78.7 2007-07-11 00:00:00,39.08,132.39,32.24,101.13,54.9,27.02,58.59,1518.76,79.42 2007-07-12 00:00:00,41.72,134.07,32.91,101.29,55.33,27.55,59.32,1547.7,81.54 2007-07-13 00:00:00,43.62,137.73,33.34,100.66,55.39,27.32,59.24,1552.5,82.18 2007-07-16 00:00:00,43.08,138.1,33.86,101.64,55.72,27.51,59.37,1549.52,81.61 2007-07-17 00:00:00,42.94,138.91,34.36,102.67,54.79,28.2,58.85,1549.37,81.06 2007-07-18 00:00:00,42.79,138.12,34.14,102.96,54.32,28.33,58.61,1546.17,82.93 2007-07-19 00:00:00,41.1,140.0,34.36,107.39,54.48,28.87,58.02,1553.08,83.97 2007-07-20 00:00:00,39.68,143.75,33.86,106.42,53.96,28.55,57.31,1534.1,83.65 2007-07-23 00:00:00,39.1,143.7,34.45,107.87,54.14,28.57,59.01,1541.57,85.01 2007-07-24 00:00:00,38.0,134.89,33.94,107.68,53.68,28.22,58.72,1511.04,82.65 2007-07-25 00:00:00,37.68,137.26,34.11,109.47,53.73,28.13,60.55,1518.09,84.42 2007-07-26 00:00:00,35.0,146.0,33.36,108.01,53.24,27.47,59.24,1482.66,80.27 2007-07-27 00:00:00,34.46,143.85,32.74,107.17,52.2,26.93,58.19,1458.95,77.87 2007-07-30 00:00:00,35.23,141.43,33.14,106.15,52.46,26.93,58.4,1473.91,78.25 2007-07-31 00:00:00,35.19,131.76,32.71,102.56,52.83,26.56,58.15,1455.27,77.45 2007-08-01 00:00:00,35.11,135.0,32.87,103.85,53.24,26.84,58.87,1465.81,78.1 2007-08-02 00:00:00,35.05,136.49,32.94,104.95,53.3,27.04,59.21,1472.2,77.5 2007-08-03 00:00:00,33.48,131.85,32.12,103.71,52.88,26.53,58.91,1433.06,74.68 2007-08-06 00:00:00,33.0,135.25,33.0,105.57,54.41,27.06,60.72,1467.67,76.01 2007-08-07 00:00:00,33.87,135.03,33.32,105.23,54.21,27.07,61.29,1476.71,77.97 2007-08-08 00:00:00,34.32,134.01,34.15,105.09,54.57,27.48,61.98,1497.49,79.97 2007-08-09 00:00:00,32.79,126.39,32.86,103.0,53.12,26.84,60.71,1453.09,76.37 2007-08-10 00:00:00,32.1,125.0,32.26,104.78,53.4,26.3,60.22,1453.64,77.2 2007-08-13 00:00:00,32.88,127.79,32.21,104.84,53.66,26.23,60.33,1452.92,75.74 2007-08-14 00:00:00,32.26,124.03,31.8,104.23,53.38,25.99,59.52,1426.54,75.94 2007-08-15 00:00:00,31.18,119.9,31.14,103.46,53.53,25.83,59.68,1406.7,74.62 2007-08-16 00:00:00,29.53,117.05,31.39,102.03,53.82,25.57,60.59,1411.27,73.69 2007-08-17 00:00:00,30.8,122.06,32.45,103.16,54.16,25.97,61.49,1445.94,76.86 2007-08-20 00:00:00,31.76,122.22,32.25,101.59,54.0,25.98,60.8,1445.55,77.21 2007-08-21 00:00:00,32.01,127.57,32.36,101.43,53.86,25.81,60.66,1447.12,75.95 2007-08-22 00:00:00,33.51,132.51,33.03,102.32,54.15,25.94,60.97,1464.07,76.35 2007-08-23 00:00:00,33.1,131.07,33.01,103.67,54.24,26.02,60.18,1462.5,76.5 2007-08-24 00:00:00,33.95,135.3,33.26,105.33,54.4,26.49,60.46,1479.37,78.27 2007-08-27 00:00:00,34.22,132.25,32.91,105.52,54.16,26.19,60.35,1466.79,77.75 2007-08-28 00:00:00,32.72,126.82,32.11,104.18,53.85,25.68,59.83,1432.36,75.82 2007-08-29 00:00:00,33.67,134.08,32.67,106.57,54.39,26.28,60.43,1463.76,77.85 2007-08-30 00:00:00,33.45,136.25,32.41,107.32,54.16,26.16,60.14,1457.64,78.01 2007-08-31 00:00:00,33.8,138.48,32.8,108.54,54.32,26.41,60.29,1473.99,78.31 2007-09-04 00:00:00,33.69,144.16,32.95,109.94,54.49,26.49,60.8,1489.42,79.68 2007-09-05 00:00:00,33.75,136.76,32.7,109.65,54.2,26.18,60.54,1472.29,79.67 2007-09-06 00:00:00,33.77,135.01,33.25,109.41,54.21,26.58,61.09,1478.55,79.92 2007-09-07 00:00:00,32.26,131.77,32.7,107.48,54.23,26.15,60.58,1453.55,78.33 2007-09-10 00:00:00,31.51,136.71,33.07,107.72,54.37,26.18,61.0,1451.7,77.52 2007-09-11 00:00:00,31.64,135.49,33.34,109.16,54.55,26.6,62.26,1471.49,79.42 2007-09-12 00:00:00,31.14,136.85,33.67,107.9,54.96,26.6,62.0,1471.56,80.06 2007-09-13 00:00:00,31.85,137.2,34.19,107.85,55.48,26.81,62.27,1483.95,80.95 2007-09-14 00:00:00,32.83,138.81,34.05,107.09,55.56,26.7,61.99,1484.25,81.0 2007-09-17 00:00:00,32.6,138.41,33.91,106.52,55.33,26.41,62.2,1476.65,81.54 2007-09-18 00:00:00,34.13,140.92,35.17,108.49,56.12,26.6,63.16,1519.78,83.82 2007-09-19 00:00:00,34.49,140.77,35.25,108.52,56.7,26.36,63.37,1529.03,84.15 2007-09-20 00:00:00,34.49,140.31,35.04,108.7,56.96,26.13,63.29,1518.75,84.12 2007-09-21 00:00:00,34.61,144.15,35.05,108.63,57.25,26.34,63.66,1525.75,84.32 2007-09-24 00:00:00,34.24,148.28,34.71,108.13,57.32,26.73,63.49,1517.73,83.79 2007-09-25 00:00:00,34.24,153.18,34.92,108.38,57.12,27.18,63.46,1517.21,84.0 2007-09-26 00:00:00,35.6,152.77,35.06,109.11,57.49,27.12,64.36,1525.42,84.38 2007-09-27 00:00:00,36.09,154.5,35.17,109.49,57.62,27.11,64.71,1531.38,84.92 2007-09-28 00:00:00,36.2,153.47,35.17,109.58,57.76,27.08,65.28,1526.75,84.55 2007-10-01 00:00:00,36.22,156.34,35.7,110.72,58.15,27.37,65.95,1547.04,85.82 2007-10-02 00:00:00,35.95,158.45,35.79,110.1,58.07,27.3,65.73,1546.63,84.26 2007-10-03 00:00:00,34.83,157.92,35.3,108.27,58.11,27.07,65.47,1539.59,83.43 2007-10-04 00:00:00,34.85,156.24,35.43,107.61,58.12,27.31,65.83,1542.84,83.05 2007-10-05 00:00:00,35.89,161.45,35.49,108.18,58.24,27.43,65.71,1557.59,83.45 2007-10-08 00:00:00,35.44,167.91,35.28,109.55,58.04,27.43,65.86,1552.58,82.83 2007-10-09 00:00:00,36.75,167.86,35.7,110.04,58.24,27.67,65.24,1565.15,84.65 2007-10-10 00:00:00,35.84,166.79,35.52,110.34,57.88,27.79,65.59,1562.47,85.07 2007-10-11 00:00:00,35.23,162.23,35.34,109.81,57.98,27.5,63.95,1554.41,84.64 2007-10-12 00:00:00,35.28,167.25,34.86,109.58,57.97,27.74,63.96,1561.8,85.39 2007-10-15 00:00:00,35.35,166.98,34.68,109.79,57.72,27.62,63.58,1548.71,86.61 2007-10-16 00:00:00,34.5,169.58,34.64,111.25,57.21,27.87,64.04,1538.53,86.54 2007-10-17 00:00:00,35.13,172.75,34.83,107.7,57.01,28.57,64.26,1541.24,86.6 2007-10-18 00:00:00,35.51,173.5,34.66,106.78,57.06,28.65,64.05,1540.08,86.82 2007-10-19 00:00:00,34.64,170.42,34.02,104.44,56.47,27.74,62.73,1500.63,84.17 2007-10-22 00:00:00,34.91,174.36,34.13,105.45,56.57,28.05,63.42,1506.33,83.04 2007-10-23 00:00:00,35.4,186.16,34.39,106.67,56.75,28.41,63.74,1519.59,83.44 2007-10-24 00:00:00,35.35,185.93,34.18,105.06,56.65,28.73,63.98,1515.88,84.16 2007-10-25 00:00:00,35.52,182.78,34.12,104.93,56.22,29.41,64.14,1514.4,83.65 2007-10-26 00:00:00,36.41,184.7,34.31,105.79,56.53,32.2,64.46,1535.28,84.23 2007-10-29 00:00:00,37.41,185.09,34.46,106.78,57.13,31.78,65.67,1540.98,85.51 2007-10-30 00:00:00,36.43,187.0,34.39,106.15,56.99,32.7,65.8,1531.02,83.25 2007-10-31 00:00:00,36.79,189.95,34.97,108.01,57.3,33.84,65.69,1549.38,84.03 2007-11-01 00:00:00,35.22,187.44,34.27,105.72,56.85,34.07,64.51,1508.44,80.84 2007-11-02 00:00:00,35.83,187.87,34.27,106.59,56.95,34.07,65.03,1509.65,80.32 2007-11-05 00:00:00,35.22,186.18,34.15,105.48,56.7,33.77,64.84,1502.17,80.07 2007-11-06 00:00:00,35.84,191.79,34.14,105.27,56.8,33.47,65.49,1520.27,82.56 2007-11-07 00:00:00,34.76,186.3,33.2,103.69,56.19,32.65,64.46,1475.62,79.96 2007-11-08 00:00:00,35.0,175.47,33.15,99.05,56.79,31.94,65.5,1474.77,82.0 2007-11-09 00:00:00,34.47,165.37,32.61,93.58,57.29,31.01,65.48,1453.7,79.64 2007-11-12 00:00:00,33.33,153.76,32.5,94.7,58.3,30.69,64.67,1439.18,77.52 2007-11-13 00:00:00,34.04,169.96,33.31,98.27,59.18,31.79,65.35,1481.05,79.67 2007-11-14 00:00:00,34.25,166.11,33.14,96.56,58.81,31.3,65.99,1470.58,79.15 2007-11-15 00:00:00,33.76,164.3,32.55,96.71,58.8,31.14,65.57,1451.15,77.48 2007-11-16 00:00:00,33.74,166.39,32.84,97.82,59.56,31.44,66.08,1458.74,78.04 2007-11-19 00:00:00,32.59,163.95,32.42,95.42,59.42,31.32,66.9,1433.27,77.13 2007-11-20 00:00:00,32.88,168.85,32.32,96.54,59.47,31.9,66.69,1439.7,80.53 2007-11-21 00:00:00,32.68,168.46,31.58,95.42,59.03,31.57,66.87,1416.77,79.82 2007-11-23 00:00:00,32.66,171.54,32.01,97.13,59.16,31.46,67.29,1440.7,80.96 2007-11-26 00:00:00,32.41,172.54,31.21,95.19,59.6,30.41,66.56,1407.22,78.57 2007-11-27 00:00:00,32.56,174.81,31.82,96.92,59.92,30.49,67.65,1428.23,79.21 2007-11-28 00:00:00,33.65,180.22,32.68,100.23,60.46,31.08,68.76,1469.02,80.62 2007-11-29 00:00:00,33.97,184.29,32.4,100.35,60.51,30.98,68.2,1469.72,81.24 2007-11-30 00:00:00,33.8,182.22,32.53,98.18,59.93,30.99,68.78,1481.14,81.76 2007-12-03 00:00:00,32.98,178.86,31.38,98.79,59.9,30.36,68.24,1472.42,81.48 2007-12-04 00:00:00,32.76,179.81,30.8,99.54,60.1,30.23,68.3,1462.79,80.81 2007-12-05 00:00:00,33.09,185.5,31.19,100.97,60.34,31.5,68.3,1485.01,82.46 2007-12-06 00:00:00,33.32,189.95,31.66,102.4,60.42,31.87,68.98,1507.34,83.85 2007-12-07 00:00:00,34.3,194.3,31.63,101.62,59.87,31.85,68.95,1504.66,83.91 2007-12-10 00:00:00,35.17,194.21,31.78,102.11,59.97,32.06,69.2,1515.96,84.39 2007-12-11 00:00:00,33.58,188.54,31.46,99.87,59.76,31.45,68.49,1477.65,82.79 2007-12-12 00:00:00,34.27,190.86,31.65,101.25,59.89,31.79,69.93,1486.59,84.29 2007-12-13 00:00:00,33.76,191.83,31.93,100.98,60.04,32.49,70.47,1488.41,85.03 2007-12-14 00:00:00,32.7,190.39,31.36,98.73,59.79,32.57,70.26,1467.95,83.61 2007-12-17 00:00:00,31.5,184.4,30.99,97.58,59.76,31.72,69.28,1445.9,82.43 2007-12-18 00:00:00,31.97,182.98,31.27,99.24,59.9,32.04,68.97,1454.98,83.83 2007-12-19 00:00:00,32.05,183.12,31.07,100.01,59.55,32.09,68.76,1453.0,83.84 2007-12-20 00:00:00,32.89,187.21,31.29,101.6,59.56,32.76,68.5,1460.12,84.48 2007-12-21 00:00:00,33.78,193.91,31.82,103.66,60.18,33.26,69.27,1484.46,85.68 2007-12-24 00:00:00,34.39,198.8,32.16,104.22,60.04,33.74,69.59,1496.45,85.89 2007-12-26 00:00:00,34.76,198.95,32.18,104.14,59.77,33.77,69.2,1497.66,86.94 2007-12-27 00:00:00,34.37,198.57,31.87,102.31,59.56,33.18,68.68,1476.27,85.9 2007-12-28 00:00:00,34.25,199.83,32.0,102.77,59.61,33.32,68.98,1478.49,87.12 2007-12-31 00:00:00,33.97,198.08,31.76,100.91,59.01,32.84,67.97,1468.36,85.91 2008-01-02 00:00:00,33.58,194.84,31.5,97.73,58.31,32.49,67.42,1447.16,85.75 2008-01-03 00:00:00,33.63,194.93,31.53,97.92,58.32,32.62,67.86,1447.16,86.04 2008-01-04 00:00:00,32.4,180.05,30.88,94.4,58.24,31.71,67.65,1411.63,84.44 2008-01-07 00:00:00,30.77,177.64,31.0,93.39,59.15,31.92,69.24,1416.18,83.65 2008-01-08 00:00:00,28.81,171.25,30.33,91.1,59.22,30.85,69.79,1390.19,82.58 2008-01-09 00:00:00,29.04,179.4,30.68,91.77,59.98,31.77,70.51,1409.13,83.96 2008-01-10 00:00:00,29.22,178.02,30.78,93.27,60.08,31.67,71.25,1420.33,84.05 2008-01-11 00:00:00,29.49,172.69,30.14,91.17,60.05,31.28,69.65,1401.02,82.81 2008-01-14 00:00:00,30.57,178.78,30.39,96.08,60.11,31.72,68.88,1416.25,83.29 2008-01-15 00:00:00,28.98,169.04,29.59,95.06,59.94,31.36,67.01,1380.95,81.63 2008-01-16 00:00:00,28.46,159.64,29.61,94.87,60.43,30.65,65.85,1373.2,79.35 2008-01-17 00:00:00,26.75,160.89,28.46,94.37,60.0,30.54,64.56,1333.25,76.95 2008-01-18 00:00:00,27.04,161.36,29.4,96.52,58.64,30.45,63.99,1325.19,78.02 2008-01-22 00:00:00,26.75,155.64,29.18,94.49,57.74,29.48,62.18,1310.5,75.61 2008-01-23 00:00:00,27.13,139.07,29.64,99.04,56.79,29.45,63.13,1338.6,76.52 2008-01-24 00:00:00,28.63,135.6,29.69,99.8,56.18,30.67,62.44,1352.07,78.86 2008-01-25 00:00:00,28.52,130.01,29.13,97.57,55.25,30.38,61.72,1330.61,76.97 2008-01-28 00:00:00,29.24,130.01,29.75,98.0,55.79,30.18,62.93,1353.96,78.07 2008-01-29 00:00:00,30.35,131.54,29.79,99.04,55.71,30.07,61.46,1362.3,78.02 2008-01-30 00:00:00,30.39,132.18,29.94,98.62,55.01,29.7,60.35,1355.81,78.2 2008-01-31 00:00:00,30.75,135.36,30.3,99.99,55.86,30.07,60.94,1378.55,78.59 2008-02-01 00:00:00,31.86,133.75,30.99,101.82,56.05,28.09,61.64,1395.42,78.82 2008-02-04 00:00:00,31.67,131.65,30.31,100.75,56.15,27.85,61.99,1380.82,78.35 2008-02-05 00:00:00,30.36,129.36,29.31,98.03,55.62,26.81,60.85,1336.64,75.3 2008-02-06 00:00:00,30.28,122.0,29.31,97.07,55.78,26.31,59.76,1326.45,74.68 2008-02-07 00:00:00,30.62,121.24,29.33,95.9,55.56,25.94,63.05,1336.91,75.42 2008-02-08 00:00:00,31.54,125.48,29.0,96.77,54.87,26.34,62.51,1331.29,75.25 2008-02-11 00:00:00,31.82,129.45,29.14,98.52,54.74,26.02,63.54,1339.13,76.64 2008-02-12 00:00:00,31.28,124.86,29.45,99.82,55.71,26.14,64.44,1348.86,77.71 2008-02-13 00:00:00,33.17,129.4,29.97,101.59,56.09,26.71,64.14,1367.21,78.73 2008-02-14 00:00:00,33.03,127.46,29.47,99.45,55.55,26.29,64.09,1348.86,78.79 2008-02-15 00:00:00,33.37,124.63,29.45,99.48,55.64,26.21,64.23,1349.99,78.62 2008-02-19 00:00:00,33.82,122.18,29.37,98.39,56.32,26.08,63.7,1348.78,80.13 2008-02-20 00:00:00,34.4,123.82,29.44,101.06,55.94,26.13,63.69,1360.03,81.14 2008-02-21 00:00:00,33.91,121.54,29.13,100.2,55.71,26.02,63.65,1342.53,80.05 2008-02-22 00:00:00,34.14,119.46,29.01,101.27,56.26,25.63,63.92,1353.11,80.28 2008-02-25 00:00:00,36.29,119.74,29.58,103.15,56.86,25.78,64.11,1371.8,82.09 2008-02-26 00:00:00,35.96,119.15,29.35,107.18,56.74,26.28,63.87,1381.29,82.79 2008-02-27 00:00:00,36.45,122.96,29.42,109.13,56.14,26.17,63.76,1380.02,82.33 2008-02-28 00:00:00,36.54,129.91,29.27,107.99,55.84,25.86,63.63,1367.68,82.32 2008-02-29 00:00:00,34.69,125.02,28.66,106.69,55.18,25.19,62.29,1330.63,80.13 2008-03-03 00:00:00,35.8,121.73,28.88,107.04,55.42,24.99,62.84,1331.34,80.82 2008-03-04 00:00:00,35.5,124.62,28.98,108.43,55.78,25.55,62.72,1326.75,79.84 2008-03-05 00:00:00,36.16,124.49,29.11,108.13,56.22,26.04,63.27,1333.7,80.3 2008-03-06 00:00:00,35.84,120.93,28.41,105.44,55.77,25.53,63.13,1304.34,77.83 2008-03-07 00:00:00,34.19,122.25,27.87,106.77,54.77,25.81,62.65,1293.37,75.97 2008-03-10 00:00:00,33.29,119.69,27.41,106.83,54.61,25.97,62.14,1273.37,75.94 2008-03-11 00:00:00,35.27,127.35,28.88,109.16,55.6,27.11,62.98,1320.65,79.83 2008-03-12 00:00:00,35.3,126.03,29.36,109.7,55.7,26.51,62.63,1308.77,79.18 2008-03-13 00:00:00,35.94,127.94,29.62,108.61,55.93,26.5,62.34,1315.48,80.17 2008-03-14 00:00:00,35.86,126.61,29.24,107.98,55.79,25.89,61.63,1288.14,79.12 2008-03-17 00:00:00,34.66,126.73,29.68,108.28,57.03,26.2,62.26,1276.6,79.01 2008-03-18 00:00:00,36.06,132.82,31.25,110.96,58.16,27.24,63.04,1330.74,81.48 2008-03-19 00:00:00,33.27,129.67,30.77,109.58,57.78,26.5,63.18,1298.42,77.76 2008-03-20 00:00:00,32.4,133.27,32.42,110.88,58.22,27.02,64.09,1329.51,78.28 2008-03-24 00:00:00,32.73,139.53,32.34,111.57,57.78,27.01,64.33,1349.88,79.16 2008-03-25 00:00:00,33.39,140.98,32.23,110.54,57.48,26.98,64.41,1352.99,78.47 2008-03-26 00:00:00,33.66,145.06,32.11,109.55,57.62,26.45,64.07,1341.13,79.44 2008-03-27 00:00:00,33.05,140.25,31.85,108.25,57.54,25.97,64.09,1325.76,79.39 2008-03-28 00:00:00,33.73,143.01,31.66,107.36,57.15,25.84,64.43,1315.22,78.49 2008-03-31 00:00:00,33.69,143.5,32.0,107.89,57.77,26.28,65.0,1322.7,77.9 2008-04-01 00:00:00,34.13,149.53,33.23,109.16,58.66,27.32,64.94,1370.18,80.14 2008-04-02 00:00:00,34.03,147.49,32.88,107.58,58.16,27.0,64.3,1367.53,81.52 2008-04-03 00:00:00,36.0,151.61,32.72,108.72,58.12,26.85,64.28,1369.31,81.26 2008-04-04 00:00:00,36.43,153.08,32.48,108.47,58.53,27.0,64.4,1370.4,81.73 2008-04-07 00:00:00,34.97,155.89,32.22,108.99,58.9,27.0,64.7,1372.54,81.89 2008-04-08 00:00:00,34.73,152.84,31.95,108.95,59.06,26.62,64.17,1365.54,82.53 2008-04-09 00:00:00,34.41,151.44,31.51,109.42,59.03,26.75,63.89,1354.49,82.61 2008-04-10 00:00:00,33.73,154.55,31.78,111.3,59.07,26.95,64.55,1360.55,82.47 2008-04-11 00:00:00,32.84,147.14,27.71,108.7,58.77,26.19,64.28,1332.83,81.62 2008-04-14 00:00:00,31.7,147.78,27.45,109.9,58.54,25.98,63.88,1328.32,82.61 2008-04-15 00:00:00,32.55,148.38,27.65,109.79,58.46,26.16,64.12,1334.43,83.62 2008-04-16 00:00:00,33.6,153.7,27.87,112.89,58.51,26.81,64.02,1364.71,85.55 2008-04-17 00:00:00,33.23,154.49,27.69,115.33,58.56,27.06,63.71,1365.56,86.0 2008-04-18 00:00:00,33.87,161.04,28.27,116.57,59.23,27.78,63.56,1390.33,86.57 2008-04-21 00:00:00,33.86,168.16,28.07,116.52,59.06,28.17,62.93,1388.17,86.81 2008-04-22 00:00:00,33.35,160.2,27.96,115.88,59.65,28.01,62.21,1375.94,86.93 2008-04-23 00:00:00,33.0,162.89,27.98,115.82,59.9,29.12,62.29,1379.93,86.77 2008-04-24 00:00:00,32.56,168.94,28.37,116.37,59.99,29.45,61.22,1388.82,85.28 2008-04-25 00:00:00,33.37,169.73,28.82,115.33,59.94,27.62,60.88,1397.84,85.15 2008-04-28 00:00:00,33.39,172.24,28.68,114.03,59.95,26.84,61.36,1396.37,85.14 2008-04-29 00:00:00,32.37,175.05,28.38,115.12,59.83,26.52,61.4,1390.94,84.54 2008-04-30 00:00:00,32.65,173.95,28.28,113.1,59.74,26.41,61.7,1385.59,85.71 2008-05-01 00:00:00,32.59,180.0,28.64,115.83,60.38,27.22,61.67,1409.34,82.61 2008-05-02 00:00:00,33.9,180.94,28.83,115.43,60.79,27.08,62.21,1413.9,82.53 2008-05-05 00:00:00,34.63,184.73,28.69,114.35,60.46,26.93,61.73,1407.49,82.44 2008-05-06 00:00:00,35.67,186.66,28.53,115.09,60.18,27.5,61.73,1418.26,82.95 2008-05-07 00:00:00,35.76,182.59,28.16,116.8,59.58,27.05,61.23,1392.57,81.8 2008-05-08 00:00:00,37.22,185.06,28.18,117.53,59.57,27.1,60.81,1397.68,82.82 2008-05-09 00:00:00,36.65,183.45,27.9,116.73,59.26,27.21,60.78,1388.28,82.17 2008-05-12 00:00:00,39.06,188.16,28.02,117.84,59.41,27.77,60.64,1403.58,82.51 2008-05-13 00:00:00,39.54,189.96,27.96,119.1,59.14,27.68,60.55,1403.04,82.96 2008-05-14 00:00:00,39.43,186.26,28.11,119.98,59.49,27.82,60.41,1408.66,83.17 2008-05-15 00:00:00,40.12,189.73,27.99,120.87,59.38,28.3,61.28,1423.57,84.46 2008-05-16 00:00:00,40.51,187.62,27.78,120.26,59.38,27.87,61.1,1425.35,85.73 2008-05-19 00:00:00,41.86,183.6,28.02,119.01,59.33,27.38,61.25,1426.63,87.29 2008-05-20 00:00:00,40.58,185.9,27.43,117.78,58.91,26.73,60.73,1413.4,87.48 2008-05-21 00:00:00,39.15,178.19,26.8,116.31,58.53,26.25,60.56,1390.71,86.65 2008-05-22 00:00:00,38.3,177.05,26.81,117.33,58.66,26.46,61.56,1394.35,85.58 2008-05-23 00:00:00,37.79,181.17,26.31,116.86,58.22,26.07,61.45,1375.93,83.91 2008-05-27 00:00:00,37.91,186.43,26.29,119.79,58.42,26.43,62.13,1385.35,83.07 2008-05-28 00:00:00,39.02,187.01,26.42,121.88,58.18,26.19,61.16,1390.84,83.66 2008-05-29 00:00:00,37.87,186.69,26.49,122.04,59.56,26.31,61.97,1398.26,82.66 2008-05-30 00:00:00,38.1,188.75,26.56,121.78,59.85,26.32,61.49,1400.38,82.11 2008-06-02 00:00:00,38.14,186.1,26.3,119.83,59.64,25.84,60.82,1385.67,81.23 2008-06-03 00:00:00,37.17,185.37,26.34,120.28,59.87,25.38,60.37,1377.65,79.29 2008-06-04 00:00:00,36.52,185.19,26.33,120.01,59.68,25.59,60.41,1377.2,79.33 2008-06-05 00:00:00,37.63,189.43,26.86,120.87,60.05,26.3,60.97,1404.05,82.62 2008-06-06 00:00:00,36.82,185.64,25.96,117.55,58.97,25.55,59.36,1360.68,80.29 2008-06-09 00:00:00,39.59,181.61,25.99,118.42,58.86,25.75,59.23,1361.76,82.4 2008-06-10 00:00:00,40.1,185.64,26.23,118.49,58.85,25.92,61.23,1358.44,81.31 2008-06-11 00:00:00,36.91,180.81,25.79,115.96,58.47,25.2,61.15,1335.49,81.97 2008-06-12 00:00:00,35.43,173.26,25.12,116.53,58.91,26.25,61.57,1339.87,80.54 2008-06-13 00:00:00,37.04,172.37,25.21,118.69,59.43,27.02,61.19,1360.03,81.74 2008-06-16 00:00:00,37.27,176.84,25.05,119.22,59.04,26.89,59.84,1360.14,81.4 2008-06-17 00:00:00,37.03,181.43,24.95,117.7,58.82,26.77,59.68,1350.93,81.98 2008-06-18 00:00:00,36.71,178.75,24.39,116.82,57.79,26.45,58.95,1337.81,81.25 2008-06-19 00:00:00,36.72,180.9,24.4,117.63,57.95,26.89,59.7,1342.83,79.36 2008-06-20 00:00:00,35.05,175.27,23.94,115.48,57.45,26.24,58.97,1317.93,78.55 2008-06-23 00:00:00,35.4,173.16,23.96,116.16,57.65,25.99,58.56,1318.0,81.13 2008-06-24 00:00:00,34.63,173.25,24.12,116.16,58.04,25.77,58.01,1314.29,80.41 2008-06-25 00:00:00,34.68,177.39,24.47,117.21,58.54,26.35,59.36,1321.97,81.04 2008-06-26 00:00:00,33.14,168.26,23.2,113.97,57.63,25.79,58.68,1283.15,79.94 2008-06-27 00:00:00,33.21,170.09,22.96,112.95,57.01,25.68,57.92,1278.38,80.07 2008-06-30 00:00:00,33.44,167.44,23.33,111.52,57.7,25.57,57.62,1280.0,81.53 2008-07-01 00:00:00,32.33,174.68,23.71,112.22,58.01,24.97,58.35,1284.91,81.73 2008-07-02 00:00:00,30.14,168.18,23.18,112.06,57.97,24.05,59.58,1261.52,80.86 2008-07-03 00:00:00,30.77,170.12,23.53,112.47,58.4,24.15,60.5,1262.9,81.66 2008-07-07 00:00:00,31.35,175.16,23.69,114.32,58.51,24.19,60.36,1252.31,80.44 2008-07-08 00:00:00,30.35,179.55,24.53,116.56,59.38,24.02,59.65,1273.7,79.5 2008-07-09 00:00:00,29.61,174.25,23.77,113.28,59.35,23.45,59.21,1244.69,77.99 2008-07-10 00:00:00,32.48,176.63,24.17,115.9,60.03,23.65,59.43,1253.39,79.61 2008-07-11 00:00:00,32.52,172.58,24.18,114.9,59.42,23.47,58.58,1239.49,79.08 2008-07-14 00:00:00,32.8,173.88,23.76,114.35,59.55,23.37,58.81,1228.3,79.02 2008-07-15 00:00:00,32.4,169.64,23.3,115.92,60.71,24.3,59.41,1214.91,76.03 2008-07-16 00:00:00,32.65,172.81,24.2,118.49,61.15,25.33,59.88,1245.36,74.76 2008-07-17 00:00:00,31.67,171.81,24.48,119.04,60.83,25.58,59.37,1260.32,74.31 2008-07-18 00:00:00,31.74,165.15,24.48,122.21,60.82,24.03,59.26,1260.68,75.43 2008-07-21 00:00:00,31.88,166.29,24.21,121.05,60.18,23.83,58.39,1260.0,76.76 2008-07-22 00:00:00,31.81,162.02,24.92,122.31,60.97,23.98,59.97,1277.0,76.65 2008-07-23 00:00:00,30.73,166.26,25.64,121.86,61.22,24.56,61.36,1282.19,74.92 2008-07-24 00:00:00,29.36,159.03,25.1,122.31,61.57,23.64,61.07,1252.54,74.75 2008-07-25 00:00:00,29.86,162.12,25.1,120.93,61.9,24.31,60.9,1257.76,75.58 2008-07-28 00:00:00,30.66,154.4,24.21,118.79,61.41,23.7,60.44,1234.37,74.64 2008-07-29 00:00:00,31.32,157.08,24.83,120.11,61.41,24.27,60.69,1263.2,74.84 2008-07-30 00:00:00,32.71,159.88,25.33,121.24,61.05,24.38,60.62,1284.26,78.06 2008-07-31 00:00:00,31.68,158.95,24.73,120.41,61.4,23.9,60.31,1267.38,74.4 2008-08-01 00:00:00,30.17,156.66,24.66,119.15,61.07,23.64,60.37,1260.31,73.75 2008-08-04 00:00:00,29.14,153.23,24.63,120.02,61.86,23.49,61.31,1249.01,70.86 2008-08-05 00:00:00,29.88,160.64,25.57,121.25,63.18,24.36,62.08,1284.88,72.48 2008-08-06 00:00:00,30.36,164.19,25.35,122.0,63.73,25.11,62.1,1289.19,72.46 2008-08-07 00:00:00,30.01,163.57,24.98,121.89,63.36,25.46,61.57,1266.07,71.64 2008-08-08 00:00:00,29.98,169.55,25.91,121.67,64.16,26.14,62.83,1296.32,72.82 2008-08-11 00:00:00,29.47,173.56,26.19,119.58,64.26,25.93,62.76,1305.32,72.67 2008-08-12 00:00:00,29.22,176.73,26.0,118.28,64.3,26.13,63.08,1289.59,71.48 2008-08-13 00:00:00,30.44,179.3,25.63,118.82,63.85,25.94,63.19,1285.83,72.68 2008-08-14 00:00:00,30.07,179.32,25.81,119.9,63.84,25.94,63.37,1292.93,72.01 2008-08-15 00:00:00,30.02,175.74,26.05,119.35,63.97,25.85,63.6,1298.2,71.66 2008-08-18 00:00:00,29.36,175.39,25.66,117.68,63.75,25.73,63.25,1278.6,71.16 2008-08-19 00:00:00,29.36,173.53,25.1,115.76,63.81,25.49,63.51,1266.69,72.48 2008-08-20 00:00:00,29.93,175.84,25.05,115.72,63.74,25.46,63.29,1274.54,73.28 2008-08-21 00:00:00,30.33,174.29,25.14,116.17,63.92,25.36,62.87,1277.72,74.71 2008-08-22 00:00:00,30.47,176.79,25.46,118.0,64.46,25.98,63.33,1292.2,74.66 2008-08-25 00:00:00,29.65,172.55,24.76,116.05,63.9,25.81,62.56,1266.84,73.19 2008-08-26 00:00:00,29.83,173.64,24.72,115.71,63.82,25.45,62.25,1271.51,74.34 2008-08-27 00:00:00,30.28,174.67,24.67,116.54,64.27,25.72,62.7,1281.66,74.82 2008-08-28 00:00:00,30.58,173.74,25.21,117.67,64.45,26.07,62.69,1300.68,75.48 2008-08-29 00:00:00,30.32,169.53,24.57,114.98,63.57,25.46,62.05,1282.83,74.39 2008-09-02 00:00:00,28.75,166.19,24.94,111.84,64.74,25.29,62.93,1277.58,71.89 2008-09-03 00:00:00,28.13,166.96,24.98,111.78,64.55,25.1,63.08,1274.98,72.54 2008-09-04 00:00:00,26.95,161.22,24.22,108.62,63.59,24.59,62.35,1236.83,70.8 2008-09-05 00:00:00,26.71,160.18,24.38,107.99,63.79,23.93,62.83,1242.31,70.31 2008-09-08 00:00:00,25.99,157.92,25.43,110.79,65.19,24.37,64.12,1267.79,71.38 2008-09-09 00:00:00,25.31,151.68,24.59,108.66,64.39,24.35,64.73,1224.51,68.12 2008-09-10 00:00:00,25.66,151.61,24.56,111.49,64.29,24.67,65.48,1232.04,69.97 2008-09-11 00:00:00,26.07,152.65,24.62,112.59,64.23,25.51,66.2,1249.05,70.26 2008-09-12 00:00:00,27.06,148.94,23.39,112.37,63.71,25.77,66.69,1251.7,72.06 2008-09-15 00:00:00,25.42,140.36,21.51,108.8,62.83,25.03,65.96,1192.7,68.11 2008-09-16 00:00:00,25.01,139.88,21.91,109.61,63.0,24.25,66.53,1213.6,71.07 2008-09-17 00:00:00,23.76,127.83,20.45,105.29,62.74,22.93,65.35,1156.39,70.0 2008-09-18 00:00:00,24.42,134.09,21.96,108.74,64.02,23.57,66.76,1206.51,72.29 2008-09-19 00:00:00,25.28,140.91,23.59,112.26,63.17,23.48,66.72,1255.08,74.02 2008-09-22 00:00:00,25.29,131.05,23.17,109.77,61.75,23.7,64.8,1207.09,73.34 2008-09-23 00:00:00,24.15,126.84,22.11,108.96,61.51,23.74,64.5,1188.22,72.24 2008-09-24 00:00:00,24.18,128.71,21.79,110.0,61.55,24.0,63.9,1185.87,72.55 2008-09-25 00:00:00,23.52,131.93,22.75,113.45,62.6,24.83,65.0,1209.18,75.01 2008-09-26 00:00:00,22.22,128.24,22.37,112.8,62.64,25.57,65.37,1213.27,74.99 2008-09-29 00:00:00,20.18,105.26,20.47,108.11,60.38,23.34,63.5,1106.42,68.86 2008-09-30 00:00:00,21.31,113.66,22.59,110.47,62.53,24.9,64.97,1166.36,72.21 2008-10-01 00:00:00,20.07,109.12,21.71,104.02,61.19,24.71,65.31,1161.06,73.06 2008-10-02 00:00:00,18.29,100.1,19.63,98.93,61.19,24.49,64.64,1114.28,72.06 2008-10-03 00:00:00,18.16,97.07,19.11,97.7,59.72,24.56,62.9,1099.23,72.47 2008-10-06 00:00:00,17.09,98.14,18.94,95.04,58.22,23.24,60.75,1056.89,71.89 2008-10-07 00:00:00,15.77,89.16,17.99,90.35,56.4,21.68,59.36,996.23,70.73 2008-10-08 00:00:00,13.88,89.79,18.3,85.53,56.29,21.47,57.99,984.94,71.6 2008-10-09 00:00:00,11.76,88.74,16.84,84.06,51.97,20.81,54.26,909.92,63.23 2008-10-10 00:00:00,10.62,96.8,19.05,82.88,50.41,20.06,52.69,899.22,57.98 2008-10-13 00:00:00,13.04,110.26,18.61,87.1,56.58,23.79,56.31,1003.35,67.95 2008-10-14 00:00:00,12.26,104.08,18.47,88.41,57.77,22.49,49.59,998.01,67.37 2008-10-15 00:00:00,10.69,97.95,17.06,83.39,54.64,21.14,46.72,907.84,57.97 2008-10-16 00:00:00,11.52,101.89,17.62,86.44,57.32,22.57,48.39,946.43,64.58 2008-10-17 00:00:00,11.14,97.4,17.39,85.75,56.55,22.33,49.12,940.55,63.26 2008-10-20 00:00:00,11.71,98.44,17.84,87.38,58.16,23.07,51.74,985.4,69.73 2008-10-21 00:00:00,11.47,91.49,18.03,83.93,57.46,21.8,50.14,955.05,66.48 2008-10-22 00:00:00,9.93,96.87,16.8,78.96,55.44,20.09,48.9,896.78,60.04 2008-10-23 00:00:00,9.43,98.23,16.66,79.67,56.37,20.83,48.75,908.11,65.45 2008-10-24 00:00:00,8.88,96.38,15.8,77.52,54.87,20.49,47.19,876.77,64.19 2008-10-27 00:00:00,8.53,92.09,15.71,75.24,54.29,19.76,46.94,848.92,61.45 2008-10-28 00:00:00,10.17,99.91,17.27,82.44,57.94,21.55,50.9,940.51,69.61 2008-10-29 00:00:00,10.52,104.55,17.01,83.31,55.54,21.46,50.14,930.09,69.41 2008-10-30 00:00:00,10.81,111.04,17.14,85.66,54.67,21.12,52.04,954.09,69.78 2008-10-31 00:00:00,10.85,107.59,17.29,87.81,55.37,20.84,51.97,968.75,68.92 2008-11-03 00:00:00,11.21,106.96,17.1,87.54,55.2,21.11,52.39,966.3,69.08 2008-11-04 00:00:00,11.77,110.99,18.4,88.22,55.86,21.96,53.18,1005.75,72.05 2008-11-05 00:00:00,11.29,103.3,17.66,84.95,54.02,20.6,51.97,952.77,68.52 2008-11-06 00:00:00,9.82,99.1,16.25,80.88,52.28,19.48,50.0,904.88,65.05 2008-11-07 00:00:00,10.71,98.24,16.71,81.94,54.35,20.06,50.47,930.99,69.15 2008-11-10 00:00:00,11.27,95.88,16.35,79.66,54.17,19.87,49.78,919.21,69.22 2008-11-11 00:00:00,10.47,94.77,15.78,78.59,53.75,19.78,50.21,898.95,67.94 2008-11-12 00:00:00,9.73,90.12,14.43,75.74,52.28,18.94,48.41,852.3,64.46 2008-11-13 00:00:00,10.72,96.44,14.94,79.98,56.77,19.83,50.68,911.29,70.52 2008-11-14 00:00:00,10.37,90.24,14.19,76.3,54.2,18.72,48.79,873.29,68.9 2008-11-17 00:00:00,9.25,88.14,14.27,73.59,53.5,18.03,48.29,850.75,68.62 2008-11-18 00:00:00,9.07,89.91,14.23,76.06,54.96,18.43,48.44,859.12,71.38 2008-11-19 00:00:00,7.81,86.29,12.8,72.16,52.46,17.18,47.5,806.58,68.66 2008-11-20 00:00:00,6.55,80.49,11.38,68.14,50.37,16.47,45.85,752.44,64.07 2008-11-21 00:00:00,8.08,82.58,12.43,71.12,53.1,18.49,49.77,800.03,70.89 2008-11-24 00:00:00,8.76,92.95,13.52,75.88,53.8,19.44,50.74,851.81,73.69 2008-11-25 00:00:00,9.28,90.8,13.97,76.6,53.42,18.78,49.23,857.39,73.05 2008-11-26 00:00:00,10.03,95.0,14.34,77.57,53.03,19.25,50.08,887.68,75.64 2008-11-28 00:00:00,10.3,92.67,15.21,77.51,53.31,18.99,51.69,896.24,74.95 2008-12-01 00:00:00,8.91,88.93,13.73,73.04,50.36,17.48,48.9,816.21,69.49 2008-12-02 00:00:00,9.34,92.47,15.6,75.83,51.72,17.99,49.64,848.81,72.58 2008-12-03 00:00:00,8.89,95.9,16.06,76.62,52.17,18.67,49.69,870.74,73.81 2008-12-04 00:00:00,7.71,91.41,15.55,73.55,51.13,17.95,48.08,845.22,71.32 2008-12-05 00:00:00,7.8,94.0,15.82,76.55,53.0,18.67,49.04,876.07,71.63 2008-12-08 00:00:00,9.17,99.72,16.73,80.6,53.49,19.74,49.25,909.7,74.44 2008-12-09 00:00:00,9.14,100.06,15.75,78.54,52.61,19.35,48.03,888.67,73.13 2008-12-10 00:00:00,9.76,98.21,15.95,78.7,52.6,19.36,48.71,899.24,74.88 2008-12-11 00:00:00,9.55,95.0,15.11,76.54,53.01,18.27,48.43,873.59,74.83 2008-12-12 00:00:00,9.64,98.27,15.16,78.08,52.1,18.19,47.8,879.73,75.23 2008-12-15 00:00:00,9.48,94.75,15.02,78.62,52.61,17.89,48.16,868.57,74.77 2008-12-16 00:00:00,9.94,95.43,15.88,82.06,54.24,18.89,49.81,913.18,77.75 2008-12-17 00:00:00,9.9,89.16,15.41,81.53,53.5,18.47,49.92,904.42,75.8 2008-12-18 00:00:00,9.35,89.43,14.14,79.79,53.69,18.13,50.27,885.28,72.01 2008-12-19 00:00:00,9.28,90.0,14.62,79.33,53.55,17.96,49.7,887.88,70.16 2008-12-22 00:00:00,8.83,85.74,14.24,77.88,53.63,18.02,49.39,871.63,70.05 2008-12-23 00:00:00,9.16,86.38,14.56,76.56,53.4,18.11,49.77,863.16,70.23 2008-12-24 00:00:00,8.98,85.04,14.55,76.48,53.3,18.01,50.11,868.15,70.87 2008-12-26 00:00:00,9.36,85.81,14.42,77.25,53.3,17.97,50.13,872.8,72.18 2008-12-29 00:00:00,9.31,86.61,14.14,77.17,52.92,17.81,49.68,869.42,72.96 2008-12-30 00:00:00,10.23,86.29,14.29,79.36,53.85,18.17,50.42,890.64,73.49 2008-12-31 00:00:00,10.77,85.35,14.63,79.94,54.45,18.26,50.32,903.25,74.65 2009-01-02 00:00:00,11.59,90.75,15.42,82.99,55.2,19.1,51.42,931.8,76.35 2009-01-05 00:00:00,11.35,94.58,15.02,82.46,54.65,19.28,51.09,927.45,76.34 2009-01-06 00:00:00,11.6,93.02,15.23,84.75,54.32,19.5,51.18,934.7,75.09 2009-01-07 00:00:00,10.42,91.01,14.55,83.39,53.81,18.33,49.51,906.65,73.18 2009-01-08 00:00:00,10.87,92.7,14.58,82.81,53.71,18.9,48.93,909.73,73.96 2009-01-09 00:00:00,10.34,90.58,14.45,80.45,53.74,18.34,48.3,890.35,72.54 2009-01-12 00:00:00,9.63,88.66,14.3,81.41,53.1,18.29,47.22,870.26,71.58 2009-01-13 00:00:00,9.14,87.71,13.49,81.06,53.55,18.62,47.99,871.79,72.87 2009-01-14 00:00:00,8.64,85.33,12.74,79.02,52.74,17.93,46.95,842.62,70.23 2009-01-15 00:00:00,8.97,83.38,12.44,79.9,52.44,18.07,46.43,843.74,71.69 2009-01-16 00:00:00,9.02,82.33,12.61,80.66,52.28,18.52,47.2,850.12,73.04 2009-01-20 00:00:00,7.99,78.2,11.68,77.87,51.65,17.36,46.33,805.22,71.34 2009-01-21 00:00:00,8.19,82.83,11.77,86.83,51.29,18.21,46.34,840.24,74.12 2009-01-22 00:00:00,7.89,88.36,12.17,85.55,51.76,16.07,46.26,827.5,73.16 2009-01-23 00:00:00,7.97,88.36,10.86,85.0,50.94,16.16,46.51,831.95,72.98 2009-01-26 00:00:00,7.99,89.64,11.22,87.0,51.47,16.56,47.24,836.57,73.5 2009-01-27 00:00:00,8.24,90.73,11.79,87.06,52.37,16.59,47.45,845.71,73.8 2009-01-28 00:00:00,8.37,94.2,12.19,90.06,53.3,16.95,47.81,874.09,74.11 2009-01-29 00:00:00,8.08,93.0,11.49,87.87,53.04,16.52,47.48,845.14,72.01 2009-01-30 00:00:00,7.45,90.13,10.95,87.05,52.5,16.06,46.15,825.88,71.52 2009-02-02 00:00:00,7.36,91.51,10.49,86.37,52.5,16.75,46.06,825.44,71.72 2009-02-03 00:00:00,7.69,92.98,10.27,88.79,53.31,17.38,47.34,838.51,73.05 2009-02-04 00:00:00,7.64,93.55,10.17,88.17,52.75,17.5,47.31,832.23,72.62 2009-02-05 00:00:00,7.88,96.46,9.8,87.77,52.89,17.89,48.1,845.85,74.61 2009-02-06 00:00:00,8.21,99.72,10.02,91.81,53.25,18.47,49.18,868.6,75.51 2009-02-09 00:00:00,8.31,102.51,11.41,92.46,53.24,18.26,47.25,869.89,74.7 2009-02-10 00:00:00,7.48,97.83,10.49,89.07,51.63,17.66,45.51,827.16,71.56 2009-02-11 00:00:00,7.53,96.82,10.78,90.88,52.18,18.05,46.5,833.74,70.1 2009-02-12 00:00:00,7.34,99.27,10.55,90.79,52.59,18.09,47.78,835.19,70.7 2009-02-13 00:00:00,7.31,99.16,10.33,89.62,51.97,17.93,48.3,826.84,70.1 2009-02-17 00:00:00,6.6,94.53,9.76,86.59,50.95,17.11,47.61,789.17,66.99 2009-02-18 00:00:00,6.34,94.37,9.81,87.39,50.81,17.14,47.35,788.42,67.61 2009-02-19 00:00:00,6.21,90.64,9.35,84.93,50.9,16.94,47.96,778.94,67.82 2009-02-20 00:00:00,6.15,91.2,8.72,84.79,50.15,17.03,47.27,770.05,66.95 2009-02-23 00:00:00,5.68,86.95,8.23,80.57,49.23,16.28,46.09,743.33,65.13 2009-02-24 00:00:00,6.25,90.25,8.44,82.51,50.05,16.24,47.48,773.14,67.76 2009-02-25 00:00:00,6.32,91.16,8.38,82.03,49.52,16.04,46.6,764.9,67.72 2009-02-26 00:00:00,6.36,89.19,8.46,84.97,48.12,15.53,45.41,752.83,66.68 2009-02-27 00:00:00,6.09,89.31,7.91,87.89,45.88,15.28,44.23,735.09,63.82 2009-03-02 00:00:00,5.37,87.94,7.07,85.04,43.97,14.93,43.05,700.82,61.01 2009-03-03 00:00:00,5.41,88.37,6.52,83.82,43.72,15.02,44.53,696.33,60.49 2009-03-04 00:00:00,6.1,91.17,6.22,85.46,45.06,15.25,44.12,712.87,61.73 2009-03-05 00:00:00,5.14,88.84,6.19,83.54,43.74,14.44,42.61,682.55,58.48 2009-03-06 00:00:00,5.1,85.3,6.56,81.95,44.02,14.45,43.66,683.38,60.18 2009-03-09 00:00:00,5.27,83.11,6.89,79.72,42.76,14.33,42.46,676.53,60.69 2009-03-10 00:00:00,5.98,88.63,8.25,83.32,43.85,15.59,43.19,719.6,63.34 2009-03-11 00:00:00,5.63,92.68,7.89,84.63,43.96,16.18,43.95,721.36,61.82 2009-03-12 00:00:00,5.85,96.35,8.9,86.33,44.96,16.09,44.76,750.74,63.11 2009-03-13 00:00:00,5.6,95.93,8.94,86.29,46.47,15.75,45.07,756.55,63.16 2009-03-16 00:00:00,5.98,95.42,8.98,87.11,46.55,15.37,45.17,753.89,62.94 2009-03-17 00:00:00,5.46,99.66,9.3,88.73,46.54,15.98,45.65,778.12,64.94 2009-03-18 00:00:00,5.36,101.52,9.59,87.81,46.49,16.04,45.85,794.35,65.01 2009-03-19 00:00:00,6.26,101.62,9.42,88.49,45.94,16.21,45.41,784.04,64.22 2009-03-20 00:00:00,6.39,101.59,8.87,88.35,47.41,16.14,46.36,768.54,62.12 2009-03-23 00:00:00,7.23,107.66,9.7,94.27,48.85,17.34,47.86,822.92,66.29 2009-03-24 00:00:00,7.16,106.5,9.68,93.88,48.36,16.96,47.76,806.12,65.21 2009-03-25 00:00:00,7.55,106.49,9.75,93.54,48.51,16.91,48.64,813.88,65.94 2009-03-26 00:00:00,7.94,109.87,10.13,94.33,48.54,17.81,49.28,832.86,66.95 2009-03-27 00:00:00,7.62,106.85,10.02,89.91,48.48,17.15,48.56,815.94,65.77 2009-03-30 00:00:00,6.54,104.49,9.23,90.27,48.64,16.53,48.01,787.53,64.5 2009-03-31 00:00:00,7.17,105.12,9.4,92.53,48.27,17.38,47.72,797.87,64.01 2009-04-01 00:00:00,7.43,108.69,9.45,93.22,48.67,18.26,48.4,811.08,65.07 2009-04-02 00:00:00,8.0,112.71,9.98,96.28,48.61,18.25,49.0,834.38,66.03 2009-04-03 00:00:00,7.99,115.99,10.17,97.62,47.86,17.73,48.84,842.5,66.2 2009-04-06 00:00:00,7.73,118.45,10.4,96.99,47.9,17.74,48.82,835.48,65.84 2009-04-07 00:00:00,7.61,115.0,9.9,94.31,47.13,17.74,48.43,815.55,64.58 2009-04-08 00:00:00,7.88,116.32,9.89,96.64,47.21,18.15,48.46,825.16,64.81 2009-04-09 00:00:00,8.65,119.57,10.53,97.12,47.18,18.6,48.29,856.56,65.64 2009-04-13 00:00:00,8.94,120.22,11.28,95.45,46.94,18.53,47.73,858.73,63.93 2009-04-14 00:00:00,8.63,118.31,10.7,94.8,47.14,18.3,46.87,841.5,63.63 2009-04-15 00:00:00,8.85,117.64,11.0,94.4,47.51,17.81,48.24,852.06,64.04 2009-04-16 00:00:00,8.94,121.45,11.41,96.86,47.9,18.69,48.16,865.3,63.36 2009-04-17 00:00:00,9.05,123.42,11.52,96.71,48.68,18.16,48.32,869.6,62.74 2009-04-20 00:00:00,8.17,120.5,10.55,95.91,48.15,17.6,46.22,832.39,61.36 2009-04-21 00:00:00,8.49,121.76,10.88,97.71,48.14,17.94,45.74,850.08,62.25 2009-04-22 00:00:00,8.45,121.51,10.97,97.93,46.97,17.76,44.47,843.55,60.86 2009-04-23 00:00:00,8.7,125.4,11.04,96.86,47.17,17.9,44.39,851.92,61.76 2009-04-24 00:00:00,8.93,123.9,11.26,95.58,46.73,19.78,44.97,866.23,62.57 2009-04-27 00:00:00,8.59,124.73,11.24,95.45,46.67,19.3,45.52,857.51,62.15 2009-04-28 00:00:00,8.33,123.9,11.16,97.35,46.48,18.85,46.38,855.16,63.05 2009-04-29 00:00:00,8.6,125.14,11.36,99.36,46.83,19.15,46.76,873.64,64.32 2009-04-30 00:00:00,8.87,125.83,11.76,98.56,48.05,19.16,46.12,872.81,62.66 2009-05-01 00:00:00,9.47,127.24,11.8,99.9,48.26,19.14,46.15,877.52,63.92 2009-05-04 00:00:00,10.13,132.07,12.18,101.41,49.33,19.1,45.51,907.24,64.1 2009-05-05 00:00:00,9.9,132.71,12.18,101.09,49.88,18.72,46.1,903.8,63.58 2009-05-06 00:00:00,10.29,132.5,12.71,100.43,49.75,18.72,46.09,919.53,64.46 2009-05-07 00:00:00,9.66,129.06,12.98,98.48,50.37,18.27,45.87,907.39,64.79 2009-05-08 00:00:00,9.81,129.19,13.51,97.43,50.45,18.37,46.11,929.23,66.54 2009-05-11 00:00:00,9.4,129.57,13.19,98.78,49.65,18.27,45.96,909.24,65.49 2009-05-12 00:00:00,9.27,124.42,12.72,99.78,50.47,18.81,45.67,908.35,66.96 2009-05-13 00:00:00,8.46,119.49,12.0,98.17,50.61,18.68,46.03,883.92,65.97 2009-05-14 00:00:00,8.57,122.95,12.12,97.01,50.49,18.97,47.15,893.07,65.96 2009-05-15 00:00:00,8.85,122.42,11.95,97.31,50.85,19.12,46.64,882.88,65.34 2009-05-18 00:00:00,9.3,126.65,12.52,100.39,51.43,19.48,47.43,909.71,66.66 2009-05-19 00:00:00,9.49,127.45,12.74,101.29,51.29,19.33,47.84,908.13,66.68 2009-05-20 00:00:00,9.3,125.87,12.8,99.89,51.27,19.4,48.26,903.47,65.81 2009-05-21 00:00:00,8.92,124.18,12.31,98.71,50.91,18.87,47.73,888.33,64.66 2009-05-22 00:00:00,8.69,122.5,12.18,97.81,50.7,18.8,47.8,887.0,65.08 2009-05-26 00:00:00,9.09,130.78,12.45,100.82,51.16,19.36,47.53,910.33,66.0 2009-05-27 00:00:00,8.87,133.05,12.08,98.81,50.2,19.16,46.36,893.06,64.58 2009-05-28 00:00:00,8.91,135.07,12.26,100.5,50.48,19.47,47.29,906.83,65.46 2009-05-29 00:00:00,9.04,135.81,12.53,102.03,51.07,19.88,48.25,919.14,65.57 2009-06-01 00:00:00,9.64,139.35,12.88,104.03,51.64,20.37,49.25,942.87,67.85 2009-06-02 00:00:00,10.31,139.49,12.83,102.55,52.04,20.37,51.32,944.74,68.94 2009-06-03 00:00:00,9.87,140.95,12.55,102.23,51.99,20.68,50.72,931.76,68.15 2009-06-04 00:00:00,10.48,143.74,12.78,102.07,51.69,20.78,51.23,942.46,69.0 2009-06-05 00:00:00,10.73,144.67,12.59,102.95,51.78,21.07,51.29,940.09,68.99 2009-06-08 00:00:00,10.56,143.85,12.61,103.19,51.5,20.99,50.6,939.14,69.18 2009-06-09 00:00:00,10.93,142.72,12.61,103.81,51.57,21.02,49.98,942.43,69.13 2009-06-10 00:00:00,11.26,140.25,12.46,104.01,51.53,21.46,49.87,939.15,69.81 2009-06-11 00:00:00,11.98,139.95,12.51,105.02,51.89,21.73,49.5,944.89,70.01 2009-06-12 00:00:00,11.76,136.97,12.56,103.88,51.9,22.21,50.14,946.21,69.76 2009-06-15 00:00:00,10.99,136.09,12.22,103.31,50.69,22.29,49.42,923.72,68.84 2009-06-16 00:00:00,10.69,136.35,11.88,103.03,50.57,22.32,48.91,911.97,67.72 2009-06-17 00:00:00,10.28,135.58,11.39,102.72,51.1,22.54,49.5,910.71,67.53 2009-06-18 00:00:00,10.57,135.88,11.22,102.07,51.65,22.37,50.92,918.37,67.54 2009-06-19 00:00:00,10.78,139.48,11.34,101.65,51.93,22.91,50.38,921.23,67.18 2009-06-22 00:00:00,9.82,137.37,10.8,100.34,51.37,22.16,49.99,893.04,65.09 2009-06-23 00:00:00,9.8,134.01,10.87,100.26,50.93,22.22,49.54,895.1,65.19 2009-06-24 00:00:00,10.01,136.22,10.97,99.98,51.34,22.34,49.58,900.94,64.72 2009-06-25 00:00:00,10.51,139.86,11.12,101.82,52.09,22.64,50.45,920.26,66.07 2009-06-26 00:00:00,10.55,142.44,11.01,101.45,52.4,22.23,51.12,918.9,65.29 2009-06-29 00:00:00,10.24,141.97,11.02,101.59,52.73,22.71,51.25,927.23,66.73 2009-06-30 00:00:00,10.13,142.43,10.98,100.24,52.58,22.63,51.36,919.32,66.1 2009-07-01 00:00:00,10.15,142.83,11.04,100.64,52.83,22.88,52.82,923.33,66.71 2009-07-02 00:00:00,9.67,140.02,10.74,97.66,51.82,22.24,52.66,896.42,64.76 2009-07-06 00:00:00,9.08,138.61,10.76,97.58,52.42,22.08,53.39,898.72,64.39 2009-07-07 00:00:00,9.23,135.4,10.32,96.18,52.06,21.45,52.33,881.03,62.93 2009-07-08 00:00:00,9.27,137.22,10.04,96.65,52.84,21.47,51.26,879.56,62.65 2009-07-09 00:00:00,9.05,136.36,10.18,97.99,52.48,21.36,51.1,882.68,62.37 2009-07-10 00:00:00,9.16,138.52,10.1,96.79,52.7,21.31,51.13,879.13,61.57 2009-07-13 00:00:00,9.47,142.34,10.74,99.47,53.44,22.11,52.02,901.05,62.12 2009-07-14 00:00:00,9.4,142.27,10.91,99.12,53.91,22.0,52.42,905.84,62.61 2009-07-15 00:00:00,9.94,146.88,11.47,102.93,54.58,22.96,53.53,932.68,64.71 2009-07-16 00:00:00,10.24,147.52,11.62,106.21,54.85,23.26,53.51,940.74,64.73 2009-07-17 00:00:00,10.02,151.75,10.92,110.8,54.83,23.12,52.95,940.38,64.78 2009-07-20 00:00:00,10.39,152.91,10.94,111.78,54.68,23.35,52.41,951.13,65.18 2009-07-21 00:00:00,9.94,151.51,10.75,112.36,55.07,23.63,52.71,954.58,66.63 2009-07-22 00:00:00,10.0,156.74,10.9,110.94,54.8,23.61,52.23,954.07,66.17 2009-07-23 00:00:00,10.59,157.82,11.2,112.38,55.75,24.33,52.8,976.29,67.71 2009-07-24 00:00:00,10.8,159.99,11.28,112.93,56.94,22.32,52.72,979.26,68.35 2009-07-27 00:00:00,11.08,160.1,11.55,112.92,56.72,22.0,52.65,982.18,68.78 2009-07-28 00:00:00,11.04,160.0,11.73,112.59,56.4,22.34,52.3,979.62,67.97 2009-07-29 00:00:00,10.79,160.03,11.49,112.57,56.62,22.65,52.64,975.15,67.54 2009-07-30 00:00:00,11.24,162.79,12.29,113.14,57.2,22.66,52.89,986.75,66.86 2009-07-31 00:00:00,11.53,163.39,12.56,113.21,56.37,22.39,53.03,987.48,66.55 2009-08-03 00:00:00,12.35,166.43,12.86,115.12,56.56,22.68,52.52,1002.63,66.8 2009-08-04 00:00:00,12.59,165.55,12.95,114.81,56.53,22.63,55.19,1005.65,66.75 2009-08-05 00:00:00,13.05,165.11,13.11,113.73,55.96,22.66,54.57,1002.72,66.21 2009-08-06 00:00:00,12.58,163.91,13.41,113.21,55.48,22.33,54.04,997.08,65.93 2009-08-07 00:00:00,12.78,165.51,13.78,115.09,55.45,22.43,53.96,1010.48,65.68 2009-08-10 00:00:00,12.47,164.72,13.66,114.48,56.21,22.29,53.65,1007.1,65.41 2009-08-11 00:00:00,12.49,162.83,13.11,113.6,55.75,22.02,53.18,994.35,64.81 2009-08-12 00:00:00,12.74,165.31,13.24,115.05,56.09,22.4,52.97,1005.81,65.74 2009-08-13 00:00:00,13.47,168.42,13.22,115.33,55.84,22.48,52.79,1012.73,65.4 2009-08-14 00:00:00,13.04,166.78,13.05,114.36,55.62,22.55,52.86,1004.09,64.88 2009-08-17 00:00:00,12.2,159.59,12.52,112.71,55.38,22.13,52.5,979.73,63.31 2009-08-18 00:00:00,12.7,164.0,12.74,113.45,55.36,22.57,52.56,989.67,63.25 2009-08-19 00:00:00,12.26,164.6,12.68,114.36,55.89,22.64,52.75,996.46,64.69 2009-08-20 00:00:00,12.22,166.33,12.94,114.72,56.43,22.66,53.12,1007.37,65.25 2009-08-21 00:00:00,12.34,169.22,13.32,115.64,56.96,23.37,53.73,1026.13,66.51 2009-08-24 00:00:00,12.21,169.06,13.31,115.08,57.19,23.59,53.69,1025.57,67.82 2009-08-25 00:00:00,12.14,169.4,13.4,114.61,57.06,23.59,53.54,1028.0,67.23 2009-08-26 00:00:00,12.05,167.41,13.22,115.22,56.58,23.5,54.09,1028.12,67.89 2009-08-27 00:00:00,12.19,169.45,13.3,115.19,56.45,23.63,53.98,1030.98,67.41 2009-08-28 00:00:00,12.28,170.05,13.2,114.02,56.27,23.62,53.04,1028.93,66.7 2009-08-31 00:00:00,11.84,168.21,13.03,113.85,56.41,23.59,52.96,1020.62,65.78 2009-09-01 00:00:00,11.39,165.3,12.5,112.54,55.94,22.97,52.57,998.04,65.08 2009-09-02 00:00:00,11.35,165.18,12.37,111.96,55.77,22.84,53.08,994.75,64.86 2009-09-03 00:00:00,11.8,166.55,12.61,112.2,55.71,23.08,53.36,1003.24,64.93 2009-09-04 00:00:00,11.97,170.31,13.0,113.29,56.29,23.57,54.21,1016.4,65.81 2009-09-08 00:00:00,12.38,172.93,13.59,113.0,56.53,23.76,54.9,1025.39,67.21 2009-09-09 00:00:00,12.59,171.14,13.94,112.61,56.85,23.72,54.68,1033.37,67.06 2009-09-10 00:00:00,12.62,172.56,13.87,113.49,56.61,23.93,54.51,1044.14,67.21 2009-09-11 00:00:00,12.77,172.16,13.75,113.85,56.39,23.8,55.4,1042.73,66.57 2009-09-14 00:00:00,12.72,173.72,14.39,114.65,56.31,23.93,55.3,1049.34,66.59 2009-09-15 00:00:00,13.75,175.16,15.0,115.11,56.14,24.12,54.91,1052.63,66.1 2009-09-16 00:00:00,14.22,181.87,15.93,117.49,56.17,24.12,54.96,1068.76,66.91 2009-09-17 00:00:00,13.81,184.55,15.71,117.55,56.71,24.22,55.39,1065.49,66.44 2009-09-18 00:00:00,13.82,185.02,15.56,117.77,56.72,24.18,56.39,1068.3,66.58 2009-09-21 00:00:00,13.7,184.02,15.8,117.25,56.62,24.22,55.6,1064.66,66.18 2009-09-22 00:00:00,14.01,184.48,16.04,117.29,57.0,24.67,55.19,1071.66,66.43 2009-09-23 00:00:00,13.9,185.5,16.03,116.53,56.71,24.61,55.08,1060.87,65.64 2009-09-24 00:00:00,13.28,183.82,15.63,116.64,56.67,24.83,55.15,1050.78,65.57 2009-09-25 00:00:00,12.85,182.37,15.43,116.78,56.57,24.46,55.28,1044.38,65.35 2009-09-28 00:00:00,13.2,186.15,15.8,115.09,57.18,24.72,55.61,1062.98,66.2 2009-09-29 00:00:00,13.08,185.38,15.75,114.59,56.86,24.65,55.12,1060.61,65.7 2009-09-30 00:00:00,12.89,185.35,15.48,115.36,56.83,24.62,55.26,1057.08,65.27 2009-10-01 00:00:00,12.7,180.86,15.06,113.71,55.82,23.82,55.07,1029.85,63.99 2009-10-02 00:00:00,12.6,184.9,14.48,114.79,55.74,23.89,57.37,1025.21,63.33 2009-10-05 00:00:00,13.19,186.02,14.92,115.49,55.83,23.59,57.32,1040.46,64.29 2009-10-06 00:00:00,13.65,190.01,15.16,117.04,56.27,24.04,57.34,1054.72,65.31 2009-10-07 00:00:00,13.95,190.25,15.24,118.42,56.66,24.03,57.63,1057.58,65.32 2009-10-08 00:00:00,14.1,189.27,15.29,117.94,56.87,24.57,56.89,1065.48,65.68 2009-10-09 00:00:00,13.99,190.47,15.25,121.45,57.62,24.46,57.08,1071.49,65.89 2009-10-12 00:00:00,14.0,190.81,15.4,122.52,58.36,24.62,57.39,1076.19,66.71 2009-10-13 00:00:00,13.87,190.02,15.45,122.51,56.94,24.71,57.09,1073.19,66.84 2009-10-14 00:00:00,14.07,191.29,15.88,123.79,56.51,24.85,58.05,1092.02,68.34 2009-10-15 00:00:00,14.11,190.56,15.83,123.43,56.87,25.57,59.05,1096.56,69.38 2009-10-16 00:00:00,13.8,188.05,15.16,117.32,56.43,25.37,58.68,1087.68,69.56 2009-10-19 00:00:00,13.83,189.86,14.93,118.69,57.08,25.23,58.45,1097.91,70.03 2009-10-20 00:00:00,13.55,198.76,14.69,118.45,56.55,25.24,58.01,1091.06,69.46 2009-10-21 00:00:00,13.58,204.92,14.64,116.57,56.29,25.44,58.26,1081.4,69.74 2009-10-22 00:00:00,13.8,205.2,14.46,118.33,56.87,25.45,57.94,1092.91,70.81 2009-10-23 00:00:00,13.49,203.94,14.33,116.08,56.5,26.82,57.49,1079.6,69.98 2009-10-26 00:00:00,13.05,202.48,14.15,115.84,56.08,27.45,56.97,1066.95,69.66 2009-10-27 00:00:00,12.59,197.37,14.08,116.36,56.02,27.37,57.47,1063.41,71.26 2009-10-28 00:00:00,11.72,192.4,13.6,117.18,55.6,26.82,57.46,1042.63,70.24 2009-10-29 00:00:00,12.78,196.35,14.02,118.5,55.87,27.01,57.83,1066.11,70.35 2009-10-30 00:00:00,12.21,188.5,13.44,116.32,55.11,26.54,57.04,1036.19,68.18 2009-11-02 00:00:00,12.26,189.31,13.64,116.28,55.52,26.69,57.09,1042.88,68.63 2009-11-03 00:00:00,12.44,188.75,13.5,116.85,55.0,26.35,56.58,1045.41,68.24 2009-11-04 00:00:00,12.32,190.81,13.38,116.98,55.55,26.86,56.88,1046.5,67.82 2009-11-05 00:00:00,12.7,194.03,13.6,118.72,55.98,27.25,57.68,1066.63,68.97 2009-11-06 00:00:00,12.7,194.34,14.45,119.64,56.28,27.3,58.18,1069.3,69.04 2009-11-09 00:00:00,13.14,201.46,14.94,122.07,56.7,27.75,58.67,1093.08,69.7 2009-11-10 00:00:00,13.27,202.98,14.88,122.95,57.14,27.77,58.48,1093.01,69.47 2009-11-11 00:00:00,13.23,203.25,14.92,123.22,56.81,27.87,58.97,1098.51,69.76 2009-11-12 00:00:00,13.0,201.99,14.85,122.32,57.07,28.1,57.72,1087.24,68.79 2009-11-13 00:00:00,12.98,204.45,14.76,123.06,57.33,28.36,58.35,1093.48,69.34 2009-11-16 00:00:00,13.41,206.63,15.09,124.21,58.04,28.28,58.81,1109.3,71.21 2009-11-17 00:00:00,13.55,207.0,15.1,124.62,58.02,28.84,58.97,1110.32,71.79 2009-11-18 00:00:00,13.55,205.96,15.17,124.15,58.16,28.95,58.69,1109.8,72.02 2009-11-19 00:00:00,13.02,200.51,14.86,123.56,58.26,28.63,58.29,1094.9,71.42 2009-11-20 00:00:00,12.93,199.92,14.7,123.0,58.61,28.48,58.48,1091.38,71.17 2009-11-23 00:00:00,12.86,205.88,15.1,124.2,58.97,28.79,58.87,1106.24,72.43 2009-11-24 00:00:00,12.73,204.44,15.2,123.94,59.43,28.76,58.88,1105.65,72.69 2009-11-25 00:00:00,12.81,204.19,15.25,123.31,59.54,28.64,59.53,1110.63,73.17 2009-11-27 00:00:00,12.47,200.59,15.03,121.78,59.16,28.09,58.69,1091.49,71.63 2009-11-30 00:00:00,12.33,199.91,15.1,122.41,59.11,28.28,58.61,1095.63,71.83 2009-12-01 00:00:00,12.61,196.97,15.25,123.95,59.74,28.85,60.17,1108.86,72.75 2009-12-02 00:00:00,13.44,196.23,15.15,123.24,60.09,28.63,60.39,1109.24,72.52 2009-12-03 00:00:00,13.07,196.48,15.09,123.57,60.35,28.68,59.54,1099.92,71.75 2009-12-04 00:00:00,12.8,193.32,15.27,123.28,60.54,28.82,60.58,1105.98,71.04 2009-12-07 00:00:00,12.85,188.95,15.16,123.07,60.55,28.64,60.94,1103.25,70.58 2009-12-08 00:00:00,12.68,189.87,14.82,122.84,60.44,28.43,60.23,1091.94,69.8 2009-12-09 00:00:00,12.88,197.8,14.76,124.38,60.56,28.56,58.63,1095.95,69.64 2009-12-10 00:00:00,13.3,196.43,14.72,125.3,60.93,28.72,58.67,1102.35,69.27 2009-12-11 00:00:00,14.39,194.67,15.01,125.63,61.0,28.7,58.13,1106.41,69.68 2009-12-14 00:00:00,14.6,196.98,15.04,125.87,61.1,28.95,57.85,1114.11,66.68 2009-12-15 00:00:00,14.46,194.17,14.85,124.48,60.9,28.86,57.86,1107.93,66.18 2009-12-16 00:00:00,14.68,195.03,14.79,124.69,60.95,28.94,57.57,1109.18,65.47 2009-12-17 00:00:00,14.28,191.86,14.89,123.42,60.64,28.46,56.96,1096.08,65.27 2009-12-18 00:00:00,14.36,195.43,14.7,123.92,60.55,29.19,56.43,1102.47,65.26 2009-12-21 00:00:00,15.49,198.23,14.68,124.63,60.51,29.34,57.38,1114.05,65.55 2009-12-22 00:00:00,15.55,200.36,14.59,125.87,60.7,29.63,57.52,1118.02,65.61 2009-12-23 00:00:00,15.76,202.1,14.62,125.94,60.74,29.73,57.57,1120.59,65.31 2009-12-24 00:00:00,16.1,209.04,14.65,126.49,60.86,29.8,57.84,1126.48,65.69 2009-12-28 00:00:00,15.86,211.61,14.56,128.18,61.09,29.97,58.02,1127.78,66.1 2009-12-29 00:00:00,15.79,209.1,14.65,127.73,61.09,30.18,57.97,1126.2,65.87 2009-12-30 00:00:00,16.06,211.64,14.57,128.43,61.06,29.77,58.17,1126.42,65.8 2009-12-31 00:00:00,15.88,210.73,14.36,126.81,60.59,29.3,57.68,1115.1,65.24 2010-01-04 00:00:00,16.4,214.01,14.66,128.32,60.84,29.76,58.1,1132.99,66.16 2010-01-05 00:00:00,15.89,214.38,14.74,126.77,60.14,29.77,58.8,1136.52,66.42 2010-01-06 00:00:00,16.72,210.97,14.66,125.94,60.63,29.58,58.21,1137.14,66.99 2010-01-07 00:00:00,16.36,210.58,15.42,125.51,60.19,29.28,57.84,1141.69,66.78 2010-01-08 00:00:00,16.77,211.98,15.75,126.77,60.4,29.48,57.65,1144.98,66.52 2010-01-11 00:00:00,17.19,210.11,15.9,125.44,60.41,29.1,57.59,1146.98,67.26 2010-01-12 00:00:00,15.29,207.72,15.91,126.44,60.73,28.91,58.39,1136.22,66.93 2010-01-13 00:00:00,15.74,210.65,15.97,126.17,61.11,29.18,58.87,1145.68,66.66 2010-01-14 00:00:00,15.57,209.43,15.85,128.18,61.24,29.77,59.58,1148.46,66.67 2010-01-15 00:00:00,15.4,205.93,15.6,127.67,60.73,29.67,59.1,1136.03,66.12 2010-01-19 00:00:00,15.39,215.04,15.7,129.95,61.47,29.9,59.13,1150.23,66.28 2010-01-20 00:00:00,15.0,211.73,15.66,126.18,61.28,29.41,58.77,1138.04,65.09 2010-01-21 00:00:00,14.04,208.07,15.2,124.97,60.17,28.85,57.82,1116.48,63.82 2010-01-22 00:00:00,13.2,197.75,15.29,121.58,59.45,27.84,57.29,1091.76,63.24 2010-01-25 00:00:00,13.19,203.07,15.53,122.18,59.47,28.19,57.14,1096.78,63.0 2010-01-26 00:00:00,13.34,205.94,15.52,121.82,59.06,28.36,57.16,1092.17,63.07 2010-01-27 00:00:00,13.1,207.88,15.47,122.39,59.68,28.53,57.2,1097.5,62.71 2010-01-28 00:00:00,12.73,199.29,15.33,119.89,60.01,28.04,56.68,1084.53,62.15 2010-01-29 00:00:00,12.54,192.06,15.26,118.57,59.13,27.09,56.56,1073.87,61.65 2010-02-01 00:00:00,13.16,194.73,15.42,120.78,59.35,27.31,57.59,1089.19,63.32 2010-02-02 00:00:00,13.47,195.86,15.99,121.61,60.19,27.36,58.02,1103.32,64.07 2010-02-03 00:00:00,13.32,199.23,15.83,121.74,59.85,27.53,58.15,1097.28,63.72 2010-02-04 00:00:00,12.74,192.05,15.22,119.16,58.92,26.77,56.58,1063.11,61.92 2010-02-05 00:00:00,13.01,195.46,14.98,119.66,58.92,26.94,56.46,1066.19,62.0 2010-02-08 00:00:00,12.89,194.12,14.8,118.6,58.67,26.65,55.94,1056.74,61.97 2010-02-09 00:00:00,13.11,196.19,14.8,119.9,59.04,26.93,56.97,1070.52,62.79 2010-02-10 00:00:00,12.99,195.12,14.89,119.51,59.01,26.91,57.28,1068.13,62.45 2010-02-11 00:00:00,13.41,198.67,14.96,120.4,59.18,27.04,58.05,1078.47,62.83 2010-02-12 00:00:00,13.11,200.38,14.76,120.67,59.0,26.85,57.8,1075.51,62.4 2010-02-16 00:00:00,13.56,203.4,15.22,121.86,59.84,27.38,58.17,1094.87,63.83 2010-02-17 00:00:00,13.43,202.55,15.33,122.93,60.18,27.62,58.93,1099.51,63.33 2010-02-18 00:00:00,13.44,202.93,15.41,124.37,60.7,27.98,59.32,1106.75,63.52 2010-02-19 00:00:00,13.36,201.67,15.34,123.77,60.48,27.79,59.45,1109.17,63.43 2010-02-22 00:00:00,13.37,200.42,15.42,123.44,60.18,27.75,59.21,1108.01,62.98 2010-02-23 00:00:00,13.01,197.06,15.14,123.06,60.01,27.36,58.61,1094.6,62.54 2010-02-24 00:00:00,12.89,200.66,15.3,124.16,60.14,27.65,58.9,1105.24,63.13 2010-02-25 00:00:00,13.14,202.0,15.2,123.65,59.98,27.63,59.11,1102.94,62.73 2010-02-26 00:00:00,13.13,204.62,15.34,123.74,59.71,27.69,59.27,1104.49,62.6 2010-03-01 00:00:00,13.14,208.99,15.18,125.11,60.08,28.03,60.18,1115.71,62.98 2010-03-02 00:00:00,13.07,208.85,15.18,123.99,60.13,27.49,60.53,1118.31,63.07 2010-03-03 00:00:00,13.17,209.33,15.31,123.47,60.09,27.49,61.13,1118.79,63.01 2010-03-04 00:00:00,13.26,210.71,15.38,123.31,60.25,27.65,61.26,1122.97,62.98 2010-03-05 00:00:00,13.66,218.95,15.61,123.83,60.7,27.62,61.5,1138.7,64.01 2010-03-08 00:00:00,13.6,219.08,15.54,123.01,60.85,27.65,61.29,1138.5,64.02 2010-03-09 00:00:00,13.5,223.02,15.75,122.18,60.92,27.82,61.49,1140.45,64.31 2010-03-10 00:00:00,13.4,224.84,15.76,122.24,60.94,27.98,61.56,1145.61,64.73 2010-03-11 00:00:00,13.47,225.5,15.74,124.17,60.87,28.19,62.08,1150.24,64.73 2010-03-12 00:00:00,13.43,226.6,16.27,124.5,60.83,28.27,62.2,1149.99,64.33 2010-03-15 00:00:00,13.34,223.84,16.51,124.39,61.2,28.29,63.2,1150.51,63.85 2010-03-16 00:00:00,13.62,224.45,17.25,125.21,61.16,28.37,63.13,1159.46,64.11 2010-03-17 00:00:00,14.28,224.12,17.23,124.33,61.28,28.62,63.61,1166.21,64.87 2010-03-18 00:00:00,14.12,224.65,17.37,124.93,61.67,28.6,63.56,1165.83,64.9 2010-03-19 00:00:00,14.08,222.25,17.25,124.28,61.71,28.58,63.6,1159.9,64.56 2010-03-22 00:00:00,14.16,224.75,17.25,124.54,61.71,28.59,63.36,1165.81,64.49 2010-03-23 00:00:00,14.31,228.36,17.5,125.89,61.95,28.86,63.88,1174.17,64.47 2010-03-24 00:00:00,14.14,229.37,17.62,125.08,61.37,28.64,63.31,1167.72,64.04 2010-03-25 00:00:00,13.93,226.65,17.47,125.77,61.2,28.99,63.59,1165.73,63.85 2010-03-26 00:00:00,14.09,230.9,17.51,125.79,61.02,28.65,63.63,1166.59,64.08 2010-03-29 00:00:00,14.26,232.39,17.57,125.13,61.44,28.58,63.59,1173.22,64.81 2010-03-30 00:00:00,14.22,235.85,17.47,125.31,61.52,28.76,63.8,1173.27,64.57 2010-03-31 00:00:00,14.06,235.0,17.38,124.8,61.8,28.29,63.21,1169.43,64.5 2010-04-01 00:00:00,14.51,235.97,17.5,124.8,62.34,28.17,63.71,1178.1,65.11 2010-04-05 00:00:00,14.54,238.49,17.69,125.87,61.99,28.27,63.04,1187.44,65.67 2010-04-06 00:00:00,14.84,239.54,17.76,125.46,61.9,28.32,63.43,1189.44,65.39 2010-04-07 00:00:00,14.55,240.6,17.67,125.03,61.82,28.35,63.05,1182.45,64.85 2010-04-08 00:00:00,14.68,239.95,17.72,124.18,61.54,28.9,63.03,1186.44,65.35 2010-04-09 00:00:00,14.21,241.79,17.68,125.3,61.74,29.31,63.41,1194.37,66.22 2010-04-12 00:00:00,14.38,242.29,17.87,124.91,61.71,29.29,63.37,1196.48,66.17 2010-04-13 00:00:00,14.16,242.43,18.09,125.56,62.25,29.41,63.43,1197.3,66.12 2010-04-14 00:00:00,14.25,245.69,18.48,127.72,62.07,29.77,63.34,1210.65,66.07 2010-04-15 00:00:00,14.13,248.92,18.62,127.37,62.09,29.82,63.32,1211.67,65.74 2010-04-16 00:00:00,13.73,247.4,18.11,127.12,61.63,29.63,63.2,1192.13,65.42 2010-04-19 00:00:00,13.54,247.07,18.09,128.68,62.59,29.98,63.18,1197.52,65.71 2010-04-20 00:00:00,13.57,244.59,18.14,126.2,62.55,30.29,62.97,1207.17,66.42 2010-04-21 00:00:00,13.53,259.22,18.17,125.52,61.98,30.26,63.04,1205.94,66.37 2010-04-22 00:00:00,13.67,266.47,18.09,125.66,61.4,30.32,61.88,1208.67,66.03 2010-04-23 00:00:00,13.93,270.83,18.21,126.5,61.65,29.91,61.83,1217.28,66.68 2010-04-26 00:00:00,13.87,269.5,18.43,127.22,61.38,30.05,62.13,1212.05,66.73 2010-04-27 00:00:00,13.27,262.04,17.86,125.36,60.93,29.8,61.37,1183.71,65.75 2010-04-28 00:00:00,13.4,261.6,18.09,126.6,61.25,29.86,61.87,1191.36,66.63 2010-04-29 00:00:00,13.54,268.64,18.61,126.95,61.62,29.94,62.3,1206.78,66.12 2010-04-30 00:00:00,13.26,261.09,18.01,125.53,60.95,29.5,62.32,1186.69,65.26 2010-05-03 00:00:00,12.98,266.35,18.39,126.12,61.92,29.81,62.77,1202.26,65.33 2010-05-04 00:00:00,12.42,258.68,17.74,124.68,61.33,29.1,62.52,1173.6,64.01 2010-05-05 00:00:00,12.33,255.99,17.28,124.03,61.74,28.83,62.3,1165.87,63.72 2010-05-06 00:00:00,11.82,246.25,16.53,121.21,60.09,27.99,61.82,1128.15,61.53 2010-05-07 00:00:00,11.87,235.86,16.12,119.43,60.01,27.25,61.7,1110.88,61.35 2010-05-10 00:00:00,12.46,253.99,17.23,123.51,61.37,27.95,63.45,1159.73,62.82 2010-05-11 00:00:00,12.0,256.52,17.19,124.11,61.3,27.9,63.59,1155.79,62.5 2010-05-12 00:00:00,12.33,262.09,17.61,129.78,61.52,28.44,63.96,1171.67,62.93 2010-05-13 00:00:00,12.67,258.36,17.24,128.6,61.3,28.24,63.52,1157.44,62.77 2010-05-14 00:00:00,12.23,253.82,16.84,128.32,60.63,27.94,63.13,1135.68,61.66 2010-05-17 00:00:00,11.97,254.22,16.77,127.58,60.55,27.95,63.78,1136.94,61.34 2010-05-18 00:00:00,11.7,252.36,16.45,127.11,59.69,27.75,63.57,1120.8,60.88 2010-05-19 00:00:00,11.66,248.34,16.48,126.04,58.98,27.4,63.1,1115.05,60.55 2010-05-20 00:00:00,10.95,237.76,15.53,121.09,57.39,26.3,61.02,1071.59,58.49 2010-05-21 00:00:00,11.23,242.32,15.68,122.67,57.71,26.04,60.75,1087.69,59.03 2010-05-24 00:00:00,10.97,246.76,15.29,121.73,57.41,25.49,60.5,1073.65,58.36 2010-05-25 00:00:00,11.18,245.22,15.23,121.79,57.2,25.3,60.09,1074.03,57.89 2010-05-26 00:00:00,11.13,244.11,15.29,120.53,56.55,24.27,58.5,1067.95,57.51 2010-05-27 00:00:00,11.7,253.35,15.91,123.62,56.46,25.23,60.1,1103.06,59.59 2010-05-28 00:00:00,11.52,256.88,15.61,122.52,55.76,25.03,60.09,1089.41,58.62 2010-06-01 00:00:00,11.07,260.83,15.26,121.62,56.2,25.12,59.97,1070.71,57.45 2010-06-02 00:00:00,11.36,263.95,15.61,124.62,57.13,25.67,61.1,1098.38,58.92 2010-06-03 00:00:00,11.25,263.12,15.71,125.16,57.17,26.06,61.02,1102.83,59.69 2010-06-04 00:00:00,10.73,255.96,15.0,122.54,55.49,25.02,59.16,1064.88,57.72 2010-06-07 00:00:00,10.4,250.94,14.71,121.41,55.48,24.54,59.44,1050.47,57.5 2010-06-08 00:00:00,10.65,249.33,14.78,121.01,56.09,24.36,60.32,1062.0,59.38 2010-06-09 00:00:00,10.69,243.2,14.63,121.19,55.64,24.05,60.17,1055.69,58.2 2010-06-10 00:00:00,11.13,250.51,14.97,124.88,55.96,24.26,61.47,1086.84,60.01 2010-06-11 00:00:00,11.24,253.51,14.86,125.64,55.92,24.9,61.2,1091.6,59.98 2010-06-14 00:00:00,11.22,254.28,14.7,125.69,55.88,24.74,61.48,1089.63,59.5 2010-06-15 00:00:00,11.47,259.69,15.08,126.95,56.57,25.79,61.85,1115.23,60.61 2010-06-16 00:00:00,11.29,267.25,15.13,127.5,56.66,25.54,61.54,1114.61,60.61 2010-06-17 00:00:00,11.06,271.87,15.29,128.11,56.61,25.59,62.09,1116.04,60.7 2010-06-18 00:00:00,10.99,274.07,15.33,127.3,56.61,25.65,61.7,1117.51,61.18 2010-06-21 00:00:00,11.6,270.17,15.47,127.79,56.56,25.18,61.64,1113.2,61.21 2010-06-22 00:00:00,11.17,273.85,15.17,126.47,56.59,25.0,60.95,1095.31,60.06 2010-06-23 00:00:00,11.31,270.97,14.79,127.26,56.66,24.56,60.4,1092.04,59.24 2010-06-24 00:00:00,10.99,269.0,14.49,125.38,57.01,24.26,60.08,1073.69,58.24 2010-06-25 00:00:00,11.11,266.7,14.33,124.34,56.15,23.8,58.51,1076.76,57.3 2010-06-28 00:00:00,10.91,268.3,14.41,126.16,56.86,23.59,59.66,1074.57,56.69 2010-06-29 00:00:00,10.23,256.17,13.91,122.35,56.66,22.62,58.95,1041.24,55.55 2010-06-30 00:00:00,9.96,251.53,13.86,120.78,56.49,22.33,58.69,1030.71,55.33 2010-07-01 00:00:00,9.95,248.48,13.57,119.89,56.5,22.47,59.23,1027.37,54.89 2010-07-02 00:00:00,9.9,246.94,13.34,119.19,56.51,22.58,59.24,1022.58,54.85 2010-07-06 00:00:00,10.1,248.63,13.42,120.76,56.51,23.11,59.35,1028.06,55.71 2010-07-07 00:00:00,10.44,258.67,14.05,124.22,57.97,23.58,60.59,1060.27,56.65 2010-07-08 00:00:00,10.61,258.09,14.25,125.17,58.71,23.68,61.62,1070.25,57.02 2010-07-09 00:00:00,10.83,259.62,14.37,125.16,57.91,23.55,61.14,1077.96,56.99 2010-07-12 00:00:00,10.76,257.29,14.35,125.85,57.59,24.09,61.37,1078.75,57.15 2010-07-13 00:00:00,10.89,251.8,14.62,127.62,57.87,24.38,61.07,1095.34,57.61 2010-07-14 00:00:00,10.8,252.73,14.61,127.86,57.98,24.68,61.2,1095.17,57.46 2010-07-15 00:00:00,10.73,251.45,14.65,127.86,57.64,24.75,60.81,1096.48,57.47 2010-07-16 00:00:00,10.3,249.9,13.98,125.23,56.85,24.15,60.13,1064.88,56.2 2010-07-19 00:00:00,10.47,245.58,14.05,126.95,56.98,24.48,59.74,1071.25,56.65 2010-07-20 00:00:00,10.74,251.89,14.36,123.78,56.03,24.72,62.32,1083.48,57.16 2010-07-21 00:00:00,10.48,254.24,14.26,122.53,54.64,24.37,61.57,1069.59,56.4 2010-07-22 00:00:00,10.71,259.02,14.62,124.68,54.54,25.07,61.82,1093.67,57.57 2010-07-23 00:00:00,10.93,259.94,15.1,125.57,55.12,25.04,62.06,1102.66,57.9 2010-07-26 00:00:00,11.11,259.28,15.51,125.6,55.23,25.32,62.57,1115.01,58.55 2010-07-27 00:00:00,11.09,264.08,15.55,125.81,55.57,25.38,63.25,1113.84,58.96 2010-07-28 00:00:00,10.92,260.96,15.42,125.62,55.31,25.18,62.78,1106.13,59.06 2010-07-29 00:00:00,10.91,258.11,15.52,125.22,55.31,25.26,62.48,1101.53,58.5 2010-07-30 00:00:00,11.05,257.25,15.49,125.59,55.56,25.04,62.5,1101.6,57.86 2010-08-02 00:00:00,11.59,261.85,15.77,127.9,56.17,25.55,62.84,1125.86,60.06 2010-08-03 00:00:00,11.44,261.93,15.76,127.52,56.77,25.38,63.33,1120.46,60.81 2010-08-04 00:00:00,11.43,262.98,15.84,128.4,57.14,24.97,63.71,1127.24,60.81 2010-08-05 00:00:00,11.49,261.7,15.87,128.94,57.16,24.62,63.14,1125.81,60.8 2010-08-06 00:00:00,11.5,260.09,15.81,127.92,57.35,24.79,63.45,1121.64,60.08 2010-08-09 00:00:00,11.57,261.75,15.74,129.75,57.44,24.85,63.95,1127.79,60.55 2010-08-10 00:00:00,11.26,259.41,15.62,129.59,56.85,24.33,64.06,1121.06,60.05 2010-08-11 00:00:00,10.58,250.19,15.09,127.62,55.96,24.12,63.02,1089.47,58.97 2010-08-12 00:00:00,10.65,251.79,14.89,126.11,55.97,23.76,62.76,1083.61,58.82 2010-08-13 00:00:00,10.56,249.1,14.78,125.69,55.62,23.67,63.12,1079.25,58.5 2010-08-16 00:00:00,10.52,247.64,14.86,125.59,55.49,23.77,63.0,1079.38,58.47 2010-08-17 00:00:00,10.86,251.97,14.97,126.26,56.64,24.1,63.11,1092.54,59.39 2010-08-18 00:00:00,10.84,253.07,15.09,127.18,56.77,24.21,63.09,1094.16,58.74 2010-08-19 00:00:00,10.58,249.88,14.65,126.7,56.17,23.84,62.26,1075.63,57.9 2010-08-20 00:00:00,10.49,249.64,14.44,125.33,56.19,23.64,62.39,1071.69,57.51 2010-08-23 00:00:00,10.29,245.8,14.31,124.31,56.31,23.68,62.41,1067.36,58.1 2010-08-24 00:00:00,9.98,239.93,14.0,122.77,55.49,23.45,62.37,1051.87,57.56 2010-08-25 00:00:00,10.03,242.89,14.0,123.13,55.46,23.51,62.17,1055.33,57.53 2010-08-26 00:00:00,9.93,240.28,13.93,120.69,55.29,23.24,61.75,1047.22,57.11 2010-08-27 00:00:00,10.24,241.62,14.14,122.6,55.61,23.34,61.74,1064.59,58.4 2010-08-30 00:00:00,10.17,242.5,13.95,121.3,55.32,23.06,61.24,1048.92,57.61 2010-08-31 00:00:00,10.14,243.1,13.91,121.03,55.05,22.89,61.8,1049.33,57.72 2010-09-01 00:00:00,10.44,250.33,14.42,123.63,56.28,23.31,62.95,1080.29,59.48 2010-09-02 00:00:00,10.74,252.17,14.56,122.91,56.59,23.35,63.03,1090.1,59.63 2010-09-03 00:00:00,10.79,258.77,14.79,125.41,56.9,23.69,63.61,1104.51,59.88 2010-09-07 00:00:00,10.77,257.81,14.84,123.8,56.68,23.37,63.52,1091.84,59.13 2010-09-08 00:00:00,10.98,262.92,15.09,123.93,56.82,23.34,63.47,1098.87,59.32 2010-09-09 00:00:00,11.14,263.07,15.29,124.21,57.76,23.42,64.12,1104.18,59.62 2010-09-10 00:00:00,11.08,263.41,15.36,125.81,57.91,23.26,64.42,1109.55,59.76 2010-09-13 00:00:00,11.43,267.04,15.62,127.4,58.24,24.49,64.27,1121.9,59.57 2010-09-14 00:00:00,11.4,268.06,15.53,126.65,58.49,24.42,64.01,1121.1,59.58 2010-09-15 00:00:00,11.34,270.22,15.7,127.22,58.95,24.5,64.51,1125.07,59.57 2010-09-16 00:00:00,11.17,276.57,15.71,127.46,59.18,24.71,64.62,1124.66,59.54 2010-09-17 00:00:00,11.08,275.37,15.77,127.97,59.45,24.6,64.14,1125.59,59.35 2010-09-20 00:00:00,11.29,283.23,16.02,129.54,59.95,24.81,64.89,1142.71,60.1 2010-09-21 00:00:00,11.08,283.77,15.99,129.73,59.8,24.53,64.47,1139.78,60.09 2010-09-22 00:00:00,11.61,287.75,15.97,130.31,59.83,24.01,64.67,1134.28,60.01 2010-09-23 00:00:00,11.65,288.92,15.62,129.43,59.68,23.83,63.82,1124.83,59.71 2010-09-24 00:00:00,12.1,292.32,16.13,131.82,60.0,24.17,64.15,1148.67,60.3 2010-09-27 00:00:00,11.98,291.16,15.9,132.35,59.89,24.12,64.39,1142.16,60.26 2010-09-28 00:00:00,12.12,286.86,15.91,132.59,60.28,24.07,64.78,1147.7,60.6 2010-09-29 00:00:00,11.99,287.37,15.84,133.17,60.16,23.9,64.75,1144.73,60.14 2010-09-30 00:00:00,12.01,283.75,15.73,131.85,59.82,23.89,64.45,1141.2,60.34 2010-10-01 00:00:00,12.13,282.52,15.84,133.33,59.62,23.78,65.0,1146.24,61.07 2010-10-04 00:00:00,11.83,278.64,15.59,132.94,59.54,23.32,64.87,1137.03,60.73 2010-10-05 00:00:00,12.04,288.94,15.98,135.31,60.64,23.75,65.73,1160.75,61.77 2010-10-06 00:00:00,12.27,289.19,16.36,135.49,61.03,23.83,66.07,1159.97,62.44 2010-10-07 00:00:00,12.1,289.22,16.51,136.36,61.04,23.93,64.12,1158.06,62.35 2010-10-08 00:00:00,12.79,294.07,16.57,136.48,61.05,23.97,63.78,1165.15,62.87 2010-10-11 00:00:00,12.83,295.36,16.42,137.28,61.12,23.99,63.56,1165.32,63.03 2010-10-12 00:00:00,13.1,298.54,16.64,137.47,61.11,24.22,64.1,1169.77,63.18 2010-10-13 00:00:00,13.27,300.14,16.73,137.98,61.39,24.72,64.41,1178.1,63.51 2010-10-14 00:00:00,13.03,302.31,16.61,139.09,61.54,24.61,64.65,1173.81,63.77 2010-10-15 00:00:00,13.03,314.74,15.78,138.66,61.38,24.91,64.69,1176.19,63.66 2010-10-18 00:00:00,13.04,318.0,15.73,140.4,61.66,25.19,64.51,1184.71,64.72 2010-10-19 00:00:00,12.57,309.49,15.56,135.68,61.11,24.48,63.45,1165.9,63.59 2010-10-20 00:00:00,12.85,310.53,15.54,136.7,61.41,24.69,63.03,1178.17,64.46 2010-10-21 00:00:00,12.68,309.52,15.59,137.45,61.78,24.8,63.23,1180.26,64.76 2010-10-22 00:00:00,12.62,307.47,15.55,137.29,61.61,24.76,63.07,1183.08,64.78 2010-10-25 00:00:00,12.78,308.84,15.55,137.46,61.77,24.57,63.1,1185.62,64.64 2010-10-26 00:00:00,12.77,308.05,15.64,138.27,61.64,25.26,62.85,1185.64,64.97 2010-10-27 00:00:00,12.6,307.83,15.6,139.02,61.38,25.41,62.35,1182.45,64.13 2010-10-28 00:00:00,12.55,305.24,15.57,138.5,61.37,25.64,63.07,1183.78,64.66 2010-10-29 00:00:00,13.04,300.98,15.51,141.15,61.54,26.02,63.35,1183.26,64.93 2010-11-01 00:00:00,12.95,304.18,15.44,140.88,61.49,26.29,63.59,1184.38,65.38 2010-11-02 00:00:00,13.14,309.36,15.43,141.39,61.68,26.72,63.83,1193.57,66.25 2010-11-03 00:00:00,13.07,312.8,15.55,141.71,61.98,26.37,63.25,1197.96,66.37 2010-11-04 00:00:00,13.52,318.27,15.98,144.29,62.53,26.47,63.4,1221.06,67.75 2010-11-05 00:00:00,13.92,317.13,16.2,144.42,62.42,26.19,63.13,1225.85,68.36 2010-11-08 00:00:00,13.88,318.62,16.18,144.6,62.11,26.15,63.16,1223.25,68.67 2010-11-09 00:00:00,13.67,316.08,16.09,144.29,62.09,26.29,63.35,1213.4,69.41 2010-11-10 00:00:00,13.8,318.03,16.02,144.69,61.75,26.28,63.3,1218.71,69.9 2010-11-11 00:00:00,13.73,316.65,15.83,143.59,61.72,26.03,62.96,1213.54,70.58 2010-11-12 00:00:00,13.41,308.03,15.73,141.92,61.48,25.63,62.71,1199.21,69.76 2010-11-15 00:00:00,13.32,307.04,15.68,141.82,61.93,25.56,62.49,1197.75,69.26 2010-11-16 00:00:00,12.96,301.59,15.35,140.44,60.96,25.33,62.13,1178.34,67.74 2010-11-17 00:00:00,12.87,300.5,15.3,140.15,60.89,25.1,62.03,1178.59,67.81 2010-11-18 00:00:00,13.31,308.43,15.53,142.53,61.63,25.36,62.83,1196.69,69.09 2010-11-19 00:00:00,13.31,306.73,15.7,143.21,61.63,25.21,62.77,1199.73,69.32 2010-11-22 00:00:00,13.22,313.36,15.52,143.55,61.43,25.25,62.77,1197.84,68.97 2010-11-23 00:00:00,13.06,308.73,15.26,141.36,60.7,24.65,61.98,1180.73,67.78 2010-11-24 00:00:00,13.24,314.8,15.43,143.96,61.11,24.9,62.41,1198.35,68.67 2010-11-26 00:00:00,13.1,315.0,15.3,142.08,60.67,24.78,61.99,1189.4,68.03 2010-11-29 00:00:00,13.22,316.87,15.46,141.08,60.29,24.84,62.1,1187.76,68.25 2010-11-30 00:00:00,13.06,311.15,15.32,139.67,59.94,24.79,62.7,1180.55,68.35 2010-12-01 00:00:00,13.49,316.4,15.78,142.58,60.79,25.56,64.14,1206.07,70.09 2010-12-02 00:00:00,14.01,318.15,16.15,143.34,60.96,26.39,63.72,1221.53,70.24 2010-12-03 00:00:00,14.15,317.44,16.24,143.54,60.92,26.52,63.69,1224.71,69.96 2010-12-06 00:00:00,14.16,320.15,16.17,143.15,60.57,26.34,63.26,1223.12,70.07 2010-12-07 00:00:00,14.07,318.21,16.49,142.19,60.68,26.37,63.22,1223.75,70.22 2010-12-08 00:00:00,14.06,321.01,16.5,143.14,60.82,26.73,63.17,1228.28,70.6 2010-12-09 00:00:00,14.07,319.76,16.58,142.47,60.44,26.58,63.25,1233.0,70.75 2010-12-10 00:00:00,14.17,320.56,17.15,142.98,60.29,26.83,63.43,1240.4,70.93 2010-12-13 00:00:00,14.28,321.67,17.06,142.45,60.24,26.74,64.05,1240.46,71.11 2010-12-14 00:00:00,14.12,320.29,17.12,143.97,61.13,27.11,64.1,1241.59,70.93 2010-12-15 00:00:00,13.88,320.36,16.93,142.89,60.93,27.33,63.76,1235.23,70.6 2010-12-16 00:00:00,14.38,321.25,17.2,142.72,60.77,27.47,64.26,1242.87,70.97 2010-12-17 00:00:00,14.48,320.61,17.13,143.16,60.9,27.38,64.48,1243.91,70.92 2010-12-20 00:00:00,14.69,322.21,17.13,142.68,60.86,27.29,64.81,1247.08,70.97 2010-12-21 00:00:00,14.81,324.2,17.33,143.89,60.71,27.55,63.92,1254.6,71.46 2010-12-22 00:00:00,15.06,325.16,17.62,144.1,60.4,27.67,64.19,1258.84,71.54 2010-12-23 00:00:00,15.25,323.6,17.6,144.04,60.62,27.78,64.2,1256.77,71.93 2010-12-27 00:00:00,15.14,324.68,17.75,143.5,60.31,27.55,63.94,1257.54,71.74 2010-12-28 00:00:00,15.16,325.47,17.87,143.86,60.43,27.49,63.8,1258.51,72.15 2010-12-29 00:00:00,15.05,325.29,17.83,144.66,60.5,27.45,63.85,1259.78,72.1 2010-12-30 00:00:00,15.12,323.66,17.75,144.81,60.32,27.33,63.65,1257.88,72.09 2010-12-31 00:00:00,15.3,322.56,17.84,144.9,60.23,27.39,63.85,1257.64,71.85 2011-01-03 00:00:00,15.71,329.57,17.84,145.61,61.18,27.46,64.26,1271.87,73.26 2011-01-04 00:00:00,16.43,331.29,18.16,145.77,61.69,27.57,63.93,1270.2,73.6 2011-01-05 00:00:00,16.47,334.0,18.19,145.19,61.65,27.48,65.08,1276.56,73.4 2011-01-06 00:00:00,16.27,333.73,18.11,146.78,61.56,28.29,65.33,1273.85,73.88 2011-01-07 00:00:00,16.33,336.12,17.98,146.05,60.96,28.07,64.89,1271.5,74.28 2011-01-10 00:00:00,16.4,342.45,18.06,145.77,60.53,27.7,64.55,1269.75,73.83 2011-01-11 00:00:00,16.24,341.64,18.18,145.41,60.64,27.59,64.83,1274.48,74.38 2011-01-12 00:00:00,16.15,344.42,18.22,147.21,60.86,28.02,65.22,1285.96,75.25 2011-01-13 00:00:00,15.66,345.68,18.15,146.93,61.26,27.67,65.39,1283.76,75.38 2011-01-14 00:00:00,15.88,348.48,18.36,148.1,60.91,27.78,65.27,1293.24,76.49 2011-01-18 00:00:00,16.18,340.65,18.15,148.74,60.48,28.13,65.06,1295.02,77.35 2011-01-19 00:00:00,15.97,338.84,17.88,153.72,60.92,27.94,64.41,1281.92,76.88 2011-01-20 00:00:00,15.89,332.68,17.98,153.82,61.22,27.82,64.41,1280.26,76.4 2011-01-21 00:00:00,15.7,326.72,19.26,153.53,61.02,27.5,64.38,1283.35,77.61 2011-01-24 00:00:00,16.34,337.45,19.55,157.61,60.59,27.85,64.68,1290.84,77.23 2011-01-25 00:00:00,16.15,341.4,19.49,159.39,59.48,27.92,64.28,1291.18,77.32 2011-01-26 00:00:00,16.51,343.85,19.44,159.0,59.01,28.25,64.37,1296.63,78.28 2011-01-27 00:00:00,16.38,343.21,19.79,159.03,59.09,28.33,64.08,1299.54,78.49 2011-01-28 00:00:00,16.04,336.1,19.71,157.19,58.44,27.24,62.94,1276.34,77.62 2011-01-31 00:00:00,16.48,339.32,19.65,159.95,58.21,27.22,62.85,1286.12,79.28 2011-02-01 00:00:00,17.22,345.03,20.29,161.49,59.04,27.47,63.58,1307.59,82.45 2011-02-02 00:00:00,17.14,344.32,20.21,161.23,59.03,27.42,63.19,1304.03,81.96 2011-02-03 00:00:00,17.14,343.44,20.25,161.46,59.21,27.14,62.73,1307.1,81.99 2011-02-04 00:00:00,17.07,346.5,20.06,161.92,59.25,27.26,62.39,1310.87,81.84 2011-02-07 00:00:00,17.25,351.88,20.36,162.73,59.28,27.68,62.24,1319.05,82.47 2011-02-08 00:00:00,17.33,355.2,20.76,164.59,59.35,27.76,62.72,1324.57,81.97 2011-02-09 00:00:00,17.09,358.16,20.79,163.21,59.29,27.45,62.96,1320.88,81.55 2011-02-10 00:00:00,17.05,354.54,20.75,162.65,59.34,26.99,61.93,1321.87,82.19 2011-02-11 00:00:00,17.3,356.85,20.81,162.41,59.11,26.74,62.42,1329.15,81.81 2011-02-14 00:00:00,17.52,359.18,20.98,161.79,59.11,26.73,61.91,1332.32,83.88 2011-02-15 00:00:00,17.33,359.9,20.94,161.41,59.03,26.62,62.89,1328.01,81.96 2011-02-16 00:00:00,17.52,363.13,20.92,161.97,58.94,26.68,62.51,1336.32,82.67 2011-02-17 00:00:00,17.45,358.3,21.0,162.8,59.2,26.86,63.23,1340.43,82.86 2011-02-18 00:00:00,17.21,350.56,20.92,163.39,59.51,26.72,61.97,1343.01,83.47 2011-02-22 00:00:00,16.48,338.61,20.31,160.53,59.06,26.25,61.72,1315.44,84.4 2011-02-23 00:00:00,16.38,342.62,19.87,158.78,58.81,26.25,61.51,1307.4,86.01 2011-02-24 00:00:00,16.49,342.88,20.22,159.36,58.67,26.43,61.6,1306.1,84.92 2011-02-25 00:00:00,16.62,348.16,20.45,160.86,58.61,26.21,62.16,1319.88,84.3 2011-02-28 00:00:00,16.78,353.21,20.55,160.46,60.37,26.24,61.98,1327.22,84.49 2011-03-01 00:00:00,16.17,349.31,19.89,158.57,59.65,25.83,61.78,1306.33,83.77 2011-03-02 00:00:00,16.12,352.12,19.96,158.76,59.75,25.75,61.99,1308.44,84.05 2011-03-03 00:00:00,16.57,359.56,20.39,162.05,59.99,25.87,62.78,1330.97,84.78 2011-03-04 00:00:00,16.52,360.0,20.01,160.41,60.0,25.62,62.44,1321.15,84.05 2011-03-07 00:00:00,16.19,355.36,20.02,158.53,59.35,25.39,62.51,1310.13,83.69 2011-03-08 00:00:00,16.43,355.76,20.27,160.86,59.66,25.58,62.82,1321.82,83.57 2011-03-09 00:00:00,16.24,352.47,20.27,164.41,59.35,25.56,63.67,1320.02,83.35 2011-03-10 00:00:00,15.74,346.67,19.75,160.6,58.58,25.09,63.45,1295.11,80.39 2011-03-11 00:00:00,15.97,351.99,20.0,161.01,58.65,25.35,63.67,1304.28,81.12 2011-03-14 00:00:00,16.06,353.56,19.57,159.97,58.1,25.36,63.17,1296.39,81.38 2011-03-15 00:00:00,15.98,345.43,19.27,157.63,57.47,25.07,62.05,1281.87,80.4 2011-03-16 00:00:00,15.6,330.01,18.62,151.66,56.66,24.47,61.37,1256.88,78.35 2011-03-17 00:00:00,15.95,334.64,18.88,152.83,57.12,24.46,62.12,1273.72,80.17 2011-03-18 00:00:00,16.05,330.67,18.91,154.52,57.55,24.48,62.28,1279.21,79.87 2011-03-21 00:00:00,16.49,339.3,19.37,156.3,57.81,25.01,63.13,1298.38,81.83 2011-03-22 00:00:00,16.39,341.2,19.15,156.61,57.77,24.98,62.97,1293.77,81.56 2011-03-23 00:00:00,16.88,339.19,19.19,158.13,57.7,25.21,63.23,1297.54,81.6 2011-03-24 00:00:00,17.04,344.97,19.43,158.64,58.01,25.48,63.23,1309.66,81.72 2011-03-25 00:00:00,17.02,351.54,19.4,160.76,57.96,25.29,63.01,1313.8,82.6 2011-03-28 00:00:00,17.17,350.44,19.4,159.96,58.21,25.09,63.36,1310.19,82.45 2011-03-29 00:00:00,17.42,350.96,19.51,161.45,58.19,25.17,63.19,1319.44,82.24 2011-03-30 00:00:00,17.57,348.63,19.76,162.17,58.35,25.28,64.06,1328.26,83.46 2011-03-31 00:00:00,17.59,348.51,19.7,161.64,58.22,25.07,63.43,1325.83,83.11 2011-04-01 00:00:00,17.4,344.56,19.98,162.83,58.46,25.16,64.23,1332.41,83.65 2011-04-04 00:00:00,17.49,341.19,20.17,162.81,59.11,25.22,64.1,1332.87,83.84 2011-04-05 00:00:00,17.98,338.89,19.97,162.55,58.76,25.45,64.59,1332.63,84.38 2011-04-06 00:00:00,18.06,338.04,20.19,162.6,58.62,25.82,64.75,1335.54,84.14 2011-04-07 00:00:00,18.05,338.08,19.99,162.94,58.45,25.87,64.92,1333.51,84.72 2011-04-08 00:00:00,17.85,335.06,19.84,162.61,58.43,25.74,64.73,1328.17,84.9 2011-04-11 00:00:00,17.7,330.8,19.83,162.51,58.82,25.65,65.04,1324.46,84.12 2011-04-12 00:00:00,16.64,332.4,19.66,161.82,58.9,25.31,65.56,1314.16,82.17 2011-04-13 00:00:00,16.49,336.13,19.59,162.51,58.57,25.3,65.44,1314.41,82.15 2011-04-14 00:00:00,16.49,332.42,19.65,163.52,58.98,25.1,65.69,1314.52,82.43 2011-04-15 00:00:00,16.46,327.46,19.69,164.75,59.51,25.05,66.09,1319.68,83.26 2011-04-18 00:00:00,16.07,331.85,19.63,164.48,59.41,24.76,66.13,1305.14,82.09 2011-04-19 00:00:00,16.38,337.86,19.91,163.95,61.6,24.83,65.8,1312.62,82.78 2011-04-20 00:00:00,16.58,342.41,20.04,163.31,63.27,25.43,66.31,1330.36,84.61 2011-04-21 00:00:00,16.9,350.7,19.6,166.8,62.96,25.19,66.39,1337.38,85.31 2011-04-25 00:00:00,16.82,353.01,19.54,166.2,63.0,25.28,66.01,1335.25,85.17 2011-04-26 00:00:00,16.96,350.42,19.75,167.01,63.82,25.86,66.68,1347.24,86.36 2011-04-27 00:00:00,17.11,350.15,20.29,168.88,64.43,26.04,66.9,1355.66,86.71 2011-04-28 00:00:00,17.02,346.75,20.24,169.28,64.25,26.37,68.66,1360.48,86.28 2011-04-29 00:00:00,16.93,350.13,20.09,169.08,64.58,25.59,67.85,1363.61,86.91 2011-05-02 00:00:00,17.15,346.28,20.12,170.64,65.06,25.33,68.26,1361.22,85.91 2011-05-03 00:00:00,17.6,348.2,20.28,171.35,65.11,25.48,68.53,1356.62,84.58 2011-05-04 00:00:00,17.4,349.57,19.91,169.12,64.53,25.73,68.77,1347.32,83.78 2011-05-05 00:00:00,16.94,346.75,19.55,166.98,63.88,25.46,67.79,1335.1,81.62 2011-05-06 00:00:00,17.08,346.66,19.66,168.16,64.14,25.54,68.22,1340.2,81.68 2011-05-09 00:00:00,17.46,347.6,19.72,168.37,64.49,25.5,68.76,1346.29,82.17 2011-05-10 00:00:00,17.45,349.45,19.94,169.64,64.62,25.34,68.97,1357.16,82.33 2011-05-11 00:00:00,16.98,347.23,19.74,168.77,65.41,25.04,69.14,1342.08,80.59 2011-05-12 00:00:00,17.11,346.57,19.79,171.49,66.02,25.0,69.88,1348.65,80.52 2011-05-13 00:00:00,17.06,340.5,19.54,169.18,65.46,24.71,69.49,1337.77,80.34 2011-05-16 00:00:00,16.88,333.3,19.41,168.13,65.22,24.26,69.65,1329.47,79.71 2011-05-17 00:00:00,16.42,336.14,19.25,169.76,65.25,24.37,70.03,1328.98,79.88 2011-05-18 00:00:00,16.65,339.87,19.41,169.7,65.35,24.54,70.19,1340.68,81.2 2011-05-19 00:00:00,16.63,340.53,19.61,169.85,65.24,24.56,70.69,1343.6,81.79 2011-05-20 00:00:00,16.23,335.22,19.28,169.42,64.55,24.34,70.22,1333.27,81.03 2011-05-23 00:00:00,15.95,334.4,19.05,167.53,64.42,24.02,69.96,1317.37,80.14 2011-05-24 00:00:00,16.08,332.19,18.76,167.26,64.64,24.0,69.9,1316.28,80.76 2011-05-25 00:00:00,16.3,336.78,18.88,167.02,65.14,24.04,69.38,1320.47,81.42 2011-05-26 00:00:00,16.34,335.0,19.08,166.46,64.93,24.52,69.35,1325.69,81.85 2011-05-27 00:00:00,16.45,337.41,19.1,166.77,66.18,24.6,69.33,1331.1,82.09 2011-05-31 00:00:00,16.77,347.83,19.29,168.2,66.7,24.85,70.04,1345.2,82.92 2011-06-01 00:00:00,16.06,345.51,18.79,165.84,65.89,24.28,69.73,1314.55,81.49 2011-06-02 00:00:00,16.17,346.1,18.75,165.37,65.89,24.07,68.96,1312.94,80.8 2011-06-03 00:00:00,15.89,343.44,18.49,164.33,65.51,23.76,68.42,1300.16,80.65 2011-06-06 00:00:00,15.58,338.04,18.14,164.04,65.47,23.86,68.34,1286.17,79.76 2011-06-07 00:00:00,15.66,332.04,18.16,162.98,64.92,23.91,68.38,1284.94,79.48 2011-06-08 00:00:00,15.38,332.24,18.18,163.63,65.56,23.79,68.29,1279.56,80.23 2011-06-09 00:00:00,15.47,331.49,18.25,164.13,66.19,23.81,68.96,1289.0,80.65 2011-06-10 00:00:00,15.25,325.9,18.0,162.47,65.51,23.56,68.14,1270.98,79.26 2011-06-13 00:00:00,15.07,326.6,18.07,162.46,66.0,23.89,68.51,1271.83,78.71 2011-06-14 00:00:00,15.38,332.44,18.27,163.41,66.51,24.07,69.01,1287.87,79.85 2011-06-15 00:00:00,14.93,326.75,18.07,161.63,65.58,23.59,67.93,1265.42,78.14 2011-06-16 00:00:00,14.76,325.16,18.26,161.96,65.73,23.85,68.34,1267.64,78.7 2011-06-17 00:00:00,14.69,320.26,18.31,163.73,65.7,24.11,68.17,1271.5,78.5 2011-06-20 00:00:00,14.75,315.32,18.3,164.3,65.92,24.32,68.43,1278.36,79.19 2011-06-21 00:00:00,15.34,325.3,18.63,165.5,65.9,24.6,68.38,1295.52,80.04 2011-06-22 00:00:00,15.26,322.61,18.38,164.96,65.49,24.5,68.23,1287.14,79.3 2011-06-23 00:00:00,15.25,331.23,18.21,165.4,65.09,24.48,67.44,1283.5,77.93 2011-06-24 00:00:00,15.2,326.35,17.8,164.35,64.49,24.15,67.9,1268.45,76.28 2011-06-27 00:00:00,15.25,332.04,18.11,166.89,64.67,25.04,68.5,1280.1,77.41 2011-06-28 00:00:00,15.62,335.26,18.26,169.27,65.33,25.64,69.06,1296.67,79.11 2011-06-29 00:00:00,15.79,334.04,18.38,169.8,65.72,25.46,69.4,1307.41,79.72 2011-06-30 00:00:00,15.83,335.67,18.68,170.81,65.93,25.84,69.87,1320.64,80.85 2011-07-01 00:00:00,16.28,343.26,19.02,173.78,66.71,25.86,69.63,1339.67,81.47 2011-07-05 00:00:00,16.36,349.43,18.86,174.67,67.02,25.87,69.21,1337.88,81.06 2011-07-06 00:00:00,16.21,351.76,18.87,176.94,66.95,26.16,69.61,1339.22,81.03 2011-07-07 00:00:00,16.46,357.2,19.12,175.71,67.32,26.6,69.96,1353.22,81.82 2011-07-08 00:00:00,16.35,359.71,18.81,175.72,66.97,26.75,69.37,1343.8,81.88 2011-07-11 00:00:00,15.88,354.0,18.45,174.23,66.68,26.46,68.75,1319.49,81.36 2011-07-12 00:00:00,15.68,353.75,18.21,173.3,66.44,26.37,68.46,1313.64,81.35 2011-07-13 00:00:00,15.82,358.02,18.33,173.56,67.03,26.46,68.34,1317.72,81.94 2011-07-14 00:00:00,15.43,357.77,18.35,173.47,67.06,26.3,68.05,1308.87,81.7 2011-07-15 00:00:00,15.45,364.92,18.24,174.78,66.85,26.61,67.98,1316.14,82.46 2011-07-18 00:00:00,15.14,373.8,18.12,174.52,66.5,26.42,67.46,1305.44,82.11 2011-07-19 00:00:00,15.41,376.85,18.4,184.41,66.13,27.37,67.99,1326.73,83.08 2011-07-20 00:00:00,15.48,386.9,18.61,182.85,65.66,26.89,67.94,1325.84,82.75 2011-07-21 00:00:00,15.74,387.29,18.98,184.1,65.88,26.93,65.64,1343.8,84.46 2011-07-22 00:00:00,15.8,393.3,18.86,184.38,66.13,27.36,65.24,1345.02,84.66 2011-07-25 00:00:00,15.62,398.5,18.78,182.9,65.66,27.73,63.86,1337.43,84.02 2011-07-26 00:00:00,15.45,403.41,18.38,182.14,65.34,27.9,63.56,1331.94,83.82 2011-07-27 00:00:00,14.9,392.59,17.94,180.56,64.65,27.16,63.35,1304.89,82.76 2011-07-28 00:00:00,14.8,391.82,17.94,181.01,64.51,27.55,63.38,1300.67,80.93 2011-07-29 00:00:00,14.7,390.48,17.74,181.06,64.22,27.23,63.53,1292.28,79.27 2011-08-01 00:00:00,14.72,396.75,17.8,179.97,63.84,27.1,63.35,1286.94,79.08 2011-08-02 00:00:00,14.13,388.91,17.05,177.28,62.87,26.63,62.68,1254.05,77.33 2011-08-03 00:00:00,14.26,392.57,17.3,178.05,62.85,26.75,63.97,1260.34,77.21 2011-08-04 00:00:00,12.94,377.37,16.31,170.74,61.29,25.78,62.84,1200.07,73.36 2011-08-05 00:00:00,12.79,373.62,16.35,172.23,62.16,25.52,64.15,1199.38,74.33 2011-08-08 00:00:00,11.33,353.21,15.28,166.22,60.58,24.33,62.47,1119.46,69.73 2011-08-09 00:00:00,12.24,374.01,15.81,170.61,61.65,25.42,62.59,1172.53,71.17 2011-08-10 00:00:00,11.6,363.69,14.95,162.54,59.67,24.05,59.84,1120.76,68.03 2011-08-11 00:00:00,12.25,373.7,15.53,166.73,62.88,25.03,62.37,1172.64,71.58 2011-08-12 00:00:00,12.26,376.99,15.73,168.2,62.8,24.94,62.68,1178.81,72.0 2011-08-15 00:00:00,12.56,383.41,16.23,172.99,64.02,25.35,63.06,1204.49,74.29 2011-08-16 00:00:00,12.26,380.48,16.0,171.24,63.79,25.35,63.25,1192.76,73.5 2011-08-17 00:00:00,12.26,380.44,16.08,171.48,63.69,25.25,64.1,1193.89,74.16 2011-08-18 00:00:00,11.51,366.05,15.19,163.83,62.6,24.67,62.59,1140.65,70.94 2011-08-19 00:00:00,11.21,356.03,14.95,157.54,62.58,24.05,61.57,1123.53,69.8 2011-08-22 00:00:00,11.23,356.44,14.97,158.98,62.73,23.98,61.43,1123.82,70.18 2011-08-23 00:00:00,11.68,373.6,15.39,164.32,64.4,24.72,62.97,1162.35,73.66 2011-08-24 00:00:00,11.87,376.18,15.57,166.76,64.95,24.9,63.19,1177.6,73.54 2011-08-25 00:00:00,11.59,373.72,15.3,165.58,63.98,24.57,62.52,1159.27,71.77 2011-08-26 00:00:00,11.86,383.58,15.39,169.14,64.28,25.25,62.66,1176.8,72.64 2011-08-29 00:00:00,12.42,389.97,15.89,172.62,65.86,25.84,63.65,1210.08,74.12 2011-08-30 00:00:00,12.36,389.99,15.97,172.51,65.77,26.23,64.0,1212.92,73.91 2011-08-31 00:00:00,12.8,384.83,16.16,171.91,65.8,26.6,64.43,1218.89,74.02 2011-09-01 00:00:00,12.49,381.03,16.05,170.33,65.33,26.21,64.15,1204.42,73.49 2011-09-02 00:00:00,12.04,374.05,15.61,166.98,64.07,25.8,63.3,1173.97,72.14 2011-09-06 00:00:00,11.77,379.74,15.11,165.11,64.64,25.51,62.45,1165.24,71.15 2011-09-07 00:00:00,12.25,383.93,15.65,167.31,65.43,26.0,61.62,1198.62,73.65 2011-09-08 00:00:00,12.03,384.14,15.44,165.25,64.95,26.22,61.34,1185.9,72.82 2011-09-09 00:00:00,11.58,377.48,14.95,161.37,63.64,25.74,59.99,1154.23,71.01 2011-09-12 00:00:00,11.55,379.94,14.87,162.42,63.59,25.89,60.14,1162.27,71.84 2011-09-13 00:00:00,11.63,384.62,15.26,163.43,63.61,26.04,60.54,1172.87,71.65 2011-09-14 00:00:00,11.73,389.3,15.64,167.24,63.73,26.5,61.58,1188.68,72.64 2011-09-15 00:00:00,11.98,392.96,16.08,170.09,64.4,26.99,63.22,1209.11,74.01 2011-09-16 00:00:00,11.97,400.5,16.33,172.99,64.59,27.12,62.05,1216.01,74.55 2011-09-19 00:00:00,11.58,411.63,16.18,173.13,64.14,27.21,60.56,1204.09,73.7 2011-09-20 00:00:00,11.25,413.45,16.04,174.72,64.22,26.98,60.39,1202.09,74.01 2011-09-21 00:00:00,10.84,412.14,15.38,173.02,63.13,25.99,60.79,1166.76,71.97 2011-09-22 00:00:00,10.11,401.82,15.04,168.62,61.92,25.06,60.92,1129.56,69.24 2011-09-23 00:00:00,10.07,404.3,15.21,169.34,61.59,25.06,60.34,1136.43,69.31 2011-09-26 00:00:00,10.45,403.17,15.57,174.51,62.69,25.44,61.89,1162.95,71.72 2011-09-27 00:00:00,10.48,399.26,15.76,177.71,63.82,25.67,62.43,1175.38,72.91 2011-09-28 00:00:00,9.97,397.01,15.45,177.55,63.25,25.58,61.97,1151.06,72.07 2011-09-29 00:00:00,10.06,390.57,15.86,179.17,63.9,25.45,62.58,1160.4,73.88 2011-09-30 00:00:00,9.57,381.32,15.22,174.87,63.69,24.89,61.9,1131.42,72.63 2011-10-03 00:00:00,8.9,374.6,14.69,173.29,62.08,24.53,60.29,1099.23,71.15 2011-10-04 00:00:00,9.12,372.5,14.86,174.74,62.17,25.34,60.45,1123.95,72.83 2011-10-05 00:00:00,9.37,378.25,15.27,176.85,62.35,25.89,60.29,1144.03,73.95 2011-10-06 00:00:00,9.88,377.37,15.53,181.69,62.81,26.34,60.57,1164.97,73.89 2011-10-07 00:00:00,9.71,369.8,15.5,182.39,63.13,26.25,61.02,1155.46,73.56 2011-10-10 00:00:00,10.09,388.81,16.14,186.62,64.43,26.94,61.87,1194.89,76.28 2011-10-11 00:00:00,10.3,400.29,16.14,185.0,63.96,27.0,60.95,1195.54,76.27 2011-10-12 00:00:00,10.05,402.19,16.4,186.12,64.33,26.96,62.7,1207.25,77.16 2011-10-13 00:00:00,10.1,408.43,16.22,186.82,64.23,27.18,62.36,1203.66,76.37 2011-10-14 00:00:00,10.26,422.0,16.6,190.53,64.72,27.27,62.24,1224.58,78.11
CSV
1
robcarreiro/pydata-book
examples/stock_px.csv
[ "MIT" ]
X : Nat X = let a : Nat a = 0 in a Y : Nat Y = let a : Nat a = 0 in a Z : Nat Z = let a : Nat a = 0 in a A : Nat A = let a : Nat a = 0 in a
Idris
2
ska80/idris-jvm
tests/idris2/basic057/LetIn.idr
[ "BSD-3-Clause" ]
a { value: x\0 }
CSS
0
kitsonk/swc
css/parser/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css
[ "Apache-2.0", "MIT" ]
== Performance == Merlin put a close attention on performance. All was done to provide answer below reaction time for common queries. The idea was that the work done for answering should be proportional to the diff since the last query rather than the whole buffer size. To this end, the design was a bit more complex than necessary and didn't evolve well as new features were integrated. A recent requirement put the final nail in the coffin for this principle: syntax extensions expect to see the whole file at once, effectively defeating the purpose of sub-linear optimizations. This is the opportunity to redesign Merlin, in the hope of simplifying the work for all components involved in the toolchain: the core of Merlin, the OCaml typechecker, editors integration. == Protocol == A new protocol will be designed. For compatibility reason, the old one will still be provided on top, but the expectation is that editor modes will be migrated to the new one over time. The main idea behind the new protocol is that queries should be self-contained: no implicit state is assumed between queries. Executing a query on an existing process and on a fresh one should lead to the same result, performance aside. Intended benefits: - reproducibility and stability; restarting always lead to the same behavior, otherwise it is a bug - clear separation of responsibility; in particular buffer local state is managed by the editor, and not split between processes - implementation is pure and performance comes from a memoization layer; the pure layer offers a reference implementation, memoization shouldn't be observable. == Asynchronicity: editors requirements == NOTE: some of this might not be true in all circumstances, but would result in twisted implementation or editor specific design. *Vim* cannot do asynchronous operations. *Emacs* cannot most of the time. Otherwise it can be implemented in CPS-style but we have to be very careful. *Neovim* and *Atom* should have no problem dealing with that. As a consequence protocol is synchronous by default (Merlin will anyway process queries serially) but editors can tweak the integration to provide better experience. == Asynchronicity: for optimization == A different kind of optimization can be explored later: refining results asynchronously. The idea is that for completion, changes that happened in the last second might not be relevant for the query. Merlin could give an immediate answer from the out-of-date cache, and refine it after recomputation. The user always get a result in real-time, and potentially better suggestions after a reasonable latency (the normal one). The drawback is that this introduces more complexity on editor side. Not all editor can support that kind of interactions: - vim is out of scope, - emacs will be hard to get right, - modern editors such as Neovim and Atom should be easy, - not sure about Sublime Text. == Debugging == In the current version of Merlin, debugging can be done in two ways: - via MERLIN_LOG file, where the whole communication is logged & some feature specific Printf-debugging is available - via `dump` command, which exposes some internal structures. The stateless protocol should help debugging and reporting bug: - only the last command needs to be reported, - users can first check the output in a fresh process. The printf-debugging is feature specific and hardly readable. The new intention is to produce a human-readable trace at the same time the code is executed, explaining intermediate decisions -- a dynamic counterpart to literate programming. As such, all internal structures will come with a human-friendly printer. The trace should help *profiling*, by tracking times between steps. The trace should allow working at different level of precision, by unfolding sub parts of the computation. At the basic level, no internal decisions are printed and so the cost should be negligible. At the most verbose level, all steps are printed, which is probably expensive but shouldn't matter in debug mode. FIXME: - explore using sturgeon for interactive tracing - should we use ppx for deriving printers and logging code? == Documentation & testing == Both are hard to achieve after the facts. Each time a feature is ported to the new implementation, documentation and testing should be added. Documentation should not necessarily target the end-user but should explain design rationale and intended use cases, so that end-user documentation is easy to derive. I don't know how to do proper tests... When a feature seems hard to properly test, this should at least be documented, e.g. in a TODO file. Otherwise, tests should embed as most state as possible and not rely on external files (OCaml / Opam setup, findlib packages, etc...). === Editor integration === Even more important is to do this when adding a feature in a specific mode. Most users won't care about actual implementation details but will care about how the feature is made accessible in their editor (prototypical example: local type-enclosing keymap with C-up C-down C-w in emacs). === Documentation medium === Another question worth asking is how the documentation is provided and written. For individual files, I am comfortable with markdown. Other text-based file formats are welcome too if they prove more appropriate. For multiple or structures files, I am considering directly using wiki language, or markdown-like wiki. == OCaml support == In current Merlin, OCaml frontend received a non-negligible quantity of patches. Recent changes in the OCaml compiler made integration easier, mainly attributes/extensions and lazy substitution. The switch to PPX made support for CamlP4 less relevant, most built-in extensions will be removed. Merlin will still use a patched version of the compiler, but will try to stay close to upstream. Also some changes should be upstreamed soon: - custom short-path implementation - bidirectional typechecking of arguments - state isolation
MediaWiki
3
ZavierHenry/merlin
doc/next/RATIONALE.wiki
[ "MIT" ]
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><path d="M4,18h16V6H4V18z M16,8l2,2h-4L16,8z M18,14.25l-2,2l-2-2H18z M6,14h4v-1H7c-0.55,0-1-0.45-1-1V9 c0-0.55,0.45-1,1-1h1V7h2v1h2v2H8v1h3c0.55,0,1,0.45,1,1v3c0,0.55-0.45,1-1,1h-1v1H8v-1H6V14z" opacity=".3"/><path d="M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h16c1.11,0,2-0.89,2-2V6C22,4.89,21.11,4,20,4z M20,18H4V6h16V18z"/><path d="M8,17h2v-1h1c0.55,0,1-0.45,1-1v-3c0-0.55-0.45-1-1-1H8v-1h4V8h-2V7H8v1H7C6.45,8,6,8.45,6,9v3c0,0.55,0.45,1,1,1h3v1H6v2 h2V17z"/><polygon points="16,8 14,10 18,10"/><polygon points="18,14.25 14,14.25 16,16.25"/></g></g></svg>
SVG
1
good-gym/material-ui
packages/material-ui-icons/material-icons/price_change_two_tone_24px.svg
[ "MIT" ]
scriptname _Frost_BaseSystem extends Quest import _FrostInternal GlobalVariable property UpdateFrequencyGlobal auto {The global variable that determines how often this system should update. If left blank, this system is event-driven.} bool initialized = false function StartSystem() FrostDebug(-1, "StartSystem " + self) if !self.IsRunning() self.Start() endif if UpdateFrequencyGlobal RegisterForSingleUpdate(1) endif StartUp() initialized = true endFunction function StopSystem() self.UnregisterForUpdate() if self.IsRunning() self.Stop() endif ShutDown() initialized = false endFunction ; @Override function StartUp() ; pass endFunction ; @Override function ShutDown() ; pass endFunction bool function IsSystemRunning() return initialized endFunction Event OnUpdate() float start_time = Game.GetRealHoursPassed() Update() if UpdateFrequencyGlobal RegisterForSingleUpdate(UpdateFrequencyGlobal.GetValue()) FrostDebug(-1, self + " update finished in " + ((Game.GetRealHoursPassed() - start_time) * 3600.0) + " seconds.") endif endEvent ; @Overridden by system function Update() endFunction
Papyrus
4
chesko256/Campfire
Scripts/Source/_Frost_BaseSystem.psc
[ "MIT" ]
let n = getnum() in putnum(n * n)
Harbour
2
adam-mcdaniel/harbor
examples/square.hb
[ "Apache-2.0" ]
<p> <b>DAF (<%= @dafName -%>) for project: <%= @project.name -%></b> </p> <pre> <font size=-1> <%=@dafText-%> </font> </pre> <%= link_to 'Download Daf', {:action => 'download_daf', :id => @project.id} -%>
RHTML
3
andypohl/kent
src/hg/encode/hgEncodeSubmit/app/views/pipeline/show_daf.rhtml
[ "MIT" ]
-include ../tools.mk all: $(call NATIVE_STATICLIB,foo) $(call NATIVE_STATICLIB,bar) $(RUSTC) lib1.rs $(RUSTC) lib2.rs $(RUSTC) main.rs -Clto $(call RUN,main)
Makefile
3
Eric-Arellano/rust
src/test/run-make-fulldeps/lto-no-link-whole-rlib/Makefile
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
// Copyright 2010-2014 RethinkDB, all rights reserved. #ifndef BTREE_OPERATIONS_HPP_ #define BTREE_OPERATIONS_HPP_ #include <algorithm> #include <utility> #include <vector> #include "btree/node.hpp" #include "btree/stats.hpp" #include "buffer_cache/alt.hpp" #include "concurrency/fifo_enforcer.hpp" #include "concurrency/new_semaphore.hpp" #include "concurrency/promise.hpp" #include "containers/archive/stl_types.hpp" #include "containers/scoped.hpp" #include "perfmon/perfmon.hpp" #include "repli_timestamp.hpp" #include "utils.hpp" /* This is the main entry point for performing B-tree operations. */ namespace profile { class trace_t; } class buf_parent_t; class cache_t; class value_deleter_t; enum cache_snapshotted_t { CACHE_SNAPSHOTTED_NO, CACHE_SNAPSHOTTED_YES }; /* An abstract superblock provides the starting point for performing B-tree operations. This makes it so that the B-tree code doesn't actually have to know about the format of the superblock, or about anything else that might be contained in the superblock besides the root block ID and the stat block ID. */ class superblock_t { public: superblock_t() { } virtual ~superblock_t() { } // Release the superblock if possible (otherwise do nothing) virtual void release() = 0; virtual block_id_t get_root_block_id() = 0; virtual void set_root_block_id(block_id_t new_root_block) = 0; /* If stats collection is desired, create a stat block with `create_stat_block()` and store its ID on the superblock, then return it from `get_stat_block_id()`. If stats collection is not desired, `get_stat_block_id()` can always return `NULL_BLOCK_ID`. */ virtual block_id_t get_stat_block_id() = 0; virtual buf_parent_t expose_buf() = 0; cache_t *cache() { return expose_buf().cache(); } private: DISABLE_COPYING(superblock_t); }; class keyvalue_location_t { public: keyvalue_location_t() : superblock(nullptr), pass_back_superblock(nullptr), there_originally_was_value(false), stat_block(NULL_BLOCK_ID) { } ~keyvalue_location_t() { if (superblock != nullptr) { if (pass_back_superblock != nullptr) { pass_back_superblock->pulse(superblock); } else { superblock->release(); } } } superblock_t *superblock; promise_t<superblock_t *> *pass_back_superblock; // The parent buf of buf, if buf is not the root node. This is hacky. buf_lock_t last_buf; // The buf owning the leaf node which contains the value. buf_lock_t buf; bool there_originally_was_value; // If the key/value pair was found, a pointer to a copy of the // value, otherwise NULL. scoped_malloc_t<void> value; template <class T> T *value_as() { return static_cast<T *>(value.get()); } // Stat block when modifications are made using this class the statblock is // update. block_id_t stat_block; private: DISABLE_COPYING(keyvalue_location_t); }; buf_lock_t get_root(value_sizer_t *sizer, superblock_t *sb); void check_and_handle_split(value_sizer_t *sizer, buf_lock_t *buf, buf_lock_t *last_buf, superblock_t *sb, const btree_key_t *key, void *new_value, const value_deleter_t *detacher); void check_and_handle_underfull(value_sizer_t *sizer, buf_lock_t *buf, buf_lock_t *last_buf, superblock_t *sb, const btree_key_t *key, const value_deleter_t *detacher); /* Set sb to have root id as its root block and release sb */ void insert_root(block_id_t root_id, superblock_t *sb); /* Create a stat block suitable for storing in a superblock and returning from `get_stat_block_id()`. */ block_id_t create_stat_block(buf_parent_t parent); /* Note that there's no guarantee that `pass_back_superblock` will have been * pulsed by the time `find_keyvalue_location_for_write` returns. In some cases, * the superblock is returned only when `*keyvalue_location_out` gets destructed. */ void find_keyvalue_location_for_write( value_sizer_t *sizer, superblock_t *superblock, const btree_key_t *key, repli_timestamp_t timestamp, const value_deleter_t *balancing_detacher, keyvalue_location_t *keyvalue_location_out, profile::trace_t *trace, promise_t<superblock_t *> *pass_back_superblock = nullptr) THROWS_NOTHING; void find_keyvalue_location_for_read( value_sizer_t *sizer, superblock_t *superblock, const btree_key_t *key, keyvalue_location_t *keyvalue_location_out, btree_stats_t *stats, profile::trace_t *trace); /* `delete_mode_t` controls how `apply_keyvalue_change()` acts when `kv_loc->value` is empty. */ enum class delete_mode_t { /* If there was a value before, remove it and add a tombstone. (If `tstamp` is less than the cutpoint, no tombstone will be added.) Otherwise, do nothing. This mode is used for regular delete queries. */ REGULAR_QUERY, /* If there was a value or tombstone before, remove it. This mode is used for erasing ranges of the database (e.g. during resharding) and also sometimes in backfilling. */ ERASE, /* If there was a value or tombstone before, remove it. Then add a tombstone, regardless of what was present before, unless `tstamp` is less than the cutpoint. This mode is used for transferring tombstones from other servers in backfilling. */ MAKE_TOMBSTONE }; void apply_keyvalue_change( value_sizer_t *sizer, keyvalue_location_t *kv_loc, const btree_key_t *key, repli_timestamp_t tstamp, const value_deleter_t *balancing_detacher, delete_mode_t delete_mode); #endif // BTREE_OPERATIONS_HPP_
C++
4
zadcha/rethinkdb
src/btree/operations.hpp
[ "Apache-2.0" ]
package { public class Test { } } function assert_uinteger(val) { var num_val : uint = val; trace(num_val); } trace("//true"); assert_uinteger(true); trace("//false"); assert_uinteger(false); trace("//null"); assert_uinteger(null); trace("//undefined"); assert_uinteger(undefined); trace("//\"\""); assert_uinteger(""); trace("//\"str\""); assert_uinteger("str"); trace("//\"true\""); assert_uinteger("true"); trace("//\"false\""); assert_uinteger("false"); trace("//0.0"); assert_uinteger(0.0); trace("//NaN"); assert_uinteger(NaN); trace("//-0.0"); assert_uinteger(-0.0); trace("//Infinity"); assert_uinteger(Infinity); trace("//1.0"); assert_uinteger(1.0); trace("//-1.0"); assert_uinteger(-1.0); trace("//0xFF1306"); assert_uinteger(0xFF1306); trace("//1.2315e2"); assert_uinteger(1.2315e2); trace("//0x7FFFFFFF"); assert_uinteger(0x7FFFFFFF); trace("//0x80000000"); assert_uinteger(0x80000000); trace("//0x80000001"); assert_uinteger(0x80000001); trace("//0x180000001"); assert_uinteger(0x180000001); trace("//0x100000001"); assert_uinteger(0x100000001); trace("//-0x7FFFFFFF"); assert_uinteger(-0x7FFFFFFF); trace("//-0x80000000"); assert_uinteger(-0x80000000); trace("//-0x80000001"); assert_uinteger(-0x80000001); trace("//-0x180000001"); assert_uinteger(-0x180000001); trace("//-0x100000001"); assert_uinteger(-0x100000001); trace("//new Object()"); assert_uinteger({}); trace("//\"0.0\""); assert_uinteger("0.0"); trace("//\"NaN\""); assert_uinteger("NaN"); trace("//\"-0.0\""); assert_uinteger("-0.0"); trace("//\"Infinity\""); assert_uinteger("Infinity"); trace("//\"1.0\""); assert_uinteger("1.0"); trace("//\"-1.0\""); assert_uinteger("-1.0"); trace("//\"0xFF1306\""); assert_uinteger("0xFF1306"); trace("//\"1.2315e2\""); assert_uinteger("1.2315e2"); trace("//\"0x7FFFFFFF\""); assert_uinteger(0x7FFFFFFF); trace("//\"0x80000000\""); assert_uinteger(0x80000000); trace("//\"0x80000001\""); assert_uinteger(0x80000001); trace("//\"0x180000001\""); assert_uinteger(0x180000001); trace("//\"0x100000001\""); assert_uinteger(0x100000001); trace("//\"-0x7FFFFFFF\""); assert_uinteger(-0x7FFFFFFF); trace("//\"-0x80000000\""); assert_uinteger(-0x80000000); trace("//\"-0x80000001\""); assert_uinteger(-0x80000001); trace("//\"-0x180000001\""); assert_uinteger(-0x180000001); trace("//\"-0x100000001\""); assert_uinteger(-0x100000001);
ActionScript
4
Sprak1/ruffle
tests/tests/swfs/avm2/convert_uinteger/Test.as
[ "Apache-2.0", "Unlicense" ]
# Copyright (C) 2007, Parrot Foundation. =begin overview abc::Grammar::Actions - ast transformations for abc This file contains the methods that are used by the parse grammar to build the PAST representation of an abc program. Each method below corresponds to a rule in F<grammar.pg>, and is invoked at the point where C<{*}> appears in the rule, with the current match object as the first argument. If the line containing C<{*}> also has a C<#= key> comment, then the value of the comment is passed as the second argument to the method. Some hopefully helpful hints for reading this file: It often helps to refer to the rules in F<grammar.pg> when looking at the corresponding methods here. Within a method, C<< $<foo> >> refers to the named capture C<foo> within the C< $/ > match object. Normally this is either another match object or an array of match objects. The C<make> function and C< .ast > are used to set and retrieve the I<result object> for a match. Here, we use the result object to hold the ast representation of any given match. So, in the code below, whenever you see an expression like C<< $<foo>.ast >>, we're really saying "the ast of C<< <foo> >>". =end overview class abc::Grammar::Actions is HLL::Actions; ## The ast of the entire program is the ast of the ## top-level <statement_list>. method TOP($/) { make PAST::Block.new( :blocktype('declaration'), :hll('abc'), :loadlibs('trans_ops'), $<statement_list>.ast); } ## statement_list: ## All of the individual statements are held in $<statement> ## (which is an array). We start by creating an empty ## PAST::Stmts node, and then loop through all of the ## statements, adding the ast of each statement to the ## PAST::Stmts node. method statement_list($/) { my $past := PAST::Stmts.new( :node($/) ); for $<statement> { $past.push( $_.ast ); } make $past; } ## statement: ## In the parse grammar, we've set up $key to tell us the ## name of whatever subrule was matched by this statement. ## We can then use $key to quickly get the subrule's ast ## with $/{$key}.ast . ## ## bc(1) expression statements also have special semantics ## which we handle here. If a statement is an expression ## other than assignment, then the value of the expression ## is also assigned to the C<last> variable and the value ## printed with a newline. ## Similarly, if the statement consists of a simple string, it's ## displayed on the output. method statement:sym<expr>($/) { my $past := $<EXPR>.ast; if pir::typeof__sp($past) ne 'PAST::Op' && ~$past.name() ne '&infix:<=>' { my $last := PAST::Var.new( :name('last'), :scope('package'), :namespace(['abc','vars']), :lvalue(1) ); $past := PAST::Op.new( $last, $past, :pasttype('bind') ); #PAST::Var.new( :name('saynum'), :namespace([]), :scope('package')), $past := PAST::Op.new( $past, :name('saynum'), :pasttype('call') ); } make $past; } ## if_statement: ## After parsing an if statement, the conditional ## expression will be in $<EXPR>, the "then" ## statement will be in $<statement>[0], and any ## "else" statement will be in $<statement>[1]. ## So, we just obtain the asts of these subrule ## matches and set them as the children of a ## PAST::Op node with a pasttype of 'if'. method statement:sym<if>($/) { my $past := PAST::Op.new( $<EXPR>.ast, $<statement>[0].ast, :pasttype('if'), :node( $/ ) ); if ( $<statement>[1] ) { $past.push( $<statement>[1].ast ); } make $past; } ## while_statement: ## This is basically the same as if_statement above, except ## we use a pasttype of 'while'. method statement:sym<while>($/) { make PAST::Op.new( $<EXPR>.ast, $<statement>.ast, :pasttype('while'), :node($/) ); } ## for_statement: ## A bc(1) for statement has the form ## for( expr0 ; expr1 ; expr2 ) body; ## We transform this into an ast structure that looks like ## expr0; while (expr1) { body; expr2; } method statement:sym<for>($/) { my $past := PAST::Stmts.new( :node($/) ); # add the initial "expr0;" node $past.push( $<EXPR>[0].ast ); # create the "{ body; expr2; }" part my $body := PAST::Stmts.new( $<statement>.ast, $<EXPR>[2].ast ); # now create the "while (expr1) { body; expr2; }" part $past.push( PAST::Op.new( $<EXPR>[1].ast, $body, :pasttype('while'))); make $past; } ## compound_statement: ## A compound statement is just a list of statements, so we ## return the ast of its embedded <statement_list>. method statement:sym<compound>($/) { make $<statement_list>.ast; } ## string: ## The <string_literal> subrule (inherited from PCT::Grammar) ## will have set its result object to the string representation ## of whatever literal we found. So, we just use this as ## the value of a PAST::Val node. method statement:sym<string>($/) { make PAST::Op.new( $<quote_EXPR>.ast, :pirop('print')); } ## float/integer: ## For floating point and integer constants, we simply create ## a PAST::Val node with the value of the constant. But, because ## Parrot's Floats don't know how to properly stringify to ints, ## we have to use the string representation of the value ## and tell the compiler what type of value to return. method term:sym<float>($/) { make PAST::Val.new( :value( ~$/ ), :returns('Float'), :node( $/ ) ); } method term:sym<int>($/) { make PAST::Val.new( :value( ~$/ ), :returns('Integer'), :node( $/ ) ); } ## variable: ## The <variable> rule is used to match both simple ## variables ("a") and unary function calls ("a(0)"). ## Once again, the $key tells us what sort of match we have. ## ## If it's a simple variable, we create a PAST::Var node ## with the name of the variable and a scope of 'package'. ## The :viviself('Float') option says that this variable ## should be initialized as a Float if it doesn't already ## exist. ## ## If it's a function call, we create a PAST::Op node ## to call the subroutine given by $<name> and passing ## the value of $<EXPR> as an argument. The ## available subroutines are held in F<builtins.pir>. method term:sym<variable>($/) { if ($<EXPR>) { make PAST::Op.new( $<EXPR>[0].ast, :name( ~$<name> ), :pasttype('call'), :node( $/ ) ); } else { make PAST::Var.new( :name( ~$<name> ), :scope('package'), :namespace(['abc', 'vars']), :viviself('Float'), :lvalue(1), :node( $/ ) ); } } method term:sym<circumfix>($/) { make $<EXPR>.ast; } ## vim: expandtab sw=4 ft=perl6
Perl6
5
winnit-myself/Wifie
examples/languages/abc/src/parser/actions.nqp
[ "Artistic-2.0" ]
.local-blue { color: blue; margin-left: 20; }
CSS
1
tralves/NativeScript
apps/ui/src/issues/component2/customView2-page.css
[ "Apache-2.0" ]
.phishingIndicator { display: block; box-sizing: border-box; -webkit-print-color-adjust: exact; padding: 8px 12px; margin-bottom: 5px; border: 1px solid rgb(235, 204, 209); border-radius: 4px; color: rgb(169, 68, 66); background-color: rgb(242, 222, 222); white-space: nowrap; overflow: hidden; } .phishingIndicator .description { overflow: hidden; text-overflow: ellipsis; }
Less
4
cnheider/nylas-mail
packages/client-app/internal_packages/phishing-detection/stylesheets/phishing.less
[ "MIT" ]
C u = v AP d 2 K [ ;}IA$ # 4eQ K
AspectJ
0
TesterSzymoon/esofiles
adjust/src/hell.aj
[ "MIT" ]
fun main() : nothing var x: int[70][150][26]; var i,j,c: int; fun printArray(ref x: int[150][26]; ref y: int[26]) : nothing { i <- 0; while (i < 15) do { j <- 0; while (j < 15) do { puti(x[i][j]); putc(' '); j <- j+1; } putc('\n'); i <- i+1; } puts("\ny is:\n"); i <- 0; while (i < 15) do { puti(y[i]); putc(' '); i <- i+1; } } { c <- 0; i <- 0; while (i < 15) do { j <- 0; while (j < 15) do { x[69][i][j] <- c; c <- c+1; j <- j+1; } i <- i+1; } printArray(x[69], x[69][5]); putc('\n'); }
Grace
3
iPapatsoris/Grace-Compiler
src/tests/nonsense/array_test.grace
[ "MIT" ]
package com.baeldung.morphia.domain; import java.util.List; import dev.morphia.annotations.Entity; import dev.morphia.annotations.Id; @Entity public class Author { @Id private String name; private List<String> books; public String getName() { return name; } public void setName(String name) { this.name = name; } public List<String> getBooks() { return books; } public void setBooks(List<String> books) { this.books = books; } }
Java
3
DBatOWL/tutorials
persistence-modules/java-mongodb/src/main/java/com/baeldung/morphia/domain/Author.java
[ "MIT" ]
--TEST-- Bug #78441 (Parse error due to heredoc identifier followed by digit) --FILE-- <?php echo <<<FOO FOO4 FOO, PHP_EOL; echo <<<FOO bar FOO4 FOO, PHP_EOL; echo <<<'FOO' bar FOO4 FOO, PHP_EOL; ?> --EXPECT-- FOO4 bar FOO4 bar FOO4
PHP
3
thiagooak/php-src
Zend/tests/grammar/bug78441.phpt
[ "PHP-3.01" ]
defmodule ChatApiWeb.UserProfileController do use ChatApiWeb, :controller alias ChatApi.Users action_fallback ChatApiWeb.FallbackController @spec show(Plug.Conn.t(), map()) :: Plug.Conn.t() def show(conn, _params) do with %{id: user_id} <- conn.assigns.current_user do user_profile = Users.get_user_info(user_id) render(conn, "show.json", user_profile: user_profile) end end @spec update(Plug.Conn.t(), map()) :: Plug.Conn.t() def update(conn, %{"user_profile" => user_profile_params}) do with %{id: user_id} <- conn.assigns.current_user, params <- Map.merge(user_profile_params, %{"user_id" => user_id}), {:ok, _user_profile} <- Users.update_user_profile(user_id, params) do user_profile = Users.get_user_info(user_id) render(conn, "show.json", user_profile: user_profile) end end end
Elixir
4
raditya3/papercups
lib/chat_api_web/controllers/user_profile_controller.ex
[ "MIT" ]
/* Copyright © 2011-2013 MLstate This file is part of Opa. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import stdlib.core.args /** * Pack binary data into buffers. * * Important note: the buffers used by this module are currently founded upon the * Buffer module and are therefore imperative, non-serializable and are not * valid across thread boundaries. * * @author Norman Scaife * @review Quentin Bourgerie * @destination public */ /** * {1 About this module} * * This module provides a convenient method for defining structured binary data. * You define the structure of the data with a [Pack.data] type, for example: * * [data = [{Cstring="abc"}, {Int=123}, {Bool=true}, {Pad}]] * * This defines a binary data of a null-terminated string, followed by an integer * which uses the default endianness, signedness and width, followed by a single * byte representing a bool, followed by a single null byte of padding. * * To pack this data into a binary type, we would just do: * * [bin = Pack.Encode.pack(data)] * * which would return the binary data (the defaults for Int are big-endian, signed 32-bits): * * [0000 61 62 63 00 00 00 00 7b 01 00 abc....{..] * * Given this binary data, you can decode the buffer using: * * [decoded_data = Pack.Decode.unpack(data, bin, 0)] * * (the values in tha data specification can be anything but the types have to match) * which will return a [Pack.data] type exactly as above. * * The specification includes directives which can be embedded in the data, for example if you had * little-endian, unsigned 16-bit integers, you could specify: [[{Le}, {Unsigned}, {S}, ...]] * * {S} stands for "short", ie. 16-bits. For [{Int}] and [{String}], you can add the * directives locally, for example: [{Int=1; size={Ll}; signed=false}]. * * The directives are retained by [Pack.Decode.unpack] so you can reuse the returned data type. * To remove these directives, just leaving items with data, you can call [Pack.Decode.clean]. * * {1 Where should I start?} * * Start by looking at the [Pack.u] type which contains all the directives and * basic types. In general, the functions in the Encode and Decode modules shadow * the rows in this type, with aggregated equivalents for convenience, for example, * a size-prefixed string whose size is indicated by a big-endian, 16-bit integer, * will be "string_s_be". * * The main modules are Encode and Decode which are the mirror-image of each other but there * is also a composable, functional interface for decoding called Unser. This has some * additional functions for Opa-specific types such as options and references. The mirror * image of this, the Ser module, is mostly covered by Encode but Ser provides the additional * functions to mirror Unser. * * {1 What if I need more?} * * There are probably many other types which could be supported but you can write your own * packing, unpacking routines using the routines from the underlying Binary module. * */ /** * {1 Types defined in this module} */ /** * The type of binary data, [Pack.t] is just binary. **/ type Pack.t = binary /** * Type representing size directives: [{B}]=8-bits, [{S}]=16-bits, [{L}]=32-bits, [{Ll}]=64-bits **/ type Pack.s = {B} / {S} / {L} / {Ll} /** * [Pack.codes] is for data-dependent encode/decode. Data is packed according to * the codes: [{Coded=[(code1,data1)]}] will generate [<code1><data1>] in the binary output. * * On decode, there can be more than one code, for example [{Coded=[(code1,data1),(code2,data2),...]}] but * note that only the first code in the list is used. * The code is read in and the following data is decoded according to the matching code-data pair. * For full generality, the codes are pack items, so you can index your data with, for example ints, strings, * bools or even more complex data such as lists. * * Note: don't attempt to use directives or padding/boundary items as codes. **/ type Pack.codes = list((Pack.u, Pack.data)) /** * [Pack.u] is the main type defining primitive items to be encoded/decoded. * * Directives are: [{Be}] and [{Le}] for endianness, [{Signed}] and [{Unsigned}] for * signedness of integers and [{B}], [{S}], [{L}] and [{Ll}] for integer width (which are * reproduced in the [Pack.s] type). * * Basic data types are: [{Byte}] for 8-bit integers, [{Short}] for 16-bit integers, * [{Long}] for 32-bit integers, [{Longlong}] for 64-bit integers (in the binary output, the source * integers will be the underlying native ints which are not, in general, 64-bits), [{Int}] for generic * integers (controlled by the directives), [{Int64}] for 64-bit integers on the Opa side (there * is a basic Int64 module implementation), * [{Cstring}] for null-terminated strings, [{String}] for generic, size-prefixed strings, * where the size data is controlled by the directives, [{Bool}] for a single-byte value * representing a bool, [{Float32}] for 32-bit floats and [{Float}] for 64-bit floats. * * Aggregate data types are: [{List}] for lists of data, [{Array}] for arrays and [{Coded}] * for data-dependent encoding. These elements contain a proforma value for typing the * list or array elements (it is actually needed for encoding/decoding empty lists/arrays). * * Meta-types are [{Pack}] which allows nesting of packed data. This can be useful while * constructing complex structured data. Note that the Decode.clean function removes [{Pack}] * elements if they are empty. The other meta-type is [{Reference}] which is essentially the * same as [{Pack}] except that the data is buried in a reference type which allows it to be * externally updated. This feature is not thread-safe and should be used with care. * The [Decode.deref] function can be used to unreference the data (ie. turn it back into * [{Pack}] data). Note that [Decode.clean] recreates the references breaking the link with * the original reference value. * * Other utility types include: [{Pad}] for a single null-padding byte, [{Padn}] for a series * of null-padding bytes, [{Bound}] to fill the current binary data up to a given boundary, * [{Char}] which is just a single-character string and [{Void}] which is present for cosmetic purposes. * [{Empty}] is ignored and intended to be used as a marker for future updates of the data, it * is removed by [Decode.clean]. [{Empty; keep=true}] means it is not removed by [Decode.clean]. **/ type Pack.u = {Be} / {Le} / {Signed} / {Unsigned} / {B} / {S} / {L} / {Ll} / {Char:string} / {Byte:int} / {Byte:int; signed:bool} / {Short:int} / {Short:int; signed:bool} / {Short:int; le:bool} / {Short:int; le:bool; signed:bool} / {Long:int} / {Long:int; le:bool} / {Long:int; signed:bool} / {Long:int; le:bool; signed:bool} / {Longlong:int} / {Longlong:int; le:bool} / {Longlong:int; signed:bool} / {Longlong:int; le:bool; signed:bool} / {Int64:int64} / {Int:int} / {Int:int; size:Pack.s} / {Int:int; signed:bool} / {Int:int; size:Pack.s; signed:bool} / {Int:int; le:bool} / {Int:int; le:bool; size:Pack.s} / {Int:int; le:bool; signed:bool} / {Int:int; le:bool; size:Pack.s; signed:bool} / {Pad} / {Padn:int} / {Empty} / {Empty; keep:bool} / {Bound:int} / {Void} / {Bool:bool} / {Cstring:string} / {String:string} / {String:string; no_prefix} / {String:string; size:Pack.s} / {String:string; le:bool} / {String:string; le:bool; size:Pack.s} / {String:string; payload:Pack.data} // to insert data between the prefix and the string // payloads are not currently integrated into the context / {String:string; payload:Pack.data; size:Pack.s} / {String:string; payload:Pack.data; le:bool} / {String:string; payload:Pack.data; le:bool; size:Pack.s} / {Binary:binary} / {Binary:binary; no_prefix} / {Binary:binary; size:Pack.s} / {Binary:binary; le:bool} / {Binary:binary; le:bool; size:Pack.s} / {Binary:binary; payload:Pack.data} / {Binary:binary; payload:Pack.data; size:Pack.s} / {Binary:binary; payload:Pack.data; le:bool} / {Binary:binary; payload:Pack.data; le:bool; size:Pack.s} / {Float32:float} / {Float32:float; le:bool} / {Float:float} / {Float:float; le:bool} / {Coded:Pack.codes} / {List:(Pack.data,list(Pack.data)); null:Pack.s} / {List:(Pack.data,list(Pack.data))} / {List:(Pack.data,list(Pack.data)); le:bool} / {List:(Pack.data,list(Pack.data)); size:Pack.s} / {List:(Pack.data,list(Pack.data)); le:bool; size:Pack.s} / {Array:(Pack.data,llarray(Pack.data))} / {Array:(Pack.data,llarray(Pack.data)); le:bool} / {Array:(Pack.data,llarray(Pack.data)); size:Pack.s} / {Array:(Pack.data,llarray(Pack.data)); le:bool; size:Pack.s} / {Pack:Pack.data} // to include other pack data without copying / {Reference:Server.reference(Pack.data)} // <-- updatable entity in the pack data / {FixedString:(int,string)} // fixed length string / {FixedBinary:(int,binary)} // fixed length binary // Other possibilities... // / {FixedList:(int,Pack.data,list(Pack.data))} // <-- see postregsql pg library // / {Record:list((field_name,field_type,data))} // <-- problem, type vars /** * [Pack.data] is the main specification type but it is just a list of the [Pack.u] * item types. **/ type Pack.data = list(Pack.u) /** * [Pack.input] is a specialised type which wraps the input binary plus * a position. It is used by the Unser module. **/ type Pack.input = { binary:Pack.t; pos:int } /** * [Pack.result] is the result type for the Unser module. **/ type Pack.result('a) = outcome((Pack.input,'a),string) /* * [Pack.options] is the type of options which is used by the main [pack] and * [unpack] functions. */ type Pack.options = {signed : bool; endian : bool; size : Pack.s} #<Ifstatic:OPA_PACK_DEBUG> @private bindump = (%% BslPervasives.bindump %%: binary -> string) #<End> /** * {1 Interface} */ Pack = {{ // For debugging buffer contents #<Ifstatic:OPA_PACK_DEBUG> debug = true #<Else> debug = false #<End> /** Convenience value for little Endian values **/ littleEndian = true /** Convenience value for big Endian values **/ bigEndian = false /** Convenience value for meaningless Endian values, eg. bytes **/ noEndian = false /** Convenience value for signed integers **/ signedInts = true /** Convenience value for unsigned integers **/ unsignedInts = false /** Convenience value for 8-bit integers **/ byteSize = {B} : Pack.s /** Convenience value for 16-bit integers **/ shortSize = {S} : Pack.s /** Convenience value for 32-bit integers **/ longSize = {L} : Pack.s /** Convenience value for 64-bit integers **/ longlongSize = {Ll} : Pack.s /** * A generator of options which can be overridden by the command line. * Default options are [init] or overridden by the command line : * - --default-endian:[name] : To set the default endian * - --default-ints : To set the default ints * - --default-size : To set the default size * * @param init The initial options * @param name The name of the pack options */ command_line_options(init:Pack.options, name):Pack.options = args = { title = "Pack options for {name}" ~init anonymous = [] parsers = [ CommandLine.case(["--pack-endian:{name}}"], [("little",Pack.littleEndian), ("big", Pack.bigEndian)], "Default endian", "little, big" )(endian,p -> {p with ~endian}), CommandLine.case(["--pack-signed:{name}"], [("signed", Pack.signedInts), ("unsigned",Pack.unsignedInts)], "Default ints", "signed, unsigned" )(signed,p -> {p with ~signed}), CommandLine.case(["--pack-size:{name}"], [("byte", Pack.byteSize), ("short", Pack.shortSize), ("long", Pack.longSize), ("longlong",Pack.longlongSize)], "Default size","byte, short, long, longlong" )(size,p -> {p with ~size}), ] } CommandLine.filter(args) /** * Default options are [{signed = signedInts; endian = bigEndian; size = * longSize}] */ default_options:Pack.options = {signed = signedInts; endian = bigEndian; size = longSize} /** size of sized items in bytes **/ sizesize(s:Pack.s): int = match s with | {B} -> 1 | {S} -> 2 | {L} -> 4 | {Ll} -> 8 #<Ifstatic:OPA_BACKEND_QMLJS> @private lsize = 0xffffffff @private llsize = 0x001fffffffffffff // 53 bits #<Else> #<Ifstatic:OCAML_WORD_SIZE 64> @private lsize = 0xffffffff @private llsize = 0x3fffffffffffffff // 62 bits #<Else> @private llsize = 0x3fffffff // 30 bits @private lsize = llsize #<End> #<End> /** maximum (unsigned) value for int **/ sizemax(s:Pack.s) : int = match s with | {B} -> 0xff | {S} -> 0xffff | {L} -> lsize | {Ll} -> llsize /** names of the sizes, eg. [{B}] is "byte" **/ sizename(s:Pack.s) : string = match s with | {B} -> "byte" | {S} -> "short" | {L} -> "long" | {Ll} -> "longlong" /** make size item (ie. for preceding strings or arrays), returns failure on out-of-range **/ mksize(s:Pack.s, le:bool, i:int) : outcome(Pack.u,string) = match s with | {B} -> if i < 0 || i > 0xff then {failure="Pack.mksize: int {i} too big for byte size"} else {success={Byte=i}} | {S} -> if i < 0 || i > 0xffff then {failure="Pack.mksize: int {i} too big for short size"} else {success={Short=i; ~le}} | {L} -> if i < 0 || i > lsize then {failure="Pack.mksize: int {i} too big for long size"} else {success={Long=i; ~le}} | {Ll} -> {success={Longlong=i; ~le}} /** recover size from item, failure if not an integer type **/ getsize(u:Pack.u) : outcome(int,string) = match u with | {~Byte; ...} -> {success=Byte} | {~Short; ...} -> {success=Short} | {~Long; ...} -> {success=Long} | {~Longlong; ...} -> {success=Longlong} | {~Int; ...} -> {success=Int} | {Int64=i} -> {success=Int64.to_int(i)} | _ -> {failure="Pack.getsize: size {u} is not int"} /** boundary computation **/ bound(len, bnd) = if bnd <= 0 then 0 else rem = mod(len, bnd) if rem == 0 then 0 else (bnd - rem) /** test if item is valid for Coded codes **/ valid_code(u:Pack.u) : bool = match u with | {Be} -> false | {Le} -> false | {Signed} -> false | {Unsigned} -> false | {B} -> false | {S} -> false | {L} -> false | {Ll} -> false | {Char=_} -> true | {Byte=_; ...} -> true | {Short=_; ...} -> true | {Long=_; ...} -> true | {Longlong=_; ...} -> true | {Int=_; ...} -> true | {Int64=_} -> true | {Pad} -> false | {Padn=_} -> false | {Empty=_; ...} -> false | {Bound=_} -> false | {Void} -> true | {Bool=_} -> true | {Cstring=_} -> true | {String=_; ...} -> true | {Binary=_; ...} -> true | {Float32=_; ...} -> true | {Float=_; ...} -> true | {Coded=_} -> true | {List=_; ...} -> true | {Array=_; ...} -> true | {Pack=_} -> true | {Reference=_} -> true | {FixedString=_} -> true | {FixedBinary=_} -> true /** Debug, bindump first 32-bytes of current input * @param name string to prefix the output * @param input the current Pack.input value **/ @private limit = 32 @expand pinput(name:string, input:Pack.input) = #<Ifstatic:OPA_PACK_DEBUG> data = Binary.get_binary(input.binary,input.pos,Int.min(limit,Binary.length(input.binary)-input.pos)) //Log.debug("{name}: input=\n{bindump(data)}") // Can't find Log jlog("{name}: input=\n{bindump(data)}") #<Else> _ = (name, input) void #<End> /** Debug, bindump the last 32-bytes of current output * @param name string to prefix the output * @param output the current Pack.t value **/ @expand poutput(name:string, output:Pack.t) = #<Ifstatic:OPA_PACK_DEBUG> data = if Binary.length(output) <= limit then Binary.get_binary(output, 0, Binary.length(output)) else Binary.get_binary(output,Binary.length(output)-limit,limit) //Log.debug("{name}: output=\n{bindump(data)}") jlog("{name}: output=\n{bindump(data)}") #<Else> _ = (name, output) void #<End> /** * {2 Encode data} * * This module provides functions to encode data in binary types. */ Encode = {{ /** Encode char, actually just a single 8-bit character string, failure if multi-byte **/ char(buf:Pack.t, c:string) : outcome(void,string) = b = String.char_at(c, 0) not8 = b < 0 || b > 0xff if ((String.length(c) != 1) || not8) then {failure="Pack.Encode.char: multi-byte char \"{c}\""} else {success=Binary.add_uint8(buf, b)} /** Encode signed 8-bit int, failure if out-of-range **/ octet(buf:Pack.t, i:int) : outcome(void,string) = if (i < -0x80 || i > 0x7f) then {failure="Pack.Encode.byte: out of range {i}"} else {success=Binary.add_int8(buf, i)} /** Encode unsigned 8-bit int, failure if out-of-range **/ uoctet(buf:Pack.t, i:int) : outcome(void,string) = if (i < 0 || i > 0xff) then {failure="Pack.Encode.byte: out of range {i}"} else {success=Binary.add_uint8(buf, i)} /** * Encode 8-bit int, failure if out-of-range * * @param buf binary data to encode into. * @param signed signed if true * @param i integer **/ byte(buf:Pack.t, signed:bool, b:int): outcome(void,string) = if signed then octet(buf, b) else uoctet(buf, b) /** Encode signed 16-bit big-endian int, failure if out-of-range **/ short_be(buf:Pack.t, i:int) : outcome(void,string) = if (i < -0x8000 || i > 0xffff) then {failure="Pack.Encode.short_be: out of range {i}"} else {success=Binary.add_int16_be(buf, i)} /** Encode signed 16-bit little-endian int, failure if out-of-range **/ short_le(buf:Pack.t, i:int) : outcome(void,string) = if (i < -0x8000 || i > 0xffff) then {failure="Pack.Encode.short_le: out of range {i}"} else {success=Binary.add_int16_le(buf, i)} /** Encode unsigned 16-bit big-endian int, failure if out-of-range **/ ushort_be(buf:Pack.t, i:int) : outcome(void,string) = if (i < 0 || i > 0xffff) then {failure="Pack.Encode.ushort_be: out of range {i}"} else {success=Binary.add_uint16_be(buf, i)} /** Encode unsigned 16-bit little-endian int, failure if out-of-range **/ ushort_le(buf:Pack.t, i:int) : outcome(void,string) = if (i < 0 || i > 0xffff) then {failure="Pack.Encode.ushort_le: out of range {i}"} else {success=Binary.add_uint16_le(buf, i)} /** * Encode 16-bit int, failure if out-of-range * * @param buf binary data to encode into. * @param le little-endian if true * @param signed signed if true * @param i integer **/ short(buf:Pack.t, le:bool, signed:bool, s:int): outcome(void,string) = match (le, signed) with | ({false},{false}) -> ushort_be(buf, s) | ({true},{false}) -> ushort_le(buf, s) | ({false},{true}) -> short_be(buf, s) | ({true},{true}) -> short_le(buf, s) // TODO - Make safe and unsafe Encode module. Safe Encode mode allows to // check integers boundaries but slower the stuff (check + success report). // Moreover breaks the 32 bits compilation => 32bits don't needs this // (bellow test) indeed it's an assertion /** Encode signed 32-bit big-endian int, failure if out-of-range **/ long_be(buf:Pack.t, i:int) : outcome(void,string) = // if (i < -0x80000000 || i > 0x7fffffff) // then {failure="Pack.Encode.long_be: out of range {i}"} // else {success=Binary.add_int32_be(buf, i)} /** Encode signed 32-bit little-endian int, failure if out-of-range **/ long_le(buf:Pack.t, i:int) : outcome(void,string) = // if (i < -0x80000000 || i > 0x7fffffff) // then {failure="Pack.Encode.long_le: out of range {i}"} // else {success=Binary.add_int32_le(buf, i)} /** Encode unsigned 32-bit big-endian int, failure if out-of-range **/ ulong_be(buf:Pack.t, i:int) : outcome(void,string) = // if (i < 0 || i > 0xffffffff) // then {failure="Pack.Encode.ulong_be: out of range {i}"} // else {success=Binary.add_uint32_be(buf, i)} /** Encode unsigned 32-bit little-endian int, failure if out-of-range **/ ulong_le(buf:Pack.t, i:int) : outcome(void,string) = // if (i < 0 || i > 0xffffffff) // then {failure="Pack.Encode.ulong_le: out of range {i}"} // else {success=Binary.add_uint32_le(buf, i)} /** * Encode 32-bit int, failure if out-of-range * * @param buf binary data to encode into. * @param le little-endian if true * @param signed signed if true * @param i integer **/ long(buf:Pack.t, le:bool, signed:bool, l:int): outcome(void,string) = match (le, signed) with | ({false},{false}) -> ulong_be(buf, l) | ({true},{false}) -> ulong_le(buf, l) | ({false},{true}) -> long_be(buf, l) | ({true},{true}) -> long_le(buf, l) /** Encode signed 53-bit big-endian int, failure if out-of-range **/ longlong_be(buf:Pack.t, i:int) : outcome(void,string) = // if (i < -0x20000000000000 || i > 0x1fffffffffffff) // then {failure="Pack.Encode.ulonglong_be: out of range {i}"} // else {success=Binary.add_int53_be(buf, i)} /** Encode signed 53-bit little-endian int, failure if out-of-range **/ longlong_le(buf:Pack.t, i:int) : outcome(void,string) = // if (i < -0x20000000000000 || i > 0x1fffffffffffff) // then {failure="Pack.Encode.ulonglong_le: out of range {i}"} // else {success=Binary.add_int53_le(buf, i)} /** * Encode 53-bit int, failure if out-of-range * * @param buf binary data to encode into. * @param le little-endian if true * @param i integer **/ longlong(buf:Pack.t, le:bool, b:int): outcome(void,string) = if le then longlong_le(buf, b) else longlong_be(buf, b) /** Encode unsigned 64-bit big-endian int **/ int64_be(buf:Pack.t, i:int64) : outcome(void,string) = {success=Binary.add_uint64_be(buf, i)} /** Encode unsigned 64-bit little-endian int **/ int64_le(buf:Pack.t, i:int64) : outcome(void,string) = {success=Binary.add_uint64_le(buf, i)} /** * Encode 64-bit int * * @param buf binary data to encode into. * @param le little-endian if true * @param i int64 **/ int64(buf:Pack.t, le:bool, b:int64): outcome(void,string) = if le then int64_le(buf, b) else int64_be(buf, b) /** Encode single null-byte padding **/ pad(buf:Pack.t) : outcome(void,string) = octet(buf, 0) /** * Encode null-byte padding * @param n number of bytes of padding **/ padn(buf:Pack.t, n:int) : outcome(void,string) = if n <= 0 then {success=void} else {success=Binary.add_string(buf, String.repeat(n, String.of_char(0)))} /** * Add null-byte padding to make up to given boundary. * @param n boundary value **/ boundary(buf:Pack.t, n:int) : outcome(void,string) = if n <= 0 then {success=void} else padding = bound(Binary.length(buf),n) do Binary.add_string(buf, String.repeat(padding, String.of_char(0))) {success=void} /** * Encode boolean as either 8-bit 0x00 or 0x01 * @param b bool **/ bool(buf:Pack.t, b:bool) : outcome(void,string) = octet(buf, if b then 1 else 0) /** * Encode null-terminated string * @param str string **/ cstring(buf:Pack.t, str:string) : outcome(void,string) = do Binary.add_string(buf, str) octet(buf, 0) /** * Encode size-prefixed string. * The format of the size prefix is determined by the le and size parameters (always unsigned). * This function will fail if the string length is greater than the maximum size. * * @param buf the binary data to append the string to * @param le true=little endian, false=big endian * @param size the width of the size prefix * @param str string **/ string(buf:Pack.t, le:bool, size:Pack.s, payload:Pack.data, str:string): outcome(void,string) = len = String.byte_length(str) if len > sizemax(size) then {failure="Pack.Encode.string: string too long for {sizename(size)} length \"{String.sub(0,30,str)^"..."}\""} else match match size with | {B} -> uoctet(buf, len) | {S} -> if le then ushort_le(buf, len) else ushort_be(buf, len) | {L} -> if le then ulong_le(buf, len) else ulong_be(buf, len) | {Ll} -> if le then longlong_le(buf, len) else longlong_be(buf, len) with | {~failure} -> {~failure} | {success=_} -> if payload != [] then (match pack_data(buf, default_options.endian, default_options.signed, default_options.size, payload) with | (_,_,_,{success=_}) -> {success=Binary.add_string(buf, str)} | (_,_,_,{~failure}) -> {~failure}) else {success=Binary.add_string(buf, str)} /** * Encode raw string. * This can only be used as the last entry in a [Pack.data] list, otherwise the * size of the data during decode will have to be deduced by external routines. * * @param buf the binary data to append the binary to * @param str the string to pack **/ string_no_prefix(buf:Pack.t, str:string): outcome(void,string) = {success=Binary.add_string(buf, str)} /** Encode byte-prefixed string **/ string_b(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, noEndian, {B}, payload, str) /** Encode short-prefixed string. * @param le endianness of prefix **/ string_s(buf:Pack.t, le:bool, payload:Pack.data, str:string) : outcome(void,string) = string(buf, le, {S}, payload, str) /** Encode little-endian short-prefixed string **/ string_s_le(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, littleEndian, {S}, payload, str) /** Encode big-endian short-prefixed string **/ string_s_be(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, bigEndian, {S}, payload, str) /** Encode long-prefixed string. * @param le endianness of prefix **/ string_l(buf:Pack.t, le:bool, payload:Pack.data, str:string) : outcome(void,string) = string(buf, le, {L}, payload, str) /** Encode little-endian long-prefixed string **/ string_l_le(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, littleEndian, {L}, payload, str) /** Encode big-endian long-prefixed string **/ string_l_be(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, bigEndian, {L}, payload, str) /* Encode longlong-prefixed string. * @param le endianness of prefix **/ string_ll(buf:Pack.t, le:bool, payload:Pack.data, str:string) : outcome(void,string) = string(buf, le, {Ll}, payload, str) /** Encode little-endian longlong-prefixed string **/ string_ll_le(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, littleEndian, {Ll}, payload, str) /** Encode big-endian longlong-prefixed string **/ string_ll_be(buf:Pack.t, payload:Pack.data, str:string) : outcome(void,string) = string(buf, bigEndian, {Ll}, payload, str) /** * Encode size-prefixed binary. * The format of the size prefix is determined by the le and size parameters (always unsigned). * This function will fail if the binary length is greater than the maximum size. * * @param buf the binary data to append the binary to * @param le true=little endian, false=big endian * @param size the width of the size prefix * @param bin binary **/ binary(buf:Pack.t, le:bool, size:Pack.s, payload:Pack.data, bin:binary): outcome(void,string) = len = Binary.length(bin) if len > sizemax(size) then {failure="Pack.Encode.binary: binary too long for {sizename(size)} length \"{Binary.get_string(bin,0,30)^"..."}\""} else match match size with | {B} -> uoctet(buf, len) | {S} -> if le then ushort_le(buf, len) else ushort_be(buf, len) | {L} -> if le then ulong_le(buf, len) else ulong_be(buf, len) | {Ll} -> if le then longlong_le(buf, len) else longlong_be(buf, len) with | {~failure} -> {~failure} | {success=_} -> if payload != [] then (match pack_data(buf, default_options.endian, default_options.signed, default_options.size, payload) with | (_,_,_,{success=_}) -> {success=Binary.add_binary(buf, bin)} | (_,_,_,{~failure}) -> {~failure}) else {success=Binary.add_binary(buf, bin)} /** * Encode raw binary. * This can only be used as the last entry in a [Pack.data] list, otherwise the * size of the data during decode will have to be deduced by external routines. * * @param buf the binary data to append the binary to * @param bin binary **/ binary_no_prefix(buf:Pack.t, bin:binary): outcome(void,string) = {success=Binary.add_binary(buf, bin)} /** Encode byte-prefixed binary **/ binary_b(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, noEndian, {B}, payload, str) /** Encode short-prefixed binary. * @param le endianness of prefix **/ binary_s(buf:Pack.t, le:bool, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, le, {S}, payload, str) /** Encode little-endian short-prefixed binary **/ binary_s_le(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, littleEndian, {S}, payload, str) /** Encode big-endian short-prefixed binary **/ binary_s_be(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, bigEndian, {S}, payload, str) /** Encode long-prefixed binary. * @param le endianness of prefix **/ binary_l(buf:Pack.t, le:bool, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, le, {L}, payload, str) /** Encode little-endian long-prefixed binary **/ binary_l_le(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, littleEndian, {L}, payload, str) /** Encode big-endian long-prefixed binary **/ binary_l_be(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, bigEndian, {L}, payload, str) /* Encode longlong-prefixed binary. * @param le endianness of prefix **/ binary_ll(buf:Pack.t, le:bool, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, le, {Ll}, payload, str) /** Encode little-endian longlong-prefixed binary **/ binary_ll_le(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, littleEndian, {Ll}, payload, str) /** Encode big-endian longlong-prefixed binary **/ binary_ll_be(buf:Pack.t, payload:Pack.data, str:binary) : outcome(void,string) = binary(buf, bigEndian, {Ll}, payload, str) /** Encode fixed length string * If the string is less than len it is padded (on the right) with nulls. * if the string is longer than len it is truncated. * * @param buf the binary object to pack into * @param len the fixed length of the string * @param str the string to pack **/ fixed_string(buf:Pack.t, len:int, str:string) : outcome(void,string) = str = match Int.ordering(len,String.length(str)) with | {eq} -> str | {lt} -> String.sub(0, len, str) | {gt} -> str^String.repeat(len - String.length(str), String.of_char(0)) {success=Binary.add_string(buf, str)} /** Encode fixed length binary * If the binary is less than len it is padded (on the right) with nulls. * if the binary is longer than len it is truncated. * * @param buf the binary object to pack into * @param len the fixed length of the string * @param bin the binary to pack **/ fixed_binary(buf:Pack.t, len:int, bin:binary) : outcome(void,string) = bin = (match Int.ordering(len,Binary.length(bin)) with | {eq} -> bin | {lt} -> Binary.get_binary(bin, 0, len) | {gt} -> b = Binary.create(len) do Binary.add_binary(b, bin) do Binary.add_fill(b, len - Binary.length(bin), 0) b) {success=Binary.add_binary(buf, bin)} /** Encode big-endian 32-bit float **/ float_be(buf:Pack.t, f:float) : outcome(void,string) = {success=Binary.add_float_be(buf, f)} /** Encode little-endian 32-bit float **/ float_le(buf:Pack.t, f:float) : outcome(void,string) = {success=Binary.add_float_le(buf, f)} /** Encode 32-bit float. * @param le endianness **/ float(buf:Pack.t, le:bool, f:float): outcome(void,string) = if le then float_le(buf, f) else float_be(buf, f) /** Encode big-endian 64-bit float **/ double_be(buf:Pack.t, f:float) : outcome(void,string) = {success=Binary.add_double_be(buf, f)} /** Encode little-endian 64-bit float **/ double_le(buf:Pack.t, f:float) : outcome(void,string) = {success=Binary.add_double_le(buf, f)} /** Encode 64-bit float. * @param le endianness **/ double(buf:Pack.t, le:bool, f:float): outcome(void,string) = if le then double_le(buf, f) else double_be(buf, f) /** Encode Coded data. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param buf the binary data to pack into * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param size the initial width for integers * @param code the code item * @param data the data to pack * @return the final endianness, signedness and integer width plus the usual outcome **/ coded(buf:Pack.t, le:bool, signed:bool, size:Pack.s, code:Pack.u, data:Pack.data) : (bool, bool, Pack.s, outcome(void,string)) = match pack_u(buf, le, signed, size, code) with | (le, signed, size, {success=_}) -> pack_data(buf, le, signed, size, data) | failure -> failure // same item type @private same_u(u1:Pack.u, u2:Pack.u): bool = match (u1,u2) with | ({Be},{Be}) -> true | ({Le},{Le}) -> true | ({Signed},{Signed}) -> true | ({Unsigned},{Unsigned}) -> true | ({B},{B}) -> true | ({S},{S}) -> true | ({L},{L}) -> true | ({Ll},{Ll}) -> true | ({Char=_},{Char=_}) -> true | ({Byte=_},{Byte=_}) -> true | ({Byte=_; signed=sg1},{Byte=_; signed=sg2}) -> sg1 == sg2 | ({Short=_},{Short=_}) -> true | ({Short=_; signed=sg1},{Short=_; signed=sg2}) -> sg1 == sg2 | ({Short=_; le=le1},{Short=_; le=le2}) -> le1 == le2 | ({Short=_; le=le1; signed=sg1},{Short=_; le=le2; signed=sg2}) -> le1 == le2 && sg1 == sg2 | ({Long=_},{Long=_}) -> true | ({Long=_; signed=sg1},{Long=_; signed=sg2}) -> sg1 == sg2 | ({Long=_; le=le1},{Long=_; le=le2}) -> le1 == le2 | ({Long=_; le=le1; signed=sg1},{Long=_; le=le2; signed=sg2}) -> le1 == le2 && sg1 == sg2 | ({Longlong=_},{Longlong=_}) -> true | ({Longlong=_; signed=sg1},{Longlong=_; signed=sg2}) -> sg1 == sg2 | ({Longlong=_; le=le1},{Longlong=_; le=le2}) -> le1 == le2 | ({Longlong=_; le=le1; signed=sg1},{Longlong=_; le=le2; signed=sg2}) -> le1 == le2 && sg1 == sg2 | ({Int=_},{Int=_}) -> true | ({Int=_; size=s1},{Int=_; size=s2}) -> s1 == s2 | ({Int=_; signed=sg1},{Int=_; signed=sg2}) -> sg1 == sg2 | ({Int=_; size=s1; signed=sg1},{Int=_; size=s2; signed=sg2}) -> s1 == s2 && sg1 == sg2 | ({Int=_; le=le1},{Int=_; le=le2}) -> le1 == le2 | ({Int=_; le=le1; size=s1},{Int=_; le=le2; size=s2}) -> le1 == le2 && s1 == s2 | ({Int=_; le=le1; signed=sg1},{Int=_; le=le2; signed=sg2}) -> le1 == le2 && sg1 == sg2 | ({Int=_; le=le1; size=s1; signed=sg1},{Int=_; le=le2; size=s2; signed=sg2}) -> leseq = le1 == le2 && s1 == s2 // non-lazy semantic??? leseq && sg1 == sg2 | ({Int64=_},{Int64=_}) -> true | ({Pad},{Pad}) -> true | ({Padn=_},{Padn=_}) -> true | ({Empty=_},{Empty=_}) -> true | ({Empty=_; keep=k1},{Empty=_; keep=k2}) -> k1==k2 | ({Bound=_},{Bound=_}) -> true | ({Void},{Void}) -> true | ({Bool=_},{Bool=_}) -> true | ({Cstring=_},{Cstring=_}) -> true | ({String=_; no_prefix},{String=_; no_prefix}) -> true | ({String=_},{String=_}) -> true | ({String=_; size=s1},{String=_; size=s2}) -> s1 == s2 | ({String=_; le=le1},{String=_; le=le2}) -> le1 == le2 | ({String=_; le=le1; size=s1},{String=_; le=le2; size=s2}) -> le1 == le2 && s1 == s2 | ({String=_; payload=p1},{String=_; payload=p2}) -> same_data(p1,p2) | ({String=_; payload=p1; size=s1},{String=_; payload=p2; size=s2}) -> same_data(p1,p2) && s1 == s2 | ({String=_; payload=p1; le=le1},{String=_; payload=p2; le=le2}) -> same_data(p1,p2) && le1 == le2 | ({String=_; payload=p1; le=le1; size=s1},{String=_; payload=p2; le=le2; size=s2}) -> leseq = le1 == le2 && s1 == s2 // non-lazy semantic??? leseq && same_data(p1,p2) | ({Binary=_; no_prefix},{Binary=_; no_prefix}) -> true | ({Binary=_},{Binary=_}) -> true | ({Binary=_; size=s1},{Binary=_; size=s2}) -> s1 == s2 | ({Binary=_; le=le1},{Binary=_; le=le2}) -> le1 == le2 | ({Binary=_; le=le1; size=s1},{Binary=_; le=le2; size=s2}) -> le1 == le2 && s1 == s2 | ({Binary=_; payload=p1},{Binary=_; payload=p2}) -> same_data(p1,p2) | ({Binary=_; payload=p1; size=s1},{Binary=_; payload=p2; size=s2}) -> same_data(p1,p2) && s1 == s2 | ({Binary=_; payload=p1; le=le1},{Binary=_; payload=p2; le=le2}) -> same_data(p1,p2) && le1 == le2 | ({Binary=_; payload=p1; le=le1; size=s1},{Binary=_; payload=p2; le=le2; size=s2}) -> leseq = le1 == le2 && s1 == s2 // non-lazy semantic??? leseq && same_data(p1,p2) | ({Float32=_},{Float32=_}) -> true | ({Float32=_; le=le1},{Float32=_; le=le2}) -> le1 == le2 | ({Float=_},{Float=_}) -> true | ({Float=_; le=le1},{Float=_; le=le2}) -> le1 == le2 | ({Coded=_},{Coded=_}) -> true | ({List=_; null=null1},{List=_; null=null2}) -> null1 == null2 | ({List=_},{List=_}) -> true | ({List=_; le=le1},{List=_; le=le2}) -> le1 == le2 | ({List=_; size=s1},{List=_; size=s2}) -> s1 == s2 | ({List=_; le=le1; size=s1},{List=_; le=le2; size=s2}) -> le1 == le2 && s1 == s2 | ({Array=_},{Array=_}) -> true | ({Array=_; le=le1},{Array=_; le=le2}) -> le1 == le2 | ({Array=_; size=s1},{Array=_; size=s2}) -> s1 == s2 | ({Array=_; le=le1; size=s1},{Array=_; le=le2; size=s2}) -> le1 == le2 && s1 == s2 | ({Pack=data1},{Pack=data2}) -> same_data(data1,data2) | ({Reference=data1},{Reference=data2}) -> same_data(ServerReference.get(data1),ServerReference.get(data2)) | ({FixedString=_},{FixedString=_}) -> true | ({FixedBinary=_},{FixedBinary=_}) -> true | (_,_) -> false // same data type @private same_data(d1:Pack.data, d2:Pack.data): bool = match List.for_all2((u1, u2 -> same_u(u1,u2)),d1,d2) with | {result=tf} -> tf | _ -> false /** Encode size-prefixed list of data. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * The characteristics of the prefix (endianness, width) are given separately. * * @param buf the binary data to pack into * @param ple endianness for the prefix * @param ps data size for the prefix * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param size the initial width for integers * @param typ a proforma data value which indicates the types of all the elements, all the elements in the list must be of this type. * @param data a list of data values to encode * @return the final endianness, signedness and integer width plus the usual outcome **/ @private do_list(buf, le, signed, size, typ, l) = match l with | [] -> (le, signed, size, {success=void}) | [data|t] -> if same_data(typ, data) then match pack_data(buf, le, signed, size, data) with | (le, signed, size, {success=_}) -> do_list(buf, le, signed, size, typ, t) | failure -> failure end else (le, signed, size, {failure="Pack.Encode.list: non-matching list elements"}) end list(buf:Pack.t, ple:bool, ps:Pack.s, le:bool, signed:bool, s:Pack.s, typ:Pack.data, data:list(Pack.data)) : (bool, bool, Pack.s, outcome(void,string)) = match mksize(ps, ple, List.length(data)) with | {success=size} -> match pack_u(buf, le, signed, s, size) with | (le, signed, size, {success=_}) -> do_list(buf, le, signed, size, typ, data) | failure -> failure end | {~failure} -> (le, signed, s, {~failure}) ntlist(buf:Pack.t, le:bool, signed:bool, s:Pack.s, null:Pack.s, typ:Pack.data, data:list(Pack.data)) : (bool, bool, Pack.s, outcome(void,string)) = match do_list(buf, le, signed, s, typ, data) with | (le, signed, size, {success=_}) -> f = match null with | {B} -> octet | {S} -> ushort_le | {L} -> ulong_le | {Ll} -> longlong_le end (le, signed, size, f(buf,0)) | (_, _, _, {~failure}) -> (le, signed, s, {~failure}) // pack item length @private packitemsize(s:Pack.s, u:Pack.u) : (Pack.s, int, int) = match u with | {Be} -> (s,0,0) | {Le} -> (s,0,0) | {Signed} -> (s,0,0) | {Unsigned} -> (s,0,0) | {B} -> ({B},0,0) | {S} -> ({S},0,0) | {L} -> ({L},0,0) | {Ll} -> ({Ll},0,0) | {Char=_} -> (s,1,0) | {Byte=_} -> (s,1,0) | {Byte=_; ...} -> (s,1,0) | {Short=_; ...} -> (s,2,0) | {Long=_; ...} -> (s,4,0) | {Longlong=_; ...} -> (s,8,0) | {Int=_; ~size; ...} -> (s,sizesize(size),0) | {Int=_; ...} -> (s,sizesize(s),0) | {Int64=_} -> (s,8,0) | {Pad} -> (s,1,0) | {~Padn} -> (s,Padn,0) | {Empty; ...} -> (s,0,0) | {~Bound} -> (s,0,Bound) | {Void} -> (s,1,0) | {Bool=_} -> (s,1,0) | {Cstring=str} -> (s,String.byte_length(str)+1,0) | {String=str; ~payload; ~size; ...} -> (_,payload_size) = packdatasize(size,payload) (s,sizesize(size)+payload_size+String.length(str),0) | {String=str; ~payload; ...} -> (_,payload_size) = packdatasize(s,payload) (s,sizesize(s)+payload_size+String.length(str),0) | {String=str; ~size; ...} -> (s,sizesize(size)+String.length(str),0) | {String=str; no_prefix} -> (s,String.length(str),0) | {String=str; ...} -> (s,sizesize(s)+String.length(str),0) | {Binary=bin; ~payload; ~size; ...} -> (_,payload_size) = packdatasize(size,payload) (s,sizesize(size)+payload_size+Binary.length(bin),0) | {Binary=bin; ~payload; ...} -> (_,payload_size) = packdatasize(s,payload) (s,sizesize(s)+payload_size+Binary.length(bin),0) | {Binary=bin; ~size; ...} -> (s,sizesize(size)+Binary.length(bin),0) | {Binary=bin; no_prefix} -> (s,Binary.length(bin),0) | {Binary=bin; ...} -> (s,sizesize(s)+Binary.length(bin),0) | {Float32=_; ...} -> (s,4,0) | {Float=_; ...} -> (s,8,0) | {Coded=[]} -> (s,0,0) // Can't pack nothing | {Coded=[(code,data)]} -> if valid_code(code) then (s,icnt,_) = packitemsize(s,code) (s,dcnt) = packdatasize(s,data) (s, icnt + dcnt, 0) else (s,0,0) // Bad code | {Coded=_} -> (s,0,0) // Will generate error | {List=(_,l); ~null} -> List.fold((data, (s,cnt,bnd) -> (s,dcnt) = packdatasize(s, data) (s, cnt+dcnt, bnd)),l,(s,sizesize(null),0)) | {List=(_,l); ~size; ...} -> List.fold((data, (s,cnt,bnd) -> (s,dcnt) = packdatasize(s, data) (s, cnt+dcnt, bnd)),l,(s,sizesize(size),0)) | {List=(_,l); ...} -> List.fold((data, (s,cnt,bnd) -> (s,dcnt) = packdatasize(s, data) (s, cnt+dcnt, bnd)),l,(s,sizesize(s),0)) | {Array=(_,a); ~size; ...} -> LowLevelArray.fold((data, (s,cnt,bnd) -> (s,dcnt) = packdatasize(s, data) (s, cnt+dcnt, bnd)),a,(s,sizesize(size),0)) | {Array=(_,a); ...} -> LowLevelArray.fold((data, (s,cnt,bnd) -> (s,dcnt) = packdatasize(s, data) (s, cnt+dcnt, bnd)),a,(s,sizesize(s),0)) | {Pack=data} -> (match packdatasize(s, data) with | (s, cnt) -> (s, cnt, 0)) | {Reference=data} -> (match packdatasize(s, ServerReference.get(data)) with | (s, cnt) -> (s, cnt, 0)) | {FixedString=(cnt,_)} -> (s, cnt, 0) | {FixedBinary=(cnt,_)} -> (s, cnt, 0) // predict pack length @private packdatasize(s:Pack.s, data:Pack.data) : (Pack.s, int) = List.fold((u, (s, len) -> match packitemsize(s, u) with | (s,size,bnd) -> (s,len+size+bound(len,bnd))), data, (s,0)) /** * Predict pack length. Given a data element, this function will return * the exact size of the binary data needed to pack it. * * Note that this has to simulate a packing without actually inserting the * data and so is computationally quite expensive. * * @param data the data to be sized * @return the size in bytes of the resulting packing **/ packlen(data:Pack.data) : int = packlen_with(data, default_options) packulen(u:Pack.u, options:Pack.options) : int = (_, size, bnd) = packitemsize(options.size, u) size+bound(0,bnd) packlen_with(data:Pack.data, options:Pack.options) : int = (List.fold((u, (s, len) -> match packitemsize(s, u) with | (s,size,bnd) -> (s,len+size+bound(len,bnd))), data, (options.size,0))).f2 // missing from LowLevelArray? @private a2l(a:llarray('a)) : list('a) = size = LowLevelArray.size(a) rec aux(i) = if i == size then [] else [LowLevelArray.get(a, i)|aux(i+1)] aux(0) @private pack_string(buf:Pack.t, actual_le:bool, return_le:bool, signed:bool, actual_size:Pack.s, return_size:Pack.s, payload:Pack.data, str:string) : (bool, bool, Pack.s, outcome(void,string)) = match actual_size with | {B} -> (return_le, signed, return_size, string_b(buf, payload, str)) | {S} -> (return_le, signed, return_size, string_s(buf, actual_le, payload, str)) | {L} -> (return_le, signed, return_size, string_l(buf, actual_le, payload, str)) | {Ll} -> (return_le, signed, return_size, string_ll(buf, actual_le, payload, str)) @private pack_binary(buf:Pack.t, actual_le:bool, return_le:bool, signed:bool, actual_size:Pack.s, return_size:Pack.s, payload:Pack.data, bin:binary) : (bool, bool, Pack.s, outcome(void,string)) = match actual_size with | {B} -> (return_le, signed, return_size, binary_b(buf, payload, bin)) | {S} -> (return_le, signed, return_size, binary_s(buf, actual_le, payload, bin)) | {L} -> (return_le, signed, return_size, binary_l(buf, actual_le, payload, bin)) | {Ll} -> (return_le, signed, return_size, binary_ll(buf, actual_le, payload, bin)) @private pack_int(buf:Pack.t, actual_le:bool, return_le:bool, actual_signed:bool, return_signed:bool, actual_size:Pack.s, return_size:Pack.s, i:int) : (bool, bool, Pack.s, outcome(void,string)) = match actual_size with | {B} -> (return_le, return_signed, return_size, byte(buf, actual_signed, i)) | {S} -> (return_le, return_signed, return_size, short(buf, actual_le, actual_signed, i)) | {L} -> (return_le, return_signed, return_size, long(buf, actual_le, actual_signed, i)) | {Ll} -> (return_le, return_signed, return_size, longlong(buf, actual_le, i)) /** Pack item into binary data. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param buf the binary data to pack into * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param size the initial width for integers * @param u the item to pack into the binary. * @return the final endianness, signedness and integer width plus the usual outcome **/ pack_u(buf:Pack.t, le:bool, signed:bool, size:Pack.s, u:Pack.u) : (bool, bool, Pack.s, outcome(void,string)) = match u with | {Be} -> (false, signed, size, {success=void}) | {Le} -> (true, signed, size, {success=void}) | {Signed} -> (le, true, size, {success=void}) | {Unsigned} -> (le, false, size, {success=void}) | {B} -> (le, false, {B}, {success=void}) | {S} -> (le, false, {S}, {success=void}) | {L} -> (le, false, {L}, {success=void}) | {Ll} -> (le, false, {Ll}, {success=void}) | {~Char} -> (le, signed, size, char(buf, Char)) | {~Byte} -> (le, signed, size, byte(buf, signed, Byte)) | {~Byte; signed=actual_signed} -> (le, signed, size, byte(buf, actual_signed, Byte)) | {Short=i} -> pack_int(buf, le, le, signed, signed, {S}, {S}, i) | {Short=i; signed=actual_signed} -> pack_int(buf, le, le, actual_signed, signed, {S}, {S}, i) | {Short=i; le=actual_le} -> pack_int(buf, actual_le, le, signed, signed, {S}, {S}, i) | {Short=i; le=actual_le; signed=actual_signed} -> pack_int(buf, actual_le, le, actual_signed, signed, {S}, {S}, i) | {Long=i} -> pack_int(buf, le, le, signed, signed, {L}, {L}, i) | {Long=i; signed=actual_signed} -> pack_int(buf, le, le, actual_signed, signed, {L}, {L}, i) | {Long=i; le=actual_le} -> pack_int(buf, actual_le, le, signed, signed, {L}, {L}, i) | {Long=i; le=actual_le; signed=actual_signed} -> pack_int(buf, actual_le, le, actual_signed, signed, {L}, {L}, i) | {Longlong=i} -> pack_int(buf, le, le, signed, signed, {Ll}, {Ll}, i) | {Longlong=i; signed=actual_signed} -> pack_int(buf, le, le, actual_signed, signed, {Ll}, {Ll}, i) | {Longlong=i; le=actual_le} -> pack_int(buf, actual_le, le, signed, signed, {Ll}, {Ll}, i) | {Longlong=i; le=actual_le; signed=actual_signed} -> pack_int(buf, actual_le, le, actual_signed, signed, {Ll}, {Ll}, i) | {Int=i} -> pack_int(buf, le, le, signed, signed, size, size, i) | {Int=i; size=actual_size} -> pack_int(buf, le, le, signed, signed, actual_size, size, i) | {Int=i; signed=actual_signed} -> pack_int(buf, le, le, actual_signed, signed, size, size, i) | {Int=i; size=actual_size; signed=actual_signed} -> pack_int(buf, le, le, actual_signed, signed, actual_size, size, i) | {Int=i; le=actual_le} -> pack_int(buf, actual_le, le, signed, signed, size, size, i) | {Int=i; le=actual_le; size=actual_size} -> pack_int(buf, actual_le, le, signed, signed, actual_size, size, i) | {Int=i; le=actual_le; signed=actual_signed} -> pack_int(buf, actual_le, le, actual_signed, signed, size, size, i) | {Int=i; le=actual_le; size=actual_size; signed=actual_signed} -> pack_int(buf, actual_le, le, actual_signed, signed, actual_size, size, i) | {Int64=i64} -> (le, signed, size, int64(buf, le, i64)) | {Pad} -> (le, signed, size, pad(buf)) | {~Padn} -> (le, signed, size, padn(buf, Padn)) | {Empty; ...} -> (le, signed, size, {success=void}) | {~Bound} -> (le, signed, size, boundary(buf, Bound)) | {Void} -> (le, signed, size, pad(buf)) | {~Bool} -> (le, signed, size, bool(buf, Bool)) | {~Cstring} -> (le, signed, size, cstring(buf, Cstring)) | {String=str} -> pack_string(buf, le, le, signed, size, size, [], str) | {String=str; no_prefix} -> (le, signed, size, string_no_prefix(buf, str)) | {String=str; size=actual_size} -> pack_string(buf, le, le, signed, actual_size, size, [], str) | {String=str; le=actual_le} -> pack_string(buf, actual_le, le, signed, size, size, [], str) | {String=str; le=actual_le; size=actual_size} -> pack_string(buf, actual_le, le, signed, actual_size, size, [], str) | {String=str; ~payload} -> pack_string(buf, le, le, signed, size, size, payload, str) | {String=str; ~payload; size=actual_size} -> pack_string(buf, le, le, signed, actual_size, size, payload, str) | {String=str; ~payload; le=actual_le} -> pack_string(buf, actual_le, le, signed, size, size, payload, str) | {String=str; ~payload; le=actual_le; size=actual_size} -> pack_string(buf, actual_le, le, signed, actual_size, size, payload, str) | {Binary=bin} -> pack_binary(buf, le, le, signed, size, size, [], bin) | {Binary=bin; no_prefix} -> (le, signed, size, binary_no_prefix(buf, bin)) | {Binary=bin; size=actual_size} -> pack_binary(buf, le, le, signed, actual_size, size, [], bin) | {Binary=bin; le=actual_le} -> pack_binary(buf, actual_le, le, signed, size, size, [], bin) | {Binary=bin; le=actual_le; size=actual_size} -> pack_binary(buf, actual_le, le, signed, actual_size, size, [], bin) | {Binary=bin; ~payload} -> pack_binary(buf, le, le, signed, size, size, payload, bin) | {Binary=bin; ~payload; size=actual_size} -> pack_binary(buf, le, le, signed, actual_size, size, payload, bin) | {Binary=bin; ~payload; le=actual_le} -> pack_binary(buf, actual_le, le, signed, size, size, payload, bin) | {Binary=bin; ~payload; le=actual_le; size=actual_size} -> pack_binary(buf, actual_le, le, signed, actual_size, size, payload, bin) | {~Float32} -> (le, signed, size, float(buf, le, Float32)) | {~Float32; le=actual_le} -> (le, signed, size, float(buf, actual_le, Float32)) | {~Float} -> (le, signed, size, double(buf, le, Float)) | {~Float; le=actual_le} -> (le, signed, size, double(buf, actual_le, Float)) | {Coded=[]} -> (le, signed, size, {failure="Pack.Encode.pack: Coded has no codes"}) | {Coded=[(code,data)]} -> if valid_code(code) then coded(buf, le, signed, size, code, data) else (le, signed, size, {failure="Pack.Encode.pack: Coded has invalid code {code}"}) | {Coded=_} -> (le, signed, size, {failure="Pack.Encode.pack: Coded has multiple codes"}) | {List=(t,l); ~null} -> ntlist(buf, le, signed, size, null, t, l) | {List=(t,l)} -> list(buf, le, size, le, signed, size, t, l) | {List=(t,l); le=ple} -> list(buf, ple, size, le, signed, size, t, l) | {List=(t,l); size=ps} -> list(buf, le, ps, le, signed, size, t, l) | {List=(t,l); le=ple; size=ps} -> list(buf, ple, ps, le, signed, size, t, l) | {Array=(t,a)} -> list(buf, le, size, le, signed, size, t, a2l(a)) | {Array=(t,a); le=ple} -> list(buf, ple, size, le, signed, size, t, a2l(a)) | {Array=(t,a); size=ps} -> list(buf, le, ps, le, signed, size, t, a2l(a)) | {Array=(t,a); le=ple; size=ps} -> list(buf, ple, ps, le, signed, size, t, a2l(a)) | {Pack=data} -> pack_data(buf, le, signed, size, data) | {Reference=data} -> pack_data(buf, le, signed, size, ServerReference.get(data)) | {FixedString=(len,str)} -> (le, signed, size, fixed_string(buf, len, str)) | {FixedBinary=(len,bin)} -> (le, signed, size, fixed_binary(buf, len, bin)) /** Pack data into binary data. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param buf the binary data to pack into * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param size the initial width for integers * @param data the data value to back into the binary * @return the final endianness, signedness and integer width plus the usual outcome **/ pack_data(buf:Pack.t, le:bool, signed:bool, size:Pack.s, data:Pack.data) : (bool, bool, Pack.s, outcome(void,string)) = List.fold((u, (le, signed, size, res) -> match res with | {~failure} -> (le, signed, size, {~failure}) | {success=_} -> res = pack_u(buf, le, signed, size, u) do poutput("Encode.pack",buf) res ), data, (le, signed, size, {success:void})) /** Create binary and pack with given data. * * Uses [packlen] to predict the size of the binary so the binary size is exact. * * @param data the data value to pack into the binary * @return the binary data **/ pack(data:Pack.data) : outcome(Pack.t,string) = pack_with(data, default_options) /** * As [Pack.Decode.pack] but with custom [options]. */ pack_with(data:Pack.data, options:Pack.options) = buf = Binary.create(packlen(data)) (_, _, _, res) = pack_data(buf, options.endian, options.signed, options.size, data) match res with | {success=_} -> do poutput("Encode.pack",buf) {success=buf} | {~failure} -> {~failure} }} /** * {2 Serialize data} * * The Ser functions give some Opa-specific encoding functions to supplement the Encode module. * * Note that these are not necessarily unique, for instance option(a) is basically the same * as: [{Coded=[({Byte=0},[]),({Byte=1},[<a>])]}]. **/ Ser = {{ /** Pack a Server.reference value. * * eg. [ref(buf, Pack.Encode.bool, bool_ref)] **/ ref(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), r:Server.reference('a)) : outcome(void,string) = ea(buf, ServerReference.get(r)) /** Pack an optional value. * * eg. [option(buf, Pack.Encode.double, {some=1.23})] **/ option(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), oa:option('a)) : outcome(void,string) = match oa with | {some=a} -> match Encode.uoctet(buf, 1) with | {success=_} -> ea(buf, a) | {~failure} -> {~failure} end | {none} -> Encode.uoctet(buf, 0) /** Pack a 2-tuple value. * * eg. [tuple2(buf, Pack.Encode.long_be, Pack.Encode.short_be, (123,456))] **/ tuple2(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), (a,b):('a,'b)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> eb(buf, b) | {~failure} -> {~failure} /** Pack a 3-tuple value. **/ tuple3(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), ec:Pack.t, 'c -> outcome(void,string), (a,b,c):('a,'b,'c)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> match eb(buf, b) with | {success=_} -> ec(buf, c) | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Pack a 4-tuple value. **/ tuple4(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), ec:Pack.t, 'c -> outcome(void,string), ed:Pack.t, 'd -> outcome(void,string), (a,b,c,d):('a,'b,'c,'d)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> match eb(buf, b) with | {success=_} -> match ec(buf, c) with | {success=_} -> ed(buf, d) | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Pack a 5-tuple value. **/ tuple5(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), ec:Pack.t, 'c -> outcome(void,string), ed:Pack.t, 'd -> outcome(void,string), ee:Pack.t, 'e -> outcome(void,string), (a,b,c,d,e):('a,'b,'c,'d,'e)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> match eb(buf, b) with | {success=_} -> match ec(buf, c) with | {success=_} -> match ed(buf, d) with | {success=_} -> ee(buf, e) | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Pack a 6-tuple value. **/ tuple6(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), ec:Pack.t, 'c -> outcome(void,string), ed:Pack.t, 'd -> outcome(void,string), ee:Pack.t, 'e -> outcome(void,string), ef:Pack.t, 'f -> outcome(void,string), (a,b,c,d,e,f):('a,'b,'c,'d,'e,'f)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> match eb(buf, b) with | {success=_} -> match ec(buf, c) with | {success=_} -> match ed(buf, d) with | {success=_} -> match ee(buf, e) with | {success=_} -> ef(buf, f) | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Pack a 7-tuple value. **/ tuple7(buf:Pack.t, ea:Pack.t, 'a -> outcome(void,string), eb:Pack.t, 'b -> outcome(void,string), ec:Pack.t, 'c -> outcome(void,string), ed:Pack.t, 'd -> outcome(void,string), ee:Pack.t, 'e -> outcome(void,string), ef:Pack.t, 'f -> outcome(void,string), eg:Pack.t, 'g -> outcome(void,string), (a,b,c,d,e,f,g):('a,'b,'c,'d,'e,'f,'g)) : outcome(void,string) = match ea(buf, a) with | {success=_} -> match eb(buf, b) with | {success=_} -> match ec(buf, c) with | {success=_} -> match ed(buf, d) with | {success=_} -> match ee(buf, e) with | {success=_} -> match ef(buf, f) with | {success=_} -> eg(buf, g) | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} }} /** * {2 Decode data} * * This module provides functions to extract values from binary data. * **/ Decode = {{ /** Decode single 8-bit byte as a string of length 1 **/ char(data:Pack.t, pos:int) : outcome(string,string) = do pinput("Pack.Decode.char",{binary=data; ~pos}) if Binary.length(data) >= pos + 1 then {success=Binary.get_string(data, pos, 1)} else {failure="Pack.Decode.char: not enough data for char"} /** Decode 8-bit signed integer **/ octet(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.byte",{binary=data; ~pos}) if Binary.length(data) >= pos + 1 then {success=Binary.get_int8(data, pos)} else {failure="Pack.Decode.byte: not enough data for byte"} /** Decode 8-bit unsigned integer **/ uoctet(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.byte",{binary=data; ~pos}) if Binary.length(data) >= pos + 1 then {success=Binary.get_uint8(data, pos)} else {failure="Pack.Decode.byte: not enough data for byte"} /** Decode 8-bit integer, signedness as per argument **/ byte(signed:bool, data:Pack.t, pos:int) : outcome(int,string) = if signed then octet(data, pos) else uoctet(data, pos) /** Decode 16-bit unsigned big-endian integer **/ ushort_be(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.ushort_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 2 then {success=Binary.get_uint16_be(data, pos)} else {failure="Pack.Decode.ushort_be: not enough data for short"} /** Decode 16-bit unsigned little-endian integer **/ ushort_le(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.ushort_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 2 then {success=Binary.get_uint16_le(data, pos)} else {failure="Pack.Decode.ushort_le: not enough data for short"} /** Decode 16-bit signed big-endian integer **/ short_be(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.short_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 2 then {success=Binary.get_int16_be(data, pos)} else {failure="Pack.Decode.short_be: not enough data for short"} /** Decode 16-bit signed little-endian integer **/ short_le(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.short_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 2 then {success=Binary.get_int16_le(data, pos)} else {failure="Pack.Decode.short_le: not enough data for short"} /** Decode 16-bit integer * @param le endianness * @param signed signedness **/ short(le:bool, signed:bool, data:Pack.t, pos:int): outcome(int,string) = match (le, signed) with | ({false},{false}) -> ushort_be(data, pos) | ({true},{false}) -> ushort_le(data, pos) | ({false},{true}) -> short_be(data, pos) | ({true},{true}) -> short_le(data, pos) /** Decode 32-bit signed big-endian integer **/ long_be(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.long_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_int32_be(data, pos)} else {failure="Pack.Decode.long_be: not enough data for long"} /** Decode 32-bit signed little-endian integer **/ long_le(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.long_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_int32_le(data, pos)} else {failure="Pack.Decode.long_le: not enough data for long"} /** Decode 32-bit unsigned big-endian integer **/ ulong_be(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.ulong_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_uint32_be(data, pos)} else {failure="Pack.Decode.ulong_le: not enough data for long"} /** Decode 32-bit unsigned little-endian integer **/ ulong_le(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.ulong_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_uint32_le(data, pos)} else {failure="Pack.Decode.ulong_le: not enough data for long"} /** Decode 32-bit integer * @param le endianness * @param signed signedness **/ long(le:bool, signed:bool, data:Pack.t, pos:int): outcome(int,string) = match (le, signed) with | ({false},{false}) -> ulong_be(data, pos) | ({true},{false}) -> ulong_le(data, pos) | ({false},{true}) -> long_be(data, pos) | ({true},{true}) -> long_le(data, pos) /** Decode 64-bit signed big-endian integer, resulting integer is in native format **/ longlong_be(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.longlong_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_int53_be(data, pos)} else {failure="Pack.Decode.longlong_le: not enough data for longlong"} /** Decode 64-bit signed little-endian integer, resulting integer is in native format **/ longlong_le(data:Pack.t, pos:int) : outcome(int,string) = do pinput("Pack.Decode.longlong_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_int53_le(data, pos)} else {failure="Pack.Decode.longlong_le: not enough data for longlong"} /** Decode 64-bit integer * @param le endianness **/ longlong(le:bool, data:Pack.t, pos:int) : outcome(int,string) = if le then longlong_le(data, pos) else longlong_be(data, pos) /** Decode generalised integer * @param le endianness * @param signed signedness * @param size integer width **/ int(le:bool, signed:bool, s:Pack.s, data:Pack.t, pos:int) : outcome(int,string) = match s with | {B} -> byte(signed, data, pos) // no endian | {S} -> short(le, signed, data, pos) | {L} -> long(le, signed, data, pos) | {Ll} -> longlong(le, data, pos) // always signed /** Decode 64-bit unsigned little-endian integer, resulting integer is int64 **/ int64_le(data:Pack.t, pos:int) : outcome(int64,string) = do pinput("Pack.Decode.int64_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 8 then {success=Binary.get_uint64_le(data, pos)} else {failure="Pack.Decode.int64_le: not enough data for int64"} /** Decode 64-bit unsigned big-endian integer, resulting integer is int64 **/ int64_be(data:Pack.t, pos:int) : outcome(int64,string) = do pinput("Pack.Decode.int64_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 8 then {success=Binary.get_uint64_be(data, pos)} else {failure="Pack.Decode.int64_be: not enough data for int64"} /** Decode 64-bit unsigned integer * @param le endianness **/ int64(le:bool, data:Pack.t, pos:int) : outcome(int64,string) = if le then int64_le(data, pos) else int64_be(data, pos) /** Skip over a single padding byte **/ pad(data:Pack.t, pos:int) : outcome(void,string) = do pinput("Pack.Decode.pad",{binary=data; ~pos}) if Binary.length(data) >= pos + 1 then {success=void} else {failure="Pack.Decode.pad: not enough data for padding"} /** Skip over n padding bytes * @param data binary data * @param pos position in binary data * @param n number of bytes to skip **/ padn(data:Pack.t, pos:int, n:int) : outcome(void,string) = do pinput("Pack.Decode.padn({n})",{binary=data; ~pos}) if Binary.length(data) >= pos + n then {success=void} else {failure="Pack.Decode.padn: not enough data for padding"} /** Skip up to given boundary. * @param data binary data * @param pos position in binary data * @param n the boundary value * @return the actual number of bytes skipped **/ boundary(data:Pack.t, pos:int, n:int) : outcome(int,string) = if n <= 0 then {success=0} else do pinput("Pack.Decode.boundary({n})",{binary=data; ~pos}) padding = bound(pos, n) if Binary.length(data) >= pos + padding then {success=padding} else {failure="Pack.Decode.boundary: not enough data for padding"} /** Decode single byte as bool, 0 means false, true otherwise **/ bool(data:Pack.t, pos:int) : outcome(bool,string) = do pinput("Pack.Decode.bool",{binary=data; ~pos}) if Binary.length(data) >= pos + 1 then {success=Binary.get_uint8(data, pos) != 0} else {failure="Pack.Decode.bool: not enough data for bool"} @private clen(data:Pack.t, pos:int) : option(int) = dlen = Binary.length(data) - pos rec aux(i) = if i > dlen then none else // Implement Binary.index? if Binary.get_uint8(data, pos + i) == 0 then {some=i} else aux(i+1) aux(0) /** Decode null-terminated string from data, searches forward for null **/ cstring(data:Pack.t, pos:int) : outcome(string,string) = do pinput("Pack.Decode.cstring",{binary=data; ~pos}) match clen(data, pos) with | {some=len} -> if Binary.length(data) > pos + len then {success=Binary.get_string(data, pos, len)} else {failure="Pack.Decode.cstring: not enough data for string"} | {none} -> {failure="Pack.Decode.cstring: can't find null"} @private get_payload(payload:Pack.data, data:Pack.t, pos:int) : outcome((int,Pack.data),string) = match payload with | [] -> {success=(pos,[])} | _ -> unpack(payload, data, pos) /** Decode generalised string * @param payload data between prefix and string (can be empty) * @param le endianness * @param size integer width **/ string(payload:Pack.data, le:bool, size:Pack.s, data:Pack.t, pos:int) : outcome((Pack.data,string),string) = do pinput("Pack.Decode.string",{binary=data; ~pos}) match match (le, size) with | (_, {B}) -> (pos+1,octet(data, pos)) | ({false}, {S}) -> (pos+2,short_be(data, pos)) | ({true}, {S}) -> (pos+2,short_le(data, pos)) | ({false}, {L}) -> (pos+4,long_be(data, pos)) | ({true}, {L}) -> (pos+4,long_le(data, pos)) | ({false}, {Ll}) -> (pos+8,longlong_be(data, pos)) | ({true}, {Ll}) -> (pos+8,longlong_le(data, pos)) with | (pos,{success=len}) -> if len <= 0 then {success=([],"")} else (match get_payload(payload, data, pos) with | {success=(pos,payload)} -> if Binary.length(data) >= pos + len then {success=(payload,Binary.get_string(data, pos, len))} else {failure="Pack.Decode.string: not enough data for string"} | {~failure} -> {~failure}) | (_,{~failure}) -> {~failure} /** Decode unprefixed string * This routine assumes that all the remaining data is part of the binary. **/ string_no_prefix(data:Pack.t, pos:int) : outcome(string,string) = do pinput("Pack.Decode.string_no_prefix",{binary=data; ~pos}) {success=(Binary.get_string(data, pos, Binary.length(data)-pos))} /** Decode 8-bit integer size-prefixed string */ string_b = string(_, false, {B}, _, _) /** Decode 16-bit big-endian integer size-prefixed string */ string_s_be = string(_, false, {S}, _, _) /** Decode 16-bit big-endian integer size-prefixed string */ string_s_le = string(_, true, {S}, _, _) /** Decode 16-bit integer size-prefixed string * @param le endianness **/ string_s = string(_, _, {S}, _, _) /** Decode 32-bit big-endian integer size-prefixed string */ string_l_be = string(_, false, {L}, _, _) /** Decode 32-bit little-endian integer size-prefixed string */ string_l_le = string(_, true, {L}, _, _) /** Decode 32-bit integer size-prefixed string * @param le endianness **/ string_l = string(_, _, {L}, _, _) /** Decode 64-bit big-endian integer size-prefixed string */ string_ll_be = string(_, false, {Ll}, _, _) /** Decode 64-bit little-endian integer size-prefixed string */ string_ll_le = string(_, true, {Ll}, _, _) /** Decode 64-bit integer size-prefixed string * @param le endianness **/ string_ll = string(_, _, {Ll}, _, _) /** Decode generalised binary * @param payload data between prefix and binary (can be empty) * @param le endianness * @param size integer width **/ binary(payload:Pack.data, le:bool, size:Pack.s, data:Pack.t, pos:int) : outcome((Pack.data,binary),string) = do pinput("Pack.Decode.binary",{binary=data; ~pos}) match match (le, size) with | (_, {B}) -> (pos+1,octet(data, pos)) | ({false}, {S}) -> (pos+2,short_be(data, pos)) | ({true}, {S}) -> (pos+2,short_le(data, pos)) | ({false}, {L}) -> (pos+4,long_be(data, pos)) | ({true}, {L}) -> (pos+4,long_le(data, pos)) | ({false}, {Ll}) -> (pos+8,longlong_be(data, pos)) | ({true}, {Ll}) -> (pos+8,longlong_le(data, pos)) with | (pos,{success=len}) -> if len <= 0 then {success=([],Binary.create(0))} else (match get_payload(payload, data, pos) with | {success=(pos,payload)} -> if Binary.length(data) >= pos + len then {success=(payload,Binary.get_binary(data, pos, len))} else {failure="Pack.Decode.binary: not enough data for binary"} | {~failure} -> {~failure}) | (_,{~failure}) -> {~failure} /** Decode unprefixed binary * This routine assumes that all the remaining data is part of the binary. **/ binary_no_prefix(data:Pack.t, pos:int) : outcome(binary,string) = do pinput("Pack.Decode.binary_no_prefix",{binary=data; ~pos}) {success=(Binary.get_binary(data, pos, Binary.length(data)-pos))} /** Decode 8-bit integer size-prefixed binary */ binary_b = binary(_, false, {B}, _, _) /** Decode 16-bit big-endian integer size-prefixed binary */ binary_s_be = binary(_, false, {S}, _, _) /** Decode 16-bit big-endian integer size-prefixed binary */ binary_s_le = binary(_, true, {S}, _, _) /** Decode 16-bit integer size-prefixed binary * @param le endianness **/ binary_s = binary(_, _, {S}, _, _) /** Decode 32-bit big-endian integer size-prefixed binary */ binary_l_be = binary(_, false, {L}, _, _) /** Decode 32-bit little-endian integer size-prefixed binary */ binary_l_le = binary(_, true, {L}, _, _) /** Decode 32-bit integer size-prefixed binary * @param le endianness **/ binary_l = binary(_, _, {L}, _, _) /** Decode 64-bit big-endian integer size-prefixed binary */ binary_ll_be = binary(_, false, {Ll}, _, _) /** Decode 64-bit little-endian integer size-prefixed binary */ binary_ll_le = binary(_, true, {Ll}, _, _) /** Decode 64-bit integer size-prefixed binary * @param le endianness **/ binary_ll = binary(_, _, {Ll}, _, _) /** Decode fixed length string **/ fixed_string(data:Pack.t, pos:int, len:int) : outcome(string,string) = if Binary.length(data) >= pos + len then {success=Binary.get_string(data, pos, len)} else {failure="Pack.Decode.fixed: not enough data for string"} /** Decode fixed length binary **/ fixed_binary(data:Pack.t, pos:int, len:int) : outcome(binary,string) = if Binary.length(data) >= pos + len then {success=Binary.get_binary(data, pos, len)} else {failure="Pack.Decode.binary: not enough data for binary"} /** Decode 32-bit little-endian float */ float_le(data:Pack.t, pos:int) : outcome(float,string) = do pinput("Pack.Decode.float_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_float_le(data, pos)} else {failure="Pack.Decode.float_le: not enough data for float"} /** Decode 32-bit big-endian float */ float_be(data:Pack.t, pos:int) : outcome(float,string) = do pinput("Pack.Decode.float_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 4 then {success=Binary.get_float_be(data, pos)} else {failure="Pack.Decode.float_be: not enough data for float"} /** Decode 32-bit float * @param le endianness **/ float(le:bool, data:Pack.t, pos:int) : outcome(float,string) = if le then float_le(data, pos) else float_be(data, pos) /** Decode 64-bit little-endian float */ double_le(data:Pack.t, pos:int) : outcome(float,string) = do pinput("Pack.Decode.double_le",{binary=data; ~pos}) if Binary.length(data) >= pos + 8 then {success=Binary.get_double_le(data, pos)} else {failure="Pack.Decode.double_le: not enough data for double"} /** Decode 64-bit big-endian float */ double_be(data:Pack.t, pos:int) : outcome(float,string) = do pinput("Pack.Decode.double_be",{binary=data; ~pos}) if Binary.length(data) >= pos + 8 then {success=Binary.get_double_be(data, pos)} else {failure="Pack.Decode.double_be: not enough data for double"} /** Decode 64-bit float * @param le endianness **/ double(le:bool, data:Pack.t, pos:int) : outcome(float,string) = if le then double_le(data, pos) else double_be(data, pos) @private mksla(lora:bool, le:option(bool), size:option(Pack.s), typ:Pack.data, l:list(Pack.data)) : Pack.u = match (le, size) with | ({none},{none}) -> if lora then {List=(typ,l)} else {Array=(typ,LowLevelArray.of_list(l))} | ({some=le},{none}) -> if lora then {List=(typ,l); ~le} else {Array=(typ,LowLevelArray.of_list(l)); ~le} | ({none},{some=size}) -> if lora then {List=(typ,l); ~size} else {Array=(typ,LowLevelArray.of_list(l)); ~size} | ({some=le},{some=size}) -> if lora then {List=(typ,l); ~le; ~size} else {Array=(typ,LowLevelArray.of_list(l)); ~le; ~size} /** Decode list or array of data. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param lora true means List, false means Array * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param s the initial width for integers * @param typ proforma value for list/array elements * @param pos position in the binary data * @param data the resultant data is added to the start of this data element (used to accumulate) * @return the final endianness, signedness, integer width and buffer position * plus an outcome of either a [{List}] or [{Array}] item containing the data items read in. **/ list(lora:bool, ple:option(bool), ps:option(Pack.s), le:bool, signed:bool, s:Pack.s, typ:Pack.data, bin:Pack.t, pos:int) : outcome((bool, bool, Pack.s, int, Pack.u),string) = do pinput("Pack.Decode.list",{binary=bin; ~pos}) match mksize(Option.default(s,ps), Option.default(le,ple), 0) with | {success=size} -> match unpack([size], bin, pos) with | {success=(pos,[size])} -> match getsize(size) with | {success=len} -> rec aux(i, l, pos) = if i == len then {success=(le, signed, s, pos, mksla(lora, ple, ps, typ, List.rev(l)))} else match unpack(typ, bin, pos) with | {success=(npos,ndata)} -> aux(i+1, [ndata|l], npos) | {~failure} -> {~failure} end aux(0, [], pos) | {~failure} -> {~failure} end | {success=_} -> {failure="Pack.Decode.list: list has missing or multiple lengths"} | {~failure} -> {~failure} end | {~failure} -> {~failure} @private unpack_list(lora:bool, ple:option(bool), ps:option(Pack.s), le:bool, signed:bool, size:Pack.s, typ:Pack.data, bin:Pack.t, pos:int, data:Pack.data) : outcome((bool, bool, Pack.s, int, Pack.data),string) = match list(lora, ple, ps, le, signed, size, typ, bin, pos) with | {success=(le, signed, size, npos, item)} -> {success=(le, signed, size, npos, [item|data])} | {~failure} -> {~failure} /** Decode a null-terminated list. */ ntlist(lora:bool, typ:Pack.data, null:Pack.s, bin:Pack.t, pos:int) : outcome((int, Pack.u),string) = do pinput("Pack.Decode.ntlist",{binary=bin; ~pos}) rec aux(l, pos) = match unpack([{Int=0; size=null; signed=false}], bin, pos) with | {success=(npos,[{Int=0; ...}])} -> {success=(npos, mksla(lora, none, none, typ, List.rev(l)))} | _ -> match unpack(typ, bin, pos) with | {success=(npos,ndata)} -> aux([ndata|l], npos) | {~failure} -> {~failure} end aux([], pos) /** Decode a coded value. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param codes The list of recognised codes and matching data * @return A triple of the final buffer position, the actual matched code and the resulting data. **/ coded(codes:Pack.codes, bin:Pack.t, pos:int) : outcome((int, Pack.u, Pack.data),string) = match codes with | [] -> {failure="Pack.Decode.coded: no codes"} | [(code1,data1)|codes] -> if valid_code(code1) then (match unpack([code1], bin, pos) with | {success=(npos,[code])} -> (match List.assoc(code, [(code1,data1)|codes]) with | {some=cdata} -> (match unpack(cdata, bin, npos) with | {success=(npos,ndata)} -> {success=(npos, code, ndata)} | {~failure} -> {failure="Pack.Decode.coded: bad data {failure}"}) | {none} -> {failure="Pack.Decode.coded: missing code {code}"}) | {success=_} -> {failure="Pack.Decode.coded: multiple decodings"} | {~failure} -> {failure="Pack.Decode.coded: bad code {failure}"}) else {failure="Pack.Decode.coded: bad code {code1}"} @private unpack_coded(codes, data, le, signed, size, bin, pos) = match coded(codes, bin, pos) with | {success=(npos, code, ndata)} -> {success=(le, signed, size, npos, [{Coded=[(code,ndata)]}|data])} | {~failure} -> {~failure} @private unpack_int(data:Pack.data, size_type:option(Pack.s), actual_le:option(bool), return_le:bool, actual_signed:option(bool), return_signed:bool, actual_size:option(Pack.s), return_size:Pack.s, bin:Pack.t, pos:int) : outcome((bool, bool, Pack.s, int, Pack.data),string) = real_le = Option.default(return_le, actual_le) real_signed = Option.default(return_signed, actual_signed) real_size = Option.default(return_size, actual_size) match int(real_le, real_signed, real_size, bin, pos) with | {success=i} -> {success=(return_le, return_signed, return_size, pos+sizesize(real_size), [(match (size_type,actual_le,actual_size,actual_signed) with | ({none},{none},{none},{none}) -> {Int=i} | ({some={S}},{none},{none},{none}) -> {Short=i} | ({some={L}},{none},{none},{none}) -> {Long=i} | ({some={Ll}},{none},{none},{none}) -> {Longlong=i} | ({none},{none},{some=actual_size},{none}) -> {Int=i; size=actual_size} | ({none},{none},{none},{some=actual_signed}) -> {Int=i; signed=actual_signed} | ({some={S}},{none},{none},{some=actual_signed}) -> {Short=i; signed=actual_signed} | ({some={L}},{none},{none},{some=actual_signed}) -> {Long=i; signed=actual_signed} | ({some={Ll}},{none},{none},{some=actual_signed}) -> {Longlong=i; signed=actual_signed} | ({none},{none},{some=actual_size},{some=actual_signed}) -> {Int=i; size=actual_size; signed=actual_signed} | ({none},{some=actual_le},{none},{none}) -> {Int=i; le=actual_le} | ({some={S}},{some=actual_le},{none},{none}) -> {Short=i; le=actual_le} | ({some={L}},{some=actual_le},{none},{none}) -> {Long=i; le=actual_le} | ({some={Ll}},{some=actual_le},{none},{none}) -> {Longlong=i; le=actual_le} | ({none},{some=actual_le},{some=actual_size},{none}) -> {Int=i; le=actual_le; size=actual_size} | ({none},{some=actual_le},{none},{some=actual_signed}) -> {Int=i; le=actual_le; signed=actual_signed} | ({some={S}},{some=actual_le},{none},{some=actual_signed}) -> {Short=i; le=actual_le; signed=actual_signed} | ({some={L}},{some=actual_le},{none},{some=actual_signed}) -> {Long=i; le=actual_le; signed=actual_signed} | ({some={Ll}},{some=actual_le},{none},{some=actual_signed}) -> {Longlong=i; le=actual_le; signed=actual_signed} | ({none},{some=actual_le},{some=actual_size},{some=actual_signed}) -> {Int=i; le=actual_le; size=actual_size; signed=actual_signed} | _ -> @fail // no size for Short, Long or Longlong )|data])} | {~failure} -> {~failure} @private unpack_string(data:Pack.data, actual_le:option(bool), return_le:bool, signed:bool, actual_size:option(Pack.s), return_size:Pack.s, payload:Pack.data, bin:Pack.t, pos:int) : outcome((bool, bool, Pack.s, int, Pack.data),string) = real_le = Option.default(return_le, actual_le) real_size = Option.default(return_size, actual_size) match string(payload, real_le, real_size, bin, pos) with | {success=(payload,s)} -> {success=(return_le, signed, return_size, pos+String.length(s)+sizesize(real_size), [(match (payload, actual_le, actual_size) with | ([],{some=actual_le},{some=actual_size}) -> {String=s; le=actual_le; size=actual_size} | ([],{some=actual_le},{none}) -> {String=s; le=actual_le} | ([],{none},{some=actual_size}) -> {String=s; size=actual_size} | ([],{none},{none}) -> {String=s} | ([_|_],{some=actual_le},{some=actual_size}) -> {String=s; ~payload; le=actual_le; size=actual_size} | ([_|_],{some=actual_le},{none}) -> {String=s; ~payload; le=actual_le} | ([_|_],{none},{some=actual_size}) -> {String=s; ~payload; size=actual_size} | ([_|_],{none},{none}) -> {String=s; ~payload} )|data])} | {~failure} -> {~failure} @private unpack_binary(data:Pack.data, actual_le:option(bool), return_le:bool, signed:bool, actual_size:option(Pack.s), return_size:Pack.s, payload:Pack.data, bin:Pack.t, pos:int) : outcome((bool, bool, Pack.s, int, Pack.data),string) = real_le = Option.default(return_le, actual_le) real_size = Option.default(return_size, actual_size) match binary(payload, real_le, real_size, bin, pos) with | {success=(payload,b)} -> {success=(return_le, signed, return_size, pos+Binary.length(b)+sizesize(real_size), [(match (payload, actual_le, actual_size) with | ([],{some=actual_le},{some=actual_size}) -> {Binary=b; le=actual_le; size=actual_size} | ([],{some=actual_le},{none}) -> {Binary=b; le=actual_le} | ([],{none},{some=actual_size}) -> {Binary=b; size=actual_size} | ([],{none},{none}) -> {Binary=b} | ([_|_],{some=actual_le},{some=actual_size}) -> {Binary=b; ~payload; le=actual_le; size=actual_size} | ([_|_],{some=actual_le},{none}) -> {Binary=b; ~payload; le=actual_le} | ([_|_],{none},{some=actual_size}) -> {Binary=b; ~payload; size=actual_size} | ([_|_],{none},{none}) -> {Binary=b; ~payload} )|data])} | {~failure} -> {~failure} // Unpack item @private unpack_item(bin:Pack.t, u:Pack.u, acc) = match acc with | {~failure} -> {~failure} | {success=(le, signed, size, pos, data)} -> (match u:Pack.u with | {Be} -> {success=(false, signed, size, pos, [{Be}|data])} | {Le} -> {success=(true, signed, size, pos, [{Le}|data])} | {Signed} -> {success=(le, true, size, pos, [{Signed}|data])} | {Unsigned} -> {success=(le, false, size, pos, [{Unsigned}|data])} | {B} -> {success=(le, false, {B}, pos, [{B}|data])} | {S} -> {success=(le, false, {S}, pos, [{S}|data])} | {L} -> {success=(le, false, {L}, pos, [{L}|data])} | {Ll} -> {success=(le, false, {Ll}, pos, [{Ll}|data])} | {Char=_} -> (match char(bin, pos) with | {success=Char} -> {success=(le, signed, size, pos+1, [{~Char}|data])} | {~failure} -> {~failure}) | {Byte=_} -> (match byte(signed, bin, pos) with | {success=Byte} -> {success=(le, signed, size, pos+1, [{~Byte}|data])} | {~failure} -> {~failure}) | {Byte=_; signed=actual_signed} -> (match byte(actual_signed, bin, pos) with | {success=Byte} -> {success=(le, signed, size, pos+1, [{~Byte; signed=actual_signed}|data])} | {~failure} -> {~failure}) | {Short=_} -> unpack_int(data, {some={S}}, {none}, le, {none}, signed, {none}, {S}, bin, pos) | {Short=_; signed=actual_signed} -> unpack_int(data, {some={S}}, {none}, le, {some=actual_signed}, signed, {none}, {S}, bin, pos) | {Short=_; le=actual_le} -> unpack_int(data, {some={S}}, {some=actual_le}, le, {none}, signed, {none}, {S}, bin, pos) | {Short=_; le=actual_le; signed=actual_signed} -> unpack_int(data, {some={S}}, {some=actual_le}, le, {some=actual_signed}, signed, {none}, {S}, bin, pos) | {Long=_} -> unpack_int(data, {some={L}}, {none}, le, {none}, signed, {none}, {L}, bin, pos) | {Long=_; signed=actual_signed} -> unpack_int(data, {some={L}}, {none}, le, {some=actual_signed}, signed, {none}, {L}, bin, pos) | {Long=_; le=actual_le} -> unpack_int(data, {some={L}}, {some=actual_le}, le, {none}, signed, {none}, {L}, bin, pos) | {Long=_; le=actual_le; signed=actual_signed} -> unpack_int(data, {some={L}}, {some=actual_le}, le, {some=actual_signed}, signed, {none}, {L}, bin, pos) | {Longlong=_} -> unpack_int(data, {some={Ll}}, {none}, le, {none}, signed, {none}, {Ll}, bin, pos) | {Longlong=_; signed=actual_signed} -> unpack_int(data, {some={Ll}}, {none}, le, {some=actual_signed}, signed, {none}, {Ll}, bin, pos) | {Longlong=_; le=actual_le} -> unpack_int(data, {some={Ll}}, {some=actual_le}, le, {none}, signed, {none}, {Ll}, bin, pos) | {Longlong=_; le=actual_le; signed=actual_signed} -> unpack_int(data, {some={Ll}}, {some=actual_le}, le, {some=actual_signed}, signed, {none}, {Ll}, bin, pos) | {Int=_} -> unpack_int(data, {none}, {none}, le, {none}, signed, {none}, size, bin, pos) | {Int=_; size=actual_size} -> unpack_int(data, {none}, {none}, le, {none}, signed, {some=actual_size}, size, bin, pos) | {Int=_; signed=actual_signed} -> unpack_int(data, {none}, {none}, le, {some=actual_signed}, signed, {none}, size, bin, pos) | {Int=_; size=actual_size; signed=actual_signed} -> unpack_int(data, {none}, {none}, le, {some=actual_signed}, signed, {some=actual_size}, size, bin, pos) | {Int=_; le=actual_le} -> unpack_int(data, {none}, {some=actual_le}, le, {none}, signed, {none}, size, bin, pos) | {Int=_; le=actual_le; size=actual_size} -> unpack_int(data, {none}, {some=actual_le}, le, {none}, signed, {some=actual_size}, size, bin, pos) | {Int=_; le=actual_le; signed=actual_signed} -> unpack_int(data, {none}, {some=actual_le}, le, {some=actual_signed}, signed, {none}, size, bin, pos) | {Int=_; le=actual_le; size=actual_size; signed=actual_signed} -> unpack_int(data, {none}, {some=actual_le}, le, {some=actual_signed}, signed, {some=actual_size}, size, bin, pos) | {Int64=_} -> (match int64(le, bin, pos) with | {success=i64} -> {success=(le, signed, size, pos+8, [{Int64=i64}|data])} | {~failure} -> {~failure}) | {Pad} -> (match pad(bin, pos) with | {success=_} -> {success=(le, signed, size, pos+1, [{Pad}|data])} | {~failure} -> {~failure}) | {~Padn} -> (match padn(bin, pos, Padn) with | {success=_} -> {success=(le, signed, size, pos+Padn, [{~Padn}|data])} | {~failure} -> {~failure}) | {Empty} -> {success=(le, signed, size, pos, [{Empty}|data])} | {Empty; keep=k} -> {success=(le, signed, size, pos, [{Empty; keep=k}|data])} | {~Bound} -> (match boundary(bin, pos, Bound) with | {success=padding} -> {success=(le, signed, size, pos+padding, [{~Bound}|data])} | {~failure} -> {~failure}) | {Void} -> (match pad(bin, pos) with | {success=_} -> {success=(le, signed, size, pos+1, [{Void}|data])} | {~failure} -> {~failure}) | {Bool=_} -> (match bool(bin, pos) with | {success=Bool} -> {success=(le, signed, size, pos+1, [{~Bool}|data])} | {~failure} -> {~failure}) | {Cstring=_} -> (match cstring(bin, pos) with | {success=s} -> {success=(le, signed, size, pos+String.byte_length(s)+1, [{Cstring=s}|data])} | {~failure} -> {~failure}) | {String=_} -> unpack_string(data, {none}, le, signed, {none}, size, [], bin, pos) | {String=_; no_prefix} -> (match string_no_prefix(bin, pos) with | {success=s} -> {success=(le, signed, size, Binary.length(bin), [{String=s; no_prefix}|data])} | {~failure} -> {~failure}) | {String=_; size=actual_size} -> unpack_string(data, {none}, le, signed, {some=actual_size}, size, [], bin, pos) | {String=_; le=actual_le} -> unpack_string(data, {some=actual_le}, le, signed, {none}, size, [], bin, pos) | {String=_; le=actual_le; size=actual_size} -> unpack_string(data, {some=actual_le}, le, signed, {some=actual_size}, size, [], bin, pos) | {String=_; ~payload} -> unpack_string(data, {none}, le, signed, {none}, size, payload, bin, pos) | {String=_; ~payload; size=actual_size} -> unpack_string(data, {none}, le, signed, {some=actual_size}, size, payload, bin, pos) | {String=_; ~payload; le=actual_le} -> unpack_string(data, {some=actual_le}, le, signed, {none}, size, payload, bin, pos) | {String=_; ~payload; le=actual_le; size=actual_size} -> unpack_string(data, {some=actual_le}, le, signed, {some=actual_size}, size, payload, bin, pos) | {Binary=_} -> unpack_binary(data, {none}, le, signed, {none}, size, [], bin, pos) | {Binary=_; no_prefix} -> (match binary_no_prefix(bin, pos) with | {success=b} -> {success=(le, signed, size, Binary.length(bin), [{Binary=b; no_prefix}|data])} | {~failure} -> {~failure}) | {Binary=_; size=actual_size} -> unpack_binary(data, {none}, le, signed, {some=actual_size}, size, [], bin, pos) | {Binary=_; le=actual_le} -> unpack_binary(data, {some=actual_le}, le, signed, {none}, size, [], bin, pos) | {Binary=_; le=actual_le; size=actual_size} -> unpack_binary(data, {some=actual_le}, le, signed, {some=actual_size}, size, [], bin, pos) | {Binary=_; ~payload} -> unpack_binary(data, {none}, le, signed, {none}, size, payload, bin, pos) | {Binary=_; ~payload; size=actual_size} -> unpack_binary(data, {none}, le, signed, {some=actual_size}, size, payload, bin, pos) | {Binary=_; ~payload; le=actual_le} -> unpack_binary(data, {some=actual_le}, le, signed, {none}, size, payload, bin, pos) | {Binary=_; ~payload; le=actual_le; size=actual_size} -> unpack_binary(data, {some=actual_le}, le, signed, {some=actual_size}, size, payload, bin, pos) | {Float32=_} -> (match float(le, bin, pos) with | {success=Float32} -> {success=(le, signed, size, pos+4, [{~Float32}|data])} | {~failure} -> {~failure}) | {Float32=_; le=actual_le} -> (match float(actual_le, bin, pos) with | {success=Float32} -> {success=(le, signed, size, pos+4, [{~Float32; le=actual_le}|data])} | {~failure} -> {~failure}) | {Float=_} -> (match double(le, bin, pos) with | {success=Float} -> {success=(le, signed, size, pos+8, [{~Float}|data])} | {~failure} -> {~failure}) | {Float=_; le=actual_le} -> (match double(actual_le, bin, pos) with | {success=Float} -> {success=(le, signed, size, pos+8, [{~Float; le=actual_le}|data])} | {~failure} -> {~failure}) | {~Coded} -> unpack_coded(Coded, data, le, signed, size, bin, pos) | {List=(typ,_); ~null} -> (match ntlist(true, typ, null, bin, pos) with | {success=(pos, item)} -> {success=(le, signed, size, pos, [item|data])} | {~failure} -> {~failure}) | {List=(typ,_)} -> unpack_list(true, {none}, {none}, le, signed, size, typ, bin, pos, data) | {List=(typ,_); le=ple} -> unpack_list(true, {some=ple}, {none}, le, signed, size, typ, bin, pos, data) | {List=(typ,_); size=ps} -> unpack_list(true, {none}, {some=ps}, le, signed, size, typ, bin, pos, data) | {List=(typ,_); le=ple; size=ps} -> unpack_list(true, {some=ple}, {some=ps}, le, signed, size, typ, bin, pos, data) | {Array=(typ,_)} -> unpack_list(false, {none}, {none}, le, signed, size, typ, bin, pos, data) | {Array=(typ,_); le=ple} -> unpack_list(false, {some=ple}, {none}, le, signed, size, typ, bin, pos, data) | {Array=(typ,_); size=ps} -> unpack_list(false, {none}, {some=ps}, le, signed, size, typ, bin, pos, data) | {Array=(typ,_); le=ple; size=ps} -> unpack_list(false, {some=ple}, {some=ps}, le, signed, size, typ, bin, pos, data) | {Pack=d} -> (match unpack_data(le, signed, size, bin, pos, d) with | {success=(le,signed,size,pos,Pack)} -> {success=(le, signed, size, pos, [{~Pack}|data])} | {~failure} -> {~failure}) | {Reference=r} -> (match unpack_data(le, signed, size, bin, pos, ServerReference.get(r)) with | {success=(le,signed,size,pos,Pack)} -> do ServerReference.set(r,Pack) {success=(le, signed, size, pos, [{Reference=r}|data])} | {~failure} -> {~failure}) | {FixedString=(len,_)} -> (match fixed_string(bin, pos, len) with | {success=s} -> {success=(le, signed, size, pos+len, [{FixedString=(len,s)}|data])} | {~failure} -> {~failure}) | {FixedBinary=(len,_)} -> (match fixed_binary(bin, pos, len) with | {success=b} -> {success=(le, signed, size, pos+len, [{FixedBinary=(len,b)}|data])} | {~failure} -> {~failure}) ) /** Decode single item. * * Since this function is out of context and packing data can change the * endianness, signedness or integer width, you have to pass these in. * The return value includes the final context. * * @param le initial endianness (true=little endian) * @param signed initial signedness (true=signed) * @param size the initial width for integers * @param bin the binary data * @param pos position in the binary data * @param u the item specification * @return the final endianness, signedness, integer width and buffer position * plus an outcome of the item read in **/ unpack_u(le:bool, signed:bool, size:Pack.s, bin:Pack.t, pos:int, u:Pack.u) : outcome((bool, bool, Pack.s, int, Pack.u),string) = match unpack_item(bin, u, {success=(le, signed, size, pos, [])}) with | {success=(le, signed, size, pos, [item])} -> {success=(le, signed, size, pos, item)} | {success=(_, _, _, _, [])} -> {failure="Pack.Decode.unpack_u: no items"} | {success=(_, _, _, _, _)} -> {failure="Pack.Decode.unpack_u: multiple items"} | {~failure} -> {~failure} @private unpack_data(le:bool, signed:bool, size:Pack.s, bin:Pack.t, pos:int, data:Pack.data) : outcome((bool, bool, Pack.s, int, Pack.data),string) = if data == [] then {success=(le, signed, size, pos, [])} else match List.fold(unpack_item(bin, _, _), data, {success=(le, signed, size, pos, [])}) with | {success=(le,signed,size,pos,data)} -> {success=(le,signed,size,pos,List.rev(data))} | {~failure} -> {~failure} /** Decode data. * * Read in data starting with the default endianness, signedness and size from * the given binary data and position. * Note that empty data is not considered an error and will return empty data plus the current position. * * @param data the data specification * @param bin the binary data * @param pos position in the binary data * @return an outcome of the final buffer position and the data read in **/ unpack(data:Pack.data, bin:Pack.t, pos:int) : outcome((int,Pack.data),string) = unpack_with(data:Pack.data, bin:Pack.t, pos:int, default_options) /** * As [Pack.Decode.unpack] but with custom [options]. */ unpack_with(data:Pack.data, bin:Pack.t, pos:int, options:Pack.options) : outcome((int,Pack.data),string) = do pinput("Pack.Decode.unpack",{binary=bin; ~pos}) match unpack_data(options.endian, options.signed, options.size, bin, pos, data) with | {success=(_,_,_,pos,data)} -> {success=(pos,data)} | {~failure} -> {~failure} // meaningful entities @private has_data(u:Pack.u) : option(Pack.data) = match u with | {Be} -> none | {Le} -> none | {Signed} -> none | {Unsigned} -> none | {B} -> none | {S} -> none | {L} -> none | {Ll} -> none | {Char=_} -> {some=[u]} | {Byte=_; ...} -> {some=[u]} | {Short=_; ...} -> {some=[u]} | {Long=_; ...} -> {some=[u]} | {Longlong=_; ...} -> {some=[u]} | {~Int; ...} -> {some=[{~Int}]} | {Int64=_} -> {some=[u]} | {Pad} -> none | {Padn=_} -> none | {Empty} -> none | {Empty; ~keep} -> if keep then {some=[u]} else none | {Bound=_} -> none | {Void} -> {some=[u]} | {Bool=_} -> {some=[u]} | {Cstring=_} -> {some=[u]} | {~String; ...} -> {some=[{~String}]} | {~Binary; ...} -> {some=[{~Binary}]} | {Float32=_; ...} -> {some=[u]} | {Float=_; ...} -> {some=[u]} | {Coded=_} -> {some=[u]} | {List=_; ...} -> {some=[u]} | {Array=_; ...} -> {some=[u]} | {~Pack} -> {some=[{Pack=clean(Pack)}]} | {~Reference} -> {some=[{Reference=ServerReference.create(clean(ServerReference.get(Reference)))}]} | {FixedString=_} -> {some=[u]} | {FixedBinary=_} -> {some=[u]} /** Cleanup elements with no data * * All directives, padding and non-data items are filtered out. * Note that in situ directives (eg. {Int=1; size={S}}) including payloads are also removed and that * Pack items are flattened. **/ clean(data:Pack.data) = List.flatten(List.filter_map(has_data, data)) @private deref_u(u:Pack.u) : option(Pack.data) = match u with | {~Reference} -> {some=[{Pack=deref(ServerReference.get(Reference))}]} | _ -> {some=[u]} /** Turn references into non-reference Pack data */ deref(data:Pack.data) = List.flatten(List.filter_map(deref_u, data)) }} /** * {2 Unserialize data} * * The Unser functions provide a compositional functional decode over the Pack.input type. * * You can create a Pack.input value from binary data by: [{binary=bin_data; pos=0}] or you * can use the top-level start function provided here ([Pack.Unser.unser]). * * The idea here is that you can compose these functions: * * [unser_bs = Pack.Unser.tuple2(_, Pack.Unser.bool, Pack.Unser.short_be)] * * In general, these functions return a [Pack.result] type, which is an outcome of * an updated [Pack.input] type plus the value read in. **/ Unser = {{ skip(input:Pack.input, n:int) : Pack.result(void) = do pinput("Pack.Unser.skip({n})", input) if input.pos + n <= Binary.length(input.binary) then {success=({input with pos=input.pos+n},void)} else {failure="Pack.Unser.skip({n}): insufficient data"} /** Unpack char **/ char(input:Pack.input) : Pack.result(string) = do pinput("Pack.Unser.char", input) match Decode.char(input.binary, input.pos) with | {success=c} -> {success=({input with pos=input.pos+1},c)} | {~failure} -> {~failure} /** Unpack generalized int. * * @param le endianness (true=little endian) * @param signed signedness (true=signed) * @param size the width for integers * @param input the input value * @param pos position in the binary data * @return an int Pack.result **/ int(le:bool, signed:bool, size:Pack.s, input:Pack.input) : Pack.result(int) = //do pinput("Pack.Unser.int", input) match Decode.int(le, signed, size, input.binary, input.pos) with | {success=i} -> {success=({input with pos=input.pos+sizesize(size)},i)} | {~failure} -> {~failure} byte(signed:bool, input:Pack.input) = int(noEndian, signed, {B}, input) /** Unpack signed 8-bit int **/ octet(input:Pack.input) = byte(signedInts, input) /** Unpack unsigned 8-bit int **/ uoctet(input:Pack.input) = byte(unsignedInts, input) /** Unpack 16-bit int. * * @param le endianness (true=little endian) * @param signed signedness (true=signed) * @param input the input value * @return an int Pack.result **/ short(le:bool, signed:bool, input:Pack.input) = int(le, signed, {S}, input) /** Unpack signed 16-bit little-endian int **/ short_le(input:Pack.input) = int(littleEndian, signedInts, {S}, input) /** Unpack signed 16-bit big-endian int **/ short_be(input:Pack.input) = int(bigEndian, signedInts, {S}, input) /** Unpack unsigned 16-bit little-endian int **/ ushort_le(input:Pack.input) = int(littleEndian, unsignedInts, {S}, input) /** Unpack unsigned 16-bit big-endian int **/ ushort_be(input:Pack.input) = int(bigEndian, unsignedInts, {S}, input) /** Unpack 32-bit int. * * @param le endianness (true=little endian) * @param signed signedness (true=signed) * @param input the input value * @return an int Pack.result **/ long(le:bool, signed:bool, input:Pack.input) = int(le, signed, {L}, input) /** Unpack signed 32-bit little-endian int **/ long_le(input:Pack.input) = int(littleEndian, signedInts, {L}, input) /** Unpack signed 32-bit big-endian int **/ long_be(input:Pack.input) = int(bigEndian, signedInts, {L}, input) /** Unpack unsigned 32-bit little-endian int **/ ulong_le(input:Pack.input) = int(littleEndian, unsignedInts, {L}, input) /** Unpack unsigned 32-bit big-endian int **/ ulong_be(input:Pack.input) = int(bigEndian, unsignedInts, {L}, input) /** Unpack 64-bit int into native int. * * @param le endianness (true=little endian) * @param input the input value * @return an int Pack.result **/ longlong(le:bool, input:Pack.input) = int(le, signedInts, {Ll}, input) /** Unpack signed 64-bit little-endian int as native int **/ longlong_le(input:Pack.input) = int(littleEndian, signedInts, {Ll}, input) /** Unpack signed 64-bit big-endian int as native int **/ longlong_be(input:Pack.input) = int(bigEndian, signedInts, {Ll}, input) /** Unpack unsigned 64-bit int into int64. * * @param le endianness (true=little endian) * @param input the input value * @return an int64 Pack.result **/ int64(le:bool, input:Pack.input) : Pack.result(int64) = do pinput("Pack.Unser.int64", input) match Decode.int64(le, input.binary, input.pos) with | {success=i64} -> {success=({input with pos=input.pos+8},i64)} | {~failure} -> {~failure} /** Unpack unsigned 64-bit little-endian int as int64 **/ int64_le(input:Pack.input) = int64(true, input) /** Unpack unsigned 64-bit big-endian int as int64 **/ int64_be(input:Pack.input) = int64(false, input) /** Unpack 32-bit float. * * @param le endianness (true=little endian) * @param input the input value * @return a float Pack.result **/ float32(le:bool, input:Pack.input) : Pack.result(float) = do pinput("Pack.Unser.float", input) match Decode.float(le, input.binary, input.pos) with | {success=f} -> {success=({input with pos=input.pos+8},f)} | {~failure} -> {~failure} /** Unpack 64-bit float. * * @param le endianness (true=little endian) * @param input the input value * @return a float Pack.result **/ float(le:bool, input:Pack.input) : Pack.result(float) = do pinput("Pack.Unser.float", input) match Decode.double(le, input.binary, input.pos) with | {success=f} -> {success=({input with pos=input.pos+8},f)} | {~failure} -> {~failure} float_le(input:Pack.input) : Pack.result(float) = float(true, input) float_be(input:Pack.input) : Pack.result(float) = float(false, input) /** Unpack null-terminated string **/ cstring(input:Pack.input) : Pack.result(string) = do pinput("Pack.Unser.cstring", input) match Decode.cstring(input.binary, input.pos) with | {success=s} -> {success=({input with pos=input.pos+1+String.byte_length(s)},s)} | {~failure} -> {~failure} /** Unpack fixed-length string **/ fixed_string(input:Pack.input, len:int) : Pack.result(string) = do pinput("Pack.Unser.fixed", input) match Decode.fixed_string(input.binary, input.pos, len) with | {success=s} -> {success=({input with pos=input.pos+len},s)} | {~failure} -> {~failure} /** Unpack fixed-length binary **/ fixed_binary(input:Pack.input, len:int) : Pack.result(binary) = do pinput("Pack.Unser.fixed_binary(len={len})", input) match Decode.fixed_binary(input.binary, input.pos, len) with | {success=b} -> {success=({input with pos=input.pos+len},b)} | {~failure} -> {~failure} /** Unpack string, from current position to end of buffer **/ string_no_prefix(input:Pack.input) : Pack.result(string) = do pinput("Pack.Unser.string_no_prefix", input) match Decode.string_no_prefix(input.binary, input.pos) with | {success=s} -> {success=({input with pos=Binary.length(input.binary)},s)} | {~failure} -> {~failure} /** Unpack binary, from current position to end of buffer **/ binary_no_prefix(input:Pack.input) : Pack.result(binary) = do pinput("Pack.Unser.binary_no_prefix", input) match Decode.binary_no_prefix(input.binary, input.pos) with | {success=b} -> {success=({input with pos=Binary.length(input.binary)},b)} | {~failure} -> {~failure} /** Unpack size-prefixed string. * * @param le endianness (true=little endian) * @param size the width for integers * @param input the input value * @return a string Pack.result **/ string(le:bool, size:Pack.s, input:Pack.input) : Pack.result(string) = do pinput("Pack.Unser.string", input) match Decode.string([], le, size, input.binary, input.pos) with | {success=(_,s)} -> {success=({input with pos=input.pos+sizesize(size)+String.byte_length(s)},s)} | {~failure} -> {~failure} /** Unpack 8-bit int-prefixed string **/ string_b(input:Pack.input) = string(false, {B}, input) /** Unpack short-prefixed string. * * @param le endianness (true=little endian) * @param input the input value * @return a string Pack.result **/ string_s(le:bool, input:Pack.input) = string(le, {S}, input) /** Unpack 16-bit little-endian int-prefixed string **/ string_s_le(input:Pack.input) = string(true, {S}, input) /** Unpack 16-bit big-endian int-prefixed string **/ string_s_be(input:Pack.input) = string(false, {S}, input) /** Unpack long-prefixed string. * * @param le endianness (true=little endian) * @param input the input value * @return a string Pack.result **/ string_l(le:bool, input:Pack.input) = string(le, {L}, input) /** Unpack 32-bit little-endian int-prefixed string **/ string_l_le(input:Pack.input) = string(true, {L}, input) /** Unpack 32-bit big-endian int-prefixed string **/ string_l_be(input:Pack.input) = string(false, {L}, input) /** Unpack longlong-prefixed string. * * @param le endianness (true=little endian) * @param input the input value * @return a string Pack.result **/ string_ll(le:bool, input:Pack.input) = string(le, {Ll}, input) /** Unpack 64-bit little-endian int-prefixed string **/ string_ll_le(input:Pack.input) = string(true, {Ll}, input) /** Unpack 64-bit big-endian int-prefixed string **/ string_ll_be(input:Pack.input) = string(false, {Ll}, input) /** Unpack size-prefixed binary. * * @param le endianness (true=little endian) * @param size the width for integers * @param input the input value * @return a binary Pack.result **/ binary(le:bool, size:Pack.s, input:Pack.input) : Pack.result(binary) = do pinput("Pack.Unser.binary", input) match Decode.binary([], le, size, input.binary, input.pos) with | {success=(_,s)} -> {success=({input with pos=input.pos+sizesize(size)+Binary.length(s)},s)} | {~failure} -> {~failure} /** Unpack 8-bit int-prefixed binary **/ binary_b(input:Pack.input) = binary(false, {B}, input) /** Unpack short-prefixed binary. * * @param le endianness (true=little endian) * @param input the input value * @return a binary Pack.result **/ binary_s(le:bool, input:Pack.input) = binary(le, {S}, input) /** Unpack 16-bit little-endian int-prefixed binary **/ binary_s_le(input:Pack.input) = binary(true, {S}, input) /** Unpack 16-bit big-endian int-prefixed binary **/ binary_s_be(input:Pack.input) = binary(false, {S}, input) /** Unpack long-prefixed binary. * * @param le endianness (true=little endian) * @param input the input value * @return a binary Pack.result **/ binary_l(le:bool, input:Pack.input) = binary(le, {L}, input) /** Unpack 32-bit little-endian int-prefixed binary **/ binary_l_le(input:Pack.input) = binary(true, {L}, input) /** Unpack 32-bit big-endian int-prefixed binary **/ binary_l_be(input:Pack.input) = binary(false, {L}, input) /** Unpack longlong-prefixed binary. * * @param le endianness (true=little endian) * @param input the input value * @return a binary Pack.result **/ binary_ll(le:bool, input:Pack.input) = binary(le, {Ll}, input) /** Unpack 64-bit little-endian int-prefixed binary **/ binary_ll_le(input:Pack.input) = binary(true, {Ll}, input) /** Unpack 64-bit big-endian int-prefixed binary **/ binary_ll_be(input:Pack.input) = binary(false, {Ll}, input) /** Skip one byte of input **/ pad(input:Pack.input) : Pack.result(void) = do pinput("Pack.Unser.pad", input) match Decode.pad(input.binary, input.pos) with | {success=_} -> {success=({input with pos=input.pos+1},void)} | {~failure} -> {~failure} /** Skip n bytes of input **/ padn(n:int, input:Pack.input) : Pack.result(void) = do pinput("Pack.Unser.padn({n})", input) match Decode.padn(input.binary, input.pos, n) with | {success=_} -> {success=({input with pos=input.pos+1},void)} | {~failure} -> {~failure} /** Unpack single byte into bool **/ bool(input:Pack.input) : Pack.result(bool) = do pinput("Pack.Unser.bool", input) match Decode.bool(input.binary, input.pos) with | {success=b} -> {success=({input with pos=input.pos+1},b)} | {~failure} -> {~failure} /** Unpack coded value **/ coded(codes:Pack.codes, input:Pack.input) : Pack.result(Pack.data) = do pinput("Pack.Unser.coded", input) match Decode.coded(codes, input.binary, input.pos) with | {success=(pos, _code, data)} -> {success=({input with ~pos},data)} | {~failure} -> {~failure} /** Unpack reference value. * @param a function to unpack the value * @param input the input value * @result a Pack.result of a reference to the type returned by the unpack function, the reference is fresh **/ ref(a:Pack.input -> Pack.result('a), input:Pack.input) : Pack.result(Server.reference('a)) = do pinput("Pack.Unser.ref", input) match a(input) with | {success=(input,a)} -> {success=(input,ServerReference.create(a))} | {~failure} -> {~failure} /** Unpack into reference value. * @param a function to unpack the value * @param r reference value * @param input the input value * @result a void Pack.result, the value read in is used to update the reference **/ setref(a:Pack.input -> Pack.result('a), r:Server.reference('a), input:Pack.input) : Pack.result(void) = do pinput("Pack.Unser.setref", input) match a(input) with | {success=(input,a)} -> do ServerReference.set(r,a) {success=(input,void)} | {~failure} -> {~failure} /** Unpack optional value. * @param a function to unpack the value * @param input the input value * @result a Pack.result of an option of the type returned by the unpack function **/ option(a:Pack.input -> Pack.result('a), input:Pack.input): Pack.result(option('a)) = do pinput("Pack.Unser.option", input) match Decode.byte(false, input.binary, input.pos) with | {success=0} -> {success=({input with pos=input.pos+1},{none})} | {success=1} -> match a({input with pos=input.pos+1}) with | {success=(input, a)} -> {success=(input,{some=a})} | {~failure} -> {~failure} end | {success=n} -> {failure="Pack.Unser.option: bad option code {n}"} | {~failure} -> {~failure} /** Unpack list of values. * @param a function to unpack the values * @param le endianness (true=little endian) of the list prefix * @param size the width for the list prefix * @param input the input value * @result a Pack.result of a list of values of the type returned by the unpack function **/ list(a:Pack.input -> Pack.result('a), le:bool, size:Pack.s, input:Pack.input) : Pack.result(list('a)) = do pinput("Pack.Unser.list", input) match int(le, false, size, input) with | {success=(input,len)} -> do pinput("Pack.Unser.list: len={len}", input) rec aux(input, i, l) = if i == len then {success=(input,List.rev(l))} else match a(input) with | {success=(input, v:'a)} -> aux(input, i+1, [v|l]) | {~failure} -> {~failure} end aux(input, 0, []) | {~failure} -> {~failure} /** Unpack a null-terminated list of values. * @param a function to unpack the values * @param null the width for the null value * @param input the input value * @result a Pack.result of a list of values of the type returned by the unpack function **/ ntlist(a:Pack.input -> Pack.result('a), null:Pack.s, input:Pack.input) : Pack.result(list('a)) = do pinput("Pack.Unser.ntlist", input) rec aux(input, l) = match int(false, false, null, input) with | {success=(input,0)} -> {success=(input,List.rev(l))} | _ -> match a(input) with | {success=(input, v:'a)} -> aux(input, [v|l]) | {~failure} -> {~failure} end aux(input, []) /** Unpack array of values. * @param a function to unpack the values * @param le endianness (true=little endian) of the list prefix * @param size the width for the list prefix * @param input the input value * @result a Pack.result of an array of values of the type returned by the unpack function **/ array(a:Pack.input -> Pack.result('a), le:bool, size:Pack.s, def:'a, input:Pack.input) : Pack.result(llarray('a)) = do pinput("Pack.Unser.array", input) match int(le, false, size, input) with | {success=(input,len)} -> do pinput("Pack.Unser.array: len={len}", input) arr = LowLevelArray.create(len, def) rec aux(input, i) = if i == len then {success=(input,arr)} else match a(input) with | {success=(input, v:'a)} -> _ = LowLevelArray.set(arr, i, v) aux(input, i+1) | {~failure} -> {~failure} end aux(input, 0) | {~failure} -> {~failure} unser_to_none(ao:Pack.input -> Pack.result(option('a)), input:Pack.input) : Pack.result(list('a)) = rec aux(input) = match ao(input) with | {success=(input,{some=e})} -> match aux(input) with | {success=(input,l)} -> {success=(input,[e|l])} | {~failure} -> {~failure} end | {success=(input,{none})} -> {success=(input,[])} | {~failure} -> {~failure} aux(input) unser_to_end(a:Pack.input -> Pack.result('a), input:Pack.input) : Pack.result(list('a)) = rec aux(input) = match Int.ordering(input.pos,Binary.length(input.binary)) with | {gt} -> {failure="Pack.Unser.unser_to_end: overrun"} | {eq} -> {success=(input,[])} | {lt} -> (match a(input) with | {success=(input,e)} -> match aux(input) with | {success=(input,l)} -> {success=(input,[e|l])} | {~failure} -> {~failure} end | {~failure} -> {~failure}) aux(input) unser_optional_at_end(a:Pack.input -> Pack.result('a), input:Pack.input) : Pack.result(option('a)) = match Int.ordering(input.pos,Binary.length(input.binary)) with | {gt} -> {failure="Pack.Unser.unser_optional_at_end: overrun"} | {eq} -> {success=(input,none)} | {lt} -> (match a(input) with | {success=(input,e)} -> {success=(input,{some=e})} | {~failure} -> {~failure}) /** Unpack 2-tuple of values. * @param input the input value * @param a function to unpack the first value * @param b function to unpack the second value * @result a Pack.result of a tuple of the two values **/ tuple2(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b)) : Pack.result(('a,'b)) = do pinput("Pack.Unser.tuple2", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> {success=(input, (a,b))} | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack a 3-tuple of values **/ tuple3(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b), c:Pack.input -> Pack.result('c)) : Pack.result(('a,'b,'c)) = do pinput("Pack.Unser.tuple3", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> match c(input) with | {success=(input, c)} -> {success=(input, (a,b,c))} | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack a 4-tuple of values **/ tuple4(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b), c:Pack.input -> Pack.result('c), d:Pack.input -> Pack.result('d)) : Pack.result(('a,'b,'c,'d)) = do pinput("Pack.Unser.tuple4", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> match c(input) with | {success=(input, c)} -> match d(input) with | {success=(input, d)} -> {success=(input, (a,b,c,d))} | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack a 5-tuple of values **/ tuple5(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b), c:Pack.input -> Pack.result('c), d:Pack.input -> Pack.result('d), e:Pack.input -> Pack.result('e)) : Pack.result(('a,'b,'c,'d,'e)) = do pinput("Pack.Unser.tuple5", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> match c(input) with | {success=(input, c)} -> match d(input) with | {success=(input, d)} -> match e(input) with | {success=(input, e)} -> {success=(input, (a,b,c,d,e))} | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack a 6-tuple of values **/ tuple6(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b), c:Pack.input -> Pack.result('c), d:Pack.input -> Pack.result('d), e:Pack.input -> Pack.result('e), f:Pack.input -> Pack.result('f)) : Pack.result(('a,'b,'c,'d,'e,'f)) = do pinput("Pack.Unser.tuple6", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> match c(input) with | {success=(input, c)} -> match d(input) with | {success=(input, d)} -> match e(input) with | {success=(input, e)} -> match f(input) with | {success=(input, f)} -> {success=(input, (a,b,c,d,e,f))} | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack a 7-tuple of values **/ tuple7(input:Pack.input, a:Pack.input -> Pack.result('a), b:Pack.input -> Pack.result('b), c:Pack.input -> Pack.result('c), d:Pack.input -> Pack.result('d), e:Pack.input -> Pack.result('e), f:Pack.input -> Pack.result('f), g:Pack.input -> Pack.result('g)) : Pack.result(('a,'b,'c,'d,'e,'f,'g)) = do pinput("Pack.Unser.tuple7", input) match a(input) with | {success=(input, a)} -> match b(input) with | {success=(input, b)} -> match c(input) with | {success=(input, c)} -> match d(input) with | {success=(input, d)} -> match e(input) with | {success=(input, e)} -> match f(input) with | {success=(input, f)} -> match g(input) with | {success=(input, g)} -> {success=(input, (a,b,c,d,e,f,g))} | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} end | {~failure} -> {~failure} /** Unpack value from binary data. * @param a function to extract the data from the binary * @param binary the binary data * @param use_all_data when true then all the data in the binary must be used or en error is returned * @result an outcome of the value extracted or a string error message **/ unser_pos(a:Pack.input -> Pack.result('a), binary:Pack.t, use_all_data:bool) : outcome((Pack.input,'a),string) = input = {~binary; pos=0} do pinput("Pack.Unser.unser", input) match a(input) with | {success=(input, a)} -> len = Binary.length(binary) if use_all_data && input.pos != len then unused = len - input.pos {failure="Pack.Unser.unser: {unused} unused byte{if unused == 1 then "" else "s"} at end of data"} else {success=(input,a)} | {~failure} -> {~failure} unser(a:Pack.input -> Pack.result('a), binary:Pack.t, use_all_data:bool) : outcome('a,string) = match unser_pos(a, binary, use_all_data) with | {success=(_,a)} -> {success=a} | {~failure} -> {~failure} /** Same as Pack.Unser.unser, except that the binary data is copied from a string **/ from_string(a:Pack.input -> Pack.result('a), str:string, use_all_data:bool) : outcome('a,string) = unser(a, binary_of_string(str), use_all_data) }} }} // End of file pack.opa
Opa
5
Machiaweliczny/oppailang
lib/stdlib/core/pack/pack.opa
[ "MIT" ]
//tab_size=4 // Copyright 2021 nickmqb // SPDX-License-Identifier: Apache-2.0 BlockInfo struct { textureBits int infoBits int // Bits: 0-6: texture; 7: truncate_last_2_bits_on_pickup; 8: rotate; 9: rotate3; 10: truncate_last_4_bits_on_pickup; 11: is_gravity_block; 12: is_door } main() { ::currentAllocator = Memory.newArenaAllocator(16 * 1024 * 1024) generate() }
mupad
3
nickmqb/fpga_craft
block_info_gen/main.mu
[ "Apache-2.0" ]
.def("reqSubscribeTopic", &StockTdApi::reqSubscribeTopic) .def("reqUserLogin", &StockTdApi::reqUserLogin) .def("reqUserLogout", &StockTdApi::reqUserLogout) .def("reqUserPasswordUpdate", &StockTdApi::reqUserPasswordUpdate) .def("reqStockInsert", &StockTdApi::reqStockInsert) .def("reqStockCancel", &StockTdApi::reqStockCancel) .def("reqStockLock", &StockTdApi::reqStockLock) .def("reqOptionsInsert", &StockTdApi::reqOptionsInsert) .def("reqOptionsCancel", &StockTdApi::reqOptionsCancel) .def("reqQuoteInsert", &StockTdApi::reqQuoteInsert) .def("reqQuoteCancel", &StockTdApi::reqQuoteCancel) .def("reqForQuote", &StockTdApi::reqForQuote) .def("reqExercise", &StockTdApi::reqExercise) .def("reqExerciseCancel", &StockTdApi::reqExerciseCancel) .def("reqQryPartAccount", &StockTdApi::reqQryPartAccount) .def("reqQryStockOrder", &StockTdApi::reqQryStockOrder) .def("reqQryOptionsOrder", &StockTdApi::reqQryOptionsOrder) .def("reqQryQuoteOrder", &StockTdApi::reqQryQuoteOrder) .def("reqQryStockTrade", &StockTdApi::reqQryStockTrade) .def("reqQryOptionsTrade", &StockTdApi::reqQryOptionsTrade) .def("reqQryPosition", &StockTdApi::reqQryPosition) .def("reqQryTopic", &StockTdApi::reqQryTopic) .def("reqQryStock", &StockTdApi::reqQryStock) .def("reqQryOptions", &StockTdApi::reqQryOptions) .def("reqQryRate", &StockTdApi::reqQryRate) .def("reqQryClient", &StockTdApi::reqQryClient) .def("reqQryClientMargin", &StockTdApi::reqQryClientMargin) .def("reqQryExercise", &StockTdApi::reqQryExercise) .def("reqMarginCombAction", &StockTdApi::reqMarginCombAction) .def("reqQrySseCombPosition", &StockTdApi::reqQrySseCombPosition) .def("reqCombExercise", &StockTdApi::reqCombExercise) .def("onFrontConnected", &StockTdApi::onFrontConnected) .def("onFrontDisconnected", &StockTdApi::onFrontDisconnected) .def("onHeartBeatWarning", &StockTdApi::onHeartBeatWarning) .def("onPackageStart", &StockTdApi::onPackageStart) .def("onPackageEnd", &StockTdApi::onPackageEnd) .def("onRspSubscribeTopic", &StockTdApi::onRspSubscribeTopic) .def("onRspUserLogin", &StockTdApi::onRspUserLogin) .def("onRspUserLogout", &StockTdApi::onRspUserLogout) .def("onRspUserPasswordUpdate", &StockTdApi::onRspUserPasswordUpdate) .def("onRspStockInsert", &StockTdApi::onRspStockInsert) .def("onRspStockCancel", &StockTdApi::onRspStockCancel) .def("onRspOptionsInsert", &StockTdApi::onRspOptionsInsert) .def("onRspOptionsCancel", &StockTdApi::onRspOptionsCancel) .def("onRspQuoteInsert", &StockTdApi::onRspQuoteInsert) .def("onRspForQuote", &StockTdApi::onRspForQuote) .def("onRspQuoteCancel", &StockTdApi::onRspQuoteCancel) .def("onRspStockLock", &StockTdApi::onRspStockLock) .def("onRspExercise", &StockTdApi::onRspExercise) .def("onRspExerciseCancel", &StockTdApi::onRspExerciseCancel) .def("onRspQryPartAccount", &StockTdApi::onRspQryPartAccount) .def("onRspQryStockOrder", &StockTdApi::onRspQryStockOrder) .def("onRspQryOptionsOrder", &StockTdApi::onRspQryOptionsOrder) .def("onRspQryQuoteOrder", &StockTdApi::onRspQryQuoteOrder) .def("onRspQryStockTrade", &StockTdApi::onRspQryStockTrade) .def("onRspQryOptionsTrade", &StockTdApi::onRspQryOptionsTrade) .def("onRspQryPosition", &StockTdApi::onRspQryPosition) .def("onRspQryTopic", &StockTdApi::onRspQryTopic) .def("onRspQryStock", &StockTdApi::onRspQryStock) .def("onRspQryOptions", &StockTdApi::onRspQryOptions) .def("onRtnOptionsOrder", &StockTdApi::onRtnOptionsOrder) .def("onRtnStockOrder", &StockTdApi::onRtnStockOrder) .def("onRtnQuoteOrder", &StockTdApi::onRtnQuoteOrder) .def("onRtnOptionsTrade", &StockTdApi::onRtnOptionsTrade) .def("onRtnStockTrade", &StockTdApi::onRtnStockTrade) .def("onRtnExercise", &StockTdApi::onRtnExercise) .def("onRspQryRate", &StockTdApi::onRspQryRate) .def("onRspQryClient", &StockTdApi::onRspQryClient) .def("onRspQryClientMargin", &StockTdApi::onRspQryClientMargin) .def("onRspQryExercise", &StockTdApi::onRspQryExercise) .def("onRtnWithdrawDeposit", &StockTdApi::onRtnWithdrawDeposit) .def("onRspMarginCombAction", &StockTdApi::onRspMarginCombAction) .def("onRtnMarginCombAction", &StockTdApi::onRtnMarginCombAction) .def("onRspQrySseCombPosition", &StockTdApi::onRspQrySseCombPosition) .def("onRspCombExercise", &StockTdApi::onRspCombExercise) ;
C++
3
funrunskypalace/vnpy
vnpy/api/nh/generator/stock/nh_stock_source_module.cpp
[ "MIT" ]
@(type_);@(name);@(value)
EmberScript
0
esteve/colcon-core
colcon_core/shell/template/hook_prepend_value.dsv.em
[ "Apache-2.0" ]
Package { #name : #'GToolkit-Pharo6Compatibility' }
Smalltalk
0
markfirmware/gtoolkit
src/GToolkit-Pharo6Compatibility/package.st
[ "MIT" ]
/// <include file="Gui.xml" path="doc/EditWindow/*" /> CLASS EditWindow INHERIT ControlWindow /// <include file="Gui.xml" path="doc/EditWindow.AsString/*" /> METHOD AsString() RETURN SELF:TextValue /// <include file="Gui.xml" path="doc/EditWindow.Clear/*" /> METHOD Clear() oCtrl:Clear() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.Copy/*" /> METHOD Copy() oCtrl:Copy() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.Cut/*" /> METHOD Cut() oCtrl:Cut() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.Font/*" /> ASSIGN Font(oNewFont) LOCAL hFont AS PTR IF (hWnd != NULL_PTR) SELF:__SetFont(oNewFont) IF (oNewFont != NULL_OBJECT) oNewFont:Create() hFont := oNewFont:Handle() ELSE hFont := GetStockObject ( System_Font ) ENDIF SendMessage(hWnd, WM_SETFONT, DWORD(_CAST, hFont), 1) ENDIF RETURN /// <include file="Gui.xml" path="doc/EditWindow.GetLine/*" /> METHOD GetLine(nLineNumber, nMaxLength) RETURN oCtrl:GetLine(nLineNumber, nMaxLength) /// <include file="Gui.xml" path="doc/EditWindow.ctor/*" /> CONSTRUCTOR(oOwner, xID, oPoint, oDimension) SUPER(MultiLineEdit{oOwner,xID,oPoint,oDimension}) RETURN /// <include file="Gui.xml" path="doc/EditWindow.Length/*" /> ACCESS Length RETURN oCtrl:Length /// <include file="Gui.xml" path="doc/EditWindow.LineCount/*" /> ACCESS LineCount RETURN oCtrl:LineCount /// <include file="Gui.xml" path="doc/EditWindow.LineDown/*" /> METHOD LineDown() oCtrl:LineDown() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.LineUp/*" /> METHOD LineUp() oCtrl:LineUp() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.PageDown/*" /> METHOD PageDown() oCtrl:PageDown() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.PageUp/*" /> METHOD PageUp() oCtrl:PageUp() RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.Paste/*" /> METHOD Paste(cNewString) oCtrl:Paste(cNewString) RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.ScrollHorizontal/*" /> METHOD ScrollHorizontal(nChars) oCtrl:ScrollHorizontal(nChars) RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.ScrollVertical/*" /> METHOD ScrollVertical(nLines) oCtrl:ScrollVertical(nLines) RETURN SELF /// <include file="Gui.xml" path="doc/EditWindow.Selection/*" /> ACCESS Selection RETURN oCtrl:Selection /// <include file="Gui.xml" path="doc/EditWindow.Selection/*" /> ASSIGN Selection(oSelection) RETURN oCtrl:Selection:=oSelection /// <include file="Gui.xml" path="doc/EditWindow.TextLimit/*" /> ASSIGN TextLimit(nChars) RETURN oCtrl:TextLimit:=nChars /// <include file="Gui.xml" path="doc/EditWindow.TextValue/*" /> ACCESS TextValue RETURN oCtrl:TextValue /// <include file="Gui.xml" path="doc/EditWindow.TextValue/*" /> ASSIGN TextValue(cText) RETURN oCtrl:TextValue:=cText /// <include file="Gui.xml" path="doc/EditWindow.Undo/*" /> METHOD Undo() RETURN oCtrl:Undo() /// <include file="Gui.xml" path="doc/EditWindow.Value/*" /> ACCESS Value RETURN SELF:TextValue /// <include file="Gui.xml" path="doc/EditWindow.Value/*" /> ASSIGN Value(uValue) RETURN SELF:TextValue := AsString(uValue) END CLASS
xBase
3
orangesocks/XSharpPublic
Runtime/VOSDK/Source/VOSDK/GUI_Classes_SDK/EditWindow.prg
[ "Apache-2.0" ]
// --------------------------------------------------------------------- // The Great Computer Language Shootout // http://shootout.alioth.debian.org/ // // Requires that the PCRE [Perl Compatible Regular Expression] library // be installed [Pike needs to be rebuilt after this is installed]. // // Also, makes use of code from: // // http://buoy.riverweb.com:8080/viewrep/cvs/pike_modules/Public_Web_Wiki/module.pmod.in/module.pmod // // to approximate the expected [but not currently implemented] functionality // of 'Regexp.split'. Many thanks to Bill Welliver for suggesting this // approach. // // Contributed by Anthony Borla // --------------------------------------------------------------------- // // Extracted from 'pmod' module // class BaseRule { constant type = "BaseRule"; static object regexp; static function split_fun; int max_iterations = 10; string _sprintf(mixed ... args) { return sprintf("%s(%s)", type, regexp->pattern); } void create(string match) { regexp = _Regexp_PCRE(match, Regexp.PCRE.OPTION.MULTILINE); split_fun = regexp->split; } array replace(string subject,string|function with, mixed|void ... args) { int i=0; array res = ({}); for (;;) { array substrings = ({}); array(int)|int v=regexp->exec(subject,i); if (intp(v) && !regexp->handle_exec_error([int]v)) break; if (v[0]>i) res+=({subject[i..v[0]-1]}); if(sizeof(v)>2) { int c = 2; do { substrings += ({ subject[v[c]..(v[c+1]-1)] }); c+=2; } while(c<= (sizeof(v)-2)); } if (stringp(with)) res+=({with}); else { array o = with(subject[v[0]..v[1]-1], substrings, @args); res+=o; } i=v[1]; } res+=({subject[i..]}); return res; } } // -------------------------------- constant VARIANTS = ({ "agggtaaa|tttaccct", "[cgt]gggtaaa|tttaccc[acg]", "a[act]ggtaaa|tttacc[agt]t", "ag[act]gtaaa|tttac[agt]ct", "agg[act]taaa|ttta[agt]cct", "aggg[acg]aaa|ttt[cgt]ccct", "agggt[cgt]aa|tt[acg]accct", "agggta[cgt]a|t[acg]taccct", "agggtaa[cgt]|[acg]ttaccct"}); constant IUBS = ([ "B":"(c|g|t)", "D":"(a|g|t)", "H":"(a|c|t)", "K":"(g|t)", "M":"(a|c)", "N":"(a|c|g|t)", "R":"(a|g)", "S":"(c|g)", "V":"(a|c|g)", "W":"(a|t)", "Y":"(c|t)"]); // -------------------------------- int main() { // Read input data into string and record its length string seq = Stdio.stdin->read(); int initial_length = sizeof(seq); // Remove all newline and segment divider line occurrences seq = Regexp.replace("(>.*\n)|(\n)", seq, ""); int code_length = sizeof(seq); // Perform regexp counts foreach(VARIANTS, string var) { // 'Regexp.split' version would probably look like this: // // int number_of_matches; string pattern = "(?i)" + var; // // if (array(string) matches = Regexp.split(pattern, seq)) // number_of_matches = sizeof(matches); // // 'pmod' module version int number_of_matches = sizeof(BaseRule("(?i)" + var)->replace(seq, "")) / 2; write("%s %d\n", var, number_of_matches); } // Perform replacements foreach(indices(IUBS), string key) { seq = Regexp.replace(key, seq, IUBS[key]); } // Print statistics write("\n%d\n%d\n%d\n", initial_length, code_length, sizeof(seq)); return 0; }
Pike
4
kragen/shootout
bench/regexdna/regexdna.pike
[ "BSD-3-Clause" ]
%= $_[0] + 20 Hello World!
Mathematica
0
reneeb/mojo
t/mojo/templates/test.mt
[ "Artistic-2.0" ]
// Daniel Shiffman // http://codingtra.in // http://patreon.com/codingtrain // Video: https://youtu.be/xXjRlEr7AGk class Segment { PVector a; float len; float angle; float selfAngle; float t = random(1000); Segment parent = null; Segment child = null; float sw = 1; PVector b; Segment(Segment parent_, float len_, float angle_, float index) { parent = parent_; a = parent.b.copy(); len = len_; angle = angle_; selfAngle = angle; calculateB(); sw = 10-index*2; //t = t_; } Segment(float x, float y, float len_, float angle_, float index) { a = new PVector(x, y); len = len_; angle = angle_; calculateB(); parent = null; sw = 10-index*2; //t = t_; } void wiggle() { float maxangle = 2; float minangle = -2; selfAngle = map(noise(t), 0, 1, minangle, maxangle); t += 0.05; //selfAngle = selfAngle + 0.01; } void update() { angle = selfAngle; if (parent != null) { a = parent.b.copy(); angle += parent.angle; } else { angle += -PI/2; } calculateB(); } void calculateB() { float dx = len * cos(angle); float dy = len * sin(angle); b = new PVector(a.x+dx, a.y+dy); } void show() { stroke(255); strokeWeight(sw); line(a.x, a.y, b.x, b.y); } }
Processing
4
aerinkayne/website
CodingChallenges/CC_064.1_ForwardKinematics/Processing/CC_064_1_B_ForwardKinematics/Segment.pde
[ "MIT" ]
logging.level.root=INFO # OracleDB connection settings spring.datasource.url=jdbc:oracle:thin:@//localhost:11521/ORCLPDB1 spring.datasource.username=books spring.datasource.password=books spring.datasource.driver-class-name=oracle.jdbc.OracleDriver # Comment this line for standard Spring Boot default choosing algorithm #spring.datasource.type=org.apache.tomcat.jdbc.pool.DataSource # HikariCP settings spring.datasource.hikari.minimumIdle=5 spring.datasource.hikari.maximumPoolSize=20 spring.datasource.hikari.idleTimeout=30000 spring.datasource.hikari.maxLifetime=2000000 spring.datasource.hikari.connectionTimeout=30000 spring.datasource.hikari.poolName=HikariPoolBooks # Tomcat settings spring.datasource.tomcat.maxActive=15 spring.datasource.tomcat.minIdle=5 # UCP settings #Note: These properties require JDBC version 21.0.0.0 spring.datasource.ucp.connection-factory-class-name=oracle.jdbc.pool.OracleDataSource spring.datasource.ucp.sql-for-validate-connection=select * from dual spring.datasource.ucp.connection-pool-name=UcpPoolBooks spring.datasource.ucp.initial-pool-size=5 spring.datasource.ucp.min-pool-size=5 spring.datasource.ucp.max-pool-size=10 # JPA settings spring.jpa.database-platform=org.hibernate.dialect.Oracle12cDialect spring.jpa.hibernate.use-new-id-generator-mappings=false spring.jpa.hibernate.ddl-auto=create
INI
3
DBatOWL/tutorials
persistence-modules/spring-boot-persistence-2/src/main/resources/application-oracle-pooling-basic.properties
[ "MIT" ]
/** * Colors */ @taiga-light: darken(#A3ACB1, 10%); @taiga-lighter: #F0F7FA; @taiga-dark: darken(#727C83, 4%); @taiga-accent: #5DADE1; @white: #ffffff; /** * Borders */ @base-border-radius: 4px;
Less
2
cnheider/nylas-mail
packages/client-app/internal_packages/ui-taiga/styles/variables.less
[ "MIT" ]
#eval rbtree.from_list [3, 4, 2, 5, 1] (<) #eval rbtree.from_list [3, 4, 2, 5, 1] (>) #eval (rbtree.from_list [3, 4, 2, 5]).to_list #eval rbtree.from_list [3, 4, 2, 5] #eval rbtree.to_list $ rbtree.from_list [3, 4, 2, 5]
Lean
3
JLimperg/lean
tests/lean/run/rbtree1.lean
[ "Apache-2.0" ]
:- object(epq). :- info([ version is 0:0:0, author is 'Paul Tarau. Adapted to Logtalk by Paulo Moura', date is 2016-06-18, comment is 'Description' ]). :- public(new/1). :- mode(new(-engine), one). :- info(new/1, [ comment is 'Description', argnames is ['Queue'] ]). :- public(top/2). :- mode(top(@engine, ?term), zero_or_one). :- info(top/2, [ comment is 'Description', argnames is ['Queue', 'Term'] ]). :- public(insert/2). :- mode(insert(@engine, @term), one). :- info(insert/2, [ comment is 'Description', argnames is ['Queue', 'Term'] ]). :- public(insert/3). :- mode(insert(@engine, +integer, @term), one). :- info(insert/3, [ comment is 'Description', argnames is ['Queue', 'Priority', 'Term'] ]). :- public(delete/2). :- mode(delete(@engine, -term), zero_or_one). :- info(delete/2, [ comment is 'Description', argnames is ['Queue', 'Term'] ]). :- threaded. new(Queue) :- minheap::new(Heap), threaded_engine_create(_, loop(Heap), Queue). destroy(Queue) :- threaded_engine_destroy(Queue). loop(Heap):- threaded_engine_fetch(Op), dispatch(Op, Heap, NewHeap), % {garbage_collect}, loop(NewHeap). dispatch(top(Term), Heap, Heap) :- ( minheap::top(Heap, _, Term) -> threaded_engine_yield(Term) ; threaded_engine_yield('$empty') ). dispatch(insert(Priority,Term), Heap, NewHeap) :- minheap::insert(Priority, Term, Heap, NewHeap). dispatch(delete, Heap, NewHeap) :- minheap::delete(Heap, _, Term, NewHeap), threaded_engine_yield(Term). top(Queue, Term) :- threaded_engine_post(Queue, top(Term)), threaded_engine_next(Queue, Term), Term \== '$empty'. insert(Queue, Priority, Term) :- threaded_engine_post(Queue, insert(Priority,Term)). insert(Queue, Term) :- Priority is 1<<28, threaded_engine_post(Queue, insert(Priority,Term)). delete(Queue, Term) :- threaded_engine_post(Queue, delete), threaded_engine_next(Queue, Term). :- public(go/0). go:- new(Q), insert(Q,one), insert(Q,10,two), insert(Q,5,three), delete(Q,Three), delete(Q,Two), delete(Q,One), write([Three,Two,One]), nl, destroy(Q). :- end_object.
Logtalk
4
PaulBrownMagic/logtalk3
examples/engines/eheaps/eheaps.lgt
[ "Apache-2.0" ]
// Run: sudo bin/click --dpdk -c 0x4 -n 4 --proc-type secondary -v -- conf/dpdk/dpdk-ring-secondary.click define( $queueSize 1024 ); // Rx ring from Main (primary) to NF1 (secondary) nf1_from_main :: FromDPDKRing(MEM_POOL 1, FROM_PROC nf1_rx, TO_PROC main_tx); // Tx ring from NF1 (secondary) back to Main (primary) nf1_to_main :: ToDPDKRing (MEM_POOL 2, FROM_PROC nf1_tx, TO_PROC main_rx, IQUEUE $queueSize); nf1_from_main -> Print(NF1) -> nf1_to_main;
Click
3
BorisPis/asplos22-nicmem-fastclick
conf/dpdk/dpdk-ring-secondary.click
[ "BSD-3-Clause-Clear" ]
FancySpec describe: DynamicValueArray with: { it: "has the correct values defined" when: { dva = DynamicValueArray new dva tap: @{ name: "Chris" age: 25 country: "Germany" another_symbol and_another_one } . array is: [['name, "Chris"], ['age, 25], ['country, "Germany"], 'another_symbol, 'and_another_one] } }
Fancy
3
bakkdoor/fancy
tests/dynamic_value_array.fy
[ "BSD-3-Clause" ]
{ "class" : { }, "instance" : { "clientList:listElement:" : "dkh 03/20/2014 16:27", "copyObjectMenuAction:selectionIndex:" : "dkh 10/13/2013 10:20", "definitionForSelection:" : "dkh 10/13/2013 10:15", "editMenuActionSpec" : "dkh 10/13/2013 10:19", "itemSelected:listElement:selectedIndex:shiftPressed:" : "dkh 10/20/2013 11:06", "menuActionSpec:" : "dkh 10/19/2013 17:12", "repository:" : "dkh 10/19/2013 17:36", "theList" : "dkh 10/12/2013 15:51", "versionInfoBlock:" : "dkh 10/19/2013 17:08", "versionInfoDiffVsSelection:selectedIndex:" : "dkh 10/19/2013 17:48", "versionInfoDiffVsWorkingCopy:selectedIndex:" : "dkh 10/20/2013 12:36", "versionInfoSelect:selectedIndex:" : "dkh 10/12/2013 17:04", "versionInfos" : "dkh 10/19/2013 17:13", "versionSummaryIsClosing" : "dkh 10/20/2013 10:19", "windowIsClosing:" : "dkh 10/20/2013 10:39", "windowLabel" : "dkh 05/20/2014 11:00", "windowLocation" : "dkh 05/23/2014 10:17", "windowName" : "dkh 10/12/2013 16:00", "workingCopy" : "dkh 10/12/2013 16:16", "workingCopy:" : "dkh 10/12/2013 16:17" } }
STON
1
JavascriptID/sourcerer-app
src/test/resources/samples/langs/STON/methodProperties.ston
[ "MIT" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { IEditorConfiguration } from 'vs/editor/common/config/editorConfiguration'; import { ViewEventHandler } from 'vs/editor/common/viewEventHandler'; import { IViewLayout, IViewModel } from 'vs/editor/common/viewModel'; import { IColorTheme } from 'vs/platform/theme/common/themeService'; import { EditorTheme } from 'vs/editor/common/editorTheme'; export class ViewContext { public readonly configuration: IEditorConfiguration; public readonly viewModel: IViewModel; public readonly viewLayout: IViewLayout; public readonly theme: EditorTheme; constructor( configuration: IEditorConfiguration, theme: IColorTheme, model: IViewModel ) { this.configuration = configuration; this.theme = new EditorTheme(theme); this.viewModel = model; this.viewLayout = model.viewLayout; } public addEventHandler(eventHandler: ViewEventHandler): void { this.viewModel.addViewEventHandler(eventHandler); } public removeEventHandler(eventHandler: ViewEventHandler): void { this.viewModel.removeViewEventHandler(eventHandler); } }
TypeScript
4
sbj42/vscode
src/vs/editor/common/viewModel/viewContext.ts
[ "MIT" ]
<%= tag.p do %> <%= tag.b 'Hello' %> <% end %>
HTML+ERB
3
mdesantis/rails
actionview/test/fixtures/test/_builder_tag_nested_in_content_tag.erb
[ "MIT" ]
# Tests that Spack can handle targets in include files include include.ninja
Ninja
0
kkauder/spack
lib/spack/spack/test/data/ninja/affirmative/include/build.ninja
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
use super::mul_div_u64; #[test] fn test_muldiv() { assert_eq!(mul_div_u64(1_000_000_000_001, 1_000_000_000, 1_000_000), 1_000_000_000_001_000); }
Rust
4
Eric-Arellano/rust
library/std/src/sys_common/tests.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
KIDS Distribution saved on Nov 18, 2021@15:42:23 Test Release SAMI*18.0*15 SEQ #15 T2 (sami-18-x-15-t2) **KIDS**:SAMI*18.0*15^ **INSTALL NAME** SAMI*18.0*15 "BLD",11517,0) SAMI*18.0*15^SAMI^0^3211118^n "BLD",11517,4,0) ^9.64PA^311.14^1 "BLD",11517,4,311.14,0) 311.14 "BLD",11517,4,311.14,222) y^y^f^^^^y "BLD",11517,4,"B",311.14,311.14) "BLD",11517,6.3) 3 "BLD",11517,"INID") ^n "BLD",11517,"INIT") POS1815^SAMIPAT "BLD",11517,"KRN",0) ^9.67PA^1.5^25 "BLD",11517,"KRN",.4,0) .4 "BLD",11517,"KRN",.401,0) .401 "BLD",11517,"KRN",.402,0) .402 "BLD",11517,"KRN",.403,0) .403 "BLD",11517,"KRN",.5,0) .5 "BLD",11517,"KRN",.84,0) .84 "BLD",11517,"KRN",1.5,0) 1.5 "BLD",11517,"KRN",1.6,0) 1.6 "BLD",11517,"KRN",1.61,0) 1.61 "BLD",11517,"KRN",1.62,0) 1.62 "BLD",11517,"KRN",3.6,0) 3.6 "BLD",11517,"KRN",3.8,0) 3.8 "BLD",11517,"KRN",9.2,0) 9.2 "BLD",11517,"KRN",9.8,0) 9.8 "BLD",11517,"KRN",9.8,"NM",0) ^9.68A^19^19 "BLD",11517,"KRN",9.8,"NM",1,0) SAMIADMN^^0^B83894517 "BLD",11517,"KRN",9.8,"NM",2,0) SAMICAS3^^0^B497699119 "BLD",11517,"KRN",9.8,"NM",3,0) SAMICTD2^^0^B193069319 "BLD",11517,"KRN",9.8,"NM",4,0) SAMICTT0^^0^B100450717 "BLD",11517,"KRN",9.8,"NM",5,0) SAMICTT3^^0^B396705116 "BLD",11517,"KRN",9.8,"NM",6,0) SAMICTUL^^0^B108974 "BLD",11517,"KRN",9.8,"NM",7,0) SAMICUL^^0^B136079 "BLD",11517,"KRN",9.8,"NM",8,0) SAMIHOM4^^0^B942502406 "BLD",11517,"KRN",9.8,"NM",9,0) SAMIHUL^^0^B114424 "BLD",11517,"KRN",9.8,"NM",10,0) SAMIMOV^^0^B53328513 "BLD",11517,"KRN",9.8,"NM",11,0) SAMINOT1^^0^B553022339 "BLD",11517,"KRN",9.8,"NM",12,0) SAMINOT2^^0^B485555129 "BLD",11517,"KRN",9.8,"NM",13,0) SAMINOT3^^0^B302971406 "BLD",11517,"KRN",9.8,"NM",14,0) SAMINUL^^0^B99336 "BLD",11517,"KRN",9.8,"NM",15,0) SAMIPARM^^0^B24000410 "BLD",11517,"KRN",9.8,"NM",16,0) SAMIPAT^^0^B7942469 "BLD",11517,"KRN",9.8,"NM",17,0) SAMIUR^^0^B672809912 "BLD",11517,"KRN",9.8,"NM",18,0) SAMIUR2^^0^B1367473447 "BLD",11517,"KRN",9.8,"NM",19,0) SAMIURUL^^0^B107481 "BLD",11517,"KRN",9.8,"NM","B","SAMIADMN",1) "BLD",11517,"KRN",9.8,"NM","B","SAMICAS3",2) "BLD",11517,"KRN",9.8,"NM","B","SAMICTD2",3) "BLD",11517,"KRN",9.8,"NM","B","SAMICTT0",4) "BLD",11517,"KRN",9.8,"NM","B","SAMICTT3",5) "BLD",11517,"KRN",9.8,"NM","B","SAMICTUL",6) "BLD",11517,"KRN",9.8,"NM","B","SAMICUL",7) "BLD",11517,"KRN",9.8,"NM","B","SAMIHOM4",8) "BLD",11517,"KRN",9.8,"NM","B","SAMIHUL",9) "BLD",11517,"KRN",9.8,"NM","B","SAMIMOV",10) "BLD",11517,"KRN",9.8,"NM","B","SAMINOT1",11) "BLD",11517,"KRN",9.8,"NM","B","SAMINOT2",12) "BLD",11517,"KRN",9.8,"NM","B","SAMINOT3",13) "BLD",11517,"KRN",9.8,"NM","B","SAMINUL",14) "BLD",11517,"KRN",9.8,"NM","B","SAMIPARM",15) "BLD",11517,"KRN",9.8,"NM","B","SAMIPAT",16) "BLD",11517,"KRN",9.8,"NM","B","SAMIUR",17) "BLD",11517,"KRN",9.8,"NM","B","SAMIUR2",18) "BLD",11517,"KRN",9.8,"NM","B","SAMIURUL",19) "BLD",11517,"KRN",19,0) 19 "BLD",11517,"KRN",19.1,0) 19.1 "BLD",11517,"KRN",101,0) 101 "BLD",11517,"KRN",409.61,0) 409.61 "BLD",11517,"KRN",771,0) 771 "BLD",11517,"KRN",779.2,0) 779.2 "BLD",11517,"KRN",870,0) 870 "BLD",11517,"KRN",8989.51,0) 8989.51 "BLD",11517,"KRN",8989.52,0) 8989.52 "BLD",11517,"KRN",8989.52,"NM",0) ^9.68A^^ "BLD",11517,"KRN",8993,0) 8993 "BLD",11517,"KRN",8994,0) 8994 "BLD",11517,"KRN","B",.4,.4) "BLD",11517,"KRN","B",.401,.401) "BLD",11517,"KRN","B",.402,.402) "BLD",11517,"KRN","B",.403,.403) "BLD",11517,"KRN","B",.5,.5) "BLD",11517,"KRN","B",.84,.84) "BLD",11517,"KRN","B",1.5,1.5) "BLD",11517,"KRN","B",1.6,1.6) "BLD",11517,"KRN","B",1.61,1.61) "BLD",11517,"KRN","B",1.62,1.62) "BLD",11517,"KRN","B",3.6,3.6) "BLD",11517,"KRN","B",3.8,3.8) "BLD",11517,"KRN","B",9.2,9.2) "BLD",11517,"KRN","B",9.8,9.8) "BLD",11517,"KRN","B",19,19) "BLD",11517,"KRN","B",19.1,19.1) "BLD",11517,"KRN","B",101,101) "BLD",11517,"KRN","B",409.61,409.61) "BLD",11517,"KRN","B",771,771) "BLD",11517,"KRN","B",779.2,779.2) "BLD",11517,"KRN","B",870,870) "BLD",11517,"KRN","B",8989.51,8989.51) "BLD",11517,"KRN","B",8989.52,8989.52) "BLD",11517,"KRN","B",8993,8993) "BLD",11517,"KRN","B",8994,8994) "BLD",11517,"QUES",0) ^9.62^^ "BLD",11517,"REQB",0) ^9.611^13^12 "BLD",11517,"REQB",1,0) SAMI*18.0*1^0 "BLD",11517,"REQB",2,0) SAMI*18.0*2^0 "BLD",11517,"REQB",3,0) SAMI*18.0*3^0 "BLD",11517,"REQB",4,0) SAMI*18.0*4^0 "BLD",11517,"REQB",5,0) SAMI 18.0T05^0 "BLD",11517,"REQB",6,0) SAMI*18.0*6^0 "BLD",11517,"REQB",8,0) SAMI*18.0*8^0 "BLD",11517,"REQB",9,0) SAMI*18.0*9^0 "BLD",11517,"REQB",10,0) SAMI*18.0*10^0 "BLD",11517,"REQB",11,0) SAMI*18.0*11^0 "BLD",11517,"REQB",12,0) SAMI*18.0*12^0 "BLD",11517,"REQB",13,0) SAMI*18.0*13^0 "BLD",11517,"REQB","B","SAMI 18.0T05",5) "BLD",11517,"REQB","B","SAMI*18.0*1",1) "BLD",11517,"REQB","B","SAMI*18.0*10",10) "BLD",11517,"REQB","B","SAMI*18.0*11",11) "BLD",11517,"REQB","B","SAMI*18.0*12",12) "BLD",11517,"REQB","B","SAMI*18.0*13",13) "BLD",11517,"REQB","B","SAMI*18.0*2",2) "BLD",11517,"REQB","B","SAMI*18.0*3",3) "BLD",11517,"REQB","B","SAMI*18.0*4",4) "BLD",11517,"REQB","B","SAMI*18.0*6",6) "BLD",11517,"REQB","B","SAMI*18.0*8",8) "BLD",11517,"REQB","B","SAMI*18.0*9",9) "DATA",311.14,1,0) Non VA "DATA",311.14,1,1,0) ^311.141^10^10 "DATA",311.14,1,1,1,0) socialSecurityNumber^Patient ID "DATA",311.14,1,1,2,0) socialSecurityNumber.short^PID "DATA",311.14,1,1,3,0) socialSecurityNumber.mask "DATA",311.14,1,1,4,0) socialSecurityNumber.regex "DATA",311.14,1,1,5,0) matchingReportEnabled^true "DATA",311.14,1,1,6,0) ruralUrbanChartEnabled^false "DATA",311.14,1,1,7,0) lungradsOrElcapCTtemplate^elcap "DATA",311.14,1,1,8,0) username^User Name "DATA",311.14,1,1,9,0) password^Password "DATA",311.14,1,1,10,0) veteransAffairsSite^false "DATA",311.14,2,0) VHA "DATA",311.14,2,1,0) ^311.141^10^10 "DATA",311.14,2,1,1,0) socialSecurityNumber^Social Security Number "DATA",311.14,2,1,2,0) socialSecurityNumber.short^SSN "DATA",311.14,2,1,3,0) socialSecurityNumber.mask^000-00-0000 "DATA",311.14,2,1,4,0) socialSecurityNumber.regex^`(?!(000|666|9(?!99)))\d{3}-(?!00)\d{2}-(?!0000)\d{4}$ "DATA",311.14,2,1,5,0) matchingReportEnabled^true "DATA",311.14,2,1,6,0) ruralUrbanChartEnabled^true "DATA",311.14,2,1,7,0) lungradsOrElcapCTtemplate^lungrads "DATA",311.14,2,1,8,0) username^Access "DATA",311.14,2,1,9,0) password^Verify "DATA",311.14,2,1,10,0) veteransAffairsSite^true "DATA",311.14,3,0) SYS "DATA",311.14,3,1,0) ^311.141^6^7 "DATA",311.14,3,1,1,0) samiSystemVersion^sami-18-x-15-t2 "DATA",311.14,3,1,2,0) systemDemoOnly^false "DATA",311.14,3,1,3,0) systemDemoUseDUZ "DATA",311.14,3,1,4,0) systemVersion^18.2 "DATA",311.14,3,1,5,0) username^Access "DATA",311.14,3,1,6,0) verify^Verify "DATA",311.14,3,1,7,0) password^Verify "FIA",311.14) SAMI PARAMETER DEFAULTS "FIA",311.14,0) ^SAMI(311.14, "FIA",311.14,0,0) 311.14 "FIA",311.14,0,1) y^y^f^^^^y "FIA",311.14,0,10) "FIA",311.14,0,11) "FIA",311.14,0,"RLRO") "FIA",311.14,0,"VR") 18.0^SAMI "FIA",311.14,311.14) 0 "FIA",311.14,311.141) 0 "INIT") POS1815^SAMIPAT "IX",311.14,311.14,"D",0) 311.14^D^PARMS^MU^^F^IR^W^311.141^^^^^LS "IX",311.14,311.14,"D",1) S ^SAMI(311.14,"D",X(1),X(3))=$TR(X(2),"`","^") "IX",311.14,311.14,"D",2) K ^SAMI(311.14,"D",X(1)) "IX",311.14,311.14,"D",2.5) K ^SAMI(311.14,"D") "IX",311.14,311.14,"D",11.1,0) ^.114IA^3^3 "IX",311.14,311.14,"D",11.1,1,0) 1^C^^^30^1 "IX",311.14,311.14,"D",11.1,1,1.5) S X=$$GET1^DIQ(311.14,DA(1)_",",.01) "IX",311.14,311.14,"D",11.1,2,0) 2^C "IX",311.14,311.14,"D",11.1,2,1.5) S X=$$GET1^DIQ(311.141,DA_","_DA(1)_",",.02) "IX",311.14,311.14,"D",11.1,3,0) 3^F^311.141^.01^^2^F "IX",311.14,311.14,"D",11.1,3,3) "MBREQ") 0 "PKG",230,-1) 1^1 "PKG",230,0) SAMI^SAMI^SCREENING APPLICATIONS MANAGEMENT - IELCAP "PKG",230,22,0) ^9.49I^1^1 "PKG",230,22,1,0) 18.0^3191203 "PKG",230,22,1,"PAH",1,0) 15^3211118 "QUES","XPF1",0) Y "QUES","XPF1","??") ^D REP^XPDH "QUES","XPF1","A") Shall I write over your |FLAG| File "QUES","XPF1","B") YES "QUES","XPF1","M") D XPF1^XPDIQ "QUES","XPF2",0) Y "QUES","XPF2","??") ^D DTA^XPDH "QUES","XPF2","A") Want my data |FLAG| yours "QUES","XPF2","B") YES "QUES","XPF2","M") D XPF2^XPDIQ "QUES","XPI1",0) YO "QUES","XPI1","??") ^D INHIBIT^XPDH "QUES","XPI1","A") Want KIDS to INHIBIT LOGONs during the install "QUES","XPI1","B") NO "QUES","XPI1","M") D XPI1^XPDIQ "QUES","XPM1",0) PO^VA(200,:EM "QUES","XPM1","??") ^D MG^XPDH "QUES","XPM1","A") Enter the Coordinator for Mail Group '|FLAG|' "QUES","XPM1","B") "QUES","XPM1","M") D XPM1^XPDIQ "QUES","XPO1",0) Y "QUES","XPO1","??") ^D MENU^XPDH "QUES","XPO1","A") Want KIDS to Rebuild Menu Trees Upon Completion of Install "QUES","XPO1","B") NO "QUES","XPO1","M") D XPO1^XPDIQ "QUES","XPZ1",0) Y "QUES","XPZ1","??") ^D OPT^XPDH "QUES","XPZ1","A") Want to DISABLE Scheduled Options, Menu Options, and Protocols "QUES","XPZ1","B") NO "QUES","XPZ1","M") D XPZ1^XPDIQ "QUES","XPZ2",0) Y "QUES","XPZ2","??") ^D RTN^XPDH "QUES","XPZ2","A") Want to MOVE routines to other CPUs "QUES","XPZ2","B") NO "QUES","XPZ2","M") D XPZ2^XPDIQ "RTN") 19 "RTN","SAMIADMN") 0^1^B83894517 "RTN","SAMIADMN",1,0) SAMIADMN ; ven/arc - IELCAP: Admin tools ;2021-10-29t22:35z "RTN","SAMIADMN",2,0) ;;18.0;SAMI;**15**;2020-01;Build 3 "RTN","SAMIADMN",3,0) ;;18-15 "RTN","SAMIADMN",4,0) ; "RTN","SAMIADMN",5,0) ;@license: see routine SAMIUL "RTN","SAMIADMN",6,0) ; "RTN","SAMIADMN",7,0) ; Primary development: "RTN","SAMIADMN",8,0) ; "RTN","SAMIADMN",9,0) ; @primary-dev: Alexis Carlson (arc) "RTN","SAMIADMN",10,0) ; @additional-dev: Larry Carlson (lgc) "RTN","SAMIADMN",11,0) ; @additional-dev: George Lilly (gpl) "RTN","SAMIADMN",12,0) ; @additional-dev: Linda M. R. Yaw (lmry) "RTN","SAMIADMN",13,0) ; Primary development organization: Vista Expertise Network (VEN) "RTN","SAMIADMN",14,0) ; "RTN","SAMIADMN",15,0) ; @change-log "RTN","SAMIADMN",16,0) ; 2018-05-03 ven/arc 4a67353e "RTN","SAMIADMN",17,0) ; New Mumps routine for admin actions, like clearing the web server cache. "RTN","SAMIADMN",18,0) ; 2018-07-01 ven/arc 45cd1b95 "RTN","SAMIADMN",19,0) ; added SETELCAP and SETLUNGRADS to switch between Ct Evaluation forms "RTN","SAMIADMN",20,0) ; 2018-08-14 ven/arc 972c5196,31d4be6f "RTN","SAMIADMN",21,0) ; web services for setlrads and setelcap, fix to setelcap and "RTN","SAMIADMN",22,0) ; setlungrads web services "RTN","SAMIADMN",23,0) ; 2018-08-16 ven/arc 12e4b537 "RTN","SAMIADMN",24,0) ; adding quotes to json, return valid json and added /ctversion "RTN","SAMIADMN",25,0) ; 2018-08-20 ven/gpl 3f2c0f46 "RTN","SAMIADMN",26,0) ; fixed bug in /ctversion "RTN","SAMIADMN",27,0) ; 2018-12-06 ven/lmry 9925713f "RTN","SAMIADMN",28,0) ; minor edits for SAC compliance "RTN","SAMIADMN",29,0) ; 2018-12-11 ven/lgc 3ceb74b5 "RTN","SAMIADMN",30,0) ; update routines for SAC compliance "RTN","SAMIADMN",31,0) ; 2018-12-27 ven/lgc d22e0f21 "RTN","SAMIADMN",32,0) ; update routines for SAC compliance "RTN","SAMIADMN",33,0) ; 2019-01-22 ven/lgc 5ddb29c5,53681219 "RTN","SAMIADMN",34,0) ; add license info and edit for lower case initials "RTN","SAMIADMN",35,0) ; 2019-03-12 ven/lmry 0519c1db "RTN","SAMIADMN",36,0) ; Spell out commands, add table of contents, few format changes, also "RTN","SAMIADMN",37,0) ; noted routines used for debugging, added history, added gpl, lgc, me to "RTN","SAMIADMN",38,0) ; devs "RTN","SAMIADMN",39,0) ; 2019-05-09 ven/lgc 3c969b31 "RTN","SAMIADMN",40,0) ; updated for new web server file "RTN","SAMIADMN",41,0) ; 2019-05-10 ven/lgc 1c7a3aa1 "RTN","SAMIADMN",42,0) ; modifications for new web service file "RTN","SAMIADMN",43,0) ; 2019-05-17 ven/lgc 19798fe7 "RTN","SAMIADMN",44,0) ; correct second line of routines "RTN","SAMIADMN",45,0) ; 2019-05-28 ven/lgc 33e150a2 "RTN","SAMIADMN",46,0) ; replace ^%WO with ^%webapi "RTN","SAMIADMN",47,0) ; 2019-10-11 ven/arc e4a64268 "RTN","SAMIADMN",48,0) ; Add entry point DODD "RTN","SAMIADMN",49,0) ; 2020-01-17 ven/arc 7936ae40 "RTN","SAMIADMN",50,0) ; Clean up TSV utilities. "RTN","SAMIADMN",51,0) ; 2020-02-04 ven/arc 4981a87a "RTN","SAMIADMN",52,0) ; Fix TSV utilities. Add utility (DEVMSG) for debug and unit testing "RTN","SAMIADMN",53,0) ; 2020-09-20 ven/lgc 18-15 6771aee4 "RTN","SAMIADMN",54,0) ; Change set msgSubscript= from "Dev Message" to "DEV MSG" "RTN","SAMIADMN",55,0) ; 2021-10-28 ven/lmry 18-15 "RTN","SAMIADMN",56,0) ; Add parameter for path to DODD, added to change log, added short IDs to "RTN","SAMIADMN",57,0) ; change log, added to toc. "RTN","SAMIADMN",58,0) ; 2021-10-29 ven/lmry 18-15 "RTN","SAMIADMN",59,0) ; Remove null line at bottom of routine for XINDEX "RTN","SAMIADMN",60,0) ; "RTN","SAMIADMN",61,0) quit ; No entry from top "RTN","SAMIADMN",62,0) ; "RTN","SAMIADMN",63,0) ;@contents "RTN","SAMIADMN",64,0) ; CLRWEB ; Clear the M Web Server files cache "RTN","SAMIADMN",65,0) ; SETELCAP() ; set VA-PALS to use the ELCAP version of the Ct Evaluation form--for "RTN","SAMIADMN",66,0) ; debugging "RTN","SAMIADMN",67,0) ; SETLGRDS() ; set VA-PALS to use the LungRads version of the Ct Evaluation form-- "RTN","SAMIADMN",68,0) ; for debugging "RTN","SAMIADMN",69,0) ; WSSTELCP(rtn,filter) ; set VA-PALS to use the ELCAP version of the Ct Evaluation form "RTN","SAMIADMN",70,0) ; WSSTLRAD(rtn,filter) ; set VA-PALS to use the LungRads version of the Ct Evaluation form "RTN","SAMIADMN",71,0) ; WSCTVERS(rtn,filter) ; web service to return the current ctform version "RTN","SAMIADMN",72,0) ; DODD(path) ; Import TSV files to build form field DDs "RTN","SAMIADMN",73,0) ; DEVMSG ; utility for debug and unit testing. "RTN","SAMIADMN",74,0) ; "RTN","SAMIADMN",75,0) CLRWEB ; Clear the M Web Server files cache "RTN","SAMIADMN",76,0) ;ven/arc;test;procedure;dirty;silent;non-sac "RTN","SAMIADMN",77,0) ; "RTN","SAMIADMN",78,0) do purgegraph^%wd("html-cache") "RTN","SAMIADMN",79,0) do purgegraph^%wd("seeGraph") "RTN","SAMIADMN",80,0) do build^%yottagr "RTN","SAMIADMN",81,0) ; "RTN","SAMIADMN",82,0) quit ; end of CLRWEB "RTN","SAMIADMN",83,0) ; "RTN","SAMIADMN",84,0) ; "RTN","SAMIADMN",85,0) SETELCAP() ; set VA-PALS to use the ELCAP version of the Ct Evaluation form--debugging "RTN","SAMIADMN",86,0) new GLB,FN,IEN "RTN","SAMIADMN",87,0) set FN=311.11 "RTN","SAMIADMN",88,0) set GLB=$name(^SAMI(311.11)) "RTN","SAMIADMN",89,0) set IEN=$order(@GLB@("B","vapals:ceform","")) "RTN","SAMIADMN",90,0) if IEN="" do quit ; "RTN","SAMIADMN",91,0) . write !,"Error, record vapals:ceform is not found in SAMI FORM MAPPING file!" "RTN","SAMIADMN",92,0) new FDA "RTN","SAMIADMN",93,0) set FDA(FN,IEN_",",2)="ctevaluation-elcap.html" "RTN","SAMIADMN",94,0) new ZERR "RTN","SAMIADMN",95,0) do UPDATE^DIE("","FDA","","ZERR") "RTN","SAMIADMN",96,0) if $data(ZERR) do quit ; "RTN","SAMIADMN",97,0) .; ZWR ZERR "RTN","SAMIADMN",98,0) .; do ^ZTER "RTN","SAMIADMN",99,0) quit "RTN","SAMIADMN",100,0) ; "RTN","SAMIADMN",101,0) SETLGRDS() ; set VA-PALS to use the LungRads version of the Ct Evaluation form--debugging "RTN","SAMIADMN",102,0) new GLB,FN,IEN "RTN","SAMIADMN",103,0) set FN=311.11 "RTN","SAMIADMN",104,0) set GLB=$name(^SAMI(311.11)) "RTN","SAMIADMN",105,0) set IEN=$order(@GLB@("B","vapals:ceform","")) "RTN","SAMIADMN",106,0) if IEN="" do quit ; "RTN","SAMIADMN",107,0) . write !,"Error, record vapals:ceform is not found in SAMI FORM MAPPING file!" "RTN","SAMIADMN",108,0) new FDA "RTN","SAMIADMN",109,0) set FDA(FN,IEN_",",2)="ctevaluation.html" "RTN","SAMIADMN",110,0) new ZERR "RTN","SAMIADMN",111,0) do UPDATE^DIE("","FDA","","ZERR") "RTN","SAMIADMN",112,0) if $data(ZERR) do quit ; "RTN","SAMIADMN",113,0) .; ZWR ZERR "RTN","SAMIADMN",114,0) .; do ^ZTER "RTN","SAMIADMN",115,0) quit "RTN","SAMIADMN",116,0) ; "RTN","SAMIADMN",117,0) WSSTELCP(rtn,filter) ; set VA-PALS to use the ELCAP version of the Ct Evaluation form "RTN","SAMIADMN",118,0) new GLB,FN,IEN "RTN","SAMIADMN",119,0) set FN=311.11 "RTN","SAMIADMN",120,0) set GLB=$name(^SAMI(311.11)) "RTN","SAMIADMN",121,0) set IEN=$order(@GLB@("B","vapals:ceform","")) "RTN","SAMIADMN",122,0) if IEN="" do quit ; "RTN","SAMIADMN",123,0) . ;write !,"Error, record vapals:ceform is not found in SAMI FORM MAPPING file!" "RTN","SAMIADMN",124,0) . ;do ^ZTER "RTN","SAMIADMN",125,0) new FDA "RTN","SAMIADMN",126,0) set FDA(FN,IEN_",",2)="ctevaluation-elcap.html" "RTN","SAMIADMN",127,0) new ZERR "RTN","SAMIADMN",128,0) do UPDATE^DIE("","FDA","","ZERR") "RTN","SAMIADMN",129,0) if $data(ZERR) do quit ; "RTN","SAMIADMN",130,0) . ;ZWR ZERR "RTN","SAMIADMN",131,0) . ;do ^ZTER "RTN","SAMIADMN",132,0) set rtn="{""status"": ""ok""}" "RTN","SAMIADMN",133,0) quit "RTN","SAMIADMN",134,0) ; "RTN","SAMIADMN",135,0) WSSTLRAD(rtn,filter) ; set VA-PALS to use the LungRads version of the Ct Evaluation form "RTN","SAMIADMN",136,0) new GLB,FN,IEN "RTN","SAMIADMN",137,0) set FN=311.11 "RTN","SAMIADMN",138,0) set GLB=$name(^SAMI(311.11)) "RTN","SAMIADMN",139,0) set IEN=$order(@GLB@("B","vapals:ceform","")) "RTN","SAMIADMN",140,0) if IEN="" do quit ; "RTN","SAMIADMN",141,0) . ;write !,"Error, record vapals:ceform is not found in SAMI FORM MAPPING file!" "RTN","SAMIADMN",142,0) . ;do ^ZTER "RTN","SAMIADMN",143,0) new FDA "RTN","SAMIADMN",144,0) set FDA(FN,IEN_",",2)="ctevaluation.html" "RTN","SAMIADMN",145,0) new ZERR "RTN","SAMIADMN",146,0) do UPDATE^DIE("","FDA","","ZERR") "RTN","SAMIADMN",147,0) if $data(ZERR) do quit ; "RTN","SAMIADMN",148,0) . ;ZWR ZERR "RTN","SAMIADMN",149,0) . ;do ^ZTER "RTN","SAMIADMN",150,0) set rtn="{""status"": ""ok""}" "RTN","SAMIADMN",151,0) quit "RTN","SAMIADMN",152,0) ; "RTN","SAMIADMN",153,0) WSCTVERS(rtn,filter) ; web service to return the current ctform version "RTN","SAMIADMN",154,0) ; "RTN","SAMIADMN",155,0) new fn,ver,ien "RTN","SAMIADMN",156,0) set ien=$order(^SAMI(311.11,"B","vapals:ceform","")) "RTN","SAMIADMN",157,0) quit:ien="" "RTN","SAMIADMN",158,0) set fn=$$GET1^DIQ(311.11,ien_",",2) "RTN","SAMIADMN",159,0) if fn["elcap" set ver="elcap" "RTN","SAMIADMN",160,0) else set ver="lungrads" "RTN","SAMIADMN",161,0) set rtn="{""ctversion"": """_ver_"""}" "RTN","SAMIADMN",162,0) quit "RTN","SAMIADMN",163,0) ; "RTN","SAMIADMN",164,0) WINIT(method,urlpattern,routine) ; Add Web service "RTN","SAMIADMN",165,0) ;Input "RTN","SAMIADMN",166,0) ; method = HTTP VERB "RTN","SAMIADMN",167,0) ; urlpattern = URI "RTN","SAMIADMN",168,0) ; routine = EXECUTION ENDPOINT "RTN","SAMIADMN",169,0) ;Exit "RTN","SAMIADMN",170,0) ; ien of new service in 17.6001 "RTN","SAMIADMN",171,0) quit:($get(method)="") 0 "RTN","SAMIADMN",172,0) quit:($get(urlpattern)="") 0 "RTN","SAMIADMN",173,0) quit:($get(routine)="") 0 "RTN","SAMIADMN",174,0) quit $$addService^%webutils(method,urlpattern,routine) "RTN","SAMIADMN",175,0) ; "RTN","SAMIADMN",176,0) WDEL(method,urlpattern) ; Delete a Web service "RTN","SAMIADMN",177,0) ;Input "RTN","SAMIADMN",178,0) ; method = HTTP VERB "RTN","SAMIADMN",179,0) ; urlpattern = URI "RTN","SAMIADMN",180,0) ;Exit "RTN","SAMIADMN",181,0) ; none "RTN","SAMIADMN",182,0) quit:($get(method)="") "RTN","SAMIADMN",183,0) quit:($get(urlpattern)="") "RTN","SAMIADMN",184,0) do deleteService^%webutils(method,urlpattern) "RTN","SAMIADMN",185,0) quit "RTN","SAMIADMN",186,0) ; "RTN","SAMIADMN",187,0) WINITA ; Build all production web services "RTN","SAMIADMN",188,0) new method,urlpattern,routine,xstr,xcnt,xrslt "RTN","SAMIADMN",189,0) if $data(%ut) set ^TMP("SAMIADMN","WINITA")=0 "RTN","SAMIADMN",190,0) f s xcnt=$g(xcnt)+1,xstr=$text(PRODSERV+xcnt) q:(xstr["***END***") do "RTN","SAMIADMN",191,0) . set method=$p($piece(xstr,";;",2),",") "RTN","SAMIADMN",192,0) . set urlpattern=$p($piece(xstr,";;",2),",",2) "RTN","SAMIADMN",193,0) . set routine=$p($piece(xstr,";;",2),",",3) "RTN","SAMIADMN",194,0) . set xrslt=$$WINIT^SAMIADMN(method,urlpattern,routine) "RTN","SAMIADMN",195,0) . if '($get(xrslt)) do "RTN","SAMIADMN",196,0) .. set ^TMP("SAMIADMN","WINITA")=1 "RTN","SAMIADMN",197,0) .. write !,!,xcnt," ",method," ",urlpattern," ",routine," FAILED",! "RTN","SAMIADMN",198,0) quit "RTN","SAMIADMN",199,0) ; "RTN","SAMIADMN",200,0) PRODSERV ;; "RTN","SAMIADMN",201,0) ;;GET,ctversion,WSCTVERS^SAMIADMN, "RTN","SAMIADMN",202,0) ;;GET,ptlookup/{search},WSPTLKUP^SAMIPTLK, "RTN","SAMIADMN",203,0) ;;GET,ruralurbancount,WSGETRU^SAMIRU, "RTN","SAMIADMN",204,0) ;;GET,setelcap,WSSTELCP^SAMIADMN, "RTN","SAMIADMN",205,0) ;;GET,setlungrads,WSSTLRAD^SAMIADMN, "RTN","SAMIADMN",206,0) ;;GET,vapals,WSHOME^SAMIHOM3, "RTN","SAMIADMN",207,0) ;;GET,zipru/{zip},WSZIPRU^SAMIRU, "RTN","SAMIADMN",208,0) ;;POST,vapals,WSVAPALS^SAMIHOM3, "RTN","SAMIADMN",209,0) ;;GET,filesystem/*,FILESYS^%webapi, "RTN","SAMIADMN",210,0) ;;GET,form/*,wsGetForm^%wf, "RTN","SAMIADMN",211,0) ;;GET,global/{root},wsGLOBAL^KBAIVPR, "RTN","SAMIADMN",212,0) ;;GET,graph/{graph},wsGetGraph^%wdgraph, "RTN","SAMIADMN",213,0) ;;GET,gtree/{root},wsGtree^SYNVPR, "RTN","SAMIADMN",214,0) ;;GET,r/{routine?.1"%25".32AN},R^%webapi, "RTN","SAMIADMN",215,0) ;;GET,resources/*,FILESYS^%webapi, "RTN","SAMIADMN",216,0) ;;GET,see/*,wssee^%yottagr, "RTN","SAMIADMN",217,0) ;;GET,testptinfo,wsPTNFO^KBAIPTIN, "RTN","SAMIADMN",218,0) ;;GET,vpr/{dfn},wsVPR^KBAIVPR, "RTN","SAMIADMN",219,0) ;;GET,xml,XML^VPRJRSP, "RTN","SAMIADMN",220,0) ;;POST,form/*,wsPostForm^%wf, "RTN","SAMIADMN",221,0) ;;POST,postform/*,wsPostForm^%wf, "RTN","SAMIADMN",222,0) ;;POST,sami/intake,wsPostForm^%yottaq, "RTN","SAMIADMN",223,0) ;;GET,background,WSSBFORM^SAMIFORM, "RTN","SAMIADMN",224,0) ;;GET,intake,WSSIFORM^SAMIFORM, "RTN","SAMIADMN",225,0) ;;GET,ctevaluation,WSCEFORM^SAMIFORM, "RTN","SAMIADMN",226,0) ;;***END*** "RTN","SAMIADMN",227,0) ; "RTN","SAMIADMN",228,0) ; "RTN","SAMIADMN",229,0) DODD(path) ; Import TSV files to build form field DDs "RTN","SAMIADMN",230,0) if $get(path)="" set path=$$GET^XPAR("SYS","SAMI FORM FIELDS DEF PATH",,"Q") "RTN","SAMIADMN",231,0) quit:path="" "RTN","SAMIADMN",232,0) ; "RTN","SAMIADMN",233,0) do PRSTSV^SAMIFF(path,"background.tsv","form fields - background") "RTN","SAMIADMN",234,0) do PRSTSV^SAMIFF(path,"biopsy.tsv","form fields - biopsy") "RTN","SAMIADMN",235,0) do PRSTSV^SAMIFF(path,"ct-evaluation.tsv","form fields - ct evaluation") "RTN","SAMIADMN",236,0) do PRSTSV^SAMIFF(path,"follow-up.tsv","form fields - follow up") "RTN","SAMIADMN",237,0) do PRSTSV^SAMIFF(path,"intake.tsv","form fields - intake") "RTN","SAMIADMN",238,0) do PRSTSV^SAMIFF(path,"intervention.tsv","form fields - intervention") "RTN","SAMIADMN",239,0) do PRSTSV^SAMIFF(path,"pet-evaluation.tsv","form fields - pet evaluation") "RTN","SAMIADMN",240,0) do PRSTSV^SAMIFF(path,"register.tsv","form fields - register") "RTN","SAMIADMN",241,0) ; "RTN","SAMIADMN",242,0) quit ; End of entry point DODD "RTN","SAMIADMN",243,0) ; "RTN","SAMIADMN",244,0) ; "RTN","SAMIADMN",245,0) DEVMSG(routine,type,message) ; Create a dev/test message in ^TMP "RTN","SAMIADMN",246,0) ; @input "RTN","SAMIADMN",247,0) ; routine = routine, with or without entry point (optional) "RTN","SAMIADMN",248,0) ; type = type of message (optional) "RTN","SAMIADMN",249,0) ; message "RTN","SAMIADMN",250,0) ; "RTN","SAMIADMN",251,0) quit:$get(message)="" "RTN","SAMIADMN",252,0) set routine=$get(routine) "RTN","SAMIADMN",253,0) set type=$get(type) "RTN","SAMIADMN",254,0) ; "RTN","SAMIADMN",255,0) set msgSubscript="DEV MSG" "RTN","SAMIADMN",256,0) new timestamp set timestamp=$horolog "RTN","SAMIADMN",257,0) new timeSubscript set timeSubscript=$piece(timestamp,",",2) "RTN","SAMIADMN",258,0) ; "RTN","SAMIADMN",259,0) set ^TMP(msgSubscript,$job,0,"TIME")=$piece($$HTE^XLFDT(timestamp,7),"@",2) "RTN","SAMIADMN",260,0) set ^TMP(msgSubscript,$job,0,"ROUTINE")=routine "RTN","SAMIADMN",261,0) set ^TMP(msgSubscript,$job,0,"TYPE")=type "RTN","SAMIADMN",262,0) set ^TMP(msgSubscript,$job,0,"MESSAGE")=message "RTN","SAMIADMN",263,0) ; "RTN","SAMIADMN",264,0) set ^TMP(msgSubscript,$job,timeSubscript,"TIME")=$piece($$HTE^XLFDT(timestamp,7),"@",2) "RTN","SAMIADMN",265,0) set ^TMP(msgSubscript,$job,timeSubscript,"ROUTINE")=routine "RTN","SAMIADMN",266,0) set ^TMP(msgSubscript,$job,timeSubscript,"TYPE")=type "RTN","SAMIADMN",267,0) set ^TMP(msgSubscript,$job,timeSubscript,"MESSAGE")=message "RTN","SAMIADMN",268,0) ; "RTN","SAMIADMN",269,0) quit ; End of entry point DEVMSG "RTN","SAMIADMN",270,0) ; "RTN","SAMIADMN",271,0) ; "RTN","SAMIADMN",272,0) EOR ; End of routine SAMIADMN "RTN","SAMICAS3") 0^2^B497699119 "RTN","SAMICAS3",1,0) SAMICAS3 ;ven/gpl - case review cont ;2021-10-26t19:39z "RTN","SAMICAS3",2,0) ;;18.0;SAMI;**3,9,11,12,15**;2020-01;Build 3 "RTN","SAMICAS3",3,0) ;;18-15 "RTN","SAMICAS3",4,0) ; "RTN","SAMICAS3",5,0) ; SAMICAS3 contains ppis and other subroutines to support processing "RTN","SAMICAS3",6,0) ; of the VAPALS-IELCAP case review page. "RTN","SAMICAS3",7,0) ; "RTN","SAMICAS3",8,0) quit ; no entry from top "RTN","SAMICAS3",9,0) ; "RTN","SAMICAS3",10,0) ; "RTN","SAMICAS3",11,0) ; "RTN","SAMICAS3",12,0) ;@section 0 primary development: see routine %wful "RTN","SAMICAS3",13,0) ; "RTN","SAMICAS3",14,0) ; "RTN","SAMICAS3",15,0) ; "RTN","SAMICAS3",16,0) ;@license see routine SAMIUL "RTN","SAMICAS3",17,0) ;@documentation see SAMICUL "RTN","SAMICAS3",18,0) ;@contents "RTN","SAMICAS3",19,0) ; WSNFPOST wri-code WSNFPOST^SAMICAS3, post vapals addform: new form "RTN","SAMICAS3",20,0) ; MKSBFORM create background form "RTN","SAMICAS3",21,0) ; "RTN","SAMICAS3",22,0) ; $$PREVNOD key of latest form including nodule grid "RTN","SAMICAS3",23,0) ; $$LASTCMP date & key of last comparison scan "RTN","SAMICAS3",24,0) ; $$PRIORCMP dates of all scans before last comparison scan "RTN","SAMICAS3",25,0) ; $$KEY2DT date to put in prior scans field "RTN","SAMICAS3",26,0) ; SORTFRMS sorts all forms for patient sid by date "RTN","SAMICAS3",27,0) ; "RTN","SAMICAS3",28,0) ; MKCEFORM create ct evaluation form "RTN","SAMICAS3",29,0) ; MKFUFORM create follow-up form "RTN","SAMICAS3",30,0) ; $$BASELNDT last previous baseline ct date "RTN","SAMICAS3",31,0) ; MKPTFORM create pet evaluation form "RTN","SAMICAS3",32,0) ; MKITFORM create intervention form "RTN","SAMICAS3",33,0) ; MKBXFORM create biopsy form "RTN","SAMICAS3",34,0) ; CASETBL generates case review table "RTN","SAMICAS3",35,0) ; "RTN","SAMICAS3",36,0) ; "RTN","SAMICAS3",37,0) ; "RTN","SAMICAS3",38,0) ;@section 1 WSNFPOST & related subroutines "RTN","SAMICAS3",39,0) ; "RTN","SAMICAS3",40,0) ; "RTN","SAMICAS3",41,0) ; "RTN","SAMICAS3",42,0) ;@wri-code WSNFPOST^SAMICAS3 "RTN","SAMICAS3",43,0) WSNFPOST ; post vapals addform: new form "RTN","SAMICAS3",44,0) ; "RTN","SAMICAS3",45,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",46,0) ; "RTN","SAMICAS3",47,0) ;ven/gpl;wri;procedure;clean;silent;sac;??% tests "RTN","SAMICAS3",48,0) ;@signature "RTN","SAMICAS3",49,0) ; do WSNFPOST^SAMICASE(ARGS,BODY,RESULT) "RTN","SAMICAS3",50,0) ;@branches-from "RTN","SAMICAS3",51,0) ; WSNFPOST^SAMICASE "RTN","SAMICAS3",52,0) ;@ppi-called-by "RTN","SAMICAS3",53,0) ; WSVAPALS^SAMIHOME [wr addform of ws post vapals] "RTN","SAMICAS3",54,0) ;@called-by none "RTN","SAMICAS3",55,0) ;@calls "RTN","SAMICAS3",56,0) ; parseBody^%wf "RTN","SAMICAS3",57,0) ; GETHOME^SAMIHOM3 "RTN","SAMICAS3",58,0) ; $$KEYDATE^SAMIHOM3 "RTN","SAMICAS3",59,0) ; $$setroot^%wd "RTN","SAMICAS3",60,0) ; $$KEY2FM^SAMICAS2 "RTN","SAMICAS3",61,0) ; $$FMADD^XLFDT "RTN","SAMICAS3",62,0) ; WSCASE^SAMICASE "RTN","SAMICAS3",63,0) ; MKSBFORM^SAMICAS3 "RTN","SAMICAS3",64,0) ; MKCEFORM^SAMICAS3 "RTN","SAMICAS3",65,0) ; MKFUFORM^SAMICAS3 "RTN","SAMICAS3",66,0) ; MKBXFORM^SAMICAS3 "RTN","SAMICAS3",67,0) ; MKPTFORM^SAMICAS3 "RTN","SAMICAS3",68,0) ; MKITFORM^SAMICAS3 "RTN","SAMICAS3",69,0) ; wsGetForm^%wf "RTN","SAMICAS3",70,0) ;@input "RTN","SAMICAS3",71,0) ; .ARGS "RTN","SAMICAS3",72,0) ; .ARGS("form") "RTN","SAMICAS3",73,0) ; .ARGS("studyid") "RTN","SAMICAS3",74,0) ; .ARGS("sid") "RTN","SAMICAS3",75,0) ; .BODY "RTN","SAMICAS3",76,0) ; .BODY(1) (e.g. "samiroute=casereview&dfn="_dfn_"&studyid="_studyid) "RTN","SAMICAS3",77,0) ;@output "RTN","SAMICAS3",78,0) ; @RESULT "RTN","SAMICAS3",79,0) ;@tests "RTN","SAMICAS3",80,0) ; UTNFPST^SAMIUTS2 "RTN","SAMICAS3",81,0) ; "RTN","SAMICAS3",82,0) ; "RTN","SAMICAS3",83,0) ;@stanza 2 get new form "RTN","SAMICAS3",84,0) ; "RTN","SAMICAS3",85,0) new vars,bdy "RTN","SAMICAS3",86,0) set bdy=$get(BODY(1)) "RTN","SAMICAS3",87,0) do parseBody^%wf("vars",.bdy) "RTN","SAMICAS3",88,0) merge vars=ARGS "RTN","SAMICAS3",89,0) merge ^SAMIUL("nuform","vars")=vars "RTN","SAMICAS3",90,0) ; "RTN","SAMICAS3",91,0) new sid set sid=$get(vars("studyid")) "RTN","SAMICAS3",92,0) if sid="" set sid=$get(ARGS("sid")) "RTN","SAMICAS3",93,0) if sid="" do quit ; "RTN","SAMICAS3",94,0) . do GETHOME^SAMIHOM3(.RESULT,.ARGS) ; on error return to home page "RTN","SAMICAS3",95,0) . quit "RTN","SAMICAS3",96,0) ; "RTN","SAMICAS3",97,0) set nuform=$get(vars("form")) "RTN","SAMICAS3",98,0) if nuform="" set nuform="ceform" "RTN","SAMICAS3",99,0) ; "RTN","SAMICAS3",100,0) new datekey set datekey=$$KEYDATE^SAMIHOM3($$NOW^XLFDT) "RTN","SAMICAS3",101,0) ; "RTN","SAMICAS3",102,0) ; check to see if form already exists "RTN","SAMICAS3",103,0) ; "RTN","SAMICAS3",104,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",105,0) new collide set collide=0 ; duplicate form for today - backdate forms scenario "RTN","SAMICAS3",106,0) if $data(@root@("graph",sid,nuform_"-"_datekey)) do ; already exists "RTN","SAMICAS3",107,0) . set collide=1 "RTN","SAMICAS3",108,0) . if nuform="siform" quit "RTN","SAMICAS3",109,0) . if nuform="sbform" quit ; do not create multiple background forms "RTN","SAMICAS3",110,0) . new lastone "RTN","SAMICAS3",111,0) . set lastone=$order(@root@("graph",sid,nuform_"-a "),-1) "RTN","SAMICAS3",112,0) . quit:lastone="" "RTN","SAMICAS3",113,0) . set newfm=$$KEY2FM^SAMICASE(lastone) "RTN","SAMICAS3",114,0) . set datekey=$$KEYDATE^SAMIHOM3($$FMADD^XLFDT(newfm,1)) ; add one day to the last form "RTN","SAMICAS3",115,0) . quit "RTN","SAMICAS3",116,0) ; "RTN","SAMICAS3",117,0) ; code to not allow two same forms for a patient a day "RTN","SAMICAS3",118,0) ; "RTN","SAMICAS3",119,0) if collide=1 do quit ; "RTN","SAMICAS3",120,0) . set ARGS("errorMessage")="Form already exists for today" "RTN","SAMICAS3",121,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",122,0) . do WSCASE^SAMICASE(.RESULT,.ARGS) "RTN","SAMICAS3",123,0) . quit "RTN","SAMICAS3",124,0) ; "RTN","SAMICAS3",125,0) if nuform="sbform" do ; "RTN","SAMICAS3",126,0) . new oldkey set oldkey=$order(@root@("graph",sid,"sbform")) "RTN","SAMICAS3",127,0) . if $extract(oldkey,1,6)="sbform" do quit ; "RTN","SAMICAS3",128,0) . . set ARGS("key")=oldkey "RTN","SAMICAS3",129,0) . . set ARGS("studyid")=sid "RTN","SAMICAS3",130,0) . . set ARGS("form")="vapals:sbform" "RTN","SAMICAS3",131,0) . . quit "RTN","SAMICAS3",132,0) . new key set key="sbform-"_datekey "RTN","SAMICAS3",133,0) . set ARGS("key")=key "RTN","SAMICAS3",134,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",135,0) . set ARGS("form")="vapals:sbform" "RTN","SAMICAS3",136,0) . do MKSBFORM(sid,key) "RTN","SAMICAS3",137,0) . quit "RTN","SAMICAS3",138,0) ; "RTN","SAMICAS3",139,0) if nuform="ceform" do ; "RTN","SAMICAS3",140,0) . new key set key="ceform-"_datekey "RTN","SAMICAS3",141,0) . set ARGS("key")=key "RTN","SAMICAS3",142,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",143,0) . set ARGS("form")="vapals:ceform" "RTN","SAMICAS3",144,0) . do MKCEFORM(sid,key) "RTN","SAMICAS3",145,0) . quit "RTN","SAMICAS3",146,0) ; "RTN","SAMICAS3",147,0) if nuform="fuform" do ; "RTN","SAMICAS3",148,0) . new key set key="fuform-"_datekey "RTN","SAMICAS3",149,0) . set ARGS("key")=key "RTN","SAMICAS3",150,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",151,0) . set ARGS("form")="vapals:fuform" "RTN","SAMICAS3",152,0) . do MKFUFORM(sid,key) "RTN","SAMICAS3",153,0) . quit "RTN","SAMICAS3",154,0) ; "RTN","SAMICAS3",155,0) if nuform="bxform" do ; "RTN","SAMICAS3",156,0) . new key set key="bxform-"_datekey "RTN","SAMICAS3",157,0) . set ARGS("key")=key "RTN","SAMICAS3",158,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",159,0) . set ARGS("form")="vapals:bxform" "RTN","SAMICAS3",160,0) . do MKBXFORM(sid,key) "RTN","SAMICAS3",161,0) . quit "RTN","SAMICAS3",162,0) ; "RTN","SAMICAS3",163,0) if nuform="ptform" do ; "RTN","SAMICAS3",164,0) . new key set key="ptform-"_datekey "RTN","SAMICAS3",165,0) . set ARGS("key")=key "RTN","SAMICAS3",166,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",167,0) . set ARGS("form")="vapals:ptform" "RTN","SAMICAS3",168,0) . do MKPTFORM(sid,key) "RTN","SAMICAS3",169,0) . quit "RTN","SAMICAS3",170,0) ; "RTN","SAMICAS3",171,0) if nuform="itform" do ; "RTN","SAMICAS3",172,0) . new key set key="itform-"_datekey "RTN","SAMICAS3",173,0) . set ARGS("key")=key "RTN","SAMICAS3",174,0) . set ARGS("studyid")=sid "RTN","SAMICAS3",175,0) . set ARGS("form")="vapals:itform" "RTN","SAMICAS3",176,0) . do MKITFORM(sid,key) "RTN","SAMICAS3",177,0) . quit "RTN","SAMICAS3",178,0) ; "RTN","SAMICAS3",179,0) do wsGetForm^%wf(.RESULT,.ARGS) "RTN","SAMICAS3",180,0) ; "RTN","SAMICAS3",181,0) ; "RTN","SAMICAS3",182,0) ;@stanza 3 termination "RTN","SAMICAS3",183,0) ; "RTN","SAMICAS3",184,0) quit ; end of wri WSNFPOST^SAMICASE "RTN","SAMICAS3",185,0) ; "RTN","SAMICAS3",186,0) ; "RTN","SAMICAS3",187,0) ; "RTN","SAMICAS3",188,0) MKSBFORM(sid,key) ; create background form "RTN","SAMICAS3",189,0) ; "RTN","SAMICAS3",190,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",191,0) ; "RTN","SAMICAS3",192,0) ;ven/gpl;private;procedure; "RTN","SAMICAS3",193,0) ;@called-by "RTN","SAMICAS3",194,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",195,0) ;@calls "RTN","SAMICAS3",196,0) ; $$setroot^%wd "RTN","SAMICAS3",197,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",198,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",199,0) ;@input "RTN","SAMICAS3",200,0) ; sid = study id "RTN","SAMICAS3",201,0) ; key = form key, e.g. sbform-2021-05-25 "RTN","SAMICAS3",202,0) ;@output "RTN","SAMICAS3",203,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",204,0) ;@examples [tbd] "RTN","SAMICAS3",205,0) ;@tests [tbd] "RTN","SAMICAS3",206,0) ; "RTN","SAMICAS3",207,0) ;@stanza 2 create background form "RTN","SAMICAS3",208,0) ; "RTN","SAMICAS3",209,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",210,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",211,0) quit:+sien=0 "RTN","SAMICAS3",212,0) ; "RTN","SAMICAS3",213,0) new cdate set cdate=$piece(key,"sbform-",2) "RTN","SAMICAS3",214,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",215,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",216,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",217,0) ; "RTN","SAMICAS3",218,0) ;@stanza 3 termination "RTN","SAMICAS3",219,0) ; "RTN","SAMICAS3",220,0) quit ; end of MKSBFORM "RTN","SAMICAS3",221,0) ; "RTN","SAMICAS3",222,0) ; "RTN","SAMICAS3",223,0) ; "RTN","SAMICAS3",224,0) PREVNOD(sid) ; key of latest form including nodule grid "RTN","SAMICAS3",225,0) ; "RTN","SAMICAS3",226,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",227,0) ; "RTN","SAMICAS3",228,0) ;ven/gpl;private;function;clean;silent;sac; "RTN","SAMICAS3",229,0) ;@called-by none [commented out in MKCEFORM,MKPTFORM,MKBXFORM] "RTN","SAMICAS3",230,0) ;@calls "RTN","SAMICAS3",231,0) ; SORTFRMS "RTN","SAMICAS3",232,0) ;@input "RTN","SAMICAS3",233,0) ; sid = study id "RTN","SAMICAS3",234,0) ;@output = key of latest form incl nodule grid "RTN","SAMICAS3",235,0) ;@examples [tbd] "RTN","SAMICAS3",236,0) ;@tests [tbd] "RTN","SAMICAS3",237,0) ; "RTN","SAMICAS3",238,0) ; used for nodule copy "RTN","SAMICAS3",239,0) ; "RTN","SAMICAS3",240,0) ; "RTN","SAMICAS3",241,0) ;@stanza 2 calculate key of latest form incl nodule grid "RTN","SAMICAS3",242,0) ; "RTN","SAMICAS3",243,0) new retkey set retkey="" "RTN","SAMICAS3",244,0) new fary "RTN","SAMICAS3",245,0) do SORTFRMS(.fary,sid) "RTN","SAMICAS3",246,0) ; "RTN","SAMICAS3",247,0) new tdt set tdt="" "RTN","SAMICAS3",248,0) for set tdt=$order(fary(tdt),-1) quit:tdt="" quit:retkey'="" do ; "RTN","SAMICAS3",249,0) . new tmpkey set tmpkey="" "RTN","SAMICAS3",250,0) . for set tmpkey=$order(fary(tdt,tmpkey)) quit:tmpkey="" quit:retkey'="" do ; "RTN","SAMICAS3",251,0) . . if tmpkey["ceform" set retkey=tmpkey "RTN","SAMICAS3",252,0) . . if tmpkey["ptform" set retkey=tmpkey "RTN","SAMICAS3",253,0) . . if tmpkey["bxform" set retkey=tmpkey "RTN","SAMICAS3",254,0) . . quit "RTN","SAMICAS3",255,0) . quit "RTN","SAMICAS3",256,0) ; "RTN","SAMICAS3",257,0) ; "RTN","SAMICAS3",258,0) ;@stanza 3 termination "RTN","SAMICAS3",259,0) ; "RTN","SAMICAS3",260,0) quit retkey ; end of $$PREVNOD "RTN","SAMICAS3",261,0) ; "RTN","SAMICAS3",262,0) ; "RTN","SAMICAS3",263,0) ; "RTN","SAMICAS3",264,0) LASTCMP(sid,retkey) ; date & key of last comparison scan "RTN","SAMICAS3",265,0) ; "RTN","SAMICAS3",266,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",267,0) ; "RTN","SAMICAS3",268,0) ;ven/gpl;private;function;clean;silent;sac; "RTN","SAMICAS3",269,0) ;@called-by "RTN","SAMICAS3",270,0) ; MKBXFORM "RTN","SAMICAS3",271,0) ; MKCEFORM "RTN","SAMICAS3",272,0) ; MKFUFORM "RTN","SAMICAS3",273,0) ; MKITFORM "RTN","SAMICAS3",274,0) ; MKPTFORM "RTN","SAMICAS3",275,0) ;@calls "RTN","SAMICAS3",276,0) ; SORTFRMS "RTN","SAMICAS3",277,0) ; $$NOW^XLFDT "RTN","SAMICAS3",278,0) ; $$KEY2FM^SAMICASE "RTN","SAMICAS3",279,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",280,0) ;@input "RTN","SAMICAS3",281,0) ; sid = study id "RTN","SAMICAS3",282,0) ;@output = date of last comparison scan "RTN","SAMICAS3",283,0) ; .retkey = key of last comparison scan "RTN","SAMICAS3",284,0) ;@examples [tbd] "RTN","SAMICAS3",285,0) ;@tests [tbd] "RTN","SAMICAS3",286,0) ; "RTN","SAMICAS3",287,0) ; "RTN","SAMICAS3",288,0) ;@stanza 2 calculate date & key of last comparison scan "RTN","SAMICAS3",289,0) ; "RTN","SAMICAS3",290,0) set retkey="" "RTN","SAMICAS3",291,0) new fary "RTN","SAMICAS3",292,0) do SORTFRMS(.fary,sid) "RTN","SAMICAS3",293,0) ; "RTN","SAMICAS3",294,0) ;new tdt set tdt=$piece($$NOW^XLFDT,".",1)+1 ; start with today "RTN","SAMICAS3",295,0) new tdt set tdt=$piece($$NOW^XLFDT,".",1) ; start with before today "RTN","SAMICAS3",296,0) for set tdt=$order(fary(tdt),-1) quit:tdt="" quit:retkey'="" do ; "RTN","SAMICAS3",297,0) . new tmpkey set tmpkey="" "RTN","SAMICAS3",298,0) . for set tmpkey=$order(fary(tdt,tmpkey)) quit:tmpkey="" quit:retkey'="" do ; "RTN","SAMICAS3",299,0) . . if tmpkey["ceform" set retkey=tmpkey "RTN","SAMICAS3",300,0) . . quit "RTN","SAMICAS3",301,0) . quit "RTN","SAMICAS3",302,0) ; "RTN","SAMICAS3",303,0) new retdt set retdt=-1 "RTN","SAMICAS3",304,0) if retkey'="" do ; "RTN","SAMICAS3",305,0) . new fmdt set fmdt=$$KEY2FM^SAMICASE(retkey) "RTN","SAMICAS3",306,0) . set retdt=$$VAPALSDT^SAMICASE(fmdt) "RTN","SAMICAS3",307,0) . quit "RTN","SAMICAS3",308,0) ; "RTN","SAMICAS3",309,0) ; "RTN","SAMICAS3",310,0) ;@stanza 3 termination "RTN","SAMICAS3",311,0) ; "RTN","SAMICAS3",312,0) quit retdt ; end of $$LASTCMP "RTN","SAMICAS3",313,0) ; "RTN","SAMICAS3",314,0) ; "RTN","SAMICAS3",315,0) ; "RTN","SAMICAS3",316,0) PRIORCMP(sid) ; dates of all scans before last comparison scan "RTN","SAMICAS3",317,0) ; "RTN","SAMICAS3",318,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",319,0) ; "RTN","SAMICAS3",320,0) ;ven/gpl;private;function;clean;silent;sac; "RTN","SAMICAS3",321,0) ;@called-by "RTN","SAMICAS3",322,0) ; MKCEFORM "RTN","SAMICAS3",323,0) ; MKPTFORM "RTN","SAMICAS3",324,0) ; MKITFORM "RTN","SAMICAS3",325,0) ;@calls "RTN","SAMICAS3",326,0) ; SORTFRMS "RTN","SAMICAS3",327,0) ; $$NOW^XLFDT "RTN","SAMICAS3",328,0) ; $$KEY2DT "RTN","SAMICAS3",329,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",330,0) ;@input "RTN","SAMICAS3",331,0) ; sid = study id "RTN","SAMICAS3",332,0) ;@output = dates of all scans before last comparison scan "RTN","SAMICAS3",333,0) ;@examples [tbd] "RTN","SAMICAS3",334,0) ;@tests [tbd] "RTN","SAMICAS3",335,0) ; "RTN","SAMICAS3",336,0) ; "RTN","SAMICAS3",337,0) ;@stanza 2 calculate dates of all scans before last comparison scan "RTN","SAMICAS3",338,0) ; "RTN","SAMICAS3",339,0) new retstr set retstr="" "RTN","SAMICAS3",340,0) new lastcmp set lastcmp="" "RTN","SAMICAS3",341,0) new fary "RTN","SAMICAS3",342,0) do SORTFRMS(.fary,sid) "RTN","SAMICAS3",343,0) ; "RTN","SAMICAS3",344,0) ;new tdt set tdt=$piece($$NOW^XLFDT,".",1)+1 ; start with today "RTN","SAMICAS3",345,0) new tdt set tdt=$piece($$NOW^XLFDT,".",1) ; start with before today "RTN","SAMICAS3",346,0) for set tdt=$order(fary(tdt),-1) quit:tdt="" do ; "RTN","SAMICAS3",347,0) . ; "RTN","SAMICAS3",348,0) . if lastcmp="" do ; first find the last comparison scan "RTN","SAMICAS3",349,0) . . new tmpkey set tmpkey="" "RTN","SAMICAS3",350,0) . . for set tmpkey=$order(fary(tdt,tmpkey)) quit:tmpkey="" quit:lastcmp'="" do ; "RTN","SAMICAS3",351,0) . . . if tmpkey["ceform" set lastcmp=tmpkey "RTN","SAMICAS3",352,0) . . . quit "RTN","SAMICAS3",353,0) . . quit "RTN","SAMICAS3",354,0) . ; "RTN","SAMICAS3",355,0) . do ; "RTN","SAMICAS3",356,0) . . ; next add all previous scans to retstr "RTN","SAMICAS3",357,0) . . new tmpkey2 set tmpkey2="" "RTN","SAMICAS3",358,0) . . for set tmpkey2=$order(fary(tdt,tmpkey2)) quit:tmpkey2="" do ; "RTN","SAMICAS3",359,0) . . . if tmpkey2["ceform" do ; convert to external date "RTN","SAMICAS3",360,0) . . . . set retstr=$$KEY2DT(tmpkey2)_retstr "RTN","SAMICAS3",361,0) . . . . quit "RTN","SAMICAS3",362,0) . . . quit "RTN","SAMICAS3",363,0) . . quit "RTN","SAMICAS3",364,0) . quit "RTN","SAMICAS3",365,0) ; "RTN","SAMICAS3",366,0) if $extract(retstr,$length(retstr))="," do "RTN","SAMICAS3",367,0) . set retstr=$extract(retstr,1,$length(retstr)-1) "RTN","SAMICAS3",368,0) . quit "RTN","SAMICAS3",369,0) ; "RTN","SAMICAS3",370,0) ;if retstr="" set retstr=$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMICAS3",371,0) ; "RTN","SAMICAS3",372,0) ; "RTN","SAMICAS3",373,0) ;@stanza 3 termination "RTN","SAMICAS3",374,0) ; "RTN","SAMICAS3",375,0) quit retstr ; end of $$PRIORCMP "RTN","SAMICAS3",376,0) ; "RTN","SAMICAS3",377,0) ; "RTN","SAMICAS3",378,0) ; "RTN","SAMICAS3",379,0) KEY2DT(key) ; date to put in prior scans field "RTN","SAMICAS3",380,0) ; "RTN","SAMICAS3",381,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",382,0) ; "RTN","SAMICAS3",383,0) ;ven/gpl;private;function;clean;silent;sac; "RTN","SAMICAS3",384,0) ;@called-by "RTN","SAMICAS3",385,0) ; $$PRIORCMP "RTN","SAMICAS3",386,0) ;@calls "RTN","SAMICAS3",387,0) ; $$KEY2FM^SAMICASE "RTN","SAMICAS3",388,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",389,0) ;@input "RTN","SAMICAS3",390,0) ; key = form key, e.g. ctform-2021-05-25 "RTN","SAMICAS3",391,0) ;@output = date to put in prior scans field "RTN","SAMICAS3",392,0) ;@examples [tbd] "RTN","SAMICAS3",393,0) ;@tests [tbd] "RTN","SAMICAS3",394,0) ; "RTN","SAMICAS3",395,0) ; "RTN","SAMICAS3",396,0) ;@stanza 2 calculate prior scans date "RTN","SAMICAS3",397,0) ; "RTN","SAMICAS3",398,0) new retstr2 set retstr2="" "RTN","SAMICAS3",399,0) new fmdt set fmdt=$$KEY2FM^SAMICASE(tmpkey2) "RTN","SAMICAS3",400,0) set retstr2=$$VAPALSDT^SAMICASE(fmdt)_","_retstr2 "RTN","SAMICAS3",401,0) ; "RTN","SAMICAS3",402,0) ; "RTN","SAMICAS3",403,0) ;@stanza 3 termination "RTN","SAMICAS3",404,0) ; "RTN","SAMICAS3",405,0) quit retstr2 ; end of $$KEY2DT "RTN","SAMICAS3",406,0) ; "RTN","SAMICAS3",407,0) ; "RTN","SAMICAS3",408,0) ; "RTN","SAMICAS3",409,0) SORTFRMS(ARY,sid) ; sorts all forms for patient sid by date "RTN","SAMICAS3",410,0) ; "RTN","SAMICAS3",411,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",412,0) ; "RTN","SAMICAS3",413,0) ;ven/gpl;private;procedure;clean;silent;sac; "RTN","SAMICAS3",414,0) ;@called-by "RTN","SAMICAS3",415,0) ; $$PREVNOD "RTN","SAMICAS3",416,0) ; $$LASTCMP "RTN","SAMICAS3",417,0) ; $$PRIORCMP "RTN","SAMICAS3",418,0) ;@calls "RTN","SAMICAS3",419,0) ; $$setroot^%wd "RTN","SAMICAS3",420,0) ; ^%DT "RTN","SAMICAS3",421,0) ; ^%ZTER "RTN","SAMICAS3",422,0) ;@input "RTN","SAMICAS3",423,0) ; sid = study id "RTN","SAMICAS3",424,0) ;@output "RTN","SAMICAS3",425,0) ; .ARY: sorted array of all forms for patient by date "RTN","SAMICAS3",426,0) ; ARY(fmdate,key)="" "RTN","SAMICAS3",427,0) ;@examples [tbd] "RTN","SAMICAS3",428,0) ;@tests [tbd] "RTN","SAMICAS3",429,0) ; "RTN","SAMICAS3",430,0) ; "RTN","SAMICAS3",431,0) ;@stanza 2 sort patient's forms by date "RTN","SAMICAS3",432,0) ; "RTN","SAMICAS3",433,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",434,0) quit:'$data(@root@("graph",sid)) "RTN","SAMICAS3",435,0) new froot set froot=$name(@root@("graph",sid)) "RTN","SAMICAS3",436,0) ; "RTN","SAMICAS3",437,0) new zi set zi="" "RTN","SAMICAS3",438,0) for set zi=$order(@froot@(zi)) quit:zi="" do ; "RTN","SAMICAS3",439,0) . new ftype set ftype=$piece(zi,"-",1) "RTN","SAMICAS3",440,0) . new fdate set fdate=$piece(zi,ftype_"-",2) "RTN","SAMICAS3",441,0) . new X,Y "RTN","SAMICAS3",442,0) . set X=fdate "RTN","SAMICAS3",443,0) . do ^%DT "RTN","SAMICAS3",444,0) . if Y=-1 do ^%ZTER quit ; "RTN","SAMICAS3",445,0) . set ARY(Y,zi)="" "RTN","SAMICAS3",446,0) . quit "RTN","SAMICAS3",447,0) ; "RTN","SAMICAS3",448,0) ; "RTN","SAMICAS3",449,0) ;@stanza 3 termination "RTN","SAMICAS3",450,0) ; "RTN","SAMICAS3",451,0) quit ; end of SORTFRMS "RTN","SAMICAS3",452,0) ; "RTN","SAMICAS3",453,0) ; "RTN","SAMICAS3",454,0) ; "RTN","SAMICAS3",455,0) MKCEFORM(sid,key) ; create ct evaluation form "RTN","SAMICAS3",456,0) ; "RTN","SAMICAS3",457,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",458,0) ; "RTN","SAMICAS3",459,0) ;ven/gpl;private;procedure;clean;silent;sac; "RTN","SAMICAS3",460,0) ;@called-by "RTN","SAMICAS3",461,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",462,0) ;@calls "RTN","SAMICAS3",463,0) ; $$setroot^%wd "RTN","SAMICAS3",464,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",465,0) ; $$LASTCMP "RTN","SAMICAS3",466,0) ; CTCOPY^SAMICTC1 "RTN","SAMICAS3",467,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",468,0) ; $$BASELNDT^SAMICAS3 "RTN","SAMICAS3",469,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",470,0) ; $$LASTCMP^SAMICAS3 "RTN","SAMICAS3",471,0) ; $$PRIORCMP^SAMICAS3 "RTN","SAMICAS3",472,0) ;@input "RTN","SAMICAS3",473,0) ; sid = study id "RTN","SAMICAS3",474,0) ; key = form key, e.g. ceform-2021-05-25 "RTN","SAMICAS3",475,0) ;@output "RTN","SAMICAS3",476,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",477,0) ;@examples [tbd] "RTN","SAMICAS3",478,0) ;@tests [tbd] "RTN","SAMICAS3",479,0) ; "RTN","SAMICAS3",480,0) ; "RTN","SAMICAS3",481,0) ;@stanza 2 create ct eval form "RTN","SAMICAS3",482,0) ; "RTN","SAMICAS3",483,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",484,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",485,0) quit:+sien=0 "RTN","SAMICAS3",486,0) new cdate set cdate=$piece(key,"ceform-",2) "RTN","SAMICAS3",487,0) ; "RTN","SAMICAS3",488,0) ; nodule copy "RTN","SAMICAS3",489,0) ; new srckey set srckey=$$PREVNOD(sid) "RTN","SAMICAS3",490,0) new srckey,srcdate set srcdate=$$LASTCMP(sid,.srckey) "RTN","SAMICAS3",491,0) if srckey'="" do ; "RTN","SAMICAS3",492,0) . new source set source=$name(@root@("graph",sid,srckey)) "RTN","SAMICAS3",493,0) . new target set target=$name(@root@("graph",sid,key)) "RTN","SAMICAS3",494,0) . do CTCOPY^SAMICTC1(source,target,key) "RTN","SAMICAS3",495,0) . quit "RTN","SAMICAS3",496,0) ; end nodule copy "RTN","SAMICAS3",497,0) ; "RTN","SAMICAS3",498,0) ; new items,prevct "RTN","SAMICAS3",499,0) ; do GETITEMS^SAMICASE("items",sid) "RTN","SAMICAS3",500,0) ; set prevct="" "RTN","SAMICAS3",501,0) ; if $data(items("type","vapals:ceform")) do ; previous cteval exists "RTN","SAMICAS3",502,0) ; . set prevct=$order(items("type","vapals:ceform",""),-1) ; latest ceform "RTN","SAMICAS3",503,0) ; . quit "RTN","SAMICAS3",504,0) ; if prevct'="" do ; "RTN","SAMICAS3",505,0) ; . new target,source "RTN","SAMICAS3",506,0) ; . set source=$name(@root@("graph",sid,prevct)) "RTN","SAMICAS3",507,0) ; . set target=$name(@root@("graph",sid,key)) "RTN","SAMICAS3",508,0) ; . do CTCOPY^SAMICTC1(source,target,key) "RTN","SAMICAS3",509,0) ; . quit "RTN","SAMICAS3",510,0) ; "RTN","SAMICAS3",511,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",512,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",513,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",514,0) ; "RTN","SAMICAS3",515,0) ; set baseline CT date and last comparison scan date "RTN","SAMICAS3",516,0) do ; "RTN","SAMICAS3",517,0) . new basedt "RTN","SAMICAS3",518,0) . set basedt=$$BASELNDT^SAMICAS3(sid) "RTN","SAMICAS3",519,0) . if basedt=-1 set basedt=$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMICAS3",520,0) . new lastdt set lastdt=$$LASTCMP^SAMICAS3(sid) "RTN","SAMICAS3",521,0) . if lastdt=-1 set lastdt="" "RTN","SAMICAS3",522,0) . new priordt set priordt=$$PRIORCMP^SAMICAS3(sid) "RTN","SAMICAS3",523,0) . if priordt=-1 set priordt=lastdt "RTN","SAMICAS3",524,0) . if priordt="" set priordt=lastdt "RTN","SAMICAS3",525,0) . set @root@("graph",sid,key,"sidoe")=basedt "RTN","SAMICAS3",526,0) . set @root@("graph",sid,key,"cedcs")=lastdt "RTN","SAMICAS3",527,0) . set @root@("graph",sid,key,"cedps")=priordt "RTN","SAMICAS3",528,0) . quit "RTN","SAMICAS3",529,0) ; "RTN","SAMICAS3",530,0) ; "RTN","SAMICAS3",531,0) ;@stanza 3 termination "RTN","SAMICAS3",532,0) ; "RTN","SAMICAS3",533,0) quit ; end of MKCEFORM "RTN","SAMICAS3",534,0) ; "RTN","SAMICAS3",535,0) ; "RTN","SAMICAS3",536,0) ; "RTN","SAMICAS3",537,0) MKFUFORM(sid,key) ; create Follow-up form "RTN","SAMICAS3",538,0) ; "RTN","SAMICAS3",539,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",540,0) ; "RTN","SAMICAS3",541,0) ;ven/gpl;private;procedure;clean;silent;sac; "RTN","SAMICAS3",542,0) ;@called-by "RTN","SAMICAS3",543,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",544,0) ;@calls "RTN","SAMICAS3",545,0) ; $$setroot^%wd "RTN","SAMICAS3",546,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",547,0) ; $$KEY2DSPD^SAMICAS2 "RTN","SAMICAS3",548,0) ; $$BASELNDT "RTN","SAMICAS3",549,0) ; $$LASTCMP "RTN","SAMICAS3",550,0) ; $$NOW^XLFDT "RTN","SAMICAS3",551,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",552,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",553,0) ;@input "RTN","SAMICAS3",554,0) ; sid = study id "RTN","SAMICAS3",555,0) ; key = form key, e.g. fuform-2021-05-25 "RTN","SAMICAS3",556,0) ;@output "RTN","SAMICAS3",557,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",558,0) ;@examples [tbd] "RTN","SAMICAS3",559,0) ;@tests [tbd] "RTN","SAMICAS3",560,0) ; "RTN","SAMICAS3",561,0) ; "RTN","SAMICAS3",562,0) ;@stanza 2 create Follow-up form "RTN","SAMICAS3",563,0) ; "RTN","SAMICAS3",564,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",565,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",566,0) quit:+sien=0 "RTN","SAMICAS3",567,0) ; "RTN","SAMICAS3",568,0) new cdate set cdate=$piece(key,"fuform-",2) "RTN","SAMICAS3",569,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",570,0) ; "RTN","SAMICAS3",571,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",572,0) set @root@("graph",sid,key,"sidof")=$$KEY2DSPD^SAMICAS2(cdate) "RTN","SAMICAS3",573,0) new basedt "RTN","SAMICAS3",574,0) set basedt=$$BASELNDT^SAMICAS3(sid) "RTN","SAMICAS3",575,0) if basedt=-1 set basedt=$$LASTCMP^SAMICAS3(sid) "RTN","SAMICAS3",576,0) if basedt=-1 set basedt=$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMICAS3",577,0) set @root@("graph",sid,key,"sidoe")=basedt "RTN","SAMICAS3",578,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",579,0) ; "RTN","SAMICAS3",580,0) ; "RTN","SAMICAS3",581,0) ;@stanza 3 termination "RTN","SAMICAS3",582,0) ; "RTN","SAMICAS3",583,0) quit ; end of MKFUFORM "RTN","SAMICAS3",584,0) ; "RTN","SAMICAS3",585,0) ; "RTN","SAMICAS3",586,0) ; "RTN","SAMICAS3",587,0) BASELNDT(sid) ; last previous baseline ct date "RTN","SAMICAS3",588,0) ; "RTN","SAMICAS3",589,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",590,0) ; "RTN","SAMICAS3",591,0) ;ven/gpl;private;function;clean;silent;sac "RTN","SAMICAS3",592,0) ;@called-by "RTN","SAMICAS3",593,0) ; MKCEFORM "RTN","SAMICAS3",594,0) ; MKFUFORM "RTN","SAMICAS3",595,0) ; MKPTFORM "RTN","SAMICAS3",596,0) ; MKITFORM "RTN","SAMICAS3",597,0) ;@calls "RTN","SAMICAS3",598,0) ; $$setroot^%wd "RTN","SAMICAS3",599,0) ; GETITEMS^SAMICASE "RTN","SAMICAS3",600,0) ; $$KEY2DSPD^SAMICAS2 "RTN","SAMICAS3",601,0) ;@input "RTN","SAMICAS3",602,0) ; sid = study id "RTN","SAMICAS3",603,0) ;@output = last previous baseline ct date "RTN","SAMICAS3",604,0) ;@examples [tbd] "RTN","SAMICAS3",605,0) ;@tests [tbd] "RTN","SAMICAS3",606,0) ; "RTN","SAMICAS3",607,0) ; "RTN","SAMICAS3",608,0) ;@stanza 2 calculate last previous baseline ct date "RTN","SAMICAS3",609,0) ; "RTN","SAMICAS3",610,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",611,0) new groot set groot=$name(@root@("graph",sid)) "RTN","SAMICAS3",612,0) new items set items="" "RTN","SAMICAS3",613,0) do GETITEMS^SAMICASE("items",sid) "RTN","SAMICAS3",614,0) quit:'$data(items) "" "RTN","SAMICAS3",615,0) ; "RTN","SAMICAS3",616,0) new bdate set bdate="" "RTN","SAMICAS3",617,0) new bkey set bkey="" "RTN","SAMICAS3",618,0) new done set done=0 "RTN","SAMICAS3",619,0) for set bkey=$order(items("type","vapals:ceform",bkey)) quit:bkey="" do ; "RTN","SAMICAS3",620,0) . ; write !,bkey," ",$get(@groot@(bkey,"cetex")) "RTN","SAMICAS3",621,0) . if $get(@groot@(bkey,"cetex"))="b" do ; "RTN","SAMICAS3",622,0) . . set done=1 "RTN","SAMICAS3",623,0) . . set bdate=$piece(bkey,"ceform-",2) "RTN","SAMICAS3",624,0) . . quit "RTN","SAMICAS3",625,0) . quit "RTN","SAMICAS3",626,0) set bdate=$$KEY2DSPD^SAMICAS2(bdate) "RTN","SAMICAS3",627,0) ; "RTN","SAMICAS3",628,0) ; "RTN","SAMICAS3",629,0) ;@stanza 3 termination "RTN","SAMICAS3",630,0) ; "RTN","SAMICAS3",631,0) quit bdate ; end of $$BASELNDT "RTN","SAMICAS3",632,0) ; "RTN","SAMICAS3",633,0) ; "RTN","SAMICAS3",634,0) ; "RTN","SAMICAS3",635,0) MKPTFORM(sid,key) ; create pet evaluation form "RTN","SAMICAS3",636,0) ; "RTN","SAMICAS3",637,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",638,0) ; "RTN","SAMICAS3",639,0) ;ven/gpl;private;procedure;clean;silent;sac "RTN","SAMICAS3",640,0) ;@called-by "RTN","SAMICAS3",641,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",642,0) ;@calls "RTN","SAMICAS3",643,0) ; $$setroot^%wd "RTN","SAMICAS3",644,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",645,0) ; $$LASTCMP "RTN","SAMICAS3",646,0) ; CTCOPY^SAMICTC1 "RTN","SAMICAS3",647,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",648,0) ; $$BASELNDT^SAMICAS3 "RTN","SAMICAS3",649,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",650,0) ; $$LASTCMP^SAMICAS3 "RTN","SAMICAS3",651,0) ; $$PRIORCMP^SAMICAS3 "RTN","SAMICAS3",652,0) ;@input "RTN","SAMICAS3",653,0) ; sid = study id "RTN","SAMICAS3",654,0) ; key = form key, e.g. ptform-2021-05-25 "RTN","SAMICAS3",655,0) ;@output "RTN","SAMICAS3",656,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",657,0) ;@examples [tbd] "RTN","SAMICAS3",658,0) ;@tests [tbd] "RTN","SAMICAS3",659,0) ; "RTN","SAMICAS3",660,0) ; "RTN","SAMICAS3",661,0) ;@stanza 2 create pet eval form "RTN","SAMICAS3",662,0) ; "RTN","SAMICAS3",663,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",664,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",665,0) quit:+sien=0 "RTN","SAMICAS3",666,0) ; "RTN","SAMICAS3",667,0) ; nodule copy "RTN","SAMICAS3",668,0) ; new srckey set srckey=$$PREVNOD(sid) "RTN","SAMICAS3",669,0) new srckey,srcdate set srcdate=$$LASTCMP(sid,.srckey) "RTN","SAMICAS3",670,0) if srckey'="" do ; "RTN","SAMICAS3",671,0) . new source set source=$name(@root@("graph",sid,srckey)) "RTN","SAMICAS3",672,0) . new target set target=$name(@root@("graph",sid,key)) "RTN","SAMICAS3",673,0) . do CTCOPY^SAMICTC1(source,target,key) "RTN","SAMICAS3",674,0) . quit "RTN","SAMICAS3",675,0) ; end nodule copy "RTN","SAMICAS3",676,0) ; "RTN","SAMICAS3",677,0) new cdate set cdate=$piece(key,"ptform-",2) "RTN","SAMICAS3",678,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",679,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",680,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",681,0) ; "RTN","SAMICAS3",682,0) do ; "RTN","SAMICAS3",683,0) . new basedt "RTN","SAMICAS3",684,0) . set basedt=$$BASELNDT^SAMICAS3(sid) "RTN","SAMICAS3",685,0) . if basedt=-1 set basedt=$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMICAS3",686,0) . new lastdt set lastdt=$$LASTCMP^SAMICAS3(sid) "RTN","SAMICAS3",687,0) . if lastdt=-1 set lastdt=basedt "RTN","SAMICAS3",688,0) . new priordt set priordt=$$PRIORCMP^SAMICAS3(sid) "RTN","SAMICAS3",689,0) . if priordt=-1 set priordt=lastdt "RTN","SAMICAS3",690,0) . set @root@("graph",sid,key,"sidoe")=basedt "RTN","SAMICAS3",691,0) . ; set @root@("graph",sid,key,"cedcs")=lastdt "RTN","SAMICAS3",692,0) . set @root@("graph",sid,key,"cedos")=lastdt ; it's different than on the ce "RTN","SAMICAS3",693,0) . ; set @root@("graph",sid,key,"cedps")=priordt "RTN","SAMICAS3",694,0) . quit "RTN","SAMICAS3",695,0) ; "RTN","SAMICAS3",696,0) ; "RTN","SAMICAS3",697,0) ;@stanza 3 termination "RTN","SAMICAS3",698,0) ; "RTN","SAMICAS3",699,0) quit ; end of MKPTFORM "RTN","SAMICAS3",700,0) ; "RTN","SAMICAS3",701,0) ; "RTN","SAMICAS3",702,0) ; "RTN","SAMICAS3",703,0) MKITFORM(sid,key) ; create intervention form "RTN","SAMICAS3",704,0) ; "RTN","SAMICAS3",705,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",706,0) ; "RTN","SAMICAS3",707,0) ;ven/gpl;private;procedure;clean;silent;sac "RTN","SAMICAS3",708,0) ;@called-by "RTN","SAMICAS3",709,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",710,0) ;@calls "RTN","SAMICAS3",711,0) ; $$setroot^%wd "RTN","SAMICAS3",712,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",713,0) ; $$PREVNODE [commented out] "RTN","SAMICAS3",714,0) ; $$LASTCMP "RTN","SAMICAS3",715,0) ; CTCOPY^SAMICTC1 "RTN","SAMICAS3",716,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",717,0) ; $$BASELNDT^SAMICAS3 "RTN","SAMICAS3",718,0) ; $$VAPALSDT^SAMICASE "RTN","SAMICAS3",719,0) ; $$LASTCMP^SAMICAS3 "RTN","SAMICAS3",720,0) ; $$PRIORCMP^SAMICAS3 "RTN","SAMICAS3",721,0) ;@input "RTN","SAMICAS3",722,0) ; sid = study id "RTN","SAMICAS3",723,0) ; key = form key, e.g. itform-2021-05-25 "RTN","SAMICAS3",724,0) ;@output "RTN","SAMICAS3",725,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",726,0) ;@examples [tbd] "RTN","SAMICAS3",727,0) ;@tests [tbd] "RTN","SAMICAS3",728,0) ; "RTN","SAMICAS3",729,0) ; "RTN","SAMICAS3",730,0) ;@stanza 2 create intervention form "RTN","SAMICAS3",731,0) ; "RTN","SAMICAS3",732,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",733,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",734,0) quit:+sien=0 "RTN","SAMICAS3",735,0) ; "RTN","SAMICAS3",736,0) new cdate set cdate=$piece(key,"itform-",2) "RTN","SAMICAS3",737,0) ; "RTN","SAMICAS3",738,0) ; nodule copy "RTN","SAMICAS3",739,0) ; new srckey set srckey=$$PREVNOD(sid) "RTN","SAMICAS3",740,0) new srckey,srcdate set srcdate=$$LASTCMP(sid,.srckey) "RTN","SAMICAS3",741,0) if srckey'="" do ; "RTN","SAMICAS3",742,0) . new source set source=$name(@root@("graph",sid,srckey)) "RTN","SAMICAS3",743,0) . new target set target=$name(@root@("graph",sid,key)) "RTN","SAMICAS3",744,0) . do CTCOPY^SAMICTC1(source,target,key) "RTN","SAMICAS3",745,0) . quit "RTN","SAMICAS3",746,0) ; end nodule copy "RTN","SAMICAS3",747,0) ; "RTN","SAMICAS3",748,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",749,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",750,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",751,0) ; "RTN","SAMICAS3",752,0) do ; "RTN","SAMICAS3",753,0) . new basedt "RTN","SAMICAS3",754,0) . set basedt=$$BASELNDT^SAMICAS3(sid) "RTN","SAMICAS3",755,0) . if basedt=-1 set basedt=$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMICAS3",756,0) . new lastdt set lastdt=$$LASTCMP^SAMICAS3(sid) "RTN","SAMICAS3",757,0) . if lastdt=-1 set lastdt=basedt "RTN","SAMICAS3",758,0) . new priordt set priordt=$$PRIORCMP^SAMICAS3(sid) "RTN","SAMICAS3",759,0) . if priordt=-1 set priordt=lastdt "RTN","SAMICAS3",760,0) . set @root@("graph",sid,key,"sidoe")=basedt "RTN","SAMICAS3",761,0) . ; set @root@("graph",sid,key,"cedcs")=lastdt "RTN","SAMICAS3",762,0) . set @root@("graph",sid,key,"cedos")=lastdt ; it's different than on the ce "RTN","SAMICAS3",763,0) . ; set @root@("graph",sid,key,"cedps")=priordt "RTN","SAMICAS3",764,0) . quit "RTN","SAMICAS3",765,0) ; "RTN","SAMICAS3",766,0) ; "RTN","SAMICAS3",767,0) ;@stanza 3 termination "RTN","SAMICAS3",768,0) ; "RTN","SAMICAS3",769,0) quit ; end of MKITFORM "RTN","SAMICAS3",770,0) ; "RTN","SAMICAS3",771,0) ; "RTN","SAMICAS3",772,0) ; "RTN","SAMICAS3",773,0) MKBXFORM(sid,key) ; create biopsy form "RTN","SAMICAS3",774,0) ; "RTN","SAMICAS3",775,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",776,0) ; "RTN","SAMICAS3",777,0) ;ven/gpl;private;procedure;clean;silent;sac "RTN","SAMICAS3",778,0) ;@called-by "RTN","SAMICAS3",779,0) ; WSNFPOST^SAMICAS3 "RTN","SAMICAS3",780,0) ;@calls "RTN","SAMICAS3",781,0) ; $$setroot^%wd "RTN","SAMICAS3",782,0) ; $$SID2NUM^SAMIHOM3 "RTN","SAMICAS3",783,0) ; $$LASTCMP "RTN","SAMICAS3",784,0) ; CTCOPY^SAMICTC1 "RTN","SAMICAS3",785,0) ; SSAMISTA^SAMICASE "RTN","SAMICAS3",786,0) ;@input "RTN","SAMICAS3",787,0) ; sid = study id "RTN","SAMICAS3",788,0) ; key = form key, e.g. bxform-2021-05-25 "RTN","SAMICAS3",789,0) ;@output "RTN","SAMICAS3",790,0) ; @root@("graph",sid,key) "RTN","SAMICAS3",791,0) ;@examples [tbd] "RTN","SAMICAS3",792,0) ;@tests [tbd] "RTN","SAMICAS3",793,0) ; "RTN","SAMICAS3",794,0) ; "RTN","SAMICAS3",795,0) ;@stanza 2 create background form "RTN","SAMICAS3",796,0) ; "RTN","SAMICAS3",797,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMICAS3",798,0) new sien set sien=$$SID2NUM^SAMIHOM3(sid) "RTN","SAMICAS3",799,0) quit:+sien=0 "RTN","SAMICAS3",800,0) new cdate set cdate=$piece(key,"bxform-",2) "RTN","SAMICAS3",801,0) ; "RTN","SAMICAS3",802,0) ; nodule copy "RTN","SAMICAS3",803,0) ; new srckey set srckey=$$PREVNOD(sid) "RTN","SAMICAS3",804,0) new srckey,srcdate set srcdate=$$LASTCMP(sid,.srckey) "RTN","SAMICAS3",805,0) if srckey'="" do ; "RTN","SAMICAS3",806,0) . new source set source=$name(@root@("graph",sid,srckey)) "RTN","SAMICAS3",807,0) . new target set target=$name(@root@("graph",sid,key)) "RTN","SAMICAS3",808,0) . do CTCOPY^SAMICTC1(source,target,key) "RTN","SAMICAS3",809,0) . quit "RTN","SAMICAS3",810,0) ; end nodule copy "RTN","SAMICAS3",811,0) ; "RTN","SAMICAS3",812,0) merge @root@("graph",sid,key)=@root@(sien) "RTN","SAMICAS3",813,0) set @root@("graph",sid,key,"samicreatedate")=cdate "RTN","SAMICAS3",814,0) do SSAMISTA^SAMICASE(sid,key,"incomplete") "RTN","SAMICAS3",815,0) ; "RTN","SAMICAS3",816,0) ; "RTN","SAMICAS3",817,0) ;@stanza 3 termination "RTN","SAMICAS3",818,0) ; "RTN","SAMICAS3",819,0) quit ; end of MKBXFORM "RTN","SAMICAS3",820,0) ; "RTN","SAMICAS3",821,0) ; "RTN","SAMICAS3",822,0) ; "RTN","SAMICAS3",823,0) CASETBL(ary) ; generates case review table "RTN","SAMICAS3",824,0) ; "RTN","SAMICAS3",825,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICAS3",826,0) ; "RTN","SAMICAS3",827,0) ;ven/gpl;private;procedure;clean;silent;sac "RTN","SAMICAS3",828,0) ;@called by none "RTN","SAMICAS3",829,0) ;@calls "RTN","SAMICAS3",830,0) ;@input "RTN","SAMICAS3",831,0) ; ary = name of array (passed by name, will be cleared) "RTN","SAMICAS3",832,0) ;@output "RTN","SAMICAS3",833,0) ; @ary "RTN","SAMICAS3",834,0) ;@tests "RTN","SAMICAS3",835,0) ; SAMIUTS2 "RTN","SAMICAS3",836,0) ; "RTN","SAMICAS3",837,0) ; "RTN","SAMICAS3",838,0) ;@stanza 2 build table "RTN","SAMICAS3",839,0) ; "RTN","SAMICAS3",840,0) kill @ary "RTN","SAMICAS3",841,0) ; "RTN","SAMICAS3",842,0) set @ary@("siform","form")="siform" "RTN","SAMICAS3",843,0) set @ary@("siform","js")="subPr" "RTN","SAMICAS3",844,0) set @ary@("siform","name")="Intake" "RTN","SAMICAS3",845,0) set @ary@("siform","image")="preview.gif" "RTN","SAMICAS3",846,0) ; "RTN","SAMICAS3",847,0) set @ary@("nuform","form")="nuform" "RTN","SAMICAS3",848,0) set @ary@("nuform","js")="subFr" "RTN","SAMICAS3",849,0) set @ary@("nuform","name")="New Form" "RTN","SAMICAS3",850,0) set @ary@("nuform","image")="nform.gif" "RTN","SAMICAS3",851,0) ; "RTN","SAMICAS3",852,0) set @ary@("sched","form")="sched" "RTN","SAMICAS3",853,0) set @ary@("sched","js")="subSc" "RTN","SAMICAS3",854,0) set @ary@("sched","name")="Schedule" "RTN","SAMICAS3",855,0) set @ary@("sched","image")="schedule.gif" "RTN","SAMICAS3",856,0) ; "RTN","SAMICAS3",857,0) set @ary@("sbform","form")="sbform" "RTN","SAMICAS3",858,0) set @ary@("sbform","js")="subPr" "RTN","SAMICAS3",859,0) set @ary@("sbform","name")="Background" "RTN","SAMICAS3",860,0) set @ary@("sbform","image")="preview.gif" "RTN","SAMICAS3",861,0) ; "RTN","SAMICAS3",862,0) set @ary@("ceform","form")="ceform" "RTN","SAMICAS3",863,0) set @ary@("ceform","js")="subPr" "RTN","SAMICAS3",864,0) set @ary@("ceform","name")="CT Evaluation" "RTN","SAMICAS3",865,0) set @ary@("ceform","image")="preview.gif" "RTN","SAMICAS3",866,0) ; "RTN","SAMICAS3",867,0) set @ary@("report","form")="report" "RTN","SAMICAS3",868,0) set @ary@("report","js")="subRp" "RTN","SAMICAS3",869,0) set @ary@("report","name")="Report" "RTN","SAMICAS3",870,0) set @ary@("report","image")="report.gif" "RTN","SAMICAS3",871,0) ; "RTN","SAMICAS3",872,0) set @ary@("ptform","form")="ptform" "RTN","SAMICAS3",873,0) set @ary@("ptform","js")="subPr" "RTN","SAMICAS3",874,0) set @ary@("ptform","name")="PET Evaluation" "RTN","SAMICAS3",875,0) set @ary@("ptform","image")="preview.gif" "RTN","SAMICAS3",876,0) ; "RTN","SAMICAS3",877,0) set @ary@("bxform","form")="bxform" "RTN","SAMICAS3",878,0) set @ary@("bxform","js")="subPr" "RTN","SAMICAS3",879,0) set @ary@("bxform","name")="Biopsy" "RTN","SAMICAS3",880,0) set @ary@("bxform","image")="preview.gif" "RTN","SAMICAS3",881,0) ; "RTN","SAMICAS3",882,0) set @ary@("rbform","form")="rbform" "RTN","SAMICAS3",883,0) set @ary@("rbform","js")="subPr" "RTN","SAMICAS3",884,0) set @ary@("rbform","name")="Intervention" "RTN","SAMICAS3",885,0) set @ary@("rbform","image")="preview.gif" "RTN","SAMICAS3",886,0) ; "RTN","SAMICAS3",887,0) set @ary@("ceform","form")="ceform" "RTN","SAMICAS3",888,0) set @ary@("ceform","js")="subPr" "RTN","SAMICAS3",889,0) set @ary@("ceform","name")="CT Evaluation" "RTN","SAMICAS3",890,0) set @ary@("ceform","image")="preview.gif" "RTN","SAMICAS3",891,0) ; "RTN","SAMICAS3",892,0) ; "RTN","SAMICAS3",893,0) ;@stanza 3 termination "RTN","SAMICAS3",894,0) ; "RTN","SAMICAS3",895,0) quit ; end of CASETBL "RTN","SAMICAS3",896,0) ; "RTN","SAMICAS3",897,0) ; "RTN","SAMICAS3",898,0) ; "RTN","SAMICAS3",899,0) EOR ; end of routine SAMICAS3 "RTN","SAMICTD2") 0^3^B193069319 "RTN","SAMICTD2",1,0) SAMICTD2 ;ven/gpl - cteval-dict init ;2021-10-19t22:03z "RTN","SAMICTD2",2,0) ;;18.0;SAMI;**12,15**;2020-01;Build 3 "RTN","SAMICTD2",3,0) ;;18-15 "RTN","SAMICTD2",4,0) ; "RTN","SAMICTD2",5,0) ; SAMICTD2 contains a pps to initialize the cteval-dict graphstore. "RTN","SAMICTD2",6,0) ; "RTN","SAMICTD2",7,0) quit ; no entry from top "RTN","SAMICTD2",8,0) ; "RTN","SAMICTD2",9,0) ; "RTN","SAMICTD2",10,0) ; "RTN","SAMICTD2",11,0) ;@section 0 primary development "RTN","SAMICTD2",12,0) ; "RTN","SAMICTD2",13,0) ; "RTN","SAMICTD2",14,0) ; "RTN","SAMICTD2",15,0) ;@routine-credits "RTN","SAMICTD2",16,0) ;@license see routine SAMIUL "RTN","SAMICTD2",17,0) ;@documentation see SAMICTUL "RTN","SAMICTD2",18,0) ; "RTN","SAMICTD2",19,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMICTD2",20,0) ; gpl@vistaexpertise.net "RTN","SAMICTD2",21,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMICTD2",22,0) ; http://vistaexpertise.net "RTN","SAMICTD2",23,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMICTD2",24,0) ;@license Apache 2.0 "RTN","SAMICTD2",25,0) ; https://www.apache.org/licenses/LICENSE-2.0.html "RTN","SAMICTD2",26,0) ; "RTN","SAMICTD2",27,0) ;@last-update 2021-07-21t20:12z "RTN","SAMICTD2",28,0) ;@application Screening Applications Management (SAM) "RTN","SAMICTD2",29,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMICTD2",30,0) ;@version 18.12 "RTN","SAMICTD2",31,0) ;@release-date 2020-01 "RTN","SAMICTD2",32,0) ;@patch-list **12** "RTN","SAMICTD2",33,0) ; "RTN","SAMICTD2",34,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMICTD2",35,0) ; toad@vistaexpertise.net "RTN","SAMICTD2",36,0) ; "RTN","SAMICTD2",37,0) ;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMICTD2",38,0) ; see routine SAMICTUL "RTN","SAMICTD2",39,0) ; "RTN","SAMICTD2",40,0) ;@contents "RTN","SAMICTD2",41,0) ; INIT2GPH pps INIT2GPH^SAMICTD2, "RTN","SAMICTD2",42,0) ; initialize CTEVAL dictionary into graph cteval-dict "RTN","SAMICTD2",43,0) ; INIT initialize cteval-dict graph "RTN","SAMICTD2",44,0) ; "RTN","SAMICTD2",45,0) ; "RTN","SAMICTD2",46,0) ; "RTN","SAMICTD2",47,0) ;@section 1 INIT2GPH^SAMICTD2 pps & subroutine "RTN","SAMICTD2",48,0) ; "RTN","SAMICTD2",49,0) ; "RTN","SAMICTD2",50,0) ; "RTN","SAMICTD2",51,0) ;@pps INIT2GPH^SAMICTD2 "RTN","SAMICTD2",52,0) INIT2GPH() ; initialize CTEVAL dictionary into graph cteval-dict "RTN","SAMICTD2",53,0) ; "RTN","SAMICTD2",54,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICTD2",55,0) ; "RTN","SAMICTD2",56,0) ;ven/gpl;pps;procedure;silent;clean;sac;??% tests "RTN","SAMICTD2",57,0) ;@called-by "RTN","SAMICTD2",58,0) ; WSREPORT^SAMICTR "RTN","SAMICTD2",59,0) ; WSREPORT^SAMICTR0 "RTN","SAMICTD2",60,0) ; WSREPORT^SAMICTT0 "RTN","SAMICTD2",61,0) ;@calls "RTN","SAMICTD2",62,0) ; $$setroot^%wd "RTN","SAMICTD2",63,0) ; INIT "RTN","SAMICTD2",64,0) ;@input none "RTN","SAMICTD2",65,0) ;@output "RTN","SAMICTD2",66,0) ; cteval-dict graph is initialized "RTN","SAMICTD2",67,0) ;@tests "RTN","SAMICTD2",68,0) ; UTIN2G^SAMIUTD2 "RTN","SAMICTD2",69,0) ; "RTN","SAMICTD2",70,0) ; "RTN","SAMICTD2",71,0) ;@stanza 2 init cteval-dict graph "RTN","SAMICTD2",72,0) ; "RTN","SAMICTD2",73,0) new root set root=$$setroot^%wd("cteval-dict") "RTN","SAMICTD2",74,0) kill @root ; clear contents of cteval-dict graph "RTN","SAMICTD2",75,0) ; "RTN","SAMICTD2",76,0) new g set g=$name(@root@("cteval-dict")) "RTN","SAMICTD2",77,0) do INIT(g) ; initialize graph "RTN","SAMICTD2",78,0) ; "RTN","SAMICTD2",79,0) ; "RTN","SAMICTD2",80,0) ;@stanza 3 termination "RTN","SAMICTD2",81,0) ; "RTN","SAMICTD2",82,0) quit ; end of INIT2GPH "RTN","SAMICTD2",83,0) ; "RTN","SAMICTD2",84,0) ; "RTN","SAMICTD2",85,0) ; "RTN","SAMICTD2",86,0) INIT(g) ; initialize cteval-dict graph "RTN","SAMICTD2",87,0) ; "RTN","SAMICTD2",88,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMICTD2",89,0) ; "RTN","SAMICTD2",90,0) ;ven/gpl;private;procedure;silent;clean;sac;??% tests "RTN","SAMICTD2",91,0) ;@called-by "RTN","SAMICTD2",92,0) ; INIT2GPH "RTN","SAMICTD2",93,0) ;@calls none "RTN","SAMICTD2",94,0) ;@input "RTN","SAMICTD2",95,0) ; g = root of cteval-dict graph "RTN","SAMICTD2",96,0) ;@output "RTN","SAMICTD2",97,0) ; @g = initialized cteval-dict graph "RTN","SAMICTD2",98,0) ;@tests "RTN","SAMICTD2",99,0) ; UTIN2G^SAMIUTD2 "RTN","SAMICTD2",100,0) ; "RTN","SAMICTD2",101,0) ; "RTN","SAMICTD2",102,0) ;@stanza 2 init cteval-dict graph "RTN","SAMICTD2",103,0) ; "RTN","SAMICTD2",104,0) ;# English Translation Dictionary for CT report generation "RTN","SAMICTD2",105,0) ;# Last Updated: December 14, 2016 "RTN","SAMICTD2",106,0) ;# "RTN","SAMICTD2",107,0) ;# - Phrasing shortened for updated CT Report used at Mount Sinai "RTN","SAMICTD2",108,0) ;# - Breast Density Added "RTN","SAMICTD2",109,0) ;# - Correction of nonsolid and noncalcified "RTN","SAMICTD2",110,0) ; "RTN","SAMICTD2",111,0) ;# Recommendations "RTN","SAMICTD2",112,0) set @g@("repeatscreen")="Repeat screening" "RTN","SAMICTD2",113,0) set @g@("annual")="Annual repeat CT" "RTN","SAMICTD2",114,0) set @g@("followup")="Follow-up CT" "RTN","SAMICTD2",115,0) set @g@("followupcontrast")="Follow-up CT with contrast" "RTN","SAMICTD2",116,0) set @g@("bronchoscopy")="Bronchoscopy" "RTN","SAMICTD2",117,0) set @g@("resection")="Resection" "RTN","SAMICTD2",118,0) set @g@("biopsy")="CT-guided biopsy" "RTN","SAMICTD2",119,0) set @g@("pet")="PET" "RTN","SAMICTD2",120,0) set @g@("vat")="VAT" "RTN","SAMICTD2",121,0) set @g@("ctfull")="Full diagnostic CT" "RTN","SAMICTD2",122,0) set @g@("ctlimited")="Limited diagnostic CT" "RTN","SAMICTD2",123,0) set @g@("ctbiopsy")="Full diagnostic CT and biopsy" "RTN","SAMICTD2",124,0) set @g@("antibiotic")="Antibiotic treatment with a follow-up CT" "RTN","SAMICTD2",125,0) set @g@("annualrepeat")="Annual repeat Diagnostic CT" "RTN","SAMICTD2",126,0) ; "RTN","SAMICTD2",127,0) ;# CT Type of Exam (cetex) "RTN","SAMICTD2",128,0) set @g@("cetex","b")="Baseline" "RTN","SAMICTD2",129,0) set @g@("cetex","a")="Annual repeat" "RTN","SAMICTD2",130,0) set @g@("cetex","d")="Follow-up" "RTN","SAMICTD2",131,0) ; "RTN","SAMICTD2",132,0) ;# CT Protocol (cectp) "RTN","SAMICTD2",133,0) set @g@("cectp","l")="low-dose CT" "RTN","SAMICTD2",134,0) set @g@("cectp","m")="low-dose Dx CT / HRCT" "RTN","SAMICTD2",135,0) set @g@("cectp","d")="standard Dx CT / HRCT" "RTN","SAMICTD2",136,0) set @g@("cectp","i")="limited Dx CT / HRCT" "RTN","SAMICTD2",137,0) ; "RTN","SAMICTD2",138,0) ;# Is It New (Nodule x)? (cect[x]ch, x=1..10) "RTN","SAMICTD2",139,0) set @g@("cectch","n")="is newly seen" "RTN","SAMICTD2",140,0) set @g@("cectch","pn")="unchanged" "RTN","SAMICTD2",141,0) set @g@("cectch","pd")="shows slight decrease" "RTN","SAMICTD2",142,0) set @g@("cectch","pe")="shows marked decrease" "RTN","SAMICTD2",143,0) set @g@("cectch","pi")="shows slight increase" "RTN","SAMICTD2",144,0) set @g@("cectch","pj")="shows marked increase" "RTN","SAMICTD2",145,0) set @g@("cectch","pw")="has resolved" "RTN","SAMICTD2",146,0) set @g@("cectch","px")="is not a nodule" "RTN","SAMICTD2",147,0) set @g@("cectch","pr")="has been resected" "RTN","SAMICTD2",148,0) set @g@("cectch","pk")="previously seen but is not mentioned in outside report" "RTN","SAMICTD2",149,0) set @g@("cectch","rn")="seen in retrospect with no change" "RTN","SAMICTD2",150,0) set @g@("cectch","pv")="was not included in this scan" "RTN","SAMICTD2",151,0) set @g@("cectch","po")="is obscured" "RTN","SAMICTD2",152,0) set @g@("cectch","rd")="seen in retrospect with decrease" "RTN","SAMICTD2",153,0) set @g@("cectch","ri")="seen in retrospect with slight increase" "RTN","SAMICTD2",154,0) set @g@("cectch","rj")="seen in retrospect with marked increase" "RTN","SAMICTD2",155,0) ; "RTN","SAMICTD2",156,0) ;# Endoibronchial "RTN","SAMICTD2",157,0) set @g@("cecten","tr")="trachea" "RTN","SAMICTD2",158,0) set @g@("cecten","rm")="right main bronchus" "RTN","SAMICTD2",159,0) set @g@("cecten","lm")="left main bronchus" "RTN","SAMICTD2",160,0) set @g@("cecten","bi")="bronchus intermedius" "RTN","SAMICTD2",161,0) set @g@("cecten","lul")="left upper lobe" "RTN","SAMICTD2",162,0) set @g@("cecten","lll")="left lower lobe" "RTN","SAMICTD2",163,0) set @g@("cecten","rul")="right upper lobe" "RTN","SAMICTD2",164,0) set @g@("cecten","rml")="right middle lobe" "RTN","SAMICTD2",165,0) set @g@("cecten","rll")="right lower lobe" "RTN","SAMICTD2",166,0) ; "RTN","SAMICTD2",167,0) ;# Likely Location (Nodule x) (cect[x]ll, x=1..10) "RTN","SAMICTD2",168,0) set @g@("cectll","lul")="left upper lobe" "RTN","SAMICTD2",169,0) set @g@("cectll","lll")="left lower lobe" "RTN","SAMICTD2",170,0) set @g@("cectll","rul")="right upper lobe" "RTN","SAMICTD2",171,0) set @g@("cectll","rml")="right middle lobe" "RTN","SAMICTD2",172,0) set @g@("cectll","rll")="right lower lobe" "RTN","SAMICTD2",173,0) ; "RTN","SAMICTD2",174,0) ;# Nodule Texture (Nodule x) (cect[x]nt, x=1..10) "RTN","SAMICTD2",175,0) set @g@("cectnt","s")="solid" "RTN","SAMICTD2",176,0) set @g@("cectnt","m")="part-solid" "RTN","SAMICTD2",177,0) set @g@("cectnt","g")="nonsolid" "RTN","SAMICTD2",178,0) set @g@("cectnt","o")="unusual" "RTN","SAMICTD2",179,0) ; "RTN","SAMICTD2",180,0) ;# Smooth Edges (Nodule x) (cect[x]nt, x=1..10) "RTN","SAMICTD2",181,0) set @g@("cectse","y")="smooth" "RTN","SAMICTD2",182,0) set @g@("cectse","n")="irregularly marginated" "RTN","SAMICTD2",183,0) set @g@("cectse","q")="ill-defined" "RTN","SAMICTD2",184,0) ; "RTN","SAMICTD2",185,0) ;# Calcifications (Nodule x) (cect[x]ca, x=1..10) "RTN","SAMICTD2",186,0) set @g@("cectca","y")="calcified" "RTN","SAMICTD2",187,0) set @g@("cectca","n")="noncalcified" "RTN","SAMICTD2",188,0) set @g@("cectca","q")="possibly calcified" "RTN","SAMICTD2",189,0) ; "RTN","SAMICTD2",190,0) ;# Spiculations/Pleural Tags (Nodule x) (cect[x]sp, x=1..10) "RTN","SAMICTD2",191,0) set @g@("cectsp","y")="spiculations / pleural tags are seen" "RTN","SAMICTD2",192,0) set @g@("cectsp","n")="no spiculations or pleural tags are seen" "RTN","SAMICTD2",193,0) ; "RTN","SAMICTD2",194,0) ;# Pathologic Diagnosis (Nodule x) (cect[x]pd, x=1..10) "RTN","SAMICTD2",195,0) set @g@("cectpd","aa")="AAH" "RTN","SAMICTD2",196,0) set @g@("cectpd","ba")="BAC" "RTN","SAMICTD2",197,0) set @g@("cectpd","ad")="Adenocarcinoma" "RTN","SAMICTD2",198,0) set @g@("cectpd","as")="Adenosquamous" "RTN","SAMICTD2",199,0) set @g@("cectpd","la")="Large cell" "RTN","SAMICTD2",200,0) set @g@("cectpd","sq")="Squamous cell" "RTN","SAMICTD2",201,0) set @g@("cectpd","sm")="Small cell" "RTN","SAMICTD2",202,0) set @g@("cectpd","ct")="Carcinoid(typical)" "RTN","SAMICTD2",203,0) set @g@("cectpd","ca")="Carcinoid(atypical)" "RTN","SAMICTD2",204,0) set @g@("cectpd","be")="Benign" "RTN","SAMICTD2",205,0) set @g@("cectpd","bs")="Benign specific" "RTN","SAMICTD2",206,0) ; "RTN","SAMICTD2",207,0) set @g@("cectac","f")="Follow-up CT" "RTN","SAMICTD2",208,0) set @g@("cectac","a")="Antibiotic treatment with a follow-up CT" "RTN","SAMICTD2",209,0) set @g@("cectac","e")="PET" "RTN","SAMICTD2",210,0) set @g@("cectac","c")="Follow-up CT with contrast" "RTN","SAMICTD2",211,0) set @g@("cectac","b")="CT-guided biopsy" "RTN","SAMICTD2",212,0) set @g@("cectac","p")="Bronchoscopy" "RTN","SAMICTD2",213,0) set @g@("cectac","v")="VAT" "RTN","SAMICTD2",214,0) set @g@("cectac","r")="Resection" "RTN","SAMICTD2",215,0) ; "RTN","SAMICTD2",216,0) ;# The following is deprecated, but available for old forms "RTN","SAMICTD2",217,0) set @g@("cectac","s")="repeat SCT" "RTN","SAMICTD2",218,0) ; "RTN","SAMICTD2",219,0) ;# Emphysema (ceem) "RTN","SAMICTD2",220,0) set @g@("ceem","no")="None" "RTN","SAMICTD2",221,0) ;set @g@("ceem","mi")="Minimal" "RTN","SAMICTD2",222,0) set @g@("ceem","mi")="Mild" "RTN","SAMICTD2",223,0) set @g@("ceem","mo")="Moderate" "RTN","SAMICTD2",224,0) set @g@("ceem","se")="Severe" "RTN","SAMICTD2",225,0) ; "RTN","SAMICTD2",226,0) ;# Bronchiectasis/Small Airway Disease (cebrs) [***IGNORE cebrs(n)] "RTN","SAMICTD2",227,0) set @g@("cebrs","y")="Bronchiectasis/small airways disease" "RTN","SAMICTD2",228,0) set @g@("cebrs","n")="No bronchiectasis or small airways disease" "RTN","SAMICTD2",229,0) ; "RTN","SAMICTD2",230,0) ;# Coronary Calcifications (cecclm, ceccld, cecccf, cdccrc) "RTN","SAMICTD2",231,0) set @g@("cecc","no")="none" "RTN","SAMICTD2",232,0) set @g@("cecc","mi")="minimal" "RTN","SAMICTD2",233,0) set @g@("cecc","mo")="moderate" "RTN","SAMICTD2",234,0) set @g@("cecc","ex")="extensive" "RTN","SAMICTD2",235,0) ; "RTN","SAMICTD2",236,0) set @g@("cebat","y")="Non-obstructive atelectasis seen in the" "RTN","SAMICTD2",237,0) ; "RTN","SAMICTD2",238,0) ;# Lymph Nodes (cemln, cemlnca) "RTN","SAMICTD2",239,0) set @g@("cemln","y")="Lymph nodes are seen" "RTN","SAMICTD2",240,0) set @g@("cemln","n")="No abnormal lymph nodes are seen" "RTN","SAMICTD2",241,0) set @g@("cemlnca","c")="Lymph nodes are calcified." "RTN","SAMICTD2",242,0) set @g@("cemlnca","n")="Lymph nodes are non-calcified." "RTN","SAMICTD2",243,0) set @g@("cemlnca","b")="Lymph nodes are both calcified and non-calcified." "RTN","SAMICTD2",244,0) ; "RTN","SAMICTD2",245,0) ;# Hilar Abnormalities (ceha) [***IGNORE ceha(n)] "RTN","SAMICTD2",246,0) set @g@("ceha","y")="Hilar Abnormalities:" "RTN","SAMICTD2",247,0) set @g@("ceha","n")="No hilar abnormalities are seen" "RTN","SAMICTD2",248,0) ; "RTN","SAMICTD2",249,0) ;# Hilar Abnormalities - what(cehaw) "RTN","SAMICTD2",250,0) set @g@("cehaw","hm")="hilar mass" "RTN","SAMICTD2",251,0) ; "RTN","SAMICTD2",252,0) ;# Hilar Abnormalities action (cehaa) "RTN","SAMICTD2",253,0) set @g@("cehaa","f")=@g@("followup") "RTN","SAMICTD2",254,0) set @g@("cehaa","c")=@g@("followupcontrast") "RTN","SAMICTD2",255,0) set @g@("cehaa","b")=@g@("biopsy") "RTN","SAMICTD2",256,0) set @g@("cehaa","p")=@g@("bronchoscopy") "RTN","SAMICTD2",257,0) ; "RTN","SAMICTD2",258,0) ;# Mediastinal Abnormalities (ceoma) [***IGNORE ceoma(n)] "RTN","SAMICTD2",259,0) set @g@("ceoma","y")="Mediastinal Abnormalities:" "RTN","SAMICTD2",260,0) set @g@("ceoma","n")="no mediastinal abnormalities are seen" "RTN","SAMICTD2",261,0) ; "RTN","SAMICTD2",262,0) ;# Mediastinal Abnormalities Action (ceomaa)[*** for ceomaa(o) use ceomas] "RTN","SAMICTD2",263,0) set @g@("ceomaa","f")=@g@("followup") "RTN","SAMICTD2",264,0) set @g@("ceomaa","c")=@g@("followupcontrast") "RTN","SAMICTD2",265,0) set @g@("ceomaa","b")=@g@("biopsy") "RTN","SAMICTD2",266,0) set @g@("ceomaa","p")=@g@("bronchoscopy") "RTN","SAMICTD2",267,0) set @g@("ceomaa","e")=@g@("pet") "RTN","SAMICTD2",268,0) set @g@("ceomaa","r")=@g@("resection") "RTN","SAMICTD2",269,0) set @g@("ceomaa","v")=@g@("vat") "RTN","SAMICTD2",270,0) set @g@("ceomaa","s")=@g@("repeatscreen") "RTN","SAMICTD2",271,0) ; "RTN","SAMICTD2",272,0) ;# Endobronchial Abnormalities (ceeba) [***IGNORE ceeba(n)] "RTN","SAMICTD2",273,0) set @g@("ceeba","y")="Endobronchial Abnormalities: " "RTN","SAMICTD2",274,0) set @g@("ceeba","n")="no endobroncial abnormalities are seen" "RTN","SAMICTD2",275,0) ; "RTN","SAMICTD2",276,0) ;# Endobronchial Abnormalities Action (ceebaa) "RTN","SAMICTD2",277,0) set @g@("ceebaa","f")=@g@("followup") "RTN","SAMICTD2",278,0) set @g@("ceebaa","p")=@g@("bronchoscopy") "RTN","SAMICTD2",279,0) set @g@("ceebaa","b")=@g@("biopsy") "RTN","SAMICTD2",280,0) set @g@("ceebaa","s")=@g@("repeatscreen") "RTN","SAMICTD2",281,0) ; "RTN","SAMICTD2",282,0) ;# Other clincially significant abnormalities location (ceafl) "RTN","SAMICTD2",283,0) set @g@("ceafl","b")="breast" "RTN","SAMICTD2",284,0) set @g@("ceafl","a")="abdomen" "RTN","SAMICTD2",285,0) set @g@("ceafl","h")="head" "RTN","SAMICTD2",286,0) set @g@("ceafl","n")="neck" "RTN","SAMICTD2",287,0) ; "RTN","SAMICTD2",288,0) ;# Consolidation (cefcp) [***IGNORE cefcp(n)] "RTN","SAMICTD2",289,0) set @g@("cefcp","y")="consolidation is noted" "RTN","SAMICTD2",290,0) set @g@("cefcp","n")="no consolidation is noted" "RTN","SAMICTD2",291,0) ; "RTN","SAMICTD2",292,0) ;# Consolidation What (cefcpw) [*** for cefcpw(os) use cefcps] "RTN","SAMICTD2",293,0) set @g@("cefcpw","f")="Focal" "RTN","SAMICTD2",294,0) set @g@("cefcpw","p")="Patchy" "RTN","SAMICTD2",295,0) set @g@("cefcpw","d")="Diffuse" "RTN","SAMICTD2",296,0) ; "RTN","SAMICTD2",297,0) ;# Recommended Consolidation Action (cefcpa)[*** for cefcpa(o) use cefcpas] "RTN","SAMICTD2",298,0) set @g@("cefcpa","s")=@g@("repeatscreen") "RTN","SAMICTD2",299,0) set @g@("cefcpa","a")=@g@("antibiotic") "RTN","SAMICTD2",300,0) set @g@("cefcpa","f")=@g@("followup") "RTN","SAMICTD2",301,0) set @g@("cefcpa","b")=@g@("biopsy") "RTN","SAMICTD2",302,0) set @g@("cefcpa","p")=@g@("bronchoscopy") "RTN","SAMICTD2",303,0) ; "RTN","SAMICTD2",304,0) ;# Pleural Effusion (cepel, ceper) [***IGNORE if both are no] "RTN","SAMICTD2",305,0) set @g@("cepe","no")="no" "RTN","SAMICTD2",306,0) set @g@("cepe","sm")="small" "RTN","SAMICTD2",307,0) set @g@("cepe","mo")="moderate" "RTN","SAMICTD2",308,0) set @g@("cepe","lg")="large" "RTN","SAMICTD2",309,0) ; "RTN","SAMICTD2",310,0) ;# Pericardial Effusion "RTN","SAMICTD2",311,0) set @g@("ceprevm","mi")="minimal" "RTN","SAMICTD2",312,0) set @g@("ceprevm","mo")="moderate" "RTN","SAMICTD2",313,0) set @g@("ceprevm","ex")="marked" "RTN","SAMICTD2",314,0) ; "RTN","SAMICTD2",315,0) ;# Recommended Followup (cefu) "RTN","SAMICTD2",316,0) set @g@("cefu","rs")=@g@("annual") "RTN","SAMICTD2",317,0) set @g@("cefu","dx")=@g@("followup") "RTN","SAMICTD2",318,0) set @g@("cefu","dl")=@g@("ctlimited") "RTN","SAMICTD2",319,0) set @g@("cefu","af")=@g@("antibiotic") "RTN","SAMICTD2",320,0) set @g@("cefu","fn")=@g@("biopsy") "RTN","SAMICTD2",321,0) set @g@("cefu","cb")=@g@("ctbiopsy") "RTN","SAMICTD2",322,0) set @g@("cefu","cc")=@g@("followupcontrast") "RTN","SAMICTD2",323,0) set @g@("cefu","pe")=@g@("pet") "RTN","SAMICTD2",324,0) set @g@("cefu","br")=@g@("bronchoscopy") "RTN","SAMICTD2",325,0) set @g@("cefu","va")=@g@("vat") "RTN","SAMICTD2",326,0) set @g@("cefu","su")=@g@("resection") "RTN","SAMICTD2",327,0) set @g@("cefu","ad")=@g@("annualrepeat") "RTN","SAMICTD2",328,0) ; "RTN","SAMICTD2",329,0) ;# Recommended Follow-up (When) (cefuw) "RTN","SAMICTD2",330,0) set @g@("cefuw","nw")="at this time" "RTN","SAMICTD2",331,0) set @g@("cefuw","1m")="in one month" "RTN","SAMICTD2",332,0) set @g@("cefuw","3m")="in three months" "RTN","SAMICTD2",333,0) set @g@("cefuw","6m")="in six months" "RTN","SAMICTD2",334,0) set @g@("cefuw","1y")="in one year" "RTN","SAMICTD2",335,0) ; "RTN","SAMICTD2",336,0) ;# Impression (Nodules) (ceimn) "RTN","SAMICTD2",337,0) set @g@("ceimn","rs")="No evidence of nodules" "RTN","SAMICTD2",338,0) set @g@("ceimn","ro")="Nodule(s) as described. Consistent with old granulomatous disease" "RTN","SAMICTD2",339,0) set @g@("ceimn","ru")="Nodule(s) unchanged, as described" "RTN","SAMICTD2",340,0) set @g@("ceimn","nf")="Nodule(s) as described" "RTN","SAMICTD2",341,0) ; "RTN","SAMICTD2",342,0) ;# Impression (Other Findings) (ceimo) "RTN","SAMICTD2",343,0) set @g@("ceimo","no")="No other abnormalities" "RTN","SAMICTD2",344,0) set @g@("ceimo","oa")="Other abnormalities as described" "RTN","SAMICTD2",345,0) set @g@("ceimo","da")="Diffuse abnormalities" "RTN","SAMICTD2",346,0) ; "RTN","SAMICTD2",347,0) ;# Breast Density "RTN","SAMICTD2",348,0) set @g@("ceobad","1")="almost entirely fatty" "RTN","SAMICTD2",349,0) set @g@("ceobad","2")="scattered areas of fibroglandular density" "RTN","SAMICTD2",350,0) set @g@("ceobad","3")="heterogeneously dense" "RTN","SAMICTD2",351,0) set @g@("ceobad","4")="extremely dense" "RTN","SAMICTD2",352,0) ; "RTN","SAMICTD2",353,0) ;# LungRADS "RTN","SAMICTD2",354,0) set @g@("celrad","0")="incomplete" "RTN","SAMICTD2",355,0) set @g@("celrad","1")="negative" "RTN","SAMICTD2",356,0) set @g@("celrad","2")="benign appearance or behavior" "RTN","SAMICTD2",357,0) set @g@("celrad","3")="probably benign" "RTN","SAMICTD2",358,0) set @g@("celrad","4A")="suspicious" "RTN","SAMICTD2",359,0) set @g@("celrad","4B")="suspicious" "RTN","SAMICTD2",360,0) set @g@("celrad","4X")="suspicious" "RTN","SAMICTD2",361,0) ; "RTN","SAMICTD2",362,0) ;# LungRADS also "RTN","SAMICTD2",363,0) set @g@("celrc","0")="incomplete" "RTN","SAMICTD2",364,0) set @g@("celrc","1")="negative" "RTN","SAMICTD2",365,0) set @g@("celrc","2")="benign appearance or behavior" "RTN","SAMICTD2",366,0) set @g@("celrc","3")="probably benign" "RTN","SAMICTD2",367,0) set @g@("celrc","4A")="suspicious" "RTN","SAMICTD2",368,0) set @g@("celrc","4B")="suspicious" "RTN","SAMICTD2",369,0) set @g@("celrc","4X")="suspicious" "RTN","SAMICTD2",370,0) ; "RTN","SAMICTD2",371,0) ;# Impression Note: "RTN","SAMICTD2",372,0) set @g@("note_imp")="Note: If LIMITED diagnostic scans are done to follow nodules, each one-year diagnostic scan which serves as the annual screening test MUST BE A FULL DIAGNOSTIC SCAN." "RTN","SAMICTD2",373,0) ; "RTN","SAMICTD2",374,0) ;# Study Complete Notice "RTN","SAMICTD2",375,0) set @g@("study_complete")="You have completed the free screening provided by the New York Early Lung Cancer Action Program. " "RTN","SAMICTD2",376,0) set @g@("study_complete")=@g@("study_complete")_"Further screening outside of this project is at the discretion of you and your physician. Please call if you have any questions or concerns." "RTN","SAMICTD2",377,0) ; "RTN","SAMICTD2",378,0) ;#set CAC_recommendation "Since your Visual Coronary Artery Calcium Score (CAC), which is calculated by The Coordinating Site at Weill Medical College of Cornell University, is above 3, " "RTN","SAMICTD2",379,0) ;we recommend that you consult with a cardiologist, as you may be at risk for coronary artery disease." "RTN","SAMICTD2",380,0) ; "RTN","SAMICTD2",381,0) ;#set CAC_recommendation "Clinical interpretation of the Visual Coronary Artery Calcium Score (CAC) is provided in the attached writeup." "RTN","SAMICTD2",382,0) ; "RTN","SAMICTD2",383,0) ;#set CAC_recommendation "Since your Visual Coronary Artery Calcium Score (CAC) is above 3, we recommend that you consult with your physician for a clinical interpretation of this score, as you may be at risk for coronary artery disease." "RTN","SAMICTD2",384,0) ; "RTN","SAMICTD2",385,0) set @g@("CAC_recommendation")="Since your Visual CAC Score is above 3, we recommend that you consult with your physician for a clinical interpretation, as you may be at risk for coronary artery disease." "RTN","SAMICTD2",386,0) ; "RTN","SAMICTD2",387,0) ; "RTN","SAMICTD2",388,0) ;@stanza 3 termination "RTN","SAMICTD2",389,0) ; "RTN","SAMICTD2",390,0) quit ; end of INIT "RTN","SAMICTD2",391,0) ; "RTN","SAMICTD2",392,0) ; "RTN","SAMICTD2",393,0) ; "RTN","SAMICTD2",394,0) EOR ; end of routine SAMICTD2 "RTN","SAMICTT0") 0^4^B100450717 "RTN","SAMICTT0",1,0) SAMICTT0 ;ven/gpl - ctreport text main ;2021-10-27t03:21z "RTN","SAMICTT0",2,0) ;;18.0;SAMI;**4,10,11,15**;2020-01;Build 3 "RTN","SAMICTT0",3,0) ;;18-15 "RTN","SAMICTT0",4,0) ; "RTN","SAMICTT0",5,0) ; SAMICTT0 contains a web route & associated subroutines to produce "RTN","SAMICTT0",6,0) ; the ELCAP CT Report in text format (route ctreport, format text). "RTN","SAMICTT0",7,0) ; SAMICTT* routines serve web service interfaces WSVAPALS^SAMIHOM3 "RTN","SAMICTT0",8,0) ; (the main VAPALS-ELCAP post web service) & WSHOME^SAMIHOM3 (the "RTN","SAMICTT0",9,0) ; VAPALS-ELCAP home-page service). "RTN","SAMICTT0",10,0) ; "RTN","SAMICTT0",11,0) quit ; no entry from top "RTN","SAMICTT0",12,0) ; "RTN","SAMICTT0",13,0) ; "RTN","SAMICTT0",14,0) ; "RTN","SAMICTT0",15,0) ;@section 0 primary development "RTN","SAMICTT0",16,0) ; "RTN","SAMICTT0",17,0) ; "RTN","SAMICTT0",18,0) ; "RTN","SAMICTT0",19,0) ;@license see routine SAMIUL "RTN","SAMICTT0",20,0) ;@documentation see SAMICTUL "RTN","SAMICTT0",21,0) ;@contents "RTN","SAMICTT0",22,0) ; WSREPORT web route: ctreport in text format "RTN","SAMICTT0",23,0) ; OUT output a line of ct report "RTN","SAMICTT0",24,0) ; OUTOLD old version of out "RTN","SAMICTT0",25,0) ; HOUT output a ct report header line "RTN","SAMICTT0",26,0) ; $$XVAL patient value for var "RTN","SAMICTT0",27,0) ; $$XSUB dictionary value defined by var "RTN","SAMICTT0",28,0) ; GETFILTR fill in the filter for Ct Eval for sid "RTN","SAMICTT0",29,0) ; T1 test "RTN","SAMICTT0",30,0) ; "RTN","SAMICTT0",31,0) ; "RTN","SAMICTT0",32,0) ; "RTN","SAMICTT0",33,0) ;@section 1 wsi WSREPORT & related subroutines "RTN","SAMICTT0",34,0) ; "RTN","SAMICTT0",35,0) ; "RTN","SAMICTT0",36,0) ; "RTN","SAMICTT0",37,0) ;@wsr WSREPORT^SAMICTT0 "RTN","SAMICTT0",38,0) WSREPORT(return,filter) ; web route: ctreport in text format "RTN","SAMICTT0",39,0) ; "RTN","SAMICTT0",40,0) ;@called-by "RTN","SAMICTT0",41,0) ; WSNOTE^SAMINOT3 "RTN","SAMICTT0",42,0) ; (called-by wsi WSVAPALS^SAMIHOM3) "RTN","SAMICTT0",43,0) ; (called by wsi WSHOME^SAMIHOM3) "RTN","SAMICTT0",44,0) ; (sibling to wri WSREPORT^SAMICTR0, keep in sync) "RTN","SAMICTT0",45,0) ;@calls "RTN","SAMICTT0",46,0) ; INIT2GPH^SAMICTD2 "RTN","SAMICTT0",47,0) ; $$setroot^%wd "RTN","SAMICTT0",48,0) ; $$XVAL "RTN","SAMICTT0",49,0) ; OUT "RTN","SAMICTT0",50,0) ; $$XSUB "RTN","SAMICTT0",51,0) ; HOUT "RTN","SAMICTT0",52,0) ; NODULES^SAMICTT1 "RTN","SAMICTT0",53,0) ; OTHRLUNG^SAMICTT2 "RTN","SAMICTT0",54,0) ; EMPHYS^SAMICTT3 "RTN","SAMICTT0",55,0) ; BREAST^SAMICTT4 "RTN","SAMICTT0",56,0) ; IMPRSN^SAMICTT9 "RTN","SAMICTT0",57,0) ; RCMND^SAMICTTA "RTN","SAMICTT0",58,0) ; "RTN","SAMICTT0",59,0) s debug=0 "RTN","SAMICTT0",60,0) n outmode s outmode="go" "RTN","SAMICTT0",61,0) n line s line="" "RTN","SAMICTT0",62,0) i $g(filter("debug"))=1 s debug=1 "RTN","SAMICTT0",63,0) ; "RTN","SAMICTT0",64,0) ;s rtn=$na(^TMP("SAMICTT",$J)) "RTN","SAMICTT0",65,0) s rtn="return" "RTN","SAMICTT0",66,0) k @rtn "RTN","SAMICTT0",67,0) s HTTPRSP("mime")="text/html" "RTN","SAMICTT0",68,0) ; "RTN","SAMICTT0",69,0) n cnt s cnt=0 ; line number "RTN","SAMICTT0",70,0) ; "RTN","SAMICTT0",71,0) ; set up dictionary and patient values "RTN","SAMICTT0",72,0) ; "RTN","SAMICTT0",73,0) n dict,vals "RTN","SAMICTT0",74,0) ;d INIT^SAMICTD2("dict") "RTN","SAMICTT0",75,0) s dict=$$setroot^%wd("cteval-dict") "RTN","SAMICTT0",76,0) s dict=$na(@dict@("cteval-dict")) "RTN","SAMICTT0",77,0) i $g(@dict@("pet"))="" d INIT2GPH^SAMICTD2 ; init dictionary 1st time "RTN","SAMICTT0",78,0) n si "RTN","SAMICTT0",79,0) s si=$g(filter("studyid")) "RTN","SAMICTT0",80,0) i si="" d ; "RTN","SAMICTT0",81,0) . s si="XXX00102" "RTN","SAMICTT0",82,0) q:si="" "RTN","SAMICTT0",83,0) n samikey "RTN","SAMICTT0",84,0) s samikey=$g(filter("form")) "RTN","SAMICTT0",85,0) i samikey="" d ; "RTN","SAMICTT0",86,0) . s samikey="ceform-2018-10-09" "RTN","SAMICTT0",87,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMICTT0",88,0) i $g(filter("studyid"))="" s root=$$setroot^%wd("vapals-patients") "RTN","SAMICTT0",89,0) s vals=$na(@root@("graph",si,samikey)) "RTN","SAMICTT0",90,0) ;W !,vals "RTN","SAMICTT0",91,0) ;zwr @vals@(*) "RTN","SAMICTT0",92,0) i '$d(@vals) d q ; "RTN","SAMICTT0",93,0) . w !,"error, patient values not found" "RTN","SAMICTT0",94,0) ; "RTN","SAMICTT0",95,0) ; report parameters "RTN","SAMICTT0",96,0) ; "RTN","SAMICTT0",97,0) n nt,sectionheader,dummy,cac,tex,para,legout "RTN","SAMICTT0",98,0) ;; n lang,lanread "RTN","SAMICTT0",99,0) ; "RTN","SAMICTT0",100,0) s nt=1 "RTN","SAMICTT0",101,0) s sectionheader=1 "RTN","SAMICTT0",102,0) ;;s dummy="******" "RTN","SAMICTT0",103,0) s cac="" "RTN","SAMICTT0",104,0) n cacrec s cacrec="" "RTN","SAMICTT0",105,0) ;;s tex=0 "RTN","SAMICTT0",106,0) ;s para="<p>" "RTN","SAMICTT0",107,0) ;s para=$char(13,10) "RTN","SAMICTT0",108,0) s para="" "RTN","SAMICTT0",109,0) ;;s legout=0 "RTN","SAMICTT0",110,0) n qheader s qheader=0 "RTN","SAMICTT0",111,0) ; "RTN","SAMICTT0",112,0) n lang s lang="" "RTN","SAMICTT0",113,0) n langread s langread=0 "RTN","SAMICTT0",114,0) ; "RTN","SAMICTT0",115,0) n auth s auth("perm")="a" "RTN","SAMICTT0",116,0) s auth("inst")=$g(filter("auth")) "RTN","SAMICTT0",117,0) ; "RTN","SAMICTT0",118,0) n newct s newct=0 "RTN","SAMICTT0",119,0) i $$XVAL("ceoppa",vals)'="" s newct=1 "RTN","SAMICTT0",120,0) ; "RTN","SAMICTT0",121,0) n registryForm s registryForm=0 "RTN","SAMICTT0",122,0) i $$XVAL("ceaf",vals)'="" s registryForm=1 "RTN","SAMICTT0",123,0) ; "RTN","SAMICTT0",124,0) ;d OUT("<HTML>") "RTN","SAMICTT0",125,0) ;d OUT("<HEAD>") "RTN","SAMICTT0",126,0) ;d OUT("<!-- Calling TR: CT Evaluation Report -->") "RTN","SAMICTT0",127,0) ;d OUT("<TITLE>CT Evaluation Report</TITLE>") "RTN","SAMICTT0",128,0) ;d OUT("<link rel='stylesheet' href='/css/report.css'>") "RTN","SAMICTT0",129,0) ;d OUT("</HEAD>") "RTN","SAMICTT0",130,0) ;d OUT("<BODY BGCOLOR=""#ffffff"" TEXT=""#000000"">") "RTN","SAMICTT0",131,0) ;;d OUT("<TABLE border=""0"" cellspacing=""0"" cellpadding=""3"" WIDTH=""640""><TR><TD>") "RTN","SAMICTT0",132,0) ;d OUT("<FONT SIZE=""+2""><CENTER>") "RTN","SAMICTT0",133,0) ;d OUT("<!-- Calling TR: CT Evaluation Report -->") "RTN","SAMICTT0",134,0) ;d OUT("<B>CT Evaluation Report</B>") "RTN","SAMICTT0",135,0) d OUT("CT Evaluation Report") "RTN","SAMICTT0",136,0) ;d OUT("</CENTER></FONT>") "RTN","SAMICTT0",137,0) ;d OUT("</TD></TR><TR><TD>") "RTN","SAMICTT0",138,0) ;d OUT("<HR SIZE=""2"" WIDTH=""100%"" ALIGN=""center"" NOSHADE>") "RTN","SAMICTT0",139,0) ;d OUT("</TD></TR>") "RTN","SAMICTT0",140,0) ; "RTN","SAMICTT0",141,0) ;d OUT("<!-- patient information -->") "RTN","SAMICTT0",142,0) ;d OUT("<TR><TD><TABLE border=""0"" cellspacing=""0"" cellpadding=""3"" WIDTH=""640"">") "RTN","SAMICTT0",143,0) ; "RTN","SAMICTT0",144,0) ; generate header "RTN","SAMICTT0",145,0) ; "RTN","SAMICTT0",146,0) d ; "RTN","SAMICTT0",147,0) . n pname "RTN","SAMICTT0",148,0) . ;s pname=$$XVAL("sinamel",vals)_", "_$$XVAL("sinamef",vals) "RTN","SAMICTT0",149,0) . s pname=$$XVAL("saminame",vals) "RTN","SAMICTT0",150,0) . d OUT("Participant Name: "_pname) "RTN","SAMICTT0",151,0) ;d OUT("<TR><TD WIDTH=""180""><B>Participant Name:</B></TD><TD WIDTH=""365"">") "RTN","SAMICTT0",152,0) ;d OUT($$XVAL("sinamel",vals)_", "_$$XVAL("sinamef",vals)) "RTN","SAMICTT0",153,0) ;d OUT("</TD>") "RTN","SAMICTT0",154,0) ; "RTN","SAMICTT0",155,0) d ; "RTN","SAMICTT0",156,0) . n sid s sid=$$XVAL("sisid",vals) "RTN","SAMICTT0",157,0) . d OUT("Study ID: "_sid) "RTN","SAMICTT0",158,0) ;d OUT("<TD WIDTH=""120""><B>Study ID:</B></TD><TD WIDTH=""75"">") "RTN","SAMICTT0",159,0) ;d OUT($$XVAL("sisid",vals)) "RTN","SAMICTT0",160,0) ;d OUT("</TD>") "RTN","SAMICTT0",161,0) ; "RTN","SAMICTT0",162,0) n etype "RTN","SAMICTT0",163,0) s etype="" "RTN","SAMICTT0",164,0) d ; "RTN","SAMICTT0",165,0) . s etype=$$XSUB("cetex",vals,dict)_" "_$$XSUB("cectp",vals,dict) "RTN","SAMICTT0",166,0) . d OUT("Type of Examination: "_etype) "RTN","SAMICTT0",167,0) ;d OUT("<TR><TD><B>Type of Examination:</B></TD><TD>") "RTN","SAMICTT0",168,0) ;d OUT($$XSUB("cetex",vals,dict)_" "_$$XSUB("cectp",vals,dict)) "RTN","SAMICTT0",169,0) ;d OUT("</TD>") "RTN","SAMICTT0",170,0) ;d OUT("<TD> &nbsp; </TD><TD> &nbsp; </TD></TR>") "RTN","SAMICTT0",171,0) ; "RTN","SAMICTT0",172,0) d ; "RTN","SAMICTT0",173,0) . n edate s edate=$$XVAL("cedos",vals) "RTN","SAMICTT0",174,0) . d OUT("Examination Date: "_edate) "RTN","SAMICTT0",175,0) ;d OUT("<TR><TD><B>Examination Date:</B></TD><TD>") "RTN","SAMICTT0",176,0) ;d OUT($$XVAL("cedos",vals)) "RTN","SAMICTT0",177,0) ; "RTN","SAMICTT0",178,0) ;i $$XVAL("sidob",vals)'=-1 d ; "RTN","SAMICTT0",179,0) ;. d OUT("<TD><B>Date of Birth:</B></TD><TD>") "RTN","SAMICTT0",180,0) ;. d OUT($$XVAL("sidob",vals)) "RTN","SAMICTT0",181,0) ;e d OUT("<TD> &nbsp; </TD><TD> &nbsp; </TD></TR>") "RTN","SAMICTT0",182,0) ; "RTN","SAMICTT0",183,0) d ; "RTN","SAMICTT0",184,0) . n dob s dob=$$XVAL("sidob",vals) "RTN","SAMICTT0",185,0) . i dob>0 d OUT("Date of Birth: "_dob) "RTN","SAMICTT0",186,0) . d OUT("") "RTN","SAMICTT0",187,0) ;i $$XVAL("sidob",vals)>0 d ; "RTN","SAMICTT0",188,0) ;. d OUT("<TD><B>Date of Birth:</B></TD><TD>") "RTN","SAMICTT0",189,0) ;. d OUT($$XVAL("sidob",vals)) "RTN","SAMICTT0",190,0) ;. d OUT("</TD></TR>") "RTN","SAMICTT0",191,0) ;e d ; "RTN","SAMICTT0",192,0) ;. d OUT("<TD> &nbsp; </TD><TD> &nbsp; </TD></TR>") "RTN","SAMICTT0",193,0) ; "RTN","SAMICTT0",194,0) ;# End of Header "RTN","SAMICTT0",195,0) ; "RTN","SAMICTT0",196,0) ;d OUT("</TABLE>") "RTN","SAMICTT0",197,0) ;;d OUT("</TD></TR><TR><TD>") "RTN","SAMICTT0",198,0) ;d OUT("<HR SIZE=""2"" WIDTH=""100%"" ALIGN=""center"" NOSHADE>") "RTN","SAMICTT0",199,0) ;d OUT("</TD></TR>") "RTN","SAMICTT0",200,0) ;d OUT("<!-- report -->") "RTN","SAMICTT0",201,0) ;d OUT("<TR><TD>") "RTN","SAMICTT0",202,0) ;d OUT("<FONT SIZE=""+2""><B>") "RTN","SAMICTT0",203,0) ;d OUT("Report:") "RTN","SAMICTT0",204,0) ;d OUT("</B></FONT>") "RTN","SAMICTT0",205,0) ;d OUT("</TD></TR><TR><TD><TABLE><TR><TD WIDTH=20></TD><TD>") "RTN","SAMICTT0",206,0) d OUT("Report:") "RTN","SAMICTT0",207,0) ; "RTN","SAMICTT0",208,0) s outmode="hold" "RTN","SAMICTT0",209,0) s line="" "RTN","SAMICTT0",210,0) i $$XVAL("ceclin",vals)'="" d ; "RTN","SAMICTT0",211,0) . d HOUT("Clinical Information: ") "RTN","SAMICTT0",212,0) . d OUT($$XVAL("ceclin",vals)) "RTN","SAMICTT0",213,0) . s outmode="go" d OUT("") "RTN","SAMICTT0",214,0) ; "RTN","SAMICTT0",215,0) s outmode="hold" "RTN","SAMICTT0",216,0) n nopri s nopri=1 "RTN","SAMICTT0",217,0) d HOUT("Comparison CT Scans: ") "RTN","SAMICTT0",218,0) if $$XVAL("cedcs",vals)'="" d ; "RTN","SAMICTT0",219,0) . ;i etype["Baseline" q ; "RTN","SAMICTT0",220,0) . d OUT($$XSUB("cetex",vals,dict)_". ") "RTN","SAMICTT0",221,0) . ;d OUT("Comparisons: "_$$XVAL("cedcs",vals)) "RTN","SAMICTT0",222,0) . d OUT("Comparisons: ") "RTN","SAMICTT0",223,0) . s nopri=0 "RTN","SAMICTT0",224,0) if $$XVAL("cedps",vals)'="" d ; "RTN","SAMICTT0",225,0) . ;i etype["Baseline" q ; "RTN","SAMICTT0",226,0) . d OUT(" "_$$XVAL("cedps",vals)) "RTN","SAMICTT0",227,0) . s nopri=0 "RTN","SAMICTT0",228,0) d:nopri OUT("None") "RTN","SAMICTT0",229,0) s outmode="go" d OUT("") "RTN","SAMICTT0",230,0) ; "RTN","SAMICTT0",231,0) s outmode="hold" "RTN","SAMICTT0",232,0) d HOUT("Description: ") "RTN","SAMICTT0",233,0) i $$XVAL("cectp",vals)="i" d ; "RTN","SAMICTT0",234,0) . d OUT("Limited Diagnostic CT examination was performed. ") "RTN","SAMICTT0",235,0) e d ; "RTN","SAMICTT0",236,0) . d OUT("CT examination of the entire thorax was performed at "_$$XSUB("cectp",vals,dict)_" settings. ") "RTN","SAMICTT0",237,0) ; "RTN","SAMICTT0",238,0) i $$XVAL("cectrst",vals)'="" d ; "RTN","SAMICTT0",239,0) . d OUT(" Images were obtained at "_$$XVAL("cectrst",vals)_" mm slice thickness. ") "RTN","SAMICTT0",240,0) . d OUT(" Multiplanar reconstructions were performed. ") "RTN","SAMICTT0",241,0) ; "RTN","SAMICTT0",242,0) i newct d ; "RTN","SAMICTT0",243,0) . n nvadbo s nvadbo=1 "RTN","SAMICTT0",244,0) . n ii "RTN","SAMICTT0",245,0) . f ii="ceoaa","ceaga","ceasa","ceala","ceapa","ceaaa","ceaka" d ; "RTN","SAMICTT0",246,0) . . i $$XVAL(ii,vals)="y" set nvadbo=0 "RTN","SAMICTT0",247,0) . ; "RTN","SAMICTT0",248,0) . i nvadbo=1 d ; "RTN","SAMICTT0",249,0) . . d OUT("Upper abdominal images were not acquired on the current scan due to its limited nature. ") "RTN","SAMICTT0",250,0) s outmode="go" d OUT("") "RTN","SAMICTT0",251,0) ; "RTN","SAMICTT0",252,0) ; lung nodules "RTN","SAMICTT0",253,0) ; "RTN","SAMICTT0",254,0) ;d OUT("") "RTN","SAMICTT0",255,0) d HOUT("Lung Nodules:") "RTN","SAMICTT0",256,0) ;d OUT("") "RTN","SAMICTT0",257,0) ; "RTN","SAMICTT0",258,0) ; see if there are any nodules using the cectXch fields "RTN","SAMICTT0",259,0) ; "RTN","SAMICTT0",260,0) n ij,hasnodules s hasnodules=0 "RTN","SAMICTT0",261,0) f ij=1:1:10 i ($$XVAL("cect"_ij_"ch",vals)'="")&($$XVAL("cect"_ij_"ch",vals)'="-") s hasnodules=1 "RTN","SAMICTT0",262,0) ; "RTN","SAMICTT0",263,0) ; check for small nodule checkboxes "RTN","SAMICTT0",264,0) i $$XVAL("cectancn",vals)=1 s hasnodules=1 "RTN","SAMICTT0",265,0) i $$XVAL("cectacn",vals)=1 s hasnodules=1 "RTN","SAMICTT0",266,0) ; "RTN","SAMICTT0",267,0) i hasnodules=0 d ; "RTN","SAMICTT0",268,0) . d OUT(para) "RTN","SAMICTT0",269,0) . d OUT("No pulmonary nodules are seen. "_para) "RTN","SAMICTT0",270,0) ; "RTN","SAMICTT0",271,0) ;i $$XVAL("cennod",vals)="" d ; "RTN","SAMICTT0",272,0) ;. d OUT(para) "RTN","SAMICTT0",273,0) ;. d OUT("No pulmonary nodules are seen. "_para) "RTN","SAMICTT0",274,0) ;e i $$XVAL("ceanod",vals)="n" d ; "RTN","SAMICTT0",275,0) ;. d OUT(para) "RTN","SAMICTT0",276,0) ;. d OUT("No pulmonary nodules are seen. "_para) "RTN","SAMICTT0",277,0) ; "RTN","SAMICTT0",278,0) d NODULES^SAMICTT1(rtn,.vals,.dict) "RTN","SAMICTT0",279,0) ; "RTN","SAMICTT0",280,0) d OTHRLUNG^SAMICTT2(rtn,.vals,.dict) "RTN","SAMICTT0",281,0) ; "RTN","SAMICTT0",282,0) d EMPHYS^SAMICTT3(rtn,.vals,.dict) "RTN","SAMICTT0",283,0) ; "RTN","SAMICTT0",284,0) d BREAST^SAMICTT4(rtn,.vals,.dict) "RTN","SAMICTT0",285,0) ; "RTN","SAMICTT0",286,0) d IMPRSN^SAMICTT9(rtn,.vals,.dict) "RTN","SAMICTT0",287,0) ; "RTN","SAMICTT0",288,0) d RCMND^SAMICTTA(rtn,.vals,.dict) "RTN","SAMICTT0",289,0) ; "RTN","SAMICTT0",290,0) ; etc etc "RTN","SAMICTT0",291,0) ; "RTN","SAMICTT0",292,0) d ; "RTN","SAMICTT0",293,0) . d OUT("References:") "RTN","SAMICTT0",294,0) . d OUT("Recommendations for nodules and other findings are detailed in the I-ELCAP Protocol. ") "RTN","SAMICTT0",295,0) . d OUT("A summary and the full I-ELCAP protocol can be viewed at: http://ielcap.org/protocols") "RTN","SAMICTT0",296,0) ;d OUT("</TABLE>") "RTN","SAMICTT0",297,0) ;d OUT("<p><br></p><p><b>References:</b><br></p>") "RTN","SAMICTT0",298,0) ;d OUT("<p>Recommendations for nodules and other findings are detailed in the I-ELCAP Protocol.<BR>") "RTN","SAMICTT0",299,0) ;d OUT("A summary and the full I-ELCAP protocol can be viewed at: <a href=""http://ielcap.org/protocols"">http://ielcap.org/protocols</a></p>") "RTN","SAMICTT0",300,0) ;d OUT("</TD></TR></TABLE></TD></TR></TABLE>") "RTN","SAMICTT0",301,0) ;s debug=1 "RTN","SAMICTT0",302,0) d:$g(debug) ; "RTN","SAMICTT0",303,0) . n zi s zi="" "RTN","SAMICTT0",304,0) . f s zi=$o(@vals@(zi)) q:zi="" d ; "RTN","SAMICTT0",305,0) . . d OUT(zi_" "_$g(@vals@(zi))) "RTN","SAMICTT0",306,0) ;d OUT("</BODY></HTML>") "RTN","SAMICTT0",307,0) ; "RTN","SAMICTT0",308,0) quit ; end of wsr WSREPORT^SAMICTT0 "RTN","SAMICTT0",309,0) ; "RTN","SAMICTT0",310,0) ; "RTN","SAMICTT0",311,0) ; "RTN","SAMICTT0",312,0) OUT(ln) ; output a line of ct report "RTN","SAMICTT0",313,0) ; "RTN","SAMICTT0",314,0) i outmode="hold" s line=line_ln q ; "RTN","SAMICTT0",315,0) s cnt=cnt+1 "RTN","SAMICTT0",316,0) n lnn "RTN","SAMICTT0",317,0) i $g(debug)'=1 s debug=0 "RTN","SAMICTT0",318,0) s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT0",319,0) i outmode="go" d ; "RTN","SAMICTT0",320,0) . s @rtn@(lnn)=line "RTN","SAMICTT0",321,0) . s line="" "RTN","SAMICTT0",322,0) . s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT0",323,0) s @rtn@(lnn)=ln "RTN","SAMICTT0",324,0) i $g(debug)=1 d ; "RTN","SAMICTT0",325,0) . i ln["<" q ; no markup "RTN","SAMICTT0",326,0) . n zs s zs=$STACK "RTN","SAMICTT0",327,0) . n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMICTT0",328,0) . s @rtn@(lnn)=zp_":"_ln "RTN","SAMICTT0",329,0) ; "RTN","SAMICTT0",330,0) quit ; end of OUT "RTN","SAMICTT0",331,0) ; "RTN","SAMICTT0",332,0) ; "RTN","SAMICTT0",333,0) ; "RTN","SAMICTT0",334,0) OUTOLD(ln) ; old version of out "RTN","SAMICTT0",335,0) ; "RTN","SAMICTT0",336,0) s cnt=cnt+1 "RTN","SAMICTT0",337,0) n lnn "RTN","SAMICTT0",338,0) ;s debug=1 "RTN","SAMICTT0",339,0) s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT0",340,0) s @rtn@(lnn)=ln "RTN","SAMICTT0",341,0) i $g(debug)=1 d ; "RTN","SAMICTT0",342,0) . i ln["<" q ; no markup "RTN","SAMICTT0",343,0) . n zs s zs=$STACK "RTN","SAMICTT0",344,0) . n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMICTT0",345,0) . s @rtn@(lnn)=zp_":"_ln "RTN","SAMICTT0",346,0) ; "RTN","SAMICTT0",347,0) quit ; end of OUTOLD "RTN","SAMICTT0",348,0) ; "RTN","SAMICTT0",349,0) ; "RTN","SAMICTT0",350,0) ; "RTN","SAMICTT0",351,0) HOUT(ln) ; output a ct report header line "RTN","SAMICTT0",352,0) ; "RTN","SAMICTT0",353,0) d OUT(ln) "RTN","SAMICTT0",354,0) ;d OUT("<p><span class='sectionhead'>"_ln_"</span>") "RTN","SAMICTT0",355,0) ; "RTN","SAMICTT0",356,0) quit ; end of HOUT "RTN","SAMICTT0",357,0) ; "RTN","SAMICTT0",358,0) ; "RTN","SAMICTT0",359,0) ; "RTN","SAMICTT0",360,0) XVAL(var,vals) ; extrinsic returns the patient value for var "RTN","SAMICTT0",361,0) ; "RTN","SAMICTT0",362,0) ;@input "RTN","SAMICTT0",363,0) ; @vals is passed by name "RTN","SAMICTT0",364,0) ; "RTN","SAMICTT0",365,0) n zr "RTN","SAMICTT0",366,0) s zr=$g(@vals@(var)) "RTN","SAMICTT0",367,0) ;i zr="" s zr="["_var_"]" "RTN","SAMICTT0",368,0) ; "RTN","SAMICTT0",369,0) quit zr ; end of $$XVAL "RTN","SAMICTT0",370,0) ; "RTN","SAMICTT0",371,0) ; "RTN","SAMICTT0",372,0) ; "RTN","SAMICTT0",373,0) XSUB(var,vals,dict,valdx) ; extrinsic which returns the dictionary value defined by var "RTN","SAMICTT0",374,0) ; "RTN","SAMICTT0",375,0) ; vals and dict are passed by name "RTN","SAMICTT0",376,0) ; valdx is used for nodules ala cect2co with the nodule number included "RTN","SAMICTT0",377,0) ; "RTN","SAMICTT0",378,0) ;n dict s dict=$$setroot^%wd("cteval-dict") "RTN","SAMICTT0",379,0) n zr,zv,zdx "RTN","SAMICTT0",380,0) s zdx=$g(valdx) "RTN","SAMICTT0",381,0) i zdx="" s zdx=var "RTN","SAMICTT0",382,0) s zv=$g(@vals@(zdx)) "RTN","SAMICTT0",383,0) ;i zv="" s zr="["_var_"]" q zr "RTN","SAMICTT0",384,0) i zv="" s zr="" q zr "RTN","SAMICTT0",385,0) s zr=$g(@dict@(var,zv)) "RTN","SAMICTT0",386,0) ;i zr="" s zr="["_var_","_zv_"]" "RTN","SAMICTT0",387,0) ; "RTN","SAMICTT0",388,0) quit zr ; end of $$XSUB "RTN","SAMICTT0",389,0) ; "RTN","SAMICTT0",390,0) ; "RTN","SAMICTT0",391,0) ; "RTN","SAMICTT0",392,0) GETFILTR(filter,sid) ; fill in the filter for Ct Eval for sid "RTN","SAMICTT0",393,0) ; "RTN","SAMICTT0",394,0) s filter("studyid")=sid "RTN","SAMICTT0",395,0) n items,zform "RTN","SAMICTT0",396,0) d GETITEMS^SAMICASE("items",sid) "RTN","SAMICTT0",397,0) s zform=$o(items("ceform")) "RTN","SAMICTT0",398,0) s filter("form")=zform "RTN","SAMICTT0",399,0) ;zwr filter "RTN","SAMICTT0",400,0) ; "RTN","SAMICTT0",401,0) quit ; end of GETFILTR "RTN","SAMICTT0",402,0) ; "RTN","SAMICTT0",403,0) ; "RTN","SAMICTT0",404,0) ; "RTN","SAMICTT0",405,0) T1(grtn,debug) ; test "RTN","SAMICTT0",406,0) ; "RTN","SAMICTT0",407,0) n filter "RTN","SAMICTT0",408,0) ;n sid s sid="XXX00333" "RTN","SAMICTT0",409,0) ;n sid s sid="XXX00484" "RTN","SAMICTT0",410,0) n sid s sid="XXX9000001" "RTN","SAMICTT0",411,0) d GETFILTR(.filter,sid) "RTN","SAMICTT0",412,0) i $g(debug)=1 s filter("debug")=1 "RTN","SAMICTT0",413,0) d WSNOTE^SAMINOT3(.grtn,.filter) "RTN","SAMICTT0",414,0) ;d WSREPORT^SAMICTT0(.grtn,.filter) "RTN","SAMICTT0",415,0) ; "RTN","SAMICTT0",416,0) quit ; end of T1 "RTN","SAMICTT0",417,0) ; "RTN","SAMICTT0",418,0) ; "RTN","SAMICTT0",419,0) ; "RTN","SAMICTT0",420,0) EOR ; end of routine SAMICTT0 "RTN","SAMICTT3") 0^5^B396705116 "RTN","SAMICTT3",1,0) SAMICTT3 ;ven/gpl - ctreport text emphysema ;2021-11-16t21:47z "RTN","SAMICTT3",2,0) ;;18.0;SAMI;**4,10,13,15**;2020-01;Build 3 "RTN","SAMICTT3",3,0) ;;18-15 "RTN","SAMICTT3",4,0) ; "RTN","SAMICTT3",5,0) ; SAMICTT3 creates the Emphysema section of the ELCAP CT Report in "RTN","SAMICTT3",6,0) ; text format. "RTN","SAMICTT3",7,0) ; "RTN","SAMICTT3",8,0) quit ; no entry from top "RTN","SAMICTT3",9,0) ; "RTN","SAMICTT3",10,0) ; "RTN","SAMICTT3",11,0) ; "RTN","SAMICTT3",12,0) ;@section 0 primary development "RTN","SAMICTT3",13,0) ; "RTN","SAMICTT3",14,0) ; "RTN","SAMICTT3",15,0) ; "RTN","SAMICTT3",16,0) ;@license see routine SAMIUL "RTN","SAMICTT3",17,0) ;@documentation see SAMICTUL "RTN","SAMICTT3",18,0) ;@contents "RTN","SAMICTT3",19,0) ; EMPHYS: emphysema section of ctreport text format "RTN","SAMICTT3",20,0) ; $$CCMSTR = form phrases "RTN","SAMICTT3",21,0) ; $$LOWC = convert X to lowercase "RTN","SAMICTT3",22,0) ; OUT: output a line of ct report "RTN","SAMICTT3",23,0) ; OUTOLD: old version of out "RTN","SAMICTT3",24,0) ; HOUT: output a ct report header line "RTN","SAMICTT3",25,0) ; $$XVAL = patient value for var "RTN","SAMICTT3",26,0) ; GENLNL "RTN","SAMICTT3",27,0) ; $$XSUB = dictionary value defined by var "RTN","SAMICTT3",28,0) ; "RTN","SAMICTT3",29,0) ; "RTN","SAMICTT3",30,0) ; "RTN","SAMICTT3",31,0) ;@section 1 EMPHYS & related subroutines "RTN","SAMICTT3",32,0) ; "RTN","SAMICTT3",33,0) ; "RTN","SAMICTT3",34,0) ; "RTN","SAMICTT3",35,0) EMPHYS(rtn,vals,dict) ; emphysema section of ct report text format "RTN","SAMICTT3",36,0) ; "RTN","SAMICTT3",37,0) ; repgen4,repgen5 "RTN","SAMICTT3",38,0) ; "RTN","SAMICTT3",39,0) ;@called-by "RTN","SAMICTT3",40,0) ; WSREPORT^SAMICTT0 "RTN","SAMICTT3",41,0) ;@calls "RTN","SAMICTT3",42,0) ; $$XVAL "RTN","SAMICTT3",43,0) ; HOUT "RTN","SAMICTT3",44,0) ; OUT "RTN","SAMICTT3",45,0) ; $$XSUB "RTN","SAMICTT3",46,0) ; $$LOBESTR^SAMICTR2 "RTN","SAMICTT3",47,0) ; $$CCMSTR "RTN","SAMICTT3",48,0) ; $$LOWC "RTN","SAMICTT3",49,0) ;@input "RTN","SAMICTT3",50,0) ; rtn "RTN","SAMICTT3",51,0) ; vals "RTN","SAMICTT3",52,0) ; dict "RTN","SAMICTT3",53,0) ;@output: create emphysema section of ct eval report "RTN","SAMICTT3",54,0) ; "RTN","SAMICTT3",55,0) ;# Emphysema "RTN","SAMICTT3",56,0) ; "RTN","SAMICTT3",57,0) n emph1 s emph1=0 "RTN","SAMICTT3",58,0) n sp1 s sp1=" " "RTN","SAMICTT3",59,0) s outmode="hold" s line="" "RTN","SAMICTT3",60,0) ;if $$XVAL("ceemv",vals)'="e" d ; "RTN","SAMICTT3",61,0) if $$XVAL("ceem",vals)'="" d ; "RTN","SAMICTT3",62,0) . if $$XVAL("ceem",vals)="nv" q ; "RTN","SAMICTT3",63,0) . if $$XVAL("ceem",vals)="no" q ; "RTN","SAMICTT3",64,0) . if $$XVAL("ceem",vals)="nr" q ; "RTN","SAMICTT3",65,0) . ;d OUT("") "RTN","SAMICTT3",66,0) . D HOUT("Emphysema: ") "RTN","SAMICTT3",67,0) . ;d OUT("") "RTN","SAMICTT3",68,0) . D OUT(sp1_$$XSUB("ceem",vals,dict)) "RTN","SAMICTT3",69,0) . s outmode="go" d OUT("") "RTN","SAMICTT3",70,0) . s emph1=1 "RTN","SAMICTT3",71,0) ; "RTN","SAMICTT3",72,0) ;if $$XVAL("ceem",vals)="" d ; "RTN","SAMICTT3",73,0) if emph1=0 d ; "RTN","SAMICTT3",74,0) . if $$XVAL("ceem",vals)="nr" d q ; "RTN","SAMICTT3",75,0) . . D HOUT("Emphysema: Emphysema score not provided.") "RTN","SAMICTT3",76,0) . . s outmode="go" d OUT("") "RTN","SAMICTT3",77,0) . D HOUT("Emphysema: None.") "RTN","SAMICTT3",78,0) . s outmode="go" d OUT("") "RTN","SAMICTT3",79,0) ;d OUT("") "RTN","SAMICTT3",80,0) s outmode="hold" "RTN","SAMICTT3",81,0) D HOUT("Pleura: ") "RTN","SAMICTT3",82,0) ;d OUT("") "RTN","SAMICTT3",83,0) ; hputs "Pleura:" "RTN","SAMICTT3",84,0) N pe s pe=0 "RTN","SAMICTT3",85,0) ; "RTN","SAMICTT3",86,0) ; # Pleural Effusion "RTN","SAMICTT3",87,0) ; "RTN","SAMICTT3",88,0) ;i $$XVAL("cepev",vals)="y" d ; "RTN","SAMICTT3",89,0) ;. if $$XVAL("ceper",vals)="-" d ; "RTN","SAMICTT3",90,0) ;. . if $$XVAL("cepel",vals)="-" d ; "RTN","SAMICTT3",91,0) ;. . . s @vals@("cepev")="e" "RTN","SAMICTT3",92,0) ;. ; "RTN","SAMICTT3",93,0) ;. if $$XVAL("cepev",vals)'="e" d ; "RTN","SAMICTT3",94,0) ;. . if $$XVAL("ceper",vals)'="-" d ; "RTN","SAMICTT3",95,0) ;. . . if $$XVAL("cepel",vals)'="-" d ; "RTN","SAMICTT3",96,0) ;. . . . if $$XVAL("cepel",vals)=$$XVAL("ceper",vals) d ; "RTN","SAMICTT3",97,0) ;. . . . . d OUT(sp1_"Bilateral "_$$XSUB("cepe",vals,dict,"cepel")_" pleural effusions. ") d OUT("") "RTN","SAMICTT3",98,0) ;. . . . else d ; "RTN","SAMICTT3",99,0) ;. . . . . d OUT(sp1_"Bilateral pleural effusions ; "_$$XSUB("cepe",vals,dict,"cepel")_" on left, and "_$$XSUB("cepe",vals,dict,"ceper")_" on right. ") "RTN","SAMICTT3",100,0) ;. . . . . s pe=1 "RTN","SAMICTT3",101,0) ;. . . else d ; "RTN","SAMICTT3",102,0) ;. . . . ;d OUT(sp1_"On right "_$$XSUB("cepe",vals,dict,"cepr")_" pleural effusion and on left "_$$XSUB("cepe",vals,dict,"cepel")_" pleural effusion. ") d OUT("") "RTN","SAMICTT3",103,0) ;. . . . d OUT(sp1_$$XSUB("cepe",vals,dict,"cepr")_" pleural effusion on right and "_$$XSUB("cepe",vals,dict,"cepel")_" pleural effusion on left. ") d OUT("") "RTN","SAMICTT3",104,0) ;. . . . s pe=1 "RTN","SAMICTT3",105,0) ;. . else d ; "RTN","SAMICTT3",106,0) ;. . . ;d OUT(sp1_"On right "_$$XSUB("cepe",vals,dict,"cepr")_" pleural effusion and on left "_$$XSUB("cepe",vals,dict,"cepel")_" pleural effusion. ") d OUT("") "RTN","SAMICTT3",107,0) ;. . . d OUT(sp1_$$XSUB("cepe",vals,dict,"cepr")_" pleural effusion on right and "_$$XSUB("cepe",vals,dict,"cepel")_" pleural effusion on left. ") d OUT("") "RTN","SAMICTT3",108,0) ;. . . s pe=1 "RTN","SAMICTT3",109,0) ;. ; "RTN","SAMICTT3",110,0) ;i $$XVAL("cepev",vals)'="y" d ; "RTN","SAMICTT3",111,0) ;. d OUT(sp1_"No pleural effusions. ") d OUT("") "RTN","SAMICTT3",112,0) ;; if { $pe == 0 } { "RTN","SAMICTT3",113,0) ;; puts "[tr "No pleural effusions"].${para}" "RTN","SAMICTT3",114,0) ;; } "RTN","SAMICTT3",115,0) i $$XVAL("cepev",vals)="y" d ; "RTN","SAMICTT3",116,0) . n ceper,cepel,cepert,cepelt "RTN","SAMICTT3",117,0) . s ceper=$$XVAL("ceper",vals) "RTN","SAMICTT3",118,0) . s cepel=$$XVAL("cepel",vals) "RTN","SAMICTT3",119,0) . s cepert=$$XSUB("cepe",vals,dict,"ceper") "RTN","SAMICTT3",120,0) . s cepelt=$$XSUB("cepe",vals,dict,"cepel") "RTN","SAMICTT3",121,0) . n left,right,both,neither,same "RTN","SAMICTT3",122,0) . s left=1 "RTN","SAMICTT3",123,0) . i cepel="-" s left=0 "RTN","SAMICTT3",124,0) . i cepel="no" s left=0 "RTN","SAMICTT3",125,0) . s right=1 "RTN","SAMICTT3",126,0) . i ceper="-" s right=0 "RTN","SAMICTT3",127,0) . i ceper="no" s right=0 "RTN","SAMICTT3",128,0) . if right+left=2 set both=1 "RTN","SAMICTT3",129,0) . e set both=0 "RTN","SAMICTT3",130,0) . if right+left=0 set neither=1 "RTN","SAMICTT3",131,0) . e set neither=0 "RTN","SAMICTT3",132,0) . if ((both=1)&(ceper=cepel)) set same=1 "RTN","SAMICTT3",133,0) . e set same=0 "RTN","SAMICTT3",134,0) . if same=1 d ; "RTN","SAMICTT3",135,0) . . d OUT(sp1_"Bilateral "_cepelt_" pleural effusions. ") d OUT("") "RTN","SAMICTT3",136,0) . . s pe=1 "RTN","SAMICTT3",137,0) . if both=1 d ; "RTN","SAMICTT3",138,0) . . i pe=1 q ; "RTN","SAMICTT3",139,0) . . d OUT(sp1_"Bilateral pleural effusions ; "_cepelt_" on left, and "_cepert_" on right. ") "RTN","SAMICTT3",140,0) . . s pe=1 "RTN","SAMICTT3",141,0) . if pe=0 d ; both and same not done "RTN","SAMICTT3",142,0) . . if right d ; "RTN","SAMICTT3",143,0) . . . d OUT(sp1_cepert_" right pleural effusion.") "RTN","SAMICTT3",144,0) . . . s pe=1 "RTN","SAMICTT3",145,0) . . if left d ; "RTN","SAMICTT3",146,0) . . . d OUT(sp1_cepelt_" left pleural effusion.") "RTN","SAMICTT3",147,0) . . . s pe=1 "RTN","SAMICTT3",148,0) . if pe=0 d ; nothing worked "RTN","SAMICTT3",149,0) . . d OUT(sp1_"No pleural effusion. ") d OUT("") "RTN","SAMICTT3",150,0) ; "RTN","SAMICTT3",151,0) i $$XVAL("cepev",vals)'="y" d ; "RTN","SAMICTT3",152,0) . d OUT(sp1_"No pleural effusion. ") d OUT("") "RTN","SAMICTT3",153,0) ; if { $pe == 0 } { "RTN","SAMICTT3",154,0) ; puts "[tr "No pleural effusions"].${para}" "RTN","SAMICTT3",155,0) ; } "RTN","SAMICTT3",156,0) ; "RTN","SAMICTT3",157,0) n yespp s yespp=0 "RTN","SAMICTT3",158,0) ; "RTN","SAMICTT3",159,0) if $$XVAL("cebatr",vals)="y" d ; "RTN","SAMICTT3",160,0) . ;d OUT("Rounded atelectasis in the ") "RTN","SAMICTT3",161,0) . d OUT(sp1_"Rounded atelectasis in the "_$$LOBESTR^SAMICTR2("cebatrl1^cebatrl2^cebatrl3^cebatrl4^cebatrl5",0)_". ") ;d OUT("") "RTN","SAMICTT3",162,0) . s yespp=1 "RTN","SAMICTT3",163,0) ; "RTN","SAMICTT3",164,0) if $$XVAL("cept",vals)="y" d ; "RTN","SAMICTT3",165,0) . s yespp=1 "RTN","SAMICTT3",166,0) . s numl=0 "RTN","SAMICTT3",167,0) . set str=sp1_"Pleural thickening/plaques in the " "RTN","SAMICTT3",168,0) . if $$XVAL("ceptrt",vals)="r" d ; "RTN","SAMICTT3",169,0) . . s str=str_"right" "RTN","SAMICTT3",170,0) . . s numl=numl+1 "RTN","SAMICTT3",171,0) . if $$XVAL("ceptlt",vals)="l" d ; "RTN","SAMICTT3",172,0) . . i numl>0 d ; "RTN","SAMICTT3",173,0) . . . s str=str_" and" "RTN","SAMICTT3",174,0) . . s str=str_" left" "RTN","SAMICTT3",175,0) . . s numl=numl+1 "RTN","SAMICTT3",176,0) . ;if numl>1 d ; "RTN","SAMICTT3",177,0) . ;. s str=str_" lungs. " "RTN","SAMICTT3",178,0) . ;else d ; "RTN","SAMICTT3",179,0) . ;. s str=str_" lung. " "RTN","SAMICTT3",180,0) . s str=str_". " "RTN","SAMICTT3",181,0) . if numl=0 set str=sp1_"Pleural thickening/plaques. " "RTN","SAMICTT3",182,0) . d OUT(str) ;d OUT("") "RTN","SAMICTT3",183,0) ; "RTN","SAMICTT3",184,0) if $$XVAL("cepu",vals)="y" d ; "RTN","SAMICTT3",185,0) . s yespp=1 "RTN","SAMICTT3",186,0) . if $l($$XVAL("cepus",vals))'=0 d ; "RTN","SAMICTT3",187,0) . . d OUT(sp1_"Pleural rumor: "_$$XVAL("cepus",vals)) "RTN","SAMICTT3",188,0) . e d OUT(sp1_"Pleural tumor. ") "RTN","SAMICTT3",189,0) . ;d OUT("") "RTN","SAMICTT3",190,0) ; "RTN","SAMICTT3",191,0) i yespp=0 d OUT("") "RTN","SAMICTT3",192,0) ; "RTN","SAMICTT3",193,0) d ; "RTN","SAMICTT3",194,0) . if $$XVAL("ceoppab",vals)'="" d OUT(sp1_$$XVAL("ceoppab",vals)_". ") ;d OUT("") "RTN","SAMICTT3",195,0) . else d "RTN","SAMICTT3",196,0) . . if yespp=1 d OUT("") "RTN","SAMICTT3",197,0) ; "RTN","SAMICTT3",198,0) s outmode="go" d OUT("") "RTN","SAMICTT3",199,0) ; "RTN","SAMICTT3",200,0) s outmode="hold" "RTN","SAMICTT3",201,0) d OUT("Coronary Artery Calcifications: ") "RTN","SAMICTT3",202,0) ;# Coronary Calcification "RTN","SAMICTT3",203,0) n vcac,cac,cacrec "RTN","SAMICTT3",204,0) s (cac,cacrec)="" "RTN","SAMICTT3",205,0) n cacout s cacout=0 "RTN","SAMICTT3",206,0) ; "RTN","SAMICTT3",207,0) n cectot s cectot=0 "RTN","SAMICTT3",208,0) i $g(@vals@("cecclm"))="no" s @vals@("cecclm")="no" s cectot=cectot+1 "RTN","SAMICTT3",209,0) i $g(@vals@("ceccld"))="no" s @vals@("ceccld")="no" s cectot=cectot+1 "RTN","SAMICTT3",210,0) i $g(@vals@("cecccf"))="no" s @vals@("cecccf")="no" s cectot=cectot+1 "RTN","SAMICTT3",211,0) i $g(@vals@("ceccrc"))="no" s @vals@("ceccrc")="no" s cectot=cectot+1 "RTN","SAMICTT3",212,0) i $g(@vals@("cecclm"))="-" s @vals@("cecclm")="no" s cectot=cectot+1 "RTN","SAMICTT3",213,0) i $g(@vals@("ceccld"))="-" s @vals@("ceccld")="no" s cectot=cectot+1 "RTN","SAMICTT3",214,0) i $g(@vals@("cecccf"))="-" s @vals@("cecccf")="no" s cectot=cectot+1 "RTN","SAMICTT3",215,0) i $g(@vals@("ceccrc"))="-" s @vals@("ceccrc")="no" s cectot=cectot+1 "RTN","SAMICTT3",216,0) i $g(@vals@("cecclm"))="" s @vals@("cecclm")="no" s cectot=cectot+1 "RTN","SAMICTT3",217,0) i $g(@vals@("ceccld"))="" s @vals@("ceccld")="no" s cectot=cectot+1 "RTN","SAMICTT3",218,0) i $g(@vals@("cecccf"))="" s @vals@("cecccf")="no" s cectot=cectot+1 "RTN","SAMICTT3",219,0) i $g(@vals@("ceccrc"))="" s @vals@("ceccrc")="no" s cectot=cectot+1 "RTN","SAMICTT3",220,0) S ^gpl("cectot")=cectot "RTN","SAMICTT3",221,0) if $$XVAL("ceccv",vals)="nr" d ; "RTN","SAMICTT3",222,0) . d OUT("Coronary Artery Calcification score not provided.") d OUT("") "RTN","SAMICTT3",223,0) . s cacout=1 "RTN","SAMICTT3",224,0) ; if $$XVAL("cecccac",vals)'="" d ; "RTN","SAMICTT3",225,0) ; . s @vals@("ceccv")="e" "RTN","SAMICTT3",226,0) ; "RTN","SAMICTT3",227,0) ;d if $$XVAL("ceccv",vals)'="n" d ; "RTN","SAMICTT3",228,0) if cacout=0 d ; "RTN","SAMICTT3",229,0) . set vcac=$$XVAL("cecccac",vals) "RTN","SAMICTT3",230,0) . ;if cectot=4 q ; "RTN","SAMICTT3",231,0) . if vcac'="" d ; "RTN","SAMICTT3",232,0) . . s cacrec="" "RTN","SAMICTT3",233,0) . . s cac="The Visual Coronary Artery Calcium (CAC) Score is "_vcac_". " "RTN","SAMICTT3",234,0) . . s cacval=vcac "RTN","SAMICTT3",235,0) . . i cacval>3 s cacrec=$g(@dict@("CAC_recommendation")) "RTN","SAMICTT3",236,0) ; "RTN","SAMICTT3",237,0) ; "RTN","SAMICTT3",238,0) ;n samicac s samicac=0 "RTN","SAMICTT3",239,0) ;i $$XVAL("cecclm",vals)'="no" s samicac=1 "RTN","SAMICTT3",240,0) ;i $$XVAL("ceccld",vals)'="no" s samicac=1 "RTN","SAMICTT3",241,0) ;;i $$XVAL("cecclf",vals)'="no" s samicac=1 "RTN","SAMICTT3",242,0) ;i $$XVAL("cecccf",vals)'="no" s samicac=1 "RTN","SAMICTT3",243,0) ;i $$XVAL("ceccrc",vals)'="no" s samicac=1 "RTN","SAMICTT3",244,0) ; "RTN","SAMICTT3",245,0) ;;s outmode="hold" s line="" "RTN","SAMICTT3",246,0) ;i samicac=1 d ; "RTN","SAMICTT3",247,0) ; "RTN","SAMICTT3",248,0) i cacout=0 d ; "RTN","SAMICTT3",249,0) . ;if cectot>3 q ; "RTN","SAMICTT3",250,0) . d OUT($$XSUB("cecc",vals,dict,"cecclm")_" in left main, ") "RTN","SAMICTT3",251,0) . d OUT($$XSUB("cecc",vals,dict,"ceccld")_" in left anterior descending, ") "RTN","SAMICTT3",252,0) . ;d OUT($$XSUB("cecc",vals,dict,"cecclf")_" in circumflex, and ") "RTN","SAMICTT3",253,0) . d OUT($$XSUB("cecc",vals,dict,"cecccf")_" in circumflex, and ") "RTN","SAMICTT3",254,0) . d OUT($$XSUB("cecc",vals,dict,"ceccrc")_" in right coronary. "_cac) "RTN","SAMICTT3",255,0) s outmode="go" "RTN","SAMICTT3",256,0) d OUT("") "RTN","SAMICTT3",257,0) ; "RTN","SAMICTT3",258,0) s outmode="hold" "RTN","SAMICTT3",259,0) if $$XVAL("cecca",vals)'="-" d ; "RTN","SAMICTT3",260,0) . d HOUT("Aortic Calcifications: ") "RTN","SAMICTT3",261,0) . d OUT($$XSUB("cecc",vals,dict,"cecca")) "RTN","SAMICTT3",262,0) . s outmode="go" d OUT("") "RTN","SAMICTT3",263,0) ; "RTN","SAMICTT3",264,0) s outmode="hold" "RTN","SAMICTT3",265,0) n ocf s ocf=0 "RTN","SAMICTT3",266,0) d HOUT("Other Cardiac Findings: ") "RTN","SAMICTT3",267,0) ;d HOUT("Other Cardiac Findings: ") "RTN","SAMICTT3",268,0) ; "RTN","SAMICTT3",269,0) ;s outmode="hold" "RTN","SAMICTT3",270,0) ;# Pericardial Effusion "RTN","SAMICTT3",271,0) if $$XVAL("ceprevm",vals)'="-" d ; "RTN","SAMICTT3",272,0) . if $$XVAL("ceprevm",vals)'="no" d ; "RTN","SAMICTT3",273,0) . . if $$XVAL("ceprevm",vals)'="" d "RTN","SAMICTT3",274,0) . . . d OUT("A "_$$XSUB("ceprevm",vals,dict,"ceprevm")_" pericardial effusion"_". ") d OUT("") "RTN","SAMICTT3",275,0) . . . s pe=1 s ocf=1 "RTN","SAMICTT3",276,0) . . else d OUT("No pericardial effusion. ") d OUT("") "RTN","SAMICTT3",277,0) ; "RTN","SAMICTT3",278,0) ; "RTN","SAMICTT3",279,0) ;;# Pulmonary and Aortic Diameter "RTN","SAMICTT3",280,0) i $$XVAL("cepaw",vals)'="" d ; "RTN","SAMICTT3",281,0) . d OUT("Widest main pulmonary artery diameter is "_$$XVAL("cepaw",vals)_" mm. ") "RTN","SAMICTT3",282,0) . if $$XVAL("ceaow",vals)'="" d ; "RTN","SAMICTT3",283,0) . . d OUT("Widest ascending aortic diameter at the same level is "_$$XVAL("ceaow",vals)_" mm. ") "RTN","SAMICTT3",284,0) . . if $$XVAL("cepar",vals)'="" d ; "RTN","SAMICTT3",285,0) . . . d OUT("The ratio is "_$$XVAL("cepar",vals)_". ") "RTN","SAMICTT3",286,0) . d OUT("") s ocf=1 "RTN","SAMICTT3",287,0) ; "RTN","SAMICTT3",288,0) ; #"Additional Comments on Cardiac Abnormalities:" "RTN","SAMICTT3",289,0) if $$XVAL("cecommca",vals)'="" d ; "RTN","SAMICTT3",290,0) . d OUT($$XVAL("cecommca",vals)_". ") "RTN","SAMICTT3",291,0) . s ocf=1 "RTN","SAMICTT3",292,0) i ocf=0 d OUT("None. ") "RTN","SAMICTT3",293,0) s outmode="go" "RTN","SAMICTT3",294,0) d OUT("") "RTN","SAMICTT3",295,0) ; "RTN","SAMICTT3",296,0) ; "RTN","SAMICTT3",297,0) s outmode="hold" "RTN","SAMICTT3",298,0) d HOUT("Mediastinum: ") "RTN","SAMICTT3",299,0) n yesmm s yesmm=0 "RTN","SAMICTT3",300,0) n abn "RTN","SAMICTT3",301,0) i ($$XVAL("ceoma",vals)="y")&($$XVAL("ceata",vals)="y") d ; "RTN","SAMICTT3",302,0) . s yeamm=1 "RTN","SAMICTT3",303,0) . s abn=$$CCMSTR("ceatc^ceaty^ceatm",vals) "RTN","SAMICTT3",304,0) . ;d OUT("[abn="_abn_"]") "RTN","SAMICTT3",305,0) . i abn="" d OUT(sp1_"Noted in the thyroid. ") "RTN","SAMICTT3",306,0) . i abn'="" d OUT(sp1_abn_" thyroid. ") "RTN","SAMICTT3",307,0) . i $$XVAL("ceato",vals)="o" d OUT(sp1_$$XVAL("ceatos",vals)_"<br>") "RTN","SAMICTT3",308,0) i $$XVAL("ceaya",vals)="y" d ; "RTN","SAMICTT3",309,0) . s yesmm=1 "RTN","SAMICTT3",310,0) . s abn=$$CCMSTR("ceayc^ceayy^ceaym",vals) "RTN","SAMICTT3",311,0) . i abn="" d OUT(sp1_"Noted in the thymus") "RTN","SAMICTT3",312,0) . i abn'="" d OUT(sp1_abn_" thymus. ") "RTN","SAMICTT3",313,0) . i $$XVAL("ceayo",vals)="o" d OUT(sp1_$$XVAL("ceayos",vals)) "RTN","SAMICTT3",314,0) ; "RTN","SAMICTT3",315,0) ; # Non-calcified lymph nodes "RTN","SAMICTT3",316,0) n lnlist,lnlistt,lnlcnt "RTN","SAMICTT3",317,0) set lnlcnt=22 "RTN","SAMICTT3",318,0) set lnlist(1)="cemlnl1" "RTN","SAMICTT3",319,0) set lnlist(2)="cemlnl2l" "RTN","SAMICTT3",320,0) set lnlist(2.5)="cemlnl2r" "RTN","SAMICTT3",321,0) set lnlist(3)="cemlnl3a" "RTN","SAMICTT3",322,0) set lnlist(3.5)="cemlnl3p" "RTN","SAMICTT3",323,0) set lnlist(4)="cemlnl4l" "RTN","SAMICTT3",324,0) set lnlist(4.5)="cemlnl4r" "RTN","SAMICTT3",325,0) set lnlist(5)="cemlnl5" "RTN","SAMICTT3",326,0) set lnlist(6)="cemlnl6" "RTN","SAMICTT3",327,0) set lnlist(7)="cemlnl7" "RTN","SAMICTT3",328,0) set lnlist(8)="cemlnl8" "RTN","SAMICTT3",329,0) set lnlist(9)="cemlnl9" "RTN","SAMICTT3",330,0) set lnlist(10)="cemlnl10l" "RTN","SAMICTT3",331,0) set lnlist(10.5)="cemlnl10r" "RTN","SAMICTT3",332,0) set lnlist(11)="cemlnl11l" "RTN","SAMICTT3",333,0) set lnlist(11.5)="cemlnl11r" "RTN","SAMICTT3",334,0) set lnlist(12)="cemlnl12l" "RTN","SAMICTT3",335,0) set lnlist(12.5)="cemlnl12r" "RTN","SAMICTT3",336,0) set lnlist(13)="cemlnl13l" "RTN","SAMICTT3",337,0) set lnlist(13.5)="cemlnl13r" "RTN","SAMICTT3",338,0) set lnlist(14)="cemlnl14l" "RTN","SAMICTT3",339,0) set lnlist(14.5)="cemlnl14r" "RTN","SAMICTT3",340,0) ; "RTN","SAMICTT3",341,0) set lnlistt(1)="N1: Low cervical, supraclavicular, and sternal notch nodes" "RTN","SAMICTT3",342,0) set lnlistt(2)="N2L: Upper paratracheal (left)" "RTN","SAMICTT3",343,0) set lnlistt(2.5)="N2R: Upper paratracheal (right)" "RTN","SAMICTT3",344,0) set lnlistt(3)="N3A: Prevascular" "RTN","SAMICTT3",345,0) set lnlistt(3.5)="N3P: Retrotracheal" "RTN","SAMICTT3",346,0) set lnlistt(4)="N4L: Lower paratracheal (left)" "RTN","SAMICTT3",347,0) set lnlistt(4.5)="N4R: Lower paratracheal (right)" "RTN","SAMICTT3",348,0) set lnlistt(5)="N5: Subaortic" "RTN","SAMICTT3",349,0) set lnlistt(6)="N6: Para-aortic (ascending aorta or phrenic)" "RTN","SAMICTT3",350,0) set lnlistt(7)="N7: Subcarinal" "RTN","SAMICTT3",351,0) set lnlistt(8)="N8: Paraesophageal (below carina)" "RTN","SAMICTT3",352,0) set lnlistt(9)="N9: Pulmonary ligament" "RTN","SAMICTT3",353,0) set lnlistt(10)="N10L: Hilar (left)" "RTN","SAMICTT3",354,0) set lnlistt(10.5)="N10R: Hilar (right)" "RTN","SAMICTT3",355,0) set lnlistt(11)="N11L: Interlobar (left)" "RTN","SAMICTT3",356,0) set lnlistt(11.5)="N11R: Interlobar (right)" "RTN","SAMICTT3",357,0) set lnlistt(12)="N12L: Lobar (left)" "RTN","SAMICTT3",358,0) set lnlistt(12.5)="N12R: Lobar (right)" "RTN","SAMICTT3",359,0) set lnlistt(13)="N13L: Segmental (left)" "RTN","SAMICTT3",360,0) set lnlistt(13.5)="N13R: Segmental (right)" "RTN","SAMICTT3",361,0) set lnlistt(14)="N14L: Subsegmental (left)" "RTN","SAMICTT3",362,0) set lnlistt(14.5)="N14R: Subsegmental (right)" "RTN","SAMICTT3",363,0) ; "RTN","SAMICTT3",364,0) ;set lnlist(1)="cemlnl1" "RTN","SAMICTT3",365,0) ;set lnlist(2)="cemlnl2r" "RTN","SAMICTT3",366,0) ;set lnlist(3)="cemlnl2l" "RTN","SAMICTT3",367,0) ;set lnlist(4)="cemlnl3" "RTN","SAMICTT3",368,0) ;set lnlist(5)="cemlnl4r" "RTN","SAMICTT3",369,0) ;set lnlist(6)="cemlnl4l" "RTN","SAMICTT3",370,0) ;set lnlist(7)="cemlnl5" "RTN","SAMICTT3",371,0) ;set lnlist(8)="cemlnl6" "RTN","SAMICTT3",372,0) ;set lnlist(9)="cemlnl7" "RTN","SAMICTT3",373,0) ;set lnlist(10)="cemlnl8" "RTN","SAMICTT3",374,0) ;set lnlist(11)="cemlnl9" "RTN","SAMICTT3",375,0) ;set lnlist(12)="cemlnl10r" "RTN","SAMICTT3",376,0) ;set lnlist(13)="cemlnl10l" "RTN","SAMICTT3",377,0) ; "RTN","SAMICTT3",378,0) ;set lnlistt(1)="high mediastinal" "RTN","SAMICTT3",379,0) ;set lnlistt(2)="right upper paratracheal" "RTN","SAMICTT3",380,0) ;set lnlistt(3)="left upper paratracheal" "RTN","SAMICTT3",381,0) ;set lnlistt(4)="prevascular/retrotracheal" "RTN","SAMICTT3",382,0) ;set lnlistt(5)="right lower paratracheal" "RTN","SAMICTT3",383,0) ;set lnlistt(6)="left lower paratracheal" "RTN","SAMICTT3",384,0) ;set lnlistt(7)="sub-aortic (A-P window)" "RTN","SAMICTT3",385,0) ;set lnlistt(8)="para-aortic" "RTN","SAMICTT3",386,0) ;set lnlistt(9)="subcarinal" "RTN","SAMICTT3",387,0) ;set lnlistt(10)="para-esophageal" "RTN","SAMICTT3",388,0) ;set lnlistt(11)="pulmonary ligament" "RTN","SAMICTT3",389,0) ;set lnlistt(12)="right hilar" "RTN","SAMICTT3",390,0) ;set lnlistt(13)="left hilar" "RTN","SAMICTT3",391,0) ; "RTN","SAMICTT3",392,0) ; "RTN","SAMICTT3",393,0) ;s outmode="hold" "RTN","SAMICTT3",394,0) if $$XVAL("cemln",vals)="y" d ; "RTN","SAMICTT3",395,0) . s yesmm=1 "RTN","SAMICTT3",396,0) . n llist,item "RTN","SAMICTT3",397,0) . s (llist,item)="" "RTN","SAMICTT3",398,0) . n lnum,slnum "RTN","SAMICTT3",399,0) . s lnum=0 "RTN","SAMICTT3",400,0) . f s item=$o(lnlist(item)) q:item="" d ; "RTN","SAMICTT3",401,0) . . ;i $$XVAL(lnlist(item),vals)'="" s llist($o(llist(""),-1)+1)=lnlist(item) "RTN","SAMICTT3",402,0) . . i $$XVAL(lnlist(item),vals)'="" d ; "RTN","SAMICTT3",403,0) . . . s llist(item)=lnlist(item) "RTN","SAMICTT3",404,0) . . . s lnum=lnum+1 "RTN","SAMICTT3",405,0) . ;s lnum=$o(llist(""),-1) "RTN","SAMICTT3",406,0) . i lnum=0 d OUT("Enlarged or growing lymph nodes are noted. ") "RTN","SAMICTT3",407,0) . i lnum>0 d ; "RTN","SAMICTT3",408,0) . . s slnum=lnum "RTN","SAMICTT3",409,0) . . ;d OUT("Enlarged or growing lymph nodes in the ") "RTN","SAMICTT3",410,0) . . d OUT("Enlarged or growing lymph nodes: ") "RTN","SAMICTT3",411,0) . . s item="" "RTN","SAMICTT3",412,0) . . f s item=$o(llist(item)) q:item="" d ; "RTN","SAMICTT3",413,0) . . . d OUT(lnlistt(item)) "RTN","SAMICTT3",414,0) . . . i lnum>2 d OUT(", ") "RTN","SAMICTT3",415,0) . . . i lnum=2 d OUT(" and ") "RTN","SAMICTT3",416,0) . . . s lnum=lnum-1 "RTN","SAMICTT3",417,0) . . ;i slnum>1 d OUT(" locations. ") "RTN","SAMICTT3",418,0) . . ;i slnum=1 d OUT(" location. ") "RTN","SAMICTT3",419,0) . . d OUT(". ") "RTN","SAMICTT3",420,0) ; "RTN","SAMICTT3",421,0) ;s outmode="go" "RTN","SAMICTT3",422,0) ;d OUT("") "RTN","SAMICTT3",423,0) ; "RTN","SAMICTT3",424,0) if $$XVAL("cemlncab",vals)="y" d ; "RTN","SAMICTT3",425,0) . set yesmm=1 "RTN","SAMICTT3",426,0) . d OUT("Calcified lymph nodes present. ") "RTN","SAMICTT3",427,0) ; "RTN","SAMICTT3",428,0) if $$XVAL("ceagaln",vals)="y" d ; "RTN","SAMICTT3",429,0) . set yesmm=1 "RTN","SAMICTT3",430,0) . d OUT("Enlarged or growing axillary lymph nodes without central fat are seen. ") "RTN","SAMICTT3",431,0) . d OUT($$XVAL("ceagalns",vals)) "RTN","SAMICTT3",432,0) ; "RTN","SAMICTT3",433,0) if $$XVAL("cemva",vals)="y" d ; "RTN","SAMICTT3",434,0) . set yesmm=1 "RTN","SAMICTT3",435,0) . if $$XVAL("cemvaa",vals)="a" d ; "RTN","SAMICTT3",436,0) . . d OUT("Other vascular abnormalities are seen in the aorta. ") "RTN","SAMICTT3",437,0) . if $$XVAL("cemvaa",vals)="w" d ; "RTN","SAMICTT3",438,0) . . d OUT("Other vascular abnormalities are seen in the pulmonary series. ") "RTN","SAMICTT3",439,0) . d OUT($$XVAL("cemvaos",vals)_"<br>") "RTN","SAMICTT3",440,0) ; "RTN","SAMICTT3",441,0) ;s outmode="hold" "RTN","SAMICTT3",442,0) ; # Esophageal "RTN","SAMICTT3",443,0) if $$XVAL("cemeln",vals)="y" d ; "RTN","SAMICTT3",444,0) . set yesmm=1 "RTN","SAMICTT3",445,0) . n elist s elist="" "RTN","SAMICTT3",446,0) . set numl=0 "RTN","SAMICTT3",447,0) . if $$XVAL("cemelna",vals)="a" d ; "RTN","SAMICTT3",448,0) . . s elist($o(elist(""),-1)+1)="Air-fluid level" "RTN","SAMICTT3",449,0) . . s numl=numl+1 "RTN","SAMICTT3",450,0) . if $$XVAL("cemelnw",vals)="w" d ; "RTN","SAMICTT3",451,0) . . s elist($o(elist(""),-1)+1)="Wall thickening" "RTN","SAMICTT3",452,0) . . s numl=numl+1 "RTN","SAMICTT3",453,0) . if $$XVAL("cemelnm",vals)="m" d ; "RTN","SAMICTT3",454,0) . . s elist($o(elist(""),-1)+1)="A mass" "RTN","SAMICTT3",455,0) . . s numl=numl+1 "RTN","SAMICTT3",456,0) . if numl=0 d OUT("Esophageal abnormality noted. ") "RTN","SAMICTT3",457,0) . e d ; "RTN","SAMICTT3",458,0) . . d OUT($g(elist(1))) "RTN","SAMICTT3",459,0) . . if numl=1 d OUT(" is ") "RTN","SAMICTT3",460,0) . . e d ; "RTN","SAMICTT3",461,0) . . . if numl=2 d ; "RTN","SAMICTT3",462,0) . . . . d OUT(" and ") "RTN","SAMICTT3",463,0) . . . e d OUT(", ") "RTN","SAMICTT3",464,0) . . . d OUT($$LOWC($g(elist(2)))) "RTN","SAMICTT3",465,0) . . . if numl=3 d ; "RTN","SAMICTT3",466,0) . . . . d OUT(", and "_$$LOWC($g(elist(3)))) "RTN","SAMICTT3",467,0) . . d OUT("seen in the esophagus. ") "RTN","SAMICTT3",468,0) . d OUT($$XVAL("cemelnos",vals)) "RTN","SAMICTT3",469,0) ;s outmode="go" "RTN","SAMICTT3",470,0) ;d OUT("") "RTN","SAMICTT3",471,0) ; "RTN","SAMICTT3",472,0) ; "RTN","SAMICTT3",473,0) if $$XVAL("cehhn",vals)="y" d ; "RTN","SAMICTT3",474,0) . set yesmm=1 "RTN","SAMICTT3",475,0) . if $$XVAL("cehhnos",vals)'="" d OUT("Hiatal hernia: "_$$XVAL("cehhnos",vals)) "RTN","SAMICTT3",476,0) . if $$XVAL("cehhnos",vals)="" d OUT("Hiatal hernia. ") "RTN","SAMICTT3",477,0) . d OUT("") "RTN","SAMICTT3",478,0) ; "RTN","SAMICTT3",479,0) if $$XVAL("ceomm",vals)="y" d ; "RTN","SAMICTT3",480,0) . set yesmm=1 "RTN","SAMICTT3",481,0) . n tval "RTN","SAMICTT3",482,0) . set tval=$$XVAL("ceommos",vals) "RTN","SAMICTT3",483,0) . set abn=$$CCMSTR("ceamc^ceamy^ceamm",vals) "RTN","SAMICTT3",484,0) . if abn="" d OUT(sp1_"Abnormality noted in the mediastinum. ") "RTN","SAMICTT3",485,0) . e d OUT(sp1_abn_" mediastinum. ") "RTN","SAMICTT3",486,0) . d OUT(tval) "RTN","SAMICTT3",487,0) ;i yesmm=0 d OUT(sp1_"No abnormalities. ") "RTN","SAMICTT3",488,0) i yesmm=0 d OUT(sp1_"Unremarkable. ") "RTN","SAMICTT3",489,0) i $$XVAL("ceotabnm",vals)'="" d ; "RTN","SAMICTT3",490,0) . d OUT(sp1_$$XVAL("ceotabnm",vals)_". ") "RTN","SAMICTT3",491,0) s outmode="go" "RTN","SAMICTT3",492,0) d OUT("") "RTN","SAMICTT3",493,0) ; "RTN","SAMICTT3",494,0) ; "RTN","SAMICTT3",495,0) quit ; end of EMPHYS "RTN","SAMICTT3",496,0) ; "RTN","SAMICTT3",497,0) ; "RTN","SAMICTT3",498,0) ; "RTN","SAMICTT3",499,0) CCMSTR(lst,vals) ; extrinsic that forms phrases "RTN","SAMICTT3",500,0) ; "RTN","SAMICTT3",501,0) ;@called-by "RTN","SAMICTT3",502,0) ; EMPHYS "RTN","SAMICTT3",503,0) ;@calls "RTN","SAMICTT3",504,0) ; $$XVAL "RTN","SAMICTT3",505,0) ; $$LOWC "RTN","SAMICTT3",506,0) ;@input "RTN","SAMICTT3",507,0) ; lst "RTN","SAMICTT3",508,0) ; vals "RTN","SAMICTT3",509,0) ;@output = phrase for comments "RTN","SAMICTT3",510,0) ; "RTN","SAMICTT3",511,0) n retstr s retstr="" "RTN","SAMICTT3",512,0) n lblist s lblist="" "RTN","SAMICTT3",513,0) n lb,ib s ib="" "RTN","SAMICTT3",514,0) f lb=1:1:$l(lst,"^") d ; "RTN","SAMICTT3",515,0) . n lvar s lvar=$p(lst,"^",lb) "RTN","SAMICTT3",516,0) . s ib=$$XVAL($p(lst,"^",lb),vals) "RTN","SAMICTT3",517,0) . if ib'="" d ; "RTN","SAMICTT3",518,0) . . i ib="y" d ; "RTN","SAMICTT3",519,0) . . . i $f("ceasc cealc ceapc ceapc ceaac ceakc",lvar)>0 s lblist($o(lblist(""),-1)+1)="Calcification" "RTN","SAMICTT3",520,0) . . . ;i "ceasc cealc ceapc ceapc ceaac ceakc"[lb s lblist($o(lblist(""),-1)+1)="Calcification" "RTN","SAMICTT3",521,0) . . . else s lblist($o(lblist(""),-1)+1)="Cyst" "RTN","SAMICTT3",522,0) . . i ib="c" s lblist($o(lblist(""),-1)+1)="Calcification" "RTN","SAMICTT3",523,0) . . i ib="m" s lblist($o(lblist(""),-1)+1)="Mass" "RTN","SAMICTT3",524,0) i $o(lblist(""),-1)=1 s retstr=retstr_lblist(1)_" is seen in the" "RTN","SAMICTT3",525,0) e i $o(lblist(""),-1)=2 s retstr=retstr_lblist(1)_" and "_$$LOWC(lblist(2))_" are seen in the" "RTN","SAMICTT3",526,0) e i $o(lblist(""),-1)=3 s retstr=retstr_"Calicification, cyst, and mass are seen in the" "RTN","SAMICTT3",527,0) ; "RTN","SAMICTT3",528,0) quit retstr ; end of $$CCMSTR "RTN","SAMICTT3",529,0) ; "RTN","SAMICTT3",530,0) ; "RTN","SAMICTT3",531,0) ; "RTN","SAMICTT3",532,0) LOWC(X) ; convert X to lowercase "RTN","SAMICTT3",533,0) ; "RTN","SAMICTT3",534,0) ;@called-by "RTN","SAMICTT3",535,0) ; EMPHYS "RTN","SAMICTT3",536,0) ; $$CCMSTR "RTN","SAMICTT3",537,0) ;@calls none "RTN","SAMICTT3",538,0) ;@input "RTN","SAMICTT3",539,0) ; X "RTN","SAMICTT3",540,0) ;@output = lowercase string "RTN","SAMICTT3",541,0) ; "RTN","SAMICTT3",542,0) quit $translate(X,"ABCDEFGHIJKLMNOPQRSTUVWXYZ","abcdefghijklmnopqrstuvwxyz") "RTN","SAMICTT3",543,0) ; "RTN","SAMICTT3",544,0) ; "RTN","SAMICTT3",545,0) ; "RTN","SAMICTT3",546,0) OUT(ln) ; output a line of ct report "RTN","SAMICTT3",547,0) ; "RTN","SAMICTT3",548,0) ;@called-by "RTN","SAMICTT3",549,0) ; EMPHYS "RTN","SAMICTT3",550,0) ;@calls none "RTN","SAMICTT3",551,0) ;@input "RTN","SAMICTT3",552,0) ; ln = output to add "RTN","SAMICTT3",553,0) ;@output: line added to report "RTN","SAMICTT3",554,0) ; "RTN","SAMICTT3",555,0) i outmode="hold" s line=line_ln q ; "RTN","SAMICTT3",556,0) s cnt=cnt+1 "RTN","SAMICTT3",557,0) n lnn "RTN","SAMICTT3",558,0) ;s debug=1 "RTN","SAMICTT3",559,0) s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT3",560,0) i outmode="go" d ; "RTN","SAMICTT3",561,0) . s @rtn@(lnn)=line "RTN","SAMICTT3",562,0) . s line="" "RTN","SAMICTT3",563,0) . s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT3",564,0) s @rtn@(lnn)=ln "RTN","SAMICTT3",565,0) ; "RTN","SAMICTT3",566,0) i $g(debug)=1 d ; "RTN","SAMICTT3",567,0) . i ln["<" q ; no markup "RTN","SAMICTT3",568,0) . n zs s zs=$STACK "RTN","SAMICTT3",569,0) . n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMICTT3",570,0) . s @rtn@(lnn)=zp_":"_ln "RTN","SAMICTT3",571,0) ; "RTN","SAMICTT3",572,0) quit ; end of OUT "RTN","SAMICTT3",573,0) ; "RTN","SAMICTT3",574,0) ; "RTN","SAMICTT3",575,0) ; "RTN","SAMICTT3",576,0) OUTOLD(ln) ; old version of out "RTN","SAMICTT3",577,0) ; "RTN","SAMICTT3",578,0) ;@called-by none "RTN","SAMICTT3",579,0) ;@calls none "RTN","SAMICTT3",580,0) ;@input "RTN","SAMICTT3",581,0) ; ln = output to add "RTN","SAMICTT3",582,0) ;@output: line added to report "RTN","SAMICTT3",583,0) ; "RTN","SAMICTT3",584,0) s cnt=cnt+1 "RTN","SAMICTT3",585,0) n lnn "RTN","SAMICTT3",586,0) ;s debug=1 "RTN","SAMICTT3",587,0) s lnn=$o(@rtn@(" "),-1)+1 "RTN","SAMICTT3",588,0) s @rtn@(lnn)=ln "RTN","SAMICTT3",589,0) ; "RTN","SAMICTT3",590,0) i $g(debug)=1 d ; "RTN","SAMICTT3",591,0) . i ln["<" q ; no markup "RTN","SAMICTT3",592,0) . n zs s zs=$STACK "RTN","SAMICTT3",593,0) . n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMICTT3",594,0) . s @rtn@(lnn)=zp_":"_ln "RTN","SAMICTT3",595,0) ; "RTN","SAMICTT3",596,0) quit ; end of OUTOLD "RTN","SAMICTT3",597,0) ; "RTN","SAMICTT3",598,0) ; "RTN","SAMICTT3",599,0) ; "RTN","SAMICTT3",600,0) HOUT(ln) ; output a ct report header line "RTN","SAMICTT3",601,0) ; "RTN","SAMICTT3",602,0) ;@called-by "RTN","SAMICTT3",603,0) ; EMPHYS "RTN","SAMICTT3",604,0) ;@calls "RTN","SAMICTT3",605,0) ; OUT "RTN","SAMICTT3",606,0) ;@input "RTN","SAMICTT3",607,0) ; ln = header output to add "RTN","SAMICTT3",608,0) ;@output: header line added to report "RTN","SAMICTT3",609,0) ; "RTN","SAMICTT3",610,0) D OUT(ln) "RTN","SAMICTT3",611,0) ;d OUT("<p><span class='sectionhead'>"_ln_"</span>") "RTN","SAMICTT3",612,0) ; "RTN","SAMICTT3",613,0) quit ; end of HOUT "RTN","SAMICTT3",614,0) ; "RTN","SAMICTT3",615,0) ; "RTN","SAMICTT3",616,0) ; "RTN","SAMICTT3",617,0) XVAL(var,vals) ; extrinsic returns the patient value for var "RTN","SAMICTT3",618,0) ; "RTN","SAMICTT3",619,0) ;@called-by "RTN","SAMICTT3",620,0) ; EMPHYS "RTN","SAMICTT3",621,0) ; $$CCMSTR "RTN","SAMICTT3",622,0) ;@calls none "RTN","SAMICTT3",623,0) ;@input "RTN","SAMICTT3",624,0) ; var "RTN","SAMICTT3",625,0) ; vals is passed by nam "RTN","SAMICTT3",626,0) ;@output = patient value for var "RTN","SAMICTT3",627,0) ; "RTN","SAMICTT3",628,0) ;e "RTN","SAMICTT3",629,0) n zr "RTN","SAMICTT3",630,0) s zr=$g(@vals@(var)) "RTN","SAMICTT3",631,0) ;i zr="" s zr="["_var_"]" "RTN","SAMICTT3",632,0) ; "RTN","SAMICTT3",633,0) quit zr ; end of $$XVAL "RTN","SAMICTT3",634,0) ; "RTN","SAMICTT3",635,0) ; "RTN","SAMICTT3",636,0) ; "RTN","SAMICTT3",637,0) XSUB(var,vals,dict,valdx) ; extrinsic which returns the dictionary value defined by var "RTN","SAMICTT3",638,0) ; "RTN","SAMICTT3",639,0) ;@called-by "RTN","SAMICTT3",640,0) ; EMPHYS "RTN","SAMICTT3",641,0) ;@calls none "RTN","SAMICTT3",642,0) ;@input "RTN","SAMICTT3",643,0) ; var "RTN","SAMICTT3",644,0) ; vals and dict are passed by name "RTN","SAMICTT3",645,0) ; valdx is used for nodules ala cect2co with the nodule number included "RTN","SAMICTT3",646,0) ;@output = dictionary value for var "RTN","SAMICTT3",647,0) ; "RTN","SAMICTT3",648,0) ; "RTN","SAMICTT3",649,0) ;n dict s dict=$$setroot^%wd("cteval-dict") "RTN","SAMICTT3",650,0) n zr,zv,zdx "RTN","SAMICTT3",651,0) s zdx=$g(valdx) "RTN","SAMICTT3",652,0) i zdx="" s zdx=var "RTN","SAMICTT3",653,0) s zv=$g(@vals@(zdx)) "RTN","SAMICTT3",654,0) ;i zv="" s zr="["_var_"]" q zr "RTN","SAMICTT3",655,0) i zv="" s zr="" q zr "RTN","SAMICTT3",656,0) s zr=$g(@dict@(var,zv)) "RTN","SAMICTT3",657,0) ;i zr="" s zr="["_var_","_zv_"]" "RTN","SAMICTT3",658,0) ; "RTN","SAMICTT3",659,0) quit zr ; end of $$XSUB "RTN","SAMICTT3",660,0) ; "RTN","SAMICTT3",661,0) GENLNL() ; "RTN","SAMICTT3",662,0) ; "RTN","SAMICTT3",663,0) n droot s droot=$$setroot^%wd("form fields - ct evaluation") "RTN","SAMICTT3",664,0) n froot s froot=$na(@droot@("field","B")) "RTN","SAMICTT3",665,0) n lnlist,lnlistt "RTN","SAMICTT3",666,0) n cnt s cnt=0 "RTN","SAMICTT3",667,0) n cemlnl s cemlnl="cemlnl" "RTN","SAMICTT3",668,0) f s cemlnl=$o(@froot@(cemlnl)) q:cemlnl="" q:cemlnl'["cemlnl" d ; "RTN","SAMICTT3",669,0) . w !,cemlnl "RTN","SAMICTT3",670,0) . s cnt=cnt+1 "RTN","SAMICTT3",671,0) . n fien s fien=$o(@froot@(cemlnl,"")) "RTN","SAMICTT3",672,0) . q:fien="" "RTN","SAMICTT3",673,0) . ;zwr @droot@("field",fien,"input",1,*) "RTN","SAMICTT3",674,0) . n lbl "RTN","SAMICTT3",675,0) . s lbl=$g(@droot@("field",fien,"input",1,"label")) "RTN","SAMICTT3",676,0) . ;s lbl=$p(lbl,": ",2) "RTN","SAMICTT3",677,0) . ;s lbl=$$LOWC^SAMICTT3(lbl) "RTN","SAMICTT3",678,0) . n norder,dec "RTN","SAMICTT3",679,0) . s dec=0 "RTN","SAMICTT3",680,0) . s norder=$g(@droot@("field",fien,"input",1,"value")) "RTN","SAMICTT3",681,0) . i $e(norder,1)'="N" w !,"N error!!" b "RTN","SAMICTT3",682,0) . s norder=$e(norder,2,$l(norder)) "RTN","SAMICTT3",683,0) . i $e(norder,$l(norder))="L" d ; "RTN","SAMICTT3",684,0) . . s dec=0 "RTN","SAMICTT3",685,0) . . s norder=$e(norder,1,$l(norder)-1) "RTN","SAMICTT3",686,0) . i $e(norder,$l(norder))="R" d ; "RTN","SAMICTT3",687,0) . . s dec=.5 "RTN","SAMICTT3",688,0) . . s norder=$e(norder,1,$l(norder)-1) "RTN","SAMICTT3",689,0) . i $e(norder,$l(norder))="A" d ; "RTN","SAMICTT3",690,0) . . s dec=0 "RTN","SAMICTT3",691,0) . . s norder=$e(norder,1,$l(norder)-1) "RTN","SAMICTT3",692,0) . i $e(norder,$l(norder))="P" d ; "RTN","SAMICTT3",693,0) . . s dec=.5 "RTN","SAMICTT3",694,0) . . s norder=$e(norder,1,$l(norder)-1) "RTN","SAMICTT3",695,0) . s norder=norder+dec "RTN","SAMICTT3",696,0) . w !,lbl," ",norder "RTN","SAMICTT3",697,0) . s lnlist(norder)=cemlnl "RTN","SAMICTT3",698,0) . s lnlistt(norder)=lbl "RTN","SAMICTT3",699,0) zwr lnlist "RTN","SAMICTT3",700,0) zwr lnlistt "RTN","SAMICTT3",701,0) w !," set lnlcnt="_cnt "RTN","SAMICTT3",702,0) n i s i="" "RTN","SAMICTT3",703,0) f s i=$o(lnlist(i)) q:i="" w !," set lnlist(",i,")=""",lnlist(i),"""" "RTN","SAMICTT3",704,0) w !," ;" "RTN","SAMICTT3",705,0) f s i=$o(lnlistt(i)) q:i="" w !," set lnlistt(",i,")=""",lnlistt(i),"""" "RTN","SAMICTT3",706,0) q "RTN","SAMICTT3",707,0) ; "RTN","SAMICTT3",708,0) ; "RTN","SAMICTT3",709,0) EOR ; end of routine SAMICTT3 "RTN","SAMICTUL") 0^6^B108974 "RTN","SAMICTUL",1,0) SAMICTUL ;ven/gpl - ct report & copy log ;2021-11-16t21:47z "RTN","SAMICTUL",2,0) ;;18.0;SAMI;**10,11,12,13,15**;2020-01;Build 3 "RTN","SAMICTUL",3,0) ;;18.15 "RTN","SAMICTUL",4,0) ; "RTN","SAMICTUL",5,0) ; SAMICTUL contains routine & module info & the primary development "RTN","SAMICTUL",6,0) ; log for VAPALS-ELCAP's CT Report ctreport web service route, which "RTN","SAMICTUL",7,0) ; is implemented by the SAMICTR* (html) and SAMICTT* (text) "RTN","SAMICTUL",8,0) ; routines. It also contains the log for the SAMICTC* routines that "RTN","SAMICTUL",9,0) ; implement the ct form copy operation. "RTN","SAMICTUL",10,0) ; SAMICTUL contains no public interfaces or executable code. "RTN","SAMICTUL",11,0) ; "RTN","SAMICTUL",12,0) quit ; no entry from top "RTN","SAMICTUL",13,0) ; "RTN","SAMICTUL",14,0) ; "RTN","SAMICTUL",15,0) ; "RTN","SAMICTUL",16,0) ;@section 0 primary development "RTN","SAMICTUL",17,0) ; "RTN","SAMICTUL",18,0) ; "RTN","SAMICTUL",19,0) ; "RTN","SAMICTUL",20,0) ;@routine-credits "RTN","SAMICTUL",21,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMICTUL",22,0) ; gpl@vistaexpertise.net "RTN","SAMICTUL",23,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMICTUL",24,0) ; http://vistaexpertise.net "RTN","SAMICTUL",25,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMICTUL",26,0) ;@license Apache 2.0 "RTN","SAMICTUL",27,0) ; https://www.apache.org/licenses/LICENSE-2.0.html "RTN","SAMICTUL",28,0) ; "RTN","SAMICTUL",29,0) ;@last-update 2021-11-16t21:47z "RTN","SAMICTUL",30,0) ;@application Screening Applications Management (SAM) "RTN","SAMICTUL",31,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMICTUL",32,0) ;@version 18.15 "RTN","SAMICTUL",33,0) ;@release-date 2020-01 "RTN","SAMICTUL",34,0) ;@patch-list **10,11,12,15** "RTN","SAMICTUL",35,0) ; "RTN","SAMICTUL",36,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMICTUL",37,0) ; toad@vistaexpertise.net "RTN","SAMICTUL",38,0) ;@dev-add Alexis Carlson (arc) "RTN","SAMICTUL",39,0) ; alexis.carlson@vistaexpertise.net "RTN","SAMICTUL",40,0) ;@dev-add Kenneth McGlothlen (mcglk) "RTN","SAMICTUL",41,0) ; mcglk@vistaexpertise.net "RTN","SAMICTUL",42,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMICTUL",43,0) ; lmry@vistaexpertise.net "RTN","SAMICTUL",44,0) ; "RTN","SAMICTUL",45,0) ;@module-credits "RTN","SAMICTUL",46,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMICTUL",47,0) ; (VA-PALS) "RTN","SAMICTUL",48,0) ; http://va-pals.org/ "RTN","SAMICTUL",49,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMICTUL",50,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMICTUL",51,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMICTUL",52,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMICTUL",53,0) ;@partner-org International Early Lung Cancer Action Program (IELCAP) "RTN","SAMICTUL",54,0) ; http://ielcap.com/ "RTN","SAMICTUL",55,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMICTUL",56,0) ; http://paraxialtech.com/ "RTN","SAMICTUL",57,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMICTUL",58,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMICTUL",59,0) ; "RTN","SAMICTUL",60,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMICTUL",61,0) ; "RTN","SAMICTUL",62,0) ; 2018-07-01/05 ven/arc&lgc 18.0 8b0a4329,f5ff7eeb,5549cd30 "RTN","SAMICTUL",63,0) ; SAMICTD2 1st version of CT Eval Report, fix init routine, get "RTN","SAMICTUL",64,0) ; lungrads & nonodules working. "RTN","SAMICTUL",65,0) ; "RTN","SAMICTUL",66,0) ; 2018-10-14 ven/arc 18.0 f6e1229 "RTN","SAMICTUL",67,0) ; SAMICTC1 turn on copy forward for cteval new forms "RTN","SAMICTUL",68,0) ; "RTN","SAMICTUL",69,0) ; 2018-12-11/2019-01-22 ven/lgc&lmry 18.0 9925713f,3ceb74b,3bb70c8, "RTN","SAMICTUL",70,0) ; d22e0f21,5368121 "RTN","SAMICTUL",71,0) ; SAMICTC1,2,D2 sac compliance, add license info. "RTN","SAMICTUL",72,0) ; "RTN","SAMICTUL",73,0) ; 2020-02-01/03 ven/arc 18.4 d47135a5,bc32c1cb,5b2e4525,7bcd14a2, "RTN","SAMICTUL",74,0) ; 1c96fe0e,cb0075e8,5e553dd2,9cde6840,dcea0048e,98b7b273,a4f98f19 "RTN","SAMICTUL",75,0) ; SAMICTT0,1,2,3,4,9,A routines (starting as copies of SAMICTR*) to "RTN","SAMICTUL",76,0) ; implement ctreport in text format, start convert nodules to text, "RTN","SAMICTUL",77,0) ; add'l lung findings, fix parag spacing, add impressions sect, "RTN","SAMICTUL",78,0) ; recommendations sect, add'l sects on other abnormalities, breast "RTN","SAMICTUL",79,0) ; abnorm sect, other abnorm sect, tweak format, make it more compact. "RTN","SAMICTUL",80,0) ; "RTN","SAMICTUL",81,0) ; 2021-02-18 ven/gpl 18.10 38fb2d70 "RTN","SAMICTUL",82,0) ; SAMICTT0,1,2,3,4,9,A ct report - insert space after every period. "RTN","SAMICTUL",83,0) ; "RTN","SAMICTUL",84,0) ; 2021-03-04/16 ven/gpl 18.10 e09d5f16,3ea26de9,91793ba3 "RTN","SAMICTUL",85,0) ; SAMICTT1,3,4 ct report: fix normal cardiac default output, CAC "RTN","SAMICTUL",86,0) ; logic, other enhancements. "RTN","SAMICTUL",87,0) ; "RTN","SAMICTUL",88,0) ; 2021-03-23 ven/gpl 18.10 a68f7f31 "RTN","SAMICTUL",89,0) ; SAMICTT3 fix CAC problem. "RTN","SAMICTUL",90,0) ; "RTN","SAMICTUL",91,0) ; 2021-03-21/23 ven/toad 18.10 96f461d "RTN","SAMICTUL",92,0) ; SAMICTUL: create development log routine. "RTN","SAMICTUL",93,0) ; SAMICTT0,1,2,3,4,9,A bump date & version, lt refactor. "RTN","SAMICTUL",94,0) ; "RTN","SAMICTUL",95,0) ; 2021-05-14 ven/gpl 18.11 0a01cf2 "RTN","SAMICTUL",96,0) ; SAMICTTA in RCMND change to ctreport for no followup ct w/other "RTN","SAMICTUL",97,0) ; followup recommendations, "Followup" instead of "Other Followup." "RTN","SAMICTUL",98,0) ; "RTN","SAMICTUL",99,0) ; 2021-05-19 ven/gpl 18.11 a21b056,139c6a5 "RTN","SAMICTUL",100,0) ; SAMICTT0 in WSREPORT check for small nodule checkboxes. "RTN","SAMICTUL",101,0) ; SAMICTT1 in NODULES urgent fix to add to ct report "Small [non-] "RTN","SAMICTUL",102,0) ; calcified nodules are present." "RTN","SAMICTUL",103,0) ; "RTN","SAMICTUL",104,0) ; 2021-05-20/21 ven/mcglk&toad 18.11 43a4557,129e96b "RTN","SAMICTUL",105,0) ; SAMICTT0,1 bump version & dates. "RTN","SAMICTUL",106,0) ; "RTN","SAMICTUL",107,0) ; 2021-05-24 ven/gpl 18.11 4aba1a9 "RTN","SAMICTUL",108,0) ; SAMICTC1 in CTCOPY add new param key to control two new opening "RTN","SAMICTUL",109,0) ; blocks, critical fix to copy forward for Is It New field for new ct "RTN","SAMICTUL",110,0) ; eval forms. "RTN","SAMICTUL",111,0) ; "RTN","SAMICTUL",112,0) ; 2021-05-25 ven/toad 18.11 801d7c7 "RTN","SAMICTUL",113,0) ; SAMICTC1 bump version & dates; passim annotate & lt refactor. "RTN","SAMICTUL",114,0) ; SAMICTUL add SAMICTC* routines to log. "RTN","SAMICTUL",115,0) ; "RTN","SAMICTUL",116,0) ; 2021-06-01 ven/gpl 18.11 e86756e "RTN","SAMICTUL",117,0) ; SAMICTC1 corrected bug on CT eval copy forward: in CTCOPY stanza "RTN","SAMICTUL",118,0) ; 2 q:isnew="". "RTN","SAMICTUL",119,0) ; "RTN","SAMICTUL",120,0) ; 2021-06-04 ven/toad 18.11 7dd9410c,911264de "RTN","SAMICTUL",121,0) ; SAMICTC1 fold in gpl chg, log, bump dates. "RTN","SAMICTUL",122,0) ; "RTN","SAMICTUL",123,0) ; 2021-07-19 ven/gpl 18.12 e9359411 "RTN","SAMICTUL",124,0) ; SAMICTD2 chg minimal to mild for emphysema in ct report. "RTN","SAMICTUL",125,0) ; "RTN","SAMICTUL",126,0) ; 2021-08-17 ven/gpl 18.13 023fcdff "RTN","SAMICTUL",127,0) ; SAMICTT3 correct typo in field name for circumflex in CAC section "RTN","SAMICTUL",128,0) ; "RTN","SAMICTUL",129,0) ; 2021-10-19 ven/gpl 18-15 520cbe86,f9b7b5a1,137e131e,514476c3,ba04a578, "RTN","SAMICTUL",130,0) ; 013dd1ad "RTN","SAMICTUL",131,0) ; SAMICTT0 remove extra space in front of Description, surpress comparison "RTN","SAMICTUL",132,0) ; scans on baseline CT eval "RTN","SAMICTUL",133,0) ; SAMICTT3 added GENLNL for lymph nodes, fixed pleural effusion logic, if no "RTN","SAMICTUL",134,0) ; input, say CAC score not provided,new lymph node table generated from the "RTN","SAMICTUL",135,0) ; ct eval tsv graph "RTN","SAMICTUL",136,0) ; SAMICTD2 remove above from Impression section of ct rpt and followup note "RTN","SAMICTUL",137,0) ; "RTN","SAMICTUL",138,0) ; 2021-10-21 ven/gpl 18-15 5b9cd54b "RTN","SAMICTUL",139,0) ; SAMICTT3 fix in lymph node description algorithm "RTN","SAMICTUL",140,0) ; "RTN","SAMICTUL",141,0) ; 2021-10-25 ven/gpl 18-15 d147d56f "RTN","SAMICTUL",142,0) ; SAMICTT3 corrections to pleura and lymph node report text "RTN","SAMICTUL",143,0) ; "RTN","SAMICTUL",144,0) ; 2021-10-26 ven/gpl 18-15 cd36ee6a,f31f8722 "RTN","SAMICTUL",145,0) ; SAMICTT0 fixed CT report Comparison Scans logic "RTN","SAMICTUL",146,0) ; SAMICTT3 change working on emphysema score not provided "RTN","SAMICTUL",147,0) ; "RTN","SAMICTUL",148,0) ; 2021-10-28 ven/gpl 18-15 194989af "RTN","SAMICTUL",149,0) ; SAMICTT3 fix detecting no cac score provided "RTN","SAMICTUL",150,0) ; "RTN","SAMICTUL",151,0) ; 2021-10-29 ven/lmry 18-15 3d66553e,6e9594e8 "RTN","SAMICTUL",152,0) ; SAMICTT0 SAMICTT3 bump versions and dates "RTN","SAMICTUL",153,0) ; SAMICTT3 add semi-colon after GENLNL for XINDEX "RTN","SAMICTUL",154,0) ; "RTN","SAMICTUL",155,0) ; 2021-11-10 ven/gpl 18-15 c9ab7f07 "RTN","SAMICTUL",156,0) ; SAMICTT3 new logic for CAC and Emphysema report output "RTN","SAMICTUL",157,0) ; "RTN","SAMICTUL",158,0) ; 2021-11-16 ven/lmry 18-15 "RTN","SAMICTUL",159,0) ; SAMICTT3 bump versions and dates "RTN","SAMICTUL",160,0) ; "RTN","SAMICTUL",161,0) ; "RTN","SAMICTUL",162,0) ;@contents "RTN","SAMICTUL",163,0) ; SAMICTC1 ceform copy "RTN","SAMICTUL",164,0) ; SAMICTC2 ceform copy continued "RTN","SAMICTUL",165,0) ; "RTN","SAMICTUL",166,0) ; SAMICTD2 cteval-dict init "RTN","SAMICTUL",167,0) ; "RTN","SAMICTUL",168,0) ; SAMICTT0 ctreport text main "RTN","SAMICTUL",169,0) ; SAMICTT1 ctreport text nodules "RTN","SAMICTUL",170,0) ; SAMICTT2 ctreport text other lung "RTN","SAMICTUL",171,0) ; SAMICTT3 ctreport text emphysema "RTN","SAMICTUL",172,0) ; SAMICTT4 ctreport text breast abnorm "RTN","SAMICTUL",173,0) ; SAMICTT9 ctreport text impressions "RTN","SAMICTUL",174,0) ; SAMICTTA ctreport text recommendations "RTN","SAMICTUL",175,0) ; SAMICTUL ctreport log "RTN","SAMICTUL",176,0) ; "RTN","SAMICTUL",177,0) ; SAMICTR* ctreport html format "RTN","SAMICTUL",178,0) ; SAMIUTR* test the SAMICTR routines "RTN","SAMICTUL",179,0) ; "RTN","SAMICTUL",180,0) ; "RTN","SAMICTUL",181,0) ; "RTN","SAMICTUL",182,0) EOR ; end of routine SAMICTUL "RTN","SAMICUL") 0^7^B136079 "RTN","SAMICUL",1,0) SAMICUL ;ven/gpl - case review log ;2021-10-29t02:24z "RTN","SAMICUL",2,0) ;;18.0;SAMI;**9,11,12,14,15**;2020-01;Build 3 "RTN","SAMICUL",3,0) ;;18.15 "RTN","SAMICUL",4,0) ; "RTN","SAMICUL",5,0) ; SAMICUL contains the development log for the VAPALS-IELCAP Case "RTN","SAMICUL",6,0) ; Review Page (SAMICA* routines). "RTN","SAMICUL",7,0) ; It contains no executable code. "RTN","SAMICUL",8,0) ; "RTN","SAMICUL",9,0) quit ; no entry from top "RTN","SAMICUL",10,0) ; "RTN","SAMICUL",11,0) ; "RTN","SAMICUL",12,0) ; "RTN","SAMICUL",13,0) ;@section 0 primary development "RTN","SAMICUL",14,0) ; "RTN","SAMICUL",15,0) ; "RTN","SAMICUL",16,0) ; "RTN","SAMICUL",17,0) ;@routine-credits "RTN","SAMICUL",18,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMICUL",19,0) ; gpl@vistaexpertise.net "RTN","SAMICUL",20,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMICUL",21,0) ; http://vistaexpertise.net "RTN","SAMICUL",22,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMICUL",23,0) ;@license see routine SAMIUL "RTN","SAMICUL",24,0) ; "RTN","SAMICUL",25,0) ;@last-update 2021-10-29t02:24z "RTN","SAMICUL",26,0) ;@application Screening Applications Management (SAM) "RTN","SAMICUL",27,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMICUL",28,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMICUL",29,0) ;@version 18.15 "RTN","SAMICUL",30,0) ;@release-date 2020-01 "RTN","SAMICUL",31,0) ;@patch-list **9,11,12,14,15** "RTN","SAMICUL",32,0) ; "RTN","SAMICUL",33,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMICUL",34,0) ; toad@vistaexpertise.net "RTN","SAMICUL",35,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMICUL",36,0) ; linda.yaw@vistaexpertise.net "RTN","SAMICUL",37,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMICUL",38,0) ; larry.g.carlson@gmail.com "RTN","SAMICUL",39,0) ;@dev-add Domenick DiNatale (ddn) "RTN","SAMICUL",40,0) ; domenic@intellitechinnovations.com "RTN","SAMICUL",41,0) ;@dev-add Kenneth McGlothlen (mcglk) "RTN","SAMICUL",42,0) ; mcglk@vistaexpertise.net "RTN","SAMICUL",43,0) ; "RTN","SAMICUL",44,0) ;@module-credits "RTN","SAMICUL",45,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMICUL",46,0) ; (VA-PALS) "RTN","SAMICUL",47,0) ; http://va-pals.org/ "RTN","SAMICUL",48,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMICUL",49,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMICUL",50,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMICUL",51,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMICUL",52,0) ;@partner-org International Early Lung Cancer Action Program (I-ELCAP) "RTN","SAMICUL",53,0) ; http://ielcap.com/ "RTN","SAMICUL",54,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMICUL",55,0) ; http://paraxialtech.com/ "RTN","SAMICUL",56,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMICUL",57,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMICUL",58,0) ; "RTN","SAMICUL",59,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMICUL",60,0) ; "RTN","SAMICUL",61,0) ; 2018-01-14 ven/gpl 18.0-t4 "RTN","SAMICUL",62,0) ; SAMICASE split from routine SAMIFRM, incl wsCASE,GETTMPL,GETITEMS, "RTN","SAMICUL",63,0) ; casetbl. "RTN","SAMICUL",64,0) ; "RTN","SAMICUL",65,0) ; 2018-02-05/08 ven/toad 18.0-t4 "RTN","SAMICUL",66,0) ; SAMICASE update style, license, & attribution, spell out language "RTN","SAMICUL",67,0) ; elements, add white space & do-dot quits, r/replaceAll^%wfhfrom w/ "RTN","SAMICUL",68,0) ; replaceAll^%wf, r/$$getTemplate^%wfhform w/$$getTemplate^%wf. "RTN","SAMICUL",69,0) ; "RTN","SAMICUL",70,0) ; 2018-02-14 ven/toad 18.0-t4 "RTN","SAMICUL",71,0) ; SAMICASE r/replaceAll^%wf w/findReplaceAll^%wf, r/ln w/line, add "RTN","SAMICUL",72,0) ; @calls & @called-by tags, break up some long lines. "RTN","SAMICUL",73,0) ; "RTN","SAMICUL",74,0) ; 2018-02-27 ven/gpl 18.0-t4 "RTN","SAMICUL",75,0) ; SAMICASE new subroutines $$KEY2DSPD, $$GETDTKEY; in wsCASE get "RTN","SAMICUL",76,0) ; 1st & last names from graph, fix paths, key forms in graph w/date. "RTN","SAMICUL",77,0) ; "RTN","SAMICUL",78,0) ; 2018-03-01 ven/toad 18.0-t4 "RTN","SAMICUL",79,0) ; SAMICASE refactor & reorganize new code, add header comments, r/ "RTN","SAMICUL",80,0) ; findReplaceAll^%wf w/findReplace^%ts. "RTN","SAMICUL",81,0) ; "RTN","SAMICUL",82,0) ; 2018-03-06 ven/gpl 18.0-t4 "RTN","SAMICUL",83,0) ; SAMICASE add New Form button, list rest of forms for patient, add "RTN","SAMICUL",84,0) ; web services wsNuForm & wsNuFormPost & method MKCEFORM, extend "RTN","SAMICUL",85,0) ; GETITEMS to get rest of forms. "RTN","SAMICUL",86,0) ; "RTN","SAMICUL",87,0) ; 2018-03-07/08 ven/toad 18.0-t4 "RTN","SAMICUL",88,0) ; SAMICASE merge George changes w/ rest, add white space, spell out "RTN","SAMICUL",89,0) ; M elements, add hdr comments to new subroutines, r/findReplace^%wf "RTN","SAMICUL",90,0) ; & replaceAll^%wf w/findReplace^%ts. "RTN","SAMICUL",91,0) ; "RTN","SAMICUL",92,0) ; 2018-03-11 ven/gpl 18.0-t4 9bd663ee "RTN","SAMICUL",93,0) ; SAMICAS2 vapals forms working. "RTN","SAMICUL",94,0) ; "RTN","SAMICUL",95,0) ; 2018-03-12 ven/gpl 18.0-t4 8c36c6a7 "RTN","SAMICUL",96,0) ; SAMICAS2 new form works now & charts on home page. "RTN","SAMICUL",97,0) ; "RTN","SAMICUL",98,0) ; 2018-03-14 ven/gpl 18.0-t4 9653650a "RTN","SAMICUL",99,0) ; SAMICAS2 revised casereview page link, fixed external url "RTN","SAMICUL",100,0) ; preservation. "RTN","SAMICUL",101,0) ; "RTN","SAMICUL",102,0) ; 2018-03-21 ven/gpl 18.0-t4 48868561 "RTN","SAMICUL",103,0) ; SAMICAS2 max date insertion, case review navigation changed to "RTN","SAMICUL",104,0) ; post, date order for CT Eval in case review. "RTN","SAMICUL",105,0) ; "RTN","SAMICUL",106,0) ; 2018-03-26 ven/gpl 18.0-t4 5fa4ee96 "RTN","SAMICUL",107,0) ; SAMICAS2 changes to support incomplete forms display & "RTN","SAMICUL",108,0) ; processing. "RTN","SAMICUL",109,0) ; "RTN","SAMICUL",110,0) ; 2018-03-27 ven/gpl 18.0-t4 cace9756 "RTN","SAMICUL",111,0) ; SAMICAS2 siforms are always complete. "RTN","SAMICUL",112,0) ; "RTN","SAMICUL",113,0) ; 2018-04-02 ven/gpl 18.0-t4 00da9146 "RTN","SAMICUL",114,0) ; SAMICAS2 added followup form. "RTN","SAMICUL",115,0) ; "RTN","SAMICUL",116,0) ; 2018-04-24 ven/gpl 18.0-t4 22e39d87 "RTN","SAMICUL",117,0) ; SAMICAS2 added pet & biopsy forms. "RTN","SAMICUL",118,0) ; "RTN","SAMICUL",119,0) ; 2018-05-01 ven/gpl 18.0-t4 f1751c43 "RTN","SAMICUL",120,0) ; SAMICAS2 fix problem with new forms: followup & pet. "RTN","SAMICUL",121,0) ; "RTN","SAMICUL",122,0) ; 2018-05-18 ven/lgc 18.0-t4 9eba8f8c "RTN","SAMICUL",123,0) ; SAMICAS2 conversion to new graph and simplified forms processing. "RTN","SAMICUL",124,0) ; "RTN","SAMICUL",125,0) ; 2018-05-21 ven/lgc 18.0-t4 0d7ed2f7 "RTN","SAMICUL",126,0) ; SAMICAS2 changes for new navigation html. "RTN","SAMICUL",127,0) ; "RTN","SAMICUL",128,0) ; 2018-06-14 ven/lgc 18.0-t4 d71f4fe4 "RTN","SAMICUL",129,0) ; SAMICAS2 changes to make the background form optional. "RTN","SAMICUL",130,0) ; "RTN","SAMICUL",131,0) ; 2018-06-20 ven/lgc 18.0-t4 bf03b07f "RTN","SAMICUL",132,0) ; SAMICAS2 corrections for new forms processing navigation. "RTN","SAMICUL",133,0) ; "RTN","SAMICUL",134,0) ; 2018-07-01 ven/lgc 18.0-t4 2e1541dc,8b0a4329 "RTN","SAMICUL",135,0) ; SAMICAS2 add intervention forms to case review page, 1st version "RTN","SAMICUL",136,0) ; of ct eval report. "RTN","SAMICUL",137,0) ; "RTN","SAMICUL",138,0) ; 2018-07-04 ven/lgc 18.0-t4 b28c1658 "RTN","SAMICUL",139,0) ; SAMICAS2 fix a typo. "RTN","SAMICUL",140,0) ; "RTN","SAMICUL",141,0) ; 2018-07-10 ven/lgc 18.0-t4 2e9662b4 "RTN","SAMICUL",142,0) ; SAMICAS2 repair SAMIHOM3 & redact report link. "RTN","SAMICUL",143,0) ; "RTN","SAMICUL",144,0) ; 2018-08-19 ven/lgc 18.0-t4 2ce0cab4 "RTN","SAMICUL",145,0) ; SAMICAS2 use ssn instead of last5 where available. "RTN","SAMICUL",146,0) ; "RTN","SAMICUL",147,0) ; 2018-08-20 ven/lgc 18.0-t4 955fd484 "RTN","SAMICUL",148,0) ; SAMICAS2 fix case review page cr lf issue. "RTN","SAMICUL",149,0) ; "RTN","SAMICUL",150,0) ; 2018-08-22 ven/gpl 18.0-t4 d67a2fe5 "RTN","SAMICUL",151,0) ; SAMICAS2 turn off ctreport. "RTN","SAMICUL",152,0) ; "RTN","SAMICUL",153,0) ; 2018-08-30 ven/lgc 18.0-t4 125f1c8b "RTN","SAMICUL",154,0) ; SAMICAS2 add type index to getItems to help find last previous "RTN","SAMICUL",155,0) ; form of a type. "RTN","SAMICUL",156,0) ; "RTN","SAMICUL",157,0) ; 2018-09-04 ven/lgc 18.0-t4 3e6e326f "RTN","SAMICUL",158,0) ; SAMICAS2 hide report link. "RTN","SAMICUL",159,0) ; "RTN","SAMICUL",160,0) ; 2018-10-14 ven/lgc 18.0-t4 f6e1229f "RTN","SAMICUL",161,0) ; SAMICAS2 turn on copy forward for cteval new forms. "RTN","SAMICUL",162,0) ; "RTN","SAMICUL",163,0) ; 2018-10-26 ven/lgc 18.0-t4 f19bf1ae "RTN","SAMICUL",164,0) ; SAMICAS2 ability to add multiple forms on same day. "RTN","SAMICUL",165,0) ; "RTN","SAMICUL",166,0) ; 2018-11-07 ven/gpl 18.0-t4 c76b2eac "RTN","SAMICUL",167,0) ; SAMICAS2 defend against unit test patient 1. "RTN","SAMICUL",168,0) ; "RTN","SAMICUL",169,0) ; 2018-11-13 ven/toad 18.0-t4 "RTN","SAMICUL",170,0) ; SAMICAS2 SAMIHOM2 > SAMIHOM3. "RTN","SAMICUL",171,0) ; "RTN","SAMICUL",172,0) ; 2018-11-14 ven/lgc 18.0-t4 6e9799ba "RTN","SAMICUL",173,0) ; SAMICUL fix graphstore forms. "RTN","SAMICUL",174,0) ; "RTN","SAMICUL",175,0) ; 2018-11-28 ven/lgc 18.0-t4 a9539464 "RTN","SAMICUL",176,0) ; SAMICAS2 work on sac compliance. "RTN","SAMICUL",177,0) ; "RTN","SAMICUL",178,0) ; 2018-12-11 ven/lgc 18.0-t4 3ceb74b5 "RTN","SAMICUL",179,0) ; SAMICAS2 update for sac compliance. "RTN","SAMICUL",180,0) ; "RTN","SAMICUL",181,0) ; 2018-12-19/20 ven/lgc 18.0-t4 7a5d3400,a14554c1 "RTN","SAMICUL",182,0) ; SAMICAS2 more sac compliance, r/^gpl w/^SAMIGPL. "RTN","SAMICUL",183,0) ; "RTN","SAMICUL",184,0) ; 2018-12-26 ven/lgc 18.0-t4 8dd6f34d,51eb1635 "RTN","SAMICUL",185,0) ; SAMICAS2 update for sac compliance, fix accidental reversions. "RTN","SAMICUL",186,0) ; "RTN","SAMICUL",187,0) ; 2019-01-10 ven/lgc 18.0-t4 2daba010 "RTN","SAMICUL",188,0) ; SAMICAS2 update for SAC compliance. "RTN","SAMICUL",189,0) ; "RTN","SAMICUL",190,0) ; 2019-01-22 ven/lgc 18.0-t4 53681219,5ddb29c5 "RTN","SAMICUL",191,0) ; SAMICAS2 add license info to each SAMI routine; edit for lower "RTN","SAMICUL",192,0) ; case initials. "RTN","SAMICUL",193,0) ; "RTN","SAMICUL",194,0) ; 2019-02-18 ven/lgc 18.0-t4 76874314 "RTN","SAMICUL",195,0) ; SAMICAS2,SAMICAS3 update recently edited routines. "RTN","SAMICUL",196,0) ; "RTN","SAMICUL",197,0) ; 2019-03-13 ven/lmry 18.0-t4 ef66ef16 "RTN","SAMICUL",198,0) ; SAMICAS2 spell out some elements missed earlier. "RTN","SAMICUL",199,0) ; "RTN","SAMICUL",200,0) ; 2019-03-14 ven/lmry 18.0-t4 038507e2 "RTN","SAMICUL",201,0) ; SAMICAS3 spell out some missed M elements, fix copy/paste errors "RTN","SAMICUL",202,0) ; in comments for MKFUFORM, MKBXFORM, & MKPTFORM. "RTN","SAMICUL",203,0) ; "RTN","SAMICUL",204,0) ; 2019-04-16 ven/lgc 18.0-t4 e54b76d1 "RTN","SAMICUL",205,0) ; SAMICAS2 update for SAMIFORM project. "RTN","SAMICUL",206,0) ; "RTN","SAMICUL",207,0) ; 2019-04-23 ven/gpl 18.0-t4 ce322911 "RTN","SAMICUL",208,0) ; SAMICAS2 add intake notes to case review page. "RTN","SAMICUL",209,0) ; "RTN","SAMICUL",210,0) ; 2019-06-18 ven/lgc 18.0-t4 91022482 "RTN","SAMICUL",211,0) ; SAMICAS3 switch fr/global ^SAMIGPL to/^SAMIUL. "RTN","SAMICUL",212,0) ; "RTN","SAMICUL",213,0) ; 2019-07-01 ven/gpl 18.0-t4 cc87cc44 "RTN","SAMICUL",214,0) ; SAMICAS3 prevent >1 bkgd form/patient. "RTN","SAMICUL",215,0) ; "RTN","SAMICUL",216,0) ; 2019-07-07 ven/gpl 18.0-t4 776f7451 "RTN","SAMICUL",217,0) ; SAMICAS3 resolving can't create bkgd form, branch messed up. "RTN","SAMICUL",218,0) ; "RTN","SAMICUL",219,0) ; 2019-08-01 ven/lgc 18.0-t4 d710f27d "RTN","SAMICUL",220,0) ; SAMICAS2 pull displayed facility code from Vista parameter. "RTN","SAMICUL",221,0) ; "RTN","SAMICUL",222,0) ; 2019-09-26 ven/gpl 18.0-t4 92b12324 vap-420 "RTN","SAMICUL",223,0) ; SAMICAS3 prefill form date & date of baseline ct on new followup "RTN","SAMICUL",224,0) ; form. "RTN","SAMICUL",225,0) ; "RTN","SAMICUL",226,0) ; 2019-10-01 par/ddn 18.0-t4 4caf1a98 vap-344 "RTN","SAMICUL",227,0) ; SAMICAS2 use proper capitalization of the word "veteran". "RTN","SAMICUL",228,0) ; "RTN","SAMICUL",229,0) ; 2020-01-11 ven/lgc 18.1 5651698a "RTN","SAMICUL",230,0) ; SAMICAS2,SAMICAS3 fix duplicate form overwriting. "RTN","SAMICUL",231,0) ; "RTN","SAMICUL",232,0) ; 2020-01-17 ven/lgc 18.1 8557207f "RTN","SAMICUL",233,0) ; SAMICAS2 followup note. "RTN","SAMICUL",234,0) ; "RTN","SAMICUL",235,0) ; 2020-01-25 ven/lgc 18.3 6a07a860,6a947567 "RTN","SAMICUL",236,0) ; SAMICAS3 nodule copy & fix to ru, fix subtle bug in nodule copy. "RTN","SAMICUL",237,0) ; "RTN","SAMICUL",238,0) ; 2020-04-11 ven/gpl 18.5 666f5b91,2f2c29c1 "RTN","SAMICUL",239,0) ; SAMICAS2 multi-tenancy. "RTN","SAMICUL",240,0) ; "RTN","SAMICUL",241,0) ; 2020-05-12 ven/gpl 18.5 ad11e0ea "RTN","SAMICUL",242,0) ; SAMICAS2 fix SITE on case review page. "RTN","SAMICUL",243,0) ; "RTN","SAMICUL",244,0) ; 2020-11-12 ven/gpl 18.9 cec1ccd6 "RTN","SAMICUL",245,0) ; SAMICAS2,SAMICAS3 ceform date refill upgrade. "RTN","SAMICUL",246,0) ; "RTN","SAMICUL",247,0) ; 2020-11-13 ven/gpl 18.9 dce3c568 "RTN","SAMICUL",248,0) ; SAMICAS3 prefill ceform prior scans text field. "RTN","SAMICUL",249,0) ; "RTN","SAMICUL",250,0) ; 2021-02-18 ven/gpl 18.9 af2a0b8a "RTN","SAMICUL",251,0) ; SAMICAS3 copy last previous CT nodules instead of last nodules in "RTN","SAMICUL",252,0) ; any form. "RTN","SAMICUL",253,0) ; "RTN","SAMICUL",254,0) ; 2021-02-21 ven/gpl 18.9 3fd704fb "RTN","SAMICUL",255,0) ; SAMICAS3 fix bug in prefill logic. "RTN","SAMICUL",256,0) ; "RTN","SAMICUL",257,0) ; 2021-03-02 ven/gpl 18.9 479dc041 "RTN","SAMICUL",258,0) ; SAMICAS2 return error msg if no CT Eval form exists when "RTN","SAMICUL",259,0) ; generating a FU note. "RTN","SAMICUL",260,0) ; "RTN","SAMICUL",261,0) ; 2021-03-10 ven/toad 18.9 a46a2cc1 "RTN","SAMICUL",262,0) ; SAMICUL update log, convert to new vistaver schema. "RTN","SAMICUL",263,0) ; SAMICAS2,SAMICAS3 bump date & patch list, update contents, lt "RTN","SAMICUL",264,0) ; refactor. "RTN","SAMICUL",265,0) ; "RTN","SAMICUL",266,0) ; 2021-03-17 ven/toad 18.9 62da30b "RTN","SAMICUL",267,0) ; SAMICAS2 fix xindex errors: in WSCASE add missing space between "RTN","SAMICUL",268,0) ; do & comment to prevent syntax error reported as block mismatch. "RTN","SAMICUL",269,0) ; SAMICAS3 remove extra spaces at ends of 3 lines. "RTN","SAMICUL",270,0) ; "RTN","SAMICUL",271,0) ; 2021-04-16 ven/gpl 18.11 ac82eec "RTN","SAMICUL",272,0) ; SAMICAS3 include baseline scan in prior scans field on prefill. "RTN","SAMICUL",273,0) ; "RTN","SAMICUL",274,0) ; 2021-05-14/19 ven/gpl 18.11 0cbee7b,a21b056,139c6a5,0a0cccc "RTN","SAMICUL",275,0) ; SAMICAS3 improved CT eval prefill of past scan dates, urgent "RTN","SAMICUL",276,0) ; fixes to CT Report & intervention & pet form prefill. "RTN","SAMICUL",277,0) ; "RTN","SAMICUL",278,0) ; 2021-05-20/21 ven/mcglk&toad 18.11 43a4557,424ea11,129e96b "RTN","SAMICUL",279,0) ; SAMICAS3 bump version & dates. "RTN","SAMICUL",280,0) ; "RTN","SAMICUL",281,0) ; 2021-05-24 ven/gpl 18.11 4aba1a9 "RTN","SAMICUL",282,0) ; SAMICAS3 in MKCEFORM,MKPTFORM,MKBXFORM pass key to "RTN","SAMICUL",283,0) ; CTCOPY^SAMICTC1 to modulate node-copy operation; critical fix to "RTN","SAMICUL",284,0) ; copy forward for is it new field for new ct eval forms. "RTN","SAMICUL",285,0) ; "RTN","SAMICUL",286,0) ; 2021-05-25 ven/toad 18.11 801d7c74 "RTN","SAMICUL",287,0) ; SAMICAS3 bump date; passim lt refactor. "RTN","SAMICUL",288,0) ; "RTN","SAMICUL",289,0) ; 2021-05-26/27 ven/gpl 18.11 6edc0610,73728821 "RTN","SAMICUL",290,0) ; SAMICAS3 in MKITFORM add new nodule-copy block to copy forward "RTN","SAMICUL",291,0) ; for intervention form; in LASTCMP,PRIORCMP init tdt to today to "RTN","SAMICUL",292,0) ; start before today, to fix last comp & prior scan field prefill in "RTN","SAMICUL",293,0) ; ct eval form. "RTN","SAMICUL",294,0) ; "RTN","SAMICUL",295,0) ; 2021-06-01 ven/toad 18.11 7dd9410c "RTN","SAMICUL",296,0) ; SAMICAS3 fold in gpl chgs fr 2021-05-26/27, annotate, adjust news "RTN","SAMICUL",297,0) ; in nodule copy blocks, bump date. "RTN","SAMICUL",298,0) ; "RTN","SAMICUL",299,0) ; 2021-06-29 ven/gpl 18.12 50d3998b,a5bbd37a "RTN","SAMICUL",300,0) ; SAMICAS3 in LASTCMP fix bug that excluded ct forms from today in "RTN","SAMICUL",301,0) ; date list, init tdt to today+1 to start today; text-box formatting "RTN","SAMICUL",302,0) ; for intake & followup notes, new text-processing utils; in MKFUFORM "RTN","SAMICUL",303,0) ; set basedt to $$BASELNDT or $$LASTCMP or now. "RTN","SAMICUL",304,0) ; "RTN","SAMICUL",305,0) ; 2021-06-30/07-06 ven/mcglk&toad&gpl 18.12 cbf7e46b,d8296fda, "RTN","SAMICUL",306,0) ; b248664b "RTN","SAMICUL",307,0) ; SAMICASE,2,3 bump version & dates. "RTN","SAMICUL",308,0) ; SAMICAS3 in MKFUFORM,LASTCMP update calls & called-by. "RTN","SAMICUL",309,0) ; SAMICASE,2,3 finish converting to ppi format, annotate; fix typos. "RTN","SAMICUL",310,0) ; "RTN","SAMICUL",311,0) ; 2021-08-01 ven/gpl 18.12 5bd7c627,50620b8b "RTN","SAMICUL",312,0) ; SAMICAS2 set intake form to incomplete on creation: in GSAMISTA "RTN","SAMICUL",313,0) ; add final line to conditionally set stat="incomplete". "RTN","SAMICUL",314,0) ; SAMICAS3 exclude current date from last compare field when prev ct "RTN","SAMICUL",315,0) ; report exists: in LASTCMP start w/before today; in PRIORCMP add "RTN","SAMICUL",316,0) ; line to handle retstr="". "RTN","SAMICUL",317,0) ; "RTN","SAMICUL",318,0) ; 2021-10-04/05 ven/gpl&lmry 18.14 ec3b6e5d,d4d1b115 "RTN","SAMICUL",319,0) ; SAMICAS2 updated date format, bumped date and version. "RTN","SAMICUL",320,0) ; "RTN","SAMICUL",321,0) ; 2021-10-26 ven/gpl 18.15 23e68f40 "RTN","SAMICUL",322,0) ; SAMICAS3 initialize last comparitive and prior scan fields to blank if "RTN","SAMICUL",323,0) ; there were none "RTN","SAMICUL",324,0) ; "RTN","SAMICUL",325,0) ;@contents "RTN","SAMICUL",326,0) ; SAMICASE case review "RTN","SAMICUL",327,0) ; SAMICAS2 case review continued "RTN","SAMICUL",328,0) ; SAMICAS3 case review continued "RTN","SAMICUL",329,0) ; SAMICUL case review log "RTN","SAMICUL",330,0) ; "RTN","SAMICUL",331,0) ; "RTN","SAMICUL",332,0) ; "RTN","SAMICUL",333,0) EOR ; end of routine SAMICUL "RTN","SAMIHOM4") 0^8^B942502406 "RTN","SAMIHOM4",1,0) SAMIHOM4 ;ven/gpl,arc - homepage web services ;2021-11-18t22:16z "RTN","SAMIHOM4",2,0) ;;18.0;SAMI;**1,4,5,6,9,12,15,16**;2020-01;Build 3 "RTN","SAMIHOM4",3,0) ;18-15 "RTN","SAMIHOM4",4,0) ; "RTN","SAMIHOM4",5,0) ; SAMIHOM4 contains web services & other subroutines for producing "RTN","SAMIHOM4",6,0) ; the ELCAP Home Page. "RTN","SAMIHOM4",7,0) ; "RTN","SAMIHOM4",8,0) quit ; no entry from top "RTN","SAMIHOM4",9,0) ; "RTN","SAMIHOM4",10,0) ; "RTN","SAMIHOM4",11,0) ; "RTN","SAMIHOM4",12,0) ;@section 0 primary development "RTN","SAMIHOM4",13,0) ; "RTN","SAMIHOM4",14,0) ; "RTN","SAMIHOM4",15,0) ; "RTN","SAMIHOM4",16,0) ;@license see routine SAMIUL "RTN","SAMIHOM4",17,0) ;@documentation see SAMIHUL "RTN","SAMIHOM4",18,0) ;@contents "RTN","SAMIHOM4",19,0) ; "RTN","SAMIHOM4",20,0) ; web service get vapals & related subroutines "RTN","SAMIHOM4",21,0) ; "RTN","SAMIHOM4",22,0) ; WSHOME code for wsi WSHOME^SAMIHOM3 "RTN","SAMIHOM4",23,0) ; get vapals (vapals-elcap homepage) "RTN","SAMIHOM4",24,0) ; DEVHOME code for wpi DEVHOME^SAMIHOM3 "RTN","SAMIHOM4",25,0) ; development home page "RTN","SAMIHOM4",26,0) ; GETHOME code for wpi GETHOME^SAMIHOM3 "RTN","SAMIHOM4",27,0) ; get homepage (not subsequent visit) "RTN","SAMIHOM4",28,0) ; "RTN","SAMIHOM4",29,0) ; web service post vapals & related subroutines "RTN","SAMIHOM4",30,0) ; "RTN","SAMIHOM4",31,0) ; WSVAPALS code for wsi WSVAPALS^SAMIHOM3 "RTN","SAMIHOM4",32,0) ; post vapals (main gateway) "RTN","SAMIHOM4",33,0) ; "RTN","SAMIHOM4",34,0) ; other "RTN","SAMIHOM4",35,0) ; "RTN","SAMIHOM4",36,0) ; REG manual registration "RTN","SAMIHOM4",37,0) ; MKPTLK creates patient-lookup record "RTN","SAMIHOM4",38,0) ; UPDTFRMS update demographics in all forms for patient "RTN","SAMIHOM4",39,0) ; MERGE merge participant records "RTN","SAMIHOM4",40,0) ; ADDUNMAT adds unmatched report web service to system "RTN","SAMIHOM4",41,0) ; DELUNMAT deletes unmatched web service "RTN","SAMIHOM4",42,0) ; WSUNMAT navigates to unmatched report "RTN","SAMIHOM4",43,0) ; $$DUPSSN true if duplicate ssn "RTN","SAMIHOM4",44,0) ; $$DUPICN true if duplicate icn "RTN","SAMIHOM4",45,0) ; $$BADICN true if ICN checkdigits are wrong "RTN","SAMIHOM4",46,0) ; SAVE save patient-lookup record after edit "RTN","SAMIHOM4",47,0) ; $$REMATCH possible match ien "RTN","SAMIHOM4",48,0) ; SETINFO set information message text "RTN","SAMIHOM4",49,0) ; SETWARN set warning message text "RTN","SAMIHOM4",50,0) ; RTNERR redisplay page w/error message "RTN","SAMIHOM4",51,0) ; RTNPAGE display page "RTN","SAMIHOM4",52,0) ; REINDXPL reindex patient lookup "RTN","SAMIHOM4",53,0) ; INDXPTLK generate index entries in patient-lookup graph "RTN","SAMIHOM4",54,0) ; UNINDXPT remove index entries from patient-lookup graph "RTN","SAMIHOM4",55,0) ; $$UCASE uppercase "RTN","SAMIHOM4",56,0) ; WSNEWCAS code for wr newcase (creates new case) "RTN","SAMIHOM4",57,0) ; "RTN","SAMIHOM4",58,0) ;@to-do "RTN","SAMIHOM4",59,0) ; Add label comments "RTN","SAMIHOM4",60,0) ; "RTN","SAMIHOM4",61,0) ; "RTN","SAMIHOM4",62,0) ; "RTN","SAMIHOM4",63,0) ;@section 1 web service get vapals & related subroutines "RTN","SAMIHOM4",64,0) ; "RTN","SAMIHOM4",65,0) ; "RTN","SAMIHOM4",66,0) ; "RTN","SAMIHOM4",67,0) ;@wsi-code WSHOME^SAMIHOM3 "RTN","SAMIHOM4",68,0) WSHOME ; get vapals (vapals-elcap homepage) "RTN","SAMIHOM4",69,0) ; "RTN","SAMIHOM4",70,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMIHOM4",71,0) ; "RTN","SAMIHOM4",72,0) ;ven/gpl;wsi;procedure;clean;silent;sac;tests "RTN","SAMIHOM4",73,0) ;@signature "RTN","SAMIHOM4",74,0) ; do WSHOME^SAMIHOM3(SAMIRTN,SAMIFILTER) "RTN","SAMIHOM4",75,0) ;@branches-from "RTN","SAMIHOM4",76,0) ; WSHOME^SAMIHOM3 "RTN","SAMIHOM4",77,0) ;@wsi-called-by "RTN","SAMIHOM4",78,0) ; web service get vapals "RTN","SAMIHOM4",79,0) ; WSVAPALS^SAMIHOM4 "RTN","SAMIHOM4",80,0) ; LOGIN^SAMISITE "RTN","SAMIHOM4",81,0) ;@called-by none "RTN","SAMIHOM4",82,0) ;@calls "RTN","SAMIHOM4",83,0) ; DEVHOME^SAMIHOM3 "RTN","SAMIHOM4",84,0) ; WSVAPALS^SAMIHOM3 "RTN","SAMIHOM4",85,0) ; GETHOME^SAMIHOM3 "RTN","SAMIHOM4",86,0) ;@input "RTN","SAMIHOM4",87,0) ; SAMIFILTER (no parameters required) "RTN","SAMIHOM4",88,0) ;@output "RTN","SAMIHOM4",89,0) ; .SAMIRTN "RTN","SAMIHOM4",90,0) ;@examples [tbd] "RTN","SAMIHOM4",91,0) ;@tests "RTN","SAMIHOM4",92,0) ; UTWSHM^SAMIUTH3 "RTN","SAMIHOM4",93,0) ; UTWSHM1^SAMIUTH3 "RTN","SAMIHOM4",94,0) ; UTWSHM2^SAMIUTH3 "RTN","SAMIHOM4",95,0) ; "RTN","SAMIHOM4",96,0) ; "RTN","SAMIHOM4",97,0) ;@stanza 2 route to appropriate homepage or bypass to other webpage "RTN","SAMIHOM4",98,0) ; "RTN","SAMIHOM4",99,0) ; present development homepage for testing "RTN","SAMIHOM4",100,0) if $get(SAMIFILTER("test"))=1 do quit "RTN","SAMIHOM4",101,0) . do DEVHOME^SAMIHOM3(.SAMIRTN,.SAMIFILTER) "RTN","SAMIHOM4",102,0) . quit "RTN","SAMIHOM4",103,0) ; "RTN","SAMIHOM4",104,0) ; bypass for get access to pages "RTN","SAMIHOM4",105,0) if $g(SAMIFILTER("samiroute"))'="" do quit "RTN","SAMIHOM4",106,0) . new SAMIBODY set SAMIBODY(1)="" "RTN","SAMIHOM4",107,0) . do WSVAPALS^SAMIHOM3(.SAMIFILTER,.SAMIBODY,.SAMIRTN) "RTN","SAMIHOM4",108,0) . quit "RTN","SAMIHOM4",109,0) ; "RTN","SAMIHOM4",110,0) ; V4W/DLW - bypass for get access from CPRS "RTN","SAMIHOM4",111,0) if $get(SAMIFILTER("dfn"))'="" do quit "RTN","SAMIHOM4",112,0) . new dfn set dfn=$get(SAMIFILTER("dfn")) "RTN","SAMIHOM4",113,0) . new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",114,0) . new studyid set studyid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIHOM4",115,0) . new SAMIBODY "RTN","SAMIHOM4",116,0) . if studyid'="" do "RTN","SAMIHOM4",117,0) . . set SAMIBODY(1)="samiroute=casereview&dfn="_dfn_"&studyid="_studyid "RTN","SAMIHOM4",118,0) . . quit "RTN","SAMIHOM4",119,0) . else do "RTN","SAMIHOM4",120,0) . . set SAMIBODY(1)="samiroute=lookup&dfn="_dfn_"&studyid="_studyid "RTN","SAMIHOM4",121,0) . . quit "RTN","SAMIHOM4",122,0) . do WSVAPALS^SAMIHOM3(.SAMIFILTER,.SAMIBODY,.SAMIRTN) "RTN","SAMIHOM4",123,0) . quit "RTN","SAMIHOM4",124,0) ; "RTN","SAMIHOM4",125,0) ; default to VAPALS homepage "RTN","SAMIHOM4",126,0) do GETHOME^SAMIHOM3(.SAMIRTN,.SAMIFILTER) "RTN","SAMIHOM4",127,0) ; "RTN","SAMIHOM4",128,0) ; "RTN","SAMIHOM4",129,0) ;@stanza 3 termination "RTN","SAMIHOM4",130,0) ; "RTN","SAMIHOM4",131,0) quit ; end of wsi WSHOME^SAMIHOM3 "RTN","SAMIHOM4",132,0) ; "RTN","SAMIHOM4",133,0) ; "RTN","SAMIHOM4",134,0) ; "RTN","SAMIHOM4",135,0) ;@wpi-code DEVHOME^SAMIHOM3 "RTN","SAMIHOM4",136,0) DEVHOME ; development home page "RTN","SAMIHOM4",137,0) ; "RTN","SAMIHOM4",138,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMIHOM4",139,0) ; "RTN","SAMIHOM4",140,0) ;ven/gpl;wpi;procedure;clean;silent;sac;tests "RTN","SAMIHOM4",141,0) ;@signature "RTN","SAMIHOM4",142,0) ; do DEVHOME^SAMIHOM3(SAMIRTN,SAMIFILTER) "RTN","SAMIHOM4",143,0) ;@branches-from "RTN","SAMIHOM4",144,0) ; DEVHOME^SAMIHOM3 "RTN","SAMIHOM4",145,0) ;@wpi-called-by "RTN","SAMIHOM4",146,0) ; wsi WSHOME^SAMIHOM3 [web service get vapals] "RTN","SAMIHOM4",147,0) ;@called-by none "RTN","SAMIHOM4",148,0) ;@calls "RTN","SAMIHOM4",149,0) ; htmltb2^%yottaweb "RTN","SAMIHOM4",150,0) ; PATLIST^SAMIHOM3 "RTN","SAMIHOM4",151,0) ; genhtml^%yottautl "RTN","SAMIHOM4",152,0) ; addary^%yottautl "RTN","SAMIHOM4",153,0) ;@input "RTN","SAMIHOM4",154,0) ; SAMIFILTER = "RTN","SAMIHOM4",155,0) ;@output "RTN","SAMIHOM4",156,0) ;.SAMIRTN = "RTN","SAMIHOM4",157,0) ;@examples [tbd] "RTN","SAMIHOM4",158,0) ;@tests [tbd] "RTN","SAMIHOM4",159,0) ; "RTN","SAMIHOM4",160,0) ; "RTN","SAMIHOM4",161,0) ;@stanza 2 present development homepage "RTN","SAMIHOM4",162,0) ; "RTN","SAMIHOM4",163,0) new gtop,gbot "RTN","SAMIHOM4",164,0) do htmltb2^%yottaweb(.gtop,.gbot,"SAMI Test Patients") "RTN","SAMIHOM4",165,0) ; "RTN","SAMIHOM4",166,0) new html,ary,hpat "RTN","SAMIHOM4",167,0) do PATLIST^SAMIHOM3("hpat") "RTN","SAMIHOM4",168,0) quit:'$data(hpat) "RTN","SAMIHOM4",169,0) ; "RTN","SAMIHOM4",170,0) set ary("title")="SAMI Test Patients on this system" "RTN","SAMIHOM4",171,0) set ary("header",1)="StudyId" "RTN","SAMIHOM4",172,0) set ary("header",2)="Name" "RTN","SAMIHOM4",173,0) ; "RTN","SAMIHOM4",174,0) new cnt set cnt=0 "RTN","SAMIHOM4",175,0) new zi set zi="" "RTN","SAMIHOM4",176,0) for do quit:zi="" "RTN","SAMIHOM4",177,0) . set zi=$order(hpat(zi)) "RTN","SAMIHOM4",178,0) . quit:zi="" "RTN","SAMIHOM4",179,0) . ; "RTN","SAMIHOM4",180,0) . set cnt=cnt+1 "RTN","SAMIHOM4",181,0) . new url set url="<a href=""/cform.cgi?studyId="_zi_""">"_zi_"</a>" "RTN","SAMIHOM4",182,0) . set ary(cnt,1)=url "RTN","SAMIHOM4",183,0) . set ary(cnt,2)="" "RTN","SAMIHOM4",184,0) . quit "RTN","SAMIHOM4",185,0) ; "RTN","SAMIHOM4",186,0) do genhtml^%yottautl("html","ary") "RTN","SAMIHOM4",187,0) ; "RTN","SAMIHOM4",188,0) do addary^%yottautl("SAMIRTN","gtop") "RTN","SAMIHOM4",189,0) do addary^%yottautl("SAMIRTN","html") "RTN","SAMIHOM4",190,0) set SAMIRTN($order(SAMIRTN(""),-1)+1)=gbot "RTN","SAMIHOM4",191,0) kill SAMIRTN(0) "RTN","SAMIHOM4",192,0) ; "RTN","SAMIHOM4",193,0) set HTTPRSP("mime")="text/html" "RTN","SAMIHOM4",194,0) ; "RTN","SAMIHOM4",195,0) ; "RTN","SAMIHOM4",196,0) ;@stanza 3 termination "RTN","SAMIHOM4",197,0) ; "RTN","SAMIHOM4",198,0) quit ; end of wpi DEVHOME^SAMIHOM3 "RTN","SAMIHOM4",199,0) ; "RTN","SAMIHOM4",200,0) ; "RTN","SAMIHOM4",201,0) ; "RTN","SAMIHOM4",202,0) ;@wpi-code GETHOME^SAMIHOM3 "RTN","SAMIHOM4",203,0) GETHOME ; get homepage (not subsequent visit) "RTN","SAMIHOM4",204,0) ; "RTN","SAMIHOM4",205,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMIHOM4",206,0) ; "RTN","SAMIHOM4",207,0) ;ven/gpl;wpi;procedure;clean;silent;sac;tests "RTN","SAMIHOM4",208,0) ;@signature "RTN","SAMIHOM4",209,0) ; do GETHOME^SAMIHOM3(SAMIRTN,SAMIFILTER) "RTN","SAMIHOM4",210,0) ;@branches-from "RTN","SAMIHOM4",211,0) ; GETHOME^SAMIHOM3 "RTN","SAMIHOM4",212,0) ;@wpi-called-by "RTN","SAMIHOM4",213,0) ; WSHOME "RTN","SAMIHOM4",214,0) ; WSVAPALS "RTN","SAMIHOM4",215,0) ; SAVE "RTN","SAMIHOM4",216,0) ; WSNEWCAS [commented out] "RTN","SAMIHOM4",217,0) ; WSNFPOST^SAMICAS3 "RTN","SAMIHOM4",218,0) ; WSLOOKUP^SAMISRC2 "RTN","SAMIHOM4",219,0) ; WSREPORT^SAMIUR "RTN","SAMIHOM4",220,0) ; WSREPORT^SAMIUR1 "RTN","SAMIHOM4",221,0) ;@called-by none "RTN","SAMIHOM4",222,0) ;@calls "RTN","SAMIHOM4",223,0) ; $$FINDSITE^SAMISITE "RTN","SAMIHOM4",224,0) ; GETTMPL^SAMICASE "RTN","SAMIHOM4",225,0) ; MERGEHTM^%wf "RTN","SAMIHOM4",226,0) ; ADDCRLF^VPRJRUT "RTN","SAMIHOM4",227,0) ;@input "RTN","SAMIHOM4",228,0) ; SAMIFILTER "RTN","SAMIHOM4",229,0) ;@output "RTN","SAMIHOM4",230,0) ; .SAMIRTN "RTN","SAMIHOM4",231,0) ;@examples [tbd] "RTN","SAMIHOM4",232,0) ;@tests "RTN","SAMIHOM4",233,0) ; UTGETHM^SAMIUTH3 "RTN","SAMIHOM4",234,0) ; UTSCAN4^SAMIUTH3 "RTN","SAMIHOM4",235,0) ; "RTN","SAMIHOM4",236,0) ; "RTN","SAMIHOM4",237,0) ;@stanza 2 get template for homepage "RTN","SAMIHOM4",238,0) ; "RTN","SAMIHOM4",239,0) ; Processing for multi-tenancy "RTN","SAMIHOM4",240,0) ; "RTN","SAMIHOM4",241,0) i $g(HTTPREQ("method"))="GET" d ; "RTN","SAMIHOM4",242,0) . s SAMIFILTER("siteid")="" "RTN","SAMIHOM4",243,0) ; "RTN","SAMIHOM4",244,0) if $get(SAMIFILTER("siteid"))="" if '$$FINDSITE^SAMISITE(.SAMIRTN,.SAMIFILTER) quit 0 "RTN","SAMIHOM4",245,0) new SAMISITE,SAMITITL "RTN","SAMIHOM4",246,0) set SAMISITE=$get(SAMIFILTER("siteid")) "RTN","SAMIHOM4",247,0) set SAMITITL=$get(SAMIFILTER("sitetitle")) "RTN","SAMIHOM4",248,0) ; "RTN","SAMIHOM4",249,0) new VASITE set VASITE=$$GET1PARM^SAMIPARM("veteransAffairsSite",SAMISITE) "RTN","SAMIHOM4",250,0) set SAMIFILTER("veteransAffairsSite")=VASITE "RTN","SAMIHOM4",251,0) ; "RTN","SAMIHOM4",252,0) new temp,tout,form "RTN","SAMIHOM4",253,0) set form="vapals:home" "RTN","SAMIHOM4",254,0) do GETTMPL^SAMICASE("temp",form) "RTN","SAMIHOM4",255,0) quit:'$data(temp) "RTN","SAMIHOM4",256,0) ; "RTN","SAMIHOM4",257,0) ; "RTN","SAMIHOM4",258,0) ;@stanza 3 process homepage template "RTN","SAMIHOM4",259,0) ; "RTN","SAMIHOM4",260,0) new err "RTN","SAMIHOM4",261,0) do MERGEHTM^%wf(.temp,.SAMIFILTER,.err) "RTN","SAMIHOM4",262,0) ; "RTN","SAMIHOM4",263,0) do ADDCRLF^VPRJRUT(.temp) "RTN","SAMIHOM4",264,0) merge SAMIRTN=temp "RTN","SAMIHOM4",265,0) ; "RTN","SAMIHOM4",266,0) ; "RTN","SAMIHOM4",267,0) ;@stanza 4 termination "RTN","SAMIHOM4",268,0) ; "RTN","SAMIHOM4",269,0) quit ; end of wpi GETHOME^SAMIHOM3 "RTN","SAMIHOM4",270,0) ; "RTN","SAMIHOM4",271,0) ; "RTN","SAMIHOM4",272,0) ; "RTN","SAMIHOM4",273,0) ; below is redacted from GETHOME^SAMIHOM3 "RTN","SAMIHOM4",274,0) ; "RTN","SAMIHOM4",275,0) ;@old-calls "RTN","SAMIHOM4",276,0) ; FIXHREF^SAMIFORM "RTN","SAMIHOM4",277,0) ; FIXSRC^SAMIFORM "RTN","SAMIHOM4",278,0) ; $$GET^XPAR "RTN","SAMIHOM4",279,0) ; findReplace^%ts "RTN","SAMIHOM4",280,0) ; ADDCRLF^VPRJRUT "RTN","SAMIHOM4",281,0) ; "RTN","SAMIHOM4",282,0) new cnt set cnt=0 "RTN","SAMIHOM4",283,0) new zi set zi=0 "RTN","SAMIHOM4",284,0) for set zi=$order(temp(zi)) quit:+zi=0 do ; "RTN","SAMIHOM4",285,0) . ; "RTN","SAMIHOM4",286,0) . n ln s ln=temp(zi) "RTN","SAMIHOM4",287,0) . n touched s touched=0 "RTN","SAMIHOM4",288,0) . ; "RTN","SAMIHOM4",289,0) . i ln["href" i 'touched d ; "RTN","SAMIHOM4",290,0) . . d FIXHREF^SAMIFORM(.ln) "RTN","SAMIHOM4",291,0) . . s temp(zi)=ln "RTN","SAMIHOM4",292,0) . ; "RTN","SAMIHOM4",293,0) . i ln["src" d ; "RTN","SAMIHOM4",294,0) . . d FIXSRC^SAMIFORM(.ln) "RTN","SAMIHOM4",295,0) . . s temp(zi)=ln "RTN","SAMIHOM4",296,0) . ; "RTN","SAMIHOM4",297,0) . i ln["id" i ln["studyIdMenu" d ; "RTN","SAMIHOM4",298,0) . . s zi=zi+4 "RTN","SAMIHOM4",299,0) . ; "RTN","SAMIHOM4",300,0) . if ln["@@MANUALREGISTRATION@@" do ; turn off manual registration "RTN","SAMIHOM4",301,0) . . n setman,setparm "RTN","SAMIHOM4",302,0) . . s setman="true" "RTN","SAMIHOM4",303,0) . . s setparm=$$GET^XPAR("SYS","SAMI ALLOW MANUAL ENTRY",,"Q") "RTN","SAMIHOM4",304,0) . . i setparm=0 s setman="false" "RTN","SAMIHOM4",305,0) . . do findReplace^%ts(.ln,"@@MANUALREGISTRATION@@",setman) "RTN","SAMIHOM4",306,0) . . s temp(zi)=ln "RTN","SAMIHOM4",307,0) . . quit "RTN","SAMIHOM4",308,0) . set cnt=cnt+1 "RTN","SAMIHOM4",309,0) . set tout(cnt)=temp(zi) "RTN","SAMIHOM4",310,0) . quit "RTN","SAMIHOM4",311,0) ; "RTN","SAMIHOM4",312,0) ; "RTN","SAMIHOM4",313,0) ;@old-stanza 4 add cr/lf & save to return array "RTN","SAMIHOM4",314,0) ; "RTN","SAMIHOM4",315,0) do ADDCRLF^VPRJRUT(.tout) "RTN","SAMIHOM4",316,0) merge SAMIRTN=tout "RTN","SAMIHOM4",317,0) ; "RTN","SAMIHOM4",318,0) ; "RTN","SAMIHOM4",319,0) ;@old-stanza 5 termination "RTN","SAMIHOM4",320,0) ; "RTN","SAMIHOM4",321,0) quit ; old end of wpi GETHOME^SAMIHOM3 "RTN","SAMIHOM4",322,0) ; "RTN","SAMIHOM4",323,0) ; "RTN","SAMIHOM4",324,0) ; "RTN","SAMIHOM4",325,0) ;@section 2 web service post vapals & related subroutines "RTN","SAMIHOM4",326,0) ; "RTN","SAMIHOM4",327,0) ; "RTN","SAMIHOM4",328,0) ; "RTN","SAMIHOM4",329,0) ;@wsi-code WSVAPALS^SAMIHOM3 "RTN","SAMIHOM4",330,0) WSVAPALS ; post vapals (main gateway) "RTN","SAMIHOM4",331,0) ; "RTN","SAMIHOM4",332,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMIHOM4",333,0) ; "RTN","SAMIHOM4",334,0) ;ven/gpl;wsi;procedure;clean;silent;sac;tests "RTN","SAMIHOM4",335,0) ;@signature "RTN","SAMIHOM4",336,0) ; do WSVAPALS^SAMIHOM3(SAMIARG,SAMIBODY,SAMIRESULT) "RTN","SAMIHOM4",337,0) ;@branches-from "RTN","SAMIHOM4",338,0) ; WSVAPALS^SAMIHOM3 "RTN","SAMIHOM4",339,0) ;@wsi-called-by "RTN","SAMIHOM4",340,0) ;@called-by "RTN","SAMIHOM4",341,0) ;@calls "RTN","SAMIHOM4",342,0) ;@input [tbd] "RTN","SAMIHOM4",343,0) ;@output [tbd] "RTN","SAMIHOM4",344,0) ;@examples [tbd] "RTN","SAMIHOM4",345,0) ;@tests [tbd] "RTN","SAMIHOM4",346,0) ; "RTN","SAMIHOM4",347,0) ; all calls come through this gateway "RTN","SAMIHOM4",348,0) ; "RTN","SAMIHOM4",349,0) k ^SAMIUL("vapals") "RTN","SAMIHOM4",350,0) m ^SAMIUL("vapals")=SAMIARG "RTN","SAMIHOM4",351,0) m ^SAMIUL("vapals","BODY")=SAMIBODY "RTN","SAMIHOM4",352,0) ; "RTN","SAMIHOM4",353,0) new vars,SAMIBDY "RTN","SAMIHOM4",354,0) set SAMIBDY=$get(SAMIBODY(1)) "RTN","SAMIHOM4",355,0) do parseBody^%wf("vars",.SAMIBDY) "RTN","SAMIHOM4",356,0) m vars=SAMIARG "RTN","SAMIHOM4",357,0) i $g(vars("siteid"))'="" d ; "RTN","SAMIHOM4",358,0) . i $g(vars("site"))'=$g(vars("siteid")) s vars("site")=$g(vars("siteid")) "RTN","SAMIHOM4",359,0) i $g(vars("site"))="SYS" s vars("site")="" "RTN","SAMIHOM4",360,0) i $g(HTTPREQ("method"))="GET" d ; "RTN","SAMIHOM4",361,0) . s vars("site")="" "RTN","SAMIHOM4",362,0) m SAMIARG=vars "RTN","SAMIHOM4",363,0) m SAMIARG=SAMIBODY "RTN","SAMIHOM4",364,0) ;D ^ZTER "RTN","SAMIHOM4",365,0) ; "RTN","SAMIHOM4",366,0) ; Processing for multi-tenancy "RTN","SAMIHOM4",367,0) ; "RTN","SAMIHOM4",368,0) if '$d(vars("siteid")) d ; "RTN","SAMIHOM4",369,0) . if $g(vars("studyid"))="" q "RTN","SAMIHOM4",370,0) . n sym s sym=$e(vars("studyid"),1,3) ; first 3 chars in studyid "RTN","SAMIHOM4",371,0) . i $$SITENM2^SAMISITE(sym)=-1 q "RTN","SAMIHOM4",372,0) . s vars("siteid")=sym "RTN","SAMIHOM4",373,0) . s vars("site")=sym "RTN","SAMIHOM4",374,0) ; "RTN","SAMIHOM4",375,0) if $G(vars("site"))'="" d ; "RTN","SAMIHOM4",376,0) . n siteid s siteid=vars("site") "RTN","SAMIHOM4",377,0) . s SAMIARG("siteid")=siteid "RTN","SAMIHOM4",378,0) . s SAMIARG("sitetitle")=$$SITENM2^SAMISITE(siteid)_" - "_siteid "RTN","SAMIHOM4",379,0) k ^gpl("siteselect") "RTN","SAMIHOM4",380,0) m ^gpl("siteselect")=SAMIARG "RTN","SAMIHOM4",381,0) m ^gpl("siteselect","vars")=vars "RTN","SAMIHOM4",382,0) if $G(SAMIARG("siteid"))="" if '$$FINDSITE^SAMISITE(.SAMIRESULT,.SAMIARG) Q 0 "RTN","SAMIHOM4",383,0) new SAMISITE,SAMITITL "RTN","SAMIHOM4",384,0) s SAMISITE=$G(SAMIARG("siteid")) "RTN","SAMIHOM4",385,0) i $G(SAMIARG("sitetitle"))="" d ; "RTN","SAMIHOM4",386,0) . s SAMIARG("sitetitle")=$$SITENM2^SAMISITE(SAMISITE)_" - "_SAMISITE "RTN","SAMIHOM4",387,0) s SAMITITL=$G(SAMIARG("sitetitle")) "RTN","SAMIHOM4",388,0) m vars=SAMIARG "RTN","SAMIHOM4",389,0) ; "RTN","SAMIHOM4",390,0) k ^SAMIUL("vapals","vars") "RTN","SAMIHOM4",391,0) merge ^SAMIUL("vapals","vars")=vars "RTN","SAMIHOM4",392,0) merge ^SAMIUL("vapals","vars")=SAMIBODY "RTN","SAMIHOM4",393,0) ; "RTN","SAMIHOM4",394,0) n route s route=$g(vars("samiroute")) "RTN","SAMIHOM4",395,0) ;i route="" d GETHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) ; on error go home "RTN","SAMIHOM4",396,0) i route="" d q 0 "RTN","SAMIHOM4",397,0) . n vals "RTN","SAMIHOM4",398,0) . s vals("siteid")="" "RTN","SAMIHOM4",399,0) . s vals("sitetitle")="Unknown Site" "RTN","SAMIHOM4",400,0) . s vals("errorMessage")="" "RTN","SAMIHOM4",401,0) . d RTNERR^SAMIHOM4(.SAMIRETURN,"vapals:login",.vals) "RTN","SAMIHOM4",402,0) ; "RTN","SAMIHOM4",403,0) i route="lookup" d q 0 "RTN","SAMIHOM4",404,0) . m SAMIARG=vars "RTN","SAMIHOM4",405,0) . d WSLOOKUP^SAMISRC2(.SAMIARG,.SAMIBODY,.SAMIRESULT) "RTN","SAMIHOM4",406,0) ; "RTN","SAMIHOM4",407,0) i route="login" d q 0 "RTN","SAMIHOM4",408,0) . m SAMIARG=vars "RTN","SAMIHOM4",409,0) . d LOGIN^SAMISITE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",410,0) ; "RTN","SAMIHOM4",411,0) i route="home" d q 0 "RTN","SAMIHOM4",412,0) . k ^gpl("home") "RTN","SAMIHOM4",413,0) . m ^gpl("home")=SAMIARG "RTN","SAMIHOM4",414,0) . s SAMIARG("samiroute")="" "RTN","SAMIHOM4",415,0) . d WSHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",416,0) ; "RTN","SAMIHOM4",417,0) i route="logout" d q 0 "RTN","SAMIHOM4",418,0) . ;s SAMIARG("samiroute")="home" "RTN","SAMIHOM4",419,0) . ;do WSVAPALS^SAMIHOM3(.SAMIFILTER,.SAMIARG,.SAMIRESULT) "RTN","SAMIHOM4",420,0) . ;Q "RTN","SAMIHOM4",421,0) . s SAMIARG("sitetitle")="Unknown Site" "RTN","SAMIHOM4",422,0) . s SAMIARG("siteid")="" "RTN","SAMIHOM4",423,0) . s SAMIARG("errorMessage")="" "RTN","SAMIHOM4",424,0) . d RTNERR^SAMIHOM4(.SAMIRESULT,"vapals:login",.SAMIARG) "RTN","SAMIHOM4",425,0) ; "RTN","SAMIHOM4",426,0) i route="newcase" d q 0 "RTN","SAMIHOM4",427,0) . m SAMIARG=vars "RTN","SAMIHOM4",428,0) . d WSNEWCAS^SAMIHOM3(.SAMIARG,.SAMIBODY,.SAMIRESULT) "RTN","SAMIHOM4",429,0) ; "RTN","SAMIHOM4",430,0) i route="casereview" d q 0 "RTN","SAMIHOM4",431,0) . m SAMIARG=vars "RTN","SAMIHOM4",432,0) . d WSCASE^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",433,0) ; "RTN","SAMIHOM4",434,0) i route="nuform" d q 0 "RTN","SAMIHOM4",435,0) . m SAMIARG=vars "RTN","SAMIHOM4",436,0) . d WSNUFORM^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",437,0) ; "RTN","SAMIHOM4",438,0) i route="addform" d q 0 "RTN","SAMIHOM4",439,0) . m SAMIARG=vars "RTN","SAMIHOM4",440,0) . d WSNFPOST^SAMICASE(.SAMIARG,.SAMIBODY,.SAMIRESULT) "RTN","SAMIHOM4",441,0) ; "RTN","SAMIHOM4",442,0) i route="form" d q 0 "RTN","SAMIHOM4",443,0) . m SAMIARG=vars "RTN","SAMIHOM4",444,0) . d wsGetForm^%wf(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",445,0) ; "RTN","SAMIHOM4",446,0) i route="postform" d q 0 "RTN","SAMIHOM4",447,0) . m SAMIARG=vars "RTN","SAMIHOM4",448,0) . d wsPostForm^%wf(.SAMIARG,.SAMIBODY,.SAMIRESULT) "RTN","SAMIHOM4",449,0) . i $g(SAMIARG("form"))["siform" d ; "RTN","SAMIHOM4",450,0) . . n notr s notr=0 ; note return 0 if failure, 1 or greater if success "RTN","SAMIHOM4",451,0) . . ; returns the ien of the note that was created and should be sent "RTN","SAMIHOM4",452,0) . . s notr=$$NOTE^SAMINOT1(.SAMIARG) "RTN","SAMIHOM4",453,0) . . if +notr>0 d ; "RTN","SAMIHOM4",454,0) . . . n SAMIFILTER "RTN","SAMIHOM4",455,0) . . . s SAMIFILTER("sid")=$G(SAMIARG("studyid")) "RTN","SAMIHOM4",456,0) . . . s SAMIFILTER("key")=$g(SAMIARG("form")) ; "RTN","SAMIHOM4",457,0) . . . n tiuien "RTN","SAMIHOM4",458,0) . . . s tiuien=+notr "RTN","SAMIHOM4",459,0) . . . s SAMIFILTER("notenmbr")=tiuien "RTN","SAMIHOM4",460,0) . . . n sendrslt "RTN","SAMIHOM4",461,0) . . . ;s sendrslt="1^MSG9239010" "RTN","SAMIHOM4",462,0) . . . s sendrslt=$$EN^SAMIORU(.SAMIFILTER) ; send the note to VistA "RTN","SAMIHOM4",463,0) . . . i +sendrslt>0 d ; success "RTN","SAMIHOM4",464,0) . . . . n rtnid s rtnid=$p(sendrslt,"^",2) ; return id from HL7 "RTN","SAMIHOM4",465,0) . . . . ; post the id to the graph here "RTN","SAMIHOM4",466,0) . . . . n sid s sid=$G(SAMIARG("studyid")) "RTN","SAMIHOM4",467,0) . . . . n form s form=$G(SAMIARG("form")) "RTN","SAMIHOM4",468,0) . . . . n nien s nien=$$NTIEN^SAMINOT1(sid,form) ; latest note ien "RTN","SAMIHOM4",469,0) . . . . n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",470,0) . . . . s @root@("graph",sid,form,"notes",nien,"hl7id")=rtnid "RTN","SAMIHOM4",471,0) . . . . s SAMIARG("errorMessage")="Note successfully sent to VistA ID: "_rtnid "RTN","SAMIHOM4",472,0) . . . else d ; "RTN","SAMIHOM4",473,0) . . . . n rtnmsg s rtnmsg=$p(sendrslt,"^",2) "RTN","SAMIHOM4",474,0) . . . . s SAMIARG("errorMessage")=rtnmsg "RTN","SAMIHOM4",475,0) . . . d WSCASE^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",476,0) . i $g(SAMIARG("form"))["fuform" d ; "RTN","SAMIHOM4",477,0) . . n notr s notr=0 ; note return 0 if failure, 1 or greater if success "RTN","SAMIHOM4",478,0) . . ; returns the ien of the note that was created and should be sent "RTN","SAMIHOM4",479,0) . . s notr=$$NOTE^SAMINOT2(.SAMIARG) "RTN","SAMIHOM4",480,0) . . if +notr>0 d ; "RTN","SAMIHOM4",481,0) . . . n SAMIFILTER "RTN","SAMIHOM4",482,0) . . . s SAMIFILTER("sid")=$G(SAMIARG("studyid")) "RTN","SAMIHOM4",483,0) . . . s SAMIFILTER("key")=$g(SAMIARG("form")) ; "RTN","SAMIHOM4",484,0) . . . n tiuien "RTN","SAMIHOM4",485,0) . . . s tiuien=+notr "RTN","SAMIHOM4",486,0) . . . s SAMIFILTER("notenmbr")=tiuien "RTN","SAMIHOM4",487,0) . . . n sendrslt "RTN","SAMIHOM4",488,0) . . . ;s sendrslt="0^Missing ORM Message" "RTN","SAMIHOM4",489,0) . . . s sendrslt=$$EN^SAMIORU(.SAMIFILTER) ; send the note to VistA "RTN","SAMIHOM4",490,0) . . . i +sendrslt>0 d ; success "RTN","SAMIHOM4",491,0) . . . . n rtnid s rtnid=$p(sendrslt,"^",2) ; return id from HL7 "RTN","SAMIHOM4",492,0) . . . . ; post the id to the graph here "RTN","SAMIHOM4",493,0) . . . . n sid s sid=$G(SAMIARG("studyid")) "RTN","SAMIHOM4",494,0) . . . . n form s form=$G(SAMIARG("form")) "RTN","SAMIHOM4",495,0) . . . . n nien s nien=$$NTIEN^SAMINOT1(sid,form) ; latest note ien "RTN","SAMIHOM4",496,0) . . . . n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",497,0) . . . . s @root@("graph",sid,form,"notes",nien,"hl7id")=rtnid "RTN","SAMIHOM4",498,0) . . . . s SAMIARG("errorMessage")="Note successfully sent to VistA ID: "_rtnid "RTN","SAMIHOM4",499,0) . . . else d ; "RTN","SAMIHOM4",500,0) . . . . n rtnmsg s rtnmsg=$p(sendrslt,"^",2) "RTN","SAMIHOM4",501,0) . . . . i $g(SAMIARG("errorMessage"))="" d ; "RTN","SAMIHOM4",502,0) . . . . . s SAMIARG("errorMessage")=rtnmsg "RTN","SAMIHOM4",503,0) . . . d WSCASE^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",504,0) . . e d WSCASE^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",505,0) . e d WSCASE^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",506,0) ; "RTN","SAMIHOM4",507,0) i route="deleteform" d q 0 "RTN","SAMIHOM4",508,0) . m SAMIARG=vars "RTN","SAMIHOM4",509,0) . d DELFORM^SAMICASE(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",510,0) ; "RTN","SAMIHOM4",511,0) i route="ctreport" d q 0 "RTN","SAMIHOM4",512,0) . m SAMIARG=vars "RTN","SAMIHOM4",513,0) . n format s format="html" "RTN","SAMIHOM4",514,0) . s format="text" "RTN","SAMIHOM4",515,0) . i format="text" d WSNOTE^SAMINOT3(.SAMIRESULT,.SAMIARG) q ; "RTN","SAMIHOM4",516,0) . i format="html" d WSREPORT^SAMICTR0(.SAMIRESULT,.SAMIARG) q ; "RTN","SAMIHOM4",517,0) . ;d wsReport^SAMICTRT(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",518,0) ; "RTN","SAMIHOM4",519,0) i route="note" d q 0 "RTN","SAMIHOM4",520,0) . m SAMIARG=vars "RTN","SAMIHOM4",521,0) . d WSNOTE^SAMINOT1(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",522,0) ; "RTN","SAMIHOM4",523,0) i route="report" d q 0 "RTN","SAMIHOM4",524,0) . m SAMIARG=vars "RTN","SAMIHOM4",525,0) . d WSREPORT^SAMIUR(.SAMIRESULT,.vars) "RTN","SAMIHOM4",526,0) ; "RTN","SAMIHOM4",527,0) i route="about" d q 0 "RTN","SAMIHOM4",528,0) . m SAMIARG=vars "RTN","SAMIHOM4",529,0) . n form "RTN","SAMIHOM4",530,0) . s form="vapals:about" "RTN","SAMIHOM4",531,0) . d RTNPAGE^SAMIHOM4(.SAMIRESULT,form,.SAMIARG) q ; "RTN","SAMIHOM4",532,0) ; "RTN","SAMIHOM4",533,0) i route="addperson" d q 0 "RTN","SAMIHOM4",534,0) . m SAMIARG=vars "RTN","SAMIHOM4",535,0) . n form "RTN","SAMIHOM4",536,0) . s form="vapals:addperson" "RTN","SAMIHOM4",537,0) . d RTNPAGE^SAMIHOM4(.SAMIRESULT,form,.SAMIARG) q ; "RTN","SAMIHOM4",538,0) ; "RTN","SAMIHOM4",539,0) i route="editperson" d q 0 "RTN","SAMIHOM4",540,0) . m SAMIARG=vars "RTN","SAMIHOM4",541,0) . n dfn s dfn=$g(vars("dfn")) ; must have a dfn "RTN","SAMIHOM4",542,0) . i dfn="" d q ; "RTN","SAMIHOM4",543,0) . . d GETHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) ; on error go home "RTN","SAMIHOM4",544,0) . n root s root=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",545,0) . n sien s sien=$o(@root@("dfn",dfn,"")) "RTN","SAMIHOM4",546,0) . i sien="" d q ; "RTN","SAMIHOM4",547,0) . . d GETHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) ; on error go home "RTN","SAMIHOM4",548,0) . s vars("name")=$g(@root@(sien,"saminame")) "RTN","SAMIHOM4",549,0) . s tdob=$g(@root@(sien,"dob")) "RTN","SAMIHOM4",550,0) . s vars("dob")=$p(tdob,"-",2)_"/"_$p(tdob,"-",3)_"/"_$p(tdob,"-",1) "RTN","SAMIHOM4",551,0) . s vars("sbdob")=$g(@root@(sien,"dob")) "RTN","SAMIHOM4",552,0) . s vars("gender")=$g(@root@(sien,"sex")) "RTN","SAMIHOM4",553,0) . ; s vars("icn")=$g(@root@(sien,"icn")) "RTN","SAMIHOM4",554,0) . n tssn s tssn=$g(@root@(sien,"ssn")) "RTN","SAMIHOM4",555,0) . s vars("ssn")=$e(tssn,1,3)_"-"_$e(tssn,4,5)_"-"_$e(tssn,6,9) "RTN","SAMIHOM4",556,0) . s vars("last5")=$g(@root@(sien,"last5")) "RTN","SAMIHOM4",557,0) . s vars("dfn")=$g(@root@(sien,"dfn")) "RTN","SAMIHOM4",558,0) . m SAMIARG=vars "RTN","SAMIHOM4",559,0) . n form,err,zhtml "RTN","SAMIHOM4",560,0) . s form="vapals:editparticipant" "RTN","SAMIHOM4",561,0) . d RTNPAGE^SAMIHOM4(.SAMIRESULT,form,.SAMIARG) q ; "RTN","SAMIHOM4",562,0) ; "RTN","SAMIHOM4",563,0) i route="register" d q 0 "RTN","SAMIHOM4",564,0) . m SAMIARG=vars "RTN","SAMIHOM4",565,0) . d REG^SAMIHOM4(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",566,0) ; "RTN","SAMIHOM4",567,0) i route="editsave" d q 0 "RTN","SAMIHOM4",568,0) . m SAMIARG=vars "RTN","SAMIHOM4",569,0) . d SAVE^SAMIHOM4(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",570,0) ; "RTN","SAMIHOM4",571,0) i route="merge" d q 0 "RTN","SAMIHOM4",572,0) . m SAMIARG=vars "RTN","SAMIHOM4",573,0) . d MERGE^SAMIHOM4(.SAMIRESULT,.SAMIARG) "RTN","SAMIHOM4",574,0) ; "RTN","SAMIHOM4",575,0) quit 0 ; end of wsi WSVAPALS^SAMIHOM3 "RTN","SAMIHOM4",576,0) ; "RTN","SAMIHOM4",577,0) ; "RTN","SAMIHOM4",578,0) ; "RTN","SAMIHOM4",579,0) ;@section 3 other "RTN","SAMIHOM4",580,0) ; "RTN","SAMIHOM4",581,0) ; "RTN","SAMIHOM4",582,0) ; "RTN","SAMIHOM4",583,0) REG(SAMIRTN,SAMIARG) ; manual registration "RTN","SAMIHOM4",584,0) ; "RTN","SAMIHOM4",585,0) n name s name=$g(SAMIARG("name")) "RTN","SAMIHOM4",586,0) ; "RTN","SAMIHOM4",587,0) m ^gpl("reg")=SAMIARG "RTN","SAMIHOM4",588,0) n ssn s ssn=SAMIARG("ssn") "RTN","SAMIHOM4",589,0) s ssn=$tr(ssn,"-") "RTN","SAMIHOM4",590,0) s SAMIARG("errorMessage")="" "RTN","SAMIHOM4",591,0) s SAMIARG("errorField")="" "RTN","SAMIHOM4",592,0) ; test for duplicate ssn "RTN","SAMIHOM4",593,0) ; "RTN","SAMIHOM4",594,0) ;i $$DUPSSN(ssn) d ; "RTN","SAMIHOM4",595,0) ;. ;s SAMIARG("errorMessage")=SAMIARG("errorMessage")_" Duplicate SSN." "RTN","SAMIHOM4",596,0) ;. s SAMIARG("errorMessage")=SAMIARG("errorMessage")_" Duplicate SSN error. A person with that SSN is already entered in the system." "RTN","SAMIHOM4",597,0) ;. s SAMIARG("errorField")="ssn" "RTN","SAMIHOM4",598,0) ; "RTN","SAMIHOM4",599,0) ; test for duplicate icn "RTN","SAMIHOM4",600,0) ; "RTN","SAMIHOM4",601,0) ;n icn s icn=$g(SAMIARG("icn")) "RTN","SAMIHOM4",602,0) ;i icn'="" i $$DUPICN(icn) d ; "RTN","SAMIHOM4",603,0) ;. s SAMIARG("errorMessage")=SAMIARG("errorMessage")_" Duplicate ICN error. A person with that ICN is already entered in the system." "RTN","SAMIHOM4",604,0) ;. s SAMIARG("errorField")="icn" "RTN","SAMIHOM4",605,0) ;; "RTN","SAMIHOM4",606,0) ;; test for wellformed ICN "RTN","SAMIHOM4",607,0) ;; "RTN","SAMIHOM4",608,0) ;i icn'="" i $$BADICN(icn) d ; "RTN","SAMIHOM4",609,0) ;. s SAMIARG("errorMessage")=SAMIARG("errorMessage")_" Invalid ICN error. The check digits in the ICN do not match" "RTN","SAMIHOM4",610,0) ;. s SAMIARG("errorField")="icn" "RTN","SAMIHOM4",611,0) ;; "RTN","SAMIHOM4",612,0) ; if there is an error, send back to edit with error message "RTN","SAMIHOM4",613,0) i $g(SAMIARG("errorMessage"))'="" d q ; "RTN","SAMIHOM4",614,0) . n form "RTN","SAMIHOM4",615,0) . s form="vapals:addperson" "RTN","SAMIHOM4",616,0) . d RTNERR(.SAMIRESULT,form,.SAMIARG) "RTN","SAMIHOM4",617,0) ; "RTN","SAMIHOM4",618,0) n root s root=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",619,0) n proot s proot=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",620,0) n ptlkien s ptlkien="" "RTN","SAMIHOM4",621,0) n dfn s dfn="" "RTN","SAMIHOM4",622,0) n sien s sien="" "RTN","SAMIHOM4",623,0) i ptlkien="" s ptlkien=$o(@root@("AAAAAA"),-1)+1 "RTN","SAMIHOM4",624,0) n zm "RTN","SAMIHOM4",625,0) k SAMIARG("MATCHLOG") "RTN","SAMIHOM4",626,0) s zm=$$REMATCH(sien,.SAMIARG) "RTN","SAMIHOM4",627,0) i zm>0 d ; "RTN","SAMIHOM4",628,0) . s SAMIARG("MATCHLOG")=zm "RTN","SAMIHOM4",629,0) d MKPTLK(ptlkien,.SAMIARG) ; make the patient-lookup record "RTN","SAMIHOM4",630,0) ; "RTN","SAMIHOM4",631,0) s dfn=$o(@root@("dfn"," "),-1)+1 "RTN","SAMIHOM4",632,0) n pdfn "RTN","SAMIHOM4",633,0) s pdfn=$o(@proot@("dfn"," "),-1)+1 "RTN","SAMIHOM4",634,0) i pdfn>dfn s dfn=pdfn ; need a dfn that has not been used "RTN","SAMIHOM4",635,0) i dfn<9000001 s dfn=9000001 "RTN","SAMIHOM4",636,0) s @root@(ptlkien,"dfn")=dfn "RTN","SAMIHOM4",637,0) d INDXPTLK(ptlkien) "RTN","SAMIHOM4",638,0) s SAMIFILTER("samiroute")="addperson" "RTN","SAMIHOM4",639,0) s SAMIFILTER("siteid")=$G(SAMIARG("siteid")) "RTN","SAMIHOM4",640,0) s SAMIFILTER("sitetitle")=$G(SAMIARG("sitetitle")) "RTN","SAMIHOM4",641,0) k SAMIARG ; return to a blank manual registration form "RTN","SAMIHOM4",642,0) s SAMIARG("siteid")=$G(SAMIFILTER("siteid")) "RTN","SAMIHOM4",643,0) s SAMIARG("sitetitle")=$G(SAMIFILTER("sitetitle")) "RTN","SAMIHOM4",644,0) d SETINFO(.SAMIFILTER,name_" was successfully entered") "RTN","SAMIHOM4",645,0) ;d SETWARN(.SAMIFILTER,"We might want to give you a warning") "RTN","SAMIHOM4",646,0) do WSVAPALS^SAMIHOM3(.SAMIFILTER,.SAMIARG,.SAMIRESULT) "RTN","SAMIHOM4",647,0) ; "RTN","SAMIHOM4",648,0) quit ; end of REG "RTN","SAMIHOM4",649,0) ; "RTN","SAMIHOM4",650,0) ; "RTN","SAMIHOM4",651,0) ; "RTN","SAMIHOM4",652,0) MKPTLK(ptlkien,SAMIARG) ; creates patient-lookup record "RTN","SAMIHOM4",653,0) ; "RTN","SAMIHOM4",654,0) n ssn s ssn=SAMIARG("ssn") "RTN","SAMIHOM4",655,0) s ssn=$tr(ssn,"-") "RTN","SAMIHOM4",656,0) n name s name=$g(SAMIARG("name")) "RTN","SAMIHOM4",657,0) n sinamef,sinamel "RTN","SAMIHOM4",658,0) s sinamel=$p(name,","),sinamel=$$TRIM^XLFSTR(sinamel,"LR") "RTN","SAMIHOM4",659,0) s sinamef=$p(name,",",2),sinamef=$$TRIM^XLFSTR(sinamef,"LR") "RTN","SAMIHOM4",660,0) s name=sinamel_","_sinamef "RTN","SAMIHOM4",661,0) n siteid s siteid=$g(SAMIARG("siteid")) "RTN","SAMIHOM4",662,0) i siteid="" s siteid=$g(SAMIARG("site")) "RTN","SAMIHOM4",663,0) ; "RTN","SAMIHOM4",664,0) s @root@(ptlkien,"siteid")=siteid "RTN","SAMIHOM4",665,0) s @root@(ptlkien,"saminame")=name "RTN","SAMIHOM4",666,0) s @root@(ptlkien,"sinamef")=sinamef "RTN","SAMIHOM4",667,0) s @root@(ptlkien,"sinamel")=sinamel "RTN","SAMIHOM4",668,0) n fmdob s fmdob=$$FMDT^SAMIUR2(SAMIARG("dob")) "RTN","SAMIHOM4",669,0) n ptlkdob s ptlkdob=$$FMTE^XLFDT(fmdob,7) "RTN","SAMIHOM4",670,0) s ptlkdob=$TR(ptlkdob,"/","-") "RTN","SAMIHOM4",671,0) s @root@(ptlkien,"dob")=ptlkdob "RTN","SAMIHOM4",672,0) s @root@(ptlkien,"sbdob")=ptlkdob "RTN","SAMIHOM4",673,0) n gender s gender=SAMIARG("gender") "RTN","SAMIHOM4",674,0) s @root@(ptlkien,"gender")=$s(gender="M":"M^MALE",1:"F^FEMALE") "RTN","SAMIHOM4",675,0) s @root@(ptlkien,"sex")=SAMIARG("gender") "RTN","SAMIHOM4",676,0) ; s @root@(ptlkien,"icn")=SAMIARG("icn") "RTN","SAMIHOM4",677,0) s @root@(ptlkien,"ssn")=ssn "RTN","SAMIHOM4",678,0) n last5 s last5=$$UCASE($e(name,1))_$e(ssn,6,9) "RTN","SAMIHOM4",679,0) s @root@(ptlkien,"last5")=last5 "RTN","SAMIHOM4",680,0) n mymatch s mymatch=$g(SAMIARG("MATCHLOG")) "RTN","SAMIHOM4",681,0) i mymatch'="" s @root@(ptlkien,"MATCHLOG")=mymatch "RTN","SAMIHOM4",682,0) ; "RTN","SAMIHOM4",683,0) quit ; end of MKPTLK "RTN","SAMIHOM4",684,0) ; "RTN","SAMIHOM4",685,0) ; "RTN","SAMIHOM4",686,0) ; "RTN","SAMIHOM4",687,0) UPDTFRMS(dfn) ; update demographics in all forms for patient "RTN","SAMIHOM4",688,0) ; "RTN","SAMIHOM4",689,0) n lroot s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",690,0) n proot s proot=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",691,0) n lien s lien=$o(@lroot@("dfn",dfn,"")) "RTN","SAMIHOM4",692,0) q:lien="" "RTN","SAMIHOM4",693,0) n pien s pien=$o(@proot@("dfn",dfn,"")) "RTN","SAMIHOM4",694,0) q:pien="" "RTN","SAMIHOM4",695,0) ; this patient has forms "RTN","SAMIHOM4",696,0) m @proot@(pien)=@lroot@(lien) ; refresh the demos in the patient record "RTN","SAMIHOM4",697,0) n ssn s ssn=$g(@proot@(pien,"ssn")) "RTN","SAMIHOM4",698,0) s @proot@(pien,"sissn")=$e(ssn,1,3)_"-"_$e(ssn,4,5)_"-"_$e(ssn,6,9) "RTN","SAMIHOM4",699,0) n sid s sid=$g(@proot@("sisid")) ; studyid "RTN","SAMIHOM4",700,0) q:sid="" ; no studyid "RTN","SAMIHOM4",701,0) n zi s zi="" "RTN","SAMIHOM4",702,0) f s zi=$o(@proot@("graph",sid,zi)) q:zi="" d ; for each form "RTN","SAMIHOM4",703,0) . m @proot@("graph",sid,zi)=@proot@(pien) ; stamp each form with new demos "RTN","SAMIHOM4",704,0) ; "RTN","SAMIHOM4",705,0) quit ; end of UPDTFRMS "RTN","SAMIHOM4",706,0) ; "RTN","SAMIHOM4",707,0) ; "RTN","SAMIHOM4",708,0) ; "RTN","SAMIHOM4",709,0) MERGE(SAMIRESULT,SAMIARGS) ; merge participant records "RTN","SAMIHOM4",710,0) ; "RTN","SAMIHOM4",711,0) ; called from pressing the merge button on the unmatched report "RTN","SAMIHOM4",712,0) ; "RTN","SAMIHOM4",713,0) n toien s toien=$g(SAMIARGS("toien")) "RTN","SAMIHOM4",714,0) i toien="" d q ; "RTN","SAMIHOM4",715,0) . d WSUNMAT(.SAMIRESULT,.SAMIARGS) "RTN","SAMIHOM4",716,0) n lroot s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",717,0) n fromien s fromien=$g(@lroot@(toien,"MATCHLOG")) "RTN","SAMIHOM4",718,0) i fromien="" d q ; "RTN","SAMIHOM4",719,0) . d WSUNMAT(.SAMIRESULT,.SAMIARGS) "RTN","SAMIHOM4",720,0) ; "RTN","SAMIHOM4",721,0) ; test for remotedfn in from record - not valid if absent "RTN","SAMIHOM4",722,0) ; "RTN","SAMIHOM4",723,0) i $g(@lroot@(fromien,"remotedfn"))="" d q ; "RTN","SAMIHOM4",724,0) . d WSUNMAT(.SAMIRESULT,.SAMIARGS) "RTN","SAMIHOM4",725,0) ; "RTN","SAMIHOM4",726,0) ; remove index entries for from and to records "RTN","SAMIHOM4",727,0) ; "RTN","SAMIHOM4",728,0) d UNINDXPT(fromien) ; delete index entries "RTN","SAMIHOM4",729,0) d UNINDXPT(toien) "RTN","SAMIHOM4",730,0) ; "RTN","SAMIHOM4",731,0) ; create changelog entry in to record - contains from record "RTN","SAMIHOM4",732,0) ; "RTN","SAMIHOM4",733,0) m @lroot@(toien,"changelog",$$FMTE^XLFDT($$NOW^XLFDT,5))=@lroot@(fromien) "RTN","SAMIHOM4",734,0) ; "RTN","SAMIHOM4",735,0) ; change the dfn in the from record to the to record dfn for merging "RTN","SAMIHOM4",736,0) ; "RTN","SAMIHOM4",737,0) s @lroot@(fromien,"dfn")=@lroot@(toien,"dfn") "RTN","SAMIHOM4",738,0) n dfn s dfn=@lroot@(toien,"dfn") ; for use in updating forms "RTN","SAMIHOM4",739,0) ; "RTN","SAMIHOM4",740,0) ; merge the from record to the to record "RTN","SAMIHOM4",741,0) ; "RTN","SAMIHOM4",742,0) m @lroot@(toien)=@lroot@(fromien) "RTN","SAMIHOM4",743,0) ; "RTN","SAMIHOM4",744,0) ; delete the from record "RTN","SAMIHOM4",745,0) ; "RTN","SAMIHOM4",746,0) k @lroot@(fromien) "RTN","SAMIHOM4",747,0) ; "RTN","SAMIHOM4",748,0) ; reindex the to record "RTN","SAMIHOM4",749,0) ; "RTN","SAMIHOM4",750,0) d INDXPTLK(toien) "RTN","SAMIHOM4",751,0) ; "RTN","SAMIHOM4",752,0) ; propagate the updated from record to every form "RTN","SAMIHOM4",753,0) ; "RTN","SAMIHOM4",754,0) d UPDTFRMS(dfn) ; updates the patient in the vapals-patient graph "RTN","SAMIHOM4",755,0) ; "RTN","SAMIHOM4",756,0) ; leave and return to the unmatched report "RTN","SAMIHOM4",757,0) ; note that the form and to records will no longer be in the report "RTN","SAMIHOM4",758,0) ; "RTN","SAMIHOM4",759,0) d WSUNMAT(.SAMIRESULT,.SAMIARGS) "RTN","SAMIHOM4",760,0) ; "RTN","SAMIHOM4",761,0) quit ; end of MERGE "RTN","SAMIHOM4",762,0) ; "RTN","SAMIHOM4",763,0) ; "RTN","SAMIHOM4",764,0) ; "RTN","SAMIHOM4",765,0) ADDUNMAT ; adds unmatched report web service to system "RTN","SAMIHOM4",766,0) ; "RTN","SAMIHOM4",767,0) d addService^%webutils("GET","unmatched","WSUNMAT^SAMIHOM4") "RTN","SAMIHOM4",768,0) ; "RTN","SAMIHOM4",769,0) quit ; end of ADDUNMAT "RTN","SAMIHOM4",770,0) ; "RTN","SAMIHOM4",771,0) ; "RTN","SAMIHOM4",772,0) ; "RTN","SAMIHOM4",773,0) DELUNMAT ; deletes unmatched web service "RTN","SAMIHOM4",774,0) ; "RTN","SAMIHOM4",775,0) d deleteService^%webutils("GET","unmatched") "RTN","SAMIHOM4",776,0) ; "RTN","SAMIHOM4",777,0) quit ; end of DELUNMAT "RTN","SAMIHOM4",778,0) ; "RTN","SAMIHOM4",779,0) ; "RTN","SAMIHOM4",780,0) ; "RTN","SAMIHOM4",781,0) WSUNMAT(SAMIRESULT,SAMIARGS) ; navigates to unmatched report "RTN","SAMIHOM4",782,0) ; "RTN","SAMIHOM4",783,0) n filter,bdy "RTN","SAMIHOM4",784,0) s bdy="" "RTN","SAMIHOM4",785,0) ;s filter("siteid")="PHX" "RTN","SAMIHOM4",786,0) s filter("samiroute")="report" "RTN","SAMIHOM4",787,0) s filter("samireporttype")="unmatched" "RTN","SAMIHOM4",788,0) d WSVAPALS^SAMIHOM3(.filter,.bdy,.SAMIRESULT) ; back to the unmatched report "RTN","SAMIHOM4",789,0) ; "RTN","SAMIHOM4",790,0) quit ; end of WSUNMAT "RTN","SAMIHOM4",791,0) ; "RTN","SAMIHOM4",792,0) ; "RTN","SAMIHOM4",793,0) ; "RTN","SAMIHOM4",794,0) DUPSSN(ssn) ; extrinsic returns true if duplicate ssn "RTN","SAMIHOM4",795,0) ; "RTN","SAMIHOM4",796,0) n proot s proot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",797,0) i $d(@proot@("ssn",ssn)) q 1 "RTN","SAMIHOM4",798,0) ; "RTN","SAMIHOM4",799,0) quit 0 ; end of $$DUPSSN "RTN","SAMIHOM4",800,0) ; "RTN","SAMIHOM4",801,0) ; "RTN","SAMIHOM4",802,0) ; "RTN","SAMIHOM4",803,0) DUPICN(icn) ; extrinsic returns true if duplicate icn "RTN","SAMIHOM4",804,0) ; "RTN","SAMIHOM4",805,0) n proot s proot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",806,0) n tmpicn s tmpicn=$p(icn,"V",1) "RTN","SAMIHOM4",807,0) i $d(@proot@("icn",icn)) q 1 "RTN","SAMIHOM4",808,0) i $d(@proot@("icn",tmpicn)) q 1 "RTN","SAMIHOM4",809,0) ; "RTN","SAMIHOM4",810,0) quit 0 ; end of $$DUPICN "RTN","SAMIHOM4",811,0) ; "RTN","SAMIHOM4",812,0) ; "RTN","SAMIHOM4",813,0) ; "RTN","SAMIHOM4",814,0) BADICN(icn) ; extrinsic returns true if ICN checkdigits are wrong "RTN","SAMIHOM4",815,0) ; "RTN","SAMIHOM4",816,0) n zchk s zchk=$p(icn,"V",2) "RTN","SAMIHOM4",817,0) n zicn s zicn=$p(icn,"V",1) "RTN","SAMIHOM4",818,0) q:zchk="" 1 "RTN","SAMIHOM4",819,0) i zchk'=$$CHECKDG^MPIFSPC(zicn) q 1 "RTN","SAMIHOM4",820,0) ; "RTN","SAMIHOM4",821,0) quit 0 "RTN","SAMIHOM4",822,0) ; "RTN","SAMIHOM4",823,0) ; "RTN","SAMIHOM4",824,0) ; "RTN","SAMIHOM4",825,0) SAVE(SAMIRESULT,SAMIARG) ; save patient-lookup record after edit "RTN","SAMIHOM4",826,0) ; "RTN","SAMIHOM4",827,0) n dfn s dfn=$g(vars("dfn")) ; must have a dfn "RTN","SAMIHOM4",828,0) i dfn="" d q ; "RTN","SAMIHOM4",829,0) . d GETHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) ; on error go home "RTN","SAMIHOM4",830,0) n root s root=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",831,0) n sien s sien=$o(@root@("dfn",dfn,"")) "RTN","SAMIHOM4",832,0) i sien="" d q ; "RTN","SAMIHOM4",833,0) . d GETHOME^SAMIHOM3(.SAMIRESULT,.SAMIARG) ; on error go home "RTN","SAMIHOM4",834,0) d UNINDXPT(sien) ; remove old index entries "RTN","SAMIHOM4",835,0) n zm "RTN","SAMIHOM4",836,0) k SAMIARG("MATCHLOG") "RTN","SAMIHOM4",837,0) s zm=$$REMATCH(sien,.SAMIARG) "RTN","SAMIHOM4",838,0) i zm>0 d ; "RTN","SAMIHOM4",839,0) . s SAMIARG("MATCHLOG")=zm "RTN","SAMIHOM4",840,0) d MKPTLK(sien,.SAMIARG) ; add the updated fields "RTN","SAMIHOM4",841,0) d INDXPTLK(sien) ; create new index entries "RTN","SAMIHOM4",842,0) d UPDTFRMS(dfn) ; update demographic info in all forms "RTN","SAMIHOM4",843,0) n filter,bdy "RTN","SAMIHOM4",844,0) s bdy="" "RTN","SAMIHOM4",845,0) m filter=SAMIARG "RTN","SAMIHOM4",846,0) s filter("samiroute")="report" "RTN","SAMIHOM4",847,0) s filter("samireporttype")="unmatched" "RTN","SAMIHOM4",848,0) d WSVAPALS^SAMIHOM3(.filter,.bdy,.SAMIRESULT) ; back to the unmatched report "RTN","SAMIHOM4",849,0) ; "RTN","SAMIHOM4",850,0) quit ; end of SAVE "RTN","SAMIHOM4",851,0) ; "RTN","SAMIHOM4",852,0) ; "RTN","SAMIHOM4",853,0) ; "RTN","SAMIHOM4",854,0) REMATCH(sien,SAMIARG) ; extrinsic returns possible match ien "RTN","SAMIHOM4",855,0) ; "RTN","SAMIHOM4",856,0) ; else zero "RTN","SAMIHOM4",857,0) ; "RTN","SAMIHOM4",858,0) n lroot s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",859,0) n ssn,name,icn,x,y "RTN","SAMIHOM4",860,0) s ssn=$g(SAMIARG("ssn")) "RTN","SAMIHOM4",861,0) i ssn["-" s ssn=$tr(ssn,"-") "RTN","SAMIHOM4",862,0) s name=$g(SAMIARG("saminame")) "RTN","SAMIHOM4",863,0) i name="" s name=$g(SAMIARG("name")) "RTN","SAMIHOM4",864,0) s name=$$UCASE(name) "RTN","SAMIHOM4",865,0) ; s icn=$g(SAMIARG("icn")) "RTN","SAMIHOM4",866,0) s x=0 "RTN","SAMIHOM4",867,0) i ssn'="" s x=$o(@lroot@("ssn",ssn,"")) "RTN","SAMIHOM4",868,0) i x=sien s x=$o(@lroot@("ssn",ssn,x)) "RTN","SAMIHOM4",869,0) i +x'=0 d ; "RTN","SAMIHOM4",870,0) . s y=$g(@lroot@(x,"dfn")) "RTN","SAMIHOM4",871,0) . ;i y>9000000 s x=0 "RTN","SAMIHOM4",872,0) i x>0 q x "RTN","SAMIHOM4",873,0) i name'="" s x=$o(@lroot@("name",name,"")) "RTN","SAMIHOM4",874,0) i x=sien s x=$o(@lroot@("name",name,x)) "RTN","SAMIHOM4",875,0) i +x'=0 d ; "RTN","SAMIHOM4",876,0) . s y=$g(@lroot@(x,"dfn")) "RTN","SAMIHOM4",877,0) . ;i y>9000000 s x=0 "RTN","SAMIHOM4",878,0) i x>0 q x "RTN","SAMIHOM4",879,0) ;i icn'="" s x=$o(@lroot@("icn",icn,"")) "RTN","SAMIHOM4",880,0) ;i x=sien s x=$o(@lroot@("icn",icn,x)) "RTN","SAMIHOM4",881,0) ;i +x'=0 d ; "RTN","SAMIHOM4",882,0) ;. s y=$g(@lroot@(x,"dfn")) "RTN","SAMIHOM4",883,0) ;. i y>9000000 s x=0 "RTN","SAMIHOM4",884,0) ;i x>0 q x "RTN","SAMIHOM4",885,0) ; "RTN","SAMIHOM4",886,0) quit 0 ; end of $$REMATCH "RTN","SAMIHOM4",887,0) ; "RTN","SAMIHOM4",888,0) ; "RTN","SAMIHOM4",889,0) ; "RTN","SAMIHOM4",890,0) SETINFO(vars,msg) ; set information message text "RTN","SAMIHOM4",891,0) ; "RTN","SAMIHOM4",892,0) ; vars are the screen variables passed by reference "RTN","SAMIHOM4",893,0) ; "RTN","SAMIHOM4",894,0) s vars("infoMessage")=msg "RTN","SAMIHOM4",895,0) ; "RTN","SAMIHOM4",896,0) quit ; end of SETINFO "RTN","SAMIHOM4",897,0) ; "RTN","SAMIHOM4",898,0) ; "RTN","SAMIHOM4",899,0) ; "RTN","SAMIHOM4",900,0) SETWARN(vars,msg) ; set warning message text "RTN","SAMIHOM4",901,0) ; "RTN","SAMIHOM4",902,0) ; vars are the screen variables passed by reference "RTN","SAMIHOM4",903,0) ; "RTN","SAMIHOM4",904,0) s vars("warnMessage")=msg "RTN","SAMIHOM4",905,0) ; "RTN","SAMIHOM4",906,0) quit ; end of SETWARN "RTN","SAMIHOM4",907,0) ; "RTN","SAMIHOM4",908,0) ; "RTN","SAMIHOM4",909,0) ; "RTN","SAMIHOM4",910,0) RTNERR(rtn,form,vals,msg,fld) ; redisplay page w/error message "RTN","SAMIHOM4",911,0) ; "RTN","SAMIHOM4",912,0) ; rtn is the return array "RTN","SAMIHOM4",913,0) ; form is the form the page requires "RTN","SAMIHOM4",914,0) ; vals are the values for the page. passed by reference "RTN","SAMIHOM4",915,0) ; msg is the error message to be displayed "RTN","SAMIHOM4",916,0) ; fld is the name of the field where the cursor should be put "RTN","SAMIHOM4",917,0) ; "RTN","SAMIHOM4",918,0) n zhtml ; work area for the tempate "RTN","SAMIHOM4",919,0) d SAMIHTM^%wf(.zhtml,form,.err) "RTN","SAMIHOM4",920,0) d MERGEHTM^%wf(.zhtml,.vals,.err) "RTN","SAMIHOM4",921,0) m rtn=zhtml "RTN","SAMIHOM4",922,0) set HTTPRSP("mime")="text/html" ; set mime type "RTN","SAMIHOM4",923,0) ; "RTN","SAMIHOM4",924,0) quit ; end of RTNERR "RTN","SAMIHOM4",925,0) ; "RTN","SAMIHOM4",926,0) ; "RTN","SAMIHOM4",927,0) ; "RTN","SAMIHOM4",928,0) RTNPAGE(rtn,form,vals) ; display page "RTN","SAMIHOM4",929,0) ; "RTN","SAMIHOM4",930,0) ; rtn is the return array "RTN","SAMIHOM4",931,0) ; form is the form the page requires "RTN","SAMIHOM4",932,0) ; vals are the values for the page. passed by reference "RTN","SAMIHOM4",933,0) ; "RTN","SAMIHOM4",934,0) n err "RTN","SAMIHOM4",935,0) n zhtml ; work area for the tempate "RTN","SAMIHOM4",936,0) d SAMIHTM^%wf(.zhtml,form,.err) "RTN","SAMIHOM4",937,0) d MERGEHTM^%wf(.zhtml,.vals,.err) "RTN","SAMIHOM4",938,0) m SAMIRESULT=zhtml "RTN","SAMIHOM4",939,0) set HTTPRSP("mime")="text/html" ; set mime type "RTN","SAMIHOM4",940,0) ; "RTN","SAMIHOM4",941,0) quit ; end of RTNPAGE "RTN","SAMIHOM4",942,0) ; "RTN","SAMIHOM4",943,0) ; "RTN","SAMIHOM4",944,0) ; "RTN","SAMIHOM4",945,0) REINDXPL ; reindex patient lookup "RTN","SAMIHOM4",946,0) ; "RTN","SAMIHOM4",947,0) n root s root=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",948,0) n zi s zi=0 "RTN","SAMIHOM4",949,0) k @root@("ssn") "RTN","SAMIHOM4",950,0) k @root@("name") "RTN","SAMIHOM4",951,0) k @root@("last5") "RTN","SAMIHOM4",952,0) k @root@("sinamef") "RTN","SAMIHOM4",953,0) k @root@("sinamel") "RTN","SAMIHOM4",954,0) ; k @root@("icn") "RTN","SAMIHOM4",955,0) f s zi=$o(@root@(zi)) q:+zi=0 d ; "RTN","SAMIHOM4",956,0) . d INDXPTLK(zi) "RTN","SAMIHOM4",957,0) ; "RTN","SAMIHOM4",958,0) quit ; end of REINDXPL "RTN","SAMIHOM4",959,0) ; "RTN","SAMIHOM4",960,0) ; "RTN","SAMIHOM4",961,0) ; "RTN","SAMIHOM4",962,0) INDXPTLK(ien) ; generate index entries in patient-lookup graph "RTN","SAMIHOM4",963,0) ; "RTN","SAMIHOM4",964,0) ; for entry ien "RTN","SAMIHOM4",965,0) ; "RTN","SAMIHOM4",966,0) n proot set proot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",967,0) n name s name=$g(@proot@(ien,"saminame")) "RTN","SAMIHOM4",968,0) s @proot@("name",name,ien)="" "RTN","SAMIHOM4",969,0) n ucname s ucname=$$UCASE(name) "RTN","SAMIHOM4",970,0) s @proot@("name",ucname,ien)="" "RTN","SAMIHOM4",971,0) n x "RTN","SAMIHOM4",972,0) s x=$g(@proot@(ien,"dfn")) ;w !,x "RTN","SAMIHOM4",973,0) s:x'="" @proot@("dfn",x,ien)="" "RTN","SAMIHOM4",974,0) s x=$g(@proot@(ien,"last5")) ;w !,x "RTN","SAMIHOM4",975,0) s:x'="" @proot@("last5",x,ien)="" "RTN","SAMIHOM4",976,0) ; "RTN","SAMIHOM4",977,0) ; s x=$g(@proot@(ien,"icn")) ;w !,x "RTN","SAMIHOM4",978,0) ; i x'["V" d ; "RTN","SAMIHOM4",979,0) ; . i x="" q "RTN","SAMIHOM4",980,0) ; . n chk s chk=$$CHECKDG^MPIFSPC(x) "RTN","SAMIHOM4",981,0) ; . s @proot@(ien,"icn")=x_"V"_chk "RTN","SAMIHOM4",982,0) ; . s x=x_"V"_chk "RTN","SAMIHOM4",983,0) ; s:x'="" @proot@("icn",x,ien)="" "RTN","SAMIHOM4",984,0) ; "RTN","SAMIHOM4",985,0) s x=$g(@proot@(ien,"ssn")) ;w !,x "RTN","SAMIHOM4",986,0) s:x'="" @proot@("ssn",x,ien)="" "RTN","SAMIHOM4",987,0) s x=$g(@proot@(ien,"sinamef")) ;w !,x "RTN","SAMIHOM4",988,0) s:x'="" @proot@("sinamef",x,ien)="" "RTN","SAMIHOM4",989,0) s x=$g(@proot@(ien,"sinamel")) w !,x "RTN","SAMIHOM4",990,0) s:x'="" @proot@("sinamel",x,ien)="" "RTN","SAMIHOM4",991,0) set @proot@("Date Last Updated")=$$HTE^XLFDT($horolog) "RTN","SAMIHOM4",992,0) ; "RTN","SAMIHOM4",993,0) quit ; end of INDXPTLK "RTN","SAMIHOM4",994,0) ; "RTN","SAMIHOM4",995,0) ; "RTN","SAMIHOM4",996,0) ; "RTN","SAMIHOM4",997,0) UNINDXPT(ien) ; remove index entries from patient-lookup graph "RTN","SAMIHOM4",998,0) ; "RTN","SAMIHOM4",999,0) ; for entry ien "RTN","SAMIHOM4",1000,0) ; "RTN","SAMIHOM4",1001,0) n proot set proot=$$setroot^%wd("patient-lookup") "RTN","SAMIHOM4",1002,0) n name s name=$g(@proot@(ien,"saminame")) "RTN","SAMIHOM4",1003,0) k @proot@("name",name,ien) "RTN","SAMIHOM4",1004,0) n ucname s ucname=$$UCASE(name) "RTN","SAMIHOM4",1005,0) k @proot@("name",ucname,ien) "RTN","SAMIHOM4",1006,0) n x "RTN","SAMIHOM4",1007,0) s x=$g(@proot@(ien,"dfn")) ;w !,x "RTN","SAMIHOM4",1008,0) k:x'="" @proot@("dfn",x,ien) "RTN","SAMIHOM4",1009,0) s x=$g(@proot@(ien,"last5")) ;w !,x "RTN","SAMIHOM4",1010,0) k:x'="" @proot@("last5",x,ien) "RTN","SAMIHOM4",1011,0) ; "RTN","SAMIHOM4",1012,0) ; s x=$g(@proot@(ien,"icn")) ;w !,x "RTN","SAMIHOM4",1013,0) ; i x'["V" d ; "RTN","SAMIHOM4",1014,0) ; . i x="" q "RTN","SAMIHOM4",1015,0) ; . n chk s chk=$$CHECKDG^MPIFSPC(x) "RTN","SAMIHOM4",1016,0) ; . s @proot@(ien,"icn")=x_"V"_chk "RTN","SAMIHOM4",1017,0) ; . s x=x_"V"_chk "RTN","SAMIHOM4",1018,0) ; k:x'="" @proot@("icn",x,ien) "RTN","SAMIHOM4",1019,0) ; "RTN","SAMIHOM4",1020,0) s x=$g(@proot@(ien,"ssn")) ;w !,x "RTN","SAMIHOM4",1021,0) k:x'="" @proot@("ssn",x,ien) "RTN","SAMIHOM4",1022,0) s x=$g(@proot@(ien,"sinamef")) ;w !,x "RTN","SAMIHOM4",1023,0) k:x'="" @proot@("sinamef",x,ien) "RTN","SAMIHOM4",1024,0) s x=$g(@proot@(ien,"sinamel")) w !,x "RTN","SAMIHOM4",1025,0) k:x'="" @proot@("sinamel",x,ien) "RTN","SAMIHOM4",1026,0) set @proot@("Date Last Updated")=$$HTE^XLFDT($horolog) "RTN","SAMIHOM4",1027,0) ; "RTN","SAMIHOM4",1028,0) quit ; end of UNINDXPT "RTN","SAMIHOM4",1029,0) ; "RTN","SAMIHOM4",1030,0) ; "RTN","SAMIHOM4",1031,0) ; "RTN","SAMIHOM4",1032,0) UCASE(STR) ; extrinsic returns uppercase of STR "RTN","SAMIHOM4",1033,0) ; "RTN","SAMIHOM4",1034,0) N X,Y "RTN","SAMIHOM4",1035,0) S X=STR "RTN","SAMIHOM4",1036,0) X ^%ZOSF("UPPERCASE") "RTN","SAMIHOM4",1037,0) ; "RTN","SAMIHOM4",1038,0) quit Y ; end of $$UCASE "RTN","SAMIHOM4",1039,0) ; "RTN","SAMIHOM4",1040,0) ; "RTN","SAMIHOM4",1041,0) ; "RTN","SAMIHOM4",1042,0) ;@wri-code WSNEWCAS^SAMIHOM3 "RTN","SAMIHOM4",1043,0) WSNEWCAS ; web route newcase (creates new case) "RTN","SAMIHOM4",1044,0) ; "RTN","SAMIHOM4",1045,0) ;@stanza 1 invocation, binding, & branching "RTN","SAMIHOM4",1046,0) ; "RTN","SAMIHOM4",1047,0) ;ven/gpl;wri;procedure; "RTN","SAMIHOM4",1048,0) ;@signature "RTN","SAMIHOM4",1049,0) ; do WSNEWCAS^SAMIHOM3(SAMIARGS,SAMIBODY,SAMIRESULT) "RTN","SAMIHOM4",1050,0) ;@branches-from "RTN","SAMIHOM4",1051,0) ; wri WSNEWCAS^SAMIHOM3 [wr newcase] "RTN","SAMIHOM4",1052,0) ;@wri-called-by "RTN","SAMIHOM4",1053,0) ; wsi WSVAPALS^SAMIHOM3 [ws post vapals] "RTN","SAMIHOM4",1054,0) ;@called-by none "RTN","SAMIHOM4",1055,0) ;@calls "RTN","SAMIHOM4",1056,0) ; parseBody^%wf "RTN","SAMIHOM4",1057,0) ; $$setroot^%wd "RTN","SAMIHOM4",1058,0) ; $$VALDTNM [commented out] "RTN","SAMIHOM4",1059,0) ; GETHOME [commented out] "RTN","SAMIHOM4",1060,0) ; $$NEXTNUM [commented out] "RTN","SAMIHOM4",1061,0) ; $$GENSTDID^SAMIHOM3 "RTN","SAMIHOM4",1062,0) ; $$NOW^XLFDT "RTN","SAMIHOM4",1063,0) ; $$KEYDATE^SAMIHOM3 "RTN","SAMIHOM4",1064,0) ; PREFILL^SAMIHOM3 "RTN","SAMIHOM4",1065,0) ; makeSbform [commented out] "RTN","SAMIHOM4",1066,0) ; $$MKSIFORM^SAMIHOM3 "RTN","SAMIHOM4",1067,0) ; wsGetForm^%wf "RTN","SAMIHOM4",1068,0) ; WSCASE^SAMICASE [commented out] "RTN","SAMIHOM4",1069,0) ;@input "RTN","SAMIHOM4",1070,0) ;.ARGS = "RTN","SAMIHOM4",1071,0) ; BODY = "RTN","SAMIHOM4",1072,0) ;.RESULT = "RTN","SAMIHOM4",1073,0) ;@output: ? "RTN","SAMIHOM4",1074,0) ;@examples [tbd] "RTN","SAMIHOM4",1075,0) ;@tests [tbd] "RTN","SAMIHOM4",1076,0) ; "RTN","SAMIHOM4",1077,0) ; "RTN","SAMIHOM4",1078,0) ;@stanza 2 create new case "RTN","SAMIHOM4",1079,0) ; "RTN","SAMIHOM4",1080,0) merge ^SAMIUL("newCase","ARGS")=SAMIARGS "RTN","SAMIHOM4",1081,0) merge ^SAMIUL("newCase","BODY")=SAMIBODY "RTN","SAMIHOM4",1082,0) ; "RTN","SAMIHOM4",1083,0) new vars,bdy "RTN","SAMIHOM4",1084,0) set SAMIBDY=$get(SAMIBODY(1)) "RTN","SAMIHOM4",1085,0) if SAMIBDY="" M vars=SAMIARGS "RTN","SAMIHOM4",1086,0) else do parseBody^%wf("vars",.SAMIBDY) "RTN","SAMIHOM4",1087,0) merge ^SAMIUL("newCase","vars")=vars "RTN","SAMIHOM4",1088,0) ; "RTN","SAMIHOM4",1089,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIHOM4",1090,0) ; "RTN","SAMIHOM4",1091,0) new saminame set saminame=$get(vars("name")) "RTN","SAMIHOM4",1092,0) if saminame="" s saminame=$get(vars("saminame")) "RTN","SAMIHOM4",1093,0) ;if $$VALDTNM(saminame,.ARGS)=-1 do quit ; "RTN","SAMIHOM4",1094,0) ;. new r1 "RTN","SAMIHOM4",1095,0) ;. do GETHOME(.r1,.ARGS) ; home page to redisplay "RTN","SAMIHOM4",1096,0) ;. merge RESULT=r1 "RTN","SAMIHOM4",1097,0) ;. quit "RTN","SAMIHOM4",1098,0) ; "RTN","SAMIHOM4",1099,0) new dfn s dfn=$get(vars("dfn")) "RTN","SAMIHOM4",1100,0) ;if dfn="" do quit ; "RTN","SAMIHOM4",1101,0) ;. new r1 "RTN","SAMIHOM4",1102,0) ;. do GETHOME(.r1,.ARGS) ; home page to redisplay "RTN","SAMIHOM4",1103,0) ;. merge RESULT=r1 "RTN","SAMIHOM4",1104,0) ;. quit "RTN","SAMIHOM4",1105,0) ; "RTN","SAMIHOM4",1106,0) ; new gien set gien=$$NEXTNUM "RTN","SAMIHOM4",1107,0) new gien set gien=dfn "RTN","SAMIHOM4",1108,0) ; "RTN","SAMIHOM4",1109,0) merge ^SAMIUL("newCase","G1")=root "RTN","SAMIHOM4",1110,0) ; create dfn index "RTN","SAMIHOM4",1111,0) set @root@("dfn",dfn,gien)="" "RTN","SAMIHOM4",1112,0) ; "RTN","SAMIHOM4",1113,0) set @root@(gien,"saminum")=gien "RTN","SAMIHOM4",1114,0) set @root@(gien,"saminame")=saminame "RTN","SAMIHOM4",1115,0) ; "RTN","SAMIHOM4",1116,0) new studyid set studyid=$$GENSTDID^SAMIHOM3(gien,.SAMIARGS) "RTN","SAMIHOM4",1117,0) set @root@(gien,"samistudyid")=studyid "RTN","SAMIHOM4",1118,0) set @root@("sid",studyid,gien)="" "RTN","SAMIHOM4",1119,0) ; "RTN","SAMIHOM4",1120,0) new datekey set datekey=$$KEYDATE^SAMIHOM3($$NOW^XLFDT) "RTN","SAMIHOM4",1121,0) set @root@(gien,"samicreatedate")=datekey "RTN","SAMIHOM4",1122,0) ; "RTN","SAMIHOM4",1123,0) merge ^SAMIUL("newCase",gien)=@root@(gien) "RTN","SAMIHOM4",1124,0) ; "RTN","SAMIHOM4",1125,0) ; "RTN","SAMIHOM4",1126,0) do PREFILL^SAMIHOM3(dfn) ; prefills from the "patient-lookup" graph "RTN","SAMIHOM4",1127,0) ; "RTN","SAMIHOM4",1128,0) new siformkey "RTN","SAMIHOM4",1129,0) ; do makeSbform(gien) ; create background form for new patient "RTN","SAMIHOM4",1130,0) set siformkey=$$MKSIFORM^SAMIHOM3(gien) ; create intake for new patient "RTN","SAMIHOM4",1131,0) ; "RTN","SAMIHOM4",1132,0) set SAMIARGS("studyid")=studyid "RTN","SAMIHOM4",1133,0) set SAMIARGS("form")="vapals:"_siformkey "RTN","SAMIHOM4",1134,0) do wsGetForm^%wf(.SAMIRESULT,.SAMIARGS) "RTN","SAMIHOM4",1135,0) ; do WSCASE^SAMICASE(.SAMIRESULT,.SAMIARGS) ; navigate to case review page "RTN","SAMIHOM4",1136,0) ; "RTN","SAMIHOM4",1137,0) ; "RTN","SAMIHOM4",1138,0) ;@stanza 3 termination "RTN","SAMIHOM4",1139,0) ; "RTN","SAMIHOM4",1140,0) quit ; end of wri WSNEWCAS^SAMIHOM3 "RTN","SAMIHOM4",1141,0) ; "RTN","SAMIHOM4",1142,0) ; "RTN","SAMIHOM4",1143,0) ; "RTN","SAMIHOM4",1144,0) EOR ; end of routine SAMIHOM4 "RTN","SAMIHUL") 0^9^B114424 "RTN","SAMIHUL",1,0) SAMIHUL ;ven/gpl - ielcap: home page log ;2021-11-18t22:23z "RTN","SAMIHUL",2,0) ;;18.0;SAMI;**9,12,15,16**;2020-01;Build 3 "RTN","SAMIHUL",3,0) ;18-15 "RTN","SAMIHUL",4,0) ; "RTN","SAMIHUL",5,0) ; SAMIHOM3 contains subroutines for producing the ELCAP Home Page. "RTN","SAMIHUL",6,0) ; SAMIHUL contains the development log for the SAMIHOM* routines. "RTN","SAMIHUL",7,0) ; It contains no executable code. "RTN","SAMIHUL",8,0) ; "RTN","SAMIHUL",9,0) quit ; no entry from top "RTN","SAMIHUL",10,0) ; "RTN","SAMIHUL",11,0) ; "RTN","SAMIHUL",12,0) ; "RTN","SAMIHUL",13,0) ;@section 0 primary development "RTN","SAMIHUL",14,0) ; "RTN","SAMIHUL",15,0) ; "RTN","SAMIHUL",16,0) ; "RTN","SAMIHUL",17,0) ;@routine-credits "RTN","SAMIHUL",18,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMIHUL",19,0) ; gpl@vistaexpertise.net "RTN","SAMIHUL",20,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIHUL",21,0) ; http://vistaexpertise.net "RTN","SAMIHUL",22,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMIHUL",23,0) ;@license see routine SAMIUL "RTN","SAMIHUL",24,0) ; "RTN","SAMIHUL",25,0) ;@last-update 2021-11-18t22:23z "RTN","SAMIHUL",26,0) ;@application Screening Applications Management (SAM) "RTN","SAMIHUL",27,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIHUL",28,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIHUL",29,0) ;@version 18-15 "RTN","SAMIHUL",30,0) ;@release-date 2020-01 "RTN","SAMIHUL",31,0) ;@patch-list **9,12,15,16** "RTN","SAMIHUL",32,0) ; "RTN","SAMIHUL",33,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMIHUL",34,0) ; toad@vistaexpertise.net "RTN","SAMIHUL",35,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMIHUL",36,0) ; mcglk@vistaexpertise.net "RTN","SAMIHUL",37,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMIHUL",38,0) ; linda.yaw@vistaexpertise.net "RTN","SAMIHUL",39,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMIHUL",40,0) ; larry.g.carlson@gmail.com "RTN","SAMIHUL",41,0) ;@dev-add Alexis R. Carlson (arc) "RTN","SAMIHUL",42,0) ; whatisthehumanspirit@gmail.com "RTN","SAMIHUL",43,0) ;@dev-add Domenick DiNatale (ddn) "RTN","SAMIHUL",44,0) ; domenic@intellitechinnovations.com "RTN","SAMIHUL",45,0) ; "RTN","SAMIHUL",46,0) ;@module-credits "RTN","SAMIHUL",47,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMIHUL",48,0) ; (VA-PALS) "RTN","SAMIHUL",49,0) ; http://va-pals.org/ "RTN","SAMIHUL",50,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMIHUL",51,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMIHUL",52,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMIHUL",53,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMIHUL",54,0) ;@partner-org International Early Lung Cancer Action Program (I-ELCAP) "RTN","SAMIHUL",55,0) ; http://ielcap.com/ "RTN","SAMIHUL",56,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMIHUL",57,0) ; http://paraxialtech.com/ "RTN","SAMIHUL",58,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMIHUL",59,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMIHUL",60,0) ; "RTN","SAMIHUL",61,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIHUL",62,0) ; "RTN","SAMIHUL",63,0) ; 2018-01-13 ven/gpl 18.0-t4 "RTN","SAMIHUL",64,0) ; SAMIHOM3 create routine from SAMIFRM to implement ELCAP Home Page. "RTN","SAMIHUL",65,0) ; "RTN","SAMIHUL",66,0) ; 2018-02-05 ven/toad 18.0-t4 "RTN","SAMIHUL",67,0) ; SAMIHOM3 update license & attribution & hdr comments, add white "RTN","SAMIHUL",68,0) ; space & do-dot quits, spell out language elements. "RTN","SAMIHUL",69,0) ; "RTN","SAMIHUL",70,0) ; 2018-02-27 ven/gpl 18.0-t4 "RTN","SAMIHUL",71,0) ; SAMIHOM3 new subroutines PREFIX,GETHOME,SCANFOR,WSNEWCAS,PREFILL, "RTN","SAMIHUL",72,0) ; MKSBFORM,MKSIFORM,VALDTNM,SID2NUM,KEYDATE,GENSTDID,NEXTNUM to "RTN","SAMIHUL",73,0) ; support creation of new cases. "RTN","SAMIHUL",74,0) ; "RTN","SAMIHUL",75,0) ; 2018-03-01 ven/toad 18.0-t4 "RTN","SAMIHUL",76,0) ; SAMIHOM3 refactor & reorganize new code, add hdr comments, "RTN","SAMIHUL",77,0) ; r/findReplaceAll^%wf w/findReplace^%ts. "RTN","SAMIHUL",78,0) ; "RTN","SAMIHUL",79,0) ; 2018-03-06 ven/gpl 18.0-t4 "RTN","SAMIHUL",80,0) ; SAMIHOM3 ? "RTN","SAMIHUL",81,0) ; "RTN","SAMIHUL",82,0) ; 2018-03-07 ven/toad 18.0-t4 "RTN","SAMIHUL",83,0) ; SAMIHOM3 in $$SID2NUM add WSNUFORM^SAMICASE to called-by; in "RTN","SAMIHUL",84,0) ; keyDate,GETHOME update called-by. "RTN","SAMIHUL",85,0) ; "RTN","SAMIHUL",86,0) ; 2018-05-18/25 ven/lgc&arc 18.0-t4 76020fd,81b1048,65afd99 "RTN","SAMIHUL",87,0) ; SAMIHOM3 new SAMIHOM3 for new patient search page, chg submit "RTN","SAMIHUL",88,0) ; processing on forms, fix bug in postform. "RTN","SAMIHUL",89,0) ; "RTN","SAMIHUL",90,0) ; 2018-06-14/07-10 ven/lgc&arc 18.0-t4 d71f4fe,8b0a432,ce345db, "RTN","SAMIHUL",91,0) ; 402b6a8,14f991d,2e9662b "RTN","SAMIHUL",92,0) ; SAMIHOM3 make background form optional; 1st version of CT Eval "RTN","SAMIHUL",93,0) ; Report; reorg ctreport routines & 1st crack at impressions & "RTN","SAMIHUL",94,0) ; recommendations; note produced for intake form on submit; add "RTN","SAMIHUL",95,0) ; support for routing by patient in CPRS Tools Menu, modify "RTN","SAMIHUL",96,0) ; wsHOME^SAMIHOM3 to properly route VA-PALS web app when launced via "RTN","SAMIHUL",97,0) ; CPRS Tools Menu; repair SAMIHOM3 & redact report link. "RTN","SAMIHUL",98,0) ; "RTN","SAMIHUL",99,0) ; 2018-08-22 ven/gpl 18.0-t4 6e696a9 "RTN","SAMIHUL",100,0) ; SAMIHOM3 add PTINFO call to vista to pull ssn. "RTN","SAMIHUL",101,0) ; "RTN","SAMIHUL",102,0) ; 2018-09-30/11-01 ven/lgc&arc 18.0-t4 d93c640,482f522,a8e4226, "RTN","SAMIHUL",103,0) ; ee5e8a1 "RTN","SAMIHUL",104,0) ; SAMIHOM3 hdr & prefill of intake; new input form features, report "RTN","SAMIHUL",105,0) ; menu fix; set urban/rural status at siform setup; handle zip code "RTN","SAMIHUL",106,0) ; unknown. "RTN","SAMIHUL",107,0) ; "RTN","SAMIHUL",108,0) ; 2018-11-09/2019-01-22 ven/lgc&arc&lmry 18.0-t4 bac4f73,5400035, "RTN","SAMIHUL",109,0) ; dd341e0,a953946,e2a44e6,2356c2b,3ceb74b,3088307,4271b46,7a5d340, "RTN","SAMIHUL",110,0) ; dfbb0bc,fd1bcee,8dd6f34,51eb163,dbdb5a4,0880027,ccba017,5368121 "RTN","SAMIHUL",111,0) ; SAMIHOM3 unit tests, annotation, sac compliance, XINDEX bugs, fix "RTN","SAMIHUL",112,0) ; accidental reversions, add license info. "RTN","SAMIHUL",113,0) ; "RTN","SAMIHUL",114,0) ; 2018-12-18/20 ven/arc 18.0-t4 3088307f,4271b46b,dfbb0bca, "RTN","SAMIHUL",115,0) ; b8ff6da9,fd1bceee "RTN","SAMIHUL",116,0) ; SAMIHOM4 va sac compliance & variable namespacing. "RTN","SAMIHUL",117,0) ; "RTN","SAMIHUL",118,0) ; 2019-01-01/02-18 ven/lgc 18.0-t4 0880027c,18aa0fec,fcd635c1, "RTN","SAMIHUL",119,0) ; 53681219,76874314 "RTN","SAMIHUL",120,0) ; SAMIHOM3 update w/ recent changes. "RTN","SAMIHUL",121,0) ; SAMIHOM4 updates for va sac & code coverage, add license info. "RTN","SAMIHUL",122,0) ; "RTN","SAMIHUL",123,0) ; 2019-04-15 ven/gpl 18.0-t4 b403bf01 "RTN","SAMIHUL",124,0) ; SAMIHOM4 support for new intake notes. "RTN","SAMIHUL",125,0) ; "RTN","SAMIHUL",126,0) ; 2019-04-16 ven/lgc 18.0-t4 e54b76d1 "RTN","SAMIHUL",127,0) ; SAMIHOM4 update for SAMIFORM project. "RTN","SAMIHUL",128,0) ; "RTN","SAMIHUL",129,0) ; 2019-04-17 ven/gpl 18.0-t4 7d1f86db "RTN","SAMIHUL",130,0) ; SAMIHOM3 prefill date on intake prelim discussion section. "RTN","SAMIHUL",131,0) ; "RTN","SAMIHUL",132,0) ; 2019-06-18 ven/arc 18.0-t4 91022482 "RTN","SAMIHUL",133,0) ; SAMIHOM4 switch fr/global ^SAMIGPL to/^SAMIUL. "RTN","SAMIHUL",134,0) ; "RTN","SAMIHUL",135,0) ; 2019-08-05 ven/gpl 18.0-t4 9c0c2ed3 "RTN","SAMIHUL",136,0) ; SAMIHOM3 add GETPRFX to get right prefix at registration. "RTN","SAMIHUL",137,0) ; "RTN","SAMIHUL",138,0) ; 2019-08-07 ven/lgc&arc 18.0-t4 603194b9,37967fc5 "RTN","SAMIHUL",139,0) ; SAMIHOM3 consolidate calls to retrieve facility prefix. "RTN","SAMIHUL",140,0) ; "RTN","SAMIHUL",141,0) ; 2019-11-22 par/ddn 18.0-t4 b2cc389d vap-458 "RTN","SAMIHUL",142,0) ; SAMIHOM4 manual registration. "RTN","SAMIHUL",143,0) ; "RTN","SAMIHUL",144,0) ; 2020-01-01/05 ven/lgc 18.0-t4 c169f4b1,5928064a,62e3200f "RTN","SAMIHUL",145,0) ; SAMIHOM4 support for unmatched patient processing, more changes "RTN","SAMIHUL",146,0) ; for participant matching, unmatched participant processing ready "RTN","SAMIHUL",147,0) ; for testing. "RTN","SAMIHUL",148,0) ; "RTN","SAMIHUL",149,0) ; 2020-01-08/10 ven/gpl 18.0 a002f850,47dfe3cd "RTN","SAMIHUL",150,0) ; SAMIHOM4 bug fix for unmatched processing, turn off & on manual "RTN","SAMIHUL",151,0) ; registration link on home page. "RTN","SAMIHUL",152,0) ; "RTN","SAMIHUL",153,0) ; 2020-01-10 ven/gpl 18.0 4c8e6ebc,76b465cb "RTN","SAMIHUL",154,0) ; SAMIHOM4 3 quits with returns for cache. "RTN","SAMIHUL",155,0) ; "RTN","SAMIHUL",156,0) ; 2020-01-16 ven/lgc 18.0 0a2af965 "RTN","SAMIHUL",157,0) ; SAMIHOM4 bulk commit due to switch to cache. "RTN","SAMIHUL",158,0) ; "RTN","SAMIHUL",159,0) ; 2020-01-17/20 ven/lgc 18.1 8557207f,dc5f618c "RTN","SAMIHUL",160,0) ; SAMIHOM4 followup note, limit to one note per followup form. "RTN","SAMIHUL",161,0) ; "RTN","SAMIHUL",162,0) ; 2020-02-01/02 ven/lgc 18.4 3065146d,36ae0ed1 "RTN","SAMIHUL",163,0) ; SAMIHOM4 set options for text based ctreport, switch default "RTN","SAMIHUL",164,0) ; ctreport to text. "RTN","SAMIHUL",165,0) ; "RTN","SAMIHUL",166,0) ; 2020-04-02/11 ven/gpl 18.5 d36b7cad,36607664,befde317,56bfaed6, "RTN","SAMIHUL",167,0) ; 666f5b91,2f2c29c1 "RTN","SAMIHUL",168,0) ; SAMIHOM3 multitenancy; in GENSTDID add ARG param, determin prefix "RTN","SAMIHUL",169,0) ; from site or siteid (ARG) instead of calling $$GETPRFX^SAMIFORM. "RTN","SAMIHUL",170,0) ; SAMIHOM4 multitenancy + fix bug in WSVAPALS. "RTN","SAMIHUL",171,0) ; "RTN","SAMIHUL",172,0) ; 2020-04-18/05-07 ven/gpl 18.5 29d7dba7,d55de214,521e0bdc,d018f52e, "RTN","SAMIHUL",173,0) ; 476b2ff4,61c7d208 "RTN","SAMIHUL",174,0) ; SAMIHOM4 fix bug & weird error in manual registration, fix bug in "RTN","SAMIHUL",175,0) ; logout, logout working, superuser site selection, worklist "RTN","SAMIHUL",176,0) ; functionality. "RTN","SAMIHUL",177,0) ; "RTN","SAMIHUL",178,0) ; 2020-08-06 ven/gpl 18.6 781744c3 "RTN","SAMIHUL",179,0) ; SAMIHOM4 changes to support hl7 transmission of notes. "RTN","SAMIHUL",180,0) ; "RTN","SAMIHUL",181,0) ; 2020-09-22 ven/gpl 18.9 06459eda "RTN","SAMIHUL",182,0) ; SAMIHOM4 correct to match kids file. "RTN","SAMIHUL",183,0) ; "RTN","SAMIHUL",184,0) ; 2021-03-02 ven/gpl 18.9 479dc041 "RTN","SAMIHUL",185,0) ; SAMIHOM4 return error message if no ct eval form exists when "RTN","SAMIHUL",186,0) ; generating a fu note. "RTN","SAMIHUL",187,0) ; "RTN","SAMIHUL",188,0) ; 2021-03-11 ven/toad 18.9 a46a2cc1 "RTN","SAMIHUL",189,0) ; SAMIHUL create routine. "RTN","SAMIHUL",190,0) ; SAMIHOM4 bump date & patch list, add contents, lt refactor. "RTN","SAMIHUL",191,0) ; "RTN","SAMIHUL",192,0) ; 2021-03-17 ven/toad 18.9 "RTN","SAMIHUL",193,0) ; SAMIHOM4 remove blank from end of 1 line. "RTN","SAMIHUL",194,0) ; "RTN","SAMIHUL",195,0) ; 2021-05-29 ven/gpl 18.12-t2 59ea0811 "RTN","SAMIHUL",196,0) ; SAMIHOM3 in SID2NUM look up by pien instead of relying on sid "RTN","SAMIHUL",197,0) ; containing pien. "RTN","SAMIHUL",198,0) ; "RTN","SAMIHUL",199,0) ; 2021-06-15 ven/gpl 18.12-t2 e247ea59 "RTN","SAMIHUL",200,0) ; SAMIHOM4 eliminate icn. "RTN","SAMIHUL",201,0) ; "RTN","SAMIHUL",202,0) ; 2021-06-15/16 ven/mcglk&toad 18.12-t2 cbf7e46b,fa794d60 "RTN","SAMIHUL",203,0) ; SAMIHOM3 move log to SAMIHUL, bump dates & versions, annotate, "RTN","SAMIHUL",204,0) ; reorg, lt refactor. "RTN","SAMIHUL",205,0) ; SAMIHOM4 bump dates & versions; begin annotate, reorg, lt refactor "RTN","SAMIHUL",206,0) ; but interrupted by addition of critical fix to patch & bronchitis, "RTN","SAMIHUL",207,0) ; so leave refactor unfinished (but stable as far as it went). "RTN","SAMIHUL",208,0) ; SAMIUTH3 bump dates & versions, lt refactor, add COVER, in UTSCAN4 "RTN","SAMIHUL",209,0) ; fix $random bug, but after discovering the SAMI test suite is so "RTN","SAMIHUL",210,0) ; far out of date that it fails catastrophically with thousands of "RTN","SAMIHUL",211,0) ; errors, back out changes and leave as it was. "RTN","SAMIHUL",212,0) ; "RTN","SAMIHUL",213,0) ; 2021-08-01 ven/gpl 18.12 5bd7c627 "RTN","SAMIHUL",214,0) ; SAMIHOM3 set intake form to incomplete on creation: in MKSIFORM "RTN","SAMIHUL",215,0) ; r/complete w/incomplete. "RTN","SAMIHUL",216,0) ; "RTN","SAMIHUL",217,0) ; 2021-09-20/23 ven/gpl 18-x-16 db1b173a,465b009d "RTN","SAMIHUL",218,0) ; SAMIHOM4 (with new routine SAMIZPH1) developed to import data from "RTN","SAMIHUL",219,0) ; Philadelphia VA's previous LCS database in Red Cap, bump dates & versions. "RTN","SAMIHUL",220,0) ; "RTN","SAMIHUL",221,0) ; 2021-9-24 ven/lmry 18-16 465b009d "RTN","SAMIHUL",222,0) ; SAMIHOM4 bumped versions and dates "RTN","SAMIHUL",223,0) ; "RTN","SAMIHUL",224,0) ; 2021-10-19 ven/gpl 18-15 138d45e5 "RTN","SAMIHUL",225,0) ; SAMIHOM4 parameterize veteran vs participant or candidate for notes "RTN","SAMIHUL",226,0) ; "RTN","SAMIHUL",227,0) ; 2021-10-29 ven/lmry 18-15 4267917c "RTN","SAMIHUL",228,0) ; SAMIHOM4 and SAMIHUL bumped versions and dates "RTN","SAMIHUL",229,0) ; "RTN","SAMIHUL",230,0) ; 2021-11-01 ven/gpl 18-15 e4722e8f0 "RTN","SAMIHUL",231,0) ; SAMIHOM4 prevent using SYS as a site "RTN","SAMIHUL",232,0) ; "RTN","SAMIHUL",233,0) ; 2021-11-09 ven/gpl 18-15 34367ef0 "RTN","SAMIHUL",234,0) ; SAMIHOM4 change GETHOME to cut off GET requests "RTN","SAMIHUL",235,0) ; "RTN","SAMIHUL",236,0) ; 2021-11-10 ven/gpl 18-15 ed2a3480 "RTN","SAMIHUL",237,0) ; SAMIHOM4 support for samiroute=about points to vapals:about "RTN","SAMIHUL",238,0) ; "RTN","SAMIHUL",239,0) ; 2021-11-18 ven/lmry 18-15 "RTN","SAMIHUL",240,0) ; SAMIHOM4 and SAMIHUL bumped versions and dates "RTN","SAMIHUL",241,0) ; "RTN","SAMIHUL",242,0) ; "RTN","SAMIHUL",243,0) ;@contents "RTN","SAMIHUL",244,0) ; SAMIHOM3 homepage interface library "RTN","SAMIHUL",245,0) ; SAMIHOM4 homepage subroutines "RTN","SAMIHUL",246,0) ; SAMIHUL homepage development log "RTN","SAMIHUL",247,0) ; SAMIUTH3 tests for SAMIHOM3 "RTN","SAMIHUL",248,0) ; SAMIUTH4 tests for SAMIHOM4 "RTN","SAMIHUL",249,0) ; "RTN","SAMIHUL",250,0) ; "RTN","SAMIHUL",251,0) ; "RTN","SAMIHUL",252,0) EOR ; end of routine SAMIHUL "RTN","SAMIMOV") 0^10^B53328513 "RTN","SAMIMOV",1,0) SAMIMOV ;ven/gpl - VAPALS CHANGE PATIENT SITE ; 2021-10-29t23:29z "RTN","SAMIMOV",2,0) ;;18.0;SAMI;**7,15**;;Build 3 "RTN","SAMIMOV",3,0) ;;18-15 "RTN","SAMIMOV",4,0) ; "RTN","SAMIMOV",5,0) ;@license: see routine SAMIUL "RTN","SAMIMOV",6,0) ; "RTN","SAMIMOV",7,0) ; allow fallthrough "RTN","SAMIMOV",8,0) ; "RTN","SAMIMOV",9,0) ; "RTN","SAMIMOV",10,0) ;@section 0 primary development "RTN","SAMIMOV",11,0) ; "RTN","SAMIMOV",12,0) ; "RTN","SAMIMOV",13,0) ; "RTN","SAMIMOV",14,0) ;@routine-credits "RTN","SAMIMOV",15,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMIMOV",16,0) ; gpl@vistaexpertise.net "RTN","SAMIMOV",17,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIMOV",18,0) ; http://vistaexpertise.net "RTN","SAMIMOV",19,0) ;@copyright 2021, gpl, all rights reserved "RTN","SAMIMOV",20,0) ;@license see routine SAMIUL "RTN","SAMIMOV",21,0) ; "RTN","SAMIMOV",22,0) ;@last-update 2021-10-29t23:29z "RTN","SAMIMOV",23,0) ;@application Screening Applications Management (SAM) "RTN","SAMIMOV",24,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIMOV",25,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIMOV",26,0) ;@version 18.15 "RTN","SAMIMOV",27,0) ;@release-date 2020-01 "RTN","SAMIMOV",28,0) ;@patch-list **7,15** "RTN","SAMIMOV",29,0) ; "RTN","SAMIMOV",30,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMIMOV",31,0) ; toad@vistaexpertise.net "RTN","SAMIMOV",32,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMIMOV",33,0) ; mcglk@vistaexpertise.net "RTN","SAMIMOV",34,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMIMOV",35,0) ; linda.yaw@vistaexpertise.net "RTN","SAMIMOV",36,0) ; "RTN","SAMIMOV",37,0) ;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIMOV",38,0) ; 2020-08-24 ven/gpl 18-7 915b85e6 "RTN","SAMIMOV",39,0) ; SAMIMOV create utility to change patient site "RTN","SAMIMOV",40,0) ; 2020-09-03 ven/gpl 5ae08772 "RTN","SAMIMOV",41,0) ; SAMIMOV upgrade CHANGE SITE to handle patients without forms ... also "RTN","SAMIMOV",42,0) ; AUDIT report "RTN","SAMIMOV",43,0) ; 2020-09-07 ven/gpl 498e57d5 "RTN","SAMIMOV",44,0) ; SAMIMOV tweeking the audit report "RTN","SAMIMOV",45,0) ; 2020-12-11 ven/gpl 92138cdb "RTN","SAMIMOV",46,0) ; 2021-10-26 ven/gpl 18-15 d12b1b10 "RTN","SAMIMOV",47,0) ; SAMIMOV parameter detection routine for identifying VA systems "RTN","SAMIMOV",48,0) ; 2021-10-29 ven/lmry 18-15 "RTN","SAMIMOV",49,0) ; SAMIMOV insert section 0, bump versions and dates, added semicolon after "RTN","SAMIMOV",50,0) ; PICSITE for XINDEX "RTN","SAMIMOV",51,0) ; "RTN","SAMIMOV",52,0) ;@contents "RTN","SAMIMOV",53,0) ; EN entry point to change a patient's site "RTN","SAMIMOV",54,0) ; MOV change patient PAT from site FROM to site TO "RTN","SAMIMOV",55,0) ; SETSID propogate the new sid to all forms "RTN","SAMIMOV",56,0) ; PICPAT pick a patient in site SITE "RTN","SAMIMOV",57,0) ; PICSITE() "RTN","SAMIMOV",58,0) ; AUDIT() "RTN","SAMIMOV",59,0) ; outaudit(rpt,ln) "RTN","SAMIMOV",60,0) ; "RTN","SAMIMOV",61,0) ; "RTN","SAMIMOV",62,0) ; "RTN","SAMIMOV",63,0) ; "RTN","SAMIMOV",64,0) ;@section 1 subroutines "RTN","SAMIMOV",65,0) ; "RTN","SAMIMOV",66,0) EN ; entry point to change a patient's site "RTN","SAMIMOV",67,0) ; "RTN","SAMIMOV",68,0) n FROM,TO,PAT "RTN","SAMIMOV",69,0) W !,"Pick the FROM Site -" "RTN","SAMIMOV",70,0) S FROM=$$PICSITE() "RTN","SAMIMOV",71,0) IF FROM="^" Q ; "RTN","SAMIMOV",72,0) ; "RTN","SAMIMOV",73,0) W !,"Pick the TO Site -" "RTN","SAMIMOV",74,0) S TO=$$PICSITE() "RTN","SAMIMOV",75,0) IF TO="^" Q ; "RTN","SAMIMOV",76,0) ; "RTN","SAMIMOV",77,0) D PICPAT(.PAT,FROM) "RTN","SAMIMOV",78,0) I $G(PAT("name"))="" D Q ; "RTN","SAMIMOV",79,0) . W !,"No patient selected, canceling" "RTN","SAMIMOV",80,0) K DIR "RTN","SAMIMOV",81,0) S DIR("A")="Confirm change site of patient "_PAT("name")_" from "_FROM_" to "_TO "RTN","SAMIMOV",82,0) S DIR(0)="Y" "RTN","SAMIMOV",83,0) D ^DIR "RTN","SAMIMOV",84,0) ; "RTN","SAMIMOV",85,0) I Y'=1 D Q ; "RTN","SAMIMOV",86,0) . W !,"Cancel, no change made" "RTN","SAMIMOV",87,0) ; "RTN","SAMIMOV",88,0) do MOV(.PAT,FROM,TO) "RTN","SAMIMOV",89,0) q "RTN","SAMIMOV",90,0) ; "RTN","SAMIMOV",91,0) MOV(PAT,FROM,TO) ; change patient PAT from site FROM to site TO "RTN","SAMIMOV",92,0) ; "RTN","SAMIMOV",93,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMIMOV",94,0) n lroot s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIMOV",95,0) n dfn s dfn=$g(PAT("dfn")) "RTN","SAMIMOV",96,0) i dfn="" d q ; "RTN","SAMIMOV",97,0) . w !,"Error, patient not valid" "RTN","SAMIMOV",98,0) n lien "RTN","SAMIMOV",99,0) s lien=$o(@lroot@("dfn",dfn,"")) "RTN","SAMIMOV",100,0) i $g(@lroot@(lien,"siteid"))'=FROM d q ; "RTN","SAMIMOV",101,0) . w !,"Error, from site not valid for patient" "RTN","SAMIMOV",102,0) ; "RTN","SAMIMOV",103,0) n pien s pien=$o(@root@("dfn",dfn,"")) "RTN","SAMIMOV",104,0) i pien="" d q ; "RTN","SAMIMOV",105,0) . w !,"Patient has no forms" "RTN","SAMIMOV",106,0) . s @lroot@(lien,"siteid")=TO "RTN","SAMIMOV",107,0) . w !,"Change successful" "RTN","SAMIMOV",108,0) ; "RTN","SAMIMOV",109,0) n oldsid s oldsid=$g(@root@(pien,"studyid")) "RTN","SAMIMOV",110,0) i oldsid="" s oldsid=$g(@root@(pien,"samistudyid")) "RTN","SAMIMOV",111,0) w !,"oldsid=",oldsid "RTN","SAMIMOV",112,0) i oldsid="" d q ; "RTN","SAMIMOV",113,0) . w !,"Error studyid not found" "RTN","SAMIMOV",114,0) ;b "RTN","SAMIMOV",115,0) s @lroot@(lien,"siteid")=TO "RTN","SAMIMOV",116,0) s PAT("siteid")=TO "RTN","SAMIMOV",117,0) k @root@("sid",oldsid,pien) ; remove sid index "RTN","SAMIMOV",118,0) ; "RTN","SAMIMOV",119,0) n newsid s newsid=$$GENSTDID^SAMIHOM3(dfn,.PAT) "RTN","SAMIMOV",120,0) s @lroot@(lien,"studyid")=newsid "RTN","SAMIMOV",121,0) s @root@(pien,"studyid")=newsid "RTN","SAMIMOV",122,0) s @root@(pien,"sisid")=newsid "RTN","SAMIMOV",123,0) s @root@(pien,"samistudyid")=newsid "RTN","SAMIMOV",124,0) s @root@("sid",newsid,pien)="" "RTN","SAMIMOV",125,0) ; "RTN","SAMIMOV",126,0) w !,"New studyid = "_newsid "RTN","SAMIMOV",127,0) m @root@("graph",newsid)=@root@("graph",oldsid) "RTN","SAMIMOV",128,0) d SETSID(newsid) ;propogate the new sid to all forms "RTN","SAMIMOV",129,0) k @root@("graph",oldsid) "RTN","SAMIMOV",130,0) w !,"Change successful" "RTN","SAMIMOV",131,0) ; "RTN","SAMIMOV",132,0) q "RTN","SAMIMOV",133,0) ; "RTN","SAMIMOV",134,0) SETSID(newsid) ; propogate the new sid to all forms "RTN","SAMIMOV",135,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMIMOV",136,0) n zi s zi="" "RTN","SAMIMOV",137,0) f s zi=$o(@root@("graph",newsid,zi)) q:zi="" d ; "RTN","SAMIMOV",138,0) . s @root@("graph",newsid,zi,"samistudyid")=newsid "RTN","SAMIMOV",139,0) . s @root@("graph",newsid,zi,"studyid")=newsid "RTN","SAMIMOV",140,0) . s @root@("graph",newsid,zi,"sisid")=newsid "RTN","SAMIMOV",141,0) q "RTN","SAMIMOV",142,0) ; "RTN","SAMIMOV",143,0) PICPAT(PATRTN,SITE) ; pick a patient in site SITE "RTN","SAMIMOV",144,0) ; "RTN","SAMIMOV",145,0) N FILTER,LIST,X,Y "RTN","SAMIMOV",146,0) I $G(SITE)="" S SITE="*" "RTN","SAMIMOV",147,0) S FILTER("site")=$G(SITE) "RTN","SAMIMOV",148,0) S FILTER("format")="array" "RTN","SAMIMOV",149,0) ; "RTN","SAMIMOV",150,0) new DIR set DIR(0)="F^1:120" ; free text "RTN","SAMIMOV",151,0) set DIR("A")="Patient name: " ; prompt "RTN","SAMIMOV",152,0) set DIR("B")="""" ; default "RTN","SAMIMOV",153,0) ; "RTN","SAMIMOV",154,0) d ^DIR "RTN","SAMIMOV",155,0) ; "RTN","SAMIMOV",156,0) S FILTER("search")=Y "RTN","SAMIMOV",157,0) D WSPTLKUP^SAMIPTLK(.LIST,.FILTER) "RTN","SAMIMOV",158,0) ;ZWR LIST(:,:,"name") "RTN","SAMIMOV",159,0) ; "RTN","SAMIMOV",160,0) N LCNT S LCNT=$O(LIST("result",""),-1) "RTN","SAMIMOV",161,0) Q:+LCNT=0 "RTN","SAMIMOV",162,0) S Y=1 "RTN","SAMIMOV",163,0) I LCNT>1 D ; more than one in the list "RTN","SAMIMOV",164,0) . K DIR "RTN","SAMIMOV",165,0) . N ZI S ZI=0 "RTN","SAMIMOV",166,0) . S DIR("A")="Select the patient" "RTN","SAMIMOV",167,0) . F S ZI=$O(LIST("result",ZI)) Q:+ZI=0 D ; "RTN","SAMIMOV",168,0) . . S DIR("A",ZI)=ZI_" "_LIST("result",ZI,"name")_" "_LIST("result",ZI,"last5") "RTN","SAMIMOV",169,0) . S DIR(0)="N^1:"_LCNT_":0" "RTN","SAMIMOV",170,0) . D ^DIR "RTN","SAMIMOV",171,0) . ;W !,"Y=",Y "RTN","SAMIMOV",172,0) I +Y>0 M PATRTN=LIST("result",Y) "RTN","SAMIMOV",173,0) q "RTN","SAMIMOV",174,0) ; "RTN","SAMIMOV",175,0) PICSITE() ; "RTN","SAMIMOV",176,0) ; "RTN","SAMIMOV",177,0) ; pick a site "RTN","SAMIMOV",178,0) N X,Y,DIC,SITEIEN,SITEID "RTN","SAMIMOV",179,0) S DIC=311.12 "RTN","SAMIMOV",180,0) S DIC(0)="AEMQ" "RTN","SAMIMOV",181,0) D ^DIC "RTN","SAMIMOV",182,0) I Y<1 Q ; EXIT "RTN","SAMIMOV",183,0) S SITENUM=$P(Y,"^",2) "RTN","SAMIMOV",184,0) S SITEID=$$SITEID^SAMISITE(SITENUM) "RTN","SAMIMOV",185,0) Q SITEID "RTN","SAMIMOV",186,0) ; "RTN","SAMIMOV",187,0) AUDIT() ; "RTN","SAMIMOV",188,0) ; "RTN","SAMIMOV",189,0) n proot s proot=$$setroot^%wd("vapals-patients") "RTN","SAMIMOV",190,0) n lroot s lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIMOV",191,0) n rpt s rpt=$na(^TMP("SAMIAUDIT",$J)) "RTN","SAMIMOV",192,0) k @rpt "RTN","SAMIMOV",193,0) d outaudit(rpt,"cdate NAME lien dfn site PNAME pien pdfn sid") "RTN","SAMIMOV",194,0) n ln,lname,lien,cdate,pname,pien,ldfn,pdfn,site,sid "RTN","SAMIMOV",195,0) s (ln,lname,lien,site,cdate,pname,pien,ldfn,pdfn,sid)="" "RTN","SAMIMOV",196,0) n zi s zi=" " "RTN","SAMIMOV",197,0) f s zi=$o(@lroot@(zi),-1) q:+zi=0 d ; "RTN","SAMIMOV",198,0) . s lien=zi "RTN","SAMIMOV",199,0) . s site=$g(@lroot@(zi,"siteid")) "RTN","SAMIMOV",200,0) . s lname=$g(@lroot@(zi,"saminame")) "RTN","SAMIMOV",201,0) . s ldfn=$g(@lroot@(zi,"dfn")) "RTN","SAMIMOV",202,0) . i ldfn="" d q ; "RTN","SAMIMOV",203,0) . . ;d ^ZTER "RTN","SAMIMOV",204,0) . . w !,"error ",zi "RTN","SAMIMOV",205,0) . . s ln="error, missing dfn lien="_lien "RTN","SAMIMOV",206,0) . . s ln=ln_" "_$g(@lroot@(zi,"saminame")) "RTN","SAMIMOV",207,0) . . d outaudit(rpt,ln) "RTN","SAMIMOV",208,0) . . s ln="" "RTN","SAMIMOV",209,0) . i $o(@lroot@("dfn",ldfn,""))'=lien d ; "RTN","SAMIMOV",210,0) . . w !,"error in dfn index dfn="_ldfn_" lien="_lien "RTN","SAMIMOV",211,0) . s pien=$o(@proot@("dfn",ldfn,"")) "RTN","SAMIMOV",212,0) . i +pien'=0 d ; "RTN","SAMIMOV",213,0) . . s cdate=$g(@proot@(pien,"samicreatedate")) "RTN","SAMIMOV",214,0) . . s pname=$g(@proot@(pien,"saminame")) "RTN","SAMIMOV",215,0) . . s pdfn=$g(@proot@(pien,"dfn")) "RTN","SAMIMOV",216,0) . . s sid=$g(@proot@(pien,"samistudyid")) "RTN","SAMIMOV",217,0) . s ln=ln_$g(cdate)_" " "RTN","SAMIMOV",218,0) . s ln=ln_$e(lname,1,20)_" " "RTN","SAMIMOV",219,0) . s ln=ln_$J(lien,5) "RTN","SAMIMOV",220,0) . s ln=ln_$j(ldfn,8) "RTN","SAMIMOV",221,0) . s ln=ln_" "_site_" " "RTN","SAMIMOV",222,0) . s ln=ln_" "_$e(pname,1,20)_" " "RTN","SAMIMOV",223,0) . s ln=ln_$j(pien,5) "RTN","SAMIMOV",224,0) . i pien="" s ln=ln_"Not Enrolled" "RTN","SAMIMOV",225,0) . s ln=ln_$j(pdfn,8) "RTN","SAMIMOV",226,0) . s ln=ln_" "_sid "RTN","SAMIMOV",227,0) . d outaudit(rpt,ln) "RTN","SAMIMOV",228,0) . s (ln,lname,lien,site,cdate,pname,pien,ldfn,pdfn,sid)="" "RTN","SAMIMOV",229,0) ;B "RTN","SAMIMOV",230,0) D BROWSE^DDBR(rpt,"N","audit") "RTN","SAMIMOV",231,0) ; "RTN","SAMIMOV",232,0) q "RTN","SAMIMOV",233,0) ; "RTN","SAMIMOV",234,0) outaudit(rpt,ln) ; "RTN","SAMIMOV",235,0) s @rpt@($o(@rpt@(" "),-1)+1)=$g(ln) "RTN","SAMIMOV",236,0) ;w !,ln "RTN","SAMIMOV",237,0) q "RTN","SAMIMOV",238,0) ; "RTN","SAMINOT1") 0^11^B553022339 "RTN","SAMINOT1",1,0) SAMINOT1 ;ven/gpl - text notes ;2021-10-29t20:26z "RTN","SAMINOT1",2,0) ;;18.0;SAMI;**2,6,8,10,11,12,15**;2020-01;Build 3 "RTN","SAMINOT1",3,0) ;;18-15 "RTN","SAMINOT1",4,0) ; "RTN","SAMINOT1",5,0) ; SAMINOT1 contains a web service & associated subroutines to produce "RTN","SAMINOT1",6,0) ; VAPALS-ELCAP text notes. "RTN","SAMINOT1",7,0) ; "RTN","SAMINOT1",8,0) quit ; no entry from top "RTN","SAMINOT1",9,0) ; "RTN","SAMINOT1",10,0) ; "RTN","SAMINOT1",11,0) ; "RTN","SAMINOT1",12,0) ;@section 0 primary development "RTN","SAMINOT1",13,0) ; "RTN","SAMINOT1",14,0) ; "RTN","SAMINOT1",15,0) ; "RTN","SAMINOT1",16,0) ;@routine-credits "RTN","SAMINOT1",17,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMINOT1",18,0) ; gpl@vistaexpertise.net "RTN","SAMINOT1",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMINOT1",20,0) ; http://vistaexpertise.net "RTN","SAMINOT1",21,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMINOT1",22,0) ;@license see routine SAMIUL "RTN","SAMINOT1",23,0) ; "RTN","SAMINOT1",24,0) ;@last-update 2021-07-01t17:21z "RTN","SAMINOT1",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMINOT1",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMINOT1",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMINOT1",28,0) ;@version 18-15 "RTN","SAMINOT1",29,0) ;@release-date 2020-01 "RTN","SAMINOT1",30,0) ;@patch-list **2,6,8,10,11,12,15** "RTN","SAMINOT1",31,0) ; "RTN","SAMINOT1",32,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMINOT1",33,0) ; toad@vistaexpertise.net "RTN","SAMINOT1",34,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMINOT1",35,0) ; larry.g.carlson@gmail.com "RTN","SAMINOT1",36,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMINOT1",37,0) ; linda.yaw@vistaexpertise.net "RTN","SAMINOT1",38,0) ;@dev-add Alexis R. Carlson (arc) "RTN","SAMINOT1",39,0) ; whatisthehumanspirit@gmail.com "RTN","SAMINOT1",40,0) ;@dev-add Domenic DiNatale (dom) "RTN","SAMINOT1",41,0) ; domenic.dinatale@paraxialtech.com "RTN","SAMINOT1",42,0) ; "RTN","SAMINOT1",43,0) ;@module-credits "RTN","SAMINOT1",44,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMINOT1",45,0) ; (VA-PALS) "RTN","SAMINOT1",46,0) ; http://va-pals.org/ "RTN","SAMINOT1",47,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMINOT1",48,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMINOT1",49,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMINOT1",50,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMINOT1",51,0) ;@partner-org International Early Lung Cancer Action Program (I-ELCAP) "RTN","SAMINOT1",52,0) ; http://ielcap.com/ "RTN","SAMINOT1",53,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMINOT1",54,0) ; http://paraxialtech.com/ "RTN","SAMINOT1",55,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMINOT1",56,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMINOT1",57,0) ; "RTN","SAMINOT1",58,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMINOT1",59,0) ; see routine SAMINUL "RTN","SAMINOT1",60,0) ; "RTN","SAMINOT1",61,0) ;@contents "RTN","SAMINOT1",62,0) ; $$EXISTCE does chart eligibility note exist? "RTN","SAMINOT1",63,0) ; $$EXISTPRE does pre-enrollment note exist? "RTN","SAMINOT1",64,0) ; $$EXISTINT does intake note exist? "RTN","SAMINOT1",65,0) ; WSNOTE web service: text note "RTN","SAMINOT1",66,0) ; NOTE create note "RTN","SAMINOT1",67,0) ; $$HASINNT is intake note present? "RTN","SAMINOT1",68,0) ; MKEL make eligibility note "RTN","SAMINOT1",69,0) ; MKPRE make pre-enrollment note "RTN","SAMINOT1",70,0) ; MKIN make intake note "RTN","SAMINOT1",71,0) ; $$MKNT make note "RTN","SAMINOT1",72,0) ; $$MKNTLOC location for note "RTN","SAMINOT1",73,0) ; $$NTDTTM date & time in note format "RTN","SAMINOT1",74,0) ; $$NTLOCN location of nth note "RTN","SAMINOT1",75,0) ; $$NTLAST location of latest note "RTN","SAMINOT1",76,0) ; $$NTIEN latest note for this form "RTN","SAMINOT1",77,0) ; $$NTLIST note list "RTN","SAMINOT1",78,0) ; TLST ??? "RTN","SAMINOT1",79,0) ; ELNOTE eligibility note text "RTN","SAMINOT1",80,0) ; PRENOTE pre-enrollment note "RTN","SAMINOT1",81,0) ; SUBRSLT translation of discussion result "RTN","SAMINOT1",82,0) ; INNOTE intake note "RTN","SAMINOT1",83,0) ; SDM add shared decision making text to array "RTN","SAMINOT1",84,0) ; GLOUT glob out, 1st wrap ln, then put in dest "RTN","SAMINOT1",85,0) ; OUT ??? "RTN","SAMINOT1",86,0) ; $$XVAL patient value for variable "RTN","SAMINOT1",87,0) ; "RTN","SAMINOT1",88,0) ; "RTN","SAMINOT1",89,0) ; "RTN","SAMINOT1",90,0) ;@section 1 wsi WSNOTE^SAMINOT1 & related subroutines "RTN","SAMINOT1",91,0) ; "RTN","SAMINOT1",92,0) ; "RTN","SAMINOT1",93,0) ; "RTN","SAMINOT1",94,0) EXISTCE(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",95,0) ; "RTN","SAMINOT1",96,0) ; if a Chart Eligibility Note exists "RTN","SAMINOT1",97,0) ; "RTN","SAMINOT1",98,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",99,0) n gvals s gvals=$na(@root@("graph",SID,FORM)) "RTN","SAMINOT1",100,0) ;i $g(@root@("graph",SID,FORM,"sicechrt"))="y" q "true" "RTN","SAMINOT1",101,0) i $g(@gvals@("chart-eligibility-complete"))="true" q "true" "RTN","SAMINOT1",102,0) ; "RTN","SAMINOT1",103,0) quit "false" ; end of $$EXISTCE "RTN","SAMINOT1",104,0) ; "RTN","SAMINOT1",105,0) ; "RTN","SAMINOT1",106,0) ; "RTN","SAMINOT1",107,0) EXISTPRE(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",108,0) ; "RTN","SAMINOT1",109,0) ; if a Pre-enrollment Note exists "RTN","SAMINOT1",110,0) ; "RTN","SAMINOT1",111,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",112,0) n gvals s gvals=$na(@root@("graph",SID,FORM)) "RTN","SAMINOT1",113,0) ;i $g(@root@("graph",SID,FORM,"sipedisc"))="y" q "true" "RTN","SAMINOT1",114,0) ;i $g(@gvals@("pre-note-complete"))="true" i $g(@gvals@("siperslt"))="y" q "true" "RTN","SAMINOT1",115,0) i $g(@gvals@("pre-note-complete"))="true" q "true" "RTN","SAMINOT1",116,0) ; "RTN","SAMINOT1",117,0) quit "false" ; end of $$EXISTPRE "RTN","SAMINOT1",118,0) ; "RTN","SAMINOT1",119,0) ; "RTN","SAMINOT1",120,0) ; "RTN","SAMINOT1",121,0) EXISTINT(SID,FORM) ; extrinsic returns "true" or "false" "RTN","SAMINOT1",122,0) ; "RTN","SAMINOT1",123,0) ; if an Intake Note exists "RTN","SAMINOT1",124,0) ; "RTN","SAMINOT1",125,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",126,0) i $g(@root@("graph",SID,FORM,"sistatus"))="y" q "true" "RTN","SAMINOT1",127,0) ; "RTN","SAMINOT1",128,0) quit "false" ; end of $$EXISTINT "RTN","SAMINOT1",129,0) ; "RTN","SAMINOT1",130,0) ; "RTN","SAMINOT1",131,0) ; "RTN","SAMINOT1",132,0) WSNOTE(return,filter) ; web service which returns a text note "RTN","SAMINOT1",133,0) ; "RTN","SAMINOT1",134,0) n debug s debug=0 "RTN","SAMINOT1",135,0) i $g(filter("debug"))=1 s debug=1 "RTN","SAMINOT1",136,0) ; "RTN","SAMINOT1",137,0) k return "RTN","SAMINOT1",138,0) s HTTPRSP("mime")="text/html" "RTN","SAMINOT1",139,0) ; "RTN","SAMINOT1",140,0) n si "RTN","SAMINOT1",141,0) s si=$g(filter("studyid")) "RTN","SAMINOT1",142,0) i si="" d ; "RTN","SAMINOT1",143,0) . s si="XXX00333" "RTN","SAMINOT1",144,0) q:si="" "RTN","SAMINOT1",145,0) ; "RTN","SAMINOT1",146,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",147,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT1",148,0) ;i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT1",149,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",150,0) . set vetstxt="candidate" "RTN","SAMINOT1",151,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",152,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",153,0) ; "RTN","SAMINOT1",154,0) n samikey "RTN","SAMINOT1",155,0) s samikey=$g(filter("form")) "RTN","SAMINOT1",156,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",157,0) i samikey="" d ; "RTN","SAMINOT1",158,0) . s samikey=$o(@root@("graph",si,"siform")) "RTN","SAMINOT1",159,0) . ;w !,samikey "RTN","SAMINOT1",160,0) . ;b "RTN","SAMINOT1",161,0) ; "RTN","SAMINOT1",162,0) n vals "RTN","SAMINOT1",163,0) m vals=@root@("graph",si,samikey) "RTN","SAMINOT1",164,0) ; "RTN","SAMINOT1",165,0) n note,nien,ntype "RTN","SAMINOT1",166,0) s ntype="" "RTN","SAMINOT1",167,0) s note="" "RTN","SAMINOT1",168,0) s nien=$g(filter("nien")) "RTN","SAMINOT1",169,0) i nien="" d "RTN","SAMINOT1",170,0) . s:$g(vals("samistatus"))="complete" ntype="intake" "RTN","SAMINOT1",171,0) . s:$g(vals("samistatus"))="chart-eligibility" ntype="eligibility" "RTN","SAMINOT1",172,0) . s:$g(vals("samistatus"))="pre-enrollment-discussion" ntype="pre-note" "RTN","SAMINOT1",173,0) . q:ntype="" "RTN","SAMINOT1",174,0) . ;d nien=$$NTTYPE add code to pull the latest note by type "RTN","SAMINOT1",175,0) q:nien="" "RTN","SAMINOT1",176,0) n notebase "RTN","SAMINOT1",177,0) s notebase=$$NTLOCN(si,samikey,nien) ; global location for the note "RTN","SAMINOT1",178,0) s note=$na(@notebase@("text")) "RTN","SAMINOT1",179,0) i '$d(@note) q "RTN","SAMINOT1",180,0) ; "RTN","SAMINOT1",181,0) new temp,tout "RTN","SAMINOT1",182,0) do GETTMPL^SAMICASE("temp","vapals:note") "RTN","SAMINOT1",183,0) quit:'$data(temp) "RTN","SAMINOT1",184,0) ; "RTN","SAMINOT1",185,0) n cnt s cnt=0 "RTN","SAMINOT1",186,0) n zi s zi="" "RTN","SAMINOT1",187,0) ; "RTN","SAMINOT1",188,0) f s zi=$o(temp(zi)) q:zi="" d ; "RTN","SAMINOT1",189,0) . ; "RTN","SAMINOT1",190,0) . n line s line=temp(zi) "RTN","SAMINOT1",191,0) . D LOAD^SAMIFORM(.line,samikey,si,.filter,.vals) "RTN","SAMINOT1",192,0) . s temp(zi)=line "RTN","SAMINOT1",193,0) . ; "RTN","SAMINOT1",194,0) . s cnt=cnt+1 "RTN","SAMINOT1",195,0) . s tout(cnt)=temp(zi) "RTN","SAMINOT1",196,0) . ; "RTN","SAMINOT1",197,0) . i temp(zi)["report-text" d ; "RTN","SAMINOT1",198,0) . . i temp(zi)["#" q ; "RTN","SAMINOT1",199,0) . . n zj s zj="" "RTN","SAMINOT1",200,0) . . f s zj=$o(@note@(zj)) q:zj="" d ; "RTN","SAMINOT1",201,0) . . . s cnt=cnt+1 "RTN","SAMINOT1",202,0) . . . ;s tout(cnt)=@note@(zj)_"<br>" "RTN","SAMINOT1",203,0) . . . s tout(cnt)=@note@(zj)_$char(13,10) "RTN","SAMINOT1",204,0) m return=tout "RTN","SAMINOT1",205,0) ; "RTN","SAMINOT1",206,0) quit ; end of WSNOTE "RTN","SAMINOT1",207,0) ; "RTN","SAMINOT1",208,0) ; "RTN","SAMINOT1",209,0) ; "RTN","SAMINOT1",210,0) NOTE(filter) ; extrnisic which creates a note "RTN","SAMINOT1",211,0) ; "RTN","SAMINOT1",212,0) ; returns 1 if successful, 0 if not "RTN","SAMINOT1",213,0) ; "RTN","SAMINOT1",214,0) ; set up patient values "RTN","SAMINOT1",215,0) ; "RTN","SAMINOT1",216,0) n vals "RTN","SAMINOT1",217,0) ; "RTN","SAMINOT1",218,0) n si "RTN","SAMINOT1",219,0) s si=$g(filter("studyid")) "RTN","SAMINOT1",220,0) i si="" d ; "RTN","SAMINOT1",221,0) . s si="XXX00333" "RTN","SAMINOT1",222,0) q:si="" "RTN","SAMINOT1",223,0) ; "RTN","SAMINOT1",224,0) ; "RTN","SAMINOT1",225,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",226,0) n vetstxt2 s vetstxt="Veteran" "RTN","SAMINOT1",227,0) ;i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT1",228,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",229,0) . set vetstxt="candidate" "RTN","SAMINOT1",230,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",231,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",232,0) ; "RTN","SAMINOT1",233,0) n samikey "RTN","SAMINOT1",234,0) s samikey=$g(filter("form")) "RTN","SAMINOT1",235,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",236,0) i samikey="" d ; "RTN","SAMINOT1",237,0) . s samikey=$o(@root@("graph",si,"siform")) "RTN","SAMINOT1",238,0) . ;w !,samikey "RTN","SAMINOT1",239,0) . ;b "RTN","SAMINOT1",240,0) ; "RTN","SAMINOT1",241,0) s vals=$na(@root@("graph",si,samikey)) "RTN","SAMINOT1",242,0) ; "RTN","SAMINOT1",243,0) i '$d(@vals) d q 0 ; "RTN","SAMINOT1",244,0) . ;w !,"error, patient values not found" "RTN","SAMINOT1",245,0) ;zwr @vals@(*) "RTN","SAMINOT1",246,0) ; "RTN","SAMINOT1",247,0) k ^SAMIUL("NOTE") "RTN","SAMINOT1",248,0) m ^SAMIUL("NOTE","vals")=@vals "RTN","SAMINOT1",249,0) m ^SAMIUL("NOTE","filter")=filter "RTN","SAMINOT1",250,0) ; "RTN","SAMINOT1",251,0) n didnote s didnote=0 "RTN","SAMINOT1",252,0) ; "RTN","SAMINOT1",253,0) i $g(@vals@("samistatus"))="chart-eligibility" d ; "RTN","SAMINOT1",254,0) . q:$g(@vals@("chart-eligibility-complete"))="true" "RTN","SAMINOT1",255,0) . d MKEL(si,samikey,vals,.filter) ; "RTN","SAMINOT1",256,0) . s didnote=1 "RTN","SAMINOT1",257,0) ; "RTN","SAMINOT1",258,0) i $g(@vals@("samistatus"))="pre-enrollment-discussion" d ; "RTN","SAMINOT1",259,0) . q:$g(@vals@("pre-note-complete"))="true" "RTN","SAMINOT1",260,0) . d MKPRE(si,samikey,vals,.filter) ; "RTN","SAMINOT1",261,0) . s didnote=1 "RTN","SAMINOT1",262,0) ; "RTN","SAMINOT1",263,0) i $g(@vals@("samistatus"))="complete" d ; "RTN","SAMINOT1",264,0) . q:$$HASINNT(vals) "RTN","SAMINOT1",265,0) . d MKIN(si,samikey,vals,.filter) ; "RTN","SAMINOT1",266,0) . s didnote=1 "RTN","SAMINOT1",267,0) ; "RTN","SAMINOT1",268,0) n nien s nien=0 "RTN","SAMINOT1",269,0) i didnote=1 s nien=$$NTIEN(si,samikey) "RTN","SAMINOT1",270,0) ; "RTN","SAMINOT1",271,0) quit nien ; end of $$NOTE "RTN","SAMINOT1",272,0) ; "RTN","SAMINOT1",273,0) ; "RTN","SAMINOT1",274,0) ; "RTN","SAMINOT1",275,0) HASINNT(vals) ; extrinsic returns 1 if intake note is present "RTN","SAMINOT1",276,0) ; "RTN","SAMINOT1",277,0) ; else returns 0 "RTN","SAMINOT1",278,0) ; "RTN","SAMINOT1",279,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT1",280,0) q:'$d(@vals) "RTN","SAMINOT1",281,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT1",282,0) . i $g(@vals@("notes",zzi,"name"))["Intake" s zzrtn=1 "RTN","SAMINOT1",283,0) ; "RTN","SAMINOT1",284,0) quit zzrtn ; end of $$HASINNT "RTN","SAMINOT1",285,0) ; "RTN","SAMINOT1",286,0) ; "RTN","SAMINOT1",287,0) ; "RTN","SAMINOT1",288,0) MKEL(sid,form,vals,filter) ; "RTN","SAMINOT1",289,0) ; "RTN","SAMINOT1",290,0) n cnt s cnt=0 "RTN","SAMINOT1",291,0) ;n dest s dest=$na(@vals@("eligibility-note")) "RTN","SAMINOT1",292,0) n dest s dest=$$MKNT(vals,"Eligibility Note","eligibility",.filter) "RTN","SAMINOT1",293,0) k @dest "RTN","SAMINOT1",294,0) d OUT("Lung Screening Program Chart Eligibility Note") "RTN","SAMINOT1",295,0) d OUT("") "RTN","SAMINOT1",296,0) d ELNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",297,0) ; "RTN","SAMINOT1",298,0) quit ; end of MKEL "RTN","SAMINOT1",299,0) ; "RTN","SAMINOT1",300,0) ; "RTN","SAMINOT1",301,0) ; "RTN","SAMINOT1",302,0) MKPRE(sid,form,vals,filter) ; "RTN","SAMINOT1",303,0) ; "RTN","SAMINOT1",304,0) n cnt s cnt=0 "RTN","SAMINOT1",305,0) ;n dest s dest=$na(@vals@("pre-note")) "RTN","SAMINOT1",306,0) n dest s dest=$$MKNT(vals,"Pre-enrollment Discussion Note","prenote",.filter) "RTN","SAMINOT1",307,0) k @dest "RTN","SAMINOT1",308,0) i $g(@vals@("chart-eligibility-complete"))'="true" d ; "RTN","SAMINOT1",309,0) . d OUT("Lung Screening Program Chart Eligibility and Pre-enrollment Discussion Note") "RTN","SAMINOT1",310,0) . d OUT("") "RTN","SAMINOT1",311,0) . d ELNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",312,0) i $g(@vals@("chart-eligibility-complete"))="true" d ; "RTN","SAMINOT1",313,0) . d OUT("Lung Screening Program Pre-enrollment Discussion Note") "RTN","SAMINOT1",314,0) . d OUT("") "RTN","SAMINOT1",315,0) d PRENOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",316,0) ; "RTN","SAMINOT1",317,0) quit ; end of MKPRE "RTN","SAMINOT1",318,0) ; "RTN","SAMINOT1",319,0) ; "RTN","SAMINOT1",320,0) ; "RTN","SAMINOT1",321,0) MKIN(sid,form,vals,filter) ; "RTN","SAMINOT1",322,0) ; "RTN","SAMINOT1",323,0) n cnt s cnt=0 "RTN","SAMINOT1",324,0) ;n dest s dest=$na(@vals@("intake-note")) "RTN","SAMINOT1",325,0) n dest s dest=$$MKNT(vals,"Intake Note","intake",.filter) "RTN","SAMINOT1",326,0) k @dest "RTN","SAMINOT1",327,0) d OUT("Lung Screening Program Intake Note") "RTN","SAMINOT1",328,0) d OUT("") "RTN","SAMINOT1",329,0) i $g(@vals@("chart-eligibility-complete"))'="true" d ; "RTN","SAMINOT1",330,0) . d ELNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",331,0) i $g(@vals@("pre-note-complete"))'="true" d ; "RTN","SAMINOT1",332,0) . d PRENOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",333,0) d INNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT1",334,0) ; "RTN","SAMINOT1",335,0) quit ; end of MKIN "RTN","SAMINOT1",336,0) ; "RTN","SAMINOT1",337,0) ; "RTN","SAMINOT1",338,0) ; "RTN","SAMINOT1",339,0) MKNT(vals,title,ntype,filter) ; extrinsic makes a note date=now returns "RTN","SAMINOT1",340,0) ; "RTN","SAMINOT1",341,0) ; global addr. filter must be passed by reference "RTN","SAMINOT1",342,0) ; "RTN","SAMINOT1",343,0) n ntdt s ntdt=$$NTDTTM($$NOW^XLFDT) "RTN","SAMINOT1",344,0) n ntptr "RTN","SAMINOT1",345,0) s ntptr=$$MKNTLOC(vals,title,ntdt,$g(ntype),.filter) "RTN","SAMINOT1",346,0) ; "RTN","SAMINOT1",347,0) quit ntptr ; end of $$MKNT "RTN","SAMINOT1",348,0) ; "RTN","SAMINOT1",349,0) ; "RTN","SAMINOT1",350,0) ; "RTN","SAMINOT1",351,0) MKNTLOC(vals,title,ndate,ntype,filter) ; extrinsic returns the "RTN","SAMINOT1",352,0) ; "RTN","SAMINOT1",353,0) ;location for the note "RTN","SAMINOT1",354,0) ; "RTN","SAMINOT1",355,0) n nien "RTN","SAMINOT1",356,0) s nien=$o(@vals@("notes",""),-1)+1 "RTN","SAMINOT1",357,0) s filter("nien")=nien "RTN","SAMINOT1",358,0) n nloc s nloc=$na(@vals@("notes",nien)) "RTN","SAMINOT1",359,0) s @nloc@("name")=title_" "_$g(ndate) "RTN","SAMINOT1",360,0) s @nloc@("date")=$g(ndate) "RTN","SAMINOT1",361,0) s @nloc@("type")=$g(ntype) "RTN","SAMINOT1",362,0) ; "RTN","SAMINOT1",363,0) quit $name(@nloc@("text")) ; end of $$MKNTLOC "RTN","SAMINOT1",364,0) ; "RTN","SAMINOT1",365,0) ; "RTN","SAMINOT1",366,0) ; "RTN","SAMINOT1",367,0) NTDTTM(ZFMDT) ; extrinsic returns the date and time in Note format "RTN","SAMINOT1",368,0) ; "RTN","SAMINOT1",369,0) ; ZFMDT is the fileman date/time to translate "RTN","SAMINOT1",370,0) ; "RTN","SAMINOT1",371,0) quit $$FMTE^XLFDT(ZFMDT,"5") ; end of $$NTDTTM "RTN","SAMINOT1",372,0) ; "RTN","SAMINOT1",373,0) ; "RTN","SAMINOT1",374,0) ; "RTN","SAMINOT1",375,0) NTLOCN(sid,form,nien) ; extrinsic returns the location of the Nth note "RTN","SAMINOT1",376,0) ; "RTN","SAMINOT1",377,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",378,0) ; "RTN","SAMINOT1",379,0) quit $name(@root@("graph",sid,form,"notes",nien)) ; end of $$NTLOCN "RTN","SAMINOT1",380,0) ; "RTN","SAMINOT1",381,0) ; "RTN","SAMINOT1",382,0) ; "RTN","SAMINOT1",383,0) NTLAST(sid,form,ntype) ; extrinsic returns the location of the latest note "RTN","SAMINOT1",384,0) ; "RTN","SAMINOT1",385,0) ; of the type ntype "RTN","SAMINOT1",386,0) ; "RTN","SAMINOT1",387,0) quit ; end of NTLAST "RTN","SAMINOT1",388,0) ; "RTN","SAMINOT1",389,0) ; "RTN","SAMINOT1",390,0) ; "RTN","SAMINOT1",391,0) NTIEN(sid,form) ; extrinsic which returns the latest note for this form "RTN","SAMINOT1",392,0) ; "RTN","SAMINOT1",393,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",394,0) n rtn s rtn=$o(@root@("graph",sid,form,"notes"," "),-1) "RTN","SAMINOT1",395,0) ; "RTN","SAMINOT1",396,0) quit rtn ; end of $$NTIEN "RTN","SAMINOT1",397,0) ; "RTN","SAMINOT1",398,0) ; "RTN","SAMINOT1",399,0) ; "RTN","SAMINOT1",400,0) NTLIST(nlist,sid,form) ; returns the note list in nlist, passed by ref "RTN","SAMINOT1",401,0) ; "RTN","SAMINOT1",402,0) n zn,root,gn "RTN","SAMINOT1",403,0) s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT1",404,0) s zn=0 "RTN","SAMINOT1",405,0) s gn=$na(@root@("graph",sid,form,"notes")) "RTN","SAMINOT1",406,0) q:'$d(@gn) "RTN","SAMINOT1",407,0) f s zn=$o(@gn@(zn)) q:+zn=0 d ; "RTN","SAMINOT1",408,0) . s @nlist@(zn,"name")=@gn@(zn,"name") "RTN","SAMINOT1",409,0) . s @nlist@(zn,"nien")=zn "RTN","SAMINOT1",410,0) ; "RTN","SAMINOT1",411,0) quit ; end of NTLIST "RTN","SAMINOT1",412,0) ; "RTN","SAMINOT1",413,0) ; "RTN","SAMINOT1",414,0) ; "RTN","SAMINOT1",415,0) TLST ; "RTN","SAMINOT1",416,0) ; "RTN","SAMINOT1",417,0) set SID="XXX00677" "RTN","SAMINOT1",418,0) set FORM="siform-2019-04-23" "RTN","SAMINOT1",419,0) do NTLIST("G",SID,FORM) "RTN","SAMINOT1",420,0) ;ZWR G "RTN","SAMINOT1",421,0) ; "RTN","SAMINOT1",422,0) quit ; end of TLST "RTN","SAMINOT1",423,0) ; "RTN","SAMINOT1",424,0) ; "RTN","SAMINOT1",425,0) ; "RTN","SAMINOT1",426,0) ELNOTE(vals,dest,cnt,filter) ; eligibility NOTE TEXT "RTN","SAMINOT1",427,0) ; "RTN","SAMINOT1",428,0) ; "RTN","SAMINOT1",429,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",430,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT1",431,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",432,0) . set vetstxt="candidate" "RTN","SAMINOT1",433,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",434,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",435,0) ; "RTN","SAMINOT1",436,0) D OUT("") "RTN","SAMINOT1",437,0) D OUT("Date of chart review: "_$$XVAL("sidc",vals)) "RTN","SAMINOT1",438,0) D GLOUT("The participant was identified as a potential lung screening candidate by: ") "RTN","SAMINOT1",439,0) D GLOUT($$XVAL("siceiden",vals),4) "RTN","SAMINOT1",440,0) if $$XVAL("siceiden",vals)="referral" d ; "RTN","SAMINOT1",441,0) . D OUT("Date of Referral: "_$$XVAL("sicerfdt",vals)) "RTN","SAMINOT1",442,0) . n spec s spec="" "RTN","SAMINOT1",443,0) . s:$$XVAL("sicerfpc",vals)="y" spec=spec_" Primary Care" "RTN","SAMINOT1",444,0) . s:$$XVAL("sicerfwh",vals)="y" spec=spec_" Women's Health" "RTN","SAMINOT1",445,0) . s:$$XVAL("sicerfge",vals)="y" spec=spec_" Geriatrics" "RTN","SAMINOT1",446,0) . s:$$XVAL("sicerfpu",vals)="y" spec=spec_" Pulmonology" "RTN","SAMINOT1",447,0) . s:$$XVAL("sicerfon",vals)="y" spec=spec_" Oncology" "RTN","SAMINOT1",448,0) . s:$$XVAL("sicerfsc",vals)="y" spec=spec_" Smoking Cessation" "RTN","SAMINOT1",449,0) . s:$$XVAL("sicerfot",vals)="y" spec=spec_" "_$$XVAL("sicerfoo",vals) "RTN","SAMINOT1",450,0) . D GLOUT("Specialty of referring provider: ") "RTN","SAMINOT1",451,0) . D GLOUT(spec,4) "RTN","SAMINOT1",452,0) n elig "RTN","SAMINOT1",453,0) s elig=$$XVAL("sicechrt",vals) "RTN","SAMINOT1",454,0) D OUT("The participant is eligible based on chart review: "_$s(elig="y":"Yes",1:"no")) "RTN","SAMINOT1",455,0) D OUT("") "RTN","SAMINOT1",456,0) s @vals@("chart-eligibility-complete")="true" "RTN","SAMINOT1",457,0) ; "RTN","SAMINOT1",458,0) quit ; end of ELNOTE "RTN","SAMINOT1",459,0) ; "RTN","SAMINOT1",460,0) ; "RTN","SAMINOT1",461,0) ; "RTN","SAMINOT1",462,0) PRENOTE(vals,dest,cnt,filter) ; "RTN","SAMINOT1",463,0) ; "RTN","SAMINOT1",464,0) ; "RTN","SAMINOT1",465,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",466,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT1",467,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",468,0) . set vetstxt="candidate" "RTN","SAMINOT1",469,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",470,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",471,0) ; "RTN","SAMINOT1",472,0) i $g(@vals@("sipedisc"))'="y" q ; no prelim discussion "RTN","SAMINOT1",473,0) D OUT("") "RTN","SAMINOT1",474,0) ;d OUT("A pre-enrollment discussion was held.") "RTN","SAMINOT1",475,0) ;[If Yes is selected then add the following 5 lines] "RTN","SAMINOT1",476,0) D OUT("The program attempted to reach the "_vetstxt_" to discuss lung screening.") "RTN","SAMINOT1",477,0) D OUT("Date of pre-enrollment discussion: "_$$XVAL("sipedc",vals)) "RTN","SAMINOT1",478,0) n via s via="" "RTN","SAMINOT1",479,0) s:$$XVAL("sipecnip",vals)="1" via=via_" In person" "RTN","SAMINOT1",480,0) s:$$XVAL("sipecnte",vals)="1" via=via_" Telephone" "RTN","SAMINOT1",481,0) s:$$XVAL("sipecnth",vals)="1" via=via_" TeleHealth" "RTN","SAMINOT1",482,0) s:$$XVAL("sipecnml",vals)="1" via=via_" Mailed Letter" "RTN","SAMINOT1",483,0) s:$$XVAL("sipecnpp",vals)="1" via=via_" Message in patient portal" "RTN","SAMINOT1",484,0) s:$$XVAL("sipecnvd",vals)="1" via=via_" Video-on-Demand (VOD)" "RTN","SAMINOT1",485,0) s:$$XVAL("sipecnot",vals)="1" via=via_" "_$$XVAL("sipecnoo",vals) "RTN","SAMINOT1",486,0) ;D OUT("The lung screening program reached the potential candidate or was contacted via:"_via) "RTN","SAMINOT1",487,0) D GLOUT("The lung screening program reached the potential candidate or was contacted via:") "RTN","SAMINOT1",488,0) D GLOUT(via,4) "RTN","SAMINOT1",489,0) ;D OUT("The pre-enrollment discussion with the participant resulted in: "_$$SUBRSLT($$XVAL("siperslt",vals))) "RTN","SAMINOT1",490,0) D OUT("The pre-enrollment discussion with the participant resulted in: ") "RTN","SAMINOT1",491,0) D GLOUT($$SUBRSLT($$XVAL("siperslt",vals)),4) "RTN","SAMINOT1",492,0) D OUT("Comments: ") "RTN","SAMINOT1",493,0) D GLOUT($$XVAL("sipecmnt",vals),4) "RTN","SAMINOT1",494,0) ; "RTN","SAMINOT1",495,0) s @vals@("pre-note-complete")="true" "RTN","SAMINOT1",496,0) ; "RTN","SAMINOT1",497,0) quit ; end of PRENOTE "RTN","SAMINOT1",498,0) ; "RTN","SAMINOT1",499,0) ; "RTN","SAMINOT1",500,0) ; "RTN","SAMINOT1",501,0) SUBRSLT(XVAL) ; translation of discussion result "RTN","SAMINOT1",502,0) ; "RTN","SAMINOT1",503,0) q:XVAL="y" "Participant is interested in discussing lung screening. The program will proceed with enrollment process." "RTN","SAMINOT1",504,0) q:XVAL="u" "Participant is unsure of lung screening. Ok to contact in the future." "RTN","SAMINOT1",505,0) q:XVAL="nn" "Participant is not interested in discussing lung screening at this time. Ok to contact in the future." "RTN","SAMINOT1",506,0) q:XVAL="nf" "Participant is not interested in discussing lung screening in the future." "RTN","SAMINOT1",507,0) q:XVAL="na" "Unable to reach participant at this time" "RTN","SAMINOT1",508,0) ; "RTN","SAMINOT1",509,0) quit "" ; end of $$SUBRSLT "RTN","SAMINOT1",510,0) ; "RTN","SAMINOT1",511,0) ; "RTN","SAMINOT1",512,0) ; "RTN","SAMINOT1",513,0) INNOTE(vals,dest,cnt,filter) ; "RTN","SAMINOT1",514,0) ; "RTN","SAMINOT1",515,0) ;Lung Screening Program Intake Note "RTN","SAMINOT1",516,0) ; "RTN","SAMINOT1",517,0) ;Date of intake discussion contact: [Date] "RTN","SAMINOT1",518,0) ;How did you learn about the Lung Screening Program?: [Selection] "RTN","SAMINOT1",519,0) ;Primary address verified: [Yes/No] "RTN","SAMINOT1",520,0) ;Rural status: [Urban/Rural/Unknown] "RTN","SAMINOT1",521,0) ;Preferred address and contact number: "RTN","SAMINOT1",522,0) ; [Address 1] "RTN","SAMINOT1",523,0) ; [Address 2] "RTN","SAMINOT1",524,0) ; [Address] "RTN","SAMINOT1",525,0) ; "RTN","SAMINOT1",526,0) ;Ever smoked?: [Ever Smoked Text] "RTN","SAMINOT1",527,0) ;Smoking Status: [Never Smoked/Past/Current/Willing to Quit] "RTN","SAMINOT1",528,0) ;CIGs per day: [Input Number] "RTN","SAMINOT1",529,0) ;PPD: [Computed Number] "RTN","SAMINOT1",530,0) ;# of years: [Input Number] "RTN","SAMINOT1",531,0) ;Pack Years: [Computed Number] "RTN","SAMINOT1",532,0) ; "RTN","SAMINOT1",533,0) ;[If a Quit Date is entered add the following line] "RTN","SAMINOT1",534,0) ;Quit smoking on: [Date] "RTN","SAMINOT1",535,0) ; "RTN","SAMINOT1",536,0) ;[If Smoking Cessation education text is entered add the following line] "RTN","SAMINOT1",537,0) ;Smoking cessation education provided: [Show Input Text] "RTN","SAMINOT1",538,0) ; "RTN","SAMINOT1",539,0) ;[If a Lung Cancer Dx date is entered show the following 1 to 2 lines] "RTN","SAMINOT1",540,0) ;Prior lung cancer diagnosis date: [Date] "RTN","SAMINOT1",541,0) ;[If a location not in the VA is specified show the next line] "RTN","SAMINOT1",542,0) ;Location where prior lung cancer diagnosis was made: [Location Text] "RTN","SAMINOT1",543,0) ; "RTN","SAMINOT1",544,0) ;[If Any Prior CT Date is entered show the following 1 to 2 lines] "RTN","SAMINOT1",545,0) ;Prior CT: [Date] "RTN","SAMINOT1",546,0) ;[If a location not in the VA is specified show the next line] "RTN","SAMINOT1",547,0) ;Location where prior lung cancer diagnosis was made: [Location Text] "RTN","SAMINOT1",548,0) ; "RTN","SAMINOT1",549,0) ;Shared Decision Making: "RTN","SAMINOT1",550,0) ; "RTN","SAMINOT1",551,0) ; "RTN","SAMINOT1",552,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",553,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT1",554,0) ;i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT1",555,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",556,0) . set vetstxt="candidate" "RTN","SAMINOT1",557,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",558,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",559,0) ; "RTN","SAMINOT1",560,0) d OUT(" ") "RTN","SAMINOT1",561,0) d OUT(" "_"Date of intake discussion contact: "_$$XVAL("sidc",vals)) "RTN","SAMINOT1",562,0) n learn s learn="" "RTN","SAMINOT1",563,0) s:$$XVAL("silnip",vals) learn=learn_" In person" "RTN","SAMINOT1",564,0) s:$$XVAL("silnph",vals) learn=learn_" Telephone" "RTN","SAMINOT1",565,0) s:$$XVAL("silnth",vals) learn=learn_" TeleHealth" "RTN","SAMINOT1",566,0) s:$$XVAL("silnml",vals) learn=learn_" Mailed letter" "RTN","SAMINOT1",567,0) s:$$XVAL("silnpp",vals) learn=learn_" Message in patient portal" "RTN","SAMINOT1",568,0) s:$$XVAL("silnvd",vals) learn=learn_" Video-on-Demand (VOD)" "RTN","SAMINOT1",569,0) s:$$XVAL("silnot",vals) learn=learn_" "_$$XVAL("silnoo",vals) "RTN","SAMINOT1",570,0) ;d GLOUT(" "_"How did you learn about the Lung Screening Program?: "_learn,4) "RTN","SAMINOT1",571,0) d GLOUT("How did you learn about the Lung Screening Program?: ",4) "RTN","SAMINOT1",572,0) d GLOUT(learn,6) "RTN","SAMINOT1",573,0) n verified s verified="" "RTN","SAMINOT1",574,0) s:$$XVAL("sipav",vals)="y" verified="Yes" "RTN","SAMINOT1",575,0) s:$$XVAL("sipav",vals)="n" verified="No" "RTN","SAMINOT1",576,0) d OUT(" "_"Primary address verified: "_verified) "RTN","SAMINOT1",577,0) n rural s rural="" "RTN","SAMINOT1",578,0) s:$$XVAL("sirs",vals)="r" rural="rural" "RTN","SAMINOT1",579,0) s:$$XVAL("sirs",vals)="u" rural="urban" "RTN","SAMINOT1",580,0) d OUT(" "_""_"Rural status: "_rural) "RTN","SAMINOT1",581,0) d OUT(" "_"Preferred address and contact number: ") "RTN","SAMINOT1",582,0) n pa s pa="" "RTN","SAMINOT1",583,0) i $$XVAL("sipsa",vals)'="" d ; "RTN","SAMINOT1",584,0) . d OUT(" "_$$XVAL("sipsa",vals)) "RTN","SAMINOT1",585,0) . n csz s csz="" "RTN","SAMINOT1",586,0) . s:$$XVAL("sipc",vals)'="" csz=$$XVAL("sipc",vals) "RTN","SAMINOT1",587,0) . s:$$XVAL("sips",vals)'="" csz=csz_", "_$$XVAL("sips",vals) "RTN","SAMINOT1",588,0) . s:$$XVAL("sipz",vals)'="" csz=csz_" "_$$XVAL("sipz",vals) "RTN","SAMINOT1",589,0) . d OUT(" "_csz) "RTN","SAMINOT1",590,0) d:$$XVAL("sippn",vals)'="" OUT(" "_$$XVAL("sippn",vals)) "RTN","SAMINOT1",591,0) d OUT(" "_"Ever smoked?: ") "RTN","SAMINOT1",592,0) d GLOUT($$XVAL("sies",vals),6) "RTN","SAMINOT1",593,0) n sstatus s sstatus="" "RTN","SAMINOT1",594,0) s:$$XVAL("siesm",vals)="n" sstatus=sstatus_" Never smoked" "RTN","SAMINOT1",595,0) s:$$XVAL("siesm",vals)="p" sstatus=sstatus_" Past" "RTN","SAMINOT1",596,0) s:$$XVAL("siesm",vals)="c" sstatus=sstatus_" Current" "RTN","SAMINOT1",597,0) s:$$XVAL("siesq",vals)=1 sstatus=sstatus_" Willing to quit" "RTN","SAMINOT1",598,0) d OUT(" Smoking Status: "_sstatus) "RTN","SAMINOT1",599,0) d OUT(" "_"CIGs per day: ") "RTN","SAMINOT1",600,0) d OUT(" "_$$XVAL("sicpd",vals)) "RTN","SAMINOT1",601,0) d OUT(" "_"PPD: ") "RTN","SAMINOT1",602,0) d OUT(" "_$$XVAL("sippd",vals)) "RTN","SAMINOT1",603,0) d OUT(" "_"# of years: ") "RTN","SAMINOT1",604,0) d OUT(" "_$$XVAL("sisny",vals)) "RTN","SAMINOT1",605,0) d OUT(" "_"PPY: ") "RTN","SAMINOT1",606,0) d OUT(" "_$$XVAL("sippy",vals)) "RTN","SAMINOT1",607,0) d OUT("") "RTN","SAMINOT1",608,0) i $$XVAL("siq",vals)'="" d ; "RTN","SAMINOT1",609,0) . d OUT("Quit smoking on: "_$$XVAL("siq",vals)) "RTN","SAMINOT1",610,0) . d OUT("") "RTN","SAMINOT1",611,0) i $$XVAL("sicep",vals)'="" d ; "RTN","SAMINOT1",612,0) . d OUT("Smoking cessation education provided:") "RTN","SAMINOT1",613,0) . d GLOUT(" "_$$XVAL("sicep",vals),4) "RTN","SAMINOT1",614,0) i $$XVAL("sicadx",vals)'="" d "RTN","SAMINOT1",615,0) . d OUT("Prior lung cancer diagnosis date: "_$$XVAL("sicadx",vals)) "RTN","SAMINOT1",616,0) . i $$XVAL("sicadxl",vals)'="" d ; "RTN","SAMINOT1",617,0) . . d OUT("Location where prior lung cancer diagnosis was made:") "RTN","SAMINOT1",618,0) . . d GLOUT(" "_$$XVAL("sicadxl",vals),4) "RTN","SAMINOT1",619,0) i $$XVAL("siptct",vals)'="" d "RTN","SAMINOT1",620,0) . d OUT("Prior CT: "_$$XVAL("siptct",vals)) "RTN","SAMINOT1",621,0) . i $$XVAL("siptctl",vals)'="" d ; "RTN","SAMINOT1",622,0) . . d OUT("Location where prior CT was made:") "RTN","SAMINOT1",623,0) . . d GLOUT(" "_$$XVAL("siptctl",vals),4) "RTN","SAMINOT1",624,0) d OUT(" ") "RTN","SAMINOT1",625,0) d OUT("Shared Decision Making: ") "RTN","SAMINOT1",626,0) d OUT(" ") "RTN","SAMINOT1",627,0) n shareddm "RTN","SAMINOT1",628,0) s shareddm=+$$XVAL("siidmdc",vals) "RTN","SAMINOT1",629,0) i shareddm=1 d SDM(dest,.filter) "RTN","SAMINOT1",630,0) e d OUT("Shared decision making was not applicable") "RTN","SAMINOT1",631,0) d OUT(" ") "RTN","SAMINOT1",632,0) n ldct s ldct="" "RTN","SAMINOT1",633,0) s:$$XVAL("sildct",vals)="n" ldct="No" "RTN","SAMINOT1",634,0) s:$$XVAL("sildct",vals)="l" ldct="No" "RTN","SAMINOT1",635,0) s:$$XVAL("sildct",vals)="y" ldct="Yes" "RTN","SAMINOT1",636,0) d GLOUT("The "_vetstxt_" has decided to enroll in the Lung Screening Program: "_ldct) "RTN","SAMINOT1",637,0) i $$XVAL("sildct",vals)="l" d ; "RTN","SAMINOT1",638,0) . d GLOUT("The "_vetstxt_" has indicated it is okay to contact in the future to discuss enrolling in the Lung Screening Program.",4) "RTN","SAMINOT1",639,0) i ldct="Yes" d ; "RTN","SAMINOT1",640,0) . d OUT("LDCT ordered: "_ldct) "RTN","SAMINOT1",641,0) . d OUT(" "_vetstxt2_" enrolled in the LSS program. Results and coordination of care ") "RTN","SAMINOT1",642,0) . d OUT(" "_"will be made by the LSS team. ") "RTN","SAMINOT1",643,0) . i $$XVAL("siclin",vals)'="" d ; "RTN","SAMINOT1",644,0) . . quit "RTN","SAMINOT1",645,0) . quit "RTN","SAMINOT1",646,0) n tmpclin s tmpclin=$$XVAL("siclin",vals) "RTN","SAMINOT1",647,0) i tmpclin'="" d ; "RTN","SAMINOT1",648,0) . d OUT("Clinical Indications for Initial Screening CT:") "RTN","SAMINOT1",649,0) . d GLOUT(" "_tmpclin,4) "RTN","SAMINOT1",650,0) ; "RTN","SAMINOT1",651,0) ;The veteran has decided to enroll in the Lung Screening Program: [Yes/No] "RTN","SAMINOT1",652,0) ; "RTN","SAMINOT1",653,0) ;[If Not enroll at this time but okay to contact in the future, add the following line] "RTN","SAMINOT1",654,0) ;The veteran has indicated it is okay to contact in the future to discuss enrolling in the Lung Screening Program. "RTN","SAMINOT1",655,0) ; "RTN","SAMINOT1",656,0) ;[If Yes is answered for enrollment add the following two lines] "RTN","SAMINOT1",657,0) ;LDCT ordered: Yes "RTN","SAMINOT1",658,0) ;Veteran enrolled in the Lung Screening Program. Results and coordination of care will be made by the Lung Screening Program team. "RTN","SAMINOT1",659,0) ; "RTN","SAMINOT1",660,0) ;[If Clinical Indication text is provided add them to the note] "RTN","SAMINOT1",661,0) ;Clinical Indications: [Show Input Text] "RTN","SAMINOT1",662,0) ; "RTN","SAMINOT1",663,0) ; "RTN","SAMINOT1",664,0) quit ; end of INNOTE "RTN","SAMINOT1",665,0) ; "RTN","SAMINOT1",666,0) ; "RTN","SAMINOT1",667,0) ; "RTN","SAMINOT1",668,0) SDM(ary,filter) ; adds Shared Decision Making text to array ary, passed by name "RTN","SAMINOT1",669,0) ; "RTN","SAMINOT1",670,0) ; "RTN","SAMINOT1",671,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT1",672,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT1",673,0) ;i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT1",674,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT1",675,0) . set vetstxt="candidate" "RTN","SAMINOT1",676,0) . set vetstxt2="Candidate" "RTN","SAMINOT1",677,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT1",678,0) ; "RTN","SAMINOT1",679,0) n ii s ii=$o(@ary@(" "),-1) "RTN","SAMINOT1",680,0) s ii=ii+1 "RTN","SAMINOT1",681,0) s @ary@(ii)=vetstxt2_" of age and exposure to cigarette smoke as described above, and " "RTN","SAMINOT1",682,0) s ii=ii+1 "RTN","SAMINOT1",683,0) s @ary@(ii)="without a current diagnosis or obvious symptoms suggestive of lung cancer, " "RTN","SAMINOT1",684,0) s ii=ii+1 "RTN","SAMINOT1",685,0) s @ary@(ii)="has been educated today about the estimated risk for lung cancer, the " "RTN","SAMINOT1",686,0) s ii=ii+1 "RTN","SAMINOT1",687,0) s @ary@(ii)="possibility of cure or life prolonging if an early lung cancer were to be " "RTN","SAMINOT1",688,0) s ii=ii+1 "RTN","SAMINOT1",689,0) s @ary@(ii)="found during screening, the possibility of imaging abnormalities not being " "RTN","SAMINOT1",690,0) s ii=ii+1 "RTN","SAMINOT1",691,0) s @ary@(ii)="lung cancer, the possibility of complications from additional diagnostic " "RTN","SAMINOT1",692,0) s ii=ii+1 "RTN","SAMINOT1",693,0) s @ary@(ii)="procedures, and the approximate amount of radiation exposure associated " "RTN","SAMINOT1",694,0) s ii=ii+1 "RTN","SAMINOT1",695,0) s @ary@(ii)="with each screening procedure. In addition, the "_vetstxt_" has been educated " "RTN","SAMINOT1",696,0) s ii=ii+1 "RTN","SAMINOT1",697,0) s @ary@(ii)="today about the importance of adhering to annual lung screening, the " "RTN","SAMINOT1",698,0) s ii=ii+1 "RTN","SAMINOT1",699,0) s @ary@(ii)="possible impact of other medical conditions on the overall health status, " "RTN","SAMINOT1",700,0) s ii=ii+1 "RTN","SAMINOT1",701,0) s @ary@(ii)="the importance of avoiding exposure to cigarette smoke, available tobacco " "RTN","SAMINOT1",702,0) s ii=ii+1 "RTN","SAMINOT1",703,0) s @ary@(ii)="cessation programs and available lung screening services at this site. " "RTN","SAMINOT1",704,0) s ii=ii+1 "RTN","SAMINOT1",705,0) s @ary@(ii)="Education material was provided to the "_vetstxt_". " "RTN","SAMINOT1",706,0) s ii=ii+1 "RTN","SAMINOT1",707,0) ;s @ary@(ii)="Based on this information, the Veteran has opted for " "RTN","SAMINOT1",708,0) ; "RTN","SAMINOT1",709,0) quit ; end of SDM "RTN","SAMINOT1",710,0) ; "RTN","SAMINOT1",711,0) ; "RTN","SAMINOT1",712,0) ; "RTN","SAMINOT1",713,0) GLOUT(ln,indent) ; glob out first wrap ln then put it in dest "RTN","SAMINOT1",714,0) ; "RTN","SAMINOT1",715,0) i $$CRWRAP^SAMITTW(ln,dest,.cnt,80) q ; "RTN","SAMINOT1",716,0) n arytmp "RTN","SAMINOT1",717,0) s arytmp(1)=ln "RTN","SAMINOT1",718,0) i $g(indent)="" s indent=1 "RTN","SAMINOT1",719,0) d wrap^%tt("arytmp",indent_":80") "RTN","SAMINOT1",720,0) n ii s ii="" "RTN","SAMINOT1",721,0) f s ii=$o(arytmp(ii)) q:ii="" d ; "RTN","SAMINOT1",722,0) . d OUT(arytmp(ii)) "RTN","SAMINOT1",723,0) ; "RTN","SAMINOT1",724,0) quit ; end of GLOUT "RTN","SAMINOT1",725,0) ; "RTN","SAMINOT1",726,0) ; "RTN","SAMINOT1",727,0) ; "RTN","SAMINOT1",728,0) OUT(ln) ; "RTN","SAMINOT1",729,0) ; "RTN","SAMINOT1",730,0) i $$CRWRAP^SAMITTW(ln,dest,.cnt,80) q ; "RTN","SAMINOT1",731,0) ; "RTN","SAMINOT1",732,0) s cnt=cnt+1 "RTN","SAMINOT1",733,0) n lnn "RTN","SAMINOT1",734,0) ;s debug=1 "RTN","SAMINOT1",735,0) s lnn=$o(@dest@(" "),-1)+1 "RTN","SAMINOT1",736,0) s @dest@(lnn)=ln "RTN","SAMINOT1",737,0) ; "RTN","SAMINOT1",738,0) ;i $g(debug)=1 d ; "RTN","SAMINOT1",739,0) ;. i ln["<" q ; no markup "RTN","SAMINOT1",740,0) ;. n zs s zs=$STACK "RTN","SAMINOT1",741,0) ;. n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMINOT1",742,0) ;. s @dest@(lnn)=zp_":"_ln "RTN","SAMINOT1",743,0) ; "RTN","SAMINOT1",744,0) quit ; end of OUT "RTN","SAMINOT1",745,0) ; "RTN","SAMINOT1",746,0) ; "RTN","SAMINOT1",747,0) ; "RTN","SAMINOT1",748,0) XVAL(var,vals) ; extrinsic returns the patient value for var "RTN","SAMINOT1",749,0) ; "RTN","SAMINOT1",750,0) ; vals is passed by name "RTN","SAMINOT1",751,0) ; "RTN","SAMINOT1",752,0) n zr "RTN","SAMINOT1",753,0) s zr=$g(@vals@(var)) "RTN","SAMINOT1",754,0) ;i zr="" s zr="["_var_"]" "RTN","SAMINOT1",755,0) ; "RTN","SAMINOT1",756,0) quit zr ; end of $$XVAL "RTN","SAMINOT1",757,0) ; "RTN","SAMINOT1",758,0) ; "RTN","SAMINOT1",759,0) ; "RTN","SAMINOT1",760,0) EOR ; end of routine SAMINOT1 "RTN","SAMINOT2") 0^12^B485555129 "RTN","SAMINOT2",1,0) SAMINOT2 ;ven/gpl - followup form notes ;2021-10-29t20:27z "RTN","SAMINOT2",2,0) ;;18.0;SAMI;**1,9,12,15**;2020-01;Build 3 "RTN","SAMINOT2",3,0) ;;18-15 "RTN","SAMINOT2",4,0) ; "RTN","SAMINOT2",5,0) ; SAMINOT2 contains web services & other subroutines for producing "RTN","SAMINOT2",6,0) ; the ELCAP Followup Form Notes. "RTN","SAMINOT2",7,0) ; "RTN","SAMINOT2",8,0) quit ; no entry from top "RTN","SAMINOT2",9,0) ; "RTN","SAMINOT2",10,0) ; "RTN","SAMINOT2",11,0) ; "RTN","SAMINOT2",12,0) ;@section 0 primary development "RTN","SAMINOT2",13,0) ; "RTN","SAMINOT2",14,0) ; "RTN","SAMINOT2",15,0) ; "RTN","SAMINOT2",16,0) ;@license see routine SAMIUL "RTN","SAMINOT2",17,0) ;@documentation see SAMINUL "RTN","SAMINOT2",18,0) ;@contents "RTN","SAMINOT2",19,0) ; WSNOTE web service to return text note "RTN","SAMINOT2",20,0) ; $$NOTE create note "RTN","SAMINOT2",21,0) ; $$HASINNT is intake note present? "RTN","SAMINOT2",22,0) ; $$HASVCNT is communication note present? "RTN","SAMINOT2",23,0) ; $$HASLCSNT is lung cancer screening note present? "RTN","SAMINOT2",24,0) ; MKVC make communication note "RTN","SAMINOT2",25,0) ; MKLCS make lung cancer screening note "RTN","SAMINOT2",26,0) ; $$MKNT make note w/date=now "RTN","SAMINOT2",27,0) ; $$MKNTLOC make note "RTN","SAMINOT2",28,0) ; $$NTDTTM convert date/time fr/fm to/note format "RTN","SAMINOT2",29,0) ; $$NTLOCN location of nth note "RTN","SAMINOT2",30,0) ; $$NTLAST location of latest note of a type "RTN","SAMINOT2",31,0) ; NTLIST return note list "RTN","SAMINOT2",32,0) ; TLST test NTLIST "RTN","SAMINOT2",33,0) ; VCNOTE veteran communication note "RTN","SAMINOT2",34,0) ; SSTATUS smoking status "RTN","SAMINOT2",35,0) ; LCSNOTE lung cancer screening note "RTN","SAMINOT2",36,0) ; OUT output new line to note "RTN","SAMINOT2",37,0) ; $$XVAL value of form variable "RTN","SAMINOT2",38,0) ; $$PREVCT key to previous ct eval form "RTN","SAMINOT2",39,0) ; CTINFO extracts from latest ct eval form "RTN","SAMINOT2",40,0) ; IMPRESS impressions from ct eval report "RTN","SAMINOT2",41,0) ; $$XSUB dictionary value for variable "RTN","SAMINOT2",42,0) ; "RTN","SAMINOT2",43,0) ; "RTN","SAMINOT2",44,0) ; "RTN","SAMINOT2",45,0) ;@section 1 wsi WSNOTE & related subroutines "RTN","SAMINOT2",46,0) ; "RTN","SAMINOT2",47,0) ; "RTN","SAMINOT2",48,0) ; "RTN","SAMINOT2",49,0) ;@wsi WSNOTE^SAMINOT2, vapals-elcap followup note "RTN","SAMINOT2",50,0) WSNOTE(return,filter) ; web service to return text note "RTN","SAMINOT2",51,0) ; "RTN","SAMINOT2",52,0) ;ven/gpl;web service;procedure; "RTN","SAMINOT2",53,0) ; "RTN","SAMINOT2",54,0) n debug s debug=0 "RTN","SAMINOT2",55,0) i $g(filter("debug"))=1 s debug=1 "RTN","SAMINOT2",56,0) ; "RTN","SAMINOT2",57,0) k return "RTN","SAMINOT2",58,0) s HTTPRSP("mime")="text/html" "RTN","SAMINOT2",59,0) ; "RTN","SAMINOT2",60,0) n si "RTN","SAMINOT2",61,0) s si=$g(filter("studyid")) "RTN","SAMINOT2",62,0) i si="" d ; "RTN","SAMINOT2",63,0) . s si="XXX00333" "RTN","SAMINOT2",64,0) q:si="" "RTN","SAMINOT2",65,0) ; "RTN","SAMINOT2",66,0) n samikey "RTN","SAMINOT2",67,0) s samikey=$g(filter("form")) "RTN","SAMINOT2",68,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",69,0) i samikey="" d ; "RTN","SAMINOT2",70,0) . s samikey=$o(@root@("graph",si,"siform")) "RTN","SAMINOT2",71,0) . ;w !,samikey "RTN","SAMINOT2",72,0) . ;b "RTN","SAMINOT2",73,0) ; "RTN","SAMINOT2",74,0) n vals "RTN","SAMINOT2",75,0) m vals=@root@("graph",si,samikey) "RTN","SAMINOT2",76,0) ; "RTN","SAMINOT2",77,0) n note,nien,ntype "RTN","SAMINOT2",78,0) s ntype="" "RTN","SAMINOT2",79,0) s note="" "RTN","SAMINOT2",80,0) s nien=$g(filter("nien")) "RTN","SAMINOT2",81,0) i nien="" d "RTN","SAMINOT2",82,0) . s:$g(vals("samistatus"))="complete" ntype="intake" "RTN","SAMINOT2",83,0) . s:$g(vals("samistatus"))="chart-eligibility" ntype="eligibility" "RTN","SAMINOT2",84,0) . s:$g(vals("samistatus"))="pre-enrollment-discussion" ntype="pre-note" "RTN","SAMINOT2",85,0) . q:ntype="" "RTN","SAMINOT2",86,0) . ;d nien=$$NTTYPE add code to pull the latest note by type "RTN","SAMINOT2",87,0) q:nien="" "RTN","SAMINOT2",88,0) n notebase "RTN","SAMINOT2",89,0) s notebase=$$NTLOCN(si,samikey,nien) ; global location for the note "RTN","SAMINOT2",90,0) s note=$na(@notebase@("text")) "RTN","SAMINOT2",91,0) i '$d(@note) q "RTN","SAMINOT2",92,0) ; "RTN","SAMINOT2",93,0) new temp,tout "RTN","SAMINOT2",94,0) do GETTMPL^SAMICASE("temp","vapals:note") "RTN","SAMINOT2",95,0) quit:'$data(temp) "RTN","SAMINOT2",96,0) ; "RTN","SAMINOT2",97,0) n cnt s cnt=0 "RTN","SAMINOT2",98,0) n zi s zi="" "RTN","SAMINOT2",99,0) ; "RTN","SAMINOT2",100,0) f s zi=$o(temp(zi)) q:zi="" d ; "RTN","SAMINOT2",101,0) . ; "RTN","SAMINOT2",102,0) . n line s line=temp(zi) "RTN","SAMINOT2",103,0) . D LOAD^SAMIFORM(.line,samikey,si,.filter,.vals) "RTN","SAMINOT2",104,0) . s temp(zi)=line "RTN","SAMINOT2",105,0) . ; "RTN","SAMINOT2",106,0) . s cnt=cnt+1 "RTN","SAMINOT2",107,0) . s tout(cnt)=temp(zi) "RTN","SAMINOT2",108,0) . ; "RTN","SAMINOT2",109,0) . i temp(zi)["report-text" d ; "RTN","SAMINOT2",110,0) . . i temp(zi)["#" q ; "RTN","SAMINOT2",111,0) . . n zj s zj="" "RTN","SAMINOT2",112,0) . . f s zj=$o(@note@(zj)) q:zj="" d ; "RTN","SAMINOT2",113,0) . . . s cnt=cnt+1 "RTN","SAMINOT2",114,0) . . . ;s tout(cnt)=@note@(zj)_"<br>" "RTN","SAMINOT2",115,0) . . . s tout(cnt)=@note@(zj)_$char(13,10) "RTN","SAMINOT2",116,0) m return=tout "RTN","SAMINOT2",117,0) ; "RTN","SAMINOT2",118,0) quit ; end of wsi WSNOTE^SAMINOT2 "RTN","SAMINOT2",119,0) ; "RTN","SAMINOT2",120,0) ; "RTN","SAMINOT2",121,0) ; "RTN","SAMINOT2",122,0) NOTE(filter) ; extrnisic to create note "RTN","SAMINOT2",123,0) ; "RTN","SAMINOT2",124,0) ;ven/gpl;private;function; "RTN","SAMINOT2",125,0) ;@output = 1 if successful, 0 if not "RTN","SAMINOT2",126,0) ; "RTN","SAMINOT2",127,0) k ^gpl("funote") "RTN","SAMINOT2",128,0) m ^gpl("funote")=filter "RTN","SAMINOT2",129,0) ;q 0 ; while we are developing "RTN","SAMINOT2",130,0) ; "RTN","SAMINOT2",131,0) ; set up patient values "RTN","SAMINOT2",132,0) ; "RTN","SAMINOT2",133,0) n vals "RTN","SAMINOT2",134,0) ; "RTN","SAMINOT2",135,0) n si "RTN","SAMINOT2",136,0) s si=$g(filter("studyid")) "RTN","SAMINOT2",137,0) q:si="" 0 "RTN","SAMINOT2",138,0) ; "RTN","SAMINOT2",139,0) n samikey "RTN","SAMINOT2",140,0) s samikey=$g(filter("form")) "RTN","SAMINOT2",141,0) q:samikey="" 0 "RTN","SAMINOT2",142,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",143,0) ; "RTN","SAMINOT2",144,0) s vals=$na(@root@("graph",si,samikey)) "RTN","SAMINOT2",145,0) ; "RTN","SAMINOT2",146,0) i '$d(@vals) d q 0 ; "RTN","SAMINOT2",147,0) . ;w !,"error, patient values not found" "RTN","SAMINOT2",148,0) ;zwr @vals@(*) "RTN","SAMINOT2",149,0) ; "RTN","SAMINOT2",150,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT2",151,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT2",152,0) ;i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT2",153,0) i '$$ISVA^SAMIPARM(.filter) d ; "RTN","SAMINOT2",154,0) . set vetstxt="participant" "RTN","SAMINOT2",155,0) . set vetstxt2="Participant" "RTN","SAMINOT2",156,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT2",157,0) ; "RTN","SAMINOT2",158,0) k ^SAMIUL("NOTE") "RTN","SAMINOT2",159,0) m ^SAMIUL("NOTE","vals")=@vals "RTN","SAMINOT2",160,0) m ^SAMIUL("NOTE","filter")=filter "RTN","SAMINOT2",161,0) ; "RTN","SAMINOT2",162,0) n didnote s didnote=0 "RTN","SAMINOT2",163,0) ; "RTN","SAMINOT2",164,0) i $d(@vals@("notes")) d q didnote ; "RTN","SAMINOT2",165,0) . s filter("errorMessage")="Note already exists for this form." "RTN","SAMINOT2",166,0) ; "RTN","SAMINOT2",167,0) i $g(@vals@("futype"))="other" d ; "RTN","SAMINOT2",168,0) . i $g(@vals@("samistatus"))'="complete" q ; "RTN","SAMINOT2",169,0) . ;q:$$HASVCNT(vals) "RTN","SAMINOT2",170,0) . d MKVC(si,samikey,vals,.filter) ; "RTN","SAMINOT2",171,0) . s didnote=1 "RTN","SAMINOT2",172,0) ; "RTN","SAMINOT2",173,0) i $g(@vals@("futype"))="ct" d ; "RTN","SAMINOT2",174,0) . i $g(@vals@("samistatus"))'="complete" q ; "RTN","SAMINOT2",175,0) . ;q:$$HASLCSNT(vals) "RTN","SAMINOT2",176,0) . n ctdt,ctkey "RTN","SAMINOT2",177,0) . s ctdt=$$LASTCMP^SAMICAS3(si,.ctkey) "RTN","SAMINOT2",178,0) . i ctdt=-1 d q ; "RTN","SAMINOT2",179,0) . . s filter("errorMessage")="No CT Eval form exists, followup note not created." "RTN","SAMINOT2",180,0) . d MKLCS(si,samikey,vals,.filter) ; "RTN","SAMINOT2",181,0) . s didnote=1 "RTN","SAMINOT2",182,0) ; "RTN","SAMINOT2",183,0) ;i $g(@vals@("samistatus"))="complete" d ; "RTN","SAMINOT2",184,0) ;. q:$$HASVCNT(vals) "RTN","SAMINOT2",185,0) ;. d MKVC(si,samikey,vals,.filter) ; "RTN","SAMINOT2",186,0) ;. s didnote=1 "RTN","SAMINOT2",187,0) ; "RTN","SAMINOT2",188,0) quit didnote ; end of $$NOTE "RTN","SAMINOT2",189,0) ; "RTN","SAMINOT2",190,0) ; "RTN","SAMINOT2",191,0) ; "RTN","SAMINOT2",192,0) HASINNT(vals) ; is intake note present? "RTN","SAMINOT2",193,0) ; "RTN","SAMINOT2",194,0) ;ven/gpl;private;function; "RTN","SAMINOT2",195,0) ;@output = 1 if intake note is present, 0 if not "RTN","SAMINOT2",196,0) ; "RTN","SAMINOT2",197,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT2",198,0) q:'$d(@vals) "RTN","SAMINOT2",199,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT2",200,0) . i $g(@vals@("notes",zzi,"name"))["Intake" s zzrtn=1 "RTN","SAMINOT2",201,0) ; "RTN","SAMINOT2",202,0) quit zzrtn ; end of $$HASINNT "RTN","SAMINOT2",203,0) ; "RTN","SAMINOT2",204,0) ; "RTN","SAMINOT2",205,0) ; "RTN","SAMINOT2",206,0) HASVCNT(vals) ; is communication note present? "RTN","SAMINOT2",207,0) ; "RTN","SAMINOT2",208,0) ;ven/gpl;private;function; "RTN","SAMINOT2",209,0) ;@output = 1 if communication note is present, 0 if not "RTN","SAMINOT2",210,0) ; "RTN","SAMINOT2",211,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT2",212,0) q:'$d(@vals) "RTN","SAMINOT2",213,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT2",214,0) . i $g(@vals@("notes",zzi,"name"))["Communication" s zzrtn=1 "RTN","SAMINOT2",215,0) ; "RTN","SAMINOT2",216,0) quit zzrtn ; end of $$HASVCNT "RTN","SAMINOT2",217,0) ; "RTN","SAMINOT2",218,0) ; "RTN","SAMINOT2",219,0) ; "RTN","SAMINOT2",220,0) HASLCSNT(vals) ; is lung cancer screening note present? "RTN","SAMINOT2",221,0) ; "RTN","SAMINOT2",222,0) ;ven/gpl;private;function; "RTN","SAMINOT2",223,0) ;@output = 1 if communication note is present, 0 if not "RTN","SAMINOT2",224,0) ; "RTN","SAMINOT2",225,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT2",226,0) q:'$d(@vals) "RTN","SAMINOT2",227,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT2",228,0) . i $g(@vals@("notes",zzi,"name"))["Lung" s zzrtn=1 "RTN","SAMINOT2",229,0) ; "RTN","SAMINOT2",230,0) quit zzrtn ; end of $$HASLCSNT "RTN","SAMINOT2",231,0) ; "RTN","SAMINOT2",232,0) ; "RTN","SAMINOT2",233,0) ; "RTN","SAMINOT2",234,0) MKVC(sid,form,vals,filter) ; make communication note "RTN","SAMINOT2",235,0) ; "RTN","SAMINOT2",236,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",237,0) ; "RTN","SAMINOT2",238,0) n cnt s cnt=0 "RTN","SAMINOT2",239,0) ;n dest s dest=$na(@vals@("communication-note")) "RTN","SAMINOT2",240,0) n dest s dest=$$MKNT(vals,"Communication Note","communication",.filter) "RTN","SAMINOT2",241,0) k @dest "RTN","SAMINOT2",242,0) d OUT(vetstxt2_" Communication Note") "RTN","SAMINOT2",243,0) d OUT("") "RTN","SAMINOT2",244,0) d VCNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT2",245,0) ; "RTN","SAMINOT2",246,0) quit ; end of MKVC "RTN","SAMINOT2",247,0) ; "RTN","SAMINOT2",248,0) ; "RTN","SAMINOT2",249,0) ; "RTN","SAMINOT2",250,0) MKLCS(sid,form,vals,filter) ; make lung cancer screening note "RTN","SAMINOT2",251,0) ; "RTN","SAMINOT2",252,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",253,0) ; "RTN","SAMINOT2",254,0) n cnt s cnt=0 "RTN","SAMINOT2",255,0) ;n dest s dest=$na(@vals@("lcs-note")) "RTN","SAMINOT2",256,0) n dest s dest=$$MKNT(vals,"Lung Cancer Screening Note","lcs",.filter) "RTN","SAMINOT2",257,0) k @dest "RTN","SAMINOT2",258,0) d OUT("Lung Screening and Surveillance Follow up Note") "RTN","SAMINOT2",259,0) d OUT("") "RTN","SAMINOT2",260,0) d LCSNOTE(vals,dest,cnt,.filter) "RTN","SAMINOT2",261,0) ; "RTN","SAMINOT2",262,0) quit ; end of MKLCS "RTN","SAMINOT2",263,0) ; "RTN","SAMINOT2",264,0) ; "RTN","SAMINOT2",265,0) ; "RTN","SAMINOT2",266,0) MKNT(vals,title,ntype,filter) ; make note w/date=now "RTN","SAMINOT2",267,0) ; "RTN","SAMINOT2",268,0) ;ven/gpl;private;pseudo-function; "RTN","SAMINOT2",269,0) ;@input "RTN","SAMINOT2",270,0) ; .filter (passed by reference) "RTN","SAMINOT2",271,0) ;@output = global address "RTN","SAMINOT2",272,0) ; "RTN","SAMINOT2",273,0) n ntdt s ntdt=$$NTDTTM($$NOW^XLFDT) "RTN","SAMINOT2",274,0) n ntptr "RTN","SAMINOT2",275,0) s ntptr=$$MKNTLOC(vals,title,ntdt,$g(ntype),.filter) "RTN","SAMINOT2",276,0) ; "RTN","SAMINOT2",277,0) quit ntptr ; end of $$MKNT "RTN","SAMINOT2",278,0) ; "RTN","SAMINOT2",279,0) ; "RTN","SAMINOT2",280,0) ; "RTN","SAMINOT2",281,0) MKNTLOC(vals,title,ndate,ntype,filter) ; make note "RTN","SAMINOT2",282,0) ; "RTN","SAMINOT2",283,0) ;ven/gpl;private;pseudo-function; "RTN","SAMINOT2",284,0) ;@output = note location (global address) "RTN","SAMINOT2",285,0) ; "RTN","SAMINOT2",286,0) n nien "RTN","SAMINOT2",287,0) s nien=$o(@vals@("notes",""),-1)+1 "RTN","SAMINOT2",288,0) s filter("nien")=nien "RTN","SAMINOT2",289,0) n nloc s nloc=$na(@vals@("notes",nien)) "RTN","SAMINOT2",290,0) s @nloc@("name")=title_" "_$g(ndate) "RTN","SAMINOT2",291,0) s @nloc@("date")=$g(ndate) "RTN","SAMINOT2",292,0) s @nloc@("type")=$g(ntype) "RTN","SAMINOT2",293,0) ; "RTN","SAMINOT2",294,0) quit $na(@nloc@("text")) "RTN","SAMINOT2",295,0) ; "RTN","SAMINOT2",296,0) ; "RTN","SAMINOT2",297,0) ; "RTN","SAMINOT2",298,0) NTDTTM(ZFMDT) ; convert date/time fr/fm to/note format "RTN","SAMINOT2",299,0) ; "RTN","SAMINOT2",300,0) ;ven/gpl;private;function; "RTN","SAMINOT2",301,0) ;@input "RTN","SAMINOT2",302,0) ; ZFMDT = fileman date/time to translate "RTN","SAMINOT2",303,0) ;@output = date/time in note format "RTN","SAMINOT2",304,0) ; "RTN","SAMINOT2",305,0) quit $$FMTE^XLFDT(ZFMDT,"5") ; end of $$NTDTTM "RTN","SAMINOT2",306,0) ; "RTN","SAMINOT2",307,0) ; "RTN","SAMINOT2",308,0) ; "RTN","SAMINOT2",309,0) NTLOCN(sid,form,nien) ; location of nth note "RTN","SAMINOT2",310,0) ; "RTN","SAMINOT2",311,0) ;ven/gpl;private;function; "RTN","SAMINOT2",312,0) ;@output = global location of Nth note "RTN","SAMINOT2",313,0) ; "RTN","SAMINOT2",314,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",315,0) ; "RTN","SAMINOT2",316,0) quit $na(@root@("graph",sid,form,"notes",nien)) ; end of $$NTLOCN "RTN","SAMINOT2",317,0) ; "RTN","SAMINOT2",318,0) ; "RTN","SAMINOT2",319,0) ; "RTN","SAMINOT2",320,0) NTLAST(sid,form,ntype) ; location of latest note of a type "RTN","SAMINOT2",321,0) ; "RTN","SAMINOT2",322,0) ;ven/gpl;private;function; "RTN","SAMINOT2",323,0) ;@input "RTN","SAMINOT2",324,0) ; ntype = type of note "RTN","SAMINOT2",325,0) ;@output = global location of latest note of type ntype "RTN","SAMINOT2",326,0) ; "RTN","SAMINOT2",327,0) ; not yet written "RTN","SAMINOT2",328,0) ; "RTN","SAMINOT2",329,0) quit ; end of $$NTLAST "RTN","SAMINOT2",330,0) ; "RTN","SAMINOT2",331,0) ; "RTN","SAMINOT2",332,0) ; "RTN","SAMINOT2",333,0) NTLIST(nlist,sid,form) ; return note list "RTN","SAMINOT2",334,0) ; "RTN","SAMINOT2",335,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",336,0) ;@output "RTN","SAMINOT2",337,0) ; .nlist = note list [pass by reference] "RTN","SAMINOT2",338,0) ; "RTN","SAMINOT2",339,0) n zn,root,gn "RTN","SAMINOT2",340,0) s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",341,0) s zn=0 "RTN","SAMINOT2",342,0) s gn=$na(@root@("graph",sid,form,"notes")) "RTN","SAMINOT2",343,0) q:'$d(@gn) "RTN","SAMINOT2",344,0) f s zn=$o(@gn@(zn)) q:+zn=0 d ; "RTN","SAMINOT2",345,0) . s @nlist@(zn,"name")=@gn@(zn,"name") "RTN","SAMINOT2",346,0) . s @nlist@(zn,"nien")=zn "RTN","SAMINOT2",347,0) ; "RTN","SAMINOT2",348,0) quit ; end of NTLIST "RTN","SAMINOT2",349,0) ; "RTN","SAMINOT2",350,0) ; "RTN","SAMINOT2",351,0) ; "RTN","SAMINOT2",352,0) TLST ; test NTLIST "RTN","SAMINOT2",353,0) ; "RTN","SAMINOT2",354,0) ;ven/gpl;test;procedure; "RTN","SAMINOT2",355,0) ; "RTN","SAMINOT2",356,0) set SID="XXX00677" "RTN","SAMINOT2",357,0) set FORM="siform-2019-04-23" "RTN","SAMINOT2",358,0) do NTLIST("G",SID,FORM) "RTN","SAMINOT2",359,0) ; "RTN","SAMINOT2",360,0) ; zwrite G "RTN","SAMINOT2",361,0) ; "RTN","SAMINOT2",362,0) quit ; end of TLST "RTN","SAMINOT2",363,0) ; "RTN","SAMINOT2",364,0) ; "RTN","SAMINOT2",365,0) ; "RTN","SAMINOT2",366,0) VCNOTE(vals,dest,cnt,filter) ; veteran communication note "RTN","SAMINOT2",367,0) ; "RTN","SAMINOT2",368,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",369,0) ; "RTN","SAMINOT2",370,0) ; do OUT("") "RTN","SAMINOT2",371,0) ; "RTN","SAMINOT2",372,0) d OUT(vetstxt2_" was contacted via:") "RTN","SAMINOT2",373,0) n sp1 s sp1=" " "RTN","SAMINOT2",374,0) d:$$XVAL("fucmotip",vals) OUT(sp1_"In person") "RTN","SAMINOT2",375,0) d:$$XVAL("fucmotte",vals) OUT(sp1_"Telephone") "RTN","SAMINOT2",376,0) d:$$XVAL("fucmotth",vals) OUT(sp1_"TeleHealth") "RTN","SAMINOT2",377,0) d:$$XVAL("fucmotml",vals) OUT(sp1_"Mailed Letter") "RTN","SAMINOT2",378,0) d:$$XVAL("fucmotpp",vals) OUT(sp1_"Message in patient portal") "RTN","SAMINOT2",379,0) d:$$XVAL("fucmotvd",vals) OUT(sp1_"Video-on-demand (VOD)") "RTN","SAMINOT2",380,0) d:$$XVAL("fucmotot",vals) OUT(sp1_"Other: "_$$XVAL("fucmotoo",vals)) "RTN","SAMINOT2",381,0) d OUT("") "RTN","SAMINOT2",382,0) ; "RTN","SAMINOT2",383,0) d:$$XVAL("fucmotde",vals)'="" "RTN","SAMINOT2",384,0) . d OUT("Communication details:") "RTN","SAMINOT2",385,0) . d OUT(sp1_$$XVAL("fucmotde",vals)) "RTN","SAMINOT2",386,0) ; "RTN","SAMINOT2",387,0) d SSTATUS(vals) ; insert smoking status section "RTN","SAMINOT2",388,0) ; "RTN","SAMINOT2",389,0) quit ; end of VCNOTE "RTN","SAMINOT2",390,0) ; "RTN","SAMINOT2",391,0) ; "RTN","SAMINOT2",392,0) ; "RTN","SAMINOT2",393,0) SSTATUS(vals) ; smoking status "RTN","SAMINOT2",394,0) ; "RTN","SAMINOT2",395,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",396,0) ; "RTN","SAMINOT2",397,0) n sstat s sstat="" "RTN","SAMINOT2",398,0) i $$XVAL("sisa",vals)="y" d ; "RTN","SAMINOT2",399,0) . s sstat="Current" "RTN","SAMINOT2",400,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT2",401,0) . d OUT(sp1_"Current cigarette smoker (patient advised that active tobacco use") "RTN","SAMINOT2",402,0) . d OUT(sp1_"increases risk of future lung cancer, heart disease and stroke,") "RTN","SAMINOT2",403,0) . d OUT(sp1_"advised stability now does not guarantee will not develop future") "RTN","SAMINOT2",404,0) . d OUT(sp1_"lung cancer or risks of premature death from tobacco related heart") "RTN","SAMINOT2",405,0) . d OUT(sp1_"disease and stroke)") "RTN","SAMINOT2",406,0) i $$XVAL("sisa",vals)="n" d ; "RTN","SAMINOT2",407,0) . s sstat="Former" "RTN","SAMINOT2",408,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT2",409,0) . n qdate s qdate="" "RTN","SAMINOT2",410,0) . s qdate=$$XVAL("siq",vals) "RTN","SAMINOT2",411,0) . i qdate'="" d OUT(sp1_"Former cigarette smoker. Quit date: "_qdate) "RTN","SAMINOT2",412,0) . e d OUT(sp1_"Former cigarette smoker.") "RTN","SAMINOT2",413,0) i $$XVAL("sisa",vals)="o" d ; "RTN","SAMINOT2",414,0) . s sstat="Never" "RTN","SAMINOT2",415,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT2",416,0) . d OUT(sp1_"Never cigarette smoker") "RTN","SAMINOT2",417,0) ; "RTN","SAMINOT2",418,0) n cumary "RTN","SAMINOT2",419,0) d CUMPY^SAMIUR2("cumary",sid,form) "RTN","SAMINOT2",420,0) k ^gpl("funote","cumary") "RTN","SAMINOT2",421,0) m ^gpl("funote","cumary")=cumary "RTN","SAMINOT2",422,0) n cur s cur=$g(cumary("current")) "RTN","SAMINOT2",423,0) n newcum s newcum=$g(cumary("rpt",cur,4)) ; new cumulative pack years "RTN","SAMINOT2",424,0) ; "RTN","SAMINOT2",425,0) i $$XVAL("sisa",vals)="y" d ; "RTN","SAMINOT2",426,0) . d OUT("Smoking history (since last visit):") "RTN","SAMINOT2",427,0) . d OUT(sp1_"Cigarettes/day: "_$$XVAL("sicpd",vals)) "RTN","SAMINOT2",428,0) . d OUT(sp1_"PPD: "_$$XVAL("sippd",vals)) "RTN","SAMINOT2",429,0) . d OUT(sp1_"Current cumulative pack years: "_newcum) "RTN","SAMINOT2",430,0) i $$XVAL("sisa",vals)'="y" d ; "RTN","SAMINOT2",431,0) . d OUT("Smoking History") "RTN","SAMINOT2",432,0) n zi "RTN","SAMINOT2",433,0) f zi=1:1:cur d ; "RTN","SAMINOT2",434,0) . d OUT(sp1_cumary("rpt",zi,1)_" "_cumary("rpt",zi,2)) "RTN","SAMINOT2",435,0) . d OUT(sp1_sp1_"Pack Years: "_cumary("rpt",zi,3)) "RTN","SAMINOT2",436,0) . d OUT(sp1_sp1_"Cumulative: "_cumary("rpt",zi,4)) "RTN","SAMINOT2",437,0) ; "RTN","SAMINOT2",438,0) n tried s tried=$$XVAL("sittq",vals) "RTN","SAMINOT2",439,0) n ptried s ptried=$s(tried="y":"Yes",tried="n":"No",tried="o":"Not applicable",1:"") "RTN","SAMINOT2",440,0) i ptried'="" d OUT("Since your prior CT scan have you ever tried to quit smoking? "_ptried) "RTN","SAMINOT2",441,0) ; "RTN","SAMINOT2",442,0) n tryary,cnt "RTN","SAMINOT2",443,0) s cnt=0 "RTN","SAMINOT2",444,0) i $$XVAL("sisca",vals)'="" s cnt=cnt+1 s tryary(cnt)="Have not tried to quit" "RTN","SAMINOT2",445,0) i $$XVAL("siscb",vals)'="" s cnt=cnt+1 s tryary(cnt)="""Cold Turkey"" by completely stopping on your own with no other assistance" "RTN","SAMINOT2",446,0) i $$XVAL("siscc",vals)'="" s cnt=cnt+1 s tryary(cnt)="Tapering or reducing number of cigarettes smoked per day" "RTN","SAMINOT2",447,0) i $$XVAL("siscd",vals)'="" s cnt=cnt+1 s tryary(cnt)="Self-help material (e.g., brochure, cessation website)" "RTN","SAMINOT2",448,0) i $$XVAL("sisce",vals)'="" s cnt=cnt+1 s tryary(cnt)="Individual consultation or cessation counseling" "RTN","SAMINOT2",449,0) i $$XVAL("siscf",vals)'="" s cnt=cnt+1 s tryary(cnt)="Telephone cessation counseling hotline (e.g., 1-855-QUIT-VET, 1-800-QUIT-NOW)" "RTN","SAMINOT2",450,0) i $$XVAL("siscg",vals)'="" s cnt=cnt+1 s tryary(cnt)="Peer support (e.g., Nicotine Anonymous)" "RTN","SAMINOT2",451,0) i $$XVAL("sisch",vals)'="" s cnt=cnt+1 s tryary(cnt)="Nicotine replacement therapy (e.g., patch, gum, inhaler, nasal spray, lozenge)" "RTN","SAMINOT2",452,0) i $$XVAL("sisci",vals)'="" s cnt=cnt+1 s tryary(cnt)="Zyban" "RTN","SAMINOT2",453,0) i $$XVAL("siscj",vals)'="" s cnt=cnt+1 s tryary(cnt)="Hypnosis" "RTN","SAMINOT2",454,0) i $$XVAL("sisck",vals)'="" s cnt=cnt+1 s tryary(cnt)="Acupuncture / acupressure" "RTN","SAMINOT2",455,0) n tryot s tryot="" "RTN","SAMINOT2",456,0) i $$XVAL("siscl",vals)'="" d ; "RTN","SAMINOT2",457,0) . s cnt=cnt+1 s tryary(cnt)="Other (specify)" "RTN","SAMINOT2",458,0) . s tryot=$$XVAL("siscos",vals) "RTN","SAMINOT2",459,0) ; "RTN","SAMINOT2",460,0) i cnt>0 d ; "RTN","SAMINOT2",461,0) . i ptried="" d OUT("Since your prior CT scan have you ever tried to quit smoking? ") "RTN","SAMINOT2",462,0) . n zi s zi="" "RTN","SAMINOT2",463,0) . f s zi=$o(tryary(zi)) q:zi="" d ; "RTN","SAMINOT2",464,0) . . d OUT(sp1_tryary(zi)) "RTN","SAMINOT2",465,0) . i tryot'="" d OUT(sp1_sp1_tryot) "RTN","SAMINOT2",466,0) ; "RTN","SAMINOT2",467,0) n cess,cess2 s cess="" s cess2="" "RTN","SAMINOT2",468,0) i $$XVAL("siscmd",vals)="d" s cess="Declined" "RTN","SAMINOT2",469,0) i $$XVAL("siscmd",vals)="a" s cess="Advised to quit smoking; VA resources provided" "RTN","SAMINOT2",470,0) i $$XVAL("siscmd",vals)="i" d ; "RTN","SAMINOT2",471,0) . s cess="Interested in VA tobacco cessation medication. Encouraged "_vetstxt "RTN","SAMINOT2",472,0) . s cess2="to talk to provider or pharmacist about which medication option is best for you." "RTN","SAMINOT2",473,0) i cess'="" d ; "RTN","SAMINOT2",474,0) . d OUT("Tobacco cessation provided:") "RTN","SAMINOT2",475,0) . d OUT(sp1_cess) "RTN","SAMINOT2",476,0) . i cess2'="" d OUT(sp1_cess2) "RTN","SAMINOT2",477,0) ; "RTN","SAMINOT2",478,0) quit ; end of SSTATUS "RTN","SAMINOT2",479,0) ; "RTN","SAMINOT2",480,0) ; "RTN","SAMINOT2",481,0) ; "RTN","SAMINOT2",482,0) LCSNOTE(vals,dest,cnt,filter) ; lung cancer screening note "RTN","SAMINOT2",483,0) ; "RTN","SAMINOT2",484,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",485,0) ; "RTN","SAMINOT2",486,0) ; do OUT("") "RTN","SAMINOT2",487,0) ; "RTN","SAMINOT2",488,0) n sp1 s sp1=" " "RTN","SAMINOT2",489,0) d OUT("Initial LDCT/Baseline: "_$$XVAL("sidoe",vals)) "RTN","SAMINOT2",490,0) d OUT("Date of most recent CT/LDCT: "_$$XVAL("fulctdt",vals)) "RTN","SAMINOT2",491,0) d OUT(sp1_"Notification of Results: "_$$XVAL("sidof",vals)) "RTN","SAMINOT2",492,0) n addcmt s addcmt=$$XVAL("fucmctde",vals) "RTN","SAMINOT2",493,0) i addcmt'="" d ; "RTN","SAMINOT2",494,0) . d OUT("Additional comments:") "RTN","SAMINOT2",495,0) . d OUT(sp1_addcmt) "RTN","SAMINOT2",496,0) n impress s impress="" "RTN","SAMINOT2",497,0) n ctary "RTN","SAMINOT2",498,0) d CTINFO("ctary",sid,form) "RTN","SAMINOT2",499,0) s impress=$g(ctary("impression")) "RTN","SAMINOT2",500,0) ; get impression from lastest CT Eval here "RTN","SAMINOT2",501,0) d IMPRESS("ctary",sid) "RTN","SAMINOT2",502,0) ;i impress'="" d ; "RTN","SAMINOT2",503,0) ;. d OUT("Impression:") "RTN","SAMINOT2",504,0) ;. d OUT(sp1_impress) "RTN","SAMINOT2",505,0) ; smoking status follows "RTN","SAMINOT2",506,0) d SSTATUS(vals) "RTN","SAMINOT2",507,0) ;d OUT("Veteran was contacted via:") "RTN","SAMINOT2",508,0) ;n sp1 s sp1=" " "RTN","SAMINOT2",509,0) ;d:$$XVAL("fucmctip",vals) OUT(sp1_"In person") "RTN","SAMINOT2",510,0) ;d:$$XVAL("fucmctte",vals) OUT(sp1_"Telephone") "RTN","SAMINOT2",511,0) ;d:$$XVAL("fucmctth",vals) OUT(sp1_"TeleHealth") "RTN","SAMINOT2",512,0) ;d:$$XVAL("fucmctml",vals) OUT(sp1_"Mailed Letter") "RTN","SAMINOT2",513,0) ;d:$$XVAL("fucmctpp",vals) OUT(sp1_"Message in patient portal") "RTN","SAMINOT2",514,0) ;d:$$XVAL("fucmctvd",vals) OUT(sp1_"Video-on-demand (VOD)") "RTN","SAMINOT2",515,0) ;d:$$XVAL("fucmctot",vals) OUT(sp1_"Other: "_$$XVAL("fucmctoo",vals)) "RTN","SAMINOT2",516,0) ;d OUT("") "RTN","SAMINOT2",517,0) ; "RTN","SAMINOT2",518,0) ;d:$$XVAL("fucmctde",vals)'="" "RTN","SAMINOT2",519,0) ;. d OUT("Communication details:") "RTN","SAMINOT2",520,0) ;. d OUT(sp1_$$XVAL("fucmctde",vals)) "RTN","SAMINOT2",521,0) n recom s recom="" "RTN","SAMINOT2",522,0) ; get recommendations from CT eval form here "RTN","SAMINOT2",523,0) s recom=$g(ctary("followup")) "RTN","SAMINOT2",524,0) i recom'="" d ; "RTN","SAMINOT2",525,0) . d OUT("Recommendations:") "RTN","SAMINOT2",526,0) . d OUT(sp1_recom) "RTN","SAMINOT2",527,0) . i $g(ctary("followup2"))'="" d ; "RTN","SAMINOT2",528,0) . . d OUT(sp1_ctary("followup2")) "RTN","SAMINOT2",529,0) . i $g(ctary("followup3"))'="" d ; "RTN","SAMINOT2",530,0) . . d OUT(sp1_ctary("followup3")) "RTN","SAMINOT2",531,0) n ordered s ordered=$$XVAL("funewct",vals) "RTN","SAMINOT2",532,0) i ordered'="" d ; "RTN","SAMINOT2",533,0) . s ordered=$s(ordered="y":"Yes",ordered="n":"No",1:"") "RTN","SAMINOT2",534,0) . d OUT("CT/LDCT ordered: "_ordered) "RTN","SAMINOT2",535,0) n pulmon s pulmon=$$XVAL("fucompul",vals) "RTN","SAMINOT2",536,0) i pulmon'="" d ; "RTN","SAMINOT2",537,0) . s pulmon=$s(pulmon="y":"Yes",pulmon="n":"No",1:"") "RTN","SAMINOT2",538,0) . d OUT("Communicated to Pulmonary: "_pulmon) "RTN","SAMINOT2",539,0) ; "RTN","SAMINOT2",540,0) quit ; end of LCSNOTE "RTN","SAMINOT2",541,0) ; "RTN","SAMINOT2",542,0) ; "RTN","SAMINOT2",543,0) TOUT(sid) ; "RTN","SAMINOT2",544,0) s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",545,0) s groot=$na(@root@("graph",sid)) "RTN","SAMINOT2",546,0) s g="" "RTN","SAMINOT2",547,0) f s g=$o(@groot@(g)) q:g="" d ; "RTN","SAMINOT2",548,0) . w !,g "RTN","SAMINOT2",549,0) quit "RTN","SAMINOT2",550,0) ; "RTN","SAMINOT2",551,0) OUT(ln) ; output new line to note "RTN","SAMINOT2",552,0) ; "RTN","SAMINOT2",553,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",554,0) ; "RTN","SAMINOT2",555,0) i $$CRWRAP^SAMITTW(ln,dest,.cnt,80) q ; "RTN","SAMINOT2",556,0) ; "RTN","SAMINOT2",557,0) s cnt=cnt+1 "RTN","SAMINOT2",558,0) n lnn "RTN","SAMINOT2",559,0) ;s debug=1 "RTN","SAMINOT2",560,0) s lnn=$o(@dest@(" "),-1)+1 "RTN","SAMINOT2",561,0) s @dest@(lnn)=ln "RTN","SAMINOT2",562,0) ; "RTN","SAMINOT2",563,0) ;i $g(debug)=1 d ; "RTN","SAMINOT2",564,0) ;. i ln["<" q ; no markup "RTN","SAMINOT2",565,0) ;. n zs s zs=$STACK "RTN","SAMINOT2",566,0) ;. n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMINOT2",567,0) ;. s @dest@(lnn)=zp_":"_ln "RTN","SAMINOT2",568,0) ; "RTN","SAMINOT2",569,0) quit ; end of OUT "RTN","SAMINOT2",570,0) ; "RTN","SAMINOT2",571,0) ; "RTN","SAMINOT2",572,0) ; "RTN","SAMINOT2",573,0) XVAL(var,vals) ; value of form variable "RTN","SAMINOT2",574,0) ; "RTN","SAMINOT2",575,0) ;ven/gpl;private;function; "RTN","SAMINOT2",576,0) ;@input "RTN","SAMINOT2",577,0) ; var = name of form variable "RTN","SAMINOT2",578,0) ; vals = global root of form variable array "RTN","SAMINOT2",579,0) ; @vals = form variable array [pass by name] "RTN","SAMINOT2",580,0) ;@output = value of form variable "RTN","SAMINOT2",581,0) ; "RTN","SAMINOT2",582,0) new zr "RTN","SAMINOT2",583,0) set zr=$get(@vals@(var)) "RTN","SAMINOT2",584,0) ; "RTN","SAMINOT2",585,0) ; i zr="" s zr="["_var_"]" "RTN","SAMINOT2",586,0) ; "RTN","SAMINOT2",587,0) quit zr ; end of $$XVAL "RTN","SAMINOT2",588,0) ; "RTN","SAMINOT2",589,0) ; "RTN","SAMINOT2",590,0) ; "RTN","SAMINOT2",591,0) PREVCT(SID,FORM) ; key to previous ct eval form "RTN","SAMINOT2",592,0) ; "RTN","SAMINOT2",593,0) ;ven/gpl;private;function; "RTN","SAMINOT2",594,0) ;@input "RTN","SAMINOT2",595,0) ; FORM = [not yet implemented, always treated as if FORM=""] "RTN","SAMINOT2",596,0) ;@output = form key of CT Eval form previous to FORM "RTN","SAMINOT2",597,0) ; "RTN","SAMINOT2",598,0) ; $$PREVCT returns the form key to the CT Eval form previous to "RTN","SAMINOT2",599,0) ; FORM. If FORM is null, the latest CT Eval form key is returned. "RTN","SAMINOT2",600,0) ; "RTN","SAMINOT2",601,0) new gn set gn=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",602,0) new prev set prev=$order(@gn@("graph",SID,"ceform-30"),-1) "RTN","SAMINOT2",603,0) ; "RTN","SAMINOT2",604,0) quit prev ; end of $$PREVCT "RTN","SAMINOT2",605,0) ; "RTN","SAMINOT2",606,0) ; "RTN","SAMINOT2",607,0) ; "RTN","SAMINOT2",608,0) CTINFO(ARY,SID,FORM) ; extracts from latest CT Eval form "RTN","SAMINOT2",609,0) ; "RTN","SAMINOT2",610,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",611,0) ;@input "RTN","SAMINOT2",612,0) ; ARY = name of output array "RTN","SAMINOT2",613,0) ; SID "RTN","SAMINOT2",614,0) ; FORM "RTN","SAMINOT2",615,0) ;@output "RTN","SAMINOT2",616,0) ; @ARY = extract from latest ct eval form [passed by name] "RTN","SAMINOT2",617,0) ; "RTN","SAMINOT2",618,0) n ctkey s ctkey=$$PREVCT(SID,$G(FORM)) "RTN","SAMINOT2",619,0) q:ctkey="" "RTN","SAMINOT2",620,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",621,0) n ctroot s ctroot=$na(@root@("graph",SID,ctkey)) "RTN","SAMINOT2",622,0) ; "RTN","SAMINOT2",623,0) s @ARY@("ctform")=ctkey "RTN","SAMINOT2",624,0) s @ARY@("impression")=$g(@ctroot@("ceimre")) "RTN","SAMINOT2",625,0) n futext "RTN","SAMINOT2",626,0) s futext=$g(@ctroot@("cefuw")) "RTN","SAMINOT2",627,0) n futbl "RTN","SAMINOT2",628,0) s futbl("1y")="Annual repeat" "RTN","SAMINOT2",629,0) s futbl("nw")="Now" "RTN","SAMINOT2",630,0) s futbl("1m")="1 month" "RTN","SAMINOT2",631,0) s futbl("3m")="3 months" "RTN","SAMINOT2",632,0) s futbl("6m")="6 months" "RTN","SAMINOT2",633,0) s futbl("os")="other" "RTN","SAMINOT2",634,0) i futext'="" s futext=$g(futbl(futext)) "RTN","SAMINOT2",635,0) n fudate s fudate=$g(@ctroot@("cefud")) "RTN","SAMINOT2",636,0) ; #Other followup "RTN","SAMINOT2",637,0) n zfu,ofu,tofu,comma "RTN","SAMINOT2",638,0) n vals s vals=ctroot "RTN","SAMINOT2",639,0) s comma=0,tofu="" "RTN","SAMINOT2",640,0) s ofu="" "RTN","SAMINOT2",641,0) f zfu="cefuaf","cefucc","cefupe","cefufn","cefubr","cefupc","cefutb" d ; "RTN","SAMINOT2",642,0) . i $$XVAL(zfu,vals)="y" s ofu=ofu_zfu "RTN","SAMINOT2",643,0) i $$XVAL("cefuo",vals)'="" s ofu=ofu_"cefuo" "RTN","SAMINOT2",644,0) i ofu'="" d ; "RTN","SAMINOT2",645,0) . s tofu="Other followup: " "RTN","SAMINOT2",646,0) . i ofu["cefuaf" s tofu=tofu_"Antibiotics" s comma=1 "RTN","SAMINOT2",647,0) . i ofu["cefucc" s tofu=tofu_$s(comma:", ",1:"")_"Diagnostic CT" s comma=1 "RTN","SAMINOT2",648,0) . i ofu["cefupe" s tofu=tofu_$s(comma:", ",1:"")_"PET" s comma=1 "RTN","SAMINOT2",649,0) . i ofu["cefufn" s tofu=tofu_$s(comma:", ",1:"")_"Percutaneous biopsy" s comma=1 "RTN","SAMINOT2",650,0) . i ofu["cefubr" s tofu=tofu_$s(comma:", ",1:"")_"Bronchoscopy" s comma=1 "RTN","SAMINOT2",651,0) . i ofu["cefupc" s tofu=tofu_$s(comma:", ",1:"")_"Pulmonary consultation" s comma=1 "RTN","SAMINOT2",652,0) . i ofu["cefutb" s tofu=tofu_$s(comma:", ",1:"")_"Refer to tumor board" s comma=1 "RTN","SAMINOT2",653,0) . i ofu["cefuo" s tofu=tofu_$s(comma:", ",1:"")_"Other:" s comma=1 "RTN","SAMINOT2",654,0) s @ARY@("followup")=futext_" "_fudate "RTN","SAMINOT2",655,0) s @ARY@("followup2")=tofu "RTN","SAMINOT2",656,0) s @ARY@("followup3")=$$XVAL("cefuoo",vals) "RTN","SAMINOT2",657,0) ; "RTN","SAMINOT2",658,0) quit ; end of CTINFO "RTN","SAMINOT2",659,0) ; "RTN","SAMINOT2",660,0) ; "RTN","SAMINOT2",661,0) ; "RTN","SAMINOT2",662,0) IMPRESS(ARY,SID) ; impressions from ct eval report "RTN","SAMINOT2",663,0) ; "RTN","SAMINOT2",664,0) ;ven/gpl;private;procedure; "RTN","SAMINOT2",665,0) ;@input "RTN","SAMINOT2",666,0) ; ARY = name of output array "RTN","SAMINOT2",667,0) ; SID "RTN","SAMINOT2",668,0) ;@output "RTN","SAMINOT2",669,0) ; @ARY = impressions from ct eval report [passed by name] "RTN","SAMINOT2",670,0) ; "RTN","SAMINOT2",671,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT2",672,0) n ctkey s ctkey=$g(@ARY@("ctform")) "RTN","SAMINOT2",673,0) n vals s vals=$na(@root@("graph",SID,ctkey)) "RTN","SAMINOT2",674,0) n dict s dict=$$setroot^%wd("cteval-dict") "RTN","SAMINOT2",675,0) s dict=$na(@dict@("cteval-dict")) "RTN","SAMINOT2",676,0) n para s para="" "RTN","SAMINOT2",677,0) n sp1 s sp1=" " "RTN","SAMINOT2",678,0) ; "RTN","SAMINOT2",679,0) d OUT("Impression:") "RTN","SAMINOT2",680,0) d OUT(sp1_$$XSUB("ceimn",vals,dict)_para) "RTN","SAMINOT2",681,0) ; "RTN","SAMINOT2",682,0) ;# Report CAC Score and Extent of Emphysema "RTN","SAMINOT2",683,0) s cacval=0 "RTN","SAMINOT2",684,0) d ;if $$XVAL("ceccv",vals)'="e" d ; "RTN","SAMINOT2",685,0) . set vcac=$$XVAL("cecccac",vals) "RTN","SAMINOT2",686,0) . if vcac'="" d ; "RTN","SAMINOT2",687,0) . . s cacrec="" "RTN","SAMINOT2",688,0) . . s cac="The Visual Coronary Artery Calcium (CAC) Score is "_vcac_". " "RTN","SAMINOT2",689,0) . . s cacval=vcac "RTN","SAMINOT2",690,0) . . i cacval>3 s cacrec=$g(@dict@("CAC_recommendation"))_para "RTN","SAMINOT2",691,0) ; "RTN","SAMINOT2",692,0) i cacval>0 d ; "RTN","SAMINOT2",693,0) . d OUT(sp1_cac_" "_cacrec_" "_para) "RTN","SAMINOT2",694,0) . d ;if $$XVAL("ceemv",vals)="e" d ; "RTN","SAMINOT2",695,0) . . if $$XVAL("ceem",vals)'="no" d ; "RTN","SAMINOT2",696,0) . . . if $$XVAL("ceem",vals)="nv" q ; "RTN","SAMINOT2",697,0) . . . d OUT(sp1_"Emphysema: "_$$XSUB("ceem",vals,dict)_"."_para) "RTN","SAMINOT2",698,0) ; "RTN","SAMINOT2",699,0) i $$XVAL("ceclini",vals)="y" d ; "RTN","SAMINOT2",700,0) . d OUT(sp1_$$XVAL("ceclin",vals)_"."_para) "RTN","SAMINOT2",701,0) ; "RTN","SAMINOT2",702,0) i $$XVAL("ceoppai",vals)="y" d ; "RTN","SAMINOT2",703,0) . d OUT(sp1_$$XVAL("ceoppa",vals)_"."_para) "RTN","SAMINOT2",704,0) ; "RTN","SAMINOT2",705,0) i $$XVAL("ceoppabi",vals)="y" d ; "RTN","SAMINOT2",706,0) . d OUT(sp1_$$XVAL("ceoppab",vals)_"."_para) "RTN","SAMINOT2",707,0) ; "RTN","SAMINOT2",708,0) i $$XVAL("cecommcai",vals)="y" d ; "RTN","SAMINOT2",709,0) . d OUT(sp1_$$XVAL("cecommca",vals)_"."_para) "RTN","SAMINOT2",710,0) ; "RTN","SAMINOT2",711,0) i $$XVAL("ceotabnmi",vals)="y" d ; "RTN","SAMINOT2",712,0) . d OUT(sp1_$$XVAL("ceotabnm",vals)_"."_para) "RTN","SAMINOT2",713,0) ; "RTN","SAMINOT2",714,0) i $$XVAL("ceobrci",vals)="y" d ; "RTN","SAMINOT2",715,0) . d OUT(sp1_$$XVAL("ceobrc",vals)_"."_para) "RTN","SAMINOT2",716,0) ; "RTN","SAMINOT2",717,0) i $$XVAL("ceaoabbi",vals)="y" d ; "RTN","SAMINOT2",718,0) . d OUT(sp1_$$XVAL("ceaoabb",vals)_"."_para) "RTN","SAMINOT2",719,0) ; "RTN","SAMINOT2",720,0) i $$XVAL("ceaoabi",vals)="y" d ; "RTN","SAMINOT2",721,0) . d OUT(sp1_$$XVAL("ceaoab",vals)_"."_para) "RTN","SAMINOT2",722,0) ; "RTN","SAMINOT2",723,0) ;# Impression Remarks "RTN","SAMINOT2",724,0) i $$XVAL("ceimre",vals)'="" d ; "RTN","SAMINOT2",725,0) . d OUT(sp1_$$XVAL("ceimre",vals)_"."_para) "RTN","SAMINOT2",726,0) ; "RTN","SAMINOT2",727,0) quit ; end of IMPRESS "RTN","SAMINOT2",728,0) ; "RTN","SAMINOT2",729,0) ; "RTN","SAMINOT2",730,0) ; "RTN","SAMINOT2",731,0) XSUB(var,vals,dict,valdx) ; dictionary value for variable "RTN","SAMINOT2",732,0) ; "RTN","SAMINOT2",733,0) ;ven/gpl;private;function; "RTN","SAMINOT2",734,0) ;@input "RTN","SAMINOT2",735,0) ; var = name of dictionary value "RTN","SAMINOT2",736,0) ; vals = name of variables array "RTN","SAMINOT2",737,0) ; @vals = variables array [passed by name] "RTN","SAMINOT2",738,0) ; dict = name of dictionary array "RTN","SAMINOT2",739,0) ; @dict = dictionary array [passed by name] "RTN","SAMINOT2",740,0) ; valdx = used for nodules ala cect2co with nodule # included "RTN","SAMINOT2",741,0) ;@output = dictionary value for variable "RTN","SAMINOT2",742,0) ; "RTN","SAMINOT2",743,0) ; new dict set dict=$$setroot^%wd("cteval-dict") "RTN","SAMINOT2",744,0) ; "RTN","SAMINOT2",745,0) n zr,zv,zdx "RTN","SAMINOT2",746,0) s zdx=$g(valdx) "RTN","SAMINOT2",747,0) i zdx="" s zdx=var "RTN","SAMINOT2",748,0) s zv=$g(@vals@(zdx)) "RTN","SAMINOT2",749,0) ;i zv="" s zr="["_var_"]" q zr "RTN","SAMINOT2",750,0) i zv="" s zr="" q zr "RTN","SAMINOT2",751,0) s zr=$g(@dict@(var,zv)) "RTN","SAMINOT2",752,0) ;i zr="" s zr="["_var_","_zv_"]" "RTN","SAMINOT2",753,0) ; "RTN","SAMINOT2",754,0) quit zr ; end of $$XSUB "RTN","SAMINOT2",755,0) ; "RTN","SAMINOT2",756,0) ; "RTN","SAMINOT2",757,0) ; "RTN","SAMINOT2",758,0) EOR ; end of routine SAMINOT2 "RTN","SAMINOT3") 0^13^B302971406 "RTN","SAMINOT3",1,0) SAMINOT3 ;ven/gpl - CTeval report plain text ; 2021-10-29t23:36z "RTN","SAMINOT3",2,0) ;;18.0;SAMI;**15**;;Build 3 "RTN","SAMINOT3",3,0) ;;18-15 "RTN","SAMINOT3",4,0) ; "RTN","SAMINOT3",5,0) ;@license: see routine SAMIUL "RTN","SAMINOT3",6,0) ; "RTN","SAMINOT3",7,0) quit ; no entry from top "RTN","SAMINOT3",8,0) ; "RTN","SAMINOT3",9,0) WSNOTE(return,filter) ; web service which returns a text note "RTN","SAMINOT3",10,0) ; "RTN","SAMINOT3",11,0) n debug s debug=0 "RTN","SAMINOT3",12,0) i $g(filter("debug"))=1 s debug=1 "RTN","SAMINOT3",13,0) ; "RTN","SAMINOT3",14,0) k return "RTN","SAMINOT3",15,0) s HTTPRSP("mime")="text/html" "RTN","SAMINOT3",16,0) ; "RTN","SAMINOT3",17,0) n si "RTN","SAMINOT3",18,0) s si=$g(filter("studyid")) "RTN","SAMINOT3",19,0) i si="" d ; "RTN","SAMINOT3",20,0) . s si="XXX00333" "RTN","SAMINOT3",21,0) q:si="" "RTN","SAMINOT3",22,0) ; "RTN","SAMINOT3",23,0) n samikey "RTN","SAMINOT3",24,0) s samikey=$g(filter("form")) "RTN","SAMINOT3",25,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",26,0) ; "RTN","SAMINOT3",27,0) n vals "RTN","SAMINOT3",28,0) m vals=@root@("graph",si,samikey) "RTN","SAMINOT3",29,0) ; "RTN","SAMINOT3",30,0) n notebase "RTN","SAMINOT3",31,0) d WSREPORT^SAMICTT0(.notebase,.filter) "RTN","SAMINOT3",32,0) s note="notebase" "RTN","SAMINOT3",33,0) i '$d(@note) q "RTN","SAMINOT3",34,0) ; "RTN","SAMINOT3",35,0) new temp,tout "RTN","SAMINOT3",36,0) do GETTMPL^SAMICASE("temp","vapals:note") "RTN","SAMINOT3",37,0) quit:'$data(temp) "RTN","SAMINOT3",38,0) ; "RTN","SAMINOT3",39,0) n cnt s cnt=0 "RTN","SAMINOT3",40,0) n zi s zi="" "RTN","SAMINOT3",41,0) ; "RTN","SAMINOT3",42,0) f s zi=$o(temp(zi)) q:zi="" d ; "RTN","SAMINOT3",43,0) . ; "RTN","SAMINOT3",44,0) . n line s line=temp(zi) "RTN","SAMINOT3",45,0) . D LOAD^SAMIFORM(.line,samikey,si,.filter,.vals) "RTN","SAMINOT3",46,0) . s temp(zi)=line "RTN","SAMINOT3",47,0) . ; "RTN","SAMINOT3",48,0) . s cnt=cnt+1 "RTN","SAMINOT3",49,0) . s tout(cnt)=temp(zi) "RTN","SAMINOT3",50,0) . ; "RTN","SAMINOT3",51,0) . i temp(zi)["report-text" d ; "RTN","SAMINOT3",52,0) . . i temp(zi)["#" q ; "RTN","SAMINOT3",53,0) . . n zj s zj="" "RTN","SAMINOT3",54,0) . . f s zj=$o(@note@(zj)) q:zj="" d ; "RTN","SAMINOT3",55,0) . . . s cnt=cnt+1 "RTN","SAMINOT3",56,0) . . . ;s tout(cnt)=@note@(zj)_"<br>" "RTN","SAMINOT3",57,0) . . . s tout(cnt)=@note@(zj)_$char(13,10) "RTN","SAMINOT3",58,0) m return=tout "RTN","SAMINOT3",59,0) q "RTN","SAMINOT3",60,0) ; "RTN","SAMINOT3",61,0) NOTE(filter) ; extrnisic which creates a note "RTN","SAMINOT3",62,0) ; returns 1 if successful, 0 if not "RTN","SAMINOT3",63,0) ; "RTN","SAMINOT3",64,0) ; "RTN","SAMINOT3",65,0) k ^gpl("funote") "RTN","SAMINOT3",66,0) m ^gpl("funote")=filter "RTN","SAMINOT3",67,0) ;q 0 ; while we are developing "RTN","SAMINOT3",68,0) ; "RTN","SAMINOT3",69,0) ; set up patient values "RTN","SAMINOT3",70,0) ; "RTN","SAMINOT3",71,0) n vals "RTN","SAMINOT3",72,0) ; "RTN","SAMINOT3",73,0) n si "RTN","SAMINOT3",74,0) s si=$g(filter("studyid")) "RTN","SAMINOT3",75,0) q:si="" 0 "RTN","SAMINOT3",76,0) ; "RTN","SAMINOT3",77,0) n samikey "RTN","SAMINOT3",78,0) s samikey=$g(filter("form")) "RTN","SAMINOT3",79,0) q:samikey="" 0 "RTN","SAMINOT3",80,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",81,0) ; "RTN","SAMINOT3",82,0) s vals=$na(@root@("graph",si,samikey)) "RTN","SAMINOT3",83,0) ; "RTN","SAMINOT3",84,0) i '$d(@vals) d q 0 ; "RTN","SAMINOT3",85,0) . ;w !,"error, patient values not found" "RTN","SAMINOT3",86,0) ;zwr @vals@(*) "RTN","SAMINOT3",87,0) ; "RTN","SAMINOT3",88,0) n vetstxt s vetstxt="veteran" "RTN","SAMINOT3",89,0) n vetstxt2 s vetstxt2="Veteran" "RTN","SAMINOT3",90,0) i $g(filter("veteransAffairsSite"))="false" d ; "RTN","SAMINOT3",91,0) . set vetstxt="participant" "RTN","SAMINOT3",92,0) . set vetstxt2="Participant" "RTN","SAMINOT3",93,0) set filter("vetstxt")=vetstxt "RTN","SAMINOT3",94,0) ; "RTN","SAMINOT3",95,0) k ^SAMIUL("NOTE") "RTN","SAMINOT3",96,0) m ^SAMIUL("NOTE","vals")=@vals "RTN","SAMINOT3",97,0) m ^SAMIUL("NOTE","filter")=filter "RTN","SAMINOT3",98,0) ; "RTN","SAMINOT3",99,0) n didnote s didnote=0 "RTN","SAMINOT3",100,0) ; "RTN","SAMINOT3",101,0) i $d(@vals@("notes")) d q didnote ; "RTN","SAMINOT3",102,0) . s filter("errorMessage")="Note already exists for this form." "RTN","SAMINOT3",103,0) ; "RTN","SAMINOT3",104,0) i $g(@vals@("futype"))="other" d ; "RTN","SAMINOT3",105,0) . i $g(@vals@("samistatus"))'="complete" q ; "RTN","SAMINOT3",106,0) . ;q:$$HASVCNT(vals) "RTN","SAMINOT3",107,0) . d MKVC(si,samikey,vals,.filter) ; "RTN","SAMINOT3",108,0) . s didnote=1 "RTN","SAMINOT3",109,0) ; "RTN","SAMINOT3",110,0) i $g(@vals@("futype"))="ct" d ; "RTN","SAMINOT3",111,0) . i $g(@vals@("samistatus"))'="complete" q ; "RTN","SAMINOT3",112,0) . ;q:$$HASLCSNT(vals) "RTN","SAMINOT3",113,0) . d MKLCS(si,samikey,vals,.filter) ; "RTN","SAMINOT3",114,0) . s didnote=1 "RTN","SAMINOT3",115,0) ; "RTN","SAMINOT3",116,0) ;i $g(@vals@("samistatus"))="complete" d ; "RTN","SAMINOT3",117,0) ;. q:$$HASVCNT(vals) "RTN","SAMINOT3",118,0) ;. d MKVC(si,samikey,vals,.filter) ; "RTN","SAMINOT3",119,0) ;. s didnote=1 "RTN","SAMINOT3",120,0) ; "RTN","SAMINOT3",121,0) q didnote "RTN","SAMINOT3",122,0) ; "RTN","SAMINOT3",123,0) HASINNT(vals) ; extrinsic returns 1 if intake note is present "RTN","SAMINOT3",124,0) ; else returns 0 "RTN","SAMINOT3",125,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT3",126,0) q:'$d(@vals) "RTN","SAMINOT3",127,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT3",128,0) . i $g(@vals@("notes",zzi,"name"))["Intake" s zzrtn=1 "RTN","SAMINOT3",129,0) q zzrtn "RTN","SAMINOT3",130,0) ; "RTN","SAMINOT3",131,0) HASVCNT(vals) ; extrinsic returns 1 if communication note is present "RTN","SAMINOT3",132,0) ; else returns 0 "RTN","SAMINOT3",133,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT3",134,0) q:'$d(@vals) "RTN","SAMINOT3",135,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT3",136,0) . i $g(@vals@("notes",zzi,"name"))["Communication" s zzrtn=1 "RTN","SAMINOT3",137,0) q zzrtn "RTN","SAMINOT3",138,0) ; "RTN","SAMINOT3",139,0) HASLCSNT(vals) ; extrinsic returns 1 if communication note is present "RTN","SAMINOT3",140,0) ; else returns 0 "RTN","SAMINOT3",141,0) n zzi,zzrtn s (zzi,zzrtn)=0 "RTN","SAMINOT3",142,0) q:'$d(@vals) "RTN","SAMINOT3",143,0) f s zzi=$o(@vals@("notes",zzi)) q:+zzi=0 d ; "RTN","SAMINOT3",144,0) . i $g(@vals@("notes",zzi,"name"))["Lung" s zzrtn=1 "RTN","SAMINOT3",145,0) q zzrtn "RTN","SAMINOT3",146,0) ; "RTN","SAMINOT3",147,0) MKVC(sid,form,vals,filter) ; "RTN","SAMINOT3",148,0) n cnt s cnt=0 "RTN","SAMINOT3",149,0) ;n dest s dest=$na(@vals@("communication-note")) "RTN","SAMINOT3",150,0) n dest s dest=$$MKNT(vals,"Communication Note","communication",.filter) "RTN","SAMINOT3",151,0) k @dest "RTN","SAMINOT3",152,0) d OUT(vetstxt_" Communication Note") "RTN","SAMINOT3",153,0) d OUT("") "RTN","SAMINOT3",154,0) d VCNOTE(vals,dest,cnt) "RTN","SAMINOT3",155,0) q "RTN","SAMINOT3",156,0) ; "RTN","SAMINOT3",157,0) MKLCS(sid,form,vals,filter) ; "RTN","SAMINOT3",158,0) n cnt s cnt=0 "RTN","SAMINOT3",159,0) ;n dest s dest=$na(@vals@("lcs-note")) "RTN","SAMINOT3",160,0) n dest s dest=$$MKNT(vals,"Lung Cancer Screening Note","lcs",.filter) "RTN","SAMINOT3",161,0) k @dest "RTN","SAMINOT3",162,0) d OUT("Lung Screening and Surveillance Follow up Note") "RTN","SAMINOT3",163,0) d OUT("") "RTN","SAMINOT3",164,0) d LCSNOTE(vals,dest,cnt) "RTN","SAMINOT3",165,0) q "RTN","SAMINOT3",166,0) ; "RTN","SAMINOT3",167,0) MKNT(vals,title,ntype,filter) ; extrinsic makes a note date=now returns "RTN","SAMINOT3",168,0) ; global addr. filter must be passed by reference "RTN","SAMINOT3",169,0) n ntdt s ntdt=$$NTDTTM($$NOW^XLFDT) "RTN","SAMINOT3",170,0) n ntptr "RTN","SAMINOT3",171,0) s ntptr=$$MKNTLOC(vals,title,ntdt,$g(ntype),.filter) "RTN","SAMINOT3",172,0) q ntptr "RTN","SAMINOT3",173,0) ; "RTN","SAMINOT3",174,0) MKNTLOC(vals,title,ndate,ntype,filter) ; extrinsic returns the "RTN","SAMINOT3",175,0) ;location for the note "RTN","SAMINOT3",176,0) n nien "RTN","SAMINOT3",177,0) s nien=$o(@vals@("notes",""),-1)+1 "RTN","SAMINOT3",178,0) s filter("nien")=nien "RTN","SAMINOT3",179,0) n nloc s nloc=$na(@vals@("notes",nien)) "RTN","SAMINOT3",180,0) s @nloc@("name")=title_" "_$g(ndate) "RTN","SAMINOT3",181,0) s @nloc@("date")=$g(ndate) "RTN","SAMINOT3",182,0) s @nloc@("type")=$g(ntype) "RTN","SAMINOT3",183,0) q $na(@nloc@("text")) "RTN","SAMINOT3",184,0) ; "RTN","SAMINOT3",185,0) NTDTTM(ZFMDT) ; extrinsic returns the date and time in Note format "RTN","SAMINOT3",186,0) ; ZFMDT is the fileman date/time to translate "RTN","SAMINOT3",187,0) q $$FMTE^XLFDT(ZFMDT,"5") "RTN","SAMINOT3",188,0) ; "RTN","SAMINOT3",189,0) NTLOCN(sid,form,nien) ; extrinsic returns the location of the Nth note "RTN","SAMINOT3",190,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",191,0) q $na(@root@("graph",sid,form,"notes",nien)) "RTN","SAMINOT3",192,0) ; "RTN","SAMINOT3",193,0) NTLAST(sid,form,ntype) ; extrinsic returns the location of the latest note "RTN","SAMINOT3",194,0) ; of the type ntype "RTN","SAMINOT3",195,0) q "RTN","SAMINOT3",196,0) ; "RTN","SAMINOT3",197,0) NTLIST(nlist,sid,form) ; returns the note list in nlist, passed by ref "RTN","SAMINOT3",198,0) ; "RTN","SAMINOT3",199,0) n zn,root,gn "RTN","SAMINOT3",200,0) s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",201,0) s zn=0 "RTN","SAMINOT3",202,0) s gn=$na(@root@("graph",sid,form,"notes")) "RTN","SAMINOT3",203,0) q:'$d(@gn) "RTN","SAMINOT3",204,0) f s zn=$o(@gn@(zn)) q:+zn=0 d ; "RTN","SAMINOT3",205,0) . s @nlist@(zn,"name")=@gn@(zn,"name") "RTN","SAMINOT3",206,0) . s @nlist@(zn,"nien")=zn "RTN","SAMINOT3",207,0) ; "RTN","SAMINOT3",208,0) q "RTN","SAMINOT3",209,0) ; "RTN","SAMINOT3",210,0) TLST ; "RTN","SAMINOT3",211,0) S SID="XXX00677" "RTN","SAMINOT3",212,0) S FORM="siform-2019-04-23" "RTN","SAMINOT3",213,0) D NTLIST("G",SID,FORM) "RTN","SAMINOT3",214,0) ;ZWR G "RTN","SAMINOT3",215,0) Q "RTN","SAMINOT3",216,0) ; "RTN","SAMINOT3",217,0) VCNOTE(vals,dest,cnt) ; Veteran Communication Note "RTN","SAMINOT3",218,0) ;d OUT("") "RTN","SAMINOT3",219,0) d OUT(vetstxt2_" was contacted via:") "RTN","SAMINOT3",220,0) n sp1 s sp1=" " "RTN","SAMINOT3",221,0) d:$$XVAL("fucmotip",vals) OUT(sp1_"In person") "RTN","SAMINOT3",222,0) d:$$XVAL("fucmotte",vals) OUT(sp1_"Telephone") "RTN","SAMINOT3",223,0) d:$$XVAL("fucmotth",vals) OUT(sp1_"TeleHealth") "RTN","SAMINOT3",224,0) d:$$XVAL("fucmotml",vals) OUT(sp1_"Mailed Letter") "RTN","SAMINOT3",225,0) d:$$XVAL("fucmotpp",vals) OUT(sp1_"Message in patient portal") "RTN","SAMINOT3",226,0) d:$$XVAL("fucmotvd",vals) OUT(sp1_"Video-on-demand (VOD)") "RTN","SAMINOT3",227,0) d:$$XVAL("fucmotot",vals) OUT(sp1_"Other: "_$$XVAL("fucmotoo",vals)) "RTN","SAMINOT3",228,0) d OUT("") "RTN","SAMINOT3",229,0) ; "RTN","SAMINOT3",230,0) d:$$XVAL("fucmotde",vals)'="" "RTN","SAMINOT3",231,0) . d OUT("Communication details:") "RTN","SAMINOT3",232,0) . d OUT(sp1_$$XVAL("fucmotde",vals)) "RTN","SAMINOT3",233,0) ; "RTN","SAMINOT3",234,0) d SSTATUS(vals) ; insert smoking status section "RTN","SAMINOT3",235,0) q "RTN","SAMINOT3",236,0) ; "RTN","SAMINOT3",237,0) SSTATUS(vals) ; "RTN","SAMINOT3",238,0) n sstat s sstat="" "RTN","SAMINOT3",239,0) i $$XVAL("sisa",vals)="y" d ; "RTN","SAMINOT3",240,0) . s sstat="Current" "RTN","SAMINOT3",241,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT3",242,0) . d OUT(sp1_"Current cigarette smoker (patient advised that active tobacco use") "RTN","SAMINOT3",243,0) . d OUT(sp1_"increases risk of future lung cancer, heart disease and stroke,") "RTN","SAMINOT3",244,0) . d OUT(sp1_"advised stability now does not guarantee will not develop future") "RTN","SAMINOT3",245,0) . d OUT(sp1_"lung cancer or risks of premature death from tobacco related heart") "RTN","SAMINOT3",246,0) . d OUT(sp1_"disease and stroke)") "RTN","SAMINOT3",247,0) i $$XVAL("sisa",vals)="n" d ; "RTN","SAMINOT3",248,0) . s sstat="Former" "RTN","SAMINOT3",249,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT3",250,0) . n qdate s qdate="" "RTN","SAMINOT3",251,0) . s qdate=$$XVAL("siq",vals) "RTN","SAMINOT3",252,0) . i qdate'="" d OUT(sp1_"Former cigarette smoker. Quit date: "_qdate) "RTN","SAMINOT3",253,0) . e d OUT(sp1_"Former cigarette smoker.") "RTN","SAMINOT3",254,0) i $$XVAL("sisa",vals)="o" d ; "RTN","SAMINOT3",255,0) . s sstat="Never" "RTN","SAMINOT3",256,0) . d OUT("Smoking status: "_sstat) "RTN","SAMINOT3",257,0) . d OUT(sp1_"Never cigarette smoker") "RTN","SAMINOT3",258,0) ; "RTN","SAMINOT3",259,0) n cumary "RTN","SAMINOT3",260,0) d CUMPY^SAMIUR2("cumary",sid,form) "RTN","SAMINOT3",261,0) k ^gpl("funote","cumary") "RTN","SAMINOT3",262,0) m ^gpl("funote","cumary")=cumary "RTN","SAMINOT3",263,0) n cur s cur=$g(cumary("current")) "RTN","SAMINOT3",264,0) n newcum s newcum=$g(cumary("rpt",cur,4)) ; new cumulative pack years "RTN","SAMINOT3",265,0) ; "RTN","SAMINOT3",266,0) i $$XVAL("sisa",vals)="y" d ; "RTN","SAMINOT3",267,0) . d OUT("Smoking history (since last visit):") "RTN","SAMINOT3",268,0) . d OUT(sp1_"Cigarettes/day: "_$$XVAL("sicpd",vals)) "RTN","SAMINOT3",269,0) . d OUT(sp1_"PPD: "_$$XVAL("sippd",vals)) "RTN","SAMINOT3",270,0) . d OUT(sp1_"Current cumulative pack years: "_newcum) "RTN","SAMINOT3",271,0) i $$XVAL("sisa",vals)'="y" d ; "RTN","SAMINOT3",272,0) . d OUT("Smoking History") "RTN","SAMINOT3",273,0) n zi "RTN","SAMINOT3",274,0) f zi=1:1:cur d ; "RTN","SAMINOT3",275,0) . d OUT(sp1_cumary("rpt",zi,1)_" "_cumary("rpt",zi,2)) "RTN","SAMINOT3",276,0) . d OUT(sp1_sp1_"Pack Years: "_cumary("rpt",zi,3)) "RTN","SAMINOT3",277,0) . d OUT(sp1_sp1_"Cumulative: "_cumary("rpt",zi,4)) "RTN","SAMINOT3",278,0) ; "RTN","SAMINOT3",279,0) n tried s tried=$$XVAL("sittq",vals) "RTN","SAMINOT3",280,0) n ptried s ptried=$s(tried="y":"Yes",tried="n":"No",tried="o":"Not applicable",1:"") "RTN","SAMINOT3",281,0) i ptried'="" d OUT("Since your prior CT scan have you ever tried to quit smoking? "_ptried) "RTN","SAMINOT3",282,0) ; "RTN","SAMINOT3",283,0) n tryary,cnt "RTN","SAMINOT3",284,0) s cnt=0 "RTN","SAMINOT3",285,0) i $$XVAL("sisca",vals)'="" s cnt=cnt+1 s tryary(cnt)="Have not tried to quit" "RTN","SAMINOT3",286,0) i $$XVAL("siscb",vals)'="" s cnt=cnt+1 s tryary(cnt)="""Cold Turkey"" by completely stopping on your own with no other assistance" "RTN","SAMINOT3",287,0) i $$XVAL("siscc",vals)'="" s cnt=cnt+1 s tryary(cnt)="Tapering or reducing number of cigarettes smoked per day" "RTN","SAMINOT3",288,0) i $$XVAL("siscd",vals)'="" s cnt=cnt+1 s tryary(cnt)="Self-help material (e.g., brochure, cessation website)" "RTN","SAMINOT3",289,0) i $$XVAL("sisce",vals)'="" s cnt=cnt+1 s tryary(cnt)="Individual consultation or cessation counseling" "RTN","SAMINOT3",290,0) ;i $$XVAL("siscf",vals)'="" s cnt=cnt+1 s tryary(cnt)="Telephone cessation counseling hotline (e.g., 1-855-QUIT-VET, 1-800-QUIT-NOW)" "RTN","SAMINOT3",291,0) i $$XVAL("siscf",vals)'="" s cnt=cnt+1 s tryary(cnt)="Telephone cessation counseling hotline" "RTN","SAMINOT3",292,0) i $$XVAL("siscg",vals)'="" s cnt=cnt+1 s tryary(cnt)="Peer support (e.g., Nicotine Anonymous)" "RTN","SAMINOT3",293,0) i $$XVAL("sisch",vals)'="" s cnt=cnt+1 s tryary(cnt)="Nicotine replacement therapy (e.g., patch, gum, inhaler, nasal spray, lozenge)" "RTN","SAMINOT3",294,0) i $$XVAL("sisci",vals)'="" s cnt=cnt+1 s tryary(cnt)="Zyban" "RTN","SAMINOT3",295,0) i $$XVAL("siscj",vals)'="" s cnt=cnt+1 s tryary(cnt)="Hypnosis" "RTN","SAMINOT3",296,0) i $$XVAL("sisck",vals)'="" s cnt=cnt+1 s tryary(cnt)="Acupuncture / acupressure" "RTN","SAMINOT3",297,0) n tryot s tryot="" "RTN","SAMINOT3",298,0) i $$XVAL("siscl",vals)'="" d ; "RTN","SAMINOT3",299,0) . s cnt=cnt+1 s tryary(cnt)="Other (specify)" "RTN","SAMINOT3",300,0) . s tryot=$$XVAL("siscos",vals) "RTN","SAMINOT3",301,0) ; "RTN","SAMINOT3",302,0) i cnt>0 d ; "RTN","SAMINOT3",303,0) . i ptried="" d OUT("Since your prior CT scan have you ever tried to quit smoking? ") "RTN","SAMINOT3",304,0) . n zi s zi="" "RTN","SAMINOT3",305,0) . f s zi=$o(tryary(zi)) q:zi="" d ; "RTN","SAMINOT3",306,0) . . d OUT(sp1_tryary(zi)) "RTN","SAMINOT3",307,0) . i tryot'="" d OUT(sp1_sp1_tryot) "RTN","SAMINOT3",308,0) ; "RTN","SAMINOT3",309,0) n cess,cess2 s cess="" s cess2="" "RTN","SAMINOT3",310,0) i $$XVAL("siscmd",vals)="d" s cess="Declined" "RTN","SAMINOT3",311,0) i $$XVAL("siscmd",vals)="a" s cess="Advised to quit smoking; VA resources provided" "RTN","SAMINOT3",312,0) i $$XVAL("siscmd",vals)="i" d ; "RTN","SAMINOT3",313,0) . s cess="Interested in VA tobacco cessation medication. Encouraged "_vetstxt "RTN","SAMINOT3",314,0) . s cess2="to talk to provider or pharmacist about which medication option is best for you." "RTN","SAMINOT3",315,0) i cess'="" d ; "RTN","SAMINOT3",316,0) . d OUT("Tobacco cessation provided:") "RTN","SAMINOT3",317,0) . d OUT(sp1_cess) "RTN","SAMINOT3",318,0) . i cess2'="" d OUT(sp1_cess2) "RTN","SAMINOT3",319,0) q "RTN","SAMINOT3",320,0) ; "RTN","SAMINOT3",321,0) LCSNOTE(vals,dest,cnt) ; Lung Screening Note "RTN","SAMINOT3",322,0) ;d OUT("") "RTN","SAMINOT3",323,0) n sp1 s sp1=" " "RTN","SAMINOT3",324,0) d OUT("Initial LDCT/Baseline: "_$$XVAL("sidoe",vals)) "RTN","SAMINOT3",325,0) d OUT("Date of most recent CT/LDCT: "_$$XVAL("fulctdt",vals)) "RTN","SAMINOT3",326,0) d OUT(sp1_"Notification of Results: "_$$XVAL("sidof",vals)) "RTN","SAMINOT3",327,0) n addcmt s addcmt=$$XVAL("fucmctde",vals) "RTN","SAMINOT3",328,0) i addcmt'="" d ; "RTN","SAMINOT3",329,0) . d OUT("Additional comments:") "RTN","SAMINOT3",330,0) . d OUT(sp1_addcmt) "RTN","SAMINOT3",331,0) n impress s impress="" "RTN","SAMINOT3",332,0) n ctary "RTN","SAMINOT3",333,0) d CTINFO("ctary",sid,form) "RTN","SAMINOT3",334,0) s impress=$g(ctary("impression")) "RTN","SAMINOT3",335,0) ; get impression from lastest CT Eval here "RTN","SAMINOT3",336,0) d IMPRESS("ctary",sid) "RTN","SAMINOT3",337,0) ;i impress'="" d ; "RTN","SAMINOT3",338,0) ;. d OUT("Impression:") "RTN","SAMINOT3",339,0) ;. d OUT(sp1_impress) "RTN","SAMINOT3",340,0) ; smoking status follows "RTN","SAMINOT3",341,0) d SSTATUS(vals) "RTN","SAMINOT3",342,0) ;d OUT("Veteran was contacted via:") "RTN","SAMINOT3",343,0) ;n sp1 s sp1=" " "RTN","SAMINOT3",344,0) ;d:$$XVAL("fucmctip",vals) OUT(sp1_"In person") "RTN","SAMINOT3",345,0) ;d:$$XVAL("fucmctte",vals) OUT(sp1_"Telephone") "RTN","SAMINOT3",346,0) ;d:$$XVAL("fucmctth",vals) OUT(sp1_"TeleHealth") "RTN","SAMINOT3",347,0) ;d:$$XVAL("fucmctml",vals) OUT(sp1_"Mailed Letter") "RTN","SAMINOT3",348,0) ;d:$$XVAL("fucmctpp",vals) OUT(sp1_"Message in patient portal") "RTN","SAMINOT3",349,0) ;d:$$XVAL("fucmctvd",vals) OUT(sp1_"Video-on-demand (VOD)") "RTN","SAMINOT3",350,0) ;d:$$XVAL("fucmctot",vals) OUT(sp1_"Other: "_$$XVAL("fucmctoo",vals)) "RTN","SAMINOT3",351,0) ;d OUT("") "RTN","SAMINOT3",352,0) ; "RTN","SAMINOT3",353,0) ;d:$$XVAL("fucmctde",vals)'="" "RTN","SAMINOT3",354,0) ;. d OUT("Communication details:") "RTN","SAMINOT3",355,0) ;. d OUT(sp1_$$XVAL("fucmctde",vals)) "RTN","SAMINOT3",356,0) n recom s recom="" "RTN","SAMINOT3",357,0) ; get recommendations from CT eval form here "RTN","SAMINOT3",358,0) s recom=$g(ctary("followup")) "RTN","SAMINOT3",359,0) i recom'="" d ; "RTN","SAMINOT3",360,0) . d OUT("Recommendations:") "RTN","SAMINOT3",361,0) . d OUT(sp1_recom) "RTN","SAMINOT3",362,0) . i $g(ctary("followup2"))'="" d ; "RTN","SAMINOT3",363,0) . . d OUT(sp1_ctary("followup2")) "RTN","SAMINOT3",364,0) . i $g(ctary("followup3"))'="" d ; "RTN","SAMINOT3",365,0) . . d OUT(sp1_ctary("followup3")) "RTN","SAMINOT3",366,0) n ordered s ordered=$$XVAL("funewct",vals) "RTN","SAMINOT3",367,0) i ordered'="" d ; "RTN","SAMINOT3",368,0) . s ordered=$s(ordered="y":"Yes",ordered="n":"No",1:"") "RTN","SAMINOT3",369,0) . d OUT("CT/LDCT ordered: "_ordered) "RTN","SAMINOT3",370,0) n pulmon s pulmon=$$XVAL("fucompul",vals) "RTN","SAMINOT3",371,0) i pulmon'="" d ; "RTN","SAMINOT3",372,0) . s pulmon=$s(pulmon="y":"Yes",pulmon="n":"No",1:"") "RTN","SAMINOT3",373,0) . d OUT("Communicated to Pulmonary: "_pulmon) "RTN","SAMINOT3",374,0) q "RTN","SAMINOT3",375,0) ; "RTN","SAMINOT3",376,0) OUT(ln) ; "RTN","SAMINOT3",377,0) s cnt=cnt+1 "RTN","SAMINOT3",378,0) n lnn "RTN","SAMINOT3",379,0) ;s debug=1 "RTN","SAMINOT3",380,0) s lnn=$o(@dest@(" "),-1)+1 "RTN","SAMINOT3",381,0) s @dest@(lnn)=ln "RTN","SAMINOT3",382,0) ;i $g(debug)=1 d ; "RTN","SAMINOT3",383,0) ;. i ln["<" q ; no markup "RTN","SAMINOT3",384,0) ;. n zs s zs=$STACK "RTN","SAMINOT3",385,0) ;. n zp s zp=$STACK(zs-2,"PLACE") "RTN","SAMINOT3",386,0) ;. s @dest@(lnn)=zp_":"_ln "RTN","SAMINOT3",387,0) q "RTN","SAMINOT3",388,0) ; "RTN","SAMINOT3",389,0) XVAL(var,vals) ; extrinsic returns the patient value for var "RTN","SAMINOT3",390,0) ; vals is passed by name "RTN","SAMINOT3",391,0) n zr "RTN","SAMINOT3",392,0) s zr=$g(@vals@(var)) "RTN","SAMINOT3",393,0) ;i zr="" s zr="["_var_"]" "RTN","SAMINOT3",394,0) q zr "RTN","SAMINOT3",395,0) ; "RTN","SAMINOT3",396,0) PREVCT(SID,FORM) ; extrinic returns the form key to the CT Eval form "RTN","SAMINOT3",397,0) ; previous to FORM. If FORM is null, the latest CT Eval form key is returned "RTN","SAMINOT3",398,0) ; FORM sensitivity is tbd.. always returns latest CTEval "RTN","SAMINOT3",399,0) n gn s gn=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",400,0) n prev s prev=$o(@gn@("graph",SID,"ceform-30"),-1) "RTN","SAMINOT3",401,0) q prev "RTN","SAMINOT3",402,0) ; "RTN","SAMINOT3",403,0) CTINFO(ARY,SID,FORM) ; returns extracts from latest CT Eval form "RTN","SAMINOT3",404,0) ; ARY passed by name "RTN","SAMINOT3",405,0) ; "RTN","SAMINOT3",406,0) n ctkey s ctkey=$$PREVCT(SID,$G(FORM)) "RTN","SAMINOT3",407,0) q:ctkey="" "RTN","SAMINOT3",408,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",409,0) n ctroot s ctroot=$na(@root@("graph",SID,ctkey)) "RTN","SAMINOT3",410,0) ; "RTN","SAMINOT3",411,0) s @ARY@("ctform")=ctkey "RTN","SAMINOT3",412,0) s @ARY@("impression")=$g(@ctroot@("ceimre")) "RTN","SAMINOT3",413,0) n futext "RTN","SAMINOT3",414,0) s futext=$g(@ctroot@("cefuw")) "RTN","SAMINOT3",415,0) n futbl "RTN","SAMINOT3",416,0) s futbl("1y")="Annual repeat" "RTN","SAMINOT3",417,0) s futbl("nw")="Now" "RTN","SAMINOT3",418,0) s futbl("1m")="1 month" "RTN","SAMINOT3",419,0) s futbl("3m")="3 months" "RTN","SAMINOT3",420,0) s futbl("6m")="6 months" "RTN","SAMINOT3",421,0) s futbl("os")="other" "RTN","SAMINOT3",422,0) i futext'="" s futext=$g(futbl(futext)) "RTN","SAMINOT3",423,0) n fudate s fudate=$g(@ctroot@("cefud")) "RTN","SAMINOT3",424,0) ; #Other followup "RTN","SAMINOT3",425,0) n zfu,ofu,tofu,comma "RTN","SAMINOT3",426,0) n vals s vals=ctroot "RTN","SAMINOT3",427,0) s comma=0,tofu="" "RTN","SAMINOT3",428,0) s ofu="" "RTN","SAMINOT3",429,0) f zfu="cefuaf","cefucc","cefupe","cefufn","cefubr","cefupc","cefutb" d ; "RTN","SAMINOT3",430,0) . i $$XVAL(zfu,vals)="y" s ofu=ofu_zfu "RTN","SAMINOT3",431,0) i $$XVAL("cefuo",vals)'="" s ofu=ofu_"cefuo" "RTN","SAMINOT3",432,0) i ofu'="" d ; "RTN","SAMINOT3",433,0) . s tofu="Other followup: " "RTN","SAMINOT3",434,0) . i ofu["cefuaf" s tofu=tofu_"Antibiotics" s comma=1 "RTN","SAMINOT3",435,0) . i ofu["cefucc" s tofu=tofu_$s(comma:", ",1:"")_"Diagnostic CT" s comma=1 "RTN","SAMINOT3",436,0) . i ofu["cefupe" s tofu=tofu_$s(comma:", ",1:"")_"PET" s comma=1 "RTN","SAMINOT3",437,0) . i ofu["cefufn" s tofu=tofu_$s(comma:", ",1:"")_"Percutaneous biopsy" s comma=1 "RTN","SAMINOT3",438,0) . i ofu["cefubr" s tofu=tofu_$s(comma:", ",1:"")_"Bronchoscopy" s comma=1 "RTN","SAMINOT3",439,0) . i ofu["cefupc" s tofu=tofu_$s(comma:", ",1:"")_"Pulmonary consultation" s comma=1 "RTN","SAMINOT3",440,0) . i ofu["cefutb" s tofu=tofu_$s(comma:", ",1:"")_"Refer to tumor board" s comma=1 "RTN","SAMINOT3",441,0) . i ofu["cefuo" s tofu=tofu_$s(comma:", ",1:"")_"Other:" s comma=1 "RTN","SAMINOT3",442,0) s @ARY@("followup")=futext_" "_fudate "RTN","SAMINOT3",443,0) s @ARY@("followup2")=tofu "RTN","SAMINOT3",444,0) s @ARY@("followup3")=$$XVAL("cefuoo",vals) "RTN","SAMINOT3",445,0) ; "RTN","SAMINOT3",446,0) q "RTN","SAMINOT3",447,0) ; "RTN","SAMINOT3",448,0) IMPRESS(ARY,SID) ; impressions from CTEval report "RTN","SAMINOT3",449,0) n root s root=$$setroot^%wd("vapals-patients") "RTN","SAMINOT3",450,0) n ctkey s ctkey=$g(@ARY@("ctform")) "RTN","SAMINOT3",451,0) n vals s vals=$na(@root@("graph",SID,ctkey)) "RTN","SAMINOT3",452,0) n dict s dict=$$setroot^%wd("cteval-dict") "RTN","SAMINOT3",453,0) s dict=$na(@dict@("cteval-dict")) "RTN","SAMINOT3",454,0) n para s para="" "RTN","SAMINOT3",455,0) n sp1 s sp1=" " "RTN","SAMINOT3",456,0) ; "RTN","SAMINOT3",457,0) d OUT("Impression:") "RTN","SAMINOT3",458,0) d OUT(sp1_$$XSUB("ceimn",vals,dict)_para) "RTN","SAMINOT3",459,0) ; "RTN","SAMINOT3",460,0) ;# Report CAC Score and Extent of Emphysema "RTN","SAMINOT3",461,0) s cacval=0 "RTN","SAMINOT3",462,0) d ;if $$XVAL("ceccv",vals)'="e" d ; "RTN","SAMINOT3",463,0) . set vcac=$$XVAL("cecccac",vals) "RTN","SAMINOT3",464,0) . if vcac'="" d ; "RTN","SAMINOT3",465,0) . . s cacrec="" "RTN","SAMINOT3",466,0) . . s cac="The Visual Coronary Artery Calcium (CAC) Score is "_vcac_". " "RTN","SAMINOT3",467,0) . . s cacval=vcac "RTN","SAMINOT3",468,0) . . i cacval>3 s cacrec=$g(@dict@("CAC_recommendation"))_para "RTN","SAMINOT3",469,0) ; "RTN","SAMINOT3",470,0) i cacval>0 d ; "RTN","SAMINOT3",471,0) . d OUT(sp1_cac_" "_cacrec_" "_para) "RTN","SAMINOT3",472,0) . d ;if $$XVAL("ceemv",vals)="e" d ; "RTN","SAMINOT3",473,0) . . if $$XVAL("ceem",vals)'="no" d ; "RTN","SAMINOT3",474,0) . . . if $$XVAL("ceem",vals)="nv" q ; "RTN","SAMINOT3",475,0) . . . d OUT(sp1_"Emphysema: "_$$XSUB("ceem",vals,dict)_"."_para) "RTN","SAMINOT3",476,0) ; "RTN","SAMINOT3",477,0) i $$XVAL("ceclini",vals)="y" d ; "RTN","SAMINOT3",478,0) . d OUT(sp1_$$XVAL("ceclin",vals)_"."_para) "RTN","SAMINOT3",479,0) ; "RTN","SAMINOT3",480,0) i $$XVAL("ceoppai",vals)="y" d ; "RTN","SAMINOT3",481,0) . d OUT(sp1_$$XVAL("ceoppa",vals)_"."_para) "RTN","SAMINOT3",482,0) ; "RTN","SAMINOT3",483,0) i $$XVAL("ceoppabi",vals)="y" d ; "RTN","SAMINOT3",484,0) . d OUT(sp1_$$XVAL("ceoppab",vals)_"."_para) "RTN","SAMINOT3",485,0) ; "RTN","SAMINOT3",486,0) i $$XVAL("cecommcai",vals)="y" d ; "RTN","SAMINOT3",487,0) . d OUT(sp1_$$XVAL("cecommca",vals)_"."_para) "RTN","SAMINOT3",488,0) ; "RTN","SAMINOT3",489,0) i $$XVAL("ceotabnmi",vals)="y" d ; "RTN","SAMINOT3",490,0) . d OUT(sp1_$$XVAL("ceotabnm",vals)_"."_para) "RTN","SAMINOT3",491,0) ; "RTN","SAMINOT3",492,0) i $$XVAL("ceobrci",vals)="y" d ; "RTN","SAMINOT3",493,0) . d OUT(sp1_$$XVAL("ceobrc",vals)_"."_para) "RTN","SAMINOT3",494,0) ; "RTN","SAMINOT3",495,0) i $$XVAL("ceaoabbi",vals)="y" d ; "RTN","SAMINOT3",496,0) . d OUT(sp1_$$XVAL("ceaoabb",vals)_"."_para) "RTN","SAMINOT3",497,0) ; "RTN","SAMINOT3",498,0) i $$XVAL("ceaoabi",vals)="y" d ; "RTN","SAMINOT3",499,0) . d OUT(sp1_$$XVAL("ceaoab",vals)_"."_para) "RTN","SAMINOT3",500,0) ; "RTN","SAMINOT3",501,0) ;# Impression Remarks "RTN","SAMINOT3",502,0) i $$XVAL("ceimre",vals)'="" d ; "RTN","SAMINOT3",503,0) . d OUT(sp1_$$XVAL("ceimre",vals)_"."_para) "RTN","SAMINOT3",504,0) q "RTN","SAMINOT3",505,0) ; "RTN","SAMINOT3",506,0) XSUB(var,vals,dict,valdx) ; extrinsic which returns the dictionary value defined by var "RTN","SAMINOT3",507,0) ; vals and dict are passed by name "RTN","SAMINOT3",508,0) ; valdx is used for nodules ala cect2co with the nodule number included "RTN","SAMINOT3",509,0) ;n dict s dict=$$setroot^%wd("cteval-dict") "RTN","SAMINOT3",510,0) n zr,zv,zdx "RTN","SAMINOT3",511,0) s zdx=$g(valdx) "RTN","SAMINOT3",512,0) i zdx="" s zdx=var "RTN","SAMINOT3",513,0) s zv=$g(@vals@(zdx)) "RTN","SAMINOT3",514,0) ;i zv="" s zr="["_var_"]" q zr "RTN","SAMINOT3",515,0) i zv="" s zr="" q zr "RTN","SAMINOT3",516,0) s zr=$g(@dict@(var,zv)) "RTN","SAMINOT3",517,0) ;i zr="" s zr="["_var_","_zv_"]" "RTN","SAMINOT3",518,0) q zr "RTN","SAMINOT3",519,0) ; "RTN","SAMINUL") 0^14^B99336 "RTN","SAMINUL",1,0) SAMINUL ;ven/gpl - ielcap: note log ;2021-10-29t23:40z "RTN","SAMINUL",2,0) ;;18.0;SAMI;**9,10,11,12,15**;2020-01;Build 3 "RTN","SAMINUL",3,0) ;;18-15 "RTN","SAMINUL",4,0) ; "RTN","SAMINUL",5,0) ; SAMINOTE contains subroutines for producing the ELCAP Note Pages. "RTN","SAMINUL",6,0) ; SAMINUL contains the development log for the SAMINOT* routines. "RTN","SAMINUL",7,0) ; It contains no executable code. "RTN","SAMINUL",8,0) ; "RTN","SAMINUL",9,0) quit ; no entry from top "RTN","SAMINUL",10,0) ; "RTN","SAMINUL",11,0) ; "RTN","SAMINUL",12,0) ; "RTN","SAMINUL",13,0) ;@section 0 primary development "RTN","SAMINUL",14,0) ; "RTN","SAMINUL",15,0) ; "RTN","SAMINUL",16,0) ; "RTN","SAMINUL",17,0) ;@routine-credits "RTN","SAMINUL",18,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMINUL",19,0) ; gpl@vistaexpertise.net "RTN","SAMINUL",20,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMINUL",21,0) ; http://vistaexpertise.net "RTN","SAMINUL",22,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMINUL",23,0) ;@license see routine SAMIUL "RTN","SAMINUL",24,0) ; "RTN","SAMINUL",25,0) ;@last-update 2021-10-29t02:49z "RTN","SAMINUL",26,0) ;@application Screening Applications Management (SAM) "RTN","SAMINUL",27,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMINUL",28,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMINUL",29,0) ;@version 18-15 "RTN","SAMINUL",30,0) ;@release-date 2020-01 "RTN","SAMINUL",31,0) ;@patch-list **9,10,11,12,15** "RTN","SAMINUL",32,0) ; "RTN","SAMINUL",33,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMINUL",34,0) ; toad@vistaexpertise.net "RTN","SAMINUL",35,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMINUL",36,0) ; larry.g.carlson@gmail.com "RTN","SAMINUL",37,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMINUL",38,0) ; linda.yaw@vistaexpertise.net "RTN","SAMINUL",39,0) ;@dev-add Alexis R. Carlson (arc) "RTN","SAMINUL",40,0) ; whatisthehumanspirit@gmail.com "RTN","SAMINUL",41,0) ;@dev-add Domenic DiNatale (dom) "RTN","SAMINUL",42,0) ; domenic.dinatale@paraxialtech.com "RTN","SAMINUL",43,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMINUL",44,0) ; mcglk@vistaexpertise.net "RTN","SAMINUL",45,0) ; "RTN","SAMINUL",46,0) ;@module-credits "RTN","SAMINUL",47,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMINUL",48,0) ; (VA-PALS) "RTN","SAMINUL",49,0) ; http://va-pals.org/ "RTN","SAMINUL",50,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMINUL",51,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMINUL",52,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMINUL",53,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMINUL",54,0) ;@partner-org International Early Lung Cancer Action Program (I-ELCAP) "RTN","SAMINUL",55,0) ; http://ielcap.com/ "RTN","SAMINUL",56,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMINUL",57,0) ; http://paraxialtech.com/ "RTN","SAMINUL",58,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMINUL",59,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMINUL",60,0) ; "RTN","SAMINUL",61,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMINUL",62,0) ; "RTN","SAMINUL",63,0) ; 2019-04-04/18 ven/gpl 18.0-t4 c0bb7dbf,f7b48936,9d1f2cdc,ba5f366d, "RTN","SAMINUL",64,0) ; 5b2e32dc,ce322911 "RTN","SAMINUL",65,0) ; SAMINOT1 flags for intake form, fix crash on intake form, initial "RTN","SAMINUL",66,0) ; version of new intake notes, revise text for pre-enrollment "RTN","SAMINUL",67,0) ; discusstion note, complete new intake notes, add intake notes to "RTN","SAMINUL",68,0) ; case review page. "RTN","SAMINUL",69,0) ; "RTN","SAMINUL",70,0) ; 2019-04-16/23 ven/lgc 18.0-t4 e54b76d1,21388d8a,f0505e51, "RTN","SAMINUL",71,0) ; 89bffd3b "RTN","SAMINUL",72,0) ; SAMINOT1 SAMIFRM2 > SAMIFORM, remove spaces at end of lines, "RTN","SAMINUL",73,0) ; control characters, SAMISUB2 > LOAD. "RTN","SAMINUL",74,0) ; "RTN","SAMINUL",75,0) ; 2019-04-23 ven/toad 18.0-t4 423a3946 "RTN","SAMINUL",76,0) ; SAMINOT1 resolve gpl/lgc collision, restore SAMISUB2 > LOAD. "RTN","SAMINUL",77,0) ; "RTN","SAMINUL",78,0) ; 2019-04-30 ven/gpl 18.0-t4 cf73510c "RTN","SAMINUL",79,0) ; SAMINOT1 additions to intake note for prior scans & format. "RTN","SAMINUL",80,0) ; "RTN","SAMINUL",81,0) ; 2019-05-07 ven/lmry 18.0-t4 4a8ead45 "RTN","SAMINUL",82,0) ; SAMINOT1 edit SAMINOT1 for XINDEX. "RTN","SAMINUL",83,0) ; "RTN","SAMINUL",84,0) ; 2019-05-07 ven/lgc 18.0-t4 f63ef57c "RTN","SAMINUL",85,0) ; SAMINOT1 cleanup for XINDEX. "RTN","SAMINUL",86,0) ; "RTN","SAMINUL",87,0) ; 2019-06-18 ven/arc 18.0-t4 91022482 "RTN","SAMINUL",88,0) ; SAMINOT1 ^SAMIGPL > ^SAMIUL. "RTN","SAMINUL",89,0) ; "RTN","SAMINUL",90,0) ; 2019-07-01 ven/gpl 18.0-t4 72868e60 "RTN","SAMINUL",91,0) ; SAMINOT1 update shared decision making text in intake note. "RTN","SAMINUL",92,0) ; "RTN","SAMINUL",93,0) ; 2019-08-03/14 ven/gpl 18.0-t4 bea65f7b,578f61d4 "RTN","SAMINUL",94,0) ; SAMINOT1 fix bugs in Have you ever smoked processing in changelog "RTN","SAMINUL",95,0) ; & intake note, restored ever smoked comment field to intake note. "RTN","SAMINUL",96,0) ; "RTN","SAMINUL",97,0) ; 2019-09-06 par/dom 18.0-t4 2ff47189 VAP-452 "RTN","SAMINUL",98,0) ; SAMINOT1 patient > participant. "RTN","SAMINUL",99,0) ; "RTN","SAMINUL",100,0) ; 2019-09-26 ven/gpl 18.0-t4 92b12324 VAP-420 "RTN","SAMINUL",101,0) ; SAMINOT1 smoking history. "RTN","SAMINUL",102,0) ; "RTN","SAMINUL",103,0) ; 2019-10-01 par/dom 18.0-t4 37c418a1,4caf1a98 VAP-457,344 "RTN","SAMINUL",104,0) ; SAMINOT1 remove thorax, capitalization consistency. "RTN","SAMINUL",105,0) ; "RTN","SAMINUL",106,0) ; 2020-01-17/20 ven/lgc 18.1 8557207f,d7d24834,0301ad95,659f2526, "RTN","SAMINUL",107,0) ; 0ff2b83f,49615242,5bf7c398,dc5f618c "RTN","SAMINUL",108,0) ; SAMINOT2 followup note, fixed typos in VC note, followup LCS note "RTN","SAMINUL",109,0) ; minus CT Eval pulls, LCS note with CT Eval extracts, fixed bug in "RTN","SAMINUL",110,0) ; LSC CT eval extract, include entire impression section of CT Eval "RTN","SAMINUL",111,0) ; report in LCS Note, improved import of impressions, limit to one "RTN","SAMINUL",112,0) ; note per followup form. "RTN","SAMINUL",113,0) ; "RTN","SAMINUL",114,0) ; 2020-01-23 ven/arc 18.2 9a24242a "RTN","SAMINUL",115,0) ; SAMINOT1 fix word wrap on intake note & typos in ct "RTN","SAMINUL",116,0) ; eval report. "RTN","SAMINUL",117,0) ; "RTN","SAMINUL",118,0) ; 2020-08-12 ven/gpl 18.6 781744c3 "RTN","SAMINUL",119,0) ; SAMINOT1 chg to support hl7 transmission of notes. "RTN","SAMINUL",120,0) ; "RTN","SAMINUL",121,0) ; 2020-09-22 ven/gpl 18.6 06459eda "RTN","SAMINUL",122,0) ; SAMINOT1 fix to match kids file. "RTN","SAMINUL",123,0) ; "RTN","SAMINUL",124,0) ; 2021-02-01/24 ven/gpl 18.8 8e4ec441,cde71a55 "RTN","SAMINUL",125,0) ; SAMINOT1 fix intake note format, fix error that sent note twice "RTN","SAMINUL",126,0) ; to VistA. "RTN","SAMINUL",127,0) ; "RTN","SAMINUL",128,0) ; 2021-03-02 ven/gpl 18.9 479dc041 "RTN","SAMINUL",129,0) ; SAMINOT2 return error message if no ct eval form exists when "RTN","SAMINUL",130,0) ; generating a fu note. "RTN","SAMINUL",131,0) ; "RTN","SAMINUL",132,0) ; 2021-03-15/16 ven/toad 18.9 a46a2cc1 "RTN","SAMINUL",133,0) ; SAMINUL create routine. "RTN","SAMINUL",134,0) ; SAMINOT2 bump date & patch list, add contents, lt refactor. "RTN","SAMINUL",135,0) ; "RTN","SAMINUL",136,0) ; 2021-03-17 ven/toad 18.9 62da30b4 "RTN","SAMINUL",137,0) ; SAMINOT2 remove blank from end of 1 line. "RTN","SAMINUL",138,0) ; "RTN","SAMINUL",139,0) ; 2021-03-22 ven/gpl 18.10 6319a1eb "RTN","SAMINUL",140,0) ; SAMINOT1 fix logic bug in detecting pre-enrollment existing. "RTN","SAMINUL",141,0) ; "RTN","SAMINUL",142,0) ; 2021-03-23 ven/toad 18.10 96f461d0 "RTN","SAMINUL",143,0) ; SAMINOT1 bump date & patch list, lt refactor. "RTN","SAMINUL",144,0) ; "RTN","SAMINUL",145,0) ; 2021-03-29 ven/gpl 18.11 6cd83445 VAP-483 "RTN","SAMINUL",146,0) ; SAMINOT1 allow N/A for shared decision making on intake form: "RTN","SAMINUL",147,0) ; in INNOTE new & set shareddm & use to call SDM or report n/a, based "RTN","SAMINUL",148,0) ; on siidmdc. "RTN","SAMINUL",149,0) ; "RTN","SAMINUL",150,0) ; 2021-03-30/05-21 ven/mcglk&toad 18.11 7b14bb2, "RTN","SAMINUL",151,0) ; SAMINOT1 bump version, date, log, add quit to stop block mismatch "RTN","SAMINUL",152,0) ; complaint from XINDEX. "RTN","SAMINUL",153,0) ; "RTN","SAMINUL",154,0) ; 2021-06-29 ven/gpl 18.12-t2 a5bbd37a,d865b0dc "RTN","SAMINUL",155,0) ; SAMINOT1,2 text box formatting for intake & followup notes, new "RTN","SAMINUL",156,0) ; text processing utils; restrict follow forms to one generated note. "RTN","SAMINUL",157,0) ; "RTN","SAMINUL",158,0) ; 2021-07-01 ven/mcglk&toad 18.12-t2 cbf7e46b "RTN","SAMINUL",159,0) ; SAMINOT1,2 bump dates & versions, update dev log, update contents. "RTN","SAMINUL",160,0) ; "RTN","SAMINUL",161,0) ; 2021-10-19 ven/gpl 18-15 138d45e5 "RTN","SAMINUL",162,0) ; SAMINOT1,2,3 parameterize veteran vs participant or candidate for notes "RTN","SAMINUL",163,0) ; "RTN","SAMINUL",164,0) ; 2021-10-25 ven/gpl 18-15 15b95a8b "RTN","SAMINUL",165,0) ; SAMINOT3 removed parenthetical phone numbers "RTN","SAMINUL",166,0) ; "RTN","SAMINUL",167,0) ; 2021-10-29 ven/lmry 18-15 "RTN","SAMINUL",168,0) ; SAMINUL SAMINOT1,2,3 bump dates & versions, update dev log "RTN","SAMINUL",169,0) ; SAMINOT3 add semicolon; remove space, add space for XINDEX "RTN","SAMINUL",170,0) ; "RTN","SAMINUL",171,0) ; "RTN","SAMINUL",172,0) ; "RTN","SAMINUL",173,0) EOR ; end of routine SAMINUL "RTN","SAMIPARM") 0^15^B24000410 "RTN","SAMIPARM",1,0) SAMIPARM ;ven/gpl - get params web service ;2021-11-18t22:30z "RTN","SAMIPARM",2,0) ;;18.0;SAMI;**12,15**;2020-01;Build 3 "RTN","SAMIPARM",3,0) ;;18-15 "RTN","SAMIPARM",4,0) ; "RTN","SAMIPARM",5,0) ; Routine SAMIPARM contains subroutines for implementing the VAPALS- "RTN","SAMIPARM",6,0) ; ELCAP get params web service. "RTN","SAMIPARM",7,0) ; "RTN","SAMIPARM",8,0) quit ; no entry from top "RTN","SAMIPARM",9,0) ; "RTN","SAMIPARM",10,0) ; "RTN","SAMIPARM",11,0) ; "RTN","SAMIPARM",12,0) ;@section 0 primary development "RTN","SAMIPARM",13,0) ; "RTN","SAMIPARM",14,0) ; "RTN","SAMIPARM",15,0) ; "RTN","SAMIPARM",16,0) ;@routine-credits "RTN","SAMIPARM",17,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMIPARM",18,0) ; gpl@vistaexpertise.net "RTN","SAMIPARM",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIPARM",20,0) ; http://vistaexpertise.net "RTN","SAMIPARM",21,0) ;@copyright 2021, gpl, all rights reserved "RTN","SAMIPARM",22,0) ;@license see routine SAMIUL "RTN","SAMIPARM",23,0) ; "RTN","SAMIPARM",24,0) ;@last-update 2021-11-18t22:30z "RTN","SAMIPARM",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMIPARM",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIPARM",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIPARM",28,0) ;@version 18-15 "RTN","SAMIPARM",29,0) ;@release-date 2020-01 "RTN","SAMIPARM",30,0) ;@patch-list **12,15** "RTN","SAMIPARM",31,0) ; "RTN","SAMIPARM",32,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMIPARM",33,0) ; toad@vistaexpertise.net "RTN","SAMIPARM",34,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMIPARM",35,0) ; mcglk@vistaexpertise.net "RTN","SAMIPARM",36,0) ; "RTN","SAMIPARM",37,0) ;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIPARM",38,0) ; 2021-05-29/06-05 ven/gpl 18.12-t2 46bab765,223b5900 "RTN","SAMIPARM",39,0) ; SAMIPARM new routine to implement new web service get params, "RTN","SAMIPARM",40,0) ; update for ssn in report, also, matching report; upgrade PARM with "RTN","SAMIPARM",41,0) ; SYS overrides, add systemDemoOnly & systemDemoUseDUZ. "RTN","SAMIPARM",42,0) ; "RTN","SAMIPARM",43,0) ; 2021-07-01 ven/mcglk&toad 18.12-t2 cbf7e46b "RTN","SAMIPARM",44,0) ; SAMIPARM bump version & dates, add hdr comments & dev log. "RTN","SAMIPARM",45,0) ; "RTN","SAMIPARM",46,0) ; 2021-07-14 ven/toad 18-12-t3 e36d755d "RTN","SAMIPARM",47,0) ; SAMIPARM bump 12-t2 to 12-t3, log commit ids, date formats "RTN","SAMIPARM",48,0) ; "RTN","SAMIPARM",49,0) ; 2021-08-11 ven/toad 18-12 b16cd38f "RTN","SAMIPARM",50,0) ; SAMIPARM SAMI 18.12 routines ready to validate "RTN","SAMIPARM",51,0) ; "RTN","SAMIPARM",52,0) ; 2021-10-17 ven/gpl 18-15 b14fcbcf "RTN","SAMIPARM",53,0) ; SAMIPARM fix the param web service to provide SYS parameters if no site "RTN","SAMIPARM",54,0) ; is provided "RTN","SAMIPARM",55,0) ; "RTN","SAMIPARM",56,0) ; 2021-10-26 ven/gpl 18-15 d12b1b10 "RTN","SAMIPARM",57,0) ; SAMIPARM parameter detection routine for identifying VA systems "RTN","SAMIPARM",58,0) ; "RTN","SAMIPARM",59,0) ; 2021-10-27 ven/gpl 18-15 a7274e10,a58c42df "RTN","SAMIPARM",60,0) ; SAMIPARM create SETPARM routine, upgraded SETPARM to add SYS if not there "RTN","SAMIPARM",61,0) ; "RTN","SAMIPARM",62,0) ; 2021-10-29 ven/lmry 18-15 89e3b74c "RTN","SAMIPARM",63,0) ; SAMIPARM update history and table of contents, bump dates and versions "RTN","SAMIPARM",64,0) ; "RTN","SAMIPARM",65,0) ; 2021-11-04 ven/gpl 18-15 cf282893 "RTN","SAMIPARM",66,0) ; SAMIPARM intercept site=SYS and make it null "RTN","SAMIPARM",67,0) ; "RTN","SAMIPARM",68,0) ; 2021-11-10 ven/gpl 18-15 e97d42ac "RTN","SAMIPARM",69,0) ; SAMIPARM added SETMAP for setting records in the SAMI FORM MAPPING file "RTN","SAMIPARM",70,0) ; "RTN","SAMIPARM",71,0) ; 2021-11-18 ven/lmry 18-15 "RTN","SAMIPARM",72,0) ; SAMIPARM bump dates and versions "RTN","SAMIPARM",73,0) ; "RTN","SAMIPARM",74,0) ; "RTN","SAMIPARM",75,0) ; "RTN","SAMIPARM",76,0) ;@contents "RTN","SAMIPARM",77,0) ; WSPARAMS web service WSPARAMS^SAMIPARM, site paramters "RTN","SAMIPARM",78,0) ; $$GET1PARM value of one parameter for site "RTN","SAMIPARM",79,0) ; GETARY return parameter array "RTN","SAMIPARM",80,0) ; GETSYS returns SYS (system) parameters "RTN","SAMIPARM",81,0) ; ISVA sets filter based on parms "RTN","SAMIPARM",82,0) ; SETPARM "RTN","SAMIPARM",83,0) ; ADDSVC init to install get params web service "RTN","SAMIPARM",84,0) ; "RTN","SAMIPARM",85,0) ; "RTN","SAMIPARM",86,0) ; "RTN","SAMIPARM",87,0) ;@section 1 subroutines "RTN","SAMIPARM",88,0) ; "RTN","SAMIPARM",89,0) ; "RTN","SAMIPARM",90,0) ; "RTN","SAMIPARM",91,0) WSPARAMS(parmsjson,filter) ; web service that returns the paramters to use "RTN","SAMIPARM",92,0) ; for the site, passed in as fliter("site"), as json "RTN","SAMIPARM",93,0) d ; "RTN","SAMIPARM",94,0) . n site "RTN","SAMIPARM",95,0) . s site=$g(filter("site")) "RTN","SAMIPARM",96,0) . i site="" s site=$g(filter("siteid")) "RTN","SAMIPARM",97,0) . ;q:site="" "RTN","SAMIPARM",98,0) . i site="SYS" s site="" "RTN","SAMIPARM",99,0) . n parms "RTN","SAMIPARM",100,0) . i site="" d ; "RTN","SAMIPARM",101,0) . . d GETSYS(.parms) "RTN","SAMIPARM",102,0) . e d GETARY(.parms,site) "RTN","SAMIPARM",103,0) . d ENCODE^%webjson("parms","parmsjson") "RTN","SAMIPARM",104,0) . set HTTPRSP("mime")="application/json" "RTN","SAMIPARM",105,0) q "RTN","SAMIPARM",106,0) ; "RTN","SAMIPARM",107,0) ; "RTN","SAMIPARM",108,0) ; "RTN","SAMIPARM",109,0) GET1PARM(PARM,SITE) ; extrinsic returns the vale of PARM for site SITE "RTN","SAMIPARM",110,0) ; both passed by value "RTN","SAMIPARM",111,0) i '$d(SITE) S SITE="" "RTN","SAMIPARM",112,0) n ary "RTN","SAMIPARM",113,0) d GETARY(.ary,SITE) "RTN","SAMIPARM",114,0) ;ZWR ary "RTN","SAMIPARM",115,0) Q:'$D(ary) "" "RTN","SAMIPARM",116,0) q $g(ary(PARM)) "RTN","SAMIPARM",117,0) ; "RTN","SAMIPARM",118,0) ; "RTN","SAMIPARM",119,0) ; "RTN","SAMIPARM",120,0) GETARY(ARY,SITE) ; return the parameter array ARY, passed by reference "RTN","SAMIPARM",121,0) ; "RTN","SAMIPARM",122,0) I $L(SITE)'=3 D Q ; poorly formed SITE indicator "RTN","SAMIPARM",123,0) . D GETSYS(.ARY) ; pass back only SYS parameters "RTN","SAMIPARM",124,0) N SITEIEN S SITEIEN="" "RTN","SAMIPARM",125,0) I SITE'="" S SITEIEN=$O(^SAMI(311.12,"SYM",SITE,"")) "RTN","SAMIPARM",126,0) N DEFREC ; default record in SAMI PARAMETER DEFAULT 311.14 "RTN","SAMIPARM",127,0) I SITEIEN'="" S DEFREC=$$GET1^DIQ(311.12,SITEIEN_",",.04,"E") "RTN","SAMIPARM",128,0) I $G(DEFREC)="" S DEFREC="VHA" "RTN","SAMIPARM",129,0) M ARY=^SAMI(311.14,"D",DEFREC) "RTN","SAMIPARM",130,0) I SITE'="" M ARY=^SAMI(311.12,"D",SITE) "RTN","SAMIPARM",131,0) D GETSYS(.ARY) "RTN","SAMIPARM",132,0) Q "RTN","SAMIPARM",133,0) ; "RTN","SAMIPARM",134,0) GETSYS(ARY) ; returns SYS (system) parameters "RTN","SAMIPARM",135,0) Q:'$D(^SAMI(311.14,"D","SYS")) "RTN","SAMIPARM",136,0) M ARY=^SAMI(311.14,"D","SYS") "RTN","SAMIPARM",137,0) Q "RTN","SAMIPARM",138,0) ; "RTN","SAMIPARM",139,0) ISVA(filter) ; sets filter based on parms "RTN","SAMIPARM",140,0) ; "RTN","SAMIPARM",141,0) n site s site=$g(filter("siteid")) "RTN","SAMIPARM",142,0) q:site="" "RTN","SAMIPARM",143,0) new ISVA set ISVA=$$GET1PARM^SAMIPARM("veteransAffairsSite",site) "RTN","SAMIPARM",144,0) set filter("veteransAffairsSite")=ISVA "RTN","SAMIPARM",145,0) Q $S(ISVA="false":0,1:1) "RTN","SAMIPARM",146,0) ; "RTN","SAMIPARM",147,0) SETPARM(LVL,PNAME,VALUE) ; "RTN","SAMIPARM",148,0) ; "RTN","SAMIPARM",149,0) N ien,SAMIERR "RTN","SAMIPARM",150,0) S ien=$o(^SAMI(311.14,"B",$G(LVL),"")) ; locate parameter set "RTN","SAMIPARM",151,0) i ien="" d ; "RTN","SAMIPARM",152,0) . if LVL="SYS" d ; "RTN","SAMIPARM",153,0) . . n fda "RTN","SAMIPARM",154,0) . . s fda(311.14,"?+1,",.01)="SYS" "RTN","SAMIPARM",155,0) . . d UPDATE^DIE("","fda","","SAMIERR") "RTN","SAMIPARM",156,0) . . i $d(SAMIERR) D ^ZTER "RTN","SAMIPARM",157,0) . . S ien=$o(^SAMI(311.14,"B",$G(LVL),"")) ; locate parameter set "RTN","SAMIPARM",158,0) I ien="" q "RTN","SAMIPARM",159,0) Q:$G(PNAME)="" "RTN","SAMIPARM",160,0) n pien s pien=$o(^SAMI(311.14,ien,1,"B",$G(PNAME),"")) "RTN","SAMIPARM",161,0) i pien="" d ; add the parameter to the set "RTN","SAMIPARM",162,0) . n fda "RTN","SAMIPARM",163,0) . s fda(311.141,"?+1,"_ien_",",.01)=PNAME "RTN","SAMIPARM",164,0) . D UPDATE^DIE("","fda","","SAMIERR") "RTN","SAMIPARM",165,0) . s pien=$o(^SAMI(311.14,ien,1,"B",$G(PNAME),"")) "RTN","SAMIPARM",166,0) i pien="" D ^ZTER "RTN","SAMIPARM",167,0) ; "RTN","SAMIPARM",168,0) N FDA "RTN","SAMIPARM",169,0) S FDA(311.141,pien_","_ien_",",.02)=VALUE "RTN","SAMIPARM",170,0) D UPDATE^DIE("","FDA","","SAMIERR") "RTN","SAMIPARM",171,0) I $D(SAMIERR) D ^ZTER "RTN","SAMIPARM",172,0) S ^SAMI(311.14,"D",LVL,PNAME)=VALUE "RTN","SAMIPARM",173,0) Q "RTN","SAMIPARM",174,0) ; "RTN","SAMIPARM",175,0) ADDSVC() ; add the params webservice to the system "RTN","SAMIPARM",176,0) d addService^%webutils("GET","params","WSPARAMS^SAMIPARM") "RTN","SAMIPARM",177,0) Q "RTN","SAMIPARM",178,0) ; "RTN","SAMIPARM",179,0) SETMAP(MAP,VALUE) ; set an entry in the SAMI FORM MAPPING FILE "RTN","SAMIPARM",180,0) ; "RTN","SAMIPARM",181,0) N FDA,SAMIERR "RTN","SAMIPARM",182,0) S FDA(311.11,"?+1,",.01)=MAP "RTN","SAMIPARM",183,0) D UPDATE^DIE("","FDA","","SAMIERR") "RTN","SAMIPARM",184,0) I $D(SAMIERR) D ^ZTER Q ; "RTN","SAMIPARM",185,0) N IEN "RTN","SAMIPARM",186,0) S IEN=$O(^SAMI(311.11,"B",MAP,"")) "RTN","SAMIPARM",187,0) Q:IEN="" "RTN","SAMIPARM",188,0) K FDA "RTN","SAMIPARM",189,0) S FDA(311.11,IEN_",",2)=VALUE "RTN","SAMIPARM",190,0) D UPDATE^DIE("","FDA","","SAMIERR") "RTN","SAMIPARM",191,0) I $D(SAMIERR) D ^ZTER Q ; "RTN","SAMIPARM",192,0) ; "RTN","SAMIPARM",193,0) ; "RTN","SAMIPARM",194,0) EOR ; end of routine SAMIPARM "RTN","SAMIPAT") 0^16^B7942469 "RTN","SAMIPAT",1,0) SAMIPAT ;ven/toad - init subroutines ;2021-11-14t19:34z "RTN","SAMIPAT",2,0) ;;18.0;SAMI;**12,14,15**;2020-01;Build 3 "RTN","SAMIPAT",3,0) ;;18-15 "RTN","SAMIPAT",4,0) ; "RTN","SAMIPAT",5,0) ; Routine SAMIPAT contains VAPALS-ELCAP initialization subroutines "RTN","SAMIPAT",6,0) ; to use as KIDS pre- & post-installs & environment checks. "RTN","SAMIPAT",7,0) ; "RTN","SAMIPAT",8,0) quit ; no entry from top "RTN","SAMIPAT",9,0) ; "RTN","SAMIPAT",10,0) ; "RTN","SAMIPAT",11,0) ; "RTN","SAMIPAT",12,0) ;@section 0 primary development "RTN","SAMIPAT",13,0) ; "RTN","SAMIPAT",14,0) ; "RTN","SAMIPAT",15,0) ; "RTN","SAMIPAT",16,0) ;@routine-credits "RTN","SAMIPAT",17,0) ;@dev-main Frederick D. S. Marshall (toad) "RTN","SAMIPAT",18,0) ; toad@vistaexpertise.net "RTN","SAMIPAT",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIPAT",20,0) ; http://vistaexpertise.net "RTN","SAMIPAT",21,0) ;@copyright 2021, toad, all rights reserved "RTN","SAMIPAT",22,0) ;@license see routine SAMIUL "RTN","SAMIPAT",23,0) ; "RTN","SAMIPAT",24,0) ;@last-update 2021-11-14t19:34z "RTN","SAMIPAT",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMIPAT",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIPAT",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIPAT",28,0) ;@version 18.14 "RTN","SAMIPAT",29,0) ;@release-date 2020-01 "RTN","SAMIPAT",30,0) ;@patch-list **12,14** "RTN","SAMIPAT",31,0) ; "RTN","SAMIPAT",32,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMIPAT",33,0) ; mcglk@vistaexpertise.net "RTN","SAMIPAT",34,0) ;@dev-add George P. Lilly (gpl) "RTN","SAMIPAT",35,0) ; gpl@vistaexpertise.net "RTN","SAMIPAT",36,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMIPAT",37,0) ; lmry@vistaexpertise.net "RTN","SAMIPAT",38,0) ; "RTN","SAMIPAT",39,0) ;@routine-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIPAT",40,0) ; 2021-07-01 ven/mcglk&toad 18.12-t2 cbf7e46b "RTN","SAMIPAT",41,0) ; SAMIPAT new routine, new POS1812 post-install for patch 12. "RTN","SAMIPAT",42,0) ; "RTN","SAMIPAT",43,0) ; 2021-07-22/23 ven/toad 18.12 "RTN","SAMIPAT",44,0) ; SAMIPAT add PRE1812 pre-install. "RTN","SAMIPAT",45,0) ; "RTN","SAMIPAT",46,0) ; 2021-08-11 ven/mcglk&toad 18.12 b16cd38f "RTN","SAMIPAT",47,0) ; SAMIPAT rip out PRE1812. "RTN","SAMIPAT",48,0) ; "RTN","SAMIPAT",49,0) ; 2021-09-08 ven/lmry 18.14 2af1f2e7 "RTN","SAMIPAT",50,0) ; SAMIPAT add post-install for patch SAMI*1.18*14 "RTN","SAMIPAT",51,0) ; "RTN","SAMIPAT",52,0) ; 2021-10-28 ven/lmry 18-15 "RTN","SAMIPAT",53,0) ; SAMIPAT create a STANDARD subroutine with post-install commands that are used "RTN","SAMIPAT",54,0) ; for almost all patches. Change POS1814 to use that routine and add POS1815. "RTN","SAMIPAT",55,0) ; "RTN","SAMIPAT",56,0) ; 2021-10-29 ven/lmry 18-15 "RTN","SAMIPAT",57,0) ; SAMIPAT remove a space before STANDARD "RTN","SAMIPAT",58,0) ; "RTN","SAMIPAT",59,0) ; 2021-11-14 ven/lmry 18-15 "RTN","SAMIPAT",60,0) ; SAMIPAT Add commands for 18-15-t2. "RTN","SAMIPAT",61,0) ; "RTN","SAMIPAT",62,0) ; "RTN","SAMIPAT",63,0) ;@contents "RTN","SAMIPAT",64,0) ; STANDARD usual post-install commands "RTN","SAMIPAT",65,0) ; POS1812 kids post-install for sami 18.12 "RTN","SAMIPAT",66,0) ; POS1814 kids post-install for sami 18.14 "RTN","SAMIPAT",67,0) ; POS1815 kids post-install for sami 18.15 "RTN","SAMIPAT",68,0) ; "RTN","SAMIPAT",69,0) ; "RTN","SAMIPAT",70,0) ; "RTN","SAMIPAT",71,0) ;@section 1 subroutine for most patches "RTN","SAMIPAT",72,0) ; "RTN","SAMIPAT",73,0) STANDARD ; usual post-install commands "RTN","SAMIPAT",74,0) set SAMIDIR="/home/osehra/lib/silver/a-sami-vapals-elcap--vo-osehra-github/docs/form-fields/" "RTN","SAMIPAT",75,0) ;do PRSTSV^SAMIFF(SAMIDIR,"background.tsv","form fields - background") "RTN","SAMIPAT",76,0) ;do PRSTSV^SAMIFF(SAMIDIR,"biopsy.tsv","form fields - biopsy") "RTN","SAMIPAT",77,0) ;do PRSTSV^SAMIFF(SAMIDIR,"ct-evaluation.tsv","form fields - ct evaluation") "RTN","SAMIPAT",78,0) ;do PRSTSV^SAMIFF(SAMIDIR,"follow-up.tsv","form fields - follow up") "RTN","SAMIPAT",79,0) ;do PRSTSV^SAMIFF(SAMIDIR,"intake.tsv","form fields - intake") "RTN","SAMIPAT",80,0) ;do PRSTSV^SAMIFF(SAMIDIR,"intervention.tsv","form fields - intervention") "RTN","SAMIPAT",81,0) ;do PRSTSV^SAMIFF(SAMIDIR,"pet-evaluation.tsv","form fields - pet evaluation") "RTN","SAMIPAT",82,0) ;do PRSTSV^SAMIFF(SAMIDIR,"register.tsv","form fields - register") "RTN","SAMIPAT",83,0) do DODD^SAMIADMN(SAMIDIR) ; to import tsv files to generate DD graphs "RTN","SAMIPAT",84,0) do CLRWEB^SAMIADMN ; Clear the M Web Server files cache "RTN","SAMIPAT",85,0) do INIT2GPH^SAMICTD2 ; initialize CTEVAL dictionary into graph cteval-dict "RTN","SAMIPAT",86,0) ; "RTN","SAMIPAT",87,0) ; "RTN","SAMIPAT",88,0) ; "RTN","SAMIPAT",89,0) ;@section 2 subroutines for SAMI 18.12 "RTN","SAMIPAT",90,0) ; "RTN","SAMIPAT",91,0) ;@kids-post POST1812^SAMIPAT "RTN","SAMIPAT",92,0) POS1812 ; kids post-install for sami 18.12 "RTN","SAMIPAT",93,0) ; "RTN","SAMIPAT",94,0) do ADDSVC^SAMIPARM ; install get params web service "RTN","SAMIPAT",95,0) ; "RTN","SAMIPAT",96,0) ; in honor of Tchaikovsky's overture: boom "RTN","SAMIPAT",97,0) ; "RTN","SAMIPAT",98,0) quit ; end of kids-post POS1812^SAMIPAT "RTN","SAMIPAT",99,0) ; "RTN","SAMIPAT",100,0) ; "RTN","SAMIPAT",101,0) ; "RTN","SAMIPAT",102,0) ;@section 3 subroutines for SAMI 18.14 "RTN","SAMIPAT",103,0) ; "RTN","SAMIPAT",104,0) ;@kids-post POST1814^SAMIPAT "RTN","SAMIPAT",105,0) POS1814 ; kids post-install for sami 18.14 "RTN","SAMIPAT",106,0) ; "RTN","SAMIPAT",107,0) do STANDARD "RTN","SAMIPAT",108,0) ; "RTN","SAMIPAT",109,0) quit ; end of kids-post POS1814^SAMIPAT "RTN","SAMIPAT",110,0) ; "RTN","SAMIPAT",111,0) ; "RTN","SAMIPAT",112,0) ; "RTN","SAMIPAT",113,0) ;@section 4 subroutines for SAMI 18.15 "RTN","SAMIPAT",114,0) ; "RTN","SAMIPAT",115,0) ;@kids-post POST1815^SAMIPAT "RTN","SAMIPAT",116,0) POS1815 ; kids post-install for sami 18.15 "RTN","SAMIPAT",117,0) ; "RTN","SAMIPAT",118,0) do STANDARD "RTN","SAMIPAT",119,0) do SETPARM^SAMIPARM("SYS","samiSystemVersion","sami-18-15-t2") "RTN","SAMIPAT",120,0) do deleteService^%webutils("GET","vapals") "RTN","SAMIPAT",121,0) do addService^%webutils("GET","vapals","GETHOME^SAMIHOM3") "RTN","SAMIPAT",122,0) do SETMAP^SAMIPARM("vapals:about","about.html") "RTN","SAMIPAT",123,0) ; "RTN","SAMIPAT",124,0) quit ; end of kids-post POS1815^SAMIPAT "RTN","SAMIPAT",125,0) ; "RTN","SAMIPAT",126,0) ; "RTN","SAMIPAT",127,0) ; "RTN","SAMIPAT",128,0) ;@section 5 subroutines for future versions... "RTN","SAMIPAT",129,0) ; "RTN","SAMIPAT",130,0) ; "RTN","SAMIPAT",131,0) ; "RTN","SAMIPAT",132,0) EOR ; end of routine SAMIPAT "RTN","SAMIUR") 0^17^B672809912 "RTN","SAMIUR",1,0) SAMIUR ;ven/gpl - user reports ;2021-10-29t23:57z "RTN","SAMIUR",2,0) ;;18.0;SAMI;**5,10,11,12,14,15**;2020-01;Build 3 "RTN","SAMIUR",3,0) ;;18-15 "RTN","SAMIUR",4,0) ; "RTN","SAMIUR",5,0) ; SAMIUR contains a web service & associated subroutines to produce "RTN","SAMIUR",6,0) ; VAPALS-ELCAP user reports. "RTN","SAMIUR",7,0) ; "RTN","SAMIUR",8,0) quit ; no entry from top "RTN","SAMIUR",9,0) ; "RTN","SAMIUR",10,0) ; "RTN","SAMIUR",11,0) ; "RTN","SAMIUR",12,0) ;@section 0 primary development "RTN","SAMIUR",13,0) ; "RTN","SAMIUR",14,0) ; "RTN","SAMIUR",15,0) ; "RTN","SAMIUR",16,0) ;@routine-credits "RTN","SAMIUR",17,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMIUR",18,0) ; gpl@vistaexpertise.net "RTN","SAMIUR",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIUR",20,0) ; http://vistaexpertise.net "RTN","SAMIUR",21,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMIUR",22,0) ;@license see routine SAMIUL "RTN","SAMIUR",23,0) ; "RTN","SAMIUR",24,0) ;@last-update 2021-10-29t23:57z "RTN","SAMIUR",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMIUR",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIUR",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIUR",28,0) ;@version 18-15 "RTN","SAMIUR",29,0) ;@release-date 2020-01 "RTN","SAMIUR",30,0) ;@patch-list **5,10,11,12,14,15** "RTN","SAMIUR",31,0) ; "RTN","SAMIUR",32,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMIUR",33,0) ; toad@vistaexpertise.net "RTN","SAMIUR",34,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMIUR",35,0) ; larry.g.carlson@gmail.com "RTN","SAMIUR",36,0) ;@dev-add Alexis R. Carlson (arc) "RTN","SAMIUR",37,0) ; whatisthehumanspirit@gmail.com "RTN","SAMIUR",38,0) ;@dev-add Kenneth W. McGlothlen (mcglk) "RTN","SAMIUR",39,0) ; mcglk@vistaexpertise.net "RTN","SAMIUR",40,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMIUR",41,0) ; lmry@vistaexpertise.net "RTN","SAMIUR",42,0) ; "RTN","SAMIUR",43,0) ;@module-credits see SAMIHUL "RTN","SAMIUR",44,0) ; "RTN","SAMIUR",45,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIUR",46,0) ; see SAMIURUL "RTN","SAMIUR",47,0) ; "RTN","SAMIUR",48,0) ;@contents "RTN","SAMIUR",49,0) ; WSREPORT generate report based on params in filter "RTN","SAMIUR",50,0) ; SORT sort patients by name "RTN","SAMIUR",51,0) ; NUHREF create nuhref link to casereview for all patients "RTN","SAMIUR",52,0) ; PNAME page name for report "RTN","SAMIUR",53,0) ; "RTN","SAMIUR",54,0) ; SELECT select patients for report "RTN","SAMIUR",55,0) ; UNMAT build unmatched persons list "RTN","SAMIUR",56,0) ; WKLIST build work list "RTN","SAMIUR",57,0) ; "RTN","SAMIUR",58,0) ; "RTN","SAMIUR",59,0) ; "RTN","SAMIUR",60,0) ;@section 1 wsreport subroutines "RTN","SAMIUR",61,0) ; "RTN","SAMIUR",62,0) ; "RTN","SAMIUR",63,0) ; "RTN","SAMIUR",64,0) WSREPORT(SAMIRTN,filter) ; generate report based on params in filter "RTN","SAMIUR",65,0) ; "RTN","SAMIUR",66,0) ;@called-by "RTN","SAMIUR",67,0) ; WSVAPALS^SAMIHOM4 "RTN","SAMIUR",68,0) ; WSREPORT^SAMIUR1 "RTN","SAMIUR",69,0) ;@calls "RTN","SAMIUR",70,0) ; GETHOME^SAMIHOM3 "RTN","SAMIUR",71,0) ; getThis^%wd "RTN","SAMIUR",72,0) ; SELECT "RTN","SAMIUR",73,0) ; LOAD^SAMIFORM "RTN","SAMIUR",74,0) ; $$PNAME "RTN","SAMIUR",75,0) ; findReplace^%ts "RTN","SAMIUR",76,0) ; RPTTBL^SAMIUR2 "RTN","SAMIUR",77,0) ; NUHREF "RTN","SAMIUR",78,0) ; SORT "RTN","SAMIUR",79,0) ; @RPT(ir,"routine"): [from report def table from RPTTBL^SAMIUR2] "RTN","SAMIUR",80,0) ; format = $$<tag>^SAMIUR2, where tag = "RTN","SAMIUR",81,0) ; AGE BLINEDT CONTACT CTPROT DOB FUDATE GENDER "RTN","SAMIUR",82,0) ; IFORM LASTEXM MANPAT MATCH NAME PACKYRS POSSIBLE "RTN","SAMIUR",83,0) ; RECOM RURAL SID SMHIS SMKSTAT SSN STUDYDT "RTN","SAMIUR",84,0) ; STUDYTYP VALS WHEN WORKPAT "RTN","SAMIUR",85,0) ; "RTN","SAMIUR",86,0) ; here are the user reports that are defined: "RTN","SAMIUR",87,0) ; 1. followup "RTN","SAMIUR",88,0) ; 2. activity "RTN","SAMIUR",89,0) ; 3. missingct "RTN","SAMIUR",90,0) ; 4. incomplete "RTN","SAMIUR",91,0) ; 5. outreach "RTN","SAMIUR",92,0) ; 6. enrollment "RTN","SAMIUR",93,0) ; 7. worklist "RTN","SAMIUR",94,0) ; the report to generate is passed in parameter samireporttype "RTN","SAMIUR",95,0) ; "RTN","SAMIUR",96,0) new debug set debug=0 "RTN","SAMIUR",97,0) if $get(filter("debug"))=1 set debug=1 "RTN","SAMIUR",98,0) if $get(filter("debug"))=1 set debug=1 "RTN","SAMIUR",99,0) kill SAMIRTN "RTN","SAMIUR",100,0) set HTTPRSP("mime")="text/html" "RTN","SAMIUR",101,0) ; "RTN","SAMIUR",102,0) new type,temp,site "RTN","SAMIUR",103,0) s site=$g(filter("siteid")) "RTN","SAMIUR",104,0) i site="" s site=$g(filter("site")) "RTN","SAMIUR",105,0) i site="" d q ; report site missing "RTN","SAMIUR",106,0) . d GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home "RTN","SAMIUR",107,0) ; "RTN","SAMIUR",108,0) set type=$get(filter("samireporttype")) "RTN","SAMIUR",109,0) if type="" do quit ; report type missing "RTN","SAMIUR",110,0) . do GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home "RTN","SAMIUR",111,0) . quit "RTN","SAMIUR",112,0) ; "RTN","SAMIUR",113,0) if type="unmatched" i $$GET1PARM^SAMIPARM("matchingReportEnabled",site)'="true" do quit ; "RTN","SAMIUR",114,0) . d GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home "RTN","SAMIUR",115,0) ; "RTN","SAMIUR",116,0) do getThis^%wd("temp","table.html") ; page template "RTN","SAMIUR",117,0) quit:'$data(temp) "RTN","SAMIUR",118,0) ; "RTN","SAMIUR",119,0) new SAMIPATS "RTN","SAMIUR",120,0) ; set pats="" "RTN","SAMIUR",121,0) new datephrase "RTN","SAMIUR",122,0) do SELECT(.SAMIPATS,type,.datephrase,.filter) ; select pats for report "RTN","SAMIUR",123,0) ; quit:'$data(SAMIPATS) "RTN","SAMIUR",124,0) ; "RTN","SAMIUR",125,0) new ln,cnt,ii "RTN","SAMIUR",126,0) set (ii,ln,cnt)=0 "RTN","SAMIUR",127,0) for do quit:'ii quit:$get(temp(ii))["<thead" "RTN","SAMIUR",128,0) . set ii=$order(temp(ii)) "RTN","SAMIUR",129,0) . quit:'ii "RTN","SAMIUR",130,0) . quit:$get(temp(ii))["<thead" "RTN","SAMIUR",131,0) . ; "RTN","SAMIUR",132,0) . set cnt=cnt+1 "RTN","SAMIUR",133,0) . set ln=$get(temp(ii)) "RTN","SAMIUR",134,0) . new samikey,si "RTN","SAMIUR",135,0) . set (samikey,si)="" "RTN","SAMIUR",136,0) . do LOAD^SAMIFORM(.ln,samikey,si,.filter) "RTN","SAMIUR",137,0) . ; if ln["PAGE NAME" do "RTN","SAMIUR",138,0) . ; . do findReplace^%ts(.ln,"PAGE NAME",$$PNAME(type,datephrase)) "RTN","SAMIUR",139,0) . ; . quit "RTN","SAMIUR",140,0) . if ln["PAGE NAME" do "RTN","SAMIUR",141,0) . . do findReplace^%ts(.ln,"PAGE NAME",$$PNAME(type,"")) "RTN","SAMIUR",142,0) . . quit "RTN","SAMIUR",143,0) . if ln["CRITERIA" do "RTN","SAMIUR",144,0) . . do findReplace^%ts(.ln,"CRITERIA",datephrase) "RTN","SAMIUR",145,0) . . quit "RTN","SAMIUR",146,0) . if ln["@@REPORTTYPE@@" do "RTN","SAMIUR",147,0) . . do findReplace^%ts(.ln,"@@REPORTTYPE@@",type) "RTN","SAMIUR",148,0) . . quit "RTN","SAMIUR",149,0) . ; "RTN","SAMIUR",150,0) . if ln["name=""start-date""" do "RTN","SAMIUR",151,0) . . do findReplace^%ts(.ln,"start-date""","start-date"" value="""_$g(filter("start-date"))_"""") "RTN","SAMIUR",152,0) . . quit "RTN","SAMIUR",153,0) . if ln["name=""end-date""" do "RTN","SAMIUR",154,0) . . do findReplace^%ts(.ln,"end-date""","end-date"" value="""_$g(filter("end-date"))_"""") "RTN","SAMIUR",155,0) . . quit "RTN","SAMIUR",156,0) . ; "RTN","SAMIUR",157,0) . set SAMIRTN(cnt)=ln "RTN","SAMIUR",158,0) . quit "RTN","SAMIUR",159,0) ; "RTN","SAMIUR",160,0) new RPT,ik "RTN","SAMIUR",161,0) do RPTTBL^SAMIUR2(.RPT,type,site) ; load report definition table "RTN","SAMIUR",162,0) if '$data(RPT) do quit ; don't know about this report "RTN","SAMIUR",163,0) . do GETHOME^SAMIHOM3(.SAMIRTN,.filter) ; send them to home "RTN","SAMIUR",164,0) . quit "RTN","SAMIUR",165,0) ; "RTN","SAMIUR",166,0) ; output header "RTN","SAMIUR",167,0) ; "RTN","SAMIUR",168,0) set cnt=cnt+1 set SAMIRTN(cnt)="<thead><tr>" "RTN","SAMIUR",169,0) set cnt=cnt+1 "RTN","SAMIUR",170,0) new totcnt set totcnt=cnt "RTN","SAMIUR",171,0) ; "RTN","SAMIUR",172,0) set ir="" "RTN","SAMIUR",173,0) for do quit:ir="" ; "RTN","SAMIUR",174,0) . set ir=$order(RPT(ir)) "RTN","SAMIUR",175,0) . quit:ir="" "RTN","SAMIUR",176,0) . set cnt=cnt+1 "RTN","SAMIUR",177,0) . set SAMIRTN(cnt)="<th>"_$get(RPT(ir,"header"))_"</th>" "RTN","SAMIUR",178,0) . quit "RTN","SAMIUR",179,0) ; "RTN","SAMIUR",180,0) set cnt=cnt+1 set SAMIRTN(cnt)="</tr></thead>" "RTN","SAMIUR",181,0) ; "RTN","SAMIUR",182,0) set cnt=cnt+1 set SAMIRTN(cnt)="<tbody>" "RTN","SAMIUR",183,0) ; "RTN","SAMIUR",184,0) if type'="worklist" do ; "RTN","SAMIUR",185,0) . do NUHREF(.SAMIPATS) ; create the nuhref link for all patients "RTN","SAMIUR",186,0) . quit "RTN","SAMIUR",187,0) ; "RTN","SAMIUR",188,0) new SRT set SRT="" "RTN","SAMIUR",189,0) if $get(filter("sort"))="" d ; what kind of sort "RTN","SAMIUR",190,0) . set filter("sort")="name" "RTN","SAMIUR",191,0) . i type="missingct" s filter("sort")="cdate" ;sort by latest contact "RTN","SAMIUR",192,0) do SORT(.SRT,.SAMIPATS,.filter) "RTN","SAMIUR",193,0) ; zwrite SRT "RTN","SAMIUR",194,0) ; "RTN","SAMIUR",195,0) ; set ij=0 "RTN","SAMIUR",196,0) ; for do quit:'ij ; "RTN","SAMIUR",197,0) ; . set ij=$order(SAMIPATS(ij)) "RTN","SAMIUR",198,0) ; . quit:'ij "RTN","SAMIUR",199,0) ; . new ij2 set ij2=0 "RTN","SAMIUR",200,0) ; . for do quit:'ij2 ; "RTN","SAMIUR",201,0) ; . . set ij2=$order(SAMIPATS(ij,ij2)) "RTN","SAMIUR",202,0) ; . . quit:'ij2 "RTN","SAMIUR",203,0) ; . . new dfn set dfn=ij2 "RTN","SAMIUR",204,0) ; . . quit "RTN","SAMIUR",205,0) ; . quit "RTN","SAMIUR",206,0) ; "RTN","SAMIUR",207,0) new iz,ij,ij2,dfn,rows "RTN","SAMIUR",208,0) set rows=0 "RTN","SAMIUR",209,0) set (iz,ij,ij2,dfn)="" "RTN","SAMIUR",210,0) for do quit:iz="" ; "RTN","SAMIUR",211,0) . set iz=$order(SRT(iz)) "RTN","SAMIUR",212,0) . quit:iz="" "RTN","SAMIUR",213,0) . set ij=$order(SRT(iz,"")) "RTN","SAMIUR",214,0) . set dfn=$order(SRT(iz,ij,"")) "RTN","SAMIUR",215,0) . do ; "RTN","SAMIUR",216,0) . . set cnt=cnt+1 set SAMIRTN(cnt)="<tr>" "RTN","SAMIUR",217,0) . . set ir="" "RTN","SAMIUR",218,0) . . for do quit:ir="" ; "RTN","SAMIUR",219,0) . . . set ir=$order(RPT(ir)) "RTN","SAMIUR",220,0) . . . quit:ir="" "RTN","SAMIUR",221,0) . . . set cnt=cnt+1 "RTN","SAMIUR",222,0) . . . new XR,XRV "RTN","SAMIUR",223,0) . . . ; set XR=$get(RPT(ir,"routine"))_"("_ij_",.SAMIPATS)" "RTN","SAMIUR",224,0) . . . set XR="set XRV="_$get(RPT(ir,"routine"))_"("_ij_","_dfn_",.SAMIPATS)" "RTN","SAMIUR",225,0) . . . ; set XRV=@XR "RTN","SAMIUR",226,0) . . . xecute XR ; call report-field handlers in ^SAMIUR2 "RTN","SAMIUR",227,0) . . . if $extract(XRV,1,3)["<td" set SAMIRTN(cnt)=XRV "RTN","SAMIUR",228,0) . . . else set SAMIRTN(cnt)="<td>"_$get(XRV)_"</td>" "RTN","SAMIUR",229,0) . . . quit "RTN","SAMIUR",230,0) . . ; "RTN","SAMIUR",231,0) . . set cnt=cnt+1 "RTN","SAMIUR",232,0) . . set SAMIRTN(cnt)="</tr>"_$CHAR(10,13) "RTN","SAMIUR",233,0) . . set rows=rows+1 "RTN","SAMIUR",234,0) . . quit "RTN","SAMIUR",235,0) . quit "RTN","SAMIUR",236,0) ; "RTN","SAMIUR",237,0) set cnt=cnt+1 "RTN","SAMIUR",238,0) ;set SAMIRTN(cnt)="<tr><td>Total: "_rows_"</td></tr>" "RTN","SAMIUR",239,0) ;set SAMIRTN(totcnt)="<td>Total: "_rows_"</td></tr><tr>" "RTN","SAMIUR",240,0) ; "RTN","SAMIUR",241,0) set cnt=cnt+1 set SAMIRTN(cnt)="</tbody>" "RTN","SAMIUR",242,0) for do quit:temp(ii)["</tbody>" ; "RTN","SAMIUR",243,0) . set ii=$order(temp(ii)) "RTN","SAMIUR",244,0) . quit:temp(ii)["</tbody>" "RTN","SAMIUR",245,0) . ; skip past template headers & blank body "RTN","SAMIUR",246,0) . quit "RTN","SAMIUR",247,0) ; "RTN","SAMIUR",248,0) for do quit:'ii ; "RTN","SAMIUR",249,0) . set ii=$order(temp(ii)) "RTN","SAMIUR",250,0) . quit:'ii "RTN","SAMIUR",251,0) . set cnt=cnt+1 "RTN","SAMIUR",252,0) . set ln=$get(temp(ii)) "RTN","SAMIUR",253,0) . new samikey,si "RTN","SAMIUR",254,0) . set (samikey,si)="" "RTN","SAMIUR",255,0) . do LOAD^SAMIFORM(.ln,samikey,si,.filter) "RTN","SAMIUR",256,0) . set SAMIRTN(cnt)=ln "RTN","SAMIUR",257,0) . quit "RTN","SAMIUR",258,0) ; "RTN","SAMIUR",259,0) quit ; end of WSREPORT "RTN","SAMIUR",260,0) ; "RTN","SAMIUR",261,0) ; "RTN","SAMIUR",262,0) SORT(SRTN,SAMIPATS,FILTER) ; sort patients by name "RTN","SAMIUR",263,0) ; "RTN","SAMIUR",264,0) ;@called-by "RTN","SAMIUR",265,0) ; WSREPORT "RTN","SAMIUR",266,0) ;@calls "RTN","SAMIUR",267,0) ; $$UPCASE^XLFMSMT "RTN","SAMIUR",268,0) ; "RTN","SAMIUR",269,0) new typ set typ=$get(FILTER("sort")) "RTN","SAMIUR",270,0) ; "RTN","SAMIUR",271,0) if typ="" set typ="name" "RTN","SAMIUR",272,0) new iz,dt,dfn,nm,cdate "RTN","SAMIUR",273,0) set (dt,dfn,nm)="" ; note: should dfn be initialized inside loop? "RTN","SAMIUR",274,0) set iz=0 "RTN","SAMIUR",275,0) ; "RTN","SAMIUR",276,0) new indx "RTN","SAMIUR",277,0) for do quit:'dt ; "RTN","SAMIUR",278,0) . set dt=$order(SAMIPATS(dt)) "RTN","SAMIUR",279,0) . quit:'dt "RTN","SAMIUR",280,0) . ; note: dfn not re-initialized to "" here; should it be? "RTN","SAMIUR",281,0) . for do quit:'dfn ; "RTN","SAMIUR",282,0) . . set dfn=$order(SAMIPATS(dt,dfn)) "RTN","SAMIUR",283,0) . . quit:'dfn "RTN","SAMIUR",284,0) . . if typ="name" do ; "RTN","SAMIUR",285,0) . . . set nm=$get(SAMIPATS(dt,dfn,"name")) "RTN","SAMIUR",286,0) . . . set nm=$$UPCASE^XLFMSMT(nm) "RTN","SAMIUR",287,0) . . . if nm="" set nm=" " "RTN","SAMIUR",288,0) . . . set indx(nm,dt,dfn)="" "RTN","SAMIUR",289,0) . . . quit "RTN","SAMIUR",290,0) . . if typ="cdate" do ; "RTN","SAMIUR",291,0) . . . set cdate=$$LDOC^SAMIUR2(dt,dfn,.SAMIPATS) "RTN","SAMIUR",292,0) . . . set cdate=$$FMDT^SAMIUR2(cdate) "RTN","SAMIUR",293,0) . . . set indx(cdate,dt,dfn)="" "RTN","SAMIUR",294,0) . . quit "RTN","SAMIUR",295,0) . quit "RTN","SAMIUR",296,0) ; "RTN","SAMIUR",297,0) new iiz set iiz="" "RTN","SAMIUR",298,0) set (dt,dfn)="" ; note: here, too, should inits be inside loops? "RTN","SAMIUR",299,0) for do quit:iiz="" ; "RTN","SAMIUR",300,0) . set iiz=$order(indx(iiz)) "RTN","SAMIUR",301,0) . quit:iiz="" "RTN","SAMIUR",302,0) . for do quit:dt="" ; "RTN","SAMIUR",303,0) . . set dt=$order(indx(iiz,dt)) "RTN","SAMIUR",304,0) . . quit:dt="" "RTN","SAMIUR",305,0) . . for do quit:dfn="" ; "RTN","SAMIUR",306,0) . . . set dfn=$order(indx(iiz,dt,dfn)) "RTN","SAMIUR",307,0) . . . quit:dfn="" "RTN","SAMIUR",308,0) . . . set iz=iz+1 "RTN","SAMIUR",309,0) . . . set SRTN(iz,dt,dfn)=iiz "RTN","SAMIUR",310,0) . . . quit "RTN","SAMIUR",311,0) . . quit "RTN","SAMIUR",312,0) . quit "RTN","SAMIUR",313,0) ; "RTN","SAMIUR",314,0) quit ; end of SORT "RTN","SAMIUR",315,0) ; "RTN","SAMIUR",316,0) ; "RTN","SAMIUR",317,0) ; "RTN","SAMIUR",318,0) NUHREF(SAMIPATS) ; create nuhref link to casereview for all patients "RTN","SAMIUR",319,0) ; "RTN","SAMIUR",320,0) ;@called-by "RTN","SAMIUR",321,0) ; WSREPORT "RTN","SAMIUR",322,0) ;@calls "RTN","SAMIUR",323,0) ; $$setroot^%wd "RTN","SAMIUR",324,0) ; $$GETSSN^SAMIFORM "RTN","SAMIUR",325,0) ; "RTN","SAMIUR",326,0) new ij "RTN","SAMIUR",327,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR",328,0) set ij=0 "RTN","SAMIUR",329,0) for do quit:'ij ; "RTN","SAMIUR",330,0) . set ij=$order(SAMIPATS(ij)) "RTN","SAMIUR",331,0) . quit:'ij "RTN","SAMIUR",332,0) . new ij2 set ij2=0 "RTN","SAMIUR",333,0) . for do quit:'ij2 ; "RTN","SAMIUR",334,0) . . set ij2=$order(SAMIPATS(ij,ij2)) "RTN","SAMIUR",335,0) . . quit:'ij2 "RTN","SAMIUR",336,0) . . ; "RTN","SAMIUR",337,0) . . new dfn set dfn=ij2 "RTN","SAMIUR",338,0) . . set SAMIPATS(ij,dfn,"sid")=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR",339,0) . . set SAMIPATS(ij,dfn,"name")=$get(@root@(dfn,"saminame")) "RTN","SAMIUR",340,0) . . ; "RTN","SAMIUR",341,0) . . new sid set sid=SAMIPATS(ij,dfn,"sid") "RTN","SAMIUR",342,0) . . set SAMIPATS(ij,dfn,"ssn")=$$GETSSN^SAMIFORM(sid) "RTN","SAMIUR",343,0) . . new name set name=SAMIPATS(ij,dfn,"name") "RTN","SAMIUR",344,0) . . ; "RTN","SAMIUR",345,0) . . new nuhref "RTN","SAMIUR",346,0) . . set nuhref="<td data-order="""_name_""" data-search="""_name_""">" "RTN","SAMIUR",347,0) . . set nuhref=nuhref_"<form method=POST action=""/vapals"">" "RTN","SAMIUR",348,0) . . set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""casereview"">" "RTN","SAMIUR",349,0) . . set nuhref=nuhref_"<input type=hidden name=""studyid"" value="_sid_">" "RTN","SAMIUR",350,0) . . set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>" "RTN","SAMIUR",351,0) . . set nuhref=nuhref_"</td>" "RTN","SAMIUR",352,0) . . set SAMIPATS(ij,dfn,"nuhref")=nuhref "RTN","SAMIUR",353,0) . . quit "RTN","SAMIUR",354,0) . quit "RTN","SAMIUR",355,0) ; "RTN","SAMIUR",356,0) quit ; end of NUHREF "RTN","SAMIUR",357,0) ; "RTN","SAMIUR",358,0) ; "RTN","SAMIUR",359,0) ; "RTN","SAMIUR",360,0) PNAME(type,phrase) ; page name for report "RTN","SAMIUR",361,0) ; "RTN","SAMIUR",362,0) ;@called-by "RTN","SAMIUR",363,0) ; WSREPORT "RTN","SAMIUR",364,0) ;@calls none "RTN","SAMIUR",365,0) ; "RTN","SAMIUR",366,0) ; extrinsic returns the PAGE NAME for the report "RTN","SAMIUR",367,0) ; "RTN","SAMIUR",368,0) ; if type="followup" quit "Participant Followup next 30 days -"_$get(phrase) "RTN","SAMIUR",369,0) if type="followup" quit "Participant Followup "_$get(phrase) "RTN","SAMIUR",370,0) ; if type="activity" quit "Activity last 30 days -"_$get(phrase) "RTN","SAMIUR",371,0) if type="activity" quit "Activity "_$get(phrase) "RTN","SAMIUR",372,0) if type="missingct" quit "Intake but no CT Evaluation"_$get(phrase) "RTN","SAMIUR",373,0) if type="incomplete" quit "Incomplete Forms"_$get(phrase) "RTN","SAMIUR",374,0) if type="outreach" quit "Outreach"_$get(phrase) "RTN","SAMIUR",375,0) if type="enrollment" quit "Enrollment"_$get(phrase) "RTN","SAMIUR",376,0) if type="inactive" quit "Inactive"_$get(phrase) "RTN","SAMIUR",377,0) ; "RTN","SAMIUR",378,0) quit "" ; end of $$PNAME "RTN","SAMIUR",379,0) ; "RTN","SAMIUR",380,0) ; "RTN","SAMIUR",381,0) ; "RTN","SAMIUR",382,0) ;@section 2 select subroutines "RTN","SAMIUR",383,0) ; "RTN","SAMIUR",384,0) ; "RTN","SAMIUR",385,0) ; "RTN","SAMIUR",386,0) SELECT(SAMIPATS,ztype,datephrase,filter) ; select patients for report "RTN","SAMIUR",387,0) ; "RTN","SAMIUR",388,0) ;@called-by "RTN","SAMIUR",389,0) ; WSREPORT "RTN","SAMIUR",390,0) ;@calls "RTN","SAMIUR",391,0) ; UNMAT "RTN","SAMIUR",392,0) ; WKLIST "RTN","SAMIUR",393,0) ; $$KEY2FM^SAMICASE "RTN","SAMIUR",394,0) ; $$NOW^XLFDT "RTN","SAMIUR",395,0) ; $$FMADD^XLFDT "RTN","SAMIUR",396,0) ; $$VAPALSDT^SAMICASE "RTN","SAMIUR",397,0) ; $$setroot^%wd "RTN","SAMIUR",398,0) ; GETITEMS^SAMICASE "RTN","SAMIUR",399,0) ; "RTN","SAMIUR",400,0) ; merge ^gpl("select")=filter "RTN","SAMIUR",401,0) new type set type=ztype "RTN","SAMIUR",402,0) if type="unmatched" do quit ; "RTN","SAMIUR",403,0) . do UNMAT(.SAMIPATS,ztype,.datephrase,.filter) "RTN","SAMIUR",404,0) . quit "RTN","SAMIUR",405,0) if type="worklist" do quit ; "RTN","SAMIUR",406,0) . do WKLIST(.SAMIPATS,ztype,.datephrase,.filter) "RTN","SAMIUR",407,0) . quit "RTN","SAMIUR",408,0) if $get(type)="" set type="enrollment" "RTN","SAMIUR",409,0) if type="cumpy" set type="enrollment" "RTN","SAMIUR",410,0) new site set site=$get(filter("siteid")) "RTN","SAMIUR",411,0) ; "RTN","SAMIUR",412,0) new strdt,enddt,fmstrdt,fmenddt "RTN","SAMIUR",413,0) set strdt=$get(filter("start-date")) "RTN","SAMIUR",414,0) ;set fmstrdt=$$KEY2FM^SAMICASE(strdt) "RTN","SAMIUR",415,0) set fmstrdt=$$FMDT^SAMIUR2(strdt) "RTN","SAMIUR",416,0) if fmstrdt=-1 do ; "RTN","SAMIUR",417,0) . set fmstrdt=2000101 "RTN","SAMIUR",418,0) . if type="followup" set fmstrdt=$$NOW^XLFDT "RTN","SAMIUR",419,0) . if type="activity" set fmstrdt=$$FMADD^XLFDT($$NOW^XLFDT,-31) "RTN","SAMIUR",420,0) . quit "RTN","SAMIUR",421,0) if strdt="" set filter("start-date")=$$VAPALSDT^SAMICASE(fmstrdt) "RTN","SAMIUR",422,0) ; "RTN","SAMIUR",423,0) set enddt=$get(filter("end-date")) "RTN","SAMIUR",424,0) ;set fmenddt=$$KEY2FM^SAMICASE(enddt) "RTN","SAMIUR",425,0) set fmenddt=$$FMDT^SAMIUR2(enddt) "RTN","SAMIUR",426,0) if fmenddt=-1 do ; "RTN","SAMIUR",427,0) . set fmenddt=$$NOW^XLFDT "RTN","SAMIUR",428,0) . if type="followup" set fmenddt=$$FMADD^XLFDT($$NOW^XLFDT,31) "RTN","SAMIUR",429,0) . quit "RTN","SAMIUR",430,0) if enddt="" set filter("end-date")=$$VAPALSDT^SAMICASE(fmenddt) "RTN","SAMIUR",431,0) ; "RTN","SAMIUR",432,0) set datephrase="" "RTN","SAMIUR",433,0) new zi set zi=0 "RTN","SAMIUR",434,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR",435,0) ; "RTN","SAMIUR",436,0) for do quit:'zi ; "RTN","SAMIUR",437,0) . set zi=$order(@root@(zi)) "RTN","SAMIUR",438,0) . quit:'zi "RTN","SAMIUR",439,0) . ; "RTN","SAMIUR",440,0) . new sid set sid=$get(@root@(zi,"samistudyid")) "RTN","SAMIUR",441,0) . quit:sid="" "RTN","SAMIUR",442,0) . quit:$extract(sid,1,3)'=site "RTN","SAMIUR",443,0) . ; "RTN","SAMIUR",444,0) . new items set items="" "RTN","SAMIUR",445,0) . do GETITEMS^SAMICASE("items",sid) "RTN","SAMIUR",446,0) . quit:'$data(items) "RTN","SAMIUR",447,0) . ; "RTN","SAMIUR",448,0) . new efmdate,edate,siform,ceform,cefud,fmcefud,cedos,fmcedos "RTN","SAMIUR",449,0) . set siform=$order(items("siform-")) "RTN","SAMIUR",450,0) . new status set status=$get(@root@("graph",sid,siform,"sistatus")) "RTN","SAMIUR",451,0) . if type="inactive",status="active" quit ; for inactive report "RTN","SAMIUR",452,0) . ;if type'="inactive",status'="active" quit ; for other reports "RTN","SAMIUR",453,0) . if type'="inactive",type'="activity",type'="enrollment",status'="active" quit ;other rpts "RTN","SAMIUR",454,0) . new eligible set eligible=$get(@root@("graph",sid,siform,"sicechrt")) "RTN","SAMIUR",455,0) . if type="enrollment",eligible'="y" quit ; must be eligible "RTN","SAMIUR",456,0) . new enrolled set enrolled=$g(@root@("graph",sid,siform,"sildct")) "RTN","SAMIUR",457,0) . if type="enrollment",enrolled'="y" quit ; must be enrolled "RTN","SAMIUR",458,0) . ; "RTN","SAMIUR",459,0) . set (ceform,cefud,fmcefud,cedos,fmcedos)="" "RTN","SAMIUR",460,0) . new lastce,sifm,cefm,baseline "RTN","SAMIUR",461,0) . set (lastce,sifm,cefm,baseline)="" "RTN","SAMIUR",462,0) . set sifm=$$FMDT^SAMIUR2($p(siform,"siform-",2)) "RTN","SAMIUR",463,0) . ;f set ceform=$order(items(ceform),-1) q:ceform="" q:cefud'="" d ; "RTN","SAMIUR",464,0) . ;f set ceform=$order(items(ceform),-1) q:ceform="" d ; "RTN","SAMIUR",465,0) . ;. q:ceform'["form" "RTN","SAMIUR",466,0) . ;. if ceform["ceform" if lastce="" set lastce=ceform "RTN","SAMIUR",467,0) . ;. set cefud=$get(@root@("graph",sid,ceform,"cefud")) "RTN","SAMIUR",468,0) . ;. if cefud'="" set fmcefud=$$FMDT^SAMIUR2(cefud) "RTN","SAMIUR",469,0) . ;. set cedos=$get(@root@("graph",sid,ceform,"cedos")) "RTN","SAMIUR",470,0) . ;. if cedos'="" set fmcedos=$$FMDT^SAMIUR2(cedos) "RTN","SAMIUR",471,0) . ;. quit "RTN","SAMIUR",472,0) . ;if $$FMDT^SAMIUR2($p(lastce,"ceform-",2))<sifm set lastce="" "RTN","SAMIUR",473,0) . ; "RTN","SAMIUR",474,0) . set baseline=$$BASELNDT^SAMICAS3(sid) "RTN","SAMIUR",475,0) . set edate=$get(@root@("graph",sid,siform,"sidc")) "RTN","SAMIUR",476,0) . if edate="" set edate=$get(@root@("graph",sid,siform,"samicreatedate")) "RTN","SAMIUR",477,0) . set efmdate=$$FMDT^SAMIUR2(edate) "RTN","SAMIUR",478,0) . set edate=$$VAPALSDT^SAMICASE(efmdate) "RTN","SAMIUR",479,0) . ; "RTN","SAMIUR",480,0) . new latef,latefdt set (latef,latefdt)="" ; latest form for activity report "RTN","SAMIUR",481,0) . new aform,aformdt set (aform,aformdt)="" "RTN","SAMIUR",482,0) . new anyform set anyform="" "RTN","SAMIUR",483,0) . new proot set proot=$na(@root@("graph",sid)) "RTN","SAMIUR",484,0) . ;for set anyform=$order(items("sort",anyform),-1) q:aform'="" q:anyform="" d ; "RTN","SAMIUR",485,0) . for set anyform=$order(items("sort",anyform),-1) q:anyform="" d ; "RTN","SAMIUR",486,0) . . new tempf set tempf="" "RTN","SAMIUR",487,0) . . ;f set tempf=$order(items("sort",anyform,tempf)) q:tempf="" q:aform'="" d ; "RTN","SAMIUR",488,0) . . f set tempf=$order(items("sort",anyform,tempf)) q:tempf="" d ; "RTN","SAMIUR",489,0) . . . if latef="" d ; record the latest form for activity report "RTN","SAMIUR",490,0) . . . . set latefdt=anyform ; date of latest form "RTN","SAMIUR",491,0) . . . . new latekey set latekey=$order(items("sort",anyform,tempf,"")) "RTN","SAMIUR",492,0) . . . . set latef=$order(items("sort",anyform,tempf,latekey,"")) "RTN","SAMIUR",493,0) . . . if lastce="" d ; if looking for latest ct eval "RTN","SAMIUR",494,0) . . . . if tempf'["ceform" q ; this is not a ceform "RTN","SAMIUR",495,0) . . . . set lastce=$order(items("sort",anyform,tempf,"")) "RTN","SAMIUR",496,0) . . . . if anyform<sifm set lastce="" ; doesn't count - before enrollment "RTN","SAMIUR",497,0) . . . ;if tempf["bxform" q ; don't want any biopsy forms "RTN","SAMIUR",498,0) . . . new tempk set tempk=$order(items("sort",anyform,tempf,"")) "RTN","SAMIUR",499,0) . . . ;if $g(@proot@(tempk,"cefud"))="" q ; no followup date "RTN","SAMIUR",500,0) . . . new tempt set tempt=$order(items("sort",anyform,tempf,tempk,"")) "RTN","SAMIUR",501,0) . . . if cefud="" d ; "RTN","SAMIUR",502,0) . . . . if $g(@proot@(tempk,"cefud"))="" q ; no followup date "RTN","SAMIUR",503,0) . . . . set cefud=$g(@proot@(tempk,"cefud")) "RTN","SAMIUR",504,0) . . . . set fmcefud=$$FMDT^SAMIUR2(cefud) "RTN","SAMIUR",505,0) . . . . set ceform=tempk "RTN","SAMIUR",506,0) . . . if aform="" d ; "RTN","SAMIUR",507,0) . . . . set aform=tempt "RTN","SAMIUR",508,0) . . . . set aformdt=anyform "RTN","SAMIUR",509,0) . ; "RTN","SAMIUR",510,0) . if type="followup" do ; "RTN","SAMIUR",511,0) . . ; new nplus30 set nplus30=$$FMADD^XLFDT($$NOW^XLFDT,31) "RTN","SAMIUR",512,0) . . if +fmcefud<fmstrdt quit ; before start date "RTN","SAMIUR",513,0) . . if +fmcefud<(fmenddt+1) do ; before end date "RTN","SAMIUR",514,0) . . . quit:cefud="" ; no followup date "RTN","SAMIUR",515,0) . . . set SAMIPATS(fmcefud,zi,"aform")=aform "RTN","SAMIUR",516,0) . . . ;set SAMIPATS(fmcefud,zi,"aform")=latef "RTN","SAMIUR",517,0) . . . set SAMIPATS(fmcefud,zi,"aformdt")=aformdt "RTN","SAMIUR",518,0) . . . ;set SAMIPATS(fmcefud,zi,"aformdt")=latefdt "RTN","SAMIUR",519,0) . . . set SAMIPATS(fmcefud,zi,"edate")=edate "RTN","SAMIUR",520,0) . . . set SAMIPATS(fmcefud,zi,"baseline")=baseline "RTN","SAMIUR",521,0) . . . set SAMIPATS(fmcefud,zi)="" "RTN","SAMIUR",522,0) . . . ;if ceform="" set cefud="baseline" "RTN","SAMIUR",523,0) . . . set SAMIPATS(fmcefud,zi,"cefud")=cefud "RTN","SAMIUR",524,0) . . . set SAMIPATS(fmcefud,zi,"cedos")=cedos "RTN","SAMIUR",525,0) . . . set SAMIPATS(fmcefud,zi,"ceform")=ceform "RTN","SAMIUR",526,0) . . . set SAMIPATS(fmcefud,zi,"ceform-vals")=$name(@root@("graph",sid,ceform)) "RTN","SAMIUR",527,0) . . . set SAMIPATS(fmcefud,zi,"siform")=siform "RTN","SAMIUR",528,0) . . . set SAMIPATS(fmcefud,zi,"siform-vals")=$name(@root@("graph",sid,siform)) "RTN","SAMIUR",529,0) . . . merge SAMIPATS(fmcefud,zi,"items")=items "RTN","SAMIUR",530,0) . . . quit "RTN","SAMIUR",531,0) . . set datephrase=" before "_$$VAPALSDT^SAMICASE(fmenddt) "RTN","SAMIUR",532,0) . . quit "RTN","SAMIUR",533,0) . ; "RTN","SAMIUR",534,0) . if type="activity" do ; "RTN","SAMIUR",535,0) . . new fmanyform set fmanyform=$$FMDT^SAMIUR2(latefdt) "RTN","SAMIUR",536,0) . . if fmanyform<fmstrdt quit ; before the start date "RTN","SAMIUR",537,0) . . ; if fmanyform<(fmenddt+1)!(efmdate>fmenddt) do ; need any new form "RTN","SAMIUR",538,0) . . if fmanyform<(fmenddt+1) do ; "RTN","SAMIUR",539,0) . . . set SAMIPATS(efmdate,zi,"aform")=latef "RTN","SAMIUR",540,0) . . . set SAMIPATS(efmdate,zi,"aformdt")=$$VAPALSDT^SAMICASE(fmanyform) "RTN","SAMIUR",541,0) . . . set SAMIPATS(efmdate,zi,"edate")=edate "RTN","SAMIUR",542,0) . . . set SAMIPATS(efmdate,zi)="" "RTN","SAMIUR",543,0) . . . ;if ceform="" set cefud="baseline" "RTN","SAMIUR",544,0) . . . set SAMIPATS(efmdate,zi,"cefud")=cefud "RTN","SAMIUR",545,0) . . . set SAMIPATS(efmdate,zi,"cedos")=cedos "RTN","SAMIUR",546,0) . . . set SAMIPATS(efmdate,zi,"ceform")=ceform "RTN","SAMIUR",547,0) . . . set SAMIPATS(efmdate,zi,"siform")=siform "RTN","SAMIUR",548,0) . . . merge SAMIPATS(efmdate,zi,"items")=items "RTN","SAMIUR",549,0) . . . quit "RTN","SAMIUR",550,0) . . set datephrase=" after "_$$VAPALSDT^SAMICASE(fmstrdt) "RTN","SAMIUR",551,0) . . quit "RTN","SAMIUR",552,0) . ; "RTN","SAMIUR",553,0) . ; date filter for all the rest of the reports "RTN","SAMIUR",554,0) . ; "RTN","SAMIUR",555,0) . quit:efmdate<fmstrdt ; before the start date "RTN","SAMIUR",556,0) . quit:efmdate>(fmenddt+1) ; after the end date "RTN","SAMIUR",557,0) . ; "RTN","SAMIUR",558,0) . if type="incomplete" do ; "RTN","SAMIUR",559,0) . . new complete set complete=1 "RTN","SAMIUR",560,0) . . new zj set zj="" "RTN","SAMIUR",561,0) . . new gr set gr=$name(@root@("graph",sid)) "RTN","SAMIUR",562,0) . . for do quit:zj="" ; "RTN","SAMIUR",563,0) . . . set zj=$order(@gr@(zj)) "RTN","SAMIUR",564,0) . . . quit:zj="" "RTN","SAMIUR",565,0) . . . ; "RTN","SAMIUR",566,0) . . . new stat "RTN","SAMIUR",567,0) . . . set stat=$get(@gr@(zj,"samistatus")) "RTN","SAMIUR",568,0) . . . if stat="" set stat="incomplete" "RTN","SAMIUR",569,0) . . . if stat="incomplete" do ; "RTN","SAMIUR",570,0) . . . . set complete=0 "RTN","SAMIUR",571,0) . . . . set SAMIPATS(efmdate,zi,"iform")=$get(SAMIPATS(efmdate,zi,"iform"))_" "_zj "RTN","SAMIUR",572,0) . . . . quit "RTN","SAMIUR",573,0) . . . quit "RTN","SAMIUR",574,0) . . ; "RTN","SAMIUR",575,0) . . if complete=0 do ; has incomplete form(s) "RTN","SAMIUR",576,0) . . . set SAMIPATS(efmdate,zi,"edate")=edate "RTN","SAMIUR",577,0) . . . set SAMIPATS(efmdate,zi)="" "RTN","SAMIUR",578,0) . . . ;if ceform="" set cefud="baseline" "RTN","SAMIUR",579,0) . . . set SAMIPATS(efmdate,zi,"cefud")=cefud "RTN","SAMIUR",580,0) . . . set SAMIPATS(efmdate,zi,"ceform")=ceform "RTN","SAMIUR",581,0) . . . set SAMIPATS(efmdate,zi,"siform")=siform "RTN","SAMIUR",582,0) . . . merge SAMIPATS(efmdate,zi,"items")=items "RTN","SAMIUR",583,0) . . . quit "RTN","SAMIUR",584,0) . . set datephrase="" "RTN","SAMIUR",585,0) . . quit "RTN","SAMIUR",586,0) . ; "RTN","SAMIUR",587,0) . if type="missingct" do ; "RTN","SAMIUR",588,0) . . if lastce="" do ; has no ct since enrollment "RTN","SAMIUR",589,0) . . . set SAMIPATS(efmdate,zi,"edate")=edate "RTN","SAMIUR",590,0) . . . set SAMIPATS(efmdate,zi)="" "RTN","SAMIUR",591,0) . . . ;if ceform="" set cefud="baseline" "RTN","SAMIUR",592,0) . . . set SAMIPATS(efmdate,zi,"cefud")=cefud "RTN","SAMIUR",593,0) . . . set SAMIPATS(efmdate,zi,"ceform")=ceform "RTN","SAMIUR",594,0) . . . set SAMIPATS(efmdate,zi,"siform")=siform "RTN","SAMIUR",595,0) . . . merge SAMIPATS(efmdate,zi,"items")=items "RTN","SAMIUR",596,0) . . . quit "RTN","SAMIUR",597,0) . . set datephrase="" "RTN","SAMIUR",598,0) . . quit "RTN","SAMIUR",599,0) . ; "RTN","SAMIUR",600,0) . if type="outreach" do ; no-op; hook for future development? "RTN","SAMIUR",601,0) . . quit "RTN","SAMIUR",602,0) . ; "RTN","SAMIUR",603,0) . if type="enrollment" do ; "RTN","SAMIUR",604,0) . . set SAMIPATS(efmdate,zi,"edate")=edate "RTN","SAMIUR",605,0) . . set SAMIPATS(efmdate,zi)="" "RTN","SAMIUR",606,0) . . set SAMIPATS(efmdate,zi,"cefud")=cefud "RTN","SAMIUR",607,0) . . set SAMIPATS(efmdate,zi,"ceform")=ceform "RTN","SAMIUR",608,0) . . set SAMIPATS(efmdate,zi,"cedos")=cedos "RTN","SAMIUR",609,0) . . set SAMIPATS(efmdate,zi,"siform")=siform "RTN","SAMIUR",610,0) . . merge SAMIPATS(efmdate,zi,"items")=items "RTN","SAMIUR",611,0) . . quit "RTN","SAMIUR",612,0) . ; "RTN","SAMIUR",613,0) . if type="inactive" do ; "RTN","SAMIUR",614,0) . . set SAMIPATS(efmdate,zi,"edate")=edate "RTN","SAMIUR",615,0) . . set SAMIPATS(efmdate,zi)="" "RTN","SAMIUR",616,0) . . set SAMIPATS(efmdate,zi,"cefud")=cefud "RTN","SAMIUR",617,0) . . set SAMIPATS(efmdate,zi,"ceform")=ceform "RTN","SAMIUR",618,0) . . set SAMIPATS(efmdate,zi,"cedos")=cedos "RTN","SAMIUR",619,0) . . set SAMIPATS(efmdate,zi,"siform")=siform "RTN","SAMIUR",620,0) . . merge SAMIPATS(efmdate,zi,"items")=items "RTN","SAMIUR",621,0) . . quit "RTN","SAMIUR",622,0) . ; "RTN","SAMIUR",623,0) . set datephrase=" as of "_$$VAPALSDT^SAMICASE($$NOW^XLFDT) "RTN","SAMIUR",624,0) . quit "RTN","SAMIUR",625,0) ; "RTN","SAMIUR",626,0) quit ; end of SELECT "RTN","SAMIUR",627,0) ; "RTN","SAMIUR",628,0) ; "RTN","SAMIUR",629,0) ; "RTN","SAMIUR",630,0) UNMAT(SAMIPATS,ztype,datephrase,filter) ; build unmatched persons list "RTN","SAMIUR",631,0) ; "RTN","SAMIUR",632,0) ;@called-by "RTN","SAMIUR",633,0) ; SELECT "RTN","SAMIUR",634,0) ;@calls "RTN","SAMIUR",635,0) ; $$setroot^%wd "RTN","SAMIUR",636,0) ; "RTN","SAMIUR",637,0) set datephrase="Unmatched Persons" "RTN","SAMIUR",638,0) new ERR k ^gpl("ERR") "RTN","SAMIUR",639,0) new lroot set lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIUR",640,0) new dfn set dfn=9000000 "RTN","SAMIUR",641,0) for do quit:'dfn ; "RTN","SAMIUR",642,0) . set dfn=$order(@lroot@("dfn",dfn)) "RTN","SAMIUR",643,0) . quit:'dfn "RTN","SAMIUR",644,0) . ; "RTN","SAMIUR",645,0) . new ien set ien=$order(@lroot@("dfn",dfn,"")) "RTN","SAMIUR",646,0) . quit:ien="" "RTN","SAMIUR",647,0) . i $g(@lroot@(ien,"dfn"))'=dfn d q ; "RTN","SAMIUR",648,0) . . s ERR(dfn)="dfn index error" "RTN","SAMIUR",649,0) . . m ^gpl("ERR",dfn)=@lroot@(ien) "RTN","SAMIUR",650,0) . n ordern "RTN","SAMIUR",651,0) . s ordern=$g(@lroot@(ien,"ORMORCordernumber")) "RTN","SAMIUR",652,0) . i ordern="" s ordern=$g(@lroot@(ien,"ORM",1,"ordernumber")) "RTN","SAMIUR",653,0) . i ordern'="" q ; "RTN","SAMIUR",654,0) . i $g(@lroot@(ien,"siteid"))'[site q ; "RTN","SAMIUR",655,0) . ;quit:$get(@lroot@(ien,"remotedfn"))'="" ; "RTN","SAMIUR",656,0) . ; "RTN","SAMIUR",657,0) . merge SAMIPATS(ien,dfn)=@lroot@(ien) "RTN","SAMIUR",658,0) . ; "RTN","SAMIUR",659,0) . new name set name=$get(SAMIPATS(ien,dfn,"saminame")) "RTN","SAMIUR",660,0) . ; new name set name=$get(SAMIPATS(ien,dfn,"sinamef")) "RTN","SAMIUR",661,0) . ; set name=name_","_SAMIPATS(ien,dfn,"sinamel") "RTN","SAMIUR",662,0) . new nuhref set nuhref="<form method=POST action=""/vapals"">" "RTN","SAMIUR",663,0) . set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""editperson"">" "RTN","SAMIUR",664,0) . set nuhref=nuhref_"<input type=hidden name=""dfn"" value="_dfn_">" "RTN","SAMIUR",665,0) . set nuhref=nuhref_"<input type=hidden name=""siteid"" value="_site_">" "RTN","SAMIUR",666,0) . set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>" "RTN","SAMIUR",667,0) . set SAMIPATS(ien,dfn,"editref")=nuhref "RTN","SAMIUR",668,0) . quit "RTN","SAMIUR",669,0) ; "RTN","SAMIUR",670,0) i $d(ERR) d ^ZTER "RTN","SAMIUR",671,0) ; "RTN","SAMIUR",672,0) quit ; end of UNMAT "RTN","SAMIUR",673,0) ; "RTN","SAMIUR",674,0) ; "RTN","SAMIUR",675,0) ; "RTN","SAMIUR",676,0) WKLIST(SAMIPATS,ztype,datephrase,filter) ; build work list "RTN","SAMIUR",677,0) ; "RTN","SAMIUR",678,0) ;@called-by "RTN","SAMIUR",679,0) ; SELECT "RTN","SAMIUR",680,0) ;@calls "RTN","SAMIUR",681,0) ; $$setroot^%wd "RTN","SAMIUR",682,0) ; "RTN","SAMIUR",683,0) ; add site "RTN","SAMIUR",684,0) ; add compare to vapals-patients "RTN","SAMIUR",685,0) ; add navigation to enrollment "RTN","SAMIUR",686,0) ; "RTN","SAMIUR",687,0) kill ^gpl("worklist") "RTN","SAMIUR",688,0) merge ^gpl("worklist")=filter "RTN","SAMIUR",689,0) new site "RTN","SAMIUR",690,0) set site=$get(filter("siteid")) "RTN","SAMIUR",691,0) quit:site="" "RTN","SAMIUR",692,0) set datephrase="Work List" "RTN","SAMIUR",693,0) new lroot set lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIUR",694,0) new proot set proot=$$setroot^%wd("vapals-patients") "RTN","SAMIUR",695,0) ; "RTN","SAMIUR",696,0) new dfn set dfn=0 "RTN","SAMIUR",697,0) for set dfn=$order(@lroot@("dfn",dfn)) quit:+dfn=0 do ; "RTN","SAMIUR",698,0) . quit:$order(@proot@("dfn",dfn,""))'="" "RTN","SAMIUR",699,0) . new ien set ien=$order(@lroot@("dfn",dfn,"")) "RTN","SAMIUR",700,0) . quit:ien="" "RTN","SAMIUR",701,0) . i $g(@lroot@(ien,"dfn"))'=dfn d q ; "RTN","SAMIUR",702,0) . . s ERR="dfn index error in patient-lookup dfn="_dfn "RTN","SAMIUR",703,0) . . ;D ^ZTER "RTN","SAMIUR",704,0) . ; "RTN","SAMIUR",705,0) . ; write !,"dfn= ",dfn "RTN","SAMIUR",706,0) . ; zwrite @lroot@(ien,*) "RTN","SAMIUR",707,0) . ; "RTN","SAMIUR",708,0) . quit:$get(@lroot@(ien,"siteid"))'=site "RTN","SAMIUR",709,0) . ; "RTN","SAMIUR",710,0) . merge ^gpl("worklist","lroot",ien)=@lroot@(ien) "RTN","SAMIUR",711,0) . merge SAMIPATS(ien,dfn)=@lroot@(ien) "RTN","SAMIUR",712,0) . ;zwr SAMIPATS "RTN","SAMIUR",713,0) . ;i dfn=9000166 B "RTN","SAMIUR",714,0) . ;i dfn=9000136 B "RTN","SAMIUR",715,0) . new name set name=$get(SAMIPATS(ien,dfn,"saminame")) "RTN","SAMIUR",716,0) . ; new name set name=$get(SAMIPATS(ien,dfn,"sinamef")) "RTN","SAMIUR",717,0) . ; set name=name_","_SAMIPATS(ien,dfn,"sinamel") "RTN","SAMIUR",718,0) . new nuhref "RTN","SAMIUR",719,0) . set nuhref="<td data-search="""_name_""" data-order="""_name_""">" "RTN","SAMIUR",720,0) . set nuhref=nuhref_"<form method=POST action=""/vapals"">" "RTN","SAMIUR",721,0) . set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""newcase"">" "RTN","SAMIUR",722,0) . set nuhref=nuhref_"<input type=hidden name=""dfn"" value="_dfn_">" "RTN","SAMIUR",723,0) . set nuhref=nuhref_"<input type=hidden name=""siteid"" value="_site_">" "RTN","SAMIUR",724,0) . set nuhref=nuhref_"<input value="""_name_""" class=""btn btn-link"" role=""link"" type=""submit""></form>" "RTN","SAMIUR",725,0) . set nuhref=nuhref_"</td>" "RTN","SAMIUR",726,0) . set SAMIPATS(ien,dfn,"workref")=nuhref "RTN","SAMIUR",727,0) . quit "RTN","SAMIUR",728,0) ; "RTN","SAMIUR",729,0) merge ^gpl("worklist","pats")=SAMIPATS "RTN","SAMIUR",730,0) ; "RTN","SAMIUR",731,0) quit ; end of WKLIST "RTN","SAMIUR",732,0) ; "RTN","SAMIUR",733,0) ; "RTN","SAMIUR",734,0) ; "RTN","SAMIUR",735,0) EOR ; end of SAMIUR "RTN","SAMIUR2") 0^18^B1367473447 "RTN","SAMIUR2",1,0) SAMIUR2 ;ven/gpl - user reports cont ;2021-10-29t20:32z "RTN","SAMIUR2",2,0) ;;18.0;SAMI;**5,11,12,14,15**;2020-01;Build 3 "RTN","SAMIUR2",3,0) ;;18-15 "RTN","SAMIUR2",4,0) ; "RTN","SAMIUR2",5,0) ; SAMIUR2 contains subroutines for creating & implementing the "RTN","SAMIUR2",6,0) ; report-definition table. "RTN","SAMIUR2",7,0) ; "RTN","SAMIUR2",8,0) quit ; no entry from top "RTN","SAMIUR2",9,0) ; "RTN","SAMIUR2",10,0) ; "RTN","SAMIUR2",11,0) ; "RTN","SAMIUR2",12,0) ;@section 0 primary development "RTN","SAMIUR2",13,0) ; "RTN","SAMIUR2",14,0) ; "RTN","SAMIUR2",15,0) ; "RTN","SAMIUR2",16,0) ;@routine-credits "RTN","SAMIUR2",17,0) ;@dev-main George P. Lilly (gpl) "RTN","SAMIUR2",18,0) ; gpl@vistaexpertise.net "RTN","SAMIUR2",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIUR2",20,0) ; http://vistaexpertise.net "RTN","SAMIUR2",21,0) ;@copyright 2017/2021, gpl, all rights reserved "RTN","SAMIUR2",22,0) ;@license see routine SAMIUL "RTN","SAMIUR2",23,0) ; "RTN","SAMIUR2",24,0) ;@last-update 2021-10-29t20:32z "RTN","SAMIUR2",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMIUR2",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIUR2",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIUR2",28,0) ;@version 18-15 "RTN","SAMIUR2",29,0) ;@release-date 2020-01 "RTN","SAMIUR2",30,0) ;@patch-list **5,11,12,14,15** "RTN","SAMIUR2",31,0) ; "RTN","SAMIUR2",32,0) ;@dev-add Frederick D. S. Marshall (toad) "RTN","SAMIUR2",33,0) ; toad@vistaexpertise.net "RTN","SAMIUR2",34,0) ;@dev-add Larry G. Carlson (lgc) "RTN","SAMIUR2",35,0) ; larry.g.carlson@gmail.com "RTN","SAMIUR2",36,0) ;@dev-add Alexis R. Carlson (arc) "RTN","SAMIUR2",37,0) ; whatisthehumanspirit@gmail.com "RTN","SAMIUR2",38,0) ;@dev-add Kenneth McGlothlen (mcglk) "RTN","SAMIUR2",39,0) ; mcglk@vistaexpertise.net "RTN","SAMIUR2",40,0) ; "RTN","SAMIUR2",41,0) ;@module-credits see SAMIHUL "RTN","SAMIUR2",42,0) ; "RTN","SAMIUR2",43,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIUR2",44,0) ; see SAMIURUL "RTN","SAMIUR2",45,0) ; "RTN","SAMIUR2",46,0) ;@contents "RTN","SAMIUR2",47,0) ; RPTTBL build report-definition table "RTN","SAMIUR2",48,0) ; "RTN","SAMIUR2",49,0) ; $$DFN2SID study id for patient DFN "RTN","SAMIUR2",50,0) ; $$MKNAV html for navigation to form "RTN","SAMIUR2",51,0) ; "RTN","SAMIUR2",52,0) ; $$SHDET table contents for smoking history "RTN","SAMIUR2",53,0) ; CUMPY forms array of cummulative pack year data "RTN","SAMIUR2",54,0) ; $$TDDT embed date in table cell "RTN","SAMIUR2",55,0) ; $$FMDT convert date to fileman format "RTN","SAMIUR2",56,0) ; $$PKYDT pack-years from start & end & cigs/day "RTN","SAMIUR2",57,0) ; $$PKY pack-years from years & packs/day "RTN","SAMIUR2",58,0) ; "RTN","SAMIUR2",59,0) ; $$AGE age "RTN","SAMIUR2",60,0) ; $$BLINEDT baseline date "RTN","SAMIUR2",61,0) ; $$CONTACT patient street address "RTN","SAMIUR2",62,0) ; $$CTPROT ct protocol "RTN","SAMIUR2",63,0) ; $$DOB date of birth "RTN","SAMIUR2",64,0) ; $$FUDATE followup date "RTN","SAMIUR2",65,0) ; $$GENDER gender "RTN","SAMIUR2",66,0) ; $$IFORM name(s) of incomplete forms "RTN","SAMIUR2",67,0) ; $$LASTEXM patient last exam "RTN","SAMIUR2",68,0) ; $$MANPAT unmatched patient cell "RTN","SAMIUR2",69,0) ; $$MATCH match button cell "RTN","SAMIUR2",70,0) ; $$NAME name w/hyperlink "RTN","SAMIUR2",71,0) ; $$PACKYRS smoking status "RTN","SAMIUR2",72,0) ; $$POSSIBLE possible match cell "RTN","SAMIUR2",73,0) ; $$RECOM recommendation "RTN","SAMIUR2",74,0) ; $$RURAL patient's rural/urban status "RTN","SAMIUR2",75,0) ; $$SID study id "RTN","SAMIUR2",76,0) ; $$SMHIS smoking history cell "RTN","SAMIUR2",77,0) ; $$SMKSTAT smoking status "RTN","SAMIUR2",78,0) ; $$SSN social security number "RTN","SAMIUR2",79,0) ; $$STUDYDT latest study date "RTN","SAMIUR2",80,0) ; $$STUDYTYP latest study type "RTN","SAMIUR2",81,0) ; $$VALS form-values cell "RTN","SAMIUR2",82,0) ; $$WHEN followup text "RTN","SAMIUR2",83,0) ; $$WORKPAT worklist patient name cell "RTN","SAMIUR2",84,0) ; "RTN","SAMIUR2",85,0) ; EPAT patient name w/nav to enrollment "RTN","SAMIUR2",86,0) ; ETHNCTY ethnicity "RTN","SAMIUR2",87,0) ; RACE race "RTN","SAMIUR2",88,0) ; STATUS patient status "RTN","SAMIUR2",89,0) ; WSVALS display form values from graph "RTN","SAMIUR2",90,0) ; "RTN","SAMIUR2",91,0) ; "RTN","SAMIUR2",92,0) ; "RTN","SAMIUR2",93,0) ;@section 1 ppi RPTTBL^SAMIUR2 "RTN","SAMIUR2",94,0) ; "RTN","SAMIUR2",95,0) ; "RTN","SAMIUR2",96,0) ; "RTN","SAMIUR2",97,0) RPTTBL(RPT,TYPE,SITE) ; RPT is passed by reference and returns the "RTN","SAMIUR2",98,0) ; report definition table. TYPE is the report type to be returned "RTN","SAMIUR2",99,0) ; This routine could use a file or a graph in the next version "RTN","SAMIUR2",100,0) ; "RTN","SAMIUR2",101,0) ;;private;procedure;clean;silent;sac "RTN","SAMIUR2",102,0) ;@called-by "RTN","SAMIUR2",103,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",104,0) ; WSREPORT^SAMIUR1 (which then calls WSREPORT^SAMIUR) "RTN","SAMIUR2",105,0) ;@calls none (defines calls for WSREPORT^SAMIUR to call) "RTN","SAMIUR2",106,0) ;@input "RTN","SAMIUR2",107,0) ; TYPE = report type to return "RTN","SAMIUR2",108,0) ;@output "RTN","SAMIUR2",109,0) ; .RPT report-definition table "RTN","SAMIUR2",110,0) ; "RTN","SAMIUR2",111,0) ; This routine could use a file or a graph in the next version "RTN","SAMIUR2",112,0) ; "RTN","SAMIUR2",113,0) if TYPE="followup" do quit ; "RTN","SAMIUR2",114,0) . set RPT(1,"header")="F/U Date" "RTN","SAMIUR2",115,0) . set RPT(1,"routine")="$$FUDATE^SAMIUR2" "RTN","SAMIUR2",116,0) . set RPT(2,"header")="Name" "RTN","SAMIUR2",117,0) . set RPT(2,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",118,0) . ;set RPT(3,"header")="SSN" "RTN","SAMIUR2",119,0) . set RPT(3,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",120,0) . set RPT(3,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",121,0) . set RPT(4,"header")="Baseline Date" "RTN","SAMIUR2",122,0) . set RPT(4,"routine")="$$BLINEDT^SAMIUR2" "RTN","SAMIUR2",123,0) . set RPT(5,"header")="Last Form" "RTN","SAMIUR2",124,0) . set RPT(5,"routine")="$$AFORM^SAMIUR2" "RTN","SAMIUR2",125,0) . set RPT(6,"header")="Form Date" "RTN","SAMIUR2",126,0) . set RPT(6,"routine")="$$AFORMDT^SAMIUR2" "RTN","SAMIUR2",127,0) . set RPT(7,"header")="Recommend" "RTN","SAMIUR2",128,0) . set RPT(7,"routine")="$$RECOM^SAMIUR2" "RTN","SAMIUR2",129,0) . set RPT(8,"header")="Contact Information" "RTN","SAMIUR2",130,0) . set RPT(8,"routine")="$$CONTACT^SAMIUR2" "RTN","SAMIUR2",131,0) . quit "RTN","SAMIUR2",132,0) ; "RTN","SAMIUR2",133,0) if TYPE="activity" do quit ; "RTN","SAMIUR2",134,0) . set RPT(1,"header")="Name" "RTN","SAMIUR2",135,0) . set RPT(1,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",136,0) . set RPT(2,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",137,0) . set RPT(2,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",138,0) . set RPT(2.2,"header")="Active/Inactive" "RTN","SAMIUR2",139,0) . set RPT(2.2,"routine")="$$ACTIVE^SAMIUR2" "RTN","SAMIUR2",140,0) . set RPT(2.5,"header")="Form" "RTN","SAMIUR2",141,0) . set RPT(2.5,"routine")="$$AFORM^SAMIUR2" "RTN","SAMIUR2",142,0) . set RPT(3,"header")="Form Date" "RTN","SAMIUR2",143,0) . ;set RPT(3,"routine")="$$STUDYDT^SAMIUR2" "RTN","SAMIUR2",144,0) . set RPT(3,"routine")="$$AFORMDT^SAMIUR2" "RTN","SAMIUR2",145,0) . ;set RPT(4,"header")="Type" "RTN","SAMIUR2",146,0) . ;set RPT(4,"routine")="$$STUDYTYP^SAMIUR2" "RTN","SAMIUR2",147,0) . ;set RPT(5,"header")="CT Protocol" "RTN","SAMIUR2",148,0) . ;set RPT(5,"routine")="$$CTPROT^SAMIUR2" "RTN","SAMIUR2",149,0) . set RPT(6,"header")="Follow-up" "RTN","SAMIUR2",150,0) . set RPT(6,"routine")="$$RECOM^SAMIUR2" "RTN","SAMIUR2",151,0) . ;set RPT(7,"header")="When" "RTN","SAMIUR2",152,0) . ;set RPT(7,"routine")="$$WHEN^SAMIUR2" "RTN","SAMIUR2",153,0) . set RPT(8,"header")="on Date" "RTN","SAMIUR2",154,0) . set RPT(8,"routine")="$$FUDATE^SAMIUR2" "RTN","SAMIUR2",155,0) . quit "RTN","SAMIUR2",156,0) ; "RTN","SAMIUR2",157,0) if TYPE="enrollment" do quit ; "RTN","SAMIUR2",158,0) . set RPT(1,"header")="Name" "RTN","SAMIUR2",159,0) . set RPT(1,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",160,0) . set RPT(1.5,"header")="Active/Inactive" "RTN","SAMIUR2",161,0) . set RPT(1.5,"routine")="$$ACTIVE^SAMIUR2" "RTN","SAMIUR2",162,0) . set RPT(2,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",163,0) . set RPT(2,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",164,0) . set RPT(3,"header")="CT Date" "RTN","SAMIUR2",165,0) . set RPT(3,"routine")="$$STUDYDT^SAMIUR2" "RTN","SAMIUR2",166,0) . set RPT(4,"header")="Gender" "RTN","SAMIUR2",167,0) . set RPT(4,"routine")="$$GENDER^SAMIUR2" "RTN","SAMIUR2",168,0) . ; set RPT(5,"header")="Race" "RTN","SAMIUR2",169,0) . ; set RPT(5,"routine")="$$RACE^SAMIUR2" "RTN","SAMIUR2",170,0) . set RPT(6,"header")="Age" "RTN","SAMIUR2",171,0) . set RPT(6,"routine")="$$AGE^SAMIUR2" "RTN","SAMIUR2",172,0) . d ; "RTN","SAMIUR2",173,0) . . n filter s filter("siteid")=SITE "RTN","SAMIUR2",174,0) . . i $$ISVA^SAMIPARM(.filter) d ; "RTN","SAMIUR2",175,0) . . . set RPT(7,"header")="Urban/Rural" "RTN","SAMIUR2",176,0) . . . set RPT(7,"routine")="$$RURAL^SAMIUR2" "RTN","SAMIUR2",177,0) . set RPT(8,"header")="Smoking Status" "RTN","SAMIUR2",178,0) . set RPT(8,"routine")="$$SMKSTAT^SAMIUR2" "RTN","SAMIUR2",179,0) . set RPT(9,"header")="Pack Years at Intake" "RTN","SAMIUR2",180,0) . set RPT(9,"routine")="$$PACKYRS^SAMIUR2" "RTN","SAMIUR2",181,0) . quit "RTN","SAMIUR2",182,0) ; "RTN","SAMIUR2",183,0) if TYPE="inactive" do quit ; "RTN","SAMIUR2",184,0) . set RPT(1,"header")="Name" "RTN","SAMIUR2",185,0) . set RPT(1,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",186,0) . set RPT(2,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",187,0) . set RPT(2,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",188,0) . set RPT(3,"header")="Enrollment date" "RTN","SAMIUR2",189,0) . set RPT(3,"routine")="$$ENROLLDT^SAMIUR2" "RTN","SAMIUR2",190,0) . ;set RPT(3,"header")="CT Date" "RTN","SAMIUR2",191,0) . ;set RPT(3,"routine")="$$STUDYDT^SAMIUR2" "RTN","SAMIUR2",192,0) . ;set RPT(4,"header")="Gender" "RTN","SAMIUR2",193,0) . ;set RPT(4,"routine")="$$GENDER^SAMIUR2" "RTN","SAMIUR2",194,0) . ; set RPT(5,"header")="Race" "RTN","SAMIUR2",195,0) . ; set RPT(5,"routine")="$$RACE^SAMIUR2" "RTN","SAMIUR2",196,0) . ;set RPT(6,"header")="Age" "RTN","SAMIUR2",197,0) . ;set RPT(6,"routine")="$$AGE^SAMIUR2" "RTN","SAMIUR2",198,0) . set RPT(4,"header")="Date of Death" "RTN","SAMIUR2",199,0) . set RPT(4,"routine")="$$INACTDT^SAMIUR2" "RTN","SAMIUR2",200,0) . set RPT(5,"header")="Inactive Reason" "RTN","SAMIUR2",201,0) . set RPT(5,"routine")="$$INACTRE^SAMIUR2" "RTN","SAMIUR2",202,0) . set RPT(6,"header")="Inactive Comment" "RTN","SAMIUR2",203,0) . set RPT(6,"routine")="$$INACTCM^SAMIUR2" "RTN","SAMIUR2",204,0) . ;set RPT(7,"header")="Urban/Rural" "RTN","SAMIUR2",205,0) . ;set RPT(7,"routine")="$$RURAL^SAMIUR2" "RTN","SAMIUR2",206,0) . ;set RPT(8,"header")="Smoking Status" "RTN","SAMIUR2",207,0) . ;set RPT(8,"routine")="$$SMKSTAT^SAMIUR2" "RTN","SAMIUR2",208,0) . ;set RPT(9,"header")="Pack Years at Intake" "RTN","SAMIUR2",209,0) . ;set RPT(9,"routine")="$$PACKYRS^SAMIUR2" "RTN","SAMIUR2",210,0) . quit "RTN","SAMIUR2",211,0) ; "RTN","SAMIUR2",212,0) if TYPE="incomplete" do quit ; "RTN","SAMIUR2",213,0) . set RPT(1,"header")="Enrollment date" "RTN","SAMIUR2",214,0) . set RPT(1,"routine")="$$ENROLLDT^SAMIUR2" "RTN","SAMIUR2",215,0) . set RPT(2,"header")="Name" "RTN","SAMIUR2",216,0) . set RPT(2,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",217,0) . set RPT(3,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",218,0) . set RPT(3,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",219,0) . set RPT(4,"header")="Incomplete form" "RTN","SAMIUR2",220,0) . set RPT(4,"routine")="$$IFORM^SAMIUR2" "RTN","SAMIUR2",221,0) . quit "RTN","SAMIUR2",222,0) ; "RTN","SAMIUR2",223,0) if TYPE="missingct" do quit ; "RTN","SAMIUR2",224,0) . set RPT(1,"header")="Last contact date" "RTN","SAMIUR2",225,0) . set RPT(1,"routine")="$$LDOC^SAMIUR2" "RTN","SAMIUR2",226,0) . set RPT(2,"header")="Last contact entry" "RTN","SAMIUR2",227,0) . set RPT(2,"routine")="$$LENTRY^SAMIUR2" "RTN","SAMIUR2",228,0) . set RPT(3,"header")="Name" "RTN","SAMIUR2",229,0) . set RPT(3,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",230,0) . set RPT(4,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",231,0) . set RPT(4,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",232,0) . set RPT(5,"header")="Enrollment date" "RTN","SAMIUR2",233,0) . set RPT(5,"routine")="$$ENROLLDT^SAMIUR2" "RTN","SAMIUR2",234,0) . quit "RTN","SAMIUR2",235,0) ; "RTN","SAMIUR2",236,0) if TYPE="cumpy" do quit ; "RTN","SAMIUR2",237,0) . set RPT(1,"header")="Name" "RTN","SAMIUR2",238,0) . set RPT(1,"routine")="$$NAME^SAMIUR2" "RTN","SAMIUR2",239,0) . set RPT(2,"header")="Study ID" "RTN","SAMIUR2",240,0) . set RPT(2,"routine")="$$SID^SAMIUR2" "RTN","SAMIUR2",241,0) . set RPT(3,"header")="Form Values" "RTN","SAMIUR2",242,0) . set RPT(3,"routine")="$$VALS^SAMIUR2" "RTN","SAMIUR2",243,0) . set RPT(4,"header")="Smoking History" "RTN","SAMIUR2",244,0) . set RPT(4,"routine")="$$SMHIS^SAMIUR2" "RTN","SAMIUR2",245,0) . quit "RTN","SAMIUR2",246,0) ; "RTN","SAMIUR2",247,0) if TYPE="unmatched" do ; "RTN","SAMIUR2",248,0) . set RPT(1,"header")="Unmatched Manual Entry" "RTN","SAMIUR2",249,0) . set RPT(1,"routine")="$$MANPAT^SAMIUR2" "RTN","SAMIUR2",250,0) . set RPT(2,"header")="Possible HL7 Match" "RTN","SAMIUR2",251,0) . set RPT(2,"routine")="$$POSSIBLE^SAMIUR2" "RTN","SAMIUR2",252,0) . set RPT(3,"header")="Match Control" "RTN","SAMIUR2",253,0) . set RPT(3,"routine")="$$MATCH^SAMIUR2" "RTN","SAMIUR2",254,0) . quit "RTN","SAMIUR2",255,0) ; "RTN","SAMIUR2",256,0) if TYPE="worklist" do quit ; "RTN","SAMIUR2",257,0) . set RPT(1,"header")="Name" "RTN","SAMIUR2",258,0) . set RPT(1,"routine")="$$WORKPAT^SAMIUR2" "RTN","SAMIUR2",259,0) . set RPT(2,"header")=$$SSNLABEL(SITE) "RTN","SAMIUR2",260,0) . set RPT(2,"routine")="$$SSN^SAMIUR2" "RTN","SAMIUR2",261,0) . set RPT(3,"header")="Date of birth" "RTN","SAMIUR2",262,0) . set RPT(3,"routine")="$$DOB^SAMIUR2" "RTN","SAMIUR2",263,0) . set RPT(4,"header")="Gender" "RTN","SAMIUR2",264,0) . set RPT(4,"routine")="$$GENDER^SAMIUR2" "RTN","SAMIUR2",265,0) . quit "RTN","SAMIUR2",266,0) ; "RTN","SAMIUR2",267,0) quit ; end of ppi RPTTBL^SAMIUR2 "RTN","SAMIUR2",268,0) ; "RTN","SAMIUR2",269,0) ; "RTN","SAMIUR2",270,0) ; "RTN","SAMIUR2",271,0) ;@section 2 shared subroutines "RTN","SAMIUR2",272,0) ; "RTN","SAMIUR2",273,0) ; "RTN","SAMIUR2",274,0) ; "RTN","SAMIUR2",275,0) DFN2SID(DFN) ;studyid for patient DFN "RTN","SAMIUR2",276,0) ; "RTN","SAMIUR2",277,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",278,0) ;@called-by "RTN","SAMIUR2",279,0) ; $$SID^SAMIUR2 "RTN","SAMIUR2",280,0) ; $$IFORM^SAMIUR2 "RTN","SAMIUR2",281,0) ; $$VALS^SAMIUR2 "RTN","SAMIUR2",282,0) ; $$SMHIS^SAMIUR2 "RTN","SAMIUR2",283,0) ;@calls "RTN","SAMIUR2",284,0) ; $$setroot^%wd "RTN","SAMIUR2",285,0) ; "RTN","SAMIUR2",286,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",287,0) ; "RTN","SAMIUR2",288,0) quit $get(@root@(DFN,"sisid")) ; end of $$DFN2SID "RTN","SAMIUR2",289,0) ; "RTN","SAMIUR2",290,0) ; "RTN","SAMIUR2",291,0) ; "RTN","SAMIUR2",292,0) MKNAV(sid,zform,fname,form) ; html for navigation to form "RTN","SAMIUR2",293,0) ; "RTN","SAMIUR2",294,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",295,0) ;@called-by "RTN","SAMIUR2",296,0) ; $$IFORM^SAMIUR2 "RTN","SAMIUR2",297,0) ;@calls none "RTN","SAMIUR2",298,0) ; "RTN","SAMIUR2",299,0) new rtn set rtn="<form method=""post"" action=""/vapals"">" "RTN","SAMIUR2",300,0) set rtn=rtn_"<input name=""samiroute"" value=""form"" type=""hidden"">" "RTN","SAMIUR2",301,0) set rtn=rtn_" <input name=""studyid"" value="""_sid_""" type=""hidden"">" "RTN","SAMIUR2",302,0) set rtn=rtn_" <input name=""form"" value=""vapals:"_zform_""" type=""hidden"">" "RTN","SAMIUR2",303,0) set rtn=rtn_" <input value="""_fname_""" class=""btn btn-link"" role=""link"" type=""submit""></form>"_$char(13) "RTN","SAMIUR2",304,0) ; "RTN","SAMIUR2",305,0) quit rtn ; end of $$MKNAV "RTN","SAMIUR2",306,0) ; "RTN","SAMIUR2",307,0) ; "RTN","SAMIUR2",308,0) ; "RTN","SAMIUR2",309,0) ;@section 3 smoking history subroutines "RTN","SAMIUR2",310,0) ; "RTN","SAMIUR2",311,0) ; "RTN","SAMIUR2",312,0) ; "RTN","SAMIUR2",313,0) SHDET(SID,KEY) ; table contents for smoking history "RTN","SAMIUR2",314,0) ; "RTN","SAMIUR2",315,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",316,0) ;@called-by "RTN","SAMIUR2",317,0) ; LOAD^SAMIFLD "RTN","SAMIUR2",318,0) ; $$SMHIS^SAMIUR2 "RTN","SAMIUR2",319,0) ;@calls "RTN","SAMIUR2",320,0) ; CUMPY "RTN","SAMIUR2",321,0) ; "RTN","SAMIUR2",322,0) ; KEY is the form key of the caller for "current" marker insertion "RTN","SAMIUR2",323,0) ; "RTN","SAMIUR2",324,0) new pyary "RTN","SAMIUR2",325,0) if $get(KEY)="" set KEY="" "RTN","SAMIUR2",326,0) do CUMPY("pyary",SID,KEY) "RTN","SAMIUR2",327,0) ; "RTN","SAMIUR2",328,0) new current set current=$get(pyary("current")) "RTN","SAMIUR2",329,0) new rptcnt set rptcnt=0 "RTN","SAMIUR2",330,0) new rptmax set rptmax=$order(pyary("rpt",""),-1) "RTN","SAMIUR2",331,0) quit:+rptmax=0 "RTN","SAMIUR2",332,0) ; "RTN","SAMIUR2",333,0) new return set return="" "RTN","SAMIUR2",334,0) new zi set zi="" "RTN","SAMIUR2",335,0) for zi=1:1:rptmax do ; "RTN","SAMIUR2",336,0) . set rptcnt=rptcnt+1 "RTN","SAMIUR2",337,0) . if rptcnt=current set return=return_"<tr data-current-form=""true"">" "RTN","SAMIUR2",338,0) . else set return=return_"<tr>" "RTN","SAMIUR2",339,0) . set return=return_"<td>"_pyary("rpt",rptcnt,1)_"</td>" "RTN","SAMIUR2",340,0) . set return=return_"<td class=""reported-date"">"_pyary("rpt",rptcnt,2)_"</td>" "RTN","SAMIUR2",341,0) . set return=return_"<td class=""pack-years"">"_pyary("rpt",rptcnt,3)_"</td>" "RTN","SAMIUR2",342,0) . set return=return_"<td class=""cumulative-pack-years"">"_pyary("rpt",rptcnt,4)_"</td>" "RTN","SAMIUR2",343,0) . set return=return_"</tr>" "RTN","SAMIUR2",344,0) . quit "RTN","SAMIUR2",345,0) ; "RTN","SAMIUR2",346,0) quit return ; end of ppi $$SHDET^SAMIUR2 "RTN","SAMIUR2",347,0) ; "RTN","SAMIUR2",348,0) ; "RTN","SAMIUR2",349,0) ; "RTN","SAMIUR2",350,0) CUMPY(PYARY,sid,KEY) ; forms array of cummulative pack year data "RTN","SAMIUR2",351,0) ; "RTN","SAMIUR2",352,0) ;;ppi;procedure;clean;silent;sac "RTN","SAMIUR2",353,0) ;@called-by "RTN","SAMIUR2",354,0) ; SSTATUS^SAMINOT2 "RTN","SAMIUR2",355,0) ; SSTATUS^SAMINOT3 "RTN","SAMIUR2",356,0) ; $$SHDET "RTN","SAMIUR2",357,0) ;@calls "RTN","SAMIUR2",358,0) ; $$setroot^%wd "RTN","SAMIUR2",359,0) ; GETITEMS^SAMICASE "RTN","SAMIUR2",360,0) ; $$GETDTKEY^SAMICAS2 "RTN","SAMIUR2",361,0) ; $$KEY2DSPD^SAMICAS2 "RTN","SAMIUR2",362,0) ; $$FMDT "RTN","SAMIUR2",363,0) ; $$PKYDT "RTN","SAMIUR2",364,0) ; "RTN","SAMIUR2",365,0) ; PYARY passed by name "RTN","SAMIUR2",366,0) ; KEY is the current form key for matching to a row "RTN","SAMIUR2",367,0) ; "RTN","SAMIUR2",368,0) kill @PYARY "RTN","SAMIUR2",369,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",370,0) ; new sid set sid=$get(@root@(DFN,"samistudyid")) "RTN","SAMIUR2",371,0) ; quit:sid="" "RTN","SAMIUR2",372,0) ; "RTN","SAMIUR2",373,0) new items set items="" "RTN","SAMIUR2",374,0) do GETITEMS^SAMICASE("items",sid) "RTN","SAMIUR2",375,0) quit:'$data(items) "RTN","SAMIUR2",376,0) merge @PYARY@("items")=items "RTN","SAMIUR2",377,0) ; "RTN","SAMIUR2",378,0) new siform set siform=$order(items("siform")) "RTN","SAMIUR2",379,0) quit:siform="" "RTN","SAMIUR2",380,0) if siform=$get(KEY) set @PYARY@("current")=1 ;this row is the current form "RTN","SAMIUR2",381,0) ; "RTN","SAMIUR2",382,0) set @PYARY@("rpt",1,1)="Intake" ; Form "RTN","SAMIUR2",383,0) new kdate set kdate=$$GETDTKEY^SAMICAS2(siform) "RTN","SAMIUR2",384,0) new keydate set keydate=$$KEY2DSPD^SAMICAS2(kdate) "RTN","SAMIUR2",385,0) set @PYARY@("rpt",1,2)=keydate ; Reported Date "RTN","SAMIUR2",386,0) ; "RTN","SAMIUR2",387,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",388,0) new lastcum set lastcum=$get(@vals@("sippy")) "RTN","SAMIUR2",389,0) set @PYARY@("rpt",1,3)=lastcum ; Pack Years "RTN","SAMIUR2",390,0) set @PYARY@("rpt",1,4)=lastcum ; Cumulative "RTN","SAMIUR2",391,0) ; "RTN","SAMIUR2",392,0) new lastdt set lastdt=keydate "RTN","SAMIUR2",393,0) new rptcnt set rptcnt=1 "RTN","SAMIUR2",394,0) new zi set zi="" "RTN","SAMIUR2",395,0) for do quit:zi="" ; "RTN","SAMIUR2",396,0) . set zi=$order(items("type","vapals:fuform",zi)) "RTN","SAMIUR2",397,0) . quit:zi="" "RTN","SAMIUR2",398,0) . ; "RTN","SAMIUR2",399,0) . set rptcnt=rptcnt+1 "RTN","SAMIUR2",400,0) . set @PYARY@("rpt",rptcnt,1)="Follow-up" "RTN","SAMIUR2",401,0) . new kdate set kdate=$$GETDTKEY^SAMICAS2(zi) "RTN","SAMIUR2",402,0) . new keydate set keydate=$$KEY2DSPD^SAMICAS2(kdate) "RTN","SAMIUR2",403,0) . set @PYARY@("rpt",rptcnt,2)=keydate ; Reported Date "RTN","SAMIUR2",404,0) . ; "RTN","SAMIUR2",405,0) . set vals=$name(@root@("graph",sid,zi)) "RTN","SAMIUR2",406,0) . new newpd set newpd=$g(@vals@("sippd")) "RTN","SAMIUR2",407,0) . new usedate set usedate=keydate "RTN","SAMIUR2",408,0) . new siq set siq=$get(@vals@("siq")) ; quit date on followup form "RTN","SAMIUR2",409,0) . if siq'="" do ; quit date provided "RTN","SAMIUR2",410,0) . . quit:$$FMDT(siq)<$$FMDT(lastdt) ; quit date out of range "RTN","SAMIUR2",411,0) . . quit:$$FMDT(siq)>$$FMDT(keydate) ; quit date out of range "RTN","SAMIUR2",412,0) . . set usedate=siq ; use the quit date as end of range "RTN","SAMIUR2",413,0) . . quit "RTN","SAMIUR2",414,0) . new newpy set newpy=$$PKYDT(lastdt,usedate,newpd) "RTN","SAMIUR2",415,0) . set @vals@("sippy")=newpy "RTN","SAMIUR2",416,0) . ; "RTN","SAMIUR2",417,0) . set ^gpl("current","KEY")=$get(KEY) "RTN","SAMIUR2",418,0) . set ^gpl("current","zi")=zi "RTN","SAMIUR2",419,0) . if zi=$get(KEY) do "RTN","SAMIUR2",420,0) . . set @PYARY@("current")=rptcnt ;this row is the current form "RTN","SAMIUR2",421,0) . . quit "RTN","SAMIUR2",422,0) . ; "RTN","SAMIUR2",423,0) . new newcum set newcum="" "RTN","SAMIUR2",424,0) . if newpy'="" set newcum=lastcum+newpy "RTN","SAMIUR2",425,0) . set @PYARY@("rpt",rptcnt,3)=newpy ; Pack Years "RTN","SAMIUR2",426,0) . set @PYARY@("rpt",rptcnt,4)=newcum ; Cumulative "RTN","SAMIUR2",427,0) . set lastdt=keydate "RTN","SAMIUR2",428,0) . set lastcum=newcum "RTN","SAMIUR2",429,0) . quit "RTN","SAMIUR2",430,0) ; "RTN","SAMIUR2",431,0) quit ; end of ppi CUMPY^SAMIUR2 "RTN","SAMIUR2",432,0) ; "RTN","SAMIUR2",433,0) ; "RTN","SAMIUR2",434,0) ; "RTN","SAMIUR2",435,0) TDDT(ZDT) ; embed date in table cell "RTN","SAMIUR2",436,0) ; "RTN","SAMIUR2",437,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",438,0) ;@called-by "RTN","SAMIUR2",439,0) ; BLINEDT "RTN","SAMIUR2",440,0) ; DOB "RTN","SAMIUR2",441,0) ; FUDATE "RTN","SAMIUR2",442,0) ; LASTEXM "RTN","SAMIUR2",443,0) ; INACTDT "RTN","SAMIUR2",444,0) ; LDOC "RTN","SAMIUR2",445,0) ; STUDYDT "RTN","SAMIUR2",446,0) ;@calls "RTN","SAMIUR2",447,0) ; ^%DT "RTN","SAMIUR2",448,0) ; "RTN","SAMIUR2",449,0) new X,Y,Z "RTN","SAMIUR2",450,0) set X=ZDT "RTN","SAMIUR2",451,0) do ^%DT "RTN","SAMIUR2",452,0) if Y=-1 set Y="" "RTN","SAMIUR2",453,0) set Z=$$VAPALSDT^SAMICASE(Y) "RTN","SAMIUR2",454,0) new cell "RTN","SAMIUR2",455,0) set cell="<td data-order="""_Y_""" data-search="""_Z_""">"_Z_"</td>" "RTN","SAMIUR2",456,0) ; "RTN","SAMIUR2",457,0) quit cell ; end of $$TDDT "RTN","SAMIUR2",458,0) ; "RTN","SAMIUR2",459,0) ; "RTN","SAMIUR2",460,0) ; "RTN","SAMIUR2",461,0) FMDT(ZDT) ; convert date to fileman format "RTN","SAMIUR2",462,0) ; "RTN","SAMIUR2",463,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",464,0) ;@called-by "RTN","SAMIUR2",465,0) ; MKPTLK^SAMIHOM4 "RTN","SAMIUR2",466,0) ; $$PKYDT "RTN","SAMIUR2",467,0) ; CUMPY "RTN","SAMIUR2",468,0) ;@calls "RTN","SAMIUR2",469,0) ; ^%DT "RTN","SAMIUR2",470,0) ; "RTN","SAMIUR2",471,0) new Y "RTN","SAMIUR2",472,0) new X set X=ZDT "RTN","SAMIUR2",473,0) do ^%DT "RTN","SAMIUR2",474,0) ; "RTN","SAMIUR2",475,0) quit Y ; end of ppi $$FMDT^SAMIUR2 "RTN","SAMIUR2",476,0) ; "RTN","SAMIUR2",477,0) ; "RTN","SAMIUR2",478,0) ; "RTN","SAMIUR2",479,0) PKYDT(STDT,ENDT,PKS,CIGS) ; pack-years from start & end & cigs/day "RTN","SAMIUR2",480,0) ; "RTN","SAMIUR2",481,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",482,0) ;@called-by "RTN","SAMIUR2",483,0) ; CUMPY "RTN","SAMIUR2",484,0) ;@calls "RTN","SAMIUR2",485,0) ; $$FMDT "RTN","SAMIUR2",486,0) ; $$FMDIFF^XLFDT "RTN","SAMIUR2",487,0) ; $$PKY "RTN","SAMIUR2",488,0) ; "RTN","SAMIUR2",489,0) ; if PKS is not provided, 20/CIGS will be used for packs per day "RTN","SAMIUR2",490,0) ; "RTN","SAMIUR2",491,0) new pkyr set pkyr="" "RTN","SAMIUR2",492,0) if $get(PKS)="" do ; "RTN","SAMIUR2",493,0) . if $get(CIGS)="" set PKS=0 quit ; "RTN","SAMIUR2",494,0) . set PKS=20/CIGS "RTN","SAMIUR2",495,0) . quit "RTN","SAMIUR2",496,0) new zst set zst=$$FMDT(STDT) "RTN","SAMIUR2",497,0) set:zst=-1 zst=STDT "RTN","SAMIUR2",498,0) ; "RTN","SAMIUR2",499,0) new zend set zend=$$FMDT(ENDT) "RTN","SAMIUR2",500,0) set:zend=-1 zend=ENDT ; probably a fileman date already "RTN","SAMIUR2",501,0) ; "RTN","SAMIUR2",502,0) new zdif set zdif=$$FMDIFF^XLFDT(zend,zst)/365.24 "RTN","SAMIUR2",503,0) ; "RTN","SAMIUR2",504,0) set pkyr=$$PKY(zdif,PKS) "RTN","SAMIUR2",505,0) ; "RTN","SAMIUR2",506,0) quit pkyr ; end of $$PKYDT "RTN","SAMIUR2",507,0) ; "RTN","SAMIUR2",508,0) ; "RTN","SAMIUR2",509,0) ; "RTN","SAMIUR2",510,0) PKY(YRS,PKS) ; pack-years from years & packs/day "RTN","SAMIUR2",511,0) ; "RTN","SAMIUR2",512,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",513,0) ;@called-by "RTN","SAMIUR2",514,0) ; $$PKYDT "RTN","SAMIUR2",515,0) ;@calls none "RTN","SAMIUR2",516,0) ;@input "RTN","SAMIUR2",517,0) ; YRS = years "RTN","SAMIUR2",518,0) ; PKS = packs/day "RTN","SAMIUR2",519,0) ; "RTN","SAMIUR2",520,0) new rtn set rtn="" "RTN","SAMIUR2",521,0) set rtn=YRS*PKS "RTN","SAMIUR2",522,0) if $length($piece(rtn,".",2))>2 do ; "RTN","SAMIUR2",523,0) . new zdec set zdec=$piece(rtn,".",2) "RTN","SAMIUR2",524,0) . set rtn=$piece(rtn,".",1)_"."_$extract(zdec,1,2) "RTN","SAMIUR2",525,0) . if $extract(zdec,3)>4 set rtn=rtn+.01 "RTN","SAMIUR2",526,0) . quit "RTN","SAMIUR2",527,0) set:rtn'["." rtn=rtn_".0" "RTN","SAMIUR2",528,0) ; "RTN","SAMIUR2",529,0) quit rtn ; end of $$PKY "RTN","SAMIUR2",530,0) ; "RTN","SAMIUR2",531,0) ; "RTN","SAMIUR2",532,0) ; "RTN","SAMIUR2",533,0) ;@section 4 active column ppis "RTN","SAMIUR2",534,0) ; "RTN","SAMIUR2",535,0) ; "RTN","SAMIUR2",536,0) ; "RTN","SAMIUR2",537,0) ACTIVE(zdt,dfn,SAMIPATS) ; Active/Inactive column "RTN","SAMIUR2",538,0) ; "RTN","SAMIUR2",539,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",540,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",541,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",542,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",543,0) new active set active="inactive" "RTN","SAMIUR2",544,0) if $get(@vals@("sistatus"))="active" set active="active" "RTN","SAMIUR2",545,0) ; "RTN","SAMIUR2",546,0) quit active "RTN","SAMIUR2",547,0) ; "RTN","SAMIUR2",548,0) AFORM(zdt,dfn,SAMIPATS) ; Name of most recent form "RTN","SAMIUR2",549,0) Q $GET(SAMIPATS(zdt,dfn,"aform")) "RTN","SAMIUR2",550,0) ; "RTN","SAMIUR2",551,0) AFORMDT(zdt,dfn,SAMIPATS) ; Date of most recent form "RTN","SAMIUR2",552,0) N ZD S ZD=$GET(SAMIPATS(zdt,dfn,"aformdt")) "RTN","SAMIUR2",553,0) Q $$VAPALSDT^SAMICASE(ZD) "RTN","SAMIUR2",554,0) ; "RTN","SAMIUR2",555,0) AGE(zdt,dfn,SAMIPATS) ; age "RTN","SAMIUR2",556,0) ; "RTN","SAMIUR2",557,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",558,0) ;@called-by "RTN","SAMIUR2",559,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",560,0) ;@calls "RTN","SAMIUR2",561,0) ; $$setroot^%wd "RTN","SAMIUR2",562,0) ; ^%DT "RTN","SAMIUR2",563,0) ; $$NOW^XLFDT "RTN","SAMIUR2",564,0) ; $$FMDIFF^XLFDT "RTN","SAMIUR2",565,0) ; "RTN","SAMIUR2",566,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",567,0) new dob set dob=$get(@root@(dfn,"sbdob")) ; dob in VAPALS format "RTN","SAMIUR2",568,0) ; "RTN","SAMIUR2",569,0) new Y "RTN","SAMIUR2",570,0) new X set X=dob "RTN","SAMIUR2",571,0) do ^%DT "RTN","SAMIUR2",572,0) ; "RTN","SAMIUR2",573,0) new age set age=$piece($$FMDIFF^XLFDT($$NOW^XLFDT,Y)/365,".") "RTN","SAMIUR2",574,0) ; "RTN","SAMIUR2",575,0) quit age ; end of ppi $$AGE^SAMIUR2 "RTN","SAMIUR2",576,0) ; "RTN","SAMIUR2",577,0) ; "RTN","SAMIUR2",578,0) ; "RTN","SAMIUR2",579,0) ENROLLDT(zdt,dfn,SAMIPATS) ; enrollment date "RTN","SAMIUR2",580,0) ; "RTN","SAMIUR2",581,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",582,0) ;@called-by "RTN","SAMIUR2",583,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",584,0) ;@calls "RTN","SAMIUR2",585,0) ; $$TDDT "RTN","SAMIUR2",586,0) ; "RTN","SAMIUR2",587,0) new enroldt set enroldt=$get(SAMIPATS(zdt,dfn,"edate")) "RTN","SAMIUR2",588,0) ; "RTN","SAMIUR2",589,0) quit $$TDDT(enroldt) ; end of ppi $$ENROLLDT^SAMIUR2 "RTN","SAMIUR2",590,0) ; "RTN","SAMIUR2",591,0) ; "RTN","SAMIUR2",592,0) BLINEDT(zdt,dfn,SAMIPATS) ; baseline date "RTN","SAMIUR2",593,0) ; "RTN","SAMIUR2",594,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",595,0) ;@called-by "RTN","SAMIUR2",596,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",597,0) ;@calls "RTN","SAMIUR2",598,0) ; $$TDDT "RTN","SAMIUR2",599,0) ; "RTN","SAMIUR2",600,0) new bldt set bldt=$get(SAMIPATS(zdt,dfn,"baseline")) "RTN","SAMIUR2",601,0) ; "RTN","SAMIUR2",602,0) quit $$TDDT(bldt) ; end of ppi $$BLINEDT^SAMIUR2 "RTN","SAMIUR2",603,0) ; "RTN","SAMIUR2",604,0) ; "RTN","SAMIUR2",605,0) CONTACT(zdt,dfn,SAMIPATS) ; patient street address "RTN","SAMIUR2",606,0) ; "RTN","SAMIUR2",607,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",608,0) ;@called-by "RTN","SAMIUR2",609,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",610,0) ;@calls "RTN","SAMIUR2",611,0) ; $$setroot^%wd "RTN","SAMIUR2",612,0) ; "RTN","SAMIUR2",613,0) new contact set contact="" "RTN","SAMIUR2",614,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",615,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",616,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",617,0) q:siform="" "RTN","SAMIUR2",618,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",619,0) set contact=$get(@vals@("sinamef"))_" "_$get(@vals@("sinamel")) "RTN","SAMIUR2",620,0) set contact=contact_"<br>"_$get(@vals@("sipsa")) "RTN","SAMIUR2",621,0) if $get(@vals@("sipan"))'="" do "RTN","SAMIUR2",622,0) . set contact=contact_" Apt "_$get(@vals@("sipan")) "RTN","SAMIUR2",623,0) . quit "RTN","SAMIUR2",624,0) if $get(@vals@("sipcn"))'="" do "RTN","SAMIUR2",625,0) . set contact=contact_"<br>County "_@vals@("sipcn") "RTN","SAMIUR2",626,0) . quit "RTN","SAMIUR2",627,0) if $get(@vals@("sipc"))'="" do "RTN","SAMIUR2",628,0) . set contact=contact_" <br>"_@vals@("sipc")_", " "RTN","SAMIUR2",629,0) . quit "RTN","SAMIUR2",630,0) set contact=contact_" "_$get(@vals@("sips"))_" "_$get(@vals@("sipz"))_" " "RTN","SAMIUR2",631,0) ; "RTN","SAMIUR2",632,0) new phone set phone=$get(@vals@("sippn")) "RTN","SAMIUR2",633,0) if phone'="" set contact=contact_" <br>Phone: "_phone "RTN","SAMIUR2",634,0) ; "RTN","SAMIUR2",635,0) quit contact ; end of ppi $$CONTACT^SAMIUR2 "RTN","SAMIUR2",636,0) ; "RTN","SAMIUR2",637,0) ; "RTN","SAMIUR2",638,0) ; "RTN","SAMIUR2",639,0) CTPROT(zdt,dfn,SAMIPATS) ; ct protocol "RTN","SAMIUR2",640,0) ; "RTN","SAMIUR2",641,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",642,0) ;@called-by "RTN","SAMIUR2",643,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",644,0) ;@calls "RTN","SAMIUR2",645,0) ; $$setroot^%wd "RTN","SAMIUR2",646,0) ; "RTN","SAMIUR2",647,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",648,0) new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform")) "RTN","SAMIUR2",649,0) quit:ceform="" "" "RTN","SAMIUR2",650,0) ; "RTN","SAMIUR2",651,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",652,0) new vals set vals=$name(@root@("graph",sid,ceform)) "RTN","SAMIUR2",653,0) new cectp set cectp=$get(@vals@("cectp")) "RTN","SAMIUR2",654,0) new ctyp set ctyp=$select(cectp="l":"Low-Dose CT",cectp="d":"Standard CT",cectp="i":"Limited",1:"") "RTN","SAMIUR2",655,0) ; "RTN","SAMIUR2",656,0) quit ctyp ; end of ppi $$CTPROT^SAMIUR2 "RTN","SAMIUR2",657,0) ; "RTN","SAMIUR2",658,0) ; "RTN","SAMIUR2",659,0) ; "RTN","SAMIUR2",660,0) DOB(ien,dfn,SAMIPATS) ; date of birth "RTN","SAMIUR2",661,0) ; "RTN","SAMIUR2",662,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",663,0) ;@called-by "RTN","SAMIUR2",664,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",665,0) ;@calls "RTN","SAMIUR2",666,0) ; $$TDDT "RTN","SAMIUR2",667,0) ; "RTN","SAMIUR2",668,0) new dob set dob=$get(SAMIPATS(ien,dfn,"dob")) "RTN","SAMIUR2",669,0) if dob="" set dob=$get(SAMIPATS(ien,dfn,"sbdob")) "RTN","SAMIUR2",670,0) ; "RTN","SAMIUR2",671,0) quit $$TDDT(dob) ; end of ppi $$DOB^SAMIUR2 "RTN","SAMIUR2",672,0) ; "RTN","SAMIUR2",673,0) ; "RTN","SAMIUR2",674,0) ; "RTN","SAMIUR2",675,0) FUDATE(zdt,dfn,SAMIPATS) ; followup date "RTN","SAMIUR2",676,0) ; "RTN","SAMIUR2",677,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",678,0) ;@called-by "RTN","SAMIUR2",679,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",680,0) ;@calls "RTN","SAMIUR2",681,0) ; $TDDT "RTN","SAMIUR2",682,0) ; "RTN","SAMIUR2",683,0) new fud set fud="fudate" "RTN","SAMIUR2",684,0) new date set date=$get(SAMIPATS(zdt,dfn,"cefud")) "RTN","SAMIUR2",685,0) ; "RTN","SAMIUR2",686,0) quit $$TDDT(date) ; end of ppi $$FUDATE^SAMIUR2 "RTN","SAMIUR2",687,0) ; "RTN","SAMIUR2",688,0) ; "RTN","SAMIUR2",689,0) ; "RTN","SAMIUR2",690,0) GENDER(zdt,dfn,SAMIPATS) ; gender "RTN","SAMIUR2",691,0) ; "RTN","SAMIUR2",692,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",693,0) ;@called-by "RTN","SAMIUR2",694,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",695,0) ;@calls "RTN","SAMIUR2",696,0) ; $$setroot^%wd "RTN","SAMIUR2",697,0) ; "RTN","SAMIUR2",698,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",699,0) new lroot set lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIUR2",700,0) ; "RTN","SAMIUR2",701,0) new gend set gend=$get(SAMIPATS(zdt,dfn,"gender")) "RTN","SAMIUR2",702,0) if gend="" do "RTN","SAMIUR2",703,0) . new pien set pien=$order(@root@("dfn",dfn,"")) "RTN","SAMIUR2",704,0) . if pien'="" do ; "RTN","SAMIUR2",705,0) . . set gend=$get(@root@(pien,"sex")) "RTN","SAMIUR2",706,0) . . if gend="" set gend=$get(@root@(pien,"gender")) "RTN","SAMIUR2",707,0) . . quit "RTN","SAMIUR2",708,0) . if gend="" do ; "RTN","SAMIUR2",709,0) . . new lien set lien=$order(@lroot@("dfn",dfn,"")) "RTN","SAMIUR2",710,0) . . set gend=$get(@lroot@(lien,"gender")) "RTN","SAMIUR2",711,0) . . quit "RTN","SAMIUR2",712,0) if gend["^" set gend=$piece(gend,"^",1) "RTN","SAMIUR2",713,0) ; "RTN","SAMIUR2",714,0) quit gend ; end of ppi $$GENDER^SAMIUR2 "RTN","SAMIUR2",715,0) ; "RTN","SAMIUR2",716,0) ; "RTN","SAMIUR2",717,0) ; "RTN","SAMIUR2",718,0) IFORM(zdt,dfn,SAMIPATS) ; name(s) of incomplete forms "RTN","SAMIUR2",719,0) ; "RTN","SAMIUR2",720,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",721,0) ;@called-by "RTN","SAMIUR2",722,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",723,0) ;@calls "RTN","SAMIUR2",724,0) ; $$DFN2SID^SAMIUR2 "RTN","SAMIUR2",725,0) ; $$KEY2FM^SAMICASE "RTN","SAMIUR2",726,0) ; $$VAPALSDT^SAMICASE "RTN","SAMIUR2",727,0) ; $$MKNAV "RTN","SAMIUR2",728,0) ; "RTN","SAMIUR2",729,0) new iform set iform=$get(SAMIPATS(zdt,dfn,"iform")) "RTN","SAMIUR2",730,0) quit:iform="" "" ; "RTN","SAMIUR2",731,0) ; "RTN","SAMIUR2",732,0) new zkey1,zn,typ "RTN","SAMIUR2",733,0) new return set return="<table>" "RTN","SAMIUR2",734,0) for zn=2:1 quit:$piece(iform," ",zn)="" do ; "RTN","SAMIUR2",735,0) . set return=return_"<tr><td>" "RTN","SAMIUR2",736,0) . set zkey1=$piece(iform," ",zn) "RTN","SAMIUR2",737,0) . ; "RTN","SAMIUR2",738,0) . new fname "RTN","SAMIUR2",739,0) . if zkey1["ceform" set fname="CT Evaluation" set typ="ceform" "RTN","SAMIUR2",740,0) . if zkey1["sbform" set fname="Background" set typ="sbform" "RTN","SAMIUR2",741,0) . if zkey1["fuform" set fname="Participant Follow-up" set typ="fuform" "RTN","SAMIUR2",742,0) . if zkey1["bxform" set fname="Biopsy" set typ="bxform" "RTN","SAMIUR2",743,0) . if zkey1["ptform" set fname="PET Evaluation" set typ="ptform" "RTN","SAMIUR2",744,0) . if zkey1["itform" set fname="Intervention" set typ="itform" "RTN","SAMIUR2",745,0) . if zkey1["siform" set fname="Intake Form" set typ="siform" "RTN","SAMIUR2",746,0) . if $get(fname)="" set fname="unknown" set typ="" "RTN","SAMIUR2",747,0) . ; "RTN","SAMIUR2",748,0) . new sid set sid=$$DFN2SID^SAMIUR2(dfn) "RTN","SAMIUR2",749,0) . new zdate set zdate=$$VAPALSDT^SAMICASE($$KEY2FM^SAMICASE(zkey1)) "RTN","SAMIUR2",750,0) . set return=return_$$MKNAV(sid,zkey1,fname_" - "_zdate,typ) "RTN","SAMIUR2",751,0) . set return=return_"</td></tr>" "RTN","SAMIUR2",752,0) . quit "RTN","SAMIUR2",753,0) ; "RTN","SAMIUR2",754,0) set return=return_"</table>" "RTN","SAMIUR2",755,0) ; "RTN","SAMIUR2",756,0) quit return ; end of ppi $$IFORM^SAMIUR2 "RTN","SAMIUR2",757,0) ; "RTN","SAMIUR2",758,0) ; "RTN","SAMIUR2",759,0) ; "RTN","SAMIUR2",760,0) LASTEXM(zdt,dfn,SAMIPATS) ; patient last exam "RTN","SAMIUR2",761,0) ; "RTN","SAMIUR2",762,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",763,0) ;@called-by "RTN","SAMIUR2",764,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",765,0) ;@calls "RTN","SAMIUR2",766,0) ; $$TDDT "RTN","SAMIUR2",767,0) ; "RTN","SAMIUR2",768,0) new lexm set lexm=$get(SAMIPATS(zdt,dfn,"cedos")) "RTN","SAMIUR2",769,0) ; "RTN","SAMIUR2",770,0) quit $$TDDT(lexm) ; end of ppi $$LASTEXM^SAMIUR2 "RTN","SAMIUR2",771,0) ; "RTN","SAMIUR2",772,0) ; "RTN","SAMIUR2",773,0) ; "RTN","SAMIUR2",774,0) INACTDT(zdt,dfn,SAMIPATS) ; inactive date "RTN","SAMIUR2",775,0) ; "RTN","SAMIUR2",776,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",777,0) ;@called-by "RTN","SAMIUR2",778,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",779,0) ;@calls "RTN","SAMIUR2",780,0) ; $$setroot^%wd "RTN","SAMIUR2",781,0) ; $$TDDT "RTN","SAMIUR2",782,0) ; "RTN","SAMIUR2",783,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",784,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",785,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",786,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",787,0) ; "RTN","SAMIUR2",788,0) quit $$TDDT($get(@vals@("sidod"))) "RTN","SAMIUR2",789,0) ; "RTN","SAMIUR2",790,0) ; "RTN","SAMIUR2",791,0) ; "RTN","SAMIUR2",792,0) INACTRE(zdt,dfn,SAMIPATS) ; inactive date "RTN","SAMIUR2",793,0) ; "RTN","SAMIUR2",794,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",795,0) ;@called-by "RTN","SAMIUR2",796,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",797,0) ;@calls "RTN","SAMIUR2",798,0) ; $$setroot^%wd "RTN","SAMIUR2",799,0) ; "RTN","SAMIUR2",800,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",801,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",802,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",803,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",804,0) ; "RTN","SAMIUR2",805,0) quit $get(@vals@("sistachg")) "RTN","SAMIUR2",806,0) ; "RTN","SAMIUR2",807,0) ; "RTN","SAMIUR2",808,0) ; "RTN","SAMIUR2",809,0) INACTCM(zdt,dfn,SAMIPATS) ; inactive date "RTN","SAMIUR2",810,0) ; "RTN","SAMIUR2",811,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",812,0) ;@called-by "RTN","SAMIUR2",813,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",814,0) ;@calls "RTN","SAMIUR2",815,0) ; $$setroot^%wd "RTN","SAMIUR2",816,0) ; "RTN","SAMIUR2",817,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",818,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",819,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",820,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",821,0) ; "RTN","SAMIUR2",822,0) quit $get(@vals@("sistreas")) "RTN","SAMIUR2",823,0) ; "RTN","SAMIUR2",824,0) ; "RTN","SAMIUR2",825,0) ; "RTN","SAMIUR2",826,0) LDE(zdt,dfn,SAMIPATS) ; last date and entry in com log "RTN","SAMIUR2",827,0) ; "RTN","SAMIUR2",828,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",829,0) ;@called-by "RTN","SAMIUR2",830,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",831,0) ;@calls "RTN","SAMIUR2",832,0) ; $$setroot^%wd "RTN","SAMIUR2",833,0) ; "RTN","SAMIUR2",834,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",835,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",836,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",837,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",838,0) ; "RTN","SAMIUR2",839,0) n comien,comdt,comntry "RTN","SAMIUR2",840,0) s (comdt,comntry)="" "RTN","SAMIUR2",841,0) s comien=$o(@vals@("comlog"," "),-1) "RTN","SAMIUR2",842,0) i comien="" d q comdt "RTN","SAMIUR2",843,0) . s comdt=$g(@vals@("sidc")) "RTN","SAMIUR2",844,0) s comntry=$g(@vals@("comlog",comien)) "RTN","SAMIUR2",845,0) s comdt=$p($p(comntry,"[",2),"@",1) "RTN","SAMIUR2",846,0) ; "RTN","SAMIUR2",847,0) quit comdt_"^"_comntry "RTN","SAMIUR2",848,0) ; "RTN","SAMIUR2",849,0) ; "RTN","SAMIUR2",850,0) ; "RTN","SAMIUR2",851,0) LDOC(zdt,dfn,SAMIPATS) ; last date of contact "RTN","SAMIUR2",852,0) ; "RTN","SAMIUR2",853,0) quit $$TDDT($piece($$LDE(zdt,dfn,.SAMIPATS),"^",1)) "RTN","SAMIUR2",854,0) ; "RTN","SAMIUR2",855,0) ; "RTN","SAMIUR2",856,0) ; "RTN","SAMIUR2",857,0) LENTRY(zdt,dfn,SAMIPATS) ; last contact entry "RTN","SAMIUR2",858,0) ; "RTN","SAMIUR2",859,0) quit $piece($$LDE(zdt,dfn,.SAMIPATS),"^",2) "RTN","SAMIUR2",860,0) ; "RTN","SAMIUR2",861,0) ; "RTN","SAMIUR2",862,0) ; "RTN","SAMIUR2",863,0) MANPAT(ien,dfn,SAMIPATS) ; unmatched patient cell "RTN","SAMIUR2",864,0) ; "RTN","SAMIUR2",865,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",866,0) ;@called-by "RTN","SAMIUR2",867,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",868,0) ;@calls "RTN","SAMIUR2",869,0) ; $$setroot^%wd "RTN","SAMIUR2",870,0) ; "RTN","SAMIUR2",871,0) new zcell set zcell="" "RTN","SAMIUR2",872,0) ; set zcell=zcell_$get(SAMIPATS(ien,dfn,"saminame")) "RTN","SAMIUR2",873,0) set zcell=zcell_$get(SAMIPATS(ien,dfn,"editref")) "RTN","SAMIUR2",874,0) set zcell=zcell_"<br>Date of Birth: "_$get(SAMIPATS(ien,dfn,"dob")) "RTN","SAMIUR2",875,0) set zcell=zcell_" Gender: "_$get(SAMIPATS(ien,dfn,"sex")) "RTN","SAMIUR2",876,0) ; "RTN","SAMIUR2",877,0) new ssn set ssn=$get(SAMIPATS(ien,dfn,"ssn")) "RTN","SAMIUR2",878,0) if ssn="" do ; "RTN","SAMIUR2",879,0) . new lroot set lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIUR2",880,0) . new tssn set tssn=$get(@lroot@(ien,"ssn")) "RTN","SAMIUR2",881,0) . set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9) "RTN","SAMIUR2",882,0) . quit "RTN","SAMIUR2",883,0) set zcell=zcell_"<br>SSN: "_ssn "RTN","SAMIUR2",884,0) ; "RTN","SAMIUR2",885,0) set zcell=zcell_"<br>dfn: "_dfn "RTN","SAMIUR2",886,0) ; "RTN","SAMIUR2",887,0) quit zcell ; end of ppi $$MANPAT^SAMIUR2 "RTN","SAMIUR2",888,0) ; "RTN","SAMIUR2",889,0) ; "RTN","SAMIUR2",890,0) ; "RTN","SAMIUR2",891,0) MATCH(ien,dfn,SAMIPATS) ; match button cell "RTN","SAMIUR2",892,0) ; "RTN","SAMIUR2",893,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",894,0) ;@called-by "RTN","SAMIUR2",895,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",896,0) ;@calls none "RTN","SAMIUR2",897,0) ; "RTN","SAMIUR2",898,0) new matien set matien=$get(SAMIPATS(ien,dfn,"MATCHLOG")) "RTN","SAMIUR2",899,0) quit:matien="" "" "RTN","SAMIUR2",900,0) ; "RTN","SAMIUR2",901,0) new nuhref set nuhref="<form method=POST action=""/vapals"">" "RTN","SAMIUR2",902,0) set nuhref=nuhref_"<input type=hidden name=""samiroute"" value=""merge"">" "RTN","SAMIUR2",903,0) set nuhref=nuhref_"<input type=hidden name=""toien"" value="_ien_">" "RTN","SAMIUR2",904,0) set nuhref=nuhref_"<input value=""Merge"" class=""btn btn-link"" role=""link"" type=""submit""></form>" "RTN","SAMIUR2",905,0) ; "RTN","SAMIUR2",906,0) quit nuhref ; end of ppi $$MATCH^SAMIUR2 "RTN","SAMIUR2",907,0) ; "RTN","SAMIUR2",908,0) ; "RTN","SAMIUR2",909,0) ; "RTN","SAMIUR2",910,0) NAME(zdt,dfn,SAMIPATS) ; name w/hyperlink "RTN","SAMIUR2",911,0) ; "RTN","SAMIUR2",912,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",913,0) ;@called-by "RTN","SAMIUR2",914,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",915,0) ;@calls none "RTN","SAMIUR2",916,0) ; "RTN","SAMIUR2",917,0) new nam set nam="Name" "RTN","SAMIUR2",918,0) ; "RTN","SAMIUR2",919,0) quit $get(SAMIPATS(zdt,dfn,"nuhref")) ; end of ppi $$NAME^SAMIUR2 "RTN","SAMIUR2",920,0) ; "RTN","SAMIUR2",921,0) ; "RTN","SAMIUR2",922,0) ; "RTN","SAMIUR2",923,0) PACKYRS(zdt,dfn,SAMIPATS) ; smoking status "RTN","SAMIUR2",924,0) ; "RTN","SAMIUR2",925,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",926,0) ;@called-by "RTN","SAMIUR2",927,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",928,0) ;@calls "RTN","SAMIUR2",929,0) ; $$setroot^%wd "RTN","SAMIUR2",930,0) ; "RTN","SAMIUR2",931,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",932,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",933,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",934,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",935,0) new pkyrs set pkyrs=$get(@vals@("sippy")) "RTN","SAMIUR2",936,0) ; "RTN","SAMIUR2",937,0) quit pkyrs ; end of ppi $$PACKYRS^SAMIUR2 "RTN","SAMIUR2",938,0) ; "RTN","SAMIUR2",939,0) ; "RTN","SAMIUR2",940,0) ; "RTN","SAMIUR2",941,0) POSSIBLE(ien,dfn,SAMIPATS) ; possible match cell "RTN","SAMIUR2",942,0) ; "RTN","SAMIUR2",943,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",944,0) ;@called-by "RTN","SAMIUR2",945,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",946,0) ;@calls "RTN","SAMIUR2",947,0) ; $$setroot^%wd "RTN","SAMIUR2",948,0) ; "RTN","SAMIUR2",949,0) new zcell set zcell="" "RTN","SAMIUR2",950,0) new matien set matien=$get(SAMIPATS(ien,dfn,"MATCHLOG")) "RTN","SAMIUR2",951,0) quit:matien="" zcell "RTN","SAMIUR2",952,0) ; "RTN","SAMIUR2",953,0) new lroot set lroot=$$setroot^%wd("patient-lookup") "RTN","SAMIUR2",954,0) quit:'$data(@lroot@(matien)) zcell "RTN","SAMIUR2",955,0) ; "RTN","SAMIUR2",956,0) set zcell=zcell_$get(@lroot@(matien,"saminame")) "RTN","SAMIUR2",957,0) set zcell=zcell_"<br>Date of Birth: "_$get(@lroot@(matien,"sbdob")) "RTN","SAMIUR2",958,0) set zcell=zcell_" Gender: "_$get(@lroot@(matien,"sex")) "RTN","SAMIUR2",959,0) ; "RTN","SAMIUR2",960,0) new tssn set tssn=$get(@lroot@(matien,"ssn")) "RTN","SAMIUR2",961,0) new ssn set ssn=tssn "RTN","SAMIUR2",962,0) if tssn'["-" set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9) "RTN","SAMIUR2",963,0) set zcell=zcell_"<br>SSN: "_ssn "RTN","SAMIUR2",964,0) ; "RTN","SAMIUR2",965,0) set zcell=zcell_"<br>dfn: "_$get(@lroot@(matien,"dfn")) "RTN","SAMIUR2",966,0) ; "RTN","SAMIUR2",967,0) quit zcell ; end of ppi $$POSSIBLE^SAMIUR2 "RTN","SAMIUR2",968,0) ; "RTN","SAMIUR2",969,0) ; "RTN","SAMIUR2",970,0) ; "RTN","SAMIUR2",971,0) RECOM(zdt,dfn,SAMIPATS) ; recommendation "RTN","SAMIUR2",972,0) ; "RTN","SAMIUR2",973,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",974,0) ;@called-by "RTN","SAMIUR2",975,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",976,0) ;@calls "RTN","SAMIUR2",977,0) ; $$setroot^%wd "RTN","SAMIUR2",978,0) ; "RTN","SAMIUR2",979,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",980,0) new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform")) "RTN","SAMIUR2",981,0) quit:ceform="" "" "RTN","SAMIUR2",982,0) ; "RTN","SAMIUR2",983,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",984,0) new vals set vals=$name(@root@("graph",sid,ceform)) "RTN","SAMIUR2",985,0) new cefuw set cefuw=$get(@vals@("cefuw")) "RTN","SAMIUR2",986,0) ; "RTN","SAMIUR2",987,0) new recom set recom="" "RTN","SAMIUR2",988,0) set recom=$select(cefuw="1y":"Annual Repeat",cefuw="nw":"Now",cefuw="1m":"1 month",cefuw="3m":"3 months",cefuw="6m":"6 months",cefuw="os":"Other",1:"") "RTN","SAMIUR2",989,0) if $get(@vals@("cefuaf"))="y" set recom=recom_", Antibiotics" "RTN","SAMIUR2",990,0) if $get(@vals@("cefucc"))="y" set recom=recom_", Contrast CT" "RTN","SAMIUR2",991,0) if $get(@vals@("cefupe"))="y" set recom=recom_", PET" "RTN","SAMIUR2",992,0) if $get(@vals@("cefufn"))="y" set recom=recom_", Percutaneous biopsy" "RTN","SAMIUR2",993,0) if $get(@vals@("cefubr"))="y" set recom=recom_", Bronchoscopy" "RTN","SAMIUR2",994,0) if $get(@vals@("cefupc"))="y" set recom=recom_", Pulmonary consultation" "RTN","SAMIUR2",995,0) if $get(@vals@("cefutb"))="y" set recom=recom_", Refer to tumor board" "RTN","SAMIUR2",996,0) if $get(@vals@("cefunf"))="y" set recom=recom_", No other further follow-up" "RTN","SAMIUR2",997,0) if $extract(recom,1,2)=", " set recom=$extract(recom,3,$length(recom)) "RTN","SAMIUR2",998,0) ; "RTN","SAMIUR2",999,0) quit recom ; end of ppi $$RECOM^SAMIUR2 "RTN","SAMIUR2",1000,0) ; "RTN","SAMIUR2",1001,0) ; "RTN","SAMIUR2",1002,0) ; "RTN","SAMIUR2",1003,0) RURAL(zdt,dfn,SAMIPATS) ; patient's rural/urban status "RTN","SAMIUR2",1004,0) ; "RTN","SAMIUR2",1005,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1006,0) ;@called-by "RTN","SAMIUR2",1007,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1008,0) ;@calls "RTN","SAMIUR2",1009,0) ; $$setroot^%wd "RTN","SAMIUR2",1010,0) ; "RTN","SAMIUR2",1011,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1012,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",1013,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",1014,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",1015,0) new sirs set sirs=$get(@vals@("sirs")) "RTN","SAMIUR2",1016,0) set sirs=$select(sirs="r":"rural",sirs="u":"urban",sirs="n":"unknown",1:"unknown") "RTN","SAMIUR2",1017,0) ; "RTN","SAMIUR2",1018,0) quit sirs ; end of ppi $$RURAL^SAMIUR2 "RTN","SAMIUR2",1019,0) ; "RTN","SAMIUR2",1020,0) ; "RTN","SAMIUR2",1021,0) ; "RTN","SAMIUR2",1022,0) SID(zdt,dfn,SAMIPATS) ; study ID "RTN","SAMIUR2",1023,0) ; "RTN","SAMIUR2",1024,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1025,0) ;@called-by "RTN","SAMIUR2",1026,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1027,0) ;@calls "RTN","SAMIUR2",1028,0) ; $$DFN2SID "RTN","SAMIUR2",1029,0) ; "RTN","SAMIUR2",1030,0) quit $$DFN2SID(dfn) ; end of ppi $$SID^SAMIUR2 "RTN","SAMIUR2",1031,0) ; "RTN","SAMIUR2",1032,0) ; "RTN","SAMIUR2",1033,0) ; "RTN","SAMIUR2",1034,0) SMHIS(zdt,dfn,SAMIPATS) ; smoking history cell "RTN","SAMIUR2",1035,0) ; "RTN","SAMIUR2",1036,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1037,0) ;@called-by "RTN","SAMIUR2",1038,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1039,0) ;@calls "RTN","SAMIUR2",1040,0) ; $$DFN2SID "RTN","SAMIUR2",1041,0) ; $$SHDET "RTN","SAMIUR2",1042,0) ; "RTN","SAMIUR2",1043,0) new zrtn set zrtn="" "RTN","SAMIUR2",1044,0) set zrtn=zrtn_"<div class=""row""><div class=""col-md-12""><table class=""table"" id=""pack-years-history"">" "RTN","SAMIUR2",1045,0) set zrtn=zrtn_"<thead><tr><th>Form </th><th> Reported Date </th>" "RTN","SAMIUR2",1046,0) set zrtn=zrtn_"<th>Pack Years</th><th>Cumulative</th></tr></thead><tbody>" "RTN","SAMIUR2",1047,0) set zrtn=zrtn_$$SHDET($$DFN2SID(dfn)) "RTN","SAMIUR2",1048,0) set zrtn=zrtn_"</tbody></table></div></div>" "RTN","SAMIUR2",1049,0) ; "RTN","SAMIUR2",1050,0) quit zrtn ; end of ppi $$SMHIS^SAMIUR2 "RTN","SAMIUR2",1051,0) ; "RTN","SAMIUR2",1052,0) ; "RTN","SAMIUR2",1053,0) ; "RTN","SAMIUR2",1054,0) SMKSTAT(zdt,dfn,SAMIPATS) ; smoking status "RTN","SAMIUR2",1055,0) ; "RTN","SAMIUR2",1056,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1057,0) ;@called-by "RTN","SAMIUR2",1058,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1059,0) ;@calls "RTN","SAMIUR2",1060,0) ; $$setroot^%wd "RTN","SAMIUR2",1061,0) ; "RTN","SAMIUR2",1062,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1063,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",1064,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",1065,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",1066,0) ; "RTN","SAMIUR2",1067,0) new smk set smk="unknown" "RTN","SAMIUR2",1068,0) if $get(@vals@("siesm"))="n" set smk="Never smoked" "RTN","SAMIUR2",1069,0) if $get(@vals@("siesm"))="p" set smk="Past smoker" "RTN","SAMIUR2",1070,0) if $get(@vals@("siesm"))="c" set smk="Current smoker" "RTN","SAMIUR2",1071,0) ; if $get(@vals@("siesq"))=1 set smk="Cu" "RTN","SAMIUR2",1072,0) ; "RTN","SAMIUR2",1073,0) quit smk ; end of ppi $$SMKSTAT^SAMIUR2 "RTN","SAMIUR2",1074,0) ; "RTN","SAMIUR2",1075,0) ; "RTN","SAMIUR2",1076,0) ; "RTN","SAMIUR2",1077,0) SSN(zdt,dfn,SAMIPATS) ; social security number "RTN","SAMIUR2",1078,0) ; "RTN","SAMIUR2",1079,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1080,0) ;@called-by "RTN","SAMIUR2",1081,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1082,0) ;@calls none "RTN","SAMIUR2",1083,0) ; "RTN","SAMIUR2",1084,0) new tssn set tssn=$get(SAMIPATS(zdt,dfn,"ssn")) "RTN","SAMIUR2",1085,0) new ssn set ssn=tssn "RTN","SAMIUR2",1086,0) if ssn'["-" do "RTN","SAMIUR2",1087,0) . set ssn=$extract(tssn,1,3)_"-"_$extract(tssn,4,5)_"-"_$extract(tssn,6,9) "RTN","SAMIUR2",1088,0) . quit "RTN","SAMIUR2",1089,0) ; "RTN","SAMIUR2",1090,0) quit ssn ; end of ppi $$SSN^SAMIUR2 "RTN","SAMIUR2",1091,0) ; "RTN","SAMIUR2",1092,0) ; "RTN","SAMIUR2",1093,0) ; "RTN","SAMIUR2",1094,0) SSNLABEL(SITE) ; extrinsic returns label for SSN (ie PID) "RTN","SAMIUR2",1095,0) new RTN "RTN","SAMIUR2",1096,0) set RTN=$$GET1PARM^SAMIPARM("socialSecurityNumber",SITE) "RTN","SAMIUR2",1097,0) if RTN="" set RTN="SSN" "RTN","SAMIUR2",1098,0) quit RTN "RTN","SAMIUR2",1099,0) ; "RTN","SAMIUR2",1100,0) ; "RTN","SAMIUR2",1101,0) ; "RTN","SAMIUR2",1102,0) STUDYDT(zdt,dfn,SAMIPATS) ; latest study date "RTN","SAMIUR2",1103,0) ; "RTN","SAMIUR2",1104,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1105,0) ;@called-by "RTN","SAMIUR2",1106,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1107,0) ;@calls "RTN","SAMIUR2",1108,0) ; $$TDDT "RTN","SAMIUR2",1109,0) ; "RTN","SAMIUR2",1110,0) new stdt set stdt=$get(SAMIPATS(zdt,dfn,"cedos")) "RTN","SAMIUR2",1111,0) ; "RTN","SAMIUR2",1112,0) quit $$TDDT(stdt) ; end of ppi $$STUDYDT^SAMIUR2 "RTN","SAMIUR2",1113,0) ; "RTN","SAMIUR2",1114,0) ; "RTN","SAMIUR2",1115,0) ; "RTN","SAMIUR2",1116,0) STUDYTYP(zdt,dfn,SAMIPATS) ; latest study type "RTN","SAMIUR2",1117,0) ; "RTN","SAMIUR2",1118,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1119,0) ;@called-by "RTN","SAMIUR2",1120,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1121,0) ;@calls "RTN","SAMIUR2",1122,0) ; $$setroot^%wd "RTN","SAMIUR2",1123,0) ; "RTN","SAMIUR2",1124,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1125,0) new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform")) "RTN","SAMIUR2",1126,0) quit:ceform="" "" "RTN","SAMIUR2",1127,0) ; "RTN","SAMIUR2",1128,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",1129,0) new vals set vals=$name(@root@("graph",sid,ceform)) "RTN","SAMIUR2",1130,0) new stypx set stypx=$get(@vals@("cetex")) "RTN","SAMIUR2",1131,0) new styp set styp=$select(stypx="a":"Annual",stypx="b":"Baseline",stypx="d":"Followup",1:"") "RTN","SAMIUR2",1132,0) ; "RTN","SAMIUR2",1133,0) quit styp ; end of ppi $$STUDYTYP^SAMIUR2 "RTN","SAMIUR2",1134,0) ; "RTN","SAMIUR2",1135,0) ; "RTN","SAMIUR2",1136,0) ; "RTN","SAMIUR2",1137,0) VALS(zdt,dfn,SAMIPATS) ; form-values cell "RTN","SAMIUR2",1138,0) ; "RTN","SAMIUR2",1139,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1140,0) ;@called-by "RTN","SAMIUR2",1141,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1142,0) ;@calls "RTN","SAMIUR2",1143,0) ; $$DFN2SID "RTN","SAMIUR2",1144,0) ; "RTN","SAMIUR2",1145,0) new vrtn set vrtn="" "RTN","SAMIUR2",1146,0) new vsid set vsid=$$DFN2SID(dfn) "RTN","SAMIUR2",1147,0) new vgr set vgr="/vals?sid="_vsid_"&form=" "RTN","SAMIUR2",1148,0) quit:'$data(SAMIPATS) "RTN","SAMIUR2",1149,0) ; "RTN","SAMIUR2",1150,0) new vzi set vzi="" "RTN","SAMIUR2",1151,0) for do quit:vzi="sort" quit:vzi="" "RTN","SAMIUR2",1152,0) . set vzi=$order(SAMIPATS(zdt,dfn,"items",vzi)) "RTN","SAMIUR2",1153,0) . quit:vzi="sort" "RTN","SAMIUR2",1154,0) . quit:vzi="" "RTN","SAMIUR2",1155,0) . set vrtn=vrtn_"<a href="""_vgr_vzi_""">"_vzi_"</a><br>" "RTN","SAMIUR2",1156,0) . quit "RTN","SAMIUR2",1157,0) ; "RTN","SAMIUR2",1158,0) quit vrtn ; end of $$VALS^SAMIUR2 "RTN","SAMIUR2",1159,0) ; "RTN","SAMIUR2",1160,0) ; "RTN","SAMIUR2",1161,0) ; "RTN","SAMIUR2",1162,0) WHEN(zdt,dfn,SAMIPATS) ; followup text "RTN","SAMIUR2",1163,0) ; "RTN","SAMIUR2",1164,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1165,0) ;@called-by "RTN","SAMIUR2",1166,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1167,0) ;@calls "RTN","SAMIUR2",1168,0) ; $$setroot^%wd "RTN","SAMIUR2",1169,0) ; "RTN","SAMIUR2",1170,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1171,0) new ceform set ceform=$get(SAMIPATS(zdt,dfn,"ceform")) "RTN","SAMIUR2",1172,0) quit:ceform="" "" "RTN","SAMIUR2",1173,0) ; "RTN","SAMIUR2",1174,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",1175,0) new vals set vals=$name(@root@("graph",sid,ceform)) "RTN","SAMIUR2",1176,0) new whnx set whnx=$get(@vals@("cefuw")) "RTN","SAMIUR2",1177,0) quit:whnx="" "" "RTN","SAMIUR2",1178,0) ; "RTN","SAMIUR2",1179,0) new DICT "RTN","SAMIUR2",1180,0) set DICT("cefuw","1m")="in one month" "RTN","SAMIUR2",1181,0) set DICT("cefuw","1y")="in one year" "RTN","SAMIUR2",1182,0) set DICT("cefuw","3m")="in three months" "RTN","SAMIUR2",1183,0) set DICT("cefuw","6m")="in six months" "RTN","SAMIUR2",1184,0) set DICT("cefuw","os")="other as specified" "RTN","SAMIUR2",1185,0) set whn=$get(DICT("cefuw",whnx)) "RTN","SAMIUR2",1186,0) ; "RTN","SAMIUR2",1187,0) quit whn ; end of ppi $$WHEN^SAMIUR2 "RTN","SAMIUR2",1188,0) ; "RTN","SAMIUR2",1189,0) ; "RTN","SAMIUR2",1190,0) ; "RTN","SAMIUR2",1191,0) WORKPAT(ien,dfn,SAMIPATS) ; worklist patient name cell "RTN","SAMIUR2",1192,0) ; "RTN","SAMIUR2",1193,0) ;;ppi;function;clean;silent;sac "RTN","SAMIUR2",1194,0) ;@called-by "RTN","SAMIUR2",1195,0) ; WSREPORT^SAMIUR "RTN","SAMIUR2",1196,0) ;@calls none "RTN","SAMIUR2",1197,0) ; "RTN","SAMIUR2",1198,0) new zcell set zcell="" "RTN","SAMIUR2",1199,0) set zcell=zcell_$get(SAMIPATS(ien,dfn,"workref")) "RTN","SAMIUR2",1200,0) ; "RTN","SAMIUR2",1201,0) quit zcell ; end of ppi $$WORKPAT^SAMIUR2 "RTN","SAMIUR2",1202,0) ; "RTN","SAMIUR2",1203,0) ; "RTN","SAMIUR2",1204,0) ; "RTN","SAMIUR2",1205,0) ;@section 5 unused subroutines "RTN","SAMIUR2",1206,0) ; "RTN","SAMIUR2",1207,0) ; "RTN","SAMIUR2",1208,0) ; "RTN","SAMIUR2",1209,0) EPAT(ien,dfn,SAMIPATS) ; patient name w/nav to enrollment "RTN","SAMIUR2",1210,0) ; "RTN","SAMIUR2",1211,0) ;;private;procedure;clean;silent;sac "RTN","SAMIUR2",1212,0) ;@called-by none "RTN","SAMIUR2",1213,0) ;@calls none "RTN","SAMIUR2",1214,0) ; "RTN","SAMIUR2",1215,0) quit ; end of $$EPAT "RTN","SAMIUR2",1216,0) ; "RTN","SAMIUR2",1217,0) ; "RTN","SAMIUR2",1218,0) ; "RTN","SAMIUR2",1219,0) ETHNCTY(zdt,dfn,SAMIPATS) ; ethnicity "RTN","SAMIUR2",1220,0) ; "RTN","SAMIUR2",1221,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",1222,0) ;@called-by none "RTN","SAMIUR2",1223,0) ;@calls none "RTN","SAMIUR2",1224,0) ; "RTN","SAMIUR2",1225,0) quit "ethnicity" ; end of $$ETHNCTY "RTN","SAMIUR2",1226,0) ; "RTN","SAMIUR2",1227,0) ; "RTN","SAMIUR2",1228,0) ; "RTN","SAMIUR2",1229,0) RACE(zdt,dfn,SAMIPATS) ; race "RTN","SAMIUR2",1230,0) ; "RTN","SAMIUR2",1231,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",1232,0) ;@called-by none [call commented out in RPTTBL] "RTN","SAMIUR2",1233,0) ;@calls "RTN","SAMIUR2",1234,0) ; $$setroot^%wd "RTN","SAMIUR2",1235,0) ; "RTN","SAMIUR2",1236,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1237,0) new race set race=$get(@root@(dfn,"race")) "RTN","SAMIUR2",1238,0) ; "RTN","SAMIUR2",1239,0) quit race ; end of $$RACE "RTN","SAMIUR2",1240,0) ; "RTN","SAMIUR2",1241,0) ; "RTN","SAMIUR2",1242,0) ; "RTN","SAMIUR2",1243,0) STATUS(zdt,dfn,SAMIPATS) ; patient status "RTN","SAMIUR2",1244,0) ; "RTN","SAMIUR2",1245,0) ;;private;function;clean;silent;sac "RTN","SAMIUR2",1246,0) ;@called-by none "RTN","SAMIUR2",1247,0) ;@calls "RTN","SAMIUR2",1248,0) ; $$setroot^%wd "RTN","SAMIUR2",1249,0) ; "RTN","SAMIUR2",1250,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1251,0) new sid set sid=$get(@root@(dfn,"samistudyid")) "RTN","SAMIUR2",1252,0) new siform set siform=$get(SAMIPATS(zdt,dfn,"siform")) "RTN","SAMIUR2",1253,0) new vals set vals=$name(@root@("graph",sid,siform)) "RTN","SAMIUR2",1254,0) new stat set stat=$get(@vals@("sistatus")) "RTN","SAMIUR2",1255,0) ; "RTN","SAMIUR2",1256,0) quit stat ; end of $$STATUS "RTN","SAMIUR2",1257,0) ; "RTN","SAMIUR2",1258,0) ; "RTN","SAMIUR2",1259,0) ; "RTN","SAMIUR2",1260,0) WSVALS(RTN,FILTER) ; display form values from graph "RTN","SAMIUR2",1261,0) ; "RTN","SAMIUR2",1262,0) ;;web service;procedure;clean;silent;sac "RTN","SAMIUR2",1263,0) ;@called-by none "RTN","SAMIUR2",1264,0) ;@calls "RTN","SAMIUR2",1265,0) ; $$setroot^%wd "RTN","SAMIUR2",1266,0) ; wsGtree^SYNVPR "RTN","SAMIUR2",1267,0) ; "RTN","SAMIUR2",1268,0) new root set root=$$setroot^%wd("vapals-patients") "RTN","SAMIUR2",1269,0) new sid set sid=$get(FILTER("sid")) "RTN","SAMIUR2",1270,0) if sid="" set sid=$get(FILTER("studyid")) "RTN","SAMIUR2",1271,0) quit:sid="" "RTN","SAMIUR2",1272,0) ; "RTN","SAMIUR2",1273,0) new zform set zform=$get(FILTER("form")) "RTN","SAMIUR2",1274,0) new groot "RTN","SAMIUR2",1275,0) if zform="" set groot=$name(@root@("graph",sid)) "RTN","SAMIUR2",1276,0) else set groot=$name(@root@("graph",sid,zform)) "RTN","SAMIUR2",1277,0) set FILTER("root")=$extract(groot,2,$length(groot)) "RTN","SAMIUR2",1278,0) ; "RTN","SAMIUR2",1279,0) do wsGtree^SYNVPR(.RTN,.FILTER) "RTN","SAMIUR2",1280,0) ; "RTN","SAMIUR2",1281,0) quit ; end of ws WSVALS^SAMIUR2 "RTN","SAMIUR2",1282,0) ; "RTN","SAMIUR2",1283,0) ; "RTN","SAMIUR2",1284,0) ; "RTN","SAMIUR2",1285,0) EOR ; end of routine SAMIUR2 "RTN","SAMIURUL") 0^19^B107481 "RTN","SAMIURUL",1,0) SAMIURUL ;ven/gpl - user reports log 2021-10-29T23:59Z "RTN","SAMIURUL",2,0) ;;18.0;SAMI;**12,14,15**;2020-01;Build 3 "RTN","SAMIURUL",3,0) ;;18-15 "RTN","SAMIURUL",4,0) ; "RTN","SAMIURUL",5,0) ; SAMIURUL contains the development log & module documentation for "RTN","SAMIURUL",6,0) ; the VAPALS-ELCAP user-reports routines SAMIUR & SAMIUR2. "RTN","SAMIURUL",7,0) ; "RTN","SAMIURUL",8,0) quit ; no entry from top "RTN","SAMIURUL",9,0) ; "RTN","SAMIURUL",10,0) ; "RTN","SAMIURUL",11,0) ; "RTN","SAMIURUL",12,0) ;@section 0 primary development "RTN","SAMIURUL",13,0) ; "RTN","SAMIURUL",14,0) ; "RTN","SAMIURUL",15,0) ; "RTN","SAMIURUL",16,0) ;@routine-credits "RTN","SAMIURUL",17,0) ;@dev-main Frederick D. S. Marshall (toad) "RTN","SAMIURUL",18,0) ; toad@vistaexpertise.net "RTN","SAMIURUL",19,0) ;@dev-org-main Vista Expertise Network (ven) "RTN","SAMIURUL",20,0) ; http://vistaexpertise.net "RTN","SAMIURUL",21,0) ;@copyright 2021, mcglk & toad, all rights reserved "RTN","SAMIURUL",22,0) ;@license see routine SAMIUL "RTN","SAMIURUL",23,0) ; "RTN","SAMIURUL",24,0) ;@last-update 2021-10-29T23:59Z "RTN","SAMIURUL",25,0) ;@application Screening Applications Management (SAM) "RTN","SAMIURUL",26,0) ;@module Screening Applications Management - IELCAP (SAMI) "RTN","SAMIURUL",27,0) ;@suite-of-files SAMI Forms (311.101-311.199) "RTN","SAMIURUL",28,0) ;@version 18-15 "RTN","SAMIURUL",29,0) ;@release-date 2020-01 "RTN","SAMIURUL",30,0) ;@patch-list **12,14,15** "RTN","SAMIURUL",31,0) ; "RTN","SAMIURUL",32,0) ;@dev-add Kenneth McGlothlen (mcglk) "RTN","SAMIURUL",33,0) ; mcglk@vistaexpertise.net "RTN","SAMIURUL",34,0) ;@dev-add Linda M. R. Yaw (lmry) "RTN","SAMIURUL",35,0) ; lmry@vistaexpertise.net "RTN","SAMIURUL",36,0) ; "RTN","SAMIURUL",37,0) ;@module-credits "RTN","SAMIURUL",38,0) ;@project VA Partnership to Increase Access to Lung Screening "RTN","SAMIURUL",39,0) ; (VA-PALS) "RTN","SAMIURUL",40,0) ; http://va-pals.org/ "RTN","SAMIURUL",41,0) ;@funding 2017/2021, Bristol-Myers Squibb Foundation (bmsf) "RTN","SAMIURUL",42,0) ; https://www.bms.com/about-us/responsibility/bristol-myers-squibb-foundation.html "RTN","SAMIURUL",43,0) ;@partner-org Veterans Affairs Office of Rural health "RTN","SAMIURUL",44,0) ; https://www.ruralhealth.va.gov/ "RTN","SAMIURUL",45,0) ;@partner-org International Early Lung Cancer Action Program (I-ELCAP) "RTN","SAMIURUL",46,0) ; http://ielcap.com/ "RTN","SAMIURUL",47,0) ;@partner-org Paraxial Technologies (par) "RTN","SAMIURUL",48,0) ; http://paraxialtech.com/ "RTN","SAMIURUL",49,0) ;@partner-org Open Source Electronic Health Record Alliance (OSEHRA) "RTN","SAMIURUL",50,0) ; https://www.osehra.org/groups/va-pals-open-source-project-group "RTN","SAMIURUL",51,0) ; "RTN","SAMIURUL",52,0) ;@module-log repo github.com:VA-PALS-ELCAP/SAMI-VAPALS-ELCAP.git "RTN","SAMIURUL",53,0) ; "RTN","SAMIURUL",54,0) ; 2020-02-10/12 ven/gpl 18.0-t4 d543f7bb,f9869dfb,0e4d8b9a,5e67489f "RTN","SAMIURUL",55,0) ; SAMIUR,SAMIUR2 1st version of revised user reports, progress on "RTN","SAMIURUL",56,0) ; user reports, fixed a bug in enrollment report, add rural/urban & "RTN","SAMIURUL",57,0) ; compute. "RTN","SAMIURUL",58,0) ; "RTN","SAMIURUL",59,0) ; 2020-02-18 ven/lgc 18.0-t4 76874314 "RTN","SAMIURUL",60,0) ; SAMIUR update recently edited routines. "RTN","SAMIURUL",61,0) ; "RTN","SAMIURUL",62,0) ; 2020-03-10/12 ven/gpl 18.0-t4 8de06b06,4ad52d64 "RTN","SAMIURUL",63,0) ; SAMIUR user report date filtering, fix end date logic in UR. "RTN","SAMIURUL",64,0) ; "RTN","SAMIURUL",65,0) ; 2019-03-24/28 ven/gpl 18.0-t4 1fd4a4c8,0cebb36b "RTN","SAMIURUL",66,0) ; SAMIUR2 revise incomplete form report, remove ethnicity from "RTN","SAMIURUL",67,0) ; enrollment report (we can't get it). "RTN","SAMIURUL",68,0) ; "RTN","SAMIURUL",69,0) ; 2020-04-16/23 ven/lgc 18.0-t4 e54b76d1b,89bffd3b "RTN","SAMIURUL",70,0) ; SAMIUR SAMIFRM2 > SAMIFORM, SAMISUB2 > LOAD. "RTN","SAMIURUL",71,0) ; "RTN","SAMIURUL",72,0) ; 2019-05-08 ven/lgc 18.0 2172e512 "RTN","SAMIURUL",73,0) ; SAMIUR2 remove blank last line. "RTN","SAMIURUL",74,0) ; "RTN","SAMIURUL",75,0) ; 2019-06-21 par/dom 18.0 c6a4a57f VAP-352 "RTN","SAMIURUL",76,0) ; SAMIUR2 proper spelling of "follow up." "RTN","SAMIURUL",77,0) ; "RTN","SAMIURUL",78,0) ; 2019-08-03/04 ven/gpl 18.0 ffc94f65,d03557d4,cd865e2b VPA-438 "RTN","SAMIURUL",79,0) ; SAMIUR requested changes to followup report. "RTN","SAMIURUL",80,0) ; SAMIUR2 fix smoking status on enrollment report, fix change log "RTN","SAMIURUL",81,0) ; display, add pack years at intake to enrollment report, add "RTN","SAMIURUL",82,0) ; requested changes to followup report. "RTN","SAMIURUL",83,0) ; "RTN","SAMIURUL",84,0) ; 2019-09-26 ven/gpl 18.0 92b12324 VAP-420 "RTN","SAMIURUL",85,0) ; SAMIUR add smoking history. "RTN","SAMIURUL",86,0) ; SAMIUR2 smoking history, new cummulative packyear processing. "RTN","SAMIURUL",87,0) ; "RTN","SAMIURUL",88,0) ; 2019-10-01 par/dom 18.0 4caf1a98 VAP-344 "RTN","SAMIURUL",89,0) ; SAMIUR2 make capitalization consistent. "RTN","SAMIURUL",90,0) ; "RTN","SAMIURUL",91,0) ; 2020-01-01/05 ven/arc 18.0 399f8547,62e3200f "RTN","SAMIURUL",92,0) ; SAMIUR unmatched participant processing. "RTN","SAMIURUL",93,0) ; SAMIUR2 add unmatched patient processing. "RTN","SAMIURUL",94,0) ; "RTN","SAMIURUL",95,0) ; 2020-01-10 ven/gpl 18.0 1590577c "RTN","SAMIURUL",96,0) ; SAMIUR2 fix return on RACE^SAMIUR2 for cache. "RTN","SAMIURUL",97,0) ; "RTN","SAMIURUL",98,0) ; 2020-04-29/05-13 ven/gpl 18.5 e8b8ea2d,61c7d208 "RTN","SAMIURUL",99,0) ; SAMIUR fixes for reports, worklist functionality. "RTN","SAMIURUL",100,0) ; "RTN","SAMIURUL",101,0) ; 2020-05-13/14 ven/gpl 18.5 61c7d208,b05df417 "RTN","SAMIURUL",102,0) ; SAMIUR2 add worklist functionality, fix gender & dob detection on "RTN","SAMIURUL",103,0) ; reports. "RTN","SAMIURUL",104,0) ; "RTN","SAMIURUL",105,0) ; 2021-03-22/23 ven/gpl 18.10 256efe63,ba81b86a "RTN","SAMIURUL",106,0) ; SAMIUR sort all reports by name, added row totals to reports. "RTN","SAMIURUL",107,0) ; "RTN","SAMIURUL",108,0) ; 2021-03-23 ven/toad 18.10 96f461d0,af86e0eb "RTN","SAMIURUL",109,0) ; SAMIUR add version info & dev log, lt refactor, fix XINDEX "RTN","SAMIURUL",110,0) ; errors. "RTN","SAMIURUL",111,0) ; "RTN","SAMIURUL",112,0) ; 2021-03-29 ven/gpl 18.11 e809f2a2 "RTN","SAMIURUL",113,0) ; SAMIUR prevent crash when reports have no matches: in WSREPORT "RTN","SAMIURUL",114,0) ; set SRT="" and uncomment zwrite SRT; in WKLIST add 2 commented-out "RTN","SAMIURUL",115,0) ; debugging lines. "RTN","SAMIURUL",116,0) ; "RTN","SAMIURUL",117,0) ; 2021-03-30 ven/toad 18.11 7b14bb29 "RTN","SAMIURUL",118,0) ; SAMIUR bump version, date, log; in WSREPORT comment zwrite SRT. "RTN","SAMIURUL",119,0) ; "RTN","SAMIURUL",120,0) ; 2021-03-31 ven/gpl 18.11 66d89cde "RTN","SAMIURUL",121,0) ; SAMIUR sort on all uppercase names for reports "RTN","SAMIURUL",122,0) ; "RTN","SAMIURUL",123,0) ; 2021-04-13 ven/gpl 18.11 a12765bf,f09ffef9,fb399aba "RTN","SAMIURUL",124,0) ; SAMIUR inactive report created. "RTN","SAMIURUL",125,0) ; SAMIUR2 in RPTTBL,GENDER create inactive report, move last exam "RTN","SAMIURUL",126,0) ; column on followup report, fix gender being blank in reports. "RTN","SAMIURUL",127,0) ; "RTN","SAMIURUL",128,0) ; 2021-05-20/25 ven/mcglk&toad 18.11 43a4557c,70fc6ba3,129e96b1, "RTN","SAMIURUL",129,0) ; cee2bf17 "RTN","SAMIURUL",130,0) ; SAMIUR annotate, lt refactor, bump version. "RTN","SAMIURUL",131,0) ; SAMIUR2 passim hdr comments, chg log, annotate, refactor, bump "RTN","SAMIURUL",132,0) ; version. "RTN","SAMIURUL",133,0) ; "RTN","SAMIURUL",134,0) ; 2021-05-29 ven/gpl 18.12-t2 e6fd5730,a3d6f9a0 "RTN","SAMIURUL",135,0) ; SAMIUR,SAMIUR2 ssn params & matching report, update unmatched "RTN","SAMIURUL",136,0) ; report headings. "RTN","SAMIURUL",137,0) ; "RTN","SAMIURUL",138,0) ; 2021-06-15 ven/gpl 18.12-t2 7e481426 "RTN","SAMIURUL",139,0) ; SAMIUR add site to editperson navigation. "RTN","SAMIURUL",140,0) ; "RTN","SAMIURUL",141,0) ; 2021-06-28 ven/gpl 18.12-t2 df0aaea1,1137e2bb "RTN","SAMIURUL",142,0) ; SAMIUR change definition of inactive to not marked active, change "RTN","SAMIURUL",143,0) ; definition of active to marked active. "RTN","SAMIURUL",144,0) ; "RTN","SAMIURUL",145,0) ; 2021-07-06 ven/mcglk&toad&gpl 18.12-t2 cbf7e46b,2d642aa4, "RTN","SAMIURUL",146,0) ; b248664b "RTN","SAMIURUL",147,0) ; SAMIURUL new routine for dev log. "RTN","SAMIURUL",148,0) ; SAMIUR,SAMIUR2,SAMIURUL move dev log & module docs to SAMIURUL, "RTN","SAMIURUL",149,0) ; bump version & dates. "RTN","SAMIURUL",150,0) ; SAMIUR in SELECT r/inactive w/status, test for active instead of "RTN","SAMIURUL",151,0) ; inactive. "RTN","SAMIURUL",152,0) ; "RTN","SAMIURUL",153,0) ; 2021-07-12 ven/gpl 18.12-t3 60f4bb05,27c40485,d35bcb46 "RTN","SAMIURUL",154,0) ; SAMIUR in WSREPORT,SORT add contact date & entry to missingct "RTN","SAMIURUL",155,0) ; report. "RTN","SAMIURUL",156,0) ; SAMIUR2 add contact date & entry to missingct report; add "RTN","SAMIURUL",157,0) ; inactive date reason & comment to inactive report; chg inactive "RTN","SAMIURUL",158,0) ; date to date of death. "RTN","SAMIURUL",159,0) ; "RTN","SAMIURUL",160,0) ; 2021-08-01 ven/gpl 18.12 5bd7c627 "RTN","SAMIURUL",161,0) ; SAMIUR set intake form to incomplete on creation: in SELECT if "RTN","SAMIURUL",162,0) ; type="incomplete" ensure default status is incomplete. "RTN","SAMIURUL",163,0) ; "RTN","SAMIURUL",164,0) ; 2021-08-11 ven/gpl 18.12 4d4f0fc3 "RTN","SAMIURUL",165,0) ; SAMIUR,SAMIUR2 add sorting to tables used for reports "RTN","SAMIURUL",166,0) ; SAMIUR in WSREPORT,NUHREF,WKLIST. "RTN","SAMIURUL",167,0) ; SAMIUR2 in TDDT,BLINEDT,DOB,FUDATE,LASTEXM,INACTDT,LDOC,STUDYDT "RTN","SAMIURUL",168,0) ; "RTN","SAMIURUL",169,0) ; 2021-08-26 ven/gpl 18.14 de044cf9 "RTN","SAMIURUL",170,0) ; SAMIUR, SAMIUR2 make changes to user reports as requested. "RTN","SAMIURUL",171,0) ; Reports changed were Enrollment, Activity, and Follow-up. "RTN","SAMIURUL",172,0) ; "RTN","SAMIURUL",173,0) ; 2021-08-28 ven/gpl 18.14 cd69ff8b, fbd9196d "RTN","SAMIURUL",174,0) ; SAMIUR, SAMIUR2 fix bugs causing Activity report to work incorrectly. "RTN","SAMIURUL",175,0) ; Also fixed problem with Work List. "RTN","SAMIURUL",176,0) ; "RTN","SAMIURUL",177,0) ; 2021-09-09 ven/gpl 18.14 afa4bfc2, 7f668e64, 8d45ebac "RTN","SAMIURUL",178,0) ; SAMIUR fix bugs in reports showing inactive patients on wrong reports, "RTN","SAMIURUL",179,0) ; "baseline" showing up in F/U date on Follow-up report, wrong patients "RTN","SAMIURUL",180,0) ; on Intake but Missing CT Eval report. "RTN","SAMIURUL",181,0) ; "RTN","SAMIURUL",182,0) ; 2021-10-05 ven/gpl 18.14 3251c582, c4343d69, 368fa7f7, c4343d69 "RTN","SAMIURUL",183,0) ; b3cd039b, 237109df, 368fa7f7 "RTN","SAMIURUL",184,0) ; SAMIIUR, SAMIUR2 fix some small bugs, make date formats consistent, bump "RTN","SAMIURUL",185,0) ; versions and dates. "RTN","SAMIURUL",186,0) ; "RTN","SAMIURUL",187,0) ; 2021-10-14 ven/gpl 18.14 6a973630 "RTN","SAMIURUL",188,0) ; SAMIUR fix bug where patients with CT Evals would appear on the Intake "RTN","SAMIURUL",189,0) ; but no CT report "RTN","SAMIURUL",190,0) ; "RTN","SAMIURUL",191,0) ; 2021-10-15 ven/lmry 18.14 87fd8eb3 "RTN","SAMIURUL",192,0) ; SAMIUR, SAMIURUL update history, bump dates "RTN","SAMIURUL",193,0) ; "RTN","SAMIURUL",194,0) ; 2021-10-20 ven/gpl 18-15 b63bfc06 "RTN","SAMIURUL",195,0) ; SAMIUR2 suppress rural column in enrollment report if not VA "RTN","SAMIURUL",196,0) ; "RTN","SAMIURUL",197,0) ; 2021-10-25 ven/gpl 18-15 b6188d2c "RTN","SAMIURUL",198,0) ; SAMIUR fix for duplicates in work list and matching reports "RTN","SAMIURUL",199,0) ; "RTN","SAMIURUL",200,0) ; 2021-10-28 ven/lmry,mcglk 18-15 "RTN","SAMIURUL",201,0) ; SAMIUR, SAMIUR2, SAMIURUL update history, bump dates and versions "RTN","SAMIURUL",202,0) ; "RTN","SAMIURUL",203,0) ; 2021-10-29 ven/lmry 18-15 "RTN","SAMIURUL",204,0) ; SAMIUR remove blank at end of line for XINDEX "RTN","SAMIURUL",205,0) ; "RTN","SAMIURUL",206,0) ;@contents "RTN","SAMIURUL",207,0) ; SAMIUR user reports "RTN","SAMIURUL",208,0) ; SAMIUR2 user reports cont "RTN","SAMIURUL",209,0) ; SAMIURUL user reports log "RTN","SAMIURUL",210,0) ; "RTN","SAMIURUL",211,0) ; SAMIUR1 [to be added] "RTN","SAMIURUL",212,0) ; "RTN","SAMIURUL",213,0) ; "RTN","SAMIURUL",214,0) ; "RTN","SAMIURUL",215,0) EOR ; end of SAMIURUL "SEC","^DIC",311.14,311.14,0,"AUDIT") @ "SEC","^DIC",311.14,311.14,0,"DD") @ "SEC","^DIC",311.14,311.14,0,"DEL") @ "SEC","^DIC",311.14,311.14,0,"LAYGO") @ "SEC","^DIC",311.14,311.14,0,"RD") @ "SEC","^DIC",311.14,311.14,0,"WR") @ "VER") 8.0^22.2 "^DD",311.14,311.14,0) FIELD^^1^2 "^DD",311.14,311.14,0,"DT") 3211102 "^DD",311.14,311.14,0,"IX","B",311.14,.01) "^DD",311.14,311.14,0,"NM","SAMI PARAMETER DEFAULTS") "^DD",311.14,311.14,0,"PT",311.12,.04) "^DD",311.14,311.14,0,"VRPK") SAMI "^DD",311.14,311.14,.01,0) NAME^RFJ30^^0;1^K:$L(X)>30!($L(X)<3)!'(X'?1P.E) X "^DD",311.14,311.14,.01,.1) DEFAULT PARAMETER SET NAME "^DD",311.14,311.14,.01,1,0) ^.1 "^DD",311.14,311.14,.01,1,1,0) 311.14^B "^DD",311.14,311.14,.01,1,1,1) S ^SAMI(311.14,"B",$E(X,1,30),DA)="" "^DD",311.14,311.14,.01,1,1,2) K ^SAMI(311.14,"B",$E(X,1,30),DA) "^DD",311.14,311.14,.01,3) Answer must be 3-30 characters in length. "^DD",311.14,311.14,.01,"DT") 3210419 "^DD",311.14,311.14,1,0) PARM^311.141^^1;0 "^DD",311.14,311.141,0) PARM SUB-FIELD^^.02^2 "^DD",311.14,311.141,0,"DT") 3210419 "^DD",311.14,311.141,0,"IX","B",311.141,.01) "^DD",311.14,311.141,0,"NM","PARM") "^DD",311.14,311.141,0,"UP") 311.14 "^DD",311.14,311.141,.01,0) PARM^MMFJ30^^0;1^K:$L(X)>30!($L(X)<1) X "^DD",311.14,311.141,.01,.1) PARAMETER NAME "^DD",311.14,311.141,.01,1,0) ^.1 "^DD",311.14,311.141,.01,1,1,0) 311.141^B "^DD",311.14,311.141,.01,1,1,1) S ^SAMI(311.14,DA(1),1,"B",$E(X,1,30),DA)="" "^DD",311.14,311.141,.01,1,1,2) K ^SAMI(311.14,DA(1),1,"B",$E(X,1,30),DA) "^DD",311.14,311.141,.01,3) Answer must be 1-30 characters in length. "^DD",311.14,311.141,.01,"DT") 3210420 "^DD",311.14,311.141,.02,0) VALUE^FJ180^^0;2^K:$L(X)>180!($L(X)<1) X "^DD",311.14,311.141,.02,.1) PARAMETER VALUE "^DD",311.14,311.141,.02,3) Answer must be 1-180 characters in length. "^DD",311.14,311.141,.02,"DT") 3210419 "^DIC",311.14,311.14,0) SAMI PARAMETER DEFAULTS^311.14 "^DIC",311.14,311.14,0,"GL") ^SAMI(311.14, "^DIC",311.14,"B","SAMI PARAMETER DEFAULTS",311.14) **END** **END**
Genshi
4
OSEHRA/SAMI-VAPALS-ELCAP
dist/18-15/t2/sami-18-x-15-t2.kid
[ "Apache-2.0" ]
//! shouldcrash // sdk import structs/[ArrayList, List] import os/Time version (windows) { RaiseException: extern func (ULong, ULong, ULong, Pointer) } foo: func { // SIGSEGV or access violation //* f: Int* = null f@ = 0 //*/ // SIGFPE /* a := 30 b := 0 a /= b */ // Win32 exception /* RaiseException(0, 0, 0, null) */ // ooc exception /* a := ArrayList<Int> new() a[0] toString() println() */ // no crash? sleep and try again later "Sleeping..." println() Time sleepSec(2) } bar: func { foo() } main: func { // hangs on OpenBSD for some reason version (openbsd) { exit(1) } app := App new() app run() } App: class { init: func run: func { version (debug) { "Running in debug!" println() } else { "Running in release!" println() } "> Printing a gratuitious backtrace" println() Exception getCurrentBacktrace() println() "> Now looping. If it doesn't crash, use Ctrl-C to send SIGINT!" println() loop(|| runToo() true ) } runToo: func { bar() } }
ooc
3
shamanas/rock
test/sdk/lang/crash.ooc
[ "MIT" ]
The `@angular/localize` package contains helpers and tools for localizing your application. You should install this package using `ng add @angular/localize` if you need to tag text in your application that you want to be translatable. The approach is based around the concept of tagging strings in code with a [template literal tag handler][tagged-templates] called `$localize`. The idea is that strings that need to be translated are “marked” using this tag: ```ts const message = $localize`Hello, World!`; ``` --- This `$localize` identifier can be a real function that can do the translation at runtime, in the browser. But, significantly, it is also a global identifier that survives minification. This means it can act simply as a marker in the code that a static post-processing tool can use to replace the original text with translated text before the code is deployed. For example, the following code: ```ts warning = $localize`${this.process} is not right`; ``` could be replaced with: ```ts warning = "" + this.process + ", ce n'est pas bon."; ``` The result is that all references to `$localize` are removed, and there is **zero runtime cost** to rendering the translated text. --- The Angular template compiler also generates `$localize` tagged strings rather than doing the translation itself. For example, the following template: ```html <h1 i18n>Hello, World!</h1> ``` would be compiled to something like: ```ts ɵɵelementStart(0, "h1"); // <h1> ɵɵi18n(1, $localize`Hello, World!`); // Hello, World! ɵɵelementEnd(); // </h1> ``` This means that after the Angular compiler has completed its work, all the template text marked with `i18n` attributes have been converted to `$localize` tagged strings, which can be processed just like any other tagged string. [tagged-templates]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#Tagged_templates
Markdown
5
John-Cassidy/angular
packages/localize/PACKAGE.md
[ "MIT" ]
DROP TABLE "public"."test";
SQL
0
gh-oss-contributor/graphql-engine-1
scripts/cli-migrations/v3/test/migrations/default/1616826329751_create_table_public_test/down.sql
[ "Apache-2.0", "MIT" ]
# Copyright 2021 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """tf.function tracing types. See `core.GenericFunction` and `core.ConcreteFunction`. `GenericFunction` assigns types to call arguments, forming a signature. Function signatures are used to match arguments to `ConcreteFunction`s. For example, when a new `ConcreteFunction` is traced, it is assigned a the signature of the arguments it was traced with. Subsequent call arguments which match its signature will be dispatched to the same `ConcreteFunction`. If no `ConcreteFunction` with a matching signature is found, a new one may be traced (a process known as retracing). """ import abc from typing import Optional, Sequence from typing_extensions import Protocol class TraceType(abc.ABC): """Represents the type of object(s) for Function Tracing purposes. `TraceType` is an abstract class that other classes might inherit from to provide information regarding associated class(es) for the purposes of Function Tracing. The typing logic provided through this mechanism will be used to make decisions regarding usage of cached functions and retracing. """ @abc.abstractmethod def is_subtype_of(self, other: "TraceType") -> bool: pass @abc.abstractmethod def most_specific_common_supertype( self, others: Sequence["TraceType"]) -> Optional["TraceType"]: pass @abc.abstractmethod def __hash__(self) -> int: pass @abc.abstractmethod def __eq__(self, other) -> bool: pass class TracingContext(): """Contains information scoped to the tracing of multiple objects. `TracingContext` is a container class for flags and variables that have any kind of influence on the tracing behaviour of the class implementing the __tf_tracing_type__. This context will be shared across all __tf_tracing_type__ calls while constructing the TraceType for a particular set of objects. """ pass class SupportsTracingType(Protocol): """The Trace Control Protocol for functions. Classes that implement this protocol can expect the TensorFlow function caching and function retracing mechanisms to treat instances of those classes according to the behaviour specified by their TraceType. """ @abc.abstractmethod def __tf_tracing_type__(self, context: TracingContext) -> TraceType: pass
Python
5
annietllnd/tensorflow
tensorflow/python/types/trace.py
[ "Apache-2.0" ]
// // KeyPoint.m // // Created by Giles Payne on 2019/12/25. // #import "KeyPoint.h" #import "Point2f.h" @implementation KeyPoint { cv::KeyPoint native; } - (cv::KeyPoint&)nativeRef { native.pt.x = self.pt.x; native.pt.y = self.pt.y; native.size = self.size; native.angle = self.angle; native.response = self.response; native.octave = self.octave; native.class_id = self.classId; return native; } - (instancetype)init { return [self initWithX:0 y:0 size:0]; } - (instancetype)initWithX:(float)x y:(float)y size:(float)size angle:(float)angle response:(float)response octave:(int)octave classId:(int)classId { self = [super init]; if (self != nil) { self.pt = [[Point2f alloc] initWithX:x y:y]; self.size = size; self.angle = angle; self.response = response; self.octave = octave; self.classId = classId; } return self; } - (instancetype)initWithX:(float)x y:(float)y size:(float)size angle:(float)angle response:(float)response octave:(int)octave { return [self initWithX:x y:y size:size angle:angle response:response octave:octave classId:-1]; } - (instancetype)initWithX:(float)x y:(float)y size:(float)size angle:(float)angle response:(float)response { return [self initWithX:x y:y size:size angle:angle response:response octave:0]; } - (instancetype)initWithX:(float)x y:(float)y size:(float)size angle:(float)angle { return [self initWithX:x y:y size:size angle:angle response:0]; } - (instancetype)initWithX:(float)x y:(float)y size:(float)size { return [self initWithX:x y:y size:size angle:-1]; } + (instancetype)fromNative:(cv::KeyPoint&)keyPoint { return [[KeyPoint alloc] initWithX:keyPoint.pt.x y:keyPoint.pt.y size:keyPoint.size angle:keyPoint.angle response:keyPoint.response octave:keyPoint.octave classId:keyPoint.class_id]; } - (KeyPoint*)clone { return [[KeyPoint alloc] initWithX:self.pt.x y:self.pt.y size:self.size angle:self.angle response:self.response octave:self.octave classId:self.classId]; } - (BOOL)isEqual:(id)other { if (other == self) { return YES; } else if (![other isKindOfClass:[KeyPoint class]]) { return NO; } else { KeyPoint* keyPoint = (KeyPoint*)other; return [self.pt isEqual:keyPoint.pt] && self.size == keyPoint.size && self.angle == keyPoint.angle && self.response == keyPoint.response && self.octave == keyPoint.octave && self.classId == keyPoint.classId; } } #define FLOAT_TO_BITS(x) ((Cv32suf){ .f = x }).i - (NSUInteger)hash { int prime = 31; uint32_t result = 1; result = prime * result + FLOAT_TO_BITS(self.pt.x); result = prime * result + FLOAT_TO_BITS(self.pt.y); result = prime * result + FLOAT_TO_BITS(self.size); result = prime * result + FLOAT_TO_BITS(self.angle); result = prime * result + FLOAT_TO_BITS(self.response); result = prime * result + self.octave; result = prime * result + self.classId; return result; } - (NSString*)description { return [NSString stringWithFormat:@"KeyPoint { pt: %@, size: %f, angle: %f, response: %f, octave: %d, classId: %d}", self.pt.description, self.size, self.angle, self.response, self.octave, self.classId]; } @end
Objective-C++
4
lefatoum2/opencv
modules/core/misc/objc/common/KeyPoint.mm
[ "Apache-2.0" ]
Columns ======= Rich can render text or other Rich renderables in neat columns with the :class:`~rich.columns.Columns` class. To use, construct a Columns instance with an iterable of renderables and print it to the Console. The following example is a very basic clone of the ``ls`` command in OSX / Linux to list directory contents:: import os import sys from rich import print from rich.columns import Columns if len(sys.argv) < 2: print("Usage: python columns.py DIRECTORY") else: directory = os.listdir(sys.argv[1]) columns = Columns(directory, equal=True, expand=True) print(columns) See `columns.py <https://github.com/willmcgugan/rich/blob/master/examples/columns.py>`_ for an example which outputs columns containing more than just text.
reStructuredText
3
traviscook21/rich
docs/source/columns.rst
[ "MIT" ]
// Copyright(c) 2022 https://github.com/WangXuan95 package SPIFlashController; import BRAM::*; import StmtFSM::*; import SPIController::*; interface SPIFlashController; method Action operate(Bool wr, Bit#(9) addr, Bit#(8) data); method ActionValue#(Bit#(8)) read_byte; method bit ss_o; method bit sck_o; method bit mosi_o; method Action miso_i(bit i); endinterface typedef enum { Read='h03, Write='h02, Erase='h20, Default='hFF } FlashCommand deriving(Bits, Eq); (* synthesize *) (* always_ready = "ss_o, sck_o, mosi_o" *) (* always_enabled = "miso_i" *) module mkSPIFlashController (SPIFlashController); BRAM2Port#(Bit#(8), Bit#(8)) page_buffer <- mkBRAM2Server(defaultValue); SPIController spi_ctrl <- mkSPIController; Reg#(int) cnt <- mkReg(0); Reg#(FlashCommand) command <- mkReg(Default); Reg#(Bit#(8)) page_addr_h <- mkReg(0); Reg#(Bit#(8)) page_addr_l <- mkReg(0); Reg#(bit) ss <- mkReg(1); Reg#(Bool) busybit <- mkReg(True); function Action spi_ctrl_wait; return action let a = spi_ctrl.read; endaction; endfunction FSM spiFlashFsm <- mkFSM ( seq // wait till SPIFlash not busy busybit <= True; while(busybit) seq delay(64); ss <= 1'b0; spi_ctrl.write(8'h05); spi_ctrl.write(8'h00); busybit <= unpack( spi_ctrl.read[0] ); ss <= 1'b1; endseq // if write or erase operation if( command==Write || command==Erase ) seq delay(64); ss <= 1'b0; spi_ctrl.write(8'h06); spi_ctrl_wait; ss <= 1'b1; endseq delay(64); ss <= 1'b0; spi_ctrl.write(pack(command)); spi_ctrl.write(page_addr_h); spi_ctrl.write(page_addr_l); spi_ctrl.write(8'h0); if( command == Erase ) spi_ctrl_wait; else if( command == Write ) for(cnt<=0; cnt<256; cnt<=cnt+1) seq page_buffer.portB.request.put( BRAMRequest{ write: False, responseOnWrite:False, address: pack(cnt)[7:0], datain: 8'h0 } ); action let bdata <- page_buffer.portB.response.get(); spi_ctrl.write( bdata ); endaction spi_ctrl_wait; endseq else for(cnt<=0; cnt<256; cnt<=cnt+1) seq spi_ctrl.write(8'h0); page_buffer.portB.request.put( BRAMRequest{ write: True, responseOnWrite:False, address: pack(cnt)[7:0], datain: spi_ctrl.read } ); endseq ss <= 1'b1; endseq ); method Action operate(Bool wr, Bit#(9) addr, Bit#(8) data); if(addr[8]==1'b0) begin page_buffer.portA.request.put( BRAMRequest{ write: wr, responseOnWrite:False, address: addr[7:0], datain: data } ); end else if(addr==9'h100) begin page_addr_l <= data; end else if(addr==9'h101) begin page_addr_h <= data; end else if(addr==9'h108) begin command <= unpack(data); spiFlashFsm.start(); //$display("command=%x addr=%x%x", data, page_addr_h, page_addr_l ); end endmethod method ActionValue#(Bit#(8)) read_byte = page_buffer.portA.response.get; // SPI bus connections method ss_o = ss._read; method sck_o = spi_ctrl.sck_o; method mosi_o = spi_ctrl.mosi_o; method miso_i = spi_ctrl.miso_i; endmodule endpackage
Bluespec
4
Xiefengshang/BSV_Tutorial_cn
src/SPIFlash/SPIFlashController.bsv
[ "MIT" ]
[Exposed=Window, HTMLConstructor] interface HTMLDivElement : HTMLElement { // also has obsolete members }; partial interface HTMLDivElement { [CEReactions, Reflect] attribute DOMString align; };
WebIDL
3
corsarstl/Learn-Vue-2
vue-testing/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement.webidl
[ "MIT" ]
/* * Copyright (C) 2009 Steve Rowe <sarowe@gmail.com> * Copyright (C) 2020 Google, LLC. * * License: https://opensource.org/licenses/BSD-3-Clause * * Redistribution and use in source and binary forms, with or without modification, are permitted * provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of conditions * and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other materials provided with * the distribution. * 3. Neither the name of the copyright holder nor the names of its contributors may be used to * endorse or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package de.jflex.ucd_generator.scanner; import de.jflex.ucd_generator.ucd.UnicodeData; import java.util.SortedSet; import java.util.TreeSet; /** * Scans the Unicode.org data file format for Blocks-X.txt, from Unicode * versions 2.0, 2.1, and 3.0, populating unicodeVersion.propertyValueIntervals * and unicodeVersion.usedPropertyValueAliases. From Unicode version 3.1 * onward, the Blocks(-X.X.X).txt file format changed to the common enumerated * properties format, which can be scanned using the grammar in * EnumeratedPropertyFileScanner.flex. */ %% %final %class ArchaicBlocksScanner %extends AbstractArchaicEnumPropertyScanner %ctorarg UnicodeData unicodeData %unicode %eofclose %state BEGIN_RANGE, END_RANGE, PROPERTY_VALUE, COMMENT_LINE %int %function scan %init{ super(unicodeData, "Block", "No_Block"); %init} Hex = [0-9A-Fa-f]{4,6} Spaces = [ \t]* NL = \n | \r | \r\n ItemSeparator = {Spaces} ";" {Spaces} %% <YYINITIAL> { {Spaces} "#" { yybegin(COMMENT_LINE); } {Spaces} {NL}? { } {Hex} { start = Integer.parseInt(yytext(), 16); yybegin(BEGIN_RANGE); } } <COMMENT_LINE> { .* {NL}? { yybegin(YYINITIAL); } } <BEGIN_RANGE> { {ItemSeparator} { yybegin(END_RANGE); } } <END_RANGE> { {Hex} { end = Integer.parseInt(yytext(), 16); } {ItemSeparator} { yybegin(PROPERTY_VALUE); } } <PROPERTY_VALUE> { [^ \t\r\n#;]+ (" " [^ \t\r\n#;]+)* { addInterval(start, end, yytext()); } {Spaces} ("#" .*)? {NL} { yybegin(YYINITIAL); } } <YYINITIAL> { <PROPERTY_VALUE> { <<EOF>> { addPropertyValueIntervals(); return 0; } } }
JFlex
4
WeDoSoftware/jflex
java/de/jflex/ucd_generator/scanner/ArchaicBlocksScanner.flex
[ "BSD-3-Clause" ]
#include <torch/nn/options/conv.h> namespace torch { namespace nn { template struct ConvOptions<1>; template struct ConvOptions<2>; template struct ConvOptions<3>; namespace functional { template struct ConvFuncOptions<1>; template struct ConvFuncOptions<2>; template struct ConvFuncOptions<3>; template struct ConvTransposeFuncOptions<1>; template struct ConvTransposeFuncOptions<2>; template struct ConvTransposeFuncOptions<3>; } // namespace functional } // namespace nn } // namespace torch
C++
3
Hacky-DH/pytorch
torch/csrc/api/src/nn/options/conv.cpp
[ "Intel" ]
Simple server test WebSocket = require 'websocket' WebSocketServer = WebSocket.server http = require 'http' server = http.createServer (request, response)-> console.log 'Received request for ' + request.url response.writeHead 400 response.end server.listen 8080, -> console.log 'Server is listening on port 8080' wsServer = new WebSocketServer httpServer: server autoAcceptConnections: false originIsAllowed = -> true wsServer.on 'request', (request)-> if !originIsAllowed request.origin request.reject console.log 'Connection from origin ' + request.origin + ' rejected.' else connection = request.accept 'echo-protocol', request.origin console.log 'Connection accepted.' connection.on 'message', (message)-> if message.type == 'utf8' console.log 'Received Message: ' + message.utf8Data connection.sendUTF 'THIS IS UTF' else if message.type == 'binary' console.log 'Received Binary Message of ' + message.binaryData.length + ' bytes' connection.sendBytes message.binaryData connection.on 'close', (reasonCode, description)-> console.log 'Peer ' + connection.remoteAddress + ' disconnected.'
Literate CoffeeScript
4
zot/Leisure
server/index.litcoffee
[ "Zlib" ]
const VALUES = Array.from('abcdefghijklmnopqrstuvwxyz'); function toObjects(array) { return array.split('').map(x => ({ id: x })); } function permute() { const values = VALUES.slice(); const number = Math.floor(Math.random() * VALUES.length); const permuted = []; for (let i = 0; i < number; i++) { permuted.push( ...values.splice(Math.floor(Math.random() * (number - i)), 1) ); } return permuted.join(''); } export default { props: { values: toObjects('abc') }, html: '(a)(b)(c)', test({ assert, component, target }) { function test(sequence) { const previous = target.textContent; const expected = sequence.split('').map(x => `(${x})`).join(''); component.values = toObjects(sequence); assert.htmlEqual( target.innerHTML, expected, `\n${previous} -> ${expected}\n${target.textContent}` ); } // first, some fixed tests so that we can debug them test('abc'); test('abcd'); test('abecd'); test('fabecd'); test('fabed'); test('beadf'); test('ghbeadf'); test('gf'); test('gc'); test('g'); test(''); test('abc'); test('duqbmineapjhtlofrskcg'); test('hdnkjougmrvftewsqpailcb'); test('bidhfacge'); test('kgjnempcboaflidh'); test('fekbijachgd'); test('kdmlgfbicheja'); // then, we party for (let i = 0; i < 100; i += 1) test(permute()); } };
JavaScript
4
Theo-Steiner/svelte
test/runtime/samples/each-block-keyed-random-permute/_config.js
[ "MIT" ]
const __floatdidf = @import("floatdidf.zig").__floatdidf; const testing = @import("std").testing; fn test__floatdidf(a: i64, expected: f64) !void { const r = __floatdidf(a); try testing.expect(r == expected); } test "floatdidf" { try test__floatdidf(0, 0.0); try test__floatdidf(1, 1.0); try test__floatdidf(2, 2.0); try test__floatdidf(20, 20.0); try test__floatdidf(-1, -1.0); try test__floatdidf(-2, -2.0); try test__floatdidf(-20, -20.0); try test__floatdidf(0x7FFFFF8000000000, 0x1.FFFFFEp+62); try test__floatdidf(0x7FFFFFFFFFFFF800, 0x1.FFFFFFFFFFFFEp+62); try test__floatdidf(0x7FFFFF0000000000, 0x1.FFFFFCp+62); try test__floatdidf(0x7FFFFFFFFFFFF000, 0x1.FFFFFFFFFFFFCp+62); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000008000000000)), -0x1.FFFFFEp+62); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000800)), -0x1.FFFFFFFFFFFFEp+62); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000010000000000)), -0x1.FFFFFCp+62); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000001000)), -0x1.FFFFFFFFFFFFCp+62); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000000)), -0x1.000000p+63); try test__floatdidf(@bitCast(i64, @intCast(u64, 0x8000000000000001)), -0x1.000000p+63); try test__floatdidf(0x0007FB72E8000000, 0x1.FEDCBAp+50); try test__floatdidf(0x0007FB72EA000000, 0x1.FEDCBA8p+50); try test__floatdidf(0x0007FB72EB000000, 0x1.FEDCBACp+50); try test__floatdidf(0x0007FB72EBFFFFFF, 0x1.FEDCBAFFFFFFCp+50); try test__floatdidf(0x0007FB72EC000000, 0x1.FEDCBBp+50); try test__floatdidf(0x0007FB72E8000001, 0x1.FEDCBA0000004p+50); try test__floatdidf(0x0007FB72E6000000, 0x1.FEDCB98p+50); try test__floatdidf(0x0007FB72E7000000, 0x1.FEDCB9Cp+50); try test__floatdidf(0x0007FB72E7FFFFFF, 0x1.FEDCB9FFFFFFCp+50); try test__floatdidf(0x0007FB72E4000001, 0x1.FEDCB90000004p+50); try test__floatdidf(0x0007FB72E4000000, 0x1.FEDCB9p+50); try test__floatdidf(0x023479FD0E092DC0, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DA1, 0x1.1A3CFE870496Dp+57); try test__floatdidf(0x023479FD0E092DB0, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DB8, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DB6, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DBF, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DC1, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DC7, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DC8, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DCF, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DD0, 0x1.1A3CFE870496Ep+57); try test__floatdidf(0x023479FD0E092DD1, 0x1.1A3CFE870496Fp+57); try test__floatdidf(0x023479FD0E092DD8, 0x1.1A3CFE870496Fp+57); try test__floatdidf(0x023479FD0E092DDF, 0x1.1A3CFE870496Fp+57); try test__floatdidf(0x023479FD0E092DE0, 0x1.1A3CFE870496Fp+57); }
Zig
4
lukekras/zig
lib/std/special/compiler_rt/floatdidf_test.zig
[ "MIT" ]
package com.baeldung.traits class Employee implements UserTrait { String name() { return 'Bob' } String lastName() { return "Marley" } }
Groovy
4
DBatOWL/tutorials
core-groovy/src/main/groovy/com/baeldung/traits/Employee.groovy
[ "MIT" ]
<!DOCTYPE html> <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ Copyright (c) 2015-2018 Skymind, Inc. ~ ~ This program and the accompanying materials are made available under the ~ terms of the Apache License, Version 2.0 which is available at ~ https://www.apache.org/licenses/LICENSE-2.0. ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the ~ License for the specific language governing permissions and limitations ~ under the License. ~ ~ SPDX-License-Identifier: Apache-2.0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> <html lang="en"> <head> <meta charset="utf-8"> <title>${train\.pagetitle}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/assets/webjars/coreui__coreui/2.1.9/dist/css/coreui.min.css"> <link rel="stylesheet" href="/assets/css/style.css"> <script src="/assets/webjars/jquery/3.4.1/dist/jquery.min.js"></script> <script src="/assets/webjars/popper.js/1.12.9/dist/umd/popper.min.js"></script> <script src="/assets/webjars/bootstrap/4.3.1/dist/js/bootstrap.min.js"></script> <script src="/assets/webjars/coreui__coreui/2.1.9/dist/js/coreui.min.js"></script> <!-- Icons --> <link rel="stylesheet" href="/assets/webjars/coreui__icons/0.3.0/css/coreui-icons.min.css"></script> <link rel="shortcut icon" href="/assets/img/favicon.ico"> </head> <body class="app sidebar-show aside-menu-show"> <header class="app-header navbar"> <a class="header-text" href="#"><span>${train\.pagetitle}</span></a> <div id="sessionSelectDiv" style="display:none; float:right;"> <div style="color:white;">${train\.session\.label}</div> <select id="sessionSelect" onchange='selectNewSession()'> <option>(Session ID)</option> </select> </div> <div id="workerSelectDiv" style="display:none; float:right"> <div style="color:white;">${train\.session\.worker\.label}</div> <select id="workerSelect" onchange='selectNewWorker()'> <option>(Worker ID)</option> </select> </div> </header> <!-- End Header --> <div class="app-body"> <div class="sidebar"> <nav class="sidebar-nav"> <ul class="nav"> <li class="nav-item"><a class="nav-link" href="overview"><i class="nav-icon cui-chart"></i>${train\.nav\.overview}</a></li> <li class="nav-item"><a class="nav-link" href="model"><i class="nav-icon cui-graph"></i>${train\.nav\.model}</a></li> <li class="nav-item"><a class="nav-link" href="system"><i class="nav-icon cui-speedometer"></i>${train\.nav\.system}</a></li> <li class="nav-item nav-dropdown"> <a class="nav-link nav-dropdown-toggle" href="#"> <i class="nav-icon cui-globe"></i> ${train\.nav\.language} </a> <ul class="nav-dropdown-items"> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('en', 'overview')"><i class="icon-file-alt"></i>English</a></li> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('de', 'overview')"><i class="icon-file-alt"></i>Deutsch</a></li> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('ja', 'overview')"><i class="icon-file-alt"></i>日本語</a></li> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('zh', 'overview')"><i class="icon-file-alt"></i>中文</a></li> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('ko', 'overview')"><i class="icon-file-alt"></i>한글</a></li> <li class="nav-item"><a class="nav-link" href="javascript:void(0);" onclick="languageSelect('ru', 'overview')"><i class="icon-file-alt"></i>русский</a></li> </ul> </li> </ul> </nav> </div> <style> /* Graph */ #layers { height: 725px; /* IE8 */ height: 90vh; width: 100%; border: 2px solid #eee; } </style> <!-- Start Content --> <div id="content"> <div class="row"> <div class="col"> <div id="layers"></div> </div> <!-- Start Layer Details --> <div class="col" id="layerDetails" style="width:50pc"> <div class="box"> <div class="chart-header"> <h2><b>${train\.model\.layerInfoTable\.title}</b></h2> </div> <div class="box-content"> <table class="table table-bordered table-striped table-condensed" id="layerInfo"></table> </div> </div> <div class="box"> <div class="chart-header"> <h2><b>${train\.overview\.chart\.updateRatioTitle}</b></h2><p id="updateRatioTitleLog10"><b>: log<sub>10</sub></b></p> <ul class="nav tab-menu nav-tabs" style="position:absolute; margin-top: -60px; right: 27px;"> <li id="mmRatioTab"><a href="javascript:void(0);" onclick="setSelectMeanMagChart('ratios')">${train\.model\.meanmag\.btn\.ratio}</a></li> <li id="mmParamTab"><a href="javascript:void(0);" onclick="setSelectMeanMagChart('paramMM')">${train\.model\.meanmag\.btn\.param}</a></li> <li id="mmUpdateTab"><a href="javascript:void(0);" onclick="setSelectMeanMagChart('updateMM')">${train\.model\.meanmag\.btn\.update}</a></li> </ul> </div> <div class="box-content"> <div id="meanmag" class="center" style="height: 300px;" ></div> <p id="hoverdata"><span id="updateRatioTitleSmallLog10"><b>log<sub> 10</sub> ${train\.overview\.chart\.updateRatioTitleShort}</b></span> <span id="yMeanMagnitudes">0</span>, <b>${train\.overview\.charts\.iteration}:</b> <span id="xMeanMagnitudes">0</span></p> </div> </div> <div class="box"> <div class="chart-header"> <h2><b>${train\.model\.activationsChart\.title}</b></h2> </div> <div class="box-content"> <div id="activations" class="center" style="height: 300px;" ></div> <p id="hoverdata"><b>${train\.model\.activationsChart\.titleShort} :</b> <span id="yActivations">0</span> , <b>${train\.overview\.charts\.iteration} :</b> <span id="xActivations">0</span></p> </div> </div> <div class="box"> <div class="chart-header"> <h2><b>${train\.model\.paramHistChart\.title}</b></h2> <div id="paramhistSelected" style="float: left"></div> <div id="paramHistButtonsDiv" style="float: right"></div> </div> <div class="box-content"> <div id="parametershistogram" class="center" style="height: 300px;"></div> </div> </div> <div class="box"> <div class="chart-header"> <h2><b>${train\.model\.updateHistChart\.title}</b></h2> <div id="updatehistSelected" style="float: left"></div> <div id="updateHistButtonsDiv" style="float: right"></div> </div> <div class="box-content"> <div id="updateshistogram" class="center" style="height: 300px;"></div> </div> </div> <div class="box"> <div class="chart-header"> <h2><b>${train\.model\.lrChart\.title}</b></h2> </div> <div class="box-content"> <div id="learningrate" class="center" style="height: 300px;" ></div> <p id="hoverdata"><b>${train\.model\.lrChart\.titleShort} :</b> <span id="yLearningRate">0</span> , <b>${train\.overview\.charts\.iteration} :</b> <span id="xLearningRate">0</span></p> </div> </div> </div> <!-- End Layer Details--> <!-- Begin Zero State --> <div class="col" id="zeroState"> <div class="box"> <div class="chart-header"> <h2><b>Getting Started</b></h2> </div> <div class="box-content"> <div class="page-header"> <h1>Layer Visualization UI</h1> </div> <div class="row-fluid"> <div class="span12"> <h2>Overview</h2> <p> The layer visualization UI renders network structure dynamically. Users can inspect node layer parameters by clicking on the various elements of the GUI to see general information as well as overall network information such as performance. </p> <h2>Actions</h2> <p>On the <b>left</b>, you will find an interactive layer visualization.</p> <p> <ul> <li><b>Clicking</b> - Click on a layer to load network performance metrics.</li> <li><b>Scrolling</b> - Drag the GUI with your mouse or touchpad to move the model around. </li> </ul> </p> </div> </div> </div> </div> </div> <!-- End Zero State--> </div> </div> <!-- End Content --> </div> <!-- End Container --> </div> <!-- End Row Fluid--> <!-- Start JavaScript--> <script src="/assets/webjars/modernizr/2.8.3/modernizr.min.js"></script> <script src="/assets/webjars/flot/0.8.3/jquery.flot.js"></script> <script src="/assets/webjars/flot/0.8.3/jquery.flot.pie.js"></script> <script src="/assets/webjars/flot/0.8.3/jquery.flot.stack.js"></script> <script src="/assets/webjars/flot/0.8.3/jquery.flot.resize.min.js"></script> <script src="/assets/webjars/chosen/0.9.8/chosen/chosen.jquery.min.js"></script> <script src="/assets/webjars/uniform/2.1.2/jquery.uniform.min.js"></script> <script src="/assets/webjars/noty/2.2.2/jquery.noty.packaged.js"></script> <script src="/assets/webjars/jquery-raty/2.5.2/jquery.raty.min.js"></script> <script src="/assets/webjars/imagesloaded/2.1.1/jquery.imagesloaded.min.js"></script> <script src="/assets/webjars/masonry/3.1.5/masonry.pkgd.min.js"></script> <script src="/assets/webjars/jquery-knob/1.2.2/jquery.knob.min.js"></script> <script src="/assets/webjars/jquery.sparkline/2.1.2/jquery.sparkline.min.js"></script> <script src="/assets/webjars/retinajs/0.0.2/retina.js"></script> <script src="/assets/webjars/dagre/0.8.4/dist/dagre.min.js"></script> <script src="/assets/webjars/cytoscape/3.3.3/dist/cytoscape.min.js"></script> <script src="/assets/webjars/cytoscape-dagre/2.1.0/cytoscape-dagre.js"></script> <script src="/assets/webjars/github-com-jboesch-Gritter/1.7.4/jquery.gritter.js"></script> <script src="/assets/js/train/model.js"></script> <!-- Charts and tables are generated here! --> <script src="/assets/js/train/model-graph.js"></script> <!-- Layer graph generated here! --> <script src="/assets/js/train/train.js"></script> <!-- Common (lang selection, etc) --> <script src="/assets/js/counter.js"></script> <!-- Execute once on page load --> <script> $(document).ready(function () { renderModelGraph(); renderModelPage(true); }); </script> <!-- Execute periodically (every 2 sec) --> <script> setInterval(function () { renderModelPage(false); }, 2000); </script> </body> </html>
FreeMarker
3
mjlorenzo305/deeplearning4j
deeplearning4j/deeplearning4j-ui-parent/deeplearning4j-vertx/src/main/resources/templates/TrainingModel.html.ftl
[ "Apache-2.0" ]
--TEST-- Phar::mapPhar buffer overrun --EXTENSIONS-- phar --INI-- phar.require_hash=0 --FILE-- <?php $file = "<?php Phar::mapPhar('hio'); __HALT_COMPILER(); ?>"; // this fails because the manifest length does not include the other 10 byte manifest data $manifest = pack('V', 1) . 'a' . pack('VVVVVV', 0, time(), 0, crc32(''), 0x00000000, 0); $file .= pack('VVnVV', strlen($manifest), 1, 0x1000, 0x00000000, 3) . 'hio' . pack('V', 0) . $manifest; file_put_contents(__DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php', $file); try { include __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php'; echo file_get_contents('phar://hio/a'); } catch (Exception $e) { echo $e->getMessage(); } ?> --CLEAN-- <?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?> --EXPECTF-- internal corruption of phar "%s" (too many manifest entries for size of manifest)
PHP
3
NathanFreeman/php-src
ext/phar/tests/010.phpt
[ "PHP-3.01" ]
// $Id: Alarm32khz32C.nc,v 1.4 2006-12-12 18:23:42 vlahan Exp $ /* * Copyright (c) 2005-2006 Intel Corporation * All rights reserved. * * This file is distributed under the terms in the attached INTEL-LICENSE * file. If you do not find these files, copies can be found by writing to * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, * 94704. Attention: Intel License Inquiry. */ /** * 32-bit 32kHz Alarm component as per TEP102 HAL guidelines. The mica * family 32kHz Alarm is built on hardware timer 1, and actually runs at * CPU frequency / 256. You can use the MeasureClockC.cyclesPerJiffy() * command to figure out the exact frequency. * <p> * Upto three of these alarms can be created (one per hardware compare * register). Note that creating one of these Alarms consumes a 16-bit * 32kHz Alarm (see Alarm32khz16C). * * @author David Gay <dgay@intel-research.net> */ #include <MicaTimer.h> generic configuration Alarm32khz32C() { provides interface Alarm<T32khz, uint32_t>; } implementation { components new AlarmOne16C() as Alarm16, Counter32khz32C as Counter32, new TransformAlarmC(T32khz, uint32_t, TOne, uint16_t, MICA_DIVIDE_ONE_FOR_32KHZ_LOG2) as Transform32; Alarm = Transform32; Transform32.AlarmFrom -> Alarm16; Transform32.Counter -> Counter32; }
nesC
4
mtaghiza/tinyos-main-1
tos/platforms/mica/Alarm32khz32C.nc
[ "BSD-3-Clause" ]
package com.baeldung.okhttp.download; public interface ProgressCallback { void onProgress(double progress); }
Java
3
DBatOWL/tutorials
libraries-http-2/src/main/java/com/baeldung/okhttp/download/ProgressCallback.java
[ "MIT" ]
grammar grammar1; rule pod { \=[pod|head1|kwid|for] .*? \=cut } push @statements, \&pod; =kwid pX/Common/iterator_engine_p6.pl - fglock - experimental implementation of a grammar that could parse Perl 6 =cut rule term1 { <@grammar1::terms> } rule list { [ <term1> <?ws>? \, <?ws>? ]* <term1>? } rule block { \{ $list := ( [ <?ws>? <@grammar1::statements> ]* ) <?ws>? \} { return { block => $()<list> ,} } } push @statements, \&block; rule macro_decl { macro <?ws> $prefix := (<word>) \: \< $id := (.*?) \> <?ws>? \( <?ws>? <list> <?ws>? \) <?ws>? is <?ws> parsed <?ws>? \( <?ws>? \/ <?ws>? <rule> <?ws>? \/ <?ws>? \) <?ws>? <code> { return { macro => $() ,} } } push @statements, \&macro_decl; push @terms, \&variable; push @terms, \&literal; rule _print { $op := (print|say|warn|die) <ws> <list> <ws>? \; { return { _print => $() ,} } } push @statements, \&_print; rule _my { $op := (my|our|local) <ws> <variable> <ws>? \; { return { _my => $() ,} } } push @statements, \&_my; rule _simple_statement { $op := (die|\.\.\.) \; { return { _simple_statement => $() ,} } } push @statements, \&_simple_statement; rule sub_decl { sub <?ws> $fix := (infix|prefix|postfix) \: \< $id := (.*?) \> <?ws>? <block> { return { sub_decl => $() ,} } } push @statements, \&sub_decl; rule term2 { $term1 := (<term1>) <ws>? $op := (<@grammar1::ops>) <ws>? $term2 := (<term1>) { return { sub_application_term => $() ,} } } rule sub_application { $term1 := (<term1>|<term2>) <ws>? $op := (<@grammar1::ops>) <ws>? $term2 := (<term1>|<term2>) <ws>? \; { return { sub_application => $() ,} } } push @statements, \&sub_application; rule eval_perl5 { eval <ws>? \( <ws>? <literal> <ws>? \, <ws>? \: lang \< perl5 \> <ws>? \) <ws>? \; { return { eval_perl5 => $<literal> } } } push @statements, \&eval_perl5; =for TODO reimplement print(), warn ... using 'sub' implement eval_perl6 and eval_block operand fixity (infix, prefix...) operand precedence (+, *, ln) class find out how to change syntax while in the parse-and-generate-ast phase (for example, when a new sub is created) macros =cut rule _return { return <?ws> $val := (<term1>|<term2>) <?ws>? \; { return { _return => $() ,} } } push @statements, \&_return; macro statement_control:<if> () is parsed ( / <?ws>? \( $expr := (.*?) \) <?ws>? $block := (<code>) / ) { return ' sub prefix:<_if_expr> { return $expr ; } sub prefix:<_if_block> { $block } eval( \' if ( &{\\\'prefix:<_if_expr>\\\'}() ) { &{\\\'prefix:<_if_block>\\\'}() } \', :lang<perl5> ); '; } sub infix:<*> { eval(' $_[0] * $_[1] ', :lang<perl5>); } sub infix:<+> { eval(' $_[0] + $_[1] ', :lang<perl5>); } sub infix:<~> { eval(' $_[0] . $_[1] ', :lang<perl5>); }
Perl6
5
lablua/Perlito
misc/iterator_engine/iterator_engine_p6prelude.p6
[ "Artistic-2.0" ]
*** Settings *** Suite Setup Run Tests ${EMPTY} standard_libraries/operating_system/path_expansion.robot Resource atest_resource.robot *** Test Cases *** Tilde in path Check testcase ${TESTNAME} Tilde and username in path Check testcase ${TESTNAME}
RobotFramework
3
rdagum/robotframework
atest/robot/standard_libraries/operating_system/path_expansion.robot
[ "ECL-2.0", "Apache-2.0" ]
#!/bin/csh foreach i (`cat list`) set jold=194057 foreach j (`cat list2`) if(${i} > ${j}) then set jold=${j} endif end echo ${i}_${jold} end
Tcsh
2
ckamtsikis/cmssw
DPGAnalysis/HcalTools/scripts/rmt/newlist.csh
[ "Apache-2.0" ]
' currentdate.bmx Print "The date is "+CurrentDate$()
BlitzMax
2
jabdoa2/blitzmax
mod/brl.mod/system.mod/doc/currentdate.bmx
[ "Zlib" ]
<html> <head> </head> <body style="background: transparent;"> <script src="scripts/docstrap.lib.js"></script> <script src="scripts/lunr.min.js"></script> <script src="scripts/fulltext-search.js"></script> <script type="text/x-docstrap-searchdb"> {"global.html":{"id":"global.html","title":"Global","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Global Methods arrayRemove(arr, values) Method to reduce array of characters Parameters: Name Type Description arr existing array of characters values array of characters which should be removed Returns: new array without banned characters Type * arrayRemove(arr, values) Method to reduce array of characters Parameters: Name Type Description arr existing array of characters values array of characters which should be removed Returns: new array without banned characters Type * unique() unique unique() unique × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"namespaces.list.html":{"id":"namespaces.list.html","title":"Namespaces","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespaces Namespaces faker faker address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image lorempicsum lorempixel unsplash internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"index.html":{"id":"index.html","title":"Index","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique faker.js - generate massive amounts of fake data in the browser and node.js Demo https://rawgit.com/Marak/faker.js/master/examples/browser/index.html Faker Cloud Don't have a local development setup ready? Try our hosted version of Faker at https://fakercloud.com/api https://github.com/faker/faker-cloud Usage Browser &lt;script src = \"faker.js\" type = \"text/javascript\"&gt;&lt;/script&gt; &lt;script&gt; var randomName = faker.name.findName(); // Caitlyn Kerluke var randomEmail = faker.internet.email(); // Rusty@arne.info var randomCard = faker.helpers.createCard(); // random contact card containing many properties &lt;/script&gt; Node.js var faker = require('faker'); var randomName = faker.name.findName(); // Rowan Nikolaus var randomEmail = faker.internet.email(); // Kassandra.Haley@erich.biz var randomCard = faker.helpers.createCard(); // random contact card containing many properties API JSDoc API Browser http://marak.github.io/faker.js/ API Methods address zipCode zipCodeByState city cityPrefix citySuffix cityName streetName streetAddress streetSuffix streetPrefix secondaryAddress county country countryCode state stateAbbr latitude longitude direction cardinalDirection ordinalDirection nearbyGPSCoordinate timeZone animal dog cat snake bear lion cetacean horse bird cow fish crocodilia insect rabbit type commerce color department productName price productAdjective productMaterial product productDescription company suffixes companyName companySuffix catchPhrase bs catchPhraseAdjective catchPhraseDescriptor catchPhraseNoun bsAdjective bsBuzz bsNoun database column type collation engine datatype number float datetime string uuid boolean hexaDecimal json array date past future between betweens recent soon month weekday fake finance account accountName routingNumber mask amount transactionType currencyCode currencyName currencySymbol bitcoinAddress litecoinAddress creditCardNumber creditCardCVV ethereumAddress iban bic transactionDescription git branch commitEntry commitMessage commitSha shortSha hacker abbreviation adjective noun verb ingverb phrase helpers randomize slugify replaceSymbolWithNumber replaceSymbols replaceCreditCardSymbols repeatString regexpStyleStringParse shuffle mustache createCard contextualCard userCard createTransaction image image avatar imageUrl abstract animals business cats city food nightlife fashion people nature sports technics transport dataUri lorempixel unsplash lorempicsum internet avatar email exampleEmail userName protocol httpMethod url domainName domainSuffix domainWord ip ipv6 port userAgent color mac password lorem word words sentence slug sentences paragraph paragraphs text lines mersenne rand seed seed_array music genre name firstName lastName middleName findName jobTitle gender prefix suffix title jobDescriptor jobArea jobType phone phoneNumber phoneNumberFormat phoneFormats random number float arrayElement arrayElements objectElement uuid boolean word words image locale alpha alphaNumeric hexaDecimal system fileName commonFileName mimeType commonFileType commonFileExt fileType fileExt directoryPath filePath semver time recent unique vehicle vehicle manufacturer model type fuel vin color vrm bicycle Faker.fake() faker.js contains a super useful generator method Faker.fake for combining faker API methods using a mustache string format. Example: console.log(faker.fake(\"{{name.lastName}}, {{name.firstName}} {{name.suffix}}\")); // outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName(), name.firstName(), and name.suffix() Localization As of version v2.0.0 faker.js has support for multiple localities. The default language locale is set to English. Setting a new locale is simple: // sets locale to de faker.locale = \"de\"; az ar cz de de_AT de_CH en en_AU en_AU_ocker en_BORK en_CA en_GB en_IE en_IND en_US en_ZA es es_MX fa fi fr fr_CA fr_CH ge hy hr id_ID it ja ko nb_NO ne nl nl_BE pl pt_BR pt_PT ro ru sk sv tr uk vi zh_CN zh_TW Individual Localization Packages faker.js supports incremental loading of locales. By default, requiring faker will include all locale data. In a production environment, you may only want to include the locale data for a specific set of locales. // loads only de locale var faker = require('faker/locale/de'); Setting a randomness seed If you want consistent results, you can set your own seed: faker.seed(123); var firstRandom = faker.datatype.number(); // Setting the seed again resets the sequence. faker.seed(123); var secondRandom = faker.datatype.number(); console.log(firstRandom === secondRandom); Tests npm install . make test You can view a code coverage report generated in coverage/lcov-report/index.html. Building faker.js faker uses gulp to automate its build process. Each build operation is a separate task which can be run independently. Browser Bundle npm run browser Building JSDocs JSDOC v3 HTML API documentation npm run jsdoc Building ReadMe The ReadMe.md file for faker.js is automatically generated and should not be modified directly. All updates to ReadMe.md should be performed in ./build/src/docs.md and then the build script should be run. npm run readme Version Release Schedule faker.js is a popular project used by many organizations and individuals in production settings. Major and Minor version releases are generally on a monthly schedule. Bugs fixes are addressed by severity and fixed as soon as possible. If you require the absolute latest version of faker.js the master branch @ http://github.com/marak/faker.js/ should always be up to date and working. Maintainer Marak Squires faker.js - Copyright (c) 2020 Marak Squires www.marak.com http://github.com/marak/faker.js/ faker.js was inspired by and has used data definitions from: https://github.com/stympy/faker/ - Copyright (c) 2007-2010 Benjamin Curtis http://search.cpan.org/~jasonk/Data-Faker-0.07/ - Copyright 2004-2005 by Jason Kohles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Backers Support us with a monthly donation and help us continue our activities. [Become a backer] Sponsors Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor] × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.html":{"id":"faker.html","title":"Namespace: faker","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: faker faker Namespaces address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle Methods &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string Namespace: faker faker Namespaces address address animal animal commerce commerce company company database database datatype datatype date date finance finance git git hacker hacker helpers helpers image image internet internet lorem lorem music music name name phone phone random random system system time time unique unique vehicle vehicle Methods &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string &lt;static&gt; fake(str) Generator method for combining faker methods based on string input Example: console.log(faker.fake('{{name.lastName}}, {{name.firstName}} {{name.suffix}}')); //outputs: \"Marks, Dean Sr.\" This will interpolate the format string with the value of methods name.lastName, name.firstName, and name.suffix Parameters: Name Type Description str string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.address.html":{"id":"faker.address.html","title":"Namespace: address","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: address faker. address Methods &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; country() country &lt;static&gt; country() country &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; county() county &lt;static&gt; county() county &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String Namespace: address faker. address Methods &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; cardinalDirection(useAbbr) cardinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; city(format) Generates a random localized city name. The format string can contain any method provided by faker wrapped in {{}}, e.g. {{name.firstName}} in order to build the city name. If no format string is provided one of the following is randomly used: {{address.cityPrefix}} {{name.firstName}}{{address.citySuffix}} {{address.cityPrefix}} {{name.firstName}} {{name.firstName}}{{address.citySuffix}} {{name.lastName}}{{address.citySuffix}} {{address.cityName}} when city name is available Parameters: Name Type Description format String &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityName() Returns a random city name &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; cityPrefix() Return a random localized city prefix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; citySuffix() Return a random localized city suffix &lt;static&gt; country() country &lt;static&gt; country() country &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; countryCode(alphaCode) countryCode Parameters: Name Type Description alphaCode string default alpha-2 &lt;static&gt; county() county &lt;static&gt; county() county &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; direction(useAbbr) direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; latitude(max, min, precision) latitude Parameters: Name Type Description max Double default is 90 min Double default is -90 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; longitude(max, min, precision) longitude Parameters: Name Type Description max Double default is 180 min Double default is -180 precision number default is 4 &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; ordinalDirection(useAbbr) ordinal direction Parameters: Name Type Description useAbbr Boolean return direction abbreviation. defaults to false &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; secondaryAddress() secondaryAddress &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; state(useAbbr) state Parameters: Name Type Description useAbbr Boolean &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; stateAbbr() stateAbbr &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetAddress(useFullAddress) Returns a random localized street address Parameters: Name Type Description useFullAddress Boolean &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetName() Returns a random localized street name &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetPrefix() streetPrefix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; streetSuffix() streetSuffix &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; timeZone() Return a random time zone &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCode(format) Generates random zipcode from format. If format is not specified, the locale's zip format is used. Parameters: Name Type Description format String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String &lt;static&gt; zipCodeByState(state) Generates random zipcode from state abbreviation. If state abbreviation is not specified, a random zip code is generated according to the locale's zip format. Only works for locales with postcode_by_state definition. If a locale does not have a postcode_by_state definition, a random zip code is generated according to the locale's zip format. Parameters: Name Type Description state String × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.animal.html":{"id":"faker.animal.html","title":"Namespace: animal","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: animal faker. animal Methods &lt;static&gt; bear() bear &lt;static&gt; bear() bear &lt;static&gt; bird() bird &lt;static&gt; bird() bird &lt;static&gt; cat() cat &lt;static&gt; cat() cat &lt;static&gt; cetacean() cetacean &lt;static&gt; cetacean() cetacean &lt;static&gt; cow() cow &lt;static&gt; cow() cow &lt;static&gt; crocodilia() crocodilia &lt;static&gt; crocodilia() crocodilia &lt;static&gt; dog() dog &lt;static&gt; dog() dog &lt;static&gt; fish() fish &lt;static&gt; fish() fish &lt;static&gt; horse() horse &lt;static&gt; horse() horse &lt;static&gt; insect() insect &lt;static&gt; insect() insect &lt;static&gt; lion() lion &lt;static&gt; lion() lion &lt;static&gt; rabbit() rabbit &lt;static&gt; rabbit() rabbit &lt;static&gt; snake() snake &lt;static&gt; snake() snake &lt;static&gt; type() type &lt;static&gt; type() type Namespace: animal faker. animal Methods &lt;static&gt; bear() bear &lt;static&gt; bear() bear &lt;static&gt; bird() bird &lt;static&gt; bird() bird &lt;static&gt; cat() cat &lt;static&gt; cat() cat &lt;static&gt; cetacean() cetacean &lt;static&gt; cetacean() cetacean &lt;static&gt; cow() cow &lt;static&gt; cow() cow &lt;static&gt; crocodilia() crocodilia &lt;static&gt; crocodilia() crocodilia &lt;static&gt; dog() dog &lt;static&gt; dog() dog &lt;static&gt; fish() fish &lt;static&gt; fish() fish &lt;static&gt; horse() horse &lt;static&gt; horse() horse &lt;static&gt; insect() insect &lt;static&gt; insect() insect &lt;static&gt; lion() lion &lt;static&gt; lion() lion &lt;static&gt; rabbit() rabbit &lt;static&gt; rabbit() rabbit &lt;static&gt; snake() snake &lt;static&gt; snake() snake &lt;static&gt; type() type &lt;static&gt; type() type × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.commerce.html":{"id":"faker.commerce.html","title":"Namespace: commerce","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: commerce faker. commerce Methods &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; department() department &lt;static&gt; department() department &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; product() product &lt;static&gt; product() product &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productDescription() productDescription &lt;static&gt; productDescription() productDescription &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productName() productName &lt;static&gt; productName() productName Namespace: commerce faker. commerce Methods &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; department() department &lt;static&gt; department() department &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; price(min, max, dec, symbol) price Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; product() product &lt;static&gt; product() product &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productAdjective() productAdjective &lt;static&gt; productDescription() productDescription &lt;static&gt; productDescription() productDescription &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productMaterial() productMaterial &lt;static&gt; productName() productName &lt;static&gt; productName() productName × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.company.html":{"id":"faker.company.html","title":"Namespace: company","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: company faker. company Methods &lt;static&gt; bs() bs &lt;static&gt; bs() bs &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsNoun() bsNoun &lt;static&gt; bsNoun() bsNoun &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companySuffix() companySuffix &lt;static&gt; companySuffix() companySuffix &lt;static&gt; suffixes() suffixes &lt;static&gt; suffixes() suffixes Namespace: company faker. company Methods &lt;static&gt; bs() bs &lt;static&gt; bs() bs &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsAdjective() bsAdjective &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsBuzz() bsBuzz &lt;static&gt; bsNoun() bsNoun &lt;static&gt; bsNoun() bsNoun &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhrase() catchPhrase &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseAdjective() catchPhraseAdjective &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseDescriptor() catchPhraseDescriptor &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; catchPhraseNoun() catchPhraseNoun &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companyName(format) companyName Parameters: Name Type Description format string &lt;static&gt; companySuffix() companySuffix &lt;static&gt; companySuffix() companySuffix &lt;static&gt; suffixes() suffixes &lt;static&gt; suffixes() suffixes × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.database.html":{"id":"faker.database.html","title":"Namespace: database","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: database faker. database Methods &lt;static&gt; collation() collation &lt;static&gt; collation() collation &lt;static&gt; column() column &lt;static&gt; column() column &lt;static&gt; engine() engine &lt;static&gt; engine() engine &lt;static&gt; type() type &lt;static&gt; type() type Namespace: database faker. database Methods &lt;static&gt; collation() collation &lt;static&gt; collation() collation &lt;static&gt; column() column &lt;static&gt; column() column &lt;static&gt; engine() engine &lt;static&gt; engine() engine &lt;static&gt; type() type &lt;static&gt; type() type × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.datatype.html":{"id":"faker.datatype.html","title":"Namespace: datatype","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: datatype faker. datatype Methods &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; uuid() uuid &lt;static&gt; uuid() uuid Namespace: datatype faker. datatype Methods &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; array(length) returns an array with values generated by faker.datatype.number and faker.datatype.string Parameters: Name Type Description length number of the returned array &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; datetime(options,) method returns a Date object using a random number of milliseconds since 1. Jan 1970 UTC Caveat: seeding is not working Parameters: Name Type Description options, mixed pass min OR max as number of milliseconds since 1. Jan 1970 UTC &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; float(options) returns a single random floating-point number based on a max number or range Parameters: Name Type Description options mixed &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; hexaDecimal(count) hexaDecimal Parameters: Name Type Description count number defaults to 1 &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; json() returns json object with 7 pre-defined properties &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; number(options) returns a single random number based on a max number or range Parameters: Name Type Description options mixed {min, max, precision} &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; string(length:) Returns a string, containing UTF-16 chars between 33 and 125 ('!' to '}') Parameters: Name Type Description length: number length of generated string, default = 10, max length = 2^20 &lt;static&gt; uuid() uuid &lt;static&gt; uuid() uuid × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.date.html":{"id":"faker.date.html","title":"Namespace: date","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: date faker. date Methods &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object Namespace: date faker. date Methods &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) between Parameters: Name Type Description from date to date &lt;static&gt; between(from, to) betweens Parameters: Name Type Description from date to date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; future(years, refDate) future Parameters: Name Type Description years number refDate date &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; month(options) month Parameters: Name Type Description options object &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; past(years, refDate) past Parameters: Name Type Description years number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; recent(days, refDate) recent Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; soon(days, refDate) soon Parameters: Name Type Description days number refDate date &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object &lt;static&gt; weekday(options) weekday Parameters: Name Type Description options object × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.finance.html":{"id":"faker.finance.html","title":"Namespace: finance","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: finance faker. finance Methods &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; accountName() accountName &lt;static&gt; accountName() accountName &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; bic() bic &lt;static&gt; bic() bic &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyName() currencyName &lt;static&gt; currencyName() currencyName &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; routingNumber() routingNumber &lt;static&gt; routingNumber() routingNumber &lt;static&gt; transactionDescription() description &lt;static&gt; transactionDescription() description &lt;static&gt; transactionType() transactionType &lt;static&gt; transactionType() transactionType Namespace: finance faker. finance Methods &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; account(length) account Parameters: Name Type Description length number &lt;static&gt; accountName() accountName &lt;static&gt; accountName() accountName &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; amount(min, max, dec, symbol) amount Parameters: Name Type Description min number max number dec number symbol string Returns: Type string &lt;static&gt; bic() bic &lt;static&gt; bic() bic &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; bitcoinAddress() bitcoinAddress &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardCVV() Credit card CVV &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; creditCardNumber(provider) Credit card number Parameters: Name Type Description provider string | scheme &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyCode() currencyCode &lt;static&gt; currencyName() currencyName &lt;static&gt; currencyName() currencyName &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; currencySymbol() currencySymbol &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; ethereumAddress() ethereumAddress &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; iban( [formatted] [, countryCode]) iban Parameters: Name Type Argument Default Description formatted boolean &lt;optional&gt; false Return a formatted version of the generated IBAN. countryCode string &lt;optional&gt; The country code from which you want to generate an IBAN, if none is provided a random country will be used. Throws: Will throw an error if the passed country code is not supported. &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; litecoinAddress() litecoinAddress &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; mask(length, parens, ellipsis) mask Parameters: Name Type Description length number parens boolean ellipsis boolean &lt;static&gt; routingNumber() routingNumber &lt;static&gt; routingNumber() routingNumber &lt;static&gt; transactionDescription() description &lt;static&gt; transactionDescription() description &lt;static&gt; transactionType() transactionType &lt;static&gt; transactionType() transactionType × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.git.html":{"id":"faker.git.html","title":"Namespace: git","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: git faker. git Methods &lt;static&gt; branch() branch &lt;static&gt; branch() branch &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitSha() commitSha &lt;static&gt; commitSha() commitSha &lt;static&gt; shortSha() shortSha &lt;static&gt; shortSha() shortSha Namespace: git faker. git Methods &lt;static&gt; branch() branch &lt;static&gt; branch() branch &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitEntry(options) commitEntry Parameters: Name Type Description options object &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitMessage() commitMessage &lt;static&gt; commitSha() commitSha &lt;static&gt; commitSha() commitSha &lt;static&gt; shortSha() shortSha &lt;static&gt; shortSha() shortSha × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.hacker.html":{"id":"faker.hacker.html","title":"Namespace: hacker","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: hacker faker. hacker Methods &lt;static&gt; abbreviation() abbreviation &lt;static&gt; abbreviation() abbreviation &lt;static&gt; adjective() adjective &lt;static&gt; adjective() adjective &lt;static&gt; ingverb() ingverb &lt;static&gt; ingverb() ingverb &lt;static&gt; noun() noun &lt;static&gt; noun() noun &lt;static&gt; phrase() phrase &lt;static&gt; phrase() phrase &lt;static&gt; verb() verb &lt;static&gt; verb() verb Namespace: hacker faker. hacker Methods &lt;static&gt; abbreviation() abbreviation &lt;static&gt; abbreviation() abbreviation &lt;static&gt; adjective() adjective &lt;static&gt; adjective() adjective &lt;static&gt; ingverb() ingverb &lt;static&gt; ingverb() ingverb &lt;static&gt; noun() noun &lt;static&gt; noun() noun &lt;static&gt; phrase() phrase &lt;static&gt; phrase() phrase &lt;static&gt; verb() verb &lt;static&gt; verb() verb × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.helpers.html":{"id":"faker.helpers.html","title":"Namespace: helpers","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: helpers faker. helpers Methods &lt;static&gt; contextualCard() contextualCard &lt;static&gt; contextualCard() contextualCard &lt;static&gt; createCard() createCard &lt;static&gt; createCard() createCard &lt;static&gt; createTransaction() createTransaction &lt;static&gt; createTransaction() createTransaction &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; userCard() userCard &lt;static&gt; userCard() userCard Namespace: helpers faker. helpers Methods &lt;static&gt; contextualCard() contextualCard &lt;static&gt; contextualCard() contextualCard &lt;static&gt; createCard() createCard &lt;static&gt; createCard() createCard &lt;static&gt; createTransaction() createTransaction &lt;static&gt; createTransaction() createTransaction &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; mustache(str, data) mustache Parameters: Name Type Description str string data object &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; randomize(array) backward-compatibility Parameters: Name Type Description array array &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; regexpStyleStringParse(string) parse string patterns in a similar way to RegExp e.g. \"#{3}test[1-5]\" -&gt; \"###test4\" Parameters: Name Type Description string string &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; repeatString(string, num) string repeat helper, alternative to String.prototype.repeat.... See PR #382 Parameters: Name Type Description string string num number &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceCreditCardSymbols(string, symbol) replace symbols in a credit card schems including Luhn checksum Parameters: Name Type Description string string symbol string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbols(string) parses string for symbols (numbers or letters) and replaces them appropriately (# will be replaced with number, ? with letter and * will be replaced with number or letter) Parameters: Name Type Description string string &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; replaceSymbolWithNumber(string, symbol) parses string for a symbol and replace it with a random number from 1-10 Parameters: Name Type Description string string symbol string defaults to \"#\" &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; shuffle(o) takes an array and randomizes it in place then returns it uses the modern version of the Fisher–Yates algorithm Parameters: Name Type Description o array &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; slugify(string) slugifies string Parameters: Name Type Description string string &lt;static&gt; userCard() userCard &lt;static&gt; userCard() userCard × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.html":{"id":"faker.image.html","title":"Namespace: image","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: image faker. image Properties: Name Type Description lorempixel object faker.image.lorempixel unsplash object faker.image.unsplash unsplash object faker.image.lorempicsum Default Value: Default provider is unsplash image provider Namespaces lorempicsum lorempixel unsplash Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean Namespace: image faker. image Properties: Name Type Description lorempixel object faker.image.lorempixel unsplash object faker.image.unsplash unsplash object faker.image.lorempicsum Default Value: Default provider is unsplash image provider Namespaces lorempicsum lorempixel unsplash Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; dataUri(width, height, color) dataUri Parameters: Name Type Description width number height number color string &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.lorempicsum.html":{"id":"faker.image.lorempicsum.html","title":"Namespace: lorempicsum","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorempicsum faker.image. lorempicsum Methods &lt;static&gt; avatar() avatar &lt;static&gt; image(width, height, grayscale, blur) search image from unsplash Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 &lt;static&gt; imageBlurred(width, height, blur) search blurred image from unsplash Parameters: Name Type Description width number height number blur number 1-10 &lt;static&gt; imageGrayscaled(width, height, grayscale) search grayscale image from unsplash Parameters: Name Type Description width number height number grayscale boolean &lt;static&gt; imageRandomSeeded(width, height, grayscale, blur, seed) search same random image from unsplash, based on a seed Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 seed string &lt;static&gt; imageUrl(width, height, grayscale, blur, seed) imageUrl Parameters: Name Type Description width number height number grayscale boolean blur number 1-10 seed string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.lorempixel.html":{"id":"faker.image.lorempixel.html","title":"Namespace: lorempixel","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorempixel faker.image. lorempixel Methods &lt;static&gt; abstract(width, height, randomize) abstract Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; animals(width, height, randomize) animals Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; avatar() avatar &lt;static&gt; business(width, height, randomize) business Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; cats(width, height, randomize) cats Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; city(width, height, randomize) city Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; fashion(width, height, randomize) fashion Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; food(width, height, randomize) food Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; image(width, height, randomize) image Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; imageUrl(width, height, category, randomize) imageUrl Parameters: Name Type Description width number height number category string randomize boolean &lt;static&gt; nature(width, height, randomize) nature Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; nightlife(width, height, randomize) nightlife Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; people(width, height, randomize) people Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; sports(width, height, randomize) sports Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; technics(width, height, randomize) technics Parameters: Name Type Description width number height number randomize boolean &lt;static&gt; transport(width, height, randomize) transport Parameters: Name Type Description width number height number randomize boolean × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.image.unsplash.html":{"id":"faker.image.unsplash.html","title":"Namespace: unsplash","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: unsplash faker.image. unsplash Methods &lt;static&gt; avatar() avatar &lt;static&gt; buildings(width, height, keyword) buildings Parameters: Name Type Description width number height number keyword string &lt;static&gt; food(width, height, keyword) food Parameters: Name Type Description width number height number keyword string &lt;static&gt; image(width, height, keyword) search image from unsplash Parameters: Name Type Description width number height number keyword string &lt;static&gt; imageUrl(width, height, category, keyword) imageUrl Parameters: Name Type Description width number height number category string keyword string &lt;static&gt; nature(width, height, keyword) nature Parameters: Name Type Description width number height number keyword string &lt;static&gt; objects(width, height, keyword) objects Parameters: Name Type Description width number height number keyword string &lt;static&gt; people(width, height, keyword) people Parameters: Name Type Description width number height number keyword string &lt;static&gt; technology(width, height, keyword) technology Parameters: Name Type Description width number height number keyword string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.internet.html":{"id":"faker.internet.html","title":"Namespace: internet","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: internet faker. internet Methods &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; domainName() domainName &lt;static&gt; domainName() domainName &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainWord() domainWord &lt;static&gt; domainWord() domainWord &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; httpMethod() method &lt;static&gt; httpMethod() method &lt;static&gt; ip() ip &lt;static&gt; ip() ip &lt;static&gt; ipv6() ipv6 &lt;static&gt; ipv6() ipv6 &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; port() port &lt;static&gt; port() port &lt;static&gt; protocol() protocol &lt;static&gt; protocol() protocol &lt;static&gt; url() url &lt;static&gt; url() url &lt;static&gt; userAgent() userAgent &lt;static&gt; userAgent() userAgent &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string Namespace: internet faker. internet Methods &lt;static&gt; avatar() avatar &lt;static&gt; avatar() avatar &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; color(baseRed255, baseGreen255, baseBlue255) color Parameters: Name Type Description baseRed255 number baseGreen255 number baseBlue255 number &lt;static&gt; domainName() domainName &lt;static&gt; domainName() domainName &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainSuffix() domainSuffix &lt;static&gt; domainWord() domainWord &lt;static&gt; domainWord() domainWord &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; email(firstName, lastName, provider) email Parameters: Name Type Description firstName string lastName string provider string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; exampleEmail(firstName, lastName) exampleEmail Parameters: Name Type Description firstName string lastName string &lt;static&gt; httpMethod() method &lt;static&gt; httpMethod() method &lt;static&gt; ip() ip &lt;static&gt; ip() ip &lt;static&gt; ipv6() ipv6 &lt;static&gt; ipv6() ipv6 &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; mac(sep) mac Parameters: Name Type Description sep string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; password(len, memorable, pattern, prefix) password Parameters: Name Type Description len number memorable boolean pattern string prefix string &lt;static&gt; port() port &lt;static&gt; port() port &lt;static&gt; protocol() protocol &lt;static&gt; protocol() protocol &lt;static&gt; url() url &lt;static&gt; url() url &lt;static&gt; userAgent() userAgent &lt;static&gt; userAgent() userAgent &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string &lt;static&gt; userName(firstName, lastName) userName Parameters: Name Type Description firstName string lastName string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.lorem.html":{"id":"faker.lorem.html","title":"Namespace: lorem","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: lorem faker. lorem Methods &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 Namespace: lorem faker. lorem Methods &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; lines(lineCount) returns lines of lorem separated by '\\n' Parameters: Name Type Description lineCount number defaults to a random number between 1 and 5 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraph(sentenceCount) paragraph Parameters: Name Type Description sentenceCount number defaults to 3 &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; paragraphs(paragraphCount, separator) paragraphs Parameters: Name Type Description paragraphCount number defaults to 3 separator string defaults to '\\n \\r' &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentence(wordCount, range) sentence Parameters: Name Type Description wordCount number defaults to a random number between 3 and 10 range number &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; sentences(sentenceCount, separator) sentences Parameters: Name Type Description sentenceCount number defautls to a random number between 2 and 6 separator string defaults to ' ' &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; slug(wordCount) slug Parameters: Name Type Description wordCount number number of words, defaults to 3 &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; text(times) returns random text based on a random lorem method Parameters: Name Type Description times number &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; word(length) generates a word of a specified length Parameters: Name Type Description length number length of the word that should be returned. Defaults to a random length &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 &lt;static&gt; words(num) generates a space separated list of words Parameters: Name Type Description num number number of words, defaults to 3 × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.music.html":{"id":"faker.music.html","title":"Namespace: music","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: music faker. music Methods &lt;static&gt; genre() genre &lt;static&gt; genre() genre Namespace: music faker. music Methods &lt;static&gt; genre() genre &lt;static&gt; genre() genre × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.name.html":{"id":"faker.name.html","title":"Namespace: name","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: name faker. name Methods &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; gender() gender &lt;static&gt; gender() gender &lt;static&gt; jobArea() jobArea &lt;static&gt; jobArea() jobArea &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobType() jobType &lt;static&gt; jobType() jobType &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; suffix() suffix &lt;static&gt; suffix() suffix &lt;static&gt; title() title &lt;static&gt; title() title Namespace: name faker. name Methods &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; findName(firstName, lastName, gender) findName Parameters: Name Type Description firstName string lastName string gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; firstName(gender) firstName Parameters: Name Type Description gender mixed &lt;static&gt; gender() gender &lt;static&gt; gender() gender &lt;static&gt; jobArea() jobArea &lt;static&gt; jobArea() jobArea &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobDescriptor() jobDescriptor &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobTitle() jobTitle &lt;static&gt; jobType() jobType &lt;static&gt; jobType() jobType &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; lastName(gender) lastName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; middleName(gender) middleName Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; prefix(gender) prefix Parameters: Name Type Description gender mixed &lt;static&gt; suffix() suffix &lt;static&gt; suffix() suffix &lt;static&gt; title() title &lt;static&gt; title() title × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.phone.html":{"id":"faker.phone.html","title":"Namespace: phone","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: phone faker. phone Methods &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string Namespace: phone faker. phone Methods &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormats() phoneFormats &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneFormatsArrayIndex(phoneFormatsArrayIndex) phoneNumberFormat Parameters: Name Type Description phoneFormatsArrayIndex &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string &lt;static&gt; phoneNumber(format) phoneNumber Parameters: Name Type Description format string × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.random.html":{"id":"faker.random.html","title":"Namespace: random","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: random faker. random Methods &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; image() locale &lt;static&gt; image() locale &lt;static&gt; locale() locale &lt;static&gt; locale() locale &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 Namespace: random faker. random Methods &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alpha(options) alpha. returns lower/upper alpha characters based count and upcase options Parameters: Name Type Description options mixed // defaults to { count: 1, upcase: false, bannedChars: [] } &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; alphaNumeric(count) alphaNumeric Parameters: Name Type Description count number defaults to 1 {mixed} options // defaults to { bannedChars: [] } options.bannedChars - array of characters which should be banned in new string &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElement(array) takes an array and returns a random element of the array Parameters: Name Type Description array array &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; arrayElements(array, count) takes an array and returns a subset with random elements of the array Parameters: Name Type Description array array count number number of elements to pick &lt;static&gt; boolean() boolean &lt;static&gt; boolean() boolean &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; float(options) Parameters: Name Type Description options mixed Deprecated: returns a single random floating-point number based on a max number or range &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; hexaDecimal(count) Parameters: Name Type Description count number defaults to 1 Deprecated: hexaDecimal &lt;static&gt; image() locale &lt;static&gt; image() locale &lt;static&gt; locale() locale &lt;static&gt; locale() locale &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; number(options) Parameters: Name Type Description options mixed {min, max, precision} Deprecated: returns a single random number based on a max number or range &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; objectElement(object, field) takes an object and returns a random key or value Parameters: Name Type Description object object field mixed &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; uuid() Deprecated: uuid &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; word(type) word Parameters: Name Type Description type string &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 &lt;static&gt; words(count) randomWords Parameters: Name Type Description count number defaults to a random value between 1 and 3 × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.system.html":{"id":"faker.system.html","title":"Namespace: system","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: system faker. system Methods &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; directoryPath() returns directory path &lt;static&gt; directoryPath() returns directory path &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileName() generates a file name &lt;static&gt; fileName() generates a file name &lt;static&gt; filePath() returns file path &lt;static&gt; filePath() returns file path &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; mimeType() mimeType &lt;static&gt; mimeType() mimeType &lt;static&gt; semver() semver &lt;static&gt; semver() semver Namespace: system faker. system Methods &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileExt() returns a commonly used file extension &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileName(ext) commonFileName Parameters: Name Type Description ext string &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; commonFileType() returns a commonly used file type &lt;static&gt; directoryPath() returns directory path &lt;static&gt; directoryPath() returns directory path &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileExt(mimeType) fileExt Parameters: Name Type Description mimeType string &lt;static&gt; fileName() generates a file name &lt;static&gt; fileName() generates a file name &lt;static&gt; filePath() returns file path &lt;static&gt; filePath() returns file path &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; fileType() returns any file type available as mime-type &lt;static&gt; mimeType() mimeType &lt;static&gt; mimeType() mimeType &lt;static&gt; semver() semver &lt;static&gt; semver() semver × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.time.html":{"id":"faker.time.html","title":"Namespace: time","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: time faker. time Methods &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) Namespace: time faker. time Methods &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) &lt;static&gt; recent(outputType) recent Parameters: Name Type Description outputType string 'abbr' || 'wide' || 'unix' (default choice) × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.unique.html":{"id":"faker.unique.html","title":"Namespace: unique","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: unique faker. unique Namespace: unique faker. unique × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "},"faker.vehicle.html":{"id":"faker.vehicle.html","title":"Namespace: vehicle","body":" Documentation Namespaces fakerfaker.addressfaker.animalfaker.commercefaker.companyfaker.databasefaker.datatypefaker.datefaker.financefaker.gitfaker.hackerfaker.helpersfaker.imagefaker.image.lorempicsumfaker.image.lorempixelfaker.image.unsplashfaker.internetfaker.loremfaker.musicfaker.namefaker.phonefaker.randomfaker.systemfaker.timefaker.uniquefaker.vehicle Global arrayRemoveunique Namespace: vehicle faker. vehicle Methods &lt;static&gt; bicycle() bicycle &lt;static&gt; bicycle() bicycle &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; fuel() fuel &lt;static&gt; fuel() fuel &lt;static&gt; manufacturer() manufacturer &lt;static&gt; manufacturer() manufacturer &lt;static&gt; model() model &lt;static&gt; model() model &lt;static&gt; type() type &lt;static&gt; type() type &lt;static&gt; vehicle() vehicle &lt;static&gt; vehicle() vehicle &lt;static&gt; vin() vin &lt;static&gt; vin() vin &lt;static&gt; vrm() vrm &lt;static&gt; vrm() vrm Namespace: vehicle faker. vehicle Methods &lt;static&gt; bicycle() bicycle &lt;static&gt; bicycle() bicycle &lt;static&gt; color() color &lt;static&gt; color() color &lt;static&gt; fuel() fuel &lt;static&gt; fuel() fuel &lt;static&gt; manufacturer() manufacturer &lt;static&gt; manufacturer() manufacturer &lt;static&gt; model() model &lt;static&gt; model() model &lt;static&gt; type() type &lt;static&gt; type() type &lt;static&gt; vehicle() vehicle &lt;static&gt; vehicle() vehicle &lt;static&gt; vin() vin &lt;static&gt; vin() vin &lt;static&gt; vrm() vrm &lt;static&gt; vrm() vrm × Search results Close Documentation generated by JSDoc 3.6.6 on 2021-03-30T13:03:12-04:00 using the DocStrap template. "}} </script> <script type="text/javascript"> $(document).ready(function() { Searcher.init(); }); $(window).on("message", function(msg) { var msgData = msg.originalEvent.data; if (msgData.msgid != "docstrap.quicksearch.start") { return; } var results = Searcher.search(msgData.searchTerms); window.parent.postMessage({"results": results, "msgid": "docstrap.quicksearch.done"}, "*"); }); </script> </body> </html>
HTML
4
digitalcoyote/faker
doc/quicksearch.html
[ "MIT" ]
// RUN: %target-run-stdlib-swift // REQUIRES: executable_test // Freestanding doesn't support environment variables, and this test depends on SWIFT_DETERMINISTIC_HASHING=1 // UNSUPPORTED: freestanding import Swift import SwiftPrivate import StdlibUnittest var HashingTestSuite = TestSuite("Hashing") func checkHash( for value: UInt64, withSeed seed: UInt, expected: UInt64, file: String = #file, line: UInt = #line ) { var hasher = Hasher(_seed: Int(bitPattern: seed)) hasher._combine(value) let hash = hasher.finalize() expectEqual( hash, Int(truncatingIfNeeded: expected), file: file, line: line) } HashingTestSuite.test("Hasher/CustomKeys") { // This assumes Hasher implements SipHash-1-3 and hashing is deterministic. expectTrue(Hasher._isDeterministic) checkHash(for: 0, withSeed: 0, expected: 0xbd60acb658c79e45) checkHash(for: 1, withSeed: 0, expected: 0x1e9f734161d62dd9) checkHash(for: .max, withSeed: 0, expected: 0x2f205be2fec8e38d) checkHash(for: 0, withSeed: 1, expected: 0x9c44b7c8df2ca74b) checkHash(for: 1, withSeed: 1, expected: 0xacb556b13007504a) checkHash(for: .max, withSeed: 1, expected: 0x404afd8eb2c4b22a) checkHash(for: 0, withSeed: 0xFFFFFFFF, expected: 0x47329159fe988221) checkHash(for: 1, withSeed: 0xFFFFFFFF, expected: 0xd7da861471fc35dc) checkHash(for: .max, withSeed: 0xFFFFFFFF, expected: 0xf6e3047fc114dbc0) #if !(arch(i386) || arch(arm) || arch(arm64_32)) checkHash(for: 0, withSeed: 0xFFFFFFFF_FFFFFFFF, expected: 0x8d0ea5ad8d6a55c7) checkHash(for: 1, withSeed: 0xFFFFFFFF_FFFFFFFF, expected: 0x2899f60d6b5bc847) checkHash(for: .max, withSeed: 0xFFFFFFFF_FFFFFFFF, expected: 0xc4d7726fff5e65a0) #endif } HashingTestSuite.test("Hasher/DefaultKey") { let value: UInt64 = 0x0102030405060708 let defaultHash = _hashValue(for: value) let rawHash = value._rawHashValue(seed: 0) expectEqual(rawHash, defaultHash) let oneShotHash = Hasher._hash(seed: 0, value) expectEqual(oneShotHash, defaultHash) var defaultHasher = Hasher() defaultHasher._combine(value) expectEqual(defaultHasher.finalize(), defaultHash) var customHasher = Hasher(_seed: 0) customHasher._combine(value) expectEqual(customHasher.finalize(), defaultHash) } HashingTestSuite.test("Hashing/TopLevelHashing/UInt64") { func checkTopLevelHash( for value: UInt64, seed: Int, file: String = #file, line: UInt = #line) { var hasher = Hasher(_seed: seed) hasher._combine(value) let expected = hasher.finalize() let actual = Hasher._hash(seed: seed, value) expectEqual(actual, expected, file: file, line: line) } checkTopLevelHash(for: 0, seed: 0) checkTopLevelHash(for: 1, seed: 0) checkTopLevelHash(for: 0, seed: 1) checkTopLevelHash(for: 1, seed: 1) checkTopLevelHash(for: 0x0102030405060708, seed: 1) checkTopLevelHash(for: 0x0102030405060708, seed: Int.max) checkTopLevelHash(for: UInt64.max, seed: 1) checkTopLevelHash(for: UInt64.max, seed: Int.max) } HashingTestSuite.test("Hashing/TopLevelHashing/UInt") { func checkTopLevelHash( for value: UInt, seed: Int, file: String = #file, line: UInt = #line) { var hasher = Hasher(_seed: seed) hasher._combine(value) let expected = hasher.finalize() let actual = Hasher._hash(seed: seed, value) expectEqual(actual, expected, file: file, line: line) } checkTopLevelHash(for: 0, seed: 0) checkTopLevelHash(for: 1, seed: 0) checkTopLevelHash(for: 0, seed: 1) checkTopLevelHash(for: 1, seed: 1) checkTopLevelHash( for: UInt(truncatingIfNeeded: 0x0102030405060708 as UInt64), seed: 1) checkTopLevelHash( for: UInt(truncatingIfNeeded: 0x0102030405060708 as UInt64), seed: Int(truncatingIfNeeded: 0x8877665544332211 as UInt64)) checkTopLevelHash(for: UInt.max, seed: 1) checkTopLevelHash(for: UInt.max, seed: Int.max) } HashingTestSuite.test("Hashing/TopLevelHashing/PartialUInt64") { func checkTopLevelHash( for value: UInt64, count: Int, seed: Int, file: String = #file, line: UInt = #line) { var hasher = Hasher(_seed: seed) hasher._combine(bytes: value, count: count) let expected = hasher.finalize() let actual = Hasher._hash(seed: seed, bytes: value, count: count) expectEqual( actual, expected, "seed: \(seed), value: \(value), count: \(count)", file: file, line: line) } for seed: Int in [ 0, 1, 2, Int(truncatingIfNeeded: 0x1827364554637281 as UInt64), Int(truncatingIfNeeded: 0xf9e8d7c6b5a49382 as UInt64) ] { for count in 1 ..< 8 { checkTopLevelHash(for: 0, count: count, seed: seed) } checkTopLevelHash(for: 0x01, count: 1, seed: seed) checkTopLevelHash(for: 0x0102, count: 2, seed: seed) checkTopLevelHash(for: 0x010203, count: 3, seed: seed) checkTopLevelHash(for: 0x01020304, count: 4, seed: seed) checkTopLevelHash(for: 0x0102030405, count: 5, seed: seed) checkTopLevelHash(for: 0x010203040506, count: 6, seed: seed) checkTopLevelHash(for: 0x01020304050607, count: 7, seed: seed) } } HashingTestSuite.test("Hashing/TopLevelHashing/UnsafeRawBufferPointer") { func checkTopLevelHash( for buffer: [UInt8], seed: Int, file: String = #file, line: UInt = #line) { var hasher = Hasher(_seed: seed) buffer.withUnsafeBytes { buffer in hasher.combine(bytes: buffer) } let expected = hasher.finalize() let actual = buffer.withUnsafeBytes { buffer in Hasher._hash(seed: seed, bytes: buffer) } expectEqual( actual, expected, "seed: \(seed), buffer: \(buffer)", file: file, line: line) } for seed: Int in [ 0, 1, 2, Int(truncatingIfNeeded: 0x1827364554637281 as UInt64), Int(truncatingIfNeeded: 0xf9e8d7c6b5a49382 as UInt64) ] { var zeros: [UInt8] = [] var integers: [UInt8] = [] for i: UInt8 in 0 ..< 20 { zeros.append(0) checkTopLevelHash(for: zeros, seed: seed) integers.append(i) checkTopLevelHash(for: integers, seed: seed) } } } runAllTests()
Swift
5
xjc90s/swift
validation-test/stdlib/Hashing.swift
[ "Apache-2.0" ]
/*620 <exp> stwu r1,-80(r1) 624 <exp+4> stfd f1,32(r1) 628 <exp+8> mffs f9 0000062c <exp+c> lis r3,0 RELOC: 0000062e R_PPC_ADDR16_HA log_table_base 00000630 <exp+10> lwz r10,32(r1) 00000634 <exp+14> addi r3,r3,0 RELOC: 00000636 R_PPC_ADDR16_LO log_table_base 00000638 <exp+18> lfd f0,-1200(r3) 0000063c <exp+1c> rlwinm r12,r10,12,21,31 00000640 <exp+20> lfd f11,-1088(r3) 00000644 <exp+24> addi r9,r12,-970 00000648 <exp+28> lfd f6,-1096(r3) 0000064c <exp+2c> mtfsf 255,f0 00000650 <exp+30> cmplwi cr6,r9,64 00000654 <exp+34> lfd f8,-1080(r3) 00000658 <exp+38> bge cr6,00000778 <exp_no_computation> 0000065c <exp+3c> addi r8,r3,-1064 00000660 <exp+40> lfd f3,-1072(r3) 00000664 <exp+44> fmadd f10,f1,f11,f6 00000668 <exp+48> lfd f4,-520(r3) 0000066c <exp+4c> lfd f7,-528(r3) 00000670 <exp+50> stfd f10,32(r1) 00000674 <exp+54> fsub f10,f10,f6 00000678 <exp+58> lwz r6,36(r1) 0000067c <exp+5c> fnmsub f12,f10,f8,f1 00000680 <exp+60> rlwinm r9,r6,4,23,27 00000684 <exp+64> lfd f5,-536(r3) 00000688 <exp+68> srawi r11,r6,5 0000068c <exp+6c> lfdx f8,r8,r9 00000690 <exp+70> addi r8,r8,8 00000694 <exp+74> lfd f2,-544(r3) 00000698 <exp+78> fmsub f10,f10,f3,f8 0000069c <exp+7c> lfd f0,-552(r3) 000006a0 <exp+80> fadd f3,f12,f10 000006a4 <exp+84> lfdx f11,r8,r9 000006a8 <exp+88> fmul f6,f3,f3 000006ac <exp+8c> addi r9,r11,1021 000006b0 <exp+90> fmadd f4,f3,f4,f7 000006b4 <exp+94> cmplwi cr6,r9,2044 000006b8 <exp+98> fmadd f5,f3,f5,f2 000006bc <exp+9c> fmul f2,f6,f3 000006c0 <exp+a0> fmadd f0,f6,f0,f10 000006c4 <exp+a4> fmadd f5,f6,f4,f5 000006c8 <exp+a8> fmadd f0,f2,f5,f0 000006cc <exp+ac> fadd f0,f0,f12 000006d0 <exp+b0> fmadd f0,f0,f11,f11 000006d4 <exp+b4> stfd f0,32(r1) 000006d8 <exp+b8> lwz r5,32(r1) 000006dc <exp+bc> bge cr6,00000700 <exp_possible_over_under> 000006e0 <exp+c0> rlwinm r6,r5,12,21,31 000006e4 <exp+c4> add r6,r11,r6 000006e8 <exp_result_ok> rlwimi r5,r6,20,1,11 000006ec <exp_result_ok+4> stw r5,32(r1) 000006f0 <exp_result_ok+8> lfd f1,32(r1) 000006f4 <exp_result_ok+c> mtfsf 255,f9 000006f8 <exp_result_ok+10> addi r1,r1,80 000006fc <exp_result_ok+14> blr 00000700 <exp_possible_over_under> rlwinm r6,r5,12,21,31 00000704 <exp_possible_over_under+4> add. r6,r11,r6 00000708 <exp_possible_over_under+8> addi r7,r6,-1 0000070c <exp_possible_over_under+c> cmplwi cr7,r7,2046 00000710 <exp_possible_over_under+10> blt- cr7,000006e8 <exp_result_ok> 00000714 <exp_possible_over_under+14> bgt+ 00000758 <exp_aix_overflow> 00000718 <exp_possible_over_under+18> cmpwi cr6,r6,-52 0000071c <exp_possible_over_under+1c> bgt cr6,0000073c <exp_aix_denorm> 00000720 <exp_possible_over_under+20> mr. r5,r5 00000724 <exp_possible_over_under+24> lfd f1,-1176(r3) 00000728 <exp_possible_over_under+28> bge 00000730 <exp_aix_return_zero> 0000072c <exp_possible_over_under+2c> fneg f1,f1 00000730 <exp_aix_return_zero> mtfsf 255,f9 00000734 <exp_aix_return_zero+4> addi r1,r1,80 00000738 <exp_aix_return_zero+8> blr 0000073c <exp_aix_denorm> addi r6,r6,64 00000740 <exp_aix_denorm+4> lfd f2,-1112(r3) 00000744 <exp_aix_denorm+8> rlwimi r5,r6,20,1,11 00000748 <exp_aix_denorm+c> stw r5,32(r1) 0000074c <exp_aix_denorm+10> lfd f1,32(r1) 00000750 <exp_aix_denorm+14> fmul f1,f1,f2 00000754 <exp_aix_denorm+18> b 0000075c <exp_aix_range_returns> 00000758 <exp_aix_overflow> lfd f1,-1184(r3) 0000075c <exp_aix_range_returns> lis r5,0 RELOC: 0000075e R_PPC_ADDR16_HA errno 00000760 <exp_aix_range_returns+4> li r3,34 00000764 <exp_aix_range_returns+8> stw r3,0(r5) RELOC: 00000766 R_PPC_ADDR16_LO errno 00000768 <exp_aix_range_returns+c> lfd f2,64(r1) 0000076c <exp_aix_range_returns+10> mtfsf 255,f9 00000770 <exp_aix_range_returns+14> addi r1,r1,80 00000774 <exp_aix_range_returns+18> blr 00000778 <exp_no_computation> cmpwi cr6,r9,0 0000077c <exp_no_computation+4> stfd f9,64(r1) 00000780 <exp_no_computation+8> lwz r11,36(r1) 00000784 <exp_no_computation+c> cmpwi cr7,r12,2047 00000788 <exp_no_computation+10> lwz r8,68(r1) 0000078c <exp_no_computation+14> cmpwi cr5,r10,0 00000790 <exp_no_computation+18> bge cr6,000007c0 <exp_inf_large_nan> 00000794 <exp_zero_or_small> clrlwi r9,r10,1 00000798 <exp_zero_or_small+4> or. r9,r9,r11 0000079c <exp_zero_or_small+8> blt+ 000007b0 <exp_zero> 000007a0 <exp_small> fmr f1,f0 000007a4 <exp_small+4> mtfsf 255,f9 000007a8 <exp_small+8> addi r1,r1,80 000007ac <exp_small+c> blr 000007b0 <exp_zero> fmr f1,f0 000007b4 <exp_exact> mtfsf 255,f9 000007b8 <exp_exact+4> addi r1,r1,80 000007bc <exp_exact+8> blr 000007c0 <exp_inf_large_nan> beq cr7,000007d8 <exp_inf_nan> 000007c4 <exp_inf_large_nan+4> blt cr5,000007d0 <exp_unf> 000007c8 <exp_ovf> lfd f1,-1184(r3) 000007cc <exp_ovf+4> b 0000075c <exp_aix_range_returns> 000007d0 <exp_unf> fsub f1,f0,f0 000007d4 <exp_unf+4> b 0000075c <exp_aix_range_returns> 000007d8 <exp_inf_nan> clrlwi r9,r10,12 000007dc <exp_inf_nan+4> or. r9,r9,r11 000007e0 <exp_inf_nan+8> bne 000007f0 <exp_nan> 000007e4 <exp_inf> bge cr5,000007b4 <exp_exact> 000007e8 <exp_inf+4> fsub f1,f0,f0 000007ec <exp_inf+8> b 000007b4 <exp_exact> 000007f0 <exp_nan> rlwinm. r9,r10,0,12,12 000007f4 <exp_nan+4> beq 000007fc <exp_snan> 000007f8 <exp_qnan> b 00000810 <exp_aix_domain_returns> 000007fc <exp_snan> stw r11,36(r1) 00000800 <exp_snan+4> oris r9,r10,8 00000804 <exp_snan+8> stw r9,32(r1) 00000808 <exp_snan+c> lfd f1,32(r1) 0000080c <exp_snan+10> b 00000810 <exp_aix_domain_returns> 00000810 <exp_aix_domain_returns> lis r5,0 RELOC: 00000812 R_PPC_ADDR16_HA errno 00000814 <exp_aix_domain_returns+4> li r3,33 00000818 <exp_aix_domain_returns+8> stw r3,0(r5) RELOC: 0000081a R_PPC_ADDR16_LO errno 0000081c <exp_aix_domain_returns+c> lfd f2,64(r1) 00000820 <exp_aix_domain_returns+10> mtfsf 255,f2 00000824 <exp_aix_domain_returns+14> addi r1,r1,80 00000828 <exp_aix_domain_returns+18> blr 0000082c <exp_aix_domain_returns+1c> stwu r1,-80(r1) 00000830 <exp_aix_domain_returns+20> stfd f1,32(r1) 00000834 <exp_aix_domain_returns+24> mffs f9 00000838 <exp_aix_domain_returns+28> lis r3,0 RELOC: 0000083a R_PPC_ADDR16_HA log_table_base 0000083c <exp_aix_domain_returns+2c> lwz r10,32(r1) 00000840 <exp_aix_domain_returns+30> addi r3,r3,0 RELOC: 00000842 R_PPC_ADDR16_LO log_table_base 00000844 <exp_aix_domain_returns+34> lfd f0,-1200(r3) 00000848 <exp_aix_domain_returns+38> rlwinm r12,r10,12,21,31 0000084c <exp_aix_domain_returns+3c> lfd f11,-1088(r3) 00000850 <exp_aix_domain_returns+40> addi r9,r12,-999 00000854 <exp_aix_domain_returns+44> lfd f6,-1096(r3) 00000858 <exp_aix_domain_returns+48> mtfsf 255,f0 0000085c <exp_aix_domain_returns+4c> cmplwi cr6,r9,32 00000860 <exp_aix_domain_returns+50> lfd f8,-1080(r3) 00000864 <exp_aix_domain_returns+54> bge cr6,0000093c <sexp_no_computation> 00000868 <exp_aix_domain_returns+58> addi r8,r3,-1064 0000086c <exp_aix_domain_returns+5c> lfd f3,-1072(r3) 00000870 <exp_aix_domain_returns+60> fmadd f10,f1,f11,f6 00000874 <exp_aix_domain_returns+64> lfd f4,-520(r3) 00000878 <exp_aix_domain_returns+68> lfd f7,-528(r3) 0000087c <exp_aix_domain_returns+6c> stfd f10,32(r1) 00000880 <exp_aix_domain_returns+70> fsub f10,f10,f6 00000884 <exp_aix_domain_returns+74> lwz r6,36(r1) 00000888 <exp_aix_domain_returns+78> fnmsub f12,f10,f8,f1 0000088c <exp_aix_domain_returns+7c> rlwinm r9,r6,4,23,27 00000890 <exp_aix_domain_returns+80> lfd f5,-536(r3) 00000894 <exp_aix_domain_returns+84> srawi r11,r6,5 00000898 <exp_aix_domain_returns+88> lfdx f8,r8,r9 0000089c <exp_aix_domain_returns+8c> addi r8,r8,8 000008a0 <exp_aix_domain_returns+90> lfd f2,-544(r3) 000008a4 <exp_aix_domain_returns+94> fmsub f10,f10,f3,f8 000008a8 <exp_aix_domain_returns+98> lfd f0,-552(r3) 000008ac <exp_aix_domain_returns+9c> fadd f3,f12,f10 000008b0 <exp_aix_domain_returns+a0> lfdx f11,r8,r9 000008b4 <exp_aix_domain_returns+a4> fmul f6,f3,f3 000008b8 <exp_aix_domain_returns+a8> fmadd f4,f3,f4,f7 000008bc <exp_aix_domain_returns+ac> fmadd f5,f3,f5,f2 000008c0 <exp_aix_domain_returns+b0> fmul f2,f6,f3 000008c4 <exp_aix_domain_returns+b4> fmadd f0,f6,f0,f10 000008c8 <exp_aix_domain_returns+b8> fmadd f5,f6,f4,f5 000008cc <exp_aix_domain_returns+bc> fmadd f0,f2,f5,f0 000008d0 <exp_aix_domain_returns+c0> fadd f0,f0,f12 000008d4 <exp_aix_domain_returns+c4> fmadd f0,f0,f11,f11 000008d8 <exp_aix_domain_returns+c8> stfd f0,32(r1) 000008dc <exp_aix_domain_returns+cc> lwz r5,32(r1) 000008e0 <exp_aix_domain_returns+d0> rlwinm r6,r5,12,21,31 000008e4 <exp_aix_domain_returns+d4> add r6,r11,r6 000008e8 <exp_aix_domain_returns+d8> rlwimi r5,r6,20,1,11 000008ec <exp_aix_domain_returns+dc> stw r5,32(r1) 000008f0 <exp_aix_domain_returns+e0> lfd f1,32(r1) 000008f4 <exp_aix_domain_returns+e4> frsp f1,f1 000008f8 <exp_aix_domain_returns+e8> mtfsf 255,f9 000008fc <exp_aix_domain_returns+ec> addi r1,r1,80 00000900 <exp_aix_domain_returns+f0> blr 00000904 <sexp_aix_domain_returns> lis r5,0 RELOC: 00000906 R_PPC_ADDR16_HA errno 00000908 <sexp_aix_domain_returns+4> li r3,33 0000090c <sexp_aix_domain_returns+8> stw r3,0(r5) RELOC: 0000090e R_PPC_ADDR16_LO errno 00000910 <sexp_aix_domain_returns+c> lfd f2,64(r1) 00000914 <sexp_aix_domain_returns+10> mtfsf 255,f2 00000918 <sexp_aix_domain_returns+14> addi r1,r1,80 0000091c <sexp_aix_domain_returns+18> blr 00000920 <sexp_aix_range_returns> lis r5,0 RELOC: 00000922 R_PPC_ADDR16_HA errno 00000924 <sexp_aix_range_returns+4> li r3,34 00000928 <sexp_aix_range_returns+8> stw r3,0(r5) RELOC: 0000092a R_PPC_ADDR16_LO errno 0000092c <sexp_aix_range_returns+c> lfd f2,64(r1) 00000930 <sexp_aix_range_returns+10> mtfsf 255,f9 00000934 <sexp_aix_range_returns+14> addi r1,r1,80 00000938 <sexp_aix_range_returns+18> blr 0000093c <sexp_no_computation> cmpwi cr6,r9,0 00000940 <sexp_no_computation+4> stfd f9,64(r1) 00000944 <sexp_no_computation+8> lwz r11,36(r1) 00000948 <sexp_no_computation+c> cmpwi cr7,r12,2047 0000094c <sexp_no_computation+10> lwz r8,68(r1) 00000950 <sexp_no_computation+14> cmpwi cr5,r10,0 00000954 <sexp_no_computation+18> bge cr6,00000984 <sexp_inf_large_nan> 00000958 <sexp_zero_or_small> clrlwi r9,r10,1 0000095c <sexp_zero_or_small+4> or. r9,r9,r11 00000960 <sexp_zero_or_small+8> blt+ 00000974 <sexp_zero> 00000964 <sexp_small> fmr f1,f0 00000968 <sexp_small+4> mtfsf 255,f9 0000096c <sexp_small+8> addi r1,r1,80 00000970 <sexp_small+c> blr 00000974 <sexp_zero> fmr f1,f0 00000978 <sexp_exact> mtfsf 255,f9 0000097c <sexp_exact+4> addi r1,r1,80 00000980 <sexp_exact+8> blr 00000984 <sexp_inf_large_nan> beq cr7,0000099c <sexp_inf_nan> 00000988 <sexp_inf_large_nan+4> blt cr5,00000994 <sexp_unf> 0000098c <sexp_ovf> lfd f1,-1184(r3) 00000990 <sexp_ovf+4> b 00000920 <sexp_aix_range_returns> 00000994 <sexp_unf> fsub f1,f0,f0 00000998 <sexp_unf+4> b 00000920 <sexp_aix_range_returns> 0000099c <sexp_inf_nan> clrlwi r9,r10,12 000009a0 <sexp_inf_nan+4> or. r9,r9,r11 000009a4 <sexp_inf_nan+8> bne 000009b4 <sexp_nan> 000009a8 <sexp_inf> bge cr5,00000978 <sexp_exact> 000009ac <sexp_inf+4> fsub f1,f0,f0 000009b0 <sexp_inf+8> b 00000978 <sexp_exact> 000009b4 <sexp_nan> rlwinm. r9,r10,0,12,12 000009b8 <sexp_nan+4> beq 000009c0 <sexp_snan> 000009bc <sexp_qnan> b 00000904 <sexp_aix_domain_returns> 000009c0 <sexp_snan> stw r11,36(r1) 000009c4 <sexp_snan+4> oris r9,r10,8 000009c8 <sexp_snan+8> stw r9,32(r1) 000009cc <sexp_snan+c> lfd f1,32(r1) 000009d0 <sexp_snan+10> b 00000904 <sexp_aix_domain_returns> 000009d4 <log> stwu r1,-80(r1) 000009d8 <log+4> stfd f1,48(r1) 000009dc <log+8> mffs f4 000009e0 <log+c> lis r11,19264 000009e4 <log_restart> stfd f1,32(r1) 000009e8 <log_restart+4> lis r3,0 RELOC: 000009ea R_PPC_ADDR16_HA log_table_base 000009ec <log_restart+8> lwz r4,32(r1) 000009f0 <log_restart+c> addi r3,r3,0 RELOC: 000009f2 R_PPC_ADDR16_LO log_table_base 000009f4 <log_restart+10> rlwinm r5,r4,20,24,31 000009f8 <log_restart+14> lfd f0,-1200(r3) 000009fc <log_restart+18> clrlwi r7,r4,12 00000a00 <log_restart+1c> oris r7,r7,16368 00000a04 <log_restart+20> stw r7,32(r1) 00000a08 <log_restart+24> mtfsf 255,f0 00000a0c <log_restart+28> addi r6,r5,1 00000a10 <log_restart+2c> lfd f9,32(r1) 00000a14 <log_restart+30> rlwinm r6,r6,3,20,27 00000a18 <log_restart+34> lfdx f8,r3,r6 00000a1c <log_restart+38> addi r7,r5,-107 00000a20 <log_restart+3c> lfd f7,-1208(r3) 00000a24 <log_restart+40> rlwinm r7,r7,1,31,31 00000a28 <log_restart+44> lfd f6,-1216(r3) 00000a2c <log_restart+48> fmsub f13,f8,f9,f0 00000a30 <log_restart+4c> rlwinm. r8,r4,12,21,31 00000a34 <log_restart+50> stfd f4,64(r1) 00000a38 <log_restart+54> lfd f5,-1224(r3) 00000a3c <log_restart+58> cmpwi cr6,r4,0 00000a40 <log_restart+5c> fmul f12,f8,f9 00000a44 <log_restart+60> subfc r9,r7,r8 00000a48 <log_restart+64> lfd f3,-1248(r3) 00000a4c <log_restart+68> add r5,r9,r11 00000a50 <log_restart+6c> lfd f4,-1232(r3) 00000a54 <log_restart+70> fmadd f0,f13,f7,f6 00000a58 <log_restart+74> beq 00000af0 <log_x_denorm_zero> 00000a5c <log_restart+78> addi r7,r6,8 00000a60 <log_restart+7c> stw r5,40(r1) 00000a64 <log_restart+80> frsp f12,f12 00000a68 <log_restart+84> cmpwi r8,2046 00000a6c <log_restart+88> lfs f11,-1128(r3) 00000a70 <log_restart+8c> fmul f7,f13,f13 00000a74 <log_restart+90> blt cr6,00000b34 <log_x_negative> 00000a78 <log_restart+94> rlwinm r6,r6,0,21,27 00000a7c <log_restart+98> lfs f10,40(r1) 00000a80 <log_restart+9c> fmadd f0,f13,f0,f5 00000a84 <log_restart+a0> addi r9,r9,-1022 00000a88 <log_restart+a4> lfdx f6,r3,r7 00000a8c <log_restart+a8> fmsub f5,f8,f9,f12 00000a90 <log_restart+ac> bgt 00000b3c <log_x_inf_nan> 00000a94 <log_restart+b0> lfd f8,-1240(r3) 00000a98 <log_restart+b4> fmul f9,f13,f3 00000a9c <log_restart+b8> or. r6,r6,r9 00000aa0 <log_restart+bc> lfd f3,-1152(r3) 00000aa4 <log_restart+c0> fmadd f0,f13,f0,f4 00000aa8 <log_restart+c4> lfd f4,-1160(r3) 00000aac <log_restart+c8> fsubs f10,f10,f11 00000ab0 <log_restart+cc> fadd f12,f12,f6 00000ab4 <log_restart+d0> lfd f6,64(r1) 00000ab8 <log_restart+d4> fmadd f0,f13,f0,f8 00000abc <log_restart+d8> fmadd f5,f10,f3,f5 00000ac0 <log_restart+dc> fmadd f12,f10,f4,f12 00000ac4 <log_restart+e0> fmadd f0,f7,f0,f9 00000ac8 <log_restart+e4> beq 00000ae0 <log_special> 00000acc <log_normal> fmadd f5,f13,f0,f5 00000ad0 <log_normal+4> fadd f1,f12,f5 00000ad4 <log_normal+8> mtfsf 255,f6 00000ad8 <log_normal+c> addi r1,r1,80 00000adc <log_normal+10> blr 00000ae0 <log_special> fmadd f1,f13,f0,f13 00000ae4 <log_special+4> mtfsf 255,f6 00000ae8 <log_special+8> addi r1,r1,80 00000aec <log_special+c> blr 00000af0 <log_x_denorm_zero> clrlwi r9,r4,12 00000af4 <log_x_denorm_zero+4> lwz r5,36(r1) 00000af8 <log_x_denorm_zero+8> or. r5,r5,r9 00000afc <log_x_denorm_zero+c> lfd f4,-1120(r3) 00000b00 <log_x_denorm_zero+10> addi r11,r11,-52 00000b04 <log_x_denorm_zero+14> fmul f1,f1,f4 00000b08 <log_x_denorm_zero+18> lfd f4,64(r1) 00000b0c <log_x_denorm_zero+1c> mtfsf 255,f4 00000b10 <log_x_denorm_zero+20> bne 000009e4 <log_restart> 00000b14 <log_x_zero> lfd f1,-1192(r3) 00000b18 <log_aix_domain_returns> lis r5,0 RELOC: 00000b1a R_PPC_ADDR16_HA errno 00000b1c <log_aix_domain_returns+4> li r3,33 00000b20 <log_aix_domain_returns+8> stw r3,0(r5) RELOC: 00000b22 R_PPC_ADDR16_LO errno 00000b24 <log_aix_domain_returns+c> lfd f2,64(r1) 00000b28 <log_aix_domain_returns+10> mtfsf 255,f2 00000b2c <log_aix_domain_returns+14> addi r1,r1,80 00000b30 <log_aix_domain_returns+18> blr 00000b34 <log_x_negative> lfd f1,-1168(r3) 00000b38 <log_x_negative+4> b 00000b18 <log_aix_domain_returns> 00000b3c <log_x_inf_nan> lwz r6,36(r1) 00000b40 <log_x_inf_nan+4> clrlwi r9,r4,12 00000b44 <log_x_inf_nan+8> or. r9,r9,r6 00000b48 <log_x_inf_nan+c> beq+ 00000b68 <log_x_infinity> 00000b4c <log_x_inf_nan+10> rlwinm. r9,r4,13,31,31 00000b50 <log_x_inf_nan+14> bne 00000b64 <log_x_is_qnan> 00000b54 <log_x_inf_nan+18> oris r9,r4,8 00000b58 <log_x_inf_nan+1c> stw r9,32(r1) 00000b5c <log_x_inf_nan+20> lfd f1,32(r1) 00000b60 <log_x_inf_nan+24> b 00000b18 <log_aix_domain_returns> 00000b64 <log_x_is_qnan> b 00000b18 <log_aix_domain_returns> 00000b68 <log_x_infinity> mr. r4,r4 00000b6c <log_x_infinity+4> blt- 00000b34 <log_x_negative> 00000b70 <log_x_infinity+8> lfd f2,64(r1) 00000b74 <log_x_infinity+c> mtfsf 255,f2 00000b78 <log_x_infinity+10> addi r1,r1,80 00000b7c <log_x_infinity+14> blr 00000b80 <log10> stwu r1,-80(r1) 00000b84 <log10+4> stfd f1,48(r1) 00000b88 <log10+8> mffs f4 00000b8c <log10+c> lis r11,19264 00000b90 <log10_restart> stfd f1,32(r1) 00000b94 <log10_restart+4> lis r3,0 RELOC: 00000b96 R_PPC_ADDR16_HA log_table_base 00000b98 <log10_restart+8> lwz r4,32(r1) 00000b9c <log10_restart+c> addi r3,r3,0 RELOC: 00000b9e R_PPC_ADDR16_LO log_table_base 00000ba0 <log10_restart+10> rlwinm r5,r4,20,24,31 00000ba4 <log10_restart+14> lfd f0,-1200(r3) 00000ba8 <log10_restart+18> clrlwi r7,r4,12 00000bac <log10_restart+1c> oris r7,r7,16368 00000bb0 <log10_restart+20> stw r7,32(r1) 00000bb4 <log10_restart+24> mtfsf 255,f0 00000bb8 <log10_restart+28> addi r6,r5,1 00000bbc <log10_restart+2c> lfd f9,32(r1) 00000bc0 <log10_restart+30> rlwinm r6,r6,3,20,27 00000bc4 <log10_restart+34> lfdx f8,r3,r6 00000bc8 <log10_restart+38> addi r7,r5,-107 00000bcc <log10_restart+3c> lfd f7,-1208(r3) 00000bd0 <log10_restart+40> rlwinm r7,r7,1,31,31 00000bd4 <log10_restart+44> lfd f6,-1216(r3) 00000bd8 <log10_restart+48> fmsub f13,f8,f9,f0 00000bdc <log10_restart+4c> rlwinm. r8,r4,12,21,31 00000be0 <log10_restart+50> stfd f4,64(r1) 00000be4 <log10_restart+54> lfd f5,-1224(r3) 00000be8 <log10_restart+58> cmpwi cr6,r4,0 00000bec <log10_restart+5c> fmul f12,f8,f9 00000bf0 <log10_restart+60> subfc r9,r7,r8 00000bf4 <log10_restart+64> lfd f3,-1248(r3) 00000bf8 <log10_restart+68> add r5,r9,r11 00000bfc <log10_restart+6c> lfd f4,-1232(r3) 00000c00 <log10_restart+70> fmadd f0,f13,f7,f6 00000c04 <log10_restart+74> beq 00000cb4 <log10_x_denorm_zero> 00000c08 <log10_restart+78> addi r7,r6,8 00000c0c <log10_restart+7c> stw r5,40(r1) 00000c10 <log10_restart+80> frsp f12,f12 00000c14 <log10_restart+84> cmpwi r8,2046 00000c18 <log10_restart+88> lfs f11,-1128(r3) 00000c1c <log10_restart+8c> fmul f7,f13,f13 00000c20 <log10_restart+90> blt cr6,00000cf8 <log10_x_negative> 00000c24 <log10_restart+94> rlwinm r6,r6,0,21,27 00000c28 <log10_restart+98> lfs f10,40(r1) 00000c2c <log10_restart+9c> fmadd f0,f13,f0,f5 00000c30 <log10_restart+a0> addi r9,r9,-1022 00000c34 <log10_restart+a4> lfdx f6,r3,r7 00000c38 <log10_restart+a8> fmsub f5,f8,f9,f12 00000c3c <log10_restart+ac> bgt 00000d00 <log10_x_inf_nan> 00000c40 <log10_restart+b0> lfd f8,-1240(r3) 00000c44 <log10_restart+b4> fmul f9,f13,f3 00000c48 <log10_restart+b8> or. r6,r6,r9 00000c4c <log10_restart+bc> lfd f3,-1152(r3) 00000c50 <log10_restart+c0> fmadd f0,f13,f0,f4 00000c54 <log10_restart+c4> lfd f4,-1160(r3) 00000c58 <log10_restart+c8> fsubs f10,f10,f11 00000c5c <log10_restart+cc> fadd f12,f12,f6 00000c60 <log10_restart+d0> lfd f6,64(r1) 00000c64 <log10_restart+d4> fmadd f0,f13,f0,f8 00000c68 <log10_restart+d8> lfd f2,-1136(r3) 00000c6c <log10_restart+dc> fmadd f5,f10,f3,f5 00000c70 <log10_restart+e0> fmadd f12,f10,f4,f12 00000c74 <log10_restart+e4> lfd f11,-1144(r3) 00000c78 <log10_restart+e8> fmadd f0,f7,f0,f9 00000c7c <log10_restart+ec> beq 00000c9c <log10_special> 00000c80 <log10_normal> fmadd f5,f13,f0,f5 00000c84 <log10_normal+4> fmul f7,f2,f12 00000c88 <log10_normal+8> fmadd f7,f11,f5,f7 00000c8c <log10_normal+c> fmadd f1,f11,f12,f7 00000c90 <log10_normal+10> mtfsf 255,f6 00000c94 <log10_normal+14> addi r1,r1,80 00000c98 <log10_normal+18> blr 00000c9c <log10_special> fmadd f8,f11,f0,f2 00000ca0 <log10_special+4> fmul f8,f13,f8 00000ca4 <log10_special+8> fmadd f1,f13,f11,f8 00000ca8 <log10_special+c> mtfsf 255,f6 00000cac <log10_special+10> addi r1,r1,80 00000cb0 <log10_special+14> blr 00000cb4 <log10_x_denorm_zero> clrlwi r9,r4,12 00000cb8 <log10_x_denorm_zero+4> lwz r5,36(r1) 00000cbc <log10_x_denorm_zero+8> or. r5,r5,r9 00000cc0 <log10_x_denorm_zero+c> lfd f4,-1120(r3) 00000cc4 <log10_x_denorm_zero+10> addi r11,r11,-52 00000cc8 <log10_x_denorm_zero+14> fmul f1,f1,f4 00000ccc <log10_x_denorm_zero+18> lfd f4,64(r1) 00000cd0 <log10_x_denorm_zero+1c> mtfsf 255,f4 00000cd4 <log10_x_denorm_zero+20> bne 00000b90 <log10_restart> 00000cd8 <log10_x_zero> lfd f1,-1192(r3) 00000cdc <log10_aix_domain_returns> lis r5,0 RELOC: 00000cde R_PPC_ADDR16_HA errno 00000ce0 <log10_aix_domain_returns+4> li r3,33 00000ce4 <log10_aix_domain_returns+8> stw r3,0(r5) RELOC: 00000ce6 R_PPC_ADDR16_LO errno 00000ce8 <log10_aix_domain_returns+c> lfd f2,64(r1) 00000cec <log10_aix_domain_returns+10> mtfsf 255,f2 00000cf0 <log10_aix_domain_returns+14> addi r1,r1,80 00000cf4 <log10_aix_domain_returns+18> blr 00000cf8 <log10_x_negative> lfd f1,-1168(r3) 00000cfc <log10_x_negative+4> b 00000cdc <log10_aix_domain_returns> 00000d00 <log10_x_inf_nan> lwz r6,36(r1) 00000d04 <log10_x_inf_nan+4> clrlwi r9,r4,12 00000d08 <log10_x_inf_nan+8> or. r9,r9,r6 00000d0c <log10_x_inf_nan+c> beq+ 00000d2c <log10_x_infinity> 00000d10 <log10_x_inf_nan+10> rlwinm. r9,r4,13,31,31 00000d14 <log10_x_inf_nan+14> bne 00000d28 <log10_x_is_qnan> 00000d18 <log10_x_inf_nan+18> oris r9,r4,8 00000d1c <log10_x_inf_nan+1c> stw r9,32(r1) 00000d20 <log10_x_inf_nan+20> lfd f1,32(r1) 00000d24 <log10_x_inf_nan+24> b 00000cdc <log10_aix_domain_returns> 00000d28 <log10_x_is_qnan> b 00000cdc <log10_aix_domain_returns> 00000d2c <log10_x_infinity> mr. r4,r4 00000d30 <log10_x_infinity+4> blt- 00000cf8 <log10_x_negative> 00000d34 <log10_x_infinity+8> lfd f2,64(r1) 00000d38 <log10_x_infinity+c> mtfsf 255,f2 00000d3c <log10_x_infinity+10> addi r1,r1,80 00000d40 <log10_x_infinity+14> blr*/
Parrot Assembly
2
privatosan/RayStorm
srcAmiga/lib_ppcmath/exp.pasm
[ "MIT" ]
CREATE OR REPLACE TEMPORARY VIEW tbl_a AS VALUES (1, 1), (2, 1), (3, 6) AS T(c1, c2); CREATE OR REPLACE TEMPORARY VIEW tbl_b AS VALUES 1 AS T(c1); -- SPARK-18597: Do not push down predicates to left hand side in an anti-join SELECT * FROM tbl_a LEFT ANTI JOIN tbl_b ON ((tbl_a.c1 = tbl_a.c2) IS NULL OR tbl_a.c1 = tbl_a.c2); -- SPARK-18614: Do not push down predicates on left table below ExistenceJoin SELECT l.c1, l.c2 FROM tbl_a l WHERE EXISTS (SELECT 1 FROM tbl_b r WHERE l.c1 = l.c2) OR l.c2 < 2;
SQL
3
OlegPt/spark
sql/core/src/test/resources/sql-tests/inputs/pred-pushdown.sql
[ "Apache-2.0" ]
/** * AtLeastRAllReducer.x10 * * Rudra Distributed Learning Platform * * Copyright (c) IBM Corporation 2016 * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * 3. Neither the name of Rudra nor the names of its contributors may be used * to endorse or promote products derived from this software without specific * prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY,OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package rudra; import x10.util.Team; import rudra.util.PhasedT; import rudra.util.Logger; import rudra.util.Timer; import rudra.util.MergingMonitor; /** Responsible for perfoming an all reduce if at least R contributions, counted globally, are available. R could be zero. TODO: Improve so that it alwyas implements R>=1 and does without busy waiting. That is, by blocking the thread until there is more input from the learner or someone discovers that R contributions are available. (Otherwise the cycling through multiple empty allReduces @author vj */ public class AtLeastRAllReducer(desiredR:Int, team:Team, logger:Logger, gCount:GlobalRef[PhasedT[Int]]) { var zero: TimedGradient; // The pending contribution, not yet sent out // because the threshold has not yet been reached. var pending:TimedGradient=null; var readyToReduce:Boolean=false; var src:TimedGradient=null; // must be non-null if readyToReduce is true val allreduceTimer = new Timer("allreduce Time:"); var phase: UInt=0un; // the local version of the global phase= # allreduces executed /** Initialize with the size used for TimeGradient. Will be used to create a zro TG, if needed. Must be called before acceptContrib and reduceIfReady. (Cannot be set when object is created because native learners are not initialized then, hence size is not known.) */ var size:Long = -1; def initialize(size:Long) { this.size=size; } def getPhase():UInt=at (gCount) gCount().getPhase(); def availableData(myData: Int, phase:UInt):Int { val gc = gCount, src=here.id; val r = at (gc.home) gc().availableData(src,myData,phase); return r; } def zero():TimedGradient { if (zero == null) { zero = new TimedGradient(size); } return zero; } public def run(var readyToReduce:Boolean, thisPhase:UInt, s: TimedGradient, mmPLH:PlaceLocalHandle[MergingMonitor], dest:TimedGradient):void { assert size >= 0 : "AtLeastRAllReducer: must initialize before use."; val count = s.loadSize(), phi = phase; if (count > 0un) logger.info(()=>"Reconciler:<- Learner processing " + s); if (desiredR <= 0) { readyToReduce=true; src = count==0un ? zero() : s; } else { if (! readyToReduce) { logger.info(()=>"AtleastR: about to invoke availableData, count=" + count); readyToReduce = (count as Int) >= desiredR || availableData(count as Int, phase) >= desiredR; if (readyToReduce) // tell others, including urself, but that is ignored. // no need for finish for (p in Place.places()) at (p) async mmPLH().signalPhase(phase+1un); } if (readyToReduce) if (pending!= null && pending.loadSize() > 0un) { pending.addIn(s); s.setLoadSize(0un); src = pending; } else src = count==0un? zero() : s; else { // need to pend s, no need to set src if (count > 0un) { if (pending != null) pending = new TimedGradient(size); pending.addIn(s); s.setLoadSize(0un); } } } // if desiredR <= 0 if (readyToReduce) { assert dest.loadSize()==0un : "AtLeastRAllReduce: load size of destination " + dest + " must be zero."; logger.info(()=>"Entering allreduce with " + src + " at " + phi); allreduceTimer.tic(); team.allreduce(src.grad, 0, dest.grad, 0, size, Team.ADD); allreduceTimer.toc(); if (dest.loadSize() > 0un) phase++; dest.timeStamp = phase; if (here.id==0) logger.notify(()=>"Reconciler: <- Network " + dest + "(" + allreduceTimer.lastDurationMillis()+" ms)"); src.setLoadSize(0un); src=null; } logger.info(()=> "AtLeastRAllReducer: exiting run, s=" + s); } // run }
X10
5
milthorpe/rudra
x10/src/rudra/AtLeastRAllReducer.x10
[ "BSD-3-Clause" ]
do {a, b} = hello {{a}, b, {c}} = hello { :hello, :world } = value do { yes: no, thing } = world {:a,:b,:c,:d} = yeah {a} = one, two {b}, c = one {d}, e = one, two x, {y} = one, two xx, yy = 1, 2 {yy, xx} = {xx, yy} {a, :b, c, :d, e, :f, g} = tbl --- do futurists = sculptor: "Umberto Boccioni" painter: "Vladimir Burliuk" poet: name: "F.T. Marinetti" address: { "Via Roma 42R" "Bellagio, Italy 22021" } {poet: {:name, address: {street, city}}} = futurists -- do { @world } = x { a.b, c.y, func!.z } = x { world: @world } = x -- do thing = {{1,2}, {3,4}} for {x,y} in *thing print x,y -- do with {a,b} = thing print a, b -- do thing = nil if {a} = thing print a else print "nothing" thang = {1,2} if {a,b} = thang print a,b if {a,b} = thing print a,b elseif {c,d} = thang print c,d else print "NO" -- do z = "yeah" {a,b,c} = z do {a,b,c} = z (z) -> {a,b,c} = z do z = "oo" (k) -> {a,b,c} = z
MoonScript
3
Shados/moonscript
spec/inputs/destructure.moon
[ "MIT", "Unlicense" ]
openapi: 3.1.0 info: summary: My API's summary title: My API version: 1.0.0 license: name: Apache 2.0 identifier: Apache-2.0 jsonSchemaDialect: https://spec.openapis.org/oas/3.1/dialect/base paths: /: get: parameters: [] /{pathTest}: {} webhooks: myWebhook: $ref: '#/components/pathItems/myPathItem' description: Overriding description components: securitySchemes: mtls: type: mutualTLS pathItems: myPathItem: post: requestBody: required: true content: 'application/json': schema: type: object properties: type: type: string int: type: integer exclusiveMaximum: 100 exclusiveMinimum: 0 none: type: 'null' arr: type: array $comment: Array without items keyword either: type: ['string','null'] discriminator: propertyName: type x-extension: true myArbitraryKeyword: true
YAML
4
karenetheridge/OpenAPI-Specification
tests/v3.1/pass/mega.yaml
[ "Apache-2.0" ]