Slide 1

Slide 1 text

These are confidential sessions—please refrain from streaming, blogging, or taking pictures Making a great impression with every launch Session 225 Up and Running Jim Turner iOS Frameworks

Slide 2

Slide 2 text

No content

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

application:didFinishLaunchingWithOptions:

Slide 5

Slide 5 text

Demo Brandon Newendorp iOS Software Engineer

Slide 6

Slide 6 text

I see what you did there Watchdog

Slide 7

Slide 7 text

I see what you did there Watchdog

Slide 8

Slide 8 text

I see what you did there Watchdog

Slide 9

Slide 9 text

Ensures app launch time Exception Type: 00000020 Exception Codes: Highlighted Thread: 0 Application Specific Information: com.your.app.id failed to launch in time Elapsed total CPU time (seconds): 11.120 (user 1.840, system 9.280), 59% CPU Elapsed application CPU time (seconds): 2.160, 12% CPU I see what you did there Watchdog 0x8badf00d

Slide 10

Slide 10 text

I see what you did there Watchdog 0x8badf00d

Slide 11

Slide 11 text

I see what you did there Watchdog

Slide 12

Slide 12 text

I see what you did there Watchdog

Slide 13

Slide 13 text

I see what you did there Watchdog

Slide 14

Slide 14 text

Demo App Startup

Slide 15

Slide 15 text

Interface Demo App Startup

Slide 16

Slide 16 text

Interface Network Demo App Startup

Slide 17

Slide 17 text

Interface Network Database Demo App Startup

Slide 18

Slide 18 text

Interface Network Database Payload Demo App Startup

Slide 19

Slide 19 text

Interface Network Database Payload External Library Demo App Startup

Slide 20

Slide 20 text

Interface Network Database Payload External Library Demo App Startup Core Location iAd Options Processing

Slide 21

Slide 21 text

Demo App Startup Main Queue

Slide 22

Slide 22 text

Demo App Startup Main Queue application:didFinishLaunchingWithOptions:

Slide 23

Slide 23 text

Demo App Startup Network Interface Database External Library  Payload Main Queue

Slide 24

Slide 24 text

Demo App Startup Network Interface Database External Library  Payload Main Queue 5 seconds

Slide 25

Slide 25 text

Demo App Startup Network Interface Database External Library  Payload Main Queue 5 seconds That’s not good

Slide 26

Slide 26 text

Put your UI on a diet Interface Loading

Slide 27

Slide 27 text

Put your UI on a diet Interface Loading •Eases creation

Slide 28

Slide 28 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation

Slide 29

Slide 29 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation •Reduces code

Slide 30

Slide 30 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation •Reduces code •However…

Slide 31

Slide 31 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation •Reduces code •However… ■ Must instantiate entire object graph

Slide 32

Slide 32 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation •Reduces code •However… ■ Must instantiate entire object graph ■ Main queue

Slide 33

Slide 33 text

Put your UI on a diet Interface Loading •Eases creation •Allows experimentation •Reduces code •However… ■ Must instantiate entire object graph ■ Main queue ■ Side effects

Slide 34

Slide 34 text

No content

Slide 35

Slide 35 text

No content

Slide 36

Slide 36 text

No content

Slide 37

Slide 37 text

No content

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

No content

Slide 40

Slide 40 text

Storyboards Interface Loading

Slide 41

Slide 41 text

Storyboards Interface Loading •Preferred to xib

Slide 42

Slide 42 text

Storyboards Interface Loading •Preferred to xib •Single file

Slide 43

Slide 43 text

Storyboards Interface Loading •Preferred to xib •Single file •Tool/Framework support

Slide 44

Slide 44 text

Storyboards Interface Loading •Preferred to xib •Single file •Tool/Framework support •Simplify

Slide 45

Slide 45 text

Demo App Startup Network Database External Library  Payload Main Queue Interface

Slide 46

Slide 46 text

Demo App Startup Network Database External Library  Payload Main Queue

Slide 47

Slide 47 text

Demo App Startup Network Database Payload Main Queue External Library 

Slide 48

