[spcopula-commits] r161 - / pkg pkg/R pkg/man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Feb 1 16:31:26 CET 2017
Author: ben_graeler
Date: 2017-02-01 16:31:26 +0100 (Wed, 01 Feb 2017)
New Revision: 161
Added:
genEmpSurCop.Rd
pkg/man/empSurCopula-class.Rd
pkg/man/empSurCopula.Rd
spcopula.pdf
Modified:
pkg/NAMESPACE
pkg/R/Classes.R
pkg/R/empiricalCopula.R
pkg/R/spatio-temporalPreparation.R
pkg/man/genEmpCop.Rd
pkg/man/loglikByCopulasStLags.Rd
Log:
new empirical survival copulas
Added: genEmpSurCop.Rd
===================================================================
--- genEmpSurCop.Rd (rev 0)
+++ genEmpSurCop.Rd 2017-02-01 15:31:26 UTC (rev 161)
@@ -0,0 +1,28 @@
+\name{genEmpSurCop}
+\alias{genEmpSurCop}
+\docType{data}
+\title{
+%% ~~ data name/kind ... ~~
+}
+\description{
+%% ~~ A concise (1-5 lines) description of the dataset. ~~
+}
+\usage{data("genEmpSurCop")}
+\format{
+ The format is:
+ chr "genEmpSurCop"
+}
+\details{
+%% ~~ If necessary, more details than the __description__ above ~~
+}
+\source{
+%% ~~ reference to a publication or URL from which the data were obtained ~~
+}
+\references{
+%% ~~ possibly secondary sources and usages ~~
+}
+\examples{
+data(genEmpSurCop)
+## maybe str(genEmpSurCop) ; plot(genEmpSurCop) ...
+}
+\keyword{datasets}
Modified: pkg/NAMESPACE
===================================================================
--- pkg/NAMESPACE 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/NAMESPACE 2017-02-01 15:31:26 UTC (rev 161)
@@ -44,7 +44,7 @@
export(spVineCopula, stVineCopula)
export(stCoVarVineCopula)
export(neighbourhood, stNeighbourhood)
-export(empiricalCopula, genEmpCop)
+export(empiricalCopula, genEmpCop, empSurCopula, genEmpSurCop)
export(mixtureCopula)
# general functions
@@ -79,7 +79,7 @@
export(kendall)
## classes
-exportClasses(asCopula, cqsCopula, tawn3pCopula, neighbourhood, stNeighbourhood, empiricalCopula)
+exportClasses(asCopula, cqsCopula, tawn3pCopula, neighbourhood, stNeighbourhood, empiricalCopula, empSurCopula)
exportClasses(spCopula, stCopula, spVineCopula, stVineCopula)
exportClasses(stCoVarVineCopula)
exportClasses(mixtureCopula)
\ No newline at end of file
Modified: pkg/R/Classes.R
===================================================================
--- pkg/R/Classes.R 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/R/Classes.R 2017-02-01 15:31:26 UTC (rev 161)
@@ -82,6 +82,22 @@
)
####
+## an empirical survival copula representation
+
+validEmpSurCopula <- function(object) {
+ if(ncol(object at sample) != object at dimension)
+ return("Dimension of the copula and the sample do not match.")
+ else
+ return(TRUE)
+}
+
+setClass("empSurCopula",
+ representation = representation("copula", sample="matrix"),
+ validity = validEmpSurCopula,
+ contains = list("copula")
+)
+
+####
## the leaf copula
validLeafCopula <- function(object) {
Modified: pkg/R/empiricalCopula.R
===================================================================
--- pkg/R/empiricalCopula.R 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/R/empiricalCopula.R 2017-02-01 15:31:26 UTC (rev 161)
@@ -8,14 +8,17 @@
empiricalCopula <- function (sample=NULL, copula) {
if(is.null(sample) && missing(copula))
stop("At least one parameter of copula or sample must be provided.")
+
if(is.null(sample))
return(genEmpCop(copula))
+
if(missing(copula))
return(new("empiricalCopula", dimension = as.integer(ncol(sample)),
parameters = as.numeric(NA), param.names = "unknown",
param.lowbnd = as.numeric(NA), param.upbnd = as.numeric(NA),
fullname = "Unkown empirical copula based on a sample.",
sample=sample))
+
new("empiricalCopula", dimension = copula at dimension,
parameters = copula at parameters, param.names = copula at param.names,
param.lowbnd = copula at param.lowbnd, param.upbnd = copula at param.upbnd,
@@ -25,11 +28,11 @@
# simplified constructor
genEmpCop <- function(copula, sample.size=1e5) {
- cat("Note: the copula will be empirically represented by a sample of size:", sample.size, "\n")
+ cat("Note: the copula will be empirically represented by a sample of size:",
+ sample.size, "\n")
empiricalCopula(rCopula(sample.size, copula), copula)
}
-
## density, not yet needed and hence not implemented ##
## jcdf ##
@@ -61,6 +64,81 @@
setMethod("lambda", signature("empiricalCopula"),
function(copula, ...) stop("No evaluation possible, try to plot 'empBivJointDepFun' for a visual assessment."))
+##################################
+## ##
+## an empirical survival copula ##
+## ##
+##################################
+
+# constructor
+empSurCopula <- function (sample=NULL, copula) {
+ if(is.null(sample) && missing(copula))
+ stop("At least one parameter of copula or sample must be provided.")
+
+ if(is.null(sample))
+ return(genEmpSurCop(copula))
+
+ if(missing(copula))
+ return(new("empSurCopula", dimension = as.integer(ncol(sample)),
+ parameters = as.numeric(NA), param.names = "unknown",
+ param.lowbnd = as.numeric(NA), param.upbnd = as.numeric(NA),
+ fullname = "Unkown empirical survival copula based on a sample.",
+ sample=sample))
+
+ new("empSurCopula", dimension = copula at dimension,
+ parameters = copula at parameters, param.names = copula at param.names,
+ param.lowbnd = copula at param.lowbnd, param.upbnd = copula at param.upbnd,
+ fullname = paste("Empirical survival copula derived from",copula at fullname),
+ sample=sample)
+}
+
+# simplified constructor
+genEmpSurCop <- function(copula, sample.size=1e5) {
+ cat("Note: the survival copula will be empirically represented by a sample of size:",
+ sample.size, "\n")
+ empSurCopula(1 - rCopula(sample.size, copula), copula)
+}
+
+## jcdf ##
+# from package copula # 3D
+pempSurCop.C <- function(u, copula) {
+ if (copula at dimension==2)
+ return(apply(u,1,sum) - 1 + F.n(1-u, copula at sample))
+
+ if (copula at dimension==3)
+ return(apply(u,1,sum) - 2 + F.n(cbind(1-u[, 1:2, drop=F],1),
+ copula at sample) + F.n(cbind(1-u[,1, drop=F], 1, 1-u[,3, drop=F]),
+ copula at sample) + F.n(cbind(1-u[,2:3, drop=F], 1),
+ copula at sample) - F.n(1-u, copula at sample))
+
+ stop("The empirical survival copula is only implemented for 2 and 3 dimensions.")
+}
+
+setMethod("pCopula", signature("numeric", "empSurCopula"),
+ function(u, copula, ...) {
+ pempSurCop.C(matrix(u, ncol=copula at dimension), copula)
+ })
+setMethod("pCopula", signature("matrix", "empSurCopula"), pempSurCop.C)
+
+
+# tauempCop <- function(copula){*-
+# TauMatrix(copula at sample)[1,2]
+# }
+#
+# setMethod("tau",signature("empiricalCopula"), tauempCop)
+#
+#
+# rhoempCop <- function(copula){
+# cor(copula at sample,method="spearman")
+# }
+#
+# setMethod("rho",signature("empiricalCopula"), rhoempCop)
+#
+# setMethod("lambda", signature("empiricalCopula"),
+# function(copula, ...) stop("No evaluation possible, try to plot 'empBivJointDepFun' for a visual assessment."))
+#
+
+
# Vine Copula - empirical evaluation
## jcdf ##
pvineCopula <- function(u, copula) {
Modified: pkg/R/spatio-temporalPreparation.R
===================================================================
--- pkg/R/spatio-temporalPreparation.R 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/R/spatio-temporalPreparation.R 2017-02-01 15:31:26 UTC (rev 161)
@@ -348,7 +348,7 @@
cor.method="fasttau", plot=FALSE) {
if(is.na(cutoff))
cutoff <- spDists(coordinates(t(data at sp@bbox)))[1,2]/3
- if(is.na(boundaries))
+ if(any(is.na(boundaries)))
boundaries <- (1:nbins) * cutoff / nbins
if(is.na(instances))
instances=length(data at time)
Added: pkg/man/empSurCopula-class.Rd
===================================================================
--- pkg/man/empSurCopula-class.Rd (rev 0)
+++ pkg/man/empSurCopula-class.Rd 2017-02-01 15:31:26 UTC (rev 161)
@@ -0,0 +1,44 @@
+\name{empSurCopula-class}
+\Rdversion{1.1}
+\docType{class}
+\alias{empSurCopula-class}
+
+\title{Class \code{"empiricalCopula"}}
+\description{
+A class representing an empirical survival version of a given copula.
+}
+\section{Objects from the Class}{
+Objects can be created by calls of the form \code{new("empSurCopula", ...)},
+through the constructor \code{\link{empSurCopula}} or the simplified constructor \code{\link{genEmpSurCop}}.
+
+}
+\section{Slots}{
+ \describe{
+ \item{\code{sample}:}{Object of class \code{"matrix"} representing the sample. }
+ \item{\code{dimension}:}{Object of class \code{"integer"} giving the dimension. }
+ \item{\code{parameters}:}{Object of class \code{"numeric"} giving the parameters of the underlying copula family if present, \"NA\" otherwise.}
+ \item{\code{param.names}:}{Object of class \code{"character"} giving the parameter names of the underlying copula family if present, \"unknown\" otherwise. }
+ \item{\code{param.lowbnd}:}{Object of class \code{"numeric"} giving the lower bound of the underlying copula family if present, \"NA\" otherwise.}
+ \item{\code{param.upbnd}:}{Object of class \code{"numeric"} giving the upper bound of the underlying copula family if present, \"NA\" otherwise.}
+ \item{\code{fullname}:}{Object of class \code{"character"} giving a descriptive name including the underlying copula family's name if present. }
+ }
+}
+\section{Extends}{
+Class \code{"\linkS4class{copula}"}, directly.
+Class \code{"\linkS4class{Copula}"}, by class "copula", distance 2.
+}
+\section{Methods}{
+No additional methods defined with class \code{empSurCopula} in the signature, but \code{\link{pCopula}} works as expected.
+}
+\author{
+Benedikt Graeler}
+\note{
+Its implementation of \code{\link{pCopula}} is based on C-code from \code{\link{copula-package}}.
+}
+
+
+\seealso{\code{\link{genEmpSurCop}}}
+\examples{
+showClass("empSurCopula")
+}
+\keyword{classes}
Added: pkg/man/empSurCopula.Rd
===================================================================
--- pkg/man/empSurCopula.Rd (rev 0)
+++ pkg/man/empSurCopula.Rd 2017-02-01 15:31:26 UTC (rev 161)
@@ -0,0 +1,49 @@
+\name{empSurCopula}
+\alias{empSurCopula}
+\title{
+Constructor of an empirical survival copula class
+}
+\description{
+Constructs an object of the empirical survival copula class \code{\linkS4class{empSurCopula}}, see \code{\link{genEmpSurCop}} for a simplified version.
+}
+\usage{
+empSurCopula(sample=NULL, copula)
+}
+\arguments{
+ \item{sample}{
+A sample from a provided or unknown copula family.
+}
+ \item{copula}{
+The underlying theoretical copula, in case it is known or a sample should be generated.
+}
+}
+\value{
+An object of \code{\linkS4class{empSurCopula}}.
+}
+\author{
+Benedikt Graeler
+}
+\note{
+Its implementation of \code{\link{pCopula}} is based on C-code from \code{\link{copula-package}}.
+}
+
+\seealso{
+\code{\link{genEmpSurCop}} for a simplified constructor with sample length control.
+}
+\examples{
+empCop <- empSurCopula(rCopula(500,frankCopula(0.7)))
+str(empCop)
+
+empCop <- empSurCopula(copula=frankCopula(0.7))
+str(empCop)
+
+empCop <- empSurCopula(rCopula(500,frankCopula(0.7)), frankCopula(0.7))
+str(empCop)
+
+# the empirical value
+pCopula(c(0.3, 0.5), empCop)
+
+# the theoretical value
+pCopula(c(0.3, 0.5), frankCopula(0.7))
+}
+\keyword{ multivariate }
Modified: pkg/man/genEmpCop.Rd
===================================================================
--- pkg/man/genEmpCop.Rd 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/man/genEmpCop.Rd 2017-02-01 15:31:26 UTC (rev 161)
@@ -1,13 +1,15 @@
\name{genEmpCop}
\alias{genEmpCop}
+\alias{genEmpSurCop}
\title{
Generate an empirical copula
}
\description{
-Generates an empirical copula from a sample and returns the corresponding function.
+Generates an empirical (survival) copula from a sample and returns the corresponding function.
}
\usage{
genEmpCop(copula, sample.size=1e5)
+genEmpSurCop(copula, sample.size=1e5)
}
\arguments{
\item{copula}{
Modified: pkg/man/loglikByCopulasStLags.Rd
===================================================================
--- pkg/man/loglikByCopulasStLags.Rd 2016-12-01 12:46:52 UTC (rev 160)
+++ pkg/man/loglikByCopulasStLags.Rd 2017-02-01 15:31:26 UTC (rev 161)
@@ -3,7 +3,7 @@
\title{Log-likelihoods by copula family and spatio-temporal lag class}
-\description{This function works through a set of copula family and evaluates the best fitting one for each spatiao-temporal lag.}
+\description{This function works through a set of copula families and evaluates the best fitting one for each spatio-temporal lag.}
\usage{
loglikByCopulasStLags(stBins, data, families = c(normalCopula(),
Added: spcopula.pdf
===================================================================
--- spcopula.pdf (rev 0)
+++ spcopula.pdf 2017-02-01 15:31:26 UTC (rev 161)
@@ -0,0 +1,9499 @@
+%PDF-1.5
+%ÐÔÅØ
+1 0 obj
+<< /S /GoTo /D (Section.0.Introduction.1) >>
+endobj
+4 0 obj
+(Introduction)
+endobj
+5 0 obj
+<< /S /GoTo /D (Section.1.Spatio-temporal\040vine\040copulas.1) >>
+endobj
+8 0 obj
+(Spatio-temporal vine copulas)
+endobj
+9 0 obj
+<< /S /GoTo /D (Section.2.Spatio-temporal\040vine\040copula\040estimation.1) >>
+endobj
+12 0 obj
+(Spatio-temporal vine copula estimation)
+endobj
+13 0 obj
+<< /S /GoTo /D (Section.3.Prediction\040of\040the\040spatio-temporal\040random\040field.1) >>
+endobj
+16 0 obj
+(Prediction of the spatio-temporal random field)
+endobj
+17 0 obj
+<< /S /GoTo /D (Section.4.Application.1) >>
+endobj
+20 0 obj
+(Application)
+endobj
+21 0 obj
+<< /S /GoTo /D (Subsubsection.5.0.0.Joining\040vine\040copula.3) >>
+endobj
+24 0 obj
+(Joining vine copula)
+endobj
+25 0 obj
+<< /S /GoTo /D (Section.5.Results\040and\040discussion.1) >>
+endobj
+28 0 obj
+(Results and discussion)
+endobj
+29 0 obj
+<< /S /GoTo /D (Section.6.Conclusions.1) >>
+endobj
+32 0 obj
+(Conclusions)
+endobj
+33 0 obj
+<< /S /GoTo /D [34 0 R /Fit] >>
+endobj
+35 0 obj
+<<
+/Length 350
+>>
+stream
+concordance:spcopula.tex:spcopula.Rnw:1 49 1 1 0 1 1 1 5 72 1 1 18 109 1 1 2 1 0 1 5 7 0 1 2 9 1 1 2 4 0 2 2 4 0 1 2 8 1 1 4 6 0 1 2 1 3 5 0 1 2 4 1 1 4 6 0 1 2 17 1 1 5 4 0 1 1 3 0 1 2 1 5 4 0 1 1 3 0 1 2 2 1 1 3 5 0 1 2 3 1 1 3 2 0 1 1 3 0 1 2 3 1 1 2 4 0 1 2 2 1 1 2 4 0 1 2 2 1 1 2 1 0 1 1 3 0 1 2 2 1 1 2 4 0 1 2 2 1 1 5 4 0 1 1 1 2 4 0 1 2 60 1
+endstream
+endobj
+52 0 obj
+<<
+/Length 3255
+/Filter /FlateDecode
+>>
+stream
+xÚËrÛFò®¯À¬2á0xí-ö&Þì£*¨*8(®IåËþúös0xHr¹\23===ýîL°LðáÆÈï»Û·?Ù2(3ÜÞÊ<$b[·Ûà°?¯ÖInÚó*¯ðw¨WÞþýíOYâoͳ(©
+ at Lþ²ZÛª
+ÿÕ®ÖinîÛçÌYøÛ¹§üíqpÀYâð´Aà¦v}»ªlØÏ®
©w!Al¢ÌÚ`
+DWqÁçÿµenNÛæ´iøGDwyàÞ#êóiCl=ÏrÃÌ¿ab«(3±^ñ×pp¿ ³s@i°¶IÛAßf¨?ѵé¤Ñ_¤ Ö&ÊcÿÍÈTy0ÌÒñ^´íæÇÛÿÞ 5&2òÔD ¸`s¼ùãOlaq¤U<Ô1°áÁo7ÿvZ0Ò8ªª<Éé¾ÜD2²F´á;âÜ¡C¶m.DËÙÛJÑ:Îò(-árÛd
+óÐúÐ+Õ¾¼òöXÀ±d|¤ìóL¯åa½Cå0Íw-ÎF½\¡â^À*ê*¨3¬¶Ù,¼J{<
:×ÁVÓ,H*(¡åv-æ@J7n;·){@¼§öÿ¯I?Öe·Ê¨¢jÍ´ymD·2C
+ã³,ò²tl&sÉ¡tÆÂ4,l¨ñí^_aÓgðò-ñ"G]{f ]Ôcü©Ágnpl\Ñ'6²çVë27á{ÙéõA&HÄ<y¥ÅXåh4ühâñEhA?<1¯{Á³e1$IÚ2&ãg($áϤkêɤ'æz#;QvfÚIÔ-ø6[ vÄçÁ+ç]XhQ} £¦Aj6c êu3PÁ8|¯ÝÕÕä ^dµ'ý%:m^9sÝÈ×nXŹözöaÇ+î¦0F«;æ^%ËðçÓµ¥GZ,íhp¶Üë`¬z¥%_~ÌR~x_àÈ\½":¢ ,lmmÊÚ¡'.jíY<8¼àùOd` -7¶ ÞRaÚ!ÖÌçIèH8¸1tr#bÎâôWÑDÚjþÙo}]7ô8ÖhwqÒuÄáQ%þ¤2ݱ>ö¨Æâ¤ÖªM(È'dÔ¨Ø=ÑmHÀ£ôÈÑ#qzâi¹&"ðíÊ3ñpçl{Ï¿3¥÷ø[àË{ÏXQy¼àÔ`ò*
+^: \$G}Ú\dÐ#Ä`üOÈ«cÕ˲
+âãòæâ»7
+¦
+ñ¤eAZ÷+
+.nK¤&ÀgD¹
¯Uü÷X#J"5|çÏ$gâ°ýeR\ {ÂGdgCP~¬ÂçÍX:8Õ[Q2Þqõeñì»ÁYd ÈÑMF"ä:Éq´>jÚ³?§QVz㣧B"în#_+:sÇÀ oÕ롼vìGí~5X k
+2m/{qZõF×Å1)%dÖº6V}OíeU¤èÓ,uÚctßõÔN`å£dÔÙÜyÎ`!÷*@yO/ $,,Ðâ3×÷rÙkAÓ§vlÛ°è]8#ïŦM9É^ÅØñrJY¤§ó
YÃÕó¢äx´îüÐkri\:+IuxÍÅ2rFQ^ø÷Jùñ"íÈDrÂSôÍ4&`_C)%hÐiî.רæ,²4Õøüà(5ª½th黺×ä
+¶´²ÕoZΨ4©ee¥Ïª
+ÂîaH{ß°Í+WSV¯ZþGq.UR®,Is(hdÂJ*²øs§KþS²MZª^"²Xa±htw;É9½kæ6³I~)ý$¿¦ÈQ
?-w/¤ìBÒ¤°MÓ SÛO_$LA
+ÚIN8z`~!9õïÒá8f;ÜL´5)Óß/â
2?´áóD³x«ä8¬
V0ùïäËÏ2ÛÖq^µ~.?25í(Y¾É'=G³²
+ÔʵkU½'¤¤å'Sj~ÚFnӺ̳ùÂS\Ñ[ÇçY E³t\rIÖk/}Ó_ÈÀ¸1GK9\ºT<M¼(qº¨Ä¹sIðÓ¡ëÆöH¬<E®1¨2ULm ¤êä$JúIÿÈGîl]ïm¶yþÒk/âãl I=á½a°ÁWLê1gØ\ÁÏSG1Ø.¿yéì£kIHÛèÎdçÞ)FÓ !êÑ1ÑbªË()³oíñQO6J!Õæ&&!Ï4."[b:pþLĦÂêl
ÛëFå\0ë8Ï #dzQ Æçw¾Mª®É£vI4ìj[Ú#Ã}4±%ÞnµgkÕqËùÌK!u M8Õ¨´oûQ¨Oä@µGðfçÃÐu¨Ï¬väÈJnÐõÎBÓ(ÓºWm²/5m\t¶ÐÒ(^
+ériÄáÖÝcð×Ô6Ûÿ×î-ǹ¿ÃzP]
N.«>1È'ÏKí4%¦S;§ñ£l])gÎ#LÒ&R
+C
üó¤jlPb&øá
+餺ÔÆG®?¹BÁ-T¸6dîæ!ÿm¤\Ø¡ÆÀö¹Ð¯Óàñê|r§
+¿NÀ¯tXÎÓ©ùh2³'£DÓÈC
+Q¿Ð<×Z(ÁS«Ní
ÌÏ·VmÔí¿sb½v§;Pt5¥÷c÷,Üz©Ô8ÇV4Jb×jÄõn%Uê¶-Ïðýf`kG*ÑwàµrÈï^U/®êõ¨9HJñ¢áÁ©Q3£ÿ@¥rë{/oªøÜc¡BÊUæRmùA=ûö({E×#)ü®xñ^ÔûÓ¾XªrÉñVEøR»3>ð/Ênèð×7Áë<è×G¤+*(4®òÅÆÝ"FÐ&^Ä1ùd«ªX%Ll¯Ji:ÉøW`ZÐñ¥ÜZËàwyâ Î|GY=Ì*»qÿ¼Ø#^/±YJúò/bgK
+<¬PÏ%l¼ÌfëËg8Rô<¿×n@ÛMÚW?qÎæUnæ¡Ø,S+ LP¾/µq¯Í¡7tv©Â]_¸N9DdÝ©·ïõuîÐ?Qô¢&"fõWñÑ2
+NÛþ¢À×v&ñ·igOµóÍë´Á6³¨Ôñë»Óðg`$õýÜÀàßy
ï§
ãÈòyÛ/¤ ;ÒÄãwq;L`¯1Õ"±K~®{
|¨8'¿8þç~Fsñì5åÅhé`¼·8@wÕ É¥5NIÑY,&AºàæéQ¢<Ñè·F²ìx^Éãä¤a¬áwx-ÃYi3¯K5Q2K¥©6ô ¨,íè« ÈÑÒoîÅ[¬Ü\ £ÇN9êð0ô«sm>TãÆ#d"ºcÓQfÉÍÊám·WR|ÝØÈkÛöýÐ%M)cZPdÿ±Êeµ5éRsEû¤vh¯Úoûð 9
+ÇÉqF3ÞÔï
H¦)ìo$ÞE¯x2Å¥BèÆçÊø»]M½ÏTsyÉbñPåá+<Öhºá\×Þxíú~¬C/EpmôêI´¡rÚ²Y2¥LÊ°½{Á¯/;vN>·~Tò²ýsu¬K×Ã4çüde4G@ïSVC¡u8ðéÀaÛ7½r@®Pói+ǽ ©¸¥x=iSlÔêÍcë|
+>/Cè÷¢ÚyÍv7Îàû§Ò½K¦ä6èWADuØËÀÑK¸ò¹orÔ¨ðÛT{Ê+>ÜéK:`E)QZsI^FY}ÏW;IYÛÅeñüW;ÞqÑçjf¤ZÈmÎïÝ76³ïË~¼½ù?ËYÄþ
+endstream
+endobj
+34 0 obj
+<<
+/Type /Page
+/Contents 52 0 R
+/Resources 51 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 64 0 R
+/Annots [ 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 63 0 R 48 0 R ]
+>>
+endobj
+36 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [180.941 221.361 226.231 234.159]
+/A << /S /GoTo /D (cite.Bardossy2006) >>
+>>
+endobj
+37 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [232.815 221.361 256.625 234.159]
+/A << /S /GoTo /D (cite.Bardossy2006) >>
+>>
+endobj
+38 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [143.984 194.262 232.768 207.06]
+/A << /S /GoTo /D (cite.Kazianka2011) >>
+>>
+endobj
+39 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [238.515 194.262 262.326 207.06]
+/A << /S /GoTo /D (cite.Kazianka2011) >>
+>>
+endobj
+40 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [266.862 194.262 290.673 207.06]
+/A << /S /GoTo /D (cite.Kazianka2010) >>
+>>
+endobj
+41 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [299.467 194.262 344.757 207.06]
+/A << /S /GoTo /D (cite.Bardossy2011) >>
+>>
+endobj
+42 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [350.504 194.262 374.315 207.06]
+/A << /S /GoTo /D (cite.Bardossy2011) >>
+>>
+endobj
+43 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [383.109 194.262 489.206 207.06]
+/A << /S /GoTo /D (cite.Bardossy2009) >>
+>>
+endobj
+44 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [494.953 194.262 518.764 207.06]
+/A << /S /GoTo /D (cite.Bardossy2009) >>
+>>
+endobj
+45 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [93.769 180.713 174.554 193.511]
+/A << /S /GoTo /D (cite.Bardossy2008) >>
+>>
+endobj
+46 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [180.84 180.713 204.65 193.511]
+/A << /S /GoTo /D (cite.Bardossy2008) >>
+>>
+endobj
+47 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [465.582 135.73 522.996 148.528]
+/A << /S /GoTo /D (cite.Cressie2011) >>
+>>
+endobj
+63 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [80.004 122.181 109.836 134.979]
+/A << /S /GoTo /D (cite.Cressie2011) >>
+>>
+endobj
+48 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [111.667 122.181 135.478 134.979]
+/A << /S /GoTo /D (cite.Cressie2011) >>
+>>
+endobj
+53 0 obj
+<<
+/D [34 0 R /XYZ 80 770.89 null]
+>>
+endobj
+54 0 obj
+<<
+/D [34 0 R /XYZ 81 733.028 null]
+>>
+endobj
+2 0 obj
+<<
+/D [34 0 R /XYZ 81 331.039 null]
+>>
+endobj
+62 0 obj
+<<
+/D [34 0 R /XYZ 81 331.039 null]
+>>
+endobj
+51 0 obj
+<<
+/Font << /F48 55 0 R /F52 56 0 R /F55 57 0 R /F61 58 0 R /F8 59 0 R /F69 60 0 R /F70 61 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+100 0 obj
+<<
+/Length 3685
+/Filter /FlateDecode
+>>
+stream
+xÚ[K㶾ï¯ÐSeÑ$dåäulWJŵ;åTÊÎ#qfÕc,J;»¾ä¯§ øÐÖN¹Æ" Ñhôãë6[<,²ÅoÞÞ¾ùúûzgi5ùâö~Q窬Ҧ(·ëÅϹù÷í_¿þ¾²q§¼4©k A}ÞßäÉS{ÿoàï°¼½©¤ÇÝÓÍÒ¸äpl·7Ë¢0ÉOØa¾É·'x9Ã߶íq¦7p6bk©S.2ã[ RÛ¤G"ÑüøÔù¹±mË×Ò¥ÇGy¹Ãéýà=÷Ä÷G /
+; µ*éznÆ%¤õ+ÝÂßgncErzu· §ïqVº´}f1Å|ã9<Å|¼1urÀÙè©#¡Ày¶ b±y²:ðÒ%--¶E+dÉfÉvDÊà/½YZW'9qk÷IXêp̺ç¯~I@½l:IØ"Wyï1±A{<c¿de&
+ÿ¥åâ{Îï~x³ø9'im¦6iÕ¸Å2ýçõýW¾´H½;4èqZÉr;è
+D<ñëããìKÑXͳ¥ç9Þ(l U¥R¯K¼Gz;¤KR:ò^øÛ$+ìîÖÊ÷¥Ìä·¹ã¾ÏQÆ-ÓØø9^×gQÐòϼ ázi·"ì;Úcbq°ÇD÷éI'mWÈàã¦+úp.eeÿÀ:>¢ÏÚ¯ëIJߥuQ0ý[UØmͦà%Ò>HËáe¯ÙáeUiux¤7%N?ÒmEÀ¾Är$Öñû
+OgÙ«§8¼ü
+3×b.7¢;òúK8õ'òe2Ñ;ÁB?AûhA,½º¯n5p^.f¸»¬à¶Hscyí;UÀMÇ<âzuÊãüð8'b0W4º^]ÈG¶t^'Q7CÚÒ}IøÈ*[AMäÝÏ ¼t©À2]'oqêÈ
zã
]m6ùÐ\¦RÉMZ@ð%ÉÏÁÿP.,|Ûáëbo)JÚ<ì¸Æ ${Hòèd B&6\7¿Ø¢»ØÊØ"=-®»;é4¤±8zÍ£ïDq@$6ÛkW;ïTGBy/¦ÐAnª£K|¿Gy)èÐà|è£>¾'CÑpý:ÅÔ$ÌpÀ5%x(1mì+¼<4Õ·c tökÍ+Y¶ÊâHÞý$°êäÒneOÉ>÷üõ^PFX§À£6&ÎqfÈÉwºÕGVQðy=ò*é?ãÞzU9
+nþÏØSuLýU^Ór5Ð%¹ëäId/Ï:z+í6¬D¦Hèàöáw2ã`Im÷NÍhuq+rj=íàt§°Û¥-C<rUÀt£è;ktvì]¥¡b
+ ì6÷ì²VãÀŸ¸Vÿ8pòc÷Û´,l<óå~â`¬ðôP¤P³ÑG(`;vjØûÑ{oðTåPâwl!mè`åÑ>ãxv6HRüÒv¤"Í36¿
+¥+àïExJ~c¨I@óO¡m¡hÃóÒg}Á1Ä
+7ã *;NÖ/ÛF½ä½ñ"¢ØZ_n¾r2Õý.43¥ªÞ@¿²ò0¡ÝV>´K Èнü̼¬èí#©ËgMóܶ,u"ËU»NØõnÝ5rBÔÄô |&÷ë
+ìÓâî~
á£N¾ý
+9XèµJ¾Ç]Mâ,Sé-Á¶² è[Tfhfo[LG>·ß_ue¨ÖY3Vë?½bzIÞüï5M@Ã
¯ðù[öæèZ2d.¤À.ÇL¶Î$[e¥f\&Î-»bß½èÙà1;6À3vyÕùøÎo¬×õ¬h`âJäbÕEะN2ÿ~Ú}P!(:×DYiÝJà,Îi¶Gu2Mí]ºf0Uòtz}RêõÅüò«¸ÚP¦Mug§^ áùGR>a·ß©/¸ÿÊ^éþ_¥÷¿éybÚÁ¾¹)avAÌU^jeB3IPÐñºí¤ÃNñ|,N£´(·G>ªßKÙP¢pV¥,døé¾^
+«lÆ.ÑãIÅL±öu·r6Z´;ª_Ï<k§ò!¬Ä³?Më ÷gÔxGÜpJ@²62@ÿ1Ú²s m·Ry¤Z1s¸ ¾ã2æÊ.>ÆÅ>cÆ`ÏÉg!BeµÔ-Ñæ{í.w(Múpò0¶#J½# 3ÙàqF\~^ÓXÅ}âSË?[¯4+[OÇw¢¥C7BéE$hüv×kJÌJ²æïOÁvü³T±Ì EÈÀ 1iá<ðïywVQQ¹&dmÚ8§ÞÍ!,u¦°F°´T63M22 Àmhyc÷j¼]`Ïc½ß+}4Ø+m^ÊÛo·åÖ kêdsþsª0sjºôÄjAör
ÒU ñÑÃYn#dÌïmüYxÀÔ±ÓdYüÑ9ÿ·UùH O㢴ëbǧ N¡Á£`¿ÍÑEb¬¦ï9î,¦ÉG©`^ÍeyØì(W[w*.&#ê¡»'Ëo£Rö6 ÏÄ#P`HÆ;)È#¯âI}Õ0W\ò+j|(/o4s-
+Ü"Ùµ¾¤:[ÛaÓ¶Tõ~cÀÆ$kl;*oV©É+µé×|DQ¤EÓ¼ä#´ÊÊ\òsÖùÈÖöÊOÔ¦K¡ìh¡Btÿ
ùK{eæ Qe_yüÎy²j>¡ÀÖ8¯)¼rÚ`ñÞ¥¢X=RÕ¦@~£À½ï[¢¤ñRÉ?5ýk¼árù
FC&-SSò5, úÈYºô¬(ÍÃQñTï½mêrß×Nxræ9¦dɯÞ,JÖÙèðMfÈ{©Â-m|w§ÞÛ7ûYÓÊËÔcù)\¸/&´ë½ÂZÞs
+×Iݦ'¯¿ÑÒzÂQ:ÍH||<ØäT;æ´óÚl¨¬Î'ÏE|/q,ã
+QU¦àUG"ß³ßÔî¹wß0,¶ã"(ªGÈTHé¹Lk/¥czQHÎÖõÚSr
+((PòÉècP{ðû¿K\MtheCßià¤E5&©umô¹ÇbÛOQÝCûaõÁ>ÔéìÆå0ï£.üä/IlÄg|µk©\õFÞp8_QÄÜFà¢!ìO/"Êö`ß _¾[àÒdñz á+õ¬¦,ãJÿYu.i8¹ââ¼x&¾»*ÍBEt6ÈS°ï˾[°g22½º6-/ðxsUX_À¸Ö·!Qܯ¯ô`¢uyÁ¹BIMôÓeiUÑ"Q4P7» ò¡n<3÷~ÅÊEcÓÊÕCíz¥¢d*:
ôøY²W~Tô ÌVÆs|\%ùSàèSýï¬Ì]Mê9pó|sØÃA¦U#Á7FVM®^À4ÏgXaªf(gÛ4+ÂÝHúéf\{·Uy)ÀÉaô+w\ ðݵZY{PÇ÷ð×°öü>.¥_1¢ÂSKç$¿éþcöý +Ìøê3v¬Zº\\)mr§)ÌÄ7DÔ²#¶Wdfª»Ë·5LÓL®4õ(T1@Ê\t:½l4¡õbiûNÓ^üÊ¡¥Ü§¢£Ý¡¹]¯µ®Èe¡äÆ\®jRÔ|ëïÄïýøVÔ3ò
+R&+l5î=`¤Êéè´:F¨Í'ÞÕµµÄj#ð}$¤¥ _Qûvyü²8_qÙÜF}?¾)õÊéUØÉ!@
"rxîõ®-k^¸³´É-¯×Cï¡MV, /VgÆ8ýu×d3®³ý©ò&óÇ
+5l5)ëÆ_Róg3§6þòZ|Ó+/¢ÂV$Ï*Hkèª^÷$<[µù Þ; .Vârý/j¢ÉÂ5W_Ðñ·FµÍ\¸+Ó½ZÎjTÇ*B !à²Iþß¹®E}¶Þäµ·1yÔ¤ÿ<õëÐKÆ~¡uU2Á_¢6|§;¶× VÀÈ]GרáéÇ¿s7ù¢J*ãà_ÕiS"J]!÷Ź4¤&ueµºr÷itÔj
¡Îy9×^J¯<}ù ç£ÀIVÙWôL¾lõÒJ?<\¥å»®ÂeÔüÄ Ó¸ÝÌjMÚft¨ªÑ·TRð·q7xÙý½põÞ0;è4ú|¸óÁØÎÂeh)DéL§ tRs©»¶,ÑgõötCÚæß©Éߤ´ytç¹ÓûDXÕºéÝãíYêlz7î¹×ÜôjZ?Sóü!NÆW¹&yG;é½n/T#v×3q`íWò#àH7
+l@ÿõ¯_§Ã¼íd}Ôãg²Þæ(Ð^ËO5h£Ä¿»}ó?ë\
+endstream
+endobj
+99 0 obj
+<<
+/Type /Page
+/Contents 100 0 R
+/Resources 98 0 R
+/MediaBox [0 0 595.276 841.89]
+/Parent 64 0 R
+/Annots [ 49 0 R 50 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 103 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R ]
+>>
+endobj
+49 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [349.982 704.796 382.378 717.594]
+/A << /S /GoTo /D (cite.Graler2014) >>
+>>
+endobj
+50 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [384.108 704.796 407.919 717.594]
+/A << /S /GoTo /D (cite.Graler2014) >>
+>>
+endobj
+72 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [172.569 620.218 180.016 633.016]
+/A << /S /GoTo /D (equation.2.1) >>
+>>
+endobj
+73 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [230.739 620.218 238.186 633.016]
+/A << /S /GoTo /D (section.2) >>
+>>
+endobj
+74 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [170.182 579.57 202.578 592.368]
+/A << /S /GoTo /D (cite.Graler2014) >>
+>>
+endobj
+75 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [208.819 579.57 232.63 592.368]
+/A << /S /GoTo /D (cite.Graler2014) >>
+>>
+endobj
+76 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [401.909 566.021 522.996 578.819]
+/A << /S /GoTo /D (cite.Aas2009) >>
+>>
+endobj
+103 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [80.004 552.472 117.276 565.27]
+/A << /S /GoTo /D (cite.Aas2009) >>
+>>
+endobj
+77 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [118.581 552.472 142.392 565.27]
+/A << /S /GoTo /D (cite.Aas2009) >>
+>>
+endobj
+78 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [146.719 552.472 239.971 565.27]
+/A << /S /GoTo /D (cite.Bedford2002) >>
+>>
+endobj
+79 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [241.276 552.472 265.087 565.27]
+/A << /S /GoTo /D (cite.Bedford2002) >>
+>>
+endobj
+80 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [93.156 525.373 193.266 538.171]
+/A << /S /GoTo /D (cite.Graler2012a) >>
+>>
+endobj
+81 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [199.582 525.373 223.392 538.171]
+/A << /S /GoTo /D (cite.Graler2012a) >>
+>>
+endobj
+82 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [324.186 427.245 425.082 440.043]
+/A << /S /GoTo /D (cite.Kojadinovic2010a) >>
+>>
+endobj
+83 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [425.758 427.245 449.569 440.043]
+/A << /S /GoTo /D (cite.Kojadinovic2010a) >>
+>>
+endobj
+84 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [453.267 427.245 474.045 440.043]
+/A << /S /GoTo /D (cite.Yan2007) >>
+>>
+endobj
+85 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [474.721 427.245 498.531 440.043]
+/A << /S /GoTo /D (cite.Yan2007) >>
+>>
+endobj
+86 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [259.554 400.147 444.482 412.945]
+/A << /S /GoTo /D (cite.Schepsmeier2013) >>
+>>
+endobj
+87 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [446.149 400.147 469.959 412.945]
+/A << /S /GoTo /D (cite.Schepsmeier2013) >>
+>>
+endobj
+88 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [267.245 359.499 370.213 372.297]
+/A << /S /GoTo /D (cite.Pebesma2005) >>
+>>
+endobj
+89 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [372.198 359.499 396.008 372.297]
+/A << /S /GoTo /D (cite.Pebesma2005) >>
+>>
+endobj
+90 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [479.004 359.499 522.996 372.297]
+/A << /S /GoTo /D (cite.Pebesma2012) >>
+>>
+endobj
+91 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[0 1 0]
+/Rect [80.004 345.95 103.814 358.748]
+/A << /S /GoTo /D (cite.Pebesma2012) >>
+>>
+endobj
+92 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [152.046 335.128 159.493 344.692]
+/A << /S /GoTo /D (table.1) >>
+>>
+endobj
+93 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [512.527 289.081 519.975 300.76]
+/A << /S /GoTo /D (section.3) >>
+>>
+endobj
+94 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [117.881 275.532 125.328 287.211]
+/A << /S /GoTo /D (section.4) >>
+>>
+endobj
+95 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [341.662 248.433 349.109 260.113]
+/A << /S /GoTo /D (section.5) >>
+>>
+endobj
+96 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [118.141 209.902 125.588 219.465]
+/A << /S /GoTo /D (section.6) >>
+>>
+endobj
+97 0 obj
+<<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [293.612 209.902 301.059 219.465]
+/A << /S /GoTo /D (section.7) >>
+>>
+endobj
+101 0 obj
+<<
+/D [99 0 R /XYZ 80 770.89 null]
+>>
+endobj
+98 0 obj
+<<
+/Font << /F8 59 0 R /F74 102 0 R /F70 61 0 R /F48 55 0 R /F69 60 0 R /F21 104 0 R /F23 105 0 R >>
+/ProcSet [ /PDF /Text ]
+>>
+endobj
+130 0 obj
+<<
+/Length 4476
+/Filter /FlateDecode
+>>
+stream
+xÚÍ\[o#Ç~ׯ`í®[_läa=É8 'صE¢$bDQf'/ùë9·ºt³HQyá
+]ÕU§Ïõ;§§ÜLÊÉwgß^}õ¡¶UmÙªÉÅõDW¦ÐZMjWq«ÉÓoçjzÿ\-áOð·=£§ßÁåæü§¿L\S´µÌÊÂ6üÔ¿è~9wº;¾ ù_}hÒmUÛMYÁlhpÊY)dúO|¦-ÚJWøÈÌ[Tm;B
+]WüäßÏu3íæçº2]5ín´Ö/Î~>SHÍDMµE]¹IUQÑóÕÙ?+Ó6'ºÂéªhÜM>ýșd(oa5¬Ô¸©èÎgºÎ×ðÂ;ø»ëüKÇ'*Téü+o58µ_ôÌÛî×f¼ÿeSPW8Ò¢]¡Kã|.}%à~kÞ{K{Óõµ¬v?'=PÓå)%á.éàó>×UmQeÑÒaºµðÝi¸>Äõ¦.L Zª4|èÇï¹MkuýÌÆÚÖ²}èkFø)?jUôwÈpÐzkÃ?¹v6GÞu=xbXüX*|^z>£<îYªÔ);µMû䦦¸ø¢ÁkÌZU4ªÌD×_þ«
Ðx
+¶hèR¬2ì:¨¾?DõH_«¢¯ú.·GF]ûW§/mªÂÙãKÏnA3´°J$þð¦{Èß[ú<èÌD¢Uêâ¼D¹<ÿܺmô ¥)ìºÕRîàç"+~UBhü;RÓe¯Àí3¬+3Ôe´_¶,Æʾ8÷F-¸ª ®--¦¦Oh·ðgd£pÖEÙ¡½Hî·¤ Í"ÈrrÜ·ãIô*,Qú~µ úѺCZàóó
úË)JÐpâº9]4à=á0m%¼º~zÍú@ûàãоðjjÑI¼TxÏnvPhÊmæ)îÕm<˺÷h~üCÇËh'ûceB¥¾òJ^ôD3ñ>ß~»ÇW:âV«$N`s9ÜG·¾f®>ÌE0ÄñGÿÜÅ22¦¥¸GáØ
T9¼|©9ä6}¨ZWÔÎ~/;"*øN¢ÁË(²²`LBà,z=ÔzÃÃ(ÝNo¢QWÑ&%ªôRªvûÆ$(0z½É¬1Su¨
+ø1·+C¬ÛÓ#R"Æç¨GY%rUamçÏE§¦ÿGß¿,6§nôÉ\f¦¶ PGL¡`ÿÆ·¾/ü~ý0Ô¶<¼uÈ_Â{H õSѽxì\ó
+½ÍÁ
+'ÏòÔ·27eâGáÂ|rîuÌèl[ØòK0ýÔä m«{àÜÒ'óÃש«Bµf¬»A§9-0ª¤ÔϾåTGC$hmRYûÖSÃçq)e¥NW
+l
+÷˹Ü!Öî·ß»¹VÌ ÿ¤°:ÜÂò.
+gÄþ£}½½Îz!öòL/D÷ÇÓÈ
+_ô~RäXô¾Âenÿi.Þ¸¹Å°tIÆ°Þ9EòÀzÎäå¬Q çêKv#Æ
Ï|/×DÄK1º(Zµ¤ÀL¤·$ÔKZ|)ÐüHMÍ)]Tξ7úMYTU§ÎòârÀ@±Àùæ¹á¥Nì׬®6¤«µ×ÕLâ6gµ
+hi¨¹{öTuÏ\¸VçôõãKõvÀµ¤<3eYhд8£4ouqÞV»ïÕ×ç3kÍôo)hÇ
+(ZP
+älÐëM\ÔE £
/.ük¸ è=òëÓq¤h&jûyËLËò-X=¥²<dUab%©8PSwl·0öMQèalÄætÜjÛéÇλõÐ5'ê3#Ìé¤^P;Ö{äVmÒÇ}T35à?-\%XëϤrgL¾¾^ß$×(¶'B7ïp¾±$i"60gåEÆ >Ø¡EÃIß-cü|5Ý aÞFáØUÀ÷©¨
+²`éÿ;í Á«Aucqa-ëUÉ,ªè8ÊRÃ|íÀjPÝç3géïxpÉ"®.\ùG&©8Ã
×áyÎ ;iLQµ»³þüc-l·Öe"¨µvzESºe,à^»´xýkd]¶ÒÚÒ¬F"¥IÇ6F§¤sÛØú4ïIêO¹>4×toêhѨÏ(ßðLTÕÍ=EwVWãZLYÔªIÀGíépcKx ð³/
+²³§ÏAß¡7h( r$¸nõ'18rÂá ZsTÙ!¡SÁý^XÞ¦´ÆBÆÛ*¨y3.гdÖ?3ÛAq&ZË.cmuÄ<CMÀÕ¥¬¢&£E:ÍRùujî3Îúæ| 3³ÑMQ7MnÉf¼¢IWWPϾlû5~TüQûoøfWTBs§0ËeGÌ27»ÏÊÆ3ËeÖ}VÖ¨BYí>³úã>\u;б[©¡]ê÷âïiöd¾ì¯ø~V_ÙÔr<Ö/-¤#³Eg°ìð)¬ÀÅp{IÔº
¡y7ÕA1«
+ûµ
+}ªUÓ¬"czï°G¹tЪÿ7s¸à^páÇNØlà³ ªuxòé6:R¥àµÐ/²ñ*ÙSÔ]ì)2k-# ï^vd$¯É¯ËzzÛ%Ua¸SlïôI»â[høø
+$`êð9BÉ°séñ#Ì&{ôÆÙeRBàØ8J%®C"R
ÄÊbËHô( >Kõò¡1Ty wÞ%å´bCr ªµ¯ d¬prêËþÚ? [hÿeQ©Ñ¡-M.KN¶ÂÖô¦\ûÙ0?àmÅâ®ZN9×½×Àà}qÒ1Áñhui/}!à",[ÏÌcàué0A`0]Lf¬ºûM&)íªK: õå3q °Rô¸éÕSÁô;Áô0ik[¾C'$0ùz'9URçZðhb¯I?qËE\ôa&/Ê OæÂä´f9àâÇ@Þò?ùL 6®R#çÒÁ¤rqÎìË÷9K,´"-±øù¬¦Rn8T´çí¢A$ðñ ÷¾ZZ×I¤R¨
+¥ðq(Ô"Ä(Är :Ü0JꩤqjJbzM.0½oÓî,U°Y£óÉÀ©å¡÷ÃÓ;«Åqôóh7¢VëÔá×½RMÒ¹@kű¥©=A<ÆQÖº¹ñ¸ç»ê_Øî¢ñd-ÓòäòRª9Ûè°|ÕÛ(Ýds3ñÿøîlòìV%Ï>yW´TyÆFçÕïàjª@Ã5¼aþÏùèà$*M`
V,¶ÜuiIu<ÊAì
+Qev¨©9ÆCiLÌì߶
+ÞâOùµþdÞÝó+Eï;÷,,=@½Î¦ááÇWôîäcÀ¹ï¬yí-«ÄìiÀ×à@²RNbmaô`»x\6
+ÇÒw¢a¥¹Àú0:Afð*`ï÷y`ÓÖÕ R5öÙJßj|¡V%Q®S1É0ös-`úÞñÇÍ çãok¢ !àï|ÙÜW·_g*l,äþ)ËýÖÙ%ò¿d4«*4õý
+õKN³ÊÂÖÏkVLkªq¼û}<Ð6G9Ú@ÛÞgÀÝX=ZýòÔ!ãͲø@¨zA2ú"6G%úùõ:X.z
+ìQ®fIæbÒP
+ÿ@
+ÚäGcv^«]Q¶Ð<«3iì>®æMvÙÜeh £>)4
+¶3ÉuÀÛ6Ù÷êÙ@³áãñ£àÖ¸÷®ýñÚF>o=±¦t[n%¥k>~ëcy²ÙÈQÃÏyè# %½×ÇyBÐËß$D"¸{rì8QDG< 2û¤9¶ÇÎø ÿÿó*yW2ÿáML(»Ø QnTìBá
+Õ
+÷¼¦¹áHA"!ÐOMb^JÏww£7>¡ðQjìT8R§Q<æç,åK¢BðluÓÎËr''ã4ì©£³ýÝ QêbØlãÁ/Ç!«×hyñÏ<Âp7´:EûòÛ]îýÁu'÷<¸Ãì°Ekå
+FQtÜRrèrª'ã)}ÞEîBåcS¬rIEìP[dÉe¹,q4JM,ýJYeHòÜÖW®î½±Òñy9ÌÂÝ;_HilIÃ÷Y`X$oä&qÙwÊpEâÌÖ[ï>+Å©I
ã*þ&*µdÞL|Å~ÂTLje¸Ùj)-A>¿* *·DÕǺºÖͳÕÝät:_kbà,QMacÉå,¡©²¥}\â2 at ST®Bñ¬âõy»ïé65§TÌ¿&%FÄBj8Å»lö
¾±y<I©Vr°!9lU[4æ¿
+qÈåv'Qø.§uày «7£ó¬&«4¿&ÿ²&Q;ýIÔ~hßÄ$DÈcïP¯]Ã?Çô'
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/spcopula -r 161
More information about the spcopula-commits
mailing list