SCE-Basic Programming S7-1500 (2016)
SCE-Basic Programming S7-1500 (2016)
Note that these trainer packages are replaced with successor packages when necessary.
An overview of the currently available SCE packages is provided at: siemens.com/sce/tp
Continued training
For regional Siemens SCE continued training, get in touch with your regional SCE contact
siemens.com/sce/contact
from
the
Siemens
AG
contact:
Roland
Scheuerer
Offenders will be held liable. All rights including translation are reserved, particularly if a patent is granted
or a utility model or design is registered.
Use for industrial customer courses is expressly prohibited. We do not consent to commercial use of the
training curriculums.
We wish to thank the TU Dresden, particularly Prof. Dr.-Ing. Leon Urbas and Dipl.-Ing. Annett Pfeffer, the
Michael Dziallas Engineering Corporation and all other involved persons for their support during the
preparation of this training curriculum.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Table of contents
1
Goal ...................................................................................................................................................... 4
Prerequisite ........................................................................................................................................... 4
Theory ................................................................................................................................................... 4
3.1
3.2
3.3
3.4
Functions ....................................................................................................................................... 8
3.5
3.6
3.7
3.8
Task .................................................................................................................................................... 13
Planning .............................................................................................................................................. 13
5.1
5.2
6.2
6.3
6.4
6.5
Create function FC1 "MOTOR_MANUAL" for the conveyor motor in manual mode .................. 22
6.6
6.7
6.8
Program organization block OB1 Control of the forward belt tracking in manual mode .......... 34
6.9
Program organization block OB1 Control of the backward belt tracking in manual mode ....... 39
6.10
6.11
6.12
6.13
Checklist ............................................................................................................................................. 46
Exercise .............................................................................................................................................. 47
8.1
8.2
Planning ....................................................................................................................................... 47
8.3
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
BASICS OF FC PROGRAMMING
1 Goal
In this chapter, you will get to know the basic elements of a control program the
organization blocks (OBs), functions (FCs), function blocks (FBs) and data blocks
(DBs). In addition, you will be introduced to library-compatible function und function block
programming. You will get to know the Function Block Diagram (FBD) programming
language and use it to program a function (FC1) and an organization block (OB1).
2 Prerequisite
This chapter builds on the hardware configuration of SIMATIC S7 CPU1516F-3 PN/DP.
However, other hardware configurations that have digital input and output cards can be used.
You can use the following project for this chapter, for example:
SCE_EN_012_101__Hardware_Configuration_CPU1516F.zap13
3 Theory
3.1 Operating system and application program
Every controller (CPU) contains an operating system, which organizes all functions and
processes of the CPU that are not associated with a specific control task. The tasks of the
operating system include the following:
The operating system is an integral component of the CPU and comes pre-installed.
The user program contains all functions that are necessary for executing your specific
automation task. The tasks of the user program include the following:
Checking the basic requirements for a warm restart using startup OBs
Processing of process data, i.e. activation of output signals as a function of the input
signal states
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
If an OB has been assigned to the event, this event triggers the execution of the assigned
OB. If the priority of the assigned OB is greater than the priority of the OB that is currently
being executed, it is executed immediately (interrupt). If not, the assigned OB waits until
the higher-priority OB has been completely executed.
Table 1 gives a couple of examples of start events for a SIMATIC S7-1500, their possible OB
number(s) and the default system reaction in the event the organization block is not present in
the controller.
Start event
Possible OB
numbers
Default system
reaction
Startup
100, 123
Ignore
Cyclic program
1, 123
Ignore
Time-of-day interrupt
10 to 17, 123
Update interrupt
56
Ignore
80
STOP
Diagnostic interrupt
82
Ignore
Programming error
121
STOP
122
Ignore
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
At the start of the cyclic program, a query is sent to determine whether or not the
individual inputs are energized. This status of the inputs is stored in the process image of the
inputs (PII). In doing so, the information 1 or "High" is stored for energized inputs and the
information 0 or "Low" for de-energized inputs.
2.
The CPU now executes the program stored in the cyclic organization block. For the
required input information, the CPU accesses the previously read process image of the
inputs (PII) and the results of logic operation (RLOs) are written to a so-called process
image of the outputs (PIQ).
3.
At the end of the cycle, the process image of the outputs (PIQ) is transferred as the
signal state to the output modules and these are energized or de-energized. The sequence
then continues again with Item 1.
1. Save status of inputs in PII.
1st instruction
2nd instruction
3rd instruction
4th instruction
...
Last instruction
PII
Local data
Bit memory
Data blocks
PIQ
Note: The time the CPU needs for this sequence is called cycle time. This depends, in turn,
on the number and type of instructions and the processor performance of the controller.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
3.4 Functions
Functions (FCs) are logic blocks without memory. They have no data memory in which
values of block parameters can be stored. Therefore, all interface parameters must be
connected when a function is called. To store data permanently, global data blocks must be
created beforehand.
A function contains a program that is executed whenever the function is called from another
code block.
Functions can be used, for example, for the following purposes:
A function can also be called several times at different points within a program.
Organization block
Main [OB1]
Calls the
MOTOR_MANUAL
[FC1] function
Function
MOTOR_MANUAL
[FC1]
Contains a program for
controlling a conveyor
in manual mode, for
example.
The function has no
memory.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Function blocks are always executed when called from another code block. A function block
can also be called several times at different points within a program. This facilitates the
programming of frequently recurring complex functions.
A call of a function block is referred to as an instance. Each instance of a function block is
assigned a memory area that contains the data that the function block uses. This memory is
made available by data blocks created automatically by the software.
It is also possible to provide memory for multiple instances in one data block in the form of a
multi-instance. The maximum size of instance data blocks varies depending on the CPU. The
tags declared in the function block determine the structure of the instance data block.
Organization block
Main [OB1]
Calls function block
MOTOR_AUTO [FB1]
together with its
instance data block
MOTOR_AUTO_DB1
[DB1]
Figure 4: Function block and instance with call from organization block Main [OB1]
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Function_10
Global DB
(DB_Global)
Function_11
Function_
block_12
Instance DB
(DB_Instance)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
10
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
11
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
You can thus use simple instructions, for example, to control binary outputs, evaluate edges
and execute jump functions in the program.
Program elements such as IEC timers and IEC counters provide complex instructions.
The empty box serves as a placeholder in which you can select the required instruction.
Enable input EN (enable)/ Enable output ENO (enable output) mechanism:
Instructions with EN/ENO mechanism are only executed if enable input "EN input has
signal state "1". When the box is processed correctly, enable output "ENO" has signal
state "1". As soon as an error occurs during the processing, the "ENO" enable output is
reset. If enable input EN is not connected, the box is always executed.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
12
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
4 Task
The following functions of the sorting station process description will be planned, programmed
and tested in this chapter:
5 Planning
The programming of all functions in OB1 is not recommended for reasons of clarity and
reusability. The majority of the program code will therefore be moved into functions (FCs) and
function blocks (FBs). The decision on which functions are be moved to FCs and which is to
run in OB 1 is planned below.
Comment
Manual_mode_active
Data
type
BOOL
Pushbutton_manual_mode
BOOL
Enable_OK
BOOL
Safety_shutoff_active
BOOL
BOOL
Output
Conveyor_motor_manual_mode
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
13
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
The next step is to select the target directory where the retrieved project will be stored.
Confirm your selection with "OK". ( Target directory OK)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
14
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
15
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
16
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Change the address to %Q0.0 (Q 0.0) by entering this directly or by clicking the dropdown arrow to open the Addressing menu, changing the operand identifier to Q and
confirming with Enter or by clicking the check mark. ( %I0.0 Operand identifier Q
Enter the "Conveyor motor M1 forwards fixed speed" comment for the tag.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
17
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Add a new Q2 tag in line 2. TIA Portal has automatically assigned the same data type as
in line 1 and has incremented the address by 1 to %Q0.1 (Q0.1). Enter the comment
"Conveyor motor M1 backwards fixed speed".
( <Add> Q2 Enter Comment Conveyor motor M1 backwards fixed speed)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
18
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Select the desired symbol table (e.g. in .xlsx format) and confirm the selection with
"Open".
( SCE_EN_020-100_Tag_table_sorting_station Open)
When the import is finished, you will see a confirmation window and have an opportunity
to view the log file for the import. Click OK.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
19
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
You can see that some addresses have been highlighted in orange. These are duplicate
addresses and the names of the associated tags have been numbered automatically to
avoid confusion.
Delete the duplicate tags by selecting the lines and pressing the Del key on your
keyboard or by selecting "Delete" in the shortcut menu.
( Right-click on selected tags Delete)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
20
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
You now have a complete symbol table of the digital inputs and outputs in front of you.
Save your project under the name 032-100_FCProgramming.
( Project Save as ...032-100_FCProgramming Save)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
21
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
22
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Rename your new block to: "MOTOR_MANUAL", set the language to FBD and keep
automatic assignment of the number. Select the "Add new and open" check box. You are
then taken automatically to your created function block in the project view.Click "Add".
( Name: MOTOR_MANUAL Language: FBD Number: Automatic
Add new
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
23
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
24
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
A binary output signal is needed for controlling the conveyor motor. For this reason, we
first create local output tag #Conveyor_motor_manual_mode of the "Bool" type. Enter
comment "Control of the conveyor motor in manual mode" for the parameter.
( Output: Conveyor_motor_manual_mode Bool Control of the conveyor motor in
manual mode)
Add parameter #Manual_mode_active as the input interface under Input and confirm the
entry with the Enter key or by exiting the entry field. Data type "Bool" is assigned
automatically. This will be retained. Next, enter the associated comment "Manual mode
activated".
( Manual_mode_active Enter Bool Manual mode activated)
Add parameters #Pushbutton_manual_mode, #Enable_OK and #Safety_shutoff_active
as additional binary input parameters under Input and check their data types. Add
descriptive comments.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
25
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For purposes of program documentation, assign the block title, a block comment and a
helpful network title for Network 1.
( Block title: Motor control in manual mode Network 1: Control of the conveyor motor
in manual mode)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
26
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
You can see a list of instructions you can use in the program on the right side of your
programming window. Under Basic instructions Bit logic operations, find function
[=] (Assignment) and use a drag-and-drop operation to move it to Network 1 (green line
appears, mouse pointer with + symbol).
( Instructions Basic instructions Bit logic operations [=])
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
27
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Conveyor_motor_manual_mode)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
28
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Manual_mode_active)
The input of the assignment block will also be logically combined with other parameters
by an AND logic operation. To do this, first click the input of the block to which
#Manual_mode_active is already connected, so that the input line has a blue background.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
29
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Click the
icon in your logic toolbar to insert an AND logic operation between the
Double-click the second input of the & logic operation <??.?> and enter the letter "P" in
the field that appears in order to see a list of available tags starting with "P".Click the
#Pushbutton_manual_mode tag and apply with Enter.
( &- block <??.?> P #Pushbutton_manual_mode Enter)
Note: When assigning tags in this way, there is a risk of a mix-up with the global tags from the
tag table. The previously presented procedure using drag and drop from the interface
description should therefore be used preferentially.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
30
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
To ensure that the output can only be controlled when the enable conditions are met and
the safety shutoff is not active, the #Enable_OK and #Safety_shutoff_active input tags
are logically combined with the AND logic operation. To do this, click twice on the yellow
star
Add input tags #Enable_OK and #Safety_shutoff_active to your newly created inputs of
the AND block.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
31
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
32
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Under "General" in the properties of the block, you can change the "Language" to LAD
(Ladder Logic) (Properties General Language: LAD)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
33
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
34
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Assign Network 1 the name "Control conveyor tracking forward in manual/jog mode"
( Network 1:... Control conveyor motor forwards in manual mode)
Use drag-and-drop to move your "MOTOR_MANUAL [FC1]" function onto the green line
in Network 1.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
35
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
A block with the interface you defined and connections EN and ENO are inserted in
Network 1.
To insert an AND before input parameter "Enable_OK", select this input and insert the
AND by clicking the
).
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
36
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
).
To connect the block to the global tags from "Tag_table_sorting_station", we have two
options:
Either select the "Tag_table_sorting_station" in the project tree and use drag-and-drop to
move the desired global tag from the Details view to the interface of FC1
( Tag_table_sorting_station Details view. -SO2 Manual_mode_active)
Or, enter the starting letters (e.g. "-S") of the desired global tag for <??.?> and select the
global input tag "-S0" (%I0.2) from the displayed list ( Manual_mode_active -S
-S0).
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
37
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Insert the other input tags "-S3", "-K0", "-B1", "-S4" and "-A1" and insert output tag "-Q1"
(%Q0.0) at output "Conveyor_motor_manual_mode".
Negate the querying of input tags "-S4" and "-A1" by selecting them and clicking
( -S4
-A1
).
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
38
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Connect your function as shown here. You obtain the following result in the FBD
(Function Block Diagram) programming language.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
39
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
The result in the LAD (Ladder Logic) programming language has the following
appearance.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
40
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Program blocks
).
The "Info", "Compile" area shows which blocks were successfully compiled.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
41
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
).
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
42
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Note: The monitoring here is signal-related and controller-dependent. The signal states at the
terminals are indicated with TRUE or FALSE.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
43
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
The "MOTOR_MANUAL" [FC1] function called in the "Main [OB1]" organization block can
be selected directly for "Open and monitor" after right-clicking ( "MOTOR_MANUAL"
[FC1] Open and monitor).
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
44
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
icon (
Call environment
OK)
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
45
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
7 Checklist
No.
Description
10
11
12
13
14
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
Completed
46
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
8 Exercise
8.1 Task Exercise
The following functions of the sorting station process description will be planned, programmed
and tested in this chapter:
8.2 Planning
Plan the implementation of the task on your own.
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
47
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
Description
Interfaces defined
Function programmed
10
11
12
13
14
Completed
15
16
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
48
SCE Training Curriculum | TIA Portal Module 032-100, Edition 02/2016 | Digital Factory, DF FA
9 Additional information
You can find additional information as an orientation aid for initial and advanced training, for
example: Getting Started, videos, tutorials, apps, manuals, programming guidelines and trial
software/firmware, at the following link:
www.siemens.com/sce/s7-1500
For unrestricted use in educational and R&D institutions. Siemens AG 2016. All rights reserved.
SCE_EN_032-100 FC-Programming_R1503.docx
49
966574818915)11:62867(98;4
8915<=>
!
"1
2
8
#1
4
6
$
%
&79
71'0&"21295
,-./01234345/-611376869/
(98!# !)*%+
01245267829
864769564
8915
595789848915796657
2987267626
012456787891
557
456
2778797665! "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
9"
"
012456787891
557
456
2778797665! "
J.K/("$L",$'*('*)"
;M 8$./"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NM
9M G%(%(O&+)+*("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NM
@M J>($%P"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NM
@3;M QR(%.*+'=")P)*(6".'-".RR/+,.*+$'"R%$=%.6"3333333333333333333333333333333333333333333333333333333333333333333333333333333333"NM
@39M Q%=.'+S.*+$'"K/$,T)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"HM
@3@M G%$,())"+6.=(".'-",P,/+,"R%$=%.6"R%$,())+'="33333333333333333333333333333333333333333333333333333333333333333333333333333"<M
@3NM #&',*+$')"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"UM
@3HM #&',*+$'"K/$,T)".'-"+')*.',("-.*."K/$,T)"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333"VM
@3<M 8/$K./"-.*."K/$,T)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";:M
@3WM X+K%.%PE,$6R.*+K/(",$-("K/$,T)"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";;M
@3UM G%$=%.66+'="/.'=&.=()"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";9M
NM J.)T"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";@M
HM G/.''+'="3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";@M
H3;M BYB08BDAZ"5JQG"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";@M
H39M 7&*$6.*+,"6$-("E"A$'?(P$%"6$*$%3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";@M
<M 5*%&,*&%(-")*(REKPE)*(R"+')*%&,*+$')"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";NM
<3;M 0(*%+(?(".'"(I+)*+'="R%$[(,*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";NM
<39M A%(.*("."'(\"*.="*.K/("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";HM
<3@M A%(.*("'(\"*.=)"\+*>+'"."*.="*.K/("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";WM
<3NM ]6R$%*"^J.=C*.K/(C)$%*+'=C)*.*+$'^"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";UM
<3HM A%(.*("L&',*+$'"K/$,T"#F;"^YQJQ0C7_JQ^"L$%"*>(",$'?(P$%"6$*$%"+'".&*$6.*+,"6$-("3333333333"99M
<3<M 2(L+'("*>("+'*(%L.,("$L"#F;"^YQJQ0C7_JQ^"3333333333333333333333333333333333333333333333333333333333333333333333333333"9NM
<3WM G%$=%.6"#F;`"YQJQ0C7_JQ"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9WM
<3UM G%$=%.6"$%=.'+S.*+$'"K/$,T"QF;"a"A$'*%$/"$L"*>("L$%\.%-"K(/*"*%.,T+'="+'".&*$6.*+,"6$-("333333"@HM
<3VM J>("%()&/*"+'"*>("X72"bX.--(%"X$=+,c"R%$=%.66+'="/.'=&.=(">.)"*>("L$//$\+'=".RR(.%.',(3"333"N:M
<3;:M 5.?(".'-",$6R+/("*>("R%$=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"N;M
<3;;M 2$\'/$.-"*>("R%$=%.6"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"N9M
<3;9M Y$'+*$%"R%$=%.6"K/$,T)"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"N@M
<3;@M 7%,>+?("*>("R%$[(,*"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"N<M
WM A>(,T/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NWM
UM BI(%,+)("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NUM
U3;M J.)T"a"BI(%,+)("333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NUM
U39M G/.''+'="333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NUM
U3@M A>(,T/+)*"a"BI(%,+)("33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"NVM
VM 7--+*+$'./"+'L$%6.*+$'"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"H:M
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
@"
"
012456787891
557
456
2778797665! "
K010L KMLNMON
N6
P'"*>+)",>.Q*(%R"S$&"T+//"=(*"*$"U'$T"*>("V.)+,"(/(6('*)"$W".",$'*%$/"Q%$=%.6"X"*>("
YZ[\]^_\`^Y]abcYdefaghifjk"lm]d`^Y]fagnofjR"p
878qrstKsu".'-"66qrs
tKsuv"P'".--+*+$'R"S$&"T+//"V("+'*%$-&,(-"*$"c^bZ\ZwxdYyz\`^bc{"W&',*+$'"&'-"W&',*+$'"V/$,U"
Q%$=%.66+'=3"|$&"T+//"=(*"*$"U'$T"*>("nm]d`^Y]aicYdea}^\[Z\yagni}j"Q%$=%.66+'="
/.'=&.=(".'-"&)("+*"*$"Q%$=%.6"."W&',*+$'"V/$,U"~#G;".'-".'"$%=.'+.*+$'"V/$,U"~G;3"
55
7s7
>+)",>.Q*(%"V&+/-)"$'"*>(">.%-T.%(",$'W+=&%.*+$'"$W"5P7PA"5"AH;I;<#FE"HD2H3"
$T(?(%R"$*>(%">.%-T.%(",$'W+=&%.*+$')"*>.*">.?("-+=+*./"+'Q&*".'-"$&*Q&*",.%-)",.'"V("&)(-3"
|$&",.'"&)("*>("W$//$T+'="Q%$(,*"W$%"*>+)",>.Q*(%R"W$%"(J.6Q/("
5ABCBDC:;9C;:;CC.%-T.%(CA$'W+=&%.*+$'CAH;I;<#3.Q;E"
45!
B?(%S",$'*%$//(%"~AH",$'*.+')".'"56789s!s
R"T>+,>"$%=.'+()".//"W&',*+$')".'-"
Q%$,())()"$W"*>("AH"*>.*".%("'$*".))$,+.*(-"T+*>".")Q(,+W+,",$'*%$/"*.)U3">("*.)U)"$W"*>("
$Q(%.*+'=")S)*(6"+',/&-("*>("W$//$T+'="
" H(%W$%6+'="."T.%6"%()*.%*"
" Q-.*+'="*>("Q%$,())"+6.=("$W"*>("+'Q&*)".'-"$&*Q&*)"
" AS,/+,.//S",.//+'="*>("&)(%"Q%$=%.6"
" 2(*(,*+'="+'*(%%&Q*)".'-",.//+'="+'*(%%&Q*"G)"
" 2(*(,*+'=".'-">.'-/+'="(%%$%)"
" .'.=+'="6(6$%S".%(.)"
>("$Q(%.*+'=")S)*(6"+)".'"+'*(=%./",$6Q$'('*"$W"*>("AH".'-",$6()"Q%(F+')*.//(-3"
>("
s55956
",$'*.+')".//"W&',*+$')"*>.*".%("'(,()).%S"W$%"(J(,&*+'="S$&%")Q(,+W+,"
.&*$6.*+$'"*.)U3">("*.)U)"$W"*>("&)(%"Q%$=%.6"+',/&-("*>("W$//$T+'="
" A>(,U+'="*>("V.)+,"%(&+%(6('*)"W$%"."T.%6"%()*.%*"&)+'=")*.%*&Q"G)"
" H%$,())+'="$W"Q%$,())"-.*.R"+3(3".,*+?.*+$'"$W"$&*Q&*")+='./)".)"."W&',*+$'"$W"*>("+'Q&*"
)+='./")*.*()"
" 0(.,*+$'"*$"+'*(%%&Q*)".'-"+'*(%%&Q*"+'Q&*)"
" B%%$%">.'-/+'="-&%+'="'$%6./"Q%$=%.6"(J(,&*+$'"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
E39"J59687K678LMN
O%=.'+P.*+$'"Q/$,R)"SOG)T"U$%6"*>("+'*(%U.,("Q(*V(('"*>("$W(%.*+'=")X)*(6"$U"*>(",$'*%$//(%"
SAHYT".'-"*>(".WW/+,.*+$'"W%$=%.63"Z>(X".%(",.//(-"U%$6"*>("$W(%.*+'=")X)*(6".'-",$'*%$/"*>("
U$//$V+'="$W(%.*+$')["
\" AX,/+,"W%$=%.6"W%$,())+'="S(3=3"OG;T"
\" 5*.%*&W",>.%.,*(%+)*+,)"$U"*>(",$'*%$//(%"
\" ]'*(%%&W*F-%+?('"W%$=%.6"W%$,())+'="
\" B%%$%">.'-/+'="
7"W%$^(,*"6&)*">.?("_`abcd_`ef_geb`ahibjkalbcajmjiejancbdc_oancbjpqqe`d".*"."6+'+6&63"
7'"OG"+)",.//(-"QX"."qg_cgaprp`g".)")>$V'"+'"#+=&%(";3"]'".--+*+$'s"*>("+'-+?+-&./"OG)">.?("
-(U+'(-"W%+$%+*+()")$"*>.*s"U$%"(I.6W/(s".'"OGt9"U$%"(%%$%">.'-/+'=",.'"+'*(%%&W*"*>(",X,/+,"OG;3"
"
u~|
zyxzv~xz{|w
{~vx}xy~
vxw{|}
uvwxyz{|}~zw
"
#+=&%(";["5*.%*"(?('*)"+'"*>("$W(%.*+'=")X)*(6".'-"OG",.//)"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;@:E3-$,I"
@"
"
012456787891
557
456
2778797665! "
J>('".")*.%*"(?('*"$,,&%)K"*>("L$//$M+'="%(.,*+$')".%("N$))+O/(P"
Q" RL".'"SF">.)"O(('".))+='(-"*$"*>("(?('*K"*>+)"(?('*"*%+==(%)"*>("(I(,&*+$'"$L"*>(".))+='(-"
SF3"RL"*>("N%+$%+*T"$L"*>(".))+='(-"SF"+)"=%(.*(%"*>.'"*>("N%+$%+*T"$L"*>("SF"*>.*"+)",&%%('*/T"
O(+'="(I(,&*(-K"+*"+)"(I(,&*(-"+66(-+.*(/T"U+'*(%%&N*V3"RL"'$*K"*>(".))+='(-"SF"M.+*)"&'*+/"
*>(">+=>(%EN%+$%+*T"SF">.)"O(('",$6N/(*(/T"(I(,&*(-3"
Q" RL".'"SF"+)"'$*".))+='(-"*$"*>("(?('*K"*>("-(L.&/*")T)*(6"%(.,*+$'"+)"N(%L$%6(-3"
"
W.O/(";"=+?()".",$&N/("$L"(I.6N/()"$L")*.%*"(?('*)"L$%"."5RX7WR@"5YE;H::K"*>(+%"N$))+O/("SF"
'&6O(%U)V".'-"*>("-(L.&/*")T)*(6"%(.,*+$'"+'"*>("(?('*"*>("$%=.'+Z.*+$'"O/$,["+)"'$*"N%()('*"+'"
*>(",$'*%$//(%3""
065\8
]]7^_`
a6
]!]
8
^5]
5678
5*.%*&N"
R='$%("
;::K"b";9D"
cdefgehijkljmnh
R='$%("
;K"b";9D"
W+6(E$LE-.T"+'*(%%&N*"
E"
;:"*$";YK"b";9D"
oN-.*("+'*(%%&N*"
H<"
R='$%("
5,.'",T,/("6$'+*$%+'="*+6("
p:"
5WSG"
(I,((-(-"$',("
2+.='$)*+,"+'*(%%&N*"
p9"
R='$%("
;9;"
5WSG"
G%$=%.66+'="(%%$%""
;99"
R='$%("
RqS".,,())"(%%$%"
W.O/(";P"SF"'&6O(%)"L$%"?.%+$&)")*.%*"(?('*)"
"
J>('"*>(",T,/+,"&)(%"N%$=%.6".--%())()"*>("+'N&*)"URV".'-"$&*N&*)"USVK"+*"-$()"'$*"s&(%T"*>("
)+='./")*.*()"-+%(,*/T"L%$6"*>("+'N&*q$&*N&*"6$-&/()3"R')*(.-K"+*".,,())()"."6(6$%T".%(."$L"*>("
@Go3"W>+)"6(6$%T".%(.",$'*.+')".'"+6.=("$L"*>(")+='./")*.*()".'-"+)",.//(-"*>("r5]]
7
693""
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
<"
"
012456787891
557
456
2778797665! "
K>(",L,/+,"M%$=%.6"M%$,())+'=")(N&(',("+)".)"O$//$P)Q"
;3" 7*"*>(")*.%*"$O"*>(",L,/+,"M%$=%.6R"."N&(%L"+)")('*"*$"-(*(%6+'("P>(*>(%"$%"'$*"*>("
+'-+?+-&./"+'M&*)".%("('(%=+S(-3"K>+)")*.*&)"$O"*>("+'M&*)"+)")*$%(-"+'"*>("T5UU7
69VW
78T
UXY3"Z'"-$+'=")$R"*>("+'O$%6.*+$'";"$%"[\+=>["+)")*$%(-"O$%"('(%=+S(-"+'M&*)".'-"*>("
+'O$%6.*+$'":"$%"[]$P["O$%"-(F('(%=+S(-"+'M&*)3""
93" K>("AH^"'$P"(J(,&*()"*>("M%$=%.6")*$%(-"+'"*>(",L,/+,"$%=.'+S.*+$'"_/$,`3"#$%"*>("
%(N&+%(-"+'M&*"+'O$%6.*+$'R"*>("AH^".,,())()"*>("M%(?+$&)/L"%(.-"T5UU7
69VW
78T
UXY".'-"*>("%()&/*)"$O"/$=+,"$M(%.*+$'"a0]b)c".%("P%+**('"*$".")$F,.//(-"T5UU
7
69VW
T
UXdY3""
E3" 7*"*>("('-"$O"*>(",L,/(R"*>("T5UU7
69VW
T
Uadc""+)"*%.')O(%%(-".)"*>("
)+='./")*.*("*$"*>("$&*M&*"6$-&/()".'-"*>()(".%("('(%=+S(-"$%"-(F('(%=+S(-3"K>(")(N&(',("
*>('",$'*+'&()".=.+'"P+*>"Z*(6";3""
"
" 3"5.?(")*.*&)"$O"+'M&*)"+'"HZZ3"
"
"
"
"
H]A"M%$=%.6"+'"*>("
"
M%$=%.6"6(6$%L""
"
""H%$,())+'="*>("
;)*"+')*%&,*+$'"
+')*%&,*+$'F_LF
9'-"+')*%&,*+$'"
"M+'%)$*=%&%.,6"
*+$'"P+*>".,,())"
E%-"+')*%&,*+$'"
"*$"HZZ".'-"HZ""
*>"+')*%&,*+$'"
333"
"
"
"
"
"
].)*"+')*%&,*+$'"
"
"
"
K%.')O(%")*.*&)"O%$6"*>("HZ"*$"*>("$&*M&*)3"
666
7
"
5!
66U
d
#+=&%("9Q"AL,/+,"M%$=%.6"M%$,())+'="
efghijklmnopqmnolmnrstnummvwnxyznolpwnwm{|mu}mnpwn}~mvn}}mnopqmnklpwnvmmuvwnpuno|zun
yunolmnu|qmzn~uvnomnyxnpuwoz|}opyuwn~uvnolmnzy}mwwyznmzxyzq~u}mnyxnolmn}yuozymzn
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
E3K"
878L
#&',*+$')"M#A)N".%("/$=+,"O/$,P)"Q+*>$&*"6(6$%R3"S>(R"TUVWXYZX[U\UX]W]Z^_"+'"Q>+,>"
?./&()"$`"O/$,P"a.%.6(*(%)",.'"O(")*$%(-3"S>(%(`$%(b".//"+'*(%`.,("a.%.6(*(%)"6&)*"O("
,$''(,*(-"Q>('"."`&',*+$'"+)",.//(-3"S$")*$%("-.*."a(%6.'('*/Rb"=/$O./"-.*."O/$,P)"6&)*"O("
,%(.*(-"O(`$%(>.'-3"
7"`&',*+$'",$'*.+')"."a%$=%.6"*>.*"+)"(J(,&*(-"Q>('(?(%"*>("`&',*+$'"+)",.//(-"`%$6".'$*>(%"
,$-("O/$,P3""
#&',*+$')",.'"O("&)(-b"`$%"(J.6a/(b"`$%"*>("`$//$Q+'="a&%a$)()c"
d" e.*>"`&',*+$')"f"*>.*"%(*&%'"."%()&/*"-(a('-('*"$'"+'a&*"?./&()3"
d" S(,>'$/$=+,./"`&',*+$')"f")&,>".)"+'-+?+-&./",$'*%$/)"Q+*>"O+'.%R"/$=+,"$a(%.*+$')3"
7"`&',*+$'",.'"./)$"O(",.//(-")(?(%./"*+6()".*"-+``(%('*"a$+'*)"Q+*>+'"."a%$=%.63"
"
"
"
"
"
i%=.'+g.*+$'"O/$,P""
"
e.+'"hiG;j"
"
"
#&',*+$'"
A.//)"*>("
"
eiSi0Ce7Dk7l"
eiSi0C
e7Dk7l
"
"
h#A;j"
h#A;j"`&',*+$'"
"
"
"
A$'*.+')"."a%$=%.6"`$%"
"
,$'*%$//+'=".",$'?(R$%"
+'"6.'&./"6$-(b"`$%"
"
(J.6a/(3""
"
"
S>("`&',*+$'">.)"'$"
"
6(6$%R3"
"
"
"
"
"
"
"
#+=&%("Ec"#&',*+$'"Q+*>",.//"`%$6"$%=.'+g.*+$'"O/$,P"e.+'"hiG;j"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
E3I"
878KLM6878M6866KLM
#&',*+$'"N/$,O)".%(",$-("N/$,O)"*>.*")*$%("*>(+%"+'P&*Q"$&*P&*".'-"+'F$&*"*.=)".)"R(//".)")*.*+,"
*.=)"P(%6.'('*/S"+'"+')*.',("-.*."N/$,O)Q")$"*>.*"*>(S"TUVWTXTYZT[ZVWT\]VUW]^VW[Z_`aW^TbW[VVcW
VdV`e]Vf3"#$%"*>+)"%(.)$'Q"*>(S".%("./)$"%(g(%%(-"*$".)"N/$,O)"R+*>"h6(6$%Sh3"
#&',*+$'"N/$,O)",.'"./)$"$P(%.*("R+*>"*(6P$%.%S"*.=)3"i(6P$%.%S"*.=)".%("'$*")*$%(-"+'"*>("
+')*.',("2GQ">$R(?(%3"j')*(.-Q"*>(S".%("$'/S".?.+/.N/("g$%"$'(",S,/(3"
#&',*+$'"N/$,O)".%("&)(-"g$%"*.)O)"*>.*",.''$*"N("+6P/(6('*(-"R+*>"g&',*+$')k"
l" m>('(?(%"*+6(%)".'-",$&'*(%)".%("%(n&+%(-"+'"*>("N/$,O)3"
l" m>('(?(%"+'g$%6.*+$'"6&)*"N(").?(-"+'"*>("P%$=%.6Q")&,>".)"P%(F)(/(,*+$'"$g"*>("
$P(%.*+'="6$-("R+*>"."N&**$'3"
#&',*+$'"N/$,O)".%("./R.S)"(J(,&*(-"R>('",.//(-"g%$6".'$*>(%",$-("N/$,O3"7"g&',*+$'"N/$,O"
,.'"./)$"N(",.//(-")(?(%./"*+6()".*"-+gg(%('*"P$+'*)"R+*>+'"."P%$=%.63"i>+)"g.,+/+*.*()"*>("
P%$=%.66+'="$g"g%(n&('*/S"%(,&%%+'=",$6P/(J"g&',*+$')3"
7",.//"$g"."g&',*+$'"N/$,O"+)"%(g(%%(-"*$".)".'"+')*.',(3"B.,>"+')*.',("$g"."g&',*+$'"N/$,O"+)"
.))+='(-"."6(6$%S".%(."*>.*",$'*.+')"*>("-.*."*>.*"*>("g&',*+$'"N/$,O"&)()3"i>+)"6(6$%S"+)"
6.-(".?.+/.N/("NS"-.*."N/$,O)",%(.*(-".&*$6.*+,.//S"NS"*>(")$g*R.%(3""
j*"+)"./)$"P$))+N/("*$"P%$?+-("6(6$%S"g$%"6&/*+P/("+')*.',()"+'"$'("-.*."N/$,O"+'"*>("g$%6"$g"."
778M683"i>("6.J+6&6")+o("$g"+')*.',("-.*."N/$,O)"?.%+()"-(P('-+'="$'"*>("AHp3"i>("
*.=)"-(,/.%(-"+'"*>("g&',*+$'"N/$,O"-(*(%6+'("*>(")*%&,*&%("$g"*>("+')*.',("-.*."N/$,O3"
"
"
"
"
j')*.',("-.*."N/$,O"
"
rtit0C7pitC2G;"
t%
=
.
'
+
o
.
*
+
$
'
"
N
/
$
,
O
"
"
s2G;u".)"6(6$%S""
"
r.
+
'
"
s
tG;
u
"
g$%"*>(",.//"$g"
#&',*+$'"N/$,O"
"
"
&',*+$'"N/$,O"
rtit0C7pit"s#G;u" grtit0C
A.//)"g&',*+$'"N/$,O"
7pit"
"
"
rtit0C
7pit"
s
#G;
u
"
s
#G;
u
"
A$'*.+')"."P%$=%.6"g$%"
"
*$=(*>(%"R+*>"+*)"
,$'*%$//+'=".",$'?(S$%"
+
'
)
*
.
'
,
(
"
.
*
.
"
N
/
$
,
O
"
"
+'".&*$6.*+,"6$-(Q"g$%"
rtit0C7pitC2G;"
(J.6P/("
"
s2G;u"
i>("g&',*+$'"N/$,O"
"
&)()"+')*.',("-.*."
N/$,O"
"
rtit0C7pitC2G;"
"
s2G;u".)"6(6$%S"+'"
*>+)",.//3"
"
"
"
"
"
"
#+=&%("qk"#&',*+$'"N/$,O".'-"+')*.',("R+*>",.//"g%$6"$%=.'+o.*+$'"N/$,O"r.+'"stG;u
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
N'",$'*%.)*"*$"/$=+,"O/$,P)Q"-.*."O/$,P)",$'*.+'"'$"+')*%&,*+$')3"0.*>(%Q"*>(R")(%?(".)"6(6$%R"
S$%"&)(%"-.*.3"
2.*."O/$,P)"*>&)",$'*.+'"?.%+.O/("-.*."*>.*"+)"&)(-"OR"*>("&)(%"T%$=%.63"U$&",.'"-(S+'("*>("
)*%&,*&%("$S"=/$O./"-.*."O/$,P)".)"%(V&+%(-3""
8/$O./"-.*."O/$,P)")*$%("-.*."*>.*",.'"O("&)(-"WXYZ[[Y\]^_`YW[\abc"d)(("#+=&%("He3"f'/R"*>("
.))$,+.*(-"S&',*+$'"O/$,P")>$&/-".,,())"+')*.',("-.*."O/$,P)3"g>("6.I+6&6")+h("$S"-.*."
O/$,P)"?.%+()"-(T('-+'="$'"*>("@Gi3""
#&',*+$'B;:"
#&',*+$'B;;"
#&',*+$'B"
O/$,PB;9"
8/$O./"2F"
d2FB8/$O./e" 7,,())"S$%".//"O/$,P)"
N')*.',("2F" ,())"$'/R"S$%"S&',*+$'"-.*."
d2FBN')*.',(e" 7,
O/$,PB;9"
"
#+=&%("Hj"2+SS(%(',("O(*k(('"=/$O./"2F".'-"+')*.',("2F3"
"
7TT/+,.*+$'"(I.6T/()"S$%"9K666KLM".%(j"
l" 5.?+'="$S"+'S$%6.*+$'".O$&*".")*$%.=(")R)*(63"mn>+,>"T%$-&,*"+)"/$,.*(-"k>(%(om"
l" 5.?+'="$S"%(,+T()"S$%"T.%*+,&/.%"T%$-&,*)3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
;:"
"
012456787891
557
456
2778797665! "
7"&)(%"P%$=%.6",.'"Q(",%(.*(-"R+*>"/+'(.%"$%")*%&,*&%(-"P%$=%.66+'=3"STUVWXYZX[\XW]]TU\"
R%+*()"*>("('*+%("&)(%"P%$=%.6"+'"*>(",^,/("_F`"Q&*"+)"$'/^")&+*.Q/("a$%"?(%^")+6P/("P%$=%.6)"a$%"
R>+,>"$*>(%"/())"(IP(')+?(",$'*%$/")^)*(6)`")&,>".)"b_8_c`",.'"'$R"Q("&)(-3"
deXfgefXVhYZX[\XW]]TU\"+)"./R.^)"%(,$66('-(-"a$%"6$%(",$6P/(I"P%$=%.6)3"i(%(`"*>("
$?(%.//".&*$6.*+$'"*.)j",.'"Q("Q%$j('"-$R'"+'*$")6.//")&QE*.)j)"+'"$%-(%"*$"+6P/(6('*"."
)$/&*+$'"a$%"*>(6"+'"a&',*+$')".'-"a&',*+$'"Q/$,j)3"
k'"*>+)",.)(`"/+Q%.%^E,$6P.*+Q/("/$=+,"Q/$,j)")>$&/-"Q(",%(.*(-"P%(a(%('*+.//^3"l>+)"6(.')"*>.*"
*>("+'P&*".'-"$&*P&*"P.%.6(*(%)"$a"."a&',*+$'"$%"a&',*+$'"Q/$,j".%("-(a+'(-"=('(%.//^".'-"$'/^"
)&PP/+(-"R+*>"*>(",&%%('*"=/$Q./"*.=)"m+'P&*)n$&*P&*)o"R>('"*>("Q/$,j"+)"&)(-3""
"
#+=&%("<p"b+Q%.%^E,$6P.*+Q/("a&',*+$'"R+*>",.//"+'"_F;"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
"
;;"
"
012456787891
557
456
2778797665! "
L>(".?.+/.M/("N%$=%.66+'="/.'=&.=()"O$%"N%$=%.66+'="O&',*+$')".%("#&',*+$'"F/$,P"2+.=%.6"
Q#F2RS"T.--(%"T$=+,"QT72RS"5*.*(6('*"T+)*"Q5LTR".'-"5*%&,*&%(-"@$'*%$/"T.'=&.=("Q5@TR3"#$%"
O&',*+$'"M/$,P)S"*>("807GU"N%$=%.66+'="/.'=&.=("+)".--+*+$'.//V".?.+/.M/("O$%"N%$=%.66+'="
=%.N>+,./")*(N")(W&(',()3"
L>("XYZ[\]^Z_`a^[b_c]defdg_hX`ci"N%$=%.66+'="/.'=&.=("j+//"M("N%()('*(-"+'"*>("
O$//$j+'=3_
#F2"+)"."=%.N>+,./"N%$=%.66+'="/.'=&.=(3"L>("%(N%()('*.*+$'"+)"M.)(-"$'"(/(,*%$'+,"
)j+*,>+'=")V)*(6)3"L>("N%$=%.6"+)"6.NN(-"+'"'(*j$%P)3"7"'(*j$%P",$'*.+')"$'("$%"6$%("/$=+,"
$N(%.*+$'"N.*>)3"F+'.%V".'-".'./$=")+='./)".%("/+'P(-"MV"M$I()3"L>("=%.N>+,./"/$=+,")V6M$/)"
P'$j'"O%$6"F$$/(.'"./=(M%.".%("&)(-"*$"%(N%()('*"*>("M+'.%V"/$=+,3"
k$&",.'"&)("M+'.%V"O&',*+$')"*$"W&(%V"M+'.%V"$N(%.'-)".'-"*$"/$=+,.//V",$6M+'("*>(+%")+='./"
)*.*()3"L>("O$//$j+'="+')*%&,*+$')".%("(I.6N/()"$O"M+'.%V"O&',*+$')l"m7C2"$N(%.*+$'mS"mn0"
$N(%.*+$'m".'-"mAo@Tp5qrA"n0"$N(%.*+$'m3"L>()(".%(")>$j'"+'"#+=&%("s3"
"
#+=&%("sl"F+'.%V"O&',*+$')"+'"#F2".'-".))$,+.*(-"/$=+,"*.M/("
"
k$&",.'"*>&)"&)(")+6N/("+')*%&,*+$')S"O$%"(I.6N/(S"*$",$'*%$/"M+'.%V"$&*N&*)S"(?./&.*("(-=()"
.'-"(I(,&*("t&6N"O&',*+$')"+'"*>("N%$=%.63"
G%$=%.6"(/(6('*)")&,>".)"qA@"*+6(%)".'-"qA@",$&'*(%)"N%$?+-(",$6N/(I"+')*%&,*+$')3"
L>("(6N*V"M$I")(%?()".)"."N/.,(>$/-(%"+'"j>+,>"V$&",.'")(/(,*"*>("%(W&+%(-"+')*%&,*+$'3"
A'.M/("+'N&*"AC"Q('.M/(Ru"A'.M/("$&*N&*"ACn"Q('.M/("$&*N&*R"6(,>.'+)6l"
v" 7'"+')*%&,*+$'"j+*>$&*"ACuACn"6(,>.'+)6"+)"(I(,&*(-"+'-(N('-('*"$O"*>(")+='./")*.*(".*"
*>("M$I"+'N&*)3"
v" q')*%&,*+$')"j+*>"ACuACn"6(,>.'+)6".%("$'/V"(I(,&*(-"+O"('.M/("+'N&*"mAC"+'N&*">.)"
)+='./")*.*("m;m3"w>('"*>("M$I"+)"N%$,())(-",$%%(,*/VS"('.M/("$&*N&*"mACnm">.)")+='./"
)*.*("m;m3"7)")$$'".)".'"(%%$%"$,,&%)"-&%+'="*>("N%$,())+'=S"*>("mACnm"('.M/("$&*N&*"+)"
%()(*3"qO"('.M/("+'N&*"AC"+)"'$*",$''(,*(-S"*>("M$I"+)"./j.V)"(I(,&*(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
;9"
"
012456787891
557
456
2778797665! "
J46KL
M>("N$//$O+'="N&',*+$')"$N"*>(")$%*+'=")*.*+$'"P%$,())"-(),%+P*+$'"O+//"Q("P/.''(-R"P%$=%.66(-"
.'-"*()*(-"+'"*>+)",>.P*(%S"
T" 7&*$6.*+,"6$-("E"A$'?(U$%"6$*$%"
V688789
M>("P%$=%.66+'="$N".//"N&',*+$')"+'"WF;"+)"'$*"%(,$66('-(-"N$%"%(.)$')"$N",/.%+*U".'-"
%(&).Q+/+*U3"M>("6.X$%+*U"$N"*>("P%$=%.6",$-("O+//"*>(%(N$%("Q("6$?(-"+'*$"N&',*+$')"Y#A)Z".'-"
N&',*+$'"Q/$,[)"Y#F)Z3"M>("-(,+)+$'"$'"O>+,>"N&',*+$')"+)"*$"Q("6$?(-"*$"*>("#F".'-"O>+,>"+)"
*$"%&'"+'"WF";"+)"P/.''(-"Q(/$O3"
H3;"22\]2^1_04`
M>("BaB08BDAb"5MWG"-$()"'$*"%(c&+%(".")(P.%.*("N&',*+$'3"d&)*"/+[("*>("$P(%.*+'="6$-(R"
*>(",&%%('*")*.*("$N"*>("BaB08BDAb"5MWG"%(/.U",.'"Q("&)(-"-+%(,*/U".*"*>("Q/$,[)3"
H39"
67
18e!5
5
7&*$6.*+,"6$-("$N"*>(",$'?(U$%"6$*$%"+)"*$"Q("(',.P)&/.*(-"+'"."N&',*+$'"Q/$,["Y#FZ"
faWMW0C7gMWf3"W'"*>("$'(">.'-R"*>+)"P%()(%?()"*>(",/.%+*U"$N"WF;3"W'"*>("$*>(%">.'-R"+*"
('.Q/()"%(&)("+N".'$*>(%",$'?(U$%"Q(/*"+)".--(-"*$"*>(")*.*+$'3"M.Q/("9"/+)*)"*>("P/.''(-"
P.%.6(*(%)3"
8h
2.*." A$66('*"
*FWWi
UP("" 7&*$6.*+,"6$-(".,*+?.*(-"
7&*$6.*+,C6$-(C.,*+?("
5*.%*"
FWWi" G&)>Q&**$'".&*$6.*+,")*.%*"
5*$P"
FWWi" G&)>Q&**$'".&*$6.*+,")*$P"
B'.Q/(CWj"
FWWi" 7//"('.Q/(",$'-+*+$')"Wj"
FWWi" 5.N(*U")>&*$NN".,*+?(R"(3=3"(6(%=(',U")*$P"
5.N(*UC)>&*$NNC.,*+?("
P%())(-"
`
h
"
"
'*%$/"$N"*>(",$'?(U$%"6$*$%"+'".&*$6.*+,"
A$'?(U$%C6$*$%C.&*$6.*+,C6$-(" FWWi" A$
6$-("
067
a(6$%UC.&*$6.*+,C)*.%*C)*$P" FWWi" a(6$%U"&)(-"N$%")*.%*k)*$P".&*$6.*+,"6$-("
M.Q/("9S"G.%.6(*(%)"N$%"#F"faWMW0C7gMWf"
M>("a(6$%UC.&*$6.*+,C)*.%*C)*$P"+)"/.*,>(-"O+*>"5*.%*"Q&*"$'/U"+N"*>("%()(*",$'-+*+$')".%("'$*"
P%()('*3""
M>("a(6$%UC.&*$6.*+,C)*.%*C)*$P"+)"%()(*"+N"5*$P"+)"P%()('*"$%").N(*U")>&*$NN"+)".,*+?("$%"
.&*$6.*+,"6$-("+)"'$*".,*+?.*(-"Y6.'&./"6$-(Z3"
M>("A$'?(U$%C6$*$%C.&*$6.*+,C6$-("$&*P&*"+)",$'*%$//(-"O>('"
a(6$%UC.&*$6.*+,C)*.%*C)*$P"+)")(*".'-"*>("('.Q/(",$'-+*+$')".%("6(*3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
;@"
"
012456787891
557
456
2778797665! "
05
5KLM!KL78K5
78K
N$&",.'"O+'-"+')*%&,*+$')"$'">$P"*$",.%%Q"$&*"R/.''+'="S(/$P3"TO"Q$&"./%(.-Q">.?("."=$$-"
&'-(%)*.'-+'="$O"(?(%Q*>+'=U"+*"P+//"S(")&OO+,+('*"*$"O$,&)"$'"*>("'&6S(%(-")*(R)3"V*>(%P+)(U"
)+6R/Q"O$//$P"*>("-(*.+/(-")*(R)"+'"*>("+')*%&,*+$')3"
<3;"W57X68Y7K789L5Z
["G(O$%("P(",.'")*.%*"R%$=%.66+'="*>("O&',*+$'"S/$,\"]#G^"_`VaV0C7baV_U"P("'((-"."
R%$c(,*"P+*>".">.%-P.%(",$'O+=&%.*+$'"](3=3"
5ABCBDC:;9C;:;Cd.%-P.%(CA$'O+=&%.*+$'C5eF;I;<#C0;I:93f.R^3"a$"%(*%+(?(".'"
(J+)*+'="R%$c(,*"*>.*">.)"S(('".%,>+?(-U"Q$&"6&)*")(/(,*"*>("%(/(?.'*".%,>+?("P+*>"["
H%$c(,*"["0(*%+(?("+'"*>("R%$c(,*"?+(P3"A$'O+%6"Q$&%")(/(,*+$'"P+*>"VR('3"]["H%$c(,*"["
0(*%+(?("["5(/(,*"."3f.R".%,>+?("["VR('^"
"
"
"
["a>("'(J*")*(R"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%Q"P>(%("*>("%(*%+(?(-"R%$c(,*"P+//"S(")*$%(-3"
A$'O+%6"Q$&%")(/(,*+$'"P+*>"_Vg_3"]["a.%=(*"-+%(,*$%Q"["Vg^"
"
"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
;@"
"
012456787891
557
456
2778797665! "
<39"15668J696K
L"M'"*>("N%$O(,*"?+(PQ"'.?+=.*("*$"*>("L"HRA"*.=)"$S"T$&%",$'*%$//(%".'-",%(.*("."'(P"*.="
*.U/("UT"-$&U/(F,/+,V+'="L"7--"'(P"*.="*.U/(3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;@:E3-$,I"
"
;@"
"
012456787891
557
456
2778797665! "
J"0('.6("*>("*.="*.K/("L$&"M&)*",%(.*(-".)"NO.=B*.K/(B)$%*+'=B)*.*+$'N"PJ"%+=>*E,/+,Q"
NO.=B*.K/(B;N"J"N0('.6(N"J"O.=B*.K/(B)$%*+'=B)*.*+$'R3"
J"ST('"*>+)"*.="*.K/("U+*>"."-$&K/(E,/+,Q3"PJ"O.=B*.K/(B)$%*+'=B)*.*+$'R"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
;<"
"
012456787891
557
456
2778797665! "
<3E"1568K69LK7M786696N
O"7--"*>("'.6("P;".'-",$'Q+%6"*>("('*%R"S+*>"*>("B'*(%"T(R3"UQ"R$&">.?("'$*"R(*",%(.*(-"
.--+*+$'./"*.=)V"WU7"H$%*./"'$S".&*$6.*+,.//R".))+=')"-.*."*RX("YG$$/Y".'-".--%())"ZU:3:"
[U":3:\"[O"]7--^"O"P;"O"B'*(%\3"
"
O"A>.'=("*>(".--%())"*$"ZP:3:"[P":3:\"_R"('*(%+'="*>+)"-+%(,*/R"$%"_R",/+,T+'="*>("-%$XF
-$S'".%%$S"*$"$X('"*>("7--%())+'="6('&V",>.'=+'="*>("$X(%.'-"+-('*+Q+(%"*$"P".'-"
,$'Q+%6+'="S+*>"B'*(%"$%"_R",/+,T+'="*>(",>(,T"6.%T3"[O"ZU:3:"O"`X(%.'-"+-('*+Q+(%"O"P"
O" \"
O"B'*(%"*>("YA$'?(R$%"6$*$%"a;"Q$%S.%-)"Q+J(-")X((-Y",$66('*"Q$%"*>("*.=3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
"
;@"
"
012456787891
557
456
2778797665! "
K"7--"."'(L"M9"*.="+'"/+'("93"NO7"H$%*./">.)".&*$6.*+,.//P".))+='(-"*>(").6("-.*."*PQ(".)"
+'"/+'(";".'-">.)"+',%(6('*(-"*>(".--%())"RP";"*$"SM:3;"TM:3;U3"B'*(%"*>(",$66('*"
VA$'?(P$%"6$*$%"W;"R.,XL.%-)"Y+J(-")Q((-V3""
TK"Z7--["K"M9"K"B'*(%"K"A$66('*"K"A$'?(P$%"6$*$%"W;"R.,XL.%-)"Y+J(-")Q((-U"
"
K"N$"+')(%*".'"(J+)*+'=")P6R$/"*.R/(b"%+=>*F,/+,X"$'".'"(6Q*P"Y+(/-"$Y"*>(",%(.*(-"
VN.=C*.R/(C)$%*+'=C)*.*+$'V3"5(/(,*"VO6Q$%*"Y+/(V"+'"*>(")>$%*,&*"6('&3"
TK"0+=>*F,/+,X"+'".'"(6Q*P"Y+(/-"$Y"*>("*.="*.R/("K"O6Q$%*"Y+/(U"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
;@"
"
012456787891
557
456
2778797665! "
K"5(/(,*"*>("-()+%(-")L6M$/"*.M/("N(3=3"+'"3J/)J"O$%6.*P".'-",$'O+%6"*>(")(/(,*+$'"Q+*>"
RST('R3"
NK"5ABCBDC:9:FUVVWXYZW[Y\]^W_`a[bcZW_[Y[b`cdeK"ST('P"
"
K"f>('"*>("+6T$%*"+)"O+'+)>(-g"L$&"Q+//")((".",$'O+%6.*+$'"Q+'-$Q".'-">.?(".'"$TT$%*&'+*L"
*$"?+(Q"*>("/$="O+/("O$%"*>("+6T$%*3"A/+,h"K"Si3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
;@"
"
012456787891
557
456
2778797665! "
J"K$&",.'")(("*>.*")$6(".--%())()">.?("L(('">+=>/+=>*(-"+'"$%.'=(3"M>()(".%("-&N/+,.*("
.--%())()".'-"*>("'.6()"$O"*>(".))$,+.*(-"*.=)">.?("L(('"'&6L(%(-".&*$6.*+,.//P"*$"
.?$+-",$'O&)+$'3"
J"2(/(*("*>("-&N/+,.*("*.=)"LP")(/(,*+'="*>("/+'()".'-"N%())+'="*>("2(/"Q(P"$'"P$&%"
Q(PL$.%-"$%"LP")(/(,*+'="R2(/(*(R"+'"*>(")>$%*,&*"6('&3"
SJ"0+=>*E,/+,Q"$'")(/(,*(-"*.=)"J"2(/(*(T"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
"
9:"
"
012456787891
557
456
2778797665! "
J"K$&"'$L">.?(".",$6M/(*(")N6O$/"*.O/("$P"*>("-+=+*./"+'M&*)".'-"$&*M&*)"+'"P%$'*"$P"N$&3"
5.?("N$&%"M%$Q(,*"&'-(%"*>("'.6(":D9E;::B#@G%$=%.66+'=3"
RJ"G%$Q(,*"J"5.?(".)"333"J:D9E9::B#FG%$=%.66+'="J"5.?(S"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
"
9;"
"
012456787891
557
456
2778797665! "
<3H"156J
878KL MNO4OPQR4ONJ5S8T!5
5786
67
U"V'"*>("GW@"X%$=%.66+'=")(,*+$'"$Y"*>("X$%*./"?+(Z[",/+,\"]7--"'(Z"^/$,\]"*$",%(.*("."'(Z"
Y&',*+$'"^/$,\3"
_U"GW@"X%$=%.66+'="U"7--"'(Z"^/$,\"U"
`""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
"
99"
"
012456787891
557
456
2778797665! "
J"0('.6("K$&%"'(L"M/$,N"*$O"PQRSR0C7TSRPU")(*"*>("/.'=&.=("*$"#F2".'-"N((V"
.&*$6.*+,".))+='6('*"$W"*>("'&6M(%3"5(/(,*"*>("P7--"'(L".'-"$V('P",>(,N"M$I3"X$&".%("
*>('"*.N('".&*$6.*+,.//K"*$"K$&%",%(.*(-"W&',*+$'"M/$,N"+'"*>("V%$Y(,*"?+(L3A/+,N"P7--P3"
ZJ"D.6(O"QRSR0C7TSRJ[.'=&.=(O"#F2"J"D&6M(%O"7&*$6.*+,"J""7--"'(L".'-"
$V('"J"7--\"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
"
9@"
"
012456787891
557
456
2778797665! "
<3<"K78L785K6KMNO4OPQR4ON
S"TU"V$&")(/(,*(-"W7--"'(X".'-"$Y('WZ"*>("Y%$[(,*"?+(X"$Y(')"X+*>"."X+'-$X"U$%",%(.*+'="
*>("\/$,]"V$&"[&)*".--(-3"
S"^$&",.'"U+'-"*>("+'*(%U.,("-(),%+Y*+$'"$U"V$&%"U&',*+$'"\/$,]"+'"*>("&YY(%")(,*+$'"$U"V$&%"
Y%$=%.66+'="?+(X3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
9@"
"
012456787891
557
456
2778797665! "
J"7"K+'.%L"$&*M&*")+='./"+)"'((-(-"N$%",$'*%$//+'="*>(",$'?(L$%"6$*$%3"#$%"*>+)"%(.)$'O"P("
N+%)*",%(.*("/$,./"$&*M&*"*.="QA$'?(L$%C6$*$%C.&*$6.*+,C6$-("$N"*>("RG$$/R"*LM(3"B'*(%"
*>(",$66('*"RA$'*%$/"$N"*>(",$'?(L$%"6$*$%"+'".&*$6.*+,"6$-(R"N$%"*>("M.%.6(*(%3"
SJ"T&*M&*U"A$'?(L$%C6$*$%C.&*$6.*+,C6$-("J"G$$/"J"A$'*%$/"$N"*>(",$'?(L$%"6$*$%"
+'".&*$6.*+,"6$-(V"
"
J"7--"M.%.6(*(%"Q7&*$6.*+,C6$-(C.,*+?(".)"*>("+'M&*"+'*(%N.,("&'-(%"W'M&*".'-",$'N+%6"
*>("('*%L"P+*>"*>("B'*(%"X(L"$%"KL"(I+*+'="*>("('*%L"N+(/-3"2.*."*LM("RG$$/R"+)".))+='(-"
.&*$6.*+,.//L3"Y>+)"P+//"K("%(*.+'(-3"D(I*O"('*(%"*>(".))$,+.*(-",$66('*"R7&*$6.*+,"6$-("
.,*+?.*(-R3""
SJ"7&*$6.*+,C6$-(C.,*+?("J"G$$/"J"7&*$6.*+,"6$-(".,*+?.*(-V""
J"7--"M.%.6(*(%)"Q5*.%*O"Q5*$MO"QB'.K/(CTZ".'-"Q5.N(*LC)>&*$NNC.,*+?(".)".--+*+$'./"
K+'.%L"+'M&*"M.%.6(*(%)"&'-(%"W'M&*".'-",>(,X"*>(+%"-.*."*LM()3"7--"-(),%+M*+?("
,$66('*)3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;@:E3-$,I"
9@"
"
012456787891
557
456
2778797665! "
J>(",$'?(K$%"+)")*.%*(-".'-")*$LL(-"M+*>"L&)>N&**$')3"O("*>(%(P$%("'((-"."Q5*.*+,Q"*.="
.)"."6(6$%K3"R'-(%"5*.*+,S".--"*.="TU(6$%KB.&*$6.*+,B)*.%*B)*$L".'-",$'P+%6"*>("('*%K"
M+*>"*>("A'*(%"V(K"$%"NK"(I+*+'="*>("('*%K"P+(/-3"2.*."*KL("QF$$/Q"+)".))+='(-".&*$6.*+,.//K3"
J>+)"M+//"N("%(*.+'(-3"A'*(%"*>(".))$,+.*(-",$66('*"QU(6$%K"&)(-"P$%")*.%*W)*$L"
.&*$6.*+,"6$-(Q3"XY"U(6$%KB.&*$6.*+,B)*.%*B)*$L"Y"F$$/"Y"U(6$%K"&)(-"P$%"
)*.%*W)*$L".&*$6.*+,"6$-(Z""
"
Y"#$%"L&%L$)()"$P"L%$=%.6"-$,&6('*.*+$'S".))+='"*>("N/$,V"*+*/(S"."N/$,V",$66('*".'-"."
>(/LP&/"'(*M$%V"*+*/("P$%"C(*M$%V";3"
XY"F/$,V"*+*/(["U$*$%",$'*%$/"+'".&*$6.*+,"6$-("Y"C(*M$%V";["
U(6$%KB.&*$6.*+,B)*.%*B)*$L".'-",$'*%$/"$P"*>(",$'?(K$%"6$*$%"+'".&*$6.*+,"6$-(Z"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9E9::"#FEG%$=%.66+'=B0;H:D3-$,I"
9<"
"
012456787891
557
456
2778797665! "
<3@"5956 KL"M4MNOP4M
Q"G(/$R"*>("+'*(%S.,("-(),%+T*+$'U"V$&")(("."*$$/W.%"+'"*>("T%$=%.66+'="R+'-$R"R+*>"
?.%+$&)"/$=+,"S&',*+$')".'-"W(/$R"*>.*".'".%(."R+*>"'(*R$%X)3"Y(">.?("./%(.-V")T(,+S+(-"
*>("W/$,X"*+*/(".'-"*>("*+*/("S$%"*>("S+%)*"'(*R$%X"*>(%(3"H%$=%.66+'="+)"T(%S$%6(-"R+*>+'"*>("
'(*R$%X)"&)+'="+'-+?+-&./"/$=+,"W/$,X)3"2+)*%+W&*+$'".6$'="6&/*+T/("'(*R$%X)">(/T)"*$"
T%()(%?("*>(",/.%+*V"$S"*>("T%$=%.63"Z'"*>("S$//$R+'=U"V$&"R+//"=(*"*$"X'$R"*>("?.%+$&)"R.V)"
V$&",.'"+')(%*"/$=+,"W/$,X)3"
"
Q"[$&",.'")(("."/+)*"$S"+')*%&,*+$')"V$&",.'"&)("+'"*>("T%$=%.6"$'"*>("%+=>*")+-("$S"V$&%"
T%$=%.66+'="R+'-$R3"\'-(%"Q"G.)+,"+')*%&,*+$')"Q"G+*"/$=+,"$T(%.*+$')U"S+'-"S&',*+$'"
"]7))+='6('*^".'-"&)("."-%.=F.'-F-%$T"$T(%.*+$'"*$"6$?("+*"*$"D(*R$%X";"
]=%(('"/+'(".TT(.%)U"6$&)("T$+'*(%"R+*>"_")V6W$/^3"
]Q"Z')*%&,*+$')"Q"G.)+,"+')*%&,*+$')"Q"G+*"/$=+,"$T(%.*+$')"Q"
^"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
9@"
"
012456787891
557
456
2778797665! "
K"D$L"&)("-%.=F.'-F-%$M"*$"6$?("N$&%"$&*M&*"M.%.6(*(%"
OA$'?(N$%C6$*$%C.&*$6.*+,C6$-("$'*$"PQQ3QR".S$?("*>("S/$,T"N$&"U&)*"+')(%*(-3"V>("
S()*"L.N"*$")(/(,*"."M.%.6(*(%"+'"*>("+'*(%W.,("-(),%+M*+$'"+)"SN"X=%.SS+'=X"+*".*"*>("S/&("
)N6S$/" 3"
YK" "A$'?(N$%C6$*$%C.&*$6.*+,C6$-(Z"
"
K"V>+)"-(*(%6+'()"*>.*"*>("OA$'?(N$%C6$*$%C.&*$6.*+,C6$-("M.%.6(*(%"+)"L%+**('"SN"*>+)"
S/$,T3"5*+//"6+))+'=[">$L(?(%[".%("*>("+'M&*",$'-+*+$')")$"*>.*"*>+)".,*&.//N">.MM(')3"7'"
50"W/+MFW/$M".'-"OB'.S/(C\]"M.%.6(*(%".%("/$=+,.//N",$6S+'(-"L+*>".'"7D2"/$=+,"
$M(%.*+$'".*"*>("+'M&*"$W"*>(".))+='6('*"S/$,T3"V$"-$"*>+)["W+%)*",/+,T"*>("+'M&*"$W"*>("S/$,T"
)$"*>.*"*>("+'M&*"/+'(">.)"."S/&("S.,T=%$&'-3"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
9@"
"
012456787891
557
456
2778797665! "
K"A/+,L"*>(" "+,$'"+'"M$&%"/$=+,"*$$/N.%"*$"+')(%*".'"7D2"/$=+,"$O(%.*+$'"N(P$%("M$&%"
.))+='6('*"N/$,L3"
"
"
K"Q)("-%.=F.'-F-%$O"*$"6$?("+'O&*"O.%.6(*(%"RB'.N/(CST"$'*$"*>(")(,$'-"+'O&*"$P"*>("1"
/$=+,"$O(%.*+$'"UVV3VW3"XK" "B'.N/(CSTY"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
9@"
"
012456787891
557
456
2778797665! "
J"K)("-%.=E.'-E-%$L"*$"6$?("*>("5(*M%()(*"N/+LEN/$L"N&',*+$'" "N%$6"*>("/+)*"$N"
+')*%&,*+$')"&'-(%"J"F.)+,"+')*%&,*+$')"J"F+*"/$=+,"$L(%.*+$')"$'*$"*>("N+%)*"+'L&*"$N"*>("1"
$L(%.*+$'" 3"
OJ"P')*%&,*+$')"J"F.)+,"+')*%&,*+$')"J"F+*"/$=+,"$L(%.*+$')"J" "J" "Q"
"
J"R>("50"N/+LEN/$L"%(S&+%()"."6(6$%T"*.=3"#$%"*>+)U"&)("-%.=E.'-E-%$L"*$"6$?(")*.*+,"
L.%.6(*(%"VW(6$%TC.&*$6.*+,C)*.%*C)*$L"$'*$"*>("XYY3YZ".[$?("*>("50"N/+LEN/$L3"OJ" "
W(6$%TC.&*$6.*+,C)*.%*C)*$LQ"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
@:"
"
012456787891
557
456
2778797665! "
J"K>("LM(6$%NC.&*$6.*+,C)*.%*C)*$O"P+//"Q(")(*"P+*>"+'O&*"*.="L5*.%*3"A/+,R"*P+,("$'"*>("
5"+'O&*"$S"*>("50"S/+OES/$O"TUU3UV".'-"('*(%"W5*.%*W"+'"*>("S+(/-"*>.*".OO(.%)"+'"$%-(%"*$")(("
."/+)*"$S".?.+/.Q/("*.=)")*.%*+'="P+*>"W5*.%*W3A/+,R"*>("L5*.%*"*.=".'-".OO/N"P+*>"J"B'*(%3"
XJ"50"S/+OES/$O"J"TUU3UV"J"5*.%*"J"L5*.%*"J"B'*(%Y"
"
Z[\]^_`abcdeffghcgchdiehfdgcdiagfdjekldiabmbdgfdedmgfndopdedqgrstudjgiadiabdhvowevdiehfdpmoqdiabd
iehdiewvbxdyabdumbzgotfvkdumbfbcib{dumo|b{tmbdtfgchd{mehdec{d{moudpmoqdiabdgcibmpe|bd
{bf|mguigocdfaotv{diabmbpombdwbdtfb{dumbpbmbcigevvkx_
"
J"M&/*+O/(",$'-+*+$')".%("*$"Q(".Q/("*$")*$O"*>(",$'?(N$%3"7'"}0"Q/$,R"+)"*>(%(S$%("'((-(-"
.*"*>("0;"+'O&*"$S"*>("50"S/+OES/$O3"#+%)*~",/+,R"*>("0;"+'O&*"$S"*>("50"S/+OES/$O")$"*>.*"*>("
+'O&*"/+'(">.)"."Q/&("Q.,R=%$&'-3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
@;"
"
012456787891
557
456
2778797665! "
J"A/+,K"*>(" "+,$'"+'"L$&%"/$=+,"*$$/M.%"*$"+')(%*".'"N0"/$=+,"$O(%.*+$'3"
"
J"P>("N0"M/$,K">.)"9"+'O&*)"+'+*+.//L3"Q'"$%-(%"*$"/$=+,.//L",$6M+'(".'".--+*+$'./"+'O&*"*.=R"
,/+,K"*>("L(//$S")*.%" "$T"*>("N0"M/$,K3"
"
J"7--"+'O&*"*.=)"U5*$OR"U5.T(*LC)>&*$TTC.,*+?(".'-"U7&*$6.*+,C6$-(C.,*+?("*$"*>("@"
+'O&*)"$T"*>("N0"M/$,K3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
@9"
"
012456787891
557
456
2778797665! "
J"D(=.*("*>("+'K&*",$''(,*(-"*$"K.%.6(*(%"L7&*$6.*+,C6$-(C.,*+?("MN")(/(,*+'="+*".'-"
,/+,O+'=" 3""
"
"
J"2$"'$*"P$%=(*"*$",/+,O"
+'"#F2"+)")>$X'"M(/$X3"
3"Q>("P+'+)>(-"P&',*+$'"M/$,O"RSTQT0C7UQTR"V#F;W"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
"
@@"
"
012456787891
557
456
2778797665! "
K"L'-(%"M8('(%./M"+'"*>("N%$N(%*+()"$O"*>("P/$,QR"S$&",.'",>.'=("*>("MT.'=&.=(M"*$"T72"
UT.--(%"T$=+,V"UKH%$N(%*+()"K"8('(%./"K"T.'=&.=(W"T72V"
K"X>("N%$=%.6">.)"*>("O$//$Y+'=".NN(.%.',("+'"T723"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:@9F9::"#GFH%$=%.66+'=D0;I:@3-$,J"
"
"
@A"
"
012456787891
557
456
2778797665! "
T"]V('"*>("Z[.+'"\]G;^Z"$%=.'+W.*+$'"X/$,Y"`+*>"."-$&X/(F,/+,Y3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:@9F9::"#GFH%$=%.66+'=D0;A:@3-$,I"
@A"
"
012456787891
557
456
2778797665! "
J"7))+='"D(*K$%L";"*>("'.6("MA$'*%$/",$'?(N$%"*%.,L+'="O$%K.%-"+'".&*$6.*+,"6$-(M""
PJ"D(*K$%L";Q333"JA$'*%$/",$'?(N$%"6$*$%"O$%K.%-)"+'".&*$6.*+,"6$-(R"
J"S)("-%.=E.'-E-%$T"*$"6$?("N$&%"MUVWV0C7SWV"X#F;YM"O&',*+$'"Z/$,L"$'*$"*>("=%(('"
/+'("+'"D(*K$%L";3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E9::"#FEG%$=%.66+'=C0;H:@3-$,I"
"
"
@<"
"
012456787891
557
456
2778797665! "
K"L>("+')*.',("-.*."M/$,N"O$%"*>+)",.//"$O"#G;"+)",%(.*(-".&*$6.*+,.//P3"7))+='"."'.6(".'-"
.QQ/P"+*"R+*>"ST3"UK"VSLS0D7WLSD2G;"K"STX"
"
K"7"M/$,N"R+*>"*>("+'*(%O.,("P$&"-(O+'(-Y"*>("+')*.',("-.*."M/$,N".'-",$''(,*+$')"CE".'-"
CES".%("+')(%*(-"+'"E(*R$%N";3"
"
K"L$"+')(%*".'"7E2"M(O$%("+'Q&*"Q.%.6(*(%"ZC'.M/(DSTZY")(/(,*"*>+)"+'Q&*".'-"+')(%*"*>("
7E2"MP",/+,N+'="*>(" "+,$'"+'"P$&%"/$=+,"*$$/M.%"UK X3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:@9F9::"#GFH%$=%.66+'=D0;I:@3-$,J"
@A"
"
012456787891
557
456
2778797665! "
K"L$",$''(,*"*>("M/$,N"*$"*>("=/$M./"*.=)"O%$6"PL.=D*.M/(D)$%*+'=D)*.*+$'PQ"R(">.?("*R$"
$S*+$')T"
K"C+*>(%")(/(,*"*>("PL.=D*.M/(D)$%*+'=D)*.*+$'P"+'"*>("S%$U(,*"*%((".'-"&)("-%.=F.'-F-%$S"*$"
6$?("*>("-()+%(-"=/$M./"*.="O%$6"*>("2(*.+/)"?+(R"*$"*>("+'*(%O.,("$O"#B;"V"K"
L.=D*.M/(D)$%*+'=D)*.*+$'"K"2(*.+/)"?+(R3"K"5:"K"7&*$6.*+,D6$-(D.,*+?(W"
"
K"X%Q"('*(%"*>(")*.%*+'="/(**(%)"V(3=3"P5PW"YFZ[$O"*>("-()+%(-"=/$M./"*.="O$%"\]]3]^".'-")(/(,*"
*>("=/$M./"+'S&*"*.="PF5:P"V_`:39W"O%$6"*>("-+)S/.a(-"/+)*3"VK"7&*$6.*+,D6$-(D.,*+?("K"5"
K"F5:W"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:@9F9::"#GFH%$=%.66+'=D0;I:@3-$,J"
@A"
"
012456787891
557
456
2778797665! "
K"L')(%*"*>("$*>(%"+'M&*"*.=)"NF5;NO"NF59NO"NFP:NO"NFG;N".'-"NF7;N".'-"+')(%*"$&*M&*"*.="NFQ;N"
RSQ:3:T".*"$&*M&*"NB$'?(U$%D6$*$%D.&*$6.*+,D6$-(N3"
"
K"E(=.*("*>("V&(%U+'="$W"+'M&*"*.=)"NF59N".'-"NF7;N"XU")(/(,*+'="*>(6".'-",/+,Y+'=" 3""
RK"F59"K" "K"F7;"K" T"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:@9F9::"#GFH%$=%.66+'=D0;I:@3-$,J"
@A"
"
012456787891
557
456
2778797665! "
<3K"4L5M
78LNON65N97PQ5956
789689
69L6M
LRS7896QQ6568T
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
@:"
"
012456787891
557
456
2778797665! "
<3;:"06K68 L7ML5956
N"O$").?("P$&%"Q%$R(,*S")(/(,*"*>("
"T&**$'"+'"*>("6('&3"O$",$6Q+/(".//"T/$,U)S"
,/+,U"*>("VH%$=%.6"T/$,U)V"W$/-(%".'-")(/(,*"*>(" "+,$'"W$%",$6Q+/+'="+'"*>("6('&""
XN"
"N"H%$=%.6"T/$,U)"N" Y3"
"
N"O>("VZ'W$VS"VA$6Q+/(V".%(.")>$[)"[>+,>"T/$,U)"[(%(")&,,())W&//P",$6Q+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
@;"
"
012456787891
557
456
2778797665! "
<3;;"K86LM5956
N"7O*(%")&,,())O&/",$6P+/.*+$'Q"*>(",$6P/(*(",$'*%$//(%"R+*>"*>(",%(.*(-"P%$=%.6Q".)"
P%(?+$&)/S"-(),%+T(-"+'"*>("6$-&/()"O$%">.%-R.%(",$'O+=&%.*+$'Q",.'"T("-$R'/$.-(-""
UN" V3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
@9"
"
012456787891
557
456
2778797665! "
<3;9"875K5956 LMN
O"P>("-()+%(-"Q/$,R"6&)*"Q("$S('"T$%"6$'+*$%+'="*>("-$U'/$.-(-"S%$=%.63"P>("6$'+*$%+'="
,.'"Q(".,*+?.*(-V-(.,*+?.*(-"QW",/+,R+'="*>("" "+,$'3"XO"Y.+'"Z[G;\"O" ]"
"
"
"
^_`abcdefghijklimkjngefmfgkogoknjpqrmfqplfsgpjsgtijlmiqqfmrsfufjsfjlvgdefgoknjpqgolplfogplglefg
lfmhkjpqogpmfgkjsktplfsgwklegdxyzgimg{|}~zvc
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:A9F9::"#GFH%$=%.66+'=D0;I:A3-$,J"
@A"
"
012456787891
557
456
2778797665! "
K"L>("MNOLO0C7PLOM"Q#G;R"S&',*+$'"T/$,U",.//(-"+'"*>("MN.+'"QOG;RM"$%=.'+V.*+$'"T/$,U"
,.'"T(")(/(,*(-"-+%(,*/W"S$%"MOX('".'-"6$'+*$%M".S*(%"%+=>*F,/+,U+'="YK"MNOLO0C7PLOM"
Q#G;R"K"OX('".'-"6$'+*$%Z3"
"
"
[\]^_`abcdefghifjhgkdbcjcdhldmngoihfgpjcqricsdrgsdofgijfqqcjphgsctcgscgiudabcdroinrihfgdfmd
lcglfjldrgsdibcdlirihfgdlirinldrjcdlbfvgdbcjcdvhibdawxydfjdz{|}yu`
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
@@"
"
012456787891
557
456
2778797665! "
K"LM"."N.%*+,&/.%"N$+'*"$M"&)("$M"."OPQRQ0D7SRQO"T#H;U"M&',*+$'"V/$,W"*>.*"+)",.//(-"
6&/*+N/("*+6()"+)"*$"V("6$'+*$%(-X"*>+)",.'"V("N(%M$%6(-"&)+'="*>(" "+,$'3"R>(%(".%("*Y$"
./*(%'.*+?()".?.+/.V/("M$%")N(,+MZ+'="*>(",.//"('?+%$'6('*["&)+'="*>(",.//"('?+%$'6('*"$%"
*>("+')*.',("-.*."V/$,W3"\K" "K"L')*.',("-.*."V/$,W"K"PQRQ0D7SRQD2H;"T2H;U"K"
B.//"('?+%$'6('*"K"7--%())["QH;"K"2(*.+/)["P.+'"E];"K"Q^_3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:F9G9::"#HGI%$=%.66+'=D0;A:F3-$,J"
"
@A"
"
012456787891
557
456
2778797665! "
<3;E"5K7LKM5N
O"7)"*>("P+'./")*(QR"S("S.'*"*$".%,>+?("*>(",$6Q/(*("Q%$T(,*3"5(/(,*"*>("O"U7%,>+?("333U"
,$66.'-"+'"*>("O"UH%$T(,*U"6('&3"5(/(,*"."P$/-(%"S>(%("V$&"S.'*"*$".%,>+?("V$&%"Q%$T(,*"
.'-").?("+*"S+*>"*>("P+/("*VQ("UWX7"H$%*./"Q%$T(,*".%,>+?(U3"YO"H%$T(,*"O"7%,>+?("O"
WX7"H$%*./"Q%$T(,*".%,>+?("O":E9FZ[[\]^_`ab`cddefbghiO"5.?(j"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;I:E3-$,J"
"
@<"
"
012456787891
557
456
2778797665! "
L1MN7O
PQ O57R78
1
R
"
;" B$6S+/+'=")&,,())T&/".'-"U+*>$&*"(%%$%"6()).=("
"
9" 2$U'/$.-")&,,())T&/".'-"U+*>$&*"(%%$%"6()).=("
5U+*,>"$'")*.*+$'"VGW:"X";Y"
BZ/+'-(%"%(*%.,*(-"["#((-\.,]".,*+?.*(-"VGH;"X";Y"
C^C08CEB_"`##"VG7;"X";Y"'$*".,*+?.*(-"
B"6$-("VG5:"X";Y"
F" 7ab`^7bc
"
I&)>\&**$'".&*$6.*+,")*$S"'$*".,*&.*(-"VG59"X";Y"
H%+(T/Z"S%())"*>(".&*$6.*+,")*.%*"S&)>\&**$'"VG5;"X";Y"
*>('",$'?(Z$%"6$*$%"T$%U.%-)"T+K(-")S((-"VGd;"X";Y"
)U+*,>()"$'".'-")*.Z)"$'3"
@" H%+(T/Z"S%())"*>(".&*$6.*+,")*$S"S&)>\&**$'"VG59"X":Y"e"d;"X":" "
"
J" 7,*+?.*("C^C08CEB_"`##"VG7;"X":Y"e"d;"X":"
"
<" ^.'&./"6$-("VG5:"X":Y"e"d;"X":"
"
A" 5U+*,>"$TT")*.*+$'"VGW:"X":Y"e"d;"X":"
"
f" BZ/+'-(%"'$*"%(*%.,*(-"VGH;"X":Y"e"d;"X":"
"
g" I%$h(,*")&,,())T&//Z".%,>+?(-"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:F9G9::"#HGI%$=%.66+'=D0;J:F3-$,K"
@A"
"
012456787891
557
456
2778797665! "
L2M57N
A3;"46NOP2M57N"
Q'"*>+)"(K(%,+)(R".'"('(%=S").?+'="T&',*+$'"+)"*$"U(".--(-"*$"*>("VWXW0D7YXW"Z#H;["T&',*+$'"
U/$,\3"X>("(K].'-(-"T&',*+$'"U/$,\"^+//"U("]/.''(-R"]%$=%.66(-".'-"*()*(-_"
X$").?("('(%=SR"*>(",$'?(S$%")>$&/-"$'/S"%&'"^>('"."].%*"+)"]%()('*3"
X>("B$'?(S$%D6$*$%D.&*$6.*+,D6$-("$&*]&*"+)"*>(%(T$%("$'/S".,*+?.*(-"^>('"
V(6$%SD.&*$6.*+,D)*.%*D)*$]"+)")(*R"*>("('.U/(",$'-+*+$')".%("6(*".'-"
V(6$%SD,$'?(S$%D)*.%*D)*$]"+)")(*3"
X>("V(6$%SD,$'?(S$%D)*.%*D)*$]"+)")(*"^>('"5(')$%D,>&*(D$,,&]+(-")+='./)"."].%*".'-"+)"
%()(*"^>('"5(')$%D('-D$TD,$'?(S$%"]%$-&,()"."'(=.*+?("(-=("$%").T(*S")>&*$TT"+)".,*+?("$%"
.&*$6.*+,"6$-("+)"'$*".,*+?.*(-"`6.'&./"6$-(a3"
"
A39"688789
I/.'"*>("+6]/(6('*.*+$'"$T"*>("*.)\"$'"S$&%"$^'3"
bcdefghijklmjnopqmqrimpsimotmqrimliujqvwimixuimvlmyz{|}z~mymvlmqrimolvlimrim
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:F9G9::"#HGI%$=%.66+'=D0;J:F3-$,K"
@A"
"
012456787891
557
456
2778797665! "
"
1
T
"
"
"
"
"
"
"
"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5BCDCED:F9G9::"#HGI%$=%.66+'=D0;J:F3-$,K"
@A"
"
012456787891
557
456
2778797665! "
"
L$&",.'"M+'-".--+*+$'./"+'M$%6.*+$'".)".'"$%+('*.*+$'".+-"M$%"+'+*+./".'-".-?.',(-"*%.+'+'=N"M$%"
(I.6O/(P"8(**+'="5*.%*(-N"?+-($)N"*&*$%+./)N".OO)N"6.'&./)N"O%$=%.66+'="=&+-(/+'()".'-"*%+./"
)$M*Q.%(RM+%6Q.%(N".*"*>("M$//$Q+'="/+'SP"""
"
QQQ3)+(6(')3,$6R),(R)TF;@::"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9F9::"#GFH%$=%.66+'=C0;@:E3-$,I"
@:"
"
966574818915'11962867:98&4
8915;<=
!
"1
2
8
#1
4
6
$
%
$
!&'96275!&''1458627
+,-./0123234.,500265758.
#4
89%95785
67(12!# !')%*
01245267829
864769564
8915
595789848915796657
2987267626
012456787891
557
456
2778797665! "
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
9"
"
012456787891
557
456
2778797665! "
G.J/("$K",$'*('*)"
;L 8$./"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"ML
9L N%(%(O&+)+*("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"ML
@L G>($%P"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"ML
@3;L F')*.',()".'-"6&/*+E+')*.',()"+'"5FQ7GFA"5RE;H::"33333333333333333333333333333333333333333333333333333333333333333333"ML
@3;3;L F')*.',("-.*."J/$,S)T)+'=/("+')*.',()"3333333333333333333333333333333333333333333333333333333333333333333333333333333333"HL
@3;39L Q&/*+E+')*.',()"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"<L
ML G.)S"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"UL
HL N/.''+'="333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"UL
H3;L 7&*$6.*+,"6$-("E"A$'?(P$%"6$*$%"V+*>"*+6("K&',*+$'"333333333333333333333333333333333333333333333333333333333333333333"UL
<L 5*%&,*&%(-")*(WEJPE)*(W"+')*%&,*+$')"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"XL
<3;L 0(*%+(?(".'"(I+)*+'="W%$Y(,*"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"XL
<39L 7--+*+$'"$K".'"FBA"*+6(%"GN"*$"K&',*+$'"J/$,S"#Z;"[Q\G\0C7]G\["3333333333333333333333333333333333333333";;L
<3@L ]W-.*("*>("J/$,S",.//"+'"*>("$%=.'+^.*+$'"J/$,S"33333333333333333333333333333333333333333333333333333333333333333333333333";RL
<3ML 5.?(".'-",$6W+/("*>("W%$=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";UL
<3HL 2$V'/$.-"*>("W%$=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";XL
<3<L Q$'+*$%"W%$=%.6"J/$,S)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9:L
<3RL 7%,>+?("*>("W%$Y(,*"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"99L
RL A>(,S/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9@L
UL BI(%,+)("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9ML
U3;L G.)S"_"BI(%,+)("33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9ML
U39L N/.''+'="33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9ML
U3@L A>(,S/+)*"_"BI(%,+)("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9HL
XL 7--+*+$'./"+'K$%6.*+$'"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9<L
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E@::"FBAEG+6(%)".'-"A$&'*(%)C0;H:@3-$,I"
@"
"
012456787891
557
456
2778797665! "
2142K0L211MNL42K0NO4
L04L120MK0410PQ
R6
G'"*>+)",>.S*(%T"U$&"V+//"W(,$6(".,X&.+'*(-"V+*>"*>("&)("$Y")+'=/("+')*.',()".'-"6&/*+F
+')*.',()"Y$%"S%$=%.66+'="$Y"*>("5GZ7HGA"5[F;I::"V+*>"*>("HG7"\$%*./"S%$=%.66+'="*$$/3""
H>("6$-&/("(JS/.+')"*>("?.%+$&)"*US()"$Y"+')*.',("-.*."W/$,])".'-")>$V)")*(SFWUF)*(S">$V"*$"
.--"GBA"*+6(%)".'-"GBA",$&'*(%)"*$"."S%$=%.6"W/$,]3"
55^
7_7
H>+)",>.S*(%"W&+/-)"$'"*>("#`"S%$=%.66+'="V+*>"*>("5GZ7HGA"5["A\a;I;<#FE"\Db2\3"c$&"
,.'"&)("*>("Y$//$V+'="S%$d(,*"Y$%"*>+)",>.S*(%T"Y$%"(J.6S/(e"
:E9F9::C#`\%$=%.66+'=C0;I:E3f.S;E"
4g5!
E3;"8_68_68
778_68_780410PQ
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
JKLKLMNOPQROSTMURQRMVWXSYPZP[O\WTM[OPQROSTPM
H>(",.//"$]"."]&',*+$'"^/$,_"*>.*"+)".))+='(-"+*)"$`'"+')*.',("-.*."^/$,_"+)",.//(-"."a789
78a683"
G]"*>("]&',*+$'"^/$,_"`.)",%(.*(-".,,$%-+'="*$"*>("%&/()"]$%"/+^%.%bF,$6c.*+^/(")*.'-.%-"^/$,_)d"
+*",.'"./)$"^(",.//(-"6&/*+c/("*+6()3"
e$`(?(%d"b$&"6&)*".))+='".'$*>(%"+')*.',("-.*."^/$,_"]$%"(.,>",.//".)".")+'=/("+')*.',(3""
2f6
gha78978a68ai
H>("]$//$`+'="]+=&%(")>$`)"*>(",$'*%$/"$]"*`$"6$*$%)"&)+'="$'("]&',*+$'"^/$,_"#j;:".'-"*`$"
-+]](%('*"-.*."^/$,_)k"
H>("-+]](%('*"-.*."]$%"*>("+'-+?+-&./"6$*$%)d")&,>".)")c((-d".,,(/(%.*+$'"*+6(".'-"*$*./"
$c(%.*+'="*+6(d".%(").?(-"+'"*>("+')*.',("-.*."^/$,_)"2j;:".'-"2j;;3""
"
j;"
""
#A;"
A.
//"$]"#A;"
"
2j;:"
"
"
A.//"$]"#j;:"`+*>"
#j;:" "G')*.',("2j"]$%"
+')*.',("2j;:"
"
"
",.//"`+*>"-.*."
]$%",$'*%$/"$]"
5*.'-.%-"^/$,_" ]]+$%)%"*$
*$%";"
$*$%";"
`+*>"6$*$%"
"
"
c%$=%.6"
"
"
"
2j;;"
A.//"$]"#j;:"`+*>"
#j;
:
"
"
+')*.',("2j;;"
"
G')*.',("2j"]$%"
"
]$%",$'*%$/"$]"
5*.'-.%-"^/$,_" )(,$'-",.//"`+*>"
$*$%"9"
`+*>"6$*$%"
-.*."]$%"$*$%"9"
"
c
%
$
=
%
.
6
"
"
"
lXQTmMnopqrsopptuvwxrwyszrtwr{|pq}wrtuvrsoyu{q}wxr}qts{r~|qryus{|our~oswrzqur{zqwqr
t}qrst~~qvxr{zqrt~wor}qy|}qrturtww|uqvrpqpo}rt}qtxrqr|ur{zqro}prortur|uw{tusqrvt{tr
~osr
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;@:E3-$,I"
@"
"
012456787891
557
456
2778797665! "
JKLKMNOPQRSTSUVRWUXYVN
Z$&"6.["\.'*"*$"/+6+*"*>("'&6](%"$^"-.*."]/$,_)"&)(-"^$%"+')*.',()"$%"*>+)"6.["]("'(,()).%["
-&("*$"/.,_"$^"6(6$%["+'"*>("&*+/+`(-"@ab3""
F^"$*>(%"^&',*+$'"]/$,_)c"*+6(%)c",$&'*(%)c"(*,3"*>.*"./%(.-["(I+)*"\+//"](",.//(-"+'"."^&',*+$'"
]/$,_"+'"[$&%"&)(%"d%$=%.6c"[$&",.'",.//"*>()("$*>(%"^&',*+$'"]/$,_)"\+*>$&*")(d.%.*("e+3(3c"
.--+*+$'./f"+')*.',("2g)3""
hijklmnoplpqrns
778t68unvwxnrypnqzllnwkriw{o|n"
"
"
N
}~RYVN
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
<"
"
012456787891
557
456
2778797665! "
2K6
LM
778N68NO
H>("P$//$Q+'="P+=&%(")>$Q)"*Q$",.//)"$P".'"GBACH+6(%"$P"*RS("HT"US&/)(V"Q+*>+'"."P&',*+$'"
W/$,X3""
H>("-+PP(%('*"-.*."P$%"*>("*Q$",$&'*(%)"+)")*$%(-".)"-+PP(%('*"
778N68N"+'"*>("+')*.',("
-.*."W/$,X"2Y;"$P"*>(",.//+'="P&',*+$'"W/$,X"#Y;3"
"
"[Y;"
2Y;"
""A.//"#Y;"Q+*>"
#Y;"
UG')*.',("2Y"P$%"
"
+')*.',("2Y;"
#Y;V"
A.
/
/
"
G
BAC
H+
6(
%
"
ZH+6(%;"
"
"
.)"6&/*+F+')*.',(" ""
$P"*RS("GBACH+6(%"
Z
H+
6(
%
;
"
"
"
"
5*.*+,"*.=""
"
"
"
"
"
H+6(%;"
A.//"GBACH+6(%" ZGBAC
H+6(%"
.)"6&/*+F+')*.',(" ZH+6(
ZH+6(%9"
"
%9"
ZH+6(%9"
$P"*RS("GBACH+6(%"
GBACH+6(%".)"
"
6&/*+F+')*.',(""
"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
K46LM
G'"*>+)",>.N*(%O".'"GBA"*+6(%"P+//"Q(".--(-"*$"*>("R&',*+$'"Q/$,S"R%$6",>.N*(%"T5ABCBDC:E9F
9::"#U"V%$=%.66+'=T3"
W688789
H>("GBA"*+6(%"+)"N%$=%.66(-".)".'".--+*+$'"*$"*>("XYHY0C7ZHY"[#U;\"R&',*+$'"Q/$,S"R%$6"
*>("T:E9F9::C#UV%$=%.66+'=3].N;ET"N%$^(,*3"H>+)"N%$^(,*"6&)*"Q("%(*%+(?(-"+'"$%-(%"*$".--"
*>("GBA"*+6(%"HV"_/.*,>+'="N&/)(`3"7"6&/*+F+')*.',("P+//"Q(",%(.*(-".)"."6(6$%a"R$%"*>("*+6(%3"
"
I3;"
67
18b!5
5c7d7
e
878
H>("X(6$%aC.&*$6.*+,C)*.%*C)*$N"+)"/.*,>(-"P+*>"5*.%*"Q&*"$'/a"+R"*>("%()(*",$'-+*+$')".%("'$*"
N%()('*3""
H>("X(6$%aC.&*$6.*+,C)*.%*C)*$N"+)"%()(*"+R"5*$N"+)"N%()('*"$%").R(*a")>&*$RR"+)".,*+?("$%"
.&*$6.*+,"6$-("+)"'$*".,*+?.*(-"_6.'&./"6$-(`3"
H>("A$'?(a$%C6$*$%C.&*$6.*+,C6$-("$&*N&*"+)".,*+?.*(-"P>('"
X(6$%aC.&*$6.*+,C)*.%*C)*$N"+)")(*O"*>("('.Q/(",$'-+*+$')".%("6(*".'-"
X(6$%aC,$'?(a$%C)*.%*C)*$N"+)")(*3"
H$").?("('(%=aO"*>(",$'?(a$%")>$&/-"$'/a"%&'"P>('"."N.%*"+)"N%()('*3"
#$%"*>+)"%(.)$'O"*>("X(6$%aC,$'?(a$%C)*.%*C)*$N"+)")(*"P>('"5(')$%C,>&*(C$,,&N+(-")+='./)"
."N.%*".'-"%()(*"P>('"5(')$%C('-C$RC,$'?(a$%"N%$-&,()"."'(=.*+?("(-=("$%").R(*a")>&*$RR"+)"
.,*+?("$%".&*$6.*+,"6$-("+)"'$*".,*+?.*(-"_6.'&./"6$-(`3"
778e7
e
878f
U(,.&)("*>("5(')$%C('-C$RC,$'?(a$%"+)"'$*".Q/("*$"Q("6$&'*(-"-+%(,*/a".*"*>("('-"$R"*>("
,$'?(a$%O"*>("5(')$%C('-C$RC,$'?(a$%")+='./"6&)*"Q(")*%(*,>(-3"
H$".,>+(?("*>+)O"."/.*,>+'="N&/)("P+//"Q("+')(%*(-"Q(*P(('"5(')$%C('-C$RC,$'?(a$%".'-"*>("
'(=.*+?("(-=("-(*(,*+$'3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
05
5KLM!KL78K5
78K
N$&",.'"O+'-"+')*%&,*+$')"$'">$P"*$",.%%Q"$&*"R/.''+'="S(/$P3"GO"Q$&"./%(.-Q">.?("."=$$-"
&'-(%)*.'-+'="$O"(?(%Q*>+'=T"+*"P+//"S(")&OO+,+('*"*$"O$,&)"$'"*>("'&6S(%(-")*(R)3"U*>(%P+)(T"
)+6R/Q"O$//$P"*>("-(*.+/(-")*(R)"+'"*>("+')*%&,*+$')3"
<3;"V57W68X7K789L5Y
Z"[(O$%("P(",.'"(JR.'-"*>("\]UHU0C7^HU"_#[;`\"O&',*+$'"S/$,aT"P("6&)*"%(*%+(?("*>("
\:E9F9::C#[b%$=%.66+'=3c.R;E\"R%$d(,*"O%$6",>.R*(%"\5ABCBDC:E9F9::"
#[b%$=%.66+'=\3"H$"%(*%+(?(".'"(J+)*+'="R%$d(,*"*>.*">.)"S(('".%,>+?(-T"Q$&"6&)*")(/(,*"
*>("%(/(?.'*".%,>+?("P+*>"Z"b%$d(,*"Z"0(*%+(?("+'"*>("R%$d(,*"?+(P3"A$'O+%6"Q$&%")(/(,*+$'"
P+*>"UR('3"eZ"b%$d(,*"Z"0(*%+(?("Z"5(/(,*"."3c.R".%,>+?("Z"UR('f"
"
"
Z"H>("'(J*")*(R"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%Q"P>(%("*>("%(*%+(?(-"R%$d(,*"P+//"S(")*$%(-3"
A$'O+%6"Q$&%")(/(,*+$'"P+*>"\Ug\3"eZ"H.%=(*"-+%(,*$%Q"Z"Ugf"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
@"
"
012456787891
557
456
2778797665! "
5.?("*>("$J('(-"J%$K(,*"&'-(%"*>("'.6(":D9ED::BFA@BG+6(%)B@$&'*(%)3""
L"M%$K(,*"L"5.?(".)"333"L":D9ED::EFA@BG+6(%)B@$&'*(%)"L"5.?(N"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
"
;:"
"
012456787891
557
456
2778797665! "
<39"778J68217
54J
878KL M
NO4OPQR4ON
S"#+%)*T"$U('"*>("VWXGX0B7YGX"Z#[;\V"]&',*+$'"^/$,_"`+*>"."-$&^/(E,/+,_3"
"
"
S"F')(%*".'$*>(%"'(*`$%_".*"*>("^(=+''+'="$]"*>("VWXGX0B7YGX"Z#[;\V"]&',*+$'"^/$,_"^a"
)(/(,*+'="*>("S"V^/$,_"*+*/(V".'-"*>('",/+,_+'="*>("S" "+,$'"]$%"VF')(%*"'(*`$%_V3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
"
;;"
"
012456787891
557
456
2778797665! "
J"7--">(/KL&/"+'L$%6.*+$'"*$"*>("M/$,N",$66('*".'-"*>("'(*O$%N"*+*/("$L"PC(*O$%N";QP3"
"
J"R'"*>("%+=>*")+-("$L"S$&%"K%$=%.66+'="O+'-$OT"S$&"O+//")(("*>("*+6(%"L&',*+$')"+'"*>("/+)*"
$L"+')*%&,*+$')3"U'-(%"J"V.)+,"+')*%&,*+$')"J"G+6(%"$K(%.*+$')T"L+'-"L&',*+$'" "
W8('(%.*("K&/)(X".'-"&)("."-%.=E.'-E-%$K"$K(%.*+$'"*$"6$?("+*"*$"C(*O$%N";"W=%(('"/+'("
.KK(.%)T"6$&)("K$+'*(%"O+*>"Y")S6M$/X3"
WJ"F')*%&,*+$')"J"V.)+,"+')*%&,*+$')"J"G+6(%"$K(%.*+$')"J" "X"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
"
;9"
"
012456787891
557
456
2778797665! "
J"G>("*+6(%"K&',*+$'"%(L&+%()"."6(6$%M3"N(%(O"*>+)"6(6$%M"+)"6.-(".?.+/.P/("Q+*>+'"*>("
+')*.',("-.*."P/$,R"PM"*>("K&',*+$'"P/$,R"Q+*>$&*"*>(",%(.*+$'"$K"."'(Q"+')*.',("-.*."
P/$,R3"5(/(,*"*>("JST&/*+E+')*.',(S"$U*+$'"K$%"*>+)3"B'*(%"."'.6("K$%"*>("6&/*+E+')*.',("
.'-",$'K+%6"Q+*>"J"SVWS3"XJ"T&/*+E+')*.',("J"FBACG+6(%C$?(%%&'"J"VWY"
"
"
J"7)"."%()&/*O"."*.=")*%&,*&%("$K"S5*.*+,S"*MU(")&+*.P/("K$%"GZ"G+6(%"Q+//"P(",%(.*(-"+'"*>("
+'*(%K.,("-(),%+U*+$'3""
"
[\]^_`abcdefghgijfkilmblkibnieobpmbdjmqbrnsbtsnuskccgiubvgfwgibkbrdilfgnibpenlxbpmlkdjmb
jfkfglbfkujbksmbnieobkykgekpembfwmsmzbb
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E@::"FBAEG+6(%)".'-"A$&'*(%)C0;H:@3-$,I"
;@"
"
012456787891
557
456
2778797665! "
K"L)("-%.=F.'-F-%$M"*$"6$?("+'M&*"M.%.6(*(%"N5(')$%C('-C$OC,$'?(P$%"*$"QRR3RS"+'"O%$'*"
$O"M.%.6(*(%"TGDT"$O"HU"H+6(%")$"*>.*"*>+)"V+//"W(")*.%*(-".*"."M$)+*+?("(-=(".*"+'M&*"
N5(')$%C('-C$OC,$'?(P$%3"H>("W()*"V.P"*$")(/(,*"."M.%.6(*(%"+'"*>("+'*(%O.,("
-(),%+M*+$'"+)"WP"T=%.WW+'=T"+*".*"*>("W/&(")P6W$/3" "XK" "5(')$%C('-C$OC,$'?(P$%Y"
"
K"B'*(%"*>("%(Z&+%(-"M&/)("-&%.*+$'"$O"9")(,$'-)"+'"O%$'*"$O"M.%.6(*(%"TUHT"XK"9)"Y"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
;@"
"
012456787891
557
456
2778797665! "
J"H>("('*%K"$L"9)"+)",$'?(%*(-".&*$6.*+,.//K"*$"*>("GBAFH+6("L$%6.*")&+*.M/("L$%"*>("GBA"
*+6(%".'-"+)")>$N'".)",$')*.'*"OHP9)O3"
"
"
J"D$N"6$?("$&*Q&*"ORO"L%$6"*.=")*%&,*&%("OGBACH+6(%C$?(%%&'O"$'*$"+'Q&*"OASTO"$L"
'(=.*+?("(-=("ODCH0G8O"+'"D(*N$%U"93"H>+)"N+//"%(Q/.,("*>("P5(')$%C('-C$LC,$'?(K$%"
+'Q&*"*.="Q%(?+$&)/K"('*(%(-"*>(%(".'-"*>(",$'?(K$%"N+//"M(")*$QQ(-"MK"."'(=.*+?("(-=("$L"
*>("GBACH+6(%C$?(%%&'"Q&/)(3"
VJ"D(*N$%U"9"J"GBACH+6(%C$?(%%&'J"R"J"P5(')$%C('-C$LC,$'?(K$%W"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;@:E3-$,I"
"
;@"
"
012456787891
557
456
2778797665! "
J"2$"'$*"K$%=(*"*$",/+,L"
3"G>("K+'+)>(-"K&',*+$'"M/$,L"NOPGP0B7QGPN"R#S;T"
U+*>"*>("*+6(%"+)")>$U'"+'"#S2"M(/$U3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
"
;<"
"
012456787891
557
456
2778797665! "
<3E"KL6MNO678M59687P678NO
Q"RS('"*>("TU.+'"VRW;XT"$%=.'+Y.*+$'"Z/$,["\+*>"."-$&Z/(F,/+,[3"
"
Q"G'"D(*\$%[";"$]"*>("TU.+'"VRW;T"$%=.'+Y.*+$'"Z/$,[^"+')*.',("-.*."Z/$,["
TURHR0C7_HRC2W;T"]$%"*>("TURHR0C7_HR"V#W;XT"]&',*+$'"Z/$,[".SS(.%)"+',$%%(,*^"
Z(,.&)("*>(".--+*+$'./"6(6$%`"]$%"*>("Ha"H+6(%">.)"'$*"`(*"Z(('".--(-"*>(%(3"A/+,["*>("
Q"T T"+,$'"]$%"T_S-.*("+',$')+)*('*"Z/$,[",.//)T3"H>+)"\+//".--"*>("
TURHR0C7_HRC2W;T"+')*.',("-.*."Z/$,[",$%%(,*/`".=.+'3"bQ" "c"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
;@"
"
012456787891
557
456
2778797665! "
<3K"06L68
M7NM5956
O"H$").?("P$&%"Q%$R(,*S")(/(,*"*>("
"T&**$'"+'"*>("6('&3"H$",$6Q+/(".//"T/$,U)S"
,/+,U"*>("VW%$=%.6"T/$,U)V"X$/-(%".'-")(/(,*"*>(" "+,$'"X$%",$6Q+/+'="+'"*>("6('&""
YO"
"O"W%$=%.6"T/$,U)"O" Z3"
"
O"H>("VG'X$VS"VA$6Q+/(V".%(.")>$[)"[>+,>"T/$,U)"[(%(")&,,())X&//P",$6Q+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
"
;@"
"
012456787891
557
456
2778797665! "
<3I"K86LM5956
N"7O*(%")&,,())O&/",$6P+/.*+$'Q"*>(",$6P/(*(",$'*%$//(%"R+*>"*>(",%(.*(-"P%$=%.6"+',/&-+'="
*>(">.%-R.%(",$'O+=&%.*+$'Q".)"P%(?+$&)/S"-(),%+T(-"+'"*>("6$-&/()Q",.'"T("-$R'/$.-(-3"
UN" V"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
"
;@"
"
012456787891
557
456
2778797665! "
<3<"875J5956 KLM
N"G>("-()+%(-"O/$,P"6&)*"O("$Q('"R$%"6$'+*$%+'="*>("-$S'/$.-(-"Q%$=%.63"G>("6$'+*$%+'="
,.'"'$S"O(".,*+?.*(-T-(.,*+?.*(-"OU",/+,P+'="*>("" "+,$'3"VN"W.+'"XYZ;["N" \"
"
"
]^_`abcdefghijkhljimfdelefjnfnjmiopqlepokerfoirfshiklhppelqreteireikufcdefnjmiopfnkokenfokfkdef
kelgjiopnfolefjirjsokerfvjkdfcwxyfhlfz{|}yu"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
9:"
"
012456787891
557
456
2778797665! "
J"G>("KLMGM0B7NGMK"O#P;Q"R&',*+$'"S/$,T",.//(-"+'"*>("KL.+'"OMP;QK"$%=.'+U.*+$'"S/$,T"
,.'"S(")(/(,*(-"-+%(,*/V"R$%"KMW('".'-"6$'+*$%K".R*(%"%+=>*E,/+,T+'=X"*>(%(SV".//$Y+'="*>("
W%$=%.6",$-("+'"*>("R&',*+$'"S/$,T"Y+*>"*>("GZ"G+6(%"*$"S("6$'+*$%(-3""
[J"KLMGM0B7NGMK"O#P;Q"J"MW('".'-"6$'+*$%\"
"
"
]^_`abcdefghijkhljimfdelefjnfopiqkjhirlestkeuftiufqhiklhsselrjiueveiueikwfcdeftqkptkjhifhof
neinhlnftiufkdefnktkjhifnktkpnftlefndhxifdelefxjkdfcyz{fhlf|}~{wb
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
9;"
"
012456787891
557
456
2778797665! "
<3J"5K7LKM5N
O"7)"*>("P+'./")*(QR"S("S.'*"*$".%,>+?("*>(",$6Q/(*("Q%$T(,*3"5(/(,*"*>("O"U7%,>+?("333U"
,$66.'-"+'"*>("O"UV%$T(,*U"6('&3"5(/(,*"."P$/-(%"S>(%("W$&"S.'*"*$".%,>+?("W$&%"Q%$T(,*"
.'-").?("+*"S+*>"*>("P+/("*WQ("UGF7"V$%*./"Q%$T(,*".%,>+?(U3"XO"V%$T(,*"O"7%,>+?("O"
GF7"V$%*./"Q%$T(,*".%,>+?("O":D9EYZZ[\]^[_`abcd[^efghbcdijkO"5.?(l"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
"
99"
"
012456787891
557
456
2778797665! "
J1KL7M
D$3" 2(),%+N*+$'"
;" A$6N+/+'=")&,,())O&/".'-"P+*>$&*"(%%$%"6()).=("
9" 2$P'/$.-")&,,())O&/".'-"P+*>$&*"(%%$%"6()).=("
5P+*,>"$'")*.*+$'"QER:"S";T"
AU/+'-(%"%(*%.,*(-"V"#((-W.,X".,*+?.*(-"QEY;"S";T"
BZB08BDA["\##"QE7;"S";T"'$*".,*+?.*(-"
7]G\Z7GFA"6$-("QE5:"S";T"
@" ^&)>W&**$'".&*$6.*+,")*$N"'$*".,*&.*(-"QE59"S";T"
Y%+(O/U"N%())"*>(".&*$6.*+,")*.%*"N&)>W&**$'"QE5;"S";T"
5(')$%".*",>&*(".,*+?.*(-"QEY_"S";T"
*>('",$'?(U$%"6$*$%"O$%P.%-)"O+I(-")N((-"QE`;"S";T")P+*,>()"
$'".'-")*.U)"$'3"
')$%".*"('-"$O",$'?(U$%".,*+?.*(-"QEYa"S";T"b"E`;"S":""
_" 5(
Q.O*(%"9")(,$'-)T"
+(O/U"N%())"*>(".&*$6.*+,")*$N"N&)>W&**$'"QE59"S":T"b"E`;"S"
H" Y%
:"
<" 7,*+?.*("BZB08BDA["\##"QE7;"S":T"b"E`;"S":"
a" Z.'&./"6$-("QE5:"S":T"b"E`;"S":"
c" 5P+*,>"$OO")*.*+$'"QER:"S":T"b"E`;"S":"
d" AU/+'-(%"'$*"%(*%.,*(-"QEY;"S":T"b"E`;"S":"
;:" ^%$e(,*")&,,())O&//U".%,>+?(-"
A$6N/(*(-"
"
"
"
"
"
"
"
"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:@9E@::"FBAEG+6(%)".'-"A$&'*(%)C0;H:@3-$,I"
9@"
"
012456787891
557
456
2778797665! "
K2L57M
N3;"46MOP2L57M"
G'"*>+)"(J(%,+)(Q".'"GBA",$&'*(%"+)"./)$"*$"R(".--(-"*$"*>("STHT0C7UHT"V#W;X"Y&',*+$'"
R/$,Z3"H>("(J[.'-(-"Y&',*+$'"R/$,Z"\+//"R("[/.''(-Q"[%$=%.66(-".'-"*()*(-]"
"
H>("6.=.^+'("Y$%"[/.)*+,">$/-)"$'/_"I"[.%*)".'-"*>("[.%*)"\+//"*>(%(Y$%("R(",$&'*(-".*"*>("('-"
$Y"*>(",$'?(_$%3"
`>('"I"[.%*)".%(")*$%(-"+'"*>("6.=.^+'(Q".&*$6.*+,"6$-("+)"*$"R(")*$[[(-3"
T',("*>("6.=.^+'(">.)"R(('"(6[*+(-Q".&*$6.*+,"6$-("\+//"R("%()*.%*(-"\+*>"
5*.%*C,$66.'-"+)")*.%*(-".=.+'".'-"*>(",$&'*(%"+)"%()(*3"
"
N39"688789
a/.'"*>("+6[/(6('*.*+$'"$Y"*>("*.)Z"$'"_$&%"$\'3"
bcdefghijklmjnopqmqrimpsimotmuvwmxoplqiksmylmzu{|}uwmz~mylmqrimolylimrim
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;I:E3-$,J"
9@"
"
012456787891
557
456
2778797665! "
1
R
"
"
"
"
"
"
"
"
"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5ABCBDC:E9FE::"GBAFH+6(%)".'-"A$&'*(%)C0;@:E3-$,I"
9@"
"
012456787891
557
456
2778797665! "
L$&",.'"M+'-".--+*+$'./"+'M$%6.*+$'".)".'"$%+('*.*+$'".+-"M$%"+'+*+./".'-".-?.',(-"*%.+'+'=N"M$%"
(I.6O/(P"8(**+'="5*.%*(-N"?+-($)N"*&*$%+./)N".OO)N"6.'&./)N"O%$=%.66+'="=&+-(/+'()".'-"*%+./"
)$M*Q.%(RM+%6Q.%(N".*"*>("M$//$Q+'="/+'SP"
"
QQQ3)+(6(')3,$6R),(R)TE;H::"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"%+=>*)"%()(%?(-3"
5@ABACB:D9ED::"FA@EG+6(%)".'-"@$&'*(%)B0;H:D3-$,I"
9<"
"
966574818915*11;62867)98<4
8915=>?
!
"1
2
8
#1
4
6
$
%
&
'79
71(951789
7
-./0123454560.72248797:0
)98!# !*+%,
01245267829
864769564
8915
595789848915796657
2987267626
012456787891
557
456
27787976!65"!!#
P#0410QR!S7K1TR!U#
V&.)&#(%4W#=B6XI<=FE$D;;FG8H<#
P#041042Q5ONN786Y078978N#
V&.)&#(%4W#=B6XZ::F<88;EFG[8I#
P#041042Q5ONN786Y16NN5
78N\
L
N5N]#
V&.)&#(%4W#=B6XZ::F<H8;EFG[8I
P#041042Q5ONN786YTL95678N\
L
N5N]#
V&.)&#(%4W#=B6XZ::F<88;EFG[BI
P#041042Q5ONN786YTL95678N\
L
N5N]#
V&.)&#(%4W#=B6XZ::F<H8;EFG[BI
P#041042Q5ONN786Y0
878N\
L
N5N]#
V&.)&#(%4W#=B6XZ::F<8A;EFG[8I
D%+)#+?/+#+?)*)#+&/,()&#^/-_/>)*#/&)#&)^0/-).#`,+?#*'--)**%&#^/-_/>)*#`?)(#()-)**/&a4#
8(#%@)&@,)`#%b#+?)#-'&&)(+0a#/@/,0/c0)#6AB#^/-_/>)*#,*#^&%@,.).#/+W#*,)7)(*4-%7d*-)d+^#
1878
5678789
$%&#&)>,%(/0#6,)7)(*#6AB#-%(+,(').#+&/,(,(>e#^0)/*)#-%(+/-+#a%'&#&)>,%(/0#6AB#-%(+/-+#
*,)7)(*4-%7d*-)d-%(+/-+#
778678O5
6785965789012
*,)7)(*4-%7d*-)#
8O5
6785965789
N
f?)#6AB#+&/,(,(>#-'&&,-'0'7#b%&#+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#f%+/00a#g(+)>&/+).#8'+%7/+,%(#hfg8i#
`/*#^&)^/&).#b%&#+?)#^&%>&/7#j6,)7)(*#8'+%7/+,%(#A%%^)&/+)*#`,+?#B.'-/+,%(#h6ABij#*^)-,b,-/00a#b%&#
+&/,(,(>#^'&^%*)*#b%&#^'c0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)#
-%(+)(+*4#
#
f?,*#.%-'7)(+#,*#+%#c)#'*).#%(0a#b%&#,(,+,/0#+&/,(,(>#%(#6,)7)(*#^&%.'-+*d*a*+)7*4#f?,*#7)/(*#,+#-/(#c)#
-%^,).#,(#`?%0)#%&#^/&+#/(.#>,@)(#+%#+?%*)#c),(>#+&/,().#b%&#'*)#`,+?,(#+?)#*-%^)#%b#+?),&#+&/,(,(>4#
A,&-'0/+,%(#%&#-%^a,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#^)&7,++).#`,+?,(#^'c0,-#+&/,(,(>#
/(.#/.@/(-).#+&/,(,(>#b/-,0,+,)*#b%&#+&/,(,(>#^'&^%*)*4##
#
BJ-)^+,%(*# &)k',&)# `&,++)(# -%(*)(+# b&%7# +?)# 6,)7)(*# 89# -%(+/-+W# 1%0/(.# 6-?)')&)&#
&%0/(.4*-?)')&)&l*,)7)(*4-%74#
#
Vbb)(.)&*#`,00#c)#?)0.#0,/c0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).e#^/&+,-'0/&0a#,b#/#^/+)(+#,*#>&/(+).#
%&#/#'+,0,+a#7%.)0#%&#.)*,>(#,*#&)>,*+)&).4#
#
m*)#b%&#,(.'*+&,/0#-'*+%7)&#-%'&*)*#,*#)J^&)**0a#^&%?,c,+).4#n)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%b#+?)#
+&/,(,(>#-'&&,-'0'7*4##
#
n)#`,*?#+%#+?/(_#+?)#fm#3&)*.)(e#^/&+,-'0/&0a#o&%b4#3&4Fg(>4#p)%(#m&c/*#/(.#3,^04Fg(>4#8(()++#ob)bb)&e#+?)#
q,-?/)0#3r,/00/*#B(>,())&,(>#A%&^%&/+,%(#/(.#/00#%+?)&#,(@%0@).#^)&*%(*#b%&#+?),&#*'^^%&+#.'&,(>#+?)#
^&)^/&/+,%(#%b#+?,*#+&/,(,(>#-'&&,-'0'74#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
:#
012456787891
557
456
27787976!65"!!#
K/L0)#%M#-%(+)(+*#
#
<N 9%/0#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GN
:N O&)&)P',*,+)#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GN
AN K?)%&Q#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GN
A4<N $/'0+#.,/>(%*+,-*#/(.#?/&.R/&)#M/'0+*#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GN
A4:N S/&.R/&)#.,/>(%*+,-*#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#IN
A4AN 3,/>(%*+,-*#M%&#T&%>&/7#L0%-U*#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#=N
GN K/*U#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#VN
IN O0/((,(>#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#VN
I4<N W(0,()#,(+)&M/-)#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#VN
=N 6+&'-+'&).#*+)TFLQF*+)T#,(*+&'-+,%(*#44444444444444444444444444444444444444444444444444444444444444444444444444#XN
=4<N
=4:N
=4AN
=4GN
=4IN
=4=N
=4VN
=4XN
1)+&,)@)#/(#)J,*+,(>#T&%Y)-+#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#XN
3%R(0%/.#+?)#T&%>&/7#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#ZN
9%#%(0,()4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<<N
W(0,()#2#.,/>(%*+,-*#%M#+?)#6[\8K[B#6V#-%(+&%00)�#<IN
W(0,()]%MM0,()#-%7T/&,*%(#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:GN
\%(,+%&#/(.#7%.,MQ#+/>*#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:VN
$%&-)#+/>*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A;N
B?)-U0,*+#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AGN
VN CJ)&-,*)#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AIN
V4<N K/*U#^#CJ)&-,*)#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AIN
V4:N O0/((,(>#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AIN
V4AN B?)-U0,*+#^#CJ)&-,*)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A=N
XN 8..,+,%(/0#,(M%&7/+,%(#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AVN
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
A#
012456787891
557
456
27787976!65"!!#
K010L! MNL041!ON14LN0
M6
P(#+?,*#7%.'0)Q#+?)#&)/.)&#R,00#S)-%7)#/-T'/,(+).#R,+?#+?)#+%%0*#+?/+#*'UU%&+#+&%'S0)*?%%+,(>4#
#
V?,*#7%.'0)#R,00#U&)*)(+#.,/>(%*+,-#W'(-+,%(*#+?/+Q#W%&#)J/7U0)Q#X%'#-/(#+)*+#R,+?#+?)#VP8#
U&%Y)-+#W&%7#+?)#6BCDCED;F:G<;;D$BGZ&%>&/77,(>#R,+?#6P[8VPB#6\G<I;;#7%.'0)4##
55]
7^7
V?,*#-?/U+)&#S',0.*#%(#+?)#?/&.R/&)#-%(W,>'&/+,%(#%W#6P[8VPB#6\#BZ_<I<=$GF#ZE`3Z4#
a%R)@)&Q#%+?)&#?/&.R/&)#-%(W,>'&/+,%(*#+?/+#?/@)#.,>,+/0#,(U'+#/(.#%'+U'+#-/&.*#-/(#S)#'*).4#
b%'#-/(#'*)#+?)#W%00%R,(>#U&%Y)-+#W%&#+?,*#-?/U+)&Q#W%&#)J/7U0)c#
6BCDCED;F:D<;;D$BGZ&%>&/77,(>D1<I;F4d/U<F#
4e5"
F4<#!6
7698^7^68e65f65g6
^#
$/'0+*#-/(#S)#-/'*).#SX#/#@/&,)+X#%W#+?,(>*4##
VR%#)&&%&#U/++)&(*#-/(#S)#.,*+,(>',*?).#W%&#W/'0+*#+?/+#%--'&#/W+)&#/#+&/(*,+,%(#+%#1_E4#
<4#V?)#BZ_#>%)*#+%#%&#*+/X*#,(#6VhZ#7%.)4#V?)#X)00%R#6VhZ#iC3#0,>?+*#'UQ#/(.#%+?)&#
,(.,-/+%&#iC3*#0,>?+#'U#%(#+?)#BZ_Q#U%R)&#*'UU0X#'(,+Q#P`h#7%.'0)*#%&#S'*#7%.'0)*4#
8#BZ_#W/'0+#?/*#%--'&&).#,(#+?,*#-/*)4#$%&#)J/7U0)Q#/#7%.'0)#,(#+?)#86#7,>?+#S)#.)W)-+,@)#%&#
?/@)#/(#,(-%&&)-+#U/&/7)+)&#/**,>(7)(+Q#%&#/#S'*#*X*+)7#W/'0+#7,>?+#S)#U&)*)(+4#
8(#,(+)&&'U+,%(#/(/0X*,*#R,00#S)#U)&W%&7).#,(#+?,*#,(*+/(-)#SX#)@/0'/+,(>#+?)#?/&.R/&)#
.,/>(%*+,-*#/(.#SX#&)/.,(>#+?)#7%.'0)#*+/+'*#,(#+?)#.,/>(%*+,-#S'WW)&#%W#+?)#BZ_4#
#
:4#V?)#BZ_#,*#,(#W/'0+X#1_E#7%.)4#V?)#>&))(#1_E#iC3#0,>?+*#'U#/(.#%+?)&#,(.,-/+%&#iC3*#
0,>?+#'U#%&#W0/*?#%(#+?)#BZ_Q#U%R)&#*'UU0X#'(,+Q#P`h#7%.'0)*#%&#S'*#7%.'0)*4#
#
P(#+?,*#-/*)Q#/#W/'0+#7/X#?/@)#%--'&&).#,(#+?)#P`h#.)@,-)*#%&#U%R)&#*'UU0X4##
8#@,*'/0#-?)-j#,*#U)&W%&7).#,(,+,/00X#+%#(/&&%R#.%R(#+?)#W/'0+#/&)/4#V?)#,(.,-/+%&#iC3*#%(#+?)#
BZ_#/(.#P`h#.)@,-)*#/&)#)@/0'/+).4#V?)#.,/>(%*+,-#./+/#%W#+?)#W/'0+X#P`h#/(.#S'*#7%.'0)*#/&)#
&)/.#W&%7#+?)#?/&.R/&)#.,/>(%*+,-*4#P(#/..,+,%(Q#/#W/'0+#/(/0X*,*#-/(#S)#U)&W%&7).#'*,(>#/#
R/+-?#+/S0)#%(#+?)#U&%>&/77,(>#.)@,-)4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GA<;#H/*,-*#3,/>(%*+,-*D1<I;F4.%-J#
A#
012456787891
557
456
27787976!65"!!#
F4:#K65L657698M7M
N?)#.)@,-)#@,)O#,(#%(0,()#7%.)#%P#+?)#NQ8#R%&+/0#S&%@,.)*#T%'#/#U',-V#%@)&@,)O#%P#+?)#
-%(P,>'&/+,%(#/(.#*T*+)7#*+/+'*#%P#+?)#/'+%7/+,%(#*T*+)74##
#
$,>'&)#<W#X(0,()#@,)O#%P#.)@,-)#-%(P,>'&/+,%(#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<A;F4.%-J#
A#
012456787891
557
456
27787976!65"!!#
P?)#Q&%R)-+#+&))#S,(.%S#%T#+?)#PU8#V%&+/0#,(#%(0,()#7%.)#Q&%@,.)*#W%'#/(#%@)&@,)S#%T#+?)#
Q&%>&/77).#X0%-Y*#%T#+?)#'*)&#Q&%>&/74#Z,+?#+?)#?)0Q#.,/>(%*+,-#*W7X%0*[#/#-%7Q/&,*%(#%T#
+?)#Q&%>&/7#X0%-Y*#'*).#%TT0,()#/(.#%(0,()#,*#.,*Q0/W).4##
$,>'&)#:\#](0,()#@,)S#%T#+?)#^/,(#_]H<`#X0%-Y#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
=#
012456787891
557
456
27787976!65"!!#
46LM
N?)#O%00%P,(>#.,/>(%*+,-#O'(-+,%(*#P,00#Q)#*?%P(#/(.#+)*+).#,(#+?,*#-?/R+)&S#
T# 3,/>(%*+,-#*U7Q%0*#,(#+?)#%(0,()#@,)P#%O#+?)#NV8#W%&+/0#
T# 3)@,-)#.,/>(%*+,-*#P,+?#7%.'0)#*+/+'*#
T# XOO0,()Y%(0,()#-%7R/&,*%(#
T# Z%(,+%&,(>#/(.#7%.,OU,(>#+/>*#
T# $%&-,(>#+/>*#
[688789
N?)#.,/>(%*+,-#O'(-+,%(*#P,00#Q)#R)&O%&7).#'*,(>#/#O,(,*?).#R&%\)-+#/*#/(#)K/7R0)4#
8#R&%\)-+#,(#+?)#NV8#W%&+/0#+?/+#P/*#R&)@,%'*0U#.%P(0%/.).#+%#+?)#-%(+&%00)&#*?%'0.#Q)#%R)(#O%&#
+?,*4#
V(#%'&#-/*)]#/O+)&#*+/&+,(>#+?)#NV8#W%&+/0]#/#R&)@,%'*0U#-&)/+).#R&%\)-+#P,00#Q)#&)+&,)@).#O&%7#+?)#
/&-?,@)#/(.#.%P(0%/.).#+%#+?)#/**%-,/+).#-%(+&%00)&4#
8O+)&P/&.*]#U%'#-/(#*+/&+#,7R0)7)(+,(>#+?)#.,/>(%*+,-#O'(-+,%(*#,(#+?)#NV8#W%&+/04##
J4<#^878785_6
X(0,()#.,/>(%*+,-*#/&)#%(0U#R%**,Q0)#P?)(#+?)#-%&&)-+#-%77'(,-/+,%(#-%(()-+,%(#+%#+?)#BW`#
?/*#Q))(#*)+#'R#Q)O%&)?/(.4#a)&)]#P)#/&)#-%(()-+).#@,/#C+?)&()+YW1X$VECN4#
b?)(#-%(()-+,(>#%(0,()]#U%'#7'*+#+?)&)O%&)#*)+#+?)#/RR&%R&,/+)#,(+)&O/-)*#O%&#U%'&#/'+%7/+,%(#
*U*+)74#
$,>'&)#FS#9%#%(0,()#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
A#
012456787891
557
456
27787976!65"!!#
05
5LMN"LM78L5
78L
O%'#-/(#P,(.#,(*+&'-+,%(*#%(#?%Q#+%#-/&&R#%'+#S0/((,(>#T)0%Q4#UP#R%'#/0&)/.R#?/@)#/#>%%.#
'(.)&*+/(.,(>#%P#)@)&R+?,(>V#,+#Q,00#T)#*'PP,-,)(+#+%#P%-'*#%(#+?)#('7T)&).#*+)S*4#W+?)&Q,*)V#
*,7S0R#P%00%Q#+?)#.)+/,0).#*+)S*#,(#+?)#,(*+&'-+,%(*4#
=4<#X57Y68Z7L789M5[
\#I)P%&)#Q)#-/(#*+/&+#+?)#.,/>(%*+,-#P'(-+,%(*V#Q)#()).#/#S&%])-+#Q,+?#S&%>&/77,(>#/(.#/#
?/&.Q/&)#-%(P,>'&/+,%(4##
^)4>4V#6BCDCED;F:G<;;D$BG_`ab`cddefbghicjk4##
l%#&)+&,)@)#/(#)K,*+,(>#S&%])-+#+?/+#?/*#T))(#/&-?,@).V#R%'#7'*+#*)0)-+#+?)#&)0)@/(+#
/&-?,@)#Q,+?#\#m&%])-+#\#1)+&,)@)#,(#+?)#S&%])-+#@,)Q4##
B%(P,&7#R%'&#*)0)-+,%(#Q,+?#nWS)(n4##
^\#m&%])-+#\#1)+&,)@)#\#6)0)-+#/#4o/S#/&-?,@)#\#WS)(p#
#
\#l?)#()K+#*+)S#,*#+%#*)0)-+#+?)#+/&>)+#.,&)-+%&R#Q?)&)#+?)#&)+&,)@).#S&%])-+#Q,00#T)#*+%&).4#
B%(P,&7#R%'&#*)0)-+,%(#Q,+?#nWqn4#^\#l/&>)+#.,&)-+%&R#\#Wqp#
#
#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
A#
012456787891
557
456
27787976!65"!!#
O#8P+)&#+?)#Q&%R)-+#?/*#S))(#*'--)**P'00T#&)+&,)@).U#+?)#-%(+&%00)&#-/(#S)#*)0)-+).#/(.#
.%V(0%/.).#+%>)+?)&#V,+?#+?)#-&)/+).#Q&%>&/74#WO# X#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
A#
012456787891
557
456
27787976!65"!!#
K#6)0)-+#+?)#-%&&)-+#,(+)&L/-)*#/(.#-0,-M#N6+/&+#*)/&-?N4#OK#NPDQRBN#K#6)0)-+,%(#%L#+?)#
()+S%&M#/./T+)&#%L#+?)#P9QPA#K#UVWXYZ[\Z[]^_Z[`a[ba`K#N6+/&+#*)/&-?Nc#
d(-)#N6-/(#/(.#,(L%&7/+,%(#&)+&,)@/0#-%7T0)+).N#/TT)/&*e#-0,-M#Nf%/.N4#OK#Nf%/.Nc#
#
K#H)L%&)#.%S(0%/.,(>#-/(#g)#*+/&+).e#%+?)&#/-+,%(*#7/h#?/@)#+%#g)#*)+#O?,>?0,>?+).#,(#T,(Mc4#
A0,-M#Nf%/.N#/>/,(4#OK#ij_\klmn#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
<;#
012456787891
557
456
27787976!65"!!#
K#8L+)�%/.,(>M#L,&*+#*)0)-+#+?)#N6+/&+#/00N#-?)-O#P%J#'(.)-+,%(4#
A0,-O#N$,(,*?N4#QK#*)0)-+#-?)-O#P%J#K#N$,(,*?NR#
=4E#S878
K#T%#>)+#*+/&+).#U,+?#+?)#.,/>(%*+,-#L'(-+,%(*M#U)#U,00#*)0)-+#%'&#-%(+&%00)&#QNVWAC<NR#/(.#
-0,-O#N9%#%(0,()N4#QK#VWAC<#K#9%#%(0,()R#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
<<#
012456787891
557
456
27787976!65"!!#
K#L(-)#+?)#%(0,()#-%(()-+,%(#+%#+?)#MNOAC<M#-%(+&%00)&#,*#)*+/P0,*?).Q#+?)#ANR#-/(#P)#
*+/&+).#%&#*+%SS).#T,+?#+?)#U%00%T,(>#P'++%(*# 4#3,/>(%*+,-#,(U%&7/+,%(#,(#+?)#U%&7#
%U#*V7P%0*#T,00#/0&)/.V#P)#/@/,0/P0)#,(#+?)#S&%W)-+#+&))#/(.#,(#+?)#.,/>(%*+,-*#T,(.%T4#
#
0"
XYZ5[
\657Y8Y6
Y78[\5]5
K#^?)#.,/>(%*+,-#*V7P%0*#,(#+?)#S&%W)-+#+&))#*?%T#/#-%7S/&,*%(#*+/+'*#&)S&)*)(+,(>#+?)#
%(0,()_%UU0,()#-%7S/&,*%(#%U#+?)#S&%W)-+#*+&'-+'&)4#
0"
X68789
0.)&#-%(+/,(*#%PW)-+*#T?%*)#%(0,()#/(.#%UU0,()#@)&*,%(*#/&)#.,UU)&)(+#`%(0V#,(#+?)#
# $%
S&%W)-+#+&))a#
# L(0,()#/(.#%UU0,()#@)&*,%(*#%U#+?)#%PW)-+#/&)#.,UU)&)(+#
# LPW)-+#%(0V#)J,*+*#%(0,()#
# LPW)-+#%(0V#)J,*+*#%UU0,()#
# L(0,()#/(.#%UU0,()#@)&*,%(*#%U#+?)#%PW)-+#/&)#+?)#*/7)#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
<:#
012456787891
557
456
27787976!65"!!#
K#3%'L0)F-0,-M#N3)@,-)#-%(O,>'&/+,%(N4#
PK#3)@,-)#-%(O,>'&/+,%(Q#
#
RS56789T6T"
UTV51WT681T
K#X?)#>&/Y?,-/0#&)Y&)*)(+/+,%(#/(.#.)@,-)#,(O%&7/+,%(#Z,(.%Z#*?%Z#+?)#@/&,%'*#%Y)&/+,(>#
*+/+)*#%O#+?)#B[\#%&#-%77'(,-/+,%(#Y&%-)**%&*#PB[*Q4#
0"
U
RS56789T6
1\E#
#
6X][#
#
6X81X\[#
#
^]_3#
#
3C$CBX#
#
\(M(%Z(#%Y)&/+,(>#*+/+)#
#
X?)#-%(O,>'&).#7%.'0)#.%)*#(%+#*'YY%&+#.,*Y0/`#%O#+?)#%Y)&/+,(>#
#
*+/+)4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
<A#
012456787891
557
456
27787976!65"!!#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GA<;#H/*,-*#3,/>(%*+,-*D1<I;F4.%-J#
<A#
012456787891
557
456
27787976!65"!!#
P#3%'T0)G-0,-V#]^(0,()#2#.,/>(%*+,-*]#,(#+?)#S&%_)-+#+&))4#
`P#^(0,()#2#.,/>(%*+,-*a#
P#8#Bbc#%S)&/+%&#S/()0d#+?)#-W-0)#+,7)#/(.#+?)#7)7%&W#'+,0,e/+,%(#/&)#.,*S0/W).#,(#+?)#
^(0,()#+%%0*#%(#+?)#&,>?+#*,.)4#6U,+-?#+?)#Bbc#+%#1cE#?)&)4#`P#1cEa#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<A;F4.%-J#
<A#
012456787891
557
456
27787976!65"!!#
K#L?)#M%&N,(>#/&)/#M,(.%M#-%(+/,(*#>)()&/0#,(O%&7/+,%(#/P%'+#+?)#AQR4#SK#9)()&/0T#
#
#
K#UO#.,/>(%*+,-#,(O%&7/+,%(#,*#/@/,0/P0)V#,+#,*#.,*W0/X).#,(#3,/>(%*+,-#*+/+'*4##
SK#3,/>(%*+,-#*+/+'*T#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
<=#
012456787891
557
456
27787976!65"!!#
L#3)+/,0).#M(N%&7/+,%(#%(#+?)#,(.,@,.'/0#)@)(+*#,*#.,*O0/P).#,(#3,/>(%*+,-*#Q'NN)&4##
RL#3,/>(%*+,-*#Q'NN)&S#
L#E)K+#P%'#&)-),@)#,(N%&7/+,%(#/Q%'+#+?)#-P-0)#+,7)#%N#+?)#)K)-'+).#O&%>&/74##
RL#BP-0)#+,7)S#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
<A#
012456787891
557
456
27787976!65"!!#
L#M?)#7)7%&N#'+,0,O/+,%(#-/(#P)#*))(#?)&)#,(#.)+/,04#QL#R)7%&NS#
#
L#T(U%&7/+,%(#/P%'+#+?)#.,*V0/N#,*#/0*%#/@/,0/P0)#U%&#+?)#BWX#<J<=$4#QL#3,*V0/NS#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
<A#
012456787891
557
456
27787976!65"!!#
L#M?)#()+N%&O#*)++,(>*#/(.#+?)#*+/+'*#%P#+?)#Q1R$SECM#,(+)&P/-)*#TU<V#/(.#TU:V#-/(#/0*%#
W)#.,*X0/Y).4#
ZL#Q1R$SECM#,(+)&P/-)#TU<V#%&#L#Q1R$SECM#,(+)&P/-)#TU:V[##
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
<A#
012456787891
557
456
27787976!65"!!#
K#L(#M8**,>(#LN#/..&)**M#'(.)&#$'(-+,%(*O#P%'#-/(#/**,>(#+?)#LN#/..&)**#+%#/#-%(+&%00)&4#
Q%R)@)&O#+?,*#,*#%(0P#S%**,T0)#R?)(#(%#?/&.R/&)#?/*#T))(#.%R(0%/.).#+%#+?)#ANU4##
VK#$'(-+,%(*#K#8**,>(#LN#/..&)**W#
#
K#U(.)&#M6)+#+,7)MO#P%'#-/(#*)+#+?)#+,7)#%X#+?)#ANU4##
VK#$'(-+,%(*#K#6)+#+,7)W#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
:;#
012456787891
557
456
27787976!65"!!#
K#L(.)&#M$,&7N/&)#'O./+)MP#Q%'#-/(#'O./+)#+?)#R,&7N/&)#%R#+?)#STA#%&#+?)#.,*O0/Q4##
UK#$'(-+,%(*#K#$,&7N/&)#'O./+)V#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
:<#
012456787891
557
456
27787976!65"!!#
K#L(.)&#M8**,>(#(/7)MN#O%'#-/(#/**,>(#/#P1Q$RDBS#.)@,-)#(/7)#+%#+?)#-%(T,>'&).#T,)0.#
.)@,-)*#%(#P1Q$RDBS4#S?)#.)@,-)#(/7)#%T#+?)#APL#-/((%+#U)#-?/(>).#?)&)4#R+#-/(#%(0O#
U)#-?/(>).#UO#.%V(0%/.,(>#/#7%.,T,).#?/&.V/&)#-%(T,>'&/+,%(4#
WK#$'(-+,%(*#K#8**,>(#(/7)X#
#
K#L(.)&#M1)*)+#+%#T/-+%&O#*)++,(>*MN#O%'#-/(#&)*+%&)#+?)#T/-+%&O#*)++,(>*#T%&#+?)#APL4#8T+)&#
&)*+%&,(>#+?)#T/-+%&O#*)++,(>*N#+?)#APL#-%(T,>'&/+,%(#/(.#+?)#Y&%>&/7#7'*+#U)#,7Y%&+).#
/>/,(#T&%7#+?)#,(*)&+).#7)7%&O#-/&.4#S?)&)T%&)N#+?)#7)7%&O#-/&.#7'*+#U)#T%&7/++).#
U)T%&)#+?)#&)*+%&,(>#+?)#T/-+%&O#*)++,(>*4#
WK#$%&7/+#7)7%&O#-/&.#K#$%&7/+#K#1)*)+#+%#T/-+%&O#*)++,(>*#K#1)+/,(#%&#.)0)+)#RP#
/..&)**#K#1)*)+X#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
::#
012456787891
557
456
27787976!65"!!#
K#$,(/00LM#+?)#*)&@,-)#./+/#-/(#N)#*/@).#'(.)&#$'(-+,%(*4##
OK#$'(-+,%(*#K#6/@)#*)&@,-)#./+/P#
#
K#Q?)#%(0,()#-%(()-+,%(#*?%'0.#N)#.,*-%(()-+).#/>/,(#N)R%&)#+?)#()J+#-?/S+)&4##
OK#T(0,()#/--)**#K#3,*-%(()-+#%(0,()#-%(()-+,%(P#
#
K#Q?)#QU8#V%&+/0#,*#(%W#N/-X#,(#%RR0,()#7%.)4#Q?)#%&/(>)F-%0%&).#N/&*#/(.#+?)#.,/>(%*+,-#
*L7N%0*#/&)#(%#0%(>)&#.,*S0/L).4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
:A#
012456787891
557
456
27787976!65"!!#
O#P+#,*#%Q+)(#,7R%&+/(+#+%#S(%T#T?)+?)&#+?)#*/@).#./+/#7/+-?)*#+?)#./+/#0%/.).#,(#+?)#
-%(+&%00)&4#$,&*+U#&)7%@)#+?)#()>/+,%(#Q&%7#+?)#V6/Q)+WD*?'+%QQD/-+,@)V#+/>#/+#+?)#8E3#
Q'(-+,%(#,(#+?)#VXYZY1DX8E[8\#]$B<^V#_0%-S4#
6/@)#+?)#VXYZY1DX8E[8\#]$B<^V#_0%-SU#_'+#.%#`K4#.%T(0%/.#,+#+%#+?)#-%(+&%00)&4##
B0%*)#+?)#VXYZY1DX8E[8\#]$B<^V#_0%-S#/>/,(4#
O#Z%#-%7R/&)U#&,>?+G-0,-S#+?)#Va\BD<V#-%(+&%00)&#/(.#*)0)-+#VB%7R/&)VU#VYQQ0,()b%(0,()V4##
cO#6)0)-+#-%(+&%00)&#O#B%7R/&)#O#YQQ0,()b%(0,()d#
#
O#Z?)#B%7R/&)#).,+%&#%(0,()#%R)(*4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GA<;#H/*,-*#3,/>(%*+,-*D1<I;F4.%-J#
:A#
012456787891
557
456
27787976!65"!!#
K#LMN#M%&#)J/7O0)N#P0%-Q#.,MM)&)(-)*#/&)#,(.,-/+).# N#M,&*+#*)0)-+#+?)#P0%-Q#,(@%0@).4#R%'#-/(#
+?)(#-0,-Q#+?)# #P'++%(#+%#S6+/&+#.)+/,0).#-%7O/&,*%(S4#
TK#UVWV1DU8EX8Y#K#6+/&+#.)+/,0).#-%7O/&,*%(Z4#
#
K#W?)#*)0)-+).#%MM0,()[%(0,()#P0%-Q#\,00#P)#-%7O/&).#,(#+?)#-%.)#P0%-Q#-%7O/&,*%(4#8#
.)+/,0).#.)*-&,O+,%(#%M#+?)#.,MM)&)(-)#,*#*?%\(#,(#+?)#-%7O/&,*%(#&)*'0+4#
#
K#B0%*)#+?)#\,(.%\#%M#+?)#-%.)#P0%-Q#-%7O/&,*%(4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<A;F4.%-J#
:A#
012456787891
557
456
27787976!65"!!#
K#8(#/-+,%(#-/(#L)#*)0)-+).#M%&#+?)#L0%-N#,(@%0@).#,(#+?)#A%7O/&)#).,+%&4#
B,+?)&#+?)#PQRSR1CQ8DT8UP#L0%-N#V,00#L)#.%V(0%/.).#M&%7#+?)#O&%>&/77,(>#.)@,-)#+%#
+?)#-%(+&%00)&#/(.#%@)&V&,++)(#+?)&)#%&#+?)#PQRSR1CQ8DT8UP#L0%-N#V,00#L)#,7O%&+).#
M&%7#+?)#-%(+&%00)&#/(.#%@)&V&,++)(#,(#+?)#SW8#X%&+/04#
6)0)-+#+?)#PTO0%/.#M&%7#.)@,-)P#/-+,%(4#YZ[\]^_`a[bc_d[aefghei#
#
K#A0,-N#+?)#PBJ)-'+)#/-+,%(*P#L'++%(# 4#jK#BJ)-'+)#/-+,%(*k#
K#A%(M,&7#PTO0%/.#M&%7#.)@,-)P4#jK#TO0%/.#M&%7#.)@,-)k#
#
K#8M+)&#+?)#'O0%/.l#+?)&)#/&)#(%#7%&)#.,MM)&)(-)*4#m%'#*?%'0.#(%V#*/@)#n%'&#O&%o)-+#/>/,(#
/(.#-0%*)#+?)#%(0,()#-%(()-+,%(4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6ABCBDC;E:FG<;#H/*,-*#3,/>(%*+,-*C1<I;E4.%-J#
:=#
012456787891
557
456
27787976!65"!!#
=4=#87568 7L"69M
N#O%#7%(,+%&#/(.#7%.,PQ#+/>*R#Q%'#()).#/#S/+-?#+/T0)4#
3%'T0)G-0,-U#V8..#()S#S/+-?#+/T0)V#,(#+?)#W&%X)-+#+&))4#
YN#8..#()S#S/+-?#+/T0)Z#
N#[W)(#+?)#()S0Q#-&)/+).#V\/+-?D+/T0)D<V#TQ#.%'T0)G-0,-U,(>#,+4#YN#V\/+-?D+/T0)D<VZ#
N#]%'#-/(#)(+)&#,(.,@,.'/0#+/>*#,(#+?)#+/T0)#%&#Q%'#-/(#*)0)-+#+?)#
VO/>D+/T0)D*%&+,(>D*+/+,%(V#/(.#+?)#+/>*#+%#T)#7%(,+%&).R#/(.#.&/>#+?)7#P&%7#+?)#3)+/,0*#
@,)S#+%#+?)#S/+-?#+/T0)4#
YN#3)P/'0+#+/>#+/T0)Z#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
:A#
012456787891
557
456
27787976!65"!!#
L#M%#?/@)#/00#7%(,+%&,(>#/(.#7%.,NO,(>#N'(-+,%(*#/@/,0/P0)#N%&#*)0)-+,%(Q#+?)#N%00%R,(>#
-%0'7(*#-/(#P)#.,*S0/O).T##
UVWWXYZ[\]^X_ZW`YabcX #da[XUVWWXefgda[e[XYZ[eX_ZW`YabcX 4##
B%(+,(')#PO#*)0)-+,(>#+?)#+&,>>)&#+,7,(>#N%&#+?)#7%(,+%&,(>4##
hL#i)&7/()(+j#
#
4klm789
87578968
7l"789
n656o676pq
r# i)&7/()(+#h,(#+?,*#7%.)Q#+?)#,(S'+*#/&)#7%(,+%&).s7%.,N,).#/+#+?)#*+/&+#%N#+?)#
-O-0)#/(.#+?)#%'+S'+*#/+#+?)#)(.4j#
r# t(-)#%(0OQ#/+#*+/&+#%N#*-/(#-O-0)#
r# t(-)#%(0OQ#/+#)(.#%N#*-/(#-O-0)#
r# i)&7/()(+0OQ#/+#*+/&+#%N#*-/(#-O-0)#
r# i)&7/()(+0OQ#/+#)(.#%N#*-/(#-O-0)#
r# t(-)#%(0OQ#/+#+&/(*,+,%(#+%#6Mti#
r# i)&7/()(+0OQ#/+#+&/(*,+,%(#+%#6Mti#
#
i&%-)**#,7/>)#%N#+?)#,(S'+*#
uVvXbvdwvXZ]Xb_daX_^_WexX+&,>>)&#S%,(+#
tI#<#
8+#+&/(*,+,%(#+%#6Mti#+&,>>)&#S%,(+#
uVvXea[XZ]X_^_WexXvw\yyewXgZ\av#
i&%-)**#,7/>)#%N#+?)#%'+S'+*#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
#
:A#
012456787891
557
456
27787976!65"!!#
L#E)K+M#-0,-N#OP%(,+%&#/00#@/0')*#%(-)#/(.#(%QO# #%&#OP%(,+%&#/00#@/0')*#/--%&.,(>#+%#
+&,>>)&#*)++,(>*O# 4#RL# #P%(,+%&#/00S#
#
L#T%#7%.,UV#+/>*M#)(+)&#+?)#.)*,&).#OP%.,UV#@/0')*O4#E)K+M#-0,-N# #+%#OP%.,UV#/00#/-+,@/+).#
@/0')*#%(-)#/(.#(%QO#%&# #+%#OP%.,UV#/00#/-+,@/+).#@/0')*#WV#P%.,UV#Q,+?#+&,>>)&#
-%(.,+,%(O4#
RL#T1XC#L# #7%.,U,)*#/00#/-+,@/+).#@/0')*#WV#OP%.,UV#Q,+?#+&,>>)&#-%(.,+,%(OS##
L#B%(U,&7#+?)#Q/&(,(>#Q,+?#YZ[Y\#RL#])*S##
#
L#T?)#%'+^'+#W)-%7)*#/-+,@)#)@)(#+?%'>?#+?)#^&%>&/77).#-%(.,+,%(*#/&)#(%+#7)+4#
#
_`abcdefghijgklhmighlnojgpqgmorqjsgrtghijgmruujmhprughrghijgvwxgpqgorqhygloogzrspf{gmrzzlusqg
njmrzjgpujffjmhp|j}g
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;F:GH<;#I/*,-*#3,/>(%*+,-*D1<J;F4.%-K#
:A#
012456787891
557
456
27787976!65"!!#
=4K#!569L
M#NOPQRSTUVPWQXYZV[\TZQV]ZQ^PQY_P`Q[TQ]__\aZQ]QX\bP`Qc]dYPQ[TQ[]a_eQSTUVPQc]dYP_Q]UPQ
*f)-,g,).#,(#/#*,7,0/&#h/i#/*#g%&#+?)#jk%.,gi#+/>*j#g'(-+,%(#l'+m#,(#-%(+&/*+m#/&)#&)+/,().#
/g+)&#+?)#Bno#,*#*+%ff).4#p?)#7/,(#.,gg)&)(-)*#l)+h))(#jk%.,gi#+/>*j#/(.#+?)#j$%&-)j#
g'(-+,%(#/&)#/*#g%00%h*q#r(#-%(+&/*+#h,+?#jk%.,gi#+/>*jm#+?)#j$%&-)j#g'(-+,%(#.%)*#(%+#/00%h#
i%'#+%#/**,>(#@/0')*#+%#./+/#l0%-s*m#+,7)&*m#-%'(+)&*#/(.#l,+#7)7%&i4#
rtu#.)@,-)#,(f'+*#v)4>4m#rwJJqnx#-/((%+#l)#7%.,g,).m#/0+?%'>?#+?)i#-/(#l)#f&)F/**,>().#
li#+?)#j$%&-)j#g'(-+,%(4#
o(0,s)#h,+?#+?)#jk%.,gij#g'(-+,%(m#@/0')*#f)&7/()(+0i#/**,>().#li#+?)#j$%&-)j#g'(-+,%(#
-/((%+#l)#%@)&h&,++)(#li#+?)#'*)&#f&%>&/74#
rg#i%'#-0%*)#+?)#g%&-)#+/l0)m#+?)#g%&-)#@/0')*#/&)#&)+/,().4#p?,*#,*#(%+#+?)#-/*)#h,+?#+?)#
jk%.,gij#g'(-+,%(4#
rg#+?)#%(0,()#-%(()-+,%(#+%#+?)#Bno#,*#,(+)&&'f+).m#+?)#+/>*#/**,>().#h,+?#+?)#j$%&-)j#
g'(-+,%(#&)+/,(#+?),&#@/0')4#
#
M#p%#g%&-)#+/>*m#i%'#7'*+#g,&*+#.%'l0)F-0,-s#+?)#g%&-)#+/l0)#+%#%f)(#,+4#
vM#$%&-)#+/l0)x#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
A;#
012456787891
557
456
27787976!65"!!#
K#LMNMOPQPRMQSTUVQWXMYZ[\Q]^PRQZ\\YM__Q`TabaQcYWdQPRMQN^_PbQeK#f<g#
K#h,+?#i%&-,(>j#+?)#%k)&/(.*#/&)#)(+)&).#l,+?#.,&)-+#mno#/--)**#pqf;4;rsg4#
#
K#C(+)&#+?)#.)*,&).#i%&-)#@/0')#/(.#/-+,@/+)#,+# 4##
B0,-t#u6+/&+#%&#&)k0/-)#i%&-,(>u# 4#v?)#()l#i%&-)#&)w')*+#,*#+&/(*i)&&).#+%#+?)#Bsx4##
pK#qf;4;rs#K#v1xC#K# #K# #6+/&+#%&#&)k0/-)#i%&-,(>g#
K#B%(i,&7#+?)#l/&(,(>#l,+?#yz{y|#pK#})*g#
#
K#$%&-,(>#,*#/-+,@/+).#/(.#+?)#~)00%l#42 #%(#+?)#Bsx#0,>?+*#'k4#m(#/..,+,%(j#/(#!%(#
/#&).#/-t>&%'(.#,*#*?%l(#/+#+?)#+%k#&,>?+#%i#+?)#.,*k0/~#%i#+?)#6F<I;;4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
A<#
012456787891
557
456
27787976!65"!!#
$%&-,(>#,*#*+%ll).#/(.#+?)#r)00%h#s4t2 #%(#+?)#Buv#>%)*#%'+4#
#
K#wg#+?)&)#,*#/0&)/.r#/#g%&-)#&)x')*+#,(#+?)#-%(+&%00)&f#+?,*#,*#,(.,-/+).#yr#+?)# #*r7y%0#,(#
+?)#h/+-?#+/y0)4#
#
K#wg#r%'#(%h#-0,-z# f#/..,+,%(/0#,(g%&7/+,%(#,*#.,*l0/r).4#kK# m#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
A:#
012456787891
557
456
27787976!65"!!#
K#LM#+?)&)#,*#/0&)/.N#/#M%&-)#&)O')*+#,(#+?)#-%(+&%00)&P#,+#-/(#/0*%#Q)#.,*R0/N).#/(.#*+%RR).#
@,/#+?)#%(0,()#.)@,-)#@,)S4#$%&#+?,*P#N%'#()).#+%#&,>?+F-0,-T#+?)#BUV#,(#%(0,()#7%.)#%M#+?)#
.)@,-)#@,)S#/(.#*)0)-+#WVR./+)#/(.#.,*R0/N#M%&-).#%R)&/(.*W4#
XK#&,>?+F-0,-T#+?)#BUV#K#VR./+)#/(.#.,*R0/N#M%&-).#%R)&/(.*WY##
K#Z?)#M%&-)#+/Q0)#S,+?#+?)#-'&&)(+#M%&-)#&)O')*+*#S,00#(%S#Q)#.,*R0/N).#/(.#N%'#-/(#*+%R#
+?)*)4#XK# 6+%R#M%&-,(>Y#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
AA#
012456787891
557
456
27787976!65"!!#
=4K#1LM7N
#
OP
<#
:#
A#
B#
I#
=#
t#
K#
{#
<;#
<<#
<:#
<A#
N57Q78
R&%S)-+#;A:G<;;E$HGTUVWUXYYZ[W\]^_``a^^b_ccd]UaeUZafagh#
CRi#<I<=$#j&%7#k&%S)-+#;A:G<;;E$HGlUVWUXYYZ[W\]
*'--)**j'00m#.%n(0%/.).4#
CRi#<I<=$#-%(()-+).#%(0,()4#
6+/+'*#%j#+?)#CRi#<I<=$#-?)-o).#n,+?#p(0,()#2#.,/>(%*+,-*4#
pjj0,()q%(0,()#-%7k/&,*%(#%j#r0%-o*#,(#+?)#CRi#<I<=$#
k)&j%&7).4#
s/+-?E+/r0)E<#-&)/+).4#
u/>*#vG6;#q#G6A#q#Gw;#q#GH<#q#G6B#q#G8<#q#Gx<y#)(+)&).#,(#n/+-?#
+/r0)4#
6n,+-?#%(#-%(@)m%%+%&#j%&n/&.*#rm#7%.,jm,(>#+?)#%'+k'+#
vGx<#z#<y#,(#n/+-?#+/r0)4#
6n,+-?#%jj#-%(@)m%%+%&#j%&n/&.*#rm#7%.,jm,(>#+?)#%'+k'+#
vGx<#z#;y#,(#n/+-?#+/r0)4#
pk)(#j%&-)#+/r0)#
u/>#v#Gx<|Ry#)(+)&).#,(#j%&-)#+/r0)4#
6n,+-?#%(#-%(@)m%%+%&#j%&n/&.*#rm#j%&-,(>#+?)#%'+k'+##
vGx<#z#<y#,(#j%&-)#+/r0)4#
$%&-)#%'+k'+#Gx<#+%#*n,+-?#%jj#/>/,(4#
1
Q
#
#
#
#
#
#
#
#
#
#
#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6CDEDFE;A:GB<;#H/*,-*#3,/>(%*+,-*E1<I;A4.%-J#
AB#
012456787891
557
456
27787976!65"!!#
K2L57M
N4<#46MOP2L57M#
Q(#+?,*#)J)&-,*)R#+?)#STUT1E8VUT#W$I<X#Y'(-+,%(#Z0%-[#Y&%7#-?/\+)CDEDFE;A:G:;;E$IG
]&%>&/77,(>#,*#+%#Z)#+)*+).4#
U?)#\&%Z0)7#?)&)#,*#+?/+#+?)#-^0,(.)&#,*#,(#+?)#Y&%(+#)(.#\%*,+,%(#/(.#+?'*#+?)#)(/Z0)#-%(.,+,%(*#
Y%&#*_,+-?,(>#%(#+?)#-%(@)^%&#/&)#(%+#T`4#
V*,(>#/#_/+-?#+/Z0)R#+?)#-^0,(.)&#,*#+%#Z)#7%@).#+%#,+*#&)/&#)(.#\%*,+,%(#*%#+?/+#+?)#)(/Z0)#
-%(.,+,%(*#Y%&#+?)#STUT1E8VUT#W$I<X#Z0%-[#Z)-%7)#T`4#
#
N4:#688789
]0/(#+?)#,7\0)7)(+/+,%(#%Y#+?)#+/*[#,(.)\)(.)(+0^#'*,(>#+?)#*+)\GZ^G,(*+&'-+,%(*#/*#/(#/,.4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6CDEDFE;A:GH<;#I/*,-*#3,/>(%*+,-*E1<B;A4.%-J#
AB#
012456787891
557
456
27787976!65"!!#
QR
<#
:#
A#
G#
I#
=#
K#
N57S78
1
S
#
T&%U)-+#;A:F:;;D$HFVWXYWZ[[\]Y^_`abbc``daeef_WcgW\chcij#
BTk#<I<=$#l&%7#m&%U)-+#;A:F:;;D$HFVWXYWZ[[\]Y^_`abbc``daeef_ #
.%n(0%/.).4#
o/+-?#+/p0)#-&)/+).#/(.#&)(/7).#/*#qo/+-?D+/p0)D-r0,(.)&q4# #
#
s/>*#t#FH<#u#FH:#u#Fv:w#)(+)&).#,(#n/+-?#+/p0)4#
1)+&/-+#-r0,(.)&#pr#7%.,lr,(>#+?)#%'+m'+#tFv:#x#<w#,(#n/+-?#+/p0)4# #
#
Br0,(.)&#&)+&/-+).#tFH<#x#<w#
1)*)+#%'+m'+#l%)+&/-+#-r0,(.)&#,(#n/+-?#+/p0)#/>/,(#tFv:#x#;w4# #
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6BCDCED;A:FG<;#H/*,-*#3,/>(%*+,-*D1<I;A4.%-J#
A=#
012456787891
557
456
27787976!65"!!#
N%'#-/(#O,(.#/..,+,%(/0#,(O%&7/+,%(#/*#/(#%&,)(+/+,%(#/,.#O%&#,(,+,/0#/(.#/.@/(-).#+&/,(,(>P#O%&#
)K/7Q0)R#9)++,(>#6+/&+).P#@,.)%*P#+'+%&,/0*P#/QQ*P#7/('/0*P#Q&%>&/77,(>#>',.)0,()*#/(.#+&,/0#
*%O+S/&)TO,&7S/&)P#/+#+?)#O%00%S,(>#0,(UR###
#
SSS4*,)7)(*4-%7T*-)T*BG<J;;#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#&,>?+*#&)*)&@).4#
6CDEDFE;A:GH<;#I/*,-*#3,/>(%*+,-*E1<J;A4.%-K#
AB#
966574818915*11<62867)98=4
8915>?@
!
"1
2
8
#1
4
6
$
%
&
951789
7986'6(
-./0123454560.72248797:;0
)98!# !*+%,
01245267829
864769564
8915
595789848915796657
98767626
012456787891
557
456
27787976!65"!!#
S#0410TU!V7N1WU!X#
Y&.)&#(%4Z#=B6JK<=FE$D;;FG8[<#
S#041042T5RQQ786\078978Q#
Y&.)&#(%4Z#=B6JL::F<88;EFG]8K#
S#041042T5RQQ786\16QQ5
78Q^
O
Q5Q_#
Y&.)&#(%4Z#=B6JL::F<[8;EFG]8K
S#041042T5RQQ786\WO95678Q^
O
Q5Q_#
Y&.)&#(%4Z#=B6JL::F<88;EFG]BK
S#041042T5RQQ786\WO95678Q^
O
Q5Q_#
Y&.)&#(%4Z#=B6JL::F<[8;EFG]BK
S#041042T5RQQ786\0
878Q^
O
Q5Q_#
Y&.)&#(%4Z#=B6JL::F<8A;EFG]8K
`0)/*)#(%+)#+?/+#+?)*)#+&/,()&#a/-b/>)*#/&)#&)a0/-).#c,+?#*'--)**%&#a/-b/>)*#c?)(#()-)**/&d4#
8(#%@)&@,)c#%e#+?)#-'&&)(+0d#/@/,0/I0)#6AB#a/-b/>)*#,*#a&%@,.).#/+Z#*,)7)(*4-%7f*-)f+a##
#
#
1878
5678789
$%&#&)>,%(/0#6,)7)(*#6AB#-%(+,(').#+&/,(,(>g#a0)/*)#-%(+/-+#d%'&#&)>,%(/0#6AB#-%(+/-+#
*,)7)(*4-%7f*-)f-%(+/-+#
#
#
778678R5
6785965789012
*,)7)(*4-%7f*-)#
#
#
8R5
6785965789
Q
h?)#6AB#+&/,(,(>#-'&&,-'0'7#e%&#+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#h%+/00d#i(+)>&/+).#8'+%7/+,%(#jhi8k#
c/*#a&)a/&).#e%&#+?)#a&%>&/7#l6,)7)(*#8'+%7/+,%(#A%%a)&/+)*#c,+?#B.'-/+,%(#j6ABkl#*a)-,e,-/00d#e%&#
+&/,(,(>#a'&a%*)*#e%&#a'I0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)#
-%(+)(+*4#
#
h?,*#.%-'7)(+#,*#+%#I)#'*).#%(0d#e%&#,(,+,/0#+&/,(,(>#%(#6,)7)(*#a&%.'-+*f*d*+)7*4#h?,*#7)/(*#,+#-/(#I)#
-%a,).#,(#c?%0)#%&#a/&+#/(.#>,@)(#+%#+?%*)#I),(>#+&/,().#e%&#'*)#c,+?,(#+?)#*-%a)#%e#+?),&#+&/,(,(>4#
A,&-'0/+,%(#%&#-%ad,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#a)&7,++).#c,+?,(#a'I0,-#+&/,(,(>#
/(.#/.@/(-).#+&/,(,(>#e/-,0,+,)*#e%&#+&/,(,(>#a'&a%*)*4##
#
BM-)a+,%(*# &)m',&)# c&,++)(# -%(*)(+# e&%7# +?)# 6,)7)(*# 89# -%(+/-+Z# 1%0/(.# 6-?)')&)&#
&%0/(.4*-?)')&)&n*,)7)(*4-%74#
#
Yee)(.)&*#c,00#I)#?)0.#0,/I0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).g#a/&+,-'0/&0d#,e#/#a/+)(+#,*#>&/(+).#
%&#/#'+,0,+d#7%.)0#%&#.)*,>(#,*#&)>,*+)&).4#
#
o*)#e%&#,(.'*+&,/0#-'*+%7)&#-%'&*)*#,*#)Ma&)**0d#a&%?,I,+).4#H)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%e#+?)#
+&/,(,(>#-'&&,-'0'7*4#
#
H)#c,*?#+%#+?/(b#+?)#ho#3&)*.)(g#)*a)-,/00d#`&%e4#3&4Fi(>4#p)%(#o&I/*#'(.#3,a04Fi(>4#8(()++#`e)ee)&g#+?)#
q,-?/)0#3r,/00/*#B(>,())&,(>#A%&a%&/+,%(#/(.#/00#%+?)&#,(@%0@).#a)&*%(*#e%&#+?),&#*'aa%&+#.'&,(>#+?)#
a&)a/&/+,%(#%e#+?,*#+&/,(,(>#-'&&,-'0'74#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
:#
#
#
#
012456787891
557
456
27787976!65"!!#
N/I0)#%O#-%(+)(+*#
#
<P 9%/0#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GQ
:P R&)&)S',*,+)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GQ
AP N?)%&T#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GQ
A4<P 6T*+)7#.,/>(%*+,-*U#8'+%7/+).#-&)/+,%(#%O#)&&%)**/>)*#4444444444444444444444444444444444444444444444444444444#GP
A4:P 3,/>(%*+,-*#@,/#V)I#*)&@)�#KP
A4AP 3,/>(%*+,-*#V,+?#+?)#,(+)>&/+).#.,*W0/T#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#=P
GP N/*X#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#JQ
KP R0/((,(>#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#JQ
=P 6+&'-+'&).#*+)WFITF*+)W#,(*+&'-+,%(*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#LQ
=4<P 1)+&,)@)#/(#)M,*+,(>#W&%Y)-+#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#LP
=4:P B%(O,>'&)#+?)#V)I#*)&@)�#ZP
=4AP B%(O,>'&)#+?)#.,*W0/T#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<AP
=4GP B%(O,>'&)#*T*+)7#.,/>(%*+,-*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<GP
=4KP 8-+,@/+)#+?)#.,/>(%*+,-*#%O#+?)#W%V)&#*'WW0T#O%&#+?)#/(/0%>#%'+W'+#7%.'0)#/(.#.%V(0%/.#+?)#
R[B# <KP
=4=P N&,>>)&#)&&%)**/>)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<JP
=4JP 3,*W0/T#/0/&7*#,(#\(0,()#2#.,/>(%*+,-*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<LP
=4LP 3,/>(%*+,-*#O%&#+?)#6JF<K;;#@,/#+?)#V)I#444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:;P
=4ZP 3,/>(%*+,-*#O%&#+?)#6JF<K;;#@,/#+?)#,(+)>&/+).#.,*W0/T#44444444444444444444444444444444444444444444444444444444444444#:ZP
=4<;P B?)-X0,*+#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A;P
JP 8..,+,%(/0#,(O%&7/+,%(#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A<Q
#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JF<K;;D1<K;L4.%-M#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
U(#+?,*#7%.'0)V#+?)#&)/.)&#W,00#I)-%7)#/-X'/,(+).#W,+?#/..,+,%(/0#+%%0*#+?/+#/&)#?)0YZ'0#Z%&#
+&%'I0)*?%%+,(>4##
U(#Y/&+,-'0/&V#W)#W,00#*?%W#[%'#?%W#/'+%7/+).#/0/&7#+)M+*#-/(#I)#>)()&/+).#,(#+?)#\U8#]%&+/0#
Z%&#?/&.W/&)#Z/'0+*#/(.#*[*+)7#)&&%&*4#\?)*)#-/(#+?)(#I)#.,*Y0/[).#(%+#%(0[#,(#+?)#\U8#]%&+/0#
I'+#/0*%#%(#+?)#.,*Y0/[#%Z#+?)#B]^#/*#W)00#/*#@,/#+?)#W)I#*)&@)&#%Z#+?)#B]^#<K<=$GF#]E_3]4#U+#
,*#/0*%#Y%**,I0)#+%#I&,(>#+?)*)#,(+%#+?)#7)**/>)#W,(.%W*#%Z#`aU#*[*+)7*#Z%&#@,)W,(>4#
#
\?,*#7%.'0)#W,00#Y&)*)(+#/.@/(-).#.,/>(%*+,-#Z'(-+,%(*#+?/+V#Z%&#)M/7Y0)V#[%'#-/(#+)*+#W,+?#+?)#
\U8#Y&%b)-+#Z&%7#+?)#6BCDCED;F:GA<;Dc/*,-*D3,/>(%*+,-*#W,+?#+?)#6Ua8\UB#6JG<K;;#
7%.'0)4##
55d
7e7
\?,*#-?/Y+)&#I',0.*#%(#+?)#?/&.W/&)#-%(Z,>'&/+,%(#%Z#+?)#6Ua8\UB#6J#B]^<K<=$GF#]E_3]4#
`%W)@)&V#%+?)&#?/&.W/&)#-%(Z,>'&/+,%(*#-/(#I)#'*).4#f%'#-/(#'*)#+?)#Z%00%W,(>#Y&%b)-+#Z%&#
+?,*#-?/Y+)&V#Z%&#)M/7Y0)g#
6BCDCED;F:GA<;Dc/*,-*D3,/>(%*+,-*D:D1<K;F4h/Y<F#
4i5"
#
U(#+?)#\U8#]%&+/0V#+?)#.,/>(%*+,-*#%Z#.)@,-)*#/(.#7%.'0)*#,*#-%00)-+,@)0[#&)Z)&&).#+%#/*#*[*+)7#
.,/>(%*+,-*4#\?)#7%(,+%&,(>#Z'(-+,%(*#/&)#/'+%7/+,-/00[#.)&,@).#Z&%7#+?)#?/&.W/&)#
-%(Z,>'&/+,%(4#
800#6Ua8\UB#Y&%.'-+*#?/@)#,(+)>&/+).#.,/>(%*+,-#Z'(-+,%(*#W?,-?#[%'#-/(#'*)#+%#.)+)-+#/(.#
&)7).[#Z/'0+*4#\?)#-%7Y%()(+*#/'+%7/+,-/00[#*,>(/0#/#Y%**,I0)#.,*&'Y+,%(#%Z#%Y)&/+,%(#/(.#
Y&%@,.)#/..,+,%(/0#.)+/,0).#,(Z%&7/+,%(4#^(.)*,&).#.%W(+,7)*#-/(#I)#7,(,7,h).#W,+?#Y0/(+G
W,.)#.,/>(%*+,-*4#
\?)#Z%00%W,(>#*+/+)*#/&)#7%(,+%&).#I[#+?)#*[*+)7#,(#+?)#&'((,(>#Y0/(+g#
G#3)@,-)#Z/,0'&)#
G#]'00_Y0'>#)&&%&#
G#a%.'0)#Z/'0+#
G#U_m#/--)**#)&&%&#
G#B?/(()0#Z/'0+#
G#]/&/7)+)&#/**,>(7)(+#)&&%&#
G#$/,0'&)#%Z#+?)#)M+)&(/0#/'M,0,/&[#@%0+/>)#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JG<K;;D1<K;L4.%-M#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
#
S?)#T)J#*)&@)&#)(/J0)*#7%(,+%&,(>#/(.#/.7,(,*+)&,(>#%U#+?)#BVW#JX#/'+?%&,Y).#'*)&*#%@)&#/#
()+T%&Z4##
S?,*#[)&7,+*#)@/0'/+,%(#/(.#.,/>(%*+,-*#%@)�%(>#.,*+/(-)*4#\%(,+%&,(>#/(.#)@/0'/+,%(#,*#
[%**,J0)#T,+?%'+#+?)#S]8#V%&+/0^#/00#X%'#()).#,*#/#T)J#J&%T*)&4##
#
S?)#T)J#*)&@)&#,*#.)/-+,@/+).#,(#+?)#.)0,@)&X#*+/+)#%U#+?)#BVW4#S?,*#7)/(*#+?/+#X%'#7'*+#0%/.#
/#[&%_)-+#,(#T?,-?#+?)#T)J#*)&@)&#,*#/-+,@/+).#+%#)(/J0)#/--)**#'*,(>#+?)#T)J#J&%T*)&4##
#
4`QRO5P5aa5O`aQ789O
57"a
878Ob
G#8--)**#@,/#*)-'&)#c?++[*c#+&/(*7,**,%(#[&%+%-%0#
G#W*)&#/'+?%&,Y/+,%(#JX#7)/(*#%U#/#'*)�,*+#
G#1)*+&,-+,%(#%U#/--)**#U&%7#-)&+/,(#,(+)&U/-)*#
#
d%'#()).#/#T)J#J&%T*)&#+%#/--)**#+?)#eS\f#[/>)*#%U#+?)#BVW4#
#
4`aQ789QRR5QO5O`6PR8Oa5
87678Q7``1gb
G#](+)&()+#CM[0%&)&#hi)&*,%(#Lj#
G#\%Y,00/#$,&)U%M#hi)&*,%(#:<j#
G#\%J,0)#6/U/&,#h,k6Aj#
#
$,>'&)#<l#I)J#*)&@)&#%U#+?)#BVW#<A<=$GF#VEm3V#T,+?#/0/&7#+)M+#U&%7#+?)#*X*+)7#.,/>(%*+,-*#
#
nopqrstuvwsxyzws{|u{s}~ysz~{w{s{|wssz~suyu{~susyuy{|~zwsuwxxs
{|z~y|s{|wsyxws~swzw{sw{|~xsws{sw{~zvsuwxxsyxszwuxss
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<A;;D1<A;L4.%-M#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
#
S?)#6JF<K;;#ATU#?/*#/#V&%(+#V0/W#X,+?#/#.,*W0/Y#/(.#-%(+&%0#Z)Y*4#A%(+&%0#./+/#/(.#*+/+'*#
./+/#-/(#I)#.,*W0/Y).#,(#@/&,%'*#7)('*#%(#+?)#.,*W0/Y#/(.#('7)&%'*#*)++,(>*#-/(#I)#7/.)4#
[%'#'*)#+?)#-%(+&%0#Z)Y*#+%#(/@,>/+)#+?&%'>?#+?)#7)('*4#
4Q7OR6"\Q1]\\5OQ\P789\
878O^
F#=#.,VV)&)(+#.,*W0/Y#0/(>'/>)*#-/(#I)#*)0)-+).4#
F#3,/>(%*+,-#7)**/>)*#/&)#.,*W0/Y).#,(#W0/,(#+)M+4#
F#S?)#,(+)&V/-)#*)++,(>*#-/(#I)#-?/(>).#0%-/00Y4#
F#T/**X%&.#/**,>(7)(+#V%&#.,*W0/Y#%W)&/+,%(#,*#W%**,I0)#+?&%'>?#+?)#S_8#T%&+/04#
#
$,>'&)#:`#3,*W0/Y#%V#+?)#ATU#<K<=$FE#TDa3T#X,+?#/0/&7#+)M+#V&%7#+?)#*Y*+)7#.,/>(%*+,-*#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
=#
#
#
#
012456787891
557
456
27787976!65"!!#
46NO
P?)#Q%00%R,(>#/.@/(-).#.,/>(%*+,-#Q'(-+,%(*#R,00#J)#*?%R(#/(.#+)*+).#,(#+?,*#-?/S+)&T#
U# B%(Q,>'&/+,%(#%Q#R)J#*)&@)&#%Q#+?)#BVW#<K<=$GF#VEX3V#
U# B%(Q,>'&/+,%(#%Q#.,*S0/Y#%Q#+?)#BVW#<K<=$GF#VEX3V#
U# B&)/+)#?/&.R/&)#Q/'0+#/(.#*Y*+)7#)&&%&#/0/&7*#R,+?#+?)#*Y*+)7#.,/>(%*+,-*#
U# 3,*S0/Y#/0/&7*#@,/#+?)#R)J#*)&@)&#%Q#+?)#BVW#<K<=$GF#VEX3V#
U# 3,*S0/Y#/0/&7*#@,/#+?)#,(+)>&/+).#.,*S0/Y#%Q#+?)#BVW#<K<=$GF#VEX3V#
Z688789
P?)#.,/>(%*+,-#Q'(-+,%(*#R,00#J)#S)&Q%&7).#'*,(>#/#Q,(,*?).#S&%[)-+#/*#/(#)M/7S0)4#8#S&%[)-+#,(#
+?)#P\8#V%&+/0#+?/+#R/*#S&)@,%'*0Y#.%R(0%/.).#+%#+?)#-%(+&%00)&#*?%'0.#J)#%S)(#Q%&#+?,*4#\(#%'&#
-/*)]#%(-)#Y%'#?/@)#*+/&+).#+?)#P\8#V%&+/0]#Y%'#R,00#&)+&,)@)#/#S&)@,%'*0Y#-&)/+).#S&%[)-+#+?/+#
R/*#/&-?,@).#/(.#.%R(0%/.#,+#+%#+?)#/**%-,/+).#-%(+&%00)&4#
^%'#-/(#+?)(#-%(Q,>'&)#+?)#R)J#*)&@)&]#+?)#.,*S0/Y#/(.#+?)#*Y*+)7#.,/>(%*+,-*#,(#+?)#P\8#
V%&+/04#P%#+)*+#+?)#*Y*+)7#.,/>(%*+,-*]#R)#R,00#.,*-%(()-+#+?)#7%(,+%&).#/(/0%>#%'+S'+#7%.'0)#
Q&%7#,+*#*'SS0Y#@%0+/>)4##
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6AG<K;;D1<K;L4.%-M#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
05
5NOP"NO78N5
78N
Q%'#-/(#R,(.#,(*+&'-+,%(*#%(#?%S#+%#-/&&T#%'+#U0/((,(>#J)0%S4#VR#T%'#/0&)/.T#?/@)#/#>%%.#
'(.)&*+/(.,(>#%R#)@)&T+?,(>W#,+#S,00#J)#*'RR,-,)(+#+%#R%-'*#%(#+?)#('7J)&).#*+)U*4#X+?)&S,*)W#
*,7U0T#R%00%S#+?)#.)+/,0).#*+)U*#,(#+?)#,(*+&'-+,%(*4#
YZ57[68\7N789O5]
^#_)R%&)#S)#J)>,(#S,+?#.,/>(%*+,-*#@,/#+?)#S)J#*)&@)&W#S)#()).#/#U&%`)-+#R&%7#+?)#
6BCDCED;F:GH<;#_/*,-*D3,/>(%*+,-*#7%.'0)4##
a)4>4W#6BCDCED;F:GH<;D_/*,-*D3,/>(%*+,-*D:D1<L;F4b/U<Fc##
d%#&)+&,)@)#/(#)M,*+,(>#U&%`)-+#+?/+#?/*#J))(#/&-?,@).W#T%'#7'*+#*)0)-+#+?)#&)0)@/(+#
/&-?,@)#S,+?#^e&%`)-+#^1)+&,)@)#,(#+?)#U&%`)-+#@,)S4##
B%(R,&7#T%'&#*)0)-+,%(#S,+?#fXU)(f4##
a^#e&%`)-+#^#1)+&,)@)#^#6)0)-+#/#4b/U#/&-?,@)#^#XU)(c#
#
^#d?)#()M+#*+)U#,*#+%#*)0)-+#+?)#+/&>)+#.,&)-+%&T#S?)&)#+?)#&)+&,)@).#U&%`)-+#S,00#J)#*+%&).4#
B%(R,&7#T%'&#*)0)-+,%(#S,+?#fXgf4##
a^#d/&>)+#.,&)-+%&T#^#Xgc#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;A4.%-M#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
O18P79
5QRST5U5
V#W%#-%(X,>'&)#+?)#Y)J#*)&@)&Z#%[)(#+?)#.)@,-)#-%(X,>'&/+,%(#%X#+?)#B\]#<L<=$GF#\E^3\4#
_V#B\]D<L<=$#`B\]#<L<=$GF#\E3\a#V#3)@,-)#-%(X,>'&/+,%(b#
#
V#6)0)-+#+?)#B\]#/(.#-?%%*)#+?)#cI)J#*)&@)&c#7)('#,+)7#,(#+?)#[&%[)&+,)*4##
_V#B\]D<L<=$#V#\&%[)&+,)*#V#I)J#*)&@)&b#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;M4.%-N#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#8-+,@/+)#+?)#O)I#*)&@)&#%(#+?,*#7%.'0)#/(.#-%(P,&7#+?)#*)-'&,+Q#(%+)4##
RN# #8-+,@/+)#O)I#*)&@)&#%(#+?,*#7%.'0)#N#STU#
#
N#V)/@)#+?)#-?)-W#7/&W# #P%(/I0)#/'+%7/+,-#'Y./+)XZ#/(.#*)0)-+#+?)#*)-'&,+Q#*)++,(>*#
%P#+?)#XB@)&QI%.QX#'*)&4#B(/I0)#+?,*#'*)&#+%#-/&&Q#%'+#/00#Y%**,I0)#/-+,%(*#/(.#/--)Y+#Q%'&#
*)++,(>*4##
RN#
#N# U#
#
[\]^_`abcdefghegijcefklgmlendimopiledjlkjeqlkleromqesottlklhmegdmqckougmochjvewqljledjlkjemqlhe
klxdoklegepgjjrcksve
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
<;#
#
#
#
012456787891
557
456
27787976!65"!!#
N#8*#/#&)*'0+#%O#+?)*)#/'+?%&,P/+,%(*Q#+?)#RB@)&SI%.SR#'*)&#,*#(%T#/'+%7/+,-/00S#/**,>().#
+?)#/--)**#0)@)0#R8.7,(,*+&/+,@)R4#
#
N#U(#+?)#RH/+-?#+/I0)*R#7)('#,+)7Q#+?)#RH/+-?#+/I0)CAS0,(.)&R#-/(#(%T#I)#)(+)&).#,(#+?)#
T)I#*)&@)&4##
VNH/+-?#+/I0)CAS0,(.)&#N# W#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
<<#
#
#
#
012456787891
557
456
27787976!65"!!#
N#8--)**,(>#,*#&)/.F%(0O4#PN#1)/.Q#
#
N#R*)&F.)S,().#T)I#U/>)*#T,00#(%+#I)#-&)/+).#?)&)4#$%&#&)/*%(*#%S#U0/(+#*/S)+O#V#*)-'&,+OW#
T)#T,00#)(/I0)#%(0O#X1Y$ZDB[#,(+)&S/-)C<#S%&#/--)**#+%#+?)#T)I#*)&@)&4##
PN#B(/I0).#T)I#*)&@)&#/--)**#N# #X1Y$ZDB[#,(+)&S/-)C<Q#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
<:#
#
#
#
012456787891
557
456
27787976!65"!!#
N18O79
5P7QR6"
#
S#T?)#*)++,(>*#U%&#+?)#.,*V0/W#%U#.,/>(%*+,-*#./+/#-/(#/0*%#I)#-?/(>).#%(#+?)#,(+)>&/+).#
.,*V0/W#%U#+?)#BXY#<K<=$FA#XEZ3X4#$,&*+[#+?)#>)()&/0#*)++,(>*#/&)#*)0)-+).#/*#*?%\(#
?)&)4##
]S#3,*V0/W#S#9)()&/0^#
#
S#_(#+?)#`H/+-?#+/I0)*`#7)('#,+)7[#+?)#`H/+-?#+/I0)DBW0,(.)&`#-/(#(%\#I)#)(+)&).#,(#+?)#
.,*V0/W4##
]SH/+-?#+/I0)DBW0,(.)&#S# ^#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JF<K;;D1<K;L4.%-M#
#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#OP#.)*,&).Q#/#'*)&G.)P,().#0%>%#-/(#/0*%#I)#*?%R(#%(#+?)#.,*S0/T##
UN#V*)&G.)P,().#0%>%#S/>)W#
X18Y79
5Z"Z
7698Z7Z
#
N#8(#,7S%&+/(+#P'(-+,%(#P%&#)PP)-+,@)#+&%'I0)*?%%+,(>#,*#+?)#,(+)>&/+).#*T*+)7#.,/>(%*+,-*4#
[?,*#,*#/0R/T*#/-+,@/+).#P%&#+?)#6O\8[OB#6JG<K;;4#[?)#/0/&7#-/+)>%&,)*#-/(#I)#*)0)-+).#
,(#+?)#/0/&7#*)++,(>*#/(.Q#,P#.)*,&).Q#/(#]8-^(%R0).>7)(+]#-/(#I)#*S)-,P,).4##
#
_`abcdefghijkljmnohlinpnqrimpnssijsijrtuqonkoisuiognoijoimnkivhishphmohlijkioghinpnqriwjkluwsi
uxioghiuthqnouqitnkhpiyhz{z|if}~|if}|ihomzzi
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JG<K;;D1<K;L4.%-M#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<A;;D1<A;L4.%-M#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#6)0)-+#+?)#-%&&)-+#,(+)&O/-)#/(.#-0,-P#Q6+/&+#*)/&-?Q4##
RN#SDTUB#N#6)0)-+,%(#%O#+?)#()+V%&P#/./W+)&#%O#+?)#S9TSA#N#XYZ[\]^_]^`ab]^cd^edcN#6+/&+#
*)/&-?f#
g(-)#h6-/(#/(.#,(O%&7/+,%(#&)+&,)@/0#-%7W0)+).h#/WW)/&*i#-0,-P#Qj%/.Q4##
RN#j%/.f#
#
N#k)O%&)#.%V(0%/.,(>#-/(#I)#*+/&+).i#%+?)&#/-+,%(*#7/l#?/@)#+%#I)#*)0)-+).4#A0,-P#Qj%/.Q#
/>/,(4##
RN #%@)&&,.)#/00##Nj%/.f#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
<=#
#
#
#
012456787891
557
456
27787976!65"!!#
N#8O+)�%/.,(>P#O,&*+#*)0)-+#+?)#Q6+/&+#/00Q#-?)-R#J%M#/(.#-0,-R#S$,(,*?S4##
TN #6+/&+#/00#N#$,(,*?U#
V457995555 WW69
#
N#X?)#Y%Z)&#*'YY0[#%O#+?)#/(/0%>#%'+Y'+#7%.'0)#,*#@,/#+)&7,(/0*#H<GHH#%O#+?)#*'YY0[#
)0)7)(+4#1)7%@)#+?,*#*'YY0[#)0)7)(+P#/*#*?%Z(#?)&)P#O&%7#+?)#O&%(+#-%(()-+%&#+%#+&,>>)&#
/(#)&&%)**/>)4#1)*'0+\#+?)#&).#C11]1#^C3#%(#+?)#B_`#,*#0,+#/(.#/(#)&&%)**/>)#,*#
+&,>>)&).4#X?)#O%00%Z,(>#Y/>)*#.)*-&,J)#Z?)&)#/(.#?%Z#[%'#-/(#@,)Z#+?,*#)&&%)**/>)4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6AG<K;;D1<K;L4.%-M#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
T#U%#>)+#*+/&+).#V,+?#+?)#.,/>(%*+,-#W'(-+,%(*X#V)#V,00#*)0)-+#%'&#-%(+&%00)&#YBZ[D<L<=$Y#/(.#
-0,-\#Y](0,()#2#.,/>(%*+,-*Y4#[(.)&#Y](0,()#/--)**Y#*)0)-+# #Y1)-),@)#/0/&7*Y#W%&#+?)#
Y80/&7*Y#,+)74##
^T#BZ[D<L<=$#T#](0,()#2#.,/>(%*+,-*#T#](0,()#/--)**#T#80/&7*#T# #1)-),@)#
/0/&7*_#
T#6)0)-+#+?)#-%&&)-+#,(+)&W/-)#/(.#-0,-\#Y9%#%(0,()Y4##
^T#9%#%(0,()_#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;A4.%-M#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
O#P?)#)&&%)**/>)#-/(#(%Q#J)#-?)-R).#,(#+?)#S80/&7#.,*T0/US#'(.)&#S3,/>(%*+,-*S4##
VO#3,/>(%*+,-*#O#80/&7#.,*T0/UW#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;M4.%-N#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
#
X#Y%#I)#/I0)#+%#/--)**#+?)#H)I#*)&@)&#%Z#+?)#A[\#E<K$F:#[D]3[#^)#%_)(#/(`#H)I#
I&%^*)&#%(#/#[A#+?/+#,*#-%(()-+).#+%#+?)#A[\#@,/#YA[]a[4#
#
#
#
X#Y?)&)#^)#)(+)&#+?)#a[#/..&)**#%Z#+?)#A[\#<K<=$FE#[D]3[4#bX#<c:4<=L4;4<d#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
:;#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O(#+?)#.,*P0/Q).#R)I#P/>)S#R)#T,&*+#*)0)-+#+?)#0/(>'/>)#/(.#+?)(#-0,-U#V2W42XV4##
YN#B(>0,*?#N#BDZB1[#
#
N#O(#+?)#V\
69V#R)#*))#>)()&/0#,(T%&7/+,%(#/I%'+#+?)#]^A#/(.#,+*#*+/+'*4##
YN#_%7)#]/>)[#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
:<#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O/&.P/&)Q#$,&7P/&)#R)&*,%(#/(.#6)&,/0#('7I)&#/&)#.,*S0/T).#I)*,.)*#%+?)&#,(U%&7/+,%(#
'(.)&#V3,/>(%*+,-*V4##
WN#3,/>(%*+,-*X#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
::#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O(.)&#P3,/>(%*+,-*#Q'RR)&P#S)#*))#.)*-&,T+,@)#,(R%&7/+,%(#R%&#/00#)@)(+*#,(#+?)#BUO4#C@)(+#
,(R%&7/+,%(#,*#&)-%&.).#,(#/#-,&-'0/&#I'RR)&4#V?)#7%*+#&)-)(+#/0/&7#,*#.,*T0/W).#,(#+?)#+%T#
0,()4##
XN#3,/>(%*+,-*#Q'RR)&Y#
#
N#V?)#*+/+'*#%R#+?)#,(.,@,.'/0#7%.'0)*#%R#%'Z[8VZB#6JF<K;;#,*#.,*T0/W).#S,+?#/..,+,%(/0#
.)+/,0*#,(#+?)#P[%.'0)#Z(R%&7/+,%(P#@,)S4##
XN#[%.'0)#Z(R%&7/+,%(Y#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JF<K;;D1<K;L4.%-M#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O?)#/0/&7#+)M+*#>)()&/+).#,(#+?)#BPQ#<K<=$GF#PER3P#/&)#/@/,0/I0)#,(#S80/&7*S4##
TN#80/&7*U#
#
VWXYZ[\]^]_`]_a]]_bc]_defgh^]_id_bc]_ahjjgk_ligbem]_di^_bc]_nfmfbeg_fojhb_pinhg]_`fbc_eqbfleb]n_
nfemoiabfq_]^^i^_fob]^^hjbr_
#
N#3)+/,0*#/I%'+#-%77'(,-/+,%(#*)++,(>*#/(.#-%77'(,-/+,%(#)&&%&*#/&)#.,*s0/t).#'(.)&#
SB%77'(,-/+,%(S4##
TN#B%77'(,-/+,%(U#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JG<K;;D1<K;L4.%-M#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<A;;D1<A;L4.%-M#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#3)@,-)*#+?/+#/&)#-%(()-+).#+%#+?)#,(.,@,.'/0#O%&+*#%P#+?)#AQR#<K<=$FE#QDS3Q#/(.#+?)#
/..&)**)*#%P#+?)*)#.)@,-)*#-/(#I)#.,*O0/T).#'(.)&#UV%O%0%>TU4#V?)&)#/&)#@/&,%'*#@,)W*#
P%&#+?,*4#X(#+?)#-/*)#%P#0/&>)&#()+W%&Y#*+&'-+'&)*Z#+?)#)(+,&)#()+W%&Y#*+&'-+'&)#%P#/#O0/(+#
-/(#I)#.,*O0/T).#/(.#P/'0+T#-%(()-+,%(*#*?%W(#,(#+?)#*+/+'*Z#O&%@,.).#+?,*#P'(-+,%(#,*#
*'OO%&+).#IT#+?)#,(.,@,.'/0#-%7O%()(+*4##
[N#V%O%0%>T\#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&C6JF<K;;C1<K;L4.%-M#
:=#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O/0')*#%P#+?)#,(.,@,.'/0#+/>*#-/(#J)#.,*Q0/R).#'(.)&#ST/>#*+/+'*S4#
UN#T/>#*+/+'*V#
#
N#ST/>#+/J0)*S#+?/+#/&)#0,(W).#X,+?#+?)#X)J#*)&@)&Y#*'-?#/*#+?)#SI/+-?#+/J0)DBR0,(.)&SY#-/(#
/0*%#J)#.,*Q0/R).4##
UN#T/>#+/J0)*#N#I/+-?#+/J0)DBR0,(.)&V#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6AG<K;;D1<K;L4.%-M#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
N#O(.,@,.'/00P#-&)/+).#Q/>)*#R%&#+?)#@,*'/0,S/+,%(#/(.#/0*%#R%&#%Q)&/+%&#-%(+&%0#%R#Q&%-)**)*#
T%'0.#J)#*))(#'(.)&#UB'*+%7)&#Q/>)*U4#
VN#B'*+%7)&#Q/>)*W#
#
N#3/+/#-/(#J)#*+%&).#.,&)-+0P#%(#+?)#7)7%&P#-/&.#,(#+?)#BXY#%�%/.).#R&%7#+?)&)#'*,(>#
+?)#U$,0)J&%T*)&U4##
VN#$,0)J&%T*)&W#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;A4.%-M#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
O#P?,*#7)/(*Q#R%&#)N/7S0)Q#+?/+#T%'#-/(#&)/.#/(.#).,+#+?)#0%>#R,0)*#U&,++)(#JT#+?)#BVW#
U,+?%'+#?/@,(>#+%#'*)#+?)#PX8#V%&+/04#YO#3/+/Z%>*[#
#
O#P?)#'*)&#/0*%#?/*#+?)#/J,0,+T#+%#-/00#'S#/#@/&,)+T#%R#.,/>(%*+,-#,(R%&7/+,%(#@,/#+?)#.,*S0/T4#
$%&#)N/7S0)Q#+?)#/0/&7#+)N+*#>)()&/+).#JT#+?)#*T*+)7#.,/>(%*+,-*#-/(#J)#.,*S0/T).#,(#+?)#
e3,/>(%*+,-*e#7)('#'(.)&#e80/&7*e4##
YO#3,/>(%*+,-*#O#80/&7*[#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH:;#3,/>(%*+,-*#@,/#I)J*)&@)&D6KG<L;;D1<L;M4.%-N#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
N1OP7Q
#
RN
<#
:#
A#
G#
K#
=#
J#
L#
w#
<;#
Q57S78
1
S
T&%U)-+#;A:FVWXYZ[\]^\Y_][`ab\c]^\Ydef\g^^h\\igjjkf
#
&)+&,)@).4#
H)I#*)&@)&#l%&#+?)#BTm#<K<=$#l&%7#n&%U)-+#;A:FG<;Do/*,-*# #
_][`ab\c]^\Ydef\g^^h\\igjjkf^bai]`gphqr#
3,*n0/s#l%&#+?)#BTm#<K<=$#l&%7#n&%U)-+#;A:FG<;Do/*,-*# #
_][`ab\c]^\Ydef\g^^h\\igjjkf^bai]`gphqr#
6s*+)7#.,/>(%*+,-*#l%&#+?)#BTm#<K<=$#l&%7#n&%U)-+#;A:F #
VWXYZ[\]^\f_][`ab\c]^\Ydef\g^^h\\igjjkf^bai]`gphqr#
3,/>(%*+,-*#%l#+?)#*'nn0s#@%0+/>)#l%&#+?)#/(/0%>#%'+n'+#
#
7%.'0)#/-+,@/+).4#
BTm#<K<=$#l&%7#n&%U)-+#;A:FVWXYZ[\]^\f_][`ab\c]^\Ydef #
*'--)**l'00s#.%t(0%/.).4#
T%t)&#*'nn0s#.,*-%(()-+).#l&%7#/(/0%>#%'+n'+#7%.'0)4# #
3,*n0/s#%l#/0/&7#+)M+#l&%7#+?)#*s*+)7#.,/>(%*+,-*#,(#+?)#/0/&7# #
.,*n0/s#%l#+?)#uv8#T%&+/04#
3,*n0/s#%l#+?)#/0/&7#+)M+#l&%7#+?)#*s*+)7#.,/>(%*+,-*#@,/#+?)# #
t)I#*)&@)&#%l#+?)#BTm#<K<=$4#
3,*n0/s#%l#+?)#/0/&7#+)M+#l&%7#+?)#*s*+)7#.,/>(%*+,-*#%(#+?)# #
.,*n0/s#%l#+?)#BTm#<K<=$4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JF<K;;D1<K;L4.%-M#
A;#
#
#
#
012456787891
557
456
27787976!65"!!#
P%'#-/(#Q,(.#/..,+,%(/0#,(Q%&7/+,%(#/*#/(#%&,)(+/+,%(#/,.#Q%&#,(,+,/0#/(.#/.@/(-).#+&/,(,(>R#Q%&#
)M/7S0)T#9)++,(>#6+/&+).R#@,.)%*R#+'+%&,/0*R#/SS*R#7/('/0*R#S&%>&/77,(>#>',.)0,()*#/(.#+&,/0#
*%Q+U/&)VQ,&7U/&)R#/+#+?)#Q%00%U,(>#0,(WT##
#
UUU4*,)7)(*4-%7V*-)V*JF<K;;#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG:;#3,/>(%*+,-*#@,/#H)I*)&@)&D6JF<K;;D1<K;L4.%-M#
A<#
#
#
#
966574818915)11:62867;98<4
8915=>?
!
"1
2
8
#1
4
6
$
%
&
5
1'
467
+,-./0123234.,5002657589.
(12!# !)*%&
01245267829
864769564
8915
595789848915796657
98767626
012456787891
557
456
27787976!65"!!#
Q#0410R!S7L1T!U#
#V&.)&#(%4W#=B6IG<=FE$D;;FX8Y<#
Q#041042R5POO786Z078978O#
V&.)&#(%4W#=B6IJ::F<88;EFX[8G#
Q#041042R5POO786Z16OO5
78O\
M
O5O]#
V&.)&#(%4W#=B6IJ::F<Y8;EFX[8G
Q#041042R5POO786ZTM95678O\
M
O5O]#
V&.)&#(%4W#=B6IJ::F<88;EFX[BG
Q#041042R5POO786ZTM95678O\
M
O5O]#
V&.)&#(%4W#=B6IJ::F<Y8;EFX[BG
Q#041042R5POO786Z0
878O\
M
O5O]#
V&.)&#(%4W#=B6IJ::F<8A;EFX[8G
^0)/*)#(%+)#+?/+#+?)*)#+&/,()&#_/-`/>)*#/&)#&)_0/-).#a,+?#*'--)**%&#_/-`/>)*#a?)(#()-)**/&b4#
8(#%@)&@,)a#%c#+?)#-'&&)(+0b#/@/,0/d0)#6AB#_/-`/>)*#,*#_&%@,.).#/+W#*,)7)(*4-%7e*-)e+_##
#
#
1878
5678789
$%&#&)>,%(/0#6,)7)(*#6AB#-%(+,(').#+&/,(,(>f#_0)/*)#-%(+/-+#b%'&#&)>,%(/0#6AB#-%(+/-+#
*,)7)(*4-%7e*-)e-%(+/-+#
#
#
778678P5
6785965789012
*,)7)(*4-%7e*-)#
#
#
8P5
6785965789
O
g?)#6AB#+&/,(,(>#-'&&,-'0'7#c%&#+?)#,(+)>&/+).#/'+%7/+,%(#*%0'+,%(#g%+/00b#h(+)>&/+).#8'+%7/+,%(#igh8j#
a/*#_&)_/&).#c%&#+?)#_&%>&/7#k6,)7)(*#8'+%7/+,%(#A%%_)&/+)*#a,+?#B.'-/+,%(#i6ABjk#*_)-,c,-/00b#c%&#
+&/,(,(>#_'&_%*)*#c%&#_'d0,-#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#6,)7)(*#89#.%)*#(%+#>'/&/(+))#+?)#
-%(+)(+*4#
#
g?,*#.%-'7)(+#,*#+%#d)#'*).#%(0b#c%&#,(,+,/0#+&/,(,(>#%(#6,)7)(*#_&%.'-+*e*b*+)7*4#g?,*#7)/(*#,+#-/(#d)#
-%_,).#,(#a?%0)#%&#_/&+#/(.#>,@)(#+%#+?%*)#d),(>#+&/,().#c%&#'*)#a,+?,(#+?)#*-%_)#%c#+?),&#+&/,(,(>4#
A,&-'0/+,%(#%&#-%_b,(>#+?,*#+&/,(,(>#-'&&,-'0'7#/(.#*?/&,(>#,+*#-%(+)(+#,*#_)&7,++).#a,+?,(#_'d0,-#+&/,(,(>#
/(.#/.@/(-).#+&/,(,(>#c/-,0,+,)*#c%&#+&/,(,(>#_'&_%*)*4##
#
BK-)_+,%(*# &)l',&)# a&,++)(# -%(*)(+# c&%7# +?)# 6,)7)(*# 89# -%(+/-+W# 1%0/(.# 6-?)')&)&#
&%0/(.4*-?)')&)&m*,)7)(*4-%74#
#
Vcc)(.)&*#a,00#d)#?)0.#0,/d0)4#800#&,>?+*#,(-0'.,(>#+&/(*0/+,%(#/&)#&)*)&@).f#_/&+,-'0/&0b#,c#/#_/+)(+#,*#>&/(+).#
%&#/#'+,0,+b#7%.)0#%&#.)*,>(#,*#&)>,*+)&).4#
#
n*)#c%&#,(.'*+&,/0#-'*+%7)&#-%'&*)*#,*#)K_&)**0b#_&%?,d,+).4#o)#.%#(%+#-%(*)(+#+%#-%77)&-,/0#'*)#%c#+?)#
+&/,(,(>#-'&&,-'0'7*4#
#
o)#a,*?#+%#+?/(`#+?)#gn#3&)*.)(f#)*_)-,/00b#^&%c4#3&4Fh(>4#p)%(#n&d/*#'(.#3,_04Fh(>4#8(()++#^c)cc)&f#+?)#
q,-?/)0#3r,/00/*#B(>,())&,(>#A%&_%&/+,%(#/(.#/00#%+?)&#,(@%0@).#_)&*%(*#c%&#+?),&#*'__%&+#.'&,(>#+?)#
_&)_/&/+,%(#%c#+?,*#+&/,(,(>#-'&&,-'0'74#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
:#
#
#
#
012456787891
557
456
27787976!65"!!#
L/M0)#%N#-%(+)(+*#
<O 9%/0#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#PO
:O Q&)&)R',*,+)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#PO
AO L?)%&S#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#PO
A4<O 8(/0%>#*,>(/0*#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#PO
A4:O T)/*'&,(>#+&/(*.'-)&*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#GO
A4AO 8(/0%>#7%.'0)*#U#8V3#-%(@)&+)�#GO
A4PO 3/+/#+SW)*#%N#+?)#6XT8LXB#6IF<G;;#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#=O
A4GO 1)/.,(>V%'+W'++,(>#/(/0%>#@/0')*#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#IO
A4=O E%&7/0,Y,(>#/(/0%>#@/0')*#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#JO
PO L/*Z#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#[O
GO Q0/((,(>#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#[O
G4<O 8(/0%>#-%(+&%0#%N#+?)#-%(@)S%&#*W)).#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#[O
G4:O L)-?(%0%>S#.,/>&/7#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<;O
G4AO 1)N)&)(-)#0,*+#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<<O
=O 6+&'-+'&).#*+)WFMSF*+)W#,(*+&'-+,%(*#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<:O
=4<O 1)+&,)@)#/(#)K,*+,(>#W&%\)-+#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#<:O
=4:O B&)/+)#+?)#]T^L^1D6QCC3B^EL1^_]#N'(-+,%(#44444444444444444444444444444444444444444444444444444444444444444444#<PO
=4AO B%(N,>'&/+,%(#%N#+?)#/(/0%>#%'+W'+#-?/(()0#44444444444444444444444444444444444444444444444444444444444444444444444444444444#:<O
=4PO CKW/(.#+?)#+/>#+/M0)#+%#,(-0'.)#/(/0%>#*,>(/0*#44444444444444444444444444444444444444444444444444444444444444444444444444#::O
=4GO B/00#+?)#M0%-Z#,(#+?)#%&>/(,Y/+,%(#M0%-Z#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:AO
=4=O 6/@)#/(.#-%7W,0)#+?)#W&%>&/7#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:=O
=4IO 3%`(0%/.#+?)#W&%>&/7#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:IO
=4JO T%(,+%&#W&%>&/7#M0%-Z*#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#:JO
=4[O 8&-?,@)#+?)#W&%\)-+#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A;O
IO B?)-Z0,*+#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A<O
JO CK)&-,*)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A:O
J4<O L/*Z#U#CK)&-,*)#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A:O
J4:O L)-?(%0%>S#.,/>&/7#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AAO
J4AO 1)N)&)(-)#0,*+#444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#APO
J4PO Q0/((,(>#44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#APO
J4GO B?)-Z0,*+#U#CK)&-,*)#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#AGO
[O 8..,+,%(/0#,(N%&7/+,%(#4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444#A=O
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
MNOPQNR20!OS0410T
P6
U(#+?,*#-?/V+)&W#X%'#Y,00#Z)-%7)#/-['/,(+).#Y,+?#+?)#/(/0%>#@/0')#V&%-)**,(>#%\#+?)#6U]8^UB#
6JG<H;;#Y,+?#+?)#^U8#_%&+/0#V&%>&/77,(>#+%%04##
^?)#7%.'0)#)LV0/,(*#+?)#/-[',*,+,%(#/(.#V&%-)**,(>#%\#/(/0%>#*,>(/0*#/(.#>,@)*#/#*+)VGZXG
*+)V#.)*-&,V+,%(#%\#&)/.#/(.#Y&,+)#/--)**#+%#/(/0%>#@/0')*#,(#+?)#6U]8^UB#6JG<H;;4#
55`
7a7
^?,*#-?/V+)&#Z',0.*#%(#+?)#-?/V+)&#UCB#^,7)&*#/(.#B%'(+)&*#Y,+?#+?)#6U]8^UB#6J#B_b<H<=$G
F#_Ec3_4#d%'#-/(#'*)#+?)#\%00%Y,(>#V&%e)-+#\%&#+?,*#-?/V+)&W#\%&#)L/7V0)f#;F:GF;;#UCB#^,7)&*#
/(.#B%'(+)&*4g/V<F#
4h5"
i869a7986a
jklmnkopqrolonlqlstkqpulrtvkqwxlyztmzlmqklqrr{|}lnkwuloynlrtvkqwlroqo}rl~nwoqv}lp}r}koll
lqklnwoqv}#knolp}r}kollxlqkqwnvlrtvkqwrlmqklqrr{|}lqkulqw{}lytoztklql}tk}l
&/(>)4#8#+XV,-/0#)L/7V0)#%\#/(#/(/0%>#*)(*%&#,*#/#V%+)(+,%7)+)&4#3)V)(.,(>#%(#+?)#V%*,+,%(#%\#
+?)#(%ZW#/(X#&)*,*+/(-)#-/(#Z)#*)+W#'V#+%#+?)#7/L,7'7#@/0')4#
#
CL/7V0)*#%\#/(/0%>#['/(+,+,)*#,(#-%(+&%0#)(>,())&,(>f#
G# ^)7V)&/+'&)#GH;#+%#<H;#B#
G# $0%Y#&/+)#;#+%#:;;#0c7,(#
G# 6V)).#GH;;#+%#H;#&V7##
G# )+-4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
L6M
5789568M
5M
N?)*)#O'/(+,+,)*#/&)#-%(@)&+).#+%#)0)-+&,-/0#@%0+/>)*P#-'&&)(+*#%&#&)*,*+/(-)*#Q,+?#+?)#?)0R#%S#/#
7)/*'&,(>#+&/(*.'-)&4#TSP#S%&#)K/7R0)P#/#*R)).#,*#+%#U)#7)/*'&).P#+?)#*R)).#&/(>)#%S#A;;#+%#
<A;;#&R7#-/(#U)#-%(@)&+).#+%#/#@%0+/>)#&/(>)#%S#;#+%#V<;#H#'*,(>#/#7)/*'&,(>#+&/(*.'-)&4#8+#
/#7)/*'&).#*R)).#%S#J=A#&R7P#+?)#7)/*'&,(>#+&/(*.'-)&#Q%'0.#%'+R'+#/#@%0+/>)#@/0')#%S#
VF4=A#H4#
#
i
e
78#
5j
F=A
c
<;<;;;;#;&R#b]
7#
7,(
<;H
cd
cd
e
5j
ffLc
5je
j
7
8
c
7
8#
5
g
L
c
5
j
f
L
c
e
78gce
78f
hhcc#
L869
MW8X55
#
N?)*)#)0)-+&,-/0#@%0+/>)*P#-'&&)(+*#%&#&)*,*+/(-)*#/&)#+?)(#-%(()-+).#+%#/(#/(/0%>#7%.'0)#+?/+#
.,>,+,Y)*#+?,*#*,>(/0#S%&#S'&+?)&#R&%-)**,(>#,(#+?)#Z[B4#
TS#/(/0%>#O'/(+,+,)*#Q,00#U)#R&%-)**).#Q,+?#/#Z[BP#+?)#&)/.G,(#@%0+/>)P#-'&&)(+#%&#&)*,*+/(-)#
@/0')#7'*+#U)#-%(@)&+).#+%#.,>,+/0#,(S%&7/+,%(4#N?)#/(/0%>#@/0')#,*#-%(@)&+).#+%#/#U,+#R/++)&(4#
N?,*#-%(@)&*,%(#,*#&)S)&&).#+%#/*#/(/0%>G+%G.,>,+/0#-%(@)&*,%(#\8]3#-%(@)&*,%(^4#N?,*#7)/(*P#
S%&#)K/7R0)P#+?/+#+?)#@%0+/>)#@/0')#%S#F4=A#H#,*#*+%&).#/*#,(S%&7/+,%(#,(#/#*)&,)*#%S#U,(/&_#
.,>,+*4##
N?)#&)*'0+#%S#+?,*#-%(@)&*,%(#,*#/0Q/_*#/#<=GU,+#Q%&.#S%T`8NTB#R&%.'-+*4#N?)#,(+)>&/+).#
83B#\/(/0%>G+%G.,>,+/0#-%(@)&+)&^#%S#+?)#/(/0%>#,(R'+#7%.'0)#.,>,+,Y)*#+?)#/(/0%>#*,>(/0#U),(>#
/-O',&).#/(.#/RR&%K,7/+)*#,+*#@/0')#,(#+?)#S%&7#%S#/#*+)RR).#-'&@)4#N?)#7%*+#,7R%&+/(+#
R/&/7)+)&*#%S#/(#83B#/&)#,+*#&)*%0'+,%(#/(.#-%(@)&*,%(#&/+)4#
#
<a#8(/0%>#@/0')#
:4#3,>,+/0#@/0')#
#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA;;#8(/0%>#H/0')*DD6IG<A;;D1<A;J4.%-K#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
L?)#7%&)#M,(/&N#.,>,+*#+?)#.,>,+/0#&)O&)*)(+/+,%(#'*)*P#+?)#Q,()&#+?)#&)*%0'+,%(#,*4#$%&#)K/7O0)P#
,Q#%(0N#<#M,+#R/*#/@/,0/M0)#Q%&#+?)#@%0+/>)#&/(>)#%Q#;#+%#S<;#HP#N%'#R%'0.#%(0N#T(%R#R?)+?)&#+?)#
7)/*'&).#@%0+/>)#,*#M)+R))(#;#/(.#SG#H#%&#M)+R))(#SG#H#/(.#S<;#H4#U,+?#:#M,+*P#+?)#&/(>)#
-/(#M)#.,@,.).#,(+%#V#,(.,@,.'/0#&/(>)*P#,4)4P#;#+%#:4G#W#:4G#+%#G#W#G#+%#I4G#W#I4G#+%#<;#H4#
A%(@)(+,%(/0#8W3#-%(@)&+)&*#,(#-%(+&%0#)(>,())&,(>#'*)#J#%&#<<#M,+*#Q%&#-%(@)&+,(>4#
U,+?#J#M,+*#N%'#?/@)#:G=#,(.,@,.'/0#&/(>)*P#R?,0)#<<#M,+*#O&%@,.)#/#&)*%0'+,%(#%Q#:;VJ#
,(.,@,.'/0#&/(>)*4#
#
#
<<#g,+#
Yt#
YtYttt
697\\58[\
68c
#
XY 66"Z[\]0410^
L?)#6_`8L_A#6IF<G;;#?/*#7/(N#.,QQ)&)(+#./+/#+NO)*#Q%&#&)O&)*)(+,(>#.,QQ)&)(+#('7)&,-/0#
Q%&7/+*4#8#0,*+#%Q#*%7)#%Q#+?)#)0)7)(+/&N#./+/#+NO)*#,*#>,@)(#M)0%R4#
#
66"Z07abc7[de689
2f6
Z\8[6885"
g%%0# <#
;#+%#<#
L1hBP#$8i6BP#jP#<#
gN+)# J#
<=k;;#+%#<=k$$#
<=k<:P#<=k8g#
U%&.# <=#
<=k;;;;#+%#<=k$$$$#
<=k8gA3P#<=k;;;<#
3U%&.# E:#
<=k;;;;;;;;#+%#<=k$$$$$$$$# <=k;:V=J8AB#
A?/&# J#
<=k;;#+%#<=k$$#
lmlnopqrnopsr#
6,(+# J#
F<:J#+%#<:I#
<:EPF<:E#
8
^t^^
3,(+# E:#
F:P<VIPVJEP=VJ#+%#:P<VIPVJEP=VI# <:EP#F<:E#
h6_(+# J#
;#+%#:GG#
<:E#
h0(+# <=#
;#+%#=GPGEG#
<:E#
h3_(+# E:#
;#+%#VP:uVPu=IP:uG#
<:E#
t
t
e6
vXtf vXYf XYXYX2vXY2
i1)/0# =V#
SWF:4:E#K#<;#FE;J#+%#SWF<4Iu#K#<;#E;J#<:EVG4<:EVG=IJu##
F<4:BSV;#
L,7)# E:#
LkF:V.C:;?CE<#7C:E*C=VJ7*#+%#LkG7CE;*##
Lk:V.C:;?CE<#7C:E*C=VI7*## GkF:.#
6/@).#/*w#F:P<VIPVJEP=VJ#7*#+%# Lk<.C:?C<G7CE;KCVG7*#
S:P<VIPVJEP=VI#7*#
6+&,(># H/&,/M0)# ;#+%#:GV#-?/&/-+)&*#,(#MN+)#*,x)# y8gAy#
z{|}~z
z
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
=#
#
#
#
012456787891
557
456
27787976!65"!!#
LM6789
N
7896869O6
P
8(/0%>#@/0')*#/&)#&)/.#,(+%#+?)#QRB#%&#%'+S'+#T&%7#+?)#QRB#/*#U%&.#,(T%&7/+,%(4#V?)*)#U%&.*#
/&)#/--)**).W#T%&#)K/7S0)W#U,+?#+?)#T%00%U,(>#%S)&/(.*X#
#
YZ[#=\# # 8(/0%>#,(S'+#U%&.#=\#
Y][#=\# # 8(/0%>#%'+S'+#U%&.#=\#
#
C/-?#/(/0%>#@/^_`abcdefgg`^hiajdd_kl`majg`algk_najoaj_nk_napjoqrase`atjoufnalmavwxyzW#/(#
,(+)>)&4#
#
V?)#/..&)**,(>#%T#,(S'+#/(.#%'+S'+#U%&.*#-%(T%&7*#+%#+?)#/..&)**,(>#,(#+?)#.)@,-)#%@)&@,)U4#
$%&#)K/7S0)X#
#
{)&)W#+?)#/..&)**#%T#+?)#T,&*+#/(/0%>#,(S'+#U%'0.#|)#YZ[#=\W#+?/+#%T#+?)#*)-%(.#/(/0%>#,(S'+#
YZ[#==W#+?/+#%T#+?)#+?,&.#/(/0%>#,(S'+#YZ[=JW#+?/+#%T#+?)#T%'&+?#/(/0%>#,(S'+#YZ[A;W#+?/+#%T#
+?)#T,T+?#/(/0%>#,(S'+#YZ[A:W#+?/+#%T#+?)#*,K+?#/(/0%>#,(S'+#YZ[A\W#+?/+#%T#+?)#*)@)(+?#/(/0%>#
,(S'+#YZ[#A=#/(.#+?/+#%T#+?)#),>?+?#/(/0%>#,(S'+#YZ[AJ4#
#
V?)#/..&)**#%T#+?)#T,&*+#/(/0%>#%'+S'+#U%'0.#|)#Y][=\W#+?/+#%T#+?)#*)-%(.#/(/0%>#%'+S'+#
Y][==W#+?/+#%T#+?)#+?,&.#/(/0%>#%'+S'+#Y][#=J#/(.#+?/+#%T#+?)#T%'&+?#/(/0%>#%'+S'+#Y][A;4#
#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6AG<H;;D1<H;J4.%-K#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
L?)#/(/0%>#@/0')#+&/(*M%&7/+,%(#M%&#M'&+?)&#N&%-)**,(>#,(#+?)#OPB#,*#+?)#*/7)#M%&#/(/0%>#
,(N'+*#/(.#/(/0%>#%'+N'+*4#
L?)#.,>,+,Q).#@/0')#&/(>)*#/&)#/*#M%00%R*S#
#
Y
7865689cd6869
[6
#
e#
e
#
e#
hg#
fgh#
79767Z [6
c5 c
5d5
i5\\78978dj1#
#
#
TM+)(U#+?)*)#.,>,+,Q).#@/0')*#*+,00#?/@)#+%#V)#(%&7/0,Q).#VW#M'&+?)&#N&%-)**,(>#+?)7#,(#+?)#OPB#
,(#/(#/NN&%N&,/+)#7/(()&4#
#
#
]M#/(#/(/0%>#,(N'+#@/0')#)K,*+*#/*#/#.,>,+,Q).#@/0')#,(#+?)#&/(>)#^_G#:J=`AU#,+#7'*+#'*'/00W#*+,00#
V)#(%&7/0,Q).#*%#+?/+#+?)#('7)&,-/0#@/0')*#-%&&)*N%(.#+%#+?)#N?W*,-/0#a'/(+,+,)*#,(#+?)#
N&%-)**4#
#
P,b)R,*)U#+?)#/(/0%>#%'+N'+#'*'/00W#&)*'0+*#M&%7#*)++,(>#%M#/#(%&7/0,Q).#@/0')#+?/+#+?)(#*+,00#?/*#
+%#V)#*-/0).#+%#+?)#%'+N'+#@/0')#^_G#:J=`A4#
#
](#+?)#L]8#O%&+/0U#&)/.WG7/.)#V0%-b*#%&#/&,+?7)+,-#%N)&/+,%(*#/&)#'*).#M%&#(%&7/0,Q,(>#/(.#
*-/0,(>4#
$%&#+?,*#+%#V)#-/&&,).#%'+#/*#)K/-+0W#/*#N%**,V0)U#+?)#@/0')*#M%&#+?)#(%&7/0,Q,(>#7'*+#V)#
-%(@)&+).#+%#+?)#1C8P#./+/#+WN)#+%#7,(,7,Q)#&%'(.,(>#)&&%&*4##
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;A4.%-K#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
M46NO
P(#+?,*#-?/Q+)&R#/#S'(-+,%(#S%&#/(/0%>#-%(+&%0#%S#+?)#-%(@)T%&#*Q)).#U,00#V)#/..).#+%#+?)#
Q&%>&/7#S&%7#-?/Q+)&#W6BCDCED;F:GF;;#PCB#X,7)&*#/(.#B%'(+)&*W4#
688789
X?)#/(/0%>#-%(+&%0#%S#+?)#-%(@)T%&#*Q)).#U,00#V)#Q&%>&/77).#,(#+?)#
WYZXZ1D6[CC3BZEX1Z\W#]$B<;^#S'(-+,%(#/*#/(#)LQ/(*,%(#%S#+?)#W6BCDCED;F:GF;;#PCB#
X,7)&*#/(.#B%'(+)&*W#Q&%_)-+4#X?,*#Q&%_)-+#7'*+#V)#&)+&,)@).#S&%7#+?)#/&-?,@)#,(#%&.)&#+%#/..#
+?,*#S'(-+,%(4#X?)#WYZXZ1D#6[CC3BZEX1Z\W#`abcdefghijklmifnloofpqfjrooqsflifktqfuvrliwf
]Zx<^W#%&>/(,y/+,%(#V0%-z#/(.#U,&).4#X?)#-%(+&%0#%S#+?)#-%(@)T%%+%'*+#V)#-?/(>).#
+%#G#{F#|-%(@)T%%+%&#GY<#@/&,/V0)#*Q)).}4#
#
X?)#*Q)).#U,00#V)#*)+#/+#/(#,(Q'+#%S#+?)#WYZXZ1D6[CC3BZEX1Z\W#]$B<;^#S'(-+,%(#,(#
&)@%0'+,%(*#Q),('+)#|&/(>)#G#H;#&Q7}4#X?)#./+/#+TQ)#,*#F:GV,+#S0%/+,(>GQ%,(+#('7V)&#
|1)/0}4#
$,&*+R#+?)#S'(-+,%(#U,00#V)#-?)-z).#S%&#-%&&)-+#)(+&T#%S#+?)#*Q)).#*)+Q%,(+#,(#+?)#&/(>)#G#H;#
&Q74#
PS#+?)#*Q)).#*)+Q%,(+#,*#%'+*,.)#+?)#&/(>)#G#H;#&Q7R#+?)#@/0')#;#U,+?#./+/#+TQ)#<=GV,+#,(+)>)&#
|P(+}#U,00#V)#%'+Q'+#/+#+?)#%'+Q'+4#X?)#&)+'&(#@/0')#%S#+?)#S'(-+,%(#|1)+DI/0}#U,00#+?)(#V)#
/**,>().#+?)#@/0')#X1C#|<}4#
#
PS#+?)#*Q)).#*)++,(>#,*#U,+?,(#+?)#&/(>)#G#H;#&Q7R#+?,*#@/0')#U,00#S,&*+#V)#(%&7/0,y).#+%#+?)#
riqfdcfrisfktqifjroqsfkmfG#:J=K#U,+?#./+/#+TQ)#<=GV,+#,(+)>)&#|P(+}#S%&#%'+Q'+#/*#+?)#
*Q)).#7/(,Q'0/+).#@/0')#/+#+?)#/(/0%>#%'+Q'+4#
#
X?)#%'+Q'+#U,00#+?)(#V)#-%(()-+).#U,+?#*,>(/0#<#|7/(,Q'0/+).#@/0')#*Q)).#%S#+?)#7%+%&#,(#:#
.,&)-+,%(*#G#<;I#-%&&)*Q%(.*#+%#G#H;#&Q7}4#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
A#
#
#
#
012456787891
557
456
27787976!65"!!#
N)&)#O%'#*))#+?)#+)-?(%0%>O#.,/>&/7#P%&#+?)#+/*Q4#
#
$,>'&)#<R#S)-?(%0%>O#.,/>&/7#
$,>'&)#:R#A%(+&%0#T/()0#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
<;#
#
#
#
012456787891
557
456
27787976!65"!!#
LMN587O
P?)#Q%00%R,(>#*,>(/0*#/&)#&)S',&).#/*#>0%T/0#%U)&/(.*#Q%&#+?,*#+/*V4#
4"W 87N75 !
878
Z#;4;# [\\]# F8<# 1)+'&(#*,>(/0#)7)&>)(-^#*+%U#\_#
Z#;4<# [\\]# F_;# `/,(#*R,+-?#a\Da#
Z#;4:# [\\]# F6;# `%.)#*)0)-+%/('/0#b;cd#/'+%7/+,-#b<c#
Z#;4E#
Z#;4g#
Z#;4G#
Z#<4;#
Z#<4E#
[\\]#
[\\]#
[\\]#
[\\]#
[\\]#
F6<#
F6:#
F[<#
F[g#
F[I#
Y 4"W 87N75
h#;4:# [\\]# FhE#
hi#=g# [\\]# Fj<#
f'*?T'++%(#/'+%7/+,-#*+/&+#
f'*?T'++%(#/'+%7/+,-#*+%U#
6)(*%&#-^0,(.)&#F`g#&)+&/-+).#
6)(*%&#U/&+#/+#*0,.)#
6)(*%&#U/&+#/+#)(.#%Q#-%(@)^%&#
!
878
A%(@)^%%+%&#F`<#@/&,/T0)#*U)).#
`/(,U'0/+).#@/0')#*U)).#%Q#+?)#7%+%&#,(#:#
.,&)-+,%(*#kdF#<;H#-%&&)*U%(.*#+%#kdF#G;#&U7#
#
lmnmopqrstqtmrmtmoumqvwxyq
#
3Z# 3,>,+/0#Z(U'+#
#
# 8Z# 8(/0%>#Z(U'+#
# Z# Z(U'+#
# DA# D%&7/00^#A0%*).##
#
D\# D%&7/00^#\U)(##
X1XY
DA#
D\#
`/('/0#e#;#
8'+%#e#<#
D\#
DA#
D\#
D\#
D\#
#
#
3\# 3,>,+/0#\'+U'+#
8\# 8(/0%>#\'+U'+#
h# \'+U'+#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
<<#
#
#
#
012456787891
557
456
27787976!65"!!#
05
5LMN"LM78L5
78L
O%'#-/(#P,(.#,(*+&'-+,%(*#%(#?%Q#+%#-/&&R#%'+#S0/((,(>#T)0%Q4#UP#R%'#/0&)/.R#?/@)#/#>%%.#
'(.)&*+/(.,(>#%P#)@)&R+?,(>V#,+#Q,00#T)#*'PP,-,)(+#+%#P%-'*#%(#+?)#('7T)&).#*+)S*4#W+?)&Q,*)V#
*,7S0R#P%00%Q#+?)#.)+/,0).#*+)S*#,(#+?)#,(*+&'-+,%(*4#
XY57Z68[7L789M5\
]#^)P%&)#Q)#-/(#)KS/(.#+?)#_6ABCBDC;E:FE;;CUBAC`,7)&*CA%'(+)&*4a/S<E#S&%b)-+#P&%7#
-?/S+)&#_6ABCBDC;E:FE;;CUBAC`,7)&*CA%'(+)&*_V#Q)#7'*+#&)+&,)@)#+?,*#S&%b)-+#P&%7#
+?)#/&-?,@)4#`%#&)+&,)@)#/(#)K,*+,(>#S&%b)-+#+?/+#?/*#T))(#/&-?,@).V#R%'#7'*+#*)0)-+#+?)#
&)0)@/(+#/&-?,@)#Q,+?#]#c&%b)-+#]#1)+&,)@)#,(#+?)#S&%b)-+#@,)Q4#A%(P,&7#R%'&#*)0)-+,%(#
Q,+?#WS)(4##
d]#c&%b)-+#]#1)+&,)@)#]#6)0)-+#/#4a/S#/&-?,@)#]#WS)(e#
#
]#`?)#()K+#*+)S#,*#+%#*)0)-+#+?)#+/&>)+#.,&)-+%&R#Q?)&)#+?)#&)+&,)@).#S&%b)-+#Q,00#T)#*+%&).4#
A%(P,&7#R%'&#*)0)-+,%(#Q,+?#_Wf_4##
d]#`/&>)+#.,&)-+%&R#]#Wfe#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
<:#
#
#
#
012456787891
557
456
27787976!65"!!#
L#6/@)#+?)#%M)().#M&%N)-+#'(.)&#+?)#(/7)#;A:FG;;D8(/0%>DH/0')*4##
OL#P&%N)-+#L#QRSTURVUWUL#;A:FG;;D8(/0%>DH/0')*#L#6/@)X#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
M156NOP4PQR022 1PS4QPTOU
878
V#6)0)-+#+?)#WX&%>&/7#Y0%-Z*W#[%0.)&#%[#\%'&#BX]#<H<=$GF#XE^3X#/(.#+?)(#-0,-Z#_8..#()`#
Y0%-Z_#+%#-&)/+)#/#()`#['(-+,%(#+?)&)4#
aV#BX]D<H<=$#bBX]#<H<=$GF#XE^3Xc#V#8..#()`#Y0%-Zd##
#
V#6)0)-+# #,(#+?)#()L+#.,/0%>#/(.#&)(/7)#\%'&#()`#Y0%-Z#+%e#
_fghg1D6XCC3BgEh1gi_4#6)+#+?)#0/(>'/>)#+%#$j3#/(.#7/('/00\#/**,>(#+?)#('7Y)&#
_<;_4#6)0)-+#+?)#_8..#()`#/(.#%k)(_#-?)-Z#Y%L4#B0,-Z#_gl_4#
aV V#E/7)e#fghg1D6XCC3BgEh1gi#V#i/(>'/>)e#$j3#V#E'7Y)&e#<;#f/('/0#
V##8..#()`#/(.#%k)(#V#gld#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
L#B&)/+)#+?)#0%-/0#+/>*#M,+?#+?),&#-%77)(+*#/*#*?%M(#?)&)#/(.#-?/(>)#+?)#./+/#+NO)#%P#+?)#
Q1)+'&(Q#+/>#P&%7#QH%,.Q#+%#QR%%0Q4##
SL#R%%0T#
UVWXYZ[\Z]^_\Z`aZ^]\Z`b\Zca__\c`Zde`eZ`fg\]hZ
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA;;#8(/0%>#H/0')*DD6IG<A;;D1<A;J4.%-K#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
L#D)K+#'*)#.&/>F/(.F.&%M#+%#7%@)#+?)#NA%7M/&/+%&#%M)&/+,%(N#N9&)/+)&#%&#)O'/0N#%(+%#+?)#
*)-%(.#,(M'+#%P#+?)# #8D3#0%>,-#%M)&/+,%(4##
QL#R/*,-#,(*+&'-+,%(*#L#A%7M/&/+%&#%M)&/+,%(*L#ASTUVW#
#
L#A%(()-+#+?)#-%(+/-+*#,(#D)+X%&Y#<#X,+?#+?)#-%(*+/(+*#/(.#0%-/0#+/>*#/*#*?%X(#?)&)4#Z?)#
./+/#+[M)*#,(#+?)#-%7M/&/+%&#%M)&/+,%(*#/&)#/'+%7/+,-/00[#/./M+).#+%#N1)/0N4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
<=#
#
#
#
012456787891
557
456
27787976!65"!!#
L#M*)#.&/>G/(.G.&%N#+%#7%@)#+?)#OB%(@)&*,%(#%N)&/+,%(O#OEP1QDRO#,(+%#E)+S%&T#:#,(#%&.)&#
+%#(%&7/0,U)#+?)#*N)).#*)+N%,(+#%V#WXG#H;#&N7#+%#WXG#<4##
YL#Z/*,-#,(*+&'-+,%(*#L#B%(@)&*,%(#%N)&/+,%(*#L#EP1QDR[#
#
L#B%(()-+#+?)#-%(+/-+*#,(#E)+S%&T#:#S,+?#+?)#-%(*+/(+*#/(.#0%-/0#+/>*#/*#*?%S(#?)&)4#\?)#
./+/#+]N)*#,(#OEP1QDRO#/&)#/'+%7/+,-/00]#/./N+).#+%#O1)/0O4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6AG<H;;D1<H;J4.%-K#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
L#M*)#.&/>G/(.G.&%N#+%#7%@)#+?)#OB%(@)&*,%(#%N)&/+,%(O#O6B8PCDQO#,(+%#E)+R%&S#F#,(#%&.)&#
+%#*-/0)#+?)#*N)).#*)+N%,(+#T&%7#+?)#(%&7/0,U).#VWG#<#%(+%#+?)#&/(>)#T%&#+?)#/(/0%>#%'+N'+#
VWG#:JX=A4##
YL#Z/*,-#,(*+&'-+,%(*#L#B%(@)&*,%(#%N)&/+,%(*#L#6B8PCDQ[#
#
L#B%(()-+#+?)#-%(+/-+*#R,+?#+?)#-%(*+/(+*#/(.#0%-/0#+/>*#,(#E)+R%&S#F#/*#R)00\#/*#*?%R(#
?)&)4#]?)#./+/#+^N)*#,(#O6B8PCDQO#/&)#/'+%7/+,-/00^#-?/(>).#+%#O1)/0O#%&#O_(+O4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;A4.%-K#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
M#N(*)&+#/(#8**,>(7)(+#O O#,(#+?)#P%'&+?#()+Q%&R4#S*)#.&/>G/(.G.&%T#+%#7%@)#+?)#OU%@)O#
-%77/(.#P&%7#+?)#OU%@)#%T)&/+,%(*O#P%0.)&#'(.)&#OV/*,-#,(*+&'-+,%(*O#,(#P&%(+#%P#+?)#
8**,>(7)(+4##
WM# #M#V/*,-#,(*+&'-+,%(*#M#U%@)#%T)&/+,%(*#M#UXICY#
#
M#Z?)#-%(+/-+*#,(#E)+Q%&R#[#Q,00#(%Q#\)#-%(()-+).#Q,+?#-%(*+/(+*#/(.#0%-/0#+/>*#/*#*?%Q(#
?)&)4#NP#+?)#*T)).#*)+T%,(+#,*#(%+#Q,+?,(#+?)#&/(>)#]^G#H;#&T7_#+?)#@/0')#O;O#,*#%'+T'+#/+#+?)#
/(/0%>#%'+T'+#/(.#+?)#@/0')#Z1SC#,*#/**,>().#+%#+?)#&)+'&(#@/0')#W1)+'&(Y#%P#+?)#
`abcbdefghhijbkcdblmnopqrstuqv#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
<A#
#
#
#
012456787891
557
456
27787976!65"!!#
L#3%#(%+#M%&>)+#+%#-0,-N#
4#O?)#M,(,*?).#M'(-+,%(#PQROR1C6SBB3ARDO1RTP#
U$A<;V#,(#$W3#,*#*?%X(#Y)0%X4#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
:;#
#
#
#
012456787891
557
456
27787976!65"!!#
L18M79
5678MN6869
O
N688
P#3%'Q0)F-0,-R#+?)#S3)@,-)#-%(T,>'&/+,%(S#+%#%U)(#,+4#
#
P#A?)-R#+?)#/..&)**#*)++,(>#/(.#+?)#-%(T,>'&/+,%(#%T#+?)#/(/0%>#%'+U'+#-?/(()0#;4##
VP#WXYZZ[\]]^X_`abcXP#d&%U)&+,)*#P#9)()&/0#P#e'+U'+#;#F#E#P#e'+U'+*#P#A?/(()0#;#
P#e'+U'+#+fU)g#H%0+/>)#P#e'+U'+#&/(>)g#hiF#<;#H#P#1)/-+,%(#+%#Adj#6kedg#6?'+.%l(m#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
:<#
#
#
#
012456787891
557
456
27787976!65"!!#
LM2NO68P696Q78
6869R7986R
S#3%'T0)F-0,-U#+?)#VW/>#+/T0)C*%&+,(>#*+/+,%(V#+%#%X)(#,+4#
#
S#8..#+?)#>0%T/0#+/>*#Y%&#+?)#/(/0%>#@/0')#X&%-)**,(>#+%#+?)#ZW/>#+/T0)C*%&+,(>#*+/+,%(Z4#8(#
/(/0%>#,(X'+#[J#/(.#/(#/(/0%>#%'+X'+#\<#7'*+#T)#/..).4##
]S#\<#S#^_`=a#S#[J#S#^b`=ac#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
::#
#
#
#
012456787891
557
456
27787976!65"!!#
Q#RS)(#+?)#TU/,(#VRW<XT#%&>/(,Y/+,%(#Z0%-[#\,+?#/#.%'Z0)F-0,-[4#
#
Q#8..#+?)#+)7S%&/&]#+/>#^U%+%&D*S)).D7%(,+%&,(>D1)+DH/0^#+%#+?)#0%-/0#+/>*#%_#RW<4#
`?)*)#\,00#Z)#()).).#,(#%&.)&#+%#,(+)&-%(()-+#+?)#&)+'&(#@/0')#%_#+?)#
TUR`R1D6aCC3BRE`1RbT#_'(-+,%(4##
cQ#`)7S#Q#U%+%&D*S)).D7%(,+%&,(>D1)+DH/0#Q#W%%0d#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
M#6)0)-+#+?)#N0%-O#+,+0)#%P#QR<#/(.#+?)(#-0,-O#S S#+%#,(*)&+#/#()T#E)+T%&O#<#,(#P&%(+#%P#+?)#
%+?)&#()+T%&O*##
UM# V#
#
M#W*)#.&/>G/(.G.&%X#+%#7%@)#Y%'&#Z[Q\Q1D6]CC3BQE\1Q^#_$B<;`Z#P'(-+,%(#%(+%#+?)#
>&))(#0,()#,(#E)+T%&O#<4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
L#B%(()-+#+?)#-%(+/-+*#M,+?#+?)#-%(*+/(+*#/(.#>0%N/0#/(.#0%-/0#+/>*#?)&)#/*#*?%M(4##
#
L#B?/(>)#+?)#-%(()-+,%(#%O#%'+P'+#+/>#QB%(@)R%&D7%+%&D/'+%7/+,-D7%.)Q#,(#E)+M%&S#:#+%#
TGUFT#VB%(@)R%%+%&#GW<#@/&,/N0)#*P)).X#*%#+?/+#+?)#-%(@)R%%+%&#,*#-%(+&%00).#+/S,(>#
+?)#/(/0%>#*P)).#*)++,(>#,(+%#-%(*,.)&/+,%(4##
VL#GUFX#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GA;;#8(/0%>#H/0')*DD6IG<A;;D1<A;J4.%-K#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
L06M68
N7ON5956
P#Q%#*/@)#R%'&#S&%T)-+U#*)0)-+#+?)#
#V'++%(#,(#+?)#7)('4#Q%#-%7S,0)#/00#V0%-W*U#
-0,-W#+?)#XY&%>&/7#V0%-W*X#Z%0.)&#/(.#*)0)-+#+?)# #,-%(#Z%&#-%7S,0,(>#,(#+?)#7)('4##
[P#
#P#Y&%>&/7#V0%-W*#P# \#
P#Q?)#X](Z%XU#XA%7S,0)X#/&)/#*?%^*#^?,-?#V0%-W*#^)&)#*'--)**Z'00R#-%7S,0).4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6ABCBDC;E:FG;;#8(/0%>#H/0')*CC6IF<G;;C1<G;J4.%-K#
:=#
#
#
#
012456787891
557
456
27787976!65"!!#
Q#8R+)&#*'--)**R'0#-%7S,0/+,%(T#+?)#-%7S0)+)#-%(+&%00)&#U,+?#+?)#-&)/+).#S&%>&/7#,(-0'.,(>#
+?)#?/&.U/&)#-%(R,>'&/+,%(#-/(T#/*#.)*-&,V).#,(#+?)#S&)@,%'*#7%.'0)*T#V)#.%U(0%/.).4#
WQ# X#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6AG<H;;D1<H;J4.%-K#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
LM875N5956 OPQ
R#S?)#.)*,&).#T0%-U#7'*+#T)#%V)(#W%%(,+%&,(>#+?)#.%X(0%/.).#V&%>&/74#S?)#7%(,+%&,(>#
-/(#(%X#T)#/-+,@/+).Y.)/-+,@/+).#TZ#-0,-U,(>#+?)## #,-%(4##
[R#\/,(#]^_<`#R# a#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;A4.%-K#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
M#N?)#OPQNQ1D6RCC3BQEN1QSO#T$B<;U#V'(-+,%(#-/00).#,(#+?)#OP/,(#TQW<UO#%&>/(,X/+,%(#
Y0%-Z#-/(#Y)#*)0)-+).#.,&)-+0[#V%&#OQ\)(#/(.#7%(,+%&O#/V+)&#&,>?+G-0,-Z,(>#/(.#+?)#\&%>&/7#
-%.)#,(#+?)#V'(-+,%(#-/(#+?'*#Y)#7%(,+%&).4##
]M#OPQNQ1D6RCC3BQEN1QSO#T$B<;U#M#Q\)(#/(.#7%(,+%&^#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;F:GH;;#8(/0%>#I/0')*DD6JG<H;;D1<H;K4.%-L#
:A#
#
#
#
012456787891
557
456
27787976!65"!!#
LM5N7ONP5Q
R#8*#+?)#S,(/0#*+)TU#V)#V/(+#+%#/&-?,@)#+?)#-%7T0)+)#T&%W)-+4#6)0)-+#+?)#R#X8&-?,@)#444X#
-%77/(.#,(#+?)#R#XY&%W)-+X#7)('4#6)0)-+#/#S%0.)&#V?)&)#Z%'#V/(+#+%#/&-?,@)#Z%'&#T&%W)-+#
/(.#*/@)#,+#V,+?#+?)#S,0)#+ZT)#[\]8#Y%&+/0#T&%W)-+#/&-?,@)[4##
^R#Y&%W)-+#R#8&-?,@)#R#\]8#Y%&+/0#T&%W)-+#/&-?,@)#R#;A:F_``abcdefgahdeijklmnR#
6/@)o#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
A;#
#
#
#
012456787891
557
456
27787976!65"!!#
L1MN7O
B%7P0)+).#
E%4# 3)*-&,P+,%(#
#
<# B%7P,0,(>#*'--)**Q'0#/(.#R,+?%'+#)&&%)**/>)#
#
:# 3%R(0%/.#*'--)**Q'0#/(.#R,+?%'+#)&&%)**/>)#
6R,+-?#%(#*+/+,%(#SFT;#U#<V#
#
BW0,(.)&#&)+&/-+).#X#$)).Y/-Z#/-+,@/+).#SF[<#U#<V#
C\C19CEB]#^$$#SF8<#U#<V#(%+#/-+,@/+).#
8_`^\8`aB#7%.)#SF6;#U#<V#
b'*?Y'++%(#/'+%7/+,-#*+%P#(%+#/-+'/+).#SF6:#U#<V#
A# [&,)Q0W#P&)**#+?)#/'+%7/+,-#*+/&+#P'*?Y'++%(#SF6<#U#<V#
6)(*%&#P/&+#/+#*0,.)#/-+,@/+).#SF[c#U#<V#
+?)(#B%(@)W%%+%&#\<#@/&,/Y0)#*P)).#SFdA#U#<V#
*R,+-?)*#%(#/(.#*+/W*#%(4#
`?)#*P)).#-%&&)*P%(.*#+%#+?)#*P)).#*)+P%,(+#,(#+?)#&/(>)#eXF#
G;#&P7#
(*%&#P/&+#/+#)(.#%Q#-%(@)W%&#/-+,@/+).#SF[I#U#<V#f#FdA#U#;# #
c# S6)
/Q+)&#:#*)-%(.*V#
,)Q0W#P&)**#+?)#/'+%7/+,-#*+%P#P'*?Y'++%(#SF6:#U#;V#f#FdA#U# #
G# [&
;#
#
=# 8-+,@/+)#C\C19CEB]#^$$#SF8<#U#;V#f#FdA#U#;#
#
I# \/('/0#7%.)#SF6;#U#;V#f#FdA#U#;#
#
J# 6R,+-?#%QQ#*+/+,%(#SFT;#U#;V#f#FdA#U#;#
#
g# BW0,(.)&#(%+#&)+&/-+).#SF[<#U#;V#f#FdA#U#;#
#
<;# b&%h)-+#*'--)**Q'00W#/&-?,@).#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
A<#
#
#
#
012456787891
557
456
27787976!65"!!#
L2M57N
LO46NPQ2M57N#
R(#+?,*#)K)&-,*)#/#STUVU1D6WCC3TUERVU1RE9S#X$B<<Y#Z'(-+,%(#[,00#\)#-&)/+).#
/..,+,%(/00]4#
V?)#/-+'/0#@/0')#[,00#\)#7/.)#/@/,0/\0)#+%#F^J#_*)(*%&#/-+'/0#@/0')#*`)).#%Z#+?)#7%+%&#abF<;H#
-%&&)*`%(.*#+%#abF#G;#&`7c#/*#/(#/(/0%>#@/0')#/(.#d')&,).#/+#/(#,(`'+#%Z#+?)#
STUVU1D6WCC3TUERVU1RE9S#X$B<<Y#Z'(-+,%(4#V?)#./+/#+]`)#,*#<=F\,+#,(+)>)&#_R(+4c4#
V?,*#/-+'/0#*`)).#@/0')#[,00#Z,&*+#\)#(%&7/0,e).#+%#+?)#&/(>)#abF#<#/*#A:F\,+#Z0%/+,(>F`%,(+#
('7\)&#_1)/0c#,(#+?)#Z'(-+,%(4#
V?)#(%&7/0,e).#/-+'/0#*`)).#@/0')#[,00#+?)(#\)#*-/0).#+%#&)@%0'+,%(*#`),('+)#_&/(>)f#abF#G;#
&`7c#/*#A:F\,+#Z0%/+,(>F`%,(+#('7\)&#_1)/0c#/(.#7/.)#/@/,0/\0)#/+#/(#%'+`'+4#
V?)#Z%00%[,(>#g#0,7,+#@/0')*#-/(#\)#*`)-,Z,).#/*#A:F\,+#Z0%/+,(>F`%,(+#('7\)&*#_1)/0c#/+#+?)#
\0%-h#,(`'+*#,(#%&.)&#+%#7%(,+%&#+?)7#,(#+?)#Z'(-+,%(f#
6`)).#i#T%+%&D*`)).D7%(,+%&,(>D)&&%&D7/K#
6`)).#i#T%+%&D*`)).D7%(,+%&,(>D[/&(,(>D7/K#
6`)).#j#T%+%&D*`)).D7%(,+%&,(>D[/&(,(>D7,(#
6`)).#j#T%+%&D*`)).D7%(,+%&,(>D)&&%&D7,(#
#
RZ#/#0,7,+#@/0')#,*#)K-)).).#%&#Z/00)(#\)0%[k#+?)#@/0')#V1lC#_<c#,*#/**,>().#+%#+?)#
-%&&)*`%(.,(>#%'+`'+#\,+4#
#
RZ#/#Z/'0+#,*#`&)*)(+k#+?)#`&%+)-+,@)#+&,``,(>#%Z#+?)#STUVU1D8lVUS#X$^<Y#Z'(-+,%(#\0%-h#[,00#\)#
+&,``).4#
#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
A:#
#
#
#
012456787891
557
456
27787976!65"!!#
O)&)#P%'#*))#+?)#+)-?(%0%>P#.,/>&/7#Q%&#+?)#+/*R4#
#
$,>'&)#AS#T)-?(%0%>P#.,/>&/7#
$,>'&)#US#B%(+&%0#V/()0#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
AA#
#
#
#
012456787891
557
456
27787976!65"!!#
MNOP587Q
R?)#S%00%T,(>#*,>(/0*#/&)#&)U',&).#/*#>0%V/0#%W)&/(.*#S%&#+?,*#+/*X4#
4"Y 87P75 !
878
\#;4;# ]^^_# G8<# 1)+'&(#*,>(/0#)7)&>)(-`#*+%W#^a#
\#;4<# ]^^_# Ga;# b/,(#*T,+-?#c^Fc#
\#;4:# ]^^_# G6;# b%.)#*)0)-+%/('/0#d;ef#/'+%7/+,-#d<e#
\#;4A#
\#;4B#
\#;4H#
\#<4;#
\#<4A#
\i=B#
]^^_#
]^^_#
]^^_#
]^^_#
]^^_#
]^^_#
#
G6<#
G6:#
G]<#
G]B#
G]J#
G]K#
[ 4"Y 87P75
k#;4:# ]^^_# GkA#
ki#=B# ]^^_# Gl<#
Z1Z[
FC#
F^#
b/('/0#g#;#
8'+%#g#<#
h'*?V'++%(#/'+%7/+,-#*+/&+#
F^#
h'*?V'++%(#/'+%7/+,-#*+%W#
FC#
6)(*%&#-`0,(.)&#GbB#&)+&/-+).#
F^#
6)(*%&#W/&+#/+#*0,.)#
F^#
6)(*%&#W/&+#/+#)(.#%S#-%(@)`%&#
F^#
6)(*%&#/-+'/0#@/0')#*W)).#%S#+?)#7%+%&#jfG<;I#
#
-%&&)*W%(.*#+%#jfG#H;#&W7#
!
878
C%(@)`%%+%&#Gb<#@/&,/V0)#*W)).#
b/(,W'0/+).#@/0')#*W)).#%S#+?)#7%+%&#,(#:#
.,&)-+,%(*#jfG#<;I#-%&&)*W%(.*#+%#jfG#H;#&W7#
m
nopoqrmstumuosouoqvomwxyzm
#
3\# 3,>,+/0#\(W'+#
m
m 8\# 8(/0%>#\(W'+#
m \# \(W'+#
m FC# F%&7/00`#C0%*).##
m
# F^# F%&7/00`#^W)(##
#
#
3^# 3,>,+/0#^'+W'+#
8^# 8(/0%>#^'+W'+#
k# ^'+W'+#
MN{688789
h0/(#+?)#,7W0)7)(+/+,%(#%S#+?)#+/*X#%(#`%'&#%T(4#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6CDEDFE;A:GH;;#8(/0%>#I/0')*EE6JG<H;;E1<H;K4.%-L#
AB#
#
#
#
012456787891
557
456
27787976!65"!!#
C%7S0)+).#
F%4# 3)*-&,S+,%(#
#
<# C%7S,0,(>#*'--)**T'0#/(.#U,+?%'+#)&&%)**/>)#
#
:# 3%U(0%/.#*'--)**T'0#/(.#U,+?%'+#)&&%)**/>)#
6U,+-?#%(#*+/+,%(#VGW;#X#<Y#
#
CZ0,(.)&#&)+&/-+).#[#$)).\/-]#/-+,@/+).#VG^<#X#<Y#
D_D19DFC`#a$$#VG8<#X#<Y#(%+#/-+,@/+).#
8bca_8cdC#7%.)#VG6;#X#<Y#
e'*?\'++%(#/'+%7/+,-#*+%S#(%+#/-+'/+).#VG6:#X#<Y#
A# ^&,)T0Z#S&)**#+?)#/'+%7/+,-#*+/&+#S'*?\'++%(#VG6<#X#<Y#
6)(*%&#S/&+#/+#*0,.)#/-+,@/+).#VG^f#X#<Y#
+?)(#C%(@)Z%%+%&#G_<#@/&,/\0)#*S)).#VGgA#X#<Y#
*U,+-?)*#%(#/(.#*+/Z*#%(4#
c?)#*S)).#-%&&)*S%(.*#+%#+?)#*S)).#*)+S%,(+#,(#+?)#&/(>)#h[G#
B;#&S7#
(*%&#S/&+#/+#)(.#%T#-%(@)Z%&#/-+,@/+).#VG^I#X#<Y#i#GgA#X#;# #
f# V6)
/T+)&#:#*)-%(.*Y#
,)T0Z#S&)**#+?)#/'+%7/+,-#*+%S#S'*?\'++%(#VG6:#X#;Y#i#GgA#X# #
B# ^&
;#
#
=# 8-+,@/+)#D_D19DFC`#a$$#VG8<#X#;Y#i#GgA#X#;#
#
I# _/('/0#7%.)#VG6;#X#;Y#i#GgA#X#;#
#
J# 6U,+-?#%TT#*+/+,%(#VGW;#X#;Y#i#GgA#X#;#
#
j# CZ0,(.)&#(%+#&)+&/-+).#VG^<#X#;Y#i#GgA#X#;#
<;# 6S)).#k#_%+%&E*S)).E7%(,+%&,(>E)&&%&E7/K#i#GgA#X#;# #
<<# 6S)).#l#_%+%&E*S)).E7%(,+%&,(>E)&&%&E7,(#i#GgA#X#;# #
#
<:# e&%m)-+#*'--)**T'00Z#/&-?,@).#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6CDEDFE;A:GB;;#8(/0%>#H/0')*EE6IG<B;;E1<B;J4.%-K#
AB#
#
#
#
012456787891
557
456
27787976!65"!!#
N%'#-/(#O,(.#/..,+,%(/0#,(O%&7/+,%(#/*#/(#%&,)(+/+,%(#/,.#O%&#,(,+,/0#/(.#/.@/(-).#+&/,(,(>P#O%&#
)K/7Q0)R#9)++,(>#6+/&+).P#@,.)%*P#+'+%&,/0*P#/QQ*P#7/('/0*P#Q&%>&/77,(>#>',.)0,()*#/(.#+&,/0#
*%O+S/&)TO,&7S/&)P#/+#+?)#O%00%S,(>#0,(UR###
#
SSS4*,)7)(*4-%7T*-)T*IF<G;;#
#
$%&#'(&)*+&,-+).#'*)#,(#).'-/+,%(/0#/(.#123#,(*+,+'+,%(*4#5#6,)7)(*#89#:;<=4#800#1,>?+*#1)*)&@).4#
6BCDCED;A:FG;;#8(/0%>#H/0')*DD6IF<G;;D1<G;J4.%-K#
A=#
#
#
#
966574818915*11<62867=98>4
8915?@A
!
"1
2
8
#1
4
6
$
%
1&
8'
1
(7
-./0123454560.72248797:;0
)1286!# !*+%,
01245267829
864769564
8915
595789848915796657
98767626
012456787891
557
456
2778797665! "
"
"
1878
5678789
#$%"%(=+$'./"5+(6(')"5@A",$'*+'&(-"*%.+'+'=e"`/(.)(",$'*.,*"b$&%"%(=+$'./"5@A",$'*.,*"
)+(6(')3,$6d),(d,$'*.,*"
"
"
778678Q5
6785965789012
)+(6(')3,$6d),("
"
"
8Q5
6785965789
P
f>("5@A"*%.+'+'=",&%%+,&/&6"c$%"*>("+'*(=%.*(-".&*$6.*+$'")$/&*+$'"f$*.//b"g'*(=%.*(-"7&*$6.*+$'"hfg7i"
a.)"`%(`.%(-"c$%"*>("`%$=%.6"j5+(6(')"7&*$6.*+$'"@$$`(%.*()"a+*>"A-&,.*+$'"h5@Aij")`(,+c+,.//b"c$%"
*%.+'+'="`&%`$)()"c$%"`&F/+,"(-&,.*+$'./".'-"012"+')*+*&*+$')3"5+(6(')"78"-$()"'$*"=&.%.'*(("*>("
,$'*('*)3"
"
f>+)"-$,&6('*"+)"*$"F("&)(-"$'/b"c$%"+'+*+./"*%.+'+'="$'"5+(6(')"`%$-&,*)d)b)*(6)3"f>+)"6(.')"+*",.'"F("
,$`+(-"+'"a>$/("$%"`.%*".'-"=+?('"*$"*>$)("F(+'="*%.+'(-"c$%"&)("a+*>+'"*>("),$`("$c"*>(+%"*%.+'+'=3"
@+%,&/.*+$'"$%",$`b+'="*>+)"*%.+'+'=",&%%+,&/&6".'-")>.%+'="+*)",$'*('*"+)"`(%6+**(-"a+*>+'"`&F/+,"*%.+'+'="
.'-".-?.',(-"*%.+'+'="c.,+/+*+()"c$%"*%.+'+'="`&%`$)()3""
"
AL,(`*+$')" %(k&+%(" a%+**('" ,$')('*" c%$6" *>(" 5+(6(')" 78" ,$'*.,*Y" 0$/.'-" 5,>(&(%(%"
%$/.'-3),>(&(%(%l)+(6(')3,$63"
"
Xcc('-(%)"a+//"F(">(/-"/+.F/(3"7//"%+=>*)"+',/&-+'="*%.')/.*+$'".%("%()(%?(-e"`.%*+,&/.%/b"+c"."`.*('*"+)"=%.'*(-"
$%"."&*+/+*b"6$-(/"$%"-()+='"+)"%(=+)*(%(-3"
"
m)("c$%"+'-&)*%+./",&)*$6(%",$&%)()"+)"(L`%())/b"`%$>+F+*(-3"n("-$"'$*",$')('*"*$",$66(%,+./"&)("$c"*>("
*%.+'+'=",&%%+,&/&6)3"
"
n("a+)>"*$"*>.'H"*>("fm"2%()-('e"()`(,+.//b"_%$c3"2%3Eg'=3"o($'"m%F.)"&'-"2+`/3Eg'=3"7''(**"_c(cc(%e"*>("
p+,>.(/"2q+.//.)"A'=+'((%+'="@$%`$%.*+$'".'-".//"$*>(%"+'?$/?(-"`(%)$')"c$%"*>(+%")&``$%*"-&%+'="*>("
`%(`.%.*+$'"$c"*>+)"*%.+'+'=",&%%+,&/&63"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
9""
""
012456787891
557
456
2778797665! "
M.F/("$N",$'*('*)"
;O 8$./"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO
9O Q%(%(R&+)+*("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO
@O M>($%S"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO
@3;O 2.*."F/$,H)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"PO
@39O 2.*."*ST()"$N"*>("5UV7MUA"5IE;J::"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"JO
@3@O WT*+6+X(-"F/$,H)"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"<O
@3PO 2$Y'/$.-"Y+*>$&*"%(+'+*+./+X.*+$'"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"<O
PO M.)H"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"IO
JO Q/.''+'="333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"IO
J3;O 8/$F./"-.*."F/$,H"N$%")T((-",$'*%$/".'-")T((-"6$'+*$%+'="$N"*>("6$*$%"33333333333333333333333333333333333333"IO
J39O M(,>'$/$=S"-+.=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"KO
J3@O 0(N(%(',("/+)*"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"ZO
<O 5*%&,*&%(-")*(TEFSE)*(T"+')*%&,*+$')"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";:O
<3;O 0(*%+(?(".'"(L+)*+'="T%$[(,*"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333";:O
<39O A%(.*("*>("=/$F./"-.*."F/$,H"\5QBB2CVWMW0\"333333333333333333333333333333333333333333333333333333333333333333333333";9O
<3@O 7,,())"*$"-.*."$N"*>("-.*."F/$,H"+'"*>("$%=.'+X.*+$'"F/)$,H"3333333333333333333333333333333333333333333333333333333";IO
<3PO 5.?(".'-",$6T+/("*>("T%$=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9;O
<3JO 2$Y'/$.-"*>("T%$=%.6"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"99O
<3<O V$'+*$%]6$-+NS"?./&()"+'"-.*."F/$,H)"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9@O
<3IO U'+*+./+X(")(*T$+'*)]%()(*")*.%*"?./&()"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9PO
<3KO 5'.T)>$*)"+'"-.*."F/$,H)"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"9<O
<3ZO BLT.'-"-.*."F/$,H".'-"-$Y'/$.-"+*"Y+*>$&*"%(+'+*+./+X.*+$'"33333333333333333333333333333333333333333333333333333333"@:O
<3;:O 7%,>+?("*>("T%$[(,*"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@PO
IO A>(,H/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@JO
KO BL(%,+)("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@<O
K3;O M.)H"^"BL(%,+)("33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@<O
K39O M(,>'$/$=S"-+.=%.6"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@<O
K3@O 0(N(%(',("/+)*"333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@IO
K3PO Q/.''+'="33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@IO
K3JO A>(,H/+)*"^"BL(%,+)("3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@KO
ZO 7--+*+$'./"+'N$%6.*+$'"3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333"@ZO
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
@""
""
012456787891
557
456
2778797665! "
NOPQO4QOP1R0PS4T2
0410UV
N6
W'"*>+)",>.X*(%Y"Z$&"[+//"G(,$6(".,\&.+'*(-"[+*>"*>("&)("$]"=/$G./"-.*."G/$,I)"]$%"*>("5W^7_WA"
5JF;K::"[+*>"*>("_W7"`$%*./"X%$=%.66+'="*$$/3""
_>("6$-&/("(MX/.+')"*>(")*%&,*&%(".'-",%(.*+$'"$]".'-".,,())"*$"=/$G./"-.*."G/$,I)"]$%"*>("
5W^7_WA"5JF;K::3"W*"./)$")>$[)"*>(")*(X)"]$%",%(.*+'="."=/$G./"-.*."G/$,I"+'"*>("_W7"`$%*./"
.'-"]$%".,,())+'="*>+)"-.*."+'"*>("X%$=%.6"[+*>"%(.-".'-"[%+*(".,,())3"
55a
7b7
_>+)",>.X*(%"G&+/-)"$'"*>(",>.X*(%"7'./$="c./&()"[+*>"*>("5W^7_WA"5J"A`d;K;<#FE"`De2`3"
f$&",.'"&)("*>("]$//$[+'="X%$g(,*"]$%"*>+)",>.X*(%Y"]$%"(M.6X/(h"i5ABCBDC:E9F
jkklmnopqrlsoptuvlwxjkyz{o|x}~z"
45!
66b
W'",$'*%.)*"*$"/$=+,"G/$,I)Y"-.*."G/$,I)",$'*.+'"'$"+')*%&,*+$')3"0.*>(%Y"*>(Z")(%?(".)"6(6$%Z"
]$%"&)(%"-.*.3"
2.*."G/$,I)"*>&)",$'*.+'"?.%+.G/("-.*."*>.*"+)"&)(-"GZ"*>("&)(%"X%$=%.63"f$&",.'"-(]+'("*>("
)*%&,*&%("$]"=/$G./"-.*."G/$,I)".)"%(\&+%(-3""
8/$G./"-.*."G/$,I)")*$%("-.*."*>.*",.'"G("&)(-"")(("#+=&%(";3"'/Z"*>("
.))$,+.*(-"]&',*+$'"G/$,I")>$&/-".,,())"+')*.',("-.*."G/$,I)3"_>("6.M+6&6")+("$]"-.*."
G/$,I)"?.%+()"-(X('-+'="$'"*>("&*+/+(-"A`d3""
#&',*+$'C;:
#&',*+$'C;;
#&',*+$'C"
G/$,IC;9
8/$G./"2H"
2HC8/$G./ 7,,())"]$%".//"G/$,I)"
W')*.',("2H" 7,,())"$'/Z"]$%""
2HCW')*.',( #&',*+$'C-.*.CG/$,IC;9
#+=&%(";h"2+]](%(',("G(*[(('"=/$G./"2H".'-"+')*.',("2H3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
"
@""
""
012456787891
557
456
2778797665! "
^66!_Q`a0410bc
Y>("5de7YdA"5JF;@::">.)"6.'T"-+NN(%('*"-.*."*TM()"N$%"%(M%()('*+'="-+NN(%('*"'&6(%+,./"
N$%6.*)3"7"/+)*"$N")$6("$N"*>("(/(6('*.%T"-.*."*TM()"+)"=+?('"G(/$W3"
"
66!_07fgO7Qhi689
2j6
_`8Q6885!
H$$/" ;"
:"*$";"
Y0]Bk"#7l5Bk"Zk";"
HT*(" K"
;<m::"*$";<m##"
;<m;9k";<m7H"
V$%-" ;<"
;<m::::"*$";<m####"
;<m7HA2k";<m:::;"
2V$%-" E9"
;<m::::::::"*$";<m########" ;<m:9n<K7AB"
A>.%" K"
;<m::"*$";<m##"
opoqrstuqrsvu"
5+'*" K"
F;9K"*$";9J"
;9EkF;9E"
d'*"
;<"
FE9kJ<K"*$"E9kJ<J"
;9Ek"F;9E"
2+'*" E9"
F9k;nJknKEk<nK"*$"9k;nJknKEk<nJ" ;9Ek"F;9E"
]5d'*" K"
:"*$"9@@"
;9E"
]/'*" ;<"
:"*$"<@k@E@"
;9E"
]2d'*" E9"
:"*$"nk9wnkw<Jk9w@"
;9E"
F
E
K
E
K
0(./" E9"
x\F;3;K"L";:" "*$"x\FE3n:"L";:"" ;9E3n@<k"FE3nk";39Bx;9""
E3nBFE"
l0(./" <n"
x\F939E"L";:"FE:K"*$"x\F;3Jw"L";:"E:K";9En@3;9En@<JKw""
F;39Bxn:"
Y+6(" E9"
YmF9n-C9:>CE;"6C9E)C<nK6)"*$"Ym@6CE:)""
mF9-"
Ym9n-C9:>CE;"6C9E)C<nJ6)"" @Ym
5.?(-".)R"F9k;nJknKEk<nK"6)"*$" ;-C9>C;@6CE:LCn@6)"
x9k;nJknKEk<nJ"6)"
5*%+'=" y.%+.G/(" :"*$"9@n",>.%.,*(%)"+'"GT*(")+z(" {7HA{"
7%%.T" "
V+*>".%%.T)k"-.*."$N"."&'+N$%6"-.*.""
*TM("+)".%%.'=(-"$'(".N*(%"*>("$*>(%"
.'-".--%())(-",$')(,&*+?(/T"+'"*>("
.--%())".%(.3"Y>("M%$M(%*+()"$N"
(.,>".%%.T"(/(6('*".%("+-('*+,./"
.'-".%(",$'N+=&%(-"+'"*>(".%%.T"*.=3""
5*%&,*" "
Y>("5Y0]AY"-.*."*TM("%(M%()('*)""
."-.*.")*%&,*&%("*>.*",$')+)*)"$N"."
N+L(-"'&6G(%"$N",$6M$'('*)"$N"
-+NN(%('*"-.*."*TM()3"A$6M$'('*)"$N"
5Y0]AY"$%"7007|"-.*."*TM(",.'"
./)$"G("'()*(-"+'".")*%&,*&%(3""
}"
"
#$%"$*>(%"-.*."*TM()k"%(N(%"*$"*>(" "
$'/+'(">(/M3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;@::C0;@:K3-$,L"
@""
""
012456787891
557
456
2778797665! "
5IE;J::",$'*%$//(%)">.?("$T*+6+U(-"-.*.")*$%.=(3"V'"$T*+6+U(-"F/$,H)".//"*.=)".%("
.&*$6.*+,.//W")$%*(-"F.)(-"$'"*>(+%"-.*."*WT(3"X>(")$%*+'="(')&%()"*>.*"-.*."=.T)"F(*Y(('"*>("
*.=)".%("6+'+6+U(-".'-"*>("*.=)".%(")*$%(-"+'"."6.''(%"*>.*"$T*+6+U()"*>(+%".,,())"FW"*>("
,$'*%$//(%3"
Z"X>("*.=)".%("./Y.W)".,,())(-".)"[.)*".)"T$))+F/("F(,.&)("*>("[+/(")*$%.=("FW"*>("
)W)*(6"+)"$T*+6+U(-".'-"+)"+'-(T('-('*"$["*>("-(,/.%.*+$'3"
Z"X>(%("+)"'$"-.'=(%"$["+',$')+)*(',+()"-&("*$"+',$%%(,*\".F)$/&*(".,,())()"F(,.&)("
)W6F$/+,".,,())"+)"=('(%.//W"&)(-3"
Z"2(,/.%.*+$'",>.'=()"-$"'$*"%()&/*"+'".,,())"(%%$%)"F(,.&)(".,,())()"FW"T%$,())"
?+)&./+U.*+$'")W)*(6)\"[$%"(L.6T/(\"$,,&%")W6F$/+,.//W3"
Z"V'-+?+-&./"*.=)",.'"F(")(/(,*+?(/W"-([+'(-".)"%(*('*+?(3"
Z"C$")(**+'=)".%("'((-(-"$%"T$))+F/("+'"*>("+')*.',("-.*."F/$,H3"A?(%W*>+'="Y+//"F(")(*"+'"
*>(".))+='(-"#G"](3=3\"%(*('*+?+*W^3"
Z"_(6$%W"%()(%?()"+'"*>("-.*."F/$,H"('.F/(",>.'=()"*$"F("6.-("Y+*>$&*"/$))"$[".,*&./"
?./&()"]-$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'^3"
M`a86a7b
5787767P678
X$"('.F/("*>(")&F)(c&('*"(-+*+'="$["&)(%"T%$=%.6)"*>.*".%("./%(.-W"%&''+'="+'"."@de\"*>("5IE
;J::",$'*%$//(%)")&TT$%*"*>("$T*+$'"$["(LT.'-+'="*>("+'*(%[.,()"$["$T*+6+U(-"[&',*+$'"$%"-.*."
F/$,H)"-&%+'="$T(%.*+$'3"f$&",.'"-$Y'/$.-"*>("6$-+[+(-"F/$,H)"Y+*>$&*")Y+*,>+'="*>("
,$'*%$//(%"*$"5Xgd"6$-(".'-"Y+*>$&*".[[(,*+'="*>(".,*&./"?./&()"$["T%(?+$&)/W"-$Y'/$.-(-"
*.=)3"
#+=&%("9h"2$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'"
"
X>("[$//$Y+'=")*(T)",.'"F("T(%[$%6(-"Y>+/("*>(",$'*%$//(%"+)"+'"0eC"6$-(h"
;3"7,*+?.*("i2$Y'/$.-"Y+*>$&*"%(+'+*+./+U.*+$'i"
93"V')(%*"'(Y/W"-([+'(-"*.=)"+'".'"(L+)*+'="F/$,H"
D3"2$Y'/$.-"(LT.'-(-"F/$,H"*$"*>(",$'*%$//(%"
X>("'(Y/W"-([+'(-"*.=)".%("+'+*+./+U(-3"X>("(L+)*+'="*.=)"%(*.+'"*>(+%",&%%('*"?./&(3"
d%(%(c&+)+*(h"."6(6$%W"%()(%?("6&)*">.?("F(('"-([+'(-"[$%"*>("F/$,H"F([$%(>.'-".'-"*>("
F/$,H"Y+*>"*>+)"6(6$%W"%()(%?("6&)*">.?("-$Y'/$.-(-"*$"*>("@de3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
<""
""
012456787891
557
456
2778797665! "
M46NO
P'"*>+)",>.Q*(%R"*>("Q%$=%.6"S%$6",>.Q*(%"T5ABCBDC:E9FUVVWXYZ[\]W^Z[_`abWcd[[We`W`fgZYh`hW
*$"+',/&-("."-.*."G/$,I"*>.*",('*%.//i"Q%$?+-()"*>("Q.%.6(*(%)"S$%"*>("*j$"S&',*+$')"
Tklmlnopqrrstlumnlvb"w#A;:x".'-"TklmlnoWpqrrskluymlnyuzb"w#A;;x3"
{688789
|>("-.*."6.'.=(6('*".'-")(*Q$+'*")(**+'="S$%"*>("T}~|~0C5BB2A~D|0~T"w#A;:x".'-"
T}~|~0C5BB2}~DP|~0PD8T"w#A;;x"S&',*+$')"j+//"G(",.%%+(-"$&*"&)+'="*>("=/$G./"-.*."
G/$,I"T5BB2C}~|~0T"w2H9x3"
|>+)"j+//"G(".--(-"*$"*>("T:E9FJ::C7'./$=C./&()T"Q%$(,*3"|>+)"Q%$(,*"6&)*"G("%(*%+(?(-"
S%$6"*>(".%,>+?("G(S$%(>.'-3"
P'"*>("T}.+'T"w~H;x"$%=.'+.*+$'"G/$,IR"*>("*j$"S&',*+$')"T}~|~0C5BB2A~D|0~T"w#A;:x"
.'-"T}~|~0C5BB2}~DP|~0PD8T"w#A;;x"6&)*"*>('"G(",$''(,*(-"j+*>"*>("*.=)"S%$6"
=/$G./"-.*."G/$,I"T5BB2C}~|~0T"w2H9x3"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5@F;J::C0;J:K3-$,L"
@""
""
012456787891
557
456
2778797665! "
P(%("Q$&")(("*>("*(,>'$/$=Q"-+.=%.6"R$%"*>("*.)I3"
"
#+=&%("ES"T(,>'$/$=Q"-+.=%.6"
#+=&%("US"A$'*%$/"V.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:@3-$,L"
@""
""
012456787891
557
456
2778797665! "
NOPQ587R
S>("T$//$U+'=")+='./)".%("%(V&+%(-".)"=/$G./"$W(%.'-)"T$%"*>+)"*.)I3"
4!X 87Q75
878
[":3:" H\\]" F7;" 0(*&%'")+='./"(6(%=(',^")*$W"\_"
[":3;" H\\]" F_:" `.+'")U+*,>"a\Da"
[":39" H\\]" F5:" `$-(")(/(,*$%"6.'&./"b:cd".&*$6.*+,"b;c"
[":3E"
[":3g"
[":3K"
[";3:"
[";3E"
[h<g"
H\\]"
H\\]"
H\\]"
H\\]"
H\\]"
H\\]"
"
F5;"
F59"
FH;"
FHg"
FHJ"
FHL"
f&)>G&**$'".&*$6.*+,")*.%*"
f&)>G&**$'".&*$6.*+,")*$W"
5(')$%",^/+'-(%"F`g"%(*%.,*(-"
5(')$%"W.%*".*")/+-("
5(')$%"W.%*".*"('-"$T",$'?(^$%"
5(')$%".,*&./"?./&(")W((-"idF;:j"
,$%%()W$'-)"*$"idF"K:"%W6"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
Y1YZ
DA"
D\"
`.'&./"e":"
7&*$"e";"
D\"
DA"
D\"
D\"
D\"
"
"
"
@""
""
012456787891
557
456
2778797665! "
05
5MNO!MN78M5
78M
P$&",.'"Q+'-"+')*%&,*+$')"$'">$R"*$",.%%S"$&*"T/.''+'="F(/$R3"UQ"S$&"./%(.-S">.?("."=$$-"
&'-(%)*.'-+'="$Q"(?(%S*>+'=V"+*"R+//"F(")&QQ+,+('*"*$"Q$,&)"$'"*>("'&6F(%(-")*(T)3"W*>(%R+)(V"
)+6T/S"Q$//$R"*>("-(*.+/(-")*(T)"+'"*>("+')*%&,*+$')3"
XY57Z68[7M789N5\
]"G(Q$%("R(",.'"(LT.'-"*>("^5@ABACB:D9EJ::B7'./$=B_./&()B0;J:K3`.T;D^"T%$a(,*"
Q%$6",>.T*(%"^5@ABACB:D9EJ::"7'./$="_./&()^V"R("6&)*"%(*%+(?("*>+)"T%$a(,*"Q%$6"*>("
.%,>+?(3"b$"%(*%+(?(".'"(L+)*+'="T%$a(,*"*>.*">.)"F(('".%,>+?(-V"S$&"6&)*")(/(,*"*>("
%(/(?.'*".%,>+?("R+*>"]"c%$a(,*"]"0(*%+(?("+'"*>("T%$a(,*"?+(R3"@$'Q+%6"S$&%")(/(,*+$'"
R+*>"WT('3""
d]"c%$a(,*"]"0(*%+(?("]"5(/(,*"."3`.T".%,>+?("]"WT('e"
"
"
]"b>("'(L*")*(T"+)"*$")(/(,*"*>("*.%=(*"-+%(,*$%S"R>(%("*>("%(*%+(?(-"T%$a(,*"R+//"F(")*$%(-3"
@$'Q+%6"S$&%")(/(,*+$'"R+*>"^Wf^3""
d]"b.%=(*"-+%(,*$%S"]"Wfe"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
;:""
""
012456787891
557
456
2778797665! "
M"5.?("*>("$N('(-"N%$O(,*"&'-(%"*>("'.6(":D9E<::B8/$F./B2.*.BG/$,H)3""
PM"Q%$O(,*"M"RSTUVSWVXVM":D9E<::B8/$F./B2.*.BG/$,H)"M"5.?(Y"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
;;""
""
012456787891
557
456
2778797665! "
U"5(/(,*"*>("VW%$=%.6"F/$,H)V"X$/-(%"$X"Y$&%"@WZ";J;<#ED"WC[2W".'-"*>('",/+,H"\7--"'(]"
F/$,H\"*$",%(.*("."'(]"=/$F./"-.*."F/$,H"*>(%(3"
^U"@WZB;J;<#"_@WZ";J;<#ED"WC[2W`"U"7--"'(]"F/$,Ha""
"
U"5(/(,*" "+'"*>("'(L*"-+./$=".'-"%('.6("Y$&%"'(]"F/$,H"*$b"\5WAA2Bcded0\3"5(/(,*"
V8/$F./"2GV".)"*>("*Yf(3"e>("'&6F(%"V9V"]+//"F(".&*$6.*+,.//Y".))+='(-3"5(/(,*"*>("\7--"
'(]".'-"$f('\",>(,H"F$L3"@/+,H"\dg\3""
^U U"C.6(b"5WAA2Bcded0"U"eYf(b"8/$F./"2G"U""7--"'(]".'-"$f('"U"dga"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
;9""
""
012456787891
557
456
2778797665! "
M"N>("O5PBB2CQRNR0O"-.*."F/$,H"+)".&*$6.*+,.//S"-+)T/.S(-3"5*.%*"FS",%(.*+'="*>("
U5T((-C5(*T$+'*U".'-"U5T((-C7,*&./CV./&(U"*.=)")>$W'">(%("W+*>"*>(+%".))$,+.*(-"
,$66('*)3"5(/(,*"U0(./U".)"*>("-.*."*ST(3"7/)$")(*".")*.%*"?./&("$X";:3:"%T6"X$%"*>("
U5T((-C5(*T$+'*U3""
YM"5T((-C5(*T$+'*"M"0(./"M";Z3:"M"5T((-C7,*&./CV./&("M"0(./["
\]^_`abcadefcaghaedcagicajhffcjgaklglagmncdoa
"
M"D(L*"W(",%(.*("."*.=")*%&,*&%("U5*%&,*U")$"+*",.'"F("-&T/+,.*(-"/.*(%3""
YM"5*%&,*["
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
"
"
;@""
""
012456787891
557
456
2778797665! "
N"D.6("*>(")*%&,*&%("OP$)+*+?(C5Q((-O".'-"('*(%".",$66('*3""
RN"P$)+*+?(C5Q((-S"
"
N"A%(.*("*>("*.=)"T$%"*>(")Q((-"6$'+*$%+'="G(/$U"*>(")*%&,*&%(".)")>$U'">(%(3"
VWXYZ[\][^_`][ab[_^][ac][db``]da[efaf[agh]^i[
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
"
"
;@""
""
012456787891
557
456
2778797665! "
M"N>('")(/(,*"*>(")*%&,*&%(".'-",$OP"+*3""
QM"A$OPR"
"
M"S.)*("*>(",$O+(-")*%&,*&%("G(/$T"*>("US$)+*+?(C5O((-U")*%&,*&%(".=.+'3""
QM"S.)*(R"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;@::C0;@:K3-$,L"
;@""
""
012456787891
557
456
2778797665! "
M"0('.6("*>("'(N")*%&,*&%("*$"OC(=.*+?(B5P((-O".'-"('*(%".",$66('*3""
QM"C(=.*+?(B5P((-R"
"
2$"'$*"S$%=(*"*$",/+,H"
3"T>("S+'+)>(-"=/$F./"-.*."F/$,H"U5VAA2BWXTX0U"
Y2G9Z"+)")>$N'"F(/$N3"@>(,H"*$"?(%+S["*>.*"0(*.+'"+)")(/(,*(-" ".'-"*>(",$%%()P$'-+'="
)*.%*"?./&("+)"('*(%(-"S$%".//"*.=)3"T>("-.*."N+//"*>&)"F("%(*.+'(-"+'"*>("-.*."F/$,H"(?('"
.S*(%"."P$N(%"S.+/&%("$%"."5TXV\5T70T"$S"*>("@V]3"T>(",>(,H"F$L()"S$%"O7,,())+F/("S%$6"
^W_O" ".'-"O`+)+F/("+'"^W_O" ")>$&/-"./)$".//">.?(".",>(,H"6.%H")$"*>.*".//"*.=)"+'"S&*&%("
(LP.')+$')"$S"*>+)"P%$a(,*"N+//"F(".,,())+F/("F["*>("?+)&./+b.*+$'")[)*(6)"Q^W_R3"c("N+//"
)(/(,*"*>("O5(*P$+'*O",>(,H"F$L""$'/["S$%"*>("-(S.&/*"?./&()"+'"$&%"-.*."F/$,H3""
QM""""R"
defghijklimnliopinlqrostqnisniulnvwsxluipmwqklwixlyozistiqklinqlr{x|{nqlristnqwmvqsotniopiqkli
}oumyl~i
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
"
;<""
""
012456787891
557
456
2778797665! "
"
"
T"2(/(*("*>("*(6V$%.%]"*.=)"+'"X.+'"YUH;Z"*>.*".%("'$"/$'=(%"'((-(-3"U'/]"*>("H$$/(.'"*.="
^X$*$%C5V((-CA$'*%$/C0(*C_./^"+)")*+//"'((-(-3""
`T"2(/(*(a"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5@F;J::C0;J:K3-$,L"
"
;@""
""
012456787891
557
456
2778797665! "
M"N.?("*>("O5PBB2CQRSR0O"T2H9U"-.*."G/$,I".'-"*>("OQ.+'O"TRH;U"$%=.'+V.*+$'"G/$,I"
-+)W/.X(-")+-("GX")+-("GX",/+,I+'="*>("Y Y"+,$'"*$"?(%*+,.//X")W/+*"*>("(-+*$%".%(.3""
ZM" ["
"
M"\)("-%.=F.'-F-%$W"*$"6$?("*>("*.=)"'((-(-"]$%"*>("+'*(%,$''(,*+$'"]%$6"*>("
O5PBB2CQRSR0O"T2H9U"-.*."G/$,I"$'*$"*>(",$''(,*+$')"$]"*>(",.//(-"]&',*+$')".'-"
]&',*+$'"G/$,I)"+'"*>("OQ.+'O"TRH;U"$%=.'+V.*+$'"G/$,I3"#+%)*"^("6$?("*>("
Y5W((-C7,*&./C_./&(Y"*.="$'*$"*>("Y7,*&./C)W((-Y"$&*W&*"$]"*>("
OQRSR0C5PBB2QRD`SR0`D8O"T#A;;U"G/$,I3""
ZM"5W((-C7,*&./C_./&(["
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:@3-$,L"
"
"
;@""
""
012456787891
557
456
2778797665! "
N"7/)$",$''(,*"*>("$*>(%",$'*.,*)"+'"D(*O$%I";"O+*>"*.=)"P%$6"*>("Q5RBB2CSTUT0Q"V2H9W"
-.*."G/$,I".)")>$O'">(%(3""
"
"
N"A$''(,*"*>(",$'*.,*)"+'"D(*O$%I"9"O+*>"*.=)"P%$6"*>("Q5RBB2CSTUT0Q"V2H9W"-.*."G/$,I"
.)")>$O'">(%(3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
;@""
""
012456787891
557
456
2778797665! "
M"@$''(,*"*>(",$'*.,*)"+'"C(*N$%H"D"N+*>"*.=)"O%$6"*>("P5QAA2BRSTS0P"U2G9V"-.*."F/$,H"
.)")>$N'">(%(3""
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
9:""
""
012456787891
557
456
2778797665! "
MN06O68
P7QP5956
R"S$").?("T$&%"U%$V(,*W",/+,H"*>("
"F&**$'"+'"*>("6('&3"S$",$6U+/(".//"F/$,H)W"
,/+,H"*>("XY%$=%.6"F/$,H)X"Z$/-(%".'-")(/(,*"*>(" "+,$'"Z$%",$6U+/+'="+'"*>("6('&3""
[R
"R"Y%$=%.6"F/$,H)"R" \"
R"S>("X]'Z$XW"X@$6U+/(X".%(.")>$^)"^>+,>"F/$,H)"^(%(")&,,())Z&//T",$6U+/(-3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
"
9;""
""
012456787891
557
456
2778797665! "
MNO86PQ5956
R"7S*(%")&,,())S&/",$6T+/.*+$'U"*>(",$6T/(*(",$'*%$//(%"V+*>"*>(",%(.*(-"T%$=%.6"+',/&-+'="
*>(">.%-V.%(",$'S+=&%.*+$'",.'U".)"-(),%+F(-"+'"*>("T%(?+$&)"6$-&/()U"F("-$V'/$.-(-3"
WR" X"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
99""
""
012456787891
557
456
2778797665! "
M875
7N!O6
P7866QRP"
S"T>("-()+%(-"F/$,H"6&)*"F("$U('"V$%"6$'+*$%+'="*>("*.=)"$V"."-$W'/$.-(-"-.*."F/$,H3"T>("
6$'+*$%+'=",.'"*>('"F(".,*+?.*(-X-(.,*+?.*(-"FY",/+,H+'="*>(" "+,$'3""
ZS"5[BB2C\]T]0"^2G9_"S" `"
"
S"a'"*>("b\$'+*$%"?./&(b",$/&6'c"*>("?./&()",&%%('*/Y".?.+/.F/("+'"*>("A[d",.'"F("6$'+*$%(-3""
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
9@""
""
012456787891
557
456
2778797665! "
N"OP"Q$&%"%+=>*F,/+,I"$'"$'("$P"*>("?./&()R"*>("ST$-+PQS"-+./$="P$%"6$-+PQ+'="*>+)"?./&("$U(')"
VN"T$-+PQ"N"T$-+PQ"?./&(W";@3:"N"XYZ"
[\87767]^_78^5^^65`6
^
"
N"a>(")(*U$+'*)",.'"G("+'+*+./+b(-"GQ",/+,I+'="*>("S S"+,$'3"#$%"*>("*.=)"c>$)("S5(*U$+'*S"
,>(,I"G$M"+)")(/(,*(-""R"*>(")*.%*"?./&("c+//"*>('"G(".UU/+(-".)"*>(",&%%('*"?./&(3""
VN Z"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
9@""
""
012456787891
557
456
2778797665! "
M"7//")*.%*"?./&()",.'"G("%()(*"GN",/+,I+'="*>(" "+,$'3""
OM" P"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;@::C0;@:K3-$,L"
"
9@""
""
012456787891
557
456
2778797665! "
MN086OPQP7866RSP
T"UV"W$&",/+,H"*>("X X"+,$'Y".")'.Z)>$*"$V"*>("6$'+*$%(-"?./&()",.'"F("*.H('"+'"$%-(%"*$"
.ZZ/W"*>()("?./&()".)")*.%*"?./&()"$%"*$"*%.')V(%"*>(6"F.,H"*$"*>("@[\"/.*(%""
]T" ^3"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5@ABACB:D9E<::"8/$F./"2.*."G/$,H)B5IE;J::B0;J:K3-$,L"
"
9<""
""
012456787891
557
456
2778797665! "
M"7/*(%'.*+?(/NO"?./&()"P%$6"*>(")'.Q)>$*",.'"G(".QQ/+(-"GN",/+,I+'="*>("R R"+,$'"P$%".//"
?./&()"$%"GN",/+,I+'="*>("R R"+,$'"P$%"*>(")*.%*"?./&()"$'/N3"S'/N"*>(")(*Q$+'*)".%("'((-(-"
>(%("+'"6$)*",.)()""
TM" U"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5@F;J::C0;J:K3-$,L"
9@""
""
012456787891
557
456
2778797665! "
M"N$"*%.')O(%"-.*.",.P*&%(-"+'"*>(")'.P)>$*"G.,I"*$"*>("AQRS"T$&"6&)*",/+,I"U U3""
VM" W"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:@3-$,L"
"
9@""
""
012456787891
557
456
2778797665! "
N"OP"Q$&"R.'*"*$"$?(%R%+*(".//")(*S$+'*)"R+*>"*>(")*.%*"?./&()T"Q$&",.'"+'+*+.*("*>+)"GQ",/+,I+'="U
U3"V>("?./&()"+'"*>("AWX"P$%"R>+,>"*>("U5(*S$+'*U",>(,I"G$M"R.)"'$*")(/(,*(-".%("
*>(%(GQ"%(*.+'(-3""
YN" Z"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:E9F<::"8/$G./"2.*."H/$,I)C5JF;K::C0;K:L3-$,M"
"
9@""
""
012456787891
557
456
2778797665! "
V"W$"('.F/("X2$Y'/$.-"Y+*>$&*"%(+'+*+./+Z.*+$'X"[$%"*>("\5]BB2C^_W_0\"`2G9a"-.*."F/$,Hb"
c$&"6&)*"X
X".'-"*>('"$d('"*>("d%$d(%*+()"$["*>("-.*."F/$,H3""
eV
"V"5]BB2C^_W_0"`2G9a"V"]%$d(%*+()f"
"
V"5(/(,*"*>("X_d*+6+Z(-"F/$,H".,,())X",>(,H"F$L" "+'"*>("d%$d(%*+()"&'-(%"X8('(%./Xb"
X7**%+F&*()X3""
eV"8('(%./"V"7**%+F&*()"V""_d*+6+Z(-"F/$,H".,,())f"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
"
"
@:""
""
012456787891
557
456
2778797665! "
M"7))+='"."N0(*('*+?("6(6$%O"%()(%?(N"*$"*>("-.*."F/$,H"P$%"N2$Q'/$.-"Q+*>$&*"
%(+'+*+./+R.*+$'N3""
SM2$Q'/$.-"Q+*>$&*"%(+'+*+./+R.*+$'"M"0(*('*+?("6(6$%O"%()(%?("M";:"FO*()"M"TUV"
"
"
M"2$Q'/$.-"O$&%"W5XBB2CYTZT0W"[2G\"-.*."F/$,H"*$"*>(",$'*%$//(%".=.+'".'-")(/(,*"N
N3""
SM5XBB2CYTZT0"[2G\"M" "M"
V"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
@;""
""
012456787891
557
456
2778797665! "
M"N>('",/+,H"*>("O O"+,$'"*$".,*+?.*("-$P'/$.-"P+*>$&*"%(+'+*+./+Q.*+$'".'-",$'R+%6"*>("
).R(*S"T%$6T*"P+*>"OUVO3""
WM" "M"UVX"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
@9""
""
012456787891
557
456
2778797665! "
M"D(L*".--".'N"*.="+'"N$&%"-.*."F/$,H""
OM"D.6(P"Q./&(C*()*"M"2.*."*NR(P"0(./"M"5*.%*"?./&(P"SST"
"
M"2$U'/$.-"N$&%"V5WBB2CXYZY0V"[2G\"-.*."F/$,H"*$"*>(",$'*%$//(%".=.+'3"
OM5WBB2CXYZY0"[2G\"M" "M"2$U'/$.-T"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
@@""
""
012456787891
557
456
2778797665! "
N"OP"Q$&",/+,I"R R"*$"6$'+*$%"*>("G/$,I".=.+'S"Q$&"T+//")(("*>.*"*>("6$'+*$%(-"?./&()">.?("
'$*"G(('"$?(%T%+**('"T+*>"*>(")*.%*"?./&()3""
UN" V"
"
"
W5X7YXZ5[
N"7)"*>("P+'./")*(\S"T("T.'*"*$".%,>+?("*>(",$6\/(*("\%$](,*3"5(/(,*"*>("N"R7%,>+?("333R"
,$66.'-"+'"*>("N"R^%$](,*R"6('&3"5(/(,*"."P$/-(%"T>(%("Q$&"T.'*"*$".%,>+?("Q$&%"\%$](,*"
.'-").?("+*"T+*>"*>("P+/("*Q\("_`O7"^$%*./"\%$](,*".%,>+?(_3""
UN"^%$](,*"N"7%,>+?("N"`O7"^$%*./"\%$](,*".%,>+?("N":@9Fabbcdefghecihjhckeflmnopq
N"5.?(V"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5BCDCED:@9F<::"8/$G./"2.*."H/$,I)D5JF;K::D0;K:L3-$,M"
"
@A""
""
012456787891
557
456
2778797665! "
M1NO7P
E$3"
;"
9"
@"
["
A"
<"
J"
K"
g"
;:"
;;"
;9"
;@"
;["
B$6Q/(*(-"
2(),%+Q*+$'"
2.*."G/$,I"5RCC2DSTUT0"V2H9W")&,,())X&//Y",%(.*(-3" "
"
R%$=%.6",>.'=()"6.-("+'"S.+'"VTH;W3"
"
B$6Q+/+'=")&,,())X&/".'-"Z+*>$&*"(%%$%"6()).=("
"
2$Z'/$.-")&,,())X&/".'-"Z+*>$&*"(%%$%"6()).=("
5Z+*,>"$'")*.*+$'"\F]:"^";_"
"
BY/+'-(%"%(*%.,*(-"`"#((-G.,I".,*+?.*(-"\FH;"^";_"
CSC08CEBa"T##"\F7;"^";_"'$*".,*+?.*(-"
7bUTS7UcB"6$-("\F5:"^";_"
R&)>G&**$'".&*$6.*+,")*$Q"'$*".,*&.*(-"\F59"^";_"
H%+(X/Y"Q%())"*>(".&*$6.*+,")*.%*"Q&)>G&**$'"\F5;"^";_"
5(')$%"Q.%*".*")/+-(".,*+?.*(-"\FH["^";_"
*>('"B$'?(Y$%"6$*$%"S;"?.%+.G/(")Q((-"\Fd@"^";_"
)Z+*,>()"$'".'-")*.Y)"$'3"
U>(")Q((-",$%%()Q$'-)"*$"*>(")Q((-")(*Q$+'*"+'"*>("%.'=("e`F"
A:"%Q6"
5(')$%"Q.%*".*"('-"$X",$'?(Y$%".,*+?.*(-"\FHJ"^";_"f"Fd@"^":" "
\.X*(%"9")(,$'-)_"
H%+(X/Y"Q%())"*>(".&*$6.*+,")*$Q"Q&)>G&**$'"\F59"^":_"f"Fd@"^" "
:"
"
7,*+?.*("CSC08CEBa"T##"\F7;"^":_"f"Fd@"^":"
"
S.'&./"6$-("\F5:"^":_"f"Fd@"^":"
"
5Z+*,>"$XX")*.*+$'"\F]:"^":_"f"Fd@"^":"
"
BY/+'-(%"'$*"%(*%.,*(-"\FH;"^":_"f"Fd@"^":"
5Q((-"h"S$*$%D)Q((-D6$'+*$%+'=D(%%$%D6.L"f"Fd@"^":" "
5Q((-"i"S$*$%D)Q((-D6$'+*$%+'=D(%%$%D6+'"f"Fd@"^":" "
"
R%$j(,*")&,,())X&//Y".%,>+?(-"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5BCDCED:@9F<::"8/$G./"2.*."H/$,I)D5JF;A::D0;A:K3-$,L"
@A""
""
012456787891
557
456
2778797665! "
M2N57O
MP46OQR2N57O"
S'"*>+)"(L(%,+)("."=/$F./"-.*."F/$,H"TU787VSDBCWX75YSAT"Z2G@["\+//"F(",%(.*(-".--+*+$'.//]3"
Y>(")(*^$+'*".'-".,*&./"?./&("$_"*>(",$&'*(%"_$%"*>("^/.)*+,"^.%*)"\+//"F(")^(,+_+(-".'-"
-+)^/.](-"+'"*>+)"-.*."F/$,H3"
7",$''(,*.F/("+'^&*"_$%"*>(")(*^$+'*")(**+'=".'-".'"$&*^&*"_$%"-+)^/.]+'="*>(".,*&./"?./&("\+//"
./)$"F(".--(-"*$"*>("TU`Y`0C7aY`T"Z#G;["_&',*+$'"F/$,H3"
"
c(%("]$&")(("*>("*(,>'$/$=]"-+.=%.6"_$%"*>("*.)H3"
"
#+=&%("Jd"Y(,>'$/$=]"-+.=%.6"
#+=&%("<d"A$'*%$/"^.'(/"
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5ABCBDC:@9E<::"8/$F./"2.*."G/$,H)C5IE;J::C0;J:K3-$,L"
@<""
""
012456787891
557
456
2778797665! "
MNOP587Q
R>("S$//$T+'=")+='./)".%("%(U&+%(-".)"=/$G./"$V(%.'-)"S$%"*>+)"*.)I3"
4!W 87P75
878
Z":3:" H[[\" F7;" 0(*&%'")+='./"(6(%=(',]")*$V"[^"
Z":3;" H[[\" F^:" _.+'")T+*,>"`[E`"
Z":39" H[[\" F5:" _$-(")(/(,*$%"6.'&./"a:bc".&*$6.*+,"a;b"
Z":3@"
Z":3f"
Z":3J"
Z";3:"
Z";3@"
Zg<f"
H[[\"
H[[\"
H[[\"
H[[\"
H[[\"
H[[\"
"
F5;"
F59"
FH;"
FHf"
FHA"
FHK"
X1XY
EB"
E["
_.'&./"d":"
7&*$"d";"
e&)>G&**$'".&*$6.*+,")*.%*"
E["
e&)>G&**$'".&*$6.*+,")*$V"
EB"
5(')$%",]/+'-(%"F_f"%(*%.,*(-"
E["
5(')$%"V.%*".*")/+-("
E["
5(')$%"V.%*".*"('-"$S",$'?(]$%"
E["
5(')$%".,*&./"?./&(")V((-"$S"*>("6$*$%"hcF;:i"
"
,$%%()V$'-)"*$"hcF"J:"jc6+'"
"
"
MNz688789
e/.'"*>("+6V/(6('*.*+$'"$S"*>("*.)I"$'"]$&%"$T'3"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5BCDCED:@9F<::"8/$G./"2.*."H/$,I)D5AF;J::D0;J:K3-$,L"
@A""
""
012456787891
557
456
2778797665! "
E$3"
;"
9"
"@"
b"
K"
<"
J"
A"
m"
;:"
;;"
;9"
;@"
;b"
;K"
B$6U/(*(-"
2(),%+U*+$'"
2.*."G/$,I"V787WXECDYZ75[XB"\2H@]")&,,())^&//_",%(.*(-3" "
"
Y%$=%.6",>.'=()"6.-("+'"V`[`0D7a[`"\#H;]3"
"
Y%$=%.6",>.'=()"6.-("+'"V.+'"\`H;]3"
"
B$6U+/+'=")&,,())^&/".'-"c+*>$&*"(%%$%"6()).=("
"
2$c'/$.-")&,,())^&/".'-"c+*>$&*"(%%$%"6()).=("
5c+*,>"$'")*.*+$'"dFe:"f";g"
"
B_/+'-(%"%(*%.,*(-"h"#((-G.,I".,*+?.*(-"dFH;"f";g"
CVC08CEBi"`##"dF7;"f";g"'$*".,*+?.*(-"
7a[`V7[XB"6$-("dF5:"f";g"
Y&)>G&**$'".&*$6.*+,")*$U"'$*".,*&.*(-"dF59"f";g"
H%+(^/_"U%())"*>(".&*$6.*+,")*.%*"U&)>G&**$'"dF5;"f";g"
5(')$%"U.%*".*")/+-(".,*+?.*(-"dFHb"f";g"
*>('"B$'?(_$%"6$*$%"FV;"?.%+.G/(")U((-"dFj@"f";g"
)c+*,>()"$'".'-")*._)"$'3"
[>(")U((-",$%%()U$'-)"*$"*>(")U((-")(*U$+'*"+'"*>("%.'=("khF"
K:"%U6"
5(')$%"U.%*".*"('-"$^",$'?(_$%".,*+?.*(-"dFHJ"f";g"l"Fj@"f":" "
d.^*(%"9")(,$'-)g"
H%+(^/_"U%())"*>(".&*$6.*+,")*$U"U&)>G&**$'"dF59"f":g"l"Fj@"f" "
:"
"
7,*+?.*("CVC08CEBi"`##"dF7;"f":g"l"Fj@"f":"
"
V.'&./"6$-("dF5:"f":g"l"Fj@"f":"
"
5c+*,>"$^^")*.*+$'"dFe:"f":g"l"Fj@"f":"
"
B_/+'-(%"'$*"%(*%.,*(-"dFH;"f":g"l"Fj@"f":"
5U((-"n"V$*$%D)U((-D6$'+*$%+'=D(%%$%D6.L"l"Fj@"f":" "
5U((-"o"V$*$%D)U((-D6$'+*$%+'=D(%%$%D6+'"l"Fj@"f":" "
"
Y%$p(,*")&,,())^&//_".%,>+?(-"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5BCDCED:@9F<::"8/$G./"2.*."H/$,I)D5JF;K::D0;K:A3-$,L"
@A""
""
012456787891
557
456
2778797665! "
P$&",.'"Q+'-".--+*+$'./"+'Q$%6.*+$'".)".'"$%+('*.*+$'".+-"Q$%"+'+*+./".'-".-?.',(-"*%.+'+'=R"Q$%"
(M.6S/(T"8(**+'="5*.%*(-R"?+-($)R"*&*$%+./)R".SS)R"6.'&./)R"S%$=%.66+'="=&+-(/+'()".'-"*%+./"
)$Q*U.%(VQ+%6U.%(R".*"*>("Q$//$U+'="/+'IT"""
"
UUU3)+(6(')3,$6V),(V)JF;K::""
"
"
"
#$%"&'%()*%+,*(-"&)("+'"(-&,.*+$'./".'-"012"+')*+*&*+$')3"4"5+(6(')"78"9:;<3"7//"0+=>*)"0()(%?(-3"
5BCDCED:@9F<::"8/$G./"2.*."H/$,I)D5JF;K::D0;K:L3-$,M"
@A""
""