Slide 48 text

Demo App Startup Network Database Payload Main Queue External Library 

Slide 49

Slide 49 text

Time does not pass in The Waiting Place Network Communication

Slide 50

Slide 50 text

Time does not pass in The Waiting Place Network Communication •Undefined behavior

Slide 51

Slide 51 text

Time does not pass in The Waiting Place Network Communication •Undefined behavior •Blocking vs. non-blocking

Slide 52

Slide 52 text

Time does not pass in The Waiting Place Network Communication •Undefined behavior •Blocking vs. non-blocking •Applies to all synchronous methods/behaviors

Slide 53

Slide 53 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 54

Slide 54 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 55

Slide 55 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 56

Slide 56 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 57

Slide 57 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting…

Slide 58

Slide 58 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting…

Slide 59

Slide 59 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting… Main Queue

Slide 60

Slide 60 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 61

Slide 61 text

Network Communication dispatch_async(serialQueue, ^{ _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error]; });

Slide 62

Slide 62 text

Network Communication dispatch_async(serialQueue, ^{ _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error]; });

Slide 63

Slide 63 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting… Main Queue

Slide 64

Slide 64 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting… Main Queue

Slide 65

Slide 65 text

Background Queue Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting…

Slide 66

Slide 66 text

Background Queue Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting…

Slide 67

Slide 67 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… Background Queue

Slide 68

Slide 68 text

Network Communication _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error];

Slide 69

Slide 69 text

dispatch_async(concurrentQueue, ^{ _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; }); dispatch_async(concurrentQueue, ^{ NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; }); dispatch_async(concurrentQueue, ^{ NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error]; }); Network Communication

Slide 70

Slide 70 text

dispatch_async(concurrentQueue, ^{ _XMLparser = [[NSXMLParser alloc] initWithContentsOfURL:…]; }); dispatch_async(concurrentQueue, ^{ NSData *imgData = [NSData dataWithContentsOfURL:…]; UIImage *img = [UIImage imageWithData:imgData]; }); dispatch_async(concurrentQueue, ^{ NSData *formResults = [NSURLConnection sendSynchronousRequest:req returningResponse:nil error:&error]; }); Network Communication

Slide 71

Slide 71 text

NSOperation Network Communication

Slide 72

Slide 72 text

NSOperation Network Communication •Asynchronous

Slide 73

Slide 73 text

NSOperation Network Communication •Asynchronous •Concurrent

Slide 74

Slide 74 text

NSOperation Network Communication •Asynchronous •Concurrent •Tune resource usage

Slide 75

Slide 75 text

NSOperation Network Communication •Asynchronous •Concurrent •Tune resource usage •Dependencies

Slide 76

Slide 76 text

NSOperation Network Communication •Asynchronous •Concurrent •Tune resource usage •Dependencies •Cancellation

Slide 77

Slide 77 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting… Main Queue

Slide 78

Slide 78 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished waiting… waiting… waiting… waiting… waiting… Main Queue

Slide 79

Slide 79 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished Processing Queue

Slide 80

Slide 80 text

Network Communication Downloads Current Info JSON Image Image Article Data Twitter [614 KB] [22 KB] [17.9 MB] [12.2 MB] [4.8 MB] [977 KB] Finished Processing Queue

Slide 81

Slide 81 text

Demo App Startup Network Database Payload Main Queue External Library 

Slide 82

Slide 82 text

Demo App Startup Network Database Payload Main Queue External Library  Processing Queue

Slide 83

Slide 83 text

Demo App Startup Main Queue Processing Queue Network Database Payload External Library 

Slide 84

Slide 84 text

Demo App Startup Main Queue Processing Queue Network Database Payload External Library 

Slide 85

Slide 85 text

Database Payload External Library

Slide 86

Slide 86 text

Database Payload External Library

Slide 87

Slide 87 text

Database Payload External Library •General processing

Slide 88

Slide 88 text

Database Payload External Library •General processing •Need not block the app from launching

Slide 89

Slide 89 text

Database Payload External Library •General processing •Need not block the app from launching •Parallelizable

