You are on page 1of 245

Math 115A - Week 1

Textbook sections: 1.1-1.6


Topics covered:

What is Linear algebra?


Overview of course
What is a vector? What is a vector space?
Examples of vector spaces
Vector subspaces
Span, linear dependence, linear independence
Systems of linear equations
Bases
*****
Overview of course
This course is an introduction to Linear algebra. Linear algebra is the
study of linear transformations and their algebraic properties.
A transformation is any operation that transforms an input to an output. A transformation is linear if (a) every amplification of the input
causes a corresponding amplification of the output (e.g. doubling of the
input causes a doubling of the output), and (b) adding inputs together
leads to adding of their respective outputs. [Well be more precise
about this much later in the course.]
A simple example of a linear transformation is the map y := 3x, where
the input x is a real number, and the output y is also a real number.
Thus, for instance, in this example an input of 5 units causes an output
of 15 units. Note that a doubling of the input causes a doubling of the
output, and if one adds two inputs together (e.g. add a 3-unit input
with a 5-unit input to form a 8-unit input) then the respective outputs
1

(9-unit and 15-unit outputs, in this example) also add together (to form
a 24-unit output). Note also that the graph of this linear transformation
is a straight line (which is where the term linear comes from).
(Footnote: I use the symbol := to mean is defined as, as opposed to
the symbol =, which means is equal to. (Its similar to the distinction
between the symbols = and == in computer languages such as C + +,
or the distinction between causation and correlation). In many texts
one does not make this distinction, and uses the symbol = to denote
both. In practice, the distinction is too fine to be really important, so
you can ignore the colons and read := as = if you want.)
An example of a non-linear transformation is the map y := x2 ; note
now that doubling the input leads to quadrupling the output. Also if
one adds two inputs together, their outputs do not add (e.g. a 3-unit
input has a 9-unit output, and a 5-unit input has a 25-unit output, but
a combined 3 + 5-unit input does not have a 9 + 25 = 34-unit output,
but rather a 64-unit output!). Note the graph of this transformation is
very much non-linear.
In real life, most transformations are non-linear; however, they can often be approximated accurately by a linear transformation. (Indeed,
this is the whole point of differential calculus - one takes a non-linear
function and approximates it by a tangent line, which is a linear function). This is advantageous because linear transformations are much
easier to study than non-linear transformations.
In the examples given above, both the input and output were scalar
quantities - they were described by a single number. However in many
situations, the input or the output (or both) is not described by a
single number, but rather by several numbers; in which case the input
(or output) is not a scalar, but instead a vector. [This is a slight
oversimplification - more exotic examples of input and output are also
possible when the transformation is non-linear.]
A simple example of a vector-valued linear transformation is given by
Newtons second law
F = ma, or equivalently a = F/m.
2

One can view this law as a statement that a force F applied to an


object of mass m causes an acceleration a, equal to a := F/m; thus
F can be viewed as an input and a as an output. Both F and a are
vectors; if for instance F is equal to 15 Newtons in the East direction
plus 6 Newtons in the North direction (i.e. F := (15, 6)N ), and the
object has mass m := 3kg, then the resulting acceleration is the vector
a = (5, 2)m/s2 (i.e. 5m/s2 in the East direction plus 2m/s2 in the
North direction).
Observe that even though the input and outputs are now vectors in
this example, this transformation is still linear (as long as the mass
stays constant); doubling the input force still causes a doubling of the
output acceleration, and adding two forces together results in adding
the two respective accelerations together.
One can write Newtons second law in co-ordinates. If we are in three
dimensions, so that F := (Fx , Fy , Fz ) and a := (ax , ay , az ), then the law
can be written as
1
Fx = ax + 0ay + 0az
m
1
Fy = 0ax + ay + 0az
m
1
Fz = 0ax + 0ay + az .
m
This linear transformation is associated to the matrix

1
0
0
m
0 1 0 .
m
0 0 m1
Here is another example of a linear transformation with vector inputs
and vector outputs:
y1 = 3x1 + 5x2 + 7x3
y2 = 2x1 + 4x2 + 6x3 ;
this linear transformation corresponds to the matrix


3 5 7
.
2 4 6
3

As it turns out, every linear transformation corresponds to a matrix,


although if one wants to split hairs the two concepts are not quite the
same thing. [Linear transformations are to matrices as concepts are to
words; different languages can encode the same concept using different
words. Well discuss linear transformations and matrices much later in
the course.]
Linear algebra is the study of the algebraic properties of linear transformations (and matrices). Algebra is concerned with how to manipulate symbolic combinations of objects, and how to equate one such
combination with another; e.g. how to simplify an expression such as
(x 3)(x + 5). In linear algebra we shall manipulate not just scalars,
but also vectors, vector spaces, matrices, and linear transformations.
These manipulations will include familiar operations such as addition,
multiplication, and reciprocal (multiplicative inverse), but also new operations such as span, dimension, transpose, determinant, trace, eigenvalue, eigenvector, and characteristic polynomial. [Algebra is distinct
from other branches of mathematics such as combinatorics (which is
more concerned with counting objects than equating them) or analysis
(which is more concerned with estimating and approximating objects,
and obtaining qualitative rather than quantitative properties).]
*****
Overview of course
Linear transformations and matrices are the focus of this course. However, before we study them, we first must study the more basic concepts
of vectors and vector spaces; this is what the first two weeks will cover.
(You will have had some exposure to vectors in 32AB and 33A, but
we will need to review this material in more depth - in particular we
concentrate much more on concepts, theory and proofs than on computation). One of our main goals here is to understand how a small set
of vectors (called a basis) can be used to describe all other vectors in
a vector space (thus giving rise to a co-ordinate system for that vector
space).
In weeks 3-5, we will study linear transformations and their co-ordinate
representation in terms of matrices. We will study how to multiply two
4

transformations (or matrices), as well as the more difficult question of


how to invert a transformation (or matrix). The material from weeks
1-5 will then be tested in the midterm for the course.
After the midterm, we will focus on matrices. A general matrix or linear
transformation is difficult to visualize directly, however one can understand them much better if they can be diagonalized. This will force us
to understand various statistics associated with a matrix, such as determinant, trace, characteristic polynomial, eigenvalues, and eigenvectors;
this will occupy weeks 6-8.
In the last three weeks we will study inner product spaces, which are
a fancier version of vector spaces. (Vector spaces allow you to add
and scalar multiply vectors; inner product spaces also allow you to
compute lengths, angles, and inner products). We then review the
earlier material on bases using inner products, and begin the study
of how linear transformations behave on inner product spaces. (This
study will be continued in 115B).
Much of the early material may seem familiar to you from previous
courses, but I definitely recommend that you still review it carefully, as
this will make the more difficult later material much easier to handle.
*****
What is a vector? What is a vector space?
We now review what a vector is, and what a vector space is. First let
us recall what a scalar is.
Informally, a scalar is any quantity which can be described by a single number. An example is mass: an object has a mass of m kg for
some real number m. Other examples of scalar quantities from physics
include charge, density, speed, length, time, energy, temperature, volume, and pressure. In finance, scalars would include money, interest
rates, prices, and volume. (You can think up examples of scalars in
chemistry, EE, mathematical biology, or many other fields).
The set of all scalars is referred to as the field of scalars; it is usually
just R, the field of real numbers, but occasionally one likes to work
5

with other fields such as C, the field of complex numbers, or Q, the


field of rational numbers. However in this course the field of scalars will
almost always be R. (In the textbook the scalar field is often denoted
F, just to keep aside the possibility that it might not be the reals R;
but I will not bother trying to make this distinction.)
Any two scalars can be added, subtracted, or multiplied together to
form another scalar. Scalars obey various rules of algebra, for instance
x + y is always equal to y + x, and x (y + z) is equal to x y + x z.
Now we turn to vectors and vector spaces. Informally, a vector is any
member of a vector space; a vector space is any class of objects which
can be added together, or multiplied with scalars. (A more popular,
but less mathematically accurate, definition of a vector is any quantity
with both direction and magnitude. This is true for some common
kinds of vectors - most notably physical vectors - but is misleading or
false for other kinds). As with scalars, vectors must obey certain rules
of algebra.
Before we give the formal definition, let us first recall some familiar
examples.
The vector space R2 is the space of all vectors of the form (x, y), where
x and y are real numbers. (In other words, R2 := {(x, y) : x, y R}).
For instance, (4, 3.5) is a vector in R2 . One can add two vectors in R2
by adding their components separately, thus for instance (1, 2)+(3, 4) =
(4, 6). One can multiply a vector in R2 by a scalar by multiplying each
component separately, thus for instance 3 (1, 2) = (3, 6). Among all
the vectors in R2 is the zero vector (0, 0). Vectors in R2 are used for
many physical quantities in two dimensions; they can be represented
graphically by arrows in a plane, with addition represented by the
parallelogram law and scalar multiplication by dilation.
The vector space R3 is the space of all vectors of the form (x, y, z),
where x, y, z are real numbers: R3 := {(x, y, z) : x, y, z R}. Addition
and scalar multiplication proceeds similar to R2 : (1, 2, 3) + (4, 5, 6) =
(5, 7, 9), and 4 (1, 2, 3) = (4, 8, 12). However, addition of a vector in
R2 to a vector in R3 is undefined; (1, 2) + (3, 4, 5) doesnt make sense.
6

Among all the vectors in R3 is the zero vector (0, 0, 0). Vectors in R3 are
used for many physical quantities in three dimensions, such as velocity,
momentum, current, electric and magnetic fields, force, acceleration,
and displacement; they can be represented by arrows in space.
One can similarly define the vector spaces R4 , R5 , etc. Vectors in
these spaces are not often used to represent physical quantities, and
are more difficult to represent graphically, but are useful for describing
populations in biology, portfolios in finance, or many other types of
quantities which need several numbers to describe them completely.
*****
Definition of a vector space
Definition. A vector space is any collection V of objects (called vectors) for which two operations can be performed:
Vector addition, which takes two vectors v and w in V and returns
another vector v + w in V . (Thus V must be closed under addition).
Scalar multiplication, which takes a scalar c in R and a vector v in V ,
and returns another vector cv in V . (Thus V must be closed under
scalar multiplication).
Furthermore, for V to be a vector space, the following properties must
be satisfied:
(I. Addition is commutative) For all v, w V , v + w = w + v.
(II. Addition is associative) For all u, v, w V , u+(v+w) = (u+v)+w.
(III. Additive identity) There is a vector 0 V , called the zero vector,
such that 0 + v = v for all v V .
(IV. Additive inverse) For each vector v V , there is a vector v V ,
called the additive inverse of v, such that v + v = 0.
(V. Multiplicative identity) The scalar 1 has the property that 1v = v
for all v V .

(VI. Multiplication is associative) For any scalars a, b R and any


vector v V , we have a(bv) = (ab)v.
(VII. Multiplication is linear) For any scalar a R and any vectors
v, w V , we have a(v + w) = av + aw.
(VIII. Multiplication distributes over addition) For any scalars a, b R
and any vector v V , we have (a + b)v = av + bv.
*****
(Not very important) Remarks
The number of properties listed is long, but they can be summarized
briefly as: the laws of algebra work! They are all eminently reasonable;
one would not want to work with vectors for which v + w 6= w + v, for
instance. Verifying all the vector space axioms seems rather tedious,
but later we will see that in most cases we dont need to verify all of
them.
Because addition is associative (axiom II), we will often write expressions such as u + v + w without worrying about which order the vectors
are added in. Similarly from axiom VI we can write things like abv.
We also write v w as shorthand for v + (w).
A philosophical point: we never say exactly what vectors are, only
what vectors do. This is an example of abstraction, which appears
everywhere in mathematics (but especially in algebra): the exact substance of an object is not important, only its properties and functions.
(For instance, when using the number three in mathematics, it is
unimportant whether we refer to three rocks, three sheep, or whatever;
what is important is how to add, multiply, and otherwise manipulate
these numbers, and what properties these operations have). This is
tremendously powerful: it means that we can use a single theory (linear algebra) to deal with many very different subjects (physical vectors,
population vectors in biology, portfolio vectors in finance, probability
distributions in probability, functions in analysis, etc.). [A similar philosophy underlies object-oriented programming in computer science.]
Of course, even though vector spaces can be abstract, it is often very
8

helpful to keep concrete examples of vector spaces such as R2 and R3


handy, as they are of course much easier to visualize. For instance,
even when dealing with an abstract vector space we shall often still
just draw arrows in R2 or R3 , mainly because our blackboards dont
have all that many dimensions.
Because we chose our field of scalars to be the field of real numbers R,
these vector fields are known as real vector fields, or vector fields over
R. Occasionally people use other fields, such as complex numbers C, to
define the scalars, thus creating complex vector fields (or vector fields
over C), etc. Another interesting choice is to use functions instead of
numbers as scalars (for instance, one could have an indeterminate x,
and let things like 4x3 + 2x2 + 5 be scalars, and (4x3 + 2x2 + 5, x4 4)
be vectors). We will stick almost exclusively with the real scalar field
in this course, but because of the abstract nature of this theory, almost
everything we say in this course works equally well for other scalar
fields.
A pedantic point: The zero vector is often denoted 0, but technically
it is not the same as the zero scalar 0. But in practice there is no harm
in confusing the two objects: zero of one thing is pretty much the same
as zero of any other thing.
*****
Examples of vector spaces
n-tuples as vectors. For any integer n 1, the vector space Rn is
defined to be the space of all n-tuples of reals (x1 , x2 , . . . , xn ). These
are ordered n-tuples, so for instance (3, 4) is not the same as (4, 3); two
vectors are equal (x1 , x2 , . . . , xn ) and (y1 , y2 , . . . , yn ) are only equal if
x1 = y1 , x2 = y2 , . . ., and xn = yn . Addition of vectors is defined by
(x1 , x2 , . . . , xn ) + (y1 , y2 , . . . , yn ) := (x1 + y1 , x2 + y2 , . . . , xn + yn )
and scalar multiplication by
c(x1 , x2 , . . . , xn ) := (cx1 , cx2 , . . . , cxn ).
The zero vector is
0 := (0, 0, . . . , 0)
9

and additive inverse is given by


(x1 , x2 , . . . , xn ) := (x1 , x2 , . . . , xn ).
A typical use of such a vector is to count several types of objects. For
instance, a simple ecosystem consisting of X units of plankton, Y units
of fish, and Z whales might be represented by the vector (X, Y, Z).
Combining two ecosystems together would then correspond to adding
the two vectors; natural population growth might correspond to multiplying the vector by some scalar corresponding to the growth rate.
(More complicated operations, dealing with how one species impacts
another, would probably be dealt with via matrix operations, which
we will come to later). As one can see, there is no reason for n to be
restricted to two or three dimensions.
The vector space axioms can be verified for Rn , but it is tedious to do
so. We shall just verify one axiom here, axiom VIII: (a + b)v = av + bv.
We can write the vector v in the form v := (x1 , x2 , . . . , xn ). The lefthand side is then
(a + b)v = (a + b)(x1 , x2 , . . . , xn ) = ((a + b)x1 , (a + b)x2 , . . . , (a + b)xn )
while the right-hand side is
av + bv = a(x1 , x2 , . . . , xn ) + b(x1 , x2 , . . . , xn )
= (ax1 , ax2 , . . . , axn ) + (bx1 , bx2 , . . . , bxn )
= (ax1 + bx1 , ax2 + bx2 , . . . , axn + bxn )
and the two sides match since (a + b)xj = axj + bxj for each j =
1, 2, . . . , n.
There are of course other things we can do with Rn , such as taking dot
products, lengths, angles, etc., but those operations are not common
to all vector spaces and so we do not discuss them here.
Scalars as vectors. The scalar field R can itself be thought of as a
vector space - after all, it has addition and scalar multiplication. It
is essentially the same space as R1 . However, this is a rather boring
10

vector space and it is often confusing (though technically correct) to


refer to scalars as a type of vector. Just as R2 represents vectors in
a plane and R3 represents vectors in space, R1 represents vectors in a
line.
The zero vector space. Actually, there is an even more boring vector
space than R - the zero vector space R0 (also called {0}), consisting
solely of a single vector 0, the zero vector, which is also sometimes
denoted () in this context. Addition and multiplication are trivial:
0 + 0 = 0 and c0 = 0. The space R0 represents vectors in a point.
Although this space is utterly uninteresting, it is necessary to include
it in the pantheon of vector spaces, just as the number zero is required
to complete the set of integers.
Complex numbers as vectors. The space C of complex numbers
can be viewed as a vector space over the reals; one can certainly add two
complex numbers together, or multiply a complex number by a (real)
scalar, with all the laws of arithmetic holding. Thus, for instance, 3+2i
would be a vector, and an example of scalar multiplication would be
5(3+2i) = 15+10i. This space is very similar to R2 , although complex
numbers enjoy certain operations, such as complex multiplication and
complex conjugate, which are not available to vectors in R2 .
Polynomials as vectors I. For any n 0, let Pn (R) denote the
vector space of all polynomials of one indeterminate variable x whose
degree is at most n. Thus for instance P3 (R) contains the vectors
x3 + 2x2 + 4;
but not
x4 + x + 1;

x2 4;

1.5x3 + 2.5x + ;

sin(x) + ex ;

x;

x3 + x3 .

Addition, scalar multiplication, and additive inverse are defined in the


standard manner, thus for instance
(x3 + 2x2 + 4) + (x3 + x2 + 4) = 3x2 + 8
and
3(x3 + 2x2 + 4) = 3x3 + 6x2 + 12.
The zero vector is just 0.
11

(0.1)

Notice in this example it does not really matter what x is. The space
Pn (R) is very similar to the vector space Rn+1 ; indeed one can match
one to the other by the pairing
an xn + an1 xn1 + . . . + a1 x + a0 (an , an1 , . . . , a1 , a0 ),
thus for instance in P3 (R), the polynomial x3 + 2x2 + 4 would be associated with the 4-tuple (1, 2, 0, 4). The more precise statement here
is that Pn (R) and Rn+1 are isomorphic vector spaces; more on this
later. However, the two spaces are still different; for instance we can
do certain operations in Pn (R), such as differentiate with respect to x,
which do not make much sense for Rn+1 .
Notice that we allow the polynomials to have degree less than n; if we
only allowed polynomials of degree exactly n, then we would not have
a vector space because the sum of two vectors would not necessarily be
a vector (see (0.1)). (In other words, such a space would not be closed
under addition).
Polynomials as vectors II. Let P (R) denote the vector space of all
polynomials of one indeterminate
variable x - regardless of degree. (In
S
other words, P (R) := n=0 Pn (R), the union of all the Pn (R)). Thus
this space in particular contains the monomials
1, x, x2 , x3 , x4 , . . .
though of course it contains many other vectors as well.
This space is much larger than any of the Pn (R), and is not isomorphic to any of the standard vector spaces Rn . Indeed, it is an infinite
dimensional space - there are infinitely many independent vectors in
this space. (More on this later).
Functions as vectors I. Why stick to polynomials? Let C(R) denote
the vector space of all continuous functions of one real variable x - thus
this space includes as vectors such objects as
x4 + x + 1;

sin(x) + ex ;

12

x3 + sin(x);

|x|.

One still has addition and scalar multiplication:


(sin(x) + ex ) + (x3 + sin(x)) = x3 + ex +
5(sin(x) + ex ) = 5 sin(x) + 5ex ,
and all the laws of vector spaces still hold. This space is substantially
larger than P (R), and is another example of an infinite dimensional
vector space.
Functions as vectors II. In the previous example the real variable
x could range over all the real line R. However, we could instead
restrict the real variable to some smaller set, such as the interval [0, 1],
and just consider the vector space C([0, 1]) of continuous functions on
[0, 1]. This would include such vectors such as
x4 + x + 1;

sin(x) + ex ;

x3 + sin(x);

|x|.

This looks very similar to C(R), but this space is a bit smaller because
more functions are equal. For instance, the functions x and |x| are
the same vector in C([0, 1]), even though they are different vectors in
C(R).
Functions as vectors III. Why stick to continuous functions? Let
F(R, R) denote the space of all functions of one real variable R, regardless of whether they are continuous or not. In addition to all the
vectors in C(R) the space F(R, R) contains many strange objects, such
as the function

1 if x Q
f (x) :=
0 if x 6 Q
This space is much, much, larger than C(R); it is also infinite dimensional, but it is in some sense more infinite than C(R). (More
precisely, the dimension of C(R) is countably infinite, but the dimension of F(R, R) is uncountably infinite. Further discussion is beyond
the scope of this course, but see Math 112).
Functions as vectors IV. Just as the vector space C(R) of continuous
functions can be restricted to smaller sets, the space F(R, R) can also
be restricted. For any subset S of the real line, let F(S, R) denote
13

the vector space of all functions from S to R, thus a vector in this


space is a function f which assigns a real number f (x) to each x in S.
Two vectors f , g would be considered equal if f (x) = g(x) for each x
in S. For instance, if S is the two element set S := {0, 1}, then the
two functions f (x) := x2 and g(x) := x would be considered the same
vector in F({0, 1}, R), because they equal the same value at 0 and 1.
Indeed, to specify any vector f in {0, 1}, one just needs to specify f (0)
and f (1). As such, this space is very similar to R2 .
Sequences as vectors. An infinite sequence is a sequence of real
numbers
(a1 , a2 , a3 , a4 , . . .);
for instance, a typical sequence is
(2, 4, 6, 8, 10, 12, . . .).
Let R denote the vector space of all infinite sequences. These sequences are added together by the rule
(a1 , a2 , . . .) + (b1 , b2 , . . .) := (a1 + b1 , a2 + b2 , . . .)
and scalar multiplied by the rule
c(a1 , a2 , . . .) := (ca1 , ca2 , . . .).
This vector space is very much like the finite-dimensional vector spaces
R2 , R3 , . . ., except that these sequences do not terminate.
Matrices as vectors. Given any integers m, n 1, we let Mmn (R)
be the space of all m n matrices (i.e. m rows and n columns) with
real entries, thus for instance M23 contains such vectors as




1 2 3
0
1 2
,
.
4 5 6
3 4 5
Two matrices are equal if and only if all of their individual components
match up; rearranging the entries of a matrix will produce a different

14

matrix. Matrix addition and scalar multiplication is defined similarly


to vectors:

 
 

1 2 3
0
1 2
1 1 1
+
=
4 5 6
3 4 5
1 1 1

 

1 2 3
10 20 30
10
=
.
4 5 6
40 50 60
Matrices are useful for many things, notably for solving linear equations and
for encoding linear transformations; more on these later in the course.
As you can see, there are (infinitely!) many examples of vector spaces, some
of which look very different from the familiar examples of R2 and R3 . Nevertheless, much of the theory we do here will cover all of these examples
simultaneously. When we depict these vector spaces on the blackboard, we
will draw them as if they were R2 or R3 , but they are often much larger,
and each point we draw in the vector space, which represents a vector, could
in reality stand for a very complicated object such as a polynomial, matrix,
or function. So some of the pictures we draw should be interpreted more as
analogies or metaphors than as a literal depiction of the situation.
*****
Non-vector spaces
Now for some examples of things which are not vector spaces.
Latitude and longitude. The location of any point on the earth can
be described by two numbers, e.g. Los Angeles is 34 N, 118 W. This
may look a lot like a two-dimensional vector in R2 , but the space of
all latitude-longitude pairs is not a vector space, because there is no
reasonable way of adding or scalar multiplying such pairs. For instance,
how could you multiply Los Angeles by 10? 340 N, 1180 W does not
make sense.
Unit vectors. In R3 , a unit vector is any vector with unit length, for
instance (0, 0, 1), (0, 1, 0), and ( 53 , 0, 45 ) are all unit vectors. However
the space of all unit vectors (sometimes denoted S 2 , for two-dimensional
sphere) is not a vector space as it is not closed under addition (or under
scalar multiplication).
15

The positive real axis. The space R+ of positive real numbers is


closed under addition, and obeys most of the rules of vector spaces, but
is not a vector space, because one cannot multiply by negative scalars.
(Also, it does not contain a zero vector).
Monomials. The space of monomials 1, x, x2 , x3 , . . . does not form a
vector space - it is not closed under addition or scalar multiplication.
*****
Vector arithmetic
The vector space axioms I-VIII can be used to deduce all the other
familiar laws of vector arithmetic. For instance, we have
Vector cancellation law If u, v, w are vectors such that u+v = u+w,
then v = w.
Proof: Since u is a vector, we have an additive inverse u such that
u+u = 0, by axiom IV. Now we add u to both sides of u+v = u+w:
u + (u + v) = u + (u + w).
Now use axiom II:
(u + u) + v = (u + u) + w
then axiom IV:
0+v =0+w
then axiom III:
v = w.
As you can see, these algebraic manipulations are rather trivial. After
the first week we usually wont do these computations in such painful
detail.
Some other simple algebraic facts, which you can amuse yourself with
by deriving them from the axioms:
0v = 0;

(1)v = v;

(v+w) = (v)+(w);
16

a0 = 0;

a(x) = (a)x = ax

*****
Vector subspaces
Many vector spaces are subspaces of another. A vector space W is a
subspace of a vector space V if W V (i.e. every vector in V is also a
vector in W ), and the laws of vector addition and scalar multiplication
are consistent (i.e. if v1 and v2 are in W , and hence in V , the rule that
W gives for adding v1 and v2 gives the same answer as the rule that V
gives for adding v1 and v2 .
For instance, the space P2 (R) - the vector space of polynomials of
degree at most 2 is a subspace of P3 (R). Both are subspaces of P (R),
the vector space of polynomials of arbitrary degree. C([0, 1]), the space
of continuous functions on [0, 1], is a subspace of F([0, 1], R). And
so forth. (Technically, R2 is not a subspace of R3 , because a twodimensional vector is not a three-dimensional vector. However, R3
does contain subspaces which are almost identical to R2 . More on this
later).
If V is a vector space, and W is a subset of V (i.e. W V ), then
of course we can add and scalar multiply vectors in W , since they are
automatically vectors in V . On the other hand, W is not necessarily
a subspace, because it may not be a vector space. (For instance, the
set S 2 of unit vectors in R3 is a subset of R3 , but is not a subspace).
However, it is easy to check when a subset is a subspace:
Lemma. Let V be a vector space, and let W be a subset of V . Then
W is a subspace of V if and only if the following two properties are
satisfied:
(W is closed under addition) If w1 and w2 are in W , then w1 + w2 is
also in W .
(W is closed under scalar multiplication) If w is in W and c is a scalar,
then cw is also in W .
Proof. First suppose that W is a subspace of V . Then W will be
closed under addition and multiplication directly from the definition of
vector space. This proves the only if part.
17

Now we prove the harder if part. In other words, we assume that W is


a subset of V which is closed under addition and scalar multiplication,
and we have to prove that W is a vector space. In other words, we
have to verify the axioms I-VIII.
Most of these axioms follow immediately because W is a subset of V ,
and V already obeys the axioms I-VIII. For instance, since vectors v1 , v2
in V obey the commutativity property v1 +v2 = v2 +v1 , it automatically
follows that vectors in W also obey the property w1 + w2 = w2 + w1 ,
since all vectors in W are also vectors in V . This reasoning easily gives
us axioms I, II, V, VI, VII, VIII.
There is a potential problem with III though, because the zero vector 0
of V might not lie in W . Similarly with IV, there is a potential problem
that if w lies in W , then w might not lie in W . But both problems
cannot occur, because 0 = 0w and w = (1)w (Exercise: prove this
from the axioms!), and W is closed under scalar multiplication.

This Lemma makes it quite easy to generate a large number of vector
spaces, simply by taking a big vector space and passing to a subset
which is closed under addition and scalar multiplication. Some examples:
(Horizontal vectors) Recall that R3 is the vector space of all vectors
(x, y, z) with x, y, z real. Let V be the subset of R3 consisting of all
vectors with zero z co-ordinate, i.e. V := {(x, y, 0) : x, y R}. This is
a subset of R3 , but moreover it is also a subspace of R3 . To see this,
we use the Lemma. It suffices to show that V is closed under vector
addition and scalar multiplication. Lets check the vector addition. If
we have two vectors in V , say (x1 , y1 , 0) and (x2 , y2 , 0), we need to
verify that the sum of these two vectors is still in V . But the sum is
just (x1 + x2 , y1 + y2 , 0), and this is in V because the z co-ordinate
is zero. Thus V is closed under vector addition. A similar argument
shows that V is closed under scalar multiplication, and so V is indeed
a subspace of R3 . (Indeed, V is very similar to - though technically not
the same thing as - R2 ). Note that if we considered instead the space
of all vectors with z co-ordinate 1, i.e. {(x, y, 1) : x, y R}, then this

18

would be a subset but not a subspace, because it is not closed under


vector addition (or under scalar multiplication, for that matter).
Another example of a subspace of R3 is the plane {(x, y, z) R3 :
x + 2y + 3z = 0}. A third example of a subspace of R3 is the line
{(t, 2t, 3t) : t R}. (Exercise: verify that these are indeed subspaces).
Notice how subspaces tend to be very flat objects which go through the
origin; this is consistent with them being closed under vector addition
and scalar multiplication.
In R3 , the only subspaces are lines through the origin, planes through
the origin, the whole space R3 , and the zero vector space {0}. In R2 ,
the only subspaces are lines through the origin, the whole space R2 ,
and the zero vector space {0}. (This is another clue as to why this
subject is called linear algebra).
(Even polynomials) Recall that P (R) is the vector space of all polynomials f (x). Call a polynomial even if f (x) = f (x); for instance,
f (x) = x4 + 2x2 + 3 is even, but f (x) = x3 + 1 is not. Let Peven (R)
denote the set of all even polynomials, thus Peven (R) is a subset of
P (R). Now we show that Peven (R) is not just a subset, it is a subspace of P (R). Again, it suffices to show that Peven (R) is closed under
vector addition and scalar multiplication. Lets show its closed under vector addition - i.e. if f and g are even polynomials, we have to
show that f + g is also even. In other words, we have to show that
f (x) + g(x) = f (x) + g(x). But this is clear since f (x) = f (x)
and g(x) = g(x). A similar argument shows why even polynomials
are closed under scalar multiplication.
(Diagonal matrices) Let n 1 be an integer. Recall that Mnn (R)
is the vector space of n n real matrices. Call a matrix diagonal if
all the entries away from the main diagonal (from top left to bottom
right) are zero, thus for instance

1 0 0
0 2 0
0 0 3

19

is a diagonal matrix. Let Dn (R) denote the space of all diagonal n n


matrices. This is a subset of Mnn (R), and is also a subspace, because
the sum of any two diagonal matrices is again a diagonal matrix, and
the scalar product of a diagonal matrix and a scalar is still a diagonal
matrix. The notation of a diagonal matrix will become very useful
much later in the course.
(Trace zero matrices) Let n 1 be an integer. If A is an n n
matrix, we define the trace of that matrix, denoted tr(A), to be the
sum of all the entries on the diagonal. For instance, if

1 2 3
A= 4 5 6
7 8 9
then
tr(A) = 1 + 5 + 9 = 15.
Let

0
Mnn
(R)

denote the set of all n n matrices whose trace is zero:


0
(R) := {A Mnn : tr(A) = 0}.
Mnn

One can easily check that this space is a subspace of Mnn . We will
return to traces much later in this course.
Technically speaking, every vector space V is considered a subspace of
itself (since V is already closed under addition and scalar multiplication). Also the zero vector space {0} is a subspace of every vector space
(for a similar reason). But these are rather uninteresting examples of
subspaces. We sometimes use the term proper subspace of V to denote
a subspace W of V which is not the whole space V or the zero vector
space {0}, but instead is something in between.
The intersection of two subspaces is again a subspace (why?). For
instance, since the diagonal matrices Dn (R) and the trace zero matrices
0
Mnn
(R) are both subspaces of Mnn (R), their intersection Dn (R)
0
Mnn (R) is also a subspace of Mnn (R). On the other hand, the
union of two subspaces is usually not a subspace. For instance, the
x-axis {(x, 0) : x R} and y-axis {(0, y) : y R}, but their union
{(x, 0) : x R} {(0, y) : y R} is not (why?). See Assignment 1 for
more details.
20

In some texts one uses the notation W V to denote the statement


W is a subspace of V . Ill avoid this as it may be a little confusing at
first. However, the notation is suggestive. For instance it is true that
if U W and W V , then U V ; i.e. if U is a subspace of W , and
W is a subspace of V , then U is a subspace of V . (Why?)
*****
Linear combinations
Lets look at the standard vector space R3 , and try to build some
subspaces of this space. To get started, lets pick a random vector in
R3 , say v := (1, 2, 3), and ask how to make a subspace V of R3 which
would contain this vector (1, 2, 3). Of course, this is easy to accomplish
by setting V equal to all of R3 ; this would certainly contain our single
vector v, but that is overkill. Lets try to find a smaller subspace of R3
which contains v.
We could start by trying to make V just consist of the single point
(1, 2, 3): V := {(1, 2, 3)}. But this doesnt work, because this space
is not a vector space; it is not closed under scalar multiplication. For
instance, 10(1, 2, 3) = (10, 20, 30) is not in the space. To make V a
vector space, we cannot just put (1, 2, 3) into V , we must also put
in all the scalar multiples of (1, 2, 3): (2, 4, 6), (3, 6, 9), (1, 2, 3),
(0, 0, 0), etc. In other words,
V {a(1, 2, 3) : a R}.
Conversely, the space {a(1, 2, 3) : a R} is indeed a subspace of R3
which contains (1, 2, 3). (Exercise!). This space is the one-dimensional
space which consists of the line going through the origin and (1, 2, 3).
To summarize what weve seen so far, if one wants to find a subspace
V which contains a specified vector v, then it is not enough to contain
v; one must also contain the vectors av for all scalars a. As we shall see
later, the set {av : a R} will be called the span of v, and is denoted
span({v}).
Now lets suppose we have two vectors, v := (1, 2, 3) and w := (0, 0, 1),
and we want to construct a vector space V in R3 which contains both
21

v and w. Again, setting V equal to all of R3 will work, but lets try to
get away with as small a space V as we can.
We know that at a bare minimum, V has to contain not just v and w,
but also the scalar multiples av and bw of v and w, where a and b are
scalars. But V must also be closed under vector addition, so it must
also contain vectors such as av +bw. For instance, V must contain such
vectors as
3v + 5w = 3(1, 2, 3) + 5(0, 0, 1) = (3, 6, 9) + (0, 0, 5) = (3, 6, 14).
We call a vector of the form av + bw a linear combination of v and w,
thus (3, 6, 14) is a linear combination of (1, 2, 3) and (0, 0, 1). The space
{av + bw : a, b R} of all linear combinations of v and w is called the
span of v and w, and is denoted span({v, w}). It is also a subspace of
R3 ; it turns out to be the plane through the origin that contains both
v and w.
More generally, we define the notions of linear combination and span
as follows.
Definition. Let S be a collection of vectors in a vector space V (either
finite or infinite). A linear combination of S is defined to be any vector
in V of the form
a1 v 1 + a2 v 2 + . . . + an v n
where a1 , . . . , an are scalars (possibly zero or negative), and v1 , . . . , vn
are some elements in S. The span of S, denoted span(S), is defined to
be the space of all linear combinations of S:
span(S) := {a1 v1 + a2 v2 + . . . + an vn : a1 , . . . , an R; v1 , . . . , vn S}.
Usually we deal with the case when the set S is just a finite collection
S = {v1 , . . . , vn }
of vectors. In that case the span is just
span({v1 , . . . , vn }) := {a1 v1 + a2 v2 + . . . + an vn : a1 , . . . , an R}.
(Why?)
22

Occasionally we will need to deal when S is empty. In this case we set


the span span() of the empty set to just be {0}, the zero vector space.
(Thus 0 is the only vector which is a linear combination of an empty
set of vectors. This is part of a larger mathematical convention, which
states that any summation over an empty set should be zero, and every
product over an empty set should be 1.)
Here are some basic properties of span.
Theorem. Let S be a subset of a vector space V . Then span(S) is a
subspace of V which contains S as a subset. Moreover, any subspace
of V which contains S as a subset must in fact contain all of span(S).
We shall prove this particular theorem in detail to illustrate how to go
about giving a proof of a theorem such as this. In later theorems we
will skim over the proofs more quickly.
Proof. If S is empty then this theorem is trivial (in fact, it is rather
vacuous - it says that the space {0} contains all the elements of an
empty set of vectors, and that any subspace of V which contains the
elements of an empty set of vectors, must also contain {0}), so we shall
assume that n 1. We now break up the theorem into its various
components.
(a) First we check that span(S) is a subspace of V . To do this we need
to check three things: that span(S) is contained in V ; that it is closed
under addition; and that it is closed under scalar multiplication.
(a.1) To check that span(S) is contained in V , we need to take a typical
element of the span, say a1 v1 + . . . + an vn , where a1 , . . . , an are scalars
and v1 , . . . , vn S, and verify that it is in V . But this is clear since
v1 , . . . , vn were already in V and V is closed under addition and scalar
multiplication.
(a.2) To check that the space span(S) is closed under vector addition,
we take two typical elements of this space, say a1 v1 + . . . + an vn and
b1 v1 + . . . + bn vn , where the aj and bj are scalars and vj S for j =
1, . . . n, and verify that their sum is also in span(S). But the sum is
(a1 v1 + . . . + an vn ) + (b1 v1 + . . . + bn vn )
23

which can be rearranged as


(a1 + b1 )v1 + . . . + (an + bn )vn
[Exercise: which of the vector space axioms I-VIII were needed in order
to do this?]. But since a1 + b1 , . . . , an + bn are all scalars, we see that
this is indeed in span(S).
(a.3) To check that the space span(S) is closed under scalar multiplication, we take a typical element of this space, say a1 v1 + . . . an vn , and
a typical scalar c. We want to verify that the scalar product
c(a1 v1 + . . . + an vn )
is also in span({v1 , . . . , vn }). But this can be rearranged as
(ca1 )v1 + . . . + (can )vn
(which axioms were used here?). Since ca1 , . . . , can were scalars, we see
that we are in span(S) as desired.
(b) Now we check that span(S) contains S. It will suffice of course to
show that span(S) contains v for each v S. But each v is clearly a
linear combination of elements in S, in fact v = 1.v and v S. Thus v
lies in span(S) as desired.
(c) Now we check that every subspace of V which contains S, also
contains span(S). In order to stop from always referring to that subspace, let us use W to denote a typical subspace of V which contains
S. Our goal is to show that W contains span(S).
This the same as saying that every element of span(S) lies in W . So,
let v = a1 v1 + . . . + an vn be a typical element of span(S), where the aj
are scalars and vj S for j = 1, . . . , n. Our goal is to show that v lies
in W .
Since v1 lies in W , and W is closed under scalar multiplication, we see
that a1 v1 lies in W . Similarly a2 v2 , . . . , an vn lie in W . But W is closed
under vector addition, thus a1 v1 + . . . + an vn lies in W , as desired. This
concludes the proof of the Theorem.


24

We remark that the span of a set of vectors does not depend on what
order we list the set S: for instance, span({u, v, w}) is the same as
span({w, v, u}). (Why is this?)
The span of a set of vectors comes up often in applications, when one
has a certain number of moves available in a system, and one wants
to see what options are available by combining these moves. We give
a example, from a simple economic model, as follows.
Suppose you run a car company, which uses some basic raw materials
- lets say money, labor, metal, for sake of argument - to produce some
cars. At any given point in time, your resources might consist of x
units of money, y units of labor (measured, say, in man-hours), z units
of metal, and w units of cars, which we represent by a vector (x, y, z, w).
Now you can make various decisions to alter your balance of resources.
For instance, suppose you could purchase a unit of metal for two units
of money - this amounts to adding (2, 0, 1, 0) to your resource vector.
You could do this repeatedly, thus adding a(2, 0, 1, 0) to your resource
vector for any positive a. (If you could also sell a unit of metal for two
units of money, then a could also be negative. Of course, a can always
be zero, simply by refusing to buy or sell any metal). Similarly, one
might be able to purchase a unit of labor for three units of money, thus
adding (3, 1, 0, 0) to your resource vector. Finally, to produce a car
requires 4 units of labor and 5 units of metal, thus adding (0, 4, 5, 1)
to your resource vector. (This is course an extremely oversimplified
model, but will serve to illustrate the point).
Now we ask the question of how much money it will cost to create a
car - in other words, for what price x can we add (x, 0, 0, 1) to our
resource vector? The answer is 22, because
(22, 0, 0, 1) = 5(2, 0, 1, 0) + 4(3, 1, 0, 0) + 1(0, 4, 5, 1)
and so one can convert 22 units of money to one car by buying 5 units
of metal, 4 units of labor, and producing one car. On the other hand,
it is not possible to obtain a car for a smaller amount of money using
the moves available (why?). In other words, (22, 0, 0, 1) is the unique
vector of the form (x, 0, 0, 1) which lies in the span of the vectors
(2, 0, 1, 0), (3, 1, 0, 0), and (0, 4, 5, 1).
25

Of course, the above example was so simple that we could have worked
out the price of a car directly. But in more complicated situations
(where there arent so many zeroes in the vector entries) one really has
to start computing the span of various vectors. [Actually, things get
more complicated than this because in real life there are often other
constraints. For instance, one may be able to buy labor for money, but
one cannot sell labor to get the money back - so the scalar in front of
(3, 1, 0, 0) can be positive but not negative. Or storage constraints
might limit how much metal can be purchased at a time, etc. This
passes us from linear algebra to the more complicated theory of linear
programming, which is beyond the scope of this course. Also, due to
such things as the law of diminishing returns and the law of economies
of scale, in real life situations are not quite as linear as presented in
this simple model. This leads us eventually to non-linear optimization
and control theory, which is again beyond the scope of this course.]
This leads us to ask the following question: How can we tell when one
given vector v is in the span of some other vectors v1 , v2 , . . . vn ? For
instance, is the vector (0, 1, 2) in the span of (1, 1, 1), (3, 2, 1), (1, 0, 1)?
This is the same as asking for scalars a1 , a2 , a3 such that
(0, 1, 2) = a1 (1, 1, 1) + a2 (3, 2, 1) + a3 (1, 0, 1).
We can multiply out the left-hand side as
(a1 + 3a2 + a3 , a1 + 2a2 , a1 + a2 + a3 )
and so we are asking to find a1 , a2 , a3 that solve the equations
a1 +3a2 +a3 = 0
a1 +2a2
=1
a1 +a2 a3
= 2.
This is a linear system of equations; system because it consists of
more than one equation, and linear because the variables a1 , a2 , a3
only appear as linear factors (as opposed to quadratic factors such as
a21 or a2 a3 , or more non-linear factors such as sin(a1 )). Such a system
can also be written in matrix form


1 3 1
a1
0
1 2 0 a2 = 1
1 1 1
a3
2
26

or schematically as

1 3 1 0
1 2 0 1 .

1 1 1 2

To actually solve this system of equations and find a1 , a2 , a3 , one of


the best methods is to use Gaussian elimination. The idea of Gaussian
elimination is to try to make as many as possible of the numbers in
the matrix equal to zero, as this will make the linear system easier to
solve. There are three basic moves:
Swap two rows: Since it does not matter which order we display the
equations of a system, we are free to swap any two rows of the system. This is mostly a cosmetic move, useful in making the system look
prettier.
Multiply a row by a constant: We can multiply (or divide) both sides
of an equation by any constant (although we want to avoid multiplying
a row by 0, as that reduces that equation to the trivial 0=0, and the
operation cannot be reversed since division by 0 is illegal). This is
again a mostly cosmetic move, useful for setting one of the co-efficients
in the matrix to 1.
Subtract a multiple of one row from another: This is the main move.
One can take any row, multiply it by any scalar, and subtract (or
add) the resulting object from a second row; the original row remains
unchanged. The main purpose of this is to set one or more of the matrix
entries of the second row to zero.
We illustrate these moves with the above system. We could use the
matrix form or the schematic form, but we shall stick with the linear
system form for now:
a1 +3a2 +a3 = 0
a1 +2a2
=1
a1 +a2 +a3 = 2.
We now start zeroing the a1 entries by subtracting the first row from

27

the second:
a1 +3a2 +a3 = 0
a2 a3 = 1
a1 +a2 +a3 = 2
and also subtracting the first row from the third:
a1 +3a2 +a3 = 0
a2 a3 = 1
2a2
= 2.
The third row looks simplifiable, so we swap it up
a1 +3a2 +a3 = 0
2a2
=2
a2 a3 = 1
and then divide it by -2:
a1 + 3a2 +a3 = 0
a2
= 1
a2 a3 = 1.
Then we can zero the a2 entries by subtracting 3 copies of the second
row from the first, and adding one copy of the second row to the third:
a1
a2

+a3 = 3
= 1
a3 = 0.

If we then multiply the third row by 1 and then subtract it from the
first, we obtain
a1
=3
a2
= 1
a3 = 0
and so we have found the solution, namely a1 = 3, a2 = 1, a3 = 0.
Getting back to our original problem, we have indeed found that (0, 1, 2)
is in the span of (1, 1, 1), (3, 2, 1), (1, 0, 1):
(0, 1, 2) = 3(1, 1, 1) + (1)(3, 2, 1) + 0(1, 0, 1).
28

In the above case we found that there was only one solution for a1 ,
a2 , a3 - they were exactly determined by the linear system. Sometimes
there can be more than one solution to a linear system, in which case
we say that the system is under-determined - there are not enough
equations to pin down all the variables exactly. This usually happens
when the number of unknowns exceeds the number of equations. For
instance, suppose we wanted to show that (0, 1, 2) is in the span of the
four vectors (1, 1, 1), (3, 2, 1), (1, 0, 1), (0, 0, 1):
(0, 1, 2) = a1 (1, 1, 1) + a2 (3, 2, 1) + a3 (1, 0, 1) + a4 (0, 0, 1).
This is the system
a1 +3a2 +a3
=0
a1 +2a2
=1
a1 +a2 +a3 +a4 = 2.
Now we do Gaussian elimination again. Subtracting the first row from
the second and third:
a1 +3a2 +a3
=0
a2 a3
=1
2a2
+a4 = 2.
Multiplying the second row by 1, then eliminating a2 from the first
and third rows:
a1
2a3
=3
a2 +a3
= 1
2a3
+a4 = 0.
At this stage the system is in reduced normal form, which means that,
starting from the bottom row and moving upwards, each equation introduces at least one new variable (ignoring any rows which have collapsed
to something trivial like 0 = 0). Once one is in reduced normal form,
there isnt much more simplification one can do. In this case there is
no unique solution; one can set a4 to be arbitrary. The third equation
then allows us to write a3 in terms of a4 :
a3 = a4 /2
29

while the second equation then allows us to write a2 in terms of a3 (and


thus of a4 :
a2 = 1 a3 = 1 + a4 /2.
Similarly we can write a1 in terms of a4 :
a1 = 3 + 2a3 = 3 a4 .
Thus the general way to write (0, 1, 2) as a linear combination of (1, 1, 1),
(3, 2, 1), (1, 0, 1), (0, 0, 1) is
(0, 1, 2) = (3a4 )(1, 1, 1)+(1+a4 /2)(3, 2, 1)+(a4 /2)(1, 0, 1)+a4 (0, 0, 1);
for instance, setting a4 = 4, we have
(0, 1, 2) = (1, 1, 1) + (3, 2, 1) 2(1, 0, 1) + 4(0, 0, 1)
while if we set a4 = 0, then we have
(0, 1, 2) = 3(1, 1, 1) 1(3, 2, 1) + 0(1, 0, 1) + 0(0, 0, 1)
as before. Thus not only is (0, 1, 2) in the span of (1, 1, 1), (3, 2, 1),
(1, 0, 1), and (0, 0, 1), it can be written as a linear combination of such
vectors in many ways. This is because some of the vectors in this set are
redundant - as we already saw, we only needed the first three vectors
(1, 1, 1), (3, 2, 1) and (1, 0, 1) to generate (0, 1, 2); the fourth vector
(0, 0, 1) was not necessary. As we shall see, this is because the four
vectors (1, 1, 1), (3, 2, 1), (1, 0, 1), and (0, 0, 1) are linearly dependent.
More on this later.
Of course, sometimes a vector will not be in the span of other vectors
at all. For instance, (0, 1, 2) is not in the span of (3, 2, 1) and (1, 0, 1).
If one were to try to solve the system
(0, 1, 2) = a1 (3, 2, 1) + a2 (1, 0, 1)
one would be solving the system
3a1 + a2 = 0
2a1
=1
a1 + a2 = 2.
30

If one swapped the first and second rows, then divided the first by two,
one obtains
a1
= 1/2
3a1 + a2
=0
a1
+a2 = 2.
Now zeroing the a1 coefficient in the second and third rows gives
a1
a2
a2

= 1/2
= 3/2 .
= 3/2.

Subtracting the second from the third, we get an absurd result:


a1
a2
0

= 1/2
= 3/2
= 3.

Thus there is no solution, and (0, 1, 2) is not in the span.


*****
Spanning sets
Definition. A set S is said to span a vector space V if span(S) = V ;
i.e. every vector in V is generated as a linear combination of elements
of S. We call S a spanning set for V . (Sometimes one uses the verb
generated instead of spanned, thus V is generated by S and S is a
generating set for V .)
A model example of a spanning set is the set {(1, 0, 0), (0, 1, 0), (0, 0, 1)}
in R3 ; every vector in R3 can clearly be written as a linear combination
of these three vectors, e.g.
(3, 7, 13) = 3(1, 0, 0) + 7(0, 1, 0) + 13(0, 0, 1).
There are of course similar examples for other vector spaces. For instance, the set {1, x, x2 , x3 } spans P3 (R) (why?).

31

One can always add additional vectors to a spanning set and still get a
spanning set. For instance, the set {(1, 0, 0), (0, 1, 0), (0, 0, 1), (9, 14, 23), (15, 24, 99)}
is also a spanning set for R3 , for instance
(3, 7, 13) = 3(1, 0, 0) + 7(0, 1, 0) + 13(0, 0, 1) + 0(9, 14, 23) + 0(15, 24, 99).
Of course the last two vectors are not playing any significant role here,
and are just along for the ride. A more extreme example: every vector
space V is a spanning set for itself, span(V ) = V .
On the other hand, removing elements from a spanning set can cause it
to stop spanning. For instance, the two-element set {(1, 0, 0), (0, 1, 0)}
does not span, because there is no way to write (3, 7, 13) (for instance)
as a linear combination of (1, 0, 0), (0, 1, 0).
Spanning sets are useful because they allow one to describe all the vectors in a space V in terms of a much smaller space S. For instance,
the set S := {(1, 0, 0), (0, 1, 0), (0, 0, 1)} only consists of three vectors,
whereas the space R3 which S spans consists of infinitely many vectors. Thus, in principle, in order to understand the infinitely many
vectors R3 , one only needs to understand the three vectors in S (and
to understand what linear combinations are).
However, as we see from the above examples, spanning sets can contain
junk vectors which are not actually needed to span the set. Such junk
occurs when the set is linearly dependent. We would like to now remove
such junk from the spanning sets and create a minimal spanning set
- a set whose elements are all linearly independent. Such a set is known
as a basis. In the rest of this series of lecture notes we discuss these
related concepts of linear dependence, linear independence, and being
a basis.
*****
Linear dependence and independence
Consider the following three vectors in R3 : v1 := (1, 2, 3), v2 := (1, 1, 1),
v3 := (3, 5, 7). As we now know, the span span({v1 , v2 , v3 }) of this set
is just the set of all linear combinations of v1 , v2 , v3 :
span({v1 , v2 , v3 }) := {a1 v1 + a2 v2 + a3 v3 : a1 , a2 , a3 R}.
32

Thus, for instance 3(1, 2, 3) + 4(1, 1, 1) + 1(3, 5, 7) = (10, 15, 20) lies in
the span. However, the (3, 5, 7) vector is redundant because it can be
written in terms of the other two:
v3 = (3, 5, 7) = 2(1, 2, 3) + (1, 1, 1) = 2v1 + v2
or more symmetrically
2v1 + v2 v3 = 0.
Thus any linear combination of v1 , v2 , v3 is in fact just a linear combination of v1 and v2 :
a1 v1 +a2 v2 +a3 v3 = a1 v1 +a2 v2 +a3 (2v1 +v2 ) = (a1 +2a3 )v1 +(a2 +a3 )v2 .
Because of this redundancy, we say that the vectors v1 , v2 , v3 are linearly
dependent. More generally, we say that any collection S of vectors in a
vector space V are linearly dependent if we can find distinct elements
v1 , . . . , vn S, and scalars a1 , . . . , an , not all equal to zero, such that
a1 v1 + a2 v2 + . . . + an vn = 0.
(Of course, 0 can always be written as a linear combination of v1 , . . . , vn
in a trivial way: 0 = 0v1 +. . .+0vn . Linear dependence means that this
is not the only way to write 0 as a linear combination, that there exists
at least one non-trivial way to do so). We need the condition that the
v1 , . . . , vn are distinct to avoid silly things such as 2v1 + (2)v1 = 0.
In the case where S is a finite set S = {v1 , . . . , vn }, then S is linearly
dependent if and only if we can find scalars a1 , . . . , an not all zero such
that
a1 v1 + . . . + an vn = 0.
(Why is the same as the previous definition? Its a little subtle).
If a collection of vectors S is not linearly dependent, then they are said
to be linearly independent. An example is the set {(1, 2, 3), (0, 1, 2)}; it
is not possible to find a1 , a2 , not both zero for which
a1 (1, 2, 3) + a2 (0, 1, 2) = 0,
33

because this would imply


a1
=0
2a1 +a2 = 0 ,
3a1 +2a2 = 0
which can easily be seen to only be true if a1 and a2 are both 0. Thus
there is no non-trivial way to write the zero vector 0 = (0, 0, 0) as a
linear combination of (1, 2, 3) and (0, 1, 2).
By convention, an empty set of vectors (with n = 0) is always linearly
independent (why is this consistent with the definition?)
As indicated above, if a set is linearly dependent, then we can remove
one of the elements from it without affecting the span.
Theorem. Let S be a subset of a vector space V . If S is linearly
dependent, then there exists an element v of S such that the smaller
set S {v} has the same span as S:
span(S {v}) = span(S).
Conversely, if S is linearly independent, then every proper subset S 0 (
S of S will span a strictly smaller set than S:
span(S 0 ) ( span(S).
Proof. Lets prove the first claim: if S is a linearly dependent subset
of V , then we can find v S such that span(S {v}) = span(S).
Since S is linearly dependent, then by definition there exists distinct
v1 , . . . , vn and scalars a1 , . . . , an , not all zero, such that
a1 v1 + . . . + an vn = 0.
We know that at least one of the aj are non-zero; without loss of generality we may assume that a1 is non-zero (since otherwise we can just
shuffle the vj to bring the non-zero coefficient out to the front). We
can then solve for v1 by dividing by a1 :
an
a2
v1 = v2 . . . vn .
a1
a1
34

Thus any expression involving v1 can instead be written to involve


v2 , . . . , vn instead. Thus any linear combination of v1 and other vectors
in S not equal to v1 can be rewritten instead as a linear combination
of v2 , . . . , vn and other vectors in S not equal to v1 . Thus every linear
combination of vectors in S can in fact be written as a linear combination of vectors in S {v1 }. On the other hand, every linear combination
of S {v1 } is trivially also a linear combination of S. Thus we have
span(S) = span(S {v1 }) as desired.
Now we prove the other direction. Suppose that S V is linearly
independent. And le S 0 ( S be a proper subset of S. Since every
linear combination of S 0 is trivially a linear combination of S, we have
that span(S 0 ) span(S). So now we just need argue why span(S 0 ) 6=
span(S).
Let v be an element of S which is not contained in S 0 ; such an element
must exist because S 0 is a proper subset of S. Since v S, we have
v span(S). Now suppose that v were also in span(S 0 ). This would
mean that there existed vectors v1 , . . . , vn S 0 (which in particular
were distinct from v) such that
v = a1 v1 + a2 v2 + . . . + an vn ,
or in other words
(1)v + a1 v1 + a2 v2 + . . . + an vn = 0.
But this is a non-trivial linear combination of vectors in S which sum to
zero (its nontrivial because of the 1 coefficient of v). This contradicts
the assumption that S is linearly independent. Thus v cannot possibly
be in span(S 0 ). But this means that span(S 0 ) and span(S) are different,
and we are done.

*****
Bases
A basis of a vector space V is a set S which both spans S, but is
also linearly independent. In other words, a basis consists of a bare
minimum number of vectors needed to span all of V ; remove one of
them, and you fail to span V .
35

Thus the set {(1, 0, 0), (0, 1, 0), (0, 0, 1)} is a basis for R3 , because it
both spans and is linearly independent. The set {(1, 0, 0), (0, 1, 0), (0, 0, 1), (9, 14, 23)}
still spans R3 , but is not linearly independent and so is not a basis.
The set {(1, 0, 0), (0, 1, 0)} is linearly independent, but does not span
all of R3 so is not a basis. Finally, the set {(1, 0, 0), (2, 0, 0)} is neither
linearly independent nor spanning, so is definitely not a basis.
Similarly, the set {1, x, x2 , x3 } is a basis for P3 (R), while the set {1, x, 1+
x, x2 , x2 + x3 , x3 } is not (it still spans, but is linearly dependent). The
set {1, x + x2 , x3 } is linearly independent, but doesnt span.
One can use a basis to represent a vector in a unique way as a collection
of numbers:
Lemma. Let {v1 , v2 , . . . , vn } be a basis for a vector space V . Then
every vector in v can be written uniquely in the form
v = a1 v 1 + . . . + an v n
for some scalars a1 , . . . , an .
Proof. Because {v1 , . . . , vn } is a basis, it must span V , and so every
vector v in V can be written in the form a1 v1 +. . .+an vn . It only remains
to show why this representation is unique. Suppose for contradiction
that a vector v had two different representations
v = a1 v1 + . . . + an vn
v = b1 v1 + . . . + bn vn
where a1 , . . . , an are one set of scalars, and b1 , . . . , bn are a different set
of scalars. Subtracting the two equations we get
(a1 b1 )v1 + . . . + (an bn )vn = 0.
But the v1 , . . . , vn are linearly independent, since they are a basis. Thus
the only representation of 0 as a linear combination of v1 , . . . , vn is the
trivial representation, which means that the scalars a1 b1 , . . . , an bn
must be equal. That means that the two representations a1 v1 + . . . +
an vn , b1 v1 + . . . + bn vn must in fact be the same representation. Thus
v cannot have two distinct representations, and so we have a unique
representation as desired.

36

As an example, let v1 and v2 denote the vectors v1 := (1, 1) and v2 :=


(1, 1) in R2 . One can check that these two vectors span R2 and are
linearly independent, and so they form a basis. Any typical element,
e.g. (3, 5), can be written uniquely in terms of v1 and v2 :
(3, 5) = 4(1, 1) (1, 1) = 4v1 v2 .
In principle, we could write all vectors in R2 this way, but it would
be a rather non-standard way to do so, because this basis is rather
non-standard. Fortunately, most vector spaces have standard bases
which we use to represent them:
The standard basis of Rn is {e1 , e2 , . . . , en }, where ej is the vector whose
j th entry is 1 and all the others are 0. Thus for instance, the standard
basis of R3 consists of e1 := (1, 0, 0), e2 := (0, 1, 0), and e2 := (0, 0, 1).
The standard basis of the space Pn (R) is {1, x, x2 , . . . , xn }. The standard basis of P (R) is the infinite set {1, x, x2 , . . .}.
One can concoct similar standard bases for matrix spaces Mmn (R)
(just take those matrices with a single coefficient 1 and all the others
zero). However, there are other spaces (such as C(R)) which do not
have a reasonable standard basis.

37

 
  
  "!#$%'&(*)+!,- .0/1 2 .3
4 5+&($!6$ 7 89:,
;=<
; B
=
; F
=
; F
=

8# 5>8#&(!6*?@A!!
&(CD)+!#&( )"?7*$ 8E!5A*$!
G 8'*)HG I&()J'85> KL1'&(*)
&3)+M8N'8')+!#?O 8#CP1'&(*)+!

QRQRQSQRQ

T-7 &3UV?WA!!
;YX )ZK(*!#IU[]\0!^)+*!_`U[S+*9Pa#b+!#c9+%dA)+9'HD$ )+$5H^*?eZfhg1i%j(i%.lk*b+!2
'Rmnb+&($hnK3o"87 &3U+c8K(7*)JE9+%dA)+&3&( )H!,
;=F %qprcs7*$ 8-!5A$*_])+9utv>cl!b++!#E*?@pD.w6+siyxHg*zR*?WtY&3!e'H
!s*?E*K(KK3&()+*8c$ CsH&()A&( )H!{*?-K(CS)n!|&3)vtN}+&(!{!5A$"&3!|9+)+*'9
!5A*)`~tI*)+9Z&(!c!b++!#5A*$S*?6pD. X ?N!#5A*)4~t&3!I&()?*$%{mnbA*Kw'upS_`U[
!'Mo"'+tiyxHg*zHi6pD.
; c!'MoAqt=&3!Ijzg*%P yxA%z> %zA:&?+8#^&3!6! CDc)+ ) '8#&37 &L*K>UNMo
U-8&36I*!IK(&3)+M8W$*Cs+&()+'&3 )|*?>K(CD)J!w*?t6.w+82U-&(!#NUe6! o|'A
tY&(!Ijzg*Djz> yxA%z> %zA.
; l! ou'A1{t&3!Ifhg1i%j(iE?O 8cp&3?&I!5+*)+!{p*)+9&3!I*K(!#K(&3)+M*8#K3o&3)+9+%
5)+9+)J.
; )+8*K(Ko!5>M*n&3)+G+_]'+{KL*8#G 86'H|!%I&(!_A'+{CS 8#{K3&(K3o"&3q&(!-'P!#5A*):_
+bHlK(!'+SK(!!|K3&(K3o&3{&(!c'8#CS*&()ZK(&3)+M*8#K3o&3)+9+5)+9+)J. X )!# CS
!)H!*_A!!{?O 8C'HP> b+)+9A8#o%yUe)'+#KL*8#G !%'!sU-+&3$h!5+*)
+bHc*8#s)+*&()+9+5)+9+)n_*)+9'H#!CS*K3K(P!#!U-+&($h*8#l&()+9H5>)+9+)J
+bHE9+R)+*E!5+*):.
QRQRQSQRQ
WH*CD5+K(!E?WA!!


; no8cA*!#!Eb+!%?Ob+K )+c8M! )u&(!N'+-'+%oG &37*{R$*CS5A$-UNMo


9+!#$8&3E7 $'*8e!5+*$!.A 8[&3)+!#'*)+$*_  )+$*)P9H!$8&3N*!'+E7 $'*8
!5A*$c!5A*)H)+9uno+cA*!#&(!~2
h hJ ~ M hJ ~ h M ,
 !#5A*)~ ~2 h hJ ~ M
 hJ ~ h M  
X )u*+86U[ 89H!_A'+I+8c7*$%' 8#!l~2
 h hJ_`~ M h %_~ h M e*8cK3&()+*8Ko
&()+9+5)+9+)n_e)+
9   &3!s5+8#$&3!K3o+!%S?K(K[7*$%' 8#!DU-+&3$hv$M*)Y
U-8&3#')u!EK3&()+*8N$ Cs+&3)A'&3 )+!N?6~  h h %_`~ M 'J%_H*)+9~ h M %.
; &(CD&(K(*8Ko _*)+e$*)|9+!$8&(> P~ *!4+7 $%' 8!5A$e!#5A*)+)H9sJoc'+A1
!&(! n  "!#   $$%&n.@'8 )(+*,(+-+.~ _+[7*$ 8@!#5A*$[*?]7*)l5> K3o )+*CS&(*K(!_
&(!N'Hc7*$%' 8E!5A$c!5A)+)+9uJo'+cA*!#&(! n  ! 0/1 "2$ %$$&~U-no %.
;3  U?O 8-lCD 8I$ CD5+K(&3$M9%H*CD5+K3*. 4e )+!#&(9+86'+c!5+*$
p 5, 6~  879 :J ;<  , >=?7@=?:A n}
&()D*'+8[U[ 89H!_Ap $ )H!&(!2'![*?*K3K+'+qK(CS)J'!e&3B)   U-+ !#$1 y 8#9+&()A1'!
!b+C 'B C8+.66nb+!?O*8E&3)+!#'*)+$+~ D 
$EFJNK(&3!-&()pD_>+bHs+~ D G
$EH*69H!
)+*M.W6+I!5A$^p 9+!$8&(>!N|5+KL)+&(B)   }+&?:o *b8CDC|8[o *b+8E
DJ |_o *b:\0K3Kq8#$*K(K-'A1P'H&(!P&3!S+5+K(*)+'+8# b+G  + 8#&(G &3)YU-H&($h&(!
585>)+9+&3$b+K(*8N'l+^7*$%' 8|~2  M . X -&(!El!b++!#5A*$|*'?   _A>$Mb+!^&3
&(!6$K3 !9ubH)+9+867*$ 8q*9+9+&'&(*)*)+9!$*KL*86C|b+K3&(5+K3&($M1'&(*)~U-no %.
;3  UK3\0!W8#o{'dA)+9DA!&(!@?O*8'H&(!w!5+*$.@ !#8'*&3G J?O 82UN*8#9:_ +b!K( Uc_
5+8 $9+b+8s?O*89+ &3)+G"!#&(!"'8#o'Hb+&(K39"A*!#&(!*)+|7 $ 8^IP&(CD*,
UeR5+bHc*)+s7 $'*8I&()Zp&()J'"+~5>*)J'&(*K-A*!&3!_*)H9!R&?[&I!5+*)+!.
X ?e&I9+ !)\ _U[R'+8# U *)+*+8D~OK(&3)+M*8#K3o&()H9+5>)+9H)J7 $ 8{&3)J'"'H
A*!&3!_*)H9'+)!&?-&3{!5A)+!.P*5v85>M1'&()HG'+&3!s5+8#$!!lbH)n&(K
7 )J'bA*K3K3o"U[^G qRK(&()HM*8#K3oS&()+9+5)+9+)nq!%E!5A*)H)+&()+GR'H{)n&(8#^!#5A*$
N&.0.qDA*!#&(!.{~w7*82o'&3CSc )Hs*9+9H!CD 8c7 $'*8!"S!#It6_]'H|!5+*)
!5A*)`~tNCsb+!#-G*EKL*8#G 8I~ 8-EK3M*!2-!#hMo"+c!'*CDc!I& C [ U-Jo %.
; ^G &()R'H&(!*K(G* 8&'+C_*K3M\ !5+&($hR)PK3CD)J*?+E!5A*$pD.W-$*):\ 
5+&($hDc @*)JoS![U-&3{&3!e*b' CS'&3$M*K3K3o{K(&3)+M*8#K3ol9H5>)+9+)J{~OU-Jo _H+b
'+8S*8D*'H8_?*&38K3o!&3CS5+K3s7 $'*8!s&3)pR}@K(%M\ !{5+&3$hK
 JMLs5,  ~2 h $E{ %.
6+&(!47 $%' 8w&3!W&3)RpD_ HbHw&39+ !#):\ @!5A*)DpD,4+NK(&3)+M84$ Cs+&3)A&( )+!4*"? JNL
*8^*K3K*?'+I?O 8#C +~ O0 h %EPO %_+U-H8Q OR;K &(!-R!$*KL8_++bq+&(!69+ !#):\ 


&()+$K(b+9+E*K3K+'+E7 $'*8!e&3)"pD. A 8&()+!2h*)+$*_GJ ! ,5 ~2 %E{ 'J@&(!$K(*8Kol)+*


&()"'HI!5A*)*)? JNL%.  l)+ UU[h*c' JNL6*)H9 J ! *)+9!#c&3?`+o!#5A*):.
Vyo5H&($MK`K(&()HM*8N$ Cs+&3)A&( )*? JNL6*)H9 J ! &3!
O L,JNL =O ! J !  O L~  h %E{ =?O ! ~2 %E{ 'J  ~+O L =O ! $EO ! $EO L
*)+9l!+6mnb+!2'&3 )lUe-*8#6*!# &3)+GI&(!,$*)l7*82olK3CD)JE~ 7 : *?p
U-8&3#')&()+{?O*8C +~ O L = O ! $EO ! $EO L X )*+8EUe*89+!_:$M*)U[s!# K37*
'+c!#o !2'C
O L

= O!  
EO !  7
EO L
 :

?O 867*8#o~  879 :J


; p K3K_ )+c$M*)!*K37 I?O 8 O LN*)+9 O ! *!
O Le,  E: O ! ,  E 7 
6+dA8#!#6m b+'&3 )P'H)>$*CS! EP: EK7  _+bHN+&(![mnbA&( )P&(![7*K3&(9
$M*b+!#U[*8*!#!b+CD&()HGAu~  87 8:J ; pS_!'+  = 7 = : H.
~6+&3!s&(!s)H*R*K3KAl*?E!#b+85H8&(!#&()+G$ &()+$&(9+)+$,S'HP7 $'*8! JML|*)H9
J ! Ue8^$h+ !)'D>{&3)pR_]U-H&($h5+KL*&3)+!6U-Jo'+^K(&3)+M*86$ Cs+&3)A&( )
O LJML%= O ! J ! Csb+!2w*K3!E&()sp|%.6nb+!W%7 82o{7*$%' 8@&3)sp$M*){U-8&')s*!
DK3&()+*8-$ CsH&()A&( )? JML6*)+9 J .e K(!#+_A'+!^yUeP7*$%' 8#!*8#{K3&()+*8Ko
&()+9+5)+9+)n|~U-no %_])+9! 1JNL 8! J !   ~  h %E{ ~2
 $E{
 hJ &(!6sA!&(!
?O 8EpD.
;YX [&3!w$K3M*8w?O8*Cr'+E*> 7 -'A1+&(!&3!w)+*'+E )+KosA!&(!M7*&(K(*+K3e?O 8pS}
?O 8&()H!#h)+$_ ~2 h $E{  ~ M $E^  l&(!IK(!"+*!&3!. X )?$M_!I&3b+8)H!
 bHM_*)JoyU[K(&3)+M*8#K3oZ&()H9+5>)+9H)JS7*$%' 8#!D&3)Yp $M*)v>b+!9Y?O*8C
A!&(!c?O 8{pS.[$Mb+!S*?N'H&(!_U[P!'MoAsp &3!S2*j P%zHi%j
1z>g*. X 
'b+8#)+!R bH~*)+9'+&3!l&(!R*$%'bAK(K3o8'1'+8l9+5Y?*$%{ARCS*)Jo*?-'H
7 $%' 8-!#5A*$!prU[^U-&3K(K9+M*K:U-&'AM7 ^!*CSdA)H&3'I9H&(CD)+!#&( ) A_HU-+&3$h
CS*)+!@'+*)Jo cK(&()HM*8#K3o^&()+9H5>)+9+)J[7*$ 8!&3)PpVbH' CS&($MK(K3oI?O*8C
R+*!&3!}ACD 8I )+&(!6K('8.
; 5H+&(K3 ! 5H+&($*KW5> &()J,cU[D)+ U !SAI'H8S*8#~^K(*!#hqyUeUNMo !
'"$ )+!#8b+$%c7 $%' 8I!#5A*$!.|)+s&3!'!2h*82U-&3v#+&3G S7*$ 8c!5A$*_
!'Mo   _)+9'H)&3CS5> !1zHi%g*jzAi-!#b+$hZ*!  =?7 = :B SP$b'H
7 $%' 8!5+*$q9+ U-)P&()D!I& C-'^ H'*&()R'+-h8G %7*$%' 8!5A$*_&()R'+&3!$M*!#
D

Dp ." q) 5+5> !#&()+GUNMo'uCP*R7 $%' 8^!5+*$!s&(!I'!#'*8#^U-&3)+'+&3)+G+_


*)+9+8 U &3)Z7*$ 8!| )+"1|'&3CSu~&3)+&(!c$M!*_'JML^)+9 J ! I+bH&(K(9
b+5l'+Ih8G %67 $%' 8-!#5A*$P~OU-H&($h&(!-*K3!Dps.w +*!&3!6Cs>9H&(!N+&(!
!$ )+9:_[#>*#' Cl yb+5Hs5++&3K( !# 5+Jo .
QRQRQSQRQ
T-&(G *8 b+!N8'CD)J-*?A*!#!
; M7 &()+GlK3 9-!# CD%H*CD5+K(!6*?4+ U l$ )H!#'8#b+$EA!!_AK(%6b+!6)+ U
&()J'8#9+bH$I!*CSI'H 82o"'RCS**I'H{ 7 ^*K3G  8#&3'HC 8#&(G  8# b+!.
;
 eF %6p >c7 $%' 8!5+*$_+*)+9SK(%Nt>q^K3&()+*8Kos&()H9+5>)
9+)JE!b+H!q*?wpD. F  J">cR7*$%' 86U-+&3$hu9+ !-)+qK3&(&3)ut6.
; ~J X "? J^K3&(!&3)s!5A)~t%_'+)Dt @1J0-&3!WK(&3)+M8K3o9+5>)+9H)JM_ *)+9l!#5A*)~t 
1J" !5A)4~t%.
t  1J0R&(!qK(&3)+M*8#K3o&3)+9+5)+9+)J_
; ~] X ? J9+ !)+*K3&(^&()!#5A*)4~t_+)Z
*)+9!5A)4~t  1J" !#5A*)~t%.
; 6+&(!w'H 8#C a#b+!2'&3d+! b+85+8#7 &( bH![8#M*!# )+&()HG+,W&?:IK(&3)+M8K3o|&()+9H5>)+9+)J
!ct9H!)+*!5A)ZpS_+)*)+s$M)CP*|+|!#5A*)+&3G G 8EJo*9H9+&()+G
|7 $%' 86*bH'!#&(9+I*?4!#5A*)4~t}'H&(!eU-&3K(K*K(!#l*5tK(&3)+M8K3oR&3)+9+5)+9+)J.
; 
 "dA8!2l5+8 7*~J%. X ? JZK(&(!s&()!5A*)4~t%_@'H)vJo9+%dA)+&3&( )*?
!5A*)_ JCsbH!#DK(&3)+M*8|$ CsH&()A&( )?ctN_[&.0.Y+8#%&(!2'!R7 $%' 8#!
JML %$$% J -R&3)t*)+9!$*KL8! O L $$$ O-R!b+$h'A1
*)+9'nb+!

J  O L JNL = $$#=O-
J1-

r~,E^ ,J=O L JNL= $$1=?ON- J1- 


Q
6 bH!R&(!l)H ) 8&7&(*KK(&()HM*8^$ C|+&()A1'&(*)*? J]_ JNL $$$ 8J -~&s&(!{)+ )
'8&7 &L*K`>$*b+!s+s$ y S$&()n> E{s&3)?O8*)n*? J&(!q)+ ) C8#+. 3 *'{'A
!&()H$<J;
 t6_6+&(!S$  D$&3)J$M*)H)+*>$M)+$K(K(9 Jo*)Jo=*?c'+ J!%.
6 bH!Rt" 1J"&3!{K3&()+*8Ko9+5)+9+)JK
. Ab+8#+8#CS 8#*_!&()H$R J&3!|K(&()HM*8
$ CsH&()A&( )Z*? JNL $$$ 8J1-H_w)noK(&3)+M*8^$*Cs+&()+'&3 )? JZ*)H9 JML %$$% J $M*)>D8#% %5+8!!#9!{"K3&()+*8$ Cs+&3)A'&3 )Da#b+!2c*? JML $%$ J -Z~U-Jo .
6 bH!!#5A*)4~#t >1J09+ !w)+$ )Jh&()D*)Jol*9H9+&3&( )AKK(CD)J!@U-+&($hS*8

)+**K(8#M*9Ho&3)!5+*)4~t%.q)+|*+8qA*)+9_7*82oK3CD)Jq&()!#5A*)4~t
&(!e$K(*8Ko"*K3!s&3)"!5+*)4~t  1J0%.w6nb+!6!#5A*)4~t  1J"[*)+9!5+*)4~t+ 7*
5+8$&(!#Ko"'+c!*CSI!#E*?K3CD)J'!_A&. *.w!5+*)4~t  1J0  !5+*)4~t%.
 !#5A*)4~t. 4eK(M8K3o!#5A*)~t  1J0-$ )
;3  U Uel5+8# 7 ~A%.  b+5H5 !# J ;
h*&3)+!c!5A*)4~t%_4!&()H$D7 8#oK(&3)+M*8I$ Cs+&3)A&( )*?6t &(!{*bH CP1'&($*K(Kou
K(&()HM*8$ C|+&()A1'&(*)P*?Wt  1J0n. ebH6!#5A*)4~t  1J"$K3M*8#K3oP*K(!#s$ )J'*&()+!
J>_U-+&($h&(!6)+q&3)!5A*)`~t%.w6nb+!E!5A)4~
t  1J" !#5A*)~t%.
;3  U=U[-5+8 7*-A[t >1J"q&(!WK(&()HM*8#K3o^&()+9H5>)+9+)JM.  b+5H5 !#6?O 8@$*)n8'1
9+&($%'&(*)"'At  1J0{Ue*!EK(&()HM*8#K3oS9+5>)+9H)JM.[6+&(!-CDM*)+!6A-'+8c&(!
! CDI)+ ) '8#&37 &L*K>UNMo"DU-8#&3cD!qlK3&()+*8N$*Cs+&()+'&3 )"*? J"*)H9u!# CS
7 $%' 8#! JNL $$% 8J1-R&()tN,
Q OMJ=O L,JNL= $$#=?O-
J1- 
X ? OcUe8 C8+_ +)RU[NUe bHK(9RNU-8#&3&()+GII!c)H ) 8&7&(*KnK(&3)+M*8$ C|+&
)A'&3 )*?K3CD)J'! JML %$$% J -S&()t6_>+bHq'+&3!q$ )J'8*9+&($%'!E'+sJo 5>*'+!&3!
'AIt &(!K3&()+*8Ko&()H9+5>)+9H)JM.c6nb+@! O&(!q)+ ) C8#+. eb'+)Ue|CPMo
9+&37 &(9HIno O"*)+9$ )H$K(bH9+I'A
OO L
J> ,~ E , JNL = $$1= ,~ E , J1-
O
O
!s'+ JR&(!6{K(&()HM*8[$ CsH&()A&( )S*? JNL $$$ 8J - _+!#l&3e&(!e&3)P'HI!5A*)?@tN_
R$ )J'8*9+&($%'&3 ):.@6nb+!
t  1J0{&(!6K3&()+*8KoP&3)+9+5>)H9+)JM.
QRQRQSQRQ
&B 3CS)+!&3 )
; !U[!'MU &3) 5+8%7 &( b+!%H*CD5+K(!_l7*$ 8!5+*$CSMoAM7*Y!#7*8'K
A*!!. A 8|&()+!2h*)+$*_&3?qp 5,  ~  879 :JR ;   ,  = 7 = :  n_w'+)
~2 h $E{  ~  $E^ hJ c&(!-lA*!#&(!_AHbHE!R&(! ~2
 h $E^  ~ M
 $E{ n.
;YX ?{p UN!"'+K3&()+ ~ #Z, ;  n_N'+) ~2  M  &(!PA*!&3!_6+b
!&(Q! ~  G  n.l~)'+l'+8A*)+9_ ~2 M
 M  ~  G  {&(!)+*c"A!&(!
$M*b+!#{&6&(!6K3&()+*8KoP9H5>)+9+)J%.
;YX ?Ep Ue*!{+R C8#7 $'*8|!5+*$ 1G n_4+)+PCS5yo!#B N&(!{uA!&(!
~OU-Jo _]+bH@ 1 {&(!6)+*{~U-Jo .

  



;YX ) R _'HD+8D7*$ 8! ~2 ' hJ ~  hJ ~ ' M  s?O 8C A!&(!_@*)H9
'+8l*8#sCS*)Jo*+8%H*CD5+K(!*?'H8{7 $%' 8#!IU-+&($h?O 8#C "A*!&3!&()
Rc~?O 8[&3)+!#'*)+$*_ ~  M 'J ~  $E^ hJ ~ h M  n.` !Ueq!A*K3K]!_A*)JoD!%
*?yUe 8E?OU[8I7 $'*8!c$M*)H)+*I>R"A*!#&(!?O P8 Rc$M*bH!s'Ho$*)+)+*
!5A*)u*K3K*? R _HU-H&(K(c)no"!E*??O bH86 86CS*87 $ 8!E$M*)H)+*->{lA!&(!
?O 8   $M*bH!c'+%o$ CDIK(&3)+M*8#K3oS9+5>)H9+)JM.
; I)H^+&()+GR'+*)+{!#!q?O8*C'+!|H*CS5HK(!E&(!6A*K(K+|+*!!*?@
7 $%' 8!#5A*$-!#C 'c$ )J'*&()s+-!'*CDN)nb+Cs>8*?]7 $ 8!. ]*8@&()+!2h*)H$*_
RE*K3UeMo !6!CS!6l)+9u+$'KoP+87 $%' 8#!6'lCS**csA!&(!_A*)+9!#
?O 8#:.6H8#M*!# ){?O*8:'+&3!4&3!`&()I?*$%8'H89+5:_ )+9^U[wU-&(K3K )+ UG &7 @'H
5+8 *? .l6+ldA8#!#^!#5&3!'5+8# 7*D+l?O K(K3 U-&()+G"8'H8I'$h+)+&($*Kw8!b+KM_
U-+&($h !'Mo !A )HZ$*) #9H&3'Y!5+*)+)+&3)+Gv!uJo&()H!82'&3)+GvvdH9
K(&()HM*8#K3o&()H9+5>)+9H)JR!%M_wU-+&(K3P8#CD 7 &3)+G*)m b+*Ke)nb+Cs>8l?67 $%' 8#!
?O8 C '+c5+8#7 &( bH!E!#5A*)+)H&()+GD!%M.
;     "
 
 vF %Dp >7 $%' 8l!#5A*$*_*)+9K3Dt "
dA)+&3P!#b++!%D*?qp U-+&3$hY!#5A*)+!Dp ~&. *.!#5A*)~t  ps.  b+5+5> !#"'A
t A*!D%H*$%'K3
o K3CD)J'!. 3  U K3 u*)+'+8DdA)H&3'!bH+!%"*?Ip
U-+&($hY&(!lK3&()+*8Ko&3)+9+5>)H9+)JS*)+9YA*!R%H*$%'K
o  K(CD)J!.v6+
) 
&(!K3!!IA*) 8m b+*K@' . Ab+8#+8#CS 8#*_:U[R$M*)dA)+9Z!bH+!%lt *?et
$ )Jh&()+&3)+Gl%H*$%'K3o E K3CD)J'!-!#b+$huAqt   *K3!l!#5A*)+!pS.
; 6+&(!e+*8C &(![)+*6JoP&3'!#K?`5A*82'&($b+KL8K3oR&3)J'8#!2'&()HG+_HbHNU[I$M*)b+!#I&3
'R&(CD5+K3oPlCS*8I&()J8!#&()+BG 4e 8# K(K(*8#o*_H>K( Uc.
) ."6+DA*!S$M*!#S&3!   H. q8#S&c&(!^ J7 &( b+!
; 
 D&()+9Hb+${ 
'A . K(!#+_@&?6Ue{a#b+!2l!%St  mnbA*K'ZtN_@'H)Yt  A*!|%H*$K3o
KE K(CS)n!_w)+9vt   &(!|mnbA*K[t ~!#&()+$
 &(!|CS5yo+^*)+9!#
 J7&3 b+!#K3o"!#5A*)+!p JoJo5>*+!#&(!.
;3  U!b+5H5 !#&()H9+b+$&37*K3olA H_H)+9P'+[U[AM7**K38M9HoR5+8 7*)
'+I'H 8#C?O 8  E  .  &3)+$ +*!!  K3CD)J'!_+Ue^CS oSU-8&'I&3E!
 1JNL $$$ 8J#" M

(& )+$ 1JML $%$ J$" s&3!EK3&()+*8KoP&3)+9+5)+9+)J_>+c!&% ,  1JML $%$ J$"('0L 


&(!I*K3!"K3&()+*8Ko&()+9H5>)+9+)J"~U-Jo .{l$M*))+ Ur*5+5+Kou+l&()H9+b+$&( )
no 5>*'H!&3!qU-&' 85HKL*$9Jo) E|*)+9& 8#5+K(*$9Jo*E% .66H&(!-'K3K(!
/


b+!EA

  E*_)+9*K3!l'H8^&(!E!*CSc!bH+!% 
t % ?tYU-&'%H*$K3o
E ={K(CD)J!_A!bH$hu'+t%  *
% !5+*)+!qpS.

; 8#&3')t%  6 L $$$ - ' " Ln.4E5+8 7*['+ _U[[AM7*qH$K(b+9H


'+D5*!!&3+&(K3&3you'A   E .PP9+'+&3!{!^?O K3K( U-!. 4e )+!&39+8c'H
7 $%' 8 J#"_+U-H&($h&(!6&()) HbHE)+*-&() 6% .  &()H$'H^!#
t %   % 61JNL $$$ 8J$"('0L L $$$ - ' " L
!5A*)H!^pD_U[s$M)U-8&3> J#"V*!PK(&3)+M*8q$ C|+&()A1'&(*)u*? t %   E% . X )*+8
Ue 8#9+!_AU[cAM7 
J$"? O LJML = $%1=O "('0L J$"('0L)=%L L= $$$=8- ' " L - ' " L
~.3
?O 86! CDI!$*KL8! O L $$$ O " '0L $L $$$ 8- ' " L%.
; b+5+5> !-?O 8$*)n8'*9H&($&( )lA   E .w6H) t %  &(!CD5Hyo*_H*)H9D+8#
*8I)+R7 $ 8! L $$%% -$' " L.@I'nb+!EAM7 
J#" O L,JNL= $$#=?O " '0L,J#" '0L
~. 
!R'A
 O L JNL= $$1=?O " '0L,J#" '0L =~ E{ , J#"
+bH^'+&3!^$ )J'8*9+&($%'!I'HSJo 5'+!&(!^'A1 1JNL $$% 8J#" "&(!cK3&()+*8Ko&3)+9+%
5)+9+)J.E6nb+! $*)+)+*qmnbAK  E *_)+9!#"Csb+!2>{G*8M1'8-'+*) 8
mnbA*K: .
; w)+ UAM7 ( _!#6'A'+8&(!`1`K(*!# )H@7 $%' 8`&3) L $$$ -$' " L .
 &()+$IUecn)+ UV'H^!#
t %  *% 61JNL $$$ 8J$"('0L L $$$ - ' " L
!5A*)H!pD_A&36&3!6$K(*8N'+
t %   61JNL $$$ 8J$" L $$$ - ' " L
*K(!#S!#5A*)+!p ~*9+9+&3)+GP)K3CD)Jq$M*)+)H*9H$8#M*!#|'H{!#5A*)].E4Sd+)+&(!#
'+E5+8 *?:U[)H9S'|K(&3CS&3)A'6*)+q?:'+-7 $ 8! _n'{$bH t % 9+ U-)P
R!#t >*?W!#& C E_+U-H&(K(I!2'&3K(KCS*n&()HGDt   !5A)pR.
H

; sdA8#!#^ +!#827 R'AI+ %L $$$ 8- ' " L$*)+)+|K(KW> C8+_*+82U-&(!#
Ue6U[ b+K(9l>6A*$h{'ImnbA1'&(*)~H.  W*GJ&():_*U-H&($hRK(*9+!W^$ )J'8*9+&($%'&3 ):.
 K(*!# )+*?++  \ !WC|b+!#W)+ ) C8+} !#&()+$[+e 8#9+84*?++7 $%' 8#!
N&(!&(88#K37*)JM_nK(%M\ !e! oRA $Lw&(!'+q )+-U-+&($h"&3![)H ) C8#+. ebH'+)
Uec$M)u9+&7 &(9+IJo %L%_A*)+9b+!#P~H. ['D! K7 I?O 8 L,
O L JML'E $%E O " '0L J#"('0L E  ! E $$ E -$' " L -$' " L
L   J#" E

%L

%L

%L !

%L

%L

6 bH! Ll&3!PZK(&3)+M*8l$ Cs+&3)A&( )v*?>1JNL $%$% 8J#" ! $%$% -$' " L8n. X )
*'+8{U[ 89H!_&3?NU["U-8&'"t  ,5  ! $$%% -$' " Ln_'+) LI&(!suK(&()HM*8
$ CsH&()A&( )P*?wt   6.6nb+!Eno6H 8#C  _
!5A*)4~t    !5A)4~t     L
ebHEt     Lc&(!a#b+!# t %   6_HU-+&3$h!5A*)H!EpS.@6nb+!qt   v!5+*)+!EpS.
o E K3CD)J'!_+Ue{*8I9H )+*.
 &()+${t ]+*!-%H*$K3
U-+
&( $h  $  )H !&(!2 '!- *b+?5H%5H *!#$%|'K3'o+ PIPK37*CD$)J '!8.w!#65A*+$D):, p $ )Jh&()+!IDdA)+&3|A!&(!
~J{ q)Jo!%S
t  p $ )+!&3!#&()+G?E?O%Ue8s'A) ZK(CD)J!l$M*)+)H*l!5+*)
pD.Z~ X )*'H8cUe 8#9+!_7*8#o!5+*)+)+&3)+G!#{*?Ep Csb+!#{$*)n'*&(){K(*!#
K(CS)J'!h.
~]w )JoR!%-
t  p $*)+!&3!#'&3)+G^*?:CD 86A*) {K(CS)J'!Csb+!#[>qK3&()+*8Ko
9+5>)+9H)JM.~ X )*'+8^U[ 8#9+!_@%7 8#oK(&()HM*8#K3o&3)+9+5)+9+)Jl!#|&()p $*)
$ )Jh&()-CD !# DK(CS)J'!h.
~$ N q)no"A*!&3!-*?wp CsbH!#E$ )H!&(!2-*?@H*$K3o DK(CS)J'!.
~9]e q)no!#5A*)+)H&()+GR!%?wprU-&3%H*$K3o DK3CD)J'!_+?O 8CD!-lA*!&3!.
~ N q)no"!E*? SK3&()+*8KoS&3)+9+5)+9+)JqK3CD)J'!-*?@pr?O 8CD!-lA*!&3!.
~O?'D )Jo=!%*?IK3&()+*8Ko&()+9H5>)+9+)JK(CS)J'!P?{p &(!D$ )J'*&()+9&()
A*!&3!.
~Gne q)no!#5A*)+)H&()+GR!%E*?wp $ )Jh*&3)+!ER+*!&3!.
F

; 
 dA8#!#S5+8 7 ~ %. F %Pt AM7  [K(CS)n!D?O*8l! CD  A.
 b+5+5> !S?O 8|$ )J'8'9+&($%'&(*)'A1RtV!5A)+)+9=pR.  &()H$  &3!|K(&3)+M8K3o&()
9+5>)+9H)JM_`U[lCPMo*5+5+Kou+lT-5+K(*$CS)n6+ 8#C ~U-&3 5+KLMo &()+G
'+I8# K(? ['R$ )+$K3b+9+I'+   ]_+R$ )J'8*9+&($%'&3 ):.@6nb+!tY$*)+)+*
!5A*)pS.
;3  U Ue5+8 7 ~]. W&38!2P!#b+5+5> !Atr&(!Sd+)+&3*_N!#'A1t A*! 
K(CS)J'!-?O 8q!# CD   A.  b+5+5> !#{?O 8E$ )J8'*9+&3$&( )'A1It&3!qK3&()+*8Ko
&()+9+5)+9+)n.  &()H$  !5A)+![pD_ U[E$*)D*5+5+Ko|+-TE5+KL$CD)Jw+ 8#C
~OU-&3 5+KLMo &()HGP'+|8 K3s*?[tN_U-+&3K(Rt&()+!2'*95+KLMo !+l8 K3|*? E
$ )+$K(b+9HA  L_[$ )J'8*9+&($%'&3 ):.  ZU[*\ 7 5+8 7*) ~O]{U-+)t
&(!dA)H&3'.|+)t&(!&3)HdA)+&'_:UeR$M)d+)+9Zd+)+&3s!b+H!st  *?etU-&':_
!'Mo _ A = SK(CS)n!}@!#&()+$DU[*\ 7 "*K(8#M*9Ho5+8 7 )~A?O*8cd+)+&3S!#b++!%'!_
Ue{ )H U At  &3!qK3&()+*8Ko"9+5)+9+)n. ebHE'+&3!q&3CS5+K3&(!e'A1It=&3!K(!
K(&()HM*8#K3oD9+5>)H9+)JM.
;3  U Uel5+8# 7 ~$M%. F   `>l*)Jo+*!&3!*?[pS.  &()+$  `!#5A*)+!_`&3Csb+!#
$ )Jh&()NK(M!# lK(CD)J!_+Jo~J%.  &()+$   &3!NK(&3)+M8K3os&()+9+5)+9+)n_A&3
Csb+!#e$ )J'*&()PNCD !# lK3CD)J'!_HJo~O]%.W6 bH!6&3[Csb+!#e$ )J'*&()S%H*$K3o
SK3CD)J'!.
;3  U U[P5+8# 7*~O9]%. F %lt>Du!#5A*)+)+&3)+G!|*?-pU-&3H*$K3o K(%
CS)n!.s4!H U 'A1{t&3!c"A*!&3!_:U[R)+9Z!+ UrA{t&(!IK3&()+*8Ko
&()+9+5)+9+)n.  b+5+5> !#E?O 8w$ )J'8*9+&($%'&3 )l'AetUN*!K(&3)+M8K3o{9+5)+9+)J.
6+)DJoDI+*8Cr&()R5A*G  D $ ?K(*!#wU[>\ !e)H*'!_J'+8-%&3!#'!I7 $'*8
Ju&3)Zt !bH$hZAI!#5A*)4~t E 1J0
 !5+*)4~t%.^6nb+!|t E 1J0S*K(!#!5A*)H!
pD_+bH^&3A*!I?OU[8c'A) K3CD)J'!_4$ )J'8*9+&($%'&3)+G~J.s6nb+!st Csb+!#
cK(&3)+M8K3oD&3)+9+5>)H9+)JM.
;3  UU[e5+8# 7*I~O %. F  [EK3&()+*8Ko&3)+9+5>)H9+)J@!#W&()|pU-&'^%H*$K3o
"K(CS)J'!.64"!#+ U 'A &(!ES+*!&3!_]Ue{)+9'P!#+ U 'A1 !5+*)+!.
 b+5+5> !?O 84$ )J'8*9+&3$'&3 ){A 9+&(9{)+*W!5A*)_'H)|+8#NCsb+!2W>e!# CS
7 $%' 8 JcU-+&($hD&(!W)+*&()s+6!5+*)R*? 6. ebHJol6+ 8C-&()s'H&(!WU[>\ !
)+*'!_ " 1J0P&3!^K3&()+*8Ko&3)+9+5)+9+)J. ebHc+&(!c!%|+*!{CD 8#s'A*)
K(CS)J'!_A$ )J'8*9+&($%'&3)+G~].6 bH! C|b+!#-!#5A*)pR.
;3  U U[P5+8# 7*~?h. F  VSK(&()HM*8#K3o&3)+9+5)+9+)J|!{&()pS}no~J%_
Ueq )H U&A*!  K(CD)J!?O 8!# CS  ].W 5+5+Ko &()+Gc'+qT-5+K(*$CS)n


'+ 8C ~OU-&'  5+KLMo &()HGP'+R8# K(s?+l!5+*)+)+&3)+G!{t_:UeR!l'A


'+8-&(!w!# CS-!#b++!%6tn*? VU-&3' E K(CS)n!!b+$hD'A[t  !5A*)H!
pD.  &3)+$t +A*! E +K3CD)J'!N*)+9 A*! HK3CD)J'!_At! v$M*)"+ 7*
CD !# K3CD)J'!}`*$bA*K3K3o&3Csb+!2AM7 lH*$K3o A_K3!{&3U[ b+K39)+*
!5A*)no~J%. ebHq'+)Jo~O9]6&3qCsb+!#q>sS+*!&3!.E6 bH! &(!E$ )Jh&()+9
&()lA*!&3!.
;3  U U[5+8 7*~OGn%. F St !#5A*)+)+&3)+G!%S&3)YpD.+b+&3K(9A!&(!
&()+!#&(9+tN_ U[!Jo~ w'A1[U[a#b+!2N)+9"'^dA)+9 sK3&()+*8Kol&()+9H5>)+9+)J
7 $%' 8#!&3)tN.  b+5H5 !#{?O 8-$ )J'8'9+&($%'&(*)AEUe{$M*)u )+K3oPdA)+9ECD !#
 K3&()+*8KoP&3)+9+5)+9+)J-7 $ 8!q&()tY?O 86!# CD  ]. F % JNL $$% 8J 
!bH$h"K(&3)+M*8#K3o|&()+9+5)+9+)ne7 $%' 8#!e&3)"tN.@6+)7*8#oS*+87 $'*8 Jl&()
tC|b+!#I>sSK(&()HM*8E$ C|+&()A1'&(*)*? JNL $$%% 8J _*'+8#U-&3!|U[l$ bHK(9*9H9
JRR
 1JNL $$$ 8J ^*)+9*Hh*&3)"|K(*8G*8e$ K(K3$%'&(*)S*?K3&()+*8KoR&()+9H5>)+9+)J
7 $%' 8#!&() t ~!6+*8C  %. ebH&?c7 8#o7*$ 8&() t &(!"K(&()HM*8
$ CsH&()A&( )*? JNL $$%% 8J _*)H9t!5A*)H!spS_`+) JML $$$ 8J C|b+!#^!5+*)
pD. [o~J+&(!CDM*)+!@A   A_ $ )J'8*9+&($%'&3 ):.46 bH!U[qC|b+!#>-*+K(
'RdA)+9 PK3&()+*8Ko"&3)+9+5>)H9+)J7*$%' 8#!&()tN_)+9!#t$*)n'*&()H!DA*!&3!.




    s! o'+^p A!R*j P%zHi%j


1z &3?w&$ )Jh*&3)+!"A!&(!q*?
 K(CS)J'!R~*)+9!"AcK(K'+l$ )+!mnb+)+$!^*?'+ 4e 8 K3KL*82oZ|?O K(K3 Uq%.
6! o|'A[pV&3! zAj 2*j P%zHi%j
1z>g*M&?>&3wA!9H&(CD)+!#&( ) I?O 8w!*CSNdA)H&3'
) bHCs8 ]_H*'+8#U-&3!IUe^!'Mo"Ap &(!Ijz zAjy 2*j P%zHi%j
1z>g*.
; ]8# C 4e*8 K3KL*82oRUeD!DA{*K(KWA*!!{+ 7*S+R!'*CDR) bHCs8{?eK(%
CS)n!_@!#7*$ 8l!5+*$"$*)+)+sAM7 SyUe9+& 8)n|9+&(CD)H!&(*)+!.~*. G+.
7*$ 8D!5A*$u$*)+)+S>!&(C|b+K3'*)+*b+!KoyU[ y9H&(CD)+!#&( )AK6*)+9Y'+8#%
9+&(CD)+!#&( )+*K."S! CD&(CD!^b+!"9H&(Cu~p{c'9+)+'S+"9+&3CS)+!&3 )Z*?
pD.)+N$*)|+&()+^*?]9+&3Cu~p|*!W'HN)nb+Cs>8@*?]9HG 8#!w?A?O89+ C &()++82
)J&3)p ~ 8Emnb+&7*K()nK3o*_]+^) bHCs8*?W5*!!&3+K(^K(&3)+M8K3oP&()+9H5>)+9+)J
7 $%' 8#!q&3)up|%.
;    6H7 $%' 8-!#5A*$ R6A*!-sA*!#&(P! ~  h 'J ~ M 'J ~ h  n_
*)+9R'nb+!A*!9+&3CS)+!&3 ) DH.@6nb+![*)Jos'H8EK(&3)+M8K3o^&3)+9+5>)H9+)J7 $%' 8#!
&() R-U-&(K3K!5+*) B*)H9?O 8#ClA*!#&(!.
;    6+S7*$%' - 8{!5A*$ -A~ I*?65> K3o )+ CD&LK(!*?e9+G*8  =A!
A*!&3! n   ! %$$  |*)+9'nb+!-A*!-9+&3CS)+!&3 ) B=  .
M
;



  





  6+BC8#u7*$ 8^!5A*$ 1 PA*!^u+*!&3! N"*)+9Z'nb+!^A*!^9+&



CS)+!&3 )C8+.E~ 6&(!['+*)+K3oD7 $'*86!5A*$U-&3"9+&(CD)H!&(*)C8| @U-Jo



X
;    6+c7 $'*8q!#5A*$QS~.N*?W*K3K:5*K3o )+ CD&L*K3!e&3!6&()HdA)H&3'I9H&(CD)
!&(*)A*K.P!#D'+&3!_W!#b+5+5> !S?O 8{$ )J'8*9+&($%'&3 )ZA|&3^A*9!# CDDdA)H&3'
9+&(CD)+!#&( ) A. ebH+)*)+s$*b+K(9)+AM7 lCD 8#{'+*) K(&()HM*8#K3o&3)+9+%
5)+9+)JK3CD)J'!. ebHw+6!% n   ! %$$%  E$ )Jh*&3)+! ' =NK(CD)J!
U-+&($hv*8#"K(&3)+M8K3o&()+9+5)+9+)nu~U-Jo _$ )J'8*9+&($%'&3 ):.6nb+! S.~ "^&(!
&()HdA)H&3'9+&(CD)+!#&( )+*K.
; !qU[lAM7 |!):_:%7 82odA)H&3'{9+&(CD)H!&(*)A*K`!5+*$lA!PA!&(!. X &(!K(!
'8bH'A1N&()dA)+&3% 9+&(CD)+!#&( )+*KA!5A$!-K(!|AM7 IA*!#!_++bHN+&(!e&(!e!#&(G )H&3?L
&($M)nK3oPA*89H8N'D5+8# 7*|)+9%o  )+9'+c!#$ 5>c*?+&(!-$ b+8!#*.
QRQRQSQRQ
 bH+!5A$!*)+99+&(CD)H!&(*)
; ")H U 5+8# 7 *)&3)J'b+&'&37*Ko J7 &( b+!|!#h1'CD)JR bs!bH+!5A$!D*)H9
9+&(CD)+!#&( ),
;
 F sp PdA)H&3' y9+&3CS)+!&3 )A*K7 $%' 8{!5A$*_@*)+9K3 
|!b+H!5A*$I*?4pS.W6+)  &(![*K3!{d+)+&3% y9H&(CD)+!#&( )AK_J*)H99+&(C~  
9+&(C~ps%. Ab+82'+8CD 8_H'+I*)+K3oSUNMo"A-9+&3C~  e$M*)m b+*K`9+&(Cu~p|e&(!
&3?  pD.
; 
  |dA8#!#c$ )+!#8b+$%^PdA)+&'|+*!&3!?O 8  7 &LS+s?O K3K( U-&()+GS*K3G 
8&3+C. X ?   1 n_+)Ue"$*)bH!P+PCS5HyoZ!#l!su+*!&3!. 3  U
!b+5+5> !#s'A     1G n.6+)U[l$M*)udA)+9")+ )  C8P7*$%' 8 JNLE&(

)  .
?X JML6!5A*)H !  _A'+)Ue{AM7 |?O*b+)+9DA*!#&(!-?O 8  . X ? JNL69H!)+*q!5+*)
 _'+)U[R$M*)dA)H9P7*$%' @8 J ! U-H&($h9+ !I)+*cK3&({&()!#5A*)4~ 1JNL}4Jo
6+ 8#C  _ 1JML J s&(!EK(&()HM*8#K3o"&3)+9+5)+9+)J. X ?@+&(!E!%!5+*)+!  _A'+)
Ue^$M*)?O b+)H9RA*! !#&(!6?O 8  .[+82U-&(!#*_AUe^$M)dA)H9l7 $%' 8 J  U-+&3$h
9+!N)+*NK(&(q&()"!#5A*)~ 1JML J ! . [oS6+ 8#C *_ 1JNL 8J ! 8J  c&(!NK3&()+*8KoR&()
9+5>)+9H)JM.I$ )J'&3) bH^&3)"'+&3!NCS*)+)+86b+)J'&(KUeIdA)AK(K3oD!#5A*
)  . 3 *'
'AUe6C|b+!#w!2' 5l>?O*8eU[N%$9D9+&3C~p|47*$%' 8#!_n!&3)+$e?O8# C 5A*82E~]
*?[+R9+&(CD)H!&(*)+*8C U[D$M*)+)H*^CP*DK3&()+*8Ko&3)+9+5)+9+)J{!%
U-&3'uCS*8c'A*)9+&(Cu~p{-7*$ 8!.6nb+!+&(!*K(G *8&3+CC|b+!#7 )J'bA*K3K3o
G )+8'I{+*!&3!N*?  U-+&3$h$ )+!#&(!2'!N*?`NCD !#e9+&(C~ps7*$%' 8#!_HU-+&3$h
&(CD5+K(&3![A  &(!6dA)+&'% 9+&(CD)H!&(*)A*K]U-&3'9+&3Cu~   9+&(Cu~p|%.
*


;3  U !#b+5+5> !D'A^9+&3C~   9H&(C~p|%.D6+)  A*!^A*!&3!  U-+&3$h


$ )+!#&(!2'!-*?9+&(C~pse!2'&(CS!}  &3!6*?$ b+8#!cK(&3)+M8K3oD&3)+9+5>)H9+)JM. ebH
'+)lno{5A*82-~O *?"4e 8 K3KL*82oR _ &3!@*K3!A*!#&(!?O*8wpS.6 bH!w!5A*)`~ l
p )+9u!#5A*)~ l   _+U-+&3$hu&3CS5+K3&(!['+  p *!-9+!&389.
QRQRQSQRQ
F *G 8*)+G I&3)J'8#5*KL&( )
; )H U G &7 I)*5+5+K3&($'&3 )S?`'+&3!6*+!2'8'$N+ 82oSl|A!&($5+8 HK(C,
+ U'ld+ql5> K3o )+ CD&LK>SR!5>$&3dA9u)nb+C|8E?W5> &()J!.
; w7*82o  )+cn)+ U-!6'A1NG &7 )"yU[R5*&()J'![&()"'H5+KL)+*_ )+$*)"dA)+9sK3&()+
a# &()+&3)+G{+C.@ VCD 8#5+8#$&3!UeMo"*?! o &3)+Gs'+&3!N&(!'A16G &37*)"yU[l9A'
5 &3)J'!I~  L 87GL [*)H9Z~  ! 87 ! &3)  ! _ U-&3R  L    ! _ +)"U[I$M*)SdA)+9|K3&()+
7   = NU-+&($h5+*!!#!N'H8 b+G*"'P+!#5*&()J'!.-~O)+
9  L   !
*'+8#U-&3!I'+cK3&()+U-&3K(KAM7 ^&()HdA)H&3'I!#K( 5> .
;3  U!bH5+5*!Ue[AM7 '+8#5 &3)J'![~  L 87ML#%_H~  ! 87 ! _+~   87  `&3)I'+5+KL)+*_
U-&3'@  L  !   *K(KJ9H&(!#&()+$%M.46+)| )+b+!bAK(K3oc$*)+)+d+WqK3&()+@U-H&($hsG  !
%H*$K3o"+8*b+G u+!#^+8{9+hR5*&()J'!.~I)H^$*)!2'&3K(K9H"f%hi% :
'+!^9Ahl5> &()J!6noR!2'8*&(G J-K3&()+_H*. G+.Job+!#&()+GR'+IK3M*!2-!mnbA*8#!Ed+M}
'+&3!N&(!-*)&3CS5> 8#'*)Je 5+&($+bH-)+*-*)+UeIU-&3K(K*9+9+8#!!-)+ Uq. E Ue%7 8_
&3-'b+8#)+!E bHE'AE )H{$*)!2'&(K3K:d+D5A8'*> KL 7B O ! = 8 = D+!#
'+8#s5> &()J!.&3?O b+8q5 &3)J'!_ )+l$*)+)+*I*K3UeMo!qd+c"5A*8*> KLH_]+b
 )+c$M*)*KUNMo !-d+ED$b++&3$*.u 8#cG )+8'*K3K3o>,
;
       
       
  
F    _E*)H9
K(S~  L 87ML# $%$% ~ 0- 7 -* v5> &()J'!I&3)  ! !#b+$hA  L  ! $$$ 0-*8
*K(KN9H&(!#&()+$%M. 6H)+8#uH&3!#!"b+)+&(mnb+5> K3o )+ CD&L K ;  w~ s*?
9+G 8#  E !#b+$h'AD'H$b+827 <
 7  @~ R5A*!!#!"+8 bHG *K3K
5 &3)J'!{~  L 87ML# %$$ ~ 0- 87 - %. X )*+8-U[ 89+!_>U[|+ 7*A 7!  W~ %6?O*8qK(K
   %$$% W. Ab+8#+8#CS*8*_ &3!6G &37*)Jo'+I?O 8#Csb+KL
- 

@~    L  LL!MM-"-    ~ ~ REE   M 7!#

; 6 +{5> Ko)H CS&(*K# &(!-!*CS%'&(CD!6$*K(K39'+DjzAy%yx 1g*jz$^x 11z ljg* ?O 8


'+D5*&()J'!S~ L 7GL# $$$M~0- 87 -*%}W&()Z! CDS!#)+!#P&{&3!I'+D!&3CS5+K3!2{* a#$%
 

'As$M*)5A!!s'H8 b+G*v*K(K 5> &()J'!.6+!#&()J'85> KL&()+Gu5*K3o )+ CD&L*K3!


AM7 I!%7 8'*K`b+!#!_H?O 8N&3)+!#'*)+$&()P'*n&()+Gl{!mnb+)+$^*?!2'&(K3K&3CPG !_H*)H9
dA)+9+&3)+GDD!#CS *'!#mnb+)H$|?@&()J8CD9H&L&(CS*G !N'Rd+E%yUe)u+!#
&(CS*G !.
; 5H8 7 +&(!R'H 8#C_NUedA8!2"5+8#$9Jo=$ )H!&(9H8&3)+G!# CDu!#&(CD5+K(
%H*CD5+K(!.
; W&(8#!#N!#b+5+5> !IA 7ML 7 !  $$M 7 -  H.w6+)+I$h+ &3$I*?4&()J85>
KL&()+Gs5> Ko)H CS&(*K>&(!6 J7 &( bH!,a#b+!#-'**I'H C8#S5> K3o )+*CS&(*K W~  H.
;3  U K3M\ !wh*E+-)+% [!&3CS5+K3!2$M*!#*_JU-+B) 7GL  E*)+9 7 !  7   %$M
7 -  H.E6+s&()J85> K('&3)+GR5 Ko )+ CD&L*K ZAEUe|)+9+8#sCsb+!2 >o
'+c$*)+9+&3&( )H ! @~  L   _A*)+9 @~  !  $$M @~ 0- H.
; &()+$ A! C8 !  ! $$$ 0-H_A&3ECsb+!2q+ 7*{?*$%' 8#!-*?-~ E  !  ~ RE
   $$% ~ E 0-J%.  D&3NCsb+!#EK3 DK(&3*
 ~ ~ E  ! $% ~ BE 0-  
 KE *_w*)+9U[PUe*)J Y'+ 7*
 &()+$~  E  ! $$~  E 0-n^+*!s9+G 8
9+G 8#^ECD !#! E _ ~ 6C|b+!#E>I$ )+!2h*)J_>!Mo ~   ,
 ~ BE  ! $$~ RE 0-n 
ldA)+9u bH6U-A1 &(!_+U[cb+!c'H^ '8'l?*$%6'A W~  L   _H!
  ~  L'E  ! $$~  L'E 0-J 
P
6 bH!E+c&()J'85> KL&()+G|5 Ko )+ CD&L*K>&(!6G &7 )uJo L%_HU-+8#
NL~ N,5 ~  ~ BL'EE  ! $$$$~~  L'E E 00- -J
!
 86mnb+&7*K()JK3o
- ~ RE  

NL~ 6,   -    ! ~  L E  
!
I)H$M*) !vnoV&()+!#5$'&3 )V'+&()+9H9 L~  L&3!mnbA*Ks  _|U-+&3K(
NL~  !  6$$M NL~ 0- H.
$D

;3  U $*)+!&39+8I'HS$*!RU-+) 7  D?O*8I! CD    W_*)+9 7  


?O 8N*K3K'+8    ~'+M*8#K(&(8e$*!I>&3)+G|'H!5>$&L*K$M*!#U-+)    %.
6+)!&3CS&3KL*8*8G bHCS)n{G &7 !c'+ Csb+!2|mnbA*K  _4U-+8 l&(!I'H
5 Ko )+ CD&L*K
*~ 6,    LL!MM--     ~ ~ BEE     
]*86&()+!2h*)+$*_A&?  $ *)H9  V_H+)
! ~ N5,  ~  ~ BE E   LL~~  BE E    ~ ~ R E E  / 
!

; Z!b+CDCS*8&IC*_?O 8RM$hV    W_Ueu$M*)YdA)+9Z5> K3o )+*CS&(*K  ;


)- '0L%.~ |!#b+$h=A ~   *)+9 *~    ?O 8    .6nb+!_[?O 8
&()+!2h*)+$*_+U-+)  $ _H'+)uU[cAM7 
L~  L   NL~  !   NL~    NL~  / 
! ~  !   ! ~  L#  ! ~     ! ~  /  
 ~      ~  L#   ~  !    ~  /  
/ ~  /    / ~  L  / ~  !   / ~     
; R5+8#$9?Ob+8#+86U[c)+9l*%oK(CDCSH.
;     6+^!%@  NL ! $$$ 1-M|&(!-lA*!#&(!6?O 8 )-$'0L.~ "%.
; 
  *K38*9Ho-$'0 )HL  U 'A1 )- '0L{&3! > y9H&(CD)+!#&( )AK_W!#&()+$&3lA!R
A*!&3! n
   ! $%$%  *? =K(CS)n!.  &3)+$  NL %$$% 1-M*K3!A*!
K(CS)J'!_'!#+ U=A@&@&3!@A!&(!W&34U-&(K(K !b S$6Jo|5A8#E~O 4? 4e 8 K3KL*82o
cR!+ UVA  NL %$$% 1-Ms&3!6K(&()HM*8#K3oD&()+9H5>)+9+)JM.
; b+5+5> !?O 8u$ )J'8*9+&($%'&3 ) A  NL $$%% #-GUe*!K3&()+*8Ko9+5)+9+)J.
6+&(!ECS*)+!E'AE'H8{%&(!2'!q!$MKL*8#P! O L $%$% O-_)H*K(K C8+_>!bH$h'A
O L NL =O ! ! = %$1=O- 1-R&3!N'+@
 C8D5*K3o )+ CD&L*K>&. *.
O L NL~  =O ! ! ~  = $%1=O- 1-+~   l?O 8-*K3K 
X )u5A8#'&3$b+K(*8_ UecAM7*
O L L~  L =?O ! ! ~  L = $$#=O- #-A~  L  
$

ebHE!&3)+$ NL%~ L  ^ *)+9 ! ~  L# $%G 1-+~ L H_+UeI bH!qAM7*


O L 
 =O ! = $$#=O- Q
&. *. O LVH. !#&(CD&(K(*8N*8#G b+CD)JEG &37*!6'+O ! H_"O   %$$ [$*)n8'1
9+&($%'&()HGc+q*!!#b+CS5'&(*)DA'+ O eUe8)H*NK(K C8H.w6 bH! NL $$$ 1-G
&(!6K(&3)+M8K3oD&3)+9+5>)H9+)JM_>*)H9u&3!N'nb+!qR+*!&3!EJo 4e*8 K3KL*82o .
; ]8# C F CDCP $ Uen)+ U 'A1  NL %$$ 1-G!5A)+! )-$'0L. 6nb+!7*8#o
5 Ko )+ CD&L*K <;K)-$'0LN$*)u>U-8&)&()'+I?O 8#C
 O L NL = $%1=O- 1~. DJ
?O 8e!# CS!$MKL*8#! O L $$$ O-. X )5A8#'&3$b+K(*8_J+I&()J'85> KL1'&()HG{5> K3o )+*CS&(*K
%yUe)'+s9+h"5> &()J!l~  L 7GL# $$$ ~ 0- 87 -*qC|b+!#I+ 7*s'+&3!?O 8#Cu.  
'cUe 8#R bHU-A'+E&()J'85> KL1'&()HGI5 Ko )+ CD&L*K&(!_JU[a#b+!2e+ 7*q{U[ 8
 bH6U-A-+c!$MKL*8#! O L %$$% 8ON-l*8.
9 W~  L 67GL_
;YX ) 89H8q?O*8 ZP>s*)&()J'85> KL&()+GR5> K3o )+*CS&(*K_HU[s)+
@~  !  7 ! _w'$. F %M\ !sK(  Z{'+Pd+8!#s$ )+9H&3'&3 ) @~  L#  7GL.E!&()HG
~H. DJ%_Ue^AM7 
@~  L#  O L L~  L = $$#=?O- 1-+~  L2  7GL 
ebHEJo*8G*b+&()+GR!E&3)'+cK(CSCSH_nUe^AM7 
O L L~  L = $$1=?O- #-A~  L  O L 
 =?O ! = %$1=O-  O L
6 bH!PUeuCsb+!2PAM7*K
 O L  7ML. u 8#G )+8*K(Ko _Ueu!u'AR O !  7 ! _
O   7  %$$ .[6nb+!E'+c )HK3o5> !!#&(+K3c$h+ &($c*?@&3)n8#5 K('&3)+Gs5> K3o )+*CS&(*K
&(!
5,  7ML NL = $$1= 7 - 1-   7! 
~. $

L

U-+&($h&(!S'+ F *G 8*)+G &3)J'8#5*KL&( )Y?O 8CsbHKLH. 4e )J7*8!#Ko _I&3P&(!*!#o


'Z$h+$hv'A1P&?U[9+%dA)+ Jov'+?O 8C|b+KLY~. $ _[+) W~ L#  7GL_
@~  !  7 ! _[%'$.! &(!s&3)+9+9'+b+)H&(mnb+&()J85> K('&3)+G5> K3o )+*CS&(*K
%yUe)u+c9A'D5> &()J!^~  L 87ML2 %$$% ~   87  %.


; !*)H*CS5HK(*_-!#b+5+5> ! )HUN)n!"'&3)n8#5 K('umnbA*9+8'&3$5> K3oJ


)+ CD&L*KN>yU[)'Hu5> &()J!~  hJ_~   _N*)+9+~ D M %_[!Z'A  Lu,   _
 ! ,  _   ,  DH9_ 7GLq,  _ 7 ! 5,  _ 7  5,   .-6+|?O 8#Csb+K(*I?O 8 L_ ! _ 
*8
NLe,5 ~  ~ RL'EE  ! ~~  L E E     ~~2R EYEY**~~2B EE D DJ
!

! 5,  ~ ~ REE  LL~~  E E     ~~RPEE  ~~BEE D DJ
!
!

 ,5 ~  ~ REE  LL~~  E E   !  ~+~ RDEE  +~~ BD EvEY*
!


*)+9!R'+c&3)n8#5 K('&3)+Gs5> K3o )+*CS&(*K&3!
 NL = ! =     ~ ~R EE  ~~ R EE DJD = ~+~ BDEE ~+~ BD EvEY  
 b=$*) $h+$h=Jov9+&38$S!b++!2'&'bH&( )v'A1 @~    H _ @~   _6*)H9
@+~ DJ  *!9+!&389.w q?'8^K3**?`*K3G H8'I )+E$M*)D!&3CS5HK(&3?o "'{^CD 8
!#h)+9A*8#9?O 8#C
 ED  !  = # D    Ev

;YX ?` )+EUe8q|&3)n8#5 K('E^!&()HG K(-5> &()J~  L 87ML#%_  )+-U[ b+K(9Ia#b+!#eG 'H
$ )+!2h*)Jq5*K3o )+ CD&L*K  7ML_+U-+&3$h&(!6?@$*b+8!#^+{*)+K3o5> Ko)H CS&(*K>*?
9+G 8#^lU-+&($h5A*!#!!-'H8 b+G*~  L 87GL2%.
; 6+ F *G 8')+G e&3)J'8#5*KL&( )^?O 8CsbHKLq!Mo!@A@+8#6&(!%H*$K3o| )+N5> K3oJ
)+ CD&L*K*?e9HG 8#ScCS*!# <ElU-+&3$h5A!!!^+8*b+G 
 YG*&37 )5> &3)n!.
q Ue%7 8_-&3?q )+&(!RU-&(K3K(&()HG'b+!CS*8$ CD5+K3&($M1'9Y5> K3o )+ CD&LK(!~O&. *.
5 Ko )+ CD&L*K3!W*?9+G*8E+&3G +8wA*) E @+)R'H8q*8#E&3)HdA)+&'K3osCS*)Jo
CS 8#uUeMo!&()J'85> KL1'u+ !#9Ah5 &3)J'!. A 8S&()+!2h*)+$*_-h*'H
5 &3)J'!Z~ hJ"*)+9 ~  M . 6+8#Z&3! )+Ko )+K3&()+*8"5> K3o )+ CD&LKEU-+&3$h
&()J'85> KL!|+!#5 &3)J'!| I+5*K3o )+ CD&L*K @~ ,  . ebl'+8*8
CP*)JoZmnbA*9+8'&3$P5> K3o )+*CS&(*K(!U-+&3$hL *K3!&3L )J'8#5*KLD+!#PyUe5> &3)n!,
@~    ! U-&(K(KUe 8#]_+*!U-&(K3K @~   !  ! = ! _  8&()R?*$%N*)JoR5> K3o )+*CS&(*K
*?`'+q?O 8C ~2 E  "! =1.w )+9U-&3"$bH+&($5> Ko)H CS&(*K(!@+8#I*8#7*)
CS 8#c5 !#!&3+&(K3&3'&3!.[6+|5 &3)Jq&3!EAEM$h9+G 8#^o  b*9+9D+|5> K3oJ
)+ CD&L*K *9+9H!w )+NCD 8e9+G 8#6*?]?O8#9H C ~O8CDC|8'+@'H69+&(CD)+!#&( )
*)? )-+.~ &(! A== _+*)H9&(!e&N$ CS!N&()H$8*!&3)+G KoS*!&38es!'1'&(!2?o"|dH9
M/

) bHCs8-*?@$ )+!#8'*&3)J'!{~&3)+&(!6+CS5+K3I'+8{*8c )+KoPyU[P$ )+!#8'*&3)J'!_


 )+N?O 8@*$hR9A'5 &3)J%.6+&(!W&(!@5A8#*?CD 8NG*)+8'*K+5H8&()H$&(5HK(*,`U-+)
'+D)nb+Cs>8^*?N9+G 8!{*?e?O8#9H C%$9+!{'+D)nb+Cs>8^*?N$ )+!#8'*&3)J'!_
'+)b+!#bA*K(Ko )+^A*!qCP*)Jo!# K(bH&( )H!-PD5+8*+K(Cu.eH)+{)nb+C|8
*?6$*)+!#8'*&3)n!|H$9+!s'+D)nb+Cs>8{*?69+G 8!s*?e?O89+ C_W )HSb+!#bA*K3K3o
A*!w)+c!*K(bH&( )+!4'^5+8# +K(Cu.4+)l+-) bHCs8w*?>$ )H!#'8*&()J!w%H*$K3o
mnbA*K3!'+s)nb+C|8I*?9+G 8#!^??O8#9+ C_: )+lb+!#bA*K3K3ouA*!I%H*$%'Ko )H
! K3bH'&3 )'"5H8 +K3C.I|U-&3K(K4CP*s'H&(!5+8#&()+$&(5+K3|CD 8|5+8$&(!#lKL8
&()'+&3!6$ bH8!.
QRQRQSQRQ
&F ()HM*8N8'*)+!2?O 8CS&( )+!
; q5lb+)J'&3KH)+ UvU[6AM7 -!#b+9+&(9lM*$hl7*$ 8w!5+*$6&3)s&(!# KL&( )_**)H9lK(  *9
|U-A1l )+"$*)9+U-&'+"7 $ 8!l&3)'A1|7 $ 8l!5A$*. E Ue%7 8_
'+&3!"&(!S )+K3o7 8#oK3&(CD&39Y5 82'&3 ) *?^K(&3)+M8P*K3G H8'H. 4v*5+5+8#$&('
'+s?Ob+K3K5> Ue8c*?K(&()HM*8*K(G +8'_U[D+ 7*s')+* )+K3oub+)+9H8!2h*)H9*$h
7 $%' 8!5A$N&3)+9+&37 &39+bA*K3K3o _ HbH@K(!*K(K +[7*8#&( bH!jzg*[#g*zHi 1 Dg*j
1zHi
%yUe)*)+I7 $%' 8E!5+*${*)+9*)+'+8.
; #g*zHi 1 Dg*j
1zu?O8# C  )HS!#  '*)+*+8^!%  &(!Na#b+!2s?Ob+)+$%'&(*)
,    U-+ !#9+*CP*&3)&(!  *)+9vU-+ !8')+G &(!R&() P.Y6+!%
*?I*K3K65*!!&3+K(8'*)+!2?O 8CS&( )+!l&3!S '8CSK3ovK(*8G . X ) K3&()+*8R*K3G +8H_
+ Ue%7 8_U[P8R)+*^$*)+$8)+9U-&3K(Kyo 5>!{*?[8'*)H!#?O 8#CP&( )H!_:+b
 )+K3oZ7 82o!#5$&LKyo 5>"n)+ U-)=!Pjzg*D#g*zHi 1 Dg*j
1zHi%.u6+!#*8
'8')+!#?O 8#CP1'&(*)+!6?O8 C  )H{7 $ 8!5+*$|"*)H*'+8qU-+&3$h5+8#!8#7*!'H
*9+9+&'&37*c*)+9!$*KL86Csb+K3&(5+K3&($'&7 E!#'8#b+$b+8,
z

;     F %  _  >P7 $'*8l!5A*$!. jzg*S#g*zHi 1 Dg*j


1

    &(!^*)Jo8'*)+!2?O 8CS&( 
)
,    U-+&($h %o !^+D?O*K
K( U-&()+GsyU[D5+8 5>82'&3!,
; ~
5+8#!8#7*!67 $'*8N*9+9H&3'&3 )] A 8[*)JBo    ;_
|~ P=<  
P=
  .
; ~
5+8#!#8#7*!w!#$M*K(*8Csb+K3&(5+K3&($'&3 )]0 A 84*)Jo  ;*)+9s)noc!#$M*K(*8 ;<_

s~  
.
;3 *EA'+8q*8E)+ UyUe{yo5>![*?7*$%' 8#!,w7 $'*8!e&3)  *)+9D7 $%' 8#!
&() S. X )!*CSI$*!!_  *)+9  U-&(K3K>I'+I!*CSI!#5A*$*_A+bH-'+8-&(CD!
#H


  

'+%o"U-&(K3K:)+*.  S*)+c!+ bHK(9h*|lK3&3K(q$M*8#*}A?O 86&()H!#h)+$c )+c$*)+)+*


)+$!!*8&3K3o^*9H9|-7 $%' 84&()  'q-7*$ 8W&3) P. X )^'+[*> 7 9+dA)H&3'&3 ):_#
*)+9 U[8#67 $%' 8#![&3)_n!  =  b+!9S'H  7*$ 8[*9+9+&'&(*)s8b+K3*_J+b

)+9
HU[87*$%' 8#!6&() S_!#
=
+bH!9+  7*$%' 8-*9H9+&3&( )
8b+K3*. ~O )=%5+8!!#&( ) K3&(  =
 U[ b+K39=)H*P)H$!!*8&3K3ovCS**!)+!_
b+)+K(!!  *)+9  Ue8mnbA*K_6*8PPK(*!#S$ )J'*&()+9 &()H!&(9H$ CDCS )
7 $%' 8-!#5A*$M%.
; 6+{yU[5+8*58#'&3!E*?DK(&()HM*86'8*)+!2?O 8CS'&3 )$M*)>^9+!#$8&39*!q?O*K
K( U-!,{&3?o  b$ Cs+&3)+lyUe&()+5+b'!_'H)+S*bH'5+b'!{*K(!#u$ Cs+&3)+u~O'H
U-+ K(6&3!@mnbAK+''HE!#b+Cr?&'!@5A8#'!'%} *)+9R&?>o* bD*CD5+K(&?o|)D&3)+5+bH@nol
$ )+!2h*)J_H'+ bH'5HbH-*K3!sCS5+K3&3dA![JoS'+!*CD$*)+!#'*)J{~*)+'+8eUNMo
*?W!Mo&3)+GR'+&3!6&(!N'+6'+I8'*)+!2?O 8CS&( )&3!6+ CD G )H b+!'%.
; !2@U-++8E'8')+!#?O 8#CP1'&(*){&3!WK(&3)+M8_ o  blAM7*N'$h+$h|!#5A*8'K3o
U-++8&3&3!$K(*!9 b+)+9+87 $%' 8u*9+9H&3'&3 ):_q*)+9 $K3 !9b+)+9H8!$*KL*8
Csb+K3&(5+K3&($'&3 ):. X R&3!l5 !#!&3+K(P$ CsH&()+"+"yUeZ$h+$h !S&()J'*)+*,&?
o  b $M*) $h+$hA?O 87*82o!$MKL*8 ;  *)+97 $%' 8#!  ; _
'A
|~ <=   
<=
  _+) o  b*8Z*bH CS'&3$M*K3K3o=K(&()HM*8
'8')+!#?O 8#CP1'&(*)~  {H CS%Ue*8
;                  
    7 8#o!#&(CD5+K(
%H*CD5+K(*?cZK(&()HM*8l'8*)+!2?O 8CS'&3 )Y&(!R'+uCP*
5
,    9+dA)H9
n
o
Y,  D Z E&3cCS*5+!c!$MKL*8+8D&(CD!A^!$*KL*8. X ^&(!I$K3M*8
'AE'H&(!-CP5u5+8#!#8#7*!c*9H9+&3&( )*)+9Csb+K3&(5+K3&($'&3 ):.w )u%H*CD5+K(c*?w
)+ ) K(&()HM*8'8')+!#?O 8#CP1'&(*)&(!N'H^CS*5
VN,    9HdA)+9Jo
,   ! .
;  
          
 
 !E|7*8&('&3 )"*?+&(!N+CD*_
G &37*)Z*)Jo7 $ 8{!#5A*$PpD_+RCP
5
,:p  p G*&37 )n
o
Y,  D &(!
|K(&3)+M*8'8*)+!2?O 8CS'&3 )~U-Jo .6H&(!e8'*)+!2?O 8CS&( )Rh*!N7*$ 8!E*)H9
9+&(K('!e'+C Jo DH.
;  
  )       
 
 !#5$&(*K+$M!-*?9+&(K('&3 )+!
&(!e+I9+&(K('&3 )Dno , N  .w6H&(!6&(!NsK(&()HM*8'8')+!#?O 8#CP1'&(*)S?O8*Cp 
pD_+n)+ U-)*!e+lj %zAjlg*zHi 1 Dg*j
1zA_+*)H9&(!ebH!bA*K3K3oS$M*K3K(9 D 8 
w.
;            
   )H*'+8N!5>$&L*K]$*!&3![9H&(KL1'&(*)DJo
H,
  H.@6+&3!&(!IK(&()HM*8@8'*)+!2?O 8CS&( )s?O8# C pV'{pS_n$MK(K(9l'+ 1% 
#g*zHi 1 Dg*j
1zA.
$F




; )+*+8IH*CS5HK(s*?[K(&3)+M8q'8*)+!2?O 8CS'&3 )&3!'+lCS*5


,9 !  B
9+dA)H9Jo
   

5,  D $ 

/
U-+8#U[CD5*8'*8#&(K3oZ'H&()+?'H7*$%' 8#!P&()  ! *)+?
9 P*!R$ K3b+CS)
7 $%' 8#!. X )u'+8NUe 8#9+!_
     L   L =  ! 

L

 

D $
   DL= $! 
!
!

 L ==/  !
;=F %M\ !e$h+$hDA
5+8!8#7 !N7 $'*86*9+9+&'&3 ):. X ?  _   *8-yUe{7 $%' 8#!N&()
 ! _+! o
,    L }   5,    L
!
! 
'+)

|~  =    
  L == L
!
! 
 ~  L = L ==+~  ! = ! 
DA~  L =  L = $ ~  ! = !


+~  L = L =Y/A~  ! = !


U-+&(K3

 =
  
  L =
  L

! 
!

  L = 1 ! 
 ! =
D  L = $ ! 

 !

L =Y/ !


I)H$M)"'+)"!InoS&()H!5>$&( )D'A1
|~= *)+9
=
]*8#m b+*K.
!&3CS&3KL*8I$ CD5+bHh1'&(*)!H U-!sA
s~  Q
 }wUeK3MM7 D'+&3!s*!l)
 L
= 1
D L = $

1 L Y
= /



%8#$&(!#*.
; u 8-G )+8*K(Ko _n*)Jo  uCP8- & ~" 8 U-![*)+9 $ K3b+CS)H!hWG &7 !8#&(!6
cK3&()+*8@'8*)+!2?O 8CS'&3 )s?O8*C    . F 1'8 )_nU[E-!A*K3KA!" EAw'H
$ )J7 8!#S&3!'8bH*,I7*82oK(&()HM*88'*)H!#?O 8#CP&( )u?O8 C  '  &(!IG &7 )


no& SC 8&. A 8{&()+!2h*)+$*_w'HP'8*)+!#?O*8CS'&3 )


,   B
G &37*)no
,5
$ 88#!#5 )H9+!El'+cCS'8#&




~OU-Jo _6U-+&(K3+&39+)J&3yov'8*)+!#?O*8CS'&3 )v )   $ 8#8!#5*)+9+!P'H


j %zAj Dg*j
  


~OU-Jo .~A-CS'8#&P9+ !6'+@ C8R'8*)+!2?O 8CS'&3 )$*88!5> )+9'
; 6 bH!{CS'8#&($!I5+8# 7 &39+DG* 9%H*CD5+K(l*?eK(&3)+M*8q'8')+!#?O 8#CP1'&(*)+!}`+b
'+%o*8#")+*{'+P )+K3oyo 5>*?-K(&3)+M*8c'8*)+!2?O 8CS'&3 )~ a#b+!2R*!s8# U *)H9
$ K3b+CS)Z7 $'*8!D*8P)+*|+" )HK3oZyo5>"*?-7*$ 8!sU[!#b+9HoH%.")+ U
G &37*I!7*8*KCD 8#%H*CD5+K(!.
;                
 
  F %  ! >6'+-5+K(*)+_n*)+9DK(

VN,  !   ! 9+)+*c+c 5>8'1'&(*)*?W8# A$&( )'+8# b+G + + 1&(!,

|~  L  ! e,  ~  L $E  !  
~ 3  U Uec )+$^*GJ*&3)"7&3U 7 $'*8!E&()  - *!68# U7 $ 8!'%. X -&(!6!#8'*&3G J#
?O 8#Ue*89u'S7*8#&3?o'A1'H&(!E&(!qPK(&3)+M*868'*)+!2?O 8CS&( ):}]&3)+9+9:_>&3q$ 8#8%
!5> )+9+!6'R'H^CS8&
  E{

~OU-Jo 6)+*'{UeR*8#s$*)H?Ob+!&3)+G8 U *)+9$ K(bHCS)7*$%' 8#!^H8.^|U-&3K(K
$K(*8|+&(!l$ )H?Ob+!#&( )b+5vK('8. %. 8G )+8*K(Ko _wG &7 )=)noK(&3)+"&()  !
'+8# b+G +l 8&3G &()~ 8*)Jo5+K(*)+s&3K
) RI'H8 b+G*'+l 8#&(G &3)]%_]'Hs 5>82
'&3 )*?8 A$%'&3 )'+8# b+G AIK3&()+"~8!5:.{5+KL)+ q&3!I"K(&3)+M8E8'*)+!2?O 82
CP&( )D?O8 C  ! >  ! ~8#!5.   '   %_+!6$M*)>!)Jo"K3CD)Jh8#o
G  CD8#o*.
;                    F %
G,  !   ! 9+)+*'c'H
 58'&( )?q8#*h1'&(*)v*)J'&($K( $hJU-&(!Pno  9+G 8#!. K(&K(PG* CD8#o
!+ U-!-'A

|~  L  ! e,  ,~ E  !  L 



6+&(!-&(!-lK3&()+*8e'8*)+!2?O 8CS'&3 ):_ $ 8#8!5> )+9+&3)+GDl'+cCS'8#&


  E^ 

u 8^G )+8*K(Ko _+G &7 )*)Jo*)+G*K( _A+{8#*h1'&(*)*)J'&($K( $hJU-&(!c 8-$K( $hJ
U-&(!8 b+)H9'+ 8#&(G &3)G &7 !l8#&(!#P'ZK(&3)+M8{'8*)+!2?O 8CS'&3 )?O8# C  !
'K
  ! . X ) M_&3s9+!):\ Rmnb+&3"CS**!#)+!#8*''8 b+)H9'+ 8#&
G &()~OU-+&3$hUNMoU[ b+K39&3q!5H&() %_+bHIG*&37 )*)JoK3&()+c'H8 b+G*'+| 8&3G &()
~$MK(K(9^+Ig j(i  1g*j
1z _* )He$M)s8*''e*8*b+)+9{AWK(&()HJo|*)l*)HG K(
l~O+ b+G s+8#-*8NyU[IUNMo ! )+N$*)R9+I&3_*$K( $hnU-&3!6 8@*)J'&($K( $hJU-&(!M%.
NU-&3K(KH)H*$ 7 88*''&3 )R*)+9R8 A$%'&3 )RCP8&3$!W&()R9+'*&(K+8#N `'A1M\ !
l 5+&3$?O 8I 
q.
;               
   F %M\ !h*v!#'*)+9A*8#9
7 $%' 8E!5+*$_! o  / _>*)+9$ )+!#&(9+8-+^ 58'&( )*?W!#U-&'$h+&3)+GD+cdA8!2
*)+9'+&389$*CS5> )+)n!,

|~  L  !    /   ~    !  L  /  
6+&(!-&(!-lK3&()+*8e'8*)+!2?O 8CS'&3 )~U-no X E$ 88#!5> )+9H!ER+cCP1'8& 

    
 

~OU-Jo .6+&3!Eyo 5>s*?w*58'&( ) e+|8#M*8#8'*)HG &()+GD*?@+|$ y*89+&3)A'!-
&(!E )H U-)*!lxA%   g*j
1zA_>*)+9u'+^$ 8#8!5> )+9+&3)+GPCS'8#&&3!qn)+ U-)*!
xA%  g*j
1z Dg*j .uI)HP5+8# 58#yo*?65>8#CsbHh1'&(*)CS'8#&($!^&(!c'A
7 8#oc8# U*)+9^$ K3b+CD)^$ )Jh*&3)+!`%H*$%'Koc )+- _ U-&3c+8!#*?+)J'8#&(!
&()+GDH.
;        &             E8\0!N{CD 8E&()J'8!##
&()+GN8'*)+!2?O 8CS&( ):, 4e )+!#&(9+8:'+w'8*)+!2?O 8CS'&3 )
M, )-+.~   )-$'0L.~ 
9+dA)H9Jo9H& 8)J'&L1'&(*):,

,    






6  bH!_`?O 8&3)+!#'*)+$_:&3?  DH_+)


Ue bHK(9!)+9'+s7*$ 8   = B=
$ ;   ~.+l7 $'*8AD  ! =  ; ! ~."%.R4!#+ U '+
5+8#!8#7*!
7 $%' 8e*9+9+&'&3 ):_J5+&3$hsyUe{5 Ko )+ CD&L*K3! _ &() .WEAM7 {!#+ U'A

s~ = 
=
_+&.0.
~ =  = 
 
   
ebHs+&(!{&(!-a#bH!#s+"!bHC 8#b+K(D?O 8|9+& 8)n&L&( ). !#&(CD&(KL8c*8G bHCS)n
!+ U-!-'A
V5+8!827 !!$*KL86Csb+K3&(5+K3&($'&3 ):.
;  
             
 
 T-$*K(K:A  &(!6'H
!5A*$c*?w*K3K!#mnb+)H$!_.0G+.   $ )J'*&()+!
~  L  !    / $$%
*!Elyo 5+&3$M*K:7*$%' 8. B %dA)+I'HDj $  i  j ` 5>8'1' 8
N,      no

s~  L    $$$0e,  ~
 L  !    / $$$0
!  /
&. *.vUe!+&?D*K(KN+)J'8#&(!S8#&(G JRJov )+_6*)+9=*9+9= C8#l+u>%
G &()+)H&()+G+.6+&3!s&(!|K(&3)+M8c8'*)H!#?O 8#CP&( )~OU-Jo %. E U[7*8_&s$*)+)+*
u85H8!#)J'9no=ZCP8& v!&3)+$   &(!D&()dA)+&3u9H&(CD)+!#&( )AK^~b+)+K3!#!
o  b=*8U-&3K(K(&3)+Gu$ )+!#&(9+8R&()HdA)H&3' y9+&3CS)+!&3 )A*KCS'8#&($!_+bHRAR&(!
*)+*+86!2' 82o+.
;        *         
   6+8#&(!l$*CS5A)+&( )
 58' 8'+R8&(G*n2 y!#+&3?_:)A*CDKou+(  i  j w 5>8'*8
D,   
  9HdA)+9Jo

 ~  L    $$$0N5, r~    $$$0


!  /
!  /
&. *.uU[!H&3?lK(Kw'+P)J'8#&(!|K(?|Jo )H*_@U-&3'HR  L^)J'82o9+&3!'*5H5*82
&()+G)J&(8K3o*. X ^&(!^*K3CS !2M_`+b|)+{mnb+&'_4+S&3)J7 8#!S*?e+S8#&(G J2 y!H&3?
 58' 8}HCS 8#I )'+&3!6KL8.
;                
 
  '8#&($K3oP!5>M*n&()HG+_+'+c!#5A*$!
  *)+9  ! *8#|)+*8KL9:,  ! &3!)+IS!#b++!#5A*$l?   _>$*b+!#syUe
9+&(CD)+!#&( )+*K[7*$ 8!D*8#)+*l'H8 y9+&3CS)+!&3 )A*K7 $'*8!. 3 7 8#+K3!!_
Uec$M) 2?O*8$  ! &()J' -Jo*9+9H&()+GR*)8' C8R )'+c)+9u?W*$h
*


yUe 9+&(CD)H!&(*)A*Kw7 $'*8.6+P?O*8CS*KwUNMo*?-9+ &3)+Gu+&(!{&(!|&3)J'8 9+b+$&()+G


'+cK(&3)+M8e'8*)+!#?O*8CS'&3 ) N,  !  E9+d+)+9uno
~  L  ! N, r~  L  ! hJ 
6 bH!  ! &(!)+9H&(8$K3o$ )Jh*&3)+9{&(@)   _1+bHU[[$*)|CS*[-K(&3)+M8'8*)+!2
?O 8CS'&3 )"U-+&3$hC|9+!  ! &3)nB   *)JonUe o7 &Ls'H^8'*)+!2?O 8CS&( ) _
U-+&($h=&(!l*?)Y$M*K3K(9Y*)r#&3)+$K3b+!&3 )+ 8Z#Cs9+9+&3)+G '8')+!#?O 8#CP1'&(*):.
6+I'8')+!#?O 8#CP1'&(*) $ 88#!5> )+9H!ER+cCP1'8& 
  
 

; !             
   4e )J7 8!K3o*_U[$M)P!mnb+&3!P
'+8#% 9+&(CD)H!&(*)A*KH7*$ 8&()J'{yUe 9+&(CD)H!&(*)A*K+ )HqJoRK(M7&3)+Gc bH'H
'+&389$ CD5> )+)J.e 8^5+8$&3!Ko _+U[{CSMo$*)+!&39+86'H^K3&()+*8e8'*)+!2?O 82
CP&( ) N, B   ! 9+dA)H9Jo
~  L   6, r~  L   
! 
!
6+&(!N&3!6|K3&()+*8[8'*)+!2?O 8CS&( )~OU-Jo . X 6&(!6K(CD !#_+b6)+*6mnb+&'_'H
&()J7 8!^*? }ACD 8I )+&(!-KL1'8.
;     
            
 
 F &()+*8P'8*)+!2?O 8CS'&3 )+!
*8&3!c)Ab+8'*K3K3oSU-+) 1z *%jz $^ )H^yo 5>{*?Wb+)+&E"*)H*'+8.N !#&(CD5+K(
%H*CD5+K(6&3!_n!'Mo _ $*)n7*82'&()HG^o *89+!'I?O%M', SoJ*8#9+!e>$ CD! D P?O_  bH!
9+CD )+!2'8'1'&()HG'+PK(&()HM*8^'8')+!#?O 8#CP1'&(*)
  D . CD 8S! 5+H&(!#&
$M9+CS5+K3R$ CD!^?O8 C$ )J7 82'&3)+Gu)nb+C|8|*?N' CD!I K3M\ !ch*
no 9+8# G ):_$*8> ):_n)+9SM o G )R 'cK3CD)Jh8#ol5A8#'&3$K3!-~OK($8 )+!_n5+8
' )+!_ *)+9P)HbH8 )+!'%. F \0!!'MolA'+67*$ 8I
~  `@8#5+8#!)J'!
'+)nb+Cs>8|*?Eno 9+8# G ):_[$*8> ):_)+9Mo G )1' CD!s&()$ CD5*b+)+9:_
*)+9
~ Q( 
- 8#5+8#!#)J'!N+q)nb+C|8[*?:K($8 )+!_5H8* )+!_*)+9P)+b
'8*)+!.  &()+${Jo 9+8# G )$ )+!#&(!2'!E*?@ )H{5+8#*'*)*)H9u )H{K($%'8# ):_]$M*8#*)
$ )+!#&(!2'!*?!&s5+8' )+!_n!&s)+b'8*)+!_*)+9R!& RK3$%'8*)+!_ *)+9RM o G )S$ )
!&(!2'!*? &3G J5+8' )+!_&(G J)+bH'8# )+!_ *)+9c&(G JK3$%'8*)+!_ '+$ )J7 8#!&3 )
?O 8CsbHKL|&3!
(  K=Y/  =?F 
  K=Y/  =?F 
@- /  =?F 
D


 86&()*+86U[ 89+!

  /



@-


(

  /
F

/
F

 /



 







6+wCP1'8&   / F &3!'nb+!`'H 1z*%hi%j


1z Dg*j ?O8 C '+wJo 9+8# G )
/ F
$M*8# ) yM oG*)I7 $'*84!#5A*$N'+K($%'8# ) y5H8* ) y)HbH8 )7*$ 8`!5+*$.
~ 5++&3K( !# 5++&3$M*Kmnb+!2'&(*):,wU-no8c$ )J7*8!#&( )H!*KUNMo !-K(&3)+M*8
;           *         
  F &()+*8|8'*)+!2?O 82
CP&( )H!*8#{U[K3K@*9A5H'9'"A)+9+K(^'+|G 8 U6'*?+8# G )H b+!I5> 5
b+KL&( )H!I 5> 5+b+K('&3 )+!c$ )H!&(!2'&3)+G*?NCS 8#DA*)*)+Syo 5>P*?6!#5$&3!s 8
$8'bH8*. A*!&3$%H*CD5+K(P&(!s'+R*? W&(> )A$$&\0!|8'*+H&3'!.6+!u*8
5A*&(8#![?8'*+H&3'!U-+&3$h8M$h"CP1'b+8#&3yoD?8e*)+qo*M*8_+*)+9"+)P5+8 9+b+$
 )+R5A*&38I*?4a#bH7*)+&3K(R8'++&3!I?O 8I7*8#oo*M*8{?'8I'A.S6nb+!_@&3?ec )H
o M8-+8#c*8  5+*&(8#!N*?Aa#bH7 )+&(K3I8'*+H&3'!N*)+9  5A*&(8#!6*?*9+b+K68'++&3!_
&()P+)+6o*M*8['+8U-&3K(K>  5+*&(8#!e*?Ha#bH7*)+&3K(8*++&'!~>$Mb+!I*$h
5A*&(8c*?N*9+b+K^8'*+H&3'!^G &7 !^+&38#''sa#b7 )H&(K(D5A*&38h_)+
9  =  5A&(8!
*?N9+b+K38'*+H&3'!.s6nb+!^ )+l$M)9+!$8&(>l'+l5+*!!*G D*? )+lo *8cno
K(&()HM*8e8'*)H!#?O 8#CP&( ),

|~ Q le,  ~ B ?= l 


6 bH!_?O*8:&()+!2h*)H$*_1&3?n&3)I'+@dA8#!#o *8:'H8&3!` )+w5A*&38:*?Ma#bH7*)+&3K(w8'++&3!_
~2 h %_`&()+S)H% {o*M*8I+S5> 5+bHKL&( )7*$ 8cU-&(K(K
|~2
 hJ  ~ M %.
6+)&3)+{o*M*8I1?'8-'+&EU-&3K(K>
|~ M   ~2
 M %.-6+
)
|~2 M  
~2 *%_'+)
|~2 * ~  DJ_4+)
s~  DJ +~ D 
%_*)+9!?O*8#'.Z~O
U-&(K(K]8#'bH8)"'{'+&3!e%H*CD5+K3*)+9)A*K3Go C&3eCS*8E$M*8#?Ob+K3K3oDCsb+$hK('8e&()
'+&3!6$ b+8#!M%.
;                   
   *)Jo+CS5+K3!q*?
*)A*K3 GuK($'8#&($S$&(8#$b+&'!_W!bH$hv*!l*CD5+K(&dA8#!_4$M*5+*$&' 8#!|*)H9dAK38!_W$*)
l'H b+G J^*?e*!cK(&()HM*88'*)H!#?O 8#CP&( )H!,'Ho'**D&()!*CSR&()H5+bHS~&
'+8S7* K3'*G ^ 8S$b+8#8)Jh*)+98#b+8)) bH5+bHR~*K(!#"R7  Kh*G { 8q
$b+8#8)Jh%.?')P'+q&()+5HbHN&3![)+6{!#$M*K(*8_ +bHe&(![{?Ob+)+$%'&3 )P*?'&(CD|~*. G+.
?O 8c 4r$&(8#$b+&'!'%_*)+9!#&(CD&(K(*8Ko?O*8c+P*bH'5+bM."6nb+!l$&38$bH&3c$M)
$






7&3U[9*!l'8*)+!2?O 8CS'&3 )"?O8*C~ 8"c~OU-+&3$h85+8!)n!'H^&3)+5+bH


*!|?Ob+)+$%'&(*) 8c'&3CSMq' ~. 8D~OU-H&($h8#5+8#!)J'!s'HS b'5+bHs*!{
?Ob+)+$&( )u*?W&(CD . q!b+*K(Ko"'+&3!E8'*)H!#?O 8#CP&( )&3!qK3&()+*8_A5+8# 7&39+9u'A
o  b+8&()H5+bH&(!>K3 U ^$82h*&3)D+8!++*K(9:.-~O ^Csb+$hP$b+88#)J[ 8w7  Kh*G 
*)+9"o *b+86$&38$bH&3NCD&(G*ne+K( U  bHN 8N!H 8#2 y$&38$b+&3 '"7 8#o)H ) yK3&()+*8
 $!  %.u$'b+*K(KoU-8&'P9H U-)U-A|+&(!^'8*)+!#?O*8CS'&3 )&(!|CS+%
CP&($*K(Ko _J'+*b+G :_+*)+Ib+!b+*K(Ko"A*!NR! K7 cl9+& 8#)J'&(*KmnbA'&3 ):}H+&(!
&(!6&(CD5> 8#'*)J6!#b W_AHbHE&(!6>o *)+9+c!$ 5^*?4'+&3!6$ bH8!.
; !-o  b$M*)u!*_>K(&()HM*8e8'*)H!#?O 8#CP&( )H!6%&(!2q&3)K(K:!# 8#!E?WdAK(9+!.I~ *b
CPMo*Csb+!#Po  bH8!K3?qJodA)+9H&()+G+CS5+K3!s?qK3&()+*8{8'*)H!#?O 8#CP&( )H!|&()
dA)A*)+$*_A5+Jo !&3$!_$ CS5HbH'86!$&3)+$*_]$*.

*

 
  
  "!#$%'&(*)+!,.-/0 1- /2
3 4+&($!5$ 6 789,
:<;>=+?@? !4A$!>*)+8B) =+?(? &@DCE*F ? &()GH*7I7'*)G!#FJ 7#KL&( )G!
:<M *)GN O*)+8B7'*)G"*F ? &()GH*7I7'*)G!#FJ 7#KL&( )G!
: 5+QPR&(KS)+!#&( )"+ 7#K
:<T &@)+H7U'7')+!#FJ 7#KLV'&(*)+!5*)+8A!!
:XW  D 7#8+&()+'R+*!!
: '7#&0"74G7!#)YZV'&(*)[*F ? &@)+H7I'7*)+!#FJ*7KE'&@ )+!
:X\= KB]+!$ ? *75K =+? &(4 ? &($HV'&(*)9]^*)+8B$ KS4_ !&0'&(*)"*F ? &()GH*7I7'*)G!#FJ 7#KL&( )G!
`a`a`E`a`
M 6 &(%bc*F ? &@)+H7I'7*)+!#FJ*7KE'&@ )+!
: ? &()GH*7I7'*)G!#FJ 7#KL&( )d&@!e*)YCdKE*4"fg, hji k FJ7 Kl )+m6 $ 7>!#4A*$
hcn)+*'G7Ik ! = $ZL'AVofp4+7!716 !I6 $'*7I*8G8+&@&( )BqJ&r/s*/tfnqvuxw[uYy{z|
f>u}wpf~u^yFJ*7} ?(? u'uYyh}zm*)+8f4+7!7#6 !n!#$H ? *7OK =+? &(4 ? &($'&@ )qJ&r/s*/
fqv%uz|f~uEFJ*7e ?(? !#$H ? *7!em)+8B ?(? uEhz/
: KE*4be+&($Z[4+7!7#6 !R6 $'*7*8G8+&@&( )&(!e!# KE%'&@KE!5$H ?@? 8YY*v*%
KL*4Sbe+&($Zd4G7!#716 !e!#$H ? *7IK =G? '&@4 ? &@$H&( )n&(!I!# KS'&@KE!.$ ?(? 8AVL %
ZV^%/
: NYH6 !%6 7 ? %G*KS4 ? ![*F ? &@)+H*7"7'*)G!#FJ 7#KL&( )G!d&()'+4+7#6 &( = !
)+*'!A+7}*7O$ = 4 ? QKS 7#*/
:9AtvAvv3^+HV+r_Vv_M $H ?(? '+}qv['zm&(!m'G
!4A*$a*FU ?(? F = )+$&( )+!RFJ7# K/5+&@!R6 $%' 7O!#4A*$SKS&(N YR_ = !8
'a74+7!)Y]_FJ 75&@)+!#'*)+$*]A! = )+8B!&(N*)A ? !~tqJ#z%/D)B4+7*$&($]AaKE*! = 7#&()+N
8+6 &($E$*)+)+}$*4G = 7E ?(? '+a&()FJ 7KE'&@ )&@)!&@N )A ? qbe+&($Z$ )Y'*&()+!
*)L&@)GA)+&0'~*KS = )YIF8A'Yz% &()+!1'*8L&0I ) ? Ca!'KE4 ? !o}A)G&@'>*KS = )YH] 
! KSmG8[&(KS!/*75&()+!1Z*)+$*]_KE*! = 7&()GNS8G6 &($}KS&(N Y5*) ? Cd!*KS4 ? 


x qJ#z~FJ*7~|  - ZG Z
qJ+&(!>bI =G? 8 $*77!4_ )+8 '!*KE4 ? &()GN"nFJ 7
+6 Q!$ )+8G!Zz%/o5+&@!~*47'&( )d$*)[_m8+!$7#&(_8[^Cd ? &()+*7I7'*)+!1FJ 7KEV
'&(*)<, qJ'"zi  ]+8++)+8[^C
, | qxq1 z%xq- z%ZxqYzxq z%tqr
z#z%
&r/s* /  '7*)+!#FJ*7KS!m!&(N*)A ? tqJ#z&@)^OR+6  D8+&@KE)+!&@ )A ? 6 $%' 7]^$ )+!#&(!1'&()GN
*F!*KE4 ? 8B5G6 O'&(KS!/A 7U&()G!#Z)+$]
e q
Zzo| q1  GH
 -
z
eq 
z| q  *  -   

z
'$/>qJYC&(!U+&(!5KE*4 ? &@)+H*7 z
: )Gd$H*) !&@KE& ? *7 ? C!'KE4 ? "4_ ? C )+ KS&  ? !#4A*$!/ A 7&()G!#Z)+$]o+KL*4
 
,  qvzi  ~8+A)G8YC
 ,2| qxq Yzxq z%tqr- z#z
&(! ? &@)+H7/
:H _JGJ+ v^+c A3 VGJ_ D)Y'74_ ? &( )$H*)
6&@b.8*!R'G76*7#!S*FI!*KS4 ? &@)+N+/QA 7R&()G!#Z)+$]N &@6*) '+7#a) = K_7#!
"! ] ]  ]o+ T N 7'*)GN d&()Y'74_ ? V'&(*)FJ 7K =+? N &06 ! = !E 4_ ? C )+*KE&( ?
#
 qv"zU! = $ZB'A>tq Yz| ! ]xq z| ]A*)+8xq- z|  ,
z$q
% - z w $q
%( z q
% - z w $q
*%+ z q
%pz
xq$
z| "! q &q
'%
q1)
%z&q '% - z
 %( zq1) % -*z  qr'- %+ zqr'- %-z ,
) ,+ >i  qJz58+A)G8
 )Gn$H)6 &(bg+&(!>*! ? &@)+H*757'*)+!1FJ 7KE&( .
^/C ~q "!  zU,2|c]+/ N+/
$q
*%z q
% - z
q
%+Yz q
*% - z
q
%(Yz$q
% z
eqG 10 zx| "!
w
w
q13
q 2%zq '% - z
 %+Yzq13 % - z  q4- %(Yzq'- %pz ,
qJYC&(!'+&@! ? &()GH*7 Vz/l5G&(!B&(!d'+ *6 5' "F'+'7*)+!1FJ 7KE'&@ 7
) 
8+A)G8&@)d'+O4+7#6 &( = !~4+*7'*N*7'*4+" o = >KS 7#R )'A ? '7/
-

: v 3^+ _v3G v_3IAeEvv3^+e A3 VGJ_dT %h_.e6 $'*7


!4A*$*]G*)+8  ? ou ! ,,, 'uO>}!#.*F 6*$ 7!I&()LhS/x5+)L'G~7'*)+!1FJ 7KEV
'&(*)"fg, i h 8+A)G8YC
fnq  ! ,, , 
*zU,
|  ! u ! w ,,,
w 
*u 
&(!m ? &@)+H7>'7*)+!1FJ 7KE'&@ ) qbe^C z%/n ? !#+] )+$*)%4+7#!!QKE*)YC*F'G
!#ZV'KS)Y!eFJ7# K 4+7%6&@ = !e)+*!e&()"7#KE!5*F+&(!U7'*)+!1FJ 7KE&( )LfQ/ A 7
&()+!1Z*)+$*]3!4A)3q u ! ,,, 'u zR&(!m+E!*KSa+&()GN*!O'GE&@KL*N*fqJ zR*F
f}' = ! u ! ,, , 'u B!#4A*)+!Eh &0F)+8  ) ? C&0F5f &@! )Y'+/  ) '+d*+7
A*)+89]^f&(! )G%  D*)+>&0F*)G8L ) ? Ca&@F u ! ,,, u m&(! ? &()+*7 ? C&()+8G4_)+8+)Y
qvKS 7> )L'G&(! ? '7Zz%/t5 = !Uf &@!5n+& #$%'&(*)L&@F3)+8d ) ? CE&0F u ! ,,, 'u O&(!
a+*!&@!/
`a`a`E`a`
;~=+?(? !#4A*$!>*)+8B) =G?(? &0DC
: )G*'e )a)+*''&@ )9,3&()'G&(!xb. s!U)+*!]^b.~!A ?@? *F)Se8+ ? &@)+NRbe&@
DbI8+&  7)^I6 $%' 7I!4A*$!~h )+8Bk ]!#bImAH6*DbIa8+&  7)^.DC 4!5*F
6 $%' 7#!/Rbe& ?(? '71CL7!716 O'+ ? #'7.uS8+)G*'R6*$ 7!e&@)BhS]A*)G8
 'a8+)G*'m6 $ 7!~&()[k ]+&()dbeAV~FJ ?(?  be!/
:<; *a ?(?o? &()GH*7Q'7')+!#FJ 7#KLV'&(*)+!*7#d ? &(*oFJ*7&()+!1Z*)G$*]+ 7 '7*)+!1
FJ 7KE'&@ )f ,3h i k 8++)+8YCf~u,2| AH6 !}7'+7Q8+&  7)Y ? C
FJ7 KB]A!'HC ]_'+Q&(8G)Y'&0DCd'7')+!#FJ 7#KLV'&(*)f,+h i h 8GA)+8 YCBf~u,2|gu/
;  bb.&()Y'7#8 = $!*KE$ZA7'*$%'7#&(!1'&($!*F ? &()+*77'*)G!#FJ 7#KL&( )G! 'e!#'*7#
' ?@? &@)+Nn'GK *4+*7#/
:  tJ_ T %.f, hji k _ ? &()GH*7'7*)+!1FJ 7KE'&@ )9/35+  !A#"G $Z
*FfQ]+$ ?(? &8 %qfz%]+&@!58+A)G8[E_R'GQ!#
%qfRzU,2'
| uL h, f~u|  ,
: D)X*+7abI*78+!]e+B) =G?(? !4A$$ )+!#&(!#!L*FR ?(? +!1 = '+af !)G8+!
' 7#qJ+&(!S&(!a'G. 76 $%' 7 
( *FOk]I)+*S'+. 7#6*$ *7 *)c*F
hnz%+, %qJfza| -f , ! q z/ \ *KE"G*KE4 ? !,d&@F5f ,oh i k &@!n'G 7#
'7')+!#FJ 7#KLV'&(*)f>u,2| ]o+) '+B) =+?(? !#4A*$. %qfz"| ha/X F&()+!1'H8
f ,h i hl&@!~+&(8G)Y'&0DCB7'*)G!#FJ 7#KL&( )df~u,2|u]'+
) %qfRz5/
| ^/
F3f,Y  i &@!I'+ ? &()GH*7o'7')+!#FJ 7#KLV'&(*)Efn q
0Yz|
}w 1
w 0]G'+)
%qJfzI&@!e+O4 ? )+2
  q
0YzI ,
aw
w 0n| ^/


: 5 +) =G?(? !4+*$o*F f&(!!# KE%'&@KE! ? !#e$H ?@? 8m+ 65 %*F fQ])+8}&@!! KS%
'&(KS!8+)+'8*7qJfz% = Qb.be& ?@?t= !#S+)+*''&@ )%qfRz+7 = N + = 
'+&@!5$ = 7#!/
: 5+[) =+?@? !4A$ %qJfz&(!S ? bUHC !L! = +!4A$FOhS5+&(!a&(!S*) %7$&@!/
D)^ = &@&@6* ? C*]Y'+ ? *7#N 7+>) =+?@? !4A*$*] '+~KE*75f7!Kn ? !o+4O'7*)+!1
FJ 7KE'&@ )9/35+m) =+?(? !4A$O ? !KSH*! = 7!U'+R ')Ye'}be+&($ZdfFv*& ? !o
O )+  D )G*,
: 
T }f,thi k _d ? &()+*7Q7'*)G!#FJ 7#KL&( ) /d5+) f &(!
 )+% r'  )+m&0Ft)+8[*) ? CL&@F %qfRz'
| ^/
:}9  t&(7#!#! = 4+4*!ABf &(!B )+  D )G*}b.+ 6*<!#+ b 'A
%qJfz>| ^/t&(7#!#m*F. ?@? ]9&0m&(!m$ ? *7'+  %qJfz]3_$ = !#Sf d| G/
;  b b.E!#+ b '+Q)+['+7Q ? KE)^Q&@!m&() %qfRz/ \ = 4+4_ !aFJ 7m$*)^7'V
8+&($%'&(*)AO'G7SbU!nB)+ ) 7#B6*$%' 7}uh ! = $ZA}u %qJfz%]
&r/s*/O'Af>uB| /}5+)f~u| f G /  = mf &(! )+% r'  )+]9!d'G&(!FJ 7#$!
u| G]G$ )Y'7*8+&@$'&@ )9/
| ^+b.}AH6*QS!#+ bc'+efg&(!5 )G%  D*)+*/
:<;  bc! = 4+4_ !Q'A %qJfzo'
D)<*+7b. 7#8+!]Ib.)+8<!#+ b '+be+)G6 7Ef~u |f~u^y@].+) b.
K = !#AH6 }u"|gu y / \ L! = 4+4_ !nA~f~u"|cf~u y /e5+)f~u % f~u y | ]!#
'AfqJu %<uYy z>| /Q5 = !Ou % uYyt1
%qJfz%]9be+&@$Z KE*)+!mYCYC 4_*'+!&@!
'Aeu % uYy| G]+!#Eu| uYy ]*!58+!&@78 /

: G*KS4 ? *,**O'+m7'*)+!1FJ 7KE&( )Lf,Y  i h8GA)+8YC


fnq  ! ,, , 
*zU,
|  ! u ! w ,,,
w 
*u 
be+&($Z b.S8G&(!$ = !!#8H*7 ? &@7/O F u ! ,,, 'u E&(! ? &()+*7 ? C8+4_)+8G)YH]'+)
'+7&@!IQ)+ ) 7  = 4 ? nq  ! ,, , 
 zo! = $Z"'AV }|  ! u ! w ,, , 
w u G
&r/s*/ %qJfzQbe& ?(? $ )G!&(!1*FeKS 7S'A&)  = !#n'+ B6 $%' 7/ W  )Y6 7! ? C*].&0F
%qJf
z |  ^]+'G) u ! , ,, 'u &(! ? &()+*7 ? CL8+4)+8+)^/55 = !YC T KSKL
 ]Gfc&@!e&() #$'&06 m&0Ft)+8[*) ? CL&@F u ! ,,, u n&@! ? &@)+H*7 ? CE&()+8G4_)+8+)YH/
:X\ &()+$ %qJfzo&@!U}6*$ 7U!#4A*$]+&@.A*!U}8+&@KE)+!&@ )9/t8+%A)+R+  !  
*FRf ''+[8+&(KS)G!&(*)X*F %qJfz%~'+&@!EKEHC [&()G+)+&@*]U&0F %qfRz&(!
&()GA)G&@'O8+&@KE)+!&@ )A ? /.5Gn) =+?(? &@DCdFxfcbe& ?@? }8+)G*'8) =+?(? &@DC qJfz%]A = !
) =G?(? &0DC qJfz| 8+&@KBq %qfzz%/

: G*KS4 ? * , ? % ,Y*Ui *~R+O 4_7'V' 7


q
!



 z5,2| q$
!

 GYz
qJYCd&(!5+&(! ? &()+*7 z%/t5+)
%q z| q G  G

 zI,

 
qJbeYC Vz~+&(!S&(!S DbIV D8+&@KE)+!&@ )A ? !#4A*$qv&0aA*!EA*!#&(!a$*)+!&@!#'&@)+N*F
q G  GH  Yz.*)G8&q G G  GHzo*)+8!S) =+?(? &@DC q zo| -/
: G*KS4 ? *, .C T KEKE ]"'7*)+!1FJ 7KE'&@ )&@!m&() #$'&06 &0FI)+8*) ? C&@Fo&@
A*!~) =G?(? &0DCLF G/
: 5+E) =+?@? &0DC*FUf KE*! = 7#!Q+ bK = $Z&()GFJ*7KE'&@ ) qv 7O8+N 7!}*FIFJ7#%
8+ KLz>&(! ?  !#mbe+)*4G4 ? C &()GN"f}/*7m&()+!1Z*)+$*]&() +S* 6*S4G7 #$'&@ )9]
DbIa8+N 7!e*FFJ78+ K *7 ?  !#,x'+RFJ7#8+ Kl6*7#CE'+'
*)+8
 $
 78+&@)A!Q*7 ? *!#QF7}*4+4 ? C&@)+N /" >)&@) #$%'&@6*S7'*)G!#FJ 7#KL&( ) 8G!
)+* ?  !#*)YCa&@)GFJ 7KE&( )BqJ&@F C* = ^)+ bf~u] +)SC  = $*)"7#$*)+!#7 = $%Uuz%/
`a`a`E`a`
M *)+N Q*)G8B7*)+
:  = KLHC[AH6 S)+*'&@$8'AOKE*)YC$ )+$4G!}&@)'+&@!A ? 8!K'$ KE
&()B$ KS4 ? KE)YZ*71Cd4A*&@7!,.!4A)+)+&()GNL!%6*7! = ! ? &()+*7 ? C"&()G8+4_)+8G)YR!#H]
 )+% r'  )+~6 7#! = !5*)^+]G%'$/ )+*+7I! = $Z4A*&@7.&@!I) =+?@? !4+*$m)+8d7'*)GN *]
 75) =+?(? &@DCL*)+8B7'*)+/
:  tJ_ 5G* 5#  aqJfz~F ? &@)+H7~7'*)+!1FJ 7KE&( )f ,Ah i k &(!
8+A)G8[am'GQ!#
aqfzI, '
| f~uE,YuLh  ,
: D)*+7ebI*78+!] aqJfz5&(!~ ?@? '+Q!# = A~fgKE*4+!~&()Y'+, aqJfzI|fnqrh}z%/

q >)FJ 7# = )A ? C*]9'+a!#4A*$Ek &(!O ? !d!*KE%'&(KS!m$ ?(? 8+a7'*)+N**F.fQ


'H6 *&(8d$*)GF = !&@ )"b.Rbe& ?(? '71CE7%FJ7ISk &@)+!#H*8!I'+r 5 %x# "G $Z
FJ 7UfQh &(!U'GS vv* # "G $Z. 7} VS* *FfQ/2z
: *= !#U*!o+) =+?@? !4A*$ %qJfzo&@!I ? bUHC !.}! = +!4A$m*F3ha]&0o$H*)"_~!+ be)
'A aqfzI&(!ea! = +!#4A*$}*Fxk q'+&@!5&(!54A*71e*Ft*)[7$&(!# z%/

: G*KS4 ? !,E F>f,oh i k &@!n'G 7# '7')+!#FJ 7#KLV'&(*)f~uX,2| G]'+)


aqJfz| ^/ F5f ,hi h &@!}'G"&(8+)Y'&@DC7'*)+!1FJ 7KE&( )f~u<,2| u]
'+) aqfRz|hS/ Ffc,Y  i h&@!U'+m7'*)+!1FJ 7KE&( )
fnq  ! ,, , 
*zU, |  ! u ! w ,,, w 
*u
8+&(!#$ = !#!8[H*7 ? &@7] '+) aqfRz|!4A)3q u ! ,,, 'uz/
: G*KS4 ? *, gKE*4dfg,^hi k &(!5 )Y'S&@F*)G8[ ) ? C"&0F aqJfz|k /
:  tJ_ 5+/ 5# 7'*)+qfRzFI ? &()+*7>7'*)+!1FJ 7KE&( )f ,9h i k
&(!58+%A)+8B'a_O+O8+&(KS)G!&(*)d*F aqfz%]G = !>7*)+qJfz|8+&@K[
q aqJfz#z%/
: G*KS4 ? !,>5+ 7d'7*)+!#FJ*7KE'&@ )A*!m7*)+ q*)+8&@)+8+8 '+!S*7
'+O ) ? CL7'*)+!1FJ 7KE&( )+!.be&@'7*)+ Yz/5+O'7')+!#FJ 7#KLV'&(*)
q
!



z5,2| $q
!

 G Yz





8+A)G8*7 ? &(7UA*!e7')+N 
aq z| $q
!

 G YzI,
!

 




qJbeYC Vz]_*)+8!SA*!e7')+dG/
: 5+"7')+KE*! = 7#!Gb K = $Z &()GFJ*7KE'&@ ) qv 7}8+N*7!*F5FJ7#8G K"zm&(!
5Z%r* EYC'+a'7*)+!1FJ 7KE'&@ )f}/A 7O&@)+!#'*)+$]tbe&@+EG*KE4 ? S*F
* 6**]~6 )'+ = N pDbI 8+N 7!d*FOFJ7#8G K + 6*) ? *!#H]5+7
8+N 7#!>*F3FJ78+*K 7KL*&@)9/
`a`a`E`a`
5+Q8+&@KE)+!&@ )"'+ 7K
:<T %xfc, hji k _e ? &@)+H737'*)+!1FJ 7KE&( )9/D)Y = &@'&06  ? C ]*) =G?(? &0DC qJfzKSHV
! = 7#!5+ b KL*)YCL8+N 7#!5*FFJ78+ K *7 ?  !#Ibe+)B*4+4 ? C &()+N}f}G7'*)+qfRz
KE*! = 7#!E+ b KL*)YC 8+N 7!E*FRFJ78+*K 7B7'*&()G89/ \ &@)+$'G&()G&0
'&  ? !4+*$[h 7#&(N &@)A ?(? C A*!8G&(K[qrhzQ8+N 7#!E*FeFJ7#8G K[]+"FJ ?(?  be&()+N
'+ 7K !+ =+? 8B)+*e_m' S! = 74G7&(!#&()+NG/
: Bv 3Hv_l ^ T %Bh +)+&@% D8G&(KS)+!#&( )A ? !#4A*$]R*)G8 ? 

fc, hji k O ? &@)+H*7.'7')+!#FJ 7#KLV'&(*)9/t5+)
) =+?(? &@DC qJfz9w 7'*)G9qfRz|8+&(KBqfRz ,


: 5+E4G7 *FIG7be& ?(? &@)^6* ? 6*S ? *O*F.! =  ? &@)+NA*$Z*)+8FJ 71'%DbI)


h )+8k = !&@)+Naf}+*)+8B&(!~*)&()+!1'7 = $&@6 O+KE4 ? Q*!U'S+ bL*)+ ? C"
? &()GH*7I7'*)G!#FJ 7#KL&( )G!/
:}9  .C}^C 4_*'G!&@!]Y8+&@KBqrhz&(!3A)+&@* ?   !8+A)G ,2| 8+&@KBqrhz/ \ &@)+$
%qJfz&@!md! = +!#4A*$E*FUhS]&0mK = !1Q ? !#dA)G&@' D8+&@KE)+!&@ )A ? ?  s!R$ ?(?
,2|8+&@K[q %qfzz| ) =+?@? &@DC qfRz/x5+)Eb.>AH6*4   / R= 7Z*!#&(!x
!+ b'+ w7*)+qJfz| ] 7o&()E*'G7bI 7#8+!IA.8+&(KBq aqJfzz| % /
: .CR8+%A)+&0'&(*)m*F 8+&(KS)+!#&( ) ]H'+!#4A*$ %qJfzK = !1AH6 o5A*!#&(! u ! ,,, 'u 
*F  ? KS)Y'!/~q 7*A* ? CE&0I+*!IKE*)YCS! = $ZA*!#!]+ = Ub.  = !1U)+8d )G
! = $ZBFJ 7U'+&@!~*7N = KE)^Zz%/5+&@!e!~*F  ? KE)Y'! ? &@!5&(&) %qJfz%]*)G8B = !
&()EhS] *)+8a&@! ? &()GH*7 ? C}&()+8+4)+8+)^  = !.YC4+*7#>qFZzt*F W  7 ?(? 7#CSe*F ? *!#
bI  !)G*'!]&@}K = !1_L4A7#FeA*!#&(!}*F>hS]tbeG&($Z K = !1n+)+ 6*
| 8+&@K[qrhnz~ ? KE)Y'!SqvYC4A*7#aqv$ zF W  7 ?@? *71Cz%/O5 = !mbIaKEHC*8G8
% % 7'} ? KE)^!.u  ! ,,, u O'Q = 7 %qfzD D+*!&@!oQFJ 7#K *)dhR DA!&(!
u ! ,,, u ^/
:X\ &()+$Iu  ! , ,, 'u  ? &(o&()hS]*+U ? KS)Y'!f>u  ! ,,, f~u  ? &@.&@) aqJfz%/
)+ bj$ ? &(K A f~u  ! #f>u a*7nEA!&(!~FJ 7 aqJfz%'+&@!~be& ?(? &(KS4 ? C
'A aqfzIA*!e8+&(KS)G!&(*) ,, , % ]A*!e8+!#&(7#89/
: 6 7&0FC"'AV- f>u  ! ,,, #f>u  }FJ*7K aA*!#&(!]GbIQK = !1e!+ bcA5+C
!4A*
) aqJfza*)+8<Aa'GC<*7 ? &@)+H7 ? C&()+8G4_)+8+)YH/t&@7!# ?  s!S!+ b
'+%Cp!4+*) aqJfz%/g5G&(!"KSH*)G!L'AV"6*71Cp6 $'*7d&() aqfRza&(!d ? &()GH*7
$ KG&()A&( )O*FGf>u  ! ,,, f~u / \  ? % s!4+&@$ZO~DC 4+&@$H ? 6 $'*7  &() aqJfz%
 = 7 # a&(!Q!#+ bXA  &(! ? &@)+H7x$ Kn+&()AV'&(*)*F_f>u  ! ,,, #f>u  / .C
8+A)G&@'&@ )d*F aqJfz%]  K = !#e
 =  ? f>uSFJ 75!*KEmuE&()[hE/
: )B'+}*'G7+*)+89]bIn )GbjA u ! ,,, u !4+*)+!Oha]_ = !bInK = !#
AH6 
u
|  ! u ! w ,,,
w 
*u 
FJ 7!*KE"!#$H ? *7!  ! ,,, / >4+4 ? C&@)+Nfl' _*' !#&(8+!a*)+8 = !&@)+N'G
Fv*$5Aefc&@! ? &()GH*7]b.} Z*&@)
f~u
|  ! f~u ! w ,,, w 
*f~u  ,
0

:<;  bb. = !#o+Fv*$'+3u ! , ,, 'u ? &@x&() %qfRz]!#>f~u ! | ,,, |f~u~| G/
5 = !
f~u|   ! f~u ! w ,,, w 
f~u ,
5 = !  |f~uE&(!e ? &@)+H*7I$ KG&()A&( )L*Ff~u ! , ,, f~uG]+*!e8+!&@78 /
:<;  bgbIn!+ bg'+ f~u  ! , ,, f~u &(! ? &()GH*7 ? Cd&@)+8+4_)G8+)YH/ \= 4+4_ !#
FJ 75$ )Y7'*8+&@$&( )"Ae'+&@!5!%~bI*! ? &@)+H*7 ? CS8+4)+8+)Y]_ = !
  ! f>u  ! w ,,, w Vf~u }7
| 
FJ 7L!# KE[!$ ? *7#!   ! , ,, 
be+&($Zpb.7# )+* ?(? 7+/g5+)^C 'G
? &()GH*7#&@DCE*Ffc*NY*&@)9]b.QAH6 
fnq   ! u  ! w , ,, w *u  z| 
*)+8d' = !~YC8+A)G&@'&@ )d*F) =+?(? !#4A*$
  ! u  ! w ,,,
w 
*u a %qJfz ,
\ &()+$ %qJfzI&@!5!4A*)G)+8[^C u ! , ,, 'u ^]+bIm' = !~AH6 
   ! u   ! w ,,,
w 
 u Q
|  ! u ! w ,,,  u 
FJ 75! KSm!$ ? 7!  ! ,,,  */xO$H*)B7*77*)+N m'G&(!e*!
% ! u ! %
%  
u o
w   ! u  ! w ,,, w u }|  ,
, ,,
 = +!#2 u ! ,,, 'u S&@! ? &()+*7 ? C&()+8+4)+8+)^] be+&@$Z KE*)+!Am ?(?
'+ s!K = !#n+) _ 7#+/  = n'+$ )Y'7'8+&($%'!n = 7nYC 4'+!&(!}'A
)+*. ?(? *F +   ! ,, , 
mb.7 7+/t5 = ! f~u   ! ,, , f~u >K = !1.+ 6*
) ? &()GH*7 ? CE&()+8+4)+8+)^]_*)+8dbI}*7#m8+ )+/

a/
:  AJLT efg,* i 8+)G*'m'G ? &()+*7I7'*)+!1FJ 7KE&( )
f$q
zI, | $q
w Z-
nwX- z ,
5+O) =G?(? !4+*$O*F3'+&@!5'7')+!#FJ 7#KLV'&(*)"&(!
%qfRz|  q
zI ,
aw | 


Jq beYC Vz_+&(!5&@!~ ? &()+m&@)B ]_*)+8' = !~A*!~8+&(KS)+!#&( )EqJFJ*7~&@)+!#'*)+$*]&@


A*!- q1 %}z !eSA!&(!'z%/5+Q7')+N m*F3'+&@!U'7*)+!#FJ*7KE'&@ )d&(!
aqJfz'
| qJZ-V#zI, I & 
qJbeYC Vz_+&(!~&(!~*)G*'+7 ? &()+m&@)[ *)G8A*!~8+&@KE)+!&@ ) / \ &@)+$Sw|O-]
'+QPR&(KS)G!&(*)L'+ 7K &(!U6*7&0A8B&()d+&(!5$*!/
:  AJ *7>'G 7"7'*)+!1FJ 7KE&( )3f
,2| G]_bI+ 6*) =+?(? &@DC qJfz5|
8+&(KBq z.*)G8"7'*)G9qfRz7
| dqv!# ?@? +R8+N 7!UFFJ78+ K *7# ? *!#zbe+& ? 
FJ 7}+"&(8G)Y'&0DC7'*)+!1FJ 7KE&( )3f
,2|
b.dAH6 d) =+?@? &@DC qfRzn|  *)G8
7'*)+qfRz|8+&(K[q zIqv!#Q ?(? '+58GN 7#!F_FJ7#8+ K 7U7#Z&()+8z%/D)S_*
$H*!#!ebIO!QA5+QPR&(KS)+!#&( )"+ 7#K &@!U6 7&@+89/
: )Gd&(KS4 71Z*)Y = !d*F~'GPR&(KS)+!#&( )'+ 7K &(!nA&0a ?@?  be! = !
8+&(!#$ 6 7.Fv*$%'!U = .+>7*)+N ~*F9f  = !#IFJ7# K^)+ be&()+NQ'+>) =+?(? !4+*$>*F
f}]+*)+86&@$m6 7!G/o*75&()+!1Z*)+$*,
:  AJLT efg,   qv"zi  VqvzI8G)+*Q+O8+& 7#)Y'&('&@ )"KE*4
f, |c y
' = !FJ 7&()+!1Z*)+$ofn$q
 w-
zo| 
w- /5+o) =+?(? !#4A*$o*Ff $ )G!&(!1'!3*FA ?(?
4 ? C )+ KS&  ? !d&()   qJztFJ 7be+&($Z"_yG| G &r/s*/t+e$ )G!#Z)^I4 ? C )+ KS&  ? !
%qfzo| VR,YR R|  qvz ,
5 = ! %qJfzA*!O8+&@KE)+!&@ )[qv&0mA*2! ^ L!O+*!&@!Zz%/ \ &()+$   qJz>A!
8+&(KS)+!#&( /) ]GbIm = !~!#mFJ7*Kl'Gm8+&(KS)+!#&( )"+*7Kl'A aqfzIK = !#
AH6 L8G&(KS)+!#&( )
/  =  aqJfzm&(!}[! = +!4A$"*)F  VqJz%]t*)+8  qv"zOA!
8+&(KS)+!#&( )
/t5 = ! aqfz3K = !1 =  ?  ?@? -F  qv"z%/D)*'+7tb. 78+!]Y6*7#C
4 ? C )+ KS&  ? *F8+N 7QUKS !# &(!I+m8+7#&@6&@6 *F! KSR4_ ? C )+*KE&( ? *F
8+N 7#VRKS !#m
/aqv5G&(!&@!*F$ = 7#!*!#C['"$Z+$ZYC&@)Y'N*7'&( )9] = 
'+*KL &()GNQFv*$%IbI*!IAIb.R$ =+? 8E8+8 = $R+&(!oFv*$.4 = 7# ? CSFJ7*K ? &()GH*7
 ? N +7'} = !&()GNE ) ? Cd6*7#C!#KL ?(? KE = )^eFt$ ? $ =+?(= !'z%/
: >7#O&(!e*)+'+7~G*KE4 ? *,
:  T dh *)G8k BA)+&@% 8+&(KS)+!#&( )+ ? 6 $'*7L!4+*$!d*FR'G
!'*KSn8+&@KE)+!&@ ) qJ8+&(K[qhnze|8+&@K[qrkjzz] *)G8 ? ~f,h i k _ ? &()GH*7
'7')+!#FJ 7#KLV'&(*)"FJ7 K h "k /o5+)Bfg&(!5 )G%  D*)+O&@Ft*)+8B ) ? CL&@F3fg&(!
 )Y'+/






:}9 F3f&@!5 )+% r'  )+]'G)) =+?(? &@DC qJfz| G]be+&($ZYC"'Gm8+&(KS)+!#&( )


'+ 7K &(KS4 ? &@!'AVe7'*)+qfRz|8+&(K[qrh}z%/ \ &@)+$m8G&(K[qrh}zo|8+&(K[qkz]Gb.
' = !AH6*"8+&(K aqJfz}| 8G&(K[qrkjz%/  =  aqJfzm&(!}! = G!4A*$d*F~k ]t = !
aqJfza| k]&/ /f &@! )Y'+/5+76*7#!B&(KS4 ? &@$H&( )'+) FJ ?(?  be!YC
76*7#!&()GNa+m*_ 6 m!1'4G!nqbI ? HH6 R*!e*)d%7$&@!R6 7#&@FCS'AVe ?(? 'G
!#'4+!>*7m&@)+8+8[7#6*7!#&( ?  z/

: 7$&@!,o7#% &()Y'74+7# W *7 ?@? *71C^qv8+HzFJ7# K ? *!1Ib. s!e)+*'! = !#&()+Nn+&(!


T KEKEG]G*)+8'+ ? &@)+H7I'7*)+!#FJ*7KE'&@ )
fnq  ! ,, , 
*zU,
|  ! u ! w ,,,
w 
*u 
8+&(!#$ = !#!8[H*7 ? &@7/
T &()GH*7U7'*)+!1FJ 7KE&( )+!U*)+8BA*!!
:<T %f ,.h i k  ? &@)+H7n'7*)+!#FJ*7KE'&@ )9]*)+8 ?  u ! ,,, 'u [
$ ?(? $&( ) *FR6*$ 7!L&()XhE/5+) f~u ! f~u   &@!"$ ?@? $%'&@ ) *F
6 $%' 7#!>&@)Bk /xO)+ bc!1 = 8Cd+ bc!#&(KS& ? 7o+,,!#, QDb.E$ ?(? $%'&(*)+!5*7#*GFJ 7
&()+!1Z*)+$*]&@F )+&(!U}A*!&@!]+8G!I'+&@!IKSH*)E'+R'+7U )+R&@!5 ? !+*!&@! 
: Ffc, hji k &(!U ? &()GH*7'7*)+!1FJ 7KE'&@ )9] *)+.8 u ! ,,, u 
!4A*)G!hS]+'+) f~u ! ,,, f~u  n!4A*)G! aqfz%/
:}9 / T   E*)YC 6 $'*7}&@) aqfRzt = 7 #*&@!O[!#+ b '+  &@!Q
? &()GH*7x$ K+&@)A&( )a*F_f~u ! , ,, f~u  /  = .YCa8+A)G&@'&@ )a*F aqfz%]  |f~u
FJ 7>!# KSnuhS/ \ &()+$ u ! ,,, 'u a!#4A*)+!mhE]_b.n = !RAH6 uL|  ! u ! w
w 
 u [FJ 7Q!*KEE!$H ? *7#2!  ! ,, , 
/[ >4+4 ? C &@)+N[f '*!#&(8+!]xb.
 ,,G, Z&()f~u|  ! f~u ! w ,,,
w 
Vf~u /5 = !bIL$H*)be7#&@'  | f>u*!

? &()GH*7U$ K+&@)A&( )"Ff~u ! ,,, f~u ]*!58+!&@78 /


: Ffj,+h i k &@! ? &@)+H*7U7'*)G!#FJ 7#KL&( )"beG&($Z&@!~*)+% r'
 )+*]o*)G8 u ! ,, , 'u  &@! ? &@)+H*7 ? C&()G8+4_)+8G)YH]o'+) f~u ! ,, , f~u B&(!
 ? !# ? &()GH*7 ? CE&()+8+4)+8+)^/
:}9_\= 4G4 !#bI$H)Obe7#&@  e*! ? &@)+H*7$ Kn+&()AV'&(*)R*F f~u ! ,,, #f>u ^,
n|  ! f~u ! w
w 
f~u  ,

,,,




m= 7 # <&(!E!Gb AL+  ! , ,, K = !1d ?@? #7#+/ ~!&()GN'G


? &()GH*7#&@DCE*FfQ]Gb.Q GZ&()
Q|fnq ! u ! w
w 
 uYz ,
,,,
\ &()+$mfc&(!5*)+% r'  )+*] %qJfz| ^]A*)+8' = !
}|  ! u ! w
w 
*u ,

,,,
 = !&@)+$ u ! , ,, 'u .&@! ? &@)+H*7 ? Ce&@)+8+4_)G8+)YH]V'+&@!9KSH*)+!9A  ! , ,, 

*7O ?@? 7+]!~8G!&@789/

: _J+  F fc, hji k &(!9_*m )+% r'  )+)+8O )Y'+]V*)+8 u ! ,, , 'u 
&(!REA*!&@!>FJ 7RhE]+) f~u ! f~u a&@!RLA!&(!>FJ 7mk /aqJD)4A*71'&($ =+? 7]
bIO!QAe8+&@K[qrhz| 8G&(KBqrkj,,z#, z%/
:}9O\ &@)+$& u ! ,,, 'u &(!}A!&(!QFJ 7nhE]x&@}!4+*)+!aha.)+8+)+$]oYC
5+ 7#Kg] f~u ! ,, , f~u .!4+*)+! aqJfz%/  =  aqfz|ck !#&()+$f&@! )Y'+/
; % ] !#&()+$- u ! , ,, u R&@! ? &()GH*7 ? CQ&()+8G4_)+8+)YU*)G8afp&(! )+  D )G*] b.
!FJ7# K 5G 7#K '+2 f~u ! ,,, f~u S&(!O ? ! ? &@)+H7 ? C&@)+8+4)+8+)Y/
W  K+&@)+&()+N+!#QFv$'!Ub.Q!O'+- f~u ! ,,, #f>u n&@!ea+*!&@!eFJ*7~k /

: 5+$ )Y6*7!#I&@! ? !#U'7 = *,&0F f, hji k &(!9 )G%  D*)+*]*)G8 f~u ! ,, , f~u 
&(!5A*!#&(!]+'+
) u ! ,, , 'u  n&@!e ? !#aa+*!&@!Gb. ? HH6 R+&(!e!e*)%7#$&(!#
qv&@  !U6*71C!&(KS& ? *7''+O4+7#6 &( = !~*7N = KE)^!Zz/
:  AJ 5+QKE*4dfc,   qvzi  8+A)G8YC
fnq 
t
w 
w 1

w  zI,2| q A  Z  z
&(!_*'S )+ 'V D )+e)+8a )Y'LqJbeYC Vz]G)+8E&@! ? !# ? &()G H*7eqbeYC z/5 = !.b.
$H*)$ )Y6 7#O6*71C A*!#&(!F   qJzedLA*!#&(!>*F *)G86&@$Q6 7#!'G/QA 7
&()+!1Z*)+$*]^'+>!#'*)+8A*7#8"A*!#&(! ^


 m*F  qvz$H)"~$*)^6*71'8d
'+QA*!#&(! q G  GHzq  GH  Yz%&q GH  G Yzq * G  Yz >*F  /5D)4+7#&()+$&0
4 ? ]'G&(!R ?(?  be!> )+n"$  )Y6*7#QKE*)YCB4+7  ? KS!R = R'+}6 $%' 7m!#4A*$
 qJzx&()Y'O )+>*_ =  ] *76 &@$e6 7#!'G/~qJ5+eFJ 7KE ? bIHCa*F9! C &@)+NQ+&(!
&(!U '+   qJdz5*)+8  *7( VL 5 "A $%+KS 7#m*_ = 5'G&(! ? 7'z%/
`a`a`E`a`
~!&()GNEaA*!#&(!UE!#4$&@FCd ? &()+*7I7'*)+!1FJ 7KE&( )
*


: D)'+&@!!$'&@ )b.d8+&(!#$ = !#! )+"*Fe+LF = )+8+*KE)YZ ? 7H! )+!beYC +*!!


*7Q&(KS4*7#Z)^A )+}$H*) = !Q'+K L8+!$7&(_ ? &()GH*75'7*)+!1FJ 7KE'&@ )+!e&()
a$ KS4A*$5bIHC /
: D)[N )+7 ? ]'S!4_$&0FCF = )+$%'&(*), i E]A*)+O)+8+!~E8G!$7&@m'G
6* ?(= at q
z>FJ 7m%6 71C4*&()Y'
&() FJ 7R&@)+!#'*)+$]&@FI<, ^*-ZG 
i
]t+)*)+E)G8G!n'!#4$&0FCtq1z]xxq- z%]xxq z%]txq z]xq
zm&() 78+7}
$ KS4 ? %' ? CO8+!$7#&(_.+.F = )G$'&@ )9/5 = !] be+) N %'! ? *7N ]V+UKE = )^
*Fo8AZd)+8+8d!4_$&@FCLF = )G$'&@ ) $H)N % = &@ ? *7#N *9FJ*7R&()+!1Z*)G$*]
' !4_$&@FC F = )+$%'&(*) ,O i  ] )+)+8+!' !4_$&@FC 6 $'*7
x q
z  FJ 7E6*7#CX!&@)+N ? B4_ &()Y
&@)X a*)+8<'+7 *7#&@)GA)+&0' ? C
KL*)YCE! = $Z4_ &()Y! x5+m7#KE*7V* ? >+&()GN+] + = N*9]G&@!.'+5&@FB&(!  5]
'+) *)+8+!)+*a)+8 ' !#4$&@FC pa6*7#C !#&()+N ? "4_ &()Yn m )+  = !1
)+8+!'!#4$&0FC < ) [A*!&@!*)+8'+&@!nbe& ?@? 8G'7KS&()+E'+"7#!1*F5'G
F = )+$&( ) /
: 
QT %hXUA)G&@' D8+&@KE)+!&@ )A ? 6*$ 7!4A$*]*)+8 ?  u ! ,, , 'u
>Q+*!&@!oFJ 7.hE/ T %5k _>*)+*+76 $'*7I!4+*$]G*)G8 ? % 4! ,,,  Q
! KSI6 $ 7!&@)ak /t5+)a+7#5%&(!1'!xG*$ ? C} )+ ? &@)+H737'*)+!1FJ 7KE&( )
fc, hji k ! = $ZB'A5f~u 5|  eFJ 75H*$Z |*- ,, ,  /
:}9 S)+8'B!+ b Db.B+&()GN !,mA7#!# ? C ]'+O'+7a%&(!1'!} ? &()GH*7
'7')+!#FJ 7#KLV'&(*)"fcbe&@B+}8G!&@784+7# 47#&(!]_*)+8B!$ )+8 ? C'Ae+7#
&(!eeKS !#e*)+O! = $ZB'7')+!#FJ 7#KLV'&(*)9/
:<T % s!"A7!1d!Gb 'AVL'G7 &@!ddKS !1" )+7'*)G!#FJ 7#KL&( ) / \= 4+4_ !#
FJ 7$ )Y'7'8+&($%'&(*)'AVRbIaA8DbI8+&  7)Y ? &()+*7>7'*)G!#FJ 7#KL&( )G!~f ,
hli k *)G

8 , h i k ! = $ZARf~u O|  n)+

8 >u Q|  mFJ 7R*$Z


| 
t/ ;  b Z*})^Cd6*$%' 7eu"ha]*)+8B$ )G!&(8G75f~u"*)+
8 >u/
,,,
:X\ &()+$ u ! ,,, u n&@!eA*!&@!e*Fha]+bIQAH6 } = )+& = Q7#4+7#!#)YZ&( )
u
|  ! u ! w  u w ,, ,
w 
*u 
be+7#  ! , ,, 
a7O!$ ? *7#!/5 = !]!#&()+$Of&(! ? &()+*7
f~u|  ! f~u ! w  f>u w ,, ,
w 
Vf>u 
 = ~!&@)+$mf~u U|  ]GbIQAH6 
f~u|  ! 4! w   w ,,, w 
   ,
 -

7N = &()+N!#&(KS& ? *7 ? Cbe&@' &@)+!#H*8*F3fQ]+bIOAH6 


>ua
|  !4!
w   w ,,,
w 
   ,
!"&@)4A*71'&@$ =+? *7~f~uL| >udFJ 7R ?(? 6 $'*7!Ru/5 = !Rf)+8
*7}%G*$ ? C
'+R!*KS ? &@)+H*7o'7*)+!#FJ*7KE'&@ )9] $ )Y7'*8+&@$&( )9/t5 = !U'+7m&(!UUKS !#
 )+ ? &@)+H*7.'7')+!#FJ 7#KLV'&(*)9/
:<;  bpb.)+8En!#+ bp'AV.+7#>&@!.V ? H*!1.*)+ ? &()+*7x'7*)+!1FJ 7KE'&@ )f
FJ 7.be+&@$Z"f~u 5|   /8G'+&@!]^bIm)+8"!4_$&@FCSf>uFJ 7o6*71C"6 $'*7
u hE] *)+8+)6*7#&@FCB'A>f&(! ? &()+*7/~ ?(? ]N = &(8+8YC = 74+7#6 &( = !
*7N = KE)^!]bI}^)+ b GbgEA)G8f~u_,obI}A7!1R8+$ KS4*!nu! ? &()GH*7
$ KG&()A&( )L*Ftu ! ,, , 'u 
u
|  ! u ! w ,,,
w 
*u 
*)+8d'+) of~uLYCd'GOFJ*7K =+? *_ 6 *,
f~uL,2|  ! 4! w ,,,
w 
   ,
5+&(! &@!XbI ?(? 8++)+8$ )G!#'7 = $&( ) ]!&@)+$+ !$H ? *7#!  ! ,,, 
*7
= )+& =  qv!"'+ T KEKE ) 4+*N d [*F5bIpd)G*'!Zz%/3 $Z+$Z'A
f>u 5|  V]+)G*'m'+
u e| u ! w
w u  , ! wHu w *u   ! w ,,, 
w *u 
,, ,
*)+8d' = !~YC8+A)G&@'&@ )d*F3f
f~u 5|  4! w , ,, w    , ! w  xw u   ! w ,,, w   }|  
*!e8+!#&(789/
: I7#KE*&()+!'Q6 7&@FCaAIf&@! ? &()+*7^&/ /t'AV.fnqvuIw u^y z|f~u.w f~uYyA*)G8
'A5fnqv%uz|Zf~uEFJ 7e ?@? 6*$ 7!~u'uYyh*)+8!$ ? *7#!~V/
:   ?@?  = !#~6 7&@FCdAefnqvuRw<uYy{zo| f>uRw f~uYy ]*)+8 ?  6*Qfnqv%uzo|cf~ud*!
*)%7#$&(!#*/.t&0d*)YCdu'uYyhE/xO$H*)B8+$ KS4 !#
u
|  ! u ! w ,,,
w 
*u 
H

*)+8

u y |  ! u ! w ,,, w   u
FJ 75! KSm!$ ? 7!  ! ,,, 
G  ! ,,,  +/5 = !]YC8+%A)+&@&( )dFfQ]
f~u|  ! 4! w ,,, w 
  
*)+8
f~u y |  ! 4! w ,,, w    
*)+8d' = !
f~umw f~u y | q  ! w  ! z 4! w ,,, wq 
~w  ^z   ,
 )d+O*'+7eA*)+89]8+8+&()GNS = 7574+7!)Y''&@ )+!~*FtuL*)+8BuYy_b.OAH6 
uRw u y | q  ! 
w  ! z u ! w , ,, wq 
~
w  ^z u 
*)+8d' = !~YCd'+O8+%A)+&@&( )dFfc*NY*&@)
fqJumw u y z| q  ! 
w  ! z 4! w ,,, w q 
>
w   z  
*)+8L!#nfnqvu.w u y z|f~u.w f~u y *!I8+!&@78 /5+8+7&06*V'&(*)E*F fqv%uz|f~u
&(!U!#&(KS& ? 7*)+8&(! ? FU*!5*)dG7$&(!/.5G&(!U$ KE4 ? !I+m$*)+!#7 = $%'&(*)d*F
fg*)+8'GO6*7#&@A$'&@ )*F+O8+!#&(7#8B4+7 4_71'&@!/

: G*KS4 ? *,a"^)+ bl'A A*! q   Yzq Hz d*!A*!#&(!/5 = !].YC


5+ 7#K G]YFJ 7)^C6*$%' 7o!4A$k *)+8E*)YC6 $ 7! 4! ]  &@)Ek]Y+7#
&(!Q%G*$ ? C )+ ? &()GH*7m'7*)+!1FJ 7K f , i k ! = $ZAnfnq   YzQ| 4!
*)+8dfnq GH z|  /D)+8+89]A+&(!5'7*)+!1FJ 7KE'&@ )"&@!5N &@6*)B^C
fn q
z.,27
|
4! w 
qJbeYC&@!n'+&@!}7'*)+!1FJ 7KE&( ) ? &()GH*7]*)+8beYC8G!&@}AH6 d'+L8+!#&(78
4+7 4_71'&@! z/
: G*KS4 ? *, T  _*) *)+N ? */ \ = 4+4_ ! b.bI*)Y' = )+8+7!1Z*)+8'G
 47'&( )  ~,Y i Fx*)Y&0 D$ ?  $ZYbe&(!7*''&@ )"*F3 YC /7# K
 ? KE)YZ*71CN  KE%'71C )+$*)!aAm+&(!R&@!O ? &@)+H*7>'7')+!#FJ 7#KLV'&(*)9/
.Cn!# KSU ? KS)YZ*71C}7&@N  )+ KS7#Cmb.5!U'A  q   Yz| qv$ ! '!#&() z
*)+8   q Gz5| q %!#&() '$ ! z%/O5 = !RFJ7*K +4+7#6 &( = !R%G*KS4 ? ] b.
!O'+
   q
z|
qv$*! '!&@) zw q %!&@) '$ ! z
,


`a`a`E`a`

W   78G&()AmA*!#!
: F ?@? +R6 $ 7e!4A*$!]_  &(!.'+m*!&@!#5bI*7Ebe&0'9G6 7#C"6*$%' 7eu
$ )+!#&(!1'!o*F)+*+&()GN}KS 75A*) B!4A*7'>!$H ? *7#! 3'G 1$ZV 5* *DZt*F
'+6*$ 7/ $'*7!mFJ7 K *+7m6 $ 7O!4A*$!m e4_ ? C )+ KS&  ? !]_KE'7#&($!]
'$/U U!#K 'E}KE*7Q$ KS4 ? &@$H8d'SbI*7be&@' /e*7# = )A' ? C*]_YC = !1
&()+N $ZV 5#* *  ZV Z%]Y )G>$*)L $ )Y6 71U%6 71CqJA)+&0' D8+&@KE)+!&@ )A ? z36 $'*7
!4A*$O&()Y'Sa!4A*$  = !# ? &@*m /
:  tJ_ [T ah _LA)+&@E8G&(KS)+!#&( )A ? 6 $'*7n!4+*$/B >) 5# 6 5'
ZV%(IFxh &@!e*) 5# 6 5'm!# = )+$"qvu ! ,,, 'u YzI*F6*$ 7!e&@)Bh! = $Z'A
'+O!% u ! , ,, u n&@!~a+*!&@!/
:  AJ 5+!# = )G$Bqq   G Yz%&q GH  Yz%&q G Gzz&(!>*) 7#8+7#8 A!&(!
*FQ  m'+ !# = )+$Xq&q GH   z%q   G  z%&q G GH zzn&(!"8+& 7#)Y 78G78
A*!&@!O*FU  /qJ5 = !n!
 = )+$!7S8+& 7#)YOFJ7 K!#!x7#H*7#7'*)+N*&()+Nd'G
 ? KE)Y'!e*Fta!#~8+ !e)+*> $%e'+O!%z/
: [ 7oN )+7 ?(? C ]&@F bIb. 7m&@)}  ]**)+8ObI ? %  x_'+6 $ 7be&0'  .$
 78+&@)AUo*)+8Q ?(? *'G7$  78G&()A! ]+)O'G! = )+$R
q  !  ,,,  Yz
&(!R)  78+78+*!&@!R*Fo ]*)+8 &@!R^)+ be)* !'GL% Y 5# 5 6 5' ZV%(
FJ 7m /aD)!&@KE& ? *7~!4G&(7&0H]q 

,,,
z&@!m )Gbe)*!R'Gd%r Y 5#
5 6 5' ZV%(.FJ 37  AqJdz%/
ZV Z%mb.!#A ?@? *F') N*&@6 
: 7#8+7#8A*!#![*7 ? ! $H ?@? 8 $ZV 5* *D
A*!!n)AKE!}! = $Z *! /"5+L7#H*!# )beYCb.L)+8 7#8+7#8A*!!n&@!}!#
'ALbI $*)7FJ7L'+ 5'%A!&(!E6 $%' 7]Q $Z A!&(!E6 $%' 7]%'$*/
qvD)p!%H]Ibe+&@$Zp&(! = )G 78+789]5 )+B$H*)G)+*E7FJ7E+B+7!#L ? KS)YH]
!$ )+8[ ? KE)YH]+%'$*/x +C7Q ?(?  = K ? 8d'*N +7~*)+8B*7#  = !#e4 ? *&()
 ? KE)Y'!Zz/
:<T % | qvu ! ,,, 'u  zo*)d 78G78dA*!#&(!.FJ*75hE]G*)+8 ? Uua_m}6*$ 75&()
hS/.7# K + T KEKE )B4A*N Q *F Q)+*'!]Ab.}^)+ bcA~uLA!
 = )+& = O74+7!)^''&@ )B*Ft+mFJ 7K
ua|  ! u ! w ,,, w 
*u  ,


5+!$ ? 7!  ! ,,, Sbe& ?@? }7FJ77#8'"*!>+.$ZV 5#* * Za u


5ZZ# "A $%mD ]o*)+8b.8++)+d'+ $ZV 5#* *D"* $%D 5[ u5Z 0*v*dD ]
8+)+'
8  u]A^C

 ! 
 u  ,2| //  ,



vq D)L+>% '_*_] u  &@! = !#8d&@)+!#H*8"F u  /x_ ? &(%6 >+&(!.&(!.nKS&(!#'**


t+7#&(!.}$ )Y6 )^&( )"A.! = 4_7#!$7&(4'!U!#+ =+? 8"7%FJ7.n$ ?(= KS)a6 $%' 7#!
*)+8O! = G!$7#&(4G!3e7 b6*$%' 7#!  ? '+ = N R'G&(!8+&@!#'&@)+$&( )&(!*F$ = 7!6*7#C
KE&@)+ 7/5+&@!x$*)^6*)Y'&@ )_$*KE!t6 7#C = !F =G? &()4G^C !#&($!]Y!#4$&  ?(? CObe+)
 )+n_N*&()+!"!# = 8GC 5'5 5LN )G7' ? & '&@ )B*F6 $'*7!O*)+8 KE7&($!
 = nFJ 7m+&(!Q$ = 7!]x4 ? H*!#E8+*) sQb. 771CBK = $Z* = Obe++7)
&()+8+!G =+? 8_Qa! = +!#$7&@4G> 75! = 4_7#!$7&(4H/2z
:  AJ"T   !ebI*7d&()  ])+8 ? eud,2|qG 
z/ F &@!e+O!#'*)+8A*7#8
 78+78[A!&(! , | q#q1  G Yzq G  Yzq G GHz#z%]*+)

 u   | 

!&()G$
qG 
zx|+q1   Yz w q H  Yz wX
+&q G GH z ,
 )m+*'G7A*)G89]&@FYb. = !'+*78+78QA*!#&(! y_,2| q&q GH  Yz%q   G Yz%&q GGzz]
'+)

 u   |  

!&()G$
qG 
zx| q GH* Yz w Aq1* G Yz wX
+&q G GH z ,
Ft&@)+!#H*8bI = !#Q+OA*!#&(! y y, | qq 
zq H  Yzq  GHz#z%] +)

 u    |  




!&()G$

q G 
zx| YqG 
z wAqH Yz w Aq&GGH z ,
*7.KS 7>N )G7' ? A!!]+ )+~bI =+? 8"4G7 A ? CSAH6 Rn8+n! KS  = !#!& )
 ? &@KE&@)A&( )nbI*7L = U+$ ? CEbe+U'GR$  78G&()A~6*$%' 75&@!mqv!#&(KS& ? *7
'beAeb.}8+&@8&()"  z%/
)  qv"z%]9)+8 ? %O |
w
Sw G/ F  &(!
:  AJ;  b ?   !~bI*7B&(#
'+O!#'*)+8A78B 78+78[A!&(! , | q 

z%]G+)

!&()G$


s   | 


 | .w 
w<
,
7 = !&()GNa+O7%6 7#!}!#Z)+8A*7#8[ 7#8+7#8BA*!#&(!  y , | q$

Hz]Gb.}AH6*

s    | 


!&()G$

|.
tw 
w ,


; *x'Abe+& ?   *)+8  *7#o$ ? *7 ? C8+& 7)^3$ ?(= KS)R6 $ 7!]


'+%C*$H*KSmFJ7 K '+Q!'*KSm  #$R/  s! ? &(m+ bc )+O4_7#! )[KLHC
47$&@6*d4_ ? E*!n_&@)+N -FJ% ? *)+N*)G8 *)+*+7}KLHC4_7$&06 "&0*!
&()+N CY*7#8+! ? *)+N+_*' 7"$ 77#$]6*) '+ = N p-B&(!n)G*
=  ? 
/m  s!  = !1R'AVm )+4_7#! ) &@! = !#&()+NLFJO!OLA*!#&(!FJ 7 ? )+N*'*)+8'G
*'+7m&(! = !#&()+N"C *78G!n*!OdA!&(!RFJ*7 ? )+N*' /
q ~)+&@!m*FoKE*! = 7#KS)Y}*7
'!$ ? *7#!O*!OA*!#!}*76*$%' 7#!/SB4_8+*)Y'&($]'+a!4+*$Lh *FU ?(?
4 !#!&@ ?  ? )GN*'+!E&(!L )+ D8+&@KE)+!&@ )A ? 6 $ 7d!4A$*]~*)G8*jq   z
*)+8q  #zO*7SA*!#!/[ ? )+N*'u KE&@N YQS =  ? ' C *78+!]x!['A
 u 

| q z]Gbe+& ? O ? !#&()+Na
 =  ? '-nFJ%H]A!  u  | - z/
0

: 0& 6 )*)YCp6*$%' 7up)+8*)YC 78G78 +*!&@! o]eb.$*)$ )+!1'7 = $'G


$  78+&@)A6 $'*7  u / W  )Y6 7! ? C*]N &06 )B+O$  78+&@)A6 $'*7

 u  | // 


!

* )+8+L 7#8+7#8+*!&@!  | qvu ! ,, , 'u*z%]x )GL$H)7$ )G!#'7 = $uYC'G


FJ 7K =G? 
ua|  ! u ! w ,,, w 
*u ,
5 = !]+FJ 7I*)YCLG8A!&(!]G )GR$H*)N nA*$Z")+8"FJ 7#d%DbI)6 $'*7!5u
*)+8$ ?@= KS)6*$%' 7#!  u  be&0'+ = ~*)YCd8+& $ =+? DC*/
5 = !]'+ = !"Fe$  78+&@)AE6 $ 7!N &06 ! = !a[bIHC 74+7!)YS*)YC
6 $%' 7E*!EFvKE& ? & 7}$ ?(= KS) 6 $%' 7]U4+7#6 &@8+8 'Aab.! = 4+4 ? C A!&(!
o/Q5+S*_ 6 %G*KS4 ? !m!Gb 'AVR'+$ZG &($*FI+*!&@! <&@!m&(KS4*7#Z)^
8+& 7#)Y~A*!!eN &@6*Q8G& 7)Y>$ D*78+&@)A'>6 $%' 7#!/
4G+& ?  ! 4G+&($ ? 4_ &()YH,5+&(! A&(+& ? &@DCn&()S$Z+  !&@)+N}+*!! = )+8G7 ? &(!.OAV
!&($QFv*$R*_ = +!1Z*)+8+*78 W *71'!& )N 7&@8!1'7 = $ = 7*]9be&0'&0'3!
*)+8
V!]%'$,E&0n&@!n*71'&0A$&( ? qJ+ = N**Fe$ = 7!#L6 7#C$ )Y6 )+&()^FJ*7n$*Ka
4 = ZV'&(*)+!Zz/Q5GS4 ? *)+n &(!mL6*71C )A = 7' ?   #$%H] = O = 7 W *71'!& )
N 7&@8&(!})+*Bq'+d)+$&@)Y 7# !b.7#"bI*7^&()+Nbe&0'+"4 ? *)+L+*$Z&()
    W ]t = PR!$*7#!*) ? C&()Y7 8 = $8'+LN 7&@8&()'+[ 0  *!'z%/YC
$ =+? 8+)  b.KE**] FJ 7&@)+!#'*)+$*]+
+ DV&(!4_ &@)^)+ 71'YbI!#Q*)G8'+
V&(!O4*&()YO)+ 71'+*!# j5+&@!mbI =G? 8$ 7#7!#4*)+88+& 7#)YQA*!#&(!EqJFJ 7
&()+!1Z*)+$*] = !&@)+Nqq1*Hz% q1  %Qz#z&()+!1'H8*Fmqq   Yzq Gzz = }*)+E$ =+? 8
!#'& ?(? 8+L ?(? FtN  KS'71C ]+$ ? $ =+?(= !]A$*/4_7#FJ$ ? C"b. ?@? be&@B+&(!5N 7#&(89/
qv5+QbUHC[KL+KE&($&(*)+!58+!$7&(_n+&(!~&(!,I'+}4 ? )+n&@! $ $* ]A = 
'+ W 7#'!&(*) $  78G&()AL!1C!1'K &(! $ $* / W *)+ )G&($H ? KSH*)+!
'A+7#&(!B )A = 7' ? bI C<8+%A)+'+&@![  #$ = )+& =  ? C ]Rbe&@+ = 
7$ = 7#!O'S*)YC*71'&@+$&  ? $*)^6*)Y'&@ )9/2z
!}b."be& ?@? ! ? 7]&@}8+ !KE**E!)+!d%6 71C)+ bl*)+8'+)'!#+&@F
 )+* s!e$  78G&()Am!#C !#K S! = &@5+O!&0 = &( )L FJ*75&()+!1Z*)+$*]++Q* 6*
A*!&@!~qq  Hzq1 %}z#z3KS&(N Yt = !#F =+? &@)8+H ? &()GNRbe&@'!#A*4_!be+&@$Zab.7#


 ? bIHC!
S8GN 7#)+N ? !~E+n+*7&  )YZ ? qJ&r/s*/58+&(*KS )+8 !A*4_8B 
#$!Zz/ = R&()'GKL#*7&@DCB*Fo$*!!]'+!1Z*)G8A*78A!&(!! = $!]3&@FFJ 7
)+a7H! )B*'G75'A)B7'*8+&0'&@ )9/
: 5+U6 7#C*47'&( )F!)G8+&()+NQ>6*$%' 7uO'm &0'!t$ D*78+&@)A'o6 $'*7  uR&(!
&@'!# ? F_ ? &()+*77'*)G!#FJ 7#KL&( ) ]FJ7*K h Q ,!e+&(!bI  !o+ KSb. 7#_/
`a`a`E`a`
5+QKE'7#&0L74G7!#)YZV'&(*)[*F ? &@)+H7I'7*)+!#FJ*7KE'&@ )+!
: U+ 6*  = !#x!)SAt^C = !&@)+NO*)*78+78aA!&(!t*FhE]*b.5$H*)7#4+7#!#)Y
6 $%' 7#!.&@)Eh*!$ ?(= KS)6 $'*7!/ ;  bpbI~!GbX'AoYC = !#&()+NQ*)S 78G78
A*!&@!a*FOh *)+8X*)+*+7a 7#8+7#8X+*!&@!E*Fmk ].b.[$*)X7#4+7#!)Y  5
 5# 5S*r oFJ7# K h 'Ek
*!OS* 5 $ZZ%/x5+&@!e&(!e6 7#CdF = )+8+*KE)YZ ?
 +!7#6&( )&()'+&@!}$ = 7!#*&0}KSH)+!}AOFJ7 K )Gb *)9]b.L$*)!# = 8GC
? &()GH*7e'7*)+!#FJ*7KE'&@ )+!eYCFJ $ = !#&()+N"*)KLV'7&@$!]beG&($Z &(!>%G*$% ? CbeAV
bImbe& ?@? _m8+ &()GNaFJ*7U'+O7!#~*F3'+&@!e$ = 7#!/
:X\ 4$&0A$H ?@? C*] ? %}h )+8k _A)+&@% 8+&(KS)+!#&( )+ ? 6*$%' 7Q!4A$!]t)+8 ? 
 , | qvu ! ,, , 'u Yz5*)G8 |q 4! ,, ,  z5Q 7#8+7#8A!!~FJ 7h *)G8 k
7!#4$&@6  ? C_' = ! u ! ,,, u d&(!}[+*!&@!QFJ 7nh )+
8 4!  "&(!}
A*!&@!5FJ 7>k]A!#EAh &@! _ D8G&(KS)+!#&( )A ? *)+8k &(! L 8+&(KS,)G,,!&(*)A ? / T 
fc_} ? &()+*7I'7*)+!1FJ 7KE'&@ )"FJ7*K h 'Ek /
:  AJ<T %[h |   qvdz%]k |  qvz]*)G8pf ,Rh i k _'G
8+& 7#)Y'&('&@ )dKL4Bf,2|g y /. = !}+Q!#Z)+8A*7#8 7#8+7#8+*!&@!  ,2|
q1


 zRFJ 7ha]*)+8+L!1Z*)G8A*78 78+78 A*!&@! ,2| q1

zmFJ 7
k/xO!A ?(? $ )Y'&() = mbe&0'd'+&@!e%G*KS4 ?  ? '7/
:<M % = 7#)+&()+N})+ bp'Q'+>N )G7' ? !#&@ = '&@ )9] ? % = !.Z*RO6 $'*7Iu&()"h *)G8
'7#C}'O$*KE4 = '5f~u = !#&()+NO = 7A*!!/ \ &@)+$eu}&(!&()ShS]Y&@A!.m$ D 7#8+&()+'
74G7!#)YZV'&(*)


! 
 u   | // 



be&@' 7#!4_$%E o / \ &(KS& ? 7 ? C*]t!#&()+$f~u&(!&()<k ]&@aA!E $ D 7#8+&()+'


74G7!#)YZV'&(*)

"! 
 f~u | // 


be&@'7!4_$%n' / R= 7 = !1'&(*)&(!Q)+ bO,nGb*7a'+S$ ?(= KS) 6 $%' 7#!


 u *)+8  f>u  7 ? '8 [ 74G7$&(!# ? C*]&@Fb.S^)+ b '+a$ ?(= KS)6 $'*7
 u G]$*)b.bI*7 = mbeA  f>u be& ?(?   Fo$ = 7#!]3+a*)+!1bI7Qbe& ?(?
8+4_)+8} )Of} = *!b..!#A ?(? !]*b..$*) = )^&@FCR+&(!KS 7#o4G7$&(!# ? C*]YC
!'HC &()+NS'A~'Gn*)G!#b.7be& ?(? 8+4)+8 )E$7#'*&()S*5 5'#"-5ZZ r*vr
*Ff be&@B7#!#4$~'  *)+8 /
:  AJW  )Y'&@) = &()+NS = 7e4+7#6 &( = !%G*KS4 ? *] ? % s!>4G&($ZauB   qv"z~
7'*)+8G K[]G!'HCdu",2| 

w 0
w<
]A!'+



 u   | 0 ,



5+)BbIOAH6 Of~u| 
w 0 ]+!a'+

 f~u |




,



5+ = !#'&@ )G7}&(!5'G&(!,.!#'*7#&()+NaFJ7 K +Q$ ?@= KE)6 $ 7 0 JF  7
 
0
u_]G+ bc8+ !e )+mb. 7d = 5'+O$ ?(= KS)d6 $'*7   FJ 7Uf~u 

:<M % = 7#)[)+ b ''+ON )+7 ? $H!*/.A7 Kl = 7UFJ 7#K =+? nFJ 7  u  ]+b.OAH6 
u|7
! u ! w+
u w
-

,,,

w+
*uG

!S&@FbI}*4+4 ? LC f 'a_*'B!&@8+!5b.Q*GZ*&@)
f~u|
! f~u ! +
w
f~u w , ,, w(
Vf~u ,
q/@z
be+& ? RFJ7 Kl = 7UFJ 7#K =+? nFJ*7  f~u  b.Q+ 6*
f~u| !4! w  w ,,, w   ,
q/ - z
;  bg'E$ )+)G$>'+QDbIEFJ 7K =G? */U5+}6*$%' 7#!f~u ! ,,, #f>u ? &@Q&@)k ]
*)+8!a'+%CB*7 ? &()+*7U$ K+&@)A'&@ )+!UF 4! , ,,  ,
f~u ! |  ! ! 4!
w  !  w , ,,
w   ! 
f~u |  ! 4!
w   w , ,,
w   
//
f~u  |  !  4!
w    w , ,,
w    
)+*'RAU+O) = K_7!  ! ! , ,, 
  *7#m!$H ? *7#!I'AVe ) ? CE8+4)+8[*)fQ]
o]+*)+8 qJ+m6 $'*7>uE&(!5 ) ? C"7# ? %6*)Y~FJ*75$ KS4 = &()+N+2
 !>*)+8  !'z%/
\= +!1'&@ = '&@)+N'+Q*_ 6 mFJ 7#K =+? R&()Y'[&q G/@ z.bIO G'*&()
f~u|
! q  ! ! 4! w ,,, w   !  z
w
q  ! 4! w , ,, w    z
4
//
w
+q  !  4! w , ,, w     z
4
W  ?(? $&()+N5$ $&()Y'!x)+8}$ KS4A*7&@)+N5'+&@!9be&@"&q G/ -*zoqJ7KEK7&@)+N5'A
4!  &@!oQA!&(!]Y!Q'+7e&(! ) ? C )G~bIHC'mbe7&0'5f~u*!. ? &()GH*7
$ KG,&(,)A, &( )L*F 4! ,,,  zI b.O G'*&()
|  !!
!

w  !
w ,,,
w  !

!
|



! !
w


w
w  




,,,
//
|   !
! w  
w ,,,
w  
,

5+&(!eKE C ?    ? &(OKE!!] = e&@e_$*KE!~$ ? *)+7e&@)dKL7&{LFJ 7#K[,

//

!

 !

 ! 
 
|
/

/
  !   ,, ,   
!!

-

,, ,
, , ,





/!
/

 

: 5  = !]&@Fb.}8+%A)+  f   'S_R'+OKE'7#&0

 f   2, |

!!



,,,
,,,

//



,,,

 !
 
 

'+)Bb.}+ 6*n)+!#b.7#8 = 7 = !#&( )B*F+ b ? &()+  u  be&@  f~u ,


 f~u |  f    u  ,
qv F9C* =d? &@**]Y+  ! = +!$7&@4G5 )S'+~f +*! $*)+$ ?(? 8Q'+  ! = 4_7#!$7&(4
 )B+Ou/.5+&@!e&(!e4A*71>FKE*7ON )G7' ? 7 =+? *]A^)+ be) *!5'G.( %D%
%S*vr $Z * vr ]be+&($ZC* = KE&@N Y3)+$ = )Y'7&()8G6*)+$84+YC !&($!
$ = 7#!!~be+)8+ ? &@)+Nbe&@d'+&@)+N !5$H ?(? 8 5'z/
: &(!x)Gm$ &()+$&(8+)+$IAKE7&($!3bI75!O$ )Y6 )G&()Y ? C! = &@'* ? .FJ 7t+&(!
4+7  ? KB*&@)}Fv*$%xKE'7#&($!bI7U&@)+&@&  ?@? C~&()Y6 )Y'8FJ 7'GI%4+7#!#!4 = 74_ !#
*F = )+8+7#!#'*)+8+&@)+N ? &()+*7I7'*)+!1FJ 7KE&( )+!I&()$  78G&()A!/
:  AJ  O7# = 7)'S = 754+7#6 &( = !~G*KE4 ? */ ; *'
f>u ! |fQ7
| n7
|  4! w   w   
f~u |f
d| >|  4! w   
w  
f~u  |3f
U|-
7
|  4! wX-  w   
f>u U|3f
 | 
U|  4! w   w<  
*)+8+)G$
   
f   ,|   -   ,
 
 
5 = !  u   *)G
8  f~u  *7 ? &()+8BYC"'+O
 = '&@ )
   
 f~u  |   -    u  
   
-*-

' = !5FJ 75&()G!#Z)+$O7% = 7#)+&()GNaE = 754+7%6 &( = e! +KE4 ? 


0    


0 
  |   -    

,

: 5+LKE'7#&0  f   &@!O$H ?@? 8'G[S*&5 5'#"-5'Z r*r f J 5'Z#"A $%


JA ZV Z  / ; *'&@$EA+   $ ?@= KS)*F  f   &@!  = !1'G
$  78+&@)A6 $'*7>*F3f~u~be&@'7#!4_$%> ,
 f   | q  f~u !   f~u  ,,,  f>u  z
qv!mFJ 75&()+!1Z*)G$m'+O4+7#6 &( = ! G*KS4 ?  z%/
: D)LKE*)YCE$*!!]+hjbe& ?@? ~ =  ? 'nk ]G)+ 8 
 =  ?  G&@)SA.$H*!#b.
KLHCd++7%6 &   f   *!  f   /
: *= !# ? &("6 $ 7u$H*) _"7$ )G!#'7 = $8 FJ7*K &0'!n$ D*78+&@)A'S6 $'*7
 u   *)+86&@$m6 7!qv4G7 6 &(8+8[ )G}^)+ be!ebeA &(!]+*Ft$ = 7#!Hz%]_ ? &()GH*7
'7')+!#FJ 7#KLV'&(*)}f<$H*)_U7$ )G!#'7 = $8SFJ7 Kj&@!x$V D 7#8+&()AV'IKE7&0  f  
*)+8a6&@$e6 7!'Lqv4+7# 6&@8+8  *)+8 *7#~N*&@6 )z%/tD)+8+89]G&0F *)+>^)+ be!  f   ]
'+)  )+L$*)b. 7 = }'+"7 =+? S'N*nFJ7# K u 'f~u*!nFJ ?@?  be!,}A7!1
be7&@au &() '7KS!}*F ] Z*&@)+&()+Nd+E$ D*78+&@)A'6*$%' 7  u GxK =+? &(4 ? C
'+&@!>$ ?(= KS)[6*$%' 7>^C  f   'L*GZ*&@)  f~u  ] *)+8B'+) = ! L$ )Y6 71
'+&@!5A*$Zd&()Y'+m6 $ 7~f~u/
: E  AvG  A ?(? 'G&(!t!1 = LKLHC}!K 6*71C*+!1'7*$)+8nFJ 7#&(N*)9]* = 
&@}&(!  = !#+E6*$ 7 = &06 ? )^n*F5!# KE%'+&@)+NC* = *7L ? 7#H*8CFvKE& ? & 7
be&@' &() +!$H ? *7a$H!*,B$*)^6*7#!&(*)p*F = )+&@!/ T  s!SN &@6*[)<+KE4 ? */
\= 4+4_ !"[$H7n&(!Q'7 6* ?@? &()GN[&@)!1'7'&(N Y ? &()GEV!1'H8GC!#48fFJ 7
S4_7#&( 8[u"Ft'&@KESqC !]+ ? #'7!~*7Q!#7'*)GN *] = ~'G&(!~&(!e8+ ? &(_7'Hz%/
5+)L+e8+&(!1Z*)G$e'Ao'G&(!$H*77'H6 7!!U&(!*F $ = 7!~f~u_/ !#Ca)G = N 9]
 = ~)+ b ?  s!58+S6*7#C^+&()+Nabe&@ = )+&@!/
:<T % s!I! CS'+.+4_7#&( 8L*F '&(KSeubU!UA ? F*)"G = 7]  7'+&@7#DCSKS&() = '!/
E&@!a)+* = &@[$$ = 7'B! C ASuX|  - *7Su<|  GU+[ 4G7$&(!#
!#ZV'KS)Yqv&@)  = 7a)+*''&@ )z}&@!'A  u     n| q  - z].*7  u     }|
q Yz/eq ; *'~'AVOq   z*)+8q  z.*7>*" 7#8+7#8"A!!UFJ*7o&(KS*]
-




 



 

be+&($Za&(!m )G% D8G&(KS)+!#&( )A ? 6*$ 7!4A$ z/ \ &()G$5 = 7+*!!  = !#AH6 e )G
 ? KE)YH]A = 7e$ ?(= KS)d6 $'*7>A!> ) ? C"*)+}7# bO]+be+&($Z[KL*!~&@~a7'+7
!& ?@? CS6 $'*7~&@) = 75$H!*/
:<;  bj! = 4G4 !#}A~'+Q!4_8fcbU!DbI)YDCKS& ? !e*)[+ = 7/~ >NY*&@)9]A&@~&(!
)+* = &@Q*$$ = 7'm'a!'HCd'+5f|- GG'GQ$ 77#$%>!1ZKS)Y~&(!5'+
 f        | q- Yz
!&()G$mbIO$ ? H7 ? CLAH6 
fnq1   *z|c-    ,
O$H) ? !7#4+7#!)Yfc&@)*'+7 = )+&@!,
 f        | q  Yz
 f      
  | qvY- z
'$/D)X+&(!S$H! = 7 KE'7#&($! *7#!&@KE4 ? C KE'7#&($!a 4+7%DC
 7#&()+N 
;  bb.}$*)dbI*7d = 5f~uE&()KE& ? !U 75^& ?  KE%'7!,
 f~u     |  f        u      | qr-  zq1 - zx| q  Yz
 7U'a8+a'+&@)+N !e*)G*'+75bUHC
 f~u     |  f         u       | q1  zq Yzx| q  Yz ,
5 = !+5$H7t'7 6* ? !xFJ 7U RKS& ? !3 9be+&($ZbI*!*F_$ = 7#!5 Y6 &( = !xFJ7 Kj'G
4+7  ? KB/R5+4_ &@)^+7#&(!>'A>'+!!1'7')+N KE'7#&($!R*)G8 A*!!O*7
)+*n ? &@)  #$%'!O +C*7#L!&@KE4 ? C+S6*$%' 7n6*7#!&(*)+!n*FI'+&@)+N !O'A
C  = AH6 Q!)%6 )A*$Zd&@) ? KE)YZ*71C"!$ZG ? KE+KE'&@$!/
:  V   +tJ"M KSKn7U'+O$H75$ KS4A*)YCd+KE4 ? FJ7*K 
  T % s!7 = ) *) %G*KS4 ? "!&@KE& ? *7m' AH/ \= 4+4_ !#"'+$H7$ KS4A*)YC
)+8+!5KE*)+C"*)+8 ?  7'KE*R$H*7#!/3*4B+&()GN !.6*7#C"!&(KS4 ? *] ?   !
! = 4+4_ !#~A'G~$*7$ KS4A*)YC*) ? CnKL*!% 7&@ 7!x 38+  7#!*)+8abe+ ? !/
T % s!!'HCnA'+7e*7#IDbImDC 4_!*F_$H7!, $ZV "AZ%]*be+&($ZaAH6*UDbIO8+  7!
*)+8FJ = 7QbeG ? !]t*)+8 Y %]be+&@$ZAH6 EFJ = 7O8+  7!}*)+8FJ = 7Obe+ ? !/
T % s!R!'HC'+mEbeG ? 7
 = &(7!O- = )G&@'!>*FKS )+%C)+8  = )G&@'!>*F ? **7]
be+& ? Oa8G 757# = &@7! = )+&0'!e*FKE*)+C)+8[
= )+&@!~F ? **7/
 





 
  




 

 



 


 
  

 





 

:   7#>N *&()+NR}AH6*~Db.}6*$ 7o!4A*$!/o5G~A7#!#6 $ 7.!#4A*$*]GhE]^&(!x'G


!4A*$*Fo 5# 6 5Z t+~$H*7o$ KS4A*)YCaKEHCaAH6 R)E 7#8+7ou*F-Q$ = 4!U*)G8
a!#8A)+!]Abe+&@$ZB7'*)+! ? !5' 8+  7#!e*)+8- be+ ? !/o5 = !
 u         |  - 
*)+8
 u    
  |  - 
*pqv      zm*)+8Xq        vzm*7#S*78+78A*!!QFJ*7nhS/q  )G
$ =+? 8a ? !#mKL*e*'G7A*!#!] ! = $Z"!~q      z]Y ? '+ = N '+*!~*7
7'+75!1'7')+N  z/
: 5+"!$ )G8 6*$%' 7!#4A*$].k]t&(!}+"!#4A*$dF 5ZZ V" 5 $ZZm O&()'+&@!$H!*]
 = !#eKS )+%Cd*)+8 ?  7/* s7O ) ? C"N *&()+N = !Q )+m 7#8+7#8BA*!#&(!5+7*,
q        z/
: 5+7#"&(!}*) Y6 &( = ! ? &()+*7m'7')+!#FJ 7#KLV'&(*)fFJ7# K h 'k R+ $Z %
q*$% =  ?@? C*] "-5 $Z5&(!~aKE*7O*$$ = 7'Q)A*KSmFJ 75f} $Z %!#+ =+? 8[7#H ?@? C"7#FJ7
'f>uz/ 5 = !]UFJ 7S*)YC  7#8+7Su&()<hE]of~u&(!+KE = )^aFR7! = 7$!
7 = &@78BS$7'Ou/ .Cd = 75YC 4_*'+!!]
fq     zt|     wX
    
*)+8
fq    vz|-     w<     
!
 f      
    | 
-  ,
  = KLHC ? !$Z+$Zd'A
 f                |  -  - Y- -  ,
5 = !]AFJ 75 = 75*78+7~u]++O$ !1~aKL*OuL$H)[_m$ KS4 = 8[*!
 f~u          |  f     
     u    
  | 
-   -  |    


 





 

 

-*

 75 = 0& 6* ? )Y ? Cd!


 f~u          |  f                u        |  - - Y- -   -  |    
&r/s*/  )+)+8+!  = )+&@!*FKS )+%C*)+8  = )+&0'!*F ? *_ 7"' $*Ka
4 ? %'a'+E 78+7/q W *)C  = %4 ? *&()beYC+!#EDb. *4+4A7)Y ? C8+&(!1'&@)+$
$ KS4 = ''&@ )+!NYH6*d%G*$ ? C'+!'KEd)+!#b.7]U*)+8 beYC+&(!)+!#b.7a&(!
*$ =  ?(? Cd'+n$ 7#7$%R$ !#mF'+&@! 7#8+7 Vz/ ; 'nGbj+8+& 7)Ym+*!!
q      z~*)+8 q    V    vz~AH6 8G& 7)YO*8G6*)YZN !m)+8 8+&(!*8
6*)^'*N !t+qv      zRA*!#&(!QKL*!O'+E$  78G&()A6 $'*7}FJ 7Ou
)+&($d*)+8 !&@KE4 ? *]xbeG& ? E'+q    V    vz}A*!#&(!KE**!'+d$ D 7#8+&()+'
KL7&{LFJ 7Uf)+&($Q*)+8!&@KE4 ? */
`a`a`E`a`
5+&@)+N !5'a8+abe&@ ? &()GH*7I7'*)G!#FJ 7#KL&( )G!
: U^)+ b '+x$7#'*&()n 47'&( )G!t$H)I47#FJ 7#KE8 )n6*$ 7!Y'+%Cn$*)
L*8+8+8' N*'G7]t 7nK =G? '&@4 ? &@8be&0' B!$H ? *7/ ; b b.Ebe& ?(?  +!#7#6*
'A}'+7L*7E!&(KS& ? *7m 4_7'&@ )+!Q )  5S 5# 5S*r %x+C$*)
 ? !# *8G8+8' N*'G7*)+8K =+? '&@4 ? &@8 ^C !#$H ? *7]~ = [ ? !q = )+8+7
$71Z*&@)$ )+8G&@'&@ )+!'zI$H*)B ? !aOK =G? '&@4 ? &@8Sbe&@'*$Z*+7/
:  tJ_ }T Qh )+8k n6*$%' 7R!#4A*$!])+8 ? %  ,_h i k *)G8

f ,hi k _EDb. ? &()+*7m'7*)+!#FJ*7KE'&@ )+!mFJ7 K h 'k /"E8+A)G
'+"% wf *FI+!#S7'*)G!#FJ 7#KL&( )G!'_Ed'G&(78 7'*)+!1FJ 7KE&( )
w f, hji k ]A8+%A)+8[YC
q w fzqvuzI,2| xumw f>u ,
:  AJ nT  ,A i  }'+8G =  ? &()+NS'7')+!#FJ 7#KLV'&(*)9]8+A)G8
^/C uE, |-u/ T efc,Y i R+m&(8+)Y'&@DCE'7*)+!#FJ*7KE'&@ )9] 8+A)G8
^CLf>uE, |u_/5G) [w f&(!U'GO7&@4 ? &@)+Nn'7*)+!1FJ 7KE'&@ )
q w fRz u| uRw f~u|-uRw ua| u
,
:  5+! = K *FODbI ? &@)+H7E'7*)+!1FJ 7KE'&@ )+!S&(!dNY*&()p ? &()GH*7
'7')+!#FJ 7#KLV'&(*)9/
-






:}9RT %  ,xh i k ]tf ,thi k _ ? &@)+H7O7'*)G!#FJ 7#KL&( )G!/"


)+8X'!+ b '+  wf ,~h i k &(!E ? ! ? &()GH*7~&/ /&@S4+7#!7#6*!
*8+8+&0'&(*) *)+8 4+7!7#6 !L!#$H ? *7K =+? '&(4 ? &($'&@ )9/ T   ! = !1E!#+ b AS&@
4+7!716 !U!$ ? *7K =+? &(4 ? &($HV'&(*)9]&/ /FJ 7o*)YCauEhj)+8L!#$H ? *7V]Yb.>+ 6*
'a!+ bcA
q [w fzqv%uz|q [w fz1u ,
 = e'+ ? F# A*)+8d!#&(8+]AYCd8++)+&@&( )9]G&(!
equzw fnquz| uRw<Zf~u
!&()G$ U]Gfg*7# ? &()GH*7/ \ &(KS& ? *7 ? C ]Y'GQ7#&(N Y1 DA*)G8d!&(8GQ&@!
q xumw f~uGz| xuRw<Zf>u
^C'+G&@ KS!n*Fe6 $ 7a!4A*$!/5 = !'+"Db.*7L =  ? /5+4+7#F
'A [w f4+7!716 !m*8+8+&0'&@ )d&(!5!#&(KS& ? 7I*)G8[&@! ? F5*!~*)[7$&(!#*/

:<; *U'Ab.~$H*)a ) ? C*8G8SDb. ? &()+*77'*)G!#FJ 7#KL&( )G! U] fp&@F+C+ 6*


'+}!'*KSn8+*KL*&@)*)G8Z*7#N !4A$*9FJ*7>&@)+!#'*)+$n&@>&(!)G*R4_7#KE&0'8[
*8+8 '+a&@8+)Y'&0DC7'*)+!1FJ 7KE&( )[ ) "'+a&@8+)Y'&0DC7'*)+!1FJ 7KE&( )
 )"* H/5G&(!I&@!I!#&(KS& ? 7x'+ b6 $ 7!5$*)" ) ? CS*8+8+8d&@F'GCE ?  )+N
''+O!*KEm!#4A*$*_a6*$%' 7e&() $H)+)+*e_Q*8+8+8BL6 $ 7e&()  /
:  tJ_ QT Rf ,h i k _ ? &()+*75'7')+!#FJ 7#KLV'&(*)9]_*)+8 ? %RQ
!#$H ? *7/}a8+%A)+'+" $* 0 5 " $*vr f *FI*)+8f B_'G
'7')+!#FJ 7#KLV'&(*)dfc,^h i k ]+8+%A)+8[YC
qZfRzqvuz|qJf~uz ,
: I&@!o*!#CaQ6*7&0FCa'A.Zf&(!o ? !} ? &@)+H7x'7')+!#FJ 7#KLV'&(*)9 bI ?  6*~+&(!
*!~*)%7#$&(!#*/
:  AJT   ,9 i _S+a8+ =  ? &()GN7'*)G!#FJ 7#KL&( ) ]8+A)G8
^#
C xu,2| -u/R5+)-  ,A i &(!>+ = *8G7 = 4 ? &()+NE'7')+!#FJ 7#KLV'&(*)9]
8+A)G8YCB- uE, | u/
:  tJ_T  qrhkjzx5+>!#4A*$>*F ? &@)+H*7x7'*)G!#FJ 7#KL&( )G!tFJ7 Kh
'Ek /
-0

:  A J D)'G5%G*KS4 ? !* 6**] 'GU'7')+!#FJ 7#KLV'&(*)+! U]*fQ]"Ow"fQ]^*)G8


- < ?@? _ ?  )+N 8B qv ' z/
:  5+n!#4A*$ qrhkjze&@!S! = G!4A*$*Fqrhkjz%]A'Gn!4+*$}*F
 ?(? F = )+$&( )G!eFJ7# K h Lk /D)4A*71'&($ =+? 7] qrhkjzI&(!e6 $'*7>!#4A*$/
:}9WI? H*7 ? C qrhkjz3&@!! = +!%*F qhZkz]*!#&()+$U6*7#C ? &()GH*7'7*)+!1
FJ 7KE'&@ )&@! X'7*)+!1FJ 7KE'&@ )9/ ? !#+]}b. AH6  !)j'AV'+ !#4A*$
qrhkjz9*F ? &@)+H79'7')+!#FJ 7#KLV'&(*)+!FJ7 Khp'Rk &(!$ ?  !8 = )+8+7x*8G8+&@&( )
*)+8!$ ? *7mK =+? &(4 ? &($HV'&(*)9/ >)+$]&0m&(!Od! = +!4A$S*F.+6 $ 7}!#4A*$
qhkjz]9*)+8 &@!R+)+$&0'! ? FoL6*$ 7m!4+*$/"qJ ? 7#)A'&06  ? C ] )+$ =+? 8
6 7#&@FCnH*$Za*F'GU6 $%' 7!#4A*$eG&@ KS!eqvr R#1z&() = 7)FJ*7 qrhkjz% +&(!
&(!e'8+&( = !~ = ~)+*56 7#C8+& $ =+? e%7#$&(!# z/

: 5+)+ UA*!#&($~ 4_7'V'&(*)E&@!A.*F " V ~*7 $ZV "A % 5DbI ? &()GH*7


'7')+!#FJ 7#KLV'&(*)+!/
:  tJ_gT % }]>hE]~k _[6 $ 7"!4+*$!/ T   ,>h i k 
? &()GH*7O'7*)+!#FJ*7KE'&@ )FJ7# K h k ]*)+8 ? f, i h  ? &()GH*7
'7')+!#FJ 7#KLV'&(*)OFJ7# K 'RhS/5+)nb.I8GA)+o'+ "-5'* $%^ 7 $ZV "A %vr
xf, i k
'a_O+m'7*)+!#FJ*7KE'&@ )
tfnq zI, | eqJfnq zz
,
:  AJLT  , i jm'GQ7#&(N Ye!#+&@Fe 4_7'*7
q
!

zU, | q G
!
,, , z ,
,,,
5+)B'+O 4_7' 7 | &(!5N &06 )BYC
4 V$q
!

z5,2| q $q
!
,,, zz| &q G
!
,,, z| q  G
!
,,, z
, ,,
&r/s*/x'GQ8G =  ? m7&(N*^e!#+&@F/
:  AJLT  >,Y  i  m'G ? F1 D!G&@FU*47' 7
 q
!

zU, | q

 , ,, z ,
,,,
5+)  g&(!U'GQ&@8+)Y&@DC"KE*49,
 $q
!

z|  &q G
!
,,, z| $q
!
,,, z
,, ,
-


 =  ~&(!5)+H,

 q$
!
,, , z| q$
,,, z| q&G
, ,, z ,
5 = !>K =G? '&@4 ? &@$H&( )S*F 4_7'V' 7#!5&(! V$*KEK = Z&@6 /
:<; *['+L&@)X 7#8+7SFJ 7 xf _8+%A)+8 ]e+['*7N*"!#4A*$*FRf A!
'KLV'$Z '+B&()+&0'&( ? !#4A*$[*2F U/qJ5+&(!a&@!a6*71C $ ? *! ? C 7 ? 8 ' 'G
Fv*$5Ae&()d*78+7eFJ*75KL7&{LK =+? &(4 ? &($HV'&(*)  mb. ?(? 8+A)G89]A'G
) = K7e*Ft$ ?(= KE)+!5F K = !1e =  ? +O) = K7e*Ft7# be!~F  z/
`a`a`E`a`
>8+8+&@&( ))+8[K =+? &(4 ? &($HV'&(*)E*FKE'7#&($!
: + 6*  = !#R8+A)G8*8+8+&0'&(*)9]!#$H ? *7K =+? &(4 ? &($HV'&(*)9]A*)+8 $ KS4 !#&@&( )
*F ? &()+*7n7'*)+!1FJ 7KE&( )+!/  ) '+d*+7aA)+89]bI[ ? !# ^)+ b + b 
*8+89]3!$ ? *7mK =+? &(4 ? C ]*)+8K =+? '&@4 ? C[KLV'7&@$!/ \ &()+$ ? &()+*77'*)+!1FJ 7KEV
'&(*)+!n$*)_"74+7!)Y8qJ6 & BA*!!Zz*!nKL7&@$!]t&0n&@!}' = !a[)A = 7' ?
= !#&( )[*!UabeG'G7e'+ ? &()+*7I'7*)+!1FJ 7Kl)+*'&@ )+!5*Ft*8+8G&@'&@ )9] !$ ? *7
K =+? &(4 ? &($'&@ )9]*)+8S$ KS4*!&@&( )a7~&()Fv*$.$*KE4AV'&( ? Ibe&0'a'+~KLV'7&{
)+*'&@ )+!m*FU*8+8+&0'&@ )9]9!#$H ? *7OK =+? &(4 ? &($'&@ )9]*)+8K =+? &(4 ? &($'&@ )9/Q5+&(!O&(!
&()+8+8'+O$*!+bIObe& ?@? )+ bc!#+ bc'G&(!/
:  LT %Uhk 5A)+&0' D8+&@KE)+!&@ )A ? !4A*$!obe&@'a 7#8+7#8EA*!! ]
7!#4$&@6  ? C*/ T %2 p,Gh i k *)+8Bf,Ah i k _ ? &()GH*7U7'*)+!1FJ 7KEV
'&(*)+!UFJ7 K h 'Ek ]*)+8 ? %~RQ!$ ? *7/5+)
 w f   |     w  f  
*)+8
sZf   |  f   ,
: }%97#$&( !# */    ?@?  !o = be!#7.&0'4+ 7  6*>| 'GqJu >!#$*)+u 8" zo!#')+'8 KE)Y| H]q *)+8 ? HH 6 ~ 'z+]Ge)+A8L7#!#I8+*)+!I*) 
T
! ,,,
4! ,,, 
'+OKE'7#&0  f   YC

 f   2, |

!!



-

,, ,
, , ,


//



,, ,

 !
 

 

5 = !

f~u ! |  ! ! 4 ! w  !  w , ,, w   ! 


f~u |  ! 4!
w   w , ,, w   
//
f~u  |  !  4!
w    w , ,, w    
=+? &(4 ? C &()+NYC]+b.} Z*&@)
qvfz u ! |  ! ! 4! w<  !  w ,,, w   ! 
qvfz u |  ! 4! w<   w ,,, w   
//
qvfz u  |  !  4! w    w ,,, w    
*)+8d' = !
 ! !  ! ,,,  ! 
sZf   ,2|  !  /,/ ,,  
  !   ,,,   
&r/s*/  f   |  f   *!58+!#&(7#89/

:   ?@?A? HH6*>'G>$ 77#!4_ )+8G&()+N}!#ZV'KS)YI$ )+)G$&()+N}$ KS4_ !&0'&(*)*F ? &@)


H*7U7'*)+!1FJ 7KE&( )+!.be&@'KE'7#&0"K =+? &(4 ? &($'&@ )FJ 7e)+% ebI s!)+*!/



Math 115A - Week 4


Textbook sections: 2.3-2.4
Topics covered:

A quick review of matrices


Co-ordinate matrices and composition
Matrices as linear transformations
Invertible linear transformations (isomorphisms)
Isomorphic vector spaces
*****
A quick review of matrices
An m n matrix is a collection of mn scalars,
and n columns:

A11 A12 . . . A1n


A21 A22 . . . A2n

A=
..

organized into m rows

Am1 Am2 . . . Amn


If A is a matrix, then Ajk refers to the scalar entry in the j th row and
k th column. Thus if


1 2
A :=
3 4
then A11 = 1, A12 = 2, A21 = 3, and A22 = 4.
(The word matrix is late Latin for womb; it is the same root as
maternal or matrimony. The idea being that a matrix is a receptacle
for holding numbers. Thus the title of the recent Hollywood movie the
Matrix is a play on words).

A special example of a matrix is the


by

1 0
0 1

In :=

0 0

n n identity matrix In , defined

... 0
... 0

..

.
... 1

or equivalently that (In )jk := 1 when j = k and (In )jk := 0 when j 6= k.


If A and B are two m n matrices, the sum A + B is another m n
matrix, defined by adding each component separately, for instance
(A + B)11 := A11 + B11
and more generally
(A + B)jk := Ajk + Bjk .
If A and B have different shapes, then A + B is left undefined.
The scalar product cA of a scalar c and a matrix A is defined by multiplying each component of the matrix by c:
(cA)jk := cAjk .
If A is an m n matrix, and B is an l m matrix, then the matrix
product BA is an l n matrix, whose co-ordinates are given by the
formula
(BA)jk = Bj1 A1k + Bj2 A2k + . . . + Bjm Amk =

m
X
i=1

Thus for instance if

A11 A12
A21 A22

B11 B12
B21 B22

A :=
and
B :=

Bji Aik .

then
(BA)11 = B11 A11 + B12 A21 ;

(BA)12 = B11 A12 + B12 A22

(BA)21 = B21 A11 + B22 A21 ;

(BA)22 = B21 A12 + B22 A22

and so


BA =

B11 A11 + B12 A21 B11 A12 + B12 A22


B21 A11 + B22 A21 B21 A12 + B22 A22

or in other words


 

B11 B12
A11 A12
B11 A11 + B12 A21 B11 A12 + B12 A22
=
.
B21 B22
A21 A22
B21 A11 + B22 A21 B21 A12 + B22 A22
If the number of columns of B does not equal the number of rows of
A, then BA is left undefined. Thus for instance it is possible for BA
to be defined while AB remains undefined.
This matrix multiplication rule may seem strange, but we will explain
why it is natural below.
It is an easy exercise to show that if A is an m n matrix, then
Im A = A and AIn = A. Thus the matrices Im and In are multiplicative
identities, assuming that the shapes of all the matrices are such that
matrix multiplication is defined.
*****
Co-ordinate matrices and composition
Last week, we introduced the notion of a linear transformation T :
X Y . Given two linear transformations T : X Y and S : Y Z,
where the target space of T matches up with the initial space of S,
their composition ST : X Z, defined by
ST (v) = S(T v)
is also a linear transformation; this is easy to check and Ill leave it as
an exercise. Also, if IX : X X is the identity on X and IY : Y Y
is the identity on Y , it is easy to check that T IX = T and IY T = T .
3

Example Suppose we are considering combinations of two molecules:


methane CH4 and water H2 O. Let X be the space of all linear combinations of such molecules, thus X is a two-dimensional space with
:= (methane, water) as an ordered basis. (A typical element of X
might be 3 methane + 2 water). Let Y be the space of all linear combinations of Hydrogen, Carbon, and Oxygen atoms; this is a
three-dimensional space with := (hydrogen, carbon, oxygen) as an
ordered basis. Let Z be the space of all linear combinations of electrons, protons, and neutrons, thus it is a three-dimensional space with
:= (electron, proton, neutron) as a basis. There is an obvious linear
transformation T : X Y , defined by starting with a collection of
molecules and breaking them up into component atoms. Thus
T (methane) = 4 hydrogen + 1 carbon
T (water) = 2 hydrogen + 1 oxygen
and so T has the matrix

(hydrogen,carbon,oxygen)

[T ] = [T ](methane,water)

4 2
= 1 0 .
0 1

Similarly, there is an obvious linear transformation S : Y Z, defined by starting with a collection of atoms and breaking them up into
component particles. Thus
S(hydrogen) = 1 electron + 1 proton
S(carbon) = 6 electron + 6 proton + 6 neutron
S(oxygen) = 8 electron + 8 proton + 8 neutron.
Thus

(electron,proton,neutron)

[S] = [S](hydrogen,carbon,oxygen)

1 6 8
= 1 6 8 .
0 6 8

The composition ST : X Z of S and T is thus the transformation


which sends molecules to their component particles. (Note that even
though S is to the left of T , the operation T is applied first. This
4

rather unfortunate fact occurs because the conventions of mathematics


place the operator T before the operand x, thus we have T (x) instead
of (x)T . Since all the conventions are pretty much entrenched, theres
not much we can do about it). A brief calculation shows that
ST (methane) = 10 electron + 10 proton + 6 neutron
ST (water) = 10 electron + 10 proton + 8 neutron
and hence

(electron,proton,neutron)

[ST ] = [ST ](methane,water)

10 10
= 10 10 .
6 8

Now we ask the following question: how are these matrices [T ] , [S] ,
and [ST ] related?
Lets consider the 10 entry on the top left of [ST ] . This number
measures how many electrons there are in a methane molecule. From
the matrix of [T ] we see that each methane molecule has 4 hydrogen, 1
carbon, and 0 oxygen atoms. Since hydrogen has 1 electron, carbon has
6, and oxygen has 8, we see that the number of electrons in methane is
4 1 + 1 6 + 0 8 = 10.
Arguing similarly for the other entries

41+16+08

41+16+08
[ST ] =
40+16+08

of [ST ] , we see that

21+06+18
2 1 + 0 6 + 1 8 .
20+06+18

But this is just the matrix product of [S] and [T ] :

1 6 8
4 2
[ST ] = 1 6 8 1 0 = [S] [T ] .
0 6 8
0 1
More generally, we have
5

Theorem 1. Suppose that X is l-dimensional and has an ordered basis


= (u1 , . . . , ul ), Y is m-dimensional and has an ordered basis =
(v1 , . . . , vm ), and Z is n-dimensional and has a basis of n elements.
Let T : X Y and S : Y Z be linear transformations. Then
[ST ] = [S] [T ] .
Proof. The transformation T has
an m l matrix. If we write

a11
a21

[T ] =:=

am1

a co-ordinate matrix [T ] , which is


a12
a22

. . . a1l
. . . a2l
..
.

am2 . . . aml

then we have
T u1 = a11 v1 + a21 v2 + . . . + am1 vm
T u2 = a12 v1 + a22 v2 + . . . + am2 vm
..
.
T ul

= a1l v1 + a2l v2 + . . . + aml vm

We write this more compactly as


T ui =

m
X

aji vj for i = 1, . . . , l.

j=1

Similarly, S has a co-ordinate matrix


If

b11 b12
b21 b22

[S] :=

bn1 bm2
then
Svj =

n
X

[S] , which is an n m matrix.

. . . b1m
. . . b2m

.
..

.
. . . bnm

bkj wk for j = 1, . . . , m.

k=1

Now we try to understand how ST acts on the basis u1 , . . . , ul . Applying S to both sides of the T equations, and using the fact that S is
linear, we obtain
m
X
ST ui =
aji Svj .
j=1

Applying our formula for Svj , we obtain


ST ui =

m
X

aji

n
X

j=1

bkj wk

k=1

which we can rearrange as


n X
m
X
ST ui =
(
bkj aji )wk .
k=1 j=1

Thus if we define
cki :=

m
X

bkj aji = bk1 a1i + bk2 a2i + . . . + bkm ami

j=1

then we have
ST ui =

n
X

cki wk

k=1

and hence

c11 c12
c21 c22

[ST ] =

cn1 cm2
However, if we perform the

b11 b12 . . .
b21 b22 . . .

..

.
bn1 bm2 . . .

. . . c1l
. . . c2l
..
.

. . . cnl

matrix multiplication

b1m
a11 a12 . . . a1l
a21 a22 . . . a2l
b2m

..

.
bnm
am1 am2 . . . aml

we get exactly the same matrix (this is because of our formula for cki
in terms of the b and a co-efficients). This proves the theorem.

7

This theorem illustrates why matrix multiplication is defined in that


strange way - multiplying rows against columns, etc. It also explains
why we need the number of columns of the left matrix to equal the
number of rows of the right matrix; this is like how to compose two
transformations T : X Y and S : Y Z to form a transformation
ST : X Z, we need the target space of T to equal to the initial space
of S.
*****
Comparison between linear transformations and matrices
To summarize what we have done so far:
Given a vector space X and an ordered basis for X, one can write
vectors v in V as column vectors [v] . Given two vector spaces X, Y ,
and ordered bases , for X and Y respectively, we can write linear
transformations T : X Y as matrices [T ] . The action of T then
corresponds to matrix multiplication by [T ] :
[T v] = [T ] [v] ;
i.e. we can cancel the basis . Similarly, composition of two linear
transformations corresponds to matrix multiplication: if S : Y Z
and is an ordered basis for Z, then
[ST ] = [S] [T ]
i.e. we can cancel the basis .
Thus, by using bases, one can understand the behavior of linear transformations in terms of matrix multiplication. This is not quite saying
that linear transformations are the same as matrices, for two reasons:
firstly, this correspondence only works for finite dimensional spaces X,
Y , Z; and secondly, the matrix you get depends on the basis you choose
- a single linear transformation can correspond to many different matrices, depending on what bases one picks.
To clarify the relationship between linear transformations and matrices
let us once again turn to the scalar case, and now consider currency
8

conversions. Let X be the space of US currency - this is the onedimensional space which has (dollar) as an (ordered) basis; (cent) is
also a basis. Let Y be the space of British currency (with (pound) or
(penny) as a basis; pound = 100 penny), and let Z be the space of
Japanese currency (with (yen) as a basis). Let T : X Y be the
operation of converting US currency to British, and S : Y Z the
operation of converting British currency to Japanese, thus ST : X Z
is the operation of converting US currency to Japanese (via British).
Suppose that one dollar converted to half a pound, then we would have
(pound)

[T ](dollar) = (0.5),
or in different bases
(pound)

[T ](cent) = (0.005);

(penny)

[T ](cent) = (0.5);

(penny)

[T ](dollar) = (50).

Thus the same linear transformation T corresponds to many different


1 1 matrices, depending on the choice of bases both for the domain X
and the range Y . However, conversion works properly no matter what
basis you pick (as long as you are consistent), e.g.
(pound)

[v](dollar) = (6)[T v](pound) = [T ](dollar) [v](dollar) = (0.5)(6) = (3).


Furthermore, if each pound converted to 200 yen, so that
(yen)

[S](pound) = (200)
then we can work out the various matrices for ST by matrix multiplication (which in the 1 1 case is just scalar multiplication):
(yen)

(pound)

(yen)

[ST ](dollar) = [S](pound) [T ](dollar) = (200)(0.5) = (100).


One can of course do this computation in different bases, but still get
the same result, since the intermediate basis just cancels itself out at
the end:
(yen)

(yen)

(penny)

[ST ](dollar) = [S](penny) [T ](dollar) = (2)(50) = (100)


etc.
9

You might amuse yourself concocting a vector example of currency


conversion - for instance, suppose that in some country there was more
than one type of currency, and they were not freely interconvertible.
A US dollar might then convert to x amounts of one currency plus y
amounts of another, and so forth. Then you could repeat the above
computations except that the scalars would have to be replaced by
various vectors and matrices.
One basic example of a linear transformation is the identity transformation IV : V V on a vector space V , defined by IV v = v. If we
pick any basis = (v1 , . . . , vn ) of V , then of course we have
IV v1 = 1 v1 + 0 v2 + . . . + 0 vn
IV v2 = 0 v1 + 1 v2 + . . . + 0 vn
...
IV vn = 0 v1 + 0 v2 + . . . + 1 vn
and thus

1 0 ... 0
0 1 ... 0

[IV ] =
= In .
..

.
0 0 ... 1

Thus the identity transformation is connected to the identity matrix.


*****
Matrices as linear transformations.
We have now seen how linear transformations can be viewed as matrices
(after selecting bases, etc.). Conversely, every matrix can be viewed as
a linear transformation.
Definition Let A be an m n matrix. Then we define the linear
transformation LA : Rn Rm by the rule
LA x := Ax for all x Rn ,
where we think of the vectors in Rn and Rm as column vectors.
10

Example Let A be the matrix

1 2
A := 3 4 .
5 6
Then LA : R2 R3 is the linear transformation




1 2 
x1 + 2x2
x1
x1
LA
= 3 4
= 3x1 + 4x2 .
x2
x2
5 6
5x1 + 6x2
It is easily checked that LA is indeed linear. Thus for every mn matrix
A we can associate a linear transformation LA : Rn Rm . Conversely,
if we let be the standard basis for Rn and be the standard basis
for Rm , then for every linear transformation T : Rn Rm we can
associate an m n matrix [T ] . The following simple lemma shows
that these two operations invert each other:
Lemma 2. Let the notation be as above. If A is an mn matrix, then
[LA ] = A. If T : Rn Rm is a linear transformation, then L[T ] = T .
Proof Let = (e1 , e2 , . . . , en ) be the standard basis of Rn . For any
column vector

x1
x = ...
xn
in Rn , we have
x = x1 e1 + . . . xn en
and thus

x1
[x] = . . . = x.
xn

Thus [x] = x for all x Rn . Similarly we have [y] = y for all y Rm .


Now let A be an m n matrix, and let x Rn . By definition
LA x = Ax
11

On the other hand, we have


[LA x] = [LA ] [x]
and hence (by the previous discussion)
LA x = [LA ] x.
Thus
[LA ] x = Ax for all x Rn .

If we apply this with x equal to the first basis vector

1
0
..
.

, we see that

0
the first column of the matrices [LA ] and A are equal. Similarly we
see that all the other columns of [LA ] and A match, so that [LA ] = A
as desired.
Now let T : Rn Rm be a linear transformation. Then for any x Rn
[T x] = [T ] [x]
which by previous discussion implies that
T x = [T ] x = L[T ] x.
Thus T and L[T ] are the same linear transformation, and the lemma
is proved.

Because of the above lemma, any result we can say about linear transformations, one can also say about matrices. For instance, the following
result is trivial for linear transformations:
Lemma 3. (Composition is associative) Let T : X Y , S :
Y Z, and R : Z W be linear transformations. Then we have
R(ST ) = (RS)T .
Proof. We have to show that R(ST )(x) = (RS)T (x) for all x X.
But by definition
R(ST )(x) = R((ST )(x)) = R(S(T (x)) = (RS)(T (x)) = (RS)T (x)
as desired.


12

Corollary 4. (Matrix multiplication is associative) Let A be an


m n matrix, B be a l m matrix, and C be a k l matrix. Then
C(BA) = (CB)A.
Proof Since LA : Rn Rm , LB : Rm Rl , and LC : Rl Rk are
linear transformations, we have from the previous Lemma that
LC (LB LA ) = (LC LB )LA .
Let , , , be the standard bases of Rn , Rm , Rl , and Rk respectively.
Then we have
[LC (LB LA )] = [LC ] [LB LA ] = [LC ] ([LB ] [LA ] ) = C(BA)
while
[(LC LB )LA ] = [LC LB ] [LA ] = ([LC ] [LB ] )[LA ] = (CB)A
using Lemma 2. Combining these three identities we see that C(BA) =
(CB)A.

The above proof may seem rather weird, but it managed to prove the
matrix identity C(BA) = (CB)A without having to do lots and lots of
matrix multiplication. Exercise: try proving C(BA) = (CB)A directly
by writing out C, B, A in co-ordinates and expanding both sides!
We have just shown that matrix multiplication is associative. In fact,
all the familiar rules of algebra apply to matrices (e.g. A(B + C) =
AB + AC, and A times the identity is equal to A) provided that all the
matrix operations make sense, of course. (The shapes of the matrices
have to be compatible before one can even begin to add or multiply
them together). The one important caveat is that matrix multiplication
is not commutative: AB is usually not the same as BA! Indeed there
is no guarantee that these two matrices are the same shape (or even
that they are both defined at all).
Some other properties of A and LA are stated below. As you can see,
the proofs are similar to the ones above.

13

If A is an m n matrix and B is an l m matrix, then LBA = LB LA .


Proof: Let , , be the standard bases of Rn , Rm , Rl respectively.
Then LB LA is a linear transformation from Rn to Rl , and so
[LB LA ] = [LB ] [LA ] = BA,
and so by taking L of both sides and using Lemma 2, we obtain LB LA =
LBA as desired.
If A is an m n matrix, and B is another m n matrix, then LA+B =
LA + LB . Proof: LA + LB is a linear transformation from Rn to Rm .
Let , be the standard bases of Rn and Rm respectiely. Then
[LA + LB ] = [LA ] + [LB ] = A + B
and so by taking L of both sides and using Lemma 2, we obtain LA+B =
LA + LB as desired.
*****
Invertible linear transformations
We have already dealt with the concepts of a linear transformation being one-to-one, and of being onto. We now combine these two concepts
to that of a transformation being invertible.
Definition. Let T : V W be a linear transformation. We say that
a linear transformation S : W V is the inverse of T if T S = IW and
ST = IV . We say that T is invertible if it has an inverse, and call the
inverse T 1 ; thus T T 1 = IW and T 1 T = IV .
Example Let T : R3 R3 be the doubling transformation T v := 2v.
Let S : R3 R3 be the halving transformation Sv := v/2. Then
S is the inverse of T : ST (v) = S(2v) = (2v)/2 = v, while T S(v) =
T (v/2) = 2(v/2) = v, thus both ST and T S are the identity on R3 .
Note that this definition is symmetric: if S is the inverse of T , then T
is the inverse of S.
Why do we call S the inverse of T instead of just an inverse? This is
because every transformation can have at most one inverse:
14

Lemma 6. Let T : V W be a linear transformation, and let


S : W V and S 0 : W V both be inverses of T . Then S = S 0 .
Proof
S = SIW = S(T S 0 ) = (ST )S 0 = IV S 0 = S 0 .

Not every linear transformation has an inverse:
Lemma 7. If T : V W has an inverse S : W V , then T must be
one-to-one and onto.
Proof Lets show that T is one-to-one. Suppose that T v = T v 0 ; we
have to show that v = v 0 . But by applying S to both sides we get
ST v = ST v 0 , thus IV v = IV v 0 , thus v = v 0 as desired. Now lets show
that T is onto. Let w W ; we have to find v such that T v = w. But
w = IW w = T Sw = T (Sw), so if we let v := Sw then we have T v = w
as desired.
.
Thus, for instance, the zero transformation T : R3 R3 defined by
T v = 0 is not invertible.
The converse of Lemma 7 is also true:
Lemma 8. If T : V W is a one-to-one and onto linear transformation , then it has an inverse S : W V , which is also a linear
transformation.
Proof Let T : V W be one-to-one and onto. Let w be any element
of W . Since T is onto, we have w = T v for some v in V ; since T is
one-to-one; this v is unique (we cant have two different elements v, v 0
of V such that T v and T v 0 are both equal to w). Let us define Sw
as equal to this v, thus S is a transformation from W to V . For any
w W , we have w = T v and Sw = v for some v V , and hence
T Sw = w; thus T S is the identity IW .
Now we show that ST = IV , i.e. that for every v V , we have ST v = v.
Since we already know that T S = IW , we have that T Sw = w for all
w W . In particular we have T ST v = T v, since T v W . But since
T is invertible, this implies that ST v = v as desired.
15

Finally, we show that S is linear, i.e. that it preserves addition and


scalar multiplication. Well just show that it preserves addition, and
leave scalar multiplication as an exercise. Let w, w0 W ; we need to
show that S(w + w0 ) = Sw + Sw0 . But we have
T (S(w+w0 )) = (T S)(w+w0 ) = IW (w+w0 ) = IW w+IW w0 = T Sw+T Sw0 = T (Sw+Sw0 );
since T is one-to-one, this implies that S(w+w0 ) = Sw+Sw0 as desired.
The preservation of scalar multiplication is proven similarly.

Thus a linear transformation is invertible if and only if it is one-to-one
and onto. Invertible linear transformations are also known as isomorphisms.
Definition Two vector spaces V and W are said to be isomorphic if
there is an invertible linear transformation T : V W from one space
to another.
Example The map T : R3 P2 (R) defined by
T (a, b, c) := ax2 + bx + c
is easily seen to be linear, one-to-one, and onto, and hence an isomorphism. Thus R3 and P2 (R) are isomorphic.
Isomorphic spaces tend to have almost identical properties. Here is an
example:
Lemma 9. Two finite-dimensional spaces V and W are isomorphic if
and only if dim(V ) = dim(W ).
Proof If V and W are isomorphic, then there is an invertible linear
transformation T : V W from V to W , which by Lemma 7 is oneto-one and onto. Since T is one-to-one, nullity(T ) = 0. Since T is
onto, rank(T ) = dim(W ). By the dimension theorem we thus have
dim(V ) = dim(W ).
Now suppose that dim(V ) and dim(W ) are equal; lets say that dim(V ) =
dim(W ) = n. Then V has a basis {v1 , . . . , vn }, and W has a basis

16

{w1 , . . . , wn }. By Theorem 6 of last weeks notes, we can find a linear transformation T : V W such that T v1 = w1 , . . . , T vn = wn .
By Theorem 3 of last weeks notes, w1 , . . . , wn must then span R(T ).
But since w1 , . . . , wn span W , we have R(T ) = W , i.e. T is onto. By
Lemma 2 of last weeks notes, T is therefore one-to-one, and hence is
an isomorphism. Thus V and W are isomorphic.

Every basis leads to an isomorphism. If V has a finite basis =
(v1 , . . . , vn ), then the co-ordinate map : V Rn defined by
(x) := [x]
is a linear transformation (see last weeks homework), and is invertible
(this was discussed in last weeks notes, where we noted that we can
reconstruct x from [x] and vice versa). Thus is an isomorphism between V to Rn . In the textbook is called the standard representation
of V with respect to .
Because of all this theory, we are able to essentially equate finitedimensional vector spaces V with the standard vector spaces Rn , to
equate vectors v V with their co-ordinate vectors [v] Rn (provided we choose a basis for V ) and linear transformations T : V W
from one finite-dimensional space to another, with nm matrices [T ] .
This means that, for finite-dimensional linear algebra at least, we can
reduce everything to the study of column vectors and matrices. This
is what we will be doing for the rest of this course.
*****
Invertible linear transformations and invertible matrices
An m n matrix A has an inverse B, if B is an n m matrix such that
BA = In and AB = Im . In this case we call A an invertible matrix,
and denote B by A1 .
Example. If

2 0 0
A= 0 3 0
0 0 4
17

then

A1

1/2 0
0
1/3 0
= 0
0
0
1/4

is the inverse of A, as can be easily checked.


The relationship between invertible linear transformations and invertible matrices is the following:
Theorem 10. Let V be a vector space with finite ordered basis ,
and let W be a vector space with finite ordered basis . Then a linear
transformation T : V W is invertible if and only if the matrix [T ]
is invertible. Furthermore, ([T ] )1 = [T 1 ]
Proof. Suppose that V is n-dimensional and W is m-dimensional; this
makes [T ] an m n matrix.
First suppose that T : V W has an inverse T 1 : W V . Then
[T ] [T 1 ] = [T T 1 ] = [IW ] = Im
while
[T 1 ] [T ] = [T 1 T ] = [IV ] = In ,
thus [T 1 ] is the inverse of [T ] and so [T ] is invertible.
Now suppose that [T ] is invertible, with inverse B. Well prove shortly
that there exists a linear transformation S : W V with [S] = B.
Assuming this for the moment, we have
[ST ] = [S] [T ] = B[T ] = In = [IV ]
and hence ST = IV . A similar argument gives T S = IW , and so S is
the inverse of T and so T is invertible.
It remains to show that we can in fact find a transformation S : W V
with [S] = B. Write = (v1 , . . . , vn ) and = (w1 , . . . , wm ). Then we
want a linear transformation S : W V such that
Sw1 = B11 v1 + . . . + B1n vn
18

Sw2 = B21 v1 + . . . + B2n vn


..
.
Swm = Bm1 v1 + . . . + Bmn vn .
But we can do this thanks to Theorem 6 of last weeks notes.

Corollary 11. An m n matrix A is invertible if and only if the linear


transformation LA : Rn Rm is invertible. Furthermore, the inverse
of LA is LA1 .
Proof. If is the standard basis for Rn and is the standard basis
for Rm , then
[LA ] = A.
Thus by Theorem 10, A is invertible if and only if LA is. Also, from
Theorem 10 we have

1
[L1
= A1 = [LA1 ]
A ] = ([LA ] )

and hence
L1
A = LA1
as desired.

Corollary 12. In order for a matrix A to be invertible, it must be


square (i.e. m = n).
Proof. This follows immediately from Corollary 11 and Lemma 9. 
On the other hand, not all square matrices are invertible; for instance
the zero matrix clearly does not have an inverse. More on this in a
later week.

19

 
  

 !"#$&%')(*+, -. 0/-1

2 3*%'#4# 5 678+


9;:  < 6"7*%'(*&=#>*)(*? 
9;@ &ACBD A4&*FEG%'7C6E

HIHIHJHIH

: K(*? %'(C?I*FK)"%'
9ML (ONP)0RQSUTVI(*)WXQSYA*"7OK)"Z[# (\5)6"]5)#$& 6"Z&[# < 6"7*%'(*&
5 #$& 6"WK(*7^N_%'(*)6`&6&(*"ab 6"E^c&%')(*`&ZEJ&6"%'#-2dKe5 fN'6)7CgIEG(
&%')(*7Kh%_a` (CZ#>K)(*?)=&CZK)"%'WU&*([&*i# j 67*%_(KR5 # 6F)(C7
E^6%_#d)N_^#>*)(*? -fkd QlQmi"&AC7Cgn*%'d3**(* EG(* (EJ 6"i#)6$abA*N'N.g W
)(*7!opAK)(\%_aqgG$C)#$&N_gG* Qr#>K)(C? %'(*?s&*hK)%_S#>*)(*? t&*=# < 6"7*%'(*&
5 #$& 6"h(*7nEJ6%'#9vu $eTV=U? %_(Q,%_[# j 67C%'(KR5)# 6- @ A*3*3U ZQS]Ke5 IG5 #$& 6f"3K)#
wx)(*7y<Qmz 6"7*6"7{K)"F|W8|~})a&Kc=5 #&)6s"3K)#)- @ A*3*3U ]QSJN'
Ke5 z5 # 6]{%'(wJ-y4C(M (*!#)(Q,6%.&!D)][# <)67*%_(K&G5 #&)6
%_*6tQ,%.&Y6"3U#$,&I|{ X&pA*, C&)%'(*%_(*?z\_i )6mQ,%_6""3#,&\_4*FoAC"%' (%'4(CQF+* Q6Gp )(*7p 86N'&7
9v )6"&AC(K&N_g)W*%'FopA*"&%_ (D#e)(e)"%'N_gG6 N.5 7Q,%_D*I*N_3)a&C
%'7*(p%_<g^ 36& 64e+w w (wG-SgY7*$K(*%.&%')(8WQSR* 5)
e~]
(* QO#)(p5)60X&*%_opAK%' (F&dE^6%_#WCACQ,%.&R,<Q,%_"+2QSSEGeA*6"
&*G7* EJ)%'(wA*%_(*?n*GK)%_F|W2*ACs&C^6&(*? JwA*"%'(*?z&CJK%'s|~}P
4*%',? %.5 
e8 p \ 
4ACQSR(CQp(* Q* QG# (\5 6"ab6 EK)%_,|&IK%',|~}P+
\  e8  \
-_
L ag) A[N_%')W*&*F<QS^K)"d|Ke5 ["#e)(C#N_N'7n)#>[)*6"J (&*s6%_? \"
K)(*7%_7* 

9 
 u dwl W*)(*7z# (C%'7C64U)&!*f"&)(*7K)6"7z 67*67nK%'
|+  >\)(*7s4(* ( j"&)(*7K)6"7f 67C67R*)%_8|~}+ "0e  su $eTVF3*%'#>y!5)# 6FRF6)(*7* E&egyD+1
!\$-R4*( (*]#)(

)(C7\  #
e)"%'N_g^#>*#>!Kip #
" %$
"&s $ qQ,\g*9 kd QN_eTVfQm)6[ A!e8  -I4ACsQS^6I)3*3CN_g%'(*?zv&zN_EG(\&F)aS|
)(*7YQ,6%.&%'(C?Z&*E%'(Y&6EG4)a|~}'- @ %'(*#
S  >\` 0 &\` /  e( ' /  s
)(*7
 e `) e` / 0 e *  / 0+ R
Qmf&pA*sK
~ "-, , $
, ,
F#e(n%_(*7*75)6"%_aqg!*fab 6EZACNPY C-_ $WCQ,*%_#>n%_(Y&*%_4#e)"RU# EJ

".& s/
 $ 0" ,, , , $ " %$
kd)Z&KI~  %'=7C%_B6(\fab6 E ~ W~  W~ 6]~ -  6d%'(*0>)(C#)W
QmFKe5 
8   1"  2$
bQ,\gCcWKQ,*%'N_
e~ #
"  R $
bQ,\gCc-=k)&i)N'"J&*]e8 %',&*R%'(\5 6"Z)ade8  #e(g  ARQ,pg
&*%_4* ACN'7zf*F#e)")WKQ,%_* AC,7*)%'(*?I)(\gzEJ&6"%.^EZA*N.&%'3CN'%'#&%_ (
943156  879 :
; - u 4w Uh&*h3K)#=)a2)N_NN'(C?)&*<C&C%'m*)4iK%'
|+1; =)>@?BA$WC)(*7nGK%',|~}U+1D C(EFEHG"- @ %'(*#f&*F%'7C(\&%.<gYe)3*3*N_%'7Y
]g )67zg%'N'7*4&C6fabeW*QSsKe5 
e8; IKIRQTJ!SVLMUXLDWVNPO O ; \
/

%-V)-2&*,%_7*(\&%.<gZ (IN_(*?)*`%'X*64ab3U6Xg )67-`4pA*`ab 6)(\g]N'(*?)


UW
\ I J!LMLDNPO e8 II QTJ!SLMUXL NPWVO O p IRQ S UXWVO p IRQ S UXWVO
4ACZab 6R%_(*"&)(*#)W`%_aF\ I QTSVUMWTO & Jby{%'sab A*6sg\)6"7*>WX&*(r\ I J!LMLDNPO
EZA*"oA*)N \ & ` 0/)f %-V)-`^%',)N_Z<QSN_5)sab>$9;:  (\5 6"N_g WpQS* 5)R~ IRIKQJSLDUXLDWVNPO O 0 \tb%-V)-QS,Ke5 F hg )67C3U6Xab)>$9 4*REJ6%.{8 %'4#eN'N'7Y&*

   !"#  |$%
| } 8%_h%'h*ZEJ&6"%.zQS]A*ZYEZA*N.&%'3CN_gY\gQ,C(yQmZQm)(\f&Y# (\5 6"F|
# j 67*%_(K&i|~}'-'&60g^N_ "N.g]3Ue)p%_(*?*W ~  EGe)"A*6t* Q EZA*#>^)a
| } N_%'4%'(z| )("A*"d)se8 II QTJ!SVLMUMLDWTNPO O EGe)"A*6,* QEJ)(\g!ab$dN_%'=%_(]g )67K$9;: K)(*? ]aS# <)67*%_(K&RE^c&6%_#=)6"I)N_QmeghopAK)6"qQ,\g*(*7{)N_Qmeg
%'(\5 6"&%_*N'GqQ,\g*9 
u $swx+1+*  z$W )(*7y#)(*%_7*6h*i<QSYK)"=| +  , , 
)(*7z| } + ,  , em)aXwG-4*(
-.  /0
e~ 

bQ,\gCc9 
@ AC3*3)fQmFKe5)R]EG%.&AC6=)a2#)6U (z7*%'e%'7C2143  )(C7#)60
 (vEJ)(*eC%_7*5143 EG N'#A*N_)- u !w Uz&*5 #$& 6J3K#aF)N'N4"A*#>
EJ% A*6Wy%.]K)I(M)67*67K%']| +1 6173  173Z$-98=(*Y#e(vN'
A*:("AC"=*iK%'h| } 61 3Z4)a#)6U (y)(C7[eg? (D& EGibQ,*6ZQS
)6Y%_? (* 6"%'(*?&*Y#>*EJ%_#e)Nm (C7*W#)-.Wm(*7O&6&%_(*?ye#>MEG N_#ACN'Y)
%'EG3*N.g*zA*E ah%.&]#)EJ3U (*(pW&pA*173  <;=1 '/>;?3 )(C7
143ll4;@1 'r7;A3Z-`4*(QmFKe5)
~ " / 2 $ 
&*%_t#e)(YUf%'(\63C67)teg%_(*?]&KcB143  # (\>)%_(*=F EGt)a2#e)6")(
)(*7;/D EGGa=eg?)(8WmQ,C%'N'5173 # (\&)%'(*zn&)E )ah#)6U (;)(*7r

& E)a g? (8-S4CR%_(p5)6"s#>K)(*? F)a#c < 6"7*%'(Kc&fEJ&6"%.^%'


e8 "~ , " /s R$ 

&*%_#)(ZUS%_(p6"3*6$&7I g%_(*?h&*X(Z El)a*#)6U (Z%_oAC%_5)N'(\


RtEG N_#ACN'2)a173  )(*7 's/,EJ)N'#A*N'a143GWQ,*%_N'S)(] El)aKeg?)(
%'opA*%_5)N_(\m^=EG N_#ACN',)a 173  )(*7 R=EG N_#ACN')a 173J-Xkd)h* Q
&*Y%_(p5)6"YEJ&6"%.7*](*)ZoAC%_&^Ke5 Y&*!QmegO (*^EJ%_? \Z(K)%.5 N_g
$3# )ab 68%_(*"&)(*#W?)%_5 (f&*`a )#$& 68aK/t%'(=*`#)(p5)6"%')(iEJ&6"%.Z8  W
 (*tEG%'? \$3#Sha )#$& 6Xa /d%'(Z*4%'(\5)6",# (\5 6"%' (IEJ&6"%.!8 
%'(*0&e7QSR?)"6&)(*?)s(C?\%_5)R(pA*EZU6")N'N8 5)6,&*s3*NP#)-dbG3*ACd%_
)(*)*6hQmeg W~"%'(*# 143 # (\>)%_(*d<QS&)EJd)aeg? (8W8Q,\gyC A*N'7C(8TV
 g? (#)(*%_")a , )aI EJ N_#A*N'=a 173  n4*%_(*Y)U AC,%.9 
b4*%'Y6&C6YN'(*?)pgv$C)EG3*N_y%'! (CN_gMab 6!3*\g%_#0 j 6%_(\&7
"&AC7*(\&]Q,*{Ke5)" EGY$3)A*6"zy3U#%P)Nt6"N'&%.5%.<g $5 6"g )(*N'
#e)( &cabN_gvp%_3 *%'^$C)EG3*N'e$- 8f(Cy)aF&*[abA*(C7K)EG(\>)Nh# (*#3Cz)a
3U#%')N26N'&%.5%_<gY%_K="3K)#Z)(*7n&%'EGs* ACN'7UR6&7[& ? $&*6=)
s"%'(*? N_t5 #&)6m3*)#WC)(C7J&*7*%_B6"(\m)*6"5 6SA*d7*%_B6"(\K)S
EJ)A*6"F3K)#s)(*7z&%'EG)9v )6m%_EJ3CN'%'#%_<g)WN_mA*,)"A*EG=&Kt3K)#f%'t)(*$ j7*%'EG(*"%' (*)DN p3U 3*N_h#)(
EJ 5 d%'(G (*N.g]<QmZ7C%'6#%' (*WQ,C%'#>^QSdQ,%_N'NK#eN'N6%_? \m(*7!N'$aqe- u $eTVm&eg
&K,)*6"5 6dEJ)A*6"f&%'EG=%_(zg)e)6"WU)(*7z"3K)#s%'(zN_%'? \" g )69vu $eTVF&egy&*6G)6"I<QS *6"5)6W dN'%'#I)(*7Dm  -G dN'%_#]%'F(=  
   WmQ,C%'#> EGe)(*G&Kc^"*[%'J(*)!)##N'6&%'(*?C-S  %'^)(*)*6

%'(*6"&%')N, *"6"5)6Wh*AC^&6&e5)N'N_%'(*?YDC7 3U
7 
z&*[6"%'? \eW)
EJ)A*6"7\gY hN_%'#B **6 
=%'4)a#)A*6"s*F3U7n)aN'%'?)p9 h(    %'d EG*%'(C?JQ,*%_#>[K)3*3U(Cfh^3U#%_K#Z3U %_(pd%'(n3K#])(C7
&%'EG)- h(\gG<Qm]$5 (\d6h"3K6&7Y\g^" EG=)EG A*(\ta~&%'EGd)(*7!" EJ
)EJ)A*(\!)as7*%_">(*#B f* Qm$5 6z&Cy)EG A*(\Y)aF&%_EJn)(*7 7*%_"&)(*#n&K
3*)6&4&CE 7C3U(*7*, (YQ,*%_#>z *6"5)6%'t3U6"#%.5%'(*?*- )6t%'(*0>)(C#)W
hN'%_#ZEG%'?)p=EJ)A*6"Z&KcF5 (\ ##AC66
7 !g)e)6"sN'&6F)(*7 & N'%_? \"
g e6F&z&*G6%_? \Rat5)(\ WQ,C%'N'Gm)EG%'? \FEGe)"A*6I&CG7C%'"&)(*#
)(*7Y7*A*6&%_ (!U<QS(n&C=<Qm]$5 (\d7*%.B 6(pN_g)- L (!&C%'t#)WK%_mA*6(C
&

 ACf&* EGeA*6" )F##A*6"6%'(C?^g)e)6"RN'&6F)(*7MGN_%'? \0 jg )6h


&*  8)a5)(\ {$9vu $Yw 7*(C)&z&*5 #&)6^3*)#n)af)N_N43)%_*N'7*%_3*N')#EJ(pJ%_(vU)
3K)#D)(*7 &%_EJB =&*%_!%'!<Qm j7*%'EG(C%')(K)Nd5)#$& 6Y"3K)#W=U#eA*yQS
)6i)"A*EJ%_(*?^"3K)#R&^R (*$ j7*%'EG(C%')(K)N-f L ([6"e)N2N'%.ab)W3K#Z%_*6
7*%'EG(*"%' (*)NW\(*7^"Z3K#%'EG,%'ab A*67*%'EG(*"%' (*)Nq-2iEGe)"A*6,&C%'(*?
%'(n*%',5 # 6=3*)#W hN_%'#RK=JAC(*%_h)a`N'(*?) mN'T d#e)N_N%_,&*     
  
6  Wf)(*7vA*(*%.)ai%'EGy G*
       - 4pA*[%_(r*) 5)
$C)EG3*N'WX%_atQSY#eN'N{*^5)# 6iab6" E $5 (p  &y5)(\ JWX*(O
:
;

 = >:? ' & ;

 
 8G) = >:?-FqT N_N)7* 3`&*# (\5)(\&%_ (
&Kin7C%'3CNP)#EG(\ia4N'(*?)&%'({&*J6%_? \i7*%_6#&%_ (D%'s3 "%_%_5 WQ,*%_N'
7*%_3*N')#EJ(\R%_(D*IN'$aqR7C%'6#%' ({%'F(*?\%_5 e$-J4ACi hN_%'#]A*R&C
 67*67YK)%_F 

 
 8G( = >:?H

  = >:? `&Z"3K)(!&C=3K#swJ9;@ %'EG%'N')6N.g Wpm zKt&*f 6"7*6"7zK)"%'s E 
G = >:?H E = >:?)$4*"RKd)6"s6"N'&7\g!*!   # "      
E  = >:?


 $
G* = >:?F
E %
&G* = >:?
&
&



  = >:?F  E $
&G  = >:? '
E  = >:?
b &C%'f%'fU#)A*"Gatm)8T f5)& N'#%.<g 
H27C%_B6(\s5)N_& #%_&%_=?)%_5 I7*%.B 6(p
&6&(*"ab 6"E^c&%')(*Wc)a#)A*6")-X v7*6"%_5&%_ (s)aK&* u )6(\('S&6)(*0ab 6EJ&%_ (*
ab6 E*)`%'(C"&%'(8TV23 0&A*N'&)a*6N'&%.5%_<g=%_(C)d7*%,+G#A*N_W*AX%'2Ug )(*7
&*F# 3Usa*%',#)A*6" $- L ()&C64Qm)67*W*QmsKe5 
e8; I<I.;-14L03>/ = 218 2143.4573.6 57N6 N Q98DQ(S 8 U0SV: U0-: ; L0/ 1?3.= 8Q98DS Q(U 8 O SVUXO #
"
 &
 & $
&

&

9;@  EGi$C)EG3*N_- @ A*3*3U ] dN'%_#sEG%_&hA@)"y)aN'%_? \]b5)(\ D$WUQt%_&


ab 6i (CJg )6ZQ,%_* ACREG5%_(*?*W`)(C7EG%_Z)(*&*6@)"O)a,N'%_? \Yb5)(\
Z$- u $h!7C(*)R*s5)#$& 6ab6 E  & J-44*(ab6 E dN'%_#)TV,3)%'(\)a
5%_QFWJ# (*%_"t)a (*dg e6,)(*7ziN_%'? \" g )6= U#eA*f"*f7*%'7C(8TVmEJ 5)
$<Qm($5 (p>+
\ I<; 143>= 8 2143.576 N Q(8 SVU0: ; 1?3>= 8 Q(8 SVU O 0
" % $

)(*7Y&pA*
\ I.-L0/ 2143.576 N 9Q 8DS U0: -L0/ Q98DS U O 0"
 &
 & $ " % $ 1"
 & $ 
&
&
&
%'(D)&*6sQS 6"7*W`S 3U6"#%.5 i5)(\ ##A*6"6%_(*?[
& g)e)6"Zaq60Qt)6"7
)(*%
7 & N'%_? \" g e6,&J*iN_aqd)a`$5 (\ O-4*%_h%'#)(*%_"&(\=Q,%_n&C
)"A*EJ3&%')(KGm)Qm)GEJ 5%'(C?[&y&*z6"%'? \G 
JQ,%.&63U#$J
hN'%_#WS"&*Iab6 E S 8TVJ3U %'(\I)ad5%'Qx hN'%_#Y%_G6"#7*%_(*?D*nN_aq
9  
-]4*%_F)N'"%_N'N_A*"6&d*I3**(* EG(* (D)a:<   6 Y 4Q,Kc
)3*3Ue)6"&hmd%_(*? N_g)e)6ab6" E hN_%'#)TV3U %'(\)a*5%'$Q# EGX
& g)e)6"
Q,*(nEJ)A*6"7\gzm 89 h(*)*6`C)EJ3CN')- @ A*3*3U ",FUeE)aUN'%_? \Qm)`EG%_"&7]pgi EG4)A*6#
5)(\ f%_(IFN_aq0 jQm)67]7*%_6#&%_ (])(C7J* 6"7J\gi EG46#%.5 6hb5)(\
]" EGd&%_EJ,N'&6- @ AC3*3)dKm hN'%_#,3U6#%.5 4$5 (p )##A*6"6%'(C?
 (*Sg)e)6Xaq&6W (*7Z (*SN'%_? \" jg)e)6~h&*SN'$aq)a W5)(\ )*%'%'2)a#)A*6"
# (*"%'0&(\4Q,%.&zN'%_? \S6&e5 N'%'(C?If
-`4pA*,%_a %'S&*=5)# 6tab6)E 
^W*&*(
\ I.; 1?3.= 8 21?3<596 N Q98DS U0: ; 143>= 8 Q98DS U O 0" R $
)(*7Y&pA*
\ I.-L0/ 2143.576 N Q98DS U0: -L0/ Q98DS U O "
 &
 & $ " s2$ " /h/ $
&
&
4ACXm F5%'$Q,$5 (\ )2##AC66%_(*? Xg e6aq&6(*7  N_%'? \" g )6
&Z&C=N'$aq4)a5)(\ i-4pA*,m Y0&%_N'NUEJ)A*6"t*f3U7aN_%'? \t)=

%'(C7*78W)(*Ra&Ci3U "A*NP)aX6"N'&%.5%.<g!%_K&*s3U7[)a`N_%'? \,%'


)N_QmegF# (C">(p
m&R)N_N*%'(*6"%P)N *6"5)6&$W*AC&*,N'%_? \`%'R"0&6"&#>C7
 AC&y 5)6Z<QS{g)e)6"I%'(*0&e7O)a (*)W6"ACN_&%_(*?[%_(m O%_(*?y&*!N_%'? \
IK)N.ad*ab6"opA*(*#g&*G hN'%_#!QS A*N_78-4*%'G%'Z*a EJ AC   
  
 XB#$i%_(D6"N'&%.5%.<gOb6#7C%'(*?zN'%_? \fK)FN_QS6fab6"opA*(C#g)(*7{%'
67 <C%_aq&7 p)3*3C6\)#>C%'(*?dN'%'?)pK)*%'?)*62ab6opA*(*#gZ)(*7]%_*N_A*$ j*%.aq&7$9ML tEJ gG(*tEN'%'d%.eW*ACS&*%_m%.&AKc&%')(^%'"gEGEJ$&6"%'#dQ,%.&!6""3#t
hN'%_#f(*7S 8-`FKe5)
8; I.I<;-14L03>/ = 218 21?3<4593.6 57N6 N Q98DQ(S 8 U0SV: U0-: ; L0/ 1?3>= 8Q(8 SVQ(UX8 O SVU O "~ I.I<;- 14L 3>/ = 218 21?3.4573.6 57N6 N Q98DQ9S 8DU0S : U0- : ; L / 143>= 8Q(8 SVQ9U 8DO S U O ,








"
 &
 & $ , 0"
&
& $ 
#
&
&
&
&
)= (*i#e)([5)6%.aqg[\gnEZA*N_%'3*N.g%'(*?I&*Z) 5)Z<QmzEJ&6"%'#d ? *6]bQS
Q,%'N'N7*%'"#A*"E^6% i%_(\5 6"%_ (I%'(IEJ)6t7*$>)%_N*(*QSC- L (I)&*6`Qm 6"7*W
E $
G
 = >:?F


 %
 8G
 = >@? ' 

  = >@?
&
&

E  = >:?F



 %
 8G
 = >@? ' 

  = >@?

4ACab 6`%_(*"&)(*#)W ("A*"&  dN'%_#)TVXg )6S)6"t&%'EG$ j7*& %'N'&7iQ,*(JEGe)"A*67


pgDS 8Wm 8TVfg e6Z6]&%_EJ <7*%_NP7Q,*(EGe)"A*67\gDm  +R%.atm)
EG%_&fN_%'? \Gb5)(\ [} $W~Qm)%_Fab)6f (*]g )6sQ,%.&*)ACsEJ 5%'(*?Dq&*)A*? D)a
# A*6"R"&%_N'N~7*6"%_aq%'(*?G 
F)dEGeA*6"7[\g hN_%'#e$W)(C7[EG%_EG 6"sN_%'? \
5)(\ } $Wt*(v hN_%'#zQ,%'N_N436#%_5)$5 (\ } )G##AC66%_(*?O
& g)e)6"
aq&6`)(*7 & N_%'? \0 jg )6&=&C46%'?)pX)aU5 (\ [} \&*%_X%'X# (*"%'" (\Q,%_
m n6&e5 N'N_%'(*?G 
cW*Afm  T ,g )6hKdU(&%_EJF7*%_NP7z& g )6b \g%',%_(*)d#)(p6&)7C%'# 6"gYab)6d dN'%'#)TV4g e6hJUs%'EGF7*%'N'&7Q,*(
EJ)A*6"7s\gFm 8Wc)(C7sab 68m 8TV~g e6&,X%'EGX7*%_NP7=Q,*(REGe)"A*67
pgG dN'%'# Y4*%'S%'%_EJ%_NP)6R*]143  #143iX5)6"A*F1 #3ZX$C)EG3*N'+ (C
EJ N_#A*N' 143  # (\>%'(*<QmI EGS)aeg? (b3*N'A*S EGh#)6U (WQ,*%_N'
)(& E)a g? (#)(*%_"&,)a (*FEG N'#A*N_=)a'143  bEJ%_(AC4 EG7143i$W
)(*7&*%_]%'I(*)G#)(p6&)7C%'# 6"g)- &# 6GUKe5 N_%'? \N_g7C%_B6(\Gab6" E
#eNP)6"4 EG%'EG>HIHIHJHIH
:  j 67C%'(Kf#>K)(*?)R(*7nEJ6%'#
9vu $ +fw w UyN'%_(*e6J&6)(*0ab 6EJ&%_ (vab6" E 5 #$& 6Y"3K)#Dw
&z%_N.a -Y @ A*#>{&6&(*"ab 6"E^c&%')(*=)6"I EG%'EG=#)N'N_7=
 <  
   $W
#e)A*"G*g{EJ)3{ (\&Y*EGN_5 >-f%_5 (D)(\g{K)%_f| )atwJW~QmI#)(
ab 6E EJ6%. , 63*6(p%'(*?%_(v&CK)"%'J|- 8haF# A*6"W%.a=QS
#>K)(*? I&CG*)%_Wab6 E |;&nY7*%_B6"(\sK)%_W2&eg{| } W~&C(*IE^c&6% 
#>K)(*? hN'CW&  - d QS5)6W&CF<QSJ)6f6"NPc&7 9
   u =w UiI5 #$& 6d3K#RQ,%.&<Qm!*)h|~}8(*7|WU)(*7nN'
 + 8 Uz*z#>K)(*?)ah# < 6"7*%'(*&ZE^c&6% ab6" E |r&{|~}P- u 


+wl wlfsN'%_(*e)6&6)(*0ab 6EJ&%_ (8-4*(D , )(*7{ , 6h6"N'&7


pg^&*fab 6"EZA*NP
,    ,
9 7`FU? %_(YQ,%_&Y*F \5%_ A*,%'7C(\&%.<g
 re e
)(*7Y>)R*)ZbA*%_(*?I4* 6"E fab6)E NP"4QSTVh(*&&m&G C>%'(
,  e8  , e8
@ A**0&%_AC&%_(*?~   (*7 e8 e8  ,  , QmJ C&)%'(y&C
u EJEJC9 
u $eTV=>)]J5)6"g%_EJ3*N_R3U 60ab N_%'GEJ7*NWKQ,*6"Z&*Z3U 60ab
N'%'I# (*%_"=)a` (CR<g3i)a`"#> N_T &eg R 0&#>$W8(*7[ (*s<g3R)a
#e)"bN'T ]e
g  @ 7* N'N')6W`%'(\5 "7;%_(M{EG (*$gOEJ)6IabA*(*7-O4pA*
 3 60ab N_%'vN'%_5)y%_(l <QS j7*%'EG(*"%' (*)NR"3K)#;wGWiQ,%_l *)%_y| +
*GVE

 E

>:? - u T ^&egvKJ 5 6!*# A*6"[)afg )6WA*(C%_J)a
R "&#>{%'"A*]n7*%.5%'7*(*7)am<Qm[7C N'N')6WQ,C%'N'G7* N'N')6F%'(\5 "7O%'(
&*EJ)(*gIEJ)6abA*(*7^QS A*N_7^)6(!/s3U6#(\eWs&Kd7* N'N')6`U#)EJ
 /R7* N_NP)6"-=#e(z*(z7*$K(*=*fN'%_(*e)6&6)(*0ab 6EJ&%_ ( +w wJW
Q,*%'#>]7*(*)`* QvEZA*#>Gh3U 6""ab N'%_Q,%_N'N)3*3*6"#%'&SQ,%_&C%'(Z (Cmg )6-, L a
 (*dQm)(\&tZ7*Z&*6m 3U6&%_ (*m)(^&*d3)6"ab)N'%'CW\A*#>)S*ACg^)(*7YN'N
"&#>WK#)-.W*&*%_mQm)A*N'7z6opA*%'6"s&*64N'%'(Ce)6&6&(*"ab 6"E^c&%')(* *AC,%'(!*%'
$C)EG3*N'=QSfQ,%'N'N ("A*"d)(KN_2g 'f3*N')%'(Y)N'7z3)6"ab)N'%'i)3*3*6"#%P%' (- @ %_(*#
i0
; *GVE

*`4
;  GVE

'v/
; E

>:?
i07
; E

;>:?) \/ 
; E

>:?
Qmf&pA*sK
, 1
" / ) \/ $
kd QrN'T SEJ)AC6 r%_(!i7*%.B 6(ptK)%_- @ A*3*3U =K sTVm0&#>JK
3*N_%_eW`"y&KI)#>M N'7OA*(C%_I)a @ #>U# EG]<Qm{A*(C%_&]a=kQ,"#>


  GVE

 1
*GVE

C$-z hN_*WA*3*3U "^ab 6s EG^6"e)" ( 7C#%_E^N.
%#'ec&%')(sQmfQ,%_z&]EGe)"A*6FEG (*g^%'(Y#(\&%'(*0&)7z)a27* N'N')6- @ ]QS
(* QKe5 R](*QK)%_4|~}*    GVE

1  G"-4*(QmsKe5 
  GVE

JC1
 GVE

'M E

;>:? 
1  G  GVE

'MC C E

;>:?H

 e8  1
" C 1
C C2 $
Q,*%'N_f%'EG%'N')66e (*%_(*?I? %_5)
 , e8 " /  $
4AC

,   ,  , " C
C 2$ " / ) \/ $ " /  %$
Q,*%'#>%_EJ3*N_%_Km&
,  0" e ) \/ $
4AC
Z  GVE

* ;   GVE

'  ;@1  G
i1  G"r ;   GVE

'  / ; 1G
4*%'s#e)()at# A*6"^UG7*7*AC#7O7C%'6#N_g[ab6" E  A*6F\g3)*"<S%.R%_F%'(
"&6"A*#%_5)FJ7CG"^(*7I# EG3K)6"=&K4Q,%.&z&*FEJ&6"%.^# EG3*AC&&%_ (89
 tQS ;yEJ&6"%'# iW )6"f&)%_7Y&I     %_a (*fK
  , ab 64 EGf%'(\5)6"%'*N_ ;{E^6%   9 4ACn&CD<QS EJ&6"%'# , (*7 , )6D%_EJ%_NP)6- @ %'EG%'N')6%.<g;%_n(
%'EG3 60>)(\,(*&%')(%_(nN_%'(*)6,)N_? *6J(*7nQSRQ,%_N'N86"&AC6(nJ*%',3*6" 36"<g
NP6HIHIHJHIH
@ ACBD)U AC4*FEJ%_7C&6E

9 4*FEJ%_7C&6E Q,%'N'Nf)(nk 5y WK4*fA*"AK)N8&%_EJ=)(*7z3*NP#G @


 / W
e3*E )+1
)]3*E^$9 4*6"R6h*5)FoAC"%' (CWK)EJf)aQ,*%_#>zKe5 f<QmG3K)60&-`4*FoAC"%' (C
Q,%'N'N\USdEG%.F)a     6     6   #)EJ3*A&S*7*%'EG(*"%' (s)a**%'
5 #$& 6s3*)#B #)EJ3*A&]&*IEJ&6"%.[)aS*%'fN_%'(*)6=&6)(*0ab 6EJ&%_ ( ~$&#)- $W
          ^ 3*6" 5 Y&KcZ&*%_i&6)(*0ab 6EJ&%_ (%_iN_%'(*)6 3*6"5)
&Ks&C%'si%'sn"A**"3K)#B S3C6 5 G&Ks&C%'si%'RnK%'<X#)- $W  
  IbQ,*6J EGIpg3U)&C])U ACF5 # 6WXN'%_(*e)6=6&)(C"ab 6"E^%' (CW
&#-{)6^? %_5)(8W)(C7O EG^# (*#N_A*%_ (EZAC"]U!7*7*A*#7$W)(C7   
    =bK(*7ZN_%'(*)6S6&)(*0ab 6EJ%' (8WpK%'W*#)-`Q,*%_#>)$g4#60>)%_(
3*6 3U60&%_>- L (rC 6"W=&*{opA*0&%_ (*zQ,%'N'Nh{EZA*#>N'%_)[&C D%'( &C
* EGQS 6{q&*)A*? GN_%_"&N'd*%_t* 60&6W7*A*f&]%'EG=# (C"&6)%'(\>$9;: )N'#A*NP 6)6"R(C)f)N_N' QS7)(*7nQm ACN'7(C)hUiEiA*#>A*"])(\gpQteg  g) A
Q,%'N'N\(C)XKe5)t&h7Cf)(\gZ6%_*EG&%_#EJ 6"S# EG3*N'%_#e7F&K)(iE^)(C%'3*A*N'&%_ (
)ai)(*$ j7*%'? %.!(pA*EZU6"-  6Y%_(*"&)(*#Wh (C{QS A*N_7 (*)zKe5 {&7*M)(\g
$&(*%.5  F)A*"%P(^N_%'EG%'(Kc&%')(]# EG3*AC&&%_ (*>- QS5)6WR%_(*? N_=
; 
%'(*7*z#e67YQ,%'N_N8FN'N' QS789 h(\g^* 6"E 6tN'EJEJRQ,*%_#>z%'m0>7z%'(!*f(*)4 6m%'(!&Ch& 
#e)(vnA*7 Q,%_&C ACJ3*6)a=%_(v*EG%'7C6"/E ,)(v$C)#$!#%.>%' (M%'G(*)
6opA*%_678W) g%_(*?d" EG&C%'(*?N'%_)R0ab6)E&*N'#A*6(*)2Qmp(* QO&K-_-.-V
Q,%'N'NKUh"A+G#%_(\e-d 4Ch"&&EJ(\&t)a &*=6"ACN_&m)63*6" K)*N.gJR? 7
&*%_(*?=&F3*AC)(Ig) A*6`%_(*7*$Z#e)6"7$-  A]Q,%'N'N  *(*7I&fEGEG 6,% '4)(\gi)a
&*F3*6")ab,)a&*s6A*N.&WU)N.&*)A*? z EGF)a*F*)6"d3*6)aoAC"%' (C
E^egzUR"%'EG%'NP6F *Ah(*h%_7*(\&%_#e)NPm&^" EGR)a&*R*)6"&6h3*6"abd? %.5 (
%'(Y&*FN_#A*6f(C)&9 3*6&)#$&%_#tEG%'7C6"EnWcQ,%_&]" N'A&%')(*W *)`(G3*6 5%'7C7I (]&*4#NP)"XQm
3K)? HIHIHJHIH
c&6"%P)N # 5 67pg^&*FEG%'7C6E
9 4*IEJ%_7C&6E# 5 6s5 6"gp&C%'(*?zA*3{&!*] & (*)W~%-V)- @ #%' (C
 -_$ 0/- & ab6 E&*I& b$#N_A*7*%_(*? @ #%' (M <- W~Q,*%'#>{Qm)R(C)s# 5\
67$- L (J)*6`QS 67CWpg  AG*)A*N'7IUd*N'tsAC(*7*6""&)(*7!(*7GQS 6"iQ,%_
&*fab N_N' Q,%'(*?i# (*#3C+
e


9;@ #e)N')6 X5)#$& 6<5)# 6Z"3K)#Bm"A**3*)#Bm3*)( 3K(*(*%'(C?[$ N'%'(Ce)6s7*$


3(*7*(C#+\N_%'(*)68%_(*7*3U(C7*(*#+\K%'<)7*%_EJ(*%_ ( cN'%_(*e)6&6&(*"ab 6"E^c&%')( 
(ACN'N3K#+ (ACN'N'%.<g6)(*? B6)(* 8 6"7*6"7[K%'< # < 6"7*%'(*&f5 # 6 8EJc
&6% Z6"3*6""(\>%' (G)a =N'%_(*e)6&6&(*"ab 6"E^c&%')(  ACEnW\"#e)N')6X3*6"7*AC#eW)(C7
3*67*A*#$t)aN_%'(*)6`&6&(*"ab 6"E^c&%')(* pACEnW#eNP)63*67*A*#$eWC)(*7!3*6"7CA*#m)a
E^6%_#<8 (* j < (CR&6)(*0ab 6EJ&%_ (*<  (\&!6&)(C"ab 6"E^%' (C U%'(\5 6"&%_*N'
&6&(*"ab 6"E^c&%')(*F %_ EG 6"3**%'"EJ&%'" EJ)63**%_#h5 # 6d"3K)#9  A[Q,%'N_N  (*7{!p(* Q )U ACd&* u )?)6&)(*?)i%'(\63U N'&%_ (nab 6"EZA*N'CW
%'(*#%'7*(*#zEJ&6"%'#W 6]#>K)(C? $ j)aP <# < 6"7*%'(*&YEJ&6"%'#-4*6zQ,%'N_Nt
5 60gN_%_"&N'F(*7[ab 6 F)A*"%P)(N'%_EJ%_(K%' (Y%_(n&CZEJ%_7C&6E qg  A[#)(yA*"
%_eW)*AC (*4#)(G)N'"f? \gB("A*"\g]A*"%'(*?F*%_?  j#>* N*N'? *6&=F"A**0&%.
&AC $-  A]Q,%'N'N *(*7I&Fp(* Q;*4%_? \c%' EG, L < $& L"LL )a=5 #&)6
3K)#)W\(*7Rg) AiQ,%'N_N  (C7R&hp(* QM)(\gs(*)&&%_ (FQ,*%'#>Z%_# 5 6"7] (CN_g
%'(*!C6#%'])a4&C^& -  AQ,%'N'NB (*7O&[EGEG 6,% ']&C
3*6)ab4)a)(\gY)a2&*f* 6"EG,%'(Y&*f$ 64&*F(*)HIHIHJHIH
:  EGEG (z A*6"#d)a#)(CabA*%_ (
9 4*%'# AC6R%',5 6"gEZA*#>y Ad# (*#3CW8(*7[ (&*%_(*p%'(*?G#N_e)6"N_gz)(C7
3*6#%'"N.gr))ACz&*# (*#3C- L %_n3*)6"%'#ACNP)6"N_gv%'EG3 60>)(\z(*n
# (CabAC4<QmF# (*#3C&`Q,*%_#>^6t"%'EG%'NP6*A(*)`%_7*(\&%_#e)NW )*60Q,%'t*%'
#e)(nN'e7n&J (*R? "&%'(C?J*)3N'"N.gnN_ "Q,*(&60g%_(*?JJQS 6z (C)TVhQteg
&*6" A*? ^3*6)*N'En-sb4*%'d%',&6ACi(*) ("A*"h)a`EJ&CEJ&%_#W*A=)N_J)a
)&*6~NP)(C? AK)? WAC#>i) )`(*? N_%'"8- L aC (C# (CabA*"%_EJ%_NP)6QS 67*8 U- ?*-&C
)7("#$&%.5 z"*)3*3\gIQ,%.&^*f(* AC(M"K)3*3C%'(*i X&*(Y (*f"%'N_NUEG%'?)pm
)*N'Xd6"e)7R)(*7FQ,6%.&`"%'EG3*N'`"(\&(*#X)(*7s"%'N_N )CN'X&#)EJEZAC(*%'#&
)N.&* AC? !g  AnE^eg^ A*(C7nA*(C3*6)ab"%' (KN8Q,*%'N_f7* %'(C?G"p$WC*AC# EG3*N_$
(\(*#IQ,%'N'NU#)EJ!5)6"g7*,% +G#ACN_iy# EG3*6"*(*7$- d6 L Q,%'N'NN'%_"
 EG,$C)EG3*N'S)a %_EJ%_NP)6X# (*#3CS&*m"* A*N_7^U,7*%'0&%'(C? A*%'"*7 -X4*"
3 %_(\&EJegs)3*3Ue)637K)(\&%_#)W)CAC)(Z%_(K)*%_N'%.<gh&h3*)6&m&Cm# (*#3C
%'mACAK)N_N_gGZ"%'? (!a~ EG=EG 6abA*(*7KEJ(p&)NU3*6 CN'E %_(!# EG3*6"*(*7*%'(C?
&*FEJ&6%PNW)(*7z*)A*N'7s)7C7*67[),opA*%_#>N.gz),3U "%'*N_)9  6   7 7 5 5  6   7 5 
 6 2- O5 # 6"3K)#S# (*%_")a5 # 6W
*AC]%_i(*)])#AK)N'N.gD5 #&)6]%_&"N.a -[4pA*]opA*0&%')(*]N'%_)O  K]%_R&C
7*%'EG(*"%' (Ya4  )/ !) & e{)6"fEJ)(*%_(*? N'<0 >)/ ! & %',Z5)# 6W(*
)

5 #$& 6s3*)#W)(C7 (CN_g[5)# 6s3K)#sKe5 J# (*#3CR)at7C%'EG(*"%' (8-]


oAC"%' (nA*#>[)J0 Kd%'4&CR7*%_EJ(*%_ (z)a,, , , "eO 6J0 K%'
&*Z7C%'EG(*"%' (n)a , ' ,  ' ,  \e %'h)N'"^EG, e)(*, %_(*? , N_ab 6d*Z)EJ
6e (8W2)N.&*)A*? 0 , KF%_=&*I7*%_EJ(*%_ (y)a , , , i+ ,  e
 6n0 Ks%'f*J7C%'EG(*"%' (D)a , ,  ,  ]+ , ' , ,  , '$,  , e )6
,
,
(*)e9ML (vy"%'EG%'NP6R"3*%'6"%_eWX* '6{5 #&)6J[%_]7*%'0&%_(*#Zab6" E * '6{5 #&)6
3K)# pW~)(*7{%_=%'([A*6({7*%_"&%_(*#hab6 E &* '6zN_%'(*)6d6&)(*0ab 6EJ%' (
e-db h(*7z&*(*6"F%',)N_]&* '6G#)NP6,\$943 5      6   7 5  @7 5 5   5   "3K)(       5 \-4*%'
%'=!"%'EG%'N')6,3*6 CN'E-f "&&EJ(\fA*#>)z  Kf%_h&*i7*%'EG(*"%' ()a
0 >) >\   e+ >\   >) e
eJ%'8EGe)(C%'(*? N_"W#e)AC`&*`"  > >   e>  >e

%'4(*)dZ5 # 6d"3K)#)- L ,%'4&6"A*f&K4*%'4"   4Z5)# 63K)#F  
%'(=&C%'~$C)EG3*N_ *AC~K%_t7*%_B6"(\ 
("#e- @ %'EG%'N')6N.g W$%_~%_8(*)# 66"#$
&4&eg=K8*$& 0 & >\   >\  & e (*7 0 e+ >\  0 >) e   >) e

)6ZopAK)N2 t&*$g[EJ g"3K)(y&*i&)EGZ3*)#W~*AC=*g[)6Z#60>)%_(*N_g(*)
&*F&EJf"e9v )6,J%_EJ%_NP)6S6) ( WU%.%',(*),&6"A*F&K%.ag) A[)7C7O) > eS   WK&K
g  A"? $&   - %'6""F)am)N'NW   %'F(*)s$5 (# (\&)%'(*7%_(   W2)N_* A*? 
&*, =p j3*NP(*sw + ,  =>\m+ ,  =  pWKQ,*%_#>%_%_ EG 6"3**%'#d&  eW  
# (\>%'(*7%'(   -mA=)N_*W%.ag )An>)R*iAC(*%' ()aw Q,%_  > e
pW
 (* ("A*"S? *4w  > 
pW\Q,*%_#>^%'F3*NP(*Q,%.&J)(!7*7*%_%' (*)N
3 %_(\X)7C7*7Zh%_-4Ct# 6"6#`0>EG(\X%_&*`w)(*7z  > e ~ ? *6
 J 6:
 %   9     @7 5 5  ;   5    2- "D%'   % [%.aG%_yK
K(*%_N.g{E^)(\gDN_EG(\&-n 5 #&)6Z3K#^%_   %  <     %.a4%_sK
y*(*%_YK)%_-4Cz<QSD(*)&%_ (*I)6"Y7*%'0&%_(*#-  6Z%'(C">(*#W  I%_]%'(
K(*%_ q&*6O6%_(CK(*%.&N_g EJ)(\gr3 %_(\&%'(*3CNP)(*e$WF*AC%'K(*%_$
7*%'EG(*"%' (*)Np#e)A*",%_X*)`hK(*%.&t*)%_ 0 &\   e p-4* '6f5 #&)6
3K)# I# (\>)%_(* ("A*0f (*RN_EG(\eW*AC=%_'6c <7*%_EJ(*%_ (K)N-4CZ$
0 >) >\   e+ >\   >) e
Z%'R*(*%_)WCACZ%.i7*R(*)iKe5 Y7*%'EG(*"%' (
#e)A*"R%.4%'4(C)d]5)#$& 63K#)9  
 5    @7 5 5 5
 5   6  u w UO;5 # 6y3K#)-    
  )aZw %'z(pg;# N_N'#&%_ ( )as5 # 6z%'(rwG- L as&*%_YA**"%'zN'
 /


#N')7A*(*7*6F)7*7*%.&%')()(C7y#eNP)6dEZA*N_%'3*N_%'#&%_ (8WQS]#eN'N      


 $4AC$5 6"g AC*3K#%_YOA*CWf*ACz(*z# (\5 6"N_g)- )6!%'(*0>)(C#)W
0 >) >\   e+ >\   >) e
h%'IA**"h)a   WK*ACd%',(*)dIA**"3K)#z "
%_47*,(*d* 5)i]7*%_EJ(*%_ (8Wab 64%'(*0>)(C#  ;     @7 5 5   5   6 G4*      
 h8)a*N_%'(*)68&6)(*0
ab 6EJ&%_ (+w  %'d7*K(C7{)&*Z"3K)# =4 w + Y
@ %_Z%_Z["A**3*)#Y)ahwI-y4*@     ^(pA*N_N'%.<g8 hs%'R&*!7C%'EG(*"%' ()a
h %.i%_i     - @ ["&&EJ(\&Z"A*#>M)y0*^(pA*N_NS"3K)#!)a  %'
&*6"F 6=0&C4(ACN'N'%.<gs)a ;%_*  F64EGe)(*%_(*? N_- @ %'EG%'NP6N_gh (*4"* A*N_7
7*%'0&%'(C? A*%'"M"6&(*? G)(C7 "6)(*p
    I h   @7 5
5   5 
 6 ^4C%'%_X)(iA*(Cab 60&A*(Kc&m(C)>%' (
3*6 CN'E- L aK (*K)4&6&(*"ab 6"E^c&%')( +wl WcQ,C%'#>iEJ)3*N'EG(\
%'(]w &dN'EJ(\&%_( W wr%'2)EJ$&%'EG26$ab6"67R&=&C2
f)(C 7 
%'6"ab667Z&F)&* 

$- d QS5 6Wp&*%_(*>%' (R%'X%_(i#)( @K%'#$XQ,%_i&C
6&)(*?)
 I h$W~7*$K(*7\
g I h= dD+8  w p- L aS&*]6&)(*0ab 6EJ%' (
%_4  % cW&C
( I hm(* 7  )6h*=)EJW**ACt)&*6"Q,%_h*g!)6=(C)eze5 )%'7[&C%'=# (CabA*"%' (8W L Q,%_N'N&60gnY6ab6h&w)=&*< 6   
 )a
RW)(*
7  S&C     
 $-4pA*4%'(G&*dE^3 :+     7*$K(*7\g
Z, ,  t+ , ,  &\$W**s*(K)N~3*)#s%'   WKCAC,&*s6&)(C? F%', (*N.g^&C
g\ j3*, NP)(C)W*Q,*%_#>n, %_,I"A**"3K)#R)
a   G6 <%_6&W*%'(z 6"7*64&IUs)*N'=JegY&K]&6)(*0ab 6EJ&%_ (EJ)3*
w & WC%.t%'m(*)46"opA*%'6"7Y&*45)60gYN_EG(\4)a  %'4)#$&AKN'N_gG#5)6"7
pg  %_a&Kd%',&CR#)WQSi&egz&* lE^)3C=w    WU)(C7(*) ("A*0
  - L %_,)N'"G(C)6opA*%_67K7*%_B6"(\N_EG(\&,)aXwKe5 F&GE^)3
&i7C%_B6(\tN_EG(\&)a  p&Kct%'`6A*ab 6  %%   X6&)(C"ab 6"E^%' (CW
*AC=(C)hab 6? (*6)N6&)(*0ab 6EJ%' (*- @ !%_(3K)60&%_#A*N')6W%_ag  A{)6"i? %.5 (
&K  +4w  %'I{N'%_(*e)6R&6&(*"ab 6"E^c&%')(8W`g  Av#e)(*(C)G(*#)6%_N_g
)"A*EJs&Kc %_d)(*$ & j (*s 6, (\&!A*(CN'"dKd%',$3*N_%'#%.&N.gY%'(*7C%'#ec&7
%'(Y&*FopA*"&%_ (8 6   7  @7 5 5     7     6   7] 5 #&)6f%'(i,5)#$& 6X"3K)#
w %'f(*)f*I&)EGZ&C%'(*?z)f%.&f# < 6"7*%'(*&i5)#$& 6Jp.!Q,%.&{63U#F
 EGFK)%_d|)awI-  64 (*F&*%_(*?*WK!(C7C(8TVhR]&6&7*%_%' (KN5 # 6] 
6 Q  6# N_A*EG(^)a (ACEZ6&mS)N'N p%_E^egIU=s3 N.g(* EG%P)NW) 6SREJ&6"%.W
 6mFabA*(*#$&%')(G &*f)6"hN'NK5)N'%_7GC)EJ3CN'S)a85)# 6m%'(!F5 #&)6t3K#)9



@ # (*7*N.g W&*# j 67C%'(K^5 # 6[\ 7*3U(*7CJ (&C*)%_G|)]QmN'N


)Y ( &C[5 #$& 6zM%_N.a =#>K)(C? {|)(C7 g  A #>K)(C? y&*y# < 6"7*%'(*&
5 #$& 6d\ Wp5 (^%.aR%_N.aU%'`)3CC78-  6`%_(*"&)(*#)Wp%_a wl *  ;Y`)(C7
] ,  ' & , '!
W)*(IF%'h5 #$& 6b5)(]&*)A*? ]%_T )N'"fh3U N_g(*)EJ%')Nq-.
/0
L aS| + 0 , ,  $W8*(v\ & W8*ACf*%'=%_=(*)f*]&EJZ)
("#$
) ,  ' & , 'M)
K (*f%_,I# N'ACEJ(!5)# 6d)(*7Y&*F)*64%_,]3 N.g(* EG%P)N: )N'N_%'(*?z&*E &*J&)EGQ,%_N'NN')7&6" A**N_J%.a, (*J*(O0Q,%_#>*Z
)(*)*6RK)%_WA*#>)R|~}m+ ,  , e $W"%'(*#J*^# < 6"7*%'(*&I5 #&)6i%'
-. /0
-.
/0
(* Q p. & WCQ,*%'#>n%'4#N'e6N_gJ7*%.B 6(\,ab6)E &

9 4*6"h%')a # AC6dF%'EG%'N')67C%'"%'(*#$&%_ (I$<Qm(zFN'%'(Ce)6X6&)(*0ab 6EJ%' (


RW*)(*7z&*FEJ&6"%.^63C6"(\>c&%')( , )a2&*4&6)(*"ab)6EJ&%_ (s9   5    @7        @7 5 5 
7H 5 @7  5    2-X l 
%'     

B   =%_a WcQ,*(*$5 6 ,^(*7 =s)6SN_EG(\&XaRW)&*mA*E
, ' =y%'s)N_%'( i-^ 6&)(*0ab 6EJ%' ( +2w  #    <   
%_a W`Q,*(C5 6 ,;)(*
7 =)6"zN'EJ(\&]%'(vwJW&* i , '=CG :2, '  =U4*]<Qm# (C#3&F6$ab6f&!<QSn7C%_B6(\s*%'(C? d  (*]*)f&Y7*YQ,%_D
 W)(*7O*Y)&C6ZQ,%_ 6   6  sCACIA*6"3*6%_%_(*? N_gD%.]%'Z0&%_N'N
3 "%_*N'O# (abA*y&C[<Qm*-  6!%'(C">(*#Wd%_(  (*y)aF&Cy* EGQS 6
oAC"%' (CWK (*FK,J"* QK,&*   i ft%_4#N')7A*(*7C6)7*7*%.&%_ (8W
)(*7G EG (C,* A*?)p&C%'EJ)(\`&KcS)(*d*)7GR"* Q &* Z, '/=C`
:, '  =Zab 6mN'N ,z%'(  *3*6" K)*N.g]Q,KSK)3*3U(C7!Qm)SKm*h3C6"(*#
)a*,N'$&6  %_(I*,$ i fX#)A*7^ (C,s)AC&)E^%'#)N'N.gf&*%_(*i)aU&C
3*6605%'(*?h)7*7*%.&%')(s3C6 3U60<gR6&C6&*#N_ 7 <A*(C7*6 )7*7C%_&%_ (F3*6)36"<g 8=am# AC6W&C6G%'Rz%'EG%'N')6=7*%_"%'(*#$&%')(DU<QS("#N_ 7A*(C7*6s#)NP)6
EZA*N_%'3*N_%'#&%_ (*R)(*7v"3*6"6"5)h"#e)N')64EZA*N.&%_3*N'%_#e%' (*C       6   7p-4 N_%'(*)64&6)(*0
943  6  7Y   @7 5
5   ;   
ab 6EJ&%_ ( +w  #)(z>)R(pg^5 #$& 6^%_(nwGW)(*7Y6&)(*0ab 6E %_t
(*$Q5)# 6 n%'( - QS5)6W%_F%_F7K)(*? 6 ACsegy&*%_(*? FN'%_)]
"# EG"UW  6h;"%'h(* Q,d- L a (*Z%_=(*)=#e)6"abA*NW8 (*ZEJeg")(
Q,6%_JK]"%'" W` 6R*%'(CDK]$5 60g3*6" 3U6"<g&Kc]{K)W)A&
E^%'#)N'N.g^N'I*)N'7*4ab 6 -S4*s#)66#&*%_(*?I&G&egz%'4&* dJ%'4&C
&


 
F)a,{A*(*7*6  *%'R%'EJ)? GE^egD3*6"6"5)" EG^3*6" 36"%'R)a4&C
 6%_? %'(KN5)# 6UW\CAC%_`EJegZ7*%_"&)6" 6`7*"6 gI)&C6- L (G? (*6&)NW i%'
(*)dopAK)N&GD C#3C=%'(3U#%')N#e)"W AC#>{)Q,C( l%_,*i%_7*(\%_<g
&6&(*"ab 6"E^c&%')($9     5  5  @7 5 5    6 
5  -d4*%'h%'h(C)f^# (CabA*"%' (3U#%.K#i
N'%'(Ce)6d)N'?)*6CW *Af(*5)60&*N'"F%'=(y%'EG3 60>)(\d7*%'0&%_(*#%' (&!3D%'(
EJ%_(*7iQ,*(J7*)%'(*?F)(\gi 60)am"3*6)a"h<g3,opA*"&%_ (8- )AG"* A*N_7I)N_Qmeg
(CQ;Q,Kg  A^)6,#A*66"(\&N.g5     
sb*pg3U)&C>W*)(*7IQ,Kg) A
)6f&60g%'(*?I&G3*6 5)!q&*s# (C#N'AC%')($-  6,%'(*0>)(*#)W%_a2g )A[)6"F6"g%'(C?G
3*6 5 
@ * Q&*,%_a +wl  %',N_%'(*)6W&*(
Z
, '=C`
B, '  =Gab 6,)N_N ,  = {w )(C7)N_N "#e)N')6

&*(zg) A*6,\g3)*"%',%'tK +w  %_,ZN'%_(*e)6S&6&(*"ab 6"E^c&%')({ "


&K i , ' =CR B2, '  ={)(*7 i
,i
B,Oab 6iN'N ,  =.w)(*7ON'N
#eNP)6"
W8)(*7[g) A*6=)
("#$&%_5)Z%'&!3C6 5 ZKhab)6=)(\g5 #$& 6" ,  = Ow
)(*7)(\gz#)NP)6
WCQSR* 5) i
, '=C`
B9, '  =U9 8f(Y*F)&*6,K)(*78WK%.ag) An)6=6"g%'(*?]J3*6" 5 f&Kc

@ * QK,%_a +wl  %_4A*#>&K i


, '=C`
:, '  =
ab 6,)N_N ,  = {w )(C7)N_N "#e)N')6
WC&*( %'4N'%_(*e6&*(g) A*6pg3U)&C=)6"f&K E^)3Chw WK)(C7K i
, '4=C`

B, '  ={ab)6i)N_N ,  =4w )(C7)N'N#)NP6


W`)(C7g  AC6Z 
("#&%.5 !%_R
3*6 5 !K  %_ZN'%_(*e)6W%- -[&K Z,2' =*Z B,2'  ={ab 6ZN'N5 #$& 6"
,  = rwJW)(*7D&K i
,F
B,ab 6s)N_NX5 #&)64, rw)(C7#)NP6
c4*%',%',]# EJ3CN'N.g^7*%.B 6(p3*6" *N_Eab6" E *f3*6$5%' A*, (C)-d )6"h/)a =A*0&%_ $
( z)a/- /z6"opA*%_6sg  A&3C6 5   z)am&*^%_EJ3CN'%'#&%_ (*W
#e)A*"R%.4%',( "%.a)(*7 (*N_g^%_a"]opA*0&%')($9ML (sg) A*623*6)abWc%_EJegfUm,? 7F%'7Cet&%'7*(\&%_aqghQ,*%'#>s)aC*">c&EG(\
&Kg  AZQ,6"%_m7* Q,(I)6"S&C%'(*? 2&Kcg )A  !ab6 E&Cm\g3)*"WC)(C7
Q,*%'#>n (*h)6f* s&Kcg) A   - u %_"&N'f3C*6&)"dN'%'n0R)6"R? %.5 (
&K*W L ab)N'N' Q,8K&CW 6d0(*7i&* QOK&d%'(F&*3*6")a*)6`5)6"g
*N_3CabA*NWp(*7JQ,%_N'NK*N'3G# (\5%'(*#d*d?)6&)7*6Kg  A^)#AK)N_N_g]p(* Q Q,Kc






g  AD)6"]7* %'(C?*Yb3*6 5%'7*7y&Kf* "]3**6&s)6"]%'(*?zA*"7D# 6"6#&N.g W


)a# A*6" 9   7  ;   7 5 5   7 5  - @  EG%'EGh%.f%'h6eN'N_g%_EJ3U 6"&)(\h
6e7*M0K(C3C6%'(\y)ad{opA*"%' (O F%_Z%'])N_NSD)"g& ("A*EG3O&[&C
opAK%' (*4Q,%.&* A,6e7*%'(*?G)N_N &C )`(*?)N'%'"YQm 6"7*4Q,*%'#>nA*6"6 AC(*7* "
opAK%' (*- )6t%'(*0>)(C#)W**F"&&EJ(p
@ * QK ]]ab)64 EGF(* (0 '6"I {ws
%'4#)EJ3*N_N_gJ7*%.B 6(\,ab6)E
@ * Q&K ]rIab)6,)N'N(* (0 '6"J {wR
L (D*]K60i#)W (CG)(*N_gy(C7CsnCC%'*%.s  
  h(* (0 '6z5 #$& 6s
%'({wab 6dQ,*%'#>  8&C%'=%_f!"&&EJ(pfQ,C%'#>{# ACN'7yU]3*6 5 (\g
)(z$C)EG3*N'-SSAC%'(Y&*F"#)(*7#)WU(CJEJ AC(p,aX$C)EG3*N_tQ,%'N_N8*N'3 
 (*,K)&s* Q K ]fab 6    4(* (0 '6"R5)# 6U- L (J&C"# (*7
#e)")W*3*6" K)CN_gIQ,K4)(*hQS A*N'7Y* 5)=&Z7C]%'m0>)60tQ,%_^&C=\g3U)*"
&KF ;w)(*7y&KcF CW)(C7D" EG* QQS 6"[ (*T fQm g&z3*6 5%'(C?
&K ZC9 m#)A*S)a&*%_Wc%_2%'85)6"gs%_EJ3U 6"&)(\~&Kc2g) Ai6"e)7F&CSopA*"&%_ (i#)6$abA*N'N.g
$ab 6G)(*0Qm6%_(*?*- L amg )A7* ( TVsA*(*7C60>)(C7$C)#$&N_gQ,Ks&*IopA*0&%_ (
%'d)p%'(C?*WUg) A{)6"iA*(*N_%'N_gYJQ,6"%_&i)(\gp&*%_(*?^ab 6,&*RopA*0&%')([&K&C
? 6&)7C6tQ,%'N_N K(*7EGe)(*%_(*?)abA*N-

 
  
  "!#$%'&(*)+!,.-0/1 2
/3
4 5+&($!6$ 7 89:,
%7&3>?, < @>A*)+9$*B(C+DE) 58'&( )0!F )GDH8&3$!
%7&3>?, < *)+"*IJKDHL'8&M
%7&3>?,NO)P7 8#'&3)+QRSDR8&1R7 &TEU?*C+!!#&T*)B(&(DE&()+'&3 )
%7&3>?,.VW8#DR&3)X*)P'!
YSYSYRYSY
< 7 &(%>?, <  >Z)+9[$ B(C0DR)\ 5]8'&3 )+!6 )DR'8#&($!
; R)+ >_^`C+&3$a`B3bc8%7&3>d!*DREDHL'8#&T*BeIf8# Dgh- -* d>i+&($a>jH>i&3B(B
)+9cB('8W&()['+&3!W$ C08!/k6+ml+8!#?$ )+$50n>jK>i&(B(B4)+9o&(!pXnIq)
r%s(r%tHr%uXvxw*yzSy'{L|{a}Xr%yw*v~{Lu /
; p) r%s(r%tHr%uXvxw*yzya{L|{a}Xr%y#w*v~{Lu '**!J)=qSDR'8#&1W*!&()+5+C4*)+98C+8)0!
R9+&18)PpDR'8#&1G*! C05+C0/kNO)*'+8>j 890!*$aB3DE)Pa8#b
8 > 5]8'L'&(*)[&3!pEDH*5GIf8 Do6X\F'\c6+\%/i6+8#K*8#+8
Ob5]!*IB3DE)Pa*82b"8#@> 5]8'L'&(*)+!,
;=poo#@ `LL4X+ /J6+&3!jOb 5]p*I8# > 58'&( )E&()P8$a+*)+Q !
8 >J>i&3\8 >=KIf*8F! DEp#OH`*'`/X 8j&()+!2a*)0$* '+n*58'L
'&(*)\*IJ&3)P'8#$aX*)+Q*&()+QS8 >i!pK*)+9GE&3)GSE-KDR'8#&1R>q C0B(9G$aX*)+Q 
 - 


   @
;=<
; <
=
; <
=
; <
=

'




- 
* @




0 !827 mXp+klX)+*BDR8&1G$*)]m 0'*&()09[If8# D '+k&()+&1'&TB:DHL'8&M


`b"DmC+B3&(5+B1b &()+Qm*)+?B(%I i`bH'+?ESDH8&M

,  





>i+&($aE&(!'0&39+)P&3ObKDR'8#&1k>i&3'S8#@>i!q?*)+9E !2>i&3'$a09:/ `b @m6`C+!


If 86&()+!2a*)0$
 -     - 
   





   * 


*)+9HDE 8#Q*)+8'*B3B3b `&1I &(!j nE- DR'8#&1 '0)H+&3)P'8#$aX*)+Q*p*I8# >i!


[*)+985+BT*$! _>i&3 /[H8#If8' *!K)G r%s(r%tHr%uXvxw*yz
tEw*v y~ G{ ?vz}Xr
; pB(!#R*+!8#7 'XL8# >Z&()P'8$aX)+Q &(!i&3! >i)[&()P7 8! &1IJ*)+ 8#5+B(*$!
>i&3' k)+9'+)c8#5+B(*$! >i&1' f&/ */n>qS&3)`8#$aX*)+Q K8# >i!
S)+9[KO>i&3$ +>qQ %iX*$a"'K>i+8?>q!#'*8#9:X]$*C+!#
@/
;=p #@
@  0 ]e 60&(!Ob 5i*IB3DE)Pa*82bK8 >  58'&( )
a*!F8 > J*)+9HDkC+B3&(5+B3&(!J&3.PbH u{Lu Lr%y'{ !$*BT8 @/X 8&()+!2a*)0$*`'0
B(DR)Pa*82b"8 > 58'&( )\XiDmC+B1'&35+B(&3!q8# >mPb m>q*C+B(9GDH5
 - 


   @






















!#"%$

&$

('*)

'





- 

 

* @

,+

6+&(!i 5]8'&3 )\&(!F+?!'*DE?*!iDmC+B1'&(50B3b &()+Q



,  





 )'+?B(%I iPb"'+?DR'8#&1





>i+&($a\&3!q>iX6*)+WQ %'!FPb"!2a*82'&3)+Qk>i&3H'0W&(9+)P'&3ObRDR'8#&1R*)+9\DkC+B3&1
5+B3b &()0Qp8 >=i`bR 0/FfPb @ j$*B3B *)m+DR5+B3jI].p r%s(r%tHr%uXvxw*yz
tEw*v y~ G{ ?vz}Xr
;=<  > DkC+B3&(5+B3&($L'&(*)[&3!n&()P7 8#'&3+B( 4+S 5]8'L'&(*)*IFDmC0B3'&35+B3b &3)+Q"\8 >
`bkp)+*) 8n!#$*B(*8 j&(!4&()P7*8#9SPbkDkC+B3&(5+B1b&3)+Qp8 > :Pb'+F)0 ) 8#
!$BT*8n L/NO)'+*] 7 ?%0*DE5+B3*0+?&()P7 8! 5]8'&3 )\&(!iQ &17 )Pb


q,   










&+

+







&/ */'W&3)`7*82J'0F 5]8'L'&(*) *IDkC+B3&(5+B1b&3)+Qi8 >=PbE 0*>jq+)mDkC+B3&(5+B1b


8 >mPbo  /
;=p #@g  @fe X 8'+&3!p8 >  5]8'L'&(*)>qK)09O>j\8 >i!n
*)+9R!$BT*8 L/6+m8#@>  5]8'&3 )[*9+9+! ?DmC+B1'&35+B(!I8 >q'R8 >
/e*8j&3)+!#'*)+$0&1I )+>q8pK*9+9 DmC+B1'&35+B(!.I8 >?m8 >-0`'+)
 - 


   @


+

>q C0B(9$ DE

+

- 


*  @
-

^`C+&17*B()`B3b*e'+&3!K8 > *58'&( )hDR C0)`!m'DmC0B3'&35+B3b &3)+Q[+\ 8&3Q &()+*B


DH8&M" )\+?B(I iPb\+?DH8&M

,  





>i+&($aR&(!>iX. )+Q %'!.`bS!2a*82'&3)+Qn>i&3'S'0&39+)P'&1ObKDR'8#&1S)+9"*909+&()+Q


 E$ 5+&3!i*Ie8# > KR8# >-0/pfPb LR$*B3B *)+DR5+B3?*IeSR
r%s(r%tHr%uXvxw*yzStEw*v y~ [{ nvza}Xr -/NxiX*!*)G&()P7 8!
 
F,  







'`C+!H&3)`7*82+k 5]8'&3 )G*I*909+&()+QG E$ 5+&3!*I8#@>S'R8 >-0>j


!C+08'*$% K$ 5+&3!i*I8 >kR8#@>A-K&()+!2'9:/
; 6 C0! 'G!C0DRDR*8& ,?+8#H8E!5]$&(*BDR'8#&($!4`)+ >i)h*! r%s(r%tHr%uXvxw*yz
ya{L|tEw*v y~ ar *)09)cB(DR)`'*8#b8 > *58'&( )o*DE C+)P!W'DmC+B1'&(50B3bP
&()+Q  Q &17 )"DHL'8&MS )E'+B(I .PbE )+*I:'0!B3DE)Pa*82bE8 > DR'8#&($!/
.$aH*I]'+B3DE)Pa8#bm8# > DHL'8&3$!&(!&()P7*8#&(+B3* *)+9S'0&3)P7 8#!*I)
B(DR)Pa*82bRDR8&1K&(!j*)+*+8jB(DR)Pa*82bRDR8&1/FNO)H+W*] 7 9+&(!#$C+!
!&(*): >jW )0B3bK7 8&1lX9H+&(!.If 8.!5]$&1lX$W+DR5+B3!.*IB3DE)Pa8#bSDR'8#&($!
+C0?&3p&(!W*!#b['\!#K'XLW'+K!*DEm&(!p8C+mIf*8WQ )08'BeB3DE)Pa*82bDRL
'8&3$!/ +n'%   %/
; 6+8#W*8#p*B3! r%s(r%tHr%uXvxw*yz a{Ls tKu{a}Xr%y#w*v~{Lu `>i0&($a"8i7 82bH!#&(DE&(B(*8
B(DR)Pa*82bR8# > *58'&( )+!0C0i*8#&(!If8 DdDmC+B1'&35+B3b &()0Q  DH8&ME )H'0
y%~ v PbG*)GB3DE)Pa8#b\DR'8#&1+&3)+!#*9G*IJ+?B(%I /j*86&()+!2a*)+$*&3I4 )0
DmC+B3&(5+B3&(!p"DR'8#&1 >i&3o\$ B3C+DR)0!W )'+K8#&(Q PnPb+KB3DE)Pa8#b
DH8&M

,  



 









'+)c+&(!*DE C+)P'!W[!2>i&3$a+&()+QG$*B(C+DE)cG)+9$ B(C0DR)o*I >iPb @/


6+&(!i&(!imOb 5]RR$ B(C0DR)&()P8$a+*)+Q 6B(DR)`'*8#b"$ B3C+DR)\DE 7 / &3DR&M
BT*8#B3b &3I4 )+?DmC0B3'&35+B(&3! Z )G+?8&3Q P6Pb
 
,  





'+)+&(!iDR C0)`!q'KDkC+B3&(5+B1b&3)+Qk$ B(C0DR)m*I ZPb  >iPb @/.60&(!6&(!


ROb 5S$*B(C+DE)DmC0B3'&35+B(&3$&( )XjB3DE)Pa*82bG$ B3C+DR)[DR 7**/?J&3)X*B(B1b X&1I
 )+?DmC+B1'&(50B(&(!  )\+?8&(Q*`iPb
 
,  

%



'+)E+&(!*DE C+)P!e'*9+9+&3)+QS n$ 50&(!I$ B(C+DE)E-W'?$ B3C+DE)EE >iPb @/


6+&(!i&(!imOb 5] -[$ B(C0DR)*909+&3&( ).B(DR)Pa*82b"$*B(C+DE)DR 7 /
; B3DE)Pa8#b"8# > f 8F$*B(C+DE)j 5]8'&3 )+!F+ 7*?!7*8*BC+!!/ )+n&(DE5*82
a*)PC+! &(!FR!#&(DE5+B(&1I bH!2b!2'DR!*IeB3&()+*86^`CX&( )0!IJ'0If 8#D
@
>i+8# &(! ! DEHDR8&1)+9  R8R7*$%' 8#!/oNxI &(!k*)hB3DE)Pa8#b
DH8&M`'0)"'0W^`CX&( ) i&(!j^`C+&17*B()PF
m >i`b"*8
'+!mO>jG^`CX'&3 )+!n^ C0&37*B()P &3)P, &(!p&3)P7 82'&3+B(%/?6`C+!? )+m$*)
!&(DE5+B3&3I b+H^`CX'&3 ) SPb58#If 8#DR&3)+Q\'+H!'*DER8# >  58'&( )
'' d*)+
9 k!&3DmC+B3'*)+ C+!B1bhf )+S$)c$ )+$')X' d*)+

9 k&3)`G
!&()0Q B(G*8#&3lX$&T*BTDR'8#&1&3)o 89+8n'G9+G+&(!'%/ e7 )PCX*B(B1bo )+S$)C+!#
8 >Z 5]8'&3 )+!6'E89+C+$ R8#@>F x$a+B( )GIf 8D f&()>i+&($a[*$a8 >Z&(!
&3+8 8#+ 8?Q &()+!W>i&1'c 4*)+9o]B( > *$ac!C+$a=K'+8R*8K )0B3b
8#!aL6>i+&($a[5 &3)Pi&3i]$*DR!!2'8*&(Q P#If 8#>q*89'S!# B37*If 8 
 8i'"90'8DE&()+?'+p+8#m*8#k)+R! B3C0'&3 )+!a/6k>i&3B(B)+W8%7 &(>Z+&(!
5+8 $9+C+8[+8#*F]$*C+!#&3S>i&3B(B6)+*E][)0$!!*8#b If 8S'+&3!E$ C+8#! !
+ >q%7 86+W'   8jb  C+8['- - A)+*!ajIf*8qDE 8W&3)0If 8#DH&( )/
 >q%7 8q>j\>i&(B(Bj8DH*8#XE7*8#b DR8&1$) ]8 >F O8#9+C0$9=&()P'
8 >F O$a+B3 ) If*8D '+ C0Q h'+8G&(!KC+!#CX*B(B1b DE 8"X*)  )+\>q bh90
!`/
















; p)+*+8?5+C085] !S*I.B3DE)Pa8#b8#@>  8n$ B(C+DE) 5]8'&3 )+!n&(!W9+82


DR&3)+p'0 y#w*u *IeKDR'8#&10>i+&3$a[&3!iEDE 8#n5+8$&(!#?DR*!C+8#DE)P*I&3'!
&()P7 8#'&3+&(B3&3Ob*/J6+&3!i>i&3B(Bn'050C+85] !?*I4'0)0% p!#$%'&(*):/
YSYSYRYSY
< *)+"IeKDR'8#&1
)  ,    &3!R'0
;=< $*B3BXH+ y#w*u *IB3&()+*8S'8')+!#If 8#DHL'&(*
9+&(DE)+!#&( )*Ie&3'!i8*)+Q  S p%/ < )+\X*!R)`C+Dm]8*IC0!!]If*8&3)+!#'*)+$
&36$*)[]?C+!9[SB3B>i++8KB(&3)+*8j'8')+!#If 8#DHL'&(*)\&(!6&()P7*8#&(+B3*,
9  ]H O9+&3DR)+!&3 )X*B!5+*$!.*)+9 B3k9+&(D[ 
;
.     *)+
9+&(DG  /  %  ,   SHB3&()+*88'*)0!#If 8#DH&( )/p6+
)  &(!
&()P7 8#'&3+B(E&3I6*)+9  )0B3bo&3IF8'*)+ W Z& / /  X! '0"DH@0&3DmC+D 8*)+
5 !#!&3+B(%/
) S pWX*!n'0R!*DRS9+&3DR)+!&3 )o !  /
; @:  NxIF8*)+ p d4+
qC0 S pk&3!So!#C++!#5X*$G*I  j!#o+&(!mIf*8$! S p 'c*$%'CX*B3B3b^`CX*B
 f!K6+ 8#D E*IH)0*'!a%/?6`C+!!  &(!W*)`+/n pB3!+If8 D '0
9+&(DE)+!#&( )"+*8D_>q?!Xi)`C+B3B(&3Ob W 0*)+9!#  &(!6 )0% x O*)+*/
6 C0"! &(!6&()P7*8#&(+B3*/
;$#  )P7 8#!B3b *&3%I h&(!&3)`7*82'&(0B(*@'0)&3&(! )0% x O*)+*L+)0$.) C0B(B(&1Ob p 0
*)+9+)0$`b\+?9+&(DE)0!&(*)"'+ 8D 8'*)+ W J/
&
; )0W&()P'8!#'&3)+Qk+&()+Qk*] C0F8*)+E&(!.'Xq&3I:b* C\DmC+B1'&35+B3bS B(&()0*8'8*)+!2
If 8DR'&3 )S )R+pB3I j 8.8&(Q*`jPbR*)H&3)`7*82'&(0B(i'8')+!#If 8#DHL'&(*): '+)H'0
8'*)+H9+!() ' $aX*)+Q**,
;
. d) * +  ,    ] B3&()+*8E8'*)0!#If 8#DH&( ) If8 D  )0
lX)+&3% x9+&(DE)+!#&( )+*Bj!#5X*$c*)+*+8jB3 , ., -/  ]*) &()P7 8#'&3+B(
'8')+!#If 8#DHL'&(*):*)+9[B( 0_),   1k*)+*+8&()P7 8#'&3+B(n8'*)+!2If 8DRL
'&(*):/e6+)
8'*)+ p 8*)+ 0!p 8')+ , 8'*)02 03,%
; @: J&38!#SB3EC+!E!+ > XE8')+: p 8'*)+ ,/=4!#+ > '+&3!
>q"lX8#!#K$ DE5+C0'"+"8*)+Q !K*4I  5, 6  *)+7
9 ,d8, -9  :
/ jb
9+lX)0&3'&3 )G*I8')+Q * S p ;k  %'+ &(DR*Q n*5I dC+)+90<8 / &3DR&3BT*8#B3b







S ,  ,i -W/.qC0!#&()+$ , , -   &(!i&()P7*8#&(+B3*+&1&(!i )P'+)+9!#


, W- R/ 6`C+!
S , , W- k ,i -W mm SW


*)+9!

8 *)+ , 8*)+ p%


!&3DR&3BT*8*8#Q C+DE)PKQ &17 !mXK8*)+0!, 8'*)0203p" C+!#S8#5+B(*$
 Pb  &()+S*] 7 */ "l+)+&(!#o+K*8#Q C+DE)PW>jS)+9o\!+ > 'X
8'*)+203p 8*)+ p%/e?$ DE5+C0n8'*)+Q*!*QP*&3):,
S 0!p 03k m 0R k   0R S W#%
!S'X
8')+ 0!W 9+&(D[ 0R S p
qC0!&3)+$ 0 &3!6&()P7 8#'&3+B(0>j X7*
9+&(D[2 0H2 S p# 9+&(DG2 S p 8'*)+ p
! ?-S*I4'+?DE&(908#D  %/6 C0!8*)+ 0!W 8'*)+ WF!90!&389:/ &S/
;  > ' $ DE5+C0+8'*)+KI*)H*8+&1'8*8#bKB3&()+*8e'8*)+!2If 8DR'&3 )S$*)RQ 
DR!!#b*/q6+]!#>q bE90E+&(!i&(!6R$ )P7 82p+?B(&()0*8F8'*)+!2If 8D_'R
DH8&M0*)+9G$ DE5+C0W'+?8*)+"*I4'+/
; J @f] NxI &(!n\DR'8#&1'0)o'+ y#w*u *I k9+)0*'98*)+ W%&(!
9+lX)09Pb\8*)+ W 8'*)0
%/
;  f+ #  )0!&(9086'+?DR'8#&1
 
,  



*

*

&$

6+)
 &(!6'+n8'*)+!2If 8DR&( )
 





 


 




6+8*)+Q 6I'0&(! 5]8' 8&3!'`C+!'+8#% x9+&(DE)0!&(*)X*B >iPb @K*)+9E!?'0


8'*)+H*I Z&3!-0/
;  % he*)? .SDR'8#&1!6 X
mDR*5+!: 'i /  %j   *
H+"!2a*)+9+*89hX!&(! If 8k / &3)+$ % !#5X*)h J>j\!"'X

 J 
e  %
 J !5+*) S
ef!.60 8#DZ-6*I`W-F)+*'!a/
6 C0!+8')+p*I &3!:'+9+&3DR)+!&3 )W*I`+!5X*$!5X)+)+9Pb
%
J  %
P/
qC0
e &(!!#&(DE5+B3b?+6lX8!2$ B3C+DR)KI >iPb @
e  J&3!J'+6!#$ )+9
$ B3C+DR)\I X'$/6 C0!>j + 7* !#+ >i)
;
.  ( 6+S8*)+*Ij\DR'8#&1 &(!n^`CXBe'\'+S9+&3DR)+!&3 )*I'0
!5X*$?!5X*)0)+9[`b&1'!6$ B(C+DE)+!/
;  f NxI &(!?'0"DHL'8&MoC+!#9h&()c'+H5+8%7&3 C+! %0* DE5+B(J'+ ) ' 0 

8'*)+S*I &3!.+p9+&3DR)+!&3 )E*I:'0p!5+*)"*I:+p$ B(C0DR)+!

 
0+&(!i!#5X*)G&(!6!&(B1b"!#)G'S]?+8% x9+&(DE)+!#&( )+*B/

; p!n )+S$ 8 B3BT*82bG*Ij+&(!  DRDR0&1I. )+B3b*Ij+K$*B(C+DE)+!n*Ij\DHL'8&M
*8?)+ ) 8+++)G'+8')+"*I'+?DR'8#&1\$*)GDE !#cf'0 C+Q G&3
$ C+B39?!DR*B3B(8.'X) X$*)\b  CG'+&3)+HIe*)G%0*DE5+B3 @%/
; 6+&(!  DEDR"9+!?)+*?)+$!#!'*8#&(B1bDR**S$*DR5+C'&()0Q"'+K8*)+*!#b*4]%
$*C+!#l+)+9+&()0Q?+9+&(DE)+!#&( )KI+!#5X*$!#5X*)+)+9HPbK'0$ B(C0DR)+!$ C+B39
j9+&E$C0B3/  >j7*8` )0q$)KC+!FB(DR)`'*8#b8#@> *8J$*B(C+DE)k 5]8'&3 )+!
'!&3DR5+B3&3I b'0&()+Q !/E8# D  DRDRE>jS!EX&3I &(!?*)cB3DE)Pa8#b
DH8&M )+9 &3!KDHL'8&Me'+)
 8
X!S+\!'DR\8*)+ !
5+8#@7 &39+9S'XL.+iDHL'8&MmDkC+B3&(5+B3&($L'&(*)kDR**!.!#)+!#**I$ C+8#! /6`C+!
B(DR)Pa*82b 8# >=*8J$*B(C+DE)k 5]8'&3 )+!49+W)+e$aX*)0Q q'0F8'*)0]/6`C+!P>j
$*)C+!#?+!#? 58'&( )0!F'K!&3DR50B(&3I bS+nDHL'8&M"&3)P'K8 >F x$a+B( )If 8DG/
;
.  (    EDR8&1"&()G8 >F O$a+B3 )[If*8D f`C+!p%7 82bG8 >Z&(!
&3+8 8+ 8q]Q*&()+!>i&3\R *)+9H*$a\*I'+ !#k!jX*!F)0*'+&3)+Qk0C06*!
B( > &3a%/6+)"+8*)+S*I &(!.^`CXB]+p)`C+Dm]8j*I:)0 ) 8#m8 >i!/

&$











; @: 4 % ' !6!'bHX AX! H)+ ) 8#S8 >i!+!#K'Xq>q?X7 nK!+ >
'X +*!?8'*)+/ *$a$ B3C+DR)I $*)o )+B3bX*!W+K' 5 )P'8#&(!
)+ ) 8# FB(B.)P'8#&(!K]B3 >dXKDkC+!#S] 8+/6`C+!K'+"!#5X*) *Ii'0
$ B3C+DR)0!6*I Z&3!i$ )Pa&()+9G&3)\'+ ` x9+&(DE)+!#&( )+*B!#5X*$


 ,  `



*)+9!S'+?8*)+"&3!iiDR*!# /
;  > >q\X7*"'!0@>d'+m'0"8'*)0&3!KmB3*!2 /49+'0&(!k&1k>i&3B(B
!C E$'S!0@>ZXi%7 82b7 $%' 8&()  &(!i&()\+ !#5X*)[*I+$ B3C+DR)0!6*I
ke!#&()+$R'0&(!?>i&(B(BDE*)c'XLk'0H!5+*) *I6+H$ B(C+DE)+!*I _&(!%0*$B3b


'+ ` x9+&(DE)+!#&( )+*BJ!#5X*$ R/ +4B(%?C+!?5+&($ao"7*$ 8 , &()

E/ &()+$ &3!&3)8#@>F x$a+B( )If*8DG+  K8 > *I DkC+!#p$ )Pa&()[
! DE>i+8>i+&3$aDE*)0!?X?'08E&(!\$*B(C+DE)>i+ !   )P'8#bo&3!S
f>i&3B(B:)`8&3!iB( >X^`CXBH %/.NxIJ>j !#C+0'8*$ DmC+B1'&(50B(!q*I
'+&3!F$ B3C+DE)"If8 
D 0'+)\>q?Q %S)0>7 $%' 86>i+*!   )P'82bc *)09[B(B
'+? )+!iB( >A&1q*8# 8#+/
;  >Z>qkB(  \'+"    8 >?/ pQP&():!&3)+$>qm*8&()[8 >F O$a+B3 )
If 8DG+8#6&(!m6!# DR%>i+8#* >i&1'S*!e]B3 >=&1 +&(!e&3DR50B(&(!'XJ'+86&(!
?$ B(C0DR)m>i+*!  [@  )P'82bS&(!F >i&3'E*B3B0)`8&3!]B( > 'XL^`CX*B+
P%/6`C+!i>q$)[!#C+0'8*$SDmC+B1'&(50B(pI+&(!F7*$ 8i'SQ K)+%>A7 $'*8
>i+ !H    )P'8#b*)+9G*B3B'+? )0!iB( > &3F8 8+/
;$#  )P'&()`C+&3)+QW&3)k'+&3!I*!#+&(*)k>q6$*)K!C00'8*$DkC+B3&(5+B3!4*IX7*8&3 C+!J$ B(C0DR)+!
*I If8# 
D  C+)P'&(B+>jiDH)X*Q F 8#  CqB(B+i)P'8#&(!/NO)E*'+8>q 8#9+!
>q6X7*6%5+8!!# 9  !WB(&3)+*84$*Dm+&()+'&3 ) I$ B3C+DR)0!J&() k`*)+9k+)+$










&3!J&3)k'+6!#5X*)K*IX+F$ B(C+DE)+!/J6`C+!e'0F!5X)EIX'+F$ B(C0DR)+!&(!%0*$B3b

E*)+9>j 8?9+ )+/

&S/

; 6  C0!>jR)0@> X7 RG5+8#$9+C08S'$ DE5+C0K'+E8'*)0*IqGDR'8#&1,W>j


8 > 89+C+$ 8 $ B3C+DR)89+C+$ C+)P'&3B.>j"8#*$ah8#@>F x$a+B( )If 8DGe*)09
'+) C+!2m$*C+)Pk'0R)`C+Dm]8 *IF)0 ) 8#8 >i!/f p$%'CX*B3B3b* )0R9+ !#)(' 
)+$!!*8&3B3b[X7 m"89+C+$SB(B'+ >Fb"8 >F x$a+B( )If 8#D &3DHb[
'X4'0F8'*)0]$ DE!J*`7 &3 C+!J!# DEj'&3DR]If 8#j+):*$*C+!#q'0q!5+*)
*I+?$ B3C+DE)+!6$*)G]n9+8DE&()09G`b"&()+!#5$'&3 )/
; NxI*)+" )+B1bC0!!KB(DR)`'*8#b8 >_ 5]8'L'&(*)+!J+) C+!#CX*B3B3bc )+\$*)+)+*
+ 5]HDR**?'+ DHL'8&M\DmC0$a!&3DR5+B38FX*)8# >F O$a0B(*)If 8DG4/ qCp&1I
 )+n&(!iB(B( >j9\'E*B3!KC+!# B(DR)`'*8#bH$ B3C+DE)\ 58'&( )0!0+)G )+n$*)
Q 6+?DH8&M"&3)`EE5X8#'&3$C+B(*8B1bE!&(DE5+B3pIf 8DG,
;=k @   ]S*)o hDR'8#&1G>i&3c8*)+/ 6+)c )+K$*)
C+!?B3DE)Pa8#b\8#@>A*)+9G$ B3C+DE)\DH8&3$!FS5+BT*$ &()\'+nIf 8#D
 
% 
 %g % 
>i+8# &3!J'+
j &(9+)`&3Ob DHL'8&M *)+9SL6p&(!+6Zn 8nDR'8#&1/
6`C+!4>qRX7 E89+C+$9'0RDR'8#&1')+*+&()+QG+C0k!#'8#&()+Q*I
\ )+!
9+ >i)G+?9+&T*Q* )X*B >i&37 8#b`'0&()+QEB3!?&()+Q 80/
; @:  4KQ &()R>i&3'>jn )0@>'+F>jn$*)\C+!#WB3DE)Pa8#bR8 >*58'L
'&(*)+!q'S5+B(*$ Z&3)\8 >F O$a+B3 )If 8DG/e6`C+!i'+WlX8#!# m8#@>i!i]Q &3)">i&3
 >i&3'*!p]B3@>Z+" >i+&3B(?'+m8#DR*&()0&()+QE R8# >i!n*8 )P'&38B3b
8#+/
;  > $ )+!&39+8'0l+8!#8 >*I0+&(!89+C+$9kDR8&1 LB(% ' !4!#C+5+5] !'+4&3&(!
)+*.&(9+)P'&($*B(B1b 8#+/ I 8! DE 8 ! &3.X!jS *)+9E'+)R!# DE*+8
)P'8#&(!.>i+&($aHDHbE 8.DHbS)+*q 8+5/ qCFPbE!C+08'*$%'&3)+QmDmC+B1'&35+B(!*I
'+m$ B(C0DR)>i&1' K&3)&3If8 D +K$ B3C+DE)+!>i&1'*+8p)+ ) 8#\)P'8#&(!
&/ */KOb 5]H-$ B3C+DE) 58'&( )0!a%>jR$*)cDH*E*B(BJ+E*'+8?)P'8#&(!&()
'+&3!8# >^`CX*B' 8+/  '?'Xi+!#mB3DE)Pa*82b$ B3C+DE)[ 5]8'&3 )+!
 )+B3bEL$F+ 5"8 >?+B37 &()+Q'+*'08F8#@>i!qC+)+$aX*)0Q 9:0$*C+!#p'0
$ B3C+DR)">i&1'o&()&36+*!*!i7 8#b`>i+8mB(!/








; g!#&(DE&(BT8"*8#Q C+DE)P'+)Z*B(B3 >i!\ )+o' a*'0!#$*)+9A8 >Ik'0


890C+$9 DH8&M *)+9 DR**B3Bi+)P'8&3!o*5X*82RIf8# D '+[B(*9+&()0Q=@
^`CX*B4'\0/p p)+9!#\ )*)+9!"If 82':/W F'+k)+9*I+&(!5+8 $9+C+8#*:>j
Q 'Xp'+kl+8!# R8#@>i!p*$a$ )Pa*&3) )+HS)+97*82b +&()0QGB(!#k]&()0Q
8#+/jC08#'08DE 8#*+'0!E!iX7 k*!i'[* 7*k*)09[]B3@>?X!#E+bB3&(
&()G9+&38#)PW$ B(C+DE)+!/6`C+!p`bG!2>i&3'$a0&()+QR$ B3C+DR)0!p*505+8 508&TL'B1bcC0!&()0Q
Ob5]"$ B(C0DR) 58'&( )0!aW>q"$*)hQ %m&()P['0HIf 8D 8#^`C+&(8#9 If 8?'0
6+ 8#DG/
&
;  % k*)DH8&M\>i&38')+ / e7 8#bB(DR)`'*8#b8# > *58'L
'&(*)"$ 8#8!5] )+9+!FKDmC+B3&(5+B1b &()+Q A )"+WB(%I 6Pb")\B3DE)Pa8#b
DH8&ML>i+&(B3q%7 82bKB3DE)Pa8#b $ B3C+DR)k 58'&( )k$ 8#8!#5*)+9+!'WDkC+B3&1
5+B3b &()0Q  )m+F8#&(Q PePbm*)KWGB(DR)`'*8#b DR'8#&1/6 C0!.Pb 6+*8D
+0>j X7*
 
 
      
 %  %  
>i+8#  *8kB(DR)Pa*82b[ oDR'8#&($!*)+
9     i*8
B(DR)Pa*82b"GDHL'8&3$!/ pB3B+nB3DE)Pa*82b"DR'8#&($!6*8#W&()P7*8#&(+B3*/
I '86! DE?DHL'8&M\B(Q +8'0 '+&3!i$ DE!
 
% 
 
 %g %        
f>iPbK9+&39m'+6 8#9+8I]+6DR'8#&($!eQ %87*8#!9 L/eiX7*i`C+!5+8 7*)
; @
f ]
(  % ]p*)R KDR'8#&1k>i&3'R8'*)0/e60)H>j+ 7*
*)[ DR8&1 >i+&3$aG&3!6K5+8 9+C+$%i*I4B3DE)Pa*82b"DR'8#&($!6*)09[)
ocDR8&1 SX*B(!#ES508 9+C+$*IB3DE)Pa8#b\DR'8#&($!F!#C+$a[X

 L %g %   






 








(

,

; *?fIf8# D nW*I] !!&3Q )+DE)P`'XJ'+65+8#90C+$I&3)P7 82'&3+B(FDR8&($!


&(!i*B1>Fb !i&()P7 8#'&3+B(/6`C+!+?DHL'8&3$! d)+9  7 *8#n&()P7 8#&(+B3*/
; 8# 5] !&1'&(*)
H&(!W*)%0*DE5+B(k*Ij w %v {Ly~ w*v~{Luv Xra{Ly'r%t >i+&($a'**!?
Q )+8'*B0DH8&MK*)09SI$'*8!&3&3)P'n!&3DR50B(85+&($!/6+8*86DR*)PbK*+8
%0*DE5+B(!m*I6I*$%' 8#& L'&(*)'0 8#DE!k>i+&($a b* Ch>i&(B3B.)+$*C+)P'8SB('8k&()
'+S @
m!#^`C+)0$**)+9'0b\X7* DR*)Pb*5+50B(&($'&3 )+!/
*


;  DEpDE 85+8 5]82'&3!F*I48*)+/ep )0@>If8*D  DEDRRW'+F8*)+HI4


s ~ urw*y vy#w*u {Ly%tEw*v~{Lu &3!C+)0$aX*)+Q 9PbDmC0B3'&35+B3b &3)+QK )[+kB3I  8p8#&(Q P
`b &()P7 8#&(+B3'8*)+!#If*8DR'&3 )+!/ Un&37 ) '+$B( !#8BT&( )+!#+&(5 %O>q)
B(&()0*8n'8*)+!2If 8DR'&3 )+!*)+9DH8&3$!J&1 &3!kC+)0!C+8#5+8&3!&()0Q['+k+H!*DR
'+&3)+QS&(!F'8#C+nIf 86DR'8#&($!,
;
.    G*) hDH8&M ][)= &()P7 8#'&3+B(
DH8&M0*)+9  ] )Gco&3)`7*82'&(0B(nDR'8#&1/e6+)
8')+ n 8'*)+ n 8*)+ k 8*)+ k
; @: &()+$ &(!W&3)`7*82'&(0B(*!#&(!
Af!S6+ 8D  "If8*D 
)+*'!a/ &(DE&(BT8B3b
o&(!6&3)`7*82'&(0B(*/e8# D  DRDR\?>jX7 
8*)+
8')+:

8')+:

 8*)+


%
&()+$


 JX%'$/>jn'`C+!X7 
8*)+
8'*)+
 : 8'*)0
 8*)+
 
6+?$BT&(D '+)[If B3B( >i!qIf8*D_'090lX)+&1'&3 )*IJ8*)+HIf*86DH8&3$!/ &
;  * X  %DR DRE R&(!$*)+!&3!#')Pp>i&3  8*5 !#&3&( )[
]!&3)+$'+DHL'8&M
      X*!i8*)+  /
; )0K&(DE5 82a*)Pn$ )+!#^`C+)0$HIj+E* 7*S+*8#b$ )+$8)+!?'0E8*)+[*I
 vy#w*u O}X{ r  *IF\DR'8#&1 k/ < $*B(B4'Xn+K'8*)+!5] !#EIF*)o 
DH8&MS&(!'0p"SDHL'8&MS 0'*&()09E`bR8 X$%'&3)+Qm*8# C+)+9E'+9+&TQ  )X*B
!SIf 86&()+!2a*)0$
 
  -

-
 


6 C0!8'*)0!5] !!.!2>F5E8# >i!j)+9K$ B3C+DE)+!/J8# D'+69+%lX)+&1'&(*)m*I]DHL'8&M
DmC+B3&(5+B3&($'&3 ) &1&(!*!#bk'n7 8&3I bk'+6&39+)P'&1ObG  K     f>iPb L/NO)
5X*8#&($C+BT*8&1I A&(!j&()P7 8#&(+B3*+)
   >i+&3$a

&(DE5+B(&3!jX  &(!iB(!K&3)P7 82'&3+B(/


*



*



*







;
.   % E*)o hDR8&1[>i&3o8'*)+/k6+)  X*!W'0
!'*DEn8'*)0\*! k/
; 8# D  8# 5*!&3&( )G
k>j + 7*

 L %g %   
J*`&3)+QK'8')+!5] !!IJ]*'!#&(9+!i>j 0a&()
    L %   %    
6+&3)+)+8DH8&Mm )S'08#&(Q P2 OX*)09E!#&(9+iX!.8*)+ / &3)+$ *)+9 Z*8
&()P7 8#'&3+B(`!m8  *)09   0)+9H!#kPb  DEDH  X!q8')+ *)09R>j
*8n9+*)+*/
&
; 8# D  DRDR *)+9  DRDRSk>q?'`C+!X7 
;k@ f+ 
( 6+R8*)+I6\DHL'8&M&3!?^`CX*B'\+S9+&(DE)+!#&( )o*I.'0
!5X*$?!5X*)0)+9[`b&1'! y'{L| /
; p!n )+k$ 8# B(B(*8#bG*I+&(!  DRDR0&1I )+B1b*I+K8 >i!n*Ij"DR'8#&1*8
)+ ) 8#++'0)'+?8')+"*I4'+?DR'8#&1H$*)G]?DR !2 /
; J&()XB(B3b* >qFQ*&37 q>q b 'W$ DE5+C0'.'+q8'*)+?*I])`b B(&3)+848'*)+!2If 8DR&( )
If8 D_ )+nlX)+&1'% x9+&(DE)0!&(*)X*B]!5X*$E*)+*+8/
;
. (   A%,    ]FWB(&3)+848'*)+!2If 8DR&( ):L*)09KB( G*)+
9
nlX)+&1'nX!!iIf "8  *)+9  8#!#5$'&17 B3b /6+)8*)+ p 8*)+   %/
9  &(!H O9+&3DR)+!&3 )X*B  /H6+)
; @:  C+5+5] !  &(!] x9+&(DE)0!&(*)X* B*)+7
'+o$L O 8#9+&()XL'DR*5 ,   9+%lX)+9Pb   ,  &(!)
&(!*DR 8#5++&3!DGi*!\&(!"+$ x 890&()XDR*
5   3,   9+lX)09Pb
   n",    /h[*)P>i+&3B(+DH5
 ![&(!KB3&()+*8 8'*)+!2If 8DR&( )
If8 D_ 'S /6+&(9+)P'&3Ob




$ $



   "    


$*)'`C+!i]8#>i8#&3)[*!

    
 !#  0


-

*)+9\'`C+!



*)+9+)0$H!&3)+$   (& !6&()P7*8#&(+B3



  !


  
  !# 
J*`&3)+QS8'*)+H*IJ]*G!#&(9+!*)+9GC+!&3)+Q  DRDRS00>j *0a*&3)
8*)+ p 8*)+
 ! 8')+  




*!i9+!#&(89:/
;  f   Z,  "5

 q]n'+?B3&()+*8q'8*)+!2If 8DR'&3 )

&$

, 


'`C+!6If 86&()0!#a)+$

&

 






 lX)+9 +c8'*)+ Ik'0&(! 5]8'L' 8p>qB(%  , 2   "o'0
!#a)+9X*8#9[X!&(!FIf*8  "%/ Z!&3DR50B(W$*B($C+BT&( )H!+ >i!X
   W 
     
!


 

 W
6+&(!WDR8&1G$B(*8B1bX*!W8*)+[-8#@>  5]8'&3 )+!$*)$ )P7 82?&3'"8#@>F
$a+B( )If 8Dd>i&3+8 )0 ) 8#E8# >i!a%!# X*!i8'*)0\-0/
; 6+H8*)+o*IiGDH8&MDE*!#C+8!e&3)!*DRE!)+!+ > $B(*!S' 8#  8
+
> 29+Q )+8' 
` [DH8&Mc&(! e+" )0B3boDR'8#&1o>i&3 8')+c&(!?'+"
DH8&MGf>iPb0%/60B(*8Q !#.8')+S*)E mDR8&1m$*)RX7 &(!DE&()f'
f>iPb   DEDHn*)+9 #  8*B(BT8#b %/X 8&3)+!#'*)+$*  -S
nDH8&Mm$*)
X7 8'*)+"iDR*!#-0/
YSYSYRYSY
NO)P7 8#&()+QRDH8&3$!j7&(K8 >A 5]8'&3 )+!













; #8  5] !&1'&(*)G


K+*!6'+nIf B3B( >i&()+Qk$ )+!#^`C+)+$/
;
.   % ]E*)  DH8&M/K60) &3!&3)P7 82'&3+B(K&1IF*)09
 )+B3bH&3I4&3i&3!F'+?5+8#90C+$*IB3DE)Pa*82b"coDR'8#&($!/
; @:  J&(8#!#.!C+505 !#p'+ &3!.+508 9+C+$j*IB(DR)`'*8#bSDR8&($!/
*B(8#*90bH`)+ >A'XL%7 8#bGB3DE)Pa*82b\DR'8#&1H&(!i&()P7 8#&(+B3 X*B3!KIf8*D n
If8 DZ'0Fkn0 DR%>q*8*>j6 )0@> '+e'0F5+8 9+C+$%*IO>jn&()P7 8#'&3+B(
DH8&3$!.&(!j*B3!k&3)P7 82'&3+B(/e p5+50B3b &()+Q'+&3!jI*$%F8#5]9+B1bE>jW!#pX
&(!i*B3!S&()P7 8#&(+B3*/
;  > !#C+5+5] !6'+ &(!&()P7*8#&(+B3**`C+!
,P  &(!&()P7*8#&(+B3*`*)09
&()5X*82'&($C+BT8F&(!6 )P+/6 C0! S
*)+9G!E8'*)+
 J]*)09[!#
Z&3'!#B1IJDmC0!#iX7 8')+"J/ jb  8# 5] !&1'&(*)G
m>j?'`C+!iX7 
    
>i+8#    F*8 B(DR)Pa*82bDR8&($!/ &()+$ '0
&(9+)`&3ObHDH8&M %S$*)+$B3!*C00>j *8?9+ )0*/
&
; 6+&(!4Q &37*!C+!e6>Fb'C+!j8 >h 5]8'&3 )+!'p&3)P7 82eDHL'8&M k/ C+5+5] !#
>q?DR*)X*Q WRC0!K!^`C+)+$k*IJ8# >A 5]8'&3 )+!   &3)\'C+8#)
SDR8&1 &()P'K+?&(9+)`&3Ob*0'`C+!


6+)[`b"DmC+B3&(5+B1b &()+Q *[!#&(9+!i )\'+?8&3Q PiPb


>qQ %
 

6 C0! &3I>qi$ )+$L')+' *)+9 ' Q %'+8 *)+9E*505+B3bk8 >  5]8'&3 )+!e*)
'+S$*)+$)XL'9cDR'8#&1[''C+8#)o+ $ DE5*)+)P?&()P '0)o'+
$ DE5*)+)P.>i&(B(B+*C0'*DH&($*B(B1b C+8)E' /6+&3!j&3!.>q bE*I$ DE5+C0&()+Q
'+?&()P7*8!# I /
;  f / C+5+5] !?>j>q*)Pi'S&()P7 8#i'0DR8&1
,  - 




&$









?$*Dm+&()0 *)+9'+?&(90)P'&1Ob  (& )P'SS!&3)+Q B3WDHL'8&M,


  -    

6+)>qo8 > 890C+$o'h'C08)'+oB(%I DHL'8&M &3)P' '0c&39+)P&3Ob /dX 8
&()+!2a*)+$*XPb\!#C+0'8*$&()+QS'08?$ 5+&(!i*IJ8# > nIf8 D_8 >m>j*0a*&3)
   
W  -  
*)+9\'+)Pb*909+&()+QS8#@>Zk'S8 > ?>j*0a*&3)
   p 
p  -  
VW&37 &(9+&3)+Qk+?!$ )+9[8 >APb pK>j? 0'*&()
   W 
  -  
6+&(!6'0&3)P7 8#!*I Z&(!
 p 
-  




*

&





! &()0$  +kB(DR)`'*8#b\8'*)0!#If 8#DH&( )0!i>i0&($a$*)`7*82   *B3!R$ )


7 82  '  /
YSYSYRYSY
VW%'8#DR&3)X*)P'!
; K)+ > 87 &3> "7*8#bC+!%IfC+B$aX*8*$8&3!#&($K*IjDHL'8&3$! i'+ r%vOr%ytK~
u]w*uXv *IWoDR'8#&1/ 6+[90'8DE&()X)`SIno!^`CX*8# f mDHL'8&M &3!E
) C0Dm8H>i+&3$a 9+5])+90!\&() $ DE5+B(&3$9=>qb *) '+)P'8&3!"In'X
DH8&M/kVW!#5+&3m'+S$*DR5+B3&($'99+lX)0&3'&3 )::&1?X*!n!# DRK7*8#b8DR*8#P
*+B(\508 5]82'&(!j!5]$&T*B3B3b >i&1' 8QP*8#9='cDR'8#&1DmC+B3&(5+B3&($'&3 ):*)09
8 >Z*)09[$ B(C+DE) 5]8'L'&(*)+!/)If 8#C+)XB3bR>q?>i&(B3B:)+*]*+B(WRQ*&37 
'+S5+8#*If!p*IqDR*)Pb*I+!#R8#DR*8L*+B3m5+8# 58#&(!n08 +S!#?>Fb
'C0)+9+8#!#'*)+9h9+%'8#DR&3)X*)P'!&(!PbcDR*)+!kIF!*DR%'+&3)+Q$*B(B39 r v r%y~{Ly









'

*w s r yw >i+&3$a &(!%b  )09'+R!$ 5R*IF+&(!$ C08!/G&1'+*C0?'+E'  B(!


*Ii% '8&3 8m*B3Q 08'hf&() 5X8#'&3$C+B(*8! DE+&()0Q$B(B(9h |qr  r}]y'{  %v %
5+8 7 &()+Q *)Pb *Ip'+IfC0)+9X*DE)PaB5+8# 5]8#&(!H*I?9+%'8DE&()X*)P!H]$*DR!
7 82boDR!!2b / >qK>i&3B(BJ!##'B( C+!2nIf 8n9+!$8#&(+&3)+Q\'+S9+%'8DE&()X*)P*)09
!#aL'&()0QE&1'!6X!&($n508 5]82'&(!/
; 6+?9+8DE&()+*)Pi*I\DH8&M"&3! C+!#&3!6)P'82b],
90@
; 6+ Som9+%'8DE&()X*)Pi&3!6Q &37*)G`b\+nIf 8DkC+BT
9+%    ,
 @







; 6 +qp"90'8DE&()X)`&(!4DE!!#&(8 )+9m&(!9+%lX)+9K&() +jIf*B(B( >i&3)+Q6!#8'*)+Q*


>Fb /X 8m*)Pbc8 > n)+9 $*B(C+DE)Xe90lX)+R'+ tK~ u{Ly K*I*)
DH8&M '\]k'0K Ko KDHL'8&MG>i+&($a&3! >i&3'0K  8 >
*)+9E  $*B(C+DE)8DE 7 9:/.*86&()+!2a*)+$*X&1I


,

'+)
 
 






'$/
6+&(!?!0 C+B(9c)+*?]S$ )IfC+!9>i&3 @>i0&($ac&(!n'+S)`8#bo*I &()'0
 8 > )+9G  $*B(C+DE):/ 8n&3)+!#'*)+$*&()+S*] 7 K%0*DE5+B3
*)+9   /
; [$*) )0@>90lX)+['+ = 9+8DE&()08$C+8#!&17 B1b &()=8#DR!R*IW'0
90'8DE&()X)`.Pbm>iXLj&3!$*B3B(9S+ a{ w %v {LyWr }0w*u %~{Lu /4?lX)+9S'0
9+8DE&()+*)Pn*Ij*) o DR'8#&1 k:>jK5+&3$a"8 > ? )`b8 > >i&(B(B49+`
*)+9!%

9+%L W6,
@ 9+%L %%


 



 

 

 

 

*









 





*86&()+!2a*)+$*+>j?X7 


9+
j9+%    90    90 

 8

9+

.9+    9+   W9+   

 8


9+
90     9+    P9+   

Nxi!DR!FX6+&(!F90lX)+&1'&3 )"9+5)+9+! )">i+&($a8#@> b  CC+!#W'S5]8#If*8D


'+K$*I*$ 8n%5X)+!&3 ):+C0?'0RDH &()+QR'+&3)+Q\&(!WX?&3W9+!)('  EX 8
&()+!2a*)+$*P&3)S+i*] 7 i%0*DE5+B(`*)Pbm'086I+i$ DE5+C0''&3 )+!J>i&3B(B B(9
'K'+?!*DR?)+!#>j8)XDRB3b
  P  

p>j C+B39\B(&3*pK%5+BT&()H>iPb\&1F9+ !#() ' FDH#'8q>i+&($a\8# > f 8F$*B(C+DE)


!kB( >i"58#If 8#D$*I*$%' 8%5X)+!&3 )::+CW&3>j C+B(98^`C+&38m*)+ 
9+7*B(*5!*DRE)+> DH8#&T*Bif )+E!&(Q*)X'C08S*IF5]8#DmC0''&3 )+!ap>i+&3$a
>q C0B(9\a* C0!iI8ilXB39:+!#E>j>i&3B(B8Q*8#IfC+B(B1bH!#`&(5'+?9+8&37&( )/
; 6+o^ C+*)P'&3&(!\9+L "*8#! DE&(DE!\`)+ >i)! a{ w %vO{Ly / p! )0
$*)&3DH*Q*&()++&(!$*I$'*8If 8#DmC+BTE$ DE!p% '8#DEB3bGDE!#!#bIf*8pBT8Q 
DH8&3$!E '$*DR5+C'K'+S9+%'8DE&()X*)P?*Iq*)c hDR8&1:+E* 7*
If 8DmC0BTj>i&3B(B*%7 )`CX*B3B3bn8#^`C+&(8#C+!'*9+9? 8!#C+08'*$% '8DE!:' Q*'08 
'+8o*8#*!#&(8">qb !G $ DE5+C0'C0!&()0Qh8 >*)09$ B(C0DR)  5]8'&3 )+!
>i+&($a>q?>i&(B3B9+!$8&(]?B( >?/
; )0K$*)c*B3!"5]82If 8D $*I*$%' 8p%5X*)+!#&( )c*B3 )+Q\\$ B(C+DE)\G&()+!2'9*I
S8# >A,

9+%L W6,
@ 9+%L %%




*










 

6 +&(!FC0B3'&3DHL'B1bKX*!Fm9+m>i&1'm!#b DEDR%'82bH5+8# 5]8#ObH9+  9+@ n


If 8q'090'8DE&()X)`X*B1'+ C0Q H'0&(!6!#b DEDR%'82b"&(!FI8FIf8 Dd P7 &( C+!iQ &17 )
'+?9+%lX)+&3&( )/
; Z!5]$&(*B$!*IJ$*I*$%' 8605+*)+!&3 ):,&3I X*!6+nIf 8D
6#
//
>i+8# '0k6#H8 E!2'8&3)+QE*I  8 !]+ //]8#5+8#!#)PnE$ B3C+DR)
7 $%' 8j*I:B3)+Q'H *0*)09 &3!.*)H 6S cpDR8&1 +)"90@ n
9+ K/JNO)m5+*8#&($C0BT*8LIf8# DZ'+&3!J*)09K&()+9+C0$'&3 ) >jF!#qX4'+F&39+)P&3Ob
DH8&M *B1>Fb !GX*!9+8#DR&3)X*)Pc , 9+L  */d B(!#+p>j!#o'X
'+K9+%'8DE&()X*)P?*Iq\B( >j82 x9+&TQ  )X*B4DR'8#&1&(! C+!2?'+K5+8#90C+$*I'0
9+&T*Q* )X*B)P'8#&(! +If 86&()0!#a)+$

90L
#

q$*C+!E*I.'+S!2bDEDE'82b5+8# 58#Ob>jR*B(!#G`)+ > X?C+50582 O90&T*Q *)X*B
DH8&3$!F>j 8#H'+?!*DRW>qb],


9+L


&()h5X8#'&3$C+B(*8J9+&T*Q* )X*BjDH8&3$!kX7 G9+8#DR&3)X*)Pm>i+&3$a &3! C+!2
DmC+B3&(5+B3&($'&3 )HB( )+Qm+?9+&TQ  )X*B ,


9+


; p) ccDH8&M$*)[?'0 C+Q P*I*!R$ B(B3$&( )*IJ8#@>7 $%' 8#!W&()
 8*!$ B3B($'&3 )*Iq $ B(C0DR)7 $ 8! &()o /R6`C+!  )+S$*)c a*B3
**C0m'0"9+8#DR&3)X*)PK9+%@   @P*Ii $ B3C+DE)7 $'*8!S&()  8
'+K9+%'8DE&()X*)PnIqh8#@> 7 $ 8!?&() !#&(DE5+B3bGPbo*8#8'*)+Q*&()+QH+ !#E
8 >A 8i$ B(C+DE)\7 $'*8!p&3)P'EEDR8&1/  *'n'+i'+ 8908i&()\>i+&3$a[>j
*88*)+Q W+!#7*$ 8!i>i&(B3B]?! DE>iXL&3DR5] 82a*)P/

*

*

%







  &(!
*

0
)
9
; e0*DE5+B3*,+o9+8#DR&3)X*)P\*I?'0oO>jh7 $'*8!


 L/
; 6+m9+%'8#DR&3)X*)P*I7*$%' 8#!WX*!pO>j"X!&($ 5+8*58#'&3!/ )+ &(!i'Xp&3
&(!6B(&3)+8F&()$a[$ B(C+DE)!5X*8'L'B1b /eXL>jDR*)`bH'+&3!6&(!6'XL
9+%@        L
9+%@       L 90@  %     L
*)+9
9+@     @   @ 9+       L %
6+&(!"B3&()+*8&1Ob $*) ]!#)DE !#"*!#&(B3b Pb=$*I*$%' 8H%5X*)+!#&( ) &3) '0
$ B3C+DR)SX/
; 6+ *'+8X*!#&($h5+8# 58#ObZ&1oX*!&3!o*)P'&1 x!#b DEDR%'8#b],A&1IE )+h!#>i&1'$a+!
O>qo$*B(C+DE) 7 $'*8!)+*m)+$!!*8&3B3b 9 *$)P%+) '+\90'8DE&()X)`
$aX*)+Q !!#&(Q )/*86&()+!2a*)+$*+>i+)[ A

90L        90@        
6+&(!i&(!i)+$ DE5+B(%'B1b" P7 &(*C+!6If8 D +$*I*$%' 8i05+*)+!&3 )90lX)+&1'&3 ):
*B3+ C+Q m+65+8#!)+$*I]'+FI$'*8 @ 9+!!C+Q*Q !2.X!# DR6!# 8#
*Ii!&3Q ) $aX*)0Q "DE&(Q P $$C+8k>i0)  )+R!#>i&3$a+!K8# >i!K 8k$ B(C+DE)+!/[
>i&(B(B)+*i5+8# 7 ?'+&3!)`&1 x!#b DRDE8#bR5+8*58#Ob\+8/
; Nx6'C08)+!i C06XF+?9+8#DR&3)X*)Pi&(!F&3)\I*$F+ {LuXs z %5+8#!#!&(*)G>i+&3$a
 %b !?+!#KO>qG5+8*58#'&3!*)+9o>i+&($ac*B3!\X*!n+S5+8 5]82ObXn'0
&(9+)`&3ObSDR'8#&1mX*!.9+8DE&()+*)Pq )0*/ qCj>j>i&3B(BX)+*j5+8#@7*Xj+8# %/
; 6+F!'DR.I*$!J+ B39k&1I+>qq850BT*$q$*B(C+DE)+!4`b 8 >i! P&/ */+q90'8DE&()X)`
&(!?B(&3)+*8?&3)*$a *IF+E8 >i!k!#5X*8'B3b*e*)+9&3Iq )+E!#>i&3$a+! O>q8# >i!
'+)G+?9+8DE&()+*)Pi$aX*)+Q !!#&(Q )/
; )+ >A>i8&1'9+ >i)!# DR5+8# 58#&(!8BT&()+QKR+ >Z90'8DE&()X)`!]%
X7 C+)+9+8B(DR)`'*8#b"8 >A 5]8'&3 )+!/


 

















; @ `@ NxI &3!)[ccDH8&M+*)+9 d&3!i+DH8&M Z>i&3GO>j


9+&(!2'&()0$8 >i!q*)09""&()P8$a+*)+Q 9:]+)[9+ K 9+ W%/?fNa/ /F8 >
 58'&( )0!Iq'0RlX8#!#Ob5] +&(5o'+R!&(Q*)*Iq'+E9+8#DR&3)X*)P/"6+&(!&(!
C+!#K8!#aL'DE)P*I4'+*)P&(!#b DEDR%'82b\5+8*58#Ob"If 868# >i!/
; e0*DE5+B3*,
90    9+%   
;$#  8 B3BT*82bHI  8 5]82Obo ,NxIJO>jH8#@>i!*IeEDR'8#&1 *8n'0 !*DR+'+)
'+?9+%'8#DR&3)X*)PiDmC+!2 80/
9 d&3!i+DH8&M d+C0i>i&3
; @`@ NxI &3!)[coDHL'8&MX*)+
 )+K8 > 6DmC+B1'&(50B(&(9[Pbo\!#$*B(*8 @'+)90@ K 90@ n/\Na/ */ 8 >
 58'&( )0!k*Ii'0"!$ )+9 Ob 5\DkC+B3&(5+B1b'+"90'8DE&()X)`m`b>iX7 8
!$BT*8m>q*!EC+!9 &()h+8 >  5]8'&3 )/h6+&(!S&(!So!5]$&T*Bq$*!#[*I'0
B(&()0*8#&3ObR5+8 5]82Ob"If 8F+?  8# >?/
; e0*DE5+B3*,
9+%      q9+   
;$#  8 B3BT*82bkI  8*58#ObE,&3InDHL'8&M X!.*)+6*I&3'!8# >i!j^ C+*B+' 8+
'+)[9+%@ nF&(! 8 C0!#*5+5+B1bH+&(!  8*58#Ob\>i&3 P/
; @`@ NxI &3!q)H\EDR'8#&1 *)+9 &(!'+DH8&M +Cq>i&3
$ 5+&3!*I] )08# > *909+9S'?*)0*'+88 >hX +)S9+%L K 9+L n/6Na/ */
8 > *58'&( )+!J*I+F'0&(89mOb 5]i9+?)+*.$%'+69+%'8DE&()X*)Pa%/J60&(!&(!
S$ )+!#^`C+)0$kI4+?B(&3)+*8#&3ObE5+8# 58#Ob"If*8q'+  8 >?+$*Dm+&()09\>i&3
'+ #  8# B(B(*8#bE'  8 5]82ObHf>iPb L/
; e0*DE5+B3*,
 
  
9+% 
+
9
%




; &(DE&(B(*85+8 5]82'&3!F+*B(9HIf 8qB(DR)Pa*82bH$ B(C+DE)\ 5]8'&3 )+!n C+!#i8#5+B(*$
#8 
>
SPb #$ B3C+DE)
m'+8# C+Q 0 C0i&()\+* 7*?+8 508 5]82'&(!a/
; m$*)!C0DRDR*8& ?'+m* 7*m'+8#m5+8# 5]8#&(!W&()+kIf B3B( >i&()0QRB3DEDH
f>i+&3$aG>i&3B(B!#*)[]n!C+5]8#$9+9PbGKDE 8nQ )+8*B!#''DR)P%,





*

+




+

+

;
. H NxI &(!)B(DR)`'*8#bDR'8#&1'+)?9+L W 9+@ m090@ n
*)+99+@ k 9+%L W09+ m/
; 6+&(!&(!]$*C+!'+9+%'8#DR&3)X*)P.*InOb 5 B(DR)`'*8#bSDR8&1m&(!!&(B1b
!) ' ah If8 D  8*58#Ob *5+50B(&(9='0&(90)P'&1Ob=DR8&1+j'0
9+8DE&()+*)P6*IJKOb 5] KB(DR)`'*8#bHDHL'8&MofDmC+B1'&(50B3b &()+QkK8 >Pb q&(!
*!#&(B3bo!#) '] [fIf8# D  8 5]82Obh5+5+B(&39c'[+"&39+)P'&1OboDHL'8&M+%
*)+9h'+\90'8DE&()X)`SIpOb 5]-oB(DR)`'*8#bDHL'8&M&(!K!&(B1b!#) 
fIf8*D  8 5]82Obc-G5+5+B(&39''0R&39+)P'&1ObDR'8#&1+%/KNO)c5X*82'&($C+BT8
B(DR)Pa*82bDR'8#&($!n*B1>Fb !nX7 S)+*) 8\90'8DE&()X)`S8$*B3BX?&()
'+nOb 5 K$*!#* WDmC0!#i])0 ) 8#`%/
; S*8#K)+ > 8#*90b'\!#''S )0K*Ij+KDE !#n&3DR5] 82a*)Pn5+8# 5]8#&(!W*Iq
9+8DE&()+*)P,&3FDR*!C+8#!+ >A&3)`7*82'&(0B(?KDHL'8&M"&3!/
;=k @ ( p)DR'8#&1R&(!q&()P7 8#'&3+B(&3I4*)09G*)+B3bE&3I&1'!F90'8DE&1
)X*)P&(!6)+ ) 8+/
; @:  C+5+5] ! &(!4*)k&3)P7 82'&3+B(6RDR'8#&1/6+) Pb  DRDRn 0L&3&(!
'+i5+8#9+C0$.*IB(DR)Pa*82bmDR'8#&($! &(DE!e'0&39+)P&3Ob %0/6+&39+)P&3Ob
"+*!?")+ ) 89+8#DR&3)X*)P,9+@   / *$aoB(DE)P'*8#b[DHL'8&M
X*!F)+*) 8k9+8DE&()+*)P?!#n 7 %+!#KPb  DEDRR W&1IkDR'8#&1EX!
)+ ) 8#9+%'8DE&()X*)Pj'0) I 8SDmC+B1'&35+B3b &()0Q )=+[B3I E 8E8&3Q PRPb
*)B(DE)P'*8#bDR'8#&1&1!#'&3B(B:+*!p)+*) 8R9+8#DR&3)X*)P/6 5+5+B3b &3)+QE+&(!
85]L'90B3b">j?!?'+ DmC+!#X7* )+*) 8S9+%'8DE&()X*)P/
  >$ )P7*8!#B1b\!C+505 !#p'+ X*9")+*) 8k9+8DE&()+*)P5/ jb  DEDH
  >qE'`C+!m!#RX 7*) I 8 *5+5+B1b&3)+QGB(DR)Pa*82bo8 >d*)+9$ B3C+DR)
 58'&( )0! k )0HDmC+!2K!#&(B3B.*0a*&3) DR8&1o>i&1' )0 ) 8#9+82
DR&3)X*)P/6NO)[5X*8#&($C+BT*8&()G8 >F O$a+B3 )If 8#D DmC+!2W!2'&(B3BX7 m)0 ) 8#
9+8DE&()+*)P>i0&($amDE*)0!J&()k5X*8#&($C+BT*8Xe&1J$*)+)+e$*)`'*&()k*)Pbk8# >i!
>i+&($a * 8G)P'&38B3b 80/ 6 C0! X*!SIfC+B(B68*)+hJj>i+&($a=DR*)+!S'X

 ,+  &(! )P'+/ qC0W+)


o>q C0B(9*B3!Rm*)+% ' x )+`bG'0
9+&(DE)+!#&( )K+ 8#D !  DEDH n*IR-)+*! +)+$
\>j C+B(9R
&()P7 8#'&3+B(?)+9+)+$ &3!6&()P7 8#'&3+B(/
&
; *? )0B3b90!W'+S9+%'8#DR&3)X*)P?DE*!#C+8K&3)`7*82'&(0&(B(&1Ob &3*B3!\DE*!#C+8!
B(&()0*8F&3)+9+5)+9+)0$*/


*

*

*







*















;k@ f+ (     @ ]h $ B3C+DR) 7 $%' 8#!o&()Z / 6+)


  LE*8#nB(&3)+*8#B3bR9+5])09+)P&3IJ*)+9 )+B1b"&3I9+%@   @* 0/
; @:  C05+5*!"'+m9+%L   @ !XKPb6+ 8#D @G'0
HDR'8#&1[   L .&3!q)+*j&()P7*8#&(+B3*/e60)\'+B(&3)+*88'*)+!2If 8DRL
'&(*)

$*)0)+*?]m )+ x'L O )+*)+9!#\'+8K&(!p")+ ) 8\7 $'*8



 &()\'0)`C+B3B:!5+*$]& / /

$ $

  




 % @P


 86&()*+86>j 89+!

@ 0
&/ */   Lo8\)+*mB(&()0*8#B3bc&()+905])+9+)P/ 6+\$ )P7 8!G!#''DR)P
If B(B3@>i!q`b8#7*8!#&()+QR*B3B'0  7 !#5+!*)+9G&(!6B3I FE+?8*9+8/ &
; *p'XLF&3I*)+p>i8&1'!q9+ >i)G Ob 5+&($*B["DR'8#&1`'+)"'+W90'8DE&1
)X*)Pi>i&(B(B&()Q )08'B C+!#]!# DE8*)+9+*D )`C+Dm]8*)+9>i&(B3B:C+!C+*B(B1b")+*
 8+/  #DE !#
DR'8#&($!j*8&()P7 8#&(+B3* *)+9 2DR !2
$ B3B($'&3 )+!*I
7 $%' 8#!F &()R *8B(&3)+*8#B3bk&()+9+5)+9+)`? *)+9H+)+$pIf 8#D  X*!#&(!.If 8j
!&()0$? &3!6] O90&(DE)+!#&( )XB %/
; 8# 5]8#&(!k  -H*B3!HQ*&37 kE>qb["$ DE5+C0 +k9+%'8DE&()X*)P*I.RDRL
'8&Mo nC+!#"8 >_*)+9h$ B(C+DE)*58'&( )+!'$ )P7 8#S&3k&()P'[! DE"!# 8#k*I
'8&(*)+Q C0BT*8. 8F9+&(*Q  )+*B]If*8DGIf 8q>i0&($a"'0n9+8DE&()+*)P6&(!F*!#bH'K$*DS
5+C0')+9'0)>j 8X$a`>q*8#9+!p'R8$ 7 8W'+ 8&3Q &()+*B:9+%'8#DR&3)X*)P*I
'+?DR'8#&1/
;  f / C+5+5] !?>j>i&3!\'E$ DE5+C0W'+?9+%'8DE&()X*)Pi*I
 -
,
- 




&$

-



n5]82If 8Dd8 >A*58'&( )+!/ C+'8'$'&3)+QmO>jE$ 5+&3!6*I48 > WIf8 Dd8 >
S)+9[C0!&()0Q  8# 58#ObG-0>q 0'*&()
 -
9+%L W 9+% p
- 
&(DE&(B(*8B1bK!C+'8'$'&3)+QS'+8#?$ 50&(!i*I8 > ?If8# D 8#@>Z0>j *0a*&3)
 -
9+ W 9+ p

VW&37 &(9+&3)+Qk+n'+&3898 >APb  SC+!#&()+Q  8 5]82ObG+>j? 0a&()
 90@ n 90  -p


>i+&($a[I '86!#>q*5+5+&3)+QSO>qE8 >i!C+!&3)+Q  8# 5]8#Obo*+$ DE!


 9+L n 90   -
W

qC0"+8&3Q P# xX*)+9=!&(90&(!E'8&(*)+Q C0BT*8R*)+9 X!\9+%'8#DR&3)X*)P"I W/


)0$ 9+L n p+!#m'XL69+ W / )+W$)G$a0$aH+&(!FC0!&()0Q
'+G 8&3Q &()+*BjIf 8#DmC+B(If*8K9+8DE&()+*)P/=0&($a 5+5+8 *$a &3!EB3!#!E>j 8
+&($a[*5+5+8#P*$aG&(!6B3!!i5+8# )+n'E*8#&3+DR%'&3$*B]8#8 8 L
; n)+ >Q &37*?*)+*+86&3DR5] 8#'*)PF5+8# 5]8#ObH*IJS90'8DE&()X)`0)XDRB3bR&3'!
DmC+B3&(5+B3&($'&17 5+8 5]82'&3!/
;=k @ NxI *)+9 *8#hA DR'8#&($!?'+)9+ m
9+ n090@ K%/
; @:  J&(8#!#E!C+505 !#'+ &3!R)+H&3)`7*82'&(0B(*/=6+)
 &(!S)+H )P
$I /  DRDR"E*I-H)+*!a>i+&3$a&(DE5+B(&3!6'XL

h&(!)+*n )P
f>iPb  *p'XLq'0W8'*)0Q W*I

DmC+!26]W$ )P'*&()+9\&()E'+n8*)+Q *I

 %!#R'+ _&3!i)+*&()P7 8#&(+B3*/q60)PbG6+ 8D  X'G!&(90!*I


L


*

*







*

*

*



+9  m 9+ n090@ K8 8#+P*)09k>qq*8j9+ )+/ &3DR&3BT*8#B3b*!C+505 !#


'X A&(!)+*&3)`7*82'&(0B(*/46+)
&(!)+*e*)+% ' x )+* *)+9K!

G&3!J)+*
 )+% ' x )+mf>iPb  *p'XLF'+p) C0B(B!#5X*$W*I
cDmC0!#6]W$*)`'*&()09\&()
'+?)`C+B(B!5X*$ I

4%/   &3!i)+*i&()P7*8#&(+B3*/6`C+!'G!&(90!*8
*QP*&3) 8#+/
; 6+ )+B1b 8DH*&3)+&()0Q$*!&3!R>i+) *)09 *8[' &3)`7*82'&(0B(*/ jb
 DRDR" m>j DRbH'`C+!i>i8&1'
    

>i+8# %   F*8 B(DR)Pa*82b[DR8&($!/ jbGDR*)Pb[*5+5+B3&1
$&( )+!6I  DEDR" n>q?'`C+!X7 
90L n 9+%@ 09+%@  #9+%L
*)+9
9+%@ K 9+  09+   90@ 2
qC0*B(!#

  
*)+9!#Pboa*`&()0Q9+%k*IF*!#&(9+!m*)+9C+!&3)+Q  DEDRc EDR*)Pbc&(DE!
*QP*&3)">q 0'*&()
9+L K 9+L 90@ 09+%@  #9+ O
*)+9?PbW$*Dm+&()0&()+Q6B(B+!#^`CX&( )+!:>j 0'*&()W90L K 90L n09+%@ m
*!i9+!#&(89:/
&
; +L4   6+$ 88#!5] )+90&()+Q !2aDE)P"If 8H*9+9+&1'&3 ) &3!R)+"'8#C+&()
Q )+8'*B 0& / /e9+@ K  9+%L W 9+%@ Kj&()HQ )+8'*B / # *)"b* C\'+&3)+
C+5m$ C0)`8#%0*DE5+B( e7 )If 8j9+&T*Q* )X*B]DHL'8&3$!q )+p$*)\!#W'0&(!q>i&3B(B
)+*n>j 8/ )'+S*+8n+*)+9::>jS!#'&3B(BX7 SB(&3)+*8#&3ObG&()*$ac8 > *)09
$ B3C+DR)X%/
; *'XL6+*8D  !C058$9+!  DEDR  *B3+ C+Q*>qh)0909
 DRDR" *!*)&()P8DE90&Tn!#'5GS5+8 7 6+ 8DR!@K*)+9o+/
*

*





*

*

*

*

*

*

; 50'&3 )X*BT < DEDk8R'0!#b DRDE8#b=5+8*58#Ob 90@  9+%L WE>j


!#aL'9c8B(&38 Nx$)c)0@> S5+8# 7 9C+!&3)+Q\'+S 7 EDR*$a+&()08#b*/k
!*%'$a [508 *I6*!If B(B3 >i!/J&38!# *IiB(B&1I &3! )0 ) O&3)P7 82'&3+B(4+) 
&(!n*B3!\)+*) O&3)`7*82'&(0B(\ >iPb @)+9o!'!&39+!?8 8+/   > &3I &(!
&()P7 8#'&3+B( +)\Pb  DEDHE k&3j&(!.'+p5+8 9+C+$%F*IB(DE)P'*8#bEDR'8#&($!,
 
*)+9!
9+%L W 9+%L #9+ 
) +*+8"+*)+9:ia*`&3)+Q '8*)+!5] !#! *)09 8$*B(B3&()+Qc'XL"'8*)+!5] !#
87*8#!!DmC+B1'&(50B(&($'&3 )E 89+8aq>j*0a*&3)

    
*)+9!
9+%@  9+%@  90@  
qC0K9+&(8#$%i$ DE5+C0''&3 )o$a0$a`&()+QE'+W+8nOb5]!i*IB3DE)Pa8#b"DRL
'8&M!5X*8'B3b0!#+ >i!'+G9+L  90@ m"If 87*8#b B3DE)Pa8#b
DH8&M!
9+%@  9+%@ 90@ 
6 C0!9+%@  9+%L WF*!i9+!#&(8#9:/
YSYSYRYSY
Un DE8&3$W&()P'85+8#''&3 )*IJ90'8DE&()X)`!  50&( )+*B
; 6+&(!\DR'8&(*Bp&3!" 50&( )XB*)+9&(!\B(! )+$ 7 89 &() IfC+B3BW9+%a*&3B/ Nx
&(!?&()P')+9+9  )+B1bIf 8n'+*!E*IFb *C>i+*8E&()P'8!#'9 &()o'0RQ  DE'8#&($
5+8 7 )X*)+$k*I9+%'8#DR&3)X*)P'!/
; 5C0)`&(B)+ >Z>j ' 7 k8L'9G'+ 9+8#DR&3)X*)P*!pEDkb !#8&3 C+!*B(Q*+8*&($
%5+8!!#&( ) >i+&3$a X*!kB( I68DH*8#L*+B(E5+8# 58#&(!/ jC0 >j"X7*() ' 
9+B17 9DmC+$a&3)P'[>i+ +H90'8DE&()X)` *$%'CXB(B3bDR*)+!J*)+9c>i`bc>j
X7 *)Pb"8#&(Q PFKX7 ?!C+$a[m8DH8L*+B3W$aX*8*$8&3!#&($W*I4DR'8#&($!/Nx
'C+8#)+!*C0i'Xi+ 90'8DE&()X)`iDE!C+8#!p!# DE'0&()+QK7 8#bIfC+)+9+*DR)Pa*B
'6'+Q* DE8#bWI0 @)X*DEB1bW O9+&3DR)+!&3 )X*B@7  B3C+DE*/46+ )+$7*4&(!
'Xq9+8#DR&3)X*)P'!j$*)\]p&3'08q5] !#&3'&17  8j)0QP&37**>i0&(B(7  B3C+DE$*)



*

*

*

*

*

*

*

*

*

 )+B3bm5*!&3&37**`! 9+8DE&()+*)P'!j*8&()SI*$jDE*!#C+8&3)+Q %~ *ur   *{Ls tHr


7  B3C+DRe>i&1' !#&(Q )/Ff6+&(!4&(!!#&(DE&(BT8'+ > i9+l+)+&3.&3)P'Q*8'*B e
$*)S])0QP&37*&1I \90&(5+!]B3@> '0 L&(!P7 )R+ C+Q K+ *8nC+)+9+8
'+$C+827 
"&()P'85+8#''&3 )*I e i!#DR!i'E!C+Q*Q !2p'+&()P'Q 8'*B3!iDmC+!#
*B3>qb!i]?5 !#&3&37 %/
;  % ' !Q &()W>i&1'? /46+9+8#DR&3)X*)P9+  *I0i!#&()+Q*B(J7*$ 8  
&()m &3!e*I]$ C08! X >i+&3$aS&(!e5+B3C+! 8eDE&()`C+!'+FB3)+Q' I]X7*$ 8
5+B(C+!&3I4'07*$ 8p&3!5] &3)`&()+QS8#&(Q P)+9DE&()`C+!i&3I'+?7 $ 8p&3!5] &()P&()+Q
B(I /eNO)'+?9+Q )+8' $*!  0+'+?9+%'8DE&()X*)Pi&3!6*IJ$ C+8#! 8#+/
;  > B(% ' ! B3*  J *)+9o'+&3)+o*] C0?'0R9+%'8DE&()X*)P9+%L    W*I
O>q7 $%' 8#!    &() /6+&(!'C08)+!4 C04'p50B(C+!4 8DR&3)`C+!a'0F*8#i*I
'+W5+*8'*B3B(B( Q 8*D >i&1'"!#&(9+!  *)+9   05+B3C+!F&1I   &3!F*)P&($B3$aP>i&3!pI 
*)+9\DE&()`C+!q&1I   &3!F$B3$aP>i&3!W*I  /X 8q&3)+!#'*)+$*+9+%@#2 a %@0@#&3!j'0
*8G*Ij'+S!#^ C+*8E>i&3'o!#&(9+!"  aP@ 0@%& / /[ / )c+E*'+8?X*)+9:
9+  @% 2 a k&(!K aG]$C+! 0 K&3!R$B( $aP>i&(!G*IE  aP/ &3DR&3BT*8#B3b
9+  -aP% 0 .&3!i-0+]$*C+!n+?8$%a*)0Q B(W>i&1'\!&39+! -0aP @jX!
*8"-0:)+99+%L-0@@ 0@F&(!p*B(!#"-0$*C0!m'0m5X*8*B(B3B(*Q 8'*Dd>i&3
!&(90! -0@%@0@X*!6'0!*DE 8S*!6+?5+8%7&3 C+!i8$'*)+Q B3*/
; 6+&(!.5X*8*B(B3B(*Q 8'*D 5+8# 58#ObS$*)"]5+8# 7 )HC+!&3)+Qk$8 !#!q5+8#9+C0$'!p8#$*B(B
'Xn+K$8# !!?5+8#90C+$?$*)oSC+!#9o'\DE*!#C+8K'0S*8Iq\5X8'*B3B(BM
 Q 8'D"/Nxp&(!p*B(!#H&()P8!#&()+QHH&3)`8#5+8%  8 5]82'&(!k -RC+!#&()+QH+&(!
*8"&()P'85+8#aL'&(*):/  8 5]82Ob K!'b !n'XLn&3Ib* Co!#>q*5c+kO>j\7 $%' 8#!
 *)+9   +)'0K!&(Q*)*I'+K90'8DE&()X)`W$aX*)+Q !/  8# 5]8#ObH!'b !
'X.&1Ib* CH9+&3BTF )+*I'+67 $ 8!j`b @P'+)R+p8?*I'+i5X*8*B(B3B3
Q 8'*D_*B3!m9+&3BT!j`b mf)+*''XF&3I &3!F)+QP'&17 0'+)\'+W90'8DE&()X)`
$aX*)+Q !!&(Q*): 7*)S'+*C+Q K'+i8W&3!e*I]$*C+8!#B3>q b !5] !&1'&17 **$*C+!#
b  C +&(5+H$B( $aP>i&(!)+!#!K*I  *)+9   /  8*58#Ob-!'b !kX &3IFb* C
!B(&39+    f!'b0 Pb G$ )0!#a)`mDmC+B3&(5+B3K*I  J'0) '0"*8#*Iq'+R5X*82
*B(B3B(*Q 8'*D_9+ ! ) ' p$aX*)+Q /S60&(!p&3!$ )+!#&(!#)PW>i&1'+ I*DE&(B3&T*8 #X*!#
0&(Q*`
EIf*8DmC+B(kIf 8i5X*8*B(B3B(*Q 8'*DE!. j!#B(&(90&()+Q   Pb  9+ !)+*$%
&3+8F+?X*!#  8F+?+&3Q P/
; *k*B3!E'X&3I  *)+9   *8# B3&()+*8B1b\9+5)+9+)P'0)+&385X8'*B3B(BM
 Q 8'D X*!*8#S ++&(!6&3!6$ )+!#&(!2')P>i&3 # *8 B3BT*82b -/




%+



;  > B3 ' !nB(  [?  4 *)09o+&()0*] C0n'0K9+8DE&()+*)P?9+L     


*Ik+87 $ 8![&() / 6`C+!C+8)+!G C0G' ] 50B(C+! 8GDR&3)`C+!aH'0
7  B3C+DRH*I+ }0w*y#w*s s(r%s({a}]~ }Xr R>i&3 !#&(9+!      fb* C DHb 8#DEDm]8
'+&3!iIf8# D-PL n%/4H9+%'8DE&()+?5+B3C+!*8DE&()`C+! )+C+!!p'+8&3Q P#
X*)+9 8C0B(*,R&3Ii'0"'`C+Dm &(!SL  *)+9h+\!$ )+9 lX)+Q*8K&(!m   q*)09
'+oDE&(9+9+B3lX)+Q*8&(!G   p'0)>qcX7  50B(C+!!&3Q )&3I'+&3!\$*) 
*$a+&(%7 9C+!#&()+Q"+K8&3Q PnX*)09:*)+9c\DR&3)`C+!W!&3Q )&3I.&1W$)c]S*$a+&37*9
C+!&3)+Q'+\B3I # xX*)+9/ X 8K&()0!#a)+$j9+%@#2 aaP% 0*aP% 0a@ 
+C0S9+%L0 a %@  a0a %@0a0 
 /NxS&(!S*) &()0!#'8#C+$&37*\%8#$&(!#
'c&()P'85+8#  8# 5]8#&(![  -cC0!&()0Q'0&(!SQ *DR%'8&3$5+&($%'C+8#*6*!S>jB(B*!
#  8 B3BT*82b-0/
; 6+nO>q x9+&(DE)0!&(*)X*B8#C+B(p*I 29+8DE&()+*)P6&(!65] !&1'&17 W&1I   $B( $aP>i&(!#n*I

$*)=G&()P85089 *!Hc8&3Q P# O+*)+9 8C+B3GC0!&()0QoO>q x9+&(DE)0!&(*)X*B
X*)+9::>i0&(B( '+S )+ O9+&3DR)+!&3 )X*B48C0B(m*I #9+%'8DE&()X*)Pn&3!W5] !&1'&37*m&3I 
&(!k*)'+H8&(Q*`
$)hR&()P'85+8#'9 *!m8#&(Q P# xX*)+98C+B3HC+!#&()+Qo[ )+%
9+&(DE)+!#&( )+*BX)+9:/
; 6+8#W&(!j !#&(DE&(BT8eB(&3)+m]O>j)9+%'8DE&()X*)Pq*)+9" O9+&3DR)+!&3 )X*B7  B3C+DR
&()k0&(Q +8J9+&3DR)+!&3 )+! -*+C0e&3&(!JI$ C+8#!FDkC+$aKDR*8.9+&E$C0B3Jp7 &1
!CX*B3& *P*)09E]b* )+9S'+6!#$ 5]i*I'+&3!e$*C+8!#kf )+6)+9+!!# DR6Q*8 C+)09+&()+Q
&()?DR*!C08'+ 8#b* *)Pb`>Fb* &() 8908'C+)+9+8!2a*)+9 >iX #] x9+&(DE)+!#&( )+*B
7  B3C+DR 
kDE*)0!/e B(!0 )0p)+9+!F O9+&3DR)+!&3 )X*BX+*)+9+!/ 5/ qC0F&3)H5X8#'&3$%
C+BT*8>jS!mXn+m7  B3C+DEk*Ij\5X*8*B(B3B(*5+&(5]9>i&39+Q !   L
&(!p+ w {Ls v r Lw*s r *I'0K9+8DE&()+*)Pn9+   @P/H  *m'XLn&3
9+!() ' j5X*8#&($C+BT*8#B3bkDH#'8>i0'08j>jpC0!p8# >  8.$ B3C+DR)S7 $ 8!j+8#
!&()0$?9+  9+@ n#%/
;  %   @p]q"$ B(C0DR)7 $%' 8#!&() *!pXi  % L 4&3!e*)k?p
DH8&M0*)+9G$ )0!&(9086'+?B3&()+*8q'8*)+!2If 8DR'&3 )
Z,

0!827 ?'XL
m  a0%aP 
m0 %aP  





*

*



    




k a0%@ @
f>iPb &(!K'+&3!K'+G$*!# @ c&3I>qGB(% 0]\'+GC+)+&1R$C+][>i&3=9+Q !
2 a%aP%@ a0 %+)
 >i&(B3BDR*5 0 '"+m] x9+&(DE)0!&(*)X*B


5X*8'B(B(B( 50&(5]9 >i&3 7*$ 8!   @ / fNxImb *CZ*8X7 &()+Q=9+&E$C0B3Ob


&(DR*Q &()0&()+QR] O90&(DE)+!#&( )XBe5X*8*B(B3B(*5+&(5]9+!b *C DHb C0!#>F*)P''+&3)+
**C0i'+ A-E$*!# %/q6 C0!<k0 i+*!7* B(C0DR 9+%@   @ X>i+&3B(
0 *I$ C08!oX97* B(C0DR */ 6`C+!  r }0w*u  *{Ls tHr Pb  I*$%' 8H*I
9+   @P /66`C+!p+ tEw *uX~ v  r 9+ W *IR90'8DE&()X)`DEL
!C+8#!F+ >DmC+$aR'+B(&()0*8'8*)+!2If 8DR'&3 )
 G%5X)+9+! O9+&3DR)+!&3 )X*BT
7  B3C+DR/
;  f+ #  )0!&(9086'+?DR'8#&1
, 
- 
>i+&($a[*!6>q?`)+ >ZX!i+?$ 8#8!5] )+9+&3)+QSB(&()0*8q8'*)0!#If 8#DH&( )

e 
a-  
6+&(!e90&(BTL'!'0 $ x 890&()XqPbm
W*)+9k+  $ x 890&()XjPbk-0 !#?*8
f>i+&3$a[&3!p O9+&3DR)+!&3 )X*B]7  B3C+DRF&(!6%5X)+9+9`bo
/j60&(!i&(!i$*)+!&3!#')P
>i&3'\90@ n 
/  *p'+6&3I>j?85+BT*$n-k>i&3H -0 '+)"'+n90'8DE&1
)X*)P.$ DE! a@
W+Cq8?!#&(B3B0%5X)+9+!qPbEWI*$%' 8*I@
Ef>iPb L/ pB3!+
&3I>q?8#5+B(*$?-m&3)+!#*9\>i&3G00'0)\'+?9+%'8DE&()X*)P6]$ DE!0/eX
X*5+5])+!6E+*8S&3)\'+&3!6$*!#
;  f  @>A$ )+!#&(9+86'+?DR'8#&1
,    
>i+&($a[*!6>q?`)+ >ZX!i+?$ 8#8!5] )+9+&3)+QSB(&()0*8q8'*)0!#If 8#DH&( )


  %
6+&(!DHL'8&M!#+*8#! + $ x 89+&3)XE0 8&  )PaB(B3bPb)*DE C+)P 9+%
5)+9+&()0QR )G'+  $ O*89+&3)X'X+C0p*8E&3!iC+)+$aX*)0Q 9 >iPb cNxpX!
9+[>i&1'o'+EX*!# Z+&3Q P If*8DmC+B("If 8*8P%/"60&(!&(!?$ )0!&(!2')` >i&3
'+?9+%'8#DR&3)X*)Pi]&()0QG*/

*

&$





&$



; H'0kDR*Q )+&1'C+9+*I+k9+%'8DE&()X*)PpDR*!C+8#!p+k7* B(C+DE% x%5X*)09+&()+Q


5+8 5]82'&3!?*IiB(&3)+*8W8'*)0!#If 8#DH&( )/R6+R!&3Q )I6[90'8DE&()X)`?>i&3B(B
DR*!C+8#+ {Ly%~r%uXvw*v~{Lu (}]yar r%y ~ u 5+8# 58#&(!.*I:?8'*)+!2If 8DR&( ):,>i&3B(B
 #8&3Q P# xX*)+9+9
  $o8#DR*&() 8&3Q P# O+*)+9+9>i+) )0h*5+5+B3&(!['0
'8')+!#If 8#DHL'&(*) NxIW!#+j+G9+8DE&()+*)PR&3!K5*!&3&37* 6&3I+ >j7 8"8&3Q P#
X*)+9+9[* $%'!$ DE?B(I 2 OX)+9+90'+)G+?9+8#DR&3)X*)Pi&(!6)+QP&37 /
;  f 6+8 X$%'&3 )[DR8&1
,    
$ 8#8!#5*)+9+!i'S8 X$%'&(*)G+8 C0Q \'+ @0&3!,

e   
Nx&(!:$B(8'XL4 #8&3Q P# O+*)+9+9
6  $jf>i0&($a&()WO>j O9+&3DR)+!&3 )+! DR*)+!
*)*88# > 5] &3)`&()+Qm*)P'&1 x$B3$aP>i&(!# >i&(B(B]8 X$%i'S #B3I # xX*)+909
m* $%
*) *8#8 >d5*&()P'&3)+Q$B3$aP>i&3! /o6+&(!K&3!k>iPb 8 X$%'&3 )+!KX7 )+QP&37 
9+8DE&()+*)P/
; 6+&(!&()P'85+8#''&3 )[I9+8#DR&3)X*)P]*!DR*!C08&()0QR]*'G'+7  B3C+DE`
5X*)+9+&3)+QK*)09"'+n 8#&()`''&3 )H508!#827&3)+QS5+8*58#'&3!FI4k'8')+!#If 8#DHL'&(*):
*B(!#*B3B( > C+!'&3)P'8#5+8%m6+ 8D Q  DR%'8#&($B(B3b*/X 8 &3)+!#'*)+$*e&1I
g,.   05+*)+9+!S7  B3C+DE\`b I*$%' 8K*I*)+9 X&(5+!K+ 8&3)
a&( ) f!9+    +:>i+8#  &(!W+K!#'*)+9X89c 89+89c+*!&3!a%4*)09
, ,P  5X *)+9+!i7 *B(C+DEWPbkI*$%' 86*I-S*)+9G*B3! X&35+!F'0n 8&3)
a&( )[!#k9+% ,  -P +)"*)+$*)H)0@> !>iPb  ,  !#+ C+B39H%5X)+9
7  B3C+DRnPb S)+9[508!#827 k*8&()Pa&( )cf!E9+ ,   @ %/
; j)+ >h$B3 !.>i&3'kB3&3B(eB3DEDH6'+J!b!4'XLa*q+j90'8DE&()X)`
*IeKDR'8#&10&1i9+ ! ) ' DR8F>iXX!&(!Fb* CC0!*/
;
. d ( NxIO>jhDR'8#&($!\*8#!&3DR&3BT*8j'0) '+%b X7*'+!*DR
9+8DE&()+*)P/
; @:  NxI =&(!J!#&(DE&(B(*8:' R*'+) 0 0If 8! DEq&3)P7 82'&3+B(.DHL'8&M
0E/6`C+!`b"6+ 8#D 90L K 9+%@ 0 09+%@ W09+  0 9+%L W09+  0 #09+  0
-*




('

&$





*



*



9+%L W09+ 0 0k 90@ n09+%@  9+@ n




*



*

*!i9+!#&(89:/
&
;k@ f+ Z  < ,  ]K"B(&3)+88'*)+!2If 8DR&(  ):*)+9B( 
.   ]RO>j 8#9+8#9 X!! If 8 /6+) '+RDHL'8&3$!   *)+9  
X7 ?'+?!'DRn9+%'8DE&()X*)P/


; @:  X8 D BT*!2e>q ' !q)+*!>j`)+ > X   )+9   *8#6!&3DR&3BT*8
*)+9\'+?8#!C0B3iIf B(B3 >i!qIf8 D  DRDR"@
/
&
$ $

-

 
  
 !"$#%&' ()#*,+.-/
!01
!-' 2
!-43
 5)&6%#7% 8 9:;*
<>=
<GF
<GK
<GF

9"?@9AB#C9D.E6
&H"I "(1"E ?J9&'%#
&'I (L8"E'D)#C"(.:M&6I (N8"% 9O#
&H"I "(1"E6&'PQ&6 (

RSRSRTRSR
9= "?T9AU#C9D)E'

<GV XWY Z"([]\^[_?J`9&ab- V "#2Xcdecfg&6(L9O!:)D.%:h.g()&6"(ij.
:)9?@&6()"(LC:)`klWnmo"ijWp0q"():M"E'#r1`sit^uwvyxzu{yv`|~s}W n"#O#%&6:
Q"%w^9O co"():M% E'D)?@(J1-s&8 ("(L9 c0qcfZ)(^1Q8 g)g%"i"% 9
!51"()#O&6 (hil 9O?D)EH
:.klWnm kyg m aL WssX}W `
Ob
q"97&6()#2w"()%"01&i

W

)(
:) kWm, }W }W t }W

 97&6(h")97cd 9:)#

:) :)
:)@ :.


< )D 5)5  #gcfr9O5)E6"%Z)9O c k mCL k m7&6()r"  8  )?T5)E'"7)(cf1Q8 


ww
 

:)@ :) :) :)

fD.r.E'i 2 1"(.: #&6:.e&6#rP9]b%Q"D.#ecf]"iX)h9OcC#@"9O$)h#"?T
k# t9O 5b9O @"id:)9?@&6()"(L# (_)@5)98&6 D)#ncd AU#()#m-@7ND)#
cf1Q8 
 SZ}W j Z}W j M}W Q
&6?@&6E6"9EcfZ1Q8 
 }W j }W Z}W
$%"( "E6#O^:)^)e#"?@e"()"E'#&'#gcC& .e%"i"% 9p!51"()#O&6 ( E6 ()I
)#% (.:9 c
:)`klWnmtY }W  s}W d s}W
!&'E':)&6()I
}W
 Y s}W  s}W d

 Y }W  }W , s}W
():#&'?T&'EH"9OE'ril 9o)n)&'9:h9 c*
:.`klWnm }W  }W j j}W
}W j }W j }W


 S}W j }W j Ms}W Q
g%Q"(5)D!n"E'E )#Or()&6(.p&6:.(L&'#s I )9 &6(^J% ?@51"% ?T9&hil"9?
"#
}W }W  s}W 

:)`klWnm 

:)kWm 
 }W }W }W 

:)`klWnm


}W }W s}W

3

7) #O%"():$?T9O&S (@)sE6i O )"():@#&6:.s&'#dN() cC(e"#,)pz  z"{i Wp0


"():h&6#C:)()": kWm*

}W s}W  }W 
kWnmo*4 Z}W }W }W

}W s}W }W
7D.#Xcdg) 8"n)&6:.(L&$il
9 S
\ S?J9&'%#
W kWnmt:) kWnm 
7)Z": OD)IL`?J`9&a$&'#o)n 9"()#O5b"#"i)$uwvyxzu{v`| @z"{|  kWm*


}W }W Z}W
klWnmf*4 }W  }W }W

s}W  s}W }W
7D.# bklWnm kWnm -r% ?@5)D.s) %"i"% 9f?T9&b0d8"9OJ9 c
"(): % E'D)?T(^ cf e !9"%p)$?@&6() 9% 99O#5  ():.&6()I)9Oc "(.:
% E'D)?T( 0w"7)7[sM\Z[sM7:)9?@&6(1"(Lti )7?@&6() 90 "(.:S)(S5)E6"%
1C(ND)?pb9X&'($)aL 6T(L9Oh"i .Z%"i"% 97?T9O&b-7)(cdZ"E'9O(1
)#&'I ()#7Lk2Zm < M 9pI ()9"E'E'"0bil 9[\][?J9&'%#0 cdr%Q"(:) 1()r.%"i%"9?J`9&a
N
kWnm7Yk2Zm aL s}W 
"():e)Z": OD)ILZ?T9&J L kWnm kWm 0)#O@1
bklWn m7 kyg m  . o}W y

"():e)(Mcd1Q8 )&6:. (L&
W bklWnm:.`klWnm

 ij:)`kWmf&6#7()"(! P9.0))(MW&6#7&'(L8 92&')E6"(.:cdnND)#X1Q8 


W  :)` kWm kWm


7)&6#d&6#,(.cC(h# |Oz !| " | $# t &oE6E6 cC#D)#fp% ?T5.D.X)s&6(L8 9# "i
S?T9&TD)#O&6()IS:)9?@&6(1"(L#-sk7)9&6#CE6#Sr%E6 #OE'J9EH:h9D)E'"01E6#
(.cC( "# = 9"?@9AB#Z9D)E'"0 cC)&6%w"E6E' cC#n ()S# E8 @& %ND1&6 ()#(W '
cC)(MW &6#7&6(L8"9O&6)E' ))#O)n !".m

< q"97."?@5)E60)&6(e.p3\_3%"#
W ]

)()%"i"% 97?T9&J&6#
kWnm


"():h#S)Z": OD)ILZ?T9&J&6#
bklWnm kWm 



"():h#)01&ij:.klWnm  0))&6(L8"9#OgijW&6#
W  :.` klWnm klWnm 


RSRSRTRSR
F &6"I  (1E ?T9O&6%#
< 9O&6%#o&'(eI ()9"E;"9% ?@5)E6&'%Q:$  O%#or?T"()&'5)D)EH`"0!"():$cdZ"9
"E'cfQ!# E6 N&6()I@il 9scfQ!#n$#&'?T5)E'&'i e)? &6(LJ# ?@)&6()IJb9- V "#O
cf cfM!5)E' 9:> ()#D.%w>coQ ]:)#)*MD)#&'()IE6?T(N"9O 9O c k 9
% E'D)?T(  5 9&' ()#wm9:)D)%?T9O& &'(L9O co %w.E6"(>il 9?0f"9@
8 (#&'?T5.E69$il"9?@#- 7)&6#e5b]"ip#&6?@5)E'& 1%&' (~&6#hI :il"9%92w"&'(
5)D)95  #O#Tk% ?T5.D.&'()Ie9"(. 0 :)9?@&6(1"(L0 &6(L8 9#Qm0)D.Z&6#n(."I !:^il 9
")9o5)D)9O5b"##-f1 9d &6()#2w"(.%"0.#D)5)5  #O" Deco(NCr9"&'#n?T9O&TW
E6"9I"o5b cd90#QSW - X#&'()IE6?T(Lw"92?T9O&6%#9:)D)%XW )0L#Q 0
9 co %w)E' (ril 9?cC&6E'E!()tbd8 92r)E65.ilD)E 0  %QD)#ZkLm &'j&6##2&'E6E()"8"9O
Q"#2J9"&'#9Oco %w)E6 (il 9O? ?J9&'%#X$8"9OEH"9OI p5  cf9#0 (): kqm
 ()n1"#oS# ?@) c :)QE;cC&'hE6Eb)nE'?@(Lw9O$?T9&6%#f" DD)#:
% (L8 9OZW &6(Le9 c %w)E' (il 9?- s cf8 90 h5b9Oil 9O? "#N#E6&'"p)&6#
)9&'#fp O9fi"% 9&'PQ&6 (TQ8"&6E6")E60LN() cC(h"# z  v z #  z"{  v 1- fD.
bil 9cdg:.@)&6#0.cf 19O#Os:)&6I"9#O#7 (:)&H"I" (1"Eb?J9&'%#





< 
  ( [~\ [?J9&a W &6#r#&6: ]b z  v z # &iE6Ef)M
:)&H"I" (1"E (N9&'#9pP9O)0b& -B-CWs  cC)()8 9n 1- K %D.&'8"E6(LE'"0 
:)&H"I" (1"Eb?J9&a$&'#7"i )nil 9?
W  QQ 

W  -- Ws-- Q-- Q -- 

QQW


ncC9&)&6#7?T9O&$"#C:)&HI1kW W QQ W  m -t7D.#Xil 97&'()#O"()%



  
:)&H"I)k2
m  
 
 

<GF &H"I "(1"E;?T9O&6%#X"9n8"9OMQ#OhT":):;0q#O%Q"E6"9s?pD)E'&65)E 0)():?D.E'&'5)E'" (.Z%"(Q"#O&6E'@8 9&i $1`


:)&H"I)k Q m:)&6"I1k QQ m:)&H"I)k  QQ m
w  
w  w
w   
:)&6"I1k QQ m:) &H"I)k QQ m
w  w
 w  
"():
:)&6"I)k QQ my:)&HI1k QQ m:)&6"I1k QQ
m
w  w
w  
  
7D.#Xil 97&'()#O"()%
:)&HI1k2
my:)&HI)ky
"m:)&6"I1ky
m
 
 
 
"():h?T"9nI ()9"E6E
:)&H"I)k2
m :)&6"I1ky
m
 
 
7D.#s9"&6#O&6()IS:)&6"I  (1E ?T9O&6%#o@)&6I"5  cf9#X&6#78 9Oh"#O"-7M 9OI (!
9E6E'"0d5  E!(. ?T&6"Eo .5.9#O#&' ()#Ji:)&6"I  ()"Eo?T9O& "9O8" 92G" #O 
% ?@5)D."-Z1 9 &'()#O"()%0 % (.#&6:.9 )r5b"E'() ?@&H"E k 'bmX ' >+ ' 3!s%Q"(J"5)5)E@)&6#,5  E'()  ?@&HE.p"(LT[$\T[?T9&rWp0%9&'()Ig) (.c
?J9&a klWnmt W + W 3!- (TI ()9"E 0N#OD)%we?J9&ar?T bX:)&@%D)E'

_% ?@5)D."- f D.Sil 9S_:)&6"I  (1Ef?T9O&W :)&HI1k QQ m 0dcd


1Q8 
W :.&H"I.k Q m   
W :.&H"I.k w  Q w m
w  w
"():eND)#
kWmt :)&HI1k + 3 n+ 3 QQ + Z3"mt :)&HI1k k Om QQ k mm
  w
 
7)&6#C&6#o9D)nil 97?@ 9OI (.9E 5b E() ?@&H"E'# *
k:.&H"I.k Q mm :)&6"I.k k m QQ k mOm
 w
 
7D.#or:)r(NJ# 927"i 5  E'()" ?T&6"Eq 5b9&6 (@Sp:.&H"I "(1"E ?J9&a 0N (.
OD)#OX1"#7@5 92il 9?
&'C (e):)&H"I" (1"E;(L9&'#C#51"9E' <  itWY&'# ([\^[:)&6"I  (1E ?J9&aeW:)&6"I1k QQ m 0 )()ZE6&6(.Q"9
9()#Oil 9O?J`&6"(*   &6#o8"9Oh#O&6?@5)E6 *  w
';
 QQ  ';
 ';




  'q--   -- -- Q-- Q --   'q--   -- 'q 

'
Q

'
'



7D.#@:.&6EH` # . 19O#Oj%  9:)&'(1 '; N 0 )f#O% ():r%`  9O:)&6(1` 'q
N 0!"():J#Ogil 92;- ($51"92&6%D)EH90L&'i _ k Q mt&6#)X#O"():1"9O:
 

 9:) 9:M1#&6#7il 9
 0))(
   )  f )QQ& ) 

7)&6#E6":)#(1D.9"E'E'~G.%"()%5.^"i    `z #   "e"() :    `z #   "0


cC)&6%whcfZ() c:.&6#%D)##< ?T?b9il9 ? EH"#2cd 1r.9"()"i?T9O&&6#r %D)"Eo.
(D.?b9gio() ( P9M9 cC#g&'(9O c %w)E6 (il 9?-T7ND)#p&'&6#ZQ#OM#
1
<  @7)S9"()M"if$:)&H"I" (1"E ?J9&a&'#& %ND1Ee)r(ND)?pb9n"i
&'#7(. (! P9O@(L9&'#


< 7D.#01il 97&6(.#Ow()%01:)&H"I)k +


   mt1"#C9"() .    
RSRSRTRSR
K &6I"(L8"E6D)#X"():&6I"(L8 %"9#
<GV  *     TME6&'()Q99()#Oil 9O?J`&6"(^il9 ? e8 %"9p#5)"% 
&'#OEiy-  (.g"ij)g#&6?@5)E'#Os5  ##O&6)E'Z ."?T5.E6#s"it#OD)%w_@9"()#2il 9?T&6 (
&6#T)^&':)(L& 9()#Oil 9O?J`&6"
( t07#O 1
il 9J"E6E 
@-S si 9n)S&':)(L& 5 9&' (;0;.@(.p#O&6?@5)E6#On ."?T5.E6S"id#D)%w
9()#Oil 9O?J`&6"(g&'#j :.&6EH`&6"(  $il 9j#O ?@d#O%Q"E6"9  0"#O1
S

il 9C"E6E  S< (I"()9"E 0!. D)I ;0 :)#7(."7E6 SE6&'"n:.&6EH`&6"(;- X cf8 90 )9O"9
"i (#"?TZ#5 %&H"E 8 % 9#&'
(  il 9CcC)&6%w
 &6#s"# #O&6?@5)E6"# T:)&'EH&6 ( 0
"():e)#g"9N() cC(^#     wu{v`| "< 
 ^ (     wu{v`| S"i &'#fZ() (! P9Op8 % 9   #D.%w$1
 ^
 il 9Z# ?@S#%QEH"9  -$7)@#%QEH"9  &6#N() cC( "#)    `z #  
% 9O9#O5b"():)&6(.IS q "%$  =  (.#&6:.9C)E6&'()Q9f9"()#Oil"9?T&' &( *   :) 1(.:L
<!  #
k ' ' m*4 k 
' ' m -g7.(_)r8 % (9 M ky  mX&6#n"(_&6I (N8"% 9")i
cC&'] &'I (L8"E'D)$
0 #O&6()%*
_+
pky  mn k
  m ,
-eM 9@I ()9"E6E 0
"(LS() (! P9Og8"% 9fi;)Cil 9O? k '  m&'#f"(T &'I (L8 % 9dcC&@&6I"(L8"E6D)

!- &'?T&'EH"9OE' 0 k  ' m&'#o"(e&6I (L8 %  97-i cC&$&6I (N8"E'D) !0.&'i ' &6#d() (!
P9O)-n7)8"%  (9 h ky mC&6# v`{j"(&6I (L8 % 90 b%Q"D.#.
h k
Lm
&6#7()"XS#%"EH97?D)E'&65)E' " %i q
 "%$ @M 9 I ()9"E'E'"0&i W :)&6"I)k QQ m&6#dp:)&HI  (1"Eq?T9O&b0
<!  #
)(J) 1"#&'#d8"% 9# QQ 9 &6I (L 8 %w 9O#fil 9 0!cC&T&6I"(L8"E
D)# QQ 9#5 %&'8"E - 
  "%$  w i &6#$)_&6:)(L&'~ 5b9 90C.(8 9O() ( P9 8 %"9
<!  #
&6#S"( &'I (L8"% 90dcC&' &6I (N8"E'D)klcCL0 /m->M 9hI ()9"E6E 0&'
i
 1 &'(# ^&'?T#s.&6:)(L&' 5 9"90b)(8 9O^(. (! P9OJ8 %"9n&6#(
&6I"(L8 %"901cC&'&6I (L8"E6D)2  k L3 /m  "%$  
i *    &'#T(N E6&6(.Q"9p9"(.#Oil 9O?J&6 ( 0d()4
: &6#S"(L
<!  #
() (! P9O$8 %"9n&6()(ND)E6E #51%6 5 7k m0 )
( &6# "(&'I (L8 % 9cC&'
&6I"(L8"E6D)  -XklL0 /`m





<!  #"%$  V  *    t),9 %&6"(g.9 D)I"Z)dE'&6())% ()()%2


&6()I) 9&'I &6(JMk+ m-t7)( k+ Lmd&'#C"(h&6I"(L8 %"9XcC&h&'I (L8"E6D.r
klcCL0/`m 0 "():k s+Nmo &'#C"(h&6I"(L8  %"9XcC&h&'I (L8"E6D. wTklcCL0/m
< g:)e()" % ()#O&6:)9s)  8"% 9n"#"(^&'I (L8"% 90 8 () D.I   &6#
"E'cfQ!#  0. %"D)#O cf %Q"()(."o:)9?@&6()CcC17&6I (L8"E6D)  #. D)E6:T1Q8 <  i W &'#S"( [G\ [ ?T9&b0cde#Q 16 ]&6#S"(     wu{v`|Zil"9W cC&'
&6I"(L8"E6D)
 @&'i &'t&'#"E69OQ":!r"(S&'I (L8"% 9il 9$cC&'@&6I (L8"E6D)
  0L& -U"!W _
 q- (")9Zcd 9O:)#0jil"9)@5)D)95  #O#pio%"?T5)D!&6(.IM&6I (N8"E'D)#
"():~&6I (N8"% 9O#$cf^:. ()"J:)&6#2&6(.I D)&6#O> cd( ?J9&a W "():>&'#
E6&6(.Q"9f9"(.#Oil 9O?J&6 (  : O&'I ( e&'#Z9?T"(il 9 O cC( .-r (]&6I"(L8 %"9
< k ()%&6:)(N"E6E 0 )rcf"9
&6#r^8 % 9rcC)&6%w "5)#@&'# v  ]:.&69%&6 ( cC)(>%:G"( L Z- 7.
9O?T&'() E' I" &6#eND)#M N)9O&6:"iSn9O?J( (): K ()I"E6&6#O;0s) D)I" #O ?T
5b 5)E6X5)9Oil
9 O5)9&'()%&'51"E18"E6D.  ()
: O5)9O&6()%&651Eq8"% 9 rQ8 "&6:T)&6#k 9
O%w1"9"%9&'#O&6 % S 
9 25)9 5  9 S&6()#2Q:M"i O5)9O&6()%&651E Nm -j7)("I "&6(;0
28 %"9 @&6#75)D)9O V `&6( - K (.I E6&'#e&6#78"9Oh% #?@ 5  E6&w"(1m< 
  V 2 %*     JhE6&'()Q99"(.#Oil 9O?J&6 ( 0 "():E'  b
@#O%Q"E6"9-77)(.    ".zu f"i % 99O#O5b (.:)&6()I@&'#7)g#s"iE6E
8 % 9O#kl&6()%E6D):.&6()I  mf#OD)%wM1
r
 q< 7D.#M(&6I (L8 % 9ecC& &'I (L8"E'D) &'#$)#"?T^)&6(.I "#h () (!
P9O_E6?T(LS"iC)e&6I ()#51%ecC&' &6I"(L8"E6D)  - &6()%   ]&6#
 %ND)&'8"E'(L>7k  1 m  0tcfeND)#S#Oe1`)e&6I ()#5)"%h" i
&
cC&']&'I (L8"E'D)  &'#n)@#"?@S)&'I (]"#Z)@(D.E6E#51% 5k  m"i
 1- (J51"92&'%D)E6"90")X&6I"()#O51"%X&6#,"EcoQ#dZ#OD))#5)"%i @-q9O ?
)X"  8 C:)&6#O%D)#O#&' (rcfX"E'##C1 T&'#"(S&'I (L8"E6D.7"i >&'ib"():S (.E'
&'%i 5 7k 4
 mf&6#C() ( P9)0.& -U"-cC)( ~ ]&6#7()C ()   () "%$  V   *     n)n9"()#2il 9?T&6 ( pk ' ' mf*4 k 
' ' m<!  #
7)(S) ') `!&6#&'#)7&6I ()#5)"%  5k M    mcC&S&'I  (L8"E'D)C
!0 cC )&'E6
) ' y`!&6# &6#;.,&6I ()#5)"% 5 7k p
  m cC&&'I (L8"E6D.,
!-j1 9 E6E ")9
8"E6D)# 
!0.,&6I ()#5)"%5 k 2   m;&6# OD)#2 )dP9OX8"% 9j#O51"%
  k cCL3 /m - 


< 7)s9OE6&' ()#.&65Sbcf(e&6I (N8"% 9O#o"():T:)&HI  (1"E.?J9&'%#&'#)sil"E


E6 cC&6()I.<   D.5)5b"#1  &'#$"( [q :)&'?T()#&' (1"E78"% 9$#O51"%0"(.:
#D)5)5  #O1` *    &6#TE6&'()Q9S9"(.#Oil 9O?J&6 ( - D)5)5  #M1
 1#T(G 9O:)9O:G1"#&'# Y k L ` QQ m 0f#OD)%w>)@Q"%w $&'#T(
&6I"(L8 %"9,i GcC&'S&6I (N8"E'D)  N `- 7 )(@  )7?T9&  &'#:.&H"I "(1"E
?J9&a )!&6(ei"%  :)&6"I1k ; Q  m



L
(

8


O
9

#


'
E


0
'
&
i
_

Y

k
L


b
m
'
&
#
o1"#O&6# #D.%wZ1    :.&H"I)k  QQ  m 0
<>=
)(M"%w &6#C(&6I  (L8  %  9X"i cC&&6I"(L8"E6D)2  

<
  D)5)5  #C) o&'#d(T&6I (N8"% 9,"i >cC&'S&6I (N8"E'D) -7)(
 $ N  0t#     &6
# OD.#O)$%"E6D)?@(8 % 9cC&' (L9O& %ND1"E
 0():E6E")9h(N9&'#hP9)- tD.&6()I "E'E )#]% E'D)?@(~8 % 9O#
 I )9Tcd#O1  :)&HI1k  Q  m- =  (L8 9#E'"0X&i 
:)&H"I)k  Q  m0N)(JLS:) )()&'&6 (@"i     cd s#OX1)
CN  0."(.:
#*  &'#C "(h &'I (L8 % 9XcC&h&'I (L8"E'D)2 
( *    &6##"&6:h  z  v
< 
  @ E6&6(.Q"9X9()#Oil 9O?J`&6"
z #  z # 7&'ij)9&'# "( 9:)9:1"#&'#  "i  il 9CcC)&6%w^)p?T9O&  
&6#7:)&6"I  (1E <GV ?T?Tr3pND)#C# #7)X9()#Oil 9O?J`&6"($&6#o:.&H"I "(1"E6&'PQ".E6C&'i "():h (.E'
&'i&'C1#sr1#&6#C% ()#&'#O&6()Ir(N&69OE'$"ij&6I (L8 % 9O#<!  #"%$  V *    t),9 %&6"(g.9 D)I"Z)dE'&6())% ()()%2
&6()I$)r 9&'I &6(]kl+ Lm -g7)(~kl+ Lms"():Gk s+Nms"9r "&6I (L8 % 9O#
il 9Z- &6(.%.#ncd @8"% 9O#s9n E6&'()Q9E'S&'():)5b():)(L "(): &'#ocf
:)&6?@()#O&6 ()"E 0`)ril 9? 1"#O&6#til 9 Z-j7ND)# &6#t:)&6"I  ()"E6&'PQ")E' )&6():):;0
&'i *4 kkl+ Lm k s+Lmm0)(
  
   g :)&6"I1ky Zm

<  ib"()7N() cC#d) c n:)&6"I  ()"E6&'Pdn9"(.#Oil 9O?J&6 ( 0`)(@&'jb% ?@#8"9O
Q"#2^h?T"()&65.D)EH"-Z1 9n."?@5)E'"0;&'(_)S"  8 S9 %&6"(] ."?T5.E6cd


#T8 92 %ND)&'%wE_1 ?D)#Op1Q8 $9"()3 k#O&6()%J:)&6"I1ky ZmZ)"#gcd


() (! P9OS(L9O&6#m- E'#)0)cd%Q"(# %ND19Q#&6E *

  :)&6"I1ky Zm :.&H"I)k2  mt f    


"():h)(.%(   0)&':)(L&T9"(.#Oil 9O?J&6 ( -7k n"?T9&'%Q"E'E'"0N)&6#
"?T"D)(L#f)i"%o)7&'i " Dh9 %7cC&'%"9O D)():e)#?TnE'&6()0" D
I 7)&6:)(N&'.m< 
   ( [~\>[?T9O& W &6#J#"&6:G   z  v z #  z # r&i.
% 9O9#O5b"():)&6(.I@E'&6()"9f9"()#2il 9?T&6 ( &6#7:.&H"I "(1"E6&'PQ".E6" "%$  7)?T9O& W :)&6"I1k
Lm&6#T:)&HI  (1"E'&6P")E60b%Q"D)#O.
<!  #
E6&6(.Q"9Z 5 9` 9 >&6(])J#Ow():1"9O:  1"#&'#  kk2  m k   mm&6# OD)#OrW
&'#OEiy*    Wp0 cC.&6%w&'#h:)&H"I" (1"E - >E6E:)&6" I  () "E  ?T9O&6%#"9
:)&H"I" (1"E'&6PQ)E6pk()S#OD)95)9O&6#O)9O m  
<  e ?J9&a^W &6#n:.&H"I "(1"E6&'PQ".E6p&id"():] ()E'^&'i,W 
il 9p#O ?TT&6(L8 9O&6)E'J?T9O&
  (): #"?T$:.&H"I "(1"E?J`9&a
 
- ( ")9
cf 9O:)#0Ns?J9&aZ&6#:)&H"I" (1"E'&6PQ)E6t&iq"():r (.E'Z&'i1&j&'#j#O&6?@&6EH9;n :.&H"I "(1"E
?J9&a <
  D)5.5b #OrW co#n:)&H"I" (1"E'&6PQ)E6-7)(     cd D)E':br %ND1"Ej
# ?@e:)&HI  (1"Ed?J`9&a
 M0il"9r# ?@e%w) &'%h"is1"#&'# 
k cC)&6%w ?TQ b
:)&b9O(Leil9 ? .#Ow():1"9O:"9:)9:1#&6#- fD.hL~)%w1"()I""i
8"9&H)E6#fil 9?pD)EH.0
W    
        
 
"#C:)#O&69:;0)cC)9  */      &6#o.Z%w)"()I "i8"9&6")E6#7?J`9&ab   il 9Z# ?@J&'(L8 92&')E6T?J9&a
 @=  (L8 9O#E' 0#OD)5)5  #J1pW 
9O&'  :.&H"I)k  QQ  m 01#r)  7
N-t7)(


Wrk m   7  o N CN"k m


"():#
  &6#e(&6I (L8 % 9eil 9eW cC& &6I (N8"E'D) N- &6()% &6#
&6(L8 9O&')E6S(): QQ &6#Ze1"#O&6#0 cd@#r1 QQ  &'#"E6#O
1"#&'#k cCL3 /m -s7N D)#Xcf  ) 8"gil D.():^@1"#&'#si % (. #&6#2&'()IT (L&69OEh"i
&6I"(L8 %"9#X"ijWg0q"():#SW&6#7:)&6"I  ()"E6&'PQ")E'"


< q 9O ? V ?T?T3(): V ?T?T ~cf # 1_&'i@cd %"( 1():Y1#&6#


k L QQ mS"i  cC)&6%w % ()#&'#O#$(L &'9E' "i&'I (L8"% 9#eiWp07)(
WY&' #s:)&6" I  ()"E6&'PQ")E'n"():MW   il"9s#O ?TZ:)&6"I  (1E ?J9&a  "(.:
# ?@g&'(L8 92&')E6Z?J`9&a @-Cp() c?T""Z)&'# #O?T(L?@ 9Z5)9%&'#"0
#5 %&i &6()IS5)9O%&'#E'$cC1`  "():  9"<   V W  S"([ \][ ?J`9&ab0 "():#OD)5)5  #r)Tk L Q m
&6#7"(e"9:)9:h1#&6#f"i  #OD)%we1oQ"%w X&6#f"(h&6I"(L8 %"97"i WcC &' 
&6I"(L8"E6D)2 Nrkl& -U"-t!W 7  sil 9r QQ [ m -t7)(cf1Q8"


W 
:)&H"I)k  Q  m  


cC)9O  &'#o)[]\[_?T9O&TcC&'h% E6D)?@()# L ` QQ *
 k L ` QQ m   
 

<
   V 

1bs)"9:)9:h1#&6# 
*4 k N ` Q md"i  0)"(.:eE6
*4 k QQ m7 n)#2w"():)"9: 9:.9:M )"# &'#7"i  -t7)(
 

      
klcCL0 /`m - @Le)%w1"()I "i8"9&6")E'#fil 9O?D)E6
W     
       
 (e)")9C1"():;01#O&6()%  C
N  0)cfZ#1
     :.&H"I)k  QQ  m


= ?)&'()&6()I)#OZcd@& %ND1&6 ()#7cd .w&6(e) E'?@?J.SRSRSRTRSR
=  ?@5)D.&6()IS&6I (N8"E'D)#
<  ccf%"?T5)D! )&'I (L8"E'D)#7():h&6I"(L8 %"9#7"i I ()9"E ?T9O&b7)"hE'?@?J.9&'#
  7 #O%Q"E6" 9 M&'#C"(h&6I"(L8"E6D) "i([^\[# %ND1"9O?J9&a$W &i
< 
"():h ()Ee:) kW 
 mt 
"

<
    i ^&'# "(M&'I (L8"E6D.g"iWp0q)(^W! T  $il 9C#O ?Tg() (! P9& q0
ND)#SklW  m h  -7ND)#W  &'# ()&6(L8"9O&6)E'"0 "():#e:.klW
 m,  kl7)  9O? 3ril9 ? E6"#OCcd AU#()#m- =  (L8"9#OE 0 &i:)klW
 mt  0!.(hW># &'#o()"C&'(N8"92&6.E6rk"IL"&'($L$7) 9? 3 m 0!cC)&'%w
?T "()#)n)S% 99O# 5  ():.&6()IhE6&'()Q9 9"()#Oil"9?T&' (^&6#n(." () `  ()
k9%Q"E'E 1 ()   (.S"():_ (L"9Or&%ND)&'8"E'(LncC)(.r:) ?T"&6(_"(.:
9"()I"1Q8 )n#"?@:)&'?T()#&' ( )# V ?T?T3p"i  ()"#m- cd
1Q8 hklW  m J  il 9s#O ?@p() ( P9 0qcC)&'%w?T"()#C1 !W J 
"():h)(.% &6 #C"(h&'I (L8"E'D)"
< f%"D)#"i.&6#oE'?@?J.0NcdZ%"E6Eb:) kW~  md)Ju z"|Ozu{ |  "{  u 1v # v
 z # "iCWp0,"(): #O ?@&'?T#p%"E6E,&' k  m- V ?@?T^
M.( #Q#r1`p.
&6I"(L8"E6D)#7"i WY95)9%&'#E$.ZP9O!#Xi k bm  "%$  V XW )?J`9&a
<!  #
W  


7)()%w1"9"%9O&6#O&6%n5  E'()"?T&6"E k  mf&6#7I &8 (L


k  mt :)   CG Y!k2Cbmj>g\ s  T 
q9O ? ) %ND1:)9&6%il 9O?D)EH!0s.&6#h5b"E'() ?@&H"Es1"#P9#hcC)( 
k2
m 30j"(.:#)@&'I (L8"E'D)#g"9&  r*4 k2X
m 3M     QQ
"(): qo kyX
"m 3*/Y     QQa<  (.%pcdr1Q8 )&'I (L8"E'D)#iWp0 cdr%Q"(% ?@5)D.p&6I"(L8 %"9#0  
%Q"D)#Op.&'I (L8 % 9#cC&^&6I (N8"E'D)# ]9p5.9%&6#OE'. #(. (! P9O
8 % 9O#&6()g(ND)E6Ea #5)"%Z"itW  kl 9X& %ND)&'8"E'(LE 0q"i)p(ND)E'E #O51"%
"i $
   m
 "%$  V dW  C)s" 8" ?T9O&b- V fD)#,92r )():T) &6I (N8"%
<!  #
 9O# '' cC&e&6I (N8"E'D)   k2
m 3- ()9fcf"9:)#0)cfncf"(L
S# E8 n.Z %ND1&' (
klW k2,
m "3 mX '' 








 3



 97&6(h")97cd 9:)#
 kyd

 97&%ND)&8"E6(LE'

"m 3 


k2C


'

m 3 '


f 3
' ' 
C

'r
3 '
7)&6#?T9O&p:)!#()"1Q8 CilD)E'E)9"(.ek#O&6()%C&'#t:.9?@&6(1(N&'#tP9n cCN
#) D.E6: .&6#r()"S e#D.95)9O&6#&'()I /m- ():):;0,)e#O% (): & %ND1&6 ( )9e&6#
OD)#OJk2

m 3J&6?@#. 1 9#2g %ND1&' (;- e)SI ()9"Et#O E6D!&6"(&6# '


"9)&9"9O"0)"(): '^ %ND1"E;  ' - (51"92&'%D)E6"90cf1Q8 

Nf*4  
"#X"(h&6I"(L8 %"9s"i W cC&'&6I (L8"E6D)2  Yk2d
m "3! #&6?@&6E6"9o9I D)?@(LCI &8 #

X*4 
"#o"(e&6I (L8 % 9f"i W cC&$&6I (N8"E'D)( 1f k2
"m 3!-j7D.#ocf) 8"
!W LZ  N"():W 
1 Q-e7ND)#0&'idcfTE6 
b@)@ 9O:)9O: 1#&6#

q*4 k N ` m 0.)(

      1
7D.#sW&6#7:.&H"I "(1"E6&'PQ".E6"- ():):;01il9O ? V ?@?T+@cd1Q8 
W  
cC)9O  *4 :)&HI)k ; 1 mo"(.:  *4 k L ` m 


r
#
"

(
"

)
5
)
5
'
E
6
&
Q
%
`



6
&
"

;
(
0
f
c
e

O
9


Q
%


6
E
t
E


)

J



.

"

@
?
5)E6T"iCj&'b ()"%%& AU#g9"))&#gil9O ?
<
>3!-  iZ`J. I &'()()&6(.I"i] Q9J)99 '5)"&69O#T"i OD!8 (.&6E6









9").&'#o"(): ' 15 "&69O#o"i":.D)E'79"))&# tcC)&6%wecdn95)9#(LXLJ)8 %"9


'' &6(   )(h,.():ei;) ()o"Q"9f)9O cC&6E'E1b ' OD!8 (.&6E6
51"&69O#C"(): 'S ' " :)D.E'751&69#f ,#O@)()c8 % 9C&'#
'r' '   '' W ''
7D.#0."%w$51##I  "i Z "9f?pD)E'&65)E'&6# )s5b 5.D)EH&6 (r8"% 9fL@Wp- 
&'i cfX#O"9OcC&'S () OD.8 ()&6E'751"&69():T(.p":.D)E'51&69# #OZ)s5  5)D.EH&6 (
8 % 9 &'#;&6()&&6"E6E *4  1.(Zi 9 [ "9#0`)t5b"5)D)EH`&6"( 8 %"9
#) D.E6:^ % ?TZW -s$%"?T5)D!g)&6#0b"()pcd D)E6:M1Q8 J?D)E&'5)E'eW
N_&#OE'i,[ &'?T#0 cC)&'%w"5.5b"9#h @:.&@%D)ETkl9O_%"?T5)D!&6(.IeW L
1"():;0il"9&6()#2w"(.% m- Xcd8" 90d.&6#%"( bJ:) ()e T%&6(NE'D)#&'()I.
:)&H"I" (1"E'&6PQ`&6"(TW 
  cd1Q8 "-  )#9O8"g)
W
  
 
W W W
    
  
"():h?T"9nI ()9"E6E_kLe&'():)D)%&' (h (h[ m
W 
  
(M519O&'%D)E6"90! D)975  5)D)E6&' ($8 % 9Xi 97[_"Q"9O#s&'#
W 7
  
fD.S#&'()%  &6#)h:)&HI  (1"Ed?J`9&a
  :)&HI1k  1 m 0  &6#rQ#O 

% ?@5)D."*

 :.&H"I)k   m
  ccdg%"(h% ?@5)D.    Q- &'()% 
 k N  mt   

cf1Q8 
:)k gm, C 3
C 3

+


"():h#@L = 9 "?@9AB#C9D.E6




Z   

"():h#

"():h)(.%

o  

Z 


o:)&HI1k   m  

g 
&6()%    YZ 0)cd1Q8 
   
"():h)(.%
  



W f
  7  

 


 





   

  m

k




 k   m


7D.#0 i 97[ Q9#01)(D.?b9C"ij5)"&69O#7"i OD!8 (.&6E69"))&#7&6#
  t k   !  m
Z kk2"    QUm  ky     QBm  m 3!43  Q


"():e)(ND) ? 9C "ij51"&'9#7"ij":)D)E79))&' #C&6#
 k   m
gYkky    QQBm k2     QQBm m 3/3  Q

7)&6#Z&6#Zh9?T"9O)E6ril 9O?D)EHT &':.!#g()pE'! ME6&'"S&'gg"E'E 0 )D.Z.


!5)9##O&6 ()#  0  9"EcoQ#C&6(LI 9O#-,1 97&6()#2w"(.%

 f kky    QQUm ky     QBm m 3!43  QQ 3!














k = ) %w$)&'# m -7)(ND)? 9#


 f  tt   f   f3  










f


  dY



d3

QQ

" 9M(.cC("#  v zuwu  | "T():~%"?TMD)5~&6(~"E6EC#"9O#J"i5)EH%#


k&6(.%E6D.:)&6()I.0f:):)E' () D)I";07)M(D.?b9J"i5bw"E'#J (  cf9#h"():>5)&6()
% ()#wm -e7)Jb 8 @il 9?pD)EHe#.cC#Z1`g)#OJ(ND)? 9O#gI 9O c !5  ()(
&HE6E'"0)"(.:"9O% ?@51"9")E6^ky    m cC)(M[_I #sE6"9I -7)g(ND)?pb9
    QQt k2
m 3M&'#r(.cC( "# )  v #  |z"{  v$"(): 1"#r#O8"9E
&6(L9#2&'()IS5)9 5 92&'#0)cC.&6%whcfncC&6E'E;()"CI"@&'(LS)9O"<  3 $    X5JD)(L&6E1() c0!cdX1Q8 E'cf #,%w) #O(J)( )E6:T"i;#O%Q"E6"9#
bC9OQ"E - s cd8"90!&'cC&'E6E)(.c># ?@&6?@# C% (L8"()&'(LfZ%w)"()I 7.
1E':"if#O%Q"E6"9#ebr% ?@5)E6  0  %"D)#O@"()rI #?T 9O&'I (L8"E'D)#"(.:
&6I"(L8 %"9#C)&'#ocoQ -d1 97&6(.#Ow()%01% ()#O&6:)97)?T9O&
W Z 
7)%w1"9%9&'#O&'%5b E() ?@&H"E k  mf&6#7I"&'8 (ML
k bmt:) !Z    "
 it ()g9#29O&6%#s) 1E6:M"it#%"EH9#C$ g9OQ"E 01)( k  mo1"# (.$P9#0
"():r#)9OC"9d()n9"E.&6I (L8"E6D)#Ck "(.:ND)#t()n9OQ"E!&6I"(L8 %"9#wm -  (
)")971():;01&'i (.Z !51"():)#C. )E6:h"i #%"EH9#oS % ?@5)E6 b0.)(
k  m 1"#jP9O!#, $ n0N():S ()o%"(SQ"#O&6E'Z#O) c>)8 % 9##D.%wJ"#
_ "9Od&6I (N8"% 9O#jcC&'p&'I (L8"E'D)dO0"cC)&'E6$ _ &'#j"(p&6I"(L8 %"9
cC&'&6I"(L8"E6D)MsO-7ND)#r&'g&6#g# ?@&6?@#:.8"(Lw"I  D)#p^&6(L9:)D)%
% ?@5)E6 _(ND)? 9O#p&6(L5)9 .E6? cC.&6%w#O?T#g5)D)9E'_% ()%9(): cC&'
9QE(ND)? 9#0  %"D)#O@&n%Q(&'(N9:)D)%r#D)%wD)#ilD)Et% (.%5!#g"#&6I"(!
8 % 9O#,"():@&6I"(L8"E6D)#t&6(L)7#&D1`&6"(;-okl (@."?@5)E6f"ib)&6#"5)5 Q"9O#
&6(  "i )&6#ocdqAB# "##O&6I ()?@(Lwm 





 
  
 !"#$% &'()
+*-,.0/'*1
 23$%#4# 5 678(
9;: 0<6=#=6$>"=$>#?2<@>A&3 BC$D<@>
9 E"=GFH 6473$%<I  &3<@%$>JK<3$>@%$1LA
9NM &3&36G236"+7'O3#
9NM &3&36G236"+7'O3#P&37Q@>&3I=

RSRSRTRSR
: 6=<#=6"$%U=$%#?2V @1A+&' BT$%<@%
0
9XW GYZ[&]\_^]\_B`6$ab* W <"Gcd!cd[$%&e=6"+7'O3#73`fhg'i<j"ifkmljon%pkqnrf
s0tvuxwybtvz nqi u
{}|~ 7' | Y ~+
<FE0GBT=6"$1+3$%G$>GS2V @1A+&' BT$%<@V$%& ~ *0 64$>&3"=<&3#<.0$>F

Y {

=3&
~

{|r~V 73
~ {

~
| ~|| ~V| ~V { " | | ~V {b8 | | ~ o
cG3$%#h[$>BT2'@%$>34 BC73I 6d2V @1A+&' BT$%<@$%& ~!| c)3$%&3<F o{V
<V"O3U# &3Uh<&e"#K<@%<6 * W <U}cdc)4 cN=3}='4J6"+<F0='$%}2V @>Ae
&3 BC$D<@I $>5<=3[$>I &e5<@>O3G<FEY*


9 GA  OQ#K<&Q.V3 #h0<6=#=6$>"=$>#[2 @1A&3 BC$D<@@%  2'6"LABTUA *)O'


$%& =3["2#$D@8#K<"F} 73$%<I  &0@bBT=6"$1.'* I
 
Y  
 
=3[#h0<6<#6"$%"$%#?2V @>A&3<BT$%<@$> O3$> "$%BC23@%.'$>&Fq#
{|r~V | ~| ~V| ~V
| cGeA  *43$%d0< J6)cG3& ~! .+<&37`"='P$%I & 5<@>O3 <F83$%
B`6$a <6" . .&37 *
9
 W 4Y <&37  V"$%BC$%@D6 BT6$%#*}43&Y <&'7  0K5 ='
=<BC?#h0<6<#6$>"$%#[2<@>A&3 BC$D<@*
9 & @%I 36=<$>"?cd O3@>72336<S='$%<(U=3C#h0<6<#6"$%"$%#S2V @>A&3 BC$D@$%
$%&e5<6$%<&e4O3&3736G$%BC$%@%<6$1L A 3*
% Y %('*) FH 6S" BT
7 <6]$>BT$>@D<6.}c)]0K5 $
  &
9 "! $%&'#Y &3#
$%&e5 6"=$>3@%?BT6$1 % * ! C3[#h0<6<#6$>"$%#?2V @>A&3 BC$D@<+F  $%
73 | Z ~0' 7' ,| % Y %-'*) ~0'
7' ,| % Y %-'*) %~ %('*)"
7' ,| %`| Y ~+. %-'*)"
7' ,| % 7' | Y ~+ 73 ,| %-'*)
7' ,| % 7' ,| % '*) 7' | Y ~+
7' ,| %%('*)| Y ~0+
7' | Y ~+
<&373&'#[=3[#h0<6<#6"$%"$%#[2V @>A&3 BC$D@%d<6?=' <BC<*
/
90  c @%2 1 ?=6"A QO'&3736""=<&373S#h0<6=#=6$>" =$>#T2V @1A+&' BT$%<@ FH 6[I &36=<@
B`6$>#* W 4 3 ) ,| 5! V?<@>@32V @>A&3<BT$%<@% ~ <F 73I 6?BC U
c)P0<@>@B`<3GFH65<6$%<3@% ~ $>&3"K<7T<F 6 * 0 =G=0)<@>@3=3&e=6"$%
$%& =3[BT=6"$1`Y ~ @%$>$%7& 3 ) ,| 5 *
9
78)W 9  V<&T\S^\BT=6"$1.e<@>@3<FVcG3 &e6$%d@>$%$>:& 3 ) ;| 5 *
43& 73 |  @>$%$%$& 3=< ,| 5!| $* *P7' |  $>C2 @1A&3 BC$D<@ $>& ~ <F73I 6
GBT<"G\ *
,

9  !236 5<`=3$>eA$%&373O'#=$> &<& \*] 3& \ T=3!#@D<$>B $%


=6$15$D<@.$%&'#] !^ ]BT6$1cG$>;&N&e=6"A $>&3 ) |,5! @%  @%$%
| ~ .<&37]#@%<6@1A`7' |  ~ 3=< |,5 *
\   .&37 =0vcd!0K5 <@>6<7'A
0  c @% 1 O32'2 " $%&37'O3#$>5 @>A_=3 
236 5 7 =3Q@%BTBT_FH<6T\  *Q+20<&'773 |  O'$%&'I#Fq<# 6To
20<&3"$% &<@> &3I " BC6 c  6#<@%O3BC& | $1473"&1 G6"K<@>@>ACBT6dcG'$%#h6 c
 6P# @%O'BT& cdO3" *G43$> o'23<&373P73 |  < & | @>=6&0v=$%&'I L"$%I & O3B
<FG+236""$% &'.K<#h <F4cG'$%#h $% =3`23673O3# <F<& & 6"A<F `.<&'7 
#<Fq<#= 6 <9F `*43 &e=6"A <9F  $%?$%
& 3 ) ,| 5! .8cG3$>@% =3 #<Fq<# 6?<9F  $%
$%
& 3 < '*) ;| 5  A3$>&373O3#=$%<&eA2<3"$%* ! `K<#h6"B $>&Q73 |  $> $%&
3=< ,| 5 .<&37C73 |  $>G<@%"S$%7
& 3=< ,| 5! *43$%3&3$%"3G=3[$>&373O3#=$%<&84* /
9 6" BZ=3$>@>BCB`4c)4"0 {|r~V @%$>$%-& 3 < ;| 5 . $r* )$1}$% 2V @>A&3 BC$D@e<F
73I 6")BC U\E* )O'cd)#K&  BC 6 236#$><* M &Fq<#E3)#h06=<#=6"$%U=$%#
2 @1A&3 BC$D<@ $>& I &'6=@}@%  !@>< @>$%=3#h0<6=#=6$>"=$># 2V @>A&3 BC$D@ <F
S7'$D<I <&0<@8BT=6"$1.3o'#2'FH 6<&]6"6 6cG3$>#h$>GC2V @>A&3<BT$%<@F}73I 6
GBT<"G\ N,+(
\  ,+* W GY V[3[\_^ \ B`v=6$a
9
4W 
Y ) ) Y ) 


Y ) <
Y (  Y**  ) Y**  
**

Y**  <

Y < ) Y < 


Y < <
43&]c)[0K5 
{}|r~V | Y ) ) ~| Y   ~V


| Y < <? ~V |r~V
cG36" |r~V 3 < ' ;| 5 *
9  I <$%&?cd)$%&'73O3# & \* M F3\ ,='& {|r~V | Y ) ) ~V| Y   ~V
Y )  Y  ) | cG A  <&37 " =3 #@D<$>B $> =6"O3 cG$> ( Y )  Y  ) 3 ;| 5 *
\ ,+. <&37 3 #@%<$%B 0<[<@>6<7'A V&
0  c "O3232V C$%&'73O3#$>5<@>AQ=0v?
236 5 &QFH 64\ <*}?cG6$1=? O+ {|r~V <
Y ) ) ~ Y ) 

Y )<


Y   ~


Y  <

{|r~V  Y**  )
**
** **

Y <)
Y <



Y < <? ~

90  c c)`73#<Fq<# 6 +20<&3"$% & @% &3I='T06"" 6" c[*Q43C06U6B$%&


=3$>4+20<&3"$% &]$%
Y   ~


Y  <

*
*
*
| Y ) ) ~ 7'  *

* *
Y <



Y < <? ~
)O'=3$>736"BT$>&0<&e$%b"O3U 3G#h0<6<#6$>"$%#G2<@>A&3 BC$D<@<Fb<&C\?  ^
\  BT6$1.'<&37]C A`=3[$%&'73O3#$% &eA2=3$%4cd3 5<
Y   ~


Y  <

*
*
*
73  *
| Y   ~V


| Y < <' ~V " BT=3$>&3I $%&73 < ' ;| 5

* *
Y <



Y < <? ~
4O'3?06U6"B $%& =' #<Fq<#= 64o'23<&3$> &]$%
| Y ) ) ~| Y   ~V


| Y < <? ~V  BC3$%&3I $>7& 3=< ' ,| 5

|  eA`7'$%7`3 3=< ' ,| 5! V#<BT ( 3=< ' ,| 5 cG3& BO3@>$%23@1A+$>&3I  A | Y ) )


~  *
90  c@>2 1 4@% `4=3["#<&37Q6B $%& =3[#<Fq<# 64+20&3$> &83='$%4$%
Y  )


Y  <

*
*
*
PY )  73  * * *

Y < )


Y < <? ~
73#<Fq<#= 6 +20<&'$%<& <Ie<$>&T<&T='P"#<&37 6 c<Fb=3$>d\4^S\ 
736BC$%&3<&eK*SC#K<&+20<&'7='$%[736"BT$>&0<&e< <& <@1=6&0$%&3Iv L$>I &
O3B FV6"BT. cG3$%#hC@%  @%$%Y  $%BC}" BT4\ ,^\ ,736"BT$>&0<&eK*
dA W BTBT ,+.E=3$> \ ,^ \_ ,Q7'=6BC$%&0& @%$>$>& 3=< ' ,| 5! .}cG3$>@%
Y  $>T#<@D6*44 O3@%@ =3[=6BCP$>&Q3$%G73=6"BT$>&0<&eP@%$%[$>$
& 3 < ' ;| 5 .
<&37  3?73=6"BT$>&0<&e$1="@>F BO3"4@>$%P$%& 3 < ;| 5| 6"#<@%@=0v 3=< ,| 5
$%?#@> 7O'&3736<737'$>=$> &_<&37 #<@D6 BO3@>$%23@>'$%#K v=$%<& *[4 O33$%?"'#  &37
=6"B $%& 3[#<Fq<#= 64o+20<&3"$% &]@%$>$>& 3 < ' ;| 5 *
9 $>BT$>@D<6 <6I O'BT& T'cGT=0T=3]=3$>678.dFH O36"8.4#<* =6BCT$>&X='
#<Fq<#= 6+20<&3"$% & FP7' | Y ~0+ <@>@d@>$%`$>& 3=< ' ,| 5! * 737'$%&3I O'2X@%@
=3[=6"BTcd  'h$%&
73 | Y ~+ | Y ) ) ~V| Y   ~V


| Y < <} ~<  BC3$%&'I $%7& 3=< ' ,| 5




<G73"$%678*
9NM FEcdBO3@>$%23@1AT<O'

| Y ) ) ~ | Y   V~


| Y < <? ~V

c)[I 
| ~ < | ~ < '*) | Y ) ) Y  


Y < <  U=O F73I 6vGBT UG\[],
| cGeA  * 0 <=0 | Y ) )


Y < < $>"O3"43 6=<#=6 | Y FEY*4 O3
FH6 B W BTBT c)[0K5 
{}|r~V |  < ~ < S|  < '*) 6 | Y ~ < '*) < ' ~ < ' < ' ~ < '


) ~V 
FH 6 " BT#K@D<6" < '


 *?43S#C#$%&e < '


 <6 O'$>=
$%&e=6U=$>&3I3.3O'0<67=]# BC23O'<* P cd5<6.  #<&V`<'h<$>&37 eA
$%BC23@> =6"$%#h($>Fc)[5<@%O0?=3 <V 5 [+236""$% &  .'cd I 
{|  
3O' {|  d 73 | Y  + 73 | Y *3 5<= O3 236 5 7 =3 FH @%@> cG$%&3I
6"O3@>*
9  = 43S#h0<6=#=6$>"=$># 2<@>A&3 BC$D<@ {}|~ <Fd<&_\ ^ \ B`v=6$a
YZ0<4=3?FH 6"B
{}|r~V |  < ~ < S|  < '*) 6 | Y ~ < '*) < ' ~ < ' < ' ~ < '


) ~V 7' | Y

9 4O'G3#h06=<#=6"$%U=$%# 2 @1A&3 BC$D<@&'#733=6<#?&37 =37'=6BC$1


&0<&eK.<cd@>@<[ BCS<7373$1=$> &0<@$%&'FH<6BT=$> &cG3$>#h cd cG$%@%@E&3< "O37'A
FHO36"36G$%&!3$%G# O36"<*
9
* ;  43 #h0<6=#=6$>"=$>#?2<@>A&3 BC$D<@V<F=3, ^_, B`v=6$a



$%
| ~V| ~V o ~  | "~ | o
| cGeA  * 0 <=0 $>=3?=6<# <&'7 o $>=3[73=6"BT$>&0<&eK*

9
* ;  43 #h0<6=#=6$>"=$>#?2<@>A&3 BC$D<@V<F=3 S^ B`v=6$a
 
 
 
$%
| ~| ~| ~V ~ | ~  | o  ~ o

0 <[0 $%3?=6=# <&37  $>=3[73=6BC$%&0<&e*


9 ! $%&3# =3]#h0<6<#6$>"$%#2<@>A&3 BC$D<@ $%S<FP73I 6Q\ <&37N0<C_@%K73$%&3I
# C#$>&e<F)  .0$1G$%42V "$%3@>=0G$1Fq<#= 6"$>&e=S\_@%$%&'K<6)Fq#=<6.'$r* <*
{}|~ |~ ~ ) |r~ ~ 


|~ ~ <
FH 6G BC[#K@D<6" ~ )


o~ <S$%&=3[0@%7]<F#<@D6 | cG3$>#hQcdcG$>@%@8#<@%@
FH 6Q#h0<&3I *>*1*Q3$% B`KA_V`$1=36 5  6  *]43 #<@D6 73 &3<
&3#<6$>@>AT0K5   73$%U=$%&'# | $r* <*}cd#<& 0K5 ?6"@%=7!6< * M F 3$%
$%=' #<?cdKA =0 { p sVu n k p t  lj C.' 6GBT 6"?$>BT23@1AT0 { p sVu n k p*
9
* ;  43 #h0<6=#=6$>"=$>#?2<@>A&3 BC$D<@V<F=3, ^_, B`v=6$a


  
$% ~   | cGeA  .cG'$%#hC23@>$>= 5<6=3G6"K<@>< |r~  |r~ |   * M )@%
23@>$>=d 5 6d=3?# BT2'@%T& O3B V6"V#KO3 [<&37[<6"6<@b& O3B6.
<&37 3&3#G@%P# BC23@>& O3B V6* &='<='63<&378.<3#h06=<#=6"$%U=$%#
2 @1A&3 BC$D<@V<F
 

  
$% ~   .cG3$%#hN73& 1 T23@>$>S 5 6C36<@%.d3O+T7'+T"23@%$1  5 6S='
# BC23@%o+< |r~ |~ * $>&0<@%@1A . =3[#h06=<#=6"$%U=$%#?2V @1A+&' BT$%<@V<F
 

 

$% ~  . cG3$%#h 23@>$> 5<6 V<=?=' 6"K<@> <&37?=' # BC23@%o'< |r~  |r~  *
/

9
* ; 43S#h06=<#=6"$%U=$%# 2V @1A+&' BT$%<@ <F)7'$D<I <&0<@B`6$acG$>@%@E<@1
cKAP"23@%$1K*0 64$>&3"=<&3#[3[#h0<6<#6$>"$%#?2V @>A&3 BC$D@<F
 
 
 
$%
| ~V| ~V| ~ |~ |r~ |r~

9 6" B ='236"5$%<O3 o3BT23@><.<&37 W BTBT .Vcd" =0P=3 #h0<6<#6m


$%"$%#T2 @1A&3 BC$D<@<FP<&eA 7'$D<I <&0<@%$>JK<'@%SB`v=6$a_cG$%@>@)<@1cKA 2'@%$> | "$%&3#
73$D<I< &0<@>$%JK3@% B`v=6$>#[<6S$>BT$>@D<6G=]73$%<I  &0@BT=6"$%# * M & 20<6U=$>#O+
@D<6.}$>F43 #h0<6<#6$>"$%#!2V @>A&3<BT$%<@<F B`v=6$a t lhp y  k)2'@%$>.='& $>
#K<& 1 ?7'$D<I <&0<@%$>JK<'@%<*
9
* ;  43 B`6$a
 

  
FH6 B<&[K<6"@%$%68'<BC23@>#K<&3&'<73$%<I  &0@%$%J<3@>E 5 6 =36<@%.#K<O3"
$>= #h0<6<#6"$%"$%#C2<@>A&3 BC$D<@73+&3"23@%$1 5<63`6"K<@>* |  c)5 6.
$>#<&_ 7'$D<I <&0<@%$>J7 5 6[3 #<BT23@>& O3B V6 c)S@%K5  ='$%?<[&
+6"#$%" *
9NM CO36&'T O+C0S='Q# BT2'@% & O3B V6T0K5 Q "$%I &'$>0#<&e`7'5<&eh<I 
5<64=' 6"K<@>.0$>&0G2V @>A&3<BT$%<@% i u  i w p)2'@%$>(
9 
=*         5 6UA_2<@>A&3 BC$D<@ "23@%$1=? 5 6
=3[#<BT23@>!&O'B 6*
9 43$%=3 6B $%d 0$%#6<<&`cGeAC3 # BC23@%oS& O3B V6)<6O3FHO3@r
O3&'FH 6U=O3&0v=@1A . =3 236<F <F83$% =3 6B $>dFq<6dA  &'7!=3"# 2V<F 3$%
# O36"* |   O]#K<&]S236"+<F$>&Q=  e,+.'3 c)5 6 *
RSRSRTRSR
U=GFH 6473$DI  &0<@>$%J<3$%@>$>LA
9  #K<@>@V0G<&`\^ \ BT=6"$1CY$> nqi  tvy i u n  i  u l}$>F ='6?$><&`$%&e5 6"=$>3@%

B`6$a % <&37C7'$D<I <&0<@8BT=6"$1  O'#h=0vPY %  %-'*) * M  $>G<F =&
!

O3FHO3@=
 &3"O3#h
0<$>4<F 5

 &3 c cG3& !BT=6"$1]#<&_ 7'$D<I <&0<@%$>J78*  <@%6"K<7+A &3 c


#h< 0<6<#6"$%JKv=$%<&8(Y $>P7'$D<I <&0<@%$>JK<'@%$1F<&37 <&3@>A$1F='6$%P
cG3$%#h]#<&3$>"=G& $%6"@>A`<FE$%I<&e5 #=<6 FY*   O3$15<@%& @>AV(
9
  & \Q^]\ BT6$1CY$%73$%<I  &3<@%$>JK<3@>4$>F<&'< 7  &3@>AC$1F  &3#<&
0&37\ @%$>&3K<6"@>AS$>&3732V&'73&eG5 #=<6 )  


 <$%& 5 .'"O3#h]0G<#h
5 #= 6$%G<&$%I & 5<#= 6<FEY*
9 43$% $>!#K<O'_\Z< @%$>&3K<6"@>AN$%&'732V&37'&e5 #= 6"Q$>& 5 < O'= BT$%#K@%@>A
FH 6B S3<$>F 5 *
9NM $>[ O3$>BT2V 6"=<&e?=Q&'c cG'&3`$%I & 5<#= 6"<F4Y <6"T@>$%&3<6@1A
$%&3732&373& * 6" $>4 &3[O3"FHO3@8"(
9   ,
 W QY V<& \ ^ \ B`6$ab* W    )  


 
$%I<&e5 #=<6F0Y cG$>=$>I &e5<@%O' ~ )


h~ 62V#=$>5<@1A * ! O3232V  =0
=3 $%I & 5<@>O3 ~ )


h~ 6S<@>@ n%pkqn y fk* 43& 3 5 #=<6 )



<6?@>$%&3<6@1A`$>&3732V&'73&eK*
9 9! O32'2 "dFH 6#<& 6=<7' $%#$% &[= 3  )


 c)6)&'<$>&3732&373&e.
$r* <*}='6?c)< BC?#<@D<6" )


.0&3 @%@b  O0<@8=CJ63.0"O3#hQ0
)  )   


 

 @%<" &3T<F3  $% &3 &+ J63}cG$1=3 O+@> <F4I &36<@%$1LA c)`B`KA


<"O3BT?0 ) $>G&3 &+ J6"3*
90  ccdO3" 6$%#hT=C@%$>BT$>&0  <( <232'@>A | Y ~ ' CV<Q"$%73
<FE3$%4  O0=$> &8* $%&'IC3?Fq<#40GY ~ $>4@%$>&3K<6.+cd<'h<$>&
) | Y ~ +  )  | Y ~ +  


| Y ~ +  

)O' 3"6"5< 0


| Y ~ +  ) Y  ) ~  ) ~ )  ) ~  ) |~ ) ~  )
<&37BT<6?I &36<@%@1A
| Y ~ '  |r~ ) ~ 

M &Q206"=$>#O3@%<6)cd[0K5 

| Y ~ '  

O+=$>&3I =3$>G<@%@= I =36.'cd  'h$%&


) |r~ ) ~  )  |~  ~  


'*) |r~ '*) ~  '*) 

0  c c) @%$%BC$%&3=  '*) eA 2323@>A$>&3I Y ~ '*)  = "$%73!<F?='


  O0$% &8* P6I O'$%&3IC<4VFH 6"<.3cd<'h<$>&
) |~ ) ~ |r~ ) ~ '*)  )  |r~  ~ |r~  ~ '*)  

' |~ ' ~ |r~ ' ~ '*)  ' 

S=3&@%$%BC$%&3=  ' .=3&  ' .E<&37QFH<6"=<@%@E=3ScKA 73 cG&


@%$>BT$>&0$%&3I   .'O3&e=$%@8cd[ '=<$%&
) |r~ ) ~ |~ ) ~ '*)


|r~ ) ~   ) 

)O'$%&'#S=3 ~ <6T<@>@73$%U=$%&'#K.E<&37 ) $%[&3 & LJ63.=3$> FH<6#  ) 


  O0<@J63* dO'd3$%# &e=6=73$%#==3733&3$>$% &C<F8$%I &e5 #= 6 | $%I & 5<#o
= 6"<6" &3<4<@%@>cd7C= V J6" *4 O3)3 5 # 6  )


 B O'"3 5<
&]@%$%&'K<6"@>AT$%&3732&373& *
/
9 6" 2V $1=$%<&
S 3 @>73FH<6P@>$%&3<64=6=&3"FH 6"B`v=$%<&3G<Pcd@>@< BT=6"$%#(d
43 6"B
+*1 <F=3?=V+<V*
9    ; 
SW Y;V4<& \ ^\!BT6$1* M F0=3)#h0<6=#=6$>"=$>#)2V @>A&3<BT$%<@
<FY "23@%$1=$>& S\ n%pkqn y fkbFq<#= 6".33&]Y $%473$%<I  &0@%$%J<3@><*
9  A<"O3BC2'=$> &8.'3[#h0<6=#=6$>"=$>#[2 @1A&3 BC$D<@ {}|r~V 2'@%$>4<
{}|~ |r~ ~ )


|~ ~ <
FH 6  BC73$%U=$>&3##<@D6 ~ )


o~ <*E4O'cd)0K5<d\S73$>"=$>&3#$%I & 5<@>O3
~ )


h~ <+*0 6[K<#h $%I &e5<@%O3 ~  @>  V!&$>I &e5<# 6cG$1= =0
$%I<&e5<@%O3. =3&e
A 6 2V $1=$> &
 )


<]<6"C@>$%&3<6@1A$>&3732&373&e.
<&373&'#  A W BTBT Y $>473$DI  &0<@>$%J<3@%*
/


9
* ; !:  &'$%7'64=3[BT=6"$1
Y   , 

43[#h0<6=#=6$>"=$>#[2 @1A&3 BC$D<@V36"[$%


{}|~ | G ~| ~V , ~  N
~ / |~ , |r~ o
 3)#h06=<#=6"$%U=$%#d2<@>A&3 BC$D<@e"23@%$1=$%&e=P\`73$>"$%&3#EFq<#= 6" | 6I <673@>"
<F}cG3=36  O36#<@D60@%7Q$%G=3 6<@% 6G=3 # BC23@>+ * ! Tcd  &3 c
=0PY $%G73$DI  &0<@>$%J<3@%* | M F}cd <#=O0<@>@>A!c)<&e=7='+23@>$%#$>73$DI  &0<@a
$%JKv=$%<&8.bcdScd O3@>7 0&37_=3S$>I &e5<@>O3 | cG3$%#h<6C,. &37 =3&" BT
$%I<&e5 #=<6.V<&'7QO3"?=3[236"5$% O'Gcd 1 P&3<= *
9 E "O3BCB`<6"$%JCcG0v c)`&'c " Fq<6( $1F=3`#h0<6=#=6$>"=$>#`2V @>A&3<BT$%<@
73+&1  23@>$>.<=3&CcdG#K<& 1 73$%<I  &3<@%$>Jd34BT=6"$1 cG3$%@>$>FV$17323@>$>
$%&e= 73$>"$%&3#)Fq<#= 6".'3& cd #<&73$DI  &0<@>$%J3?B`v=6$a*436[$%U=$>@%@
6B`<$>&3$%&'IQ#< $>&cG3$>#h 3`#h3<6=<#=6$%U=$>#`FHO3&3#=$%<& 23@>$>.}3O+ $%&e=
62VKv=7Fq<# 6* P&+FH 6"O3&0@>A_3$% #K<"!$%B O3#h BC 6"T# BT2'@%$%#=78
=3GBT=6"$1 BTKA  6BTKA &3< VP73$%<I  &3<@%$>JK<3@><* 0 6$>&3"=<&3#.3GB`v=6$a
 ,

 , 
0< #h0<6=#=6$>"=$>#[2 @1A&3 BC$D<@V<F |r~ N, | cGeA  ."S$>G2'@%$>43O'&3<
$%&e=_73$>"=$>&3#C@>$%&3<6Fq<#= 6"* M C$>C#@%<6@1A 73$%<I  &0@%$%J<3@> | $>&37378.d$>S$%
73$D<I< &0<@ * & =' =363<&378.33[B`6$a
 ,

 , 
0<d3<BT#h0<6<#6"$%"$%#P2 @1A&3 BC$D<@0<F |r~ _, [| cG A  .'3O'$1dO36&'
 O'P&3< !V73$%<I  &0@%$%J<3@><.'FH 6G='FH @>@% cG< $%&3IS6"K<" &8* M F$1Gc)6 73$%<I
 &0<@>$%JK3@%.3=3&c)# O3@>7Q0&'7 `0<"$%P<F 5 cG3$>#h # &'$%U=&e=$%6"@1A<F
$%I<&e5 #=<6*)O'$%&'# ='  &3@1A6"+< <F=' #h0<6=#=6$>"=$>#2V @>A&3<BT$%<@
$%,+. =3C &3@1A $>I &e5<@>O3S$% ,+* 0  c @%2 1 ?c) 6"  O'[cG0 ='T$%I & 5<#o
= 6" <6"<* ! $%&3#`=3T &3@1A$%I &e5<@%O3T$%,+.cd! &3@1A&'7  @%  $>&='
$%I<&3"20<#?cG$1=$>I &e5<@%O',*}[0K5 [=S" @>5<[3[  O0$% &
 ,
  6 ,  6
 , 






$r* <*}cd 3 5< T" @>5<?=3["AU=B F O3=$> &3


,6 ,6 , ,

43SI &36=<@ @>O'=$> & <F=3$>?"A"B ##O36cG3&  <&37 6 $>?<6"3$1


=6=6"A .]=3C$>I &'20<#CcG$1= $>I &e5<@%O'`, $%"O3U 3  Lv+$%* )O'[='
5 #= 6"FH6" B =3$>$%I &323<#`<6C&3<&3<O3I "20<& @%@<F 5  .E"cd
#K<&3&'<)0&'70<"$%<F $%I &e5 #= 6"*4 O3='$%)BT6$1C$>)&373$%<I  &0@%$%Jo
<3@%*
9 43BC 6=<@ <F'=3$>" 6"A $>E=3K.vcG3$%@>d=')#h0<6<#6"$%"$%#d2 @1A&3 BC$D<@ 7'+
#K<6"6"A !@%<6I< <BC O3&e?<Fd$%&+FH 6BT=$> &8.$> 73[&3<?# BC23@%=@1A] @15  ='
236 '@%B <F cG336 B`6$a $>73$DI  &0<@>$%J<3@%  6?&3K* P cd5<6.E5<&
cG3& =' #h0<6=#=6$>"=$>#!2V @>A&3 BC$D@$% $>&3# &'#@%O'$>5<<.$>$% U=$>@%@2<$>3@%
= 73=6"BT$>&3cG3=36[!B`v=6$aQ$%73$%<I  &3<@%$>JK<3@>[ 6&3< A# BC23O'$%&3I
$>=$>I &3"20<#S<&37 "$%&3I $1FG$> $>2V "$%3@>T B`<  0<"$%# &3"$%U=$%&'I
&e=$>6@1A <F?$%I & 5<#= 6"* ]cG$%@%@4&'<`2'O36"O3Q3QFHO3@>@G @>O'=$> & <F='
73$D<I< &0<@>$%JKv=$%<&236<3@%B '6. 3O'73FH6$1E 
| cG'6dA  OcG$>@%@e@>K<6"&
<<O' Lc)BC 6}+ @>8=G"O37'A[73$%<I  &3<@%$>JK$% &G =3BC$%&3$>B`<@2V @>A&3<BT$%<@
<&37 =3 < 6"70<&]&3 6"B`<@FH 6B *
9 = ,    ; G:  &3"$%7364=3[BT=6"$1
,  
 , 
 
=3$>)$%='=<BC BT6$1S<d3236"5$% O')'<BC23@> 3O'dc)=<#h<&3<36
6 c &37# @%O'BT&8.8<&37 <737'* | 4'$%?$%?&'<  73$D<I< &0<@EB`6$ab.b3O'[$%
<&o3BT23@>TFG  u%t f  nqi  tvy i u}z i<kqjo n  ("`3$%[c) 1 3 BCcd 6 FH 6
BT 6"?$%&'FH<6BT=$> & *43[#h0<6<#6"$%"$%#[2V @>A&3 BC$D@36[$%
{}|r~V |r~ ,  |~
| cGeA  . =3`$%I<&e5<@%O3 <6", <&37 '*  0&37 3!$>I &'20<#!cG$>
$%I<&e5<@%O3 ,.'c) <@>5 ?3[  O0$% &
,   6
6
 , 
,

 

<

< &37![@%$1@%3$1 <Fbcd 6 "3 cG)=3=3I &'6=@V" @%O+=$%<&S3$%  O0v=$%<&


+##O36"cG3&
 &376$>?<6"3$>6=<6UA . O3=3 $%I &323<# $>"O3U
6
=3 mv+$>  ( 6 5 * ! $>BT$>@D<6"@>A 3[$%I<&3"20<#[cG$>$%I<&e5<@%O3

C$>=3 J Lv+$%*
)O+3$%G$>&'<&3 O'I Q$%I &e5 #= 6"PC"20<& 5 | =3,
$%I<&3"20<# &3@>AQ#<& 6$>3O'= &3@%$%&'K<6"@>A$%&'732V&37'&e[$>I &e5 # 6. <&'7
=3v $%I<&3"20<#4# &e=6"$%3O' &3@1A  &'@>$%&3<6@1A $%&3732&373&  $%I & 5<#= 6.
cG36"K<Cc)Q&37;=36"Q@%$%&'K<6"@>A$%&3732&373& `$>I &e5 # 6!$>&X<6736C
20<& 5 *
RSRSRTRSR
M &3&'623673O3#G20<#
9 S&3 c @>KK5 CB`v=6$>#[<&37 $%I<&e5<@%O3 <&37 $%I<&e5 #=<6FH<6[3 =$>BT
$%&3I3.<<&37 VI<$%& P5<6UA 73$ 6&e} 23$># b=3# &3#2'FV<& $%&'&36}2'673O3#
20<#<*
9 P2 O3&e$%@&3 c[.cd!0K5 !V& 236"##O'23$%7 cG$>=  lhfk t j p s ifhlhp <&'75<6U
$% O3[='$%&3I =0vcd!#K& 73cG$1=3"!5 #=<623<#* M F4A< O 6#K<@>@r.E
5 #= 623<# # BC  O3$>232V7cG$>=] &3@1A!Lcd`0<"$%#[ 2V6=$> &3( <7'73$>$% &
<&37!"#K<@%<6dBO3@>$%23@>$%#Kv=$%<&8* 43"? 2V6=v=$%<&3d3 5<[<@%6"K<7+AC<@%@>cd7TO3)
$%&e=6"+73O'#BT<&eABC 6")#<&3#2'= | 0<. @%$>&3K66=<&3UFH 6BT$% &3.<=#<* 3O+
=3A #K<&'&3<73C5 6"A ='$%&3IS=0vP<&3c)<O3@%7]@%$><=S73S$>&Q2323@%$>#K$% &'*
9 <6P$>&3"=<&3#.83 c 73 &'#<BT23O+=3@>&3I< <F T5<#= 6  M & 5   6
5  &3G#K<&SO3" }A =3<I  6< 1 =3 6B =?cd 6  O+=3G@%&3I<8.e3O'cG0v
<<O'K.0 A<.bS5 #=<6 $%& 3 ,| 5 _ 0v $>G3@>&3I=]<+F 6 6  /  M 
=O36"&3<O'0O3#h20<# 7'&3< 0K5< <& $%&336& &3<$% & <F@>&3I=8(
A  O#<&<737 &37 #<@D6TB O'@>=$>23@>ALc) 2V @>A&3<BT$%<@%.)3O'Tc)0K5  &3<
I $>5<&_<&eA 6"O3@%= 73=6"BT$>&33 @%&3I<= F)!2V @1A+&' BT$%<@r* 4O'. 5 #=<6
20<#C<6"!&3<S O'$%232V7 = 3<&373@>!#6"h$%& I  BT=6"$%#!&3=$%<&3 O'#h;<
@%&'I<= | <6G<&3I @><.3 64<6"=' I  &0@%$>LA<.'=#<*
9 E6" @>5<]3$%.BT=3B`v=$%#$D<&' 0K5 Q$%&e=6"+73O'#7X5 6<@ UO323I 6<737 
5 6"$> &3C<FP5<#= 6C20#.4$%& cG3$>#hNA< O;#<&X&'<C &3@>A <737X<&37N#<@D<6
B O3@>$%23@1A5<#= 6".''O' #K<&`<@%" # BC23O'=@%&3I<3.<&3I<@%. $%&3&3623673O3#=.
=#* &3 20<6U=$>#O3@%<6@1A # BCBC &"O3#h "O323I 6<737 !5 #=<6?20<# $%P BC
=3$>&3I #K@%@%7!<& n y0y lj s j t  fk}p s ifhl. cG3$%#h!cdcG$%@>@V&'c 73$>#O3* | 436"
 ,

< 6C<@> ybt j z l  lhfk t jp s ifhlhp.8cG3$%#h0K5 T&'<=$> &_<F)@>&3I=_3O' &3<


<&3I @><0k ths0tvu%t <nrfi u  lhfk t j)p s ifhlhp. cG'$%#hS0K5 P?&3<=$> & <F# &e5<6I<&3#P3O+
&3< @%&3I<=b<&'7$1FdA< Oc)<&3736$>&e=]$%&'0&'$>= 7'$%BC&3"$% &33& =36T<6
@%$>I e=@1ACFq&3#$>6='$%&3I 4"O3#hQ<n u ljokp s ifhlhp&37Pi y ifhg`p s ifhlhp*43&
=36 <6  lhfk t jdi u l j"ivp.KcG36" A< O#<&[B O3@1=$%2'@>AG5 #=<6 cG$>=?=36 5<#o
= 6"d=I )BT 6"5<#= 6"*43& 36"<6" eA36$>73<F 3"&3<$% &3.+"O3#h
<Pi y ifhg;i u l j"ivp.)cG'$%#h<6" #6Uh<$>&XLA2<F[$%&'3&3$> L7'$%BC&3"$% &0@
5 #= 6 <@>I '6='* 0  &'CF 3" cG$%@%@E # 5 6"7$%& ='$%?#<O36"< =3A_<6
BT U=@1A`I 6<73O0v=[@%5 @8 23$># *
9 43P2'6 3@>B cG$>=S@>&3I<T$>}=0v$>$%&'< 20<6"$%#O3@D<6"@>A@%$>&3K<6( =3G@%&3I<
<F+45<#= 6    $% &3<"O3" ='@%&'I<=[<F  2'@%O383@%&3I<=[<F  *  c)5 6.
$%& 5   6 5 cd[#K<&6cG6$1==' @>&3I= <F 5 #= 6 `<=3?  O0<6 6<
<FE3 t k s j t  fk  * P&3@>$%<?@>&3I=8.33[73<23673O3#$%4@%$>&3K6$%& ='
       D.
&'[=0 |  
    N 
  <&37   | N
cG$>= $>BT$>@D<6P6O3@> FH 6[#K@D<6?B O'@>=$>23@%$>#K$% &b* | #O0<@>@>A .8QVS236#$><.
=3!7'< 236"+73O'#S$%# &3"$%7367 n u n y li<j[6=36=3<& @%$>&3K<6.V"O3UC<='
736BC$%&3<&e4$%# &3"$%7367B O'@>=$>@%$>&3K<6.e#K<O'[$>43<Lc)S$>&323O' !<&'7
 .3$>&3"K<7<F0"O3" &'[FH<64@%$%&'K<6)6=<&'"FH 6"B`$% &' *
9 4O'.=3!$>73K V'$%&37 <& $>&3&36236"+73O'#S23<# $>= $>&e=673O3#!@%&3I<
$%&373$>6#=@1A . eA BCK<&' F)" BT=3$>&3I#K<@>@%7&Nn y0y lj s j t  fk. cG3$>#h$>[
I &36=<@>$%J=$> & <F =3S73[23673O3#K* 2V&'73$%&3I & cG3=36 3 0@>7_<F
#K@D<6" $%6K@) 6 # BC23@%ob.}cd 0K5  $>36  6"K<@d$%&3&'62'673O3#S"20<#
 6?!#<BT23@>Q$%&'&362'673O3#["20<#<* : <BT23@>Q$%&'&362'673O3#["20<# <6
$%BC$%@%<6_6K@4 &3.+#2'C=3]#<BT23@> # &v"O'Ie= 2V6=$> &


B`<?&_<232VK<6<&3#* P6" 1 [`#@>O3cGeAV(P3 @%&3I<


 
'<Fd`# BC23@>

&O'B 6
.$>?&3<[=3C  O06`6"+[<F

.3O' $> $>&3"K<7_='
 O0<6"6"+<<F

*
9 cG$>@%@G&3 c O3<6<@ &37# BC23@>N5 #=<6!20#.<&'7;cG$%@>@G6"A
= h<T#<6 ]7'$%"$%&3I<O3$%" Lc)&3 Lc)3*  3&cd "O3" =KA U5<#o
= 620# TcG$>=' O'=3BT73$>36 "6<@ C 6 "#<BT23@> 3.0='&30@%7Q<F
#K@D<6"4BT$>I e4[$>='6=' 6"K<@>G 6=3[# BT2'@%!& O3B V6*
9
  ; P&Cn y0y lj s j t  fkp s ifhl$%845<#= 6 23<# ;  O3$>232V7?cG$>&
<7373$1=$%<&0<@8 2V6=$> &8.#K@%@%7&n y0y lj s j t  fkq.VcG3$>#hh<Lc)T5 #= 6"
K

 

 <?$%&32'O' <&37 6=O36"&3 "#K<@%<6   <? O'23O'. cG'$%#h  A

=3?FH @>@% cG$%&3I=36"[236<26"=$>(


9 | W $%&3<6 $1LA_$%& =3`36"5<6$D3@% 0 6<&eA 5 #= 6"  
  <&37 <&eA
#K@D<6 .'cd0K5<  
  8   &37     *
9 | :  &v"O'Ie="ABTBC6"A M F ]<&37  <6 5 #=<6?$%& T.3&    $>P='
# BC23@%o # &v"O3Iev=[<F   (      *
9 | E<$>$>5$>LA M F !$%G &3<&+ LJ6S5 # 6P$>& C.3='&    $>GC2V "$>=$15 ?6"K<@
&O'B 6(     *
9NM F=3T0@>7<F4"#K<@%<6$% 6<@r.=3& 5<6"A& O3B V6$>$1=  cG& # &v"O'Ie=
| <* I3* <&37 3?# &"O3Ie LUABTBC6"AT236 2V6ULA $>BT2'@%$>3=P"O3U
=3["ABCBT=6UA 236<26"LA      *
9 [&3 cI<$>5 [" BT?o'<BT2'@%4F}$%&'&364236"+7'O3#23<#*
9 5 <  :   =  =
  = <   <@%6"K<7'A!&'c=0 5 < $>C6"K<@
5 #= 623<#* M F}c) &3 cZ O'$%2 5 cG$>=]=3 $%&'&36G236"+73O'#P  O0<@ =S='
t k s j t  fk
6  ( 6 
$r* <*
| 6 ) 6 


6*< o| )


< d 6 ) ) 6  

*6 < < 

<

 )

6 

=3&;c)Q '=<$%&X<&;$>&3&36T236"+7'O3#`20<#<* 0 6C$%&3Uh<&3#<.)cd &3 c 3 5<


|  , |  } < *
9 E 5 6$1F A =0?cdC0K5 T<&_$%&3&36?23673O3# 20<#<. c)C0K5 S= 5<6$1F A ='
@%$%&'K<6"$>LAX236 2V6ULA .?# &v"O3Iev= "ABTBC6"A2'6 2V6ULA .[<&37 ='2V $1=$15+$1LA
236 2V6ULA *C5<6$1F A!=' @>$%&3<6$1LAC236 2V6ULA . 3"6U5 [=0
6 6  | 6 6  6  6  6  6 
<&37
6  | 6  | 6  } 6 





cG3$%@>=3[#<&v"O3Ie?"ABCBT=6"A`FH @%@>cG)$%&'#
6  26 6  6  6 
| $>&3#[='# &v"O3Iev=[<FC6<@ & O3B V6$%G$>@1Fm*)C5<6"$>F A ='2V $1=$15+$1LA
236 2V6ULA .0 '6U5 [=0v
| 6 ) 6 


6*< o| 6 )


6*<  d 6 ) 6 


6 <
cG3$%#h]$%4#@%K6@>A`2<$>$>5<?$>F =3 6 )


6*< <6[&3<@%@8J6'*
9 4373$ 6&3# VLcd& =373<P23< 673O3#?<&37Q=3$%&3&36 236"+7'O3# $%G=0
=3!7'< 236"+73O'# $> 2V#$>0#` 5 .}cG3$%@>T='!$%&3&'6 236"+7'O3# $> BC 6
I &36=<@ # &3#2'P<&37]$%G2323@%$>7 =SBT<&eA!<3645<# 620<#*
9 ?&'!#K<& $>&e=6"2363!73< 23673O3#( 6 < BCK<"O36$>&3IQ3 <BC O3&e<F
"# 6"6@D$% &   6 "$>& 6<#$% & ?VLcd& 6`<&37 34@%<&3I 6E=0 6`<&37
<6.3<&37!3BC 6=0v=3A!2V $%&ed$%&!3=BTP73$%6"#$% &b.3?@D<6"I 6='
73<4236"+7'O3#GV# BT* M F 6 &37 2V $%&e$>&  232V $>&3I 73$>6#=$> &3)3& ='
73<4236"+7'O3#4$>&3Ie=$15 .+cG3$>@% $1F 6 &37 2V $>& 46"$%I e4&3I @%)='&!='
73< 23673O3# $%[J63*T4O'='T732'673O3# # B 3$>&3 =_=3S@%&3I<
<F=3 5 #=<6. &37='$%6 <&3I @> | <#<& V & eAQ3Fq<BC O3FH 6BO3@D
6   6   m# 3O'?<$>6 !c) 6"QcG$1=0<& $1=36@%&3I<  6?<&'I @%
#K<O3"Q$1S$% | 3$1 @%$>&3K6 | cG'$%@% @>&3I=N<&37X<&3I @>!$%&'73$>5$%7'O0<@%@1A<6&3<
@%$%&'K<46  O0& $>$% *
9 5 <  :   =   
  =   &3[73+&1 P0K5 SO3[=3 73<
23673O3# <C=3 $>&3&36`236"+73O'#< KP<='6`7'<!236"+7'O3# <6Q2<$>3@%*0 6
$%&3Uh<&3#<.0 &' # O3@>7]&373 c 5 cG$>= 3[&3 &+ "h&370<6"7Q$>&3&3642'673O3#
6  (   6 
 FH 6 $>&3"=<&3# |  , |   <  *_ 3$%@>`=3$> $%&3< 3 "=<&370<6"7
$%&3&36`236"+7'O3#.P$1!"$%@>@<A+!336 236 2V6U=$>`F@>$%&3<6$1LA .# &v"O+
Ie=[UA+BCBC=6UA .V<&37Q2<$>$>5$>LA | cGeA  .b"T3$%G$%GU=$%@>@ <&]$%&3&36G23673O3#
| =' O3I [K5  $>7 # &+FHO3$> &cd40K5 4@D@%7$>}<  $%&'"=<7 <F  *4'
$>< O0$% &36"$%E$%BC$%@%<68= 0<<F05 # 620#P5 #=<620<#4O3#hC<
5 #K<&T0K5 ?["=<&37067!0$%3O+4<@> 0K5  "5<6=@&3<&+ LUh<&373<67!3<
| FH 6$%&3Uh<&'#<.Vc)# O3@>7B O'@>=$>23@>A`5<6"AQ5 #=<6$%&]=3"h&370<6"7 0<"$% eA
  .3<&37 =3[<BT?$>4<F =&]6O3?F$>&3&3642'673O3#* P cd5<6 $>& =3?5<"
B`"<6$>LAT<FE#K<"Gc)[cG$%@>@bO3" Uh<&373<67]$%&3&'64236"+73O'#K*


9 Q 6I &36=<@>@>A<.cd #K<&_B O3@1=$>23@>A]<&eAQ$%&3&'6236"+7'O3#[eA T2 "$>$>5 # &+


"h& .<&37]"$%@%@0K5 <&$%&3&'6G23673O3#K*
9 5  <     = 
       N2V#$%<@e#K <F'3d2'65$> O3 '<BC23@%
<F 5 cG$>=Q=3 Uh<&'70<67 $>&3&36 236"+73O'###O36cG'& \  * 43&_ O36
$%&3&36G23673O3# "20<# $%"O3UP3 6K@ &O'B 6.b<&'7Q=' $>&3&36P236"+7'O3#$%
I $>5<&  A 3S 67'$%&0<6UA 236"+7'O3#( 6  ( 6 *C0 6?$%&3Uh<&'# ,  /'*
4O'.V23@D<$>&  @%7B O'@>=$>23@%$>#K$% &T$%4$1=@>F<&]'<BC23@%[<F}<&Q$>&3&362'673O3#
20<#<*
9       =  =
  =  0 c@%2 1 P@>+ TG='# BT2'@%!& O3BS
6 T.ecG3$%#hS$%<&3 73$%BC&3"$% &3<@f tvz sVu l 5 # 620<# | ?30@>7S<F
#K@D<6"$%d&3 c  * P6"<.'cd?#<O3@%7 6"K<" & eA <&0@% I<A cG$1=!3236"5$% O'
'<BC23@% &37_I O3"?=0
 (
 c) O'@%7_S& $>&3&3623673O3#K. 3O+
=3$>d73)&3<d A`$>36 =3P# &v"O'Ie=o LUA+BCBC=6UAC236 2V6ULAC 6d3 2V U
$>=$15$>LAQ236 2V6ULAV($1F
c)6`# BC23@%o_& O3B V6. 3&

[
 cd O3@>7
&3<P&3#<6$>@>AQT2V $1=$15 6"K<@ & O3B V6 |  65<&_`6"K<@& O3B V6 FH 6
$%&3Uh<&3#  <*
9 E '3$%. =3_# 66"#]c) A 730&'<& $%&'&36236"+73O'#] &  $%!

 (
 $%& <='6c) 6"73Qcd3 5<=X# &"O3Ie 3"# &37
Fq<# 6*43$% $>&3&36 2'673O3#S$> &3 c @>$%&3<6$>& =3 06"" 5<6$%<3@> | cGeA 
<&37#<&v"O3Ie "ABTBC6$># | cGeA  *  5 6$1F A 2V $1=$>5$1LA .G 3"6"5< =0
d | |   cG3$>#h cG$%@%@V?2V $1=$15 6"K<@
&O'B 6G$>F $%4&' &+ LJ6"3*
9  <       
      0  cX@% 1 E@%  }3#<BT23@>5 #=<6
20<#
 < ( |
)




< (
)




<  

43$%$> "O3U4@%$>< 5 < 3O+cG$>`=3 #K@D<6"$%&3I# BC23@%oT$%&3U=K7 <F6K@r


FH 6$%&'"h&3# |  cd O3@>7]@>$%P$%&  3O'G$>)c) O'@%73& 1 GV[ 5<#= 6G$%&
5 *} #<&]730&'<&$>&3&36G236"+7'O3#36[eA
|
)




< o|  )  


 <  (
)  )
  



<  <
&3<=P3 c =3$>)730&3$>$% &T$%)eA36$>7 <F =3 5 < $%&3&36)236"+7'O3#<&37`3 
$%&3&36423673O3#K*43$>$>G<&$%&3&'64236"+73O'#20# | cGeA  *
K/

9  ,       =  = 


   =  :  &'$%7'6 `|   r 5 . ='
20<#F}#<& $%& O3 O' 6<@1 r5<@%O37!FHO3&3#=$%<&3FH6" B 3$>&e=6U5<@   = 5 *
43$%4$>4<& $%&+0&3$> 73$%BC&3"$% &3<@6K@b5 #=<6420<#<.0# &eh<$>&3$%&3I "O3#hFHO3&3#
=$%<&3<4"$%& | 6 . 6  '.b  | 6  .3<&37 " FH 6"8*?#K<& 730&3 <& $>&3&36
23673O3#P<&3$%4"20<#eA 730&3$>&3I
FH 64$%&3Uh<&'#<.

{V  (   ) {}| 6 | 6 6

 6     ) | 6  6  6 | 6
6  )   ! ,

0 < 0c) &'7Q=3# &e=$>& O3$>LA236" 2V6"LA]$>& 6"736G=TB`<"O36 =0


=3$>E$>& I 6<@+<#O0<@%@1A?BT<<}&3 | <<232<7  73$15 6I $>&3IP$%&'3&3$>LA[ 6
<=36"cG$>7' $%&3IT BC3$%&'IT2V#O3@%$%<6 * ?&'#K&5 6$>F AFq<$>6@1A K<"$%@1A =0
=3$> $>&$%&'&36 23673O3#"20<#<}cd["O3U I $15 C20<6"F=3$>?5 6"$>0#=$> &8*
?&' FE3?=3$>&3I cd0K5< C"3 c$>G0
{ ) ;{   { )  {  
3O'G=3$>FH @%@> cG$>&3#?=' @>F U L0<&'7]"$%73?$>
)
)
)

r
|
{
|
"

{
|
"



{
|

6
6
6
6
6
6
6

 ) 
 )
 {  | 6 | 6 6 { ) = {  

E 5 6$1F A 2<$>$>5$>LA<.' '6U5  =0


6

{Vh{    ) {}| 6  6

43FHO3&3#=$> & {}| 6  $>!<@1cKA!&3 & L&3Ie=$15 .G<&37 $1F { $%T&3<T=3QJ6"


FHO3&3#$% &  &   .=3& {| 6  B O'"C U=6"$%#@>A2 "$>$>5 TFH 6  BC 6
  r* 4 O3?=36S$%!"=6"$%#=@>AQ2V $1=$>5< <6"K O3&3736=3SI 6<23 <F {}| 6  .
<&37  ) {}| 6  6   *
9 ?&'Q#<&X5$%c ='$%S'<BC23@%]<T<&X$%&'0&'$>=o L73$>BT&3$> &0<< @ 5 6$> &;F ='
0&3$> 73$%BC&3"$% &3<@G$%&3&36!236"+73O'#23<# o3BT23@> <F 5 * E  =3$>.
!

@% V 5 6"A;@D<6"I & O3B V 6*  BTB V6$>&3I0`$%&e=I 6=<@>`#<&
<23236" +$>B`7eA  $%BT<&3& "O3BC.3cd0K5< | &3 &+ 6$%I< 6 O'@>A 0

)

{
|

6 | 6 6  {}| | 


)

 64$%&<364cd 673
{V    |{}|  o{| , o


o{}| "  | |   | , 


| "
<&37=3 6$>I e" L3<&37]$%7' 6""B 3@>P<&]'<BC23@%[<FE=3 $%&3&'6G23673O3# <&
5  | <73BC$>"=73@>A 36"$>`<&;<7373$1=$> &0<@)Fq#=<6T<F  ) .43O'`<T 36"5<7
FH 6.b23O'"=$>&3I!`# &3Uh<&eFq<#= 6P$%&]=3 7'0&3$1=$> &<F & $%&3&'6 2'673O3#
"O3"I $15 4A< O&3<='6G$%&3&'64236"+73O'#K*
9  , 7 7   = 
     :  &'$%7'6 `|   r 5! .
=3 "20<#S<F # &e=$%& O3<O3[6K@1 5<@>O37QFHO3&3#$% &' &    r* P6" c) #<&
730&'<&$>&3&3642'673O3#P<
{  (  ) {}| 6 | 6 6

'*)
4O'FH 64$>&3"=<&3#
)
6  6    | 6  6  6 | 6 6  )'*) ,

'*)

< `=0v =3$> $%&3&'6 236"+7'O3#S<F6 <&37 6  c 73$ 6"&e FH6 B ='
$%&3&3623673O3#)<F 6 P<&37:6  I $15 &T$%&S=3236"5$% O'do3BT23@> }4 O3d$> $%
$%BC2 6Uh<&e.cG3&73K<@>$%&3IcG$>=!FHO'&3#$% &3.'=  &3 c '<#=@>ATcG04373
B`<$>&[<F3=' FHO3&'#=$> &3$%.<<&'7cG3& 73K<@>$%&3I4cG$1=$>&3&362'673O3#.<  &3 c
'<#@>AScG3$>#h $%&3&36)236"+7'O3#) &3$>)O3"$%&3I[ #<&'FHO3$>&3I  &'$%&3&'6)2'673O3#
FH 6`&3<='6C#K<& @>K<7 = =3]cG6 &'I <&3Uc)6
 E 5< $%7X# &+FHO3$> &8. &'
 BC$%BC @D<V@>[3!$>&3&36 236"+73O'#cG$1= " BC!<232'6 236"$DT"O33"#6$>2'K.
FH 6G$%&3Uh<&3# 3$>&3&362'673O3#P36BC$%I< GV@%<V@%7    '*) ) 5 <&'7
=3[236"5$% O'<&3[@D<V@>7      ) 5 *
9  , 9 4    
       0  c #<&3$>736 T|       .
=323<# <F+# &e=$>& O3 O3 #<BT23@> 5<@>O37?FHO3&'#=$> &38FH6" B=' $>&e=6U5<@   
K
0

= `03$%G$%&'#@%O'73O3#hQFHO3&3#$% &'PP"$%& | 6 .*6  6! .  | 6` .


<&37 " FH 6"8* 0 =`0cG'$%@%C=3`6=<&3I<!<F4='$%FHO'&3#$% & $># BT2'@%.
=3S73 BT<$>& $%?U=$%@>@6"K<@.  6 $>?"=$>@%@E 6K@&O'B 6* 43$>?$%[ $%&+0&3$>
73$%BC&3"$% &3<@#<BT23@>5<#= 6]20# | cGeA  *  #K&730&3 & $>&3&36
23673O3#P<&3$%4"20<#<
{V  ( 
  ) {}| 6 | 6 6

4O'.0FH 64$%&'"h&3#
)
6  6   6  | 6` 6 | 6
6 ) 


43$%G#K&QV?K<"$%@1A`5 6$107]=S <&]$%&'&364236"+7'O3#23<#*)0 63[2 "$1
=$>5$1LA .3 '6U5 [=0v
{Vh{    ) {}| 6 {}| 6 6 
  )  {}| 6   6

 5<& =' O3I  {| 6 #<& V<&eAT# BC23@%oT&O'B 6.  {}| 6   B O3" &3 &+
&3Iev=$>5<6K@e&O'B 6.<<&37<&6I O3BC&e$>BT$>@D<6V=G=0vFH<6 6K@ FHO'&3#$% &3
3 cG0  )  {}| 6   6 $>]2<$>$>5<C6"K<@ & O3B V6[cG3& { $%[&3< ='
J6"CFHO'&3#$% & &    *
9     ;       =   
    43 $%&3&'62'673O3# $%&
=3  5  36 '<BC23@> cd 6Q &FHO3&'#=$> &3* ! $%&3#2V @>A&3 BC$D@%<6 
2V#$%<@$%&3Uh<&'#C<F)FHO3&'#=$> &3.E='`<V 5 T$%&3&362'673O3#6T<@%"Q$>&3&36
23673O3#=`<& 2<@>A&3 BC$D<@>*X4O'!FH 6T$>&3"=<&3#Qcd#K& I $>5<
 3 ,| 5 ='
$%&3&36423673O3#
{V  ( 
  ) {}| 6 | 6 6
S=04FH<64$%&3Uh<&3#
)
6 6    6 6 6
 ) 


?6cd # O3@>7$%&3U=K7]I<$>5  3 ,| 5 S73$ 6&eG$>&3&36G236"+7'O3#
{  ( 
 ) {}| 6 | 6 6




'*)

S=04FH<64$%&3Uh<&3#

6 6  

)
6
*' )

6 6
 )'*) 

P&'FH 6U=O3&3=@>A .}cd0K5 36] @D<6"I `5<6"$%LA<F$%&'&36 236"+7'O3#S<&37 $>


$%C&3<T e5+$> O3CcG0`3 U"h&370<6"7 $>&3&36C236"+73O'#!"3 O3@>7 V<* 4 O3
cG3&35 6Gcd?73<@cG$1= 2V @>A&3 BC$D@% <4<& $>&3&36)236"+73O'#4"20<#cd?3<@%@
G#K6FHO'@3=[2V#$>F A o3#=@1A cG3$%#hC$%&'&36236"+7'O3#cdcG$>@%@'O'<*  c)5 6.
c)4#<& 736=KcN &3)@%" & FH6" B =3$>'<BC23@><.<cG3$>#h $%0$>F  $>}<& $>&3&36
23673O3#!23<#.3& <&eANO'320# <F  $>`<@> & $%&3&'6C23673O3#
20<#<* | 0 <=`0 $1F4=3`236 2V6U=$> <F@>$%&3<6$1LA .# &v"O3I = UA+BCBC=6UA .
<&37C2 "$>$>5$>LA3 @%7 FH 63G@D<6"I 6"20<# C.e='&T3A cG$>@%@0O'= BT$%#K@%@>A
3 @%7 FH 63[BT<@%@>6d20<# | cGeA   *
9          =
   =  W 
< ,| 5 =3 "20<#
<F6"K<@ BT6$%#)cG$1= 6" cG <&'7Q\ # @%O3BC&30SLA23$>#K<@b@%BT&eP$>
Y ) ) Y ) 


Y ) <
Y  Y**  ) Y**  
**

Y**  <

Y  ) Y 


Y =<
9 43$%$> \ L73$>BT&3$> &0<@ 6"K<@5 #= 6?"20<#<*?#K<& O36& 3$%P$%&e= &
$%&3&36423673O3#20<#eA 7'0&3$>&3IS=3[$%&'&364236"+7'O3#
 <

Y   (  Y   


)  )

$r* <*FH 6)5 6"A`6 c&37 # @>O3BC&Tcd?B O3@>$%23@1A =3 # 6"6"2<&373$%&'I &e=6"$%)<F
Y <&37   I 36.<&37 ='&"O3B]*<64$%&3Uh<&3#<.
 
, 
/  ^
, ^ / S^ ! ^  ! 

 !  
M P$>4K<UA =S5 6$>F A`=0G3< $%4$>P@%C<&$>&3&36G236"+7'O3#0&3<=[3 cZ"$%BC$%@%<6
=3$>$>4=T3 "h&370<6"7 5 $>&3&36G236"+7'O3#*443$%G$%&'&3623673O3# #<& @%
?cG6$1&O3$>&3I =6<&32V "P<&37=6=#(
Y   =6 | Y 

,


E "='$%.+&3<=0)Y   $>4<& ^ B`6$ab. cG$>!=3P= 2 @>F 4& 6"A


$%&3I?Y ) )  ) ) Y )   ) 


Y ) <  ) <+. ='"# &37C&e=6UA  & =347'$D<I <&0<@
$%&3IY  )   ) Y     


Y  <   <+.3&37 FH<6"=`73 cG&!=37'$D<I <&0<@
| cGeA  *d P7373$>&3I =3[= I =36c)  '=<$%& Y   *<64$%&3Uh<&3#<.
6 |   ,  
! /    =6  S ^^

, ^^_/
S ^^ !! , ^^  
 ^_
, ^ / S^ ! ^    ,  
! / 

9    #     = 


       [W   < |  V='
20<#[<F# BC23@%o BT=6"$%#)cG$> 6 cG<&37\_#<@%O3BC&3+=3$>4$%G<& \V
73$%BC&3"$% &3<@3#<BT23@> 5<#= 6 20#<*43$>$% <&`$>&3&36 2'673O3#d23<#GcG$>
$%&3&36423673O3#
 <

Y   (  Y   

)  )

9NM E$> &3< 067[=45 6$>F A =0 3$% $> $%&3737<& $%&3&36 23673O3#20<#<*P&3@>$%<
=3!2'65$> O3 o3BT23@><.3!$>&3&3623673O3# $%&3< I<$>5 & eA='`FH 6BO3@D
Y   =6 | Y   .'cd5<636"$%PC5<6UAQ"$%BC$%@%<6FH 6BO3@D'* 0&'='
i t n y k <FG]B`6$a =QS=3T# BC23@> #<&v"O3IeTF=3C=6<&32V "
  $r* <* d$%G=3 =<BC B`6$a<   3O+PcG$1=]5 6"AQ&e=6UA]62'@D<#7eA
$>=4# BC23@%o #<&v"O3Ie<* 0 6$>&3"=<&3#.
 ,   GN,
/   
? !   G, 

/ ! 
      ,
43 <7v"<$%&e$>3`# BT2'@% 5<6"$% &<F4=3C=6<&32V "< $>$%# BC23@%=@1A
O3&36@D7 = 3<7v"O'Ie= BT6$1$>& =3 236"5$%<O3 c) 1 `&3<* M S$%
K<UA!=S5 6$>F A`=0 Y   6 | Y  *
9 | 2'=$> &0<@6B`<6" T"O3BTBT<6"$%J(}BT<&eA!<F=3?5<# 6G20#Gcd 3 5<
&3# O3&e=67FH 6.#<& SO323I<6=<737 $%&3&36[23673O3#"20<#*C [cd
0<@>@P".P='_<7373$1=$%<&0<@G#K<23<3$%@>$>$%S<F $>&3&36T23673O3#20# #<& 
O3FHO3@4$%& BT<&eA <2'23@%$>#K$% &3[cG3&N3 BT<6 0<"$%#!#<20<'$%@%$1=$> <FP5<#o
= 6C20#!<6Q&3<!&3 O3I<8* &;3=36`0<&'78.4$%&3&'6C23673O3#= <7'7
,


# BC23@%o+$>LA | <&37N2V "$%3@> # &'FHO'$%<&8.$>F=36$% BC 6T=0<&N &3 #h' $%#
<F)$>&3&36?23673O3#  5<$>@D<'@% =] 236<3@%BQ. &37_$%&_B`& A$1=O0$% &' | FH 6
$%&3Uh<&3#<.$>&='!@D<U "$1c) <FGBT=6$D@ =3A 6!O3&'&3#<6"A<* ! 
$>S$%S" BT=$>BTCV"=6C "O3U`7'K<@4cG$>X3<65 #=<6`23<#.cG$>X&'
$%&3&362'673O3# =<#h378$> 732V&'73  &3`"$>O0=$> &8* | BC 6CO3+=@%
6K & cG A<BT=$%BC <7'73$%&3I]6=U=6O'#=O'6`#<& VT3<78.$>[#K<O3"
$>P67'O3# =3<BC O3&e F"ABTBC6"A$>& `"$>=O3=$> &8$>P$%6@D$>5 @>A<"A
FH 6` =6=&3"FH 6"B`v=$%<&N  u n y li<j | $r* <* $>T2366"5  =3]5 #= 6 "20<#
"=6"O3#O36PF}<7'73$>$% &<&'7Q"#K<@%<64B O3@1=$%2'@%$%#=$> & 3O'$14$%4B O'#hQ06736
= V n%p tvz lkjonrf | cG3$>#h_BT<&3=3?$>&3<? &'@>AQ2366U5  <737'$>=$> & <&'7
#K@D<6B O'@>=$>23@%$>#K$% &b.v'O'd<@%"?$%&3&3623673O3#= <c)@%@* * !  $>FV &3G$>&3$>"=
 &;73<@%$>&3I_cG$>=X$%&3&'6C23673O3#= <@>@=3]=$>BT.d='&  &'@%<`@><C<F
"ABTBC6$>.#K<O' ='6$% BC 6""6O3#=O36" =!2'6"6U5 <.<&'7=3$> #<&
 BC$%BC4BT<<  236<3@%B <232VK<6G06736G0<&]$>G#=O3<@%@1A!$%* !  BC?<F
=3 732VU`7'5<&3# $%& 23eA$>#. FH 6$%&3Uh<&3#<.20<6U=$>#O3@%<6@1A_$%& 6@D$>5e
$>LA<&'$7  O0<&e=O'B BC#h0&3$%#.0c)6 <&3@>A 2V "$%'@%[#K<O'32' A"$%#$>"
6BC 5 7_`@%<P<FO3&'&3#<6"A "=6"O3#O36 FH6" B =3$%6BT73@% | <* I3* $>& 6@1
=$15+$1LA ='A6BC 5 7 23<6=`U=6O'#=O'6FH 6"20<# <&37$%BC<.<23$>&3I
 &3@>AC" BT=3$>&3I #<@%@>7T3"20<#=$>BTBC6$># .+<&37!3& I <$%&37! BO3#h
<7373$1=$%<&0<@'UABTBC6"A 0=3AS# O'@%7S=3&`O3"3 "ABCBT=6"$%73$>U
# 5 6P&3c@% cGG<FE23eA$># | <* I3*  $%&3U=$%& 1 G@DKcFI 6K5+$1h$% & *
9 !  BC?0<$>#?236<26"=$>G<FE$%&3&'64236"+73O'#=(
9 6" B =3?@>$%&3<6$1LAT<&37 #<&v"O3Ie"ABCBT=6UA!236" 2 6"$%)$>$>K"A` 
       &37     FH 6P<@%@5 #= 6"
=0  N
   '&37 #<@D<6" | cGeA  0 <= 0dcG3& A <O 23O3@%@"#K<@%<6  O')<F
=3# &'7 Fq<#= 6.$> I = #<&v"O3Ie78.vGV#K<6"FHO3@ <V O'b=0* | &3=36
cKA]<F}KA+$>&3IS=3$>P$>G0G='$>&3&36G236"+7'O3#P$% f tvy  ei<kml u n y li<jo.6=36
=0<&`@%$%&'K<6.$>&T3# &'7!5<6$D3@%* )#K<O3"=3 $%&3&36d2'673O3#$% @%$%&'K<6
$%&306U5<6$%<3@>d&37  &3@1A[ 6U" <FD L@>$%&3<68$%& =3d# &37b. $>E$% BC$%BC
=<$>7C0 =3P$%&3&36d2'673O3#d$%4p lhp  n u n y li<j | "  O3$$% W =$>&CFH 6 "<&3<&'7
S3<@>F  *
9 43?$%&3&'64236"+73O'#G<F  cG$><&eA =3$>&3IS$%  (        * | 4'$%4$%
<& K"A # &3"  O3&'#S<F=' @%$>&3K<6"$>LA |  6 # &v"O3Iev=@>$%&3<6$1LA )  A  *
M &;20<6U=$>#O3@%<6.     *4 O3.GeA =3Q2<$>$>5$>LA 236 2V6ULA .    $%
,<,

2 "$>$>5 $>F $> &3 & LJ6<&'7 J6"!$>F$> J63* M & 23<6"$%#O'@D<6.V$1Fc)5 6
&'c=0     .'cd#<&Q7'73O3# 0T$>="@1F$>  *
M &3&'623673O3#=<&37]@%&3I<=
9 ?&'# A< O!0K5 <&!$%&'&36d23673O3#23<#.'A  O #<&`3&!7'0&3[ &3<$% &T<F
@%&'I<=8(
9 
  ; W   VQ&N$>&3&36C2'673O3#S"20<#<.&37X@> ] 5 #=<6

<F S* 43&=3 u l y <k g <F V. 73&3=7  .$%I $15 & eA =3_FH 6BO3@D
    * | M &Q23<6"$%#O'@D<6.      *
 (
9
* ; M & 5  cG$1=C=3P"h&370<6"7!$%&3&'6)2'673O3#.3P5<#= 6 | 0

@%&'I<=
|  |  | }
  

9NM FE$>&3"K<7!cd[O33?&3 & L"=<&37067 $%&'&362'673O3# 6    6  .=3&


=3[@%&3I<]$>4&3 c
|  |  | }    |   
  

4O' 3S&3<=$> & <Fd@%&3I<=_732&373[5 6"A B O'#h &_cG0[$>&3&36?23673O3#


A  O #h3  | <@>3 O3I  $>& BT<"[#K?3$%cG$>@%@&'<[S& $>"O3 $>&3# cd
cG$%@%@O3[=' Uh<&'70<67]$%&'&364236"+7'O3# *
9 6" B 3S2<$>$>5$>LAQ236" 26"LA cdT" =3 5 6"A_&3<&+ LJ65 # 63< 
2 "$>$>5 ?@>&3I=8.'cG'$%@%3 J6"C5<#= 60<GJ6C@%&3I<=b* 4 O3  $1F
<&37 &3@1A $>F   *
9NM F $>GS"#K<@%<6.+=3&
                 

9
* ; TM &Q # BC23@%o`5<#= 620#<.33?5 #=<6 | C$%35< $%BC
<G@% &3IS *43?5<# 6 !3<G'<#@>A!3[=<BC?@%&3I<Q *
9 43 $%&3&'6236"+7'O3#[$>&  BC "2#$D@}#K<"?#<&_ o+2367$>& =6"BT <F
@%&'I<=8*4 <@>6<7'A &3 c =0   )   *] 6I &36=<@>@>A<.V$1F  $%P


,

2 "$>$>5 S"#K<@%<6[B O3@>$%23@> <F  | "Q=3 _<&37  6C20<6=@%@%@<&37 $%&_='


=<BC?73$%6"#=$%<& .'3&  TFH 64" BC?2 "$>$>5 ?6"K<@ & O3B6 .0<&'7
             
$r* <* cG3& _&37  <6T2 $>&e=$%&'IQ$>& 3!=BTC73$%6"#=$%<&='&3`$>&3&36
23673O3#G$%"O3U4=3[236"+7'O3#G<F 3?&3 6"BT* M &3[<='646BC<.'$>F  $%
S&'Ie$>5< "#K<@%<64B O3@1=$>23@%P<F .'3&  TFH 64 BC?2V $1=$>5< .&37
         
       
<&37 3 $>&3&36T23673O3# $%`&3Iev=$>5<=' 23673O3# <F?3 &3 6"BT* M &
I &36=<@83[$%&3&'64236"+73O'#@%$>$>&]VLcd&='[LcdTo+6BT(
9            =       W   V <& $>&3&36P23673O3#?23<#*0 6
<&eA   C.3cd[0K5 
      

9  M F   3& V<=$%7'<6")J6'.e cd4#K<& < "O3BTd=0 


 *
6" B 3[2<$>$>5$>LAT236" 26"LA!cd &'c=0     * ] 6[I &36<@%@1A .
FH 6G<&eA #<@D6 cd &3 c0       * )O+
         
  8  8     
    E  8  8     

! $%&3#       FH 6 <&eAS#h3 $>#<F8"#K<@%<6 . .cd O3d3 5<


      8  8       
FH 64<&eA #h3<$%#[<F"#K<@%<6 *[&3 c@># <&37 $>& 6736=S '=<$%&
 BC?#K<&'#@>@D$% &b* ! 2V#$10#K@%@>A<.+cd"
(   (  

43&]c)[ 0
                       
,


=3$>4$%BC23@>$>0)=




     

$>5$%73$>&3I`eA  C| 6"#<@%@=0  $%&' &+ LJ6"3.8 0  $>&3 & LJ6
<&37 h< $>&3IS  O0<6"6"+<c)  '=<$%&!3[73"$%6"7]$%&3 O3<@%$1LA *
/
9 4O'FH 6G6"K<@85<# 620<#.3 $%&3&36G23673O3#   <@1cKAG@%$%4 BC
cG36"QVLcd&   <&37   * <6 # BC23@%o 5<# 6C20<#.
=3S$%&'&36[236"+73O'#   #<& @%$%S& A cG36C$%&_=3S73$> #&e=67 ?='
 6$>I $%&]cG$>=6=<73$>O3   *<6$%&3Uh<&'#<.b$%&3 # BC23@>]5 #=<6 "20<#
   ,
.'cG3$%@> 

`.'$>F   <&'7   3&  


<&37 
+*
9 43 : <O3#heAe ! #hec)<6J$%&3  O3<@%$1LA`$>4=6"BC@>A`O3FHO3@r.'2V#$D<@>@>AT$%&<&3<@1
A+"$%$>?=@%@> O'=3$1F)<&3`<Fd=3S5 # 6   0K5<`BT<@>@@%&'I<=_=3&

=3$%6$%&3&'6 23673O3#)cG$%@>@<@%"VBT<@%@ | O3&3@%d<F #<O36"P='P<36 5 #=<6


0<45 6"A@D6I @>&3I= *
9 &3<368FHO'&370<BC&eh@ $%&3  O0<@%$1LA# &3#6"&336@D$% &'3$>2Lc)&@%&'I<=
<&37Q5<#= 6P<7373$1=$> &8* M  $>#@%<64=0P@%&3I<Q$>&'< @>$%&3<6(3@>&3I=]<F
  $> &3< "O3"3"O3B F=3 @>&3I= <F ]<&'7=3@%&'I<= F  *?0 6
$%&3Uh<&3#<.3$>& 5  .+$>F !( |   <&37  |   =3&   |  
 ,
    * P c)5 6.c)[73C0K5 
9 ,  ,  =      ]W  Z<&C$%&3&'623673O3#)"20<#<*0 6<&eA  
C.3cd0K5<
   

 
9    236 5  3$%$>&3  O0@%$>LA<.bcd #K<&_  O06S= $>73 | &3< =0

=3$>4$% "$%&3# V<Q"$%73P6?&3 & L&3Ie=$15  (
   |   

 
43[@%F U L0&37$%7' $>
  
     8     

 
43  O0<&e$>=$>    <&'7   <6?"O3"   <&37   6""2#=$15 @>A *
6" B 3 : <O'#h Ae ! #hec<6"J $%&3  O0<@%$1LA . 3Lcd#
  O0<&e$>=$>   <&'7
   0K5<<' @>O'=5<@>O3[GBC "   *4O'
  
          |   
 
,<

< G73"$%678*
/
9 43 6< &3$%!$>!#K@%@%7 =3 6$%<&3I @>Q$>&3  O0<@>$>LAX$%!V#<O3" $1!0
&0=O'6=<@EI  BC6$>#$%&e62'6==$> &8($>F &' #K<@>@%PLcd$>73?<Fd`6$D&3I @% 
<&37  .+"=0v)='P='$%67`$%7' $%   . =3&!=3=6"$D<&3I<@%G$%&3  O0<@%$1LAS=KA
=0 3 @%&3I<NFP3!=3$>67 $>73 $%@%" =0<&  6   O0<@= 3 O3B <F
=3 @>&3I=3F=3 =36 Lc) "$%73* M & <36 cd 6"73. !U=6<$%I e @%$%&'0
=3S' 6""73$>"h&3#SVLcd& Lc)Q2<$%&e= | [@%<"[cG3&#<BT2067 
=6$%<&3I O'@D<6)<@>6&3=$15  *
9 43?=6$%<&3I @>$%&'  O0<@>$>LA!3<S# O323@>?<F5<6$D& * 6<6"[SFHc[(
    
   
 
   
 
    
    
4O'FH 6 $>&3"=<&3#<.v$>F  0<@%&3I<C  .v<&37  0< @%&3I<= '.='& <  
<&37   0K5 P@%&3I<=T BCcG'6 Lc)& ! &37  '* | : <&CA  O "P3$%
I  BC6$>#K<@>@>A  * 43"$%&'  O0<@>$>=$>4#<&V2'6 5 & $%&QC"$%BC$%@D6B`&3&36
==3C 6$>I $%&3<@E6$D&3I @%$%&3 O3<@%$1LA .  6 <@>6"&0=$15 @>A <&3S#K<&"h6"[cG$>
=3<6$%I<$%&0<@06$D&3I @%$%&'  O0<@>$>LAT<&37 73 " BCO3'"=$1=O'$% &' | * I3*6"23@%<#
  A  .  6?6"23@%<# Q A S  .  & <_$%7' <Fd3S$%&3  O0<@%$1LAV 6"A
=3$>
 *

,/

 
  
  "!#$%'&(*)+!,.-0/1 2-/43
5 6+&($!7$ 8 9:;,
9?'+*@  )A*BC&CED
9?'+*)+ 9FG*BA*!!
9*FI 2J$K+FL&(:0M 9#+ @ *)A*B(&CNO&( )
9?'+*@  )A*BP$ FL6+B(FG)Q'!
RIRIRGRIR
9= #+ @ *)A*B(&1ED
<TS 9# FUD *V+9GBC WM9? E:0&C8 &(!#&( )X8 $'*9Y$OB($V0B(V+!ID  V> )0ZW[ALEWM8 $%' 9#!
\^]_ &()L`YaM*9.`Gbc*9#d6^9#6)+:+&C$V+B(*9e&CfP*)+:G )+BCDg&Cf \ch#_jik0l fm 9e&()+!?K*)0$*n
oqp ]'rQs *)+: o?t r+] p s 9u696^)+:0&($V0Bv*9/
<Tw  WxAyWzIAO8 I&()0)+9y609 :+V+$!{ |"@ )+9*B(&CNO&( )}fz:0*~6+9#:+V0$'!{
WMu$O))+ W@ &C8*!#&(FL&(Bv9M)+*&( )"fm*9*B(B;&C)+)+976+9 :+V+$%d!#6A*$!/
<TQZm^.z c^{)Y&()0)+96+9#:+V0$z!6A*$*/f \]'_ *9#|8*$%' 9#!M&()YGn
WMu!'ODA \ *)0: _ 9"mA ^*&Cfc \]'_yeik /
<{Am^ E)u`L o W&C'y+e!#'*)+:A9:u&()+)096+9#:+V0$ s n '+8*$ 9! o  ]  ]Kk]KkQs
*)+: o k0]Kk0]  ]  s *9 9#+ @ *)A*Bn^*!{*9 o  ]  ]  ]  s )+: o  ] t  ]  ] t  s n+V
'+8 $'*9! o  ]  ]'k0]KkQs *)0: o  ]Kk0]  ]'kQs *9)+Y 9?'+*@  )A*Bq/TE)a nz'0
8 $%' 9#! o  ]'s *)+: o  ] t Es 9u 9#+ @ *)A*Bn+V0 o  ]KkQs *)0: o ]KkQs 9u)+*/
<{Am^ E)*)QD&C)+)+9u6+9#:0V+$!6+*$n'0 k 8 $ 9&C!~ 9#+ @ *)A*B
8 9#D'0&()+@ o WQD0 s / = )'+"'+9gA*)+:Pnz)+ ) N9#}8 $'*9$O*)+)0*I
 9#+ @  )+*BP'I&1'!BCf o WQD0|$O*BCBP'+ \]'\i\ a s /
<{Am^ E) o k0]  l s W&1''+u&C)+)+97609 :+V+$
]#+ , i o s om sc ]


<>=
< =
>
< H
>
< =
>

'+~fmV+)+$%'&C )+!~*)+: Gt a *9#~ 9#+ @ *)A*B o WD0 s n+Vu)+: *9#)0*O/


d WM%8 9n^&() o# t  ]  l s W&1''+u&C)+)+97609 :+V+$
]0 , i o s om sc ]

'+~fmV+)+$%'&C )+! *)0: Yt a *9#)0YB( *)+@ 97*9#'0 @  )ABn++ Wz8*9d+ufmV+)+$%
'&(*)+!gI*)+: )+ W 9*/7 V+!~'+ V+!#&( ) *fW+%'+9uEWz8 $'*9!*9
 9#+ @  )+*B;:+6)+:+!| )W+&($K &()+)096+9 :+V+$%7D  VV+!/
< J FL'&CFG!5Wz7!'OD'A \ )+: _ 9 % %
  1*5&C)+!#O*: *fe%A ^* /
7+&(!FY*! +"FL !# !)+!fm 9` n+V0$*) ^+&1 $ )0fmV+!#&()+@}W+)
:+O*BC&()+@W&1'*'+9I&()+)+9I6+9 :+V+$%Y!#6A*$!Y!#V+$Kj*!L o t  ]  ] s + W
WM V0B(:*)+L8 &C!VA*BC&(NI+GfmV0)+$&( )+!L")+: ^&C)+
@ #6^9#6)+:+&C$V+B(*9 +nfm 9
o

&()+!?K*)+$  9 *)+: nzfm*9g'AIFG#'9 s J 6+9%fm9' V+!# +WM 9#:


 9#+ @  )+*BPW+):+*B(&C)+@gW&C@ )+9'*B&C)+)+9|609 :+V+$|!#6A*$!/
< J FL'&CFG!dWzW9&C \ _ ':+)+*'+gf *${'A \ &(!{ 9#+ @  )+*B
_ /
< &C)+@  9#+ @  )+*B7&(!II+*6+6*!&C% '9#FLfy^&()0@ 6+*9'*BCB(B l 9#$*B(B
fm9 F '+ c*V+$KQDQ ?J$KQWM*9N&()+  V+*B(&1ED A
  \]'_~ F V+!#BC&(G%EWM) k
*)+: \ Q_L /e+) \ *)+: _ *9u6A*9*B(BCBP+)  \]'_y #K*&C)+!7&C!FY
&(FgV+F 6^ !!#&(+BCY8*B(V+Y*f \ Q_L nW+&(BCYW+) \ *)+: _ *9# 9#+ @ *)A*B
'+)  \]'_~  '*&()0!7&C'!7FL&()0&(FgV+F 8*BCV+~*f k /
<>= 9?'+*@  )A*BC&CED&(!e!?D FGFL9&($,&1f \ &(!*9#'0@  )A*B' _ '+) _ &C!e 9#+ @ *)A*B
' \ / o D0"
!|! +g$ $) ##V+@Q' !?D FGFL9#D6+9 6^9?ED})+:}'+f *$d'A
'+u$*$) ##V+@Q~*f k &C! kQs /
<>= 9?'+*@  )A*BC&CEDL&(!6+9#!#9#8*:}V0)+:+9BC&()+*9c$*Fg+&()+'&C )+!,
<%. '
&A JV06+6*!'A \ )] (*(*(]\ 9"8 $ 9!L&()X*)X&C)+)+9 6+9 :+V+$%
!6A*$yLn)+:Y!#V+6+6^ !'A _ &C!z~8 $  9M&C)YW+&C$KY&(! 9?'+*@  )A*B+ B(B
*f \ ]\ a )] (*(*(]\  /70) _ &(!{*B(!# 9#+ @ *)A*B '*)QD}BC&()+*9{$ Fg+&C)A&( )
*f \ *] (*()(]'\  /
< +-,Z; /.5 0 \ 1 (*(*( 1 0  \  ^BC&()+*9$ Fg+&C)A'&C )*f \ ]*(*(*(]'\  /7+)
D"B(&()0O*9#&CED

 0 \ 1 (*(*( 1 0  \  ]_~i 0 \ ]'_y 1 (*(*( 1 0  \  ]'_~ (




3

 V0!#&()+$ _ &(!g*9#'0 @  )AB.O*$KX*f \ ]*(*(*(%]'\  n.*BCB.+"'9FL!g )'0


9&(@*? EA)+:!&(:0 *9#uN9#+/M7V+! _ &(!7 9?'+  @* )A*B;0 \ 1 (*(*( 1 0  \  *!
:+!#&(9:;/


< E)G6A9#'&C$V+B(*9nQ&1f \ *)+: _ 9 9#+ @ *)A*Bn +) \ *)+: _ *9d*B(!#u 9#+ @
 )A*BPfm*9*)QD!$*Bv*9 o WQD&(!c'0&(!!6^$&v*B$*!u*f FGFG"Z s
<  V *9*BCBf *FL&(BC&v*9W&C+~fm B(BC W&()+@ +*9F **V0 9#+ @ *)A*B(&1ED /
< +; 5
/,Z  g /,Z f \ *)+: _ *9~ 9?'+*@  )A*B^8 $'*9!n++) \ 1
_G a i \ a 1 _G a /
< +-,Z;/ .' u$ FL6+V0
\ 1 _G a i \ 1 _]'\ 1 _~i \^]\0 1 \]'_y 1 _]'\ 1 _]'_~ (
 V0I!&C)+$ \ *)+: _ *9# 9#+ @ *)A*Bn| \^]_~ *)0: _ ]'\ *9#N9#+/XJ&C)+$
\]'\ei \ a *)+: _ ]'_yi _L a nWz{*0K*&C) \ 1 _G a i \ a 1 _L a *!
:+!#&(9:;/
< 7+&(!7'0 9#F $*)^u@ )09'B(&(N:;,
< 5 ,ZA  Q  +; 
/ ,  G  / ,Z f \ ]'\ a *] ()(*(]'\  *9*BCB 9#+ @
 )A*BPIO*$K*'+9 o &/ */ \ \cik fm 9*B(B i
  s '+)
\ 1 \ a 1 ()(*( 1 \  a i\ a 1 \ a a 1 ()(*( 1 \  a (

< +-,Z;/ .' 6+9 8*g'+&C!{QD&C)+:+V+$%'&C );/|!f i  +g$B(*&(F[&C!|9&18&(*Bn^*)0:


fm "9 i 3I'+&C!{&(! ##V+!#{'+g*9:+&C)A*9#$D #D'A@  9'!d'0 9#F / w  W !V+606 !#
'A% '& 3n*)+:+Y$Bv*&CF A*! *B(9#O*:0D ^)6+9 8*)fm %9 t  / S 9# F
FGFG"~WM)+ W'+ \  &C!7 9#+ @ *)A*B \ 1 (*()( 1 \   nA!#
\ 1 \ a 1 ()(*( 1 \  a i \ 1 (*()( 1 \   a 1 \  a (
= )+u*'+9 A*)+:;nAQD+u&()+:+V0$'&C ) QD 6*+!#&(!WMu)+ WA
\ a 1 (*(*( 1 \   a i \ a a 1 (*(*( 1 \   a (

M Fg+&C)+&()+@g+~EWML) VA'&(*)+!7 WMu 0'*&()


\ 1 \ a 1 (*(*( 1 \  a i\ a 1 \ a a 1 (*(*( 1 \  a

*!:+!#&(9:;/
p

< | $O*BCB^A7&1fEWMg8*$ 9!|*9#y 9?'+ @* )A*Bqn +)"+DY9FG*&C)" 9#+ @ *)A*B


8 )W+)D* VF V+BC&(6+B1DG*)+u 97' *f+F DL!#$O*B(*9/.JWz+ 8*
< / ,Z^qm ,  f \ ]'\ a *] ()(*(]'\  9*BCBd*9#'0 @  )AB| O*$K*+9 o &/ */
\  \  fm 9*BCB i   s *)+: 0 ]*(*(*(] 0  *9u!#$O*B(*9!n0'+)

0 \ 1 0 a \ a 1 (*(*( 1 0  \  a i  0  a \ a 1  0 a  a \ a a 1 (*(*( 1  0   a \  a (


o



$


C
B
(
B


%
$
'

C
&


)
<TQZm^
\ ]'\ a *] (*(*(]'\  s *f8 $%' 9#!M&C!.!*&(:I'^A  
^*&1f%8 9#D6A*&C9c*f58 $'*9!| &(!7 9?'+ @* )A*B^'IO*$K *+9 o &q/ /| \ ]'\ %.ik
fm 9.*B(B  i  s /f$ BCB($'&C )&(! 9?'+*@  )A*BqnQ*)+:IfmV+9?'+9FL 9O$KY8 $'*9
A*!{BC)+@' o &/ */ \ yi fm*9y*BCB s +)Wzg! D '+{+ $ B(BC$&( ) &(!
%AP L* /
<{Am E)` n^+$ B(BC$%'&(*) o#oqp ]'k0]Kk0]Kk s%] o k0]'r+]Kk]KkQs%] o k0]Kk]
]KkQs#s &(!| 9?
'+ @* )A*B+V0 )+* *9#'0 )+ 9#FY*Bq/  V0+e$*B(B($&( ) o#o  ]'k0]Kk0]Kk s%] o k0]  ]Kk]KkQs%] o k0]Kk]  ]KkQs?s
&(!. 9#+ )+ 9#FYB o *)+:L'+9%fm 9y*9#'0 @  )AB s / w 'dAM*)QDL!&()0@ B(8 $'*9
\ &(!*B1WcOD !$ )0!&(:09:}*) 9?'+*@  )A*BP$ BCB($%'&C ) o WQD0 s /
< /,Z^qm ,  /f o \ ]'\ a ]*(*()(]'\  s &(!z*)G 9#+ )+ 9#FYBA$ BCB($%'&C )I*f;8 $ 9!n
*)+: 0 *] (*(*(] 0  *9u!# $O*B(*9!n0'+)
0 1 0 1 1 0 a 0 a 1 0 a 1 1 0 a
\ a \ a (*()(  \  i
a ()(*(  (

w *M'A'+M9&(@*? EA)+:g!&C:+  0  a 1  0  a 1 (*(*( 1  0  a &C!e*B1WcOD !6^ !&1'&C8**n


V+)+B(!! 0 ]*(*(*(] 0  *9#dB(B+N90/7 V+! 0 \ a 1 (*(*( 1 0  \   &(!BCWM D !.)+ ) N9+n
V+)+B(!! 0 *] (*(*(] 0  *9#B(BPN9#+/7 V0!
< / ,Z^qm , 
/ 8 9#D 9?'+ )0 9FG*BP$ B(BC$%'&(*)"*f58 $%' 9#!d&C!cB(&C)+O9BCDL&C)+:+%
6)+:+)Q/
RIRIRGRIR
= 9#+ )+*9FG*B;A*!#!
< {!IWM AO8 !);n7 9?'+ )0 9FG*Bc$ B(BC$&( )0!*f{8*$ 9!GAO8  FY)DX)0&($
6+9 6^9?'&C!/e d!MWz~!A*BCBP!#*n'+&C)+@ !c9y%8 ) ^9MW0)'+&C!c$*B(B($&( )
&(!*BC!LA*!&C!,
r

<TQZm^ d) %APL*  L*f*)j&()0)+9"609 :+V+$"!6A*$ &(!Y


$ BCB($%'&C ) o \ ]*()(*(]'\  s *f8 $'*9!W+&($KX&C!g 9#+ )+*9FG*BM)+: &(!B(! )
 9:+9:A!&(! /
<{Am^ E)L` n '0|$ B(BC$%'&(*) oo  ]Kk0]Kk0]'kQs%] o k0]  ]'k0]KkQs] o k0]'k0]  ]kQss &C!e 9?
'+ )0 9FG*B+V0 &(!)0* 7A*!#&(!/ d Wz8*9n'+e$ B(BC$%'&(*) oo  ]Kk0]Kk]KkQs%] o k0]  ]Kk0]KkQs] o k]Kk0]  ]'k s%] o k0]k0]Kk0] 
&(!7*) 9?'+*)+ 9FG*BA*!&C!/.*9~@ )+9*B(B1D n+~!#'*)+:A9:  9:+9: +*!&C!7*f
` I&(!c*BCWMOD!|*)  9?'+ )0 9FG*BP+*!&C!nA*!&C!M'+u!?K*)+:+*9:  9:09:+*!&C!7*f
 / o d$VA*B(B1D n '+~!?K*)+:+*9: A*!#!*f`  *)0: f.  *9#y'+~!*FL l  )0BCD
'+ AB(:~*f!$*Bv9!;&C!:+& 9#)Q s /7+e$ B(BC$%'&(*) oo  ]Kk0]Kk]KkQs%] o  ]  ]Kk0]KkQs] o  ]  ]  ]'kQs%] o  ]  ]  ]  ss
&(!A*!#&(!*f`Gd+V0|&(!7)+{) *9#'0 )+ 9#FY*BA*!#&(!/
<TS 9# F M*9 BCBv*9?D r WzAO8*
< / ,Z^qm ,    o \ *] (*(*(%]'\  s G*)  9#+ )+*9FG*B$*B(B($&( ) *fz8 $%' 9#!
&()) ^ :+&(FL)+!#&( )+*Be &()+)09 609 :+V+$ !6A$*/7+) o \ )] (*(*(]\  s &C!g*) 9?
'+ )0 9FG*BP+*!&C!/

< +-,Z;/ .' 7+&C!~&(! ##V+!#u^$*V+!I)D B(&C)+O*9#BCD&C)+:+6^)0:+)Qu8 $'*9!~&() )


^ E:0&(FL)+!#&( )ABP!6+*$*V0 FG'&C$O*BCBCDfm 9#F[A*!&C!/
<{Am M )0!&(:09c'0u8*$%' 9#! o p

]r

s )+: o?t r

] p

s &C)`Ya /e&(!
O*!?D'L$K+$K'+'+%DAO8  BC)+@'  )+:9u 9#+ @ *)A*B/zJ&C)+$u` a &(!
EWM :+&(FL)0!&(*)A*Bn'0D'V+!7fm 9#F[*) 9?'+ )0 9FG*BP+*!&C!/
<T % o \ *] (*(*(%]'\  s ^u*) 9#:+9#: A*!&C!7*f*) ^ :+&(FL)+!#&( )+*BP&C)+)+9M6+9 :+V+$%
!6A*$LL/J&C)+$ o \ )] (*(*(%]'\  s &C!~YA*!#&(!nPWM)+ W 'A~8*9#D8 $%' 9 \ &()
$*) yW9#&C)* !|B(&()0O*9c$ Fg+&C)A&( )"f \ *] (*(*(]'\  ,
\Ii 0 \ 1 (*(*( 1 0  \  (
E)@*)+9'*Bq n +)+:+&()0@ +!#!$OBv* 9#! 0 )] (*(*(] 0  $O*)^"':0&( V+!nM)+:X*f')
9) V+&C9!yB(*!df H *V0!!&(*)B(&CFG&C)A'&C );/ o 9?DW9#&C&()+@ o  ]Kk]Kk0]KkQs *!{YB(&C)
O*9~$ Fg+&C)A'&C )}*f o  ]  ]  ]  s n o  ] 3 ] p ]'rs n o 3 ] 3 ]  ]  s )+: o  ] 3 ]  ] 3 s nfm 9
&()+!?K*)+$ s / d WM%8 9n&Cf Wz~ )0ZW'Ac'+~+*!&C!c&(!7)%AP L*A*!&C!n
'+) A)0:+&()+@+!#$ G$&()!d&C!7FgV+$K O*!#&(9/
<  / ,Z ; % o \ *] (*(*(%]'\  s ^ *) 9#+ )+ 9#FYBdA!&(!fg*)&C)+)+9
6+9 :+V+$%d!#6A*$ L/e7+) fm 9*)QD"8 $ 9 \  Gn+WzuAO8 
\i 0 \ 1 0 a \ a 1 (*()( 1 0  \ 

W+9#+u!$OBv*9#! 0 )] (*(*(%] 0  *9~@ &18 )QD'0ufm*9FgV+B(


0
ci \]'\  fm 9B(B gi  ]*()(*(]
< +-,Z;/ .' J&()+$ o \ *] (*(*(]'\  s &C!z~A!&(!nQWM|)+ W 'A \gi 0 \ 1 (*()( 1 0  \ 
fm 9    !$OBv*9#! 0 *] (*(*(] 0  / 5 A)+&(!# '+6+9#*fWzAO8  ' ! B18 "fm 9
0 *] (*(*(] 0  *)+:8 9&1f D'+ 0 i \]'\ % fm 9~*BCB  i  *] (*(*(%] / 5 :0+&(!
WM K* V09d  V+'&C ) fm*9 \ )+:'**&()+)09|6+9 :+V+$%'!|*f^*'!&C:+!W&C
\  ,
\]'\ .i  0 \ 1 0 a \ a 1 (*()( 1 0  \  ]'\  (
u%6A)+:*V0'+u9&C@ Q# A* )+: !&C:+u*!
0 \ ]\% 1 0 a \ a ]'\  1 (*(*( 1 0  \  ]'\(
J&()+$ \ *] ()(*(]'\  * 9# *9#'0 @  )ABn.*B(Bz'+&()0)+9I6+9#:+V0$'!I8*)+&C!%$60
\  ]'\ ci \  a /  V \ di !&()0$ \ *] ()(*(]'\  &(!|*BC!L 9#+ )+ 9#FYB/7J 
WMu@ %

\]'\ %ik 1 (*(*( 1 k 1 0   1 k 1 (*(*( 1 k


*!:+!#&(9:;/
S 9# F '0G:+ A)+&1'&(*)*fM$  9:+&C)AL8*$ 9 \ nWzGV+!gAO8 Y!#&(FL6+B(
WcOD'I$ FG60V0'~$ E 9#:+&()+'y8*$ 9!,
< / ,Z^qm ,   i o \ *] (*(*(]'\  s ^) 9?'+*)+ 9FG*BA*!&C!*f)&C)+)+9
6+9 :+V+$%!#6A*$"I/L70) +I$  9:0&()Ag8 $'*9 \ f7*)QD}8*$ 9 \ &(!
'+)@ &18 )QD
\]'\
\ i // \]'\ a (
\]'\ 
<Tw *'+ M 9# B(B(*9#D Y*B(!#Y@ &18 !yV+!~Y9#B1K*&18 B1D V+&($KWcOD '"$ FL6+V0'
'+g$ E*9:+&C)A'FG'9#&1 *f.YB(&C)+O9d 6^9'*9 ,^
6+9 8 &(:+:

'A L&(!*) *9#'0 )+ 9#FY*BQ+*!&C!n !#&()+$z'0M$*B(V+FL)+!5*f *9 ##V+!# \  n


W+9# \  *9#y'+uA*!#&(!78 $ 9!|*f ./






















<{Am^" % \ , i o  ]Kk0]Kk s n \ a , i o k0]  ]KkQs n \ b , i o k]Kk0]  s n *)+: \ , i


oqp ]'r0]
s /7+) o \ ]'\ a ]'\ b s &(!*)  9#+ )+*9FG*BPA!&(!7f`Yb /e7V+!

\i 0 \ 1 0 a \ a 1 0 b \ b ]
W+9# 0 , i \^]\ i p n 0 a , i \]'\ a i r n)+: 0 b , i \]'\ b i
/
o = f$ V+9 !#*n^&()'+&C! $O*!#  )+$*V+B(: %6A*)0: \ *!dGBC&()+*97$ F +&()A'&(*)*f
\ ]\ a ]'\ b ##V+!#QD&()0!6^$&( )P/ s
<{ Am^  \ , i oq p

]'r

s n \ a , i o?t r

] p

s n*)+: \ , i o  ]Kk s /
7+) o \ ]'\ a s &C!c*)  9?'+*)+ 9FG*B^A*!#&(!Mfm 9z`"aO/ w ZW!V06+6*!yWzyWc*)Q7
W9&C \ *!B(&C)+O9y$ F +&()A'&(*)}*f \ *)+: \ a /gI$ V0B(: V+! H *V+!#!&v)
B(&CFG&C)A&( );n+V0M$O*V+!#y V+9.A*!#&(!z&(!.  9#+ @  )+*B+WM{$O*)"V0!{70 9#F &()+!?'O:LW9#&C
\i 0 \ 1 0 a \ a
W+9# 0 , i \]'\ i p

X*)+: 0 a , i \^]\ a , i t r

/ 7V+! \ i
b \ t \ a / o 59#D:0 &()+@g+u!'*FLy'0&()+@V+!#&()+@ H *V+!#!&v)B(&CFG&C)A&( );n *)0:
! + WF V+$KBC )+@ 97&CcWz V+BC: '**  s / V+&18*B()BCD*n0WMuAO8*
\  

i  pt



 (
r
<  j;A j/. ,m ,  ,  * )+ W @ &18  *)%0*FL6+B("W+&C$K
&(!&(FL6^ 9#'*)Qg&() FG*)QD 9O!Lf{FG'0FG'&C$! o '+*V+@  WMWz ) GV0!&C
FgV+$KX&()+&(! 6A*9#&($V+Bv*9$ V09! s y'0%0*FL6+B("f5$  %  %  %/ 
o# k0]  l s ^G+Y&C)+)+96+9 :+V+$%g!#6A*$G*f$*)&()V+ V0! $*FG6+BC% 8*BCV+:
fmV+)+$&( )0!7 ) +u&()Q'9#8*B k0] n0W&1''0&C)+)+9|609 :+V+$
]#+ , i o s om sc (

w  W$ )+!#&(:+9;'+fmV+)0$'&C )+! (*()(]'\  b ]'\  a ]'\  ]'\ ]'\ ]'\ a ]'\ b *] (*(*( &()u o k0]  l s
:+ A)0:QD



m
o

,
a


\  s 
i  l
'+!ufmV+)+$&( )0!*9u!*FG%'&(FL!M )0ZW)*! K  ^ !L0* Y  %/


<>= 0!9?8 u'A|+!#~fmV+)+$&( )0!dB(B;AO8*BC)+@'  ,


\  7i \ ]'\  a i o \  om s \  o sc s a

i o j  a      a    s a i o  s a i  (

{B(!#+n0+D9*B(B 9#+ @ *)A*B,&Cf  


i   '0)
\  ]'\  i \  o s \  om s7 i  a       a   !

  
  t 
i  a       i 3   a  o    t +s  i  o a 3    o   t +s

 t 
i 3  o  t +s ik (
7 V0!I+$*B(B($&( ) ()(*(]'\  b ]'\  a ]'\  ]'\ ]'\ ]'\ a ]'\ b *] (*()( &(!g*)X&() A)0&C'Y 9?
'+ )0 9FG*BP$ B(BC$%'&(*)*f8*$%' 9#!d&C) o k0]  l s /
< AO8 g)+y9*B(B1D:+&(!#$V+!#!: &C) A)+&1'A*!#!n+V0~&1{:0!d'V09)} V{'+On
&()!# FL !)+!nP'+{+*^ 8  $ B(BC$%'&(*)&C!y*)}*9#'0 )+ 9#FY*B+*!&C! l  V0!
8 9#D fmV+)+$%'&(*)&C) o k0]  l s &(!BC&()+*9~$*Fg+&()+'&C ) *fc$ FG60B(%A*9?
FG )0&($!/ o 7+I$O$K&C!{'+~'+&C!y&(!u)   dB(&C)+O9y$ F +&()A'&(*);n;*)0:
 )+I)+:+!u'+I'+ 9#D}*fc&C) A)+&1'g!#9&C! o *!u&C)' p p 7s  FG*I+&(!
6+9$&(!#*/ 7+&(!gWz V+BC:K*V+!g' }f *9 ABC:fm9 F '+&C!g$*V+9!#*nV+)0fm 9?'V
)A'BCD s /T7+&(!L!#''FG)QL W+&C$K>&(!L)+*I8*9#D&C)V+&C&C8* +9!#G@ B(*)+$
dWM*! A9!? $ $) ##$%'V+9#:QD S  V+9#&(9n5*)+: fm 9FL!~'+LA*!#&(!ufm 9u! FL+&()+@
$O*BCB(: $  %*^*    o W+&C$K&(!~*))Q'&C9g$ V+9!#&()&1'!BCf  s / S  9{)0ZWun
B(V0!Wz 9#YW&C!&CFG60B(9M!&CVA&( );/
<
 A)+I'0L!#6A*$  *fy 1 P %q  A P  * " *  G* Y %
'u7+d!#6A*)L*f \ ]'\ ]'\ a *] (*()(]'\  /E)Y*+9eWz 9:0!n  $ )+!#&(!#!zf*BCB'0
fmV+)+$&( )0!|  o k0]  l s f+~fm 9F
i 0 1 0  a   1 0 a  a   a  1 (*(*( 1 0   a     (
w *&($Au'+&C!&C!~8 9?D !&(FL&(B(*9d +L!6A*$   o ` s *fc6^ BCD )+*FG&(*B(!d*f
:+@ 9#|FL !# n+!&C)+$*) BCFL)Qd    o ` s A!+~fm 9F
i 0 1 0 1 0 a a 1 ()(*( 1 0  

* )+:g!#d'0M:+& P9)0$c^EWz)6 B1D )+ FL&v*BC! *)+: 9&(@* )+ FL9&($e6^ B1D)0 FG&
*B(!c&C!c'A A*!7^)9#6+B(*$:QD  a  i $*! o 3 s 1 !#&() o 3 s o +)+$
'+u)A*FL*n'9&C@  )+*FG%'9&C${6^ BCD )+*FG&(*B s /
<  &C!!V+0!6A*$*fd+&()0)+9g609 :+V+$I!#6A*$ o k0]  l s n.*)+:X&(!g V0!
&C'!#B1f|*)X&()+)+96+9 :+V+$%I!6A$*/ J&()+$"'+"8*$%' 9#! \ ]'\ ]*(*()(]'\  *9# 9?
'+ )0 9FG*Bn'+%D *9#B(&()0O*9#BCD &()0:+6^)+:0)QOnz*)+: 'V+! o \ ]\ ])(*(*(]\  s &(!
*) 9?'+*)+ 9FG*BA!&(!fm 9  /7V+!{QD 7+ 9F -0n%8 9?DfmV0 )+$&( )} &()
 $*) ~W9&1)*!L!#9#&(!


i 0 1 0  a   1 0 a  a  a  1 (*(*( 1 0   a    i  0   a    (




W+9#+ o $*FG6+BC% s !$*Bv9! 0 ] 0 ]*(*()(] 0  *9#u@ &C8*)QD'+~fm 9#FgV+Bv

0  , i ]'\ .i om s   a    (

7+ $ G$&()! 0  *9)+ W)*!d+ 5$   % K   %A *f5nP*)0:'0
* 8*!#9&C!d&(!)+ W) *!|+ $  %  %  c*f./ S 9# F M 9# B(B(*9#D p Wz
AO8 u'+~fm 9#FgV+Bv

0  a l
 om s  a i a i  0  a 1  0  a 1 (*(*( 1  0   a i



'+&C!{&(!d)+ W)! z1* K % %   O 1*/{7+!#gfm 9FgV0Bv*!|fm 9F['0 fm V+)


:A'&C )X*f S *V+9&C9*)+*BCD !&C!nz*)+:T*9V+!#fmV+B&C)FG*)QD *+9L*9#O*!nz!#V+$K
*!7!&C@ )A*B;609 $!#!&C)+@+n+6A9#'&(*BP:0& 9)Q'&vB;) VA&( )0!nA*)0:)V+Fg^9c+*9#D /
o {$%'VAB(BCD*nL^y'9#V+BCDYV+!%fmV+Bn0 )+~)+:+!'I@ )+9*B(&CN{+!#ufm*9FgV+B(*!M
A*)+:+BC*BCB&()+:0!~*ffmV+)+$&( )0!n;)+ ##V+!#~9&(@* )+ FL9&($6^ BCD )+ FL&vB(!n+V
'I:+L!I&(!7^D* )+:+u!$ 6u*f'+&C!7$ V09! s /
RIRIRGRIR
7+ H 9'*F ?J$K0FG&C:0c 9?'+*@  )A*BC&(N'&C )Y6+9#$!#!/
< E)'0&(! !$'&C )gB(B 8 $ 9!*9z*!!#V+FL: d^BC )+@'d 0: &()+)+9 6+9 :+V+$%
!6A*$G/


< E)u+Bv*!?!$&( )uWM! W+ WFG*)QDyFL 9eV0!fmV0BQ6+9 6^9?'&C! 9?'+ )0 9FG*B
A*!!"A*:Pn7&() $ FG6+*9&C! )W&C'T 9:0&()A*9?DA*!!/J &CLWM*V+B(: ^)0&($
&CfWMA*: ! FLWcOD *fg$ )Q8 9#'&C)+@ X)+ ) E 9?'+ )0 9FG*ByA!&(!&C)>)
 9#+ )+ 9#FYB )+*/ S  9?'V+)A'B1D nA'09 &(!|!V+$KG6+9 $!!nP*)+:&Cd&(!|$O*BCB(:
   K  *cA ^* * A/
< FG**LA*!#&(!~ 9?'+ )0 9FG*B+9#L*99#O*BCBCD EWM !#6+! l A9#!# )+A!
'IFY*A*!&C! 9#+ @  )+*Bn0*)+:'+)*)+$&C7&C!7 9#+ @ *)A*Bn )+uA*!7
FY*&1| 9#+ )+ 9#FYB/.7+ !#$*)+:}6+9#$:+V+9# &C!d*!&C9'L:+!#$9&C'A)
'+ A9#!#OnA!#GBCV+!:+!$9&(^~'A A9!?O/
<TQZm^.    %EM&C!d)DY8 $%' 9 \ *fB()+@* o &q/ / \ 7i  nA 9
) V+&C8*BC)Q'B1D \]'\ei  s /
<{Am^ E)` a n '0.8*$ 9 oq p

]'r

s &(! V+)+&C8*$%' 9n*+V0 o p ]'rs &C!5)0*O/
E) o k0]  l s n+~fmV+)+$%'&(*) &C!)+*dLV0)+&C78*$ 9 o a i A i

3 s nP+V0 3 &(! o WQD+ s /7+ k 8*$%' 9~&C!y)+8*9YV+)0&Cy8*$ 9/E) `Yb n
'+~8 $ 9! o  ]'k0]KkQs n o k]  ]KkQs *)+: o k0]Kk]  s *9#*B(BV+)+&C78*$%' 9#!/
< !d)+&1g8 $'*9!L*9Y! FL&(FL!g)+ W)T*!"P L* $ G8 $'*9!/ w *"'A
*) 9?'+*@  )A*Be+*!&C!W&CB(Be^Y 9?'+ )0 9FG*Be&CfM&C$*)+!&C!#'!)Q'&C9BCD *fMV+)+&C
8 $%' 9#!/
<  !#G)+ ) EN9 8 $'*9!"9 )+*LV+)+&1L8*$%' 9#!nc/ @+/ oqp ]'rQs &(!I)+*G V+)+&C
8 $%' 9"
/ | WM%8 9n7 )+$O)>*B1WcOD !'V+9#)>)+*) EN9 8 $ 9G&C)Q' V+)+&C
8 $%' 9QD:+&18&C:+&()0@ V0QD&C!7B()0@*';,
<%.  ; f \ &(!I)+ ) EN98 $ 9nA'0) \
\ &(!V+)0&C78 $ 9/
< +-,Z;/ .' J&C)+$ \ &(!y)0 ) EN9#+n \ &(!y)+*) EN90n! \
\ &(!{WzBCB:+ A)+:P/
 V0'+)


\
\ QMi \ \ci \ \7i 
*)+:! \
\ &C!IV0)+&C78*$ 9/
< ~!# FG%'&CFG!c$O*BCB \
\ '0P L* * *f \ /ef o \ ]'\ a )] (*(*(%]'\  s &(!c
A*!&C!nZ'+) Wzz$*)YPL* $'+&C!A!&(! QD96+Bv*$&()+@*$K 8 $ 9 \  QDu&C'!
)+ 9FG*BC&(NO'&(*) \ 
\ Q n  0'*&()0&()+@77)+%W+*!&C! o \
\ Z]'\ a
\ a Z*] (*(*(]'\ 
\  s
W+&($K)+ W$ )+!#&(!?'!)Q'&C9BCDG*f5V+)+&CM8 $%' 9#!/ o  QD&C !M'+&C!c!#&(BCBPA*!#&(!' s
k














<%.  f o \ ]\ a ])(*(*(]\  s &(!)L*9#'0 @  )AB0A*!#&(!e*f*)I&C)+)+96+9 :+V+$%


!6A*$GGn'+) + I)+ 9FG*BC&(NO'&(*) o \
\ Z]'\ a
\ a Z]*()(*(]'\ 
\  s &(!u)
 9#+ )+ 9#FYBPA*!#&(!/

< +-,Z;/ .' J&()0$'+ A*!#&(! o \ ]*(*()(]'\  s A!$ BCFL)Q'!n FgV0!#  ^
:+&(FL)+!#&( )+*B/ J&()+$ +8*$%'  9#! \  9*9#'0 @  )ABc'*$K *+9nM'0
8 $%' 9#! \ 
\ FgV+!#*BC!X^ *9#'0 @  )AB{'XO$K*+9 o F V+BC&(6+B1D&C)+@
8 $%' 9#!{QD I!$OBv*97:+ !|)+*d $%| 9#+ @  )+*B(&1ED s /  D FLFY  n++!#
8 $%' 9#!|*9~B(!V0)+&Cc8*$%' 9#!/zJ'+{$Bv&(F fm B(BC W!Mfm9 F M 9# B(B(*9#DG
/
<{Am^ 70 +*!&C! oo p ]'rs] o?t rQk0] p kQss &(!)*9#'0 @  )ABzA!&(!fd`Ga
o WQD0 s /dfWM)+ 9FG*BC&(Ny+&(!|A*!#&(!|WM 0K&() ooq p

]'r

s%] o2t r

] p

ss n
*)+:'+&C!&(!7)+ W ) 9?'+*)+ 9FG*BA*!&C!7*f`"aO/
< JWMu)+ W)+ W 0ZW 'V+9)*) 9#+ @ *)A*BP+*!&C!7&()Q'L*) 9?'+ )0 9FG*B
A*!&C! zWz )+ 9#FYB(&(Nu*B(B;+8*$%' 9#!{QD :+&C8 &(:0&()+@L V0|'+&(9B()+@*;/ w  W
WM$ FG''0'9#&($K*96A*9?*f~'06+9 $:+V+9 g+ W 'V+9#))+ )
 9#+ @  )+*B+*!&C!~&()Q') 9#+ @  )+*B )0*/7+&(:+"&(!y)0ZW '!#V+09'*$%
!$OBv*9yF V+BC&(6+BC!y*fz )+g8*$%' 9ufm9 F *)+*+9yFY*'+F  9#+ @ *)A*B
o D *VFG&C@ Qu!"! FLG*)A*BC @*D+9LW&C'9 W 6^9'&C )+!u*fc+G!#$ )+:
*)+:'+&C9:&()+: s /
< &CB(B(V0!#'9'L'+&C:+OnWM A9#!#I$ )+!&C:+9g+6+9# +B(F fd0ZW ' FG**
##V+!#EWzL8*$ 9! \]'_  9?'+*@  )A*B'IO*$K*'09/
<%.  & f \ )+: _ *9#|8*$%' 9#!n+)+: _ &(!)+*) EN90n+)G'+8 $'*9
\ t  _ &(!{ 9#+ @  )+*B5 _ nPW09+g!$*Bv9 &C!y@ &C8*) QD+gfm 9F V+Bv
{, 
i      /
< +-,Z;/ .' u$ FL6+V0
\ t  _ ]_~ei \]'_y t  _ ]'_yi \]'_y t  _G a (
 V0e!#&()+$ {, i       n*Wz7AO8  \ t  _ ]'_yeik *)+:!# \ t  _ &C! 9#+ @ *)A*B
' _ /
<{Am^  \i oqp ]'rs *)+: _ i o
]KkQs /7+) \ *)0: _ *9#})+*
 9#+ @  )+*B l &C) f $On5 \^]_~.i Z
i
 k /  V0d&Cf5Wz 96+Bv$ \ QD'+u8 $'*9
\
, i\ t  _ i o p ]'rs t o
]KkQsei o p ]'rs t oqp ]Kk sei o k0]rs n0+) \
&(!7)+ W

 9#+ @  )+*BP' _ /
*

<Tw  WWM"!#V+6+6^ !"AWM"+ 8**B(9#O*:DFG*:+  8 $ 9! 9?'+*@  )A*Be


O*$K}'+9n*)+:})+ W Wz Wz 9 V0{+ W 'GFY*g o  1  s 8*$%' 9~B(!
 9#+ @  )+*BP'+ A9!?  /
<%.  &/&A % _ ]_ a *] (*(*(]'_  G 9#+ @  )+*Bz)0 ) EN9#8 $'*9!n.*)0:
B( \ *)0*'+9c8 $' *9/.7+) '+~8 $ 9 \
nA:+ +)+:D
\
, i\ t  _ t  a _ a t (*(*( t  _ 
&(!e 9?'+ @* )A*B0*B(B+f _ ]_ a *] (*(*(]'_  nW09'0|!#$O*B(*9!!  ]  a *] (*()(]   *9
@ &C8*) DY'+~fm 9#FgV+Bv

^
\

]
_
!



  ,i
_!Q a
fm 9*B(B i  )] (*(*(%]  /
<Tw *.A FLFYu k &(! ##V+!# FLFYu z*6+6+BC&(:|+z!#6$&(*B$O*!# Ii  /
u$O) W9#&C' \
&C) !#9#&(!)+K&( ) *!

\]'!_  !_  (
\
, i\ t
 _!Q a

< +-,Z;/ .' |AO8 'u!#+ W 'A \


&C!e 9#+ @  )+*B0'O$K !_  /|$ FL6+V0'
\
]'_!%.i \]'_!% t  _ ]'_!% t  a _ a ]'_! t (*(*( t   _ ]_!(
 V05WMM*9M*!!#V+FG&C)+@'A5 '0 _ *] ()(*(]_  *9#z*9#'0 @  )ABnZ!{*B(B +M&C)+)+9
6+9 :+V+$%'!{ _ ]'!_ % *9|N9+n %$60 Mfm*9y !_  ]'!_ % nQW+&C$K"&(!  V+*B^ !_  a /
7 V0!
\
]'!_ %i \]'!_  t  Q!_  a (
 V0y!#&()+$   , i       nWzg'V+!y+ 8* \
]'!_ % )+:}! \
&C!d*9#'0 @  )AB5
_! /
< $O*) )0ZW V0! FGFG*''V+9#) *)QDTB(&()0O*9#BCD&C)+:+6)+:+)Q!#Y*f
8 $%' 9#!d&C)Q'L*) 9#+ @ *)A*B;!#O/
<,ZA 5 / ,  
^ Aq Q0Zm^ ,Z  *  \ ]'\ a *] (*()(]'\  ^u
B(&()0O*9#BCD&()0:+6^)+:0)Qu!%u*fe8 $'*9!/gJV+6+6^ !#gWM$ )+!# 9V+$%~'+8 $%' 9#!
_ *] (*(*(]'_  QD"+~fm 9FgV0Bv*

_ ,i \

 3









_ a , i \ a t \_a ]'_ a _

\
\
'
]
_

_ b , i\ b t _b a _ t _b ]_ aa _ a


a
(*(*(

_  , i\  t \ _ ]_ a _ t (*(*( t \ _ ]'_   a _   (



7+) '+8*$ 9! _ ]*()(*(]'_  *9 9?'+*@  )A*Bqn;)+ ) EN9+n )+ : +8 $'*9
!6A*$c!6+*) o _ ])(*(*(]_  s &(! '+c!*FLM8 $'*9!6A$*!!6A*) o \ ]*(*(*(]'\  s o &/ */
'+Y8*$%' 9#! _ ]*(*(*(]'_  AO8 "+"!'FGG!6A*)X! \ )] (*(*(%]'\  s / 9Y@ )
9'B(BCD*n^WzAO8 g A _ ]*(*(*(]'_  A!{'+ !'*FLg!6+* ) *! \ ]*(*(*(]'\  fm 9~B(B
  /

< +-,Z;/.' I6+9#Z8*L+&(!~QD&C)+:+V+$%'&C )  ) /E) '+A!L$O*!# i Wz


##V+!#{AO8  _ , i\ n;*)+:}!#"$BCO*9#BCD \ )+: _ A!{'+ !'*FL !#6A*);/y dB(!#
\ &(!L*)>*9#' 0 )+ 9#FY*BM$ BCB($%'&C )X*f{8* $ 9! o QD:+f V+BCnM!&C)+$'09 &(!
)+ ^:0DYBC!~'I^*9#'0 )+ 9#FY*B^' s /
w  W!#V+6+6^ !u&()0:+V+$&C8*BCDG'A & n*)+:A7Wz+ 8* B(9*:0DG6+9 8*)
'+G$Bv&(F fm*%9 t */ E)6A*9?'&($V+Bv9n WMY*B(9#O*:0D )+ W A'+L8 $%' 9#!
_ ]*(*(*(]'_   *97 9?'+*@  )A*Bqn)0 ) EN9#+n*)+:gA \ ]*(*()(]'\  A*!'+7!*FG
t */  D  FLFY  nAWz'V+!d!
!6A *)*! _ *] (*(*(]'_  fm 9|*)QD 
'Ae+78  $'*9 _  &C!e 9#+ @ *)A*B0 _ *] (*(*(]'_   / w  W>WzAO8 '!+ W
'A _  &(!5)+ ) N9y)+: '+ _ *] (*(*(]'_  A*!5'+z !'*FLz!#6A*)! \ *] (*(*(]'\  /
%>:+)0*'+!6A*)u*f \ ]*(*(*( ]'\  n*)0: :+)0*'+e!6A)f _ ])(*(*(]_  /
 AO8 !#+ W 'A" i / w *''A $ )QK*&C)+!L+ !#6A*)T*f
_ *] (*(*(]'_   n;*)0:+)+$$ )Q'*&()+!|'+ !6A*)f \ )] (*(*(]\   /yE)6A*9?'&C$V
Bv*9&1e$*)'*&()0 ! \ *] ()(*(]'\   n*)+:L*B(!#u$ )QK&()+! _  /  V0efm9# Fx +7fm 9F V+Bv

]'_


\
\  i_  1 _ a _ 1 ()(*( 1 _ b ]'_   a _  


WM'V+!5!.A $ )QK*&C)+! \  /7V+! $ )QK*&C)+!;'+.!6+*)f \ *] (*(*(]'\  n


&/ */ $ )QK&()+!L/  V0 [&C! ^ :+&(FL)+!#&( )+*B o !&()0$&Cu&C!y'+I!# 6A*) *f
B(&()0O*9#BCD&()0:+6^)+:0)Qu8 $%' 9#! s n)+: &C!~~FL !? :+&CFG)+!&C )A*B o !#&()+$
&(!*B(!#'0Y!6+*)*f 8 $'*9! s ne*)+:! *)+: FgV0!# *$VA*B(B1D 
) VA*Bq/ S V+9#+9#FG*9'+&C!!#+ W!'A _ *] ()(*(]'_  *9#MBC&()+*9B1D~&()+:06^)+:+)Q

p




o *+9?W&(! WM V0B(: AO8*:+&(FL)+!#&( )B(!!YA*) s /E)j6A*9#&($V+Bv*9 _ 


&(!Y)0 ) EN9#+/7+&C!"$ FL6+BC'!Y%8 9?D'+&C)+@ WM})0:j:+' A)+&(!#>'0
&()+:+V0$'&C );/
<{Am % \ , i o  ]  ]  s n \ a , i o  ]  ]Kk s ne*)0: \ b , i o  ]Kk0]Kk s /70
8 $%' 9#! \ ]'\ a ]'\ b *97&C)+:+6^)0:+)Q o &()gf $On +D fm 9F u+*!&C!fm*9` b s +V
*9)+ 9#+ @ *)A*B/ 5FY*"'+FU 9?'+ @* )A*BqnWM *606+BCD'+ H 9'*F
J$K+FL&(:0 9?'+*@  )A*BC&(N'&C )Y6+9#$!#!n!%'&C)+@
_ , i\ i o  ]  ]  s
\ a ]'_ o   t 3 o    o   t 3
t
,
_ a i\ a _ a _ i ] ]KkQs p ] ] si p ] p ] p s
, t \ b ]'_ t \ b ]_ a
_ b i\ b _ a _
_a
a


a
3

p  


i o  ]Kk0]'kQs t p o  ]  ]  s t -
 o p ] p ] t p sei o 
3 ] t 
3 ]KkQs (
7 V0!uWzIAO8 L$9#O:*) 9#+ @ *)A*B!# o  ]  ]  s] o b ] b ] t ab s%] o a ] t a ]'kQs n
W+&($KGA*!'+|!'*FL|!6A*)Y*! \ ]'\ a ]'\ b n &/ */&C.&(!.*BC! A *!#&(!efm 9` b / w *'
'AIWz$*)X'+)>V+!# FLFG  ' )+*9FG*B(&CNY+&(!IA*!#&(!L*)+:FG** &C
 9#+ )+ 9#FYBn  0K&()+&C)+@g'+u 9?'+*)+ 9FG*BA*!&C!
 o    o  t 3  o t 
p ] ] s%] - ] ] s] 3 ] ]'kQs(


< G!A*BCB$O*BCB'+P L* $ #   K  *~mA ^* * ^'   


'+76+9#$:+V09*f A9!?.*6+6+B1D&C)+@y'07 9:+&C)A*9?D H 9'*F ?J$K0FG&C:0*9#'0 @  )AB1
&(NO'&(*)6+9#$!!n5*)+:}'0) )+ 9#FY*BC&(N&()+@L*BCB5+g8 $'*9!u )+g*0K*&C)+!~*!y
9!#V+BCfA|6+9 $!!|&() 9#:+97fm 9c+F 'LAO8 V+)+&CBC)+@';/
<>= )076A*9#&($V+Bv*9$ )0!) V+)+$|*f H 9'*F ?J$K0FG&C:0&C!'AWM|*B1WcOD !eAO8 |
B(O!#*)+c 9?'+ )0 9FG*B A*!&C!B1D&C)+@~*9# V+)+:PnQBCO*!?fm 9 A)+&C% :+&(FL)+!#&( )+*B
&()+)+976+9 :+V+$%|!6A*$!/
< / ,Z^qm , "& 8*9#D A)+&1'% :+&(FL)0!&(*)A*B+&C)+)+9z6+9 :+V+$%7!6+*$uA*!7)
 9#+ )+ 9#FYBPA*!#&(!/




r



< +-,Z;/.'   ! ! Du>&(! E:+&CFG)+!&C )A*Bq/;7+) >A*! !# FGA*!&C! o \ ]*(*()(]'\  s /
 D"'0 H 9'FI 2J$K+FL&(:0M 9#+ @  )+*B(&CNO&( )L6+9 $!!nWz$O*)'V+!| $9#O
)+W$ B(BC$&( ) o _ ]*(*(*(]'_  s f)+ ) N9 *9#'0 @  )AB8*$%' 9#!/  D FLFY
0nPWz$O*)}+) $9# O"$*B(B($&( ) o ]*(*(*(]  s *f*9#'0 )+ 9#FY*B 8 $ 9!/
 D M 9# B(B(*9#D"
n+&1&(!*) 9?'+ )0 9FG*BP +*!&C!|feG/
RIRIRGRIR
= 9#+ @ *)A*B;$ FG60B(FL)Q!
< )+ W WA.&1FG*)+!efm 9EWz8 $ 9!' 9?'+*@  )A*B'O*$KG*'+9n
\  _l &C ##V+!?dFLO)+!|A \]'_y.ik /.)0ZW!#K'uWAd&CFLO*)+!7fm 9
EWM   0  z'I^u 9#+ @  )+*BG*$K'+9/
<TQZm^. cWz!#V++!#6A*$!c ] a *f*)&C)+)+96+9 :+V+$%!6A*$|*9M!'*&C:
'IYA ^*&Cf WMuAO8* \ \ a fm 97*BCB \  *)+: \ a  a nA*)+:Wz
:+)+'~'+&C!7QD  a /

<{Am^ 70G!#V++!6+*$! , 
i  o ] ^]Kk0]Kk0]'kQs , ]  ` "*)0: , i
o k0]Kk]0]'_]KkQs , ]'_  `~fP` *9 9?'+*@  )A*Bqn ^$OV+! om ]^]Kk0]Kk]KkQa s 
o k0]Kk] 0]'_]KkQs fm 9cB(B ] ^]0]'
_  `}/e7+y!#6A*$~ &C!M!#&(FL&(Bv9BCD  9#+ @ *)A*B
''0}'+9#% :+&(FL)0!&(*)A*B{!#6A*$ b , i  o k]Kk0] 0 ]_ ] s , 0]'_] 

` /
d WM%8 9nI &(!)+*}*9#'0 @  )ABu>'0 )+ E:+&CFG)+!&C )A*Bu!6+*$ , i
` n!#&()+$'+ &C)+)+96+9#:+V0$ *f o ] ]'k0]Kk0]Kk s *)0:

 o ] ] ] ] s , 
o ] ] ] ] s $O*) ^)0 ) EN9# o */ @+/eK*
i Ii i  s /
<{Am^ 70gN9"8 $ 9{!#6A*$ k I&(!| 9#+ @ *)A*B')D *+9d!V+
!6A*$u*f o WQD0 s
<>= 9?'+*@  )A*BP!6A*$!|AO8 u'I^:0&(! ##*&()QO,
<%.  & ; fe  a n++)  a 
i k /
< MB(O9BCD k B(&(!"&()  a !&C)+$ %8 9?Dj8 $'*9!#6A*$ $*)'*&()0! k / w  W
!V+6+6^ !# fm*9"$ )Q9'*:+ &C$&( ) A  a $ )QK*&C)+: BCO*!? )+*+9
8 $%' 9 \ n^W+&($KFgV+!#y*fe$*V+9!# )+ ) N9#+/{70) \  *)0: \  a l
!&()0$G  a n5+&(!u&CFG6+BC&(!d'+ \  \ n&q/ /'AY \]'\~i k /  V+&(!
&(FL6+B(&C!7 'A \ a ixk n;+)+$ \ixk nP$ )Q'9':+&($%'&(*);/y7V+!  a :0!
)+*$*)'*&() *)QD8*$ 9*'097'A)N90/

< { !Wzc$*)g!Mfm9*F+c 8 M%0*FL6+B(n d!#V++!#6A*$| $*)g^c 9#+ @ *)A*B


'"FG*)QD'+9y!V+0!6A*$! a / d WM%8 9n'+9g&C!y"FG &(FG*B  9#+ @ *)A*B
!V++!#6A*$" W+&($K$ )QK&()+!*BCBP'0'+9!,
<TQZm^ 7 +mA ^* K  ^  %A*f!V++!#6A*$ f*)&C)+)+9
6+9 :+V+$%d!#6A*$gInA:+)+':} nA&C!7:+ A)0:G^~'+u!#6A*$ *f*B(B8 $%' 9#!
696^)+:+&C$V+B(*9c'G ,

,
i Z\  , \ _ fm 9*B(B _   (

, o



u


,
`



7
/
7

+



) &C!|+ !#6A*$
<{Am^{
i  ] ^]Kk0]Kk0]'kQs ] 
o
o
*f*BCB58*$ 9! 0 ]  ]  ]KA] Zs  ` !V+$K'+ 0 ] Z]  ]KA] Zs &(!| 6^96^)0:+&($V+Bv*9
'G nA&/ */

o 0 ]  ]  ]KA] Zs] om ] ^]Kk0]'k0]KkQs#ik fm 9B(B ]  ` (


E)*+9cWz 9#:+!n
0 1 Iik fm 9*BCB ]  ` (
7+&(!$*)I )+B1D A6+6)W+) 0 
i cik n*B1'+*V+@   ]KA]  $O*)^*9#+&C9'*9?D /
7 V0!|Wz+ 8*
i  o k]Kk0]  ]KA] Zs ,  ]KA]   `  ]
&/ */. &(!c+u!6A$ b fm9 F '+u6+9#8 &(*V+!%0*FL6+B(/
<{A m^ f k I&C!d'0gN9Y8*$ 9~!6+*$nP'+) k  i o WQD+ s /
B(&C#'BCu9&C$K &C9|&(!|'Au i k / o 9$&(!#  d&C),7&Cf \ &(!|6^96^)0:+&($V+Bv*9
'8*9?D8 $'*9L&C)Lne'0)&()6A9#'&C$V+B(*9 &1FgV+!?^696^)+:+&C$V+B(*9 
&C'!#B1f s /
<TS 9# F FLFG}LWzY$*)$K0$K 'A &(!!V+0!6A*$Y*f7 o %9$&C!  s n
*)+:&(!+)+$*)&()+)0976+9#:+V0$|!6A$*/
<%.  & 5 f  a n'0) a &(!M !V+0!6A*$~*f / M )Q8 9#!BCD nA&1f a
&(!!V+0!6A*$ *f n+'+)}  a /

< +-,Z;/.' S &(9#!#"!#V+6+ 6^ !}A  a /7+)%8 9?D 8 $ 9 \ &()j a &(!
 9#+ @  )+*BA'*BCB*f n+*)+:Y+)+ $~B(&C!.&() QDY:+ A)+&1'&(*)Y*f /7V+!
a &C!}!V+0!6A*$*f{ / M )Q8 9!BCD*nM&Cfd a &(!g}!V++!#6A*$ fy n'+)
8 9#D8*$ 9 \ &C) a &(!7 &C) *)+: &(!M V0!d 9?'+*@  )A*B^'I8*9?D8 $%' 9|&()
/7V+!{ *)+: a 9u 9#+ @ *)A*B/

O-

< J  FL'&CFG!7&C&C!|)0*|!Y*!#DG$ FL6+V0'u'0*9#'0 @  )AB$ FL6+B(FG)Q*f


8*$%' 9|!6A$*n+V7'+~fm BCB( W&()+@ 9!#V+BC|@ &18 !|*)+~WcOD"G:+I!#+/
<  / ,Z & ;M % c  E:0&(FL)+!#&( )AB !#V++!#6A*$7f^*) ^ :+&(FL)0!&(*)A*B
&()+)+9}6+9#:+V0$!#6A*$L/ % o \ *] (*()(]'\ Os X>+*!&C!}*f n *)0: B(
o \ ]'\ a *] (*(*(%]'\ *]'\  *] ()(*(]\  s ^g*) % ')+!&C )}*feAdA*!&C!dY^gYA!&(!
*f I/  o _ *] ()(*( ]'_  s +G)0 9FG*B(&CN: H 9'FI 2J$K+FL&(:0~*9#'0 @  )AB1
&(NO'&(*)*f o \ *] (*(*(]'\  s /7+) o _ *] (*(*(]'_ Os &C!*)X 9?'+ )0 9FG*BM+*!&C!*f
n+*)+: o _  *] (*(*(]'_  s &C!*) 9#+  )+*9FG*B;A*!#&(!7*f /
< +-,Z;/ .'S 9# F + H 9'FI 2J$K+FL&(:0~*9#'0 @  )AB(&(N'&C )}6+9#$!#!nWzY)+ W
'A o _ )] (*(*(]_ Os !#6A*)+!g+"!*FGY!6A*$*! o \ )] (*(*(]\ s ~&q/ /&C !6A*)0!
/~J&()+$  &(!  E:+&CFG)+!&C )A*BqnA'+&C!{FLO*)+!d'A  o _ *] ()(*(]'_ s &C!y"A!&(!
fm 9 n W+&($KI&C! 9#+ )+*9FG*B0QD +7)+ 9#FYB(&(N: H 9' FI 2J$K+FL&(:06+9 $!!/
J&(FL&(B(*9B1D o _ *] (*(*(]'_ s !6A)+!c'+" ^ E:0&(FL)+!#&( )AB!#6A*$In0W+&C$K&(FL6+B(&C!
'A&1&(!A *!#&(!7fm 9| I/
< 7 V0!+7'+78*$ 9! _  *] (*(*(]'_  *9#7 9#+ )+*9FG*B+*)0:IV+! o QD M 9# B1
Bv*9?D rs B(&()0O*9#BCD &()+:06^)+:+ )QO/u9FY&()+!{!+ Wx'A~+D}!6A*) /
S &(9#!# WMz!+ W A5'+%DBC&(&() / % !_  ^z*)+zf+'+!.8 $%' 9#!/e7+)
!_  &(!~*9#'0 @  )AB' _ )] (*(*(]_  n5*)+: &C!y'V+! o QD FLFG} s  9#+ @ *)A*B
'+&C9M!#6A*);n W+&($K"&C! /7V+! !_  B(&C!&() /eE)"6A*9?'&C$V+B(*9nQ'0{!6+*)
*f _  *] (*()(]'_  F V+!#|B(&Cy&()0!&(:0 /
<Tw  WWz !#+ W 'A|%8 9?D8 $%' 9y B(&(!7&()'+!6+*)*f _ ]*(*()(]'_  / 
\ ^)DY8 $%' 9|&() /  D"7+ 9#F -gWzAO8*

\gi \]'_ ?_ 1 (*(*( 1 \]'_  #_  (


n \ &C!g 9# + @ *)A*Bz _ *] (*()(]'_  n.*)+:X!'0 A9!? 
 V0I!&C)+$ 
\ 
'9#FG!7*) +u9&(@*? EA)+:!&C:+~8*)+&(!#;/e7V+!| WzAO8 
\Ii \]'_  #_  1 ()(*( 1 \^]_  ?_ 
*)+:&()6A*9?'&C$V+B(*9 \ &C!7&()'0!# 6A*) * f _  *] (*()(]'_  !|:0!&C9:;/
< / ,Z^qm ,  &    ^Y 
,Z .
,/ ,  
^ A ^m^ 
f &(!7g!#V++!#6A*$*f A)+&1' E:+&CFG)+!&C )A*B^&()+)09c6+9#:0V+$!#6A*$In0'+)
:+&(F o s 1 :+&(F o si :+&CF o s /





<{Am^ JV+606 !#{WzdWM*)QM' A)+:L'+d 9#+ @  )+*BA$ FL6+BCFL)QMfP'0


B(&()0 , 
i  om ]0s  `Gad, p 1 r Iik ~&()I`"aO/e70&(!%0*FL6+B(&C!.!# !#&(FL6+B(
'A*)+~$ V0B(::+'+&C!7:+&(9#$%'BCD*n0+Vd&C)+!#O*:Wzu!A*BCB;$K+  !u:++&(!M8 &(
7+ 9#F 
yfm*9e!'*|fP&CB(B(V0!#'9'&C );/ A9!?z)0:I' A)0:Y~A*!#&(!fm 9 l
!&()0$ &(! )+ E:+&CFG)+!&C )A*BqnWz ##V0!#|' A)+:*)+)0 ) EN9#G8 $ 9d&C) n
*/ @+/ \ , i o?t r+] p s n*)+:+&(!W&CB(B0^7 V+9A!&(!/7+)GWz% ')+:G+&(!eA!&(!
'+ *!&C!e*fP+7EWM :+&(FL)0!&(*)A*B0!#6A*$d` a QDL*:+:+&C)+@u )+FL 97BC&()+*9B1D
&()+:+6)+:+)d8 $'*9nfm 9&()+!?K*)+$Wz$ V+BC: '** \ a , i o  ]KkQs /M7+&C!dA!&(!
&(!)+*z 9#+ @ *)A*B 9 9#+ )+*9FG*BnQ+VzWz{$*)*6+60BCD'0 H 9'*F ?J $K+FG&C:0
6+9 $!!'IFY*u&C7*9#'0 @  )AB,
t

  3
_ , i \ i o?t r+] p sl _ a , i \ a t \_a ]'_ a _ i o  ]Kk s t 3
r o2t r0] p sei o 3
] 3*
s(

u$O) +) )+ 9#FY*BC&(N*,


p
p
_
, i_
_ ci o2t r
]
s%l _ a
, i _ a
_ a 7i o
] r
s (

7 V0! _
&(!M*)" 9?'+ )0 9FG*BA*!#&(!zfm*9 n _ a
&(!c)" 9#+ )+*9FG*BA*!&C!zfm 9
nA*)+ : o _ ]'_ a s &(!M*) 9#+ )+*9FG*BA*!&C!Mfm 9z` a / o w *'d'AzWM~$ V+BC:
!&(6g+c)+ 9#FY B(&(N'&C )u!#6I+c)+:&Cf )0c )+B1DWM*)Q':L*) 9#+ @ *)A*B
A*!&C!cfm 9c'0!!6+*$!n^*! 6+6^ !: Y) *9#'0 )+ 9#FY*BA*!#&(! s /
<{Am^M   !|@ &C8*  a o ` s '+u&()0)+976+9#:0V+$
]0ei om s om sc (

7+G!#6A*$  a o ` s $ )Q'*&()+!  o ` s *! !#V++!#6A*$/JV+6+6^ !LWMIW&(!#
$ FL6+V0 '+  9#+ @  )+*B$ FL 6+B(FG){*f  o ` s /yg^@*&()}QD'*&()+@"
A*!&C!df  o ` s zB(  !|V+!#'0!?K*)+:+*9:A*! &C! o  ] s n)+:+)% ')+:&C
'GI+*!&C!| f  a o ` s .*/ @+/ o  ] ] a s /~+)*6+6+B1D"'+ H 9'*F ?J $K+FG&C:0
 9#+ @  )+*B(&CNO&( )G6+9 $:+V+9,
_ ,i 

'
]
_
k i
"

t
Y

t

_ a ,i
i
3
_ a




_ b , i a t _ a ]'_ a  t _a ]'_ aa


a

p
3
k
i a t 3  t 3
*p i a t 
*p (
u$O) +) )+ 9#FY*BC&(N*,

_
, i_
_ ci 3

p
_ a
, i_ a
_ a 7i 3


_ b
, i _ b
_ b i r  o a t p s(
7 V0!
A*! _ b
!c*)"*9#'0 )+ 9#FY*BA!&(!/ = 9M )+{$O*) ##V0!#7V+!# _ b *!M
A*!&C!n+!#LA

` (
i 0 o a t p s , 0 

< /,Z^qm ,  & f &(!  E:+&CFG)+!&C )A*B!#V++!#6A*$G*f*) ^ :+&(FL)0!&(*)A*B


&()+)+9Y6+9#:0V+$!#6A*$ Gn7'+)j8*9#DT8 $'*9 \  $*) ^W9&1)j&()
%0*$BCD*)+~WcOD*! _ 1 nW+9# _  *)+:  /
< +-,Z;/ .'  Dy7+ 9#F 
nOWM$*) A)+:7 9#+ )+ 9#FYBA!&(! o _ ]'_ a )] (*(*(]_  s
*f0>!V+$Ku'A o _ ]*()(*(]'_ s &(!;*)u 9#+ )+ 9#FYBA!&(!f *)+: o _  ]*(*()(]'_  s
&(!z*)Y 9?'+*)+ 9FG* BAA!&(!.*f /ef \ &(!z8*$ 9M&C)In +)YWz{$*)Y W9#&C'
\gi 0 _ 1 (*(*( 1 0  _ 
fm 97! FL~!$*Bv9! 0 *] (*(*(] 0  /ef WMu W9&1'

_ , i 0 _ 1 ()(*( 1 0 _ l , i 0  _  1 (*(*( 1 0  _ 


'+) Wz+ 8* _  ]  n*)+: \Ii_ 1 / w  WWz!#+ W'A|+&(!
&(!z+{*)+BCDIWM DL' :+$ FG6^ !# \ &()G+&(!zFY)+)+9/f \Ii_
1 
fm 9M!# FG
_
 n 
 n0+)
_ 1 i_
1





O

*)+:!

_ t _
i
t (
/  D FLFYI p nQ+&(!8 $'*9
 V0 _ t _
B(&(!&() n * )0: 
t B(&C!&()
FgV+!#{ k ^n !YA _ i_
*)+: }i
/{7V+!d'+9g&C!d)+Y*'+9dWMOD
W9&C \Ii _ 1 /
< $*B(B{+}8 $ 9 _  0K&()+: &C) '+  8  FG*)+)+9"'+ A ^*
^K  % ~*f \  )Q' l '0&(!9#FG&C)+ B(*@*Du$O*)^cFG*:+c$B(*9QDy60&($V+9
o B(*!#u&C)` b  9~` a s n5!&C)+$ _ ] n *)0: \ fm*9F 9&C@ Q# E*)+@ BC:'9#&v*)+@*B(
W+ !A*!# _ B(&(!c&() /e7+&C!|609$ ##$'&C )$O*) ^$ FL6+V0':!
_ i 0 _ 1 (*()( 1 0 _ |i \]'_ ?_ 1 (*(*( 1 \]'_ #_ 
W+9# _ )] (*(*(]_  &(!*)QD 9?'+*)+ 9FG*BA* !&C!7 *f /
<{Am I % , 
i  o ] 0s  `Ya|, p 1 r ik u^y*!z%fm 9/.JV+6+6^ !#
WMW&(!# +)+:+ 9#+ @ *)A*Bc6+9#$ ##$%'&C )X*fd+8 $'*9 o  ]  s  /
J&()+$"WM+ 8* *)X 9#+ )+ 9#FYBzA!&(! @ &C8*)XQD _
, i o2t ] b s neWM$*)
$ FL6+V0y'+u 9?'+ @* )A*B;609$ ##$'&C )*!

p
p

_ i o  ]  s%]_
#_
i t
o?t r
]
sei o 3 r
] t 3
s (

7

+

u



#
9


+




@


+
)
*

;
B
+
6
#
9

$
#
#


%
$
'

(
&
*

)
+*!7'+ #)+*9!#d)+&C@ *V+9 I6+9# 69#ED^,
<
<  / ,Z & ;c  ~!#V++!6+*$|*f A)+&1'% :+&(FL)0!&(*)A*B &()+)+96+9#:
V+$~!#6A*$IGnPBC \ ^gL8 $%' 9~&C) LnP*)+:BC _ ^ '+  9#+ @  )+*B 6+9
##$&( )*f \  )Q' /y7+) _ &(!d$BC !9d' \ A*)*)QD*'09yB(FL)Q{*f
l FG*9|6+9$&(!#B1D nWz~AO8  \ t _
q & \ t _G fm*9c*BCB^8*$ 9! _
&C)
*'+97'A*) _ /
< +-,Z;/ .' 9&C \i _ 1 nW+9 _  &(! '+z 9#+ @  )+*B6+9$ ##$&( )*f \
 )Q' n)+:  /57+)uWz.+ 8* \ t _Gi e / = )~'0.'+9A*)+:;n
'$ FL6+V0 \ t _
nQWz|W9#&C \ t _
0i o \ t _~s 1 o _ t _
si 1 o _ t _
s /
J&()+$ _ ]'_
B(&(e&C) n _ t _
:+ !*BC!+/  V0 BC&(!5&C) n V0! _ t _
/
 D #D'A*@* 9'*!  !7+ 9#F Wz~'V+!|AO8 
\ t _
a i e a 1 _ t _
a & e a
o !&C)+$ _ i
 _
s *)0: !# \ t _
q & ci\ t _G *!:+!&(9#:;/
3k




< 7+&(!77+ 9F[FY*!7+u 9#+ @  )+*BP6+9#$##$%'&C )V+!%fmV+Bfm 9*6+6+9#O0&CFY#


&()+@ @ &18 )G8 $%' 9 \ &()QDY *)+*+9.8 $%' 9z&()Y @ &C8*)G!V++!#6A*$ *f
L/
<{Am M*)+!&C:+9y+g8 $'*9 a &C)  a o ` s /JV06+6*!WMgWM*)Q~' +)+:
'+uB(&C)+O9c6*BCD )+ FL&v*B 0 1    o ` s W+&($K &(!7$B( !#!#|' a o V+!#&()+@'0
&()+)+9y6+9#:+V0$~ ) t  ] fm9# F '+ 6+9#8 &(*V+!~%0*FL6+B(':+ A)+B()+@* s /
 D~7+ 9F   n '+&C! B(&()0O*9;6^ B1D)0 FG&(*BZW&(B(Be+ 9#+ @  )+*B 6+9#$ ##$%'&(*)
*f a '  o ` s / !d!#&()+@I'0*9#'0 )+ 9#FY*BPA*!&C! _
i a n _ a
i ba fm9# F
'+u6+9#&( 9c 0*FG60B(*nWMu'V+!|!uA'0&(!7B(&C)+O9c6 *BCD )+  FL&v*B^&(!
a ]'_
#_
1 a ]'_ a
#_ a
i 3
*3 p  3 1 k p3 i p 1 k (

7 V0!c'+{fmV0)+$&( )
p 1 k &C!z+y$BC !!#BC&()+*9z6^ B1D)0 FG&(*B+' a V0!&()0@
'+&()0)+9I6+9#:+V0$L ) t  ] q/ o f{ )+V+!!" :+& 9#)QL&()+)096+9#:+V0$On
 )+|$O*)G@ M:+& P9) #$B( !#!#M*6+609O&(FG'&C )  l +d)0*'&C )Gf;$BC !)+!#!
:+6^)+:0!|8*9#DF V+$K*)+ W )+uFG*!V09!BC)+@* s /


3

 

 "!#! %$&'()*!,+-$.0/2134
#15
6! 7-)*'$8'!9 : ;<.
=?> )5+-@:BADC-+-' )*! +-,E*$
= F; G&! )5+H$8!,AE*)5+-@,:I! 7": ! : $
=KJ E3ALM,; G&!,)*+HB! 7N: !,: $
=?O ! :&PQ,E"! 7N: ! :&$
=KJ C2R"! C8-TSU+UE

VWVWVXVWV

> *) +2@,:BADC-+2')5! +U,E5$


=?> (ZY[N\)5 -:]-^: ,E6! :]'! P_7-E*`+aC-PbN: $cd+-;E5Ze_cdf "^9 '!,:
$ 7U,'$6!9 :g -hSUE5;i!,A2$&'@,E*,: $jYW1ja+-!kk]U 6]E5)*+-,:d :,+-$4AD! : PX )*! +
lmAD: ! Pneo !pf )*$q)3I)5$B\ :,+-$4AD! : PX )*! +p-I,,$],$I)5+-7-C2I\9 ' ! :Br
)*+set,+2;s: (C-:&+-$u9 ' ! :6lurT)5+sfvc k]-)*'w\7-: $ :49 $x,;-;-)3)5! +TlbyDrNzsrH{}|~
lrFzlurH{",+-;$ ',EL:8PbC-E5 )*7-E5)*')5! +_lsy(r|x~wlurN1
= Z+2! kE*!#! WB$ ! P_F$&7"')LE"#7"$8!,A6E*)5+-@,:: ,+-$4AD! : PX)5! +<cHk]-: Z2
)*+-7-Ci$ 7U,'%e! :T -W! C272C2^$ 7U,'%f )*$T9 :&$&PQ,E5E1spSU: $4^E*!#! 
k]UuU,7-7N+2$]k]2+ -i)*+-72C2]$ 7U'^)*$G&C-$4FYWc2 -TSUE5;!,A$ ',EL: $1
=FgUD 82`E5)*+-,:\ :,+2$&AD! :&PQ )*! +l.x Q_;2SU+-;?HlF.~
y/ H 
,|Z)*$bE*)*+2@,:i: ,+-$&AD!,: PX)5! +AD: ! P2QSUE5;!,A]$&'@,E*,: $\!
9 '(! :]$&7U,'^ 1
=?O !, sU F2W,"!9,b(2,P_7-E*\'@,+Nsk]:&)5  +,$lFb.~scNk]-:&p)*$
-p9 ' ! :%y/2-w
|)*+%1_82_AD! E5E*!k])*+2%E*PXPX%$@#$c6)*+A,'(@cgU sE*E
E*)*+2@,:: ,+-$&AD!,: PX)5! +-$AD:&! P-FS-E*;!A$&'@,E*,: $!W,+-!-:I9 '!,:u$&7U,'
,: T!,A62)*$8AD! : P`.
=?0#KUZ> ulo.2Y f Ns_E*)*+2@,:B :,+-$4AD! : PX )*! +AD: !,PY!fv1
8-+`-: i)*$]b9 ' ! :f $ C2'w-]lFB~(AD! :],E*E<ZY_1


=  J )*+-'I]~t  c kIIU@9 l]~mlby |x~,y l^ |(1 J !F)3A2kI$&h .~ l^ c


-+`k\-9,^l8~t( AD!,:],E*EgZY_1

=?O !k kE5!!,pk]-_U,7-7N+-$Wk]-+ -
   ]$&7U,'`)*$b -SUE5;!,A
$ '@EL,:&$1
!#"%$'&( )!*+ ,- "%N! +%9 '(! :^$ 7-,'Xe)*$iE*)5+-@:F: ,+-$4
=    
AD! : PX)5! +Ql.#eo YAD: !,P e!p2iS-E*;`!,A$ ',EL,:&$]Y_1
 .&! 727"! $&)5 1 0!,AZ9 ' ! : $.
= 8#C2$%E*)5+-@,:bADC2+-' )*! +UE*$X,: `)*+?$ ! P_$&+-$&2/
-(

.4@# 0si9 '(! :I,$0)*+-7-CI+-;Q$&7-)5! C2I\$&'@,E*,:0,$!,C27-C@1]yD8-Q,: 


$ ! P_ )*P_$i'@,E5E*2
; *3 4%3*+ 5 $76i! 9: 8% :"%;4%3*+ 5 $36ZAD! :T-)5$\:&@,$&! +<q$ ! P_ )*P_$
7-H$&)*')*$& $\',E*Eh -P "=<>?"%4%3*+ @ $76(1Q +-!, -:i+U,P_WC-$ ;)*B$ A%CD&= $(EF6(H1 G+
$ .&-: ,,(7 0X+-!,w )*!,+<c-)*+
I C-,+HC-P P_'wU+-)*'$c ! +-i$ !,PX()*P_$8C2$ K$ JZ)*: ,%' L M
k]-)*'w9 '!,: $,: i'@E*E*N
; .&,(O$ 0%,+-;'! 9,'(! :&$Z,:&T'@,E5E*
; .&2:,O$ 0a|(1
=FgUD U 8-E*)5+-@:` :,+-$4AD! : PX )*! + l .b ;-(SU+-;oH
lby Pj7 QN3 RH|_.~ S/ Pz > Qpz%
R)*$sE*)5+-@:^ADC-+2')5! +U,E! + 1 +-!,2:sa
,PX72E*_)*T$ "% ? , U8)(.W-%E5)*+-,:i:+-$&AD! :&PQ )*!,W
+ V. ;-(SU+-;H
VpXy Pj# Q"3 R |].Y
~ R2q -)5$],,$FW9 '!,:)5+` -: (;2)*P_+-$&)*! +UE<$ 7U'b$u)5+-7-C2
,+-;: (C-:&+-$)3$],E3)3C-;-pyD2 RW'! ! :&;-)*+U |1
=FgUD[ Z]\#?^` _     b ai? ?6a c5d e%  6-5 f 8-uE*)5+-@: : ,+-$4
AD! : PX)5! h+ g:. iX#y j 2@1 kqQ|I ;-S-+-;Hl gm. o
~ nqr p mhXy P"t| s>P)*$WE*)*+2@,:
ADC-+-' )*! +-,Ec#AD! :8)*+-$4w,+2'u g"Xy Pv|~ w/21
=FgUDy xN\& z-- d U   b ap? ,ja H5d {e%  6U| f 8-TE*)5+-@,:0: ,+-$4
AD! : PX)5! /
+ } F. iX#y j 2@~ kqQ| ;-SU+2; H
}mn~ mhy |Q)*$` E*)*+2@,:
ADC-+-' )*! +-,Ec#aC`AD!,:8)*+-$4w,+-'c }%Xy P v |x~2cU,+-; }%?y 1 |~o 1
=FgUD/
6 > (e ",+H)*+2+-:_7-: !#;-C-'(Q$&7U,',c],+-;?E*(QN,+H
9 '(! :p)5+e_182+ -QE*)*+2@,:i: ,+-$&AD!,: PX)5! +l .e Y ;-(SU+-;H
lr.
~ r  ^)5$bE5)*+-,:^ADC2+-' )*! +UE! +e yD2)*$s)5$sN',C-$ )5+-+-:s7-:&!;
C-'`)*$E5)*+-,:%)5+  -SU: $49,: )L-E*r|
1 !,:)*+-$4w,+-',cF -E*)5+-@,:XADC-+-'(
)*!,+U,Elby Pj7 QN3 RH|%. ~ S/ P`z> Qpz%
R)*
+ 2,PX72E*)5$p!,A]-)5$s#7"c$&)*+-'
lby Pj7 QN3 RH|^
~ Xy Pj7 QN3 RH| y/2 -
O| q $&)*P_)*EL: E5`2%,E3)5 C-;-pADC-+-'()5! +',+ "
k]: )5&+)*+2)*$8AD! : P`cN,$ VpXy Pj# Q"3 R |
~ y Pj7 Q"7 RH|( yM w2H#| 10 FE5$ !-cU -\)5+H(
: )*! +\ADC-+-' )*! +-,:E g^)*M+ -PX7-E5t Z)*$xE*$ !T!A" -)*$ AD!,: P`c $ )5+-'t gm
~ |m @ 1

y F$i)3ZC-:&+-$i! C2c<-W9,E5CU )*! +ADC2+-' )*! +]} AD: !,P 2,PX72E*W/)*$T+-!i!,A


-)5$BAD! : P`c-uE5@,$4]! +liQyOj 21kq |(qU2C2]$ \NE5! ki1|
= G xC-:&+-$!,C2xU !,+X+ b 5+C 8%E9+U6+- "%)*+-+2:x7-:&!;-C2'0$ 7U'Fe_ca9,:&
E*)*+2@,:IADC2+-' )*! +UE<)*$8!,A62iAD!,: P ,)59 +)5+-i7-:&9#)*! C2$u2,PX72E*,.
= ) a  #  ) a) ^U   Wj  #KB> (]eoN\SU+-)3( ;-)*P_+2$ )*!,+U,E-)5+-+-:
7-: !#;-C-'(T$ 7U',cj+-;E*(Zlv."e Y "s%E*)5+-@,:]ADC-+-'()5! +U,E6! +eX1T8-+
-: i)*$]b9 ' ! :f $ C2'wU 8lrb~ r  0AD! :],E5E<rQe_1
=  W> 1 L $i$ U ^e )*$  ;-)5PX+-$ )5! +U,E1 -
 T:,Pp J 'w-PX)5;2! :4
-! ,! +U,E5 ) @ )*!,+_72: !#'$&$BkIT',+%SU+-;+! :& -! +-! :&PQE"U$ )*$r p r v     r 
!,Aue_1 > \rN%,+H9 '!,:s)*+e_l1 U: ! P  -_7-: (9)5! C-$^kI L $p+2!,$\k
U@9 i-TAD! :&PbC-EL
rW~ r r p &r p 
z   z r r >4r 
F7-7-E3#)*+-bl  !W"!, $ )*;2$cUki! 2w)*+
lurb~ r r p 4lur p 
z   z r r 4lur 
J )*+-'blur p    &lr ,:&_,E*E$ '@EL,:&$cj,+-; r  ^~ r wvAD! :Z,+H$ ',EL,:
cU+-;`kiaC-$]U@9 
lurp~ r lur p r p 
z   lr r >
8#C2$)3A6k^E*]e[NT-T9,' ! :
. ~ lr p r p 
z   lr r 
-+`k\-9,^lurb
~ r  AD! :],E*EdrQeXc-,$];-$&)*: ;<1

= y F'(CUE*E5,c-)5$g)*$j! +-E3Z- ])*$ : 7-: $ +H)5! +\ -! :&P AD! :<S-+-)5 0;2)*P_+
$ )*!,+U,E$ 7U'$18-:&,: XPX!,: Q,+-:,E u)5$ %: 7-: $ +H)5! +2! :&P_$
AD! : $&C-'wp)*+2S-+-)5 (;2)*P_+-$&)*! +UEH$ 7U,'$,$ iQOy j @1 kq|c,-C2 -(b,:&BN !,+-;
-i$ '! 7N^!A -)*$]'!,C-: $&|(1
=FgUD
 !,+-$ )5;-: -E5)*+-,:`ADC2+-' )*! +UE^l .   ;-(SU+-;oH
lby Pj7 QN3 RH|F.~S/ P_
z ,Q^zm%
R2u1 U: !,P- ])*$ \: 72: $&+Hw )*!,+ -!,: Pk
#+2! ko-T-: pPbC2$&TNp$ ! P_s9,' ! :i!
\i$ C2'w UTlur.
~ r 
/

AD! :8,E5E"r% s1 G+ -)*$8',$ Zki'@,+$&Tk]U] )5$BH%)5+-$ 7N'()*!,+<c--C2BE*


C-$]7-: (+2;` U8ks,:&TC-+U,2E*Z!W$&i-)5$cU,+2;`)5+-$& @,;`C-$&i -TAD! : PsC-EL
)*+ -7-:&!!AF!,Au2 ])*$ : 7-: $ +a)5! +? -!,: P`1 O PXE5 cka+-!k
U
. ~ lr p r p 
z   lr r 
k]-+-(9 :_r p    r )5$b,+! :& -! +-! :&PQE0-,$ )5$sAD!
: \@18aC-$cC-$ )5+-2
$&w+-;U,:&;U$ )*$^yM w2H|( y2@ H|( y2w2 |(c k\!,2w,)5+
.~ lsy4,w2wH|yM w2w |<z lsy@ wH|(y@ wH|"z lsyw2@ |(yw2@ |
~ /-yM w2w |<z y2@,wH|<z
-y22@ |h~y/2  w
|
8#C2$Blrb
~ r y/2  
,#| cak]-)*'w!,+-Z'@+%@,$&)*E3X'w2'w%)5$I'!,+-$ )5$&+HBk])5 
! C-:8;-(SU+-)5 )*! +!,A6l^1
= ! : s +-:,E5E5,c"kp$ b Ui+aE*)5+-@:ADC-+-'()5! +U,Ejl[.NY  Y y k]-:&
Y~ ! : b|8'@,+"^k]: )3 +)5+` -^AD!,: Plur.
~ r  c-k]-:&so)*$82
9 '(! :
t~y Kl p Kl v     l  |(
,+-h; p    7 \)5$ -F$4w,+-;-,: ;%-,$ )5$0AD! :Y  1]yD)1 ,1  -S-: $&B'! P_7"!,+-+H!,A
)5$ Kl p c2(';1 !,:)5+-$&,+-'c2)5+X2F7-:&9#)*! C2$B(2,P_7-E*]Kl p ~ lbyM w2H|h~
/2c-$ !W2iS-: $&u'! PX7N! +-+H!A )5$ /\~/21
=FgUDX> (  v yD|NF-T7N! E3+2! PX)*,E*$!,A6;- : i8P_! $&t ck])3%2
)*+-+-:87-: !#;-C-'(
|m  U8.
~  p mhy P"| dXy P"'| s>P
p
+ }%,y m<|.~ mhyH|(c8AD! :
> (l } .  v y%| N29,E*C-)5! +?ADC-+2')5! 2
)*+-$4w,+-'H }%y P v 2
z PXzm/H|~[/21 U: ! P2 u)5$ p:&7-:&$&+Hw )*! + -! :&P
kI_a+-!k[U }Q-y m<|T~ |mN FAD! :i$ ! P_W

 yD|qkQ+-!kvSU+2;k]U 
-)5$_)5$1?SU: $4XSU+2; ,+?! :& -! +-! :&PQEBU,$&)*v $pAD! :  v yD|(1 U: ! P E*,$&
kI L $+-!, $c-k^#+2! kU
r p . ~  qr v . ~ / Pjqr .~ a
y P v / |
)*$u,+!,:&2! +-! :&PQ,Eg-,$ )5$uAD! :  v y|188aC-$Fks'@+'!,PX7-C^C-$&)*+-W2
AD! : PbC2EL
t~ lur p r p z lur v r v z lur r

DA : ! P  -p7-:&!!AI!,A -
u)5$ p:&7-:&$&+Hw )*! +2! :&P`1 J )*+2'blur p ~ p v c
lr v ~2 c ,+2;lur ~   y p |(c2k^ aC-$-9,
t~   z H
y / | a
yP v / |
k]-)*'w`$ )5PX7-E5)5SU$I!
~  
yS/ P v  |~  
P v

= G xPQ@s$ P-h2B9 '(! :x?U)5$h! 2,)*+2;pHs - u)5$ B: 7-: $ +H 
)*!,+%-! : PkI! C2E*;;-7N+2;! +k]-)*'w`! :4-! +2! : PX,Ed-,$ )5$ur p    rp! +2
'w-!!,$ $]AD! :ueW1C2u)5B C-: +-$]! Cu U8 -)*$8)5$8+-!,]-i',$ .
=?0#]
Z<8> (8l.#e NipE*)*+2@,:0ADC-+-' )*! +-,Ed! +`,+)5+-+-:I7-: !#;-C-'(
$ 7U,'BeW182+\ -:&'@,+^"06P_! $&j!,+-x9 '(! :je k])5 T-7-:&! 7":&
U8lurb~ r  AD!,:],E*E"r%e_1
=  IJ C-7-7N! $&uAD! :x'! +H: ,;-)*'()5! +bU 0 -:&8kI: E*,$&xk!s;-)3Rd: +a
9 '(! :&$xs { )5+We$ C-'wp Uhlurp
~ r  6,+-;blurp~ rN { 6AD! :x,E5ErXeX1
8-+`kIiU@9 
r  { ~ r  r  { 0~ lur lurp~t
AD! :_,E*EBrteX
1 G+?7U,:4)*'C-EL:c)5AukI,7-7-E32)*$W)*;-+H)5!-9 '!,:
rQ.~ {Uk^! 2w)*+

{v
~ {  { ~
k]-)*'w)5PX7-E5)*$ U8 u{-~t2c2$&!bU 8 ,+2;%{ : Z+-!B;-)3Rd: +H] A :
,E*E18-)5$I'! +H:;-)*'()*!,+X$&-!k]$IU  -:&Z'! C2E*;Q!,+-E5WU@9,FN+!,+-$&C-'w
9 '(! :]  !XN )5+%k])5 <c ,$];-$&)*:&;<1

= F+-!, -:kB@`!Q9#)*(k > PXPX[ _)*$ -sAD! E5E*!k])*+2-.I)3A r  8~ r  { uAD! :
,E*Exr eXc6-+ +-;{PbC-$4sNQ I CU,E1Xy G A8 ! CE5)*,cj-)5$s)*$^$ !,:&\!,A
E*)*p")*+-,-E5b! .&'@+-'E 0`rAD: ! P "!, $&)*;-$i!,A8,+)*;2+H)3)*+H9 !,E59#)*+-
,+)*+-+2:I72: !#;-C-'c-7-:&! 9#)5;-;% UI,! Ca+-!k -Z)*;2+H)3Q-!,E*;-$0AD! u: "%Hr|(1

VWVWVXVWV

; G&! )*+H $
= 8- u)5$ b: 7-: $ +H)5! +-! : P,E*E5!k]$FC-$Z !%C-:&+E*)*+2@,:uADC-+-' )*! +-,E*$
l .Fe )5+a !9,' ! : $ eXc8)3A^e)*$QSU+-)3;-)5PX+-$ )5! +U,E8)5+-+-:
7-: !#;-C-'(F$&7U,'1F8-)5$E5@,;2$FC-$u!%_C-$ (ADC-E6+-!,)5! +<cU-Z!,A -9 "8 b j!,A
WE5)*+-,:B! 7N: !,:1
=?> (pl .e f "E*)5+-@:s: ,+-$&AD!,: PX)5! +AD: !,P ! +-)5+-+-:s7-: !#;-C-'(
$ 7U,'Z!p+-!,2:1x82+AD! :B(9 :4Q9,' ! :8 fvckZ'@+`;2SU+-i\E*)*+2@,:
ADC-+-' )*! +-,Edl .#e H%-TAD! :&PbC-E*
l "rQ.~ lur  

=FgUDN G A l.H v )*$B -iE*)*+2@,:I :,+2$&AD! :&PQ )*! +
lsXy Pj7 QN3 RH|I.~vXy Pbz QTz?%/ R2% PpzKS
QZ
z >RH|
,+-;kI,$i-W9 ' ! :%yM2@|\ v cg -+l m.g kI! C2E*;"p2
E*)*+2@,:IADC2+-' )*! +UE
l hXy Pj# Q"3 R |x

~ y PWz QTz?%/ R2% PbzKS
QZ
z >R |( yM2@ O| ~o@% Ppz
QZz/ >R
= +2^',+`@,$&)*E5X'w-'w U]l )*$8)5+-;-;pE5)*+-,:IADC-+-'()5! +U,E<!,+eW.
l hyrzZr { |

~ DlbyDrzTr { |( 
~ lurzFlr {  ~ lurN Hz lur {  x~tl "r2zFl Nr {
l xy(r|x

~ Dlby(r| x~ lur  ~% Dlr  x~wl "r
= 2 ])*$ :&7-:&$ +Hw )*! +-! : Pc2: PbC2$&_"`9 ' ! :c'@,E5E*;
l &meWc6$&C-'w UTl dr~ r l 4 FAD! :i,E5Ehr e_cj! :i)*+!, -:Tk! : ;2$

U
Dlr  x~ r l
AD! :FE*E6vf ,+-;r eXq"-)5$)5$F7-:&! U,-E3-bP_! $4FU$ )*'\7-: !,7":&!,A
l 1 O !,p-^a > PXPXl c6 -:&W'@,+! +-E5"_! +-W7N! $ $&)*-E5p9,E*C-bAD! :

l AD! :8@,'w`s1


=FgUD ! +H )*+aC-)*+2W -i7-: (9#)*! C-$u(2,P_7-E5,c2ki$ i-


l hXy Pj7 QN3 RH|x~ Xy Pj7 QN3 RH| y4@2(
w/ H#|

,+-;-+2'^a > PXPXH c-2^!,+-E5Q7"! $&$ )5-E*Z'w2! )*'iAD!,:B
l )5$
l y42 |h~tl t~vyM@-( ,
w/ H|
=?O !, ^ UFk]2)*E*Tl )5$FX :,+2$&AD! :&PQ )*! + UuC-:&+-$ZX9,'(! :r)*+e[!Q
9 '(! :xlur^)*+Xfvc, l ;2!$ -8! 7-7N! $&)5cH$&,:& )*+-Zk])3_F9 '!,:0m)5+_f ,$
)*+-7-Cx,+-;p:& C-: +-)5+-i9,' ! :h l )5+We,$h!,C27-C@1h8-)5$h$ P_$h$ )5PX)5EL,:g !
-!k ,+)5+H9 :&$ Zl  p !,AjltkI! C2E*;%k! :  c--C])5B)5$B)*P_7N! :&,+H !pP_7-U,$& ) 
U8 l 8)*$ ! d-T)5+H9 :&$ ^!,Ajl^cU,+-;)5BPQ,$8$&+-$&\(9 +`k]-+l)*$8+-!,
)*+H9 :&)5-E*1
= \: AD: !Q l Z. f e ,$ -h "8 b j!,Axl^1u8#C2$Fk]-+kbP_!9 b+
! 7": ! :ZlvAD:&! P ! +-W$&)*;-W!,AB,+)*+-+-:i7-: !#;-C-'(^ !+-!,2:cjkXU@9,_ !
: 72EL,'X)3\k])3)3$\,; G&! )5+H@18-)5$\)5$\$&)*P_)*EL:F!-!k[k]-+ ! +2QP_! 9,$s
$ '@EL,: AD:&! Po! +-B$&)*;-8!,AN+_)5+-+-:h7-: !#;-C-'(h!i+-!,2:c ,! CWU@9 8!T:&7-E*,'
)58H)5 $B'!,PX7-E5(%'! + G&C2HK. (r  x
~ r  (1h8aC-$u -^,; G&! )5+H])*$BE5)*,
-p'! PX72E*('!,+ G&C-H ,cg-CZAD! :ZE5)*+-,: :,+-$4AD! : PX )*! +-$: -:Z U,+AD! :
$ '@EL,:&$1
=?0# xg G Axl. e[ f )5$FXE*)*+2@,:8: ,+-$4AD! : PX)5! +<cU2+)3$Z; G&! )*+H
l .af ev)*$],E5$ !_pE*)5+-@,::+-$&AD! :&PQ )*!,+<1
=  ]U@9,u !^72: !9 ]U x
l @yz{ |x~
l &z l u{#,+-;W
l @yT|x~
 l AD! :]E*Ed\{ f ,+-;`$ ',EL: $] 1
= )*:&$&IkT7-:&! 9,ZU Bl yz { |~tl zl { 1 0Q;-(SU+-)3)*!,+!,Agl c2k
U@9 
r l yDz { O| ~ lurN z {
AD! :],E*E"r%eW1 C2
lurN TzZ { ~ lur  M
z Dlr  { 0
~ r l Hz r l { ~ r l ZzFl { 
8#C2$uk\-9,
r l yDz { O| ~ r l zl {
AD! :b,E5Er?eX1  > P_PQy
 c k%PbC-$4b2: (AD! : QU@9 % l tz l u{0~
l @yz{ |8,$8;2$ )5: ;<1

=?O !kk\$&-!k U]l yT|x~tl \1hiU@9 


r l yTO| 
~ lur w x~ S lur  x~ % r l ~r wwl
AD! :Z,E5EjreX1 0 > P_PQ9 c"kbaC-$FU@9 b l yT|8~l ,$Z;-$ )*:&;<1


=FgUDX> (8C-$8'!,+a )*+aC-T! C2:B7-: (9#)*! C-$82,PX72E*Z!,Ag -TE*)5+-@:0 :,+-$4AD! :4


PQ )*! +Xl.HQI v ;-(SU+-;H
lsy Pj7 Q"7 RH|I. ~Xy Ppz SQZz?>/ R2 % Ppz?S
QTz >RH|
> (8C-$Bk! : X! C2Bk]-8l .H v )*$1 > ^y  |INT,+HX9 '(! :8)5+ v 1
8-+`kIiU@9 
lsXy Pj# Q"3 R |( y  O| x~ y Pj7 Q"7 RH|( l y  (#|
AD! :],E*EhXy Pj7 QN3 RH|BX1x8-^E*A 4U+-;$ )5;-i)*$
Xy P\N
z SQz%/ R2% PszS
Qz %RH|( y  (#| 0~ Xy PsN
z SQz>/ R |<
z yD% PszS
QZz >R |
~y zp (@| P z,y zX
(@| Q<z`y/ z (O| R\
~ y Pj7 Q"7 RH|( y zp ( z_
w/ z (O| 
8#C2$uk\-9,
Xy Pj7 QN3 RH| y z ( zK
w/ 
z O| ~ Xy Pj# Q"3 R |( l y  (#|
AD! :],E*E Pj7 QN3 R2qUH > P_PQH #c--)5$8)*P_7-E*)5$ U
l y  (|~y z ( zK
 / z (|
= 8-)*$B2,PX72E*FkI,$8: -:B;2)*! C-$!p'!,PX7-C,
1 u!kI(9 :cU-)5+- $BN'! PX
@,$&)*:k])5 -W,)*;!A!,:&2! +-! :&PQ,E6U,$&$1 u'@,E5E8y AD: ! P  ! : ! E5EL,:4 Q!,A
EL,$48kI L $F+-!,$w|BU )3Ahr%)5$]_9,' ! :u)*+e+-
; .~[yr p    r H|B)5$+
! :& -! +-! :&PQEdU,$&)*$]!,Ahe_c- -+-i'! E*C-P_+%9 ' ! : j r k W)5$8 )59,+H
 r r 
j r k ~  11 p 
r r >
8#C2$u - s:&!k +H :&!,'A j r k p)*$ G&C-$4 r r X1

=?O !k $ C-7-7N! $&%Usl .e f )*$sE*)*+2@,:i: ,+-$&AD!,: PX)5! +<ch+-; .~


yr p    rH|F)5$T,+! :4-! +2! : PX,E -,$ )5$Z!,ABe,+-; . ~yD p    I|F)*$T+
! :& -! +-! :&PQEU$ )*$p!ATfv182+ j ltk )*$pPX:&)3k])5  :&! k]$_,+2; 
'! E5C-PX+2$cak]-! $    '! E*C-P_+Q)5$I )39 +%H j lr 7k 1 G+!, -:0kI! :&;-$ckIZ-9,
 lur 
lur v  p   lur 2 p 

 lur p  p

p v lur v  v 1  lur 2 v
j tl k  ~
1

lur p   lur v     lur 2  ' 
G+!, -:Bk! :&;-$cU2^+H:&)5+- \: !k+-

; \'! E5C-P_+`)5c$ lu r   1


= '@,+7-7-E5_$&)*P_)*EL:x: @$ ! +-)5+-\ !s2FE*)5+-@: :,+2$&AD! :&PQ )*! +W l u.#f
e_1B8-
+ j
l k )*$uWPQ : ) %k])3 :&! k]$F,+- ;  '! E5C-P_+-$c ,+2;2\+a :&
)*+-  s: !k ,+-
; s'!,E*C-P_+)*c$ l r X1 C2
l  r X~ r  &l 1~ Dlr  +
8#C2$cU-iPX:&)3 j l k  )*$8,)59 +H
 lur 
Dlr p  v   lur p    

p
p
 lur 

v p Dlr v  v 1  lur v  
j l k  ~
1


lur 2 p Dlr  v   lur 2  '
l k  k$&U q j l k  )*$g2; G&! )*+H
 ! PX7-,: )5+-B-)5$<k])5 \! C2:<AD! : PbC2ELIAD! : j t
!,A j tl k .
= j  # xg G A]l.0e f )5$pE*)5+-@,:^: ,+-$&AD!,: PX)5! +<c t)*$b,+! :4
-! +2! : PX,Ed-,$ )5$u!AxeWc ,+-; )*$]+! :4-!,+-! : PX,E"U,$ )5$]!,Axfvc2 -+
j l k  ~v#y j tl k  | 
=FgUD> bC2$s! +-'%, ,)*+w,Q2Q(2,P_7-E5X!,AI-XE*)*+2@,:Z :,+-$4AD! :4
PQ )*! +Xl.H v ;-(SU+-;H
lsy Pj7 Q"7 RH|I. ~Xy Ppz SQZz?>/ R2 % Ppz?S
QTz >RH|


> ( .~y yM w2H|( y2@ H|( y2w2 | |8"W2Q$&,+-;U: ;U$ )*$^!,A8Xch,+2;
E* . ~y y4,wH|(y2@| |0NT-i$4w,+-;-,: ;`U,$&)*$]!,A v 1x8-+k\U@9,
j ltk  . ~ 
/
yDk]H |1  +2^!-:u-,+-;<cU)3A6kik]: )5 Z-iE5)*+-,:I: ,+-$4AD! : PX)5! +
l y  |~vy z ( z?
w/ 
z (|
)*+PQ : ) QAD!,: P`ck\$&TU 
 

j l k  . ~ 

/ 
k]-)*'wW)*$6-]; G&! )*+H !,A j tl k  1]Xy G+b-)5$h(2,P_7-E5,c, -BSUE5;p!,AN$ ',EL,:&$h)*$ : @Ec
,+-;_$ !i-]'!,PX7-E5(W'! + G&C- )5! +W,$ 7N'(I!A" -F; G&! )*+H;-!#$+-!PX,+
,7-7N@,: ,+-'1
8-uAD!,E*E*!k])5+-T'! :&! E*E*,:&\'!,+-+-'($0-u+-!, )*! +W!,A<,; G&! )5+a!AgH!#"%$ ?$O"%U6+C
&= $+EM"% ?- Wk])5 U]!,A ,; G&! )5+H]!,Ahh
 EM"% ?$( < 1
F D  js> ( VNp,+  PQ : ) k])5)5 -:F: @E! :'! P_7-E5(
+H:&)*$18-+`-^,; G&!,)*+H8!,A
)*$  1
 u> FYN^ -^S-E*;`!,A$ ',EL,:&$8 U] - \+H: )5$u!,A V E5)*T)*+d18-+
 )5$0iE5)*+-,:h: ,+- $4AD! : PX )5! +sAD:&! P[Y !\Y c#,+-;  )5$iE*)5+-@: : ,+-$4
AD! : PX)5! +pAD: ! P Y !pY 1 G A< kIFE* "u-$&,+-;U,:&;%U,$&)*$!,A6Y ,+2;
Ni -i$&,+-;U,:&;-,$ )5$u!AhY c--+H8-! : P/
j k  ~Oy j ^ k  | h
~ V h
~ j  k 
,+-;-+2' ~  ,$8;-$ )*:&;<1

G+7U:&)5'C-E*,:c#kIi$&iU
?VFr  x
~ r 7 V 
AD! :p,+H  mPX:&)3W
 Vsc0,+H '!,E*C-P_+9 '!,:Xr!,AE*+2,  c,+-;,+H
'! E5C-PX+%9,'(! :u!,AE*+2, 1
@

=FgUDQ> V Ni -iPQ : ) 


V~    z  /
$ !WU . \I  v )*$B2^E5)*+-,:I :,+-$4AD! : PX )*! +;-(SU+-;H

Rp
Rv
R

~ V

Rp
Rv
R

R p z |R v
y4z  |OR v ?
z />R 

8-+ -%; G&! )*+H^!,AB -)*$i: ,+-$4AD! : PX)5! +)*$^ )59,+a  ck]-: BV  )*$
-^,; G&!,)*+H8!,AVs.
 
 
V  ~     
 /
$!



p
 p  
~ V p  ~   p zyM |4 v 
v
v
/,
=KJ ! P_0-,$ )5'7-:&! 7N:& )*$!,AU,; G&! )5+a $1 )*:&$& E5 c -72: !#'$&$h!,Aw,a)*+2F,; G&! )*+H$
)*$8'!,+ G&C-H iE*)*+2@,:.x)5A6l.e f ,+-;o.#e f ,:&^E5)*+-,:I :,+-$4AD! :4
PQ )*! +2$c-+-;Z)5$uW$&'@,E*,:c- -+yDlzZ| ~tl z ,+-;ywlF| ~ l 1
> (= L $"G&C-$&h7-: !9 B -8$ '! +2;_'EL,)5Pc,$h -ISU:&$&)*$$ )5PX)5EL,:y!,:h'@,+pNBAD! C-+2;
)*+-Z (#N!#! |(1xiE5!! X8 -i(7-: $ $&)*!

+ r ywlF| & IAD! :],+HrQe


,+-; fvcU,+-;`'! P_7-C2 ,.
rNywlZ| 0
~ lur  h~S lurN x~S r l x~ r l 
J )*+-'p-)5$\)5;-+H)3)*$T : C-WAD! :^,E*E r eXcjk_ #C2$sU@9 yH > P_PQl |
U\ylF| t~ wl AD! :],E*E"fvcU,+-;`$ !ywlF| ~ wl ,$];-$ )5: ;d1
= 8-)*$0,:& C-P_+H0$ -!k]$Bi,(p:&)*'wp)*+WC-+2;-:&$&w+-;-)*+2b,; G&!,)*+H$.)5+X! :&;-:x !
C-+-;-: $&,+-;\ :,+2$&AD! :&PQ )*! +Wlt! :0)5$I,; G&! )5+H@ca)5)*$!,A +s !#!;X)*;-^ !
$&w:&]HE*!#! a)*+2b8 -i(7-: $ $&)*! W
+ lur  x~ r l & B+-;:&k]:&)5T)38)*+
$ ! P_T!,2:8kB@,1
,

=KJ ! P_`!-:X7-:&! 7N:& )*$ck]2)*'w?kE5@@9 ,$_(:&')5$ $.yDl w| `~l yD)1 ,1


)5AIl ^)*$T-X,; G&!,)*+H^!,ABl^c6 -+l)*$T2%,; G&!,)*+Hi!,ABl w|q -X,; G&!,)*+H^!,A
-`)*;-+H)5!,7": ! :W)*$X,H,)5+ -)5;-+H )5NqF+-;K)3AFl.ue f ,+2;
. o e ,: ^E*)5+-@,:8 :,+-$4AD! : PX )*! +-$c--+yDl | ]~ & l 1\y8-)5$FE*,$&
)*;-+a )5'@,+Ns9 : )3SU;H7-E*#)5+-,:&! C-+-;k])3N
 j 4 l  uAD! :
,+-;`of |1 G Al )5$u)5+H9 :4)5-E*c2kI\,E5$ !WU@9 %yDl  p | ~vyDl |  p yD)1 ,1x2
)*+H9 : $ _!,A0-W; G&! )*+Hi)5$Z-_,; G&!,)*+HT!,A0-W)5+a9,:&$ |1W8-)*$i'@+Np$ +
aQ$&,:& )*+-sk])3% -T)*;-+H)5_l]l  p ~ml  p lt
~ gX,+-;w#)5+-p,; G&! )*+H$I!,A
,E*E"$ )*;2$1
= F+-!, -:`C-$&ADC-Ei7-:&! 7":&t)*$ UPX : )3 U,$-$PX:,+2 ,$)5$
,; G&! )5+a1 6!s$&]-)5$c#: ',E*E- U2F,; G&! )*+H0!,AgiPX:&)3p)5$0 -u'! + G&C2H
!,A^)5$X:+-$ 7N! $ 1 U: ! P > P_PQ !,AikI +-!, $cka+-!k U
PQ : ) -,$Z-p$ ,P_b:,+2,$T)3$F :,+-$&7"!,$ ,F1 G T)*$i,E5$ !%,$&!$ pU
QPQ : ) `U,$u-b$ ,P_s:+-$Z)5 $'! + G&C-H y -)5$F)*$U,$&)*'@E*E5%"'@,C-$&
-\'! + G&C2H^!,A+E5P_+Hw:&`PQ : ) )*$,H)*+`,+E*P_+H,:&PX:&)3"c
,+-;Q -Z'!,+ G&C-H Z!,A6sPX : )3_)5+Q:&! kB 'w-E*! +%AD!,: P )*$,H,)5+%bPX:&)3_)*+
: !k 'w-E*! +AD! : P`1 |  !,Pb-)*+2)*+-W-$ sk!%! 2$ :49)5! +-$]kIb$&^Uu2
,; G&! )5+a\!,A]`PQ : ) PbC-$4p,E5$ !U@9 Q -Q$ ,PXX:,+2N1 U: ! P82! :&P/
y,+-; > PXPX  !,Agk b+-!, $|0kIT$&Z -:&AD! :&ZUBbE*)5+-@,:0! 7N: ! :
AD: ! P ! +-SU+-)3( ;-)*P_+2$ )*!,+U,EF)5+-+-:7-: !#;-C-'($&7U,' !?+-!,2:U,$2
$,P_T:,+2,$])5 $],; G&! )5+a1
+ V

= G+X$&)*P_)*E*,:I9 )*+<cN)5A V)5$uX$ I CU: sPX : )3%k])5;- :&PX)5+U,+HK s c 2y
k])*E*E U@9,T;- : P_)*+-,+H s-1uyDFk])*E5E"!,+-E5_$  'wb7-:&!!Aj!,Ag-)5$A,'(8-: ,.
SU: $487-: !9,^)3IAD! :IE*PX+Hw,:4QPX:&)*'$c2,+-;%AD! :I;-)L,,! +U,E PX:&)*'$1x8-+
!iU,+-;2E*I -] +-:,E2'@,$&,c#C-$  x: ! 7N! $&)5)5! +W
FAD: !,Pk i+2!,$c#,$xkIE*E
,$8-i)*;2+H)3y VT|  ~ V   |1
VWVWVXVWV
O ! : PX,E<! 7N: !,: $
= u'@,E5E  U)*+W-u ^+-!$0kI;-)*$&'C-$&$ ;%-7-: ! 2E*P[!A<k]- -:B
E*)*+2@,:: ,+-$&AD!,: PX)5! +_kI,$8;-)*, ! +-,E*) @,-E5,c )1 1 k]-(-:8)5B-,;bU,$&)*$!,A
)*,+H9 '!,: $1x;2)*;Q+2!,ADC2E*E5b: $&! E59, -)*$ I C-$4)*!,+<c2+-;Q)5+XA,'(kk])5E*E
+-!,pN,-E5X ! )59,%:&C-E5$ )5$&A,'(! :4,+2$&k:p! -)*$ I C2$& )*! + C2+a )*E
 
F1 !k9 :cN-: s)5$]X$&7"')LEg'EL$ $u!,AhE5)*+-,:I: ,+-$4AD! : PX)5! +-$
y, ]! 7": ! : $|dAD! :6k]2)*'w\k0'@,+\ )59,I] !#!;\,+-$4kI:6 ! $(EM"%! 7N: ! :&$1









=  K> Tln.ge e N_E5)*+-,:F :,+-$4AD! : PX )*! +!,+e_cg$ !U


-T; G&! )*+H0l u.aeo e)*$,+-!, -:IE*)*+2@,:: ,+-$&AD!,: PX)5! +X!,+e_1hZ$@
U8l)*u$ ! $(EM"%a)5A6lul 0~tl &l^1
=FgUD %> ul . v v "i2\E5)*+-,:B: ,+-$&AD!,: PX)5! +%lsyXPj7Q2|].~
?y QN P"|1]8-+l .2 v v '@+"^'!,PX7-C;!QN\ -sE5)*+-,:8: ,+-$4
AD! : PX)5! +Q l y Pj7 Q-|x~y Q"O P"|^y k]H |c"+-;$ !
l]l Xy Pj# Q-|x~mlby QN# P"|x~vy Pj7 Q2|
,+-;
l lsXy Pj7 Q2|h~tl Xy Q" P"|x~vy Pj7 Q-|
8#C2$Fl]l Xy Pj7 Q2|u+-;l lsXy Pj7 Q2|8, : sAD! :,E*Ey Pj7 Q-|u v cNk]-)*'w)*P_7-E*)5$
U8l] l ~ l &l^18#C2$u -)*$B :,+-$4AD! : PX )*! +%)5$8+-! :&PQ,E1
=FgUD Z> ul . v v "i2\E5)*+-,:B: ,+-$&AD!,: PX)5! +%lsXy Pj7 Q2|].~
y2# P"|1x8-+` l Xy Pj7 Q2|x~Xy Q"H|ZyDk]H |(1 J !
l]l Xy Pj# Q-|x~mlbXy Q"H|h~vy27 Q2|
,+-;
l lby Pj7 Q2|h~tl y# P"|~Xy PjH|
J !])*+i +2:E lul Xy Pj7 Q2|<,+-;Tl lsXy Pj7 Q2|d,:&x+-!,j I CUEc,+-;i$ !]l]l ~tl l^1
8#C2$u -)*$B :,+-$4AD! : PX )*! +)5$8+-!,]+-! :&PQE1
= G+,+U,E5! , !Q-s,N! 9,b;-(SU+-)5 )*! +dc kb;-(SU+-W_$ I CU,:&bPQ : ) l V !%"
! $+EM"%a)3A VKV  
~ V  Vs;1 U! :8)5+-$&,+-'c--iPX:&)3
 
  
'@,+`@,$&)*E3QNi'w-'w;!WNi+-! : PX,Eck]-)5E*F -iPQ : ) 
 
 
)*$F+2!,@1Wy  H;-!Q -$&bkI!2,PX72E*$F'! :&: $&7"!,+-;T! 2,P_7-E*$sp,+2]
;
,"!9, |
@/

= F+-!, -:]-PX7-E5,c-,$ )5E5Q'w-'w;<.9 :&`;-)*, ! +UEdPX:&)3Q)*$8+-! :&PQE1


:&! P 82! :&P/bkI^U@9 
=   a=X    B> (Il .#e eoNZ^E*)*+2@,:x: ,+-$4AD! : PX)5! +W! +%^SU+-)5 (
;-)*P_+-$&)*! +-,Ex)*+-+2:^7-: !#;-C-'(s$&7U,'c,+-;E* mNQ,+! :& -! +-! :&PQExU,$ )5$1
8-+`l .#e ev)5$8+-! : PX,E<)3A,+-;`! +-E5Q)5A6-iPX:&)3 j tl k )*$1
=  G ABl[)5$i+-! : PX,Ec<-+l] l \~[ l l\1 O !kv,a)*+-`PX:&)*'$Zk])5 
: $&7"'u! c2k\! w,)5+
j tl k j l k ~ j l k j tl k
IC2iH8-!,: P /c j l k )*$Z -_,; G&! )5+ai!A j t
l k 1p8aC-[$ j tl k )5$T+-! :&PQ,E1

8-)*$7-:&! 9,$`- .&! +2E5m)3#A 0 7N! :& )*! + !,A^2 x: !,7"! $&)5 )*! +<qT -Y
 .4)5OA 0 7U,:&
AD! E*E5! k]$Ia:&9,: $&)*+-W2\"!9 i$472$1

=?O ! :&PQ,E:+-$&AD! :&PQ )*!,+-$xU@9 $ 9,: ,E"+2)*']7-:&! 7N:& )*$1 )5: $4!,Ag,E5Ec k]-+
l?)5$ +-!,: PX,E# -+pl?,+-;b l k])5E*EaU@9 B -B$PXB)* +H9 '(! :&$uy-Cx$ E5)* HE3
;-)5R":&+Hu)*,+H9,E*C-$w|.
~ UrQAD! :
=?0#
<Z> ulo.e e["^+-! :&PQ,EcU,+-;$ C-727"! $&\ U]lur_
$ ! P_Z9 '!,:rXe[,+-;`$ ! P_i$ '@EL,: g18-+` l rp~ Ur 1
= ,:&+-)*+2-.g-],N!9 8E5P_PQu)*$h! +2E5i:&C-BAD! :h+-!,: PX,E!,7": ! : $  U! :h!, -:
E*)*+2@,:]: ,+-$&AD!,: PX)5! +-$c )3Z)*$ I C-)5 s7N! $ $&)*-E5\-Fl,+-; l ZU@9,b!,,E*E3
;-)5R":&+Hu)*,+H9 '!,: $,+-;)5 +H9,E*C2$1
= T6!$ -!k
l &r ~  r cx)5s$ C _'$p!$&-!kn U  l r Ur  ~ 2c
k]-)*'w`)*+C2: +k])*E5EdAD! E*E5!k)3AjkI^'@,+$&-!k U 
l r  r l r UUr ~t
i(7U+-;!,C2]-iE*(A & U,+-;$ )5;-i,$
l r l Ur -r l r l r -r jz Ur -Ur
C2E*E*)5+-s -
  $]! C2u+-;$4kB7-7-)*+2_ -Tl$]!9 :cU2)*$8N'!,PX$
rN&lul Ur {lur r {r luUr g
z  {r r 




J )*+-'slo)*$Z+2! : PX,E,+-;lur~ Ur c"kpU@9 bl r~ol &lur~ -l r 1T8aC-$


kIi'@+:&k]: )3T2)*$8(7-:&$&$ )*!,+,$
{r l r  r r   r rgz  r r
IC2
 r l r 
~ lur r ~ {r r 1 G A6kI^)*+2$ :48-)5$])*+%2\"!9 i272: $M
$ )*!,+kT-+$&TU (9 :&a-)5+-_'@,+-'E5$] ! :&!-c ,$];-$&)*:&;<1

=?0# > (\l.e e "X+-! : PX,Ecj,+-;E5^r p cr v "_kI!)*,+
9 '(! :&$T!,Axlok])5 8% 6+ ,!*+ )*,+H9,E*C-$  p  v 1Z8-+r p ,+-;r v PbC-$4T"
! :& -! ! +-,E1
= y  ! P_7U,:&b-)5$Fk])5  x:&! 7"!,$ )5 )*! + !A -b +-!, $cjk]2)*'wPX: E5
,$ $&:& $hU h-$ B9,' ! : $xr ,+-;pr ,: IE*)*+2@,:&E5i)*+2;-7N+-;2+H@1h H,)5+<c,k
'@,C2 )*! +`U F2)*$u! :& -! ! +-p,E*)3!,Axv )* +a9,'(! :&$T)*$u! +-E5 : C-^AD! :F+2! : PX,E
! 7": ! : $1 |
=  WU@9 Xlur p ~  p r p ,+-;lur v ~  v r v
1  > P_PQ k_ #C2$
U@9 i
l &r p ~  p r p ,+-; l r v ~  v r v 1x8aC-$
 p r p r v ~ lur p r v 0
~ r p l r v ~ r p  v r v ~  v r p r v 
 r p r v ~ cF,+2;t$&! r p ,+2;tr v ,: 
J )*+-'  ~  cu -)*$%P_@+-$Q-]
! :& -! ! +-p ,Eg,$8v ;-$ )5: ;d1

= 8-)*$gE5P_PQ E5E*$<C-$g UjP_! $&gE5)*+-,:d :,+-$4AD! : PX )*! +-$Nk])*E5E,+-!,jN+-! :&PQ,Ec
"'@,C-$&F)5+X +-: ,E -u)5 +H9 ' ! : $B'! : :&$&7"! +2;-)*+-^!^;-)5R":&+H)*,+H9,E3
C-$Tk])*E5E +-!T"W! :4-!, ! +U,E1%yD ,pAD! :T)*+2$&w+-'b -pPQ : ) )5+H9 ! E39 ;)*+
-c )5"! +-,'')<:,2-)582,PX72E*|1
= G+Q-F!,-:I;-)5: ')5! +<c#)5A<kZU@9,T,+%! :4-!,+-! : PX,E U,$&)*$!,Aj)5 +H9 ' ! : $c
-+` -T:+-$&AD! :&PQ )*!,+%PbC-$4Ni+-! :&PQ,E.
=?0#
g> Wl .Be e"E*)*+2@,:b :,+-$4AD! : PX )*! +!,+K)5+-+-:
7-: !#;-C-'(%$ 7-,'eXc8,+-;KE* N,+?! :& -! +-!,: PX,E]U,$ )5$_k]2)*'w '! +-$ )5$& $
+H)5: E3%!,A)5 +H9,' ! : $u!,A6l^1082+l)*$8+-!,: PX,E1
= ! PX7-,: s -)*$FE*P_PXX! > P_PXh Q!,A0 %+-!$c<k]-)*'w$ ,)*$Z UT)3A
! CU@9 \bU,$&)*$8!,A)5 +H9,' ! : $\yD+-!,]+-'$&$,:&)*E3! :& -! +-!,: PX,E |ca -+l
)*$8;-)*, ! +UE* ) ,-E5,1


=  :&! P > P_PXFi!,A< i+-!,$cakIF#+2! km U0-uPX:&)3j ltk


)*$u;-)L,,! +U,E1 IC2Z,E*Ej;-)*, ! +UEgPQ : )5'$,:&s+-! :&PQE0yDk]H |cg,+-;$ ! j ltk
)*$8+-! :&PQE1 0 :&! 7N! $ )3)*!,+
pkTaC-$u$ ^ U8l )5$8+-! :&PQ,E1

= Z+2! kt'! PXu!p+)*P_7"! :4w,+H0-! : Pca-B2Z'! +H9,: $&i!,A > P_PQ
)*$],E5$ !p:&C-,.
= x) e%  UB  6   |   U  x     a> (l .Ze e "
+-! : PX,EZE5)*+-,:%: ,+-$4AD! : PX)5! +m! +'! P_7-E*mSU+-)3;-)*P_+2$ )*!,+U,EZ)5+-+-:
7-: !#;-C-'($ 7U,'e_1v8-+t -:&)*$,+ ! :4-!,+-! : PX,EuU,$&)*$ o'! +-$&)*$4)*+2
+H)5: E3%!,A)5 +H9,' ! : $u!,A6l^1 G+`7U,:4)5'C-E*,:cal)*$8;2)L, !,+U,E*) @,2E*,1
= 8#C2$T+-! : PX,E6E*)5+-@,:u: ,+-$&AD!,: PX)5! +-$,: b72: ')*$&E5-!,$ b;-)*, ! +-,E*) @,-E5
E*)*+2@,:W: ,+-$&AD!,: PX)5! +-$pk]-)*'wm',+mN;-)L ! +U,E5 ) ;C-$ )5+-! :4-! +2! : PX,E
U,$ $Ty,$!,7-7"!,$ ;X!]G&C2$&")*+-^7-EL)*+_;-)L,,! +U,E5 ) @-E*c,C-$&)*+-\U,$ $k]-)5'w
PX)5 H8+-!,]Ni! :& -! +-! :&PQE |(1
= 8-:&8)*$,E*$&!TF$ 7N'(: ,E -! :&PoAD! : +-!,: PX,Ea! 7": ! : $! +p)*+SU+-)5 ;2)*P_+
$ )*!,+U,E<)5+-+-:872: !#;-C-'u$&7U,'$c -C2u)38)*$]N !,+-;` -i$ '! 7"^!,A6-)5$8'! C2: $ 1
=  > T2_;2)*P_+-$&)*! +!,ABe N
 1bp$&U,E5Eh7-: !9,_ -)*$Z -! :&P H
)*+-;-C2')5! +! +  1
= )*:&$&x'! +-$ )5;-:x -]U,$ ]',$  ~o 1h82+_! +-]'@,+_7-)5'wp,+Hp! :4-! +2! : PX,E
U,$ )5$ !,A eoyDk]-)5'ws)5+^ -)*$6'@,$&0k])5E*EG&C-$4 Nu$&)*+- E5C-+-)5j9,' ! :w|c ,+2;\2
9 '(! :xri)5+s-)5$hU,$&)*$ k])5E*E#,C2 ! PX)5'@,E5E5TN8,+p)* +a9,'(! :x!,AUlyD"'@,C-$&
)*+b! +-;-)5PX+-$ )5! +U,EN$ 7-,'i9,:4%9 '!,:]k])5E*EN"ib$&'@,E*,:BPbC2E5)57-E*u!,A6r|(1
J !p-i$ 7N'(: ,Eg-! : P)*$B : )59#)*,E*E3_ : C-Tk]-+ ~,1
=?O !km$ C27-7"!,$ F)5+-;-C-'()39 E3b-  c#,+-;X U2u -! :&P[U$I,E5: ,;2
"+7-:&!9 +AD! :;2)*P_+-$&)*! +  ,1 > ( m y N|]N^ -s'w-,:,'(: )*$4)5'\7N! E5H
+-! P_)L,E !,Ajlvy! :B!A +aQPQ : ) _: 7-: $ +H)5!

+ j tl k !,Ajl^q2: '@,E5E" U],+H


kI!$ C-'w?PQ : )  : 7-: $ +a)5! +-$X,: $&)*P_)*EL:b,+-;aC-$_U@9 2$ ,PX
'wU,:': )5$&)5'T7"!,E5#+-! P_)L,EL|(1 U: ! P -iADC-+-;UPX+a,Ed -! :&P !,A ,E5 -: 2c
kIa+-!k  UQ -)*$_'wU,: ,' :&)*$& )*'`7"!,E5#+-! P_)L,E8$&7-E*)3$W!9 :Q-'! P_7-E5(
+#C2Pb": $1 +-'% -:&PbC-$4W" pE*,$&p!,+-: !#!,b!Au -)*$s7"! E3#+-! P_)L,Ec
,+-;`-+-'^l U,$u]E*,$&u! +2QyD'! P_7-E5(-|I)5 +H9,E*C2,cU,+2;-+-'s]E*,$&
! +-i)5 +H9 ' ! :1




=KJ ! +-!k E5QC-$7-)*'wK,+m)5 +H9,' ! :r p !A^l k])5 m)5 +H9,E*C2  p cu #C2$
lr p ~  p r p ,+2;bl
&r p ~  p r p H > PXPX 216B',+p+-! :&PQE*) r p !Z-9,
E*+2,` ca$ !  r p  ~sy:&P_PbN:x-0)5Ad,! CQPsC-E5 )*7-E3b,+_)5 +H9,' ! :IH
X+-! +# : !%$&'@,E*,:] ! C$4)*E5Eg Z,+)* +a9,'(! :cd$ !Q)5=L $u$AD^!%+-!,: PX,E*) 
)*,+H9 '!,: $w|1 > 0f . ~ r .aF u;-+-!, B-8$&7U,+p!,A 2)*$h)* +a9,'
! :cN #C2$^f )*$ZX! +-( ;-)*P_+2$ p )*!,+U,Eg$ 7-,'1 > (i
f  . ~ re .2r r p 
;-+-!i-^! :& -! !,+U,E<'! PX72E*P_+Hu!,Axf[q- -)*$])5$] aC-$Z,+  \;2)*P_+
$ )*!,+U,E<$&7U,'1
=?O !kvkX$&Xk]-\l[,+-;
l ^;-!!f  1 > \"X,+H9 '!,:\)5+f  c
aC-$]
r p cU)1 1 s r p ~t218-+
lus r p 0
~ s l r p ~ \  p r p ~  p sr p ~
,+-;$ )5PX)5EL,:&E5
l s r p ~ s lur p ~ \  p r p ~  p \r p ~
8#C2$^)3An?
f  c< -+luv,+2;l v,: W,E5$ !)5+
f  1s8aC-$Tl,+-;l
,: p+-!i! +-E5E*)5+-@:F: ,+-$&AD!,: PX)5! +-$AD:&! Pe  !`eXc<-(,:&W,E*$&!E*)*+2@,:
:+-$&AD! :&PQ )*!,+-$IAD: !,P f  !Xf  1 FE*$&!-c2kiU@9 
Dl\ { ~ \ l {
AD! :Z,E5Ejsu{gf  cdN',C-$&p9 :&9 '(! :T)5+f  )*$FX9 ' ! :Z)*+e_cg,+2;
kI,E*:&@,;WU@9 ]-)5$7-:&! 7N:&pAD!,:9,'(! :&$I)*+QeX1h8aC-$0l ,+-;_ l ,:&$4)5E*E
,; G&! )5+a $!Ah@'w!,2:F(9 +A :uks:&$& : )5'u-^9 '(! :$ 7U'\AD:&! P2
N;2)*P_+-$&)*! +UEd$ 7-,'\e!W- 
 ;-)*P_+2$ )*!,+U,EN$ 7U,'bf  1
f  + G&!#$s+
= p+-!kv,7-7-E32_)5+-;-C-'()5! +H7N!, -$&)*$c,+-;SU+2; U\
! :& -! +-! :&PQE0-,$ )5$b!,Au)5 +H9 ' ! : $W!,A8l^18-:&,:   $&C-'w)*,+
9 '(! :&$c6$ )5+-'Xf  )*$  _;2)*P_+-$&)*! +UE1 O !kvr p )5$T+-! : PX,E5 ) ;,+-;)*$
! :& -! ! +-,E-!\,E*E- -]9 '(! :&$I)5+_ -)*$U,$&)*$c$&)*+-'r p E5)*$)5+%f +-;%,E5E22
!,-:9,' ! : $FE*)*i)5+f  1u8aC-$Z)5AkIb,;-;r p  !Q-)5$-,$ )5$ukb (TX+2k
'! E5E*'()5! +!,A ! :& -! +-! :&PQEj9,'(! :&$c<k]-)5'wC2! PX )*'@E*E5XAD! : P %U$ )*$
a  ! :&! E*E*,:&p
^!,A"  +2!,$;1 ,'w%!,A"-$ F9,'(! :&$I)*$,+X)*,+H9 '!,:
!,Al^cU+-;$&!_k^,: i;-!,+-,1

=FgUD 8-xE5)*+-,:" :,+2$&AD! :&PQ )*! +l .H v v ;2SU+-;\HZlsy Pj7 Q-|0. ~
?y QN P"| U8ki;-)*$&'C-$&$ ;@,:&E*)5:B)5$8+-! : PX,Ec-C]+-!,u;-)L ! +U,E5 ) ,-E*\yD)5$


'wU,:': )5$&)5'T7"!,E5#+-! P_)L,E )5$  v zm c2k]-)5'w;-!#$&+L ]$ 7-E5)58!9 :u -T: ,E*$|(1
8-)*$Z;2!$T+-!,T'! +H:;-)*'(Z-s$ 7N' :,E-! : P N'@C-$ b UT! +2E5'! +
':&+-$T'!,PX7-E5()*+-+2:F72: !#;-C-'Z$ 7U,'$1FG A0-!kI(9 :ikp'!,+-$ )5;-:F -p'!,PW
7-E*_E*)*+2@,:x: ,+-$4AD! : PX)5! +pl .  v  v ;-(SU+-;aWls,y RT|I.~yDs RH|(c
-+`k\',+SU+-;,+! :& -! +-! :&PQEdU,$&)*$]!,A)5 +H9 ' ! : $cN+-,PXE5
r p .~  yM  |(q r v .~  y4 |

,y : ')*$&,.6'!9 : C-7^-,N! 9,E5)*+-+-;\$&)5A# ! C\'@,+^SU+-;\ -$&I)* +a9,'


! :&$8! +% ! C2:8! k]+U|(1;G+-;-;<c-,! C',+'w-'w% U8r p ,+-;r v : T! :4-! +2! :4
PQ,EcN,+-; Uulr p ~ r p ,+2;lur v ~ r v 1u8#C2$ZkIb',+;-)*, ! +-,E*) Zl
C-$ )5+-s+X! :4-!,+-! : PX,E--,$ )5$ca!^"'! P_8-u;-)L ! +U,E2PQ : ) p;-)*, y & |(1
VWVWVXVWV
J E5AL,; G&! )5+aB! 7": ! : $
= !Z$&C-P_PQ,:& )  -B7-:&9#)*!,C-$ $&' )*! +d.)5+\2k! : E5;b!,AU'! PX72E*(\)5+-+-:67-:&!;
C-'\$ 7U'$ch+-! :&PQExE*)*+2@,:Z :,+-$4AD! : PX )*! +-$_y, `+2! : PX,Ex! 7N: ! :&$w|i,: 
-pN$4i#)5+-;!,A0E*)5+-@,:u: ,+-$&AD!,: PX)5! +-$.]2: p+-!,Z! +-E5;-)*, ! +UE* ) 
,-E*c"2C2Z2,: \;-)L,,! +U,E5 ) @-E*TC-$&)*+-_-s"$&Ta)*+2;!,AU,$&)*$cd+U,P_E3
,+! :& -! +-!,: PX,E"-,$ )5$
1 !k9,:cU -:&T)*$8s$&C-N'EL$ $8!,A6+-! :&PQEN :,+-$4AD! :4
PQ )*! +2$Ik]-)*'w,:&^(9 +N  :. - 6 + &(C "8 b " :,+-$4AD! : PX )*! +-$1
=    E*)5+-@,::+-$&AD! :&PQ )*!,+bl .#e e ! +_TSU+-)5 ( ;-)*P_+-$&)*! +-,E
)*+-+-:]7-: !#;-C-'(F$&7U,'se[)*$u$,)5;` !XN 6 + &(C "8 b g)5A6l ~l\cU)1 1l)5$])5$
! k]+,; G&! )5+H@1_ n$ I C-,: XPQ : )  V)*$i$)*;!`"h 6 + &(C "8 b h)5A V  ~ Vsc
)1 ,1 V)*$])3$8!k]+; G&! )*+H1
=FgUDN 820E5)*+-,:" :,+2$&AD! :&PQ )*! +ul. v v ;-SU+2;^aFlby Pj7 Q2|. ~
?y QN P"|F)5$T+-! :&PQ,Ecd-C\+2!,i$ E5ALM; G&! )*+Hc<"'@,C2$ _)5$Z,; G&! )5+aT l y Pj7 Q2|F~
y Q"# P"|)*$+-!, -$PX $l^1 !k9 :cb -E*)5+-@:` :,+-$4AD! : PX )*! +
l.x v v ;-(SU+-;?HlsXy Pj# Q-|b~ ?y QN# P"|\)*$s$ E3ALM,; G&! )*+H@c "'@,C-$&)5$
,; G&! )5+aI)*$B,)59 +aXl Xy Pj7 Q2|x~Xy Q"O P"|ZyDk]H |(c ,+-;% -)*$I)*$I -T$,P_T,$Bl^1
=FgUDN 8-^PQ : ) 
V .~    

)*$8+-! :&PQEc22C2]+-!,u$ E5AL,; G&! )5+ac2N',C-$ ^)5 $],; G&! )5+H


V  ~    
)*$8+-!,8 -i$,P_^,t$ Vs
1 u! k9,:cN -iPQ : ) 
V .~   
)*$8+-! :&PQEc22C2]+-!,u$ E5AL,; G&! )5+ac2N',C-$ ^)5 $],; G&! )5+H

V h~  

)*$-$,P_Fq$ V\1uyD H_;-!$ -)*$0(2,P_7-E*u'!,: : $ 7N! +-;Q !s27-:&';-)5+-
! +-l G 8)*$@,$4Q!p'w2'w c C-$ )5+- x: ! 7N! $&)5)5! +
c#U 8bE*)5+-@:0 :,+-$4AD! : PX 
)*!,+)*$$ E5ALM; G&! )*+H)5A+-;! +-E3)3Ax)5 $FPX:&)3`)5+$ !,PXb!,:&2! +-! :&PQ,EjU$ )*$
)*$8$ E5AL,; G&! )5+aw|(1
=FgUDN h9 :&:&@,EB;2)L, !,+U,EIPX : )3)5$b$ E5ALM; G&! )*+Hcx-C2_,+H !, -:
7NZ!,A<;-)L,,! +U,E PX:&)3W)5$I+-!,Ty1 -1x;2)L, ,y z &z/  |0U,$I,+,; G&! )*+H!,A
;-)L,U-y  / |j,+-;p)5$-+-'8+2!, $&E3ALM,; G&!,)*+H@c -!,C- b)3 )5$ $& )*E5E#+2! : PX,E |1
= G )5$]'E*,:8U FE*E<$&E5AL,; G&! )5+H]E*)*+2@,:B :,+-$4AD! : PX )*! +-$B,: ^+-! :&PQ,Ec2$&)*+-'
)5Ad l ~tlm2+% l &lt,+-;Xlu l B: FN!, Q I CUE"!^l v ,+-;: F2+-'Z I CU,E
!W@,'w`!, -:1 J )*P_)*EL: E5,cH9,:&$&E3ALM,; G&!,)*+H8PX:&)3Q)*$8+-! :&PQE1 u!kI(9 :c
+-!,W9,:4+-! : PX,EPQ : ) )5$p$ E3ALM,; G&! )*+H@c+-;+-!,W9,:4+-! : PX,EE*)*+2@,:
:+-$&AD! :&PQ )*!,+%)*$8$&E5AL,; G&! )5+H@q2$&i-^,N!9 i(2,P_7-E5$1
= $ E5AL,; G&! )5+ap :,+2$&AD! :&PQ )*! +!9 :'! PX72E*()5+-+-:Q7-:&!;-C2'X$ 7U,')*$
$ ! P_ )*P_$0#+2! k]+`,$B +$(E  ??"%b: ,+-$&AD!,: PX)5! +<1 $ E5ALM; G&! )*+H0: ,+-$4
AD! : PX)5! +! 9,::&@,E)*+-+2:Q72: !#;-C-'%$ 7U,')*$X#+2! k]+t,$%N
 6SE E9+ ?$(-*
:+-$&AD! :&PQ )*!,+<1 J )5PX)5EL,:&E5,cp'! PX72E*(%$ E5ALM; G&! )*+H8PX : )3Q)*$8a+-!k]+,$u
+$(E  ??"%PQ : ) dcUk]-)5E*\Q: ,E6$ E3ALM,; G&! )*+HuPQ : ) `)*$#+2! k]+$Zl
 6 E C

E9+ ,$(-*TPX : )3"1y PX:&)3)*
$ 6SE E9+ ?$(-*Z)3A V
~ Vs1W -+ -WPQ : ) 
)*$s:&@,Ec -Q: ,+-$&7"! $&h V  )5$\2%$,P_%$s-Q,; G&! )5+H@c  #C2$b$ E5ALM; G&! )*+H
,+-;$4#PXP_ : )*'X,H9 X-_$,P_QP_@+-)*+-AD! :^: ,EPQ : )5'$c2C2b+-!\AD! :
'! P_7-E*PX:&)*'$w|1




=FgUD 8-^PX:&)3

Vo.~

 
)*$ )3$6!k]+W,; G&! )5+aByDk]H |(c#,+-;s)*$ 2+-'  : P_)5)*,+<c -C2 )5h)5$+2!,h$4P_P_&
: )*'cg$ )5+-'p)3i)*$Z+-!\)3$Z!k]+: ,+-$ 7N! $&,1 O !, bU i9 :&:&@,Ex$4P_P_:&)*'
PQ : ) %)5$C2! PX )*'@E*E5 u: P_)5 )L,+dc2N'@C-$ ^9,:&`:&@,EjPX:&)3Q)*$u,E*$&!_
'! P_7-E*PX:&)3yDk])3`,E*E"-i)*PX, )5+U,:4W7U,:& $] I CU,Eg!_H|1
= :&! P -]$ 7N'(:E--! : PvAD! :x+-! :&PQ,EPQ : )5'$c ka+-!kK U,+H u:4
PX)3)L+X! 7N: !,:I! +s'! P_7-E*%)5+-+-:7-: !#;-C-'(8$ 7-,'TU$8,+! :4-! +2! : PX,E
U,$ )5$8!,A)*,+H9 '!,: $1 IC28k\',+`$@WE*)5&E5F-)38PX!,: ,.
= j  # FE5Ed2^)* +H9,E*C-$u!Ah : P_)5 )L,+! 7N: !,:8,: i:&@,E1
=  0>  sNI,+^)5 +H9,E5C-x!,AU : P_)5 )L,+T! 7N: !,:<l\c aC-$jlurW~ Ur
AD! : $&! PXI+-! + :&!T)5 +H9 ' ! :xr 1 IC2 -+_H > PXPX
 c
l &rp~ Ur 1 IC2
$ )*+2'Zl)*$ u:&PX)3)L+<c#lm~t l cU,+2;-+-'
  rb~ -rN1 J )*+-'TrX)5$B+-! + : !-c
-)5$8PX,+-$8U  ~ jcU)1 1 )5$8: ,E1x8aC-$F,E*Ed -i)5 +H9,E*C2$]!,A6l ,: 
: @E1

= K$ )5PX)5EL,:jE5)*+-0!,A : ,$ !,+-)*+-F$ -!k]$h-,E5Ea -B)* +a9,E5C-$ !,AN : P_)5 )L,+
PQ : ) ,:&T: ,E1
= F D   g 82Q'wU,: ,' :&)*$& )*'_7"!,E5#+-! P_)L,E!,A] :&PX)3)*,+PQ : ) 
$ 7-E5)5$8!9,:8-i:&@,E5$1
=  ba+-!k[E*: ,;2AD: !,P  - UC-+-;UPX+a,E 82! :&P !A E* -:
UQ-'w-,:,'(: )*$4)5'7"!,E5#+-! P_)L,E]$&7-E*)3$Q!9,:-'! P_7-E* +aC-Ps": $1
IC2x$&)*+-'I-IPQ : ) ^)*$ u: P_)5 )L,+dc(9 :4b:&!!, !,AU2B'wU,: ,' : )5$& )*'B7N! E5H
+-! P_)L,ExPbC2$&bNQ:&@,E18#C2$b-X7"! E3#+-! P_)L,EhPsC-$&s$ 7-E5)5\! 9,:s -Q:&@,E5$1


= i'@++-!k7-: !9 
= x) e%  U 6  # | a    ,^  x  U  a> (6l"08$ E5ALM; G&! )*+H
E*)*+2@,:Z :,+-$4AD! : PX )*! +! +,+)5+-+-:\7-:&!;2C-'\$ 7U'e yDk]2)*'w',+NX)3
-::&@,Ej! :]'!,PX7-E5(-|(1I8-+ -:&\)5$F+! :4-!,+-! : PX,EgU$ )*$u!,Axe[k]-)5'w
'! +-$&)*$4$]+H)5: E5%!A )* +a9,'(! :&$F!,Ahe_c-k])3 $7#"%)* +a9,E5C-$1


=  : 7N@ I27-:&!!Ag!,A< - J 7N'(: ,EN -!,: P[AD! :0+-! :&PQEN!,7": 
! :&$c#)1 ,1 kF;-!s,+%)5+-;-C-'()*!,+X! +_-;-)*P_+2$ )*!,+ `!,A< -F$&7U,'Ze_1h -+
~ F2F'E*,)*P)*$,H,)5+_ : )59#)*,E6y,+2;QkIFC-$ F -A'0UI9,:& > P_PQ
  !PQ,W$ C-:&_ -W)*,+H9,E*C-p)5$T: ,E |1 O !kv$&C-7-7N! $ _)*+-;2C-' )59 E5U
s+-;-i'E*,)*P U,$u,E5: ,;2%N+7-:&!9 +`AD! : 
 1
:&! P  !,: ! E5EL,:4Kk#+2! k UplU,$_WE*,$&W!,+- $3#"%6)5 +H9,E5C-,1
8#C2$ikp'@+S-+-;: @E  p +-;%+-! + : !%9 ' ! :ir p $ C2'w UTlur p ~
 r 1pW',+ -++-! :&PQE* ) br  !`-9,XC2+-)5^E*+-, <1bW+-!k[:&7N@
-p pp :&$&^!,A -p7-: !#!,A0!,A0-p$&7"'p  :,E  -!,: P AD! :Z+-! :&PQE ! 7N: ! :&$c< !
! 2w)*+-_$,P__'! +-'E*C-$&)*! +('72b U^-_)5 +H9,E*C2$b: _+-!k: @E1


=?O !, )*'! +-$ C-E* ;2)5R": +-' Nk+ -$ 7N' :,E\-! : P AD! :$ E5AL
,; G&! )5+aZ! 7": ! : $i+-;-p$&7"': ,Eh2! :&P AD! :F+-! : PX,E! 7": ! : $.F2
$ 7N' :,EU -! :&PvAD! :x+2! : PX,E-! 7N: !,: $:  I C2)*: $0 -])*+-+2:7-: !#;-C-'(I$&7U,'
!]"'! PX72E*("c -C2j -! +-xAD! :g$ E5AL,; G&! )5+a<! 7": ! : $j;-!#$j+-!@{1 G+\7U:&)5'(
C-EL,:cH9,:&_$4P_P_:&)*'8! 7N: !,:x! +Qi: ,E-9 ' ! :$&7U,')5$x;-)L,,! +U,E5 ) @-E*1
=FgUD 8-^PX:&)3
Vo.~    
)*$ u:&PX)3)L+<cd+-;aC-$T$&!)*$u-pE5)*+-,:u :,+2$&AD! :&PQ )*! + .  v  v c
k]-)*'w`)*$8 )39 +H
R  ~  |R 
Q -Z$ 7N'(: ,E<-! : Pc  v PsC-$&8-9,^,+! :& -! +-!,: PX,E"-,$ )5$8!,A6)*,+
9 '(! :&$uk])3: ,Eg)5 +H9,E5C-$1  +2^$&C-'w-,$ )5$u)5$
r p . ~ | w w  q r v .~  w 5 w  q
! +-F',+Q9,: )3A WUIr p ,+-;%r v ,:&Z,+%!,:&2! +-! :&PQ,EU-,$ )5$AD! :-'! P_7-E5(
kI! ;-)*P_+2$ )*!,+U,EB)5+-+-:p72: !#;-C-'_$&7U,'  v cI+-; U dr p ~ r p ,+2;
 Nr ~ zZr 18aC-$  '@,+NT;-)L ! +U,E5 ) ;QC2$ )*+2W,+! :& -! +-! :&PQE"U$ )*$
! v )59,%-v PX : )3;-)*, yzb  |1 O !,% Upk]-)5E*Q -)*,+ 4 "% b36\!,A
 : p: ,Ecg -W)*,+ 4%3*+ 5 $76T,:&p$& )*E*E '! P_7-E*"1p8-X$&7"' :,Eh -! :&P
$@#$b+-!, -)*+-,$\ !-!k : ,E! :s'! P_7-E*-X)*,+H9 '!,: $W,:&yD)*+-;-;<c
#

)*+ XP ,+H)5+-+-:s7-: !#;-C-'(W$ 7U,'$c$&C-'wK I C-$& )*! +;-!#$p+-!p: ,E*E3PX,,


$ +2$ |1
=KJ E3ALM,; G&!,)*+H8! 7N: ! :&$u,: TaC-$]2i9,:4N$4F!Ah,E5E<! 7N: ! :&$.+-!,u! +2E5
,: u-(X;2)L, !,+U,E*) @,2E*,ck])5%,+%! :4-! +2! : PX,EUU,$&)*$!,Ag)5 +H9,' ! : $c22
)*,+H9,E*C-$8,:&Z,E5$ !b:&@,E1]y  ! +H9,: $&E3 cU)5I)*$@,$4Q!sPX!#;-)5A > PXPX  !
$ -!k U,+Hi! 7N: ! :<k])3i-$ 07-: ! 7N:4)5$j)*$j+-'$&$,:&)*E3T$ E5ALM; G&! )*+Hw|(1
!,:&C2+UE5,ch$ E5ALM; G&! )*+Hs! 7": ! : $s'! P_%C-7,E5E!9 :b-72EL,'%)*+ :&@,E
E*)5AD1 U! :Z)5+-$&,+-',cj)*+ I CU,+H C-PPX'wU,+-)5'$cE*P_! $&Z,E*E  -pE*)5+-@:F: ,+-$4
AD! : PX)5! +-$! +-]$ $-: ,:  u: P_)5 )L,+`y -)5$x)*$xU$ )*',E*E3sN',C-$&uk]-)5E*
I C-,+HC-P P_'wU+-)*'$uC2$ $u'!,PX7-E5()5+-+-:87-: !#;-C-'($&7U,'$c 2 I CU+a )5 )*$
kIi'@+,'(CUE*E5X! -$&:49 s)5+7-H$&)*',Eg: ,E*)3%PbC-$4]"i:&@,E  9,E*C2; |1
VWVWVXVWV
J C2R,N! C28 -TSU+U,E
= 8-bSU+U,E )*$F -: _2! C-: $TE5! +--cd,+-;k])*E5E Nb-E*;)*+ -pC-$ C-,Eh'E*,$ $&: !#! P
y J
 ,|(c2!,+6C-$&;U@ ^c JZ'pc2AD: ! P ,Ppw P1
= 8-sSU+UEk])*E5Ej"b)* H!Q + I C-$4)5! +-$1i8-(k])5E*Ej"s!,Ax9,:&#)*+2%;-) p
'C-E3`,+-;E5+-<cN,+-;`$ !_-(k])*E*Eg-9,s;-)3Rd: +a7N! )*+H]9,E*C-$u,$ $&)* +-;
! -P`T1 G b)5$\7-:&! U,2E5N$&\AD! :i ! C !:&@,; E*Ex- I C-$4)*!,+-$b^2
" )*+-+2)*+-bNAD!,: T;-')*;2)*+-bk]-)5'w!,+-Z!p;-!pSU:&$&qU)58PX@Q+-!]+-'$ $ ,: )5E5
"^p !#!;)5;-@b!_;-!p2 I C-$& )*! +-$])5+`!,: ;-:1
= 8-SU+-,EUk])*E*E2"u'! P_7-:&-+-$ )39 ,c'!9 : )5+-b9,:4# -)*+2\AD: !,PvSU: $4k_ !
EL,$4Fk 1 I'@,C-$&bkIp;2)*;+-!ZU@9 b )*P_\ !%'!9 :Z-\@Q+-!, $c
-)5$pPX,+-$b-W9,:&a -)*+-AD: !,PK !  k])*E5EIN'!9 : ;d1
I',C-$ B -8P_)*;2 : P E*: ,;2^$&;p-BPX : )*,EHAD: ! P a$]M
c -:&
k])*E*E,"PX! :&!,AU,+\P_7-U,$&)*$6! +\ -a$  uPX : )*,Ec2! k9,:h)36PQ@
$&)5E*E""Tk! :& ak]2)*E*T !X:&9#)*(k2^#$^M
pPX : )*,Ec"'@,C2$ ^PbC-'w`!,A
-ua$  ^PX : )*,EU;-7"+-;-$B)5+-;-)*:&'(E5b! +X -#$F4
TPQ :&)L,E1
= 8- I C-$4)5! +-$k])5E*EjNsP_! : ^! :uE*$&$F(9 +2E5$ 7-E5)5"(kI+-:&^7N$F!,A
I C2$& )*! +2$18-XS-: $&b,:  *3 E  ) |"% ?- "% 36+ ?- U6FF)*+k]-)*'w ! C-9,
!'!,PX7-Cb2)*+- $FE*)*b! :4-! +2! : PX,E6U,$ $cj'wU,: ,' :&)*$& )*'p7N! E5#+-!,PX)*,E*$c
)*,+H9 '!,: $B+-;X)* +H9,E*C-$ca+aC-E*EU$&7U,'$I+-;X: ,+- $c,+-;_$ !iAD! :& <1 G 0)*$
7-: ! -,-E5_ !#!#;`)5;-@p!_: (9#)*k,E*E< -i'! P_7-C2)5! +U,E I C-$& )*! +-$)*+2
%

-! P_k! :  c2P_)*;:&Pca+-;%)*+_-7-:')5'(2,P_$c-+-;,E5$ !\ -F2,PX72E*$


)59,+)*+ -p'E*,$ $T+-!$i+-;)*+2b(# "!#!  1y?G A,! CS-+-; ! C-:&$ E5A: (
PXPb": )5+-2! k[ !;-! -$&%7-:&! -E*PX$iAD: !,P"(AD! : c -+7N: -,7-$s,! C
'! C-E5;bE*!#! T h!, -:h$&C-'w I C-$4)5! +-$h)5+s-0 "!#! ^)*+-$4,; |(1 G h)5$7-:&! U 
-E5iN$4h)5A2 ! Cp  PX7 -$& I C-$4)*!,+-$ k])5 -! C2E*!#! a)*+2 h,+H\$ ! E5C2)5! +-$
! :\k])3-! Cs!#!PbC2'w -E57AD: ! P !,C-:sAD: )5+-;2$1y 0!,C'@,+ ':4w,)5+-E5C-$&
! C-:T (#N!!,,+-;+-!, $cj2! C- <c,+-;,+H)5+-;-('@,:&;-$^,! C-9,X72: (
7U,: ; |(1
 .O )*+-U; 0 #7N I C2$& )*! +2$T I C-$& )*! +-$^)*+
= 8-W$ '! +-;7NW!,A I C-$& )*! +,:&W
k]-)*'wK,! CmU@9 !SU+2; $ ! P_!,#G&'(yPX : )3"c! :%U,$ )5$c]! :XE*)5+
@,:]: ,+-$&AD!,: PX)5! + |k]-)*'w$ )*$4SU$u9,: )*!,C-$]7-: ! 7N:4)5$1882$ ^#7"\!,A
I C2$& )*! +2$B,:&:&)*'wa)*:0 U,+X'! P_7-C2)5! +U,E I C-$&)5! +-$"'@,C-$&F2X!,A +
;-!+-!,TS-T,+H7U&: +! :ZPX'w,+H7-: (9)5! C-$T7-:&! -E5P ! CU@9 W$&+d1
8-C2$ CU,E5E5`:  I C-)*:&bUF ! CU@9 _% !#!#;C-+-;-: $4w,+-;2)*+-!,Ak]U^E*E
-^'! +2'7$ZP_@,+yDAD! :u)*+2$&w+-'cN,! C L E*EjU@9 \(#:&P_s;-) X'C-E5S-+-;-)*+2
,+! :& -! +-! :&PQEdU,$&)*$Bk])39,: )5! C-$87-:&! 7":& )*$8)3Aj ! C`;-!_+-!,]a+-!kk]U 
)5hP_@+-$hAD! :xZU$ )*$!TN8! :& -! +-! :&PQEc,+-;W-!k? !T'w-'wp)3A )5x)5$w|1x,+H
!,Ad -u -!,: P_$0)*+W-u+-!, $0PQ@p-E*7X )59,],! CQ$&! P_'E*C-$I,$!^-!k  !
SU+-; -$&\#7"$Z!,Ax!,#G&'($qN ! C'@,+72C2 -$&s2! :&P_$! + ! C-:u)*+2;-(
'@,:&;-$1 G A<,! C%;-!,+ L Ia+-!kmk]UI !s;-!2c#,! C%'@+%$&,:&0k])5 X:&)L,E +-;%:&: ! :
dG&C-$&8 :&X!pSU+-;`,+! #G&']k]-)5'w`$ )5$&SU$8$ ! P_,c2)5A6+-!,u,E5Ec#!,Aj-T72: ! 7
:& )*$Z:  I C2$& ;<c6,+2;-+:&`!P_!#;-)5A ,! C-:T C-$ $T$&!%UFPX!,: p,+2;
PX! :&!A<-F7-: ! 7N:4)5$,: $ )*$&S-;<cC-+H)*E !,C%U@9 TE*E !,Ag2F7-:&! 7":& )*$
U - I C2$& )*! +Q,$ ;_AD! :1By8aC-$,! CQ$&-! C-E5;XNu,-E5B!^ )59,u2,PX72E*$
!,A E5)*+-,:I :,+-$4AD! : PX )*! +-$c2-PX7-E5$8!,A ! :& -! +-!,: PX,EdU$ $c '1 |
= 8- -)*:&;^#7NB!,A I C-$& )*! +p: -t 6 b $+ )$3 @& I C-$4)*!,+-$6"-$ 8: 0!,A +
$ b)*+ $ !,PXQ,-$& :,'(p9 '!,:p$ 7U,'! :s)5+-+-:b7-: !#;-C-'(p$ 7-,'ck])3 $&! PX
! #G&'($syE5)*+-,:I: ,+-$4AD! : PX)5! +-$c9 ' ! : $c"(',1|W,$ $&C-PX; !_-9,\':4w,)5+
7-: ! 7N:4)5$c2,+-; !,C-:G&! )*$!b;-;-C-'^!-:87-: ! 7N:4)5$B!,Aj -$&T! #G&'($1
^  ! +[" 6 #8y 5 $3+C $7 4%9"%  @&H bB b3 $3+EF6B bB @O<> +
$! @368I ! C',+w,b-$ b -! :&P_$T,$Z,)59 +<cdk])3-! Ci,+H+2; !
7-: !9 T -P ,H,)5+<1h8-$  I C-$4)*!,+-$],: TC2$ CU,E5E5X'! +2$ )*;2: ;-Z : )*'wa)5$&
!,A8,E5Ec6,E3-! C2 !A +! +-'X,! C$ Q-!kv !;-!2P`c2,: WC-$&CU,E5E5
I C2)5u$ 2! :&c+-;Q;-!\+-!,0)*+H9,! E59,PbC2'w%'! P_7-C2)5! +<1 0! CQ$&-! C-E5;X,!s!9 :
-W7-:&!!,AL#7" I C-$& )*! +-$^)*+ -W-! P_k! : ,+-;)*+ -W7-:,'()5'p(2,P_$c












/

-7 : (AD:-E5k])5 -! C2F,+H! C2$&)*;-s,$ $&)*$4w,+-',qd -b7-:&!!AL #7" I C-$4)*!,+-$Z)*+


-TSU+UE<k])*E*E""i!,A p$ )5PX)5EL,:0+U C-: 1
8-:&Q,:&bkI!`7-: ,' )*'pSU+-,E*$T! + -W'EL$ $TkI7-, ,1 O )5 -:T!A -P
,: Z'! P_7-E*(E3_)*+-;-)5'@ )59,F!,Agk]U 87NT!,A I C-$4)5! +-$B !,C%k])*E*EN (8! +%2
SU+U,Ec<"'@,C2$ b2N!,'! +Hw,)5+ I C-$4)*!,+-$Zk]-)*'w:& I C-)*:&pPQ :&)L,E6+-!,
'!9 : ;)*+ -)*$Z'! C-:&$ ,cj! :Z,: W^%2)* -:ZE*(9 Ex!,A0;-) _'C2E5 U,+k]U 
-)5$^'! C-:&$ Q7"'$1 !kI(9 :ch2"!'! +Hw)*+ I C-$& )*! +-$ik]-)5'w ,: 
$ )*P_)*E*,:h!bk]-Bk])*E5E"NZ)5+Q-Z,' CU,E"S-+U,E1 E5@,$&Z: ,;%2i,+-+-!,)5! +-$
! +K2km7U,,+-X! -H#7N: E5)*+-a$_! -$&SU+U,E5$XNAD!,: C2$ )*+2
-P1
0! C?PX@-: )5+-N

 )*+2;-(',: ;-$X)*+H! --P \ -)5+-;-'@,:&;
U8,! CC-$ ;`AD!,:B-ZSU:&$&uP_)*;2 : P`c,+-;`,+`,;-;-)3)5! +U,Ed
 )*+-;-',: ;<1
G^k])5E*EI;2)*$& : )5-C2% -$&',: ;2$_)5+ 'E*,$ $c! :b,! C'@,+-: )5+- !,C-:W! k]+dN
1 G
)*$C-7 ! !,Ctk]U ` !7-C2`! +m-$ '@,:&;-$qiAD! :)5+-$&,+-'cZ)5Ai,! C-9,
;-) _'C2E5_: PXPb": )5+-\ -Z(2,'(8;-(SU+-)5 )*! +X!,Aj$ !,PX'! +-'72c-! :! +%-!k
!'! P_7-C2  ':4w,)5+ I C-,+H)5,cF! :!,+ k]---'-! : PX$`,+2;
: E*)5! +-$&-)*7-$u,:&sNk+<c<$@,cd! :4-! +2! : PX,EjU,$&$T,+2;)*+2+-:7-: !#;-C-'($c
G_k! C-E5;tk]:&)5!,+  -'@,:&;mk]U(9 :)3%kI!,C-E*; w,!,;-;-:&$&$ -$&
;-) _'C2E5)5$B0-)5$])*$]PX!,: iE*)5,E3%!_N\C-$&ADC-Ej-,+P_:&E5%'! 7H#)*+-X;-!k]+
9 :&a2)*+-AD:&! P -`+-!, $+-;? (#N!!,N1  +- -)*+2 !:4)*$W!,!
! 9,:I -F2! PX(kI!,: X,+-;%7-: ,' )*'F(2,P_$c2,+-;%PX,Zs+-!F!Ag9,:&X)5PX
! Ck])*$& ! CU,;:&P_PbN:&;$ ! P_T'!,+-'72u! :I2! :&P !,:B: )5'wXk]-+
;-! )*+2W_7-:&! -E5P`1h8-+7-C2,E5E"2! $ i+-!, $u)*+H!b,! C-:u'@,:&;<1
uPXPb":c] ! CtU@9 2: -!,C-: $% !S-+-)*$&<cZ,+2;t!,+-E5?+ I C-$4)5! +-$1
8-:&X)5$^+2!,^+-@,:&E5,$iPbC2'w)5PXp72: $&$ C-:&%,$i2: _)*$i)5+
,  PX)5+aC2
PX)5;2: P`c<,+-;)3T)*$T)5+A,'i'! PXP_! +AD! :T7N!,7-E*s !SU+-)*$&@,:&E5 1 J !w,
! C-:)5PXca,+-;_:&p !\Nu'@,:&ADC-Eqa -:&F)5$0+2!\+-;Q !\:&C-$ X-)5+- $1 8-:&
k])*E*Ed+-!,"^PbC-'w`)*P_( '! +2$ C-P_)*+-p'! P_7-C2w )*!,+)5+ - I C-$& )*! +-$u)*+2
SU+U,Ec29,+`)*+Q - 0 '! PX72C2w )*! +-,E 0 I C-$4)*!,+-$1 P_)*+aC2$ 7N+H]-)5+-a)*+-
,"!,C2Ik]U ]s7-:&! -E*Pn)5$B,$&a)*+--c2,+-;%2! ktN$48!b !b,"!,C2B)3@c#'@,+$ 9,
+`! :Bk+H`PX)5+aC2$8!,A kI,$& ;R"! :&1
i!#!;E5C-'w 
VWVWVXVWV
=

You might also like