Slide 90

Slide 90 text

Database Payload External Library •General processing •Need not block the app from launching •Parallelizable •Dependent on the network

Slide 91

Slide 91 text

General Processing stockDatabase = [[DBManager alloc] initWithDatabaseName:@"Stocks"]; [stockDatabase updateTickerData]; [stockDatabase updateSymbols]; xmlParser = [[NSXMLParser alloc] initWithData:dataFromServer]; [xmlParser parse];

Slide 92

Slide 92 text

stockDatabase = [[DBManager alloc] initWithDatabaseName:@"Stocks"]; [stockDatabase updateTickerData]; [stockDatabase updateSymbols]; xmlParser = [[NSXMLParser alloc] initWithData:dataFromServer]; [xmlParser parse]; General Processing

Slide 93

Slide 93 text

General Processing dispatch_async(concurrentQueue, ^{ stockDatabase = [[DBManager alloc] initWithDatabaseName:@"Stocks"]; [stockDatabase updateTickerData]; [stockDatabase updateSymbols]; }); xmlParser = [[NSXMLParser alloc] initWithData:dataFromServer]; [xmlParser parse];

Slide 94

Slide 94 text

General Processing dispatch_async(concurrentQueue, ^{ stockDatabase = [[DBManager alloc] initWithDatabaseName:@"Stocks"]; [stockDatabase updateTickerData]; [stockDatabase updateSymbols]; }); xmlParser = [[NSXMLParser alloc] initWithData:dataFromServer]; [xmlParser parse];

Slide 95

Slide 95 text

General Processing dispatch_async(concurrentQueue, ^{ stockDatabase = [[DBManager alloc] initWithDatabaseName:@"Stocks"]; [stockDatabase updateTickerData]; [stockDatabase updateSymbols]; }); xmlParser = [[NSXMLParser alloc] initWithData:dataFromServer]; [xmlParser parse];

Slide 96

Slide 96 text

General Processing

Slide 97

Slide 97 text

General Processing _operationQueue = [[NSOperationQueue alloc] init];

Slide 98

Slide 98 text

General Processing _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; Processing Queue

Slide 99

Slide 99 text

General Processing _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... Processing Queue Network Operation Network Operation Network Operation

Slide 100

Slide 100 text

Parse XML General Processing _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; Processing Queue Network Operation Network Operation Network Operation

Slide 101

Slide 101 text

Parse XML General Processing _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; Processing Queue Network Operation Network Operation Network Operation

Slide 102

Slide 102 text

Parse XML General Processing _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp]; Processing Queue Network Operation Network Operation Network Operation

Slide 103

Slide 103 text

General Processing Processing Queue Network Operation Network Operation Network Operation Parse XML _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 104

Slide 104 text

General Processing Processing Queue Network Operation Network Operation Parse XML _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 105

Slide 105 text

Network Operation General Processing Processing Queue Network Operation Parse XML _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 106

Slide 106 text

Network Operation General Processing Processing Queue Network Operation Parse XML Slooow... _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 107

Slide 107 text

Network Operation General Processing Processing Queue Network Operation Parse XML Slooow... Payload _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 108

Slide 108 text

General Processing Processing Queue Network Operation Parse XML Slooow... Payload _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 109

Slide 109 text

General Processing Processing Queue Network Operation Parse XML Slooow... _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 110

Slide 110 text

General Processing Processing Queue Network Operation Parse XML Slooow... _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 111

Slide 111 text

General Processing Processing Queue _operationQueue = [[NSOperationQueue alloc] init]; [_operationQueue setName:@”Processing Queue”]; NSOperation *networkOp = ... NSBlockOperation *xmlOp = [NSBlockOperation blockOperationWithBlock:^{...}]; [xmlOp addDependency:networkOp]; [_operationQueue addOperation:xmlOp];

Slide 112

Slide 112 text

Demo App Startup Main Queue Processing Queue Network Database External Library  Payload

Slide 113

Slide 113 text

Demo App Startup Main Queue Processing Queue Network Database External Library  Payload Much better

Slide 114

Slide 114 text

?

Slide 115

Slide 115 text

Highest Rated Popular Patti 6/5/12 Most Creative Creative Carl 6/5/12 Least Popular Sad Samantha 6/5/12 Top Trending Trendy Trent 6/5/12 ? ? ? ?

Slide 116

Slide 116 text

Highest Rated Popular Patti 6/5/12 Most Creative Creative Carl 6/5/12 Least Popular Sad Samantha 6/5/12 Top Trending Trendy Trent 6/5/12 ? ? ? ? Highest Rated Popular Patti 6/5/12 Wow L. Micarel 6/3/12 Least Popular Sad Samantha 6/5/12 Frisbee N. Jones 6/1/12 ? ?

Slide 117

Slide 117 text

Jump! W. Joseph 6/5/12 Wow L. Micarel 6/3/12 Seine J. Johnson 5/27/12 Frisbee N. Jones 6/1/12 Highest Rated Popular Patti 6/5/12 Most Creative Creative Carl 6/5/12 Least Popular Sad Samantha 6/5/12 Top Trending Trendy Trent 6/5/12 ? ? ? ? Highest Rated Popular Patti 6/5/12 Wow L. Micarel 6/3/12 Least Popular Sad Samantha 6/5/12 Frisbee N. Jones 6/1/12 ? ?

Slide 118

Slide 118 text

What Remains

Slide 119

Slide 119 text

What Remains

Slide 120

Slide 120 text

What Remains

Slide 121

Slide 121 text

What Remains

Slide 122

Slide 122 text

State Restoration What Remains

Slide 123

Slide 123 text

State Restoration What Remains •Save and restore application state

Slide 124

Slide 124 text

State Restoration What Remains •Save and restore application state •New delegate method

Slide 125

Slide 125 text

State Restoration What Remains •Save and restore application state •New delegate method application:didFinishLaunchingWithOptions:

Slide 126

Slide 126 text

State Restoration What Remains •Save and restore application state •New delegate method

Slide 127

Slide 127 text

State Restoration What Remains •Save and restore application state •New delegate method application:willFinishLaunchingWithOptions:

Slide 128

Slide 128 text

State Restoration What Remains •Save and restore application state •New delegate method application:willFinishLaunchingWithOptions: Saving and Restoring Application State on iOS Russian Hill Thursday 3:15PM

Slide 129

Slide 129 text

Demo Brandon Newendorp iOS Software Engineer

Slide 130

Slide 130 text

Hint: He’s going to test Preventing Regressions

Slide 131

Slide 131 text

Hint: He’s going to test Preventing Regressions •Be vigilant

Slide 132

Slide 132 text

Hint: He’s going to test Preventing Regressions •Be vigilant •Automate performance testing

Slide 133

Slide 133 text

Network Link Conditioner Preventing Regressions

Slide 134

Slide 134 text

Wrap Up

Slide 135

Slide 135 text

Wrap Up •“Do I need this here?”

Slide 136

Slide 136 text

Wrap Up •“Do I need this here?” •Unneighborly network

Slide 137

Slide 137 text

Wrap Up •“Do I need this here?” •Unneighborly network •Don’t abuse dispatch_async

Slide 138

Slide 138 text

Wrap Up •“Do I need this here?” •Unneighborly network •Don’t abuse dispatch_async •What can you provide immediately?

Slide 139

Slide 139 text

Related Session Saving and Restoring Application State on iOS Russian Hill Thursday 3:15PM

Slide 140

Slide 140 text

More Information Jake Behrens UI Frameworks Evangelist [email protected] Documentation UIApplicationDelegate protocol Storyboards NSOperation and NSOperationQueue State Restoration http://developer.apple.com/ Apple Developer Forums http://devforums.apple.com

Slide 141

Slide 141 text

No content

Slide 142

Slide 142 text

The last 3 slides after the logo are intentionally left blank for all presentations.

Slide 143

Slide 143 text

The last 3 slides after the logo are intentionally left blank for all presentations.

Slide 144

Slide 144 text

The last 3 slides after the logo are intentionally left blank for all presentations.