diff --git a/charts.py b/charts.py index 0107a61..0355634 100644 --- a/charts.py +++ b/charts.py @@ -5,7 +5,8 @@ from lxml import etree def createPie(data, gaps = 0): total = sum(data.values()) colours = ['#268ED7','#6A4F8D', '#A03D4F','#DC7432','#F6DC3B','#76B33B', '#267B60'] - svg = '' + className = "hoverTitles" if len(data) > 9 else "" + svg = '' % className numbers = "" position = 90 i = 0 @@ -18,8 +19,9 @@ def createPie(data, gaps = 0): d = describeArc(float(diff['x']), float(diff['y']), 60, position, position+arc) # print(position, arc) svg += '' % (colours[i%len(colours)], d) + # tRadius = 105 if i%2 else 95 t = polarToCartesian(0,0, 100, position+0.5*arc) - numbers += '%s' % (t['x'], t['y'], position+0.5*arc, t['x'],t['y'], e) + svg += '%s' % (t['x'], t['y'], position+0.5*arc, t['x'],t['y'], e) position += arc i+=1 diff --git a/colour.py b/colour.py index 09dbf80..8479f12 100644 --- a/colour.py +++ b/colour.py @@ -7,13 +7,15 @@ import codecs import colorsys import math import numpy as np +import sklearn.cluster +from PIL import Image NUM_CLUSTERS = 64 def getColourAsHex(colour): return '#' + ''.join(format(c, '02x') for c in colour.astype(int)) -def getColoursForImageByClusters(image): +def getColoursForImageByKMeansClusters(image): """ Adapted on answers by Peter Hansen (http://stackoverflow.com/a/3244061) @@ -43,6 +45,62 @@ def getColoursForImageByClusters(image): # print(colours) return list(zip(codes, percentages)) +def getColoursForImageByMeanShiftClusters(image, saveImgName = False): + """ + Adapted on answers by + Peter Hansen (http://stackoverflow.com/a/3244061) + & Johan Mickos (http://stackoverflow.com/a/34140327) + Now using MeanShift clustering + + if saveImgName set to the path/prefix_ for the layer images, save images of each cluster matched pixels + """ + imgSize = (170,170) + # imgSize = (int(targetWidth), int(image.size[1] / (image.size[0]/targetWidth))) + im = image.copy() # optional, to reduce time + im.thumbnail(imgSize) + imgSize = im.size + print("\tRender image of", image.size,"for", imgSize) + imgAr = scipy.misc.fromimage(im) + shape = imgAr.shape + ar = imgAr.reshape(scipy.product(shape[:2]), shape[2]) + total = len(ar) + +# print( 'finding clusters') +# codes, dist = scipy.cluster.vq.kmeans(ar.astype(float), NUM_CLUSTERS) + bandwidth = sklearn.cluster.estimate_bandwidth(ar.astype(float), quantile=0.1, n_samples=500) + ms = sklearn.cluster.MeanShift(bandwidth=bandwidth) + ms.fit(ar.astype(float)) + labels = ms.labels_ # labels per point + cluster_centers = ms.cluster_centers_ # centers of found clusters + + labels_unique = np.unique(labels) + n_clusters_ = len(labels_unique) + + print("\tClusters found:", n_clusters_) + + colours = [] + for k in labels_unique: + cluster_center = cluster_centers[k] # np.array with rgb + mask = labels == k # True/False map of flattened array + # m = np.ma.masked_where(labels != k, labels) + count = len(ar[mask]) # nr of pixels for this label + + # pass on percentages: + colours.append((cluster_center, 100 * count / total)) + + if saveImgName: + # save image as RGBA with transparent pixels, except for there where label == k + layer = np.array([np.append(ar[i],255) if l == k else [0,0,0,0] for i,l in enumerate(list(labels))], dtype=np.uint8) + layerImgAr = layer.reshape((imgSize[1],imgSize[0],4)) # layers are stacked: vertical, horizontal, rgba + layerImg = Image.fromarray(layerImgAr, mode="RGBA") + layerFilename = saveImgName + '-%s.png' % k + layerImg.save(layerFilename) + print(layerFilename) + + # display(HTML("%s" % (getColourAsHex(cluster_center),getColourAsHex(cluster_center)))) + + return colours + def getColoursForImageByPxAvg(image): im = image.copy().resize((8, 8)) pixels = np.concatenate(scipy.misc.fromimage(im)) @@ -54,36 +112,41 @@ def getColoursAsHTML(colours): return " ".join(['%s - (%s %%)' % (getColourAsHex(colour[0]), getColourAsHex(colour[0]), colour[1]) for colour in colours]); def loadColoursFromDbImages(images): - return [i.colours for i in images] + return [i.colours for i in images if not i.colours is None] def getSvgFromDbImages(images, elId = ""): # sum concatenates all colour arrays - allColours = [] - for c in loadColoursFromDbImages(images): - allColours += c + # allColours = [] + # for c in loadColoursFromDbImages(images): + # allColours += c # box 160, because center or circle = 100 => +/- 50 => + r of colour circle (max: 10) => 160 - svg = '' % elId + svg = '' % (elId, ) radius = 100 - for colour in allColours: - rgb, percentage = colour - rgbNorm = rgb/255 - hsv = colorsys.rgb_to_hsv(rgbNorm[0], rgbNorm[1], rgbNorm[2]) - # find position on circle - radians = 2 * math.pi * hsv[0] - x = math.cos(radians) - y = math.sin(radians) - - # based on saturation, we move inwards/outwards - # min = 0.5, max = 1.5 (dus + 0.5) - pos = np.array([x,y]) * (0.5 + hsv[1]) * radius - # Posibilitiy: determine position based on avg(saturation, value) => dark & grey inside, shiney and colourful outside - # pos = np.array([x,y]) * (0.5 + (hsv[1]+hsv[2])/2) * radius - r = max(1,-10/percentage+10) # as r, we converge to maximum radius 10, but don't want to get smaller radi then 1 - c = '' % (pos[0], pos[1], r, getColourAsHex(rgb)) - svg += c + for image in images: + if image.colours is None: + continue + + for i, colour in enumerate(image.colours): + colourId = '%s-%s' % (image.id, i) + rgb, percentage = colour + rgbNorm = rgb/255 + hsv = colorsys.rgb_to_hsv(rgbNorm[0], rgbNorm[1], rgbNorm[2]) + # find position on circle + radians = 2 * math.pi * hsv[0] + x = math.cos(radians) + y = math.sin(radians) + + # based on saturation, we move inwards/outwards + # min = 0.5, max = 1.5 (dus + 0.5) + pos = np.array([x,y]) * (0.5 + hsv[1]) * radius + # Posibilitiy: determine position based on avg(saturation, value) => dark & grey inside, shiney and colourful outside + # pos = np.array([x,y]) * (0.5 + (hsv[1]+hsv[2])/2) * radius + r = max(1,-10/percentage+10) # as r, we converge to maximum radius 10, but don't want to get smaller radi then 1 + c = '' % (pos[0], pos[1], r, getColourAsHex(rgb), colourId) + svg += c svg += "" return svg \ No newline at end of file diff --git a/images.db b/images.db index e2cddf5..f012fc4 100644 Binary files a/images.db and b/images.db differ diff --git a/images/1-0.png b/images/1-0.png new file mode 100644 index 0000000..9426480 Binary files /dev/null and b/images/1-0.png differ diff --git a/images/1-1.png b/images/1-1.png new file mode 100644 index 0000000..d56bc5c Binary files /dev/null and b/images/1-1.png differ diff --git a/images/1-10.png b/images/1-10.png new file mode 100644 index 0000000..59811fe Binary files /dev/null and b/images/1-10.png differ diff --git a/images/1-11.png b/images/1-11.png new file mode 100644 index 0000000..9793473 Binary files /dev/null and b/images/1-11.png differ diff --git a/images/1-2.png b/images/1-2.png new file mode 100644 index 0000000..e2e7a5a Binary files /dev/null and b/images/1-2.png differ diff --git a/images/1-3.png b/images/1-3.png new file mode 100644 index 0000000..24ef1bd Binary files /dev/null and b/images/1-3.png differ diff --git a/images/1-4.png b/images/1-4.png new file mode 100644 index 0000000..133d2de Binary files /dev/null and b/images/1-4.png differ diff --git a/images/1-5.png b/images/1-5.png new file mode 100644 index 0000000..b2b78b2 Binary files /dev/null and b/images/1-5.png differ diff --git a/images/1-6.png b/images/1-6.png new file mode 100644 index 0000000..fe9ae72 Binary files /dev/null and b/images/1-6.png differ diff --git a/images/1-7.png b/images/1-7.png new file mode 100644 index 0000000..73e6c5b Binary files /dev/null and b/images/1-7.png differ diff --git a/images/1-8.png b/images/1-8.png new file mode 100644 index 0000000..ae68d7e Binary files /dev/null and b/images/1-8.png differ diff --git a/images/1-9.png b/images/1-9.png new file mode 100644 index 0000000..b599326 Binary files /dev/null and b/images/1-9.png differ diff --git a/images/10-0.png b/images/10-0.png new file mode 100644 index 0000000..05a34de Binary files /dev/null and b/images/10-0.png differ diff --git a/images/10-1.png b/images/10-1.png new file mode 100644 index 0000000..49b1ac5 Binary files /dev/null and b/images/10-1.png differ diff --git a/images/10-10.png b/images/10-10.png new file mode 100644 index 0000000..98e205e Binary files /dev/null and b/images/10-10.png differ diff --git a/images/10-11.png b/images/10-11.png new file mode 100644 index 0000000..3ab728d Binary files /dev/null and b/images/10-11.png differ diff --git a/images/10-12.png b/images/10-12.png new file mode 100644 index 0000000..fb924be Binary files /dev/null and b/images/10-12.png differ diff --git a/images/10-13.png b/images/10-13.png new file mode 100644 index 0000000..b6e84bd Binary files /dev/null and b/images/10-13.png differ diff --git a/images/10-14.png b/images/10-14.png new file mode 100644 index 0000000..a4d48fa Binary files /dev/null and b/images/10-14.png differ diff --git a/images/10-15.png b/images/10-15.png new file mode 100644 index 0000000..92704c1 Binary files /dev/null and b/images/10-15.png differ diff --git a/images/10-16.png b/images/10-16.png new file mode 100644 index 0000000..192e4b2 Binary files /dev/null and b/images/10-16.png differ diff --git a/images/10-17.png b/images/10-17.png new file mode 100644 index 0000000..aaa6b03 Binary files /dev/null and b/images/10-17.png differ diff --git a/images/10-18.png b/images/10-18.png new file mode 100644 index 0000000..02eafc9 Binary files /dev/null and b/images/10-18.png differ diff --git a/images/10-19.png b/images/10-19.png new file mode 100644 index 0000000..47aacd4 Binary files /dev/null and b/images/10-19.png differ diff --git a/images/10-2.png b/images/10-2.png new file mode 100644 index 0000000..1e1fe92 Binary files /dev/null and b/images/10-2.png differ diff --git a/images/10-20.png b/images/10-20.png new file mode 100644 index 0000000..bdcd713 Binary files /dev/null and b/images/10-20.png differ diff --git a/images/10-21.png b/images/10-21.png new file mode 100644 index 0000000..2ee74fa Binary files /dev/null and b/images/10-21.png differ diff --git a/images/10-22.png b/images/10-22.png new file mode 100644 index 0000000..3ebc5de Binary files /dev/null and b/images/10-22.png differ diff --git a/images/10-23.png b/images/10-23.png new file mode 100644 index 0000000..a974dfc Binary files /dev/null and b/images/10-23.png differ diff --git a/images/10-24.png b/images/10-24.png new file mode 100644 index 0000000..625b562 Binary files /dev/null and b/images/10-24.png differ diff --git a/images/10-25.png b/images/10-25.png new file mode 100644 index 0000000..8b7118c Binary files /dev/null and b/images/10-25.png differ diff --git a/images/10-26.png b/images/10-26.png new file mode 100644 index 0000000..782173e Binary files /dev/null and b/images/10-26.png differ diff --git a/images/10-27.png b/images/10-27.png new file mode 100644 index 0000000..db72c9d Binary files /dev/null and b/images/10-27.png differ diff --git a/images/10-28.png b/images/10-28.png new file mode 100644 index 0000000..36fc31b Binary files /dev/null and b/images/10-28.png differ diff --git a/images/10-29.png b/images/10-29.png new file mode 100644 index 0000000..134aaba Binary files /dev/null and b/images/10-29.png differ diff --git a/images/10-3.png b/images/10-3.png new file mode 100644 index 0000000..1f7d40f Binary files /dev/null and b/images/10-3.png differ diff --git a/images/10-30.png b/images/10-30.png new file mode 100644 index 0000000..b7d8540 Binary files /dev/null and b/images/10-30.png differ diff --git a/images/10-31.png b/images/10-31.png new file mode 100644 index 0000000..a735d0b Binary files /dev/null and b/images/10-31.png differ diff --git a/images/10-32.png b/images/10-32.png new file mode 100644 index 0000000..502ec1f Binary files /dev/null and b/images/10-32.png differ diff --git a/images/10-33.png b/images/10-33.png new file mode 100644 index 0000000..9f323af Binary files /dev/null and b/images/10-33.png differ diff --git a/images/10-34.png b/images/10-34.png new file mode 100644 index 0000000..9164143 Binary files /dev/null and b/images/10-34.png differ diff --git a/images/10-35.png b/images/10-35.png new file mode 100644 index 0000000..e09d7ea Binary files /dev/null and b/images/10-35.png differ diff --git a/images/10-36.png b/images/10-36.png new file mode 100644 index 0000000..c48a09f Binary files /dev/null and b/images/10-36.png differ diff --git a/images/10-37.png b/images/10-37.png new file mode 100644 index 0000000..8a8122e Binary files /dev/null and b/images/10-37.png differ diff --git a/images/10-38.png b/images/10-38.png new file mode 100644 index 0000000..2e8fcbb Binary files /dev/null and b/images/10-38.png differ diff --git a/images/10-39.png b/images/10-39.png new file mode 100644 index 0000000..66d9096 Binary files /dev/null and b/images/10-39.png differ diff --git a/images/10-4.png b/images/10-4.png new file mode 100644 index 0000000..81bab0f Binary files /dev/null and b/images/10-4.png differ diff --git a/images/10-40.png b/images/10-40.png new file mode 100644 index 0000000..872ef1e Binary files /dev/null and b/images/10-40.png differ diff --git a/images/10-41.png b/images/10-41.png new file mode 100644 index 0000000..6c2c096 Binary files /dev/null and b/images/10-41.png differ diff --git a/images/10-42.png b/images/10-42.png new file mode 100644 index 0000000..1b0debc Binary files /dev/null and b/images/10-42.png differ diff --git a/images/10-43.png b/images/10-43.png new file mode 100644 index 0000000..6cf5262 Binary files /dev/null and b/images/10-43.png differ diff --git a/images/10-44.png b/images/10-44.png new file mode 100644 index 0000000..23c53fb Binary files /dev/null and b/images/10-44.png differ diff --git a/images/10-45.png b/images/10-45.png new file mode 100644 index 0000000..70526c5 Binary files /dev/null and b/images/10-45.png differ diff --git a/images/10-46.png b/images/10-46.png new file mode 100644 index 0000000..f02742b Binary files /dev/null and b/images/10-46.png differ diff --git a/images/10-47.png b/images/10-47.png new file mode 100644 index 0000000..6770643 Binary files /dev/null and b/images/10-47.png differ diff --git a/images/10-48.png b/images/10-48.png new file mode 100644 index 0000000..7ea52b3 Binary files /dev/null and b/images/10-48.png differ diff --git a/images/10-49.png b/images/10-49.png new file mode 100644 index 0000000..5cedef9 Binary files /dev/null and b/images/10-49.png differ diff --git a/images/10-5.png b/images/10-5.png new file mode 100644 index 0000000..e22c8ba Binary files /dev/null and b/images/10-5.png differ diff --git a/images/10-50.png b/images/10-50.png new file mode 100644 index 0000000..5b61000 Binary files /dev/null and b/images/10-50.png differ diff --git a/images/10-51.png b/images/10-51.png new file mode 100644 index 0000000..4706f11 Binary files /dev/null and b/images/10-51.png differ diff --git a/images/10-52.png b/images/10-52.png new file mode 100644 index 0000000..5daf837 Binary files /dev/null and b/images/10-52.png differ diff --git a/images/10-53.png b/images/10-53.png new file mode 100644 index 0000000..e763c88 Binary files /dev/null and b/images/10-53.png differ diff --git a/images/10-54.png b/images/10-54.png new file mode 100644 index 0000000..fa3f7ed Binary files /dev/null and b/images/10-54.png differ diff --git a/images/10-55.png b/images/10-55.png new file mode 100644 index 0000000..727baf2 Binary files /dev/null and b/images/10-55.png differ diff --git a/images/10-56.png b/images/10-56.png new file mode 100644 index 0000000..cc5e7d6 Binary files /dev/null and b/images/10-56.png differ diff --git a/images/10-57.png b/images/10-57.png new file mode 100644 index 0000000..b38e928 Binary files /dev/null and b/images/10-57.png differ diff --git a/images/10-58.png b/images/10-58.png new file mode 100644 index 0000000..9a27d4d Binary files /dev/null and b/images/10-58.png differ diff --git a/images/10-59.png b/images/10-59.png new file mode 100644 index 0000000..df80259 Binary files /dev/null and b/images/10-59.png differ diff --git a/images/10-6.png b/images/10-6.png new file mode 100644 index 0000000..9581431 Binary files /dev/null and b/images/10-6.png differ diff --git a/images/10-60.png b/images/10-60.png new file mode 100644 index 0000000..5486f9e Binary files /dev/null and b/images/10-60.png differ diff --git a/images/10-61.png b/images/10-61.png new file mode 100644 index 0000000..478edef Binary files /dev/null and b/images/10-61.png differ diff --git a/images/10-62.png b/images/10-62.png new file mode 100644 index 0000000..65b559c Binary files /dev/null and b/images/10-62.png differ diff --git a/images/10-63.png b/images/10-63.png new file mode 100644 index 0000000..fc42949 Binary files /dev/null and b/images/10-63.png differ diff --git a/images/10-64.png b/images/10-64.png new file mode 100644 index 0000000..5336d66 Binary files /dev/null and b/images/10-64.png differ diff --git a/images/10-65.png b/images/10-65.png new file mode 100644 index 0000000..a9d4856 Binary files /dev/null and b/images/10-65.png differ diff --git a/images/10-66.png b/images/10-66.png new file mode 100644 index 0000000..dafa592 Binary files /dev/null and b/images/10-66.png differ diff --git a/images/10-67.png b/images/10-67.png new file mode 100644 index 0000000..1e42d5f Binary files /dev/null and b/images/10-67.png differ diff --git a/images/10-68.png b/images/10-68.png new file mode 100644 index 0000000..5ff5ffb Binary files /dev/null and b/images/10-68.png differ diff --git a/images/10-69.png b/images/10-69.png new file mode 100644 index 0000000..7674a77 Binary files /dev/null and b/images/10-69.png differ diff --git a/images/10-7.png b/images/10-7.png new file mode 100644 index 0000000..f899e3c Binary files /dev/null and b/images/10-7.png differ diff --git a/images/10-70.png b/images/10-70.png new file mode 100644 index 0000000..5b734ab Binary files /dev/null and b/images/10-70.png differ diff --git a/images/10-71.png b/images/10-71.png new file mode 100644 index 0000000..0776945 Binary files /dev/null and b/images/10-71.png differ diff --git a/images/10-8.png b/images/10-8.png new file mode 100644 index 0000000..ebb15b4 Binary files /dev/null and b/images/10-8.png differ diff --git a/images/10-9.png b/images/10-9.png new file mode 100644 index 0000000..60ccf0e Binary files /dev/null and b/images/10-9.png differ diff --git a/images/100-0.png b/images/100-0.png new file mode 100644 index 0000000..de197a1 Binary files /dev/null and b/images/100-0.png differ diff --git a/images/100-1.png b/images/100-1.png new file mode 100644 index 0000000..3ec83cc Binary files /dev/null and b/images/100-1.png differ diff --git a/images/100-10.png b/images/100-10.png new file mode 100644 index 0000000..1e0c451 Binary files /dev/null and b/images/100-10.png differ diff --git a/images/100-11.png b/images/100-11.png new file mode 100644 index 0000000..98c51ef Binary files /dev/null and b/images/100-11.png differ diff --git a/images/100-12.png b/images/100-12.png new file mode 100644 index 0000000..428246a Binary files /dev/null and b/images/100-12.png differ diff --git a/images/100-13.png b/images/100-13.png new file mode 100644 index 0000000..250cb2e Binary files /dev/null and b/images/100-13.png differ diff --git a/images/100-14.png b/images/100-14.png new file mode 100644 index 0000000..688d647 Binary files /dev/null and b/images/100-14.png differ diff --git a/images/100-15.png b/images/100-15.png new file mode 100644 index 0000000..e7eebf3 Binary files /dev/null and b/images/100-15.png differ diff --git a/images/100-16.png b/images/100-16.png new file mode 100644 index 0000000..8d25154 Binary files /dev/null and b/images/100-16.png differ diff --git a/images/100-17.png b/images/100-17.png new file mode 100644 index 0000000..6a92b3c Binary files /dev/null and b/images/100-17.png differ diff --git a/images/100-18.png b/images/100-18.png new file mode 100644 index 0000000..0f44b42 Binary files /dev/null and b/images/100-18.png differ diff --git a/images/100-19.png b/images/100-19.png new file mode 100644 index 0000000..f0ab7ee Binary files /dev/null and b/images/100-19.png differ diff --git a/images/100-2.png b/images/100-2.png new file mode 100644 index 0000000..07f1038 Binary files /dev/null and b/images/100-2.png differ diff --git a/images/100-20.png b/images/100-20.png new file mode 100644 index 0000000..0835180 Binary files /dev/null and b/images/100-20.png differ diff --git a/images/100-21.png b/images/100-21.png new file mode 100644 index 0000000..f1d6fc7 Binary files /dev/null and b/images/100-21.png differ diff --git a/images/100-22.png b/images/100-22.png new file mode 100644 index 0000000..d7f1a7d Binary files /dev/null and b/images/100-22.png differ diff --git a/images/100-23.png b/images/100-23.png new file mode 100644 index 0000000..3cdfdbc Binary files /dev/null and b/images/100-23.png differ diff --git a/images/100-24.png b/images/100-24.png new file mode 100644 index 0000000..58814d5 Binary files /dev/null and b/images/100-24.png differ diff --git a/images/100-25.png b/images/100-25.png new file mode 100644 index 0000000..3709bd2 Binary files /dev/null and b/images/100-25.png differ diff --git a/images/100-26.png b/images/100-26.png new file mode 100644 index 0000000..a6b5854 Binary files /dev/null and b/images/100-26.png differ diff --git a/images/100-3.png b/images/100-3.png new file mode 100644 index 0000000..1e40b7c Binary files /dev/null and b/images/100-3.png differ diff --git a/images/100-4.png b/images/100-4.png new file mode 100644 index 0000000..73afa09 Binary files /dev/null and b/images/100-4.png differ diff --git a/images/100-5.png b/images/100-5.png new file mode 100644 index 0000000..1f848c1 Binary files /dev/null and b/images/100-5.png differ diff --git a/images/100-6.png b/images/100-6.png new file mode 100644 index 0000000..24d8b4e Binary files /dev/null and b/images/100-6.png differ diff --git a/images/100-7.png b/images/100-7.png new file mode 100644 index 0000000..f0de821 Binary files /dev/null and b/images/100-7.png differ diff --git a/images/100-8.png b/images/100-8.png new file mode 100644 index 0000000..643c847 Binary files /dev/null and b/images/100-8.png differ diff --git a/images/100-9.png b/images/100-9.png new file mode 100644 index 0000000..98d95be Binary files /dev/null and b/images/100-9.png differ diff --git a/images/101-0.png b/images/101-0.png new file mode 100644 index 0000000..682420d Binary files /dev/null and b/images/101-0.png differ diff --git a/images/101-1.png b/images/101-1.png new file mode 100644 index 0000000..0c8d662 Binary files /dev/null and b/images/101-1.png differ diff --git a/images/101-2.png b/images/101-2.png new file mode 100644 index 0000000..9f4d24b Binary files /dev/null and b/images/101-2.png differ diff --git a/images/101-3.png b/images/101-3.png new file mode 100644 index 0000000..772bec4 Binary files /dev/null and b/images/101-3.png differ diff --git a/images/101-4.png b/images/101-4.png new file mode 100644 index 0000000..8fd44fe Binary files /dev/null and b/images/101-4.png differ diff --git a/images/101-5.png b/images/101-5.png new file mode 100644 index 0000000..da03f18 Binary files /dev/null and b/images/101-5.png differ diff --git a/images/101-6.png b/images/101-6.png new file mode 100644 index 0000000..01d1ea8 Binary files /dev/null and b/images/101-6.png differ diff --git a/images/102-0.png b/images/102-0.png new file mode 100644 index 0000000..5e3e263 Binary files /dev/null and b/images/102-0.png differ diff --git a/images/102-1.png b/images/102-1.png new file mode 100644 index 0000000..6c29732 Binary files /dev/null and b/images/102-1.png differ diff --git a/images/102-2.png b/images/102-2.png new file mode 100644 index 0000000..3d89dcc Binary files /dev/null and b/images/102-2.png differ diff --git a/images/102-3.png b/images/102-3.png new file mode 100644 index 0000000..88906fb Binary files /dev/null and b/images/102-3.png differ diff --git a/images/102-4.png b/images/102-4.png new file mode 100644 index 0000000..59b5b5e Binary files /dev/null and b/images/102-4.png differ diff --git a/images/102-5.png b/images/102-5.png new file mode 100644 index 0000000..9b0d90a Binary files /dev/null and b/images/102-5.png differ diff --git a/images/103-0.png b/images/103-0.png new file mode 100644 index 0000000..cffbd8f Binary files /dev/null and b/images/103-0.png differ diff --git a/images/103-1.png b/images/103-1.png new file mode 100644 index 0000000..7f0df9c Binary files /dev/null and b/images/103-1.png differ diff --git a/images/103-2.png b/images/103-2.png new file mode 100644 index 0000000..be44e37 Binary files /dev/null and b/images/103-2.png differ diff --git a/images/103-3.png b/images/103-3.png new file mode 100644 index 0000000..8a1daa3 Binary files /dev/null and b/images/103-3.png differ diff --git a/images/103-4.png b/images/103-4.png new file mode 100644 index 0000000..22fd7c3 Binary files /dev/null and b/images/103-4.png differ diff --git a/images/103-5.png b/images/103-5.png new file mode 100644 index 0000000..a458b57 Binary files /dev/null and b/images/103-5.png differ diff --git a/images/103-6.png b/images/103-6.png new file mode 100644 index 0000000..5fcb3cc Binary files /dev/null and b/images/103-6.png differ diff --git a/images/104-0.png b/images/104-0.png new file mode 100644 index 0000000..6c9449a Binary files /dev/null and b/images/104-0.png differ diff --git a/images/104-1.png b/images/104-1.png new file mode 100644 index 0000000..d26d85a Binary files /dev/null and b/images/104-1.png differ diff --git a/images/104-2.png b/images/104-2.png new file mode 100644 index 0000000..5c89292 Binary files /dev/null and b/images/104-2.png differ diff --git a/images/104-3.png b/images/104-3.png new file mode 100644 index 0000000..6887bc0 Binary files /dev/null and b/images/104-3.png differ diff --git a/images/104-4.png b/images/104-4.png new file mode 100644 index 0000000..41e0de2 Binary files /dev/null and b/images/104-4.png differ diff --git a/images/104-5.png b/images/104-5.png new file mode 100644 index 0000000..d0b5cb2 Binary files /dev/null and b/images/104-5.png differ diff --git a/images/104-6.png b/images/104-6.png new file mode 100644 index 0000000..aaf456f Binary files /dev/null and b/images/104-6.png differ diff --git a/images/105-0.png b/images/105-0.png new file mode 100644 index 0000000..ee60ed4 Binary files /dev/null and b/images/105-0.png differ diff --git a/images/105-1.png b/images/105-1.png new file mode 100644 index 0000000..d448e88 Binary files /dev/null and b/images/105-1.png differ diff --git a/images/105-2.png b/images/105-2.png new file mode 100644 index 0000000..769e4bb Binary files /dev/null and b/images/105-2.png differ diff --git a/images/105-3.png b/images/105-3.png new file mode 100644 index 0000000..5ea4f06 Binary files /dev/null and b/images/105-3.png differ diff --git a/images/105-4.png b/images/105-4.png new file mode 100644 index 0000000..e4ed1bc Binary files /dev/null and b/images/105-4.png differ diff --git a/images/105-5.png b/images/105-5.png new file mode 100644 index 0000000..c374e06 Binary files /dev/null and b/images/105-5.png differ diff --git a/images/105-6.png b/images/105-6.png new file mode 100644 index 0000000..7c004d7 Binary files /dev/null and b/images/105-6.png differ diff --git a/images/106-0.png b/images/106-0.png new file mode 100644 index 0000000..a93a16e Binary files /dev/null and b/images/106-0.png differ diff --git a/images/106-1.png b/images/106-1.png new file mode 100644 index 0000000..f0ea848 Binary files /dev/null and b/images/106-1.png differ diff --git a/images/106-10.png b/images/106-10.png new file mode 100644 index 0000000..3b7b730 Binary files /dev/null and b/images/106-10.png differ diff --git a/images/106-11.png b/images/106-11.png new file mode 100644 index 0000000..eddf649 Binary files /dev/null and b/images/106-11.png differ diff --git a/images/106-12.png b/images/106-12.png new file mode 100644 index 0000000..c63eb71 Binary files /dev/null and b/images/106-12.png differ diff --git a/images/106-13.png b/images/106-13.png new file mode 100644 index 0000000..e0a187f Binary files /dev/null and b/images/106-13.png differ diff --git a/images/106-14.png b/images/106-14.png new file mode 100644 index 0000000..82614cb Binary files /dev/null and b/images/106-14.png differ diff --git a/images/106-15.png b/images/106-15.png new file mode 100644 index 0000000..84b0f0a Binary files /dev/null and b/images/106-15.png differ diff --git a/images/106-16.png b/images/106-16.png new file mode 100644 index 0000000..118a390 Binary files /dev/null and b/images/106-16.png differ diff --git a/images/106-17.png b/images/106-17.png new file mode 100644 index 0000000..5ad0221 Binary files /dev/null and b/images/106-17.png differ diff --git a/images/106-18.png b/images/106-18.png new file mode 100644 index 0000000..f32d804 Binary files /dev/null and b/images/106-18.png differ diff --git a/images/106-19.png b/images/106-19.png new file mode 100644 index 0000000..6742de5 Binary files /dev/null and b/images/106-19.png differ diff --git a/images/106-2.png b/images/106-2.png new file mode 100644 index 0000000..fff81cb Binary files /dev/null and b/images/106-2.png differ diff --git a/images/106-3.png b/images/106-3.png new file mode 100644 index 0000000..c1b165e Binary files /dev/null and b/images/106-3.png differ diff --git a/images/106-4.png b/images/106-4.png new file mode 100644 index 0000000..b774c0e Binary files /dev/null and b/images/106-4.png differ diff --git a/images/106-5.png b/images/106-5.png new file mode 100644 index 0000000..3f87ea4 Binary files /dev/null and b/images/106-5.png differ diff --git a/images/106-6.png b/images/106-6.png new file mode 100644 index 0000000..5903d23 Binary files /dev/null and b/images/106-6.png differ diff --git a/images/106-7.png b/images/106-7.png new file mode 100644 index 0000000..8903ed2 Binary files /dev/null and b/images/106-7.png differ diff --git a/images/106-8.png b/images/106-8.png new file mode 100644 index 0000000..e839d7b Binary files /dev/null and b/images/106-8.png differ diff --git a/images/106-9.png b/images/106-9.png new file mode 100644 index 0000000..406ddbc Binary files /dev/null and b/images/106-9.png differ diff --git a/images/107-0.png b/images/107-0.png new file mode 100644 index 0000000..9f7ec8f Binary files /dev/null and b/images/107-0.png differ diff --git a/images/107-1.png b/images/107-1.png new file mode 100644 index 0000000..42018f8 Binary files /dev/null and b/images/107-1.png differ diff --git a/images/107-2.png b/images/107-2.png new file mode 100644 index 0000000..03cf490 Binary files /dev/null and b/images/107-2.png differ diff --git a/images/107-3.png b/images/107-3.png new file mode 100644 index 0000000..8009ac5 Binary files /dev/null and b/images/107-3.png differ diff --git a/images/107-4.png b/images/107-4.png new file mode 100644 index 0000000..d87931e Binary files /dev/null and b/images/107-4.png differ diff --git a/images/107-5.png b/images/107-5.png new file mode 100644 index 0000000..0cd843e Binary files /dev/null and b/images/107-5.png differ diff --git a/images/107-6.png b/images/107-6.png new file mode 100644 index 0000000..968e6a0 Binary files /dev/null and b/images/107-6.png differ diff --git a/images/107-7.png b/images/107-7.png new file mode 100644 index 0000000..6c681de Binary files /dev/null and b/images/107-7.png differ diff --git a/images/107-8.png b/images/107-8.png new file mode 100644 index 0000000..daa0340 Binary files /dev/null and b/images/107-8.png differ diff --git a/images/108-0.png b/images/108-0.png new file mode 100644 index 0000000..261094c Binary files /dev/null and b/images/108-0.png differ diff --git a/images/108-1.png b/images/108-1.png new file mode 100644 index 0000000..f957e65 Binary files /dev/null and b/images/108-1.png differ diff --git a/images/108-2.png b/images/108-2.png new file mode 100644 index 0000000..4d7b711 Binary files /dev/null and b/images/108-2.png differ diff --git a/images/108-3.png b/images/108-3.png new file mode 100644 index 0000000..b56ff07 Binary files /dev/null and b/images/108-3.png differ diff --git a/images/108-4.png b/images/108-4.png new file mode 100644 index 0000000..bb87003 Binary files /dev/null and b/images/108-4.png differ diff --git a/images/108-5.png b/images/108-5.png new file mode 100644 index 0000000..2b4b0e2 Binary files /dev/null and b/images/108-5.png differ diff --git a/images/108-6.png b/images/108-6.png new file mode 100644 index 0000000..20c4774 Binary files /dev/null and b/images/108-6.png differ diff --git a/images/109-0.png b/images/109-0.png new file mode 100644 index 0000000..8a8a714 Binary files /dev/null and b/images/109-0.png differ diff --git a/images/109-1.png b/images/109-1.png new file mode 100644 index 0000000..2c839d5 Binary files /dev/null and b/images/109-1.png differ diff --git a/images/109-10.png b/images/109-10.png new file mode 100644 index 0000000..0aaf643 Binary files /dev/null and b/images/109-10.png differ diff --git a/images/109-11.png b/images/109-11.png new file mode 100644 index 0000000..f69dead Binary files /dev/null and b/images/109-11.png differ diff --git a/images/109-12.png b/images/109-12.png new file mode 100644 index 0000000..d292953 Binary files /dev/null and b/images/109-12.png differ diff --git a/images/109-2.png b/images/109-2.png new file mode 100644 index 0000000..0b79581 Binary files /dev/null and b/images/109-2.png differ diff --git a/images/109-3.png b/images/109-3.png new file mode 100644 index 0000000..1b65cdb Binary files /dev/null and b/images/109-3.png differ diff --git a/images/109-4.png b/images/109-4.png new file mode 100644 index 0000000..cf5baeb Binary files /dev/null and b/images/109-4.png differ diff --git a/images/109-5.png b/images/109-5.png new file mode 100644 index 0000000..1cbf4a0 Binary files /dev/null and b/images/109-5.png differ diff --git a/images/109-6.png b/images/109-6.png new file mode 100644 index 0000000..764b813 Binary files /dev/null and b/images/109-6.png differ diff --git a/images/109-7.png b/images/109-7.png new file mode 100644 index 0000000..d02bcb6 Binary files /dev/null and b/images/109-7.png differ diff --git a/images/109-8.png b/images/109-8.png new file mode 100644 index 0000000..200eca5 Binary files /dev/null and b/images/109-8.png differ diff --git a/images/109-9.png b/images/109-9.png new file mode 100644 index 0000000..c6a2869 Binary files /dev/null and b/images/109-9.png differ diff --git a/images/11-0.png b/images/11-0.png new file mode 100644 index 0000000..6b04468 Binary files /dev/null and b/images/11-0.png differ diff --git a/images/11-1.png b/images/11-1.png new file mode 100644 index 0000000..fd5e90e Binary files /dev/null and b/images/11-1.png differ diff --git a/images/11-10.png b/images/11-10.png new file mode 100644 index 0000000..c2583db Binary files /dev/null and b/images/11-10.png differ diff --git a/images/11-11.png b/images/11-11.png new file mode 100644 index 0000000..e6d4c54 Binary files /dev/null and b/images/11-11.png differ diff --git a/images/11-12.png b/images/11-12.png new file mode 100644 index 0000000..c82af81 Binary files /dev/null and b/images/11-12.png differ diff --git a/images/11-13.png b/images/11-13.png new file mode 100644 index 0000000..ce60334 Binary files /dev/null and b/images/11-13.png differ diff --git a/images/11-14.png b/images/11-14.png new file mode 100644 index 0000000..63c7002 Binary files /dev/null and b/images/11-14.png differ diff --git a/images/11-15.png b/images/11-15.png new file mode 100644 index 0000000..f00cc60 Binary files /dev/null and b/images/11-15.png differ diff --git a/images/11-2.png b/images/11-2.png new file mode 100644 index 0000000..fdf45d8 Binary files /dev/null and b/images/11-2.png differ diff --git a/images/11-3.png b/images/11-3.png new file mode 100644 index 0000000..8e71e76 Binary files /dev/null and b/images/11-3.png differ diff --git a/images/11-4.png b/images/11-4.png new file mode 100644 index 0000000..e7ce630 Binary files /dev/null and b/images/11-4.png differ diff --git a/images/11-5.png b/images/11-5.png new file mode 100644 index 0000000..6540688 Binary files /dev/null and b/images/11-5.png differ diff --git a/images/11-6.png b/images/11-6.png new file mode 100644 index 0000000..1efc10d Binary files /dev/null and b/images/11-6.png differ diff --git a/images/11-7.png b/images/11-7.png new file mode 100644 index 0000000..8d72c74 Binary files /dev/null and b/images/11-7.png differ diff --git a/images/11-8.png b/images/11-8.png new file mode 100644 index 0000000..417754e Binary files /dev/null and b/images/11-8.png differ diff --git a/images/11-9.png b/images/11-9.png new file mode 100644 index 0000000..5b46403 Binary files /dev/null and b/images/11-9.png differ diff --git a/images/110-0.png b/images/110-0.png new file mode 100644 index 0000000..d09a7b6 Binary files /dev/null and b/images/110-0.png differ diff --git a/images/110-1.png b/images/110-1.png new file mode 100644 index 0000000..3ecaf6c Binary files /dev/null and b/images/110-1.png differ diff --git a/images/110-10.png b/images/110-10.png new file mode 100644 index 0000000..a648a0b Binary files /dev/null and b/images/110-10.png differ diff --git a/images/110-2.png b/images/110-2.png new file mode 100644 index 0000000..f433804 Binary files /dev/null and b/images/110-2.png differ diff --git a/images/110-3.png b/images/110-3.png new file mode 100644 index 0000000..e7056c3 Binary files /dev/null and b/images/110-3.png differ diff --git a/images/110-4.png b/images/110-4.png new file mode 100644 index 0000000..f1d1646 Binary files /dev/null and b/images/110-4.png differ diff --git a/images/110-5.png b/images/110-5.png new file mode 100644 index 0000000..d3e245d Binary files /dev/null and b/images/110-5.png differ diff --git a/images/110-6.png b/images/110-6.png new file mode 100644 index 0000000..bd3aefe Binary files /dev/null and b/images/110-6.png differ diff --git a/images/110-7.png b/images/110-7.png new file mode 100644 index 0000000..d51c5a1 Binary files /dev/null and b/images/110-7.png differ diff --git a/images/110-8.png b/images/110-8.png new file mode 100644 index 0000000..78caeaa Binary files /dev/null and b/images/110-8.png differ diff --git a/images/110-9.png b/images/110-9.png new file mode 100644 index 0000000..105ae95 Binary files /dev/null and b/images/110-9.png differ diff --git a/images/111-0.png b/images/111-0.png new file mode 100644 index 0000000..1cceb32 Binary files /dev/null and b/images/111-0.png differ diff --git a/images/111-1.png b/images/111-1.png new file mode 100644 index 0000000..d6baebc Binary files /dev/null and b/images/111-1.png differ diff --git a/images/111-2.png b/images/111-2.png new file mode 100644 index 0000000..196165d Binary files /dev/null and b/images/111-2.png differ diff --git a/images/111-3.png b/images/111-3.png new file mode 100644 index 0000000..4ed6aa7 Binary files /dev/null and b/images/111-3.png differ diff --git a/images/111-4.png b/images/111-4.png new file mode 100644 index 0000000..68a0a86 Binary files /dev/null and b/images/111-4.png differ diff --git a/images/111-5.png b/images/111-5.png new file mode 100644 index 0000000..b382d2b Binary files /dev/null and b/images/111-5.png differ diff --git a/images/111-6.png b/images/111-6.png new file mode 100644 index 0000000..08dba68 Binary files /dev/null and b/images/111-6.png differ diff --git a/images/111-7.png b/images/111-7.png new file mode 100644 index 0000000..d3d1c9e Binary files /dev/null and b/images/111-7.png differ diff --git a/images/111-8.png b/images/111-8.png new file mode 100644 index 0000000..5f85010 Binary files /dev/null and b/images/111-8.png differ diff --git a/images/111-9.png b/images/111-9.png new file mode 100644 index 0000000..0d837df Binary files /dev/null and b/images/111-9.png differ diff --git a/images/112-0.png b/images/112-0.png new file mode 100644 index 0000000..976a8f6 Binary files /dev/null and b/images/112-0.png differ diff --git a/images/112-1.png b/images/112-1.png new file mode 100644 index 0000000..4c68604 Binary files /dev/null and b/images/112-1.png differ diff --git a/images/112-2.png b/images/112-2.png new file mode 100644 index 0000000..c2e3a67 Binary files /dev/null and b/images/112-2.png differ diff --git a/images/112-3.png b/images/112-3.png new file mode 100644 index 0000000..e26cc10 Binary files /dev/null and b/images/112-3.png differ diff --git a/images/112-4.png b/images/112-4.png new file mode 100644 index 0000000..08f0cdd Binary files /dev/null and b/images/112-4.png differ diff --git a/images/112-5.png b/images/112-5.png new file mode 100644 index 0000000..d88763f Binary files /dev/null and b/images/112-5.png differ diff --git a/images/112-6.png b/images/112-6.png new file mode 100644 index 0000000..0b22c4a Binary files /dev/null and b/images/112-6.png differ diff --git a/images/112-7.png b/images/112-7.png new file mode 100644 index 0000000..e7498f4 Binary files /dev/null and b/images/112-7.png differ diff --git a/images/113-0.png b/images/113-0.png new file mode 100644 index 0000000..f8756c4 Binary files /dev/null and b/images/113-0.png differ diff --git a/images/113-1.png b/images/113-1.png new file mode 100644 index 0000000..d3318ba Binary files /dev/null and b/images/113-1.png differ diff --git a/images/113-2.png b/images/113-2.png new file mode 100644 index 0000000..b334af5 Binary files /dev/null and b/images/113-2.png differ diff --git a/images/113-3.png b/images/113-3.png new file mode 100644 index 0000000..4f119ed Binary files /dev/null and b/images/113-3.png differ diff --git a/images/113-4.png b/images/113-4.png new file mode 100644 index 0000000..1faf3f2 Binary files /dev/null and b/images/113-4.png differ diff --git a/images/113-5.png b/images/113-5.png new file mode 100644 index 0000000..4443793 Binary files /dev/null and b/images/113-5.png differ diff --git a/images/114-0.png b/images/114-0.png new file mode 100644 index 0000000..3c983bf Binary files /dev/null and b/images/114-0.png differ diff --git a/images/114-1.png b/images/114-1.png new file mode 100644 index 0000000..ec9a2a6 Binary files /dev/null and b/images/114-1.png differ diff --git a/images/114-2.png b/images/114-2.png new file mode 100644 index 0000000..4f07222 Binary files /dev/null and b/images/114-2.png differ diff --git a/images/114-3.png b/images/114-3.png new file mode 100644 index 0000000..3d7c12c Binary files /dev/null and b/images/114-3.png differ diff --git a/images/114-4.png b/images/114-4.png new file mode 100644 index 0000000..79c87ca Binary files /dev/null and b/images/114-4.png differ diff --git a/images/114-5.png b/images/114-5.png new file mode 100644 index 0000000..dcdd85d Binary files /dev/null and b/images/114-5.png differ diff --git a/images/114-6.png b/images/114-6.png new file mode 100644 index 0000000..8b33ed1 Binary files /dev/null and b/images/114-6.png differ diff --git a/images/114-7.png b/images/114-7.png new file mode 100644 index 0000000..1795ee3 Binary files /dev/null and b/images/114-7.png differ diff --git a/images/115-0.png b/images/115-0.png new file mode 100644 index 0000000..667f5cd Binary files /dev/null and b/images/115-0.png differ diff --git a/images/115-1.png b/images/115-1.png new file mode 100644 index 0000000..4ab6289 Binary files /dev/null and b/images/115-1.png differ diff --git a/images/115-2.png b/images/115-2.png new file mode 100644 index 0000000..ea67049 Binary files /dev/null and b/images/115-2.png differ diff --git a/images/115-3.png b/images/115-3.png new file mode 100644 index 0000000..1c332dc Binary files /dev/null and b/images/115-3.png differ diff --git a/images/115-4.png b/images/115-4.png new file mode 100644 index 0000000..c294db5 Binary files /dev/null and b/images/115-4.png differ diff --git a/images/115-5.png b/images/115-5.png new file mode 100644 index 0000000..8cbf268 Binary files /dev/null and b/images/115-5.png differ diff --git a/images/115-6.png b/images/115-6.png new file mode 100644 index 0000000..9fe0457 Binary files /dev/null and b/images/115-6.png differ diff --git a/images/116-0.png b/images/116-0.png new file mode 100644 index 0000000..e88146d Binary files /dev/null and b/images/116-0.png differ diff --git a/images/116-1.png b/images/116-1.png new file mode 100644 index 0000000..f84cbcf Binary files /dev/null and b/images/116-1.png differ diff --git a/images/116-2.png b/images/116-2.png new file mode 100644 index 0000000..e7ef90f Binary files /dev/null and b/images/116-2.png differ diff --git a/images/116-3.png b/images/116-3.png new file mode 100644 index 0000000..ed20978 Binary files /dev/null and b/images/116-3.png differ diff --git a/images/116-4.png b/images/116-4.png new file mode 100644 index 0000000..86486c6 Binary files /dev/null and b/images/116-4.png differ diff --git a/images/116-5.png b/images/116-5.png new file mode 100644 index 0000000..eb6b3ff Binary files /dev/null and b/images/116-5.png differ diff --git a/images/116-6.png b/images/116-6.png new file mode 100644 index 0000000..29de8c6 Binary files /dev/null and b/images/116-6.png differ diff --git a/images/117-0.png b/images/117-0.png new file mode 100644 index 0000000..bd41a4f Binary files /dev/null and b/images/117-0.png differ diff --git a/images/117-1.png b/images/117-1.png new file mode 100644 index 0000000..787e2ce Binary files /dev/null and b/images/117-1.png differ diff --git a/images/117-10.png b/images/117-10.png new file mode 100644 index 0000000..2e411ac Binary files /dev/null and b/images/117-10.png differ diff --git a/images/117-11.png b/images/117-11.png new file mode 100644 index 0000000..06627cd Binary files /dev/null and b/images/117-11.png differ diff --git a/images/117-12.png b/images/117-12.png new file mode 100644 index 0000000..4ee7dc1 Binary files /dev/null and b/images/117-12.png differ diff --git a/images/117-13.png b/images/117-13.png new file mode 100644 index 0000000..c95c6f5 Binary files /dev/null and b/images/117-13.png differ diff --git a/images/117-2.png b/images/117-2.png new file mode 100644 index 0000000..21d649f Binary files /dev/null and b/images/117-2.png differ diff --git a/images/117-3.png b/images/117-3.png new file mode 100644 index 0000000..abdae78 Binary files /dev/null and b/images/117-3.png differ diff --git a/images/117-4.png b/images/117-4.png new file mode 100644 index 0000000..87a056e Binary files /dev/null and b/images/117-4.png differ diff --git a/images/117-5.png b/images/117-5.png new file mode 100644 index 0000000..f31b81d Binary files /dev/null and b/images/117-5.png differ diff --git a/images/117-6.png b/images/117-6.png new file mode 100644 index 0000000..ee8c69e Binary files /dev/null and b/images/117-6.png differ diff --git a/images/117-7.png b/images/117-7.png new file mode 100644 index 0000000..defd31e Binary files /dev/null and b/images/117-7.png differ diff --git a/images/117-8.png b/images/117-8.png new file mode 100644 index 0000000..1fa08f3 Binary files /dev/null and b/images/117-8.png differ diff --git a/images/117-9.png b/images/117-9.png new file mode 100644 index 0000000..3d5e2a7 Binary files /dev/null and b/images/117-9.png differ diff --git a/images/118-0.png b/images/118-0.png new file mode 100644 index 0000000..75a0723 Binary files /dev/null and b/images/118-0.png differ diff --git a/images/118-1.png b/images/118-1.png new file mode 100644 index 0000000..7199eb9 Binary files /dev/null and b/images/118-1.png differ diff --git a/images/118-2.png b/images/118-2.png new file mode 100644 index 0000000..124d356 Binary files /dev/null and b/images/118-2.png differ diff --git a/images/118-3.png b/images/118-3.png new file mode 100644 index 0000000..a34af6a Binary files /dev/null and b/images/118-3.png differ diff --git a/images/118-4.png b/images/118-4.png new file mode 100644 index 0000000..e339731 Binary files /dev/null and b/images/118-4.png differ diff --git a/images/118-5.png b/images/118-5.png new file mode 100644 index 0000000..942acec Binary files /dev/null and b/images/118-5.png differ diff --git a/images/119-0.png b/images/119-0.png new file mode 100644 index 0000000..6f4bb99 Binary files /dev/null and b/images/119-0.png differ diff --git a/images/119-1.png b/images/119-1.png new file mode 100644 index 0000000..8e045a7 Binary files /dev/null and b/images/119-1.png differ diff --git a/images/119-2.png b/images/119-2.png new file mode 100644 index 0000000..c29eb6f Binary files /dev/null and b/images/119-2.png differ diff --git a/images/119-3.png b/images/119-3.png new file mode 100644 index 0000000..2e285a5 Binary files /dev/null and b/images/119-3.png differ diff --git a/images/119-4.png b/images/119-4.png new file mode 100644 index 0000000..1a8654a Binary files /dev/null and b/images/119-4.png differ diff --git a/images/119-5.png b/images/119-5.png new file mode 100644 index 0000000..2863913 Binary files /dev/null and b/images/119-5.png differ diff --git a/images/119-6.png b/images/119-6.png new file mode 100644 index 0000000..2a81672 Binary files /dev/null and b/images/119-6.png differ diff --git a/images/119-7.png b/images/119-7.png new file mode 100644 index 0000000..b77bd39 Binary files /dev/null and b/images/119-7.png differ diff --git a/images/119-8.png b/images/119-8.png new file mode 100644 index 0000000..7b7d7b6 Binary files /dev/null and b/images/119-8.png differ diff --git a/images/12-0.png b/images/12-0.png new file mode 100644 index 0000000..25918ee Binary files /dev/null and b/images/12-0.png differ diff --git a/images/12-1.png b/images/12-1.png new file mode 100644 index 0000000..ea92165 Binary files /dev/null and b/images/12-1.png differ diff --git a/images/12-10.png b/images/12-10.png new file mode 100644 index 0000000..c46e53f Binary files /dev/null and b/images/12-10.png differ diff --git a/images/12-11.png b/images/12-11.png new file mode 100644 index 0000000..595d13d Binary files /dev/null and b/images/12-11.png differ diff --git a/images/12-12.png b/images/12-12.png new file mode 100644 index 0000000..f3efcc8 Binary files /dev/null and b/images/12-12.png differ diff --git a/images/12-13.png b/images/12-13.png new file mode 100644 index 0000000..542620d Binary files /dev/null and b/images/12-13.png differ diff --git a/images/12-14.png b/images/12-14.png new file mode 100644 index 0000000..8c9821d Binary files /dev/null and b/images/12-14.png differ diff --git a/images/12-15.png b/images/12-15.png new file mode 100644 index 0000000..17a77b1 Binary files /dev/null and b/images/12-15.png differ diff --git a/images/12-16.png b/images/12-16.png new file mode 100644 index 0000000..ba62e4f Binary files /dev/null and b/images/12-16.png differ diff --git a/images/12-2.png b/images/12-2.png new file mode 100644 index 0000000..d225f9c Binary files /dev/null and b/images/12-2.png differ diff --git a/images/12-3.png b/images/12-3.png new file mode 100644 index 0000000..b7e8afe Binary files /dev/null and b/images/12-3.png differ diff --git a/images/12-4.png b/images/12-4.png new file mode 100644 index 0000000..2c9b432 Binary files /dev/null and b/images/12-4.png differ diff --git a/images/12-5.png b/images/12-5.png new file mode 100644 index 0000000..f16dc47 Binary files /dev/null and b/images/12-5.png differ diff --git a/images/12-6.png b/images/12-6.png new file mode 100644 index 0000000..7c452b3 Binary files /dev/null and b/images/12-6.png differ diff --git a/images/12-7.png b/images/12-7.png new file mode 100644 index 0000000..d6cd51e Binary files /dev/null and b/images/12-7.png differ diff --git a/images/12-8.png b/images/12-8.png new file mode 100644 index 0000000..8dee818 Binary files /dev/null and b/images/12-8.png differ diff --git a/images/12-9.png b/images/12-9.png new file mode 100644 index 0000000..4de7f61 Binary files /dev/null and b/images/12-9.png differ diff --git a/images/120-0.png b/images/120-0.png new file mode 100644 index 0000000..78c59df Binary files /dev/null and b/images/120-0.png differ diff --git a/images/120-1.png b/images/120-1.png new file mode 100644 index 0000000..01f3eaf Binary files /dev/null and b/images/120-1.png differ diff --git a/images/120-2.png b/images/120-2.png new file mode 100644 index 0000000..4e3227a Binary files /dev/null and b/images/120-2.png differ diff --git a/images/120-3.png b/images/120-3.png new file mode 100644 index 0000000..e2a5fde Binary files /dev/null and b/images/120-3.png differ diff --git a/images/120-4.png b/images/120-4.png new file mode 100644 index 0000000..e58318d Binary files /dev/null and b/images/120-4.png differ diff --git a/images/120-5.png b/images/120-5.png new file mode 100644 index 0000000..ec12a85 Binary files /dev/null and b/images/120-5.png differ diff --git a/images/120-6.png b/images/120-6.png new file mode 100644 index 0000000..36152d6 Binary files /dev/null and b/images/120-6.png differ diff --git a/images/120-7.png b/images/120-7.png new file mode 100644 index 0000000..2751a2c Binary files /dev/null and b/images/120-7.png differ diff --git a/images/121-0.png b/images/121-0.png new file mode 100644 index 0000000..a8bb740 Binary files /dev/null and b/images/121-0.png differ diff --git a/images/121-1.png b/images/121-1.png new file mode 100644 index 0000000..a9ef952 Binary files /dev/null and b/images/121-1.png differ diff --git a/images/121-10.png b/images/121-10.png new file mode 100644 index 0000000..9f80d68 Binary files /dev/null and b/images/121-10.png differ diff --git a/images/121-2.png b/images/121-2.png new file mode 100644 index 0000000..39794ac Binary files /dev/null and b/images/121-2.png differ diff --git a/images/121-3.png b/images/121-3.png new file mode 100644 index 0000000..faa51c1 Binary files /dev/null and b/images/121-3.png differ diff --git a/images/121-4.png b/images/121-4.png new file mode 100644 index 0000000..c3e391e Binary files /dev/null and b/images/121-4.png differ diff --git a/images/121-5.png b/images/121-5.png new file mode 100644 index 0000000..f0f0aa8 Binary files /dev/null and b/images/121-5.png differ diff --git a/images/121-6.png b/images/121-6.png new file mode 100644 index 0000000..afa7eca Binary files /dev/null and b/images/121-6.png differ diff --git a/images/121-7.png b/images/121-7.png new file mode 100644 index 0000000..1e8fced Binary files /dev/null and b/images/121-7.png differ diff --git a/images/121-8.png b/images/121-8.png new file mode 100644 index 0000000..cc9430e Binary files /dev/null and b/images/121-8.png differ diff --git a/images/121-9.png b/images/121-9.png new file mode 100644 index 0000000..d24eda8 Binary files /dev/null and b/images/121-9.png differ diff --git a/images/122-0.png b/images/122-0.png new file mode 100644 index 0000000..35ab16e Binary files /dev/null and b/images/122-0.png differ diff --git a/images/122-1.png b/images/122-1.png new file mode 100644 index 0000000..b4bf090 Binary files /dev/null and b/images/122-1.png differ diff --git a/images/122-2.png b/images/122-2.png new file mode 100644 index 0000000..0abe0b9 Binary files /dev/null and b/images/122-2.png differ diff --git a/images/122-3.png b/images/122-3.png new file mode 100644 index 0000000..66725fd Binary files /dev/null and b/images/122-3.png differ diff --git a/images/122-4.png b/images/122-4.png new file mode 100644 index 0000000..f5e4822 Binary files /dev/null and b/images/122-4.png differ diff --git a/images/122-5.png b/images/122-5.png new file mode 100644 index 0000000..720afc4 Binary files /dev/null and b/images/122-5.png differ diff --git a/images/122-6.png b/images/122-6.png new file mode 100644 index 0000000..2c5d984 Binary files /dev/null and b/images/122-6.png differ diff --git a/images/122-7.png b/images/122-7.png new file mode 100644 index 0000000..d17bd06 Binary files /dev/null and b/images/122-7.png differ diff --git a/images/123-0.png b/images/123-0.png new file mode 100644 index 0000000..0ef1667 Binary files /dev/null and b/images/123-0.png differ diff --git a/images/123-1.png b/images/123-1.png new file mode 100644 index 0000000..4a9f23d Binary files /dev/null and b/images/123-1.png differ diff --git a/images/123-10.png b/images/123-10.png new file mode 100644 index 0000000..d6c03c6 Binary files /dev/null and b/images/123-10.png differ diff --git a/images/123-11.png b/images/123-11.png new file mode 100644 index 0000000..d2e25cf Binary files /dev/null and b/images/123-11.png differ diff --git a/images/123-2.png b/images/123-2.png new file mode 100644 index 0000000..11b70b2 Binary files /dev/null and b/images/123-2.png differ diff --git a/images/123-3.png b/images/123-3.png new file mode 100644 index 0000000..e362161 Binary files /dev/null and b/images/123-3.png differ diff --git a/images/123-4.png b/images/123-4.png new file mode 100644 index 0000000..3e5a83e Binary files /dev/null and b/images/123-4.png differ diff --git a/images/123-5.png b/images/123-5.png new file mode 100644 index 0000000..ada440e Binary files /dev/null and b/images/123-5.png differ diff --git a/images/123-6.png b/images/123-6.png new file mode 100644 index 0000000..bc65db4 Binary files /dev/null and b/images/123-6.png differ diff --git a/images/123-7.png b/images/123-7.png new file mode 100644 index 0000000..7c5f271 Binary files /dev/null and b/images/123-7.png differ diff --git a/images/123-8.png b/images/123-8.png new file mode 100644 index 0000000..da4d573 Binary files /dev/null and b/images/123-8.png differ diff --git a/images/123-9.png b/images/123-9.png new file mode 100644 index 0000000..a003532 Binary files /dev/null and b/images/123-9.png differ diff --git a/images/13-0.png b/images/13-0.png new file mode 100644 index 0000000..93538b0 Binary files /dev/null and b/images/13-0.png differ diff --git a/images/13-1.png b/images/13-1.png new file mode 100644 index 0000000..fd2d7c3 Binary files /dev/null and b/images/13-1.png differ diff --git a/images/13-10.png b/images/13-10.png new file mode 100644 index 0000000..e6bd5e1 Binary files /dev/null and b/images/13-10.png differ diff --git a/images/13-11.png b/images/13-11.png new file mode 100644 index 0000000..3abc80d Binary files /dev/null and b/images/13-11.png differ diff --git a/images/13-12.png b/images/13-12.png new file mode 100644 index 0000000..8efe7ea Binary files /dev/null and b/images/13-12.png differ diff --git a/images/13-13.png b/images/13-13.png new file mode 100644 index 0000000..ed377e3 Binary files /dev/null and b/images/13-13.png differ diff --git a/images/13-14.png b/images/13-14.png new file mode 100644 index 0000000..8035c14 Binary files /dev/null and b/images/13-14.png differ diff --git a/images/13-15.png b/images/13-15.png new file mode 100644 index 0000000..1987192 Binary files /dev/null and b/images/13-15.png differ diff --git a/images/13-16.png b/images/13-16.png new file mode 100644 index 0000000..8a4dbac Binary files /dev/null and b/images/13-16.png differ diff --git a/images/13-17.png b/images/13-17.png new file mode 100644 index 0000000..22c7c2b Binary files /dev/null and b/images/13-17.png differ diff --git a/images/13-18.png b/images/13-18.png new file mode 100644 index 0000000..9dced68 Binary files /dev/null and b/images/13-18.png differ diff --git a/images/13-19.png b/images/13-19.png new file mode 100644 index 0000000..246e185 Binary files /dev/null and b/images/13-19.png differ diff --git a/images/13-2.png b/images/13-2.png new file mode 100644 index 0000000..5236993 Binary files /dev/null and b/images/13-2.png differ diff --git a/images/13-20.png b/images/13-20.png new file mode 100644 index 0000000..5fe3a22 Binary files /dev/null and b/images/13-20.png differ diff --git a/images/13-21.png b/images/13-21.png new file mode 100644 index 0000000..9549180 Binary files /dev/null and b/images/13-21.png differ diff --git a/images/13-22.png b/images/13-22.png new file mode 100644 index 0000000..748c135 Binary files /dev/null and b/images/13-22.png differ diff --git a/images/13-23.png b/images/13-23.png new file mode 100644 index 0000000..61452d9 Binary files /dev/null and b/images/13-23.png differ diff --git a/images/13-24.png b/images/13-24.png new file mode 100644 index 0000000..85f55f1 Binary files /dev/null and b/images/13-24.png differ diff --git a/images/13-25.png b/images/13-25.png new file mode 100644 index 0000000..d850a22 Binary files /dev/null and b/images/13-25.png differ diff --git a/images/13-26.png b/images/13-26.png new file mode 100644 index 0000000..a83bad7 Binary files /dev/null and b/images/13-26.png differ diff --git a/images/13-27.png b/images/13-27.png new file mode 100644 index 0000000..17490c7 Binary files /dev/null and b/images/13-27.png differ diff --git a/images/13-28.png b/images/13-28.png new file mode 100644 index 0000000..333c78b Binary files /dev/null and b/images/13-28.png differ diff --git a/images/13-29.png b/images/13-29.png new file mode 100644 index 0000000..5023f64 Binary files /dev/null and b/images/13-29.png differ diff --git a/images/13-3.png b/images/13-3.png new file mode 100644 index 0000000..ecf7f96 Binary files /dev/null and b/images/13-3.png differ diff --git a/images/13-4.png b/images/13-4.png new file mode 100644 index 0000000..92e7702 Binary files /dev/null and b/images/13-4.png differ diff --git a/images/13-5.png b/images/13-5.png new file mode 100644 index 0000000..df49ec1 Binary files /dev/null and b/images/13-5.png differ diff --git a/images/13-6.png b/images/13-6.png new file mode 100644 index 0000000..ab382fe Binary files /dev/null and b/images/13-6.png differ diff --git a/images/13-7.png b/images/13-7.png new file mode 100644 index 0000000..17cd026 Binary files /dev/null and b/images/13-7.png differ diff --git a/images/13-8.png b/images/13-8.png new file mode 100644 index 0000000..984926c Binary files /dev/null and b/images/13-8.png differ diff --git a/images/13-9.png b/images/13-9.png new file mode 100644 index 0000000..b73e570 Binary files /dev/null and b/images/13-9.png differ diff --git a/images/14-0.png b/images/14-0.png new file mode 100644 index 0000000..73962f4 Binary files /dev/null and b/images/14-0.png differ diff --git a/images/14-1.png b/images/14-1.png new file mode 100644 index 0000000..f72663b Binary files /dev/null and b/images/14-1.png differ diff --git a/images/14-10.png b/images/14-10.png new file mode 100644 index 0000000..219f26f Binary files /dev/null and b/images/14-10.png differ diff --git a/images/14-11.png b/images/14-11.png new file mode 100644 index 0000000..eb67180 Binary files /dev/null and b/images/14-11.png differ diff --git a/images/14-12.png b/images/14-12.png new file mode 100644 index 0000000..98d0ff7 Binary files /dev/null and b/images/14-12.png differ diff --git a/images/14-13.png b/images/14-13.png new file mode 100644 index 0000000..69b741f Binary files /dev/null and b/images/14-13.png differ diff --git a/images/14-14.png b/images/14-14.png new file mode 100644 index 0000000..279a3d9 Binary files /dev/null and b/images/14-14.png differ diff --git a/images/14-2.png b/images/14-2.png new file mode 100644 index 0000000..62e4186 Binary files /dev/null and b/images/14-2.png differ diff --git a/images/14-3.png b/images/14-3.png new file mode 100644 index 0000000..3543301 Binary files /dev/null and b/images/14-3.png differ diff --git a/images/14-4.png b/images/14-4.png new file mode 100644 index 0000000..eee1c8b Binary files /dev/null and b/images/14-4.png differ diff --git a/images/14-5.png b/images/14-5.png new file mode 100644 index 0000000..3721785 Binary files /dev/null and b/images/14-5.png differ diff --git a/images/14-6.png b/images/14-6.png new file mode 100644 index 0000000..11ea6d2 Binary files /dev/null and b/images/14-6.png differ diff --git a/images/14-7.png b/images/14-7.png new file mode 100644 index 0000000..29905fe Binary files /dev/null and b/images/14-7.png differ diff --git a/images/14-8.png b/images/14-8.png new file mode 100644 index 0000000..19186d8 Binary files /dev/null and b/images/14-8.png differ diff --git a/images/14-9.png b/images/14-9.png new file mode 100644 index 0000000..e63f176 Binary files /dev/null and b/images/14-9.png differ diff --git a/images/15-0.png b/images/15-0.png new file mode 100644 index 0000000..02a46fd Binary files /dev/null and b/images/15-0.png differ diff --git a/images/15-1.png b/images/15-1.png new file mode 100644 index 0000000..af80f42 Binary files /dev/null and b/images/15-1.png differ diff --git a/images/15-10.png b/images/15-10.png new file mode 100644 index 0000000..63d8aad Binary files /dev/null and b/images/15-10.png differ diff --git a/images/15-11.png b/images/15-11.png new file mode 100644 index 0000000..af0ec42 Binary files /dev/null and b/images/15-11.png differ diff --git a/images/15-12.png b/images/15-12.png new file mode 100644 index 0000000..e1131d4 Binary files /dev/null and b/images/15-12.png differ diff --git a/images/15-13.png b/images/15-13.png new file mode 100644 index 0000000..2439793 Binary files /dev/null and b/images/15-13.png differ diff --git a/images/15-14.png b/images/15-14.png new file mode 100644 index 0000000..2c57a14 Binary files /dev/null and b/images/15-14.png differ diff --git a/images/15-15.png b/images/15-15.png new file mode 100644 index 0000000..0198730 Binary files /dev/null and b/images/15-15.png differ diff --git a/images/15-16.png b/images/15-16.png new file mode 100644 index 0000000..2620adb Binary files /dev/null and b/images/15-16.png differ diff --git a/images/15-17.png b/images/15-17.png new file mode 100644 index 0000000..45cbbbb Binary files /dev/null and b/images/15-17.png differ diff --git a/images/15-18.png b/images/15-18.png new file mode 100644 index 0000000..8919f32 Binary files /dev/null and b/images/15-18.png differ diff --git a/images/15-19.png b/images/15-19.png new file mode 100644 index 0000000..34df5cc Binary files /dev/null and b/images/15-19.png differ diff --git a/images/15-2.png b/images/15-2.png new file mode 100644 index 0000000..af38441 Binary files /dev/null and b/images/15-2.png differ diff --git a/images/15-20.png b/images/15-20.png new file mode 100644 index 0000000..a834074 Binary files /dev/null and b/images/15-20.png differ diff --git a/images/15-21.png b/images/15-21.png new file mode 100644 index 0000000..5dfa1e4 Binary files /dev/null and b/images/15-21.png differ diff --git a/images/15-22.png b/images/15-22.png new file mode 100644 index 0000000..f591653 Binary files /dev/null and b/images/15-22.png differ diff --git a/images/15-23.png b/images/15-23.png new file mode 100644 index 0000000..81cbd18 Binary files /dev/null and b/images/15-23.png differ diff --git a/images/15-24.png b/images/15-24.png new file mode 100644 index 0000000..cb775fe Binary files /dev/null and b/images/15-24.png differ diff --git a/images/15-25.png b/images/15-25.png new file mode 100644 index 0000000..7fc5c59 Binary files /dev/null and b/images/15-25.png differ diff --git a/images/15-26.png b/images/15-26.png new file mode 100644 index 0000000..b298d83 Binary files /dev/null and b/images/15-26.png differ diff --git a/images/15-27.png b/images/15-27.png new file mode 100644 index 0000000..29a465c Binary files /dev/null and b/images/15-27.png differ diff --git a/images/15-28.png b/images/15-28.png new file mode 100644 index 0000000..9dafdb1 Binary files /dev/null and b/images/15-28.png differ diff --git a/images/15-29.png b/images/15-29.png new file mode 100644 index 0000000..a19eb64 Binary files /dev/null and b/images/15-29.png differ diff --git a/images/15-3.png b/images/15-3.png new file mode 100644 index 0000000..971c5f7 Binary files /dev/null and b/images/15-3.png differ diff --git a/images/15-30.png b/images/15-30.png new file mode 100644 index 0000000..217823d Binary files /dev/null and b/images/15-30.png differ diff --git a/images/15-31.png b/images/15-31.png new file mode 100644 index 0000000..8a9b32a Binary files /dev/null and b/images/15-31.png differ diff --git a/images/15-32.png b/images/15-32.png new file mode 100644 index 0000000..be185db Binary files /dev/null and b/images/15-32.png differ diff --git a/images/15-33.png b/images/15-33.png new file mode 100644 index 0000000..8ff8de4 Binary files /dev/null and b/images/15-33.png differ diff --git a/images/15-34.png b/images/15-34.png new file mode 100644 index 0000000..1baf42c Binary files /dev/null and b/images/15-34.png differ diff --git a/images/15-35.png b/images/15-35.png new file mode 100644 index 0000000..3c295f4 Binary files /dev/null and b/images/15-35.png differ diff --git a/images/15-36.png b/images/15-36.png new file mode 100644 index 0000000..47836c3 Binary files /dev/null and b/images/15-36.png differ diff --git a/images/15-37.png b/images/15-37.png new file mode 100644 index 0000000..f47542c Binary files /dev/null and b/images/15-37.png differ diff --git a/images/15-38.png b/images/15-38.png new file mode 100644 index 0000000..104fdc9 Binary files /dev/null and b/images/15-38.png differ diff --git a/images/15-39.png b/images/15-39.png new file mode 100644 index 0000000..ec1ab86 Binary files /dev/null and b/images/15-39.png differ diff --git a/images/15-4.png b/images/15-4.png new file mode 100644 index 0000000..ac1d57a Binary files /dev/null and b/images/15-4.png differ diff --git a/images/15-40.png b/images/15-40.png new file mode 100644 index 0000000..8a2edf9 Binary files /dev/null and b/images/15-40.png differ diff --git a/images/15-41.png b/images/15-41.png new file mode 100644 index 0000000..a427c1f Binary files /dev/null and b/images/15-41.png differ diff --git a/images/15-42.png b/images/15-42.png new file mode 100644 index 0000000..b055306 Binary files /dev/null and b/images/15-42.png differ diff --git a/images/15-43.png b/images/15-43.png new file mode 100644 index 0000000..610d550 Binary files /dev/null and b/images/15-43.png differ diff --git a/images/15-44.png b/images/15-44.png new file mode 100644 index 0000000..a5fb3eb Binary files /dev/null and b/images/15-44.png differ diff --git a/images/15-45.png b/images/15-45.png new file mode 100644 index 0000000..107708b Binary files /dev/null and b/images/15-45.png differ diff --git a/images/15-46.png b/images/15-46.png new file mode 100644 index 0000000..f50f771 Binary files /dev/null and b/images/15-46.png differ diff --git a/images/15-5.png b/images/15-5.png new file mode 100644 index 0000000..5ed75bb Binary files /dev/null and b/images/15-5.png differ diff --git a/images/15-6.png b/images/15-6.png new file mode 100644 index 0000000..0aac8c8 Binary files /dev/null and b/images/15-6.png differ diff --git a/images/15-7.png b/images/15-7.png new file mode 100644 index 0000000..8ab953e Binary files /dev/null and b/images/15-7.png differ diff --git a/images/15-8.png b/images/15-8.png new file mode 100644 index 0000000..c7ee229 Binary files /dev/null and b/images/15-8.png differ diff --git a/images/15-9.png b/images/15-9.png new file mode 100644 index 0000000..6b215fe Binary files /dev/null and b/images/15-9.png differ diff --git a/images/16-0.png b/images/16-0.png new file mode 100644 index 0000000..85ecc85 Binary files /dev/null and b/images/16-0.png differ diff --git a/images/16-1.png b/images/16-1.png new file mode 100644 index 0000000..b1debfe Binary files /dev/null and b/images/16-1.png differ diff --git a/images/16-10.png b/images/16-10.png new file mode 100644 index 0000000..c5672fc Binary files /dev/null and b/images/16-10.png differ diff --git a/images/16-11.png b/images/16-11.png new file mode 100644 index 0000000..1db72c8 Binary files /dev/null and b/images/16-11.png differ diff --git a/images/16-12.png b/images/16-12.png new file mode 100644 index 0000000..058e19f Binary files /dev/null and b/images/16-12.png differ diff --git a/images/16-13.png b/images/16-13.png new file mode 100644 index 0000000..9b65b47 Binary files /dev/null and b/images/16-13.png differ diff --git a/images/16-14.png b/images/16-14.png new file mode 100644 index 0000000..64217d3 Binary files /dev/null and b/images/16-14.png differ diff --git a/images/16-15.png b/images/16-15.png new file mode 100644 index 0000000..b3fbb8a Binary files /dev/null and b/images/16-15.png differ diff --git a/images/16-16.png b/images/16-16.png new file mode 100644 index 0000000..e418c95 Binary files /dev/null and b/images/16-16.png differ diff --git a/images/16-17.png b/images/16-17.png new file mode 100644 index 0000000..f7fb783 Binary files /dev/null and b/images/16-17.png differ diff --git a/images/16-18.png b/images/16-18.png new file mode 100644 index 0000000..506ba1b Binary files /dev/null and b/images/16-18.png differ diff --git a/images/16-19.png b/images/16-19.png new file mode 100644 index 0000000..4c6bf3b Binary files /dev/null and b/images/16-19.png differ diff --git a/images/16-2.png b/images/16-2.png new file mode 100644 index 0000000..2b24667 Binary files /dev/null and b/images/16-2.png differ diff --git a/images/16-20.png b/images/16-20.png new file mode 100644 index 0000000..4682528 Binary files /dev/null and b/images/16-20.png differ diff --git a/images/16-21.png b/images/16-21.png new file mode 100644 index 0000000..f8aadbf Binary files /dev/null and b/images/16-21.png differ diff --git a/images/16-22.png b/images/16-22.png new file mode 100644 index 0000000..cf1f218 Binary files /dev/null and b/images/16-22.png differ diff --git a/images/16-23.png b/images/16-23.png new file mode 100644 index 0000000..9ca343e Binary files /dev/null and b/images/16-23.png differ diff --git a/images/16-24.png b/images/16-24.png new file mode 100644 index 0000000..4612f4c Binary files /dev/null and b/images/16-24.png differ diff --git a/images/16-25.png b/images/16-25.png new file mode 100644 index 0000000..26ff52e Binary files /dev/null and b/images/16-25.png differ diff --git a/images/16-26.png b/images/16-26.png new file mode 100644 index 0000000..3eaf2d2 Binary files /dev/null and b/images/16-26.png differ diff --git a/images/16-27.png b/images/16-27.png new file mode 100644 index 0000000..e818bf0 Binary files /dev/null and b/images/16-27.png differ diff --git a/images/16-28.png b/images/16-28.png new file mode 100644 index 0000000..9371ff6 Binary files /dev/null and b/images/16-28.png differ diff --git a/images/16-29.png b/images/16-29.png new file mode 100644 index 0000000..ffa45b1 Binary files /dev/null and b/images/16-29.png differ diff --git a/images/16-3.png b/images/16-3.png new file mode 100644 index 0000000..f063f3e Binary files /dev/null and b/images/16-3.png differ diff --git a/images/16-30.png b/images/16-30.png new file mode 100644 index 0000000..42ccced Binary files /dev/null and b/images/16-30.png differ diff --git a/images/16-31.png b/images/16-31.png new file mode 100644 index 0000000..6d14211 Binary files /dev/null and b/images/16-31.png differ diff --git a/images/16-32.png b/images/16-32.png new file mode 100644 index 0000000..05d1db9 Binary files /dev/null and b/images/16-32.png differ diff --git a/images/16-33.png b/images/16-33.png new file mode 100644 index 0000000..d9f5aa6 Binary files /dev/null and b/images/16-33.png differ diff --git a/images/16-34.png b/images/16-34.png new file mode 100644 index 0000000..34e7e6f Binary files /dev/null and b/images/16-34.png differ diff --git a/images/16-35.png b/images/16-35.png new file mode 100644 index 0000000..206c6d9 Binary files /dev/null and b/images/16-35.png differ diff --git a/images/16-36.png b/images/16-36.png new file mode 100644 index 0000000..c8dfc84 Binary files /dev/null and b/images/16-36.png differ diff --git a/images/16-37.png b/images/16-37.png new file mode 100644 index 0000000..bef97e6 Binary files /dev/null and b/images/16-37.png differ diff --git a/images/16-38.png b/images/16-38.png new file mode 100644 index 0000000..72ab142 Binary files /dev/null and b/images/16-38.png differ diff --git a/images/16-39.png b/images/16-39.png new file mode 100644 index 0000000..644aaf4 Binary files /dev/null and b/images/16-39.png differ diff --git a/images/16-4.png b/images/16-4.png new file mode 100644 index 0000000..a9d964f Binary files /dev/null and b/images/16-4.png differ diff --git a/images/16-40.png b/images/16-40.png new file mode 100644 index 0000000..6f53edb Binary files /dev/null and b/images/16-40.png differ diff --git a/images/16-5.png b/images/16-5.png new file mode 100644 index 0000000..80d22f3 Binary files /dev/null and b/images/16-5.png differ diff --git a/images/16-6.png b/images/16-6.png new file mode 100644 index 0000000..e426b3f Binary files /dev/null and b/images/16-6.png differ diff --git a/images/16-7.png b/images/16-7.png new file mode 100644 index 0000000..3ced6df Binary files /dev/null and b/images/16-7.png differ diff --git a/images/16-8.png b/images/16-8.png new file mode 100644 index 0000000..9f13a84 Binary files /dev/null and b/images/16-8.png differ diff --git a/images/16-9.png b/images/16-9.png new file mode 100644 index 0000000..12a6df4 Binary files /dev/null and b/images/16-9.png differ diff --git a/images/17-0.png b/images/17-0.png new file mode 100644 index 0000000..ee6cc4b Binary files /dev/null and b/images/17-0.png differ diff --git a/images/17-1.png b/images/17-1.png new file mode 100644 index 0000000..aceab9d Binary files /dev/null and b/images/17-1.png differ diff --git a/images/17-10.png b/images/17-10.png new file mode 100644 index 0000000..57901ec Binary files /dev/null and b/images/17-10.png differ diff --git a/images/17-11.png b/images/17-11.png new file mode 100644 index 0000000..20403ea Binary files /dev/null and b/images/17-11.png differ diff --git a/images/17-2.png b/images/17-2.png new file mode 100644 index 0000000..aebd87c Binary files /dev/null and b/images/17-2.png differ diff --git a/images/17-3.png b/images/17-3.png new file mode 100644 index 0000000..82f3810 Binary files /dev/null and b/images/17-3.png differ diff --git a/images/17-4.png b/images/17-4.png new file mode 100644 index 0000000..9f38eda Binary files /dev/null and b/images/17-4.png differ diff --git a/images/17-5.png b/images/17-5.png new file mode 100644 index 0000000..b5b59ea Binary files /dev/null and b/images/17-5.png differ diff --git a/images/17-6.png b/images/17-6.png new file mode 100644 index 0000000..6cca4c0 Binary files /dev/null and b/images/17-6.png differ diff --git a/images/17-7.png b/images/17-7.png new file mode 100644 index 0000000..43ea1dc Binary files /dev/null and b/images/17-7.png differ diff --git a/images/17-8.png b/images/17-8.png new file mode 100644 index 0000000..33b7d93 Binary files /dev/null and b/images/17-8.png differ diff --git a/images/17-9.png b/images/17-9.png new file mode 100644 index 0000000..d025fff Binary files /dev/null and b/images/17-9.png differ diff --git a/images/18-0.png b/images/18-0.png new file mode 100644 index 0000000..048b5ff Binary files /dev/null and b/images/18-0.png differ diff --git a/images/18-1.png b/images/18-1.png new file mode 100644 index 0000000..dbb5c76 Binary files /dev/null and b/images/18-1.png differ diff --git a/images/18-10.png b/images/18-10.png new file mode 100644 index 0000000..35be55d Binary files /dev/null and b/images/18-10.png differ diff --git a/images/18-11.png b/images/18-11.png new file mode 100644 index 0000000..e2a99c4 Binary files /dev/null and b/images/18-11.png differ diff --git a/images/18-12.png b/images/18-12.png new file mode 100644 index 0000000..157e71a Binary files /dev/null and b/images/18-12.png differ diff --git a/images/18-13.png b/images/18-13.png new file mode 100644 index 0000000..28bcfbb Binary files /dev/null and b/images/18-13.png differ diff --git a/images/18-14.png b/images/18-14.png new file mode 100644 index 0000000..02b90e1 Binary files /dev/null and b/images/18-14.png differ diff --git a/images/18-15.png b/images/18-15.png new file mode 100644 index 0000000..3f185cb Binary files /dev/null and b/images/18-15.png differ diff --git a/images/18-16.png b/images/18-16.png new file mode 100644 index 0000000..ac47498 Binary files /dev/null and b/images/18-16.png differ diff --git a/images/18-17.png b/images/18-17.png new file mode 100644 index 0000000..ce6c068 Binary files /dev/null and b/images/18-17.png differ diff --git a/images/18-18.png b/images/18-18.png new file mode 100644 index 0000000..74bb0f0 Binary files /dev/null and b/images/18-18.png differ diff --git a/images/18-19.png b/images/18-19.png new file mode 100644 index 0000000..87fbb29 Binary files /dev/null and b/images/18-19.png differ diff --git a/images/18-2.png b/images/18-2.png new file mode 100644 index 0000000..dbf7ac8 Binary files /dev/null and b/images/18-2.png differ diff --git a/images/18-20.png b/images/18-20.png new file mode 100644 index 0000000..914181b Binary files /dev/null and b/images/18-20.png differ diff --git a/images/18-3.png b/images/18-3.png new file mode 100644 index 0000000..9d11806 Binary files /dev/null and b/images/18-3.png differ diff --git a/images/18-4.png b/images/18-4.png new file mode 100644 index 0000000..4866be4 Binary files /dev/null and b/images/18-4.png differ diff --git a/images/18-5.png b/images/18-5.png new file mode 100644 index 0000000..2af4946 Binary files /dev/null and b/images/18-5.png differ diff --git a/images/18-6.png b/images/18-6.png new file mode 100644 index 0000000..39523aa Binary files /dev/null and b/images/18-6.png differ diff --git a/images/18-7.png b/images/18-7.png new file mode 100644 index 0000000..f1e8f7b Binary files /dev/null and b/images/18-7.png differ diff --git a/images/18-8.png b/images/18-8.png new file mode 100644 index 0000000..a7a0384 Binary files /dev/null and b/images/18-8.png differ diff --git a/images/18-9.png b/images/18-9.png new file mode 100644 index 0000000..49d3c2d Binary files /dev/null and b/images/18-9.png differ diff --git a/images/19-0.png b/images/19-0.png new file mode 100644 index 0000000..556a790 Binary files /dev/null and b/images/19-0.png differ diff --git a/images/19-1.png b/images/19-1.png new file mode 100644 index 0000000..8efa94a Binary files /dev/null and b/images/19-1.png differ diff --git a/images/19-10.png b/images/19-10.png new file mode 100644 index 0000000..0cbf3bf Binary files /dev/null and b/images/19-10.png differ diff --git a/images/19-100.png b/images/19-100.png new file mode 100644 index 0000000..ad3014c Binary files /dev/null and b/images/19-100.png differ diff --git a/images/19-101.png b/images/19-101.png new file mode 100644 index 0000000..d3ad4e2 Binary files /dev/null and b/images/19-101.png differ diff --git a/images/19-102.png b/images/19-102.png new file mode 100644 index 0000000..d4fc249 Binary files /dev/null and b/images/19-102.png differ diff --git a/images/19-103.png b/images/19-103.png new file mode 100644 index 0000000..b3f4d91 Binary files /dev/null and b/images/19-103.png differ diff --git a/images/19-104.png b/images/19-104.png new file mode 100644 index 0000000..d937db3 Binary files /dev/null and b/images/19-104.png differ diff --git a/images/19-105.png b/images/19-105.png new file mode 100644 index 0000000..659e015 Binary files /dev/null and b/images/19-105.png differ diff --git a/images/19-106.png b/images/19-106.png new file mode 100644 index 0000000..4abef3f Binary files /dev/null and b/images/19-106.png differ diff --git a/images/19-107.png b/images/19-107.png new file mode 100644 index 0000000..2ea67ad Binary files /dev/null and b/images/19-107.png differ diff --git a/images/19-108.png b/images/19-108.png new file mode 100644 index 0000000..beb47a1 Binary files /dev/null and b/images/19-108.png differ diff --git a/images/19-109.png b/images/19-109.png new file mode 100644 index 0000000..6ebca1c Binary files /dev/null and b/images/19-109.png differ diff --git a/images/19-11.png b/images/19-11.png new file mode 100644 index 0000000..6fb1175 Binary files /dev/null and b/images/19-11.png differ diff --git a/images/19-110.png b/images/19-110.png new file mode 100644 index 0000000..4a2f828 Binary files /dev/null and b/images/19-110.png differ diff --git a/images/19-111.png b/images/19-111.png new file mode 100644 index 0000000..947fb43 Binary files /dev/null and b/images/19-111.png differ diff --git a/images/19-112.png b/images/19-112.png new file mode 100644 index 0000000..53f81b8 Binary files /dev/null and b/images/19-112.png differ diff --git a/images/19-113.png b/images/19-113.png new file mode 100644 index 0000000..02fdddd Binary files /dev/null and b/images/19-113.png differ diff --git a/images/19-114.png b/images/19-114.png new file mode 100644 index 0000000..e24afb9 Binary files /dev/null and b/images/19-114.png differ diff --git a/images/19-115.png b/images/19-115.png new file mode 100644 index 0000000..4560d25 Binary files /dev/null and b/images/19-115.png differ diff --git a/images/19-116.png b/images/19-116.png new file mode 100644 index 0000000..4207af3 Binary files /dev/null and b/images/19-116.png differ diff --git a/images/19-117.png b/images/19-117.png new file mode 100644 index 0000000..25d1074 Binary files /dev/null and b/images/19-117.png differ diff --git a/images/19-118.png b/images/19-118.png new file mode 100644 index 0000000..31ff605 Binary files /dev/null and b/images/19-118.png differ diff --git a/images/19-119.png b/images/19-119.png new file mode 100644 index 0000000..28ba3be Binary files /dev/null and b/images/19-119.png differ diff --git a/images/19-12.png b/images/19-12.png new file mode 100644 index 0000000..dd93949 Binary files /dev/null and b/images/19-12.png differ diff --git a/images/19-120.png b/images/19-120.png new file mode 100644 index 0000000..56ac636 Binary files /dev/null and b/images/19-120.png differ diff --git a/images/19-121.png b/images/19-121.png new file mode 100644 index 0000000..b70c23e Binary files /dev/null and b/images/19-121.png differ diff --git a/images/19-122.png b/images/19-122.png new file mode 100644 index 0000000..0eb4fa7 Binary files /dev/null and b/images/19-122.png differ diff --git a/images/19-123.png b/images/19-123.png new file mode 100644 index 0000000..27a3803 Binary files /dev/null and b/images/19-123.png differ diff --git a/images/19-124.png b/images/19-124.png new file mode 100644 index 0000000..f3798dd Binary files /dev/null and b/images/19-124.png differ diff --git a/images/19-125.png b/images/19-125.png new file mode 100644 index 0000000..f5784b7 Binary files /dev/null and b/images/19-125.png differ diff --git a/images/19-126.png b/images/19-126.png new file mode 100644 index 0000000..81dccbf Binary files /dev/null and b/images/19-126.png differ diff --git a/images/19-127.png b/images/19-127.png new file mode 100644 index 0000000..a8c0c8d Binary files /dev/null and b/images/19-127.png differ diff --git a/images/19-128.png b/images/19-128.png new file mode 100644 index 0000000..bc606e0 Binary files /dev/null and b/images/19-128.png differ diff --git a/images/19-129.png b/images/19-129.png new file mode 100644 index 0000000..7d26d39 Binary files /dev/null and b/images/19-129.png differ diff --git a/images/19-13.png b/images/19-13.png new file mode 100644 index 0000000..0ac4eb1 Binary files /dev/null and b/images/19-13.png differ diff --git a/images/19-130.png b/images/19-130.png new file mode 100644 index 0000000..55ad03d Binary files /dev/null and b/images/19-130.png differ diff --git a/images/19-131.png b/images/19-131.png new file mode 100644 index 0000000..f446d01 Binary files /dev/null and b/images/19-131.png differ diff --git a/images/19-132.png b/images/19-132.png new file mode 100644 index 0000000..48e4bec Binary files /dev/null and b/images/19-132.png differ diff --git a/images/19-133.png b/images/19-133.png new file mode 100644 index 0000000..a7b8459 Binary files /dev/null and b/images/19-133.png differ diff --git a/images/19-134.png b/images/19-134.png new file mode 100644 index 0000000..ea12208 Binary files /dev/null and b/images/19-134.png differ diff --git a/images/19-135.png b/images/19-135.png new file mode 100644 index 0000000..9c7882c Binary files /dev/null and b/images/19-135.png differ diff --git a/images/19-136.png b/images/19-136.png new file mode 100644 index 0000000..9d6349e Binary files /dev/null and b/images/19-136.png differ diff --git a/images/19-137.png b/images/19-137.png new file mode 100644 index 0000000..b71c5f4 Binary files /dev/null and b/images/19-137.png differ diff --git a/images/19-138.png b/images/19-138.png new file mode 100644 index 0000000..4b1f67c Binary files /dev/null and b/images/19-138.png differ diff --git a/images/19-139.png b/images/19-139.png new file mode 100644 index 0000000..0c40831 Binary files /dev/null and b/images/19-139.png differ diff --git a/images/19-14.png b/images/19-14.png new file mode 100644 index 0000000..a1d25c7 Binary files /dev/null and b/images/19-14.png differ diff --git a/images/19-140.png b/images/19-140.png new file mode 100644 index 0000000..2aec81b Binary files /dev/null and b/images/19-140.png differ diff --git a/images/19-141.png b/images/19-141.png new file mode 100644 index 0000000..e4563f4 Binary files /dev/null and b/images/19-141.png differ diff --git a/images/19-142.png b/images/19-142.png new file mode 100644 index 0000000..acc9796 Binary files /dev/null and b/images/19-142.png differ diff --git a/images/19-143.png b/images/19-143.png new file mode 100644 index 0000000..bc1c2f0 Binary files /dev/null and b/images/19-143.png differ diff --git a/images/19-144.png b/images/19-144.png new file mode 100644 index 0000000..005c911 Binary files /dev/null and b/images/19-144.png differ diff --git a/images/19-15.png b/images/19-15.png new file mode 100644 index 0000000..f37925f Binary files /dev/null and b/images/19-15.png differ diff --git a/images/19-16.png b/images/19-16.png new file mode 100644 index 0000000..bec2b7e Binary files /dev/null and b/images/19-16.png differ diff --git a/images/19-17.png b/images/19-17.png new file mode 100644 index 0000000..c3a5985 Binary files /dev/null and b/images/19-17.png differ diff --git a/images/19-18.png b/images/19-18.png new file mode 100644 index 0000000..c8ad200 Binary files /dev/null and b/images/19-18.png differ diff --git a/images/19-19.png b/images/19-19.png new file mode 100644 index 0000000..5ae6fa5 Binary files /dev/null and b/images/19-19.png differ diff --git a/images/19-2.png b/images/19-2.png new file mode 100644 index 0000000..5efa60e Binary files /dev/null and b/images/19-2.png differ diff --git a/images/19-20.png b/images/19-20.png new file mode 100644 index 0000000..504c26b Binary files /dev/null and b/images/19-20.png differ diff --git a/images/19-21.png b/images/19-21.png new file mode 100644 index 0000000..38e8b50 Binary files /dev/null and b/images/19-21.png differ diff --git a/images/19-22.png b/images/19-22.png new file mode 100644 index 0000000..5aa0334 Binary files /dev/null and b/images/19-22.png differ diff --git a/images/19-23.png b/images/19-23.png new file mode 100644 index 0000000..eba4fa6 Binary files /dev/null and b/images/19-23.png differ diff --git a/images/19-24.png b/images/19-24.png new file mode 100644 index 0000000..117aa39 Binary files /dev/null and b/images/19-24.png differ diff --git a/images/19-25.png b/images/19-25.png new file mode 100644 index 0000000..93a6e3b Binary files /dev/null and b/images/19-25.png differ diff --git a/images/19-26.png b/images/19-26.png new file mode 100644 index 0000000..02e0555 Binary files /dev/null and b/images/19-26.png differ diff --git a/images/19-27.png b/images/19-27.png new file mode 100644 index 0000000..b844fb5 Binary files /dev/null and b/images/19-27.png differ diff --git a/images/19-28.png b/images/19-28.png new file mode 100644 index 0000000..65a1c6a Binary files /dev/null and b/images/19-28.png differ diff --git a/images/19-29.png b/images/19-29.png new file mode 100644 index 0000000..e6faa41 Binary files /dev/null and b/images/19-29.png differ diff --git a/images/19-3.png b/images/19-3.png new file mode 100644 index 0000000..40aa228 Binary files /dev/null and b/images/19-3.png differ diff --git a/images/19-30.png b/images/19-30.png new file mode 100644 index 0000000..0fe1e28 Binary files /dev/null and b/images/19-30.png differ diff --git a/images/19-31.png b/images/19-31.png new file mode 100644 index 0000000..41c206e Binary files /dev/null and b/images/19-31.png differ diff --git a/images/19-32.png b/images/19-32.png new file mode 100644 index 0000000..b018189 Binary files /dev/null and b/images/19-32.png differ diff --git a/images/19-33.png b/images/19-33.png new file mode 100644 index 0000000..8ad6593 Binary files /dev/null and b/images/19-33.png differ diff --git a/images/19-34.png b/images/19-34.png new file mode 100644 index 0000000..9ecc95a Binary files /dev/null and b/images/19-34.png differ diff --git a/images/19-35.png b/images/19-35.png new file mode 100644 index 0000000..a280cf4 Binary files /dev/null and b/images/19-35.png differ diff --git a/images/19-36.png b/images/19-36.png new file mode 100644 index 0000000..cf264db Binary files /dev/null and b/images/19-36.png differ diff --git a/images/19-37.png b/images/19-37.png new file mode 100644 index 0000000..17f7eb3 Binary files /dev/null and b/images/19-37.png differ diff --git a/images/19-38.png b/images/19-38.png new file mode 100644 index 0000000..aacf7df Binary files /dev/null and b/images/19-38.png differ diff --git a/images/19-39.png b/images/19-39.png new file mode 100644 index 0000000..b074fc7 Binary files /dev/null and b/images/19-39.png differ diff --git a/images/19-4.png b/images/19-4.png new file mode 100644 index 0000000..a08cf70 Binary files /dev/null and b/images/19-4.png differ diff --git a/images/19-40.png b/images/19-40.png new file mode 100644 index 0000000..aab5220 Binary files /dev/null and b/images/19-40.png differ diff --git a/images/19-41.png b/images/19-41.png new file mode 100644 index 0000000..a3d10cb Binary files /dev/null and b/images/19-41.png differ diff --git a/images/19-42.png b/images/19-42.png new file mode 100644 index 0000000..bd035e2 Binary files /dev/null and b/images/19-42.png differ diff --git a/images/19-43.png b/images/19-43.png new file mode 100644 index 0000000..9b6b10c Binary files /dev/null and b/images/19-43.png differ diff --git a/images/19-44.png b/images/19-44.png new file mode 100644 index 0000000..61461fa Binary files /dev/null and b/images/19-44.png differ diff --git a/images/19-45.png b/images/19-45.png new file mode 100644 index 0000000..cf0e689 Binary files /dev/null and b/images/19-45.png differ diff --git a/images/19-46.png b/images/19-46.png new file mode 100644 index 0000000..b5cb67c Binary files /dev/null and b/images/19-46.png differ diff --git a/images/19-47.png b/images/19-47.png new file mode 100644 index 0000000..baf53f0 Binary files /dev/null and b/images/19-47.png differ diff --git a/images/19-48.png b/images/19-48.png new file mode 100644 index 0000000..5f1303e Binary files /dev/null and b/images/19-48.png differ diff --git a/images/19-49.png b/images/19-49.png new file mode 100644 index 0000000..1daef47 Binary files /dev/null and b/images/19-49.png differ diff --git a/images/19-5.png b/images/19-5.png new file mode 100644 index 0000000..c93c4fc Binary files /dev/null and b/images/19-5.png differ diff --git a/images/19-50.png b/images/19-50.png new file mode 100644 index 0000000..1c82045 Binary files /dev/null and b/images/19-50.png differ diff --git a/images/19-51.png b/images/19-51.png new file mode 100644 index 0000000..25a80d8 Binary files /dev/null and b/images/19-51.png differ diff --git a/images/19-52.png b/images/19-52.png new file mode 100644 index 0000000..bfe5967 Binary files /dev/null and b/images/19-52.png differ diff --git a/images/19-53.png b/images/19-53.png new file mode 100644 index 0000000..9c34c6a Binary files /dev/null and b/images/19-53.png differ diff --git a/images/19-54.png b/images/19-54.png new file mode 100644 index 0000000..e95ef8d Binary files /dev/null and b/images/19-54.png differ diff --git a/images/19-55.png b/images/19-55.png new file mode 100644 index 0000000..a919da3 Binary files /dev/null and b/images/19-55.png differ diff --git a/images/19-56.png b/images/19-56.png new file mode 100644 index 0000000..6e464e6 Binary files /dev/null and b/images/19-56.png differ diff --git a/images/19-57.png b/images/19-57.png new file mode 100644 index 0000000..636e0cd Binary files /dev/null and b/images/19-57.png differ diff --git a/images/19-58.png b/images/19-58.png new file mode 100644 index 0000000..dbe14c3 Binary files /dev/null and b/images/19-58.png differ diff --git a/images/19-59.png b/images/19-59.png new file mode 100644 index 0000000..8ccea29 Binary files /dev/null and b/images/19-59.png differ diff --git a/images/19-6.png b/images/19-6.png new file mode 100644 index 0000000..1729847 Binary files /dev/null and b/images/19-6.png differ diff --git a/images/19-60.png b/images/19-60.png new file mode 100644 index 0000000..da1d1e2 Binary files /dev/null and b/images/19-60.png differ diff --git a/images/19-61.png b/images/19-61.png new file mode 100644 index 0000000..2329309 Binary files /dev/null and b/images/19-61.png differ diff --git a/images/19-62.png b/images/19-62.png new file mode 100644 index 0000000..1529ab8 Binary files /dev/null and b/images/19-62.png differ diff --git a/images/19-63.png b/images/19-63.png new file mode 100644 index 0000000..6e030eb Binary files /dev/null and b/images/19-63.png differ diff --git a/images/19-64.png b/images/19-64.png new file mode 100644 index 0000000..dfd093e Binary files /dev/null and b/images/19-64.png differ diff --git a/images/19-65.png b/images/19-65.png new file mode 100644 index 0000000..66228ae Binary files /dev/null and b/images/19-65.png differ diff --git a/images/19-66.png b/images/19-66.png new file mode 100644 index 0000000..a669906 Binary files /dev/null and b/images/19-66.png differ diff --git a/images/19-67.png b/images/19-67.png new file mode 100644 index 0000000..0d6e9b1 Binary files /dev/null and b/images/19-67.png differ diff --git a/images/19-68.png b/images/19-68.png new file mode 100644 index 0000000..2213ed8 Binary files /dev/null and b/images/19-68.png differ diff --git a/images/19-69.png b/images/19-69.png new file mode 100644 index 0000000..db1481e Binary files /dev/null and b/images/19-69.png differ diff --git a/images/19-7.png b/images/19-7.png new file mode 100644 index 0000000..ebfd391 Binary files /dev/null and b/images/19-7.png differ diff --git a/images/19-70.png b/images/19-70.png new file mode 100644 index 0000000..f598e94 Binary files /dev/null and b/images/19-70.png differ diff --git a/images/19-71.png b/images/19-71.png new file mode 100644 index 0000000..0ffe2a1 Binary files /dev/null and b/images/19-71.png differ diff --git a/images/19-72.png b/images/19-72.png new file mode 100644 index 0000000..52a03fe Binary files /dev/null and b/images/19-72.png differ diff --git a/images/19-73.png b/images/19-73.png new file mode 100644 index 0000000..841a941 Binary files /dev/null and b/images/19-73.png differ diff --git a/images/19-74.png b/images/19-74.png new file mode 100644 index 0000000..be0d98c Binary files /dev/null and b/images/19-74.png differ diff --git a/images/19-75.png b/images/19-75.png new file mode 100644 index 0000000..867e3a7 Binary files /dev/null and b/images/19-75.png differ diff --git a/images/19-76.png b/images/19-76.png new file mode 100644 index 0000000..79a6a11 Binary files /dev/null and b/images/19-76.png differ diff --git a/images/19-77.png b/images/19-77.png new file mode 100644 index 0000000..fc9f379 Binary files /dev/null and b/images/19-77.png differ diff --git a/images/19-78.png b/images/19-78.png new file mode 100644 index 0000000..21ac6d2 Binary files /dev/null and b/images/19-78.png differ diff --git a/images/19-79.png b/images/19-79.png new file mode 100644 index 0000000..355a20f Binary files /dev/null and b/images/19-79.png differ diff --git a/images/19-8.png b/images/19-8.png new file mode 100644 index 0000000..154f7bd Binary files /dev/null and b/images/19-8.png differ diff --git a/images/19-80.png b/images/19-80.png new file mode 100644 index 0000000..e951ab9 Binary files /dev/null and b/images/19-80.png differ diff --git a/images/19-81.png b/images/19-81.png new file mode 100644 index 0000000..d7f662a Binary files /dev/null and b/images/19-81.png differ diff --git a/images/19-82.png b/images/19-82.png new file mode 100644 index 0000000..870536c Binary files /dev/null and b/images/19-82.png differ diff --git a/images/19-83.png b/images/19-83.png new file mode 100644 index 0000000..3231a4f Binary files /dev/null and b/images/19-83.png differ diff --git a/images/19-84.png b/images/19-84.png new file mode 100644 index 0000000..4b05e6c Binary files /dev/null and b/images/19-84.png differ diff --git a/images/19-85.png b/images/19-85.png new file mode 100644 index 0000000..06f5a39 Binary files /dev/null and b/images/19-85.png differ diff --git a/images/19-86.png b/images/19-86.png new file mode 100644 index 0000000..e24d422 Binary files /dev/null and b/images/19-86.png differ diff --git a/images/19-87.png b/images/19-87.png new file mode 100644 index 0000000..730603b Binary files /dev/null and b/images/19-87.png differ diff --git a/images/19-88.png b/images/19-88.png new file mode 100644 index 0000000..7ff0595 Binary files /dev/null and b/images/19-88.png differ diff --git a/images/19-89.png b/images/19-89.png new file mode 100644 index 0000000..113cef2 Binary files /dev/null and b/images/19-89.png differ diff --git a/images/19-9.png b/images/19-9.png new file mode 100644 index 0000000..e0d99cd Binary files /dev/null and b/images/19-9.png differ diff --git a/images/19-90.png b/images/19-90.png new file mode 100644 index 0000000..27ea9a9 Binary files /dev/null and b/images/19-90.png differ diff --git a/images/19-91.png b/images/19-91.png new file mode 100644 index 0000000..709e266 Binary files /dev/null and b/images/19-91.png differ diff --git a/images/19-92.png b/images/19-92.png new file mode 100644 index 0000000..6451e96 Binary files /dev/null and b/images/19-92.png differ diff --git a/images/19-93.png b/images/19-93.png new file mode 100644 index 0000000..43265bc Binary files /dev/null and b/images/19-93.png differ diff --git a/images/19-94.png b/images/19-94.png new file mode 100644 index 0000000..7c3301a Binary files /dev/null and b/images/19-94.png differ diff --git a/images/19-95.png b/images/19-95.png new file mode 100644 index 0000000..48213b5 Binary files /dev/null and b/images/19-95.png differ diff --git a/images/19-96.png b/images/19-96.png new file mode 100644 index 0000000..87a9fea Binary files /dev/null and b/images/19-96.png differ diff --git a/images/19-97.png b/images/19-97.png new file mode 100644 index 0000000..1201aa5 Binary files /dev/null and b/images/19-97.png differ diff --git a/images/19-98.png b/images/19-98.png new file mode 100644 index 0000000..e2442c7 Binary files /dev/null and b/images/19-98.png differ diff --git a/images/19-99.png b/images/19-99.png new file mode 100644 index 0000000..38a6918 Binary files /dev/null and b/images/19-99.png differ diff --git a/images/2-0.png b/images/2-0.png new file mode 100644 index 0000000..5646d87 Binary files /dev/null and b/images/2-0.png differ diff --git a/images/2-1.png b/images/2-1.png new file mode 100644 index 0000000..12f4fff Binary files /dev/null and b/images/2-1.png differ diff --git a/images/2-10.png b/images/2-10.png new file mode 100644 index 0000000..eed58a6 Binary files /dev/null and b/images/2-10.png differ diff --git a/images/2-11.png b/images/2-11.png new file mode 100644 index 0000000..82f4f95 Binary files /dev/null and b/images/2-11.png differ diff --git a/images/2-12.png b/images/2-12.png new file mode 100644 index 0000000..5fcc358 Binary files /dev/null and b/images/2-12.png differ diff --git a/images/2-13.png b/images/2-13.png new file mode 100644 index 0000000..e931b3d Binary files /dev/null and b/images/2-13.png differ diff --git a/images/2-2.png b/images/2-2.png new file mode 100644 index 0000000..27331f6 Binary files /dev/null and b/images/2-2.png differ diff --git a/images/2-3.png b/images/2-3.png new file mode 100644 index 0000000..c0ee700 Binary files /dev/null and b/images/2-3.png differ diff --git a/images/2-4.png b/images/2-4.png new file mode 100644 index 0000000..1662e98 Binary files /dev/null and b/images/2-4.png differ diff --git a/images/2-5.png b/images/2-5.png new file mode 100644 index 0000000..71bb7bd Binary files /dev/null and b/images/2-5.png differ diff --git a/images/2-6.png b/images/2-6.png new file mode 100644 index 0000000..67b61cc Binary files /dev/null and b/images/2-6.png differ diff --git a/images/2-7.png b/images/2-7.png new file mode 100644 index 0000000..b3c112d Binary files /dev/null and b/images/2-7.png differ diff --git a/images/2-8.png b/images/2-8.png new file mode 100644 index 0000000..26aceb8 Binary files /dev/null and b/images/2-8.png differ diff --git a/images/2-9.png b/images/2-9.png new file mode 100644 index 0000000..b8d6bf4 Binary files /dev/null and b/images/2-9.png differ diff --git a/images/20-0.png b/images/20-0.png new file mode 100644 index 0000000..eb1a513 Binary files /dev/null and b/images/20-0.png differ diff --git a/images/20-1.png b/images/20-1.png new file mode 100644 index 0000000..7da21cc Binary files /dev/null and b/images/20-1.png differ diff --git a/images/20-10.png b/images/20-10.png new file mode 100644 index 0000000..0e3feb1 Binary files /dev/null and b/images/20-10.png differ diff --git a/images/20-11.png b/images/20-11.png new file mode 100644 index 0000000..2732efa Binary files /dev/null and b/images/20-11.png differ diff --git a/images/20-12.png b/images/20-12.png new file mode 100644 index 0000000..ddeecad Binary files /dev/null and b/images/20-12.png differ diff --git a/images/20-13.png b/images/20-13.png new file mode 100644 index 0000000..17d3359 Binary files /dev/null and b/images/20-13.png differ diff --git a/images/20-14.png b/images/20-14.png new file mode 100644 index 0000000..45aab74 Binary files /dev/null and b/images/20-14.png differ diff --git a/images/20-15.png b/images/20-15.png new file mode 100644 index 0000000..919974e Binary files /dev/null and b/images/20-15.png differ diff --git a/images/20-16.png b/images/20-16.png new file mode 100644 index 0000000..a6b44f4 Binary files /dev/null and b/images/20-16.png differ diff --git a/images/20-17.png b/images/20-17.png new file mode 100644 index 0000000..73408b8 Binary files /dev/null and b/images/20-17.png differ diff --git a/images/20-18.png b/images/20-18.png new file mode 100644 index 0000000..ae5b680 Binary files /dev/null and b/images/20-18.png differ diff --git a/images/20-19.png b/images/20-19.png new file mode 100644 index 0000000..9d45988 Binary files /dev/null and b/images/20-19.png differ diff --git a/images/20-2.png b/images/20-2.png new file mode 100644 index 0000000..8dbb920 Binary files /dev/null and b/images/20-2.png differ diff --git a/images/20-20.png b/images/20-20.png new file mode 100644 index 0000000..31d7869 Binary files /dev/null and b/images/20-20.png differ diff --git a/images/20-21.png b/images/20-21.png new file mode 100644 index 0000000..4be9689 Binary files /dev/null and b/images/20-21.png differ diff --git a/images/20-22.png b/images/20-22.png new file mode 100644 index 0000000..88de528 Binary files /dev/null and b/images/20-22.png differ diff --git a/images/20-23.png b/images/20-23.png new file mode 100644 index 0000000..14d0aec Binary files /dev/null and b/images/20-23.png differ diff --git a/images/20-24.png b/images/20-24.png new file mode 100644 index 0000000..143129f Binary files /dev/null and b/images/20-24.png differ diff --git a/images/20-25.png b/images/20-25.png new file mode 100644 index 0000000..00766e9 Binary files /dev/null and b/images/20-25.png differ diff --git a/images/20-26.png b/images/20-26.png new file mode 100644 index 0000000..f0a399b Binary files /dev/null and b/images/20-26.png differ diff --git a/images/20-27.png b/images/20-27.png new file mode 100644 index 0000000..29c5622 Binary files /dev/null and b/images/20-27.png differ diff --git a/images/20-28.png b/images/20-28.png new file mode 100644 index 0000000..910d662 Binary files /dev/null and b/images/20-28.png differ diff --git a/images/20-29.png b/images/20-29.png new file mode 100644 index 0000000..25f5c67 Binary files /dev/null and b/images/20-29.png differ diff --git a/images/20-3.png b/images/20-3.png new file mode 100644 index 0000000..59604a0 Binary files /dev/null and b/images/20-3.png differ diff --git a/images/20-30.png b/images/20-30.png new file mode 100644 index 0000000..97d0d8b Binary files /dev/null and b/images/20-30.png differ diff --git a/images/20-31.png b/images/20-31.png new file mode 100644 index 0000000..223a7e1 Binary files /dev/null and b/images/20-31.png differ diff --git a/images/20-32.png b/images/20-32.png new file mode 100644 index 0000000..1b64737 Binary files /dev/null and b/images/20-32.png differ diff --git a/images/20-33.png b/images/20-33.png new file mode 100644 index 0000000..2c35dc1 Binary files /dev/null and b/images/20-33.png differ diff --git a/images/20-4.png b/images/20-4.png new file mode 100644 index 0000000..f88c198 Binary files /dev/null and b/images/20-4.png differ diff --git a/images/20-5.png b/images/20-5.png new file mode 100644 index 0000000..34340e5 Binary files /dev/null and b/images/20-5.png differ diff --git a/images/20-6.png b/images/20-6.png new file mode 100644 index 0000000..73268ab Binary files /dev/null and b/images/20-6.png differ diff --git a/images/20-7.png b/images/20-7.png new file mode 100644 index 0000000..ab0574f Binary files /dev/null and b/images/20-7.png differ diff --git a/images/20-8.png b/images/20-8.png new file mode 100644 index 0000000..751296e Binary files /dev/null and b/images/20-8.png differ diff --git a/images/20-9.png b/images/20-9.png new file mode 100644 index 0000000..b5aa768 Binary files /dev/null and b/images/20-9.png differ diff --git a/images/21-0.png b/images/21-0.png new file mode 100644 index 0000000..7b15d46 Binary files /dev/null and b/images/21-0.png differ diff --git a/images/21-1.png b/images/21-1.png new file mode 100644 index 0000000..6b60f1e Binary files /dev/null and b/images/21-1.png differ diff --git a/images/21-10.png b/images/21-10.png new file mode 100644 index 0000000..f83b39d Binary files /dev/null and b/images/21-10.png differ diff --git a/images/21-11.png b/images/21-11.png new file mode 100644 index 0000000..fcc35fb Binary files /dev/null and b/images/21-11.png differ diff --git a/images/21-12.png b/images/21-12.png new file mode 100644 index 0000000..c5653c5 Binary files /dev/null and b/images/21-12.png differ diff --git a/images/21-13.png b/images/21-13.png new file mode 100644 index 0000000..df40e16 Binary files /dev/null and b/images/21-13.png differ diff --git a/images/21-14.png b/images/21-14.png new file mode 100644 index 0000000..2f54474 Binary files /dev/null and b/images/21-14.png differ diff --git a/images/21-15.png b/images/21-15.png new file mode 100644 index 0000000..caaeaae Binary files /dev/null and b/images/21-15.png differ diff --git a/images/21-16.png b/images/21-16.png new file mode 100644 index 0000000..da28c10 Binary files /dev/null and b/images/21-16.png differ diff --git a/images/21-17.png b/images/21-17.png new file mode 100644 index 0000000..2d2bf9c Binary files /dev/null and b/images/21-17.png differ diff --git a/images/21-18.png b/images/21-18.png new file mode 100644 index 0000000..0e59437 Binary files /dev/null and b/images/21-18.png differ diff --git a/images/21-19.png b/images/21-19.png new file mode 100644 index 0000000..4be046f Binary files /dev/null and b/images/21-19.png differ diff --git a/images/21-2.png b/images/21-2.png new file mode 100644 index 0000000..2d6e358 Binary files /dev/null and b/images/21-2.png differ diff --git a/images/21-20.png b/images/21-20.png new file mode 100644 index 0000000..7aafeeb Binary files /dev/null and b/images/21-20.png differ diff --git a/images/21-21.png b/images/21-21.png new file mode 100644 index 0000000..275e63d Binary files /dev/null and b/images/21-21.png differ diff --git a/images/21-22.png b/images/21-22.png new file mode 100644 index 0000000..07fd3b0 Binary files /dev/null and b/images/21-22.png differ diff --git a/images/21-23.png b/images/21-23.png new file mode 100644 index 0000000..3a9cd3e Binary files /dev/null and b/images/21-23.png differ diff --git a/images/21-24.png b/images/21-24.png new file mode 100644 index 0000000..6e526c2 Binary files /dev/null and b/images/21-24.png differ diff --git a/images/21-25.png b/images/21-25.png new file mode 100644 index 0000000..4d92bad Binary files /dev/null and b/images/21-25.png differ diff --git a/images/21-26.png b/images/21-26.png new file mode 100644 index 0000000..c29e1bc Binary files /dev/null and b/images/21-26.png differ diff --git a/images/21-27.png b/images/21-27.png new file mode 100644 index 0000000..fd7b069 Binary files /dev/null and b/images/21-27.png differ diff --git a/images/21-28.png b/images/21-28.png new file mode 100644 index 0000000..3dd6087 Binary files /dev/null and b/images/21-28.png differ diff --git a/images/21-29.png b/images/21-29.png new file mode 100644 index 0000000..2029639 Binary files /dev/null and b/images/21-29.png differ diff --git a/images/21-3.png b/images/21-3.png new file mode 100644 index 0000000..49b2447 Binary files /dev/null and b/images/21-3.png differ diff --git a/images/21-30.png b/images/21-30.png new file mode 100644 index 0000000..4f74d7f Binary files /dev/null and b/images/21-30.png differ diff --git a/images/21-31.png b/images/21-31.png new file mode 100644 index 0000000..4db9d26 Binary files /dev/null and b/images/21-31.png differ diff --git a/images/21-32.png b/images/21-32.png new file mode 100644 index 0000000..656da9b Binary files /dev/null and b/images/21-32.png differ diff --git a/images/21-33.png b/images/21-33.png new file mode 100644 index 0000000..4969e7d Binary files /dev/null and b/images/21-33.png differ diff --git a/images/21-34.png b/images/21-34.png new file mode 100644 index 0000000..505578a Binary files /dev/null and b/images/21-34.png differ diff --git a/images/21-35.png b/images/21-35.png new file mode 100644 index 0000000..6b26289 Binary files /dev/null and b/images/21-35.png differ diff --git a/images/21-36.png b/images/21-36.png new file mode 100644 index 0000000..b9dab57 Binary files /dev/null and b/images/21-36.png differ diff --git a/images/21-37.png b/images/21-37.png new file mode 100644 index 0000000..9d4190c Binary files /dev/null and b/images/21-37.png differ diff --git a/images/21-4.png b/images/21-4.png new file mode 100644 index 0000000..ed85924 Binary files /dev/null and b/images/21-4.png differ diff --git a/images/21-5.png b/images/21-5.png new file mode 100644 index 0000000..667735c Binary files /dev/null and b/images/21-5.png differ diff --git a/images/21-6.png b/images/21-6.png new file mode 100644 index 0000000..d2c8153 Binary files /dev/null and b/images/21-6.png differ diff --git a/images/21-7.png b/images/21-7.png new file mode 100644 index 0000000..d47415f Binary files /dev/null and b/images/21-7.png differ diff --git a/images/21-8.png b/images/21-8.png new file mode 100644 index 0000000..cdf0109 Binary files /dev/null and b/images/21-8.png differ diff --git a/images/21-9.png b/images/21-9.png new file mode 100644 index 0000000..504a879 Binary files /dev/null and b/images/21-9.png differ diff --git a/images/22-0.png b/images/22-0.png new file mode 100644 index 0000000..b354d89 Binary files /dev/null and b/images/22-0.png differ diff --git a/images/22-1.png b/images/22-1.png new file mode 100644 index 0000000..5021fa9 Binary files /dev/null and b/images/22-1.png differ diff --git a/images/22-2.png b/images/22-2.png new file mode 100644 index 0000000..279ed36 Binary files /dev/null and b/images/22-2.png differ diff --git a/images/22-3.png b/images/22-3.png new file mode 100644 index 0000000..3a94d56 Binary files /dev/null and b/images/22-3.png differ diff --git a/images/22-4.png b/images/22-4.png new file mode 100644 index 0000000..e6cc36c Binary files /dev/null and b/images/22-4.png differ diff --git a/images/22-5.png b/images/22-5.png new file mode 100644 index 0000000..a234fc1 Binary files /dev/null and b/images/22-5.png differ diff --git a/images/22-6.png b/images/22-6.png new file mode 100644 index 0000000..888acf4 Binary files /dev/null and b/images/22-6.png differ diff --git a/images/22-7.png b/images/22-7.png new file mode 100644 index 0000000..47b228d Binary files /dev/null and b/images/22-7.png differ diff --git a/images/23-0.png b/images/23-0.png new file mode 100644 index 0000000..223b0f5 Binary files /dev/null and b/images/23-0.png differ diff --git a/images/23-1.png b/images/23-1.png new file mode 100644 index 0000000..8e90c4a Binary files /dev/null and b/images/23-1.png differ diff --git a/images/23-10.png b/images/23-10.png new file mode 100644 index 0000000..f0ac81c Binary files /dev/null and b/images/23-10.png differ diff --git a/images/23-11.png b/images/23-11.png new file mode 100644 index 0000000..bb867d9 Binary files /dev/null and b/images/23-11.png differ diff --git a/images/23-12.png b/images/23-12.png new file mode 100644 index 0000000..ae35aeb Binary files /dev/null and b/images/23-12.png differ diff --git a/images/23-13.png b/images/23-13.png new file mode 100644 index 0000000..694117f Binary files /dev/null and b/images/23-13.png differ diff --git a/images/23-14.png b/images/23-14.png new file mode 100644 index 0000000..41cffae Binary files /dev/null and b/images/23-14.png differ diff --git a/images/23-15.png b/images/23-15.png new file mode 100644 index 0000000..2f8f2b5 Binary files /dev/null and b/images/23-15.png differ diff --git a/images/23-16.png b/images/23-16.png new file mode 100644 index 0000000..a187524 Binary files /dev/null and b/images/23-16.png differ diff --git a/images/23-17.png b/images/23-17.png new file mode 100644 index 0000000..dc1eb71 Binary files /dev/null and b/images/23-17.png differ diff --git a/images/23-18.png b/images/23-18.png new file mode 100644 index 0000000..f638fa7 Binary files /dev/null and b/images/23-18.png differ diff --git a/images/23-19.png b/images/23-19.png new file mode 100644 index 0000000..eddb72c Binary files /dev/null and b/images/23-19.png differ diff --git a/images/23-2.png b/images/23-2.png new file mode 100644 index 0000000..7ea0f12 Binary files /dev/null and b/images/23-2.png differ diff --git a/images/23-20.png b/images/23-20.png new file mode 100644 index 0000000..001710b Binary files /dev/null and b/images/23-20.png differ diff --git a/images/23-21.png b/images/23-21.png new file mode 100644 index 0000000..754d81f Binary files /dev/null and b/images/23-21.png differ diff --git a/images/23-22.png b/images/23-22.png new file mode 100644 index 0000000..688557d Binary files /dev/null and b/images/23-22.png differ diff --git a/images/23-23.png b/images/23-23.png new file mode 100644 index 0000000..419420f Binary files /dev/null and b/images/23-23.png differ diff --git a/images/23-24.png b/images/23-24.png new file mode 100644 index 0000000..78011a1 Binary files /dev/null and b/images/23-24.png differ diff --git a/images/23-25.png b/images/23-25.png new file mode 100644 index 0000000..1c52764 Binary files /dev/null and b/images/23-25.png differ diff --git a/images/23-26.png b/images/23-26.png new file mode 100644 index 0000000..f06d97a Binary files /dev/null and b/images/23-26.png differ diff --git a/images/23-27.png b/images/23-27.png new file mode 100644 index 0000000..0c397ab Binary files /dev/null and b/images/23-27.png differ diff --git a/images/23-28.png b/images/23-28.png new file mode 100644 index 0000000..f0e084c Binary files /dev/null and b/images/23-28.png differ diff --git a/images/23-29.png b/images/23-29.png new file mode 100644 index 0000000..27d6a38 Binary files /dev/null and b/images/23-29.png differ diff --git a/images/23-3.png b/images/23-3.png new file mode 100644 index 0000000..1ff4155 Binary files /dev/null and b/images/23-3.png differ diff --git a/images/23-30.png b/images/23-30.png new file mode 100644 index 0000000..a2c9323 Binary files /dev/null and b/images/23-30.png differ diff --git a/images/23-31.png b/images/23-31.png new file mode 100644 index 0000000..34a95ac Binary files /dev/null and b/images/23-31.png differ diff --git a/images/23-32.png b/images/23-32.png new file mode 100644 index 0000000..f25ebb3 Binary files /dev/null and b/images/23-32.png differ diff --git a/images/23-33.png b/images/23-33.png new file mode 100644 index 0000000..efae4ec Binary files /dev/null and b/images/23-33.png differ diff --git a/images/23-34.png b/images/23-34.png new file mode 100644 index 0000000..f990b75 Binary files /dev/null and b/images/23-34.png differ diff --git a/images/23-35.png b/images/23-35.png new file mode 100644 index 0000000..09ae760 Binary files /dev/null and b/images/23-35.png differ diff --git a/images/23-36.png b/images/23-36.png new file mode 100644 index 0000000..a9936b1 Binary files /dev/null and b/images/23-36.png differ diff --git a/images/23-37.png b/images/23-37.png new file mode 100644 index 0000000..f679c54 Binary files /dev/null and b/images/23-37.png differ diff --git a/images/23-38.png b/images/23-38.png new file mode 100644 index 0000000..11b4ed2 Binary files /dev/null and b/images/23-38.png differ diff --git a/images/23-39.png b/images/23-39.png new file mode 100644 index 0000000..f8b2c9f Binary files /dev/null and b/images/23-39.png differ diff --git a/images/23-4.png b/images/23-4.png new file mode 100644 index 0000000..47b04b9 Binary files /dev/null and b/images/23-4.png differ diff --git a/images/23-40.png b/images/23-40.png new file mode 100644 index 0000000..c8d775b Binary files /dev/null and b/images/23-40.png differ diff --git a/images/23-41.png b/images/23-41.png new file mode 100644 index 0000000..016f8de Binary files /dev/null and b/images/23-41.png differ diff --git a/images/23-5.png b/images/23-5.png new file mode 100644 index 0000000..66c2eaf Binary files /dev/null and b/images/23-5.png differ diff --git a/images/23-6.png b/images/23-6.png new file mode 100644 index 0000000..fd0982f Binary files /dev/null and b/images/23-6.png differ diff --git a/images/23-7.png b/images/23-7.png new file mode 100644 index 0000000..7256398 Binary files /dev/null and b/images/23-7.png differ diff --git a/images/23-8.png b/images/23-8.png new file mode 100644 index 0000000..775128c Binary files /dev/null and b/images/23-8.png differ diff --git a/images/23-9.png b/images/23-9.png new file mode 100644 index 0000000..8e1fa64 Binary files /dev/null and b/images/23-9.png differ diff --git a/images/24-0.png b/images/24-0.png new file mode 100644 index 0000000..5d16eba Binary files /dev/null and b/images/24-0.png differ diff --git a/images/24-1.png b/images/24-1.png new file mode 100644 index 0000000..9bfba67 Binary files /dev/null and b/images/24-1.png differ diff --git a/images/24-10.png b/images/24-10.png new file mode 100644 index 0000000..cabb8eb Binary files /dev/null and b/images/24-10.png differ diff --git a/images/24-11.png b/images/24-11.png new file mode 100644 index 0000000..c947039 Binary files /dev/null and b/images/24-11.png differ diff --git a/images/24-2.png b/images/24-2.png new file mode 100644 index 0000000..cc3f316 Binary files /dev/null and b/images/24-2.png differ diff --git a/images/24-3.png b/images/24-3.png new file mode 100644 index 0000000..8c6f10c Binary files /dev/null and b/images/24-3.png differ diff --git a/images/24-4.png b/images/24-4.png new file mode 100644 index 0000000..8e8b660 Binary files /dev/null and b/images/24-4.png differ diff --git a/images/24-5.png b/images/24-5.png new file mode 100644 index 0000000..2f507a6 Binary files /dev/null and b/images/24-5.png differ diff --git a/images/24-6.png b/images/24-6.png new file mode 100644 index 0000000..b1114e8 Binary files /dev/null and b/images/24-6.png differ diff --git a/images/24-7.png b/images/24-7.png new file mode 100644 index 0000000..11c54dc Binary files /dev/null and b/images/24-7.png differ diff --git a/images/24-8.png b/images/24-8.png new file mode 100644 index 0000000..5754361 Binary files /dev/null and b/images/24-8.png differ diff --git a/images/24-9.png b/images/24-9.png new file mode 100644 index 0000000..d2e412a Binary files /dev/null and b/images/24-9.png differ diff --git a/images/25-0.png b/images/25-0.png new file mode 100644 index 0000000..9b555cd Binary files /dev/null and b/images/25-0.png differ diff --git a/images/25-1.png b/images/25-1.png new file mode 100644 index 0000000..a3011b2 Binary files /dev/null and b/images/25-1.png differ diff --git a/images/25-10.png b/images/25-10.png new file mode 100644 index 0000000..d7373ac Binary files /dev/null and b/images/25-10.png differ diff --git a/images/25-11.png b/images/25-11.png new file mode 100644 index 0000000..81d3467 Binary files /dev/null and b/images/25-11.png differ diff --git a/images/25-12.png b/images/25-12.png new file mode 100644 index 0000000..b94f22d Binary files /dev/null and b/images/25-12.png differ diff --git a/images/25-13.png b/images/25-13.png new file mode 100644 index 0000000..0f5eb29 Binary files /dev/null and b/images/25-13.png differ diff --git a/images/25-2.png b/images/25-2.png new file mode 100644 index 0000000..dcb6407 Binary files /dev/null and b/images/25-2.png differ diff --git a/images/25-3.png b/images/25-3.png new file mode 100644 index 0000000..00ff973 Binary files /dev/null and b/images/25-3.png differ diff --git a/images/25-4.png b/images/25-4.png new file mode 100644 index 0000000..a1ecb66 Binary files /dev/null and b/images/25-4.png differ diff --git a/images/25-5.png b/images/25-5.png new file mode 100644 index 0000000..00e198d Binary files /dev/null and b/images/25-5.png differ diff --git a/images/25-6.png b/images/25-6.png new file mode 100644 index 0000000..3cfbab5 Binary files /dev/null and b/images/25-6.png differ diff --git a/images/25-7.png b/images/25-7.png new file mode 100644 index 0000000..91f1c39 Binary files /dev/null and b/images/25-7.png differ diff --git a/images/25-8.png b/images/25-8.png new file mode 100644 index 0000000..1f88c02 Binary files /dev/null and b/images/25-8.png differ diff --git a/images/25-9.png b/images/25-9.png new file mode 100644 index 0000000..de9ee8d Binary files /dev/null and b/images/25-9.png differ diff --git a/images/26-0.png b/images/26-0.png new file mode 100644 index 0000000..3c34be4 Binary files /dev/null and b/images/26-0.png differ diff --git a/images/26-1.png b/images/26-1.png new file mode 100644 index 0000000..c29a6e5 Binary files /dev/null and b/images/26-1.png differ diff --git a/images/26-10.png b/images/26-10.png new file mode 100644 index 0000000..be15c78 Binary files /dev/null and b/images/26-10.png differ diff --git a/images/26-11.png b/images/26-11.png new file mode 100644 index 0000000..27749d7 Binary files /dev/null and b/images/26-11.png differ diff --git a/images/26-12.png b/images/26-12.png new file mode 100644 index 0000000..bae1478 Binary files /dev/null and b/images/26-12.png differ diff --git a/images/26-13.png b/images/26-13.png new file mode 100644 index 0000000..bd74891 Binary files /dev/null and b/images/26-13.png differ diff --git a/images/26-14.png b/images/26-14.png new file mode 100644 index 0000000..5b9764d Binary files /dev/null and b/images/26-14.png differ diff --git a/images/26-15.png b/images/26-15.png new file mode 100644 index 0000000..3497fa2 Binary files /dev/null and b/images/26-15.png differ diff --git a/images/26-16.png b/images/26-16.png new file mode 100644 index 0000000..d38c00b Binary files /dev/null and b/images/26-16.png differ diff --git a/images/26-17.png b/images/26-17.png new file mode 100644 index 0000000..1336891 Binary files /dev/null and b/images/26-17.png differ diff --git a/images/26-18.png b/images/26-18.png new file mode 100644 index 0000000..0f58265 Binary files /dev/null and b/images/26-18.png differ diff --git a/images/26-19.png b/images/26-19.png new file mode 100644 index 0000000..663314c Binary files /dev/null and b/images/26-19.png differ diff --git a/images/26-2.png b/images/26-2.png new file mode 100644 index 0000000..a886fcb Binary files /dev/null and b/images/26-2.png differ diff --git a/images/26-20.png b/images/26-20.png new file mode 100644 index 0000000..bffe496 Binary files /dev/null and b/images/26-20.png differ diff --git a/images/26-3.png b/images/26-3.png new file mode 100644 index 0000000..feab4f2 Binary files /dev/null and b/images/26-3.png differ diff --git a/images/26-4.png b/images/26-4.png new file mode 100644 index 0000000..ba1359a Binary files /dev/null and b/images/26-4.png differ diff --git a/images/26-5.png b/images/26-5.png new file mode 100644 index 0000000..9075477 Binary files /dev/null and b/images/26-5.png differ diff --git a/images/26-6.png b/images/26-6.png new file mode 100644 index 0000000..e44085b Binary files /dev/null and b/images/26-6.png differ diff --git a/images/26-7.png b/images/26-7.png new file mode 100644 index 0000000..d47d3ee Binary files /dev/null and b/images/26-7.png differ diff --git a/images/26-8.png b/images/26-8.png new file mode 100644 index 0000000..76c6569 Binary files /dev/null and b/images/26-8.png differ diff --git a/images/26-9.png b/images/26-9.png new file mode 100644 index 0000000..ffdd4c8 Binary files /dev/null and b/images/26-9.png differ diff --git a/images/27-0.png b/images/27-0.png new file mode 100644 index 0000000..ab8f32a Binary files /dev/null and b/images/27-0.png differ diff --git a/images/27-1.png b/images/27-1.png new file mode 100644 index 0000000..af90055 Binary files /dev/null and b/images/27-1.png differ diff --git a/images/27-10.png b/images/27-10.png new file mode 100644 index 0000000..c965181 Binary files /dev/null and b/images/27-10.png differ diff --git a/images/27-11.png b/images/27-11.png new file mode 100644 index 0000000..7039035 Binary files /dev/null and b/images/27-11.png differ diff --git a/images/27-12.png b/images/27-12.png new file mode 100644 index 0000000..553c20a Binary files /dev/null and b/images/27-12.png differ diff --git a/images/27-13.png b/images/27-13.png new file mode 100644 index 0000000..387b5f5 Binary files /dev/null and b/images/27-13.png differ diff --git a/images/27-14.png b/images/27-14.png new file mode 100644 index 0000000..13216d7 Binary files /dev/null and b/images/27-14.png differ diff --git a/images/27-15.png b/images/27-15.png new file mode 100644 index 0000000..6df0b23 Binary files /dev/null and b/images/27-15.png differ diff --git a/images/27-16.png b/images/27-16.png new file mode 100644 index 0000000..4b32a8a Binary files /dev/null and b/images/27-16.png differ diff --git a/images/27-17.png b/images/27-17.png new file mode 100644 index 0000000..fb7806b Binary files /dev/null and b/images/27-17.png differ diff --git a/images/27-18.png b/images/27-18.png new file mode 100644 index 0000000..da5b5aa Binary files /dev/null and b/images/27-18.png differ diff --git a/images/27-19.png b/images/27-19.png new file mode 100644 index 0000000..198893f Binary files /dev/null and b/images/27-19.png differ diff --git a/images/27-2.png b/images/27-2.png new file mode 100644 index 0000000..705fe71 Binary files /dev/null and b/images/27-2.png differ diff --git a/images/27-20.png b/images/27-20.png new file mode 100644 index 0000000..26cf161 Binary files /dev/null and b/images/27-20.png differ diff --git a/images/27-21.png b/images/27-21.png new file mode 100644 index 0000000..f14c169 Binary files /dev/null and b/images/27-21.png differ diff --git a/images/27-22.png b/images/27-22.png new file mode 100644 index 0000000..0f4115b Binary files /dev/null and b/images/27-22.png differ diff --git a/images/27-23.png b/images/27-23.png new file mode 100644 index 0000000..9d800dd Binary files /dev/null and b/images/27-23.png differ diff --git a/images/27-24.png b/images/27-24.png new file mode 100644 index 0000000..7efdd47 Binary files /dev/null and b/images/27-24.png differ diff --git a/images/27-25.png b/images/27-25.png new file mode 100644 index 0000000..78ba851 Binary files /dev/null and b/images/27-25.png differ diff --git a/images/27-26.png b/images/27-26.png new file mode 100644 index 0000000..7d47b74 Binary files /dev/null and b/images/27-26.png differ diff --git a/images/27-27.png b/images/27-27.png new file mode 100644 index 0000000..2e4a5ac Binary files /dev/null and b/images/27-27.png differ diff --git a/images/27-28.png b/images/27-28.png new file mode 100644 index 0000000..095a630 Binary files /dev/null and b/images/27-28.png differ diff --git a/images/27-29.png b/images/27-29.png new file mode 100644 index 0000000..665d7e9 Binary files /dev/null and b/images/27-29.png differ diff --git a/images/27-3.png b/images/27-3.png new file mode 100644 index 0000000..31a6691 Binary files /dev/null and b/images/27-3.png differ diff --git a/images/27-30.png b/images/27-30.png new file mode 100644 index 0000000..c29dfdd Binary files /dev/null and b/images/27-30.png differ diff --git a/images/27-31.png b/images/27-31.png new file mode 100644 index 0000000..d5d0f06 Binary files /dev/null and b/images/27-31.png differ diff --git a/images/27-32.png b/images/27-32.png new file mode 100644 index 0000000..209ce65 Binary files /dev/null and b/images/27-32.png differ diff --git a/images/27-33.png b/images/27-33.png new file mode 100644 index 0000000..c33269e Binary files /dev/null and b/images/27-33.png differ diff --git a/images/27-34.png b/images/27-34.png new file mode 100644 index 0000000..9f474f2 Binary files /dev/null and b/images/27-34.png differ diff --git a/images/27-35.png b/images/27-35.png new file mode 100644 index 0000000..2bb73e4 Binary files /dev/null and b/images/27-35.png differ diff --git a/images/27-36.png b/images/27-36.png new file mode 100644 index 0000000..f09d383 Binary files /dev/null and b/images/27-36.png differ diff --git a/images/27-37.png b/images/27-37.png new file mode 100644 index 0000000..5d1304c Binary files /dev/null and b/images/27-37.png differ diff --git a/images/27-38.png b/images/27-38.png new file mode 100644 index 0000000..8f5169f Binary files /dev/null and b/images/27-38.png differ diff --git a/images/27-39.png b/images/27-39.png new file mode 100644 index 0000000..8dfd5c9 Binary files /dev/null and b/images/27-39.png differ diff --git a/images/27-4.png b/images/27-4.png new file mode 100644 index 0000000..d3daeeb Binary files /dev/null and b/images/27-4.png differ diff --git a/images/27-40.png b/images/27-40.png new file mode 100644 index 0000000..4274c81 Binary files /dev/null and b/images/27-40.png differ diff --git a/images/27-41.png b/images/27-41.png new file mode 100644 index 0000000..6df00c3 Binary files /dev/null and b/images/27-41.png differ diff --git a/images/27-42.png b/images/27-42.png new file mode 100644 index 0000000..bd7922a Binary files /dev/null and b/images/27-42.png differ diff --git a/images/27-43.png b/images/27-43.png new file mode 100644 index 0000000..0059125 Binary files /dev/null and b/images/27-43.png differ diff --git a/images/27-44.png b/images/27-44.png new file mode 100644 index 0000000..5009939 Binary files /dev/null and b/images/27-44.png differ diff --git a/images/27-45.png b/images/27-45.png new file mode 100644 index 0000000..bc11b60 Binary files /dev/null and b/images/27-45.png differ diff --git a/images/27-46.png b/images/27-46.png new file mode 100644 index 0000000..661d762 Binary files /dev/null and b/images/27-46.png differ diff --git a/images/27-47.png b/images/27-47.png new file mode 100644 index 0000000..9cf6d1c Binary files /dev/null and b/images/27-47.png differ diff --git a/images/27-48.png b/images/27-48.png new file mode 100644 index 0000000..fddb743 Binary files /dev/null and b/images/27-48.png differ diff --git a/images/27-49.png b/images/27-49.png new file mode 100644 index 0000000..43cbdec Binary files /dev/null and b/images/27-49.png differ diff --git a/images/27-5.png b/images/27-5.png new file mode 100644 index 0000000..2823bbf Binary files /dev/null and b/images/27-5.png differ diff --git a/images/27-50.png b/images/27-50.png new file mode 100644 index 0000000..fb18c54 Binary files /dev/null and b/images/27-50.png differ diff --git a/images/27-51.png b/images/27-51.png new file mode 100644 index 0000000..eac5c9a Binary files /dev/null and b/images/27-51.png differ diff --git a/images/27-52.png b/images/27-52.png new file mode 100644 index 0000000..428fb03 Binary files /dev/null and b/images/27-52.png differ diff --git a/images/27-53.png b/images/27-53.png new file mode 100644 index 0000000..21b9709 Binary files /dev/null and b/images/27-53.png differ diff --git a/images/27-54.png b/images/27-54.png new file mode 100644 index 0000000..dcc9a93 Binary files /dev/null and b/images/27-54.png differ diff --git a/images/27-55.png b/images/27-55.png new file mode 100644 index 0000000..a69cc22 Binary files /dev/null and b/images/27-55.png differ diff --git a/images/27-6.png b/images/27-6.png new file mode 100644 index 0000000..10c120a Binary files /dev/null and b/images/27-6.png differ diff --git a/images/27-7.png b/images/27-7.png new file mode 100644 index 0000000..2adbba8 Binary files /dev/null and b/images/27-7.png differ diff --git a/images/27-8.png b/images/27-8.png new file mode 100644 index 0000000..4441e6a Binary files /dev/null and b/images/27-8.png differ diff --git a/images/27-9.png b/images/27-9.png new file mode 100644 index 0000000..e02e94a Binary files /dev/null and b/images/27-9.png differ diff --git a/images/28-0.png b/images/28-0.png new file mode 100644 index 0000000..d09df7c Binary files /dev/null and b/images/28-0.png differ diff --git a/images/28-1.png b/images/28-1.png new file mode 100644 index 0000000..0c05b59 Binary files /dev/null and b/images/28-1.png differ diff --git a/images/28-10.png b/images/28-10.png new file mode 100644 index 0000000..921c9d3 Binary files /dev/null and b/images/28-10.png differ diff --git a/images/28-11.png b/images/28-11.png new file mode 100644 index 0000000..fad854d Binary files /dev/null and b/images/28-11.png differ diff --git a/images/28-12.png b/images/28-12.png new file mode 100644 index 0000000..f7fc557 Binary files /dev/null and b/images/28-12.png differ diff --git a/images/28-13.png b/images/28-13.png new file mode 100644 index 0000000..06d3db2 Binary files /dev/null and b/images/28-13.png differ diff --git a/images/28-14.png b/images/28-14.png new file mode 100644 index 0000000..f22d532 Binary files /dev/null and b/images/28-14.png differ diff --git a/images/28-15.png b/images/28-15.png new file mode 100644 index 0000000..0f8eea0 Binary files /dev/null and b/images/28-15.png differ diff --git a/images/28-16.png b/images/28-16.png new file mode 100644 index 0000000..7e223da Binary files /dev/null and b/images/28-16.png differ diff --git a/images/28-17.png b/images/28-17.png new file mode 100644 index 0000000..3604856 Binary files /dev/null and b/images/28-17.png differ diff --git a/images/28-18.png b/images/28-18.png new file mode 100644 index 0000000..071d5b0 Binary files /dev/null and b/images/28-18.png differ diff --git a/images/28-2.png b/images/28-2.png new file mode 100644 index 0000000..ddf66ef Binary files /dev/null and b/images/28-2.png differ diff --git a/images/28-3.png b/images/28-3.png new file mode 100644 index 0000000..eb195d7 Binary files /dev/null and b/images/28-3.png differ diff --git a/images/28-4.png b/images/28-4.png new file mode 100644 index 0000000..9917846 Binary files /dev/null and b/images/28-4.png differ diff --git a/images/28-5.png b/images/28-5.png new file mode 100644 index 0000000..f302382 Binary files /dev/null and b/images/28-5.png differ diff --git a/images/28-6.png b/images/28-6.png new file mode 100644 index 0000000..ae501e4 Binary files /dev/null and b/images/28-6.png differ diff --git a/images/28-7.png b/images/28-7.png new file mode 100644 index 0000000..e433e94 Binary files /dev/null and b/images/28-7.png differ diff --git a/images/28-8.png b/images/28-8.png new file mode 100644 index 0000000..ba0a6b7 Binary files /dev/null and b/images/28-8.png differ diff --git a/images/28-9.png b/images/28-9.png new file mode 100644 index 0000000..610a316 Binary files /dev/null and b/images/28-9.png differ diff --git a/images/29-0.png b/images/29-0.png new file mode 100644 index 0000000..7c26050 Binary files /dev/null and b/images/29-0.png differ diff --git a/images/29-1.png b/images/29-1.png new file mode 100644 index 0000000..65f5367 Binary files /dev/null and b/images/29-1.png differ diff --git a/images/29-10.png b/images/29-10.png new file mode 100644 index 0000000..e393431 Binary files /dev/null and b/images/29-10.png differ diff --git a/images/29-11.png b/images/29-11.png new file mode 100644 index 0000000..72f974b Binary files /dev/null and b/images/29-11.png differ diff --git a/images/29-12.png b/images/29-12.png new file mode 100644 index 0000000..99392da Binary files /dev/null and b/images/29-12.png differ diff --git a/images/29-13.png b/images/29-13.png new file mode 100644 index 0000000..19d11e4 Binary files /dev/null and b/images/29-13.png differ diff --git a/images/29-14.png b/images/29-14.png new file mode 100644 index 0000000..01c67de Binary files /dev/null and b/images/29-14.png differ diff --git a/images/29-15.png b/images/29-15.png new file mode 100644 index 0000000..ba859cd Binary files /dev/null and b/images/29-15.png differ diff --git a/images/29-16.png b/images/29-16.png new file mode 100644 index 0000000..73d4107 Binary files /dev/null and b/images/29-16.png differ diff --git a/images/29-17.png b/images/29-17.png new file mode 100644 index 0000000..ee149ba Binary files /dev/null and b/images/29-17.png differ diff --git a/images/29-18.png b/images/29-18.png new file mode 100644 index 0000000..c0a24c1 Binary files /dev/null and b/images/29-18.png differ diff --git a/images/29-19.png b/images/29-19.png new file mode 100644 index 0000000..f2552a6 Binary files /dev/null and b/images/29-19.png differ diff --git a/images/29-2.png b/images/29-2.png new file mode 100644 index 0000000..ebc86d5 Binary files /dev/null and b/images/29-2.png differ diff --git a/images/29-20.png b/images/29-20.png new file mode 100644 index 0000000..17b1e88 Binary files /dev/null and b/images/29-20.png differ diff --git a/images/29-21.png b/images/29-21.png new file mode 100644 index 0000000..fb011de Binary files /dev/null and b/images/29-21.png differ diff --git a/images/29-22.png b/images/29-22.png new file mode 100644 index 0000000..9c79163 Binary files /dev/null and b/images/29-22.png differ diff --git a/images/29-23.png b/images/29-23.png new file mode 100644 index 0000000..9a6614e Binary files /dev/null and b/images/29-23.png differ diff --git a/images/29-24.png b/images/29-24.png new file mode 100644 index 0000000..03afafd Binary files /dev/null and b/images/29-24.png differ diff --git a/images/29-25.png b/images/29-25.png new file mode 100644 index 0000000..29b0e4f Binary files /dev/null and b/images/29-25.png differ diff --git a/images/29-26.png b/images/29-26.png new file mode 100644 index 0000000..6b5ed3d Binary files /dev/null and b/images/29-26.png differ diff --git a/images/29-27.png b/images/29-27.png new file mode 100644 index 0000000..47fe04e Binary files /dev/null and b/images/29-27.png differ diff --git a/images/29-28.png b/images/29-28.png new file mode 100644 index 0000000..e4ae5d2 Binary files /dev/null and b/images/29-28.png differ diff --git a/images/29-29.png b/images/29-29.png new file mode 100644 index 0000000..ffd102d Binary files /dev/null and b/images/29-29.png differ diff --git a/images/29-3.png b/images/29-3.png new file mode 100644 index 0000000..8b59067 Binary files /dev/null and b/images/29-3.png differ diff --git a/images/29-30.png b/images/29-30.png new file mode 100644 index 0000000..6a78e4b Binary files /dev/null and b/images/29-30.png differ diff --git a/images/29-31.png b/images/29-31.png new file mode 100644 index 0000000..5e9c4ba Binary files /dev/null and b/images/29-31.png differ diff --git a/images/29-32.png b/images/29-32.png new file mode 100644 index 0000000..71aa17f Binary files /dev/null and b/images/29-32.png differ diff --git a/images/29-33.png b/images/29-33.png new file mode 100644 index 0000000..5cb8369 Binary files /dev/null and b/images/29-33.png differ diff --git a/images/29-34.png b/images/29-34.png new file mode 100644 index 0000000..34a40a6 Binary files /dev/null and b/images/29-34.png differ diff --git a/images/29-35.png b/images/29-35.png new file mode 100644 index 0000000..93b7f8f Binary files /dev/null and b/images/29-35.png differ diff --git a/images/29-36.png b/images/29-36.png new file mode 100644 index 0000000..d1297b6 Binary files /dev/null and b/images/29-36.png differ diff --git a/images/29-37.png b/images/29-37.png new file mode 100644 index 0000000..8732f62 Binary files /dev/null and b/images/29-37.png differ diff --git a/images/29-38.png b/images/29-38.png new file mode 100644 index 0000000..3167581 Binary files /dev/null and b/images/29-38.png differ diff --git a/images/29-39.png b/images/29-39.png new file mode 100644 index 0000000..91ea77d Binary files /dev/null and b/images/29-39.png differ diff --git a/images/29-4.png b/images/29-4.png new file mode 100644 index 0000000..4eafd80 Binary files /dev/null and b/images/29-4.png differ diff --git a/images/29-5.png b/images/29-5.png new file mode 100644 index 0000000..1d84d2e Binary files /dev/null and b/images/29-5.png differ diff --git a/images/29-6.png b/images/29-6.png new file mode 100644 index 0000000..b3b8a22 Binary files /dev/null and b/images/29-6.png differ diff --git a/images/29-7.png b/images/29-7.png new file mode 100644 index 0000000..de4fccc Binary files /dev/null and b/images/29-7.png differ diff --git a/images/29-8.png b/images/29-8.png new file mode 100644 index 0000000..571c99c Binary files /dev/null and b/images/29-8.png differ diff --git a/images/29-9.png b/images/29-9.png new file mode 100644 index 0000000..5bbdb29 Binary files /dev/null and b/images/29-9.png differ diff --git a/images/3-0.png b/images/3-0.png new file mode 100644 index 0000000..053b4ec Binary files /dev/null and b/images/3-0.png differ diff --git a/images/3-1.png b/images/3-1.png new file mode 100644 index 0000000..a4e88a5 Binary files /dev/null and b/images/3-1.png differ diff --git a/images/3-10.png b/images/3-10.png new file mode 100644 index 0000000..226018e Binary files /dev/null and b/images/3-10.png differ diff --git a/images/3-11.png b/images/3-11.png new file mode 100644 index 0000000..30ee938 Binary files /dev/null and b/images/3-11.png differ diff --git a/images/3-12.png b/images/3-12.png new file mode 100644 index 0000000..991c5dc Binary files /dev/null and b/images/3-12.png differ diff --git a/images/3-13.png b/images/3-13.png new file mode 100644 index 0000000..5e4dbee Binary files /dev/null and b/images/3-13.png differ diff --git a/images/3-14.png b/images/3-14.png new file mode 100644 index 0000000..3597daf Binary files /dev/null and b/images/3-14.png differ diff --git a/images/3-15.png b/images/3-15.png new file mode 100644 index 0000000..95fbf2c Binary files /dev/null and b/images/3-15.png differ diff --git a/images/3-16.png b/images/3-16.png new file mode 100644 index 0000000..7e1aa35 Binary files /dev/null and b/images/3-16.png differ diff --git a/images/3-17.png b/images/3-17.png new file mode 100644 index 0000000..de6809e Binary files /dev/null and b/images/3-17.png differ diff --git a/images/3-18.png b/images/3-18.png new file mode 100644 index 0000000..e87ddeb Binary files /dev/null and b/images/3-18.png differ diff --git a/images/3-19.png b/images/3-19.png new file mode 100644 index 0000000..5383a51 Binary files /dev/null and b/images/3-19.png differ diff --git a/images/3-2.png b/images/3-2.png new file mode 100644 index 0000000..c37a193 Binary files /dev/null and b/images/3-2.png differ diff --git a/images/3-20.png b/images/3-20.png new file mode 100644 index 0000000..da58fe4 Binary files /dev/null and b/images/3-20.png differ diff --git a/images/3-21.png b/images/3-21.png new file mode 100644 index 0000000..430879d Binary files /dev/null and b/images/3-21.png differ diff --git a/images/3-22.png b/images/3-22.png new file mode 100644 index 0000000..e9891f1 Binary files /dev/null and b/images/3-22.png differ diff --git a/images/3-23.png b/images/3-23.png new file mode 100644 index 0000000..e3666f0 Binary files /dev/null and b/images/3-23.png differ diff --git a/images/3-24.png b/images/3-24.png new file mode 100644 index 0000000..e61aa79 Binary files /dev/null and b/images/3-24.png differ diff --git a/images/3-25.png b/images/3-25.png new file mode 100644 index 0000000..8f41ab1 Binary files /dev/null and b/images/3-25.png differ diff --git a/images/3-3.png b/images/3-3.png new file mode 100644 index 0000000..cddb604 Binary files /dev/null and b/images/3-3.png differ diff --git a/images/3-4.png b/images/3-4.png new file mode 100644 index 0000000..bff7176 Binary files /dev/null and b/images/3-4.png differ diff --git a/images/3-5.png b/images/3-5.png new file mode 100644 index 0000000..7e1cff0 Binary files /dev/null and b/images/3-5.png differ diff --git a/images/3-6.png b/images/3-6.png new file mode 100644 index 0000000..1f784df Binary files /dev/null and b/images/3-6.png differ diff --git a/images/3-7.png b/images/3-7.png new file mode 100644 index 0000000..b0fad20 Binary files /dev/null and b/images/3-7.png differ diff --git a/images/3-8.png b/images/3-8.png new file mode 100644 index 0000000..0a88eba Binary files /dev/null and b/images/3-8.png differ diff --git a/images/3-9.png b/images/3-9.png new file mode 100644 index 0000000..90b03fb Binary files /dev/null and b/images/3-9.png differ diff --git a/images/30-0.png b/images/30-0.png new file mode 100644 index 0000000..a0438d2 Binary files /dev/null and b/images/30-0.png differ diff --git a/images/30-1.png b/images/30-1.png new file mode 100644 index 0000000..f64a829 Binary files /dev/null and b/images/30-1.png differ diff --git a/images/30-10.png b/images/30-10.png new file mode 100644 index 0000000..ed9db5e Binary files /dev/null and b/images/30-10.png differ diff --git a/images/30-11.png b/images/30-11.png new file mode 100644 index 0000000..fa2ca81 Binary files /dev/null and b/images/30-11.png differ diff --git a/images/30-12.png b/images/30-12.png new file mode 100644 index 0000000..7ddc558 Binary files /dev/null and b/images/30-12.png differ diff --git a/images/30-13.png b/images/30-13.png new file mode 100644 index 0000000..9d95625 Binary files /dev/null and b/images/30-13.png differ diff --git a/images/30-14.png b/images/30-14.png new file mode 100644 index 0000000..09a6445 Binary files /dev/null and b/images/30-14.png differ diff --git a/images/30-2.png b/images/30-2.png new file mode 100644 index 0000000..8da9a81 Binary files /dev/null and b/images/30-2.png differ diff --git a/images/30-3.png b/images/30-3.png new file mode 100644 index 0000000..a5b8c7d Binary files /dev/null and b/images/30-3.png differ diff --git a/images/30-4.png b/images/30-4.png new file mode 100644 index 0000000..83e6e2c Binary files /dev/null and b/images/30-4.png differ diff --git a/images/30-5.png b/images/30-5.png new file mode 100644 index 0000000..68ebac7 Binary files /dev/null and b/images/30-5.png differ diff --git a/images/30-6.png b/images/30-6.png new file mode 100644 index 0000000..ffb5e6a Binary files /dev/null and b/images/30-6.png differ diff --git a/images/30-7.png b/images/30-7.png new file mode 100644 index 0000000..5061b53 Binary files /dev/null and b/images/30-7.png differ diff --git a/images/30-8.png b/images/30-8.png new file mode 100644 index 0000000..142507b Binary files /dev/null and b/images/30-8.png differ diff --git a/images/30-9.png b/images/30-9.png new file mode 100644 index 0000000..4f2e011 Binary files /dev/null and b/images/30-9.png differ diff --git a/images/31-0.png b/images/31-0.png new file mode 100644 index 0000000..48a6169 Binary files /dev/null and b/images/31-0.png differ diff --git a/images/31-1.png b/images/31-1.png new file mode 100644 index 0000000..da6a3a7 Binary files /dev/null and b/images/31-1.png differ diff --git a/images/31-10.png b/images/31-10.png new file mode 100644 index 0000000..e3a8ecf Binary files /dev/null and b/images/31-10.png differ diff --git a/images/31-11.png b/images/31-11.png new file mode 100644 index 0000000..ae12c43 Binary files /dev/null and b/images/31-11.png differ diff --git a/images/31-12.png b/images/31-12.png new file mode 100644 index 0000000..9995d06 Binary files /dev/null and b/images/31-12.png differ diff --git a/images/31-13.png b/images/31-13.png new file mode 100644 index 0000000..2a7ae1c Binary files /dev/null and b/images/31-13.png differ diff --git a/images/31-14.png b/images/31-14.png new file mode 100644 index 0000000..dedc74a Binary files /dev/null and b/images/31-14.png differ diff --git a/images/31-15.png b/images/31-15.png new file mode 100644 index 0000000..0d52527 Binary files /dev/null and b/images/31-15.png differ diff --git a/images/31-16.png b/images/31-16.png new file mode 100644 index 0000000..3f62c18 Binary files /dev/null and b/images/31-16.png differ diff --git a/images/31-17.png b/images/31-17.png new file mode 100644 index 0000000..88e4d90 Binary files /dev/null and b/images/31-17.png differ diff --git a/images/31-18.png b/images/31-18.png new file mode 100644 index 0000000..3e76682 Binary files /dev/null and b/images/31-18.png differ diff --git a/images/31-19.png b/images/31-19.png new file mode 100644 index 0000000..a257c3b Binary files /dev/null and b/images/31-19.png differ diff --git a/images/31-2.png b/images/31-2.png new file mode 100644 index 0000000..19eccf4 Binary files /dev/null and b/images/31-2.png differ diff --git a/images/31-20.png b/images/31-20.png new file mode 100644 index 0000000..d5af30e Binary files /dev/null and b/images/31-20.png differ diff --git a/images/31-21.png b/images/31-21.png new file mode 100644 index 0000000..552a620 Binary files /dev/null and b/images/31-21.png differ diff --git a/images/31-22.png b/images/31-22.png new file mode 100644 index 0000000..815e79d Binary files /dev/null and b/images/31-22.png differ diff --git a/images/31-23.png b/images/31-23.png new file mode 100644 index 0000000..31d0d87 Binary files /dev/null and b/images/31-23.png differ diff --git a/images/31-24.png b/images/31-24.png new file mode 100644 index 0000000..c634f5e Binary files /dev/null and b/images/31-24.png differ diff --git a/images/31-25.png b/images/31-25.png new file mode 100644 index 0000000..3f050cd Binary files /dev/null and b/images/31-25.png differ diff --git a/images/31-26.png b/images/31-26.png new file mode 100644 index 0000000..189a45e Binary files /dev/null and b/images/31-26.png differ diff --git a/images/31-27.png b/images/31-27.png new file mode 100644 index 0000000..58a1d68 Binary files /dev/null and b/images/31-27.png differ diff --git a/images/31-28.png b/images/31-28.png new file mode 100644 index 0000000..b192aa4 Binary files /dev/null and b/images/31-28.png differ diff --git a/images/31-29.png b/images/31-29.png new file mode 100644 index 0000000..d6f6d77 Binary files /dev/null and b/images/31-29.png differ diff --git a/images/31-3.png b/images/31-3.png new file mode 100644 index 0000000..3795789 Binary files /dev/null and b/images/31-3.png differ diff --git a/images/31-4.png b/images/31-4.png new file mode 100644 index 0000000..a17147f Binary files /dev/null and b/images/31-4.png differ diff --git a/images/31-5.png b/images/31-5.png new file mode 100644 index 0000000..66f2d75 Binary files /dev/null and b/images/31-5.png differ diff --git a/images/31-6.png b/images/31-6.png new file mode 100644 index 0000000..62d3081 Binary files /dev/null and b/images/31-6.png differ diff --git a/images/31-7.png b/images/31-7.png new file mode 100644 index 0000000..18bb7b1 Binary files /dev/null and b/images/31-7.png differ diff --git a/images/31-8.png b/images/31-8.png new file mode 100644 index 0000000..331cdf1 Binary files /dev/null and b/images/31-8.png differ diff --git a/images/31-9.png b/images/31-9.png new file mode 100644 index 0000000..8a76781 Binary files /dev/null and b/images/31-9.png differ diff --git a/images/32-0.png b/images/32-0.png new file mode 100644 index 0000000..d1cc61d Binary files /dev/null and b/images/32-0.png differ diff --git a/images/32-1.png b/images/32-1.png new file mode 100644 index 0000000..bfefbce Binary files /dev/null and b/images/32-1.png differ diff --git a/images/32-10.png b/images/32-10.png new file mode 100644 index 0000000..8deed9d Binary files /dev/null and b/images/32-10.png differ diff --git a/images/32-11.png b/images/32-11.png new file mode 100644 index 0000000..9778f42 Binary files /dev/null and b/images/32-11.png differ diff --git a/images/32-12.png b/images/32-12.png new file mode 100644 index 0000000..3d59f6c Binary files /dev/null and b/images/32-12.png differ diff --git a/images/32-13.png b/images/32-13.png new file mode 100644 index 0000000..5b95b87 Binary files /dev/null and b/images/32-13.png differ diff --git a/images/32-14.png b/images/32-14.png new file mode 100644 index 0000000..c3fe089 Binary files /dev/null and b/images/32-14.png differ diff --git a/images/32-15.png b/images/32-15.png new file mode 100644 index 0000000..3da8c59 Binary files /dev/null and b/images/32-15.png differ diff --git a/images/32-16.png b/images/32-16.png new file mode 100644 index 0000000..7e2157e Binary files /dev/null and b/images/32-16.png differ diff --git a/images/32-17.png b/images/32-17.png new file mode 100644 index 0000000..e522cfe Binary files /dev/null and b/images/32-17.png differ diff --git a/images/32-18.png b/images/32-18.png new file mode 100644 index 0000000..59e5169 Binary files /dev/null and b/images/32-18.png differ diff --git a/images/32-19.png b/images/32-19.png new file mode 100644 index 0000000..1c5d826 Binary files /dev/null and b/images/32-19.png differ diff --git a/images/32-2.png b/images/32-2.png new file mode 100644 index 0000000..9e68a08 Binary files /dev/null and b/images/32-2.png differ diff --git a/images/32-20.png b/images/32-20.png new file mode 100644 index 0000000..a124961 Binary files /dev/null and b/images/32-20.png differ diff --git a/images/32-21.png b/images/32-21.png new file mode 100644 index 0000000..336277d Binary files /dev/null and b/images/32-21.png differ diff --git a/images/32-22.png b/images/32-22.png new file mode 100644 index 0000000..6c95452 Binary files /dev/null and b/images/32-22.png differ diff --git a/images/32-23.png b/images/32-23.png new file mode 100644 index 0000000..85fd8a6 Binary files /dev/null and b/images/32-23.png differ diff --git a/images/32-24.png b/images/32-24.png new file mode 100644 index 0000000..1b71bfb Binary files /dev/null and b/images/32-24.png differ diff --git a/images/32-25.png b/images/32-25.png new file mode 100644 index 0000000..96a69ea Binary files /dev/null and b/images/32-25.png differ diff --git a/images/32-26.png b/images/32-26.png new file mode 100644 index 0000000..f18842d Binary files /dev/null and b/images/32-26.png differ diff --git a/images/32-27.png b/images/32-27.png new file mode 100644 index 0000000..2f74b41 Binary files /dev/null and b/images/32-27.png differ diff --git a/images/32-28.png b/images/32-28.png new file mode 100644 index 0000000..5e3079f Binary files /dev/null and b/images/32-28.png differ diff --git a/images/32-3.png b/images/32-3.png new file mode 100644 index 0000000..6a4faf2 Binary files /dev/null and b/images/32-3.png differ diff --git a/images/32-4.png b/images/32-4.png new file mode 100644 index 0000000..434d466 Binary files /dev/null and b/images/32-4.png differ diff --git a/images/32-5.png b/images/32-5.png new file mode 100644 index 0000000..865dfc9 Binary files /dev/null and b/images/32-5.png differ diff --git a/images/32-6.png b/images/32-6.png new file mode 100644 index 0000000..b6efb63 Binary files /dev/null and b/images/32-6.png differ diff --git a/images/32-7.png b/images/32-7.png new file mode 100644 index 0000000..ac20209 Binary files /dev/null and b/images/32-7.png differ diff --git a/images/32-8.png b/images/32-8.png new file mode 100644 index 0000000..bb98e18 Binary files /dev/null and b/images/32-8.png differ diff --git a/images/32-9.png b/images/32-9.png new file mode 100644 index 0000000..f4da20e Binary files /dev/null and b/images/32-9.png differ diff --git a/images/33-0.png b/images/33-0.png new file mode 100644 index 0000000..6f983f8 Binary files /dev/null and b/images/33-0.png differ diff --git a/images/33-1.png b/images/33-1.png new file mode 100644 index 0000000..c815b94 Binary files /dev/null and b/images/33-1.png differ diff --git a/images/33-10.png b/images/33-10.png new file mode 100644 index 0000000..246ec7d Binary files /dev/null and b/images/33-10.png differ diff --git a/images/33-11.png b/images/33-11.png new file mode 100644 index 0000000..531b189 Binary files /dev/null and b/images/33-11.png differ diff --git a/images/33-12.png b/images/33-12.png new file mode 100644 index 0000000..7dbc381 Binary files /dev/null and b/images/33-12.png differ diff --git a/images/33-13.png b/images/33-13.png new file mode 100644 index 0000000..4ede1f2 Binary files /dev/null and b/images/33-13.png differ diff --git a/images/33-14.png b/images/33-14.png new file mode 100644 index 0000000..0fe96fc Binary files /dev/null and b/images/33-14.png differ diff --git a/images/33-15.png b/images/33-15.png new file mode 100644 index 0000000..27e10e4 Binary files /dev/null and b/images/33-15.png differ diff --git a/images/33-16.png b/images/33-16.png new file mode 100644 index 0000000..bd3d266 Binary files /dev/null and b/images/33-16.png differ diff --git a/images/33-2.png b/images/33-2.png new file mode 100644 index 0000000..194daf0 Binary files /dev/null and b/images/33-2.png differ diff --git a/images/33-3.png b/images/33-3.png new file mode 100644 index 0000000..6f6ebea Binary files /dev/null and b/images/33-3.png differ diff --git a/images/33-4.png b/images/33-4.png new file mode 100644 index 0000000..1673abd Binary files /dev/null and b/images/33-4.png differ diff --git a/images/33-5.png b/images/33-5.png new file mode 100644 index 0000000..b3f7e8c Binary files /dev/null and b/images/33-5.png differ diff --git a/images/33-6.png b/images/33-6.png new file mode 100644 index 0000000..ea199bb Binary files /dev/null and b/images/33-6.png differ diff --git a/images/33-7.png b/images/33-7.png new file mode 100644 index 0000000..0cd468c Binary files /dev/null and b/images/33-7.png differ diff --git a/images/33-8.png b/images/33-8.png new file mode 100644 index 0000000..5f22517 Binary files /dev/null and b/images/33-8.png differ diff --git a/images/33-9.png b/images/33-9.png new file mode 100644 index 0000000..d5479e1 Binary files /dev/null and b/images/33-9.png differ diff --git a/images/34-0.png b/images/34-0.png new file mode 100644 index 0000000..00cb81a Binary files /dev/null and b/images/34-0.png differ diff --git a/images/34-1.png b/images/34-1.png new file mode 100644 index 0000000..175a6ad Binary files /dev/null and b/images/34-1.png differ diff --git a/images/34-10.png b/images/34-10.png new file mode 100644 index 0000000..b0a964e Binary files /dev/null and b/images/34-10.png differ diff --git a/images/34-11.png b/images/34-11.png new file mode 100644 index 0000000..3f32175 Binary files /dev/null and b/images/34-11.png differ diff --git a/images/34-12.png b/images/34-12.png new file mode 100644 index 0000000..bbcd2c3 Binary files /dev/null and b/images/34-12.png differ diff --git a/images/34-13.png b/images/34-13.png new file mode 100644 index 0000000..bc1462d Binary files /dev/null and b/images/34-13.png differ diff --git a/images/34-14.png b/images/34-14.png new file mode 100644 index 0000000..308e089 Binary files /dev/null and b/images/34-14.png differ diff --git a/images/34-15.png b/images/34-15.png new file mode 100644 index 0000000..ecf4373 Binary files /dev/null and b/images/34-15.png differ diff --git a/images/34-16.png b/images/34-16.png new file mode 100644 index 0000000..91e3027 Binary files /dev/null and b/images/34-16.png differ diff --git a/images/34-17.png b/images/34-17.png new file mode 100644 index 0000000..03e97ee Binary files /dev/null and b/images/34-17.png differ diff --git a/images/34-18.png b/images/34-18.png new file mode 100644 index 0000000..4ad22df Binary files /dev/null and b/images/34-18.png differ diff --git a/images/34-19.png b/images/34-19.png new file mode 100644 index 0000000..c6c4719 Binary files /dev/null and b/images/34-19.png differ diff --git a/images/34-2.png b/images/34-2.png new file mode 100644 index 0000000..57d589e Binary files /dev/null and b/images/34-2.png differ diff --git a/images/34-20.png b/images/34-20.png new file mode 100644 index 0000000..d993f7e Binary files /dev/null and b/images/34-20.png differ diff --git a/images/34-21.png b/images/34-21.png new file mode 100644 index 0000000..448c2b2 Binary files /dev/null and b/images/34-21.png differ diff --git a/images/34-22.png b/images/34-22.png new file mode 100644 index 0000000..621f140 Binary files /dev/null and b/images/34-22.png differ diff --git a/images/34-23.png b/images/34-23.png new file mode 100644 index 0000000..336b348 Binary files /dev/null and b/images/34-23.png differ diff --git a/images/34-24.png b/images/34-24.png new file mode 100644 index 0000000..b15c7d0 Binary files /dev/null and b/images/34-24.png differ diff --git a/images/34-25.png b/images/34-25.png new file mode 100644 index 0000000..698dc36 Binary files /dev/null and b/images/34-25.png differ diff --git a/images/34-26.png b/images/34-26.png new file mode 100644 index 0000000..af11d50 Binary files /dev/null and b/images/34-26.png differ diff --git a/images/34-27.png b/images/34-27.png new file mode 100644 index 0000000..17be7ef Binary files /dev/null and b/images/34-27.png differ diff --git a/images/34-28.png b/images/34-28.png new file mode 100644 index 0000000..dc4a727 Binary files /dev/null and b/images/34-28.png differ diff --git a/images/34-29.png b/images/34-29.png new file mode 100644 index 0000000..feeb9d9 Binary files /dev/null and b/images/34-29.png differ diff --git a/images/34-3.png b/images/34-3.png new file mode 100644 index 0000000..53806ae Binary files /dev/null and b/images/34-3.png differ diff --git a/images/34-30.png b/images/34-30.png new file mode 100644 index 0000000..7a49155 Binary files /dev/null and b/images/34-30.png differ diff --git a/images/34-31.png b/images/34-31.png new file mode 100644 index 0000000..620782b Binary files /dev/null and b/images/34-31.png differ diff --git a/images/34-32.png b/images/34-32.png new file mode 100644 index 0000000..e1cfb1f Binary files /dev/null and b/images/34-32.png differ diff --git a/images/34-33.png b/images/34-33.png new file mode 100644 index 0000000..edd5b24 Binary files /dev/null and b/images/34-33.png differ diff --git a/images/34-34.png b/images/34-34.png new file mode 100644 index 0000000..de7ef72 Binary files /dev/null and b/images/34-34.png differ diff --git a/images/34-35.png b/images/34-35.png new file mode 100644 index 0000000..6736474 Binary files /dev/null and b/images/34-35.png differ diff --git a/images/34-36.png b/images/34-36.png new file mode 100644 index 0000000..4bb36c7 Binary files /dev/null and b/images/34-36.png differ diff --git a/images/34-37.png b/images/34-37.png new file mode 100644 index 0000000..ca7905e Binary files /dev/null and b/images/34-37.png differ diff --git a/images/34-38.png b/images/34-38.png new file mode 100644 index 0000000..e3cdea9 Binary files /dev/null and b/images/34-38.png differ diff --git a/images/34-39.png b/images/34-39.png new file mode 100644 index 0000000..2c877fd Binary files /dev/null and b/images/34-39.png differ diff --git a/images/34-4.png b/images/34-4.png new file mode 100644 index 0000000..dc93d09 Binary files /dev/null and b/images/34-4.png differ diff --git a/images/34-40.png b/images/34-40.png new file mode 100644 index 0000000..6f75d8f Binary files /dev/null and b/images/34-40.png differ diff --git a/images/34-41.png b/images/34-41.png new file mode 100644 index 0000000..28c33f2 Binary files /dev/null and b/images/34-41.png differ diff --git a/images/34-42.png b/images/34-42.png new file mode 100644 index 0000000..9dc0ad9 Binary files /dev/null and b/images/34-42.png differ diff --git a/images/34-43.png b/images/34-43.png new file mode 100644 index 0000000..1e01b91 Binary files /dev/null and b/images/34-43.png differ diff --git a/images/34-44.png b/images/34-44.png new file mode 100644 index 0000000..5158cd5 Binary files /dev/null and b/images/34-44.png differ diff --git a/images/34-45.png b/images/34-45.png new file mode 100644 index 0000000..cb51fbf Binary files /dev/null and b/images/34-45.png differ diff --git a/images/34-46.png b/images/34-46.png new file mode 100644 index 0000000..256448b Binary files /dev/null and b/images/34-46.png differ diff --git a/images/34-47.png b/images/34-47.png new file mode 100644 index 0000000..173cd41 Binary files /dev/null and b/images/34-47.png differ diff --git a/images/34-5.png b/images/34-5.png new file mode 100644 index 0000000..75f3740 Binary files /dev/null and b/images/34-5.png differ diff --git a/images/34-6.png b/images/34-6.png new file mode 100644 index 0000000..1390d22 Binary files /dev/null and b/images/34-6.png differ diff --git a/images/34-7.png b/images/34-7.png new file mode 100644 index 0000000..a6b7519 Binary files /dev/null and b/images/34-7.png differ diff --git a/images/34-8.png b/images/34-8.png new file mode 100644 index 0000000..c427487 Binary files /dev/null and b/images/34-8.png differ diff --git a/images/34-9.png b/images/34-9.png new file mode 100644 index 0000000..84917d1 Binary files /dev/null and b/images/34-9.png differ diff --git a/images/35-0.png b/images/35-0.png new file mode 100644 index 0000000..eb6c8d4 Binary files /dev/null and b/images/35-0.png differ diff --git a/images/35-1.png b/images/35-1.png new file mode 100644 index 0000000..a8494bb Binary files /dev/null and b/images/35-1.png differ diff --git a/images/35-10.png b/images/35-10.png new file mode 100644 index 0000000..41e9e0a Binary files /dev/null and b/images/35-10.png differ diff --git a/images/35-11.png b/images/35-11.png new file mode 100644 index 0000000..debe09e Binary files /dev/null and b/images/35-11.png differ diff --git a/images/35-12.png b/images/35-12.png new file mode 100644 index 0000000..d6d222d Binary files /dev/null and b/images/35-12.png differ diff --git a/images/35-13.png b/images/35-13.png new file mode 100644 index 0000000..2283922 Binary files /dev/null and b/images/35-13.png differ diff --git a/images/35-14.png b/images/35-14.png new file mode 100644 index 0000000..83a87da Binary files /dev/null and b/images/35-14.png differ diff --git a/images/35-15.png b/images/35-15.png new file mode 100644 index 0000000..953e8a8 Binary files /dev/null and b/images/35-15.png differ diff --git a/images/35-16.png b/images/35-16.png new file mode 100644 index 0000000..2fe7b2a Binary files /dev/null and b/images/35-16.png differ diff --git a/images/35-17.png b/images/35-17.png new file mode 100644 index 0000000..06b4eb8 Binary files /dev/null and b/images/35-17.png differ diff --git a/images/35-18.png b/images/35-18.png new file mode 100644 index 0000000..ff56c95 Binary files /dev/null and b/images/35-18.png differ diff --git a/images/35-19.png b/images/35-19.png new file mode 100644 index 0000000..738a1fb Binary files /dev/null and b/images/35-19.png differ diff --git a/images/35-2.png b/images/35-2.png new file mode 100644 index 0000000..6263ca2 Binary files /dev/null and b/images/35-2.png differ diff --git a/images/35-20.png b/images/35-20.png new file mode 100644 index 0000000..5a27797 Binary files /dev/null and b/images/35-20.png differ diff --git a/images/35-21.png b/images/35-21.png new file mode 100644 index 0000000..9c0e492 Binary files /dev/null and b/images/35-21.png differ diff --git a/images/35-22.png b/images/35-22.png new file mode 100644 index 0000000..6140e79 Binary files /dev/null and b/images/35-22.png differ diff --git a/images/35-23.png b/images/35-23.png new file mode 100644 index 0000000..c50e257 Binary files /dev/null and b/images/35-23.png differ diff --git a/images/35-24.png b/images/35-24.png new file mode 100644 index 0000000..48abbdd Binary files /dev/null and b/images/35-24.png differ diff --git a/images/35-25.png b/images/35-25.png new file mode 100644 index 0000000..4a88c55 Binary files /dev/null and b/images/35-25.png differ diff --git a/images/35-26.png b/images/35-26.png new file mode 100644 index 0000000..67ad66f Binary files /dev/null and b/images/35-26.png differ diff --git a/images/35-27.png b/images/35-27.png new file mode 100644 index 0000000..d6ac1b8 Binary files /dev/null and b/images/35-27.png differ diff --git a/images/35-28.png b/images/35-28.png new file mode 100644 index 0000000..fcade9c Binary files /dev/null and b/images/35-28.png differ diff --git a/images/35-29.png b/images/35-29.png new file mode 100644 index 0000000..67c6f34 Binary files /dev/null and b/images/35-29.png differ diff --git a/images/35-3.png b/images/35-3.png new file mode 100644 index 0000000..53ef768 Binary files /dev/null and b/images/35-3.png differ diff --git a/images/35-30.png b/images/35-30.png new file mode 100644 index 0000000..8a0896e Binary files /dev/null and b/images/35-30.png differ diff --git a/images/35-31.png b/images/35-31.png new file mode 100644 index 0000000..d3ddb8b Binary files /dev/null and b/images/35-31.png differ diff --git a/images/35-32.png b/images/35-32.png new file mode 100644 index 0000000..8a094f2 Binary files /dev/null and b/images/35-32.png differ diff --git a/images/35-33.png b/images/35-33.png new file mode 100644 index 0000000..4f98694 Binary files /dev/null and b/images/35-33.png differ diff --git a/images/35-34.png b/images/35-34.png new file mode 100644 index 0000000..54978ee Binary files /dev/null and b/images/35-34.png differ diff --git a/images/35-35.png b/images/35-35.png new file mode 100644 index 0000000..3e17a05 Binary files /dev/null and b/images/35-35.png differ diff --git a/images/35-36.png b/images/35-36.png new file mode 100644 index 0000000..69ed4e8 Binary files /dev/null and b/images/35-36.png differ diff --git a/images/35-37.png b/images/35-37.png new file mode 100644 index 0000000..4110566 Binary files /dev/null and b/images/35-37.png differ diff --git a/images/35-38.png b/images/35-38.png new file mode 100644 index 0000000..6d7a6a1 Binary files /dev/null and b/images/35-38.png differ diff --git a/images/35-39.png b/images/35-39.png new file mode 100644 index 0000000..c920d60 Binary files /dev/null and b/images/35-39.png differ diff --git a/images/35-4.png b/images/35-4.png new file mode 100644 index 0000000..7b432c8 Binary files /dev/null and b/images/35-4.png differ diff --git a/images/35-40.png b/images/35-40.png new file mode 100644 index 0000000..08833b6 Binary files /dev/null and b/images/35-40.png differ diff --git a/images/35-41.png b/images/35-41.png new file mode 100644 index 0000000..010bc73 Binary files /dev/null and b/images/35-41.png differ diff --git a/images/35-42.png b/images/35-42.png new file mode 100644 index 0000000..1a2fecc Binary files /dev/null and b/images/35-42.png differ diff --git a/images/35-43.png b/images/35-43.png new file mode 100644 index 0000000..793680e Binary files /dev/null and b/images/35-43.png differ diff --git a/images/35-44.png b/images/35-44.png new file mode 100644 index 0000000..b0ac8b9 Binary files /dev/null and b/images/35-44.png differ diff --git a/images/35-45.png b/images/35-45.png new file mode 100644 index 0000000..721ba54 Binary files /dev/null and b/images/35-45.png differ diff --git a/images/35-46.png b/images/35-46.png new file mode 100644 index 0000000..f969e00 Binary files /dev/null and b/images/35-46.png differ diff --git a/images/35-47.png b/images/35-47.png new file mode 100644 index 0000000..6bb485e Binary files /dev/null and b/images/35-47.png differ diff --git a/images/35-48.png b/images/35-48.png new file mode 100644 index 0000000..aab4001 Binary files /dev/null and b/images/35-48.png differ diff --git a/images/35-49.png b/images/35-49.png new file mode 100644 index 0000000..3192750 Binary files /dev/null and b/images/35-49.png differ diff --git a/images/35-5.png b/images/35-5.png new file mode 100644 index 0000000..ab5faf8 Binary files /dev/null and b/images/35-5.png differ diff --git a/images/35-50.png b/images/35-50.png new file mode 100644 index 0000000..99da0f8 Binary files /dev/null and b/images/35-50.png differ diff --git a/images/35-51.png b/images/35-51.png new file mode 100644 index 0000000..3975c56 Binary files /dev/null and b/images/35-51.png differ diff --git a/images/35-52.png b/images/35-52.png new file mode 100644 index 0000000..962f7f1 Binary files /dev/null and b/images/35-52.png differ diff --git a/images/35-53.png b/images/35-53.png new file mode 100644 index 0000000..cb3f846 Binary files /dev/null and b/images/35-53.png differ diff --git a/images/35-54.png b/images/35-54.png new file mode 100644 index 0000000..3e672ee Binary files /dev/null and b/images/35-54.png differ diff --git a/images/35-55.png b/images/35-55.png new file mode 100644 index 0000000..4ca61d7 Binary files /dev/null and b/images/35-55.png differ diff --git a/images/35-56.png b/images/35-56.png new file mode 100644 index 0000000..521f3b3 Binary files /dev/null and b/images/35-56.png differ diff --git a/images/35-57.png b/images/35-57.png new file mode 100644 index 0000000..182d8a1 Binary files /dev/null and b/images/35-57.png differ diff --git a/images/35-58.png b/images/35-58.png new file mode 100644 index 0000000..d9a6280 Binary files /dev/null and b/images/35-58.png differ diff --git a/images/35-59.png b/images/35-59.png new file mode 100644 index 0000000..2dfdac3 Binary files /dev/null and b/images/35-59.png differ diff --git a/images/35-6.png b/images/35-6.png new file mode 100644 index 0000000..46c0847 Binary files /dev/null and b/images/35-6.png differ diff --git a/images/35-60.png b/images/35-60.png new file mode 100644 index 0000000..db81e34 Binary files /dev/null and b/images/35-60.png differ diff --git a/images/35-7.png b/images/35-7.png new file mode 100644 index 0000000..1d4a020 Binary files /dev/null and b/images/35-7.png differ diff --git a/images/35-8.png b/images/35-8.png new file mode 100644 index 0000000..33e7f64 Binary files /dev/null and b/images/35-8.png differ diff --git a/images/35-9.png b/images/35-9.png new file mode 100644 index 0000000..7be72fe Binary files /dev/null and b/images/35-9.png differ diff --git a/images/36-0.png b/images/36-0.png new file mode 100644 index 0000000..a9407f9 Binary files /dev/null and b/images/36-0.png differ diff --git a/images/36-1.png b/images/36-1.png new file mode 100644 index 0000000..8689d88 Binary files /dev/null and b/images/36-1.png differ diff --git a/images/36-10.png b/images/36-10.png new file mode 100644 index 0000000..9811b68 Binary files /dev/null and b/images/36-10.png differ diff --git a/images/36-100.png b/images/36-100.png new file mode 100644 index 0000000..c07aa8d Binary files /dev/null and b/images/36-100.png differ diff --git a/images/36-101.png b/images/36-101.png new file mode 100644 index 0000000..acf6856 Binary files /dev/null and b/images/36-101.png differ diff --git a/images/36-102.png b/images/36-102.png new file mode 100644 index 0000000..21220fa Binary files /dev/null and b/images/36-102.png differ diff --git a/images/36-103.png b/images/36-103.png new file mode 100644 index 0000000..ad3cf53 Binary files /dev/null and b/images/36-103.png differ diff --git a/images/36-104.png b/images/36-104.png new file mode 100644 index 0000000..b1bba47 Binary files /dev/null and b/images/36-104.png differ diff --git a/images/36-105.png b/images/36-105.png new file mode 100644 index 0000000..eddece9 Binary files /dev/null and b/images/36-105.png differ diff --git a/images/36-106.png b/images/36-106.png new file mode 100644 index 0000000..1336586 Binary files /dev/null and b/images/36-106.png differ diff --git a/images/36-107.png b/images/36-107.png new file mode 100644 index 0000000..6b5f4ad Binary files /dev/null and b/images/36-107.png differ diff --git a/images/36-108.png b/images/36-108.png new file mode 100644 index 0000000..9f1697c Binary files /dev/null and b/images/36-108.png differ diff --git a/images/36-109.png b/images/36-109.png new file mode 100644 index 0000000..c6231d6 Binary files /dev/null and b/images/36-109.png differ diff --git a/images/36-11.png b/images/36-11.png new file mode 100644 index 0000000..182ae0b Binary files /dev/null and b/images/36-11.png differ diff --git a/images/36-110.png b/images/36-110.png new file mode 100644 index 0000000..fba7a9d Binary files /dev/null and b/images/36-110.png differ diff --git a/images/36-111.png b/images/36-111.png new file mode 100644 index 0000000..c6d7c4f Binary files /dev/null and b/images/36-111.png differ diff --git a/images/36-12.png b/images/36-12.png new file mode 100644 index 0000000..19c7878 Binary files /dev/null and b/images/36-12.png differ diff --git a/images/36-13.png b/images/36-13.png new file mode 100644 index 0000000..4bf45d5 Binary files /dev/null and b/images/36-13.png differ diff --git a/images/36-14.png b/images/36-14.png new file mode 100644 index 0000000..4980275 Binary files /dev/null and b/images/36-14.png differ diff --git a/images/36-15.png b/images/36-15.png new file mode 100644 index 0000000..eee7c39 Binary files /dev/null and b/images/36-15.png differ diff --git a/images/36-16.png b/images/36-16.png new file mode 100644 index 0000000..63fbbdd Binary files /dev/null and b/images/36-16.png differ diff --git a/images/36-17.png b/images/36-17.png new file mode 100644 index 0000000..cd7349f Binary files /dev/null and b/images/36-17.png differ diff --git a/images/36-18.png b/images/36-18.png new file mode 100644 index 0000000..5e96c3f Binary files /dev/null and b/images/36-18.png differ diff --git a/images/36-19.png b/images/36-19.png new file mode 100644 index 0000000..719bba5 Binary files /dev/null and b/images/36-19.png differ diff --git a/images/36-2.png b/images/36-2.png new file mode 100644 index 0000000..3a8a314 Binary files /dev/null and b/images/36-2.png differ diff --git a/images/36-20.png b/images/36-20.png new file mode 100644 index 0000000..148af81 Binary files /dev/null and b/images/36-20.png differ diff --git a/images/36-21.png b/images/36-21.png new file mode 100644 index 0000000..898a42e Binary files /dev/null and b/images/36-21.png differ diff --git a/images/36-22.png b/images/36-22.png new file mode 100644 index 0000000..78088a1 Binary files /dev/null and b/images/36-22.png differ diff --git a/images/36-23.png b/images/36-23.png new file mode 100644 index 0000000..5385428 Binary files /dev/null and b/images/36-23.png differ diff --git a/images/36-24.png b/images/36-24.png new file mode 100644 index 0000000..1f80d51 Binary files /dev/null and b/images/36-24.png differ diff --git a/images/36-25.png b/images/36-25.png new file mode 100644 index 0000000..3ddccc8 Binary files /dev/null and b/images/36-25.png differ diff --git a/images/36-26.png b/images/36-26.png new file mode 100644 index 0000000..457f9fb Binary files /dev/null and b/images/36-26.png differ diff --git a/images/36-27.png b/images/36-27.png new file mode 100644 index 0000000..651d6f0 Binary files /dev/null and b/images/36-27.png differ diff --git a/images/36-28.png b/images/36-28.png new file mode 100644 index 0000000..6537d50 Binary files /dev/null and b/images/36-28.png differ diff --git a/images/36-29.png b/images/36-29.png new file mode 100644 index 0000000..aa928a5 Binary files /dev/null and b/images/36-29.png differ diff --git a/images/36-3.png b/images/36-3.png new file mode 100644 index 0000000..b9b0495 Binary files /dev/null and b/images/36-3.png differ diff --git a/images/36-30.png b/images/36-30.png new file mode 100644 index 0000000..23e3dbe Binary files /dev/null and b/images/36-30.png differ diff --git a/images/36-31.png b/images/36-31.png new file mode 100644 index 0000000..05d216a Binary files /dev/null and b/images/36-31.png differ diff --git a/images/36-32.png b/images/36-32.png new file mode 100644 index 0000000..2376ba7 Binary files /dev/null and b/images/36-32.png differ diff --git a/images/36-33.png b/images/36-33.png new file mode 100644 index 0000000..d4fb8c4 Binary files /dev/null and b/images/36-33.png differ diff --git a/images/36-34.png b/images/36-34.png new file mode 100644 index 0000000..6e5fc78 Binary files /dev/null and b/images/36-34.png differ diff --git a/images/36-35.png b/images/36-35.png new file mode 100644 index 0000000..4e26557 Binary files /dev/null and b/images/36-35.png differ diff --git a/images/36-36.png b/images/36-36.png new file mode 100644 index 0000000..48a8a35 Binary files /dev/null and b/images/36-36.png differ diff --git a/images/36-37.png b/images/36-37.png new file mode 100644 index 0000000..42f823a Binary files /dev/null and b/images/36-37.png differ diff --git a/images/36-38.png b/images/36-38.png new file mode 100644 index 0000000..32dcd36 Binary files /dev/null and b/images/36-38.png differ diff --git a/images/36-39.png b/images/36-39.png new file mode 100644 index 0000000..2c2794f Binary files /dev/null and b/images/36-39.png differ diff --git a/images/36-4.png b/images/36-4.png new file mode 100644 index 0000000..2e02b11 Binary files /dev/null and b/images/36-4.png differ diff --git a/images/36-40.png b/images/36-40.png new file mode 100644 index 0000000..d19f6ca Binary files /dev/null and b/images/36-40.png differ diff --git a/images/36-41.png b/images/36-41.png new file mode 100644 index 0000000..a849b7b Binary files /dev/null and b/images/36-41.png differ diff --git a/images/36-42.png b/images/36-42.png new file mode 100644 index 0000000..8840db1 Binary files /dev/null and b/images/36-42.png differ diff --git a/images/36-43.png b/images/36-43.png new file mode 100644 index 0000000..863a97b Binary files /dev/null and b/images/36-43.png differ diff --git a/images/36-44.png b/images/36-44.png new file mode 100644 index 0000000..69302a4 Binary files /dev/null and b/images/36-44.png differ diff --git a/images/36-45.png b/images/36-45.png new file mode 100644 index 0000000..44f9fab Binary files /dev/null and b/images/36-45.png differ diff --git a/images/36-46.png b/images/36-46.png new file mode 100644 index 0000000..f9a162e Binary files /dev/null and b/images/36-46.png differ diff --git a/images/36-47.png b/images/36-47.png new file mode 100644 index 0000000..ff73bec Binary files /dev/null and b/images/36-47.png differ diff --git a/images/36-48.png b/images/36-48.png new file mode 100644 index 0000000..a09726d Binary files /dev/null and b/images/36-48.png differ diff --git a/images/36-49.png b/images/36-49.png new file mode 100644 index 0000000..de0b96e Binary files /dev/null and b/images/36-49.png differ diff --git a/images/36-5.png b/images/36-5.png new file mode 100644 index 0000000..3a9a081 Binary files /dev/null and b/images/36-5.png differ diff --git a/images/36-50.png b/images/36-50.png new file mode 100644 index 0000000..225de36 Binary files /dev/null and b/images/36-50.png differ diff --git a/images/36-51.png b/images/36-51.png new file mode 100644 index 0000000..243d3e8 Binary files /dev/null and b/images/36-51.png differ diff --git a/images/36-52.png b/images/36-52.png new file mode 100644 index 0000000..387fde7 Binary files /dev/null and b/images/36-52.png differ diff --git a/images/36-53.png b/images/36-53.png new file mode 100644 index 0000000..e75f7e1 Binary files /dev/null and b/images/36-53.png differ diff --git a/images/36-54.png b/images/36-54.png new file mode 100644 index 0000000..5ec17b5 Binary files /dev/null and b/images/36-54.png differ diff --git a/images/36-55.png b/images/36-55.png new file mode 100644 index 0000000..1841e66 Binary files /dev/null and b/images/36-55.png differ diff --git a/images/36-56.png b/images/36-56.png new file mode 100644 index 0000000..0da6cfe Binary files /dev/null and b/images/36-56.png differ diff --git a/images/36-57.png b/images/36-57.png new file mode 100644 index 0000000..f4fb7a9 Binary files /dev/null and b/images/36-57.png differ diff --git a/images/36-58.png b/images/36-58.png new file mode 100644 index 0000000..427cb89 Binary files /dev/null and b/images/36-58.png differ diff --git a/images/36-59.png b/images/36-59.png new file mode 100644 index 0000000..5d2524d Binary files /dev/null and b/images/36-59.png differ diff --git a/images/36-6.png b/images/36-6.png new file mode 100644 index 0000000..41a08c1 Binary files /dev/null and b/images/36-6.png differ diff --git a/images/36-60.png b/images/36-60.png new file mode 100644 index 0000000..4dc72ce Binary files /dev/null and b/images/36-60.png differ diff --git a/images/36-61.png b/images/36-61.png new file mode 100644 index 0000000..b21a20a Binary files /dev/null and b/images/36-61.png differ diff --git a/images/36-62.png b/images/36-62.png new file mode 100644 index 0000000..053a3e4 Binary files /dev/null and b/images/36-62.png differ diff --git a/images/36-63.png b/images/36-63.png new file mode 100644 index 0000000..0cd14dd Binary files /dev/null and b/images/36-63.png differ diff --git a/images/36-64.png b/images/36-64.png new file mode 100644 index 0000000..f2b7650 Binary files /dev/null and b/images/36-64.png differ diff --git a/images/36-65.png b/images/36-65.png new file mode 100644 index 0000000..1b660b3 Binary files /dev/null and b/images/36-65.png differ diff --git a/images/36-66.png b/images/36-66.png new file mode 100644 index 0000000..0f31ffc Binary files /dev/null and b/images/36-66.png differ diff --git a/images/36-67.png b/images/36-67.png new file mode 100644 index 0000000..9bf82a0 Binary files /dev/null and b/images/36-67.png differ diff --git a/images/36-68.png b/images/36-68.png new file mode 100644 index 0000000..95fb747 Binary files /dev/null and b/images/36-68.png differ diff --git a/images/36-69.png b/images/36-69.png new file mode 100644 index 0000000..a913bda Binary files /dev/null and b/images/36-69.png differ diff --git a/images/36-7.png b/images/36-7.png new file mode 100644 index 0000000..0e79abd Binary files /dev/null and b/images/36-7.png differ diff --git a/images/36-70.png b/images/36-70.png new file mode 100644 index 0000000..20e6a1b Binary files /dev/null and b/images/36-70.png differ diff --git a/images/36-71.png b/images/36-71.png new file mode 100644 index 0000000..e8ee51b Binary files /dev/null and b/images/36-71.png differ diff --git a/images/36-72.png b/images/36-72.png new file mode 100644 index 0000000..04cb589 Binary files /dev/null and b/images/36-72.png differ diff --git a/images/36-73.png b/images/36-73.png new file mode 100644 index 0000000..c685a4e Binary files /dev/null and b/images/36-73.png differ diff --git a/images/36-74.png b/images/36-74.png new file mode 100644 index 0000000..b5d3073 Binary files /dev/null and b/images/36-74.png differ diff --git a/images/36-75.png b/images/36-75.png new file mode 100644 index 0000000..5ca5714 Binary files /dev/null and b/images/36-75.png differ diff --git a/images/36-76.png b/images/36-76.png new file mode 100644 index 0000000..44977e8 Binary files /dev/null and b/images/36-76.png differ diff --git a/images/36-77.png b/images/36-77.png new file mode 100644 index 0000000..1298ecd Binary files /dev/null and b/images/36-77.png differ diff --git a/images/36-78.png b/images/36-78.png new file mode 100644 index 0000000..e36053c Binary files /dev/null and b/images/36-78.png differ diff --git a/images/36-79.png b/images/36-79.png new file mode 100644 index 0000000..983b27f Binary files /dev/null and b/images/36-79.png differ diff --git a/images/36-8.png b/images/36-8.png new file mode 100644 index 0000000..84c15d0 Binary files /dev/null and b/images/36-8.png differ diff --git a/images/36-80.png b/images/36-80.png new file mode 100644 index 0000000..428533a Binary files /dev/null and b/images/36-80.png differ diff --git a/images/36-81.png b/images/36-81.png new file mode 100644 index 0000000..dfe2b83 Binary files /dev/null and b/images/36-81.png differ diff --git a/images/36-82.png b/images/36-82.png new file mode 100644 index 0000000..362d0e7 Binary files /dev/null and b/images/36-82.png differ diff --git a/images/36-83.png b/images/36-83.png new file mode 100644 index 0000000..c48627e Binary files /dev/null and b/images/36-83.png differ diff --git a/images/36-84.png b/images/36-84.png new file mode 100644 index 0000000..a249629 Binary files /dev/null and b/images/36-84.png differ diff --git a/images/36-85.png b/images/36-85.png new file mode 100644 index 0000000..5873764 Binary files /dev/null and b/images/36-85.png differ diff --git a/images/36-86.png b/images/36-86.png new file mode 100644 index 0000000..85283fc Binary files /dev/null and b/images/36-86.png differ diff --git a/images/36-87.png b/images/36-87.png new file mode 100644 index 0000000..1058242 Binary files /dev/null and b/images/36-87.png differ diff --git a/images/36-88.png b/images/36-88.png new file mode 100644 index 0000000..6fb41dc Binary files /dev/null and b/images/36-88.png differ diff --git a/images/36-89.png b/images/36-89.png new file mode 100644 index 0000000..8983bca Binary files /dev/null and b/images/36-89.png differ diff --git a/images/36-9.png b/images/36-9.png new file mode 100644 index 0000000..58e6bef Binary files /dev/null and b/images/36-9.png differ diff --git a/images/36-90.png b/images/36-90.png new file mode 100644 index 0000000..f743980 Binary files /dev/null and b/images/36-90.png differ diff --git a/images/36-91.png b/images/36-91.png new file mode 100644 index 0000000..fb08f1c Binary files /dev/null and b/images/36-91.png differ diff --git a/images/36-92.png b/images/36-92.png new file mode 100644 index 0000000..6d8eb4a Binary files /dev/null and b/images/36-92.png differ diff --git a/images/36-93.png b/images/36-93.png new file mode 100644 index 0000000..03ba998 Binary files /dev/null and b/images/36-93.png differ diff --git a/images/36-94.png b/images/36-94.png new file mode 100644 index 0000000..65a5814 Binary files /dev/null and b/images/36-94.png differ diff --git a/images/36-95.png b/images/36-95.png new file mode 100644 index 0000000..5340d7a Binary files /dev/null and b/images/36-95.png differ diff --git a/images/36-96.png b/images/36-96.png new file mode 100644 index 0000000..d7f853e Binary files /dev/null and b/images/36-96.png differ diff --git a/images/36-97.png b/images/36-97.png new file mode 100644 index 0000000..72e3b0f Binary files /dev/null and b/images/36-97.png differ diff --git a/images/36-98.png b/images/36-98.png new file mode 100644 index 0000000..a46b795 Binary files /dev/null and b/images/36-98.png differ diff --git a/images/36-99.png b/images/36-99.png new file mode 100644 index 0000000..56021d0 Binary files /dev/null and b/images/36-99.png differ diff --git a/images/37-0.png b/images/37-0.png new file mode 100644 index 0000000..ab1e2d2 Binary files /dev/null and b/images/37-0.png differ diff --git a/images/37-1.png b/images/37-1.png new file mode 100644 index 0000000..137ae6c Binary files /dev/null and b/images/37-1.png differ diff --git a/images/37-10.png b/images/37-10.png new file mode 100644 index 0000000..ee2f303 Binary files /dev/null and b/images/37-10.png differ diff --git a/images/37-2.png b/images/37-2.png new file mode 100644 index 0000000..6c0db3c Binary files /dev/null and b/images/37-2.png differ diff --git a/images/37-3.png b/images/37-3.png new file mode 100644 index 0000000..0a8cb80 Binary files /dev/null and b/images/37-3.png differ diff --git a/images/37-4.png b/images/37-4.png new file mode 100644 index 0000000..5c6713a Binary files /dev/null and b/images/37-4.png differ diff --git a/images/37-5.png b/images/37-5.png new file mode 100644 index 0000000..2d193ee Binary files /dev/null and b/images/37-5.png differ diff --git a/images/37-6.png b/images/37-6.png new file mode 100644 index 0000000..b68fae5 Binary files /dev/null and b/images/37-6.png differ diff --git a/images/37-7.png b/images/37-7.png new file mode 100644 index 0000000..4cabf67 Binary files /dev/null and b/images/37-7.png differ diff --git a/images/37-8.png b/images/37-8.png new file mode 100644 index 0000000..c5fc59b Binary files /dev/null and b/images/37-8.png differ diff --git a/images/37-9.png b/images/37-9.png new file mode 100644 index 0000000..d8778d8 Binary files /dev/null and b/images/37-9.png differ diff --git a/images/38-0.png b/images/38-0.png new file mode 100644 index 0000000..d362747 Binary files /dev/null and b/images/38-0.png differ diff --git a/images/38-1.png b/images/38-1.png new file mode 100644 index 0000000..3f361f2 Binary files /dev/null and b/images/38-1.png differ diff --git a/images/38-10.png b/images/38-10.png new file mode 100644 index 0000000..aa47057 Binary files /dev/null and b/images/38-10.png differ diff --git a/images/38-11.png b/images/38-11.png new file mode 100644 index 0000000..98f6e7c Binary files /dev/null and b/images/38-11.png differ diff --git a/images/38-12.png b/images/38-12.png new file mode 100644 index 0000000..7190e04 Binary files /dev/null and b/images/38-12.png differ diff --git a/images/38-13.png b/images/38-13.png new file mode 100644 index 0000000..1ab1b82 Binary files /dev/null and b/images/38-13.png differ diff --git a/images/38-14.png b/images/38-14.png new file mode 100644 index 0000000..e9f7c18 Binary files /dev/null and b/images/38-14.png differ diff --git a/images/38-15.png b/images/38-15.png new file mode 100644 index 0000000..066cd41 Binary files /dev/null and b/images/38-15.png differ diff --git a/images/38-16.png b/images/38-16.png new file mode 100644 index 0000000..5079d80 Binary files /dev/null and b/images/38-16.png differ diff --git a/images/38-17.png b/images/38-17.png new file mode 100644 index 0000000..650dbd1 Binary files /dev/null and b/images/38-17.png differ diff --git a/images/38-18.png b/images/38-18.png new file mode 100644 index 0000000..45d5997 Binary files /dev/null and b/images/38-18.png differ diff --git a/images/38-19.png b/images/38-19.png new file mode 100644 index 0000000..5efeae6 Binary files /dev/null and b/images/38-19.png differ diff --git a/images/38-2.png b/images/38-2.png new file mode 100644 index 0000000..0b2461c Binary files /dev/null and b/images/38-2.png differ diff --git a/images/38-20.png b/images/38-20.png new file mode 100644 index 0000000..1645388 Binary files /dev/null and b/images/38-20.png differ diff --git a/images/38-21.png b/images/38-21.png new file mode 100644 index 0000000..910deb8 Binary files /dev/null and b/images/38-21.png differ diff --git a/images/38-22.png b/images/38-22.png new file mode 100644 index 0000000..d50fb43 Binary files /dev/null and b/images/38-22.png differ diff --git a/images/38-23.png b/images/38-23.png new file mode 100644 index 0000000..34f8a92 Binary files /dev/null and b/images/38-23.png differ diff --git a/images/38-24.png b/images/38-24.png new file mode 100644 index 0000000..fd294aa Binary files /dev/null and b/images/38-24.png differ diff --git a/images/38-3.png b/images/38-3.png new file mode 100644 index 0000000..dd78a17 Binary files /dev/null and b/images/38-3.png differ diff --git a/images/38-4.png b/images/38-4.png new file mode 100644 index 0000000..9d06ea7 Binary files /dev/null and b/images/38-4.png differ diff --git a/images/38-5.png b/images/38-5.png new file mode 100644 index 0000000..f429b39 Binary files /dev/null and b/images/38-5.png differ diff --git a/images/38-6.png b/images/38-6.png new file mode 100644 index 0000000..5848327 Binary files /dev/null and b/images/38-6.png differ diff --git a/images/38-7.png b/images/38-7.png new file mode 100644 index 0000000..b2035b2 Binary files /dev/null and b/images/38-7.png differ diff --git a/images/38-8.png b/images/38-8.png new file mode 100644 index 0000000..b9c913b Binary files /dev/null and b/images/38-8.png differ diff --git a/images/38-9.png b/images/38-9.png new file mode 100644 index 0000000..519c27f Binary files /dev/null and b/images/38-9.png differ diff --git a/images/39-0.png b/images/39-0.png new file mode 100644 index 0000000..595f547 Binary files /dev/null and b/images/39-0.png differ diff --git a/images/39-1.png b/images/39-1.png new file mode 100644 index 0000000..fbf1031 Binary files /dev/null and b/images/39-1.png differ diff --git a/images/39-10.png b/images/39-10.png new file mode 100644 index 0000000..636a6ef Binary files /dev/null and b/images/39-10.png differ diff --git a/images/39-11.png b/images/39-11.png new file mode 100644 index 0000000..fdacdfc Binary files /dev/null and b/images/39-11.png differ diff --git a/images/39-12.png b/images/39-12.png new file mode 100644 index 0000000..3c205c5 Binary files /dev/null and b/images/39-12.png differ diff --git a/images/39-13.png b/images/39-13.png new file mode 100644 index 0000000..219b0c5 Binary files /dev/null and b/images/39-13.png differ diff --git a/images/39-14.png b/images/39-14.png new file mode 100644 index 0000000..28490e1 Binary files /dev/null and b/images/39-14.png differ diff --git a/images/39-15.png b/images/39-15.png new file mode 100644 index 0000000..2a6212d Binary files /dev/null and b/images/39-15.png differ diff --git a/images/39-16.png b/images/39-16.png new file mode 100644 index 0000000..6be106b Binary files /dev/null and b/images/39-16.png differ diff --git a/images/39-17.png b/images/39-17.png new file mode 100644 index 0000000..ca25398 Binary files /dev/null and b/images/39-17.png differ diff --git a/images/39-18.png b/images/39-18.png new file mode 100644 index 0000000..d733681 Binary files /dev/null and b/images/39-18.png differ diff --git a/images/39-19.png b/images/39-19.png new file mode 100644 index 0000000..8c7966d Binary files /dev/null and b/images/39-19.png differ diff --git a/images/39-2.png b/images/39-2.png new file mode 100644 index 0000000..37277d0 Binary files /dev/null and b/images/39-2.png differ diff --git a/images/39-20.png b/images/39-20.png new file mode 100644 index 0000000..df7d564 Binary files /dev/null and b/images/39-20.png differ diff --git a/images/39-21.png b/images/39-21.png new file mode 100644 index 0000000..6cc747c Binary files /dev/null and b/images/39-21.png differ diff --git a/images/39-22.png b/images/39-22.png new file mode 100644 index 0000000..63d2a4f Binary files /dev/null and b/images/39-22.png differ diff --git a/images/39-23.png b/images/39-23.png new file mode 100644 index 0000000..660335a Binary files /dev/null and b/images/39-23.png differ diff --git a/images/39-24.png b/images/39-24.png new file mode 100644 index 0000000..0acd6b6 Binary files /dev/null and b/images/39-24.png differ diff --git a/images/39-25.png b/images/39-25.png new file mode 100644 index 0000000..c824f88 Binary files /dev/null and b/images/39-25.png differ diff --git a/images/39-26.png b/images/39-26.png new file mode 100644 index 0000000..4649698 Binary files /dev/null and b/images/39-26.png differ diff --git a/images/39-27.png b/images/39-27.png new file mode 100644 index 0000000..0caed92 Binary files /dev/null and b/images/39-27.png differ diff --git a/images/39-28.png b/images/39-28.png new file mode 100644 index 0000000..41b66d9 Binary files /dev/null and b/images/39-28.png differ diff --git a/images/39-29.png b/images/39-29.png new file mode 100644 index 0000000..5f50236 Binary files /dev/null and b/images/39-29.png differ diff --git a/images/39-3.png b/images/39-3.png new file mode 100644 index 0000000..80172df Binary files /dev/null and b/images/39-3.png differ diff --git a/images/39-30.png b/images/39-30.png new file mode 100644 index 0000000..4fee184 Binary files /dev/null and b/images/39-30.png differ diff --git a/images/39-31.png b/images/39-31.png new file mode 100644 index 0000000..b805abc Binary files /dev/null and b/images/39-31.png differ diff --git a/images/39-32.png b/images/39-32.png new file mode 100644 index 0000000..eff3c75 Binary files /dev/null and b/images/39-32.png differ diff --git a/images/39-33.png b/images/39-33.png new file mode 100644 index 0000000..e006168 Binary files /dev/null and b/images/39-33.png differ diff --git a/images/39-34.png b/images/39-34.png new file mode 100644 index 0000000..70a7a09 Binary files /dev/null and b/images/39-34.png differ diff --git a/images/39-35.png b/images/39-35.png new file mode 100644 index 0000000..394e4ba Binary files /dev/null and b/images/39-35.png differ diff --git a/images/39-36.png b/images/39-36.png new file mode 100644 index 0000000..5632166 Binary files /dev/null and b/images/39-36.png differ diff --git a/images/39-37.png b/images/39-37.png new file mode 100644 index 0000000..3167638 Binary files /dev/null and b/images/39-37.png differ diff --git a/images/39-38.png b/images/39-38.png new file mode 100644 index 0000000..499c492 Binary files /dev/null and b/images/39-38.png differ diff --git a/images/39-39.png b/images/39-39.png new file mode 100644 index 0000000..974d358 Binary files /dev/null and b/images/39-39.png differ diff --git a/images/39-4.png b/images/39-4.png new file mode 100644 index 0000000..4af5bce Binary files /dev/null and b/images/39-4.png differ diff --git a/images/39-40.png b/images/39-40.png new file mode 100644 index 0000000..b39f7e6 Binary files /dev/null and b/images/39-40.png differ diff --git a/images/39-41.png b/images/39-41.png new file mode 100644 index 0000000..dc2c521 Binary files /dev/null and b/images/39-41.png differ diff --git a/images/39-42.png b/images/39-42.png new file mode 100644 index 0000000..271a323 Binary files /dev/null and b/images/39-42.png differ diff --git a/images/39-43.png b/images/39-43.png new file mode 100644 index 0000000..59b0c4e Binary files /dev/null and b/images/39-43.png differ diff --git a/images/39-5.png b/images/39-5.png new file mode 100644 index 0000000..8bb1e6b Binary files /dev/null and b/images/39-5.png differ diff --git a/images/39-6.png b/images/39-6.png new file mode 100644 index 0000000..5db8981 Binary files /dev/null and b/images/39-6.png differ diff --git a/images/39-7.png b/images/39-7.png new file mode 100644 index 0000000..d646706 Binary files /dev/null and b/images/39-7.png differ diff --git a/images/39-8.png b/images/39-8.png new file mode 100644 index 0000000..162dab6 Binary files /dev/null and b/images/39-8.png differ diff --git a/images/39-9.png b/images/39-9.png new file mode 100644 index 0000000..cf8e411 Binary files /dev/null and b/images/39-9.png differ diff --git a/images/4-0.png b/images/4-0.png new file mode 100644 index 0000000..61240eb Binary files /dev/null and b/images/4-0.png differ diff --git a/images/4-1.png b/images/4-1.png new file mode 100644 index 0000000..e906225 Binary files /dev/null and b/images/4-1.png differ diff --git a/images/4-10.png b/images/4-10.png new file mode 100644 index 0000000..d45a917 Binary files /dev/null and b/images/4-10.png differ diff --git a/images/4-11.png b/images/4-11.png new file mode 100644 index 0000000..6fba4ec Binary files /dev/null and b/images/4-11.png differ diff --git a/images/4-12.png b/images/4-12.png new file mode 100644 index 0000000..4eb28da Binary files /dev/null and b/images/4-12.png differ diff --git a/images/4-13.png b/images/4-13.png new file mode 100644 index 0000000..308eb47 Binary files /dev/null and b/images/4-13.png differ diff --git a/images/4-14.png b/images/4-14.png new file mode 100644 index 0000000..83b71fd Binary files /dev/null and b/images/4-14.png differ diff --git a/images/4-15.png b/images/4-15.png new file mode 100644 index 0000000..d569163 Binary files /dev/null and b/images/4-15.png differ diff --git a/images/4-16.png b/images/4-16.png new file mode 100644 index 0000000..c2efb0c Binary files /dev/null and b/images/4-16.png differ diff --git a/images/4-17.png b/images/4-17.png new file mode 100644 index 0000000..92353ae Binary files /dev/null and b/images/4-17.png differ diff --git a/images/4-18.png b/images/4-18.png new file mode 100644 index 0000000..32240c7 Binary files /dev/null and b/images/4-18.png differ diff --git a/images/4-2.png b/images/4-2.png new file mode 100644 index 0000000..b237659 Binary files /dev/null and b/images/4-2.png differ diff --git a/images/4-3.png b/images/4-3.png new file mode 100644 index 0000000..f812af9 Binary files /dev/null and b/images/4-3.png differ diff --git a/images/4-4.png b/images/4-4.png new file mode 100644 index 0000000..60497a8 Binary files /dev/null and b/images/4-4.png differ diff --git a/images/4-5.png b/images/4-5.png new file mode 100644 index 0000000..a3985e9 Binary files /dev/null and b/images/4-5.png differ diff --git a/images/4-6.png b/images/4-6.png new file mode 100644 index 0000000..91a3bba Binary files /dev/null and b/images/4-6.png differ diff --git a/images/4-7.png b/images/4-7.png new file mode 100644 index 0000000..5d9c29f Binary files /dev/null and b/images/4-7.png differ diff --git a/images/4-8.png b/images/4-8.png new file mode 100644 index 0000000..ef93fca Binary files /dev/null and b/images/4-8.png differ diff --git a/images/4-9.png b/images/4-9.png new file mode 100644 index 0000000..bd0cff6 Binary files /dev/null and b/images/4-9.png differ diff --git a/images/40-0.png b/images/40-0.png new file mode 100644 index 0000000..621c514 Binary files /dev/null and b/images/40-0.png differ diff --git a/images/40-1.png b/images/40-1.png new file mode 100644 index 0000000..7e27de4 Binary files /dev/null and b/images/40-1.png differ diff --git a/images/40-10.png b/images/40-10.png new file mode 100644 index 0000000..4e7fcda Binary files /dev/null and b/images/40-10.png differ diff --git a/images/40-11.png b/images/40-11.png new file mode 100644 index 0000000..dd1d66c Binary files /dev/null and b/images/40-11.png differ diff --git a/images/40-12.png b/images/40-12.png new file mode 100644 index 0000000..1423cd3 Binary files /dev/null and b/images/40-12.png differ diff --git a/images/40-13.png b/images/40-13.png new file mode 100644 index 0000000..cdbca84 Binary files /dev/null and b/images/40-13.png differ diff --git a/images/40-14.png b/images/40-14.png new file mode 100644 index 0000000..5b42318 Binary files /dev/null and b/images/40-14.png differ diff --git a/images/40-15.png b/images/40-15.png new file mode 100644 index 0000000..4927732 Binary files /dev/null and b/images/40-15.png differ diff --git a/images/40-16.png b/images/40-16.png new file mode 100644 index 0000000..eaa11fc Binary files /dev/null and b/images/40-16.png differ diff --git a/images/40-17.png b/images/40-17.png new file mode 100644 index 0000000..77c2fb8 Binary files /dev/null and b/images/40-17.png differ diff --git a/images/40-18.png b/images/40-18.png new file mode 100644 index 0000000..cc5fce0 Binary files /dev/null and b/images/40-18.png differ diff --git a/images/40-19.png b/images/40-19.png new file mode 100644 index 0000000..be12a7a Binary files /dev/null and b/images/40-19.png differ diff --git a/images/40-2.png b/images/40-2.png new file mode 100644 index 0000000..e924f3e Binary files /dev/null and b/images/40-2.png differ diff --git a/images/40-20.png b/images/40-20.png new file mode 100644 index 0000000..e3242f7 Binary files /dev/null and b/images/40-20.png differ diff --git a/images/40-21.png b/images/40-21.png new file mode 100644 index 0000000..4d170bf Binary files /dev/null and b/images/40-21.png differ diff --git a/images/40-22.png b/images/40-22.png new file mode 100644 index 0000000..265c464 Binary files /dev/null and b/images/40-22.png differ diff --git a/images/40-23.png b/images/40-23.png new file mode 100644 index 0000000..92b208c Binary files /dev/null and b/images/40-23.png differ diff --git a/images/40-3.png b/images/40-3.png new file mode 100644 index 0000000..9e44692 Binary files /dev/null and b/images/40-3.png differ diff --git a/images/40-4.png b/images/40-4.png new file mode 100644 index 0000000..fdebba6 Binary files /dev/null and b/images/40-4.png differ diff --git a/images/40-5.png b/images/40-5.png new file mode 100644 index 0000000..a0f1043 Binary files /dev/null and b/images/40-5.png differ diff --git a/images/40-6.png b/images/40-6.png new file mode 100644 index 0000000..0318f0b Binary files /dev/null and b/images/40-6.png differ diff --git a/images/40-7.png b/images/40-7.png new file mode 100644 index 0000000..3967940 Binary files /dev/null and b/images/40-7.png differ diff --git a/images/40-8.png b/images/40-8.png new file mode 100644 index 0000000..38e091c Binary files /dev/null and b/images/40-8.png differ diff --git a/images/40-9.png b/images/40-9.png new file mode 100644 index 0000000..40e17cd Binary files /dev/null and b/images/40-9.png differ diff --git a/images/41-0.png b/images/41-0.png new file mode 100644 index 0000000..e847e3d Binary files /dev/null and b/images/41-0.png differ diff --git a/images/41-1.png b/images/41-1.png new file mode 100644 index 0000000..8478592 Binary files /dev/null and b/images/41-1.png differ diff --git a/images/41-10.png b/images/41-10.png new file mode 100644 index 0000000..c9de693 Binary files /dev/null and b/images/41-10.png differ diff --git a/images/41-100.png b/images/41-100.png new file mode 100644 index 0000000..7767183 Binary files /dev/null and b/images/41-100.png differ diff --git a/images/41-101.png b/images/41-101.png new file mode 100644 index 0000000..4cdab5e Binary files /dev/null and b/images/41-101.png differ diff --git a/images/41-102.png b/images/41-102.png new file mode 100644 index 0000000..8ca3746 Binary files /dev/null and b/images/41-102.png differ diff --git a/images/41-103.png b/images/41-103.png new file mode 100644 index 0000000..ae9c2f5 Binary files /dev/null and b/images/41-103.png differ diff --git a/images/41-104.png b/images/41-104.png new file mode 100644 index 0000000..e6c96e6 Binary files /dev/null and b/images/41-104.png differ diff --git a/images/41-105.png b/images/41-105.png new file mode 100644 index 0000000..f9be073 Binary files /dev/null and b/images/41-105.png differ diff --git a/images/41-106.png b/images/41-106.png new file mode 100644 index 0000000..4987f3c Binary files /dev/null and b/images/41-106.png differ diff --git a/images/41-107.png b/images/41-107.png new file mode 100644 index 0000000..5497141 Binary files /dev/null and b/images/41-107.png differ diff --git a/images/41-108.png b/images/41-108.png new file mode 100644 index 0000000..5f6884e Binary files /dev/null and b/images/41-108.png differ diff --git a/images/41-109.png b/images/41-109.png new file mode 100644 index 0000000..b16ed2f Binary files /dev/null and b/images/41-109.png differ diff --git a/images/41-11.png b/images/41-11.png new file mode 100644 index 0000000..156b7fa Binary files /dev/null and b/images/41-11.png differ diff --git a/images/41-110.png b/images/41-110.png new file mode 100644 index 0000000..9e5cc6b Binary files /dev/null and b/images/41-110.png differ diff --git a/images/41-111.png b/images/41-111.png new file mode 100644 index 0000000..9cfe5f5 Binary files /dev/null and b/images/41-111.png differ diff --git a/images/41-112.png b/images/41-112.png new file mode 100644 index 0000000..04b65aa Binary files /dev/null and b/images/41-112.png differ diff --git a/images/41-113.png b/images/41-113.png new file mode 100644 index 0000000..f59cc55 Binary files /dev/null and b/images/41-113.png differ diff --git a/images/41-114.png b/images/41-114.png new file mode 100644 index 0000000..8f1baca Binary files /dev/null and b/images/41-114.png differ diff --git a/images/41-115.png b/images/41-115.png new file mode 100644 index 0000000..21586c9 Binary files /dev/null and b/images/41-115.png differ diff --git a/images/41-116.png b/images/41-116.png new file mode 100644 index 0000000..cd7404d Binary files /dev/null and b/images/41-116.png differ diff --git a/images/41-117.png b/images/41-117.png new file mode 100644 index 0000000..27f9c08 Binary files /dev/null and b/images/41-117.png differ diff --git a/images/41-118.png b/images/41-118.png new file mode 100644 index 0000000..3d1f1f2 Binary files /dev/null and b/images/41-118.png differ diff --git a/images/41-119.png b/images/41-119.png new file mode 100644 index 0000000..6f5a056 Binary files /dev/null and b/images/41-119.png differ diff --git a/images/41-12.png b/images/41-12.png new file mode 100644 index 0000000..84559ea Binary files /dev/null and b/images/41-12.png differ diff --git a/images/41-120.png b/images/41-120.png new file mode 100644 index 0000000..d58a128 Binary files /dev/null and b/images/41-120.png differ diff --git a/images/41-121.png b/images/41-121.png new file mode 100644 index 0000000..a328e12 Binary files /dev/null and b/images/41-121.png differ diff --git a/images/41-122.png b/images/41-122.png new file mode 100644 index 0000000..8f3cef8 Binary files /dev/null and b/images/41-122.png differ diff --git a/images/41-123.png b/images/41-123.png new file mode 100644 index 0000000..133504c Binary files /dev/null and b/images/41-123.png differ diff --git a/images/41-124.png b/images/41-124.png new file mode 100644 index 0000000..f235a17 Binary files /dev/null and b/images/41-124.png differ diff --git a/images/41-125.png b/images/41-125.png new file mode 100644 index 0000000..abd3db3 Binary files /dev/null and b/images/41-125.png differ diff --git a/images/41-126.png b/images/41-126.png new file mode 100644 index 0000000..b7fc1f5 Binary files /dev/null and b/images/41-126.png differ diff --git a/images/41-127.png b/images/41-127.png new file mode 100644 index 0000000..bff8eb8 Binary files /dev/null and b/images/41-127.png differ diff --git a/images/41-128.png b/images/41-128.png new file mode 100644 index 0000000..1db2096 Binary files /dev/null and b/images/41-128.png differ diff --git a/images/41-129.png b/images/41-129.png new file mode 100644 index 0000000..4bb08f6 Binary files /dev/null and b/images/41-129.png differ diff --git a/images/41-13.png b/images/41-13.png new file mode 100644 index 0000000..d7756cc Binary files /dev/null and b/images/41-13.png differ diff --git a/images/41-130.png b/images/41-130.png new file mode 100644 index 0000000..1605689 Binary files /dev/null and b/images/41-130.png differ diff --git a/images/41-131.png b/images/41-131.png new file mode 100644 index 0000000..f250c33 Binary files /dev/null and b/images/41-131.png differ diff --git a/images/41-132.png b/images/41-132.png new file mode 100644 index 0000000..e118bf8 Binary files /dev/null and b/images/41-132.png differ diff --git a/images/41-133.png b/images/41-133.png new file mode 100644 index 0000000..67fbca5 Binary files /dev/null and b/images/41-133.png differ diff --git a/images/41-134.png b/images/41-134.png new file mode 100644 index 0000000..1c2aca4 Binary files /dev/null and b/images/41-134.png differ diff --git a/images/41-135.png b/images/41-135.png new file mode 100644 index 0000000..a6a8b1e Binary files /dev/null and b/images/41-135.png differ diff --git a/images/41-136.png b/images/41-136.png new file mode 100644 index 0000000..6b664b1 Binary files /dev/null and b/images/41-136.png differ diff --git a/images/41-137.png b/images/41-137.png new file mode 100644 index 0000000..a95e2df Binary files /dev/null and b/images/41-137.png differ diff --git a/images/41-138.png b/images/41-138.png new file mode 100644 index 0000000..36b765e Binary files /dev/null and b/images/41-138.png differ diff --git a/images/41-139.png b/images/41-139.png new file mode 100644 index 0000000..74b16fe Binary files /dev/null and b/images/41-139.png differ diff --git a/images/41-14.png b/images/41-14.png new file mode 100644 index 0000000..a6b2304 Binary files /dev/null and b/images/41-14.png differ diff --git a/images/41-140.png b/images/41-140.png new file mode 100644 index 0000000..7d4107c Binary files /dev/null and b/images/41-140.png differ diff --git a/images/41-141.png b/images/41-141.png new file mode 100644 index 0000000..ae62f91 Binary files /dev/null and b/images/41-141.png differ diff --git a/images/41-142.png b/images/41-142.png new file mode 100644 index 0000000..33351a2 Binary files /dev/null and b/images/41-142.png differ diff --git a/images/41-143.png b/images/41-143.png new file mode 100644 index 0000000..437cba2 Binary files /dev/null and b/images/41-143.png differ diff --git a/images/41-144.png b/images/41-144.png new file mode 100644 index 0000000..e882798 Binary files /dev/null and b/images/41-144.png differ diff --git a/images/41-145.png b/images/41-145.png new file mode 100644 index 0000000..2defaa8 Binary files /dev/null and b/images/41-145.png differ diff --git a/images/41-146.png b/images/41-146.png new file mode 100644 index 0000000..756be06 Binary files /dev/null and b/images/41-146.png differ diff --git a/images/41-147.png b/images/41-147.png new file mode 100644 index 0000000..9b77679 Binary files /dev/null and b/images/41-147.png differ diff --git a/images/41-148.png b/images/41-148.png new file mode 100644 index 0000000..04f9326 Binary files /dev/null and b/images/41-148.png differ diff --git a/images/41-149.png b/images/41-149.png new file mode 100644 index 0000000..f658362 Binary files /dev/null and b/images/41-149.png differ diff --git a/images/41-15.png b/images/41-15.png new file mode 100644 index 0000000..48244dd Binary files /dev/null and b/images/41-15.png differ diff --git a/images/41-150.png b/images/41-150.png new file mode 100644 index 0000000..fa6e687 Binary files /dev/null and b/images/41-150.png differ diff --git a/images/41-151.png b/images/41-151.png new file mode 100644 index 0000000..f1a37c3 Binary files /dev/null and b/images/41-151.png differ diff --git a/images/41-16.png b/images/41-16.png new file mode 100644 index 0000000..4eaec57 Binary files /dev/null and b/images/41-16.png differ diff --git a/images/41-17.png b/images/41-17.png new file mode 100644 index 0000000..b949aca Binary files /dev/null and b/images/41-17.png differ diff --git a/images/41-18.png b/images/41-18.png new file mode 100644 index 0000000..54f0b32 Binary files /dev/null and b/images/41-18.png differ diff --git a/images/41-19.png b/images/41-19.png new file mode 100644 index 0000000..0554fa5 Binary files /dev/null and b/images/41-19.png differ diff --git a/images/41-2.png b/images/41-2.png new file mode 100644 index 0000000..40b848e Binary files /dev/null and b/images/41-2.png differ diff --git a/images/41-20.png b/images/41-20.png new file mode 100644 index 0000000..05a24fc Binary files /dev/null and b/images/41-20.png differ diff --git a/images/41-21.png b/images/41-21.png new file mode 100644 index 0000000..18fa4b8 Binary files /dev/null and b/images/41-21.png differ diff --git a/images/41-22.png b/images/41-22.png new file mode 100644 index 0000000..47cad4a Binary files /dev/null and b/images/41-22.png differ diff --git a/images/41-23.png b/images/41-23.png new file mode 100644 index 0000000..18398fc Binary files /dev/null and b/images/41-23.png differ diff --git a/images/41-24.png b/images/41-24.png new file mode 100644 index 0000000..8f5a9ce Binary files /dev/null and b/images/41-24.png differ diff --git a/images/41-25.png b/images/41-25.png new file mode 100644 index 0000000..7297380 Binary files /dev/null and b/images/41-25.png differ diff --git a/images/41-26.png b/images/41-26.png new file mode 100644 index 0000000..f956d5e Binary files /dev/null and b/images/41-26.png differ diff --git a/images/41-27.png b/images/41-27.png new file mode 100644 index 0000000..ce7eb09 Binary files /dev/null and b/images/41-27.png differ diff --git a/images/41-28.png b/images/41-28.png new file mode 100644 index 0000000..1e30d2e Binary files /dev/null and b/images/41-28.png differ diff --git a/images/41-29.png b/images/41-29.png new file mode 100644 index 0000000..8ac72a2 Binary files /dev/null and b/images/41-29.png differ diff --git a/images/41-3.png b/images/41-3.png new file mode 100644 index 0000000..75d3d4b Binary files /dev/null and b/images/41-3.png differ diff --git a/images/41-30.png b/images/41-30.png new file mode 100644 index 0000000..302334d Binary files /dev/null and b/images/41-30.png differ diff --git a/images/41-31.png b/images/41-31.png new file mode 100644 index 0000000..e813bca Binary files /dev/null and b/images/41-31.png differ diff --git a/images/41-32.png b/images/41-32.png new file mode 100644 index 0000000..45992f1 Binary files /dev/null and b/images/41-32.png differ diff --git a/images/41-33.png b/images/41-33.png new file mode 100644 index 0000000..ec1eb27 Binary files /dev/null and b/images/41-33.png differ diff --git a/images/41-34.png b/images/41-34.png new file mode 100644 index 0000000..98e6868 Binary files /dev/null and b/images/41-34.png differ diff --git a/images/41-35.png b/images/41-35.png new file mode 100644 index 0000000..5c55605 Binary files /dev/null and b/images/41-35.png differ diff --git a/images/41-36.png b/images/41-36.png new file mode 100644 index 0000000..1078611 Binary files /dev/null and b/images/41-36.png differ diff --git a/images/41-37.png b/images/41-37.png new file mode 100644 index 0000000..8062c39 Binary files /dev/null and b/images/41-37.png differ diff --git a/images/41-38.png b/images/41-38.png new file mode 100644 index 0000000..9e6f25e Binary files /dev/null and b/images/41-38.png differ diff --git a/images/41-39.png b/images/41-39.png new file mode 100644 index 0000000..f19b745 Binary files /dev/null and b/images/41-39.png differ diff --git a/images/41-4.png b/images/41-4.png new file mode 100644 index 0000000..f1716b7 Binary files /dev/null and b/images/41-4.png differ diff --git a/images/41-40.png b/images/41-40.png new file mode 100644 index 0000000..03e7a2d Binary files /dev/null and b/images/41-40.png differ diff --git a/images/41-41.png b/images/41-41.png new file mode 100644 index 0000000..c77b1c6 Binary files /dev/null and b/images/41-41.png differ diff --git a/images/41-42.png b/images/41-42.png new file mode 100644 index 0000000..0685048 Binary files /dev/null and b/images/41-42.png differ diff --git a/images/41-43.png b/images/41-43.png new file mode 100644 index 0000000..df8436c Binary files /dev/null and b/images/41-43.png differ diff --git a/images/41-44.png b/images/41-44.png new file mode 100644 index 0000000..26794e8 Binary files /dev/null and b/images/41-44.png differ diff --git a/images/41-45.png b/images/41-45.png new file mode 100644 index 0000000..4727e79 Binary files /dev/null and b/images/41-45.png differ diff --git a/images/41-46.png b/images/41-46.png new file mode 100644 index 0000000..124ab82 Binary files /dev/null and b/images/41-46.png differ diff --git a/images/41-47.png b/images/41-47.png new file mode 100644 index 0000000..1749091 Binary files /dev/null and b/images/41-47.png differ diff --git a/images/41-48.png b/images/41-48.png new file mode 100644 index 0000000..7627bb5 Binary files /dev/null and b/images/41-48.png differ diff --git a/images/41-49.png b/images/41-49.png new file mode 100644 index 0000000..f2f36d4 Binary files /dev/null and b/images/41-49.png differ diff --git a/images/41-5.png b/images/41-5.png new file mode 100644 index 0000000..14c571d Binary files /dev/null and b/images/41-5.png differ diff --git a/images/41-50.png b/images/41-50.png new file mode 100644 index 0000000..24cd519 Binary files /dev/null and b/images/41-50.png differ diff --git a/images/41-51.png b/images/41-51.png new file mode 100644 index 0000000..735676a Binary files /dev/null and b/images/41-51.png differ diff --git a/images/41-52.png b/images/41-52.png new file mode 100644 index 0000000..6f42b84 Binary files /dev/null and b/images/41-52.png differ diff --git a/images/41-53.png b/images/41-53.png new file mode 100644 index 0000000..3c762e8 Binary files /dev/null and b/images/41-53.png differ diff --git a/images/41-54.png b/images/41-54.png new file mode 100644 index 0000000..0859d89 Binary files /dev/null and b/images/41-54.png differ diff --git a/images/41-55.png b/images/41-55.png new file mode 100644 index 0000000..b539110 Binary files /dev/null and b/images/41-55.png differ diff --git a/images/41-56.png b/images/41-56.png new file mode 100644 index 0000000..c96e604 Binary files /dev/null and b/images/41-56.png differ diff --git a/images/41-57.png b/images/41-57.png new file mode 100644 index 0000000..db29bc1 Binary files /dev/null and b/images/41-57.png differ diff --git a/images/41-58.png b/images/41-58.png new file mode 100644 index 0000000..6ffe9b7 Binary files /dev/null and b/images/41-58.png differ diff --git a/images/41-59.png b/images/41-59.png new file mode 100644 index 0000000..db31740 Binary files /dev/null and b/images/41-59.png differ diff --git a/images/41-6.png b/images/41-6.png new file mode 100644 index 0000000..f8a83b5 Binary files /dev/null and b/images/41-6.png differ diff --git a/images/41-60.png b/images/41-60.png new file mode 100644 index 0000000..4ee4584 Binary files /dev/null and b/images/41-60.png differ diff --git a/images/41-61.png b/images/41-61.png new file mode 100644 index 0000000..66d6b86 Binary files /dev/null and b/images/41-61.png differ diff --git a/images/41-62.png b/images/41-62.png new file mode 100644 index 0000000..a8ca7e5 Binary files /dev/null and b/images/41-62.png differ diff --git a/images/41-63.png b/images/41-63.png new file mode 100644 index 0000000..4288d80 Binary files /dev/null and b/images/41-63.png differ diff --git a/images/41-64.png b/images/41-64.png new file mode 100644 index 0000000..038c7fd Binary files /dev/null and b/images/41-64.png differ diff --git a/images/41-65.png b/images/41-65.png new file mode 100644 index 0000000..a7e58f3 Binary files /dev/null and b/images/41-65.png differ diff --git a/images/41-66.png b/images/41-66.png new file mode 100644 index 0000000..90bd282 Binary files /dev/null and b/images/41-66.png differ diff --git a/images/41-67.png b/images/41-67.png new file mode 100644 index 0000000..b76543a Binary files /dev/null and b/images/41-67.png differ diff --git a/images/41-68.png b/images/41-68.png new file mode 100644 index 0000000..d4766b7 Binary files /dev/null and b/images/41-68.png differ diff --git a/images/41-69.png b/images/41-69.png new file mode 100644 index 0000000..00e04fd Binary files /dev/null and b/images/41-69.png differ diff --git a/images/41-7.png b/images/41-7.png new file mode 100644 index 0000000..03f0076 Binary files /dev/null and b/images/41-7.png differ diff --git a/images/41-70.png b/images/41-70.png new file mode 100644 index 0000000..0313acd Binary files /dev/null and b/images/41-70.png differ diff --git a/images/41-71.png b/images/41-71.png new file mode 100644 index 0000000..c5e5698 Binary files /dev/null and b/images/41-71.png differ diff --git a/images/41-72.png b/images/41-72.png new file mode 100644 index 0000000..b009ebe Binary files /dev/null and b/images/41-72.png differ diff --git a/images/41-73.png b/images/41-73.png new file mode 100644 index 0000000..3211354 Binary files /dev/null and b/images/41-73.png differ diff --git a/images/41-74.png b/images/41-74.png new file mode 100644 index 0000000..a4650e8 Binary files /dev/null and b/images/41-74.png differ diff --git a/images/41-75.png b/images/41-75.png new file mode 100644 index 0000000..c5ef3ee Binary files /dev/null and b/images/41-75.png differ diff --git a/images/41-76.png b/images/41-76.png new file mode 100644 index 0000000..39dfcd7 Binary files /dev/null and b/images/41-76.png differ diff --git a/images/41-77.png b/images/41-77.png new file mode 100644 index 0000000..fcdc38b Binary files /dev/null and b/images/41-77.png differ diff --git a/images/41-78.png b/images/41-78.png new file mode 100644 index 0000000..764a977 Binary files /dev/null and b/images/41-78.png differ diff --git a/images/41-79.png b/images/41-79.png new file mode 100644 index 0000000..b12ca17 Binary files /dev/null and b/images/41-79.png differ diff --git a/images/41-8.png b/images/41-8.png new file mode 100644 index 0000000..a8c4d2c Binary files /dev/null and b/images/41-8.png differ diff --git a/images/41-80.png b/images/41-80.png new file mode 100644 index 0000000..5a7c132 Binary files /dev/null and b/images/41-80.png differ diff --git a/images/41-81.png b/images/41-81.png new file mode 100644 index 0000000..7a46362 Binary files /dev/null and b/images/41-81.png differ diff --git a/images/41-82.png b/images/41-82.png new file mode 100644 index 0000000..3a858c1 Binary files /dev/null and b/images/41-82.png differ diff --git a/images/41-83.png b/images/41-83.png new file mode 100644 index 0000000..070b1cc Binary files /dev/null and b/images/41-83.png differ diff --git a/images/41-84.png b/images/41-84.png new file mode 100644 index 0000000..cae627a Binary files /dev/null and b/images/41-84.png differ diff --git a/images/41-85.png b/images/41-85.png new file mode 100644 index 0000000..efeb69d Binary files /dev/null and b/images/41-85.png differ diff --git a/images/41-86.png b/images/41-86.png new file mode 100644 index 0000000..5203556 Binary files /dev/null and b/images/41-86.png differ diff --git a/images/41-87.png b/images/41-87.png new file mode 100644 index 0000000..946f033 Binary files /dev/null and b/images/41-87.png differ diff --git a/images/41-88.png b/images/41-88.png new file mode 100644 index 0000000..c5eca25 Binary files /dev/null and b/images/41-88.png differ diff --git a/images/41-89.png b/images/41-89.png new file mode 100644 index 0000000..6b7ce54 Binary files /dev/null and b/images/41-89.png differ diff --git a/images/41-9.png b/images/41-9.png new file mode 100644 index 0000000..08e15bf Binary files /dev/null and b/images/41-9.png differ diff --git a/images/41-90.png b/images/41-90.png new file mode 100644 index 0000000..398ab6f Binary files /dev/null and b/images/41-90.png differ diff --git a/images/41-91.png b/images/41-91.png new file mode 100644 index 0000000..74986e1 Binary files /dev/null and b/images/41-91.png differ diff --git a/images/41-92.png b/images/41-92.png new file mode 100644 index 0000000..0729a7b Binary files /dev/null and b/images/41-92.png differ diff --git a/images/41-93.png b/images/41-93.png new file mode 100644 index 0000000..2bf34e2 Binary files /dev/null and b/images/41-93.png differ diff --git a/images/41-94.png b/images/41-94.png new file mode 100644 index 0000000..cd25b63 Binary files /dev/null and b/images/41-94.png differ diff --git a/images/41-95.png b/images/41-95.png new file mode 100644 index 0000000..71cb659 Binary files /dev/null and b/images/41-95.png differ diff --git a/images/41-96.png b/images/41-96.png new file mode 100644 index 0000000..731878c Binary files /dev/null and b/images/41-96.png differ diff --git a/images/41-97.png b/images/41-97.png new file mode 100644 index 0000000..f6c6273 Binary files /dev/null and b/images/41-97.png differ diff --git a/images/41-98.png b/images/41-98.png new file mode 100644 index 0000000..4cf5dbc Binary files /dev/null and b/images/41-98.png differ diff --git a/images/41-99.png b/images/41-99.png new file mode 100644 index 0000000..6ef8d5a Binary files /dev/null and b/images/41-99.png differ diff --git a/images/42-0.png b/images/42-0.png new file mode 100644 index 0000000..c9c65e5 Binary files /dev/null and b/images/42-0.png differ diff --git a/images/42-1.png b/images/42-1.png new file mode 100644 index 0000000..3637f9c Binary files /dev/null and b/images/42-1.png differ diff --git a/images/42-10.png b/images/42-10.png new file mode 100644 index 0000000..ca6600f Binary files /dev/null and b/images/42-10.png differ diff --git a/images/42-11.png b/images/42-11.png new file mode 100644 index 0000000..228cdc3 Binary files /dev/null and b/images/42-11.png differ diff --git a/images/42-12.png b/images/42-12.png new file mode 100644 index 0000000..2234ad7 Binary files /dev/null and b/images/42-12.png differ diff --git a/images/42-13.png b/images/42-13.png new file mode 100644 index 0000000..9484059 Binary files /dev/null and b/images/42-13.png differ diff --git a/images/42-14.png b/images/42-14.png new file mode 100644 index 0000000..a50925b Binary files /dev/null and b/images/42-14.png differ diff --git a/images/42-15.png b/images/42-15.png new file mode 100644 index 0000000..66d1dfb Binary files /dev/null and b/images/42-15.png differ diff --git a/images/42-16.png b/images/42-16.png new file mode 100644 index 0000000..927c4ee Binary files /dev/null and b/images/42-16.png differ diff --git a/images/42-17.png b/images/42-17.png new file mode 100644 index 0000000..aa039b4 Binary files /dev/null and b/images/42-17.png differ diff --git a/images/42-18.png b/images/42-18.png new file mode 100644 index 0000000..2a23ea1 Binary files /dev/null and b/images/42-18.png differ diff --git a/images/42-19.png b/images/42-19.png new file mode 100644 index 0000000..78d9a44 Binary files /dev/null and b/images/42-19.png differ diff --git a/images/42-2.png b/images/42-2.png new file mode 100644 index 0000000..05c8c24 Binary files /dev/null and b/images/42-2.png differ diff --git a/images/42-20.png b/images/42-20.png new file mode 100644 index 0000000..49d8555 Binary files /dev/null and b/images/42-20.png differ diff --git a/images/42-21.png b/images/42-21.png new file mode 100644 index 0000000..3995c5b Binary files /dev/null and b/images/42-21.png differ diff --git a/images/42-22.png b/images/42-22.png new file mode 100644 index 0000000..c725bce Binary files /dev/null and b/images/42-22.png differ diff --git a/images/42-23.png b/images/42-23.png new file mode 100644 index 0000000..fd1982a Binary files /dev/null and b/images/42-23.png differ diff --git a/images/42-24.png b/images/42-24.png new file mode 100644 index 0000000..df70e4c Binary files /dev/null and b/images/42-24.png differ diff --git a/images/42-25.png b/images/42-25.png new file mode 100644 index 0000000..69bb19d Binary files /dev/null and b/images/42-25.png differ diff --git a/images/42-3.png b/images/42-3.png new file mode 100644 index 0000000..e606bcf Binary files /dev/null and b/images/42-3.png differ diff --git a/images/42-4.png b/images/42-4.png new file mode 100644 index 0000000..f3f8e26 Binary files /dev/null and b/images/42-4.png differ diff --git a/images/42-5.png b/images/42-5.png new file mode 100644 index 0000000..042e470 Binary files /dev/null and b/images/42-5.png differ diff --git a/images/42-6.png b/images/42-6.png new file mode 100644 index 0000000..45eda36 Binary files /dev/null and b/images/42-6.png differ diff --git a/images/42-7.png b/images/42-7.png new file mode 100644 index 0000000..9d2ecae Binary files /dev/null and b/images/42-7.png differ diff --git a/images/42-8.png b/images/42-8.png new file mode 100644 index 0000000..07ba799 Binary files /dev/null and b/images/42-8.png differ diff --git a/images/42-9.png b/images/42-9.png new file mode 100644 index 0000000..7dca0a5 Binary files /dev/null and b/images/42-9.png differ diff --git a/images/43-0.png b/images/43-0.png new file mode 100644 index 0000000..9d624cf Binary files /dev/null and b/images/43-0.png differ diff --git a/images/43-1.png b/images/43-1.png new file mode 100644 index 0000000..32e18fb Binary files /dev/null and b/images/43-1.png differ diff --git a/images/43-10.png b/images/43-10.png new file mode 100644 index 0000000..08adbac Binary files /dev/null and b/images/43-10.png differ diff --git a/images/43-11.png b/images/43-11.png new file mode 100644 index 0000000..85d7c99 Binary files /dev/null and b/images/43-11.png differ diff --git a/images/43-12.png b/images/43-12.png new file mode 100644 index 0000000..6f27c4f Binary files /dev/null and b/images/43-12.png differ diff --git a/images/43-13.png b/images/43-13.png new file mode 100644 index 0000000..076a7f2 Binary files /dev/null and b/images/43-13.png differ diff --git a/images/43-14.png b/images/43-14.png new file mode 100644 index 0000000..613e97d Binary files /dev/null and b/images/43-14.png differ diff --git a/images/43-15.png b/images/43-15.png new file mode 100644 index 0000000..04558e5 Binary files /dev/null and b/images/43-15.png differ diff --git a/images/43-16.png b/images/43-16.png new file mode 100644 index 0000000..e712669 Binary files /dev/null and b/images/43-16.png differ diff --git a/images/43-17.png b/images/43-17.png new file mode 100644 index 0000000..ec48f0d Binary files /dev/null and b/images/43-17.png differ diff --git a/images/43-18.png b/images/43-18.png new file mode 100644 index 0000000..42f6cb9 Binary files /dev/null and b/images/43-18.png differ diff --git a/images/43-19.png b/images/43-19.png new file mode 100644 index 0000000..39c2058 Binary files /dev/null and b/images/43-19.png differ diff --git a/images/43-2.png b/images/43-2.png new file mode 100644 index 0000000..a7d55e1 Binary files /dev/null and b/images/43-2.png differ diff --git a/images/43-20.png b/images/43-20.png new file mode 100644 index 0000000..66cc0d9 Binary files /dev/null and b/images/43-20.png differ diff --git a/images/43-21.png b/images/43-21.png new file mode 100644 index 0000000..db13db6 Binary files /dev/null and b/images/43-21.png differ diff --git a/images/43-22.png b/images/43-22.png new file mode 100644 index 0000000..0f9d8f5 Binary files /dev/null and b/images/43-22.png differ diff --git a/images/43-23.png b/images/43-23.png new file mode 100644 index 0000000..aa11eb5 Binary files /dev/null and b/images/43-23.png differ diff --git a/images/43-24.png b/images/43-24.png new file mode 100644 index 0000000..f4c3d7b Binary files /dev/null and b/images/43-24.png differ diff --git a/images/43-25.png b/images/43-25.png new file mode 100644 index 0000000..498d967 Binary files /dev/null and b/images/43-25.png differ diff --git a/images/43-26.png b/images/43-26.png new file mode 100644 index 0000000..05560c9 Binary files /dev/null and b/images/43-26.png differ diff --git a/images/43-27.png b/images/43-27.png new file mode 100644 index 0000000..d2bde2b Binary files /dev/null and b/images/43-27.png differ diff --git a/images/43-28.png b/images/43-28.png new file mode 100644 index 0000000..58d198d Binary files /dev/null and b/images/43-28.png differ diff --git a/images/43-29.png b/images/43-29.png new file mode 100644 index 0000000..d2113b0 Binary files /dev/null and b/images/43-29.png differ diff --git a/images/43-3.png b/images/43-3.png new file mode 100644 index 0000000..9e8b16b Binary files /dev/null and b/images/43-3.png differ diff --git a/images/43-30.png b/images/43-30.png new file mode 100644 index 0000000..675348c Binary files /dev/null and b/images/43-30.png differ diff --git a/images/43-31.png b/images/43-31.png new file mode 100644 index 0000000..e29f961 Binary files /dev/null and b/images/43-31.png differ diff --git a/images/43-32.png b/images/43-32.png new file mode 100644 index 0000000..839f964 Binary files /dev/null and b/images/43-32.png differ diff --git a/images/43-33.png b/images/43-33.png new file mode 100644 index 0000000..21e46b7 Binary files /dev/null and b/images/43-33.png differ diff --git a/images/43-4.png b/images/43-4.png new file mode 100644 index 0000000..793b396 Binary files /dev/null and b/images/43-4.png differ diff --git a/images/43-5.png b/images/43-5.png new file mode 100644 index 0000000..9a68824 Binary files /dev/null and b/images/43-5.png differ diff --git a/images/43-6.png b/images/43-6.png new file mode 100644 index 0000000..b92ed1b Binary files /dev/null and b/images/43-6.png differ diff --git a/images/43-7.png b/images/43-7.png new file mode 100644 index 0000000..fef29b7 Binary files /dev/null and b/images/43-7.png differ diff --git a/images/43-8.png b/images/43-8.png new file mode 100644 index 0000000..c8c9dc8 Binary files /dev/null and b/images/43-8.png differ diff --git a/images/43-9.png b/images/43-9.png new file mode 100644 index 0000000..b4c64ff Binary files /dev/null and b/images/43-9.png differ diff --git a/images/44-0.png b/images/44-0.png new file mode 100644 index 0000000..d5f0885 Binary files /dev/null and b/images/44-0.png differ diff --git a/images/44-1.png b/images/44-1.png new file mode 100644 index 0000000..ad791fa Binary files /dev/null and b/images/44-1.png differ diff --git a/images/44-10.png b/images/44-10.png new file mode 100644 index 0000000..d156806 Binary files /dev/null and b/images/44-10.png differ diff --git a/images/44-100.png b/images/44-100.png new file mode 100644 index 0000000..f9137a6 Binary files /dev/null and b/images/44-100.png differ diff --git a/images/44-101.png b/images/44-101.png new file mode 100644 index 0000000..2e864c7 Binary files /dev/null and b/images/44-101.png differ diff --git a/images/44-102.png b/images/44-102.png new file mode 100644 index 0000000..13b7a10 Binary files /dev/null and b/images/44-102.png differ diff --git a/images/44-103.png b/images/44-103.png new file mode 100644 index 0000000..4ea446b Binary files /dev/null and b/images/44-103.png differ diff --git a/images/44-104.png b/images/44-104.png new file mode 100644 index 0000000..92563f3 Binary files /dev/null and b/images/44-104.png differ diff --git a/images/44-105.png b/images/44-105.png new file mode 100644 index 0000000..34a86c3 Binary files /dev/null and b/images/44-105.png differ diff --git a/images/44-106.png b/images/44-106.png new file mode 100644 index 0000000..5522ec9 Binary files /dev/null and b/images/44-106.png differ diff --git a/images/44-107.png b/images/44-107.png new file mode 100644 index 0000000..74139e9 Binary files /dev/null and b/images/44-107.png differ diff --git a/images/44-108.png b/images/44-108.png new file mode 100644 index 0000000..3b875e5 Binary files /dev/null and b/images/44-108.png differ diff --git a/images/44-109.png b/images/44-109.png new file mode 100644 index 0000000..d9ffa08 Binary files /dev/null and b/images/44-109.png differ diff --git a/images/44-11.png b/images/44-11.png new file mode 100644 index 0000000..6db6bc5 Binary files /dev/null and b/images/44-11.png differ diff --git a/images/44-110.png b/images/44-110.png new file mode 100644 index 0000000..49ccf44 Binary files /dev/null and b/images/44-110.png differ diff --git a/images/44-111.png b/images/44-111.png new file mode 100644 index 0000000..c383078 Binary files /dev/null and b/images/44-111.png differ diff --git a/images/44-112.png b/images/44-112.png new file mode 100644 index 0000000..d708c44 Binary files /dev/null and b/images/44-112.png differ diff --git a/images/44-113.png b/images/44-113.png new file mode 100644 index 0000000..486fa6d Binary files /dev/null and b/images/44-113.png differ diff --git a/images/44-114.png b/images/44-114.png new file mode 100644 index 0000000..3a79dd9 Binary files /dev/null and b/images/44-114.png differ diff --git a/images/44-115.png b/images/44-115.png new file mode 100644 index 0000000..9ad2139 Binary files /dev/null and b/images/44-115.png differ diff --git a/images/44-116.png b/images/44-116.png new file mode 100644 index 0000000..9cbaa66 Binary files /dev/null and b/images/44-116.png differ diff --git a/images/44-117.png b/images/44-117.png new file mode 100644 index 0000000..504d2f3 Binary files /dev/null and b/images/44-117.png differ diff --git a/images/44-118.png b/images/44-118.png new file mode 100644 index 0000000..a76e033 Binary files /dev/null and b/images/44-118.png differ diff --git a/images/44-119.png b/images/44-119.png new file mode 100644 index 0000000..b2836ee Binary files /dev/null and b/images/44-119.png differ diff --git a/images/44-12.png b/images/44-12.png new file mode 100644 index 0000000..81fc02e Binary files /dev/null and b/images/44-12.png differ diff --git a/images/44-120.png b/images/44-120.png new file mode 100644 index 0000000..78395d3 Binary files /dev/null and b/images/44-120.png differ diff --git a/images/44-121.png b/images/44-121.png new file mode 100644 index 0000000..d057446 Binary files /dev/null and b/images/44-121.png differ diff --git a/images/44-122.png b/images/44-122.png new file mode 100644 index 0000000..f5db6e3 Binary files /dev/null and b/images/44-122.png differ diff --git a/images/44-123.png b/images/44-123.png new file mode 100644 index 0000000..b8dfe48 Binary files /dev/null and b/images/44-123.png differ diff --git a/images/44-124.png b/images/44-124.png new file mode 100644 index 0000000..ecd4245 Binary files /dev/null and b/images/44-124.png differ diff --git a/images/44-125.png b/images/44-125.png new file mode 100644 index 0000000..aa01316 Binary files /dev/null and b/images/44-125.png differ diff --git a/images/44-126.png b/images/44-126.png new file mode 100644 index 0000000..5131eb3 Binary files /dev/null and b/images/44-126.png differ diff --git a/images/44-127.png b/images/44-127.png new file mode 100644 index 0000000..5b11811 Binary files /dev/null and b/images/44-127.png differ diff --git a/images/44-128.png b/images/44-128.png new file mode 100644 index 0000000..dd6365e Binary files /dev/null and b/images/44-128.png differ diff --git a/images/44-129.png b/images/44-129.png new file mode 100644 index 0000000..2b32035 Binary files /dev/null and b/images/44-129.png differ diff --git a/images/44-13.png b/images/44-13.png new file mode 100644 index 0000000..677d54d Binary files /dev/null and b/images/44-13.png differ diff --git a/images/44-130.png b/images/44-130.png new file mode 100644 index 0000000..4197619 Binary files /dev/null and b/images/44-130.png differ diff --git a/images/44-131.png b/images/44-131.png new file mode 100644 index 0000000..0205153 Binary files /dev/null and b/images/44-131.png differ diff --git a/images/44-132.png b/images/44-132.png new file mode 100644 index 0000000..04de472 Binary files /dev/null and b/images/44-132.png differ diff --git a/images/44-133.png b/images/44-133.png new file mode 100644 index 0000000..d06300a Binary files /dev/null and b/images/44-133.png differ diff --git a/images/44-134.png b/images/44-134.png new file mode 100644 index 0000000..782af1a Binary files /dev/null and b/images/44-134.png differ diff --git a/images/44-135.png b/images/44-135.png new file mode 100644 index 0000000..606246c Binary files /dev/null and b/images/44-135.png differ diff --git a/images/44-136.png b/images/44-136.png new file mode 100644 index 0000000..182f616 Binary files /dev/null and b/images/44-136.png differ diff --git a/images/44-137.png b/images/44-137.png new file mode 100644 index 0000000..68dbd33 Binary files /dev/null and b/images/44-137.png differ diff --git a/images/44-138.png b/images/44-138.png new file mode 100644 index 0000000..c8c168f Binary files /dev/null and b/images/44-138.png differ diff --git a/images/44-139.png b/images/44-139.png new file mode 100644 index 0000000..425c4d2 Binary files /dev/null and b/images/44-139.png differ diff --git a/images/44-14.png b/images/44-14.png new file mode 100644 index 0000000..a64e31a Binary files /dev/null and b/images/44-14.png differ diff --git a/images/44-140.png b/images/44-140.png new file mode 100644 index 0000000..ff53119 Binary files /dev/null and b/images/44-140.png differ diff --git a/images/44-141.png b/images/44-141.png new file mode 100644 index 0000000..5612787 Binary files /dev/null and b/images/44-141.png differ diff --git a/images/44-142.png b/images/44-142.png new file mode 100644 index 0000000..9bb380b Binary files /dev/null and b/images/44-142.png differ diff --git a/images/44-143.png b/images/44-143.png new file mode 100644 index 0000000..8d4b020 Binary files /dev/null and b/images/44-143.png differ diff --git a/images/44-144.png b/images/44-144.png new file mode 100644 index 0000000..bf20aea Binary files /dev/null and b/images/44-144.png differ diff --git a/images/44-145.png b/images/44-145.png new file mode 100644 index 0000000..d37ab59 Binary files /dev/null and b/images/44-145.png differ diff --git a/images/44-146.png b/images/44-146.png new file mode 100644 index 0000000..3c2e9d2 Binary files /dev/null and b/images/44-146.png differ diff --git a/images/44-147.png b/images/44-147.png new file mode 100644 index 0000000..e8010d1 Binary files /dev/null and b/images/44-147.png differ diff --git a/images/44-15.png b/images/44-15.png new file mode 100644 index 0000000..15916fe Binary files /dev/null and b/images/44-15.png differ diff --git a/images/44-16.png b/images/44-16.png new file mode 100644 index 0000000..0cadc67 Binary files /dev/null and b/images/44-16.png differ diff --git a/images/44-17.png b/images/44-17.png new file mode 100644 index 0000000..0ddd888 Binary files /dev/null and b/images/44-17.png differ diff --git a/images/44-18.png b/images/44-18.png new file mode 100644 index 0000000..2c093a0 Binary files /dev/null and b/images/44-18.png differ diff --git a/images/44-19.png b/images/44-19.png new file mode 100644 index 0000000..dbaacdc Binary files /dev/null and b/images/44-19.png differ diff --git a/images/44-2.png b/images/44-2.png new file mode 100644 index 0000000..15dbe90 Binary files /dev/null and b/images/44-2.png differ diff --git a/images/44-20.png b/images/44-20.png new file mode 100644 index 0000000..bfb8572 Binary files /dev/null and b/images/44-20.png differ diff --git a/images/44-21.png b/images/44-21.png new file mode 100644 index 0000000..16d7ed5 Binary files /dev/null and b/images/44-21.png differ diff --git a/images/44-22.png b/images/44-22.png new file mode 100644 index 0000000..6737ff8 Binary files /dev/null and b/images/44-22.png differ diff --git a/images/44-23.png b/images/44-23.png new file mode 100644 index 0000000..f52331a Binary files /dev/null and b/images/44-23.png differ diff --git a/images/44-24.png b/images/44-24.png new file mode 100644 index 0000000..bc43290 Binary files /dev/null and b/images/44-24.png differ diff --git a/images/44-25.png b/images/44-25.png new file mode 100644 index 0000000..bd1a554 Binary files /dev/null and b/images/44-25.png differ diff --git a/images/44-26.png b/images/44-26.png new file mode 100644 index 0000000..c9223c3 Binary files /dev/null and b/images/44-26.png differ diff --git a/images/44-27.png b/images/44-27.png new file mode 100644 index 0000000..e00951a Binary files /dev/null and b/images/44-27.png differ diff --git a/images/44-28.png b/images/44-28.png new file mode 100644 index 0000000..42b2865 Binary files /dev/null and b/images/44-28.png differ diff --git a/images/44-29.png b/images/44-29.png new file mode 100644 index 0000000..9f37070 Binary files /dev/null and b/images/44-29.png differ diff --git a/images/44-3.png b/images/44-3.png new file mode 100644 index 0000000..f71f15b Binary files /dev/null and b/images/44-3.png differ diff --git a/images/44-30.png b/images/44-30.png new file mode 100644 index 0000000..2b98720 Binary files /dev/null and b/images/44-30.png differ diff --git a/images/44-31.png b/images/44-31.png new file mode 100644 index 0000000..289f161 Binary files /dev/null and b/images/44-31.png differ diff --git a/images/44-32.png b/images/44-32.png new file mode 100644 index 0000000..a873d55 Binary files /dev/null and b/images/44-32.png differ diff --git a/images/44-33.png b/images/44-33.png new file mode 100644 index 0000000..dbc5f96 Binary files /dev/null and b/images/44-33.png differ diff --git a/images/44-34.png b/images/44-34.png new file mode 100644 index 0000000..33d22a3 Binary files /dev/null and b/images/44-34.png differ diff --git a/images/44-35.png b/images/44-35.png new file mode 100644 index 0000000..b48d494 Binary files /dev/null and b/images/44-35.png differ diff --git a/images/44-36.png b/images/44-36.png new file mode 100644 index 0000000..476e8b9 Binary files /dev/null and b/images/44-36.png differ diff --git a/images/44-37.png b/images/44-37.png new file mode 100644 index 0000000..167c2fd Binary files /dev/null and b/images/44-37.png differ diff --git a/images/44-38.png b/images/44-38.png new file mode 100644 index 0000000..dd312f3 Binary files /dev/null and b/images/44-38.png differ diff --git a/images/44-39.png b/images/44-39.png new file mode 100644 index 0000000..723c52c Binary files /dev/null and b/images/44-39.png differ diff --git a/images/44-4.png b/images/44-4.png new file mode 100644 index 0000000..c8e4528 Binary files /dev/null and b/images/44-4.png differ diff --git a/images/44-40.png b/images/44-40.png new file mode 100644 index 0000000..b1574d2 Binary files /dev/null and b/images/44-40.png differ diff --git a/images/44-41.png b/images/44-41.png new file mode 100644 index 0000000..328caf2 Binary files /dev/null and b/images/44-41.png differ diff --git a/images/44-42.png b/images/44-42.png new file mode 100644 index 0000000..3b6e699 Binary files /dev/null and b/images/44-42.png differ diff --git a/images/44-43.png b/images/44-43.png new file mode 100644 index 0000000..00d3c6c Binary files /dev/null and b/images/44-43.png differ diff --git a/images/44-44.png b/images/44-44.png new file mode 100644 index 0000000..b515211 Binary files /dev/null and b/images/44-44.png differ diff --git a/images/44-45.png b/images/44-45.png new file mode 100644 index 0000000..8035444 Binary files /dev/null and b/images/44-45.png differ diff --git a/images/44-46.png b/images/44-46.png new file mode 100644 index 0000000..fb18e28 Binary files /dev/null and b/images/44-46.png differ diff --git a/images/44-47.png b/images/44-47.png new file mode 100644 index 0000000..cdf717a Binary files /dev/null and b/images/44-47.png differ diff --git a/images/44-48.png b/images/44-48.png new file mode 100644 index 0000000..2630d56 Binary files /dev/null and b/images/44-48.png differ diff --git a/images/44-49.png b/images/44-49.png new file mode 100644 index 0000000..0fe060c Binary files /dev/null and b/images/44-49.png differ diff --git a/images/44-5.png b/images/44-5.png new file mode 100644 index 0000000..47e359e Binary files /dev/null and b/images/44-5.png differ diff --git a/images/44-50.png b/images/44-50.png new file mode 100644 index 0000000..b7f885f Binary files /dev/null and b/images/44-50.png differ diff --git a/images/44-51.png b/images/44-51.png new file mode 100644 index 0000000..1ba9ffd Binary files /dev/null and b/images/44-51.png differ diff --git a/images/44-52.png b/images/44-52.png new file mode 100644 index 0000000..20ab949 Binary files /dev/null and b/images/44-52.png differ diff --git a/images/44-53.png b/images/44-53.png new file mode 100644 index 0000000..d965404 Binary files /dev/null and b/images/44-53.png differ diff --git a/images/44-54.png b/images/44-54.png new file mode 100644 index 0000000..d86e9ab Binary files /dev/null and b/images/44-54.png differ diff --git a/images/44-55.png b/images/44-55.png new file mode 100644 index 0000000..14e50af Binary files /dev/null and b/images/44-55.png differ diff --git a/images/44-56.png b/images/44-56.png new file mode 100644 index 0000000..2b407d4 Binary files /dev/null and b/images/44-56.png differ diff --git a/images/44-57.png b/images/44-57.png new file mode 100644 index 0000000..cb392c6 Binary files /dev/null and b/images/44-57.png differ diff --git a/images/44-58.png b/images/44-58.png new file mode 100644 index 0000000..4f99725 Binary files /dev/null and b/images/44-58.png differ diff --git a/images/44-59.png b/images/44-59.png new file mode 100644 index 0000000..0b6623b Binary files /dev/null and b/images/44-59.png differ diff --git a/images/44-6.png b/images/44-6.png new file mode 100644 index 0000000..c4cfa59 Binary files /dev/null and b/images/44-6.png differ diff --git a/images/44-60.png b/images/44-60.png new file mode 100644 index 0000000..56d705c Binary files /dev/null and b/images/44-60.png differ diff --git a/images/44-61.png b/images/44-61.png new file mode 100644 index 0000000..51ec744 Binary files /dev/null and b/images/44-61.png differ diff --git a/images/44-62.png b/images/44-62.png new file mode 100644 index 0000000..a3d2938 Binary files /dev/null and b/images/44-62.png differ diff --git a/images/44-63.png b/images/44-63.png new file mode 100644 index 0000000..8a60fa4 Binary files /dev/null and b/images/44-63.png differ diff --git a/images/44-64.png b/images/44-64.png new file mode 100644 index 0000000..11b9328 Binary files /dev/null and b/images/44-64.png differ diff --git a/images/44-65.png b/images/44-65.png new file mode 100644 index 0000000..66a2665 Binary files /dev/null and b/images/44-65.png differ diff --git a/images/44-66.png b/images/44-66.png new file mode 100644 index 0000000..c83bb01 Binary files /dev/null and b/images/44-66.png differ diff --git a/images/44-67.png b/images/44-67.png new file mode 100644 index 0000000..9a3e61b Binary files /dev/null and b/images/44-67.png differ diff --git a/images/44-68.png b/images/44-68.png new file mode 100644 index 0000000..dedd4cf Binary files /dev/null and b/images/44-68.png differ diff --git a/images/44-69.png b/images/44-69.png new file mode 100644 index 0000000..db11dc2 Binary files /dev/null and b/images/44-69.png differ diff --git a/images/44-7.png b/images/44-7.png new file mode 100644 index 0000000..1c852b0 Binary files /dev/null and b/images/44-7.png differ diff --git a/images/44-70.png b/images/44-70.png new file mode 100644 index 0000000..fa56e6b Binary files /dev/null and b/images/44-70.png differ diff --git a/images/44-71.png b/images/44-71.png new file mode 100644 index 0000000..9e1caaa Binary files /dev/null and b/images/44-71.png differ diff --git a/images/44-72.png b/images/44-72.png new file mode 100644 index 0000000..6d2b54d Binary files /dev/null and b/images/44-72.png differ diff --git a/images/44-73.png b/images/44-73.png new file mode 100644 index 0000000..ff0c6ee Binary files /dev/null and b/images/44-73.png differ diff --git a/images/44-74.png b/images/44-74.png new file mode 100644 index 0000000..66d7a36 Binary files /dev/null and b/images/44-74.png differ diff --git a/images/44-75.png b/images/44-75.png new file mode 100644 index 0000000..484f713 Binary files /dev/null and b/images/44-75.png differ diff --git a/images/44-76.png b/images/44-76.png new file mode 100644 index 0000000..68cceee Binary files /dev/null and b/images/44-76.png differ diff --git a/images/44-77.png b/images/44-77.png new file mode 100644 index 0000000..a51ea92 Binary files /dev/null and b/images/44-77.png differ diff --git a/images/44-78.png b/images/44-78.png new file mode 100644 index 0000000..8515da6 Binary files /dev/null and b/images/44-78.png differ diff --git a/images/44-79.png b/images/44-79.png new file mode 100644 index 0000000..770ce77 Binary files /dev/null and b/images/44-79.png differ diff --git a/images/44-8.png b/images/44-8.png new file mode 100644 index 0000000..be8e875 Binary files /dev/null and b/images/44-8.png differ diff --git a/images/44-80.png b/images/44-80.png new file mode 100644 index 0000000..ca6d1c9 Binary files /dev/null and b/images/44-80.png differ diff --git a/images/44-81.png b/images/44-81.png new file mode 100644 index 0000000..ccb23bc Binary files /dev/null and b/images/44-81.png differ diff --git a/images/44-82.png b/images/44-82.png new file mode 100644 index 0000000..e60ad0d Binary files /dev/null and b/images/44-82.png differ diff --git a/images/44-83.png b/images/44-83.png new file mode 100644 index 0000000..48c09af Binary files /dev/null and b/images/44-83.png differ diff --git a/images/44-84.png b/images/44-84.png new file mode 100644 index 0000000..ad07ac0 Binary files /dev/null and b/images/44-84.png differ diff --git a/images/44-85.png b/images/44-85.png new file mode 100644 index 0000000..bf782df Binary files /dev/null and b/images/44-85.png differ diff --git a/images/44-86.png b/images/44-86.png new file mode 100644 index 0000000..dc1e1da Binary files /dev/null and b/images/44-86.png differ diff --git a/images/44-87.png b/images/44-87.png new file mode 100644 index 0000000..fbc4cdf Binary files /dev/null and b/images/44-87.png differ diff --git a/images/44-88.png b/images/44-88.png new file mode 100644 index 0000000..8c06dae Binary files /dev/null and b/images/44-88.png differ diff --git a/images/44-89.png b/images/44-89.png new file mode 100644 index 0000000..a10d651 Binary files /dev/null and b/images/44-89.png differ diff --git a/images/44-9.png b/images/44-9.png new file mode 100644 index 0000000..17f4f37 Binary files /dev/null and b/images/44-9.png differ diff --git a/images/44-90.png b/images/44-90.png new file mode 100644 index 0000000..b6b5b6c Binary files /dev/null and b/images/44-90.png differ diff --git a/images/44-91.png b/images/44-91.png new file mode 100644 index 0000000..4fa3273 Binary files /dev/null and b/images/44-91.png differ diff --git a/images/44-92.png b/images/44-92.png new file mode 100644 index 0000000..491403a Binary files /dev/null and b/images/44-92.png differ diff --git a/images/44-93.png b/images/44-93.png new file mode 100644 index 0000000..54669c8 Binary files /dev/null and b/images/44-93.png differ diff --git a/images/44-94.png b/images/44-94.png new file mode 100644 index 0000000..f7adf02 Binary files /dev/null and b/images/44-94.png differ diff --git a/images/44-95.png b/images/44-95.png new file mode 100644 index 0000000..f98b0ac Binary files /dev/null and b/images/44-95.png differ diff --git a/images/44-96.png b/images/44-96.png new file mode 100644 index 0000000..9bcedc1 Binary files /dev/null and b/images/44-96.png differ diff --git a/images/44-97.png b/images/44-97.png new file mode 100644 index 0000000..62be583 Binary files /dev/null and b/images/44-97.png differ diff --git a/images/44-98.png b/images/44-98.png new file mode 100644 index 0000000..003ca50 Binary files /dev/null and b/images/44-98.png differ diff --git a/images/44-99.png b/images/44-99.png new file mode 100644 index 0000000..cdb02bc Binary files /dev/null and b/images/44-99.png differ diff --git a/images/45-0.png b/images/45-0.png new file mode 100644 index 0000000..46b9f56 Binary files /dev/null and b/images/45-0.png differ diff --git a/images/45-1.png b/images/45-1.png new file mode 100644 index 0000000..46f3425 Binary files /dev/null and b/images/45-1.png differ diff --git a/images/45-10.png b/images/45-10.png new file mode 100644 index 0000000..6ad9731 Binary files /dev/null and b/images/45-10.png differ diff --git a/images/45-11.png b/images/45-11.png new file mode 100644 index 0000000..3704706 Binary files /dev/null and b/images/45-11.png differ diff --git a/images/45-12.png b/images/45-12.png new file mode 100644 index 0000000..b039817 Binary files /dev/null and b/images/45-12.png differ diff --git a/images/45-13.png b/images/45-13.png new file mode 100644 index 0000000..688b23c Binary files /dev/null and b/images/45-13.png differ diff --git a/images/45-14.png b/images/45-14.png new file mode 100644 index 0000000..f31fd3e Binary files /dev/null and b/images/45-14.png differ diff --git a/images/45-15.png b/images/45-15.png new file mode 100644 index 0000000..2dc99c2 Binary files /dev/null and b/images/45-15.png differ diff --git a/images/45-16.png b/images/45-16.png new file mode 100644 index 0000000..4cdc147 Binary files /dev/null and b/images/45-16.png differ diff --git a/images/45-2.png b/images/45-2.png new file mode 100644 index 0000000..af40f1f Binary files /dev/null and b/images/45-2.png differ diff --git a/images/45-3.png b/images/45-3.png new file mode 100644 index 0000000..1f27442 Binary files /dev/null and b/images/45-3.png differ diff --git a/images/45-4.png b/images/45-4.png new file mode 100644 index 0000000..88830c7 Binary files /dev/null and b/images/45-4.png differ diff --git a/images/45-5.png b/images/45-5.png new file mode 100644 index 0000000..84b1a5b Binary files /dev/null and b/images/45-5.png differ diff --git a/images/45-6.png b/images/45-6.png new file mode 100644 index 0000000..5edd4cc Binary files /dev/null and b/images/45-6.png differ diff --git a/images/45-7.png b/images/45-7.png new file mode 100644 index 0000000..3ee2f4e Binary files /dev/null and b/images/45-7.png differ diff --git a/images/45-8.png b/images/45-8.png new file mode 100644 index 0000000..abb366f Binary files /dev/null and b/images/45-8.png differ diff --git a/images/45-9.png b/images/45-9.png new file mode 100644 index 0000000..aed8b83 Binary files /dev/null and b/images/45-9.png differ diff --git a/images/46-0.png b/images/46-0.png new file mode 100644 index 0000000..5d748ae Binary files /dev/null and b/images/46-0.png differ diff --git a/images/46-1.png b/images/46-1.png new file mode 100644 index 0000000..49be06a Binary files /dev/null and b/images/46-1.png differ diff --git a/images/46-10.png b/images/46-10.png new file mode 100644 index 0000000..a62f0d8 Binary files /dev/null and b/images/46-10.png differ diff --git a/images/46-11.png b/images/46-11.png new file mode 100644 index 0000000..3f59e20 Binary files /dev/null and b/images/46-11.png differ diff --git a/images/46-12.png b/images/46-12.png new file mode 100644 index 0000000..a44db40 Binary files /dev/null and b/images/46-12.png differ diff --git a/images/46-13.png b/images/46-13.png new file mode 100644 index 0000000..4a3969c Binary files /dev/null and b/images/46-13.png differ diff --git a/images/46-14.png b/images/46-14.png new file mode 100644 index 0000000..b087b3c Binary files /dev/null and b/images/46-14.png differ diff --git a/images/46-15.png b/images/46-15.png new file mode 100644 index 0000000..aa88b2f Binary files /dev/null and b/images/46-15.png differ diff --git a/images/46-16.png b/images/46-16.png new file mode 100644 index 0000000..a8722dc Binary files /dev/null and b/images/46-16.png differ diff --git a/images/46-2.png b/images/46-2.png new file mode 100644 index 0000000..c5c5276 Binary files /dev/null and b/images/46-2.png differ diff --git a/images/46-3.png b/images/46-3.png new file mode 100644 index 0000000..e5f76a8 Binary files /dev/null and b/images/46-3.png differ diff --git a/images/46-4.png b/images/46-4.png new file mode 100644 index 0000000..f5fbfe0 Binary files /dev/null and b/images/46-4.png differ diff --git a/images/46-5.png b/images/46-5.png new file mode 100644 index 0000000..09a8420 Binary files /dev/null and b/images/46-5.png differ diff --git a/images/46-6.png b/images/46-6.png new file mode 100644 index 0000000..46211ee Binary files /dev/null and b/images/46-6.png differ diff --git a/images/46-7.png b/images/46-7.png new file mode 100644 index 0000000..97e9251 Binary files /dev/null and b/images/46-7.png differ diff --git a/images/46-8.png b/images/46-8.png new file mode 100644 index 0000000..d8ddfef Binary files /dev/null and b/images/46-8.png differ diff --git a/images/46-9.png b/images/46-9.png new file mode 100644 index 0000000..1d8d062 Binary files /dev/null and b/images/46-9.png differ diff --git a/images/47-0.png b/images/47-0.png new file mode 100644 index 0000000..1bc79e6 Binary files /dev/null and b/images/47-0.png differ diff --git a/images/47-1.png b/images/47-1.png new file mode 100644 index 0000000..f412424 Binary files /dev/null and b/images/47-1.png differ diff --git a/images/47-10.png b/images/47-10.png new file mode 100644 index 0000000..bcf67b8 Binary files /dev/null and b/images/47-10.png differ diff --git a/images/47-11.png b/images/47-11.png new file mode 100644 index 0000000..aa01347 Binary files /dev/null and b/images/47-11.png differ diff --git a/images/47-12.png b/images/47-12.png new file mode 100644 index 0000000..3be3cdf Binary files /dev/null and b/images/47-12.png differ diff --git a/images/47-13.png b/images/47-13.png new file mode 100644 index 0000000..e6292fa Binary files /dev/null and b/images/47-13.png differ diff --git a/images/47-14.png b/images/47-14.png new file mode 100644 index 0000000..44241d0 Binary files /dev/null and b/images/47-14.png differ diff --git a/images/47-15.png b/images/47-15.png new file mode 100644 index 0000000..2660788 Binary files /dev/null and b/images/47-15.png differ diff --git a/images/47-16.png b/images/47-16.png new file mode 100644 index 0000000..7b9c5bc Binary files /dev/null and b/images/47-16.png differ diff --git a/images/47-17.png b/images/47-17.png new file mode 100644 index 0000000..8f62211 Binary files /dev/null and b/images/47-17.png differ diff --git a/images/47-18.png b/images/47-18.png new file mode 100644 index 0000000..b3f8e2f Binary files /dev/null and b/images/47-18.png differ diff --git a/images/47-19.png b/images/47-19.png new file mode 100644 index 0000000..a8dc5d4 Binary files /dev/null and b/images/47-19.png differ diff --git a/images/47-2.png b/images/47-2.png new file mode 100644 index 0000000..9b344d8 Binary files /dev/null and b/images/47-2.png differ diff --git a/images/47-20.png b/images/47-20.png new file mode 100644 index 0000000..d85fac4 Binary files /dev/null and b/images/47-20.png differ diff --git a/images/47-21.png b/images/47-21.png new file mode 100644 index 0000000..9428ad6 Binary files /dev/null and b/images/47-21.png differ diff --git a/images/47-22.png b/images/47-22.png new file mode 100644 index 0000000..314c714 Binary files /dev/null and b/images/47-22.png differ diff --git a/images/47-23.png b/images/47-23.png new file mode 100644 index 0000000..80c8d5e Binary files /dev/null and b/images/47-23.png differ diff --git a/images/47-24.png b/images/47-24.png new file mode 100644 index 0000000..02b567b Binary files /dev/null and b/images/47-24.png differ diff --git a/images/47-25.png b/images/47-25.png new file mode 100644 index 0000000..6f79e10 Binary files /dev/null and b/images/47-25.png differ diff --git a/images/47-26.png b/images/47-26.png new file mode 100644 index 0000000..a102b4e Binary files /dev/null and b/images/47-26.png differ diff --git a/images/47-27.png b/images/47-27.png new file mode 100644 index 0000000..f5ce1b8 Binary files /dev/null and b/images/47-27.png differ diff --git a/images/47-28.png b/images/47-28.png new file mode 100644 index 0000000..87b0cbb Binary files /dev/null and b/images/47-28.png differ diff --git a/images/47-29.png b/images/47-29.png new file mode 100644 index 0000000..16a4df0 Binary files /dev/null and b/images/47-29.png differ diff --git a/images/47-3.png b/images/47-3.png new file mode 100644 index 0000000..9c60da7 Binary files /dev/null and b/images/47-3.png differ diff --git a/images/47-30.png b/images/47-30.png new file mode 100644 index 0000000..06056b9 Binary files /dev/null and b/images/47-30.png differ diff --git a/images/47-31.png b/images/47-31.png new file mode 100644 index 0000000..a4da4fa Binary files /dev/null and b/images/47-31.png differ diff --git a/images/47-32.png b/images/47-32.png new file mode 100644 index 0000000..6efcbb6 Binary files /dev/null and b/images/47-32.png differ diff --git a/images/47-33.png b/images/47-33.png new file mode 100644 index 0000000..0646656 Binary files /dev/null and b/images/47-33.png differ diff --git a/images/47-34.png b/images/47-34.png new file mode 100644 index 0000000..883b25e Binary files /dev/null and b/images/47-34.png differ diff --git a/images/47-35.png b/images/47-35.png new file mode 100644 index 0000000..e2c06e5 Binary files /dev/null and b/images/47-35.png differ diff --git a/images/47-36.png b/images/47-36.png new file mode 100644 index 0000000..d0056b9 Binary files /dev/null and b/images/47-36.png differ diff --git a/images/47-37.png b/images/47-37.png new file mode 100644 index 0000000..4f59192 Binary files /dev/null and b/images/47-37.png differ diff --git a/images/47-38.png b/images/47-38.png new file mode 100644 index 0000000..64f1ea5 Binary files /dev/null and b/images/47-38.png differ diff --git a/images/47-39.png b/images/47-39.png new file mode 100644 index 0000000..bd68ad7 Binary files /dev/null and b/images/47-39.png differ diff --git a/images/47-4.png b/images/47-4.png new file mode 100644 index 0000000..54f2ffe Binary files /dev/null and b/images/47-4.png differ diff --git a/images/47-40.png b/images/47-40.png new file mode 100644 index 0000000..060a8b4 Binary files /dev/null and b/images/47-40.png differ diff --git a/images/47-41.png b/images/47-41.png new file mode 100644 index 0000000..d63b056 Binary files /dev/null and b/images/47-41.png differ diff --git a/images/47-42.png b/images/47-42.png new file mode 100644 index 0000000..d67b7b7 Binary files /dev/null and b/images/47-42.png differ diff --git a/images/47-43.png b/images/47-43.png new file mode 100644 index 0000000..9b25dc3 Binary files /dev/null and b/images/47-43.png differ diff --git a/images/47-44.png b/images/47-44.png new file mode 100644 index 0000000..dd601f4 Binary files /dev/null and b/images/47-44.png differ diff --git a/images/47-45.png b/images/47-45.png new file mode 100644 index 0000000..32dcb2c Binary files /dev/null and b/images/47-45.png differ diff --git a/images/47-46.png b/images/47-46.png new file mode 100644 index 0000000..515cd11 Binary files /dev/null and b/images/47-46.png differ diff --git a/images/47-47.png b/images/47-47.png new file mode 100644 index 0000000..3d844bb Binary files /dev/null and b/images/47-47.png differ diff --git a/images/47-48.png b/images/47-48.png new file mode 100644 index 0000000..73d2a30 Binary files /dev/null and b/images/47-48.png differ diff --git a/images/47-49.png b/images/47-49.png new file mode 100644 index 0000000..920253d Binary files /dev/null and b/images/47-49.png differ diff --git a/images/47-5.png b/images/47-5.png new file mode 100644 index 0000000..5498f99 Binary files /dev/null and b/images/47-5.png differ diff --git a/images/47-50.png b/images/47-50.png new file mode 100644 index 0000000..6ab4ea8 Binary files /dev/null and b/images/47-50.png differ diff --git a/images/47-51.png b/images/47-51.png new file mode 100644 index 0000000..bff057f Binary files /dev/null and b/images/47-51.png differ diff --git a/images/47-52.png b/images/47-52.png new file mode 100644 index 0000000..b677822 Binary files /dev/null and b/images/47-52.png differ diff --git a/images/47-53.png b/images/47-53.png new file mode 100644 index 0000000..62563db Binary files /dev/null and b/images/47-53.png differ diff --git a/images/47-54.png b/images/47-54.png new file mode 100644 index 0000000..d974a37 Binary files /dev/null and b/images/47-54.png differ diff --git a/images/47-55.png b/images/47-55.png new file mode 100644 index 0000000..2a42bf9 Binary files /dev/null and b/images/47-55.png differ diff --git a/images/47-56.png b/images/47-56.png new file mode 100644 index 0000000..f020700 Binary files /dev/null and b/images/47-56.png differ diff --git a/images/47-57.png b/images/47-57.png new file mode 100644 index 0000000..89bb5f2 Binary files /dev/null and b/images/47-57.png differ diff --git a/images/47-58.png b/images/47-58.png new file mode 100644 index 0000000..987973f Binary files /dev/null and b/images/47-58.png differ diff --git a/images/47-59.png b/images/47-59.png new file mode 100644 index 0000000..281d718 Binary files /dev/null and b/images/47-59.png differ diff --git a/images/47-6.png b/images/47-6.png new file mode 100644 index 0000000..42accf1 Binary files /dev/null and b/images/47-6.png differ diff --git a/images/47-60.png b/images/47-60.png new file mode 100644 index 0000000..e70d9c0 Binary files /dev/null and b/images/47-60.png differ diff --git a/images/47-61.png b/images/47-61.png new file mode 100644 index 0000000..242865d Binary files /dev/null and b/images/47-61.png differ diff --git a/images/47-62.png b/images/47-62.png new file mode 100644 index 0000000..2513def Binary files /dev/null and b/images/47-62.png differ diff --git a/images/47-63.png b/images/47-63.png new file mode 100644 index 0000000..2856682 Binary files /dev/null and b/images/47-63.png differ diff --git a/images/47-64.png b/images/47-64.png new file mode 100644 index 0000000..c2bbf24 Binary files /dev/null and b/images/47-64.png differ diff --git a/images/47-7.png b/images/47-7.png new file mode 100644 index 0000000..d7c86c3 Binary files /dev/null and b/images/47-7.png differ diff --git a/images/47-8.png b/images/47-8.png new file mode 100644 index 0000000..9662188 Binary files /dev/null and b/images/47-8.png differ diff --git a/images/47-9.png b/images/47-9.png new file mode 100644 index 0000000..11b8744 Binary files /dev/null and b/images/47-9.png differ diff --git a/images/48-0.png b/images/48-0.png new file mode 100644 index 0000000..43498ec Binary files /dev/null and b/images/48-0.png differ diff --git a/images/48-1.png b/images/48-1.png new file mode 100644 index 0000000..0302f7a Binary files /dev/null and b/images/48-1.png differ diff --git a/images/48-10.png b/images/48-10.png new file mode 100644 index 0000000..1ea5ea9 Binary files /dev/null and b/images/48-10.png differ diff --git a/images/48-11.png b/images/48-11.png new file mode 100644 index 0000000..6e9d5a7 Binary files /dev/null and b/images/48-11.png differ diff --git a/images/48-12.png b/images/48-12.png new file mode 100644 index 0000000..23aad03 Binary files /dev/null and b/images/48-12.png differ diff --git a/images/48-13.png b/images/48-13.png new file mode 100644 index 0000000..041038a Binary files /dev/null and b/images/48-13.png differ diff --git a/images/48-14.png b/images/48-14.png new file mode 100644 index 0000000..7ddc47e Binary files /dev/null and b/images/48-14.png differ diff --git a/images/48-15.png b/images/48-15.png new file mode 100644 index 0000000..20bc188 Binary files /dev/null and b/images/48-15.png differ diff --git a/images/48-16.png b/images/48-16.png new file mode 100644 index 0000000..090b47f Binary files /dev/null and b/images/48-16.png differ diff --git a/images/48-17.png b/images/48-17.png new file mode 100644 index 0000000..9b7fd6a Binary files /dev/null and b/images/48-17.png differ diff --git a/images/48-18.png b/images/48-18.png new file mode 100644 index 0000000..4d0d174 Binary files /dev/null and b/images/48-18.png differ diff --git a/images/48-19.png b/images/48-19.png new file mode 100644 index 0000000..a0d96cb Binary files /dev/null and b/images/48-19.png differ diff --git a/images/48-2.png b/images/48-2.png new file mode 100644 index 0000000..679004e Binary files /dev/null and b/images/48-2.png differ diff --git a/images/48-20.png b/images/48-20.png new file mode 100644 index 0000000..7e2b54b Binary files /dev/null and b/images/48-20.png differ diff --git a/images/48-21.png b/images/48-21.png new file mode 100644 index 0000000..7f620ef Binary files /dev/null and b/images/48-21.png differ diff --git a/images/48-22.png b/images/48-22.png new file mode 100644 index 0000000..63a362b Binary files /dev/null and b/images/48-22.png differ diff --git a/images/48-23.png b/images/48-23.png new file mode 100644 index 0000000..5e22372 Binary files /dev/null and b/images/48-23.png differ diff --git a/images/48-24.png b/images/48-24.png new file mode 100644 index 0000000..bb6fb9e Binary files /dev/null and b/images/48-24.png differ diff --git a/images/48-25.png b/images/48-25.png new file mode 100644 index 0000000..b79b508 Binary files /dev/null and b/images/48-25.png differ diff --git a/images/48-26.png b/images/48-26.png new file mode 100644 index 0000000..b72b69e Binary files /dev/null and b/images/48-26.png differ diff --git a/images/48-27.png b/images/48-27.png new file mode 100644 index 0000000..574ee38 Binary files /dev/null and b/images/48-27.png differ diff --git a/images/48-28.png b/images/48-28.png new file mode 100644 index 0000000..ba7ffa3 Binary files /dev/null and b/images/48-28.png differ diff --git a/images/48-29.png b/images/48-29.png new file mode 100644 index 0000000..ccf69e8 Binary files /dev/null and b/images/48-29.png differ diff --git a/images/48-3.png b/images/48-3.png new file mode 100644 index 0000000..45c2c35 Binary files /dev/null and b/images/48-3.png differ diff --git a/images/48-30.png b/images/48-30.png new file mode 100644 index 0000000..4165787 Binary files /dev/null and b/images/48-30.png differ diff --git a/images/48-31.png b/images/48-31.png new file mode 100644 index 0000000..b9da87d Binary files /dev/null and b/images/48-31.png differ diff --git a/images/48-32.png b/images/48-32.png new file mode 100644 index 0000000..9e9f0e1 Binary files /dev/null and b/images/48-32.png differ diff --git a/images/48-33.png b/images/48-33.png new file mode 100644 index 0000000..2a9df7b Binary files /dev/null and b/images/48-33.png differ diff --git a/images/48-34.png b/images/48-34.png new file mode 100644 index 0000000..7d9ee25 Binary files /dev/null and b/images/48-34.png differ diff --git a/images/48-35.png b/images/48-35.png new file mode 100644 index 0000000..035712e Binary files /dev/null and b/images/48-35.png differ diff --git a/images/48-36.png b/images/48-36.png new file mode 100644 index 0000000..a70cd45 Binary files /dev/null and b/images/48-36.png differ diff --git a/images/48-37.png b/images/48-37.png new file mode 100644 index 0000000..09f46da Binary files /dev/null and b/images/48-37.png differ diff --git a/images/48-38.png b/images/48-38.png new file mode 100644 index 0000000..b27dbf7 Binary files /dev/null and b/images/48-38.png differ diff --git a/images/48-39.png b/images/48-39.png new file mode 100644 index 0000000..e61b193 Binary files /dev/null and b/images/48-39.png differ diff --git a/images/48-4.png b/images/48-4.png new file mode 100644 index 0000000..1642f15 Binary files /dev/null and b/images/48-4.png differ diff --git a/images/48-40.png b/images/48-40.png new file mode 100644 index 0000000..e52cee1 Binary files /dev/null and b/images/48-40.png differ diff --git a/images/48-41.png b/images/48-41.png new file mode 100644 index 0000000..17e9f9b Binary files /dev/null and b/images/48-41.png differ diff --git a/images/48-42.png b/images/48-42.png new file mode 100644 index 0000000..cced9be Binary files /dev/null and b/images/48-42.png differ diff --git a/images/48-43.png b/images/48-43.png new file mode 100644 index 0000000..6abca31 Binary files /dev/null and b/images/48-43.png differ diff --git a/images/48-44.png b/images/48-44.png new file mode 100644 index 0000000..7896eb1 Binary files /dev/null and b/images/48-44.png differ diff --git a/images/48-45.png b/images/48-45.png new file mode 100644 index 0000000..f3436a9 Binary files /dev/null and b/images/48-45.png differ diff --git a/images/48-46.png b/images/48-46.png new file mode 100644 index 0000000..50141c1 Binary files /dev/null and b/images/48-46.png differ diff --git a/images/48-47.png b/images/48-47.png new file mode 100644 index 0000000..df21e35 Binary files /dev/null and b/images/48-47.png differ diff --git a/images/48-48.png b/images/48-48.png new file mode 100644 index 0000000..50b07e1 Binary files /dev/null and b/images/48-48.png differ diff --git a/images/48-49.png b/images/48-49.png new file mode 100644 index 0000000..32e62b5 Binary files /dev/null and b/images/48-49.png differ diff --git a/images/48-5.png b/images/48-5.png new file mode 100644 index 0000000..cb7c2b9 Binary files /dev/null and b/images/48-5.png differ diff --git a/images/48-6.png b/images/48-6.png new file mode 100644 index 0000000..a32a73a Binary files /dev/null and b/images/48-6.png differ diff --git a/images/48-7.png b/images/48-7.png new file mode 100644 index 0000000..2188c97 Binary files /dev/null and b/images/48-7.png differ diff --git a/images/48-8.png b/images/48-8.png new file mode 100644 index 0000000..3cc422b Binary files /dev/null and b/images/48-8.png differ diff --git a/images/48-9.png b/images/48-9.png new file mode 100644 index 0000000..9adf351 Binary files /dev/null and b/images/48-9.png differ diff --git a/images/49-0.png b/images/49-0.png new file mode 100644 index 0000000..f7db170 Binary files /dev/null and b/images/49-0.png differ diff --git a/images/49-1.png b/images/49-1.png new file mode 100644 index 0000000..df5a356 Binary files /dev/null and b/images/49-1.png differ diff --git a/images/49-10.png b/images/49-10.png new file mode 100644 index 0000000..02321d8 Binary files /dev/null and b/images/49-10.png differ diff --git a/images/49-11.png b/images/49-11.png new file mode 100644 index 0000000..2380245 Binary files /dev/null and b/images/49-11.png differ diff --git a/images/49-12.png b/images/49-12.png new file mode 100644 index 0000000..13062ce Binary files /dev/null and b/images/49-12.png differ diff --git a/images/49-13.png b/images/49-13.png new file mode 100644 index 0000000..4f111e6 Binary files /dev/null and b/images/49-13.png differ diff --git a/images/49-14.png b/images/49-14.png new file mode 100644 index 0000000..0fa643f Binary files /dev/null and b/images/49-14.png differ diff --git a/images/49-15.png b/images/49-15.png new file mode 100644 index 0000000..3d381a2 Binary files /dev/null and b/images/49-15.png differ diff --git a/images/49-16.png b/images/49-16.png new file mode 100644 index 0000000..3a0b923 Binary files /dev/null and b/images/49-16.png differ diff --git a/images/49-17.png b/images/49-17.png new file mode 100644 index 0000000..305826b Binary files /dev/null and b/images/49-17.png differ diff --git a/images/49-18.png b/images/49-18.png new file mode 100644 index 0000000..8b71726 Binary files /dev/null and b/images/49-18.png differ diff --git a/images/49-19.png b/images/49-19.png new file mode 100644 index 0000000..4e4bdab Binary files /dev/null and b/images/49-19.png differ diff --git a/images/49-2.png b/images/49-2.png new file mode 100644 index 0000000..d0435db Binary files /dev/null and b/images/49-2.png differ diff --git a/images/49-20.png b/images/49-20.png new file mode 100644 index 0000000..4fd26e2 Binary files /dev/null and b/images/49-20.png differ diff --git a/images/49-21.png b/images/49-21.png new file mode 100644 index 0000000..52015b3 Binary files /dev/null and b/images/49-21.png differ diff --git a/images/49-22.png b/images/49-22.png new file mode 100644 index 0000000..ca85879 Binary files /dev/null and b/images/49-22.png differ diff --git a/images/49-23.png b/images/49-23.png new file mode 100644 index 0000000..365ff3f Binary files /dev/null and b/images/49-23.png differ diff --git a/images/49-24.png b/images/49-24.png new file mode 100644 index 0000000..31021b1 Binary files /dev/null and b/images/49-24.png differ diff --git a/images/49-25.png b/images/49-25.png new file mode 100644 index 0000000..92b147f Binary files /dev/null and b/images/49-25.png differ diff --git a/images/49-26.png b/images/49-26.png new file mode 100644 index 0000000..d8f5c42 Binary files /dev/null and b/images/49-26.png differ diff --git a/images/49-27.png b/images/49-27.png new file mode 100644 index 0000000..8b9c8e4 Binary files /dev/null and b/images/49-27.png differ diff --git a/images/49-28.png b/images/49-28.png new file mode 100644 index 0000000..501e7a9 Binary files /dev/null and b/images/49-28.png differ diff --git a/images/49-29.png b/images/49-29.png new file mode 100644 index 0000000..0f69040 Binary files /dev/null and b/images/49-29.png differ diff --git a/images/49-3.png b/images/49-3.png new file mode 100644 index 0000000..a1c8b72 Binary files /dev/null and b/images/49-3.png differ diff --git a/images/49-30.png b/images/49-30.png new file mode 100644 index 0000000..977ff05 Binary files /dev/null and b/images/49-30.png differ diff --git a/images/49-31.png b/images/49-31.png new file mode 100644 index 0000000..db9e571 Binary files /dev/null and b/images/49-31.png differ diff --git a/images/49-32.png b/images/49-32.png new file mode 100644 index 0000000..796a9d0 Binary files /dev/null and b/images/49-32.png differ diff --git a/images/49-33.png b/images/49-33.png new file mode 100644 index 0000000..5fbd04f Binary files /dev/null and b/images/49-33.png differ diff --git a/images/49-34.png b/images/49-34.png new file mode 100644 index 0000000..82faa2e Binary files /dev/null and b/images/49-34.png differ diff --git a/images/49-35.png b/images/49-35.png new file mode 100644 index 0000000..03155b8 Binary files /dev/null and b/images/49-35.png differ diff --git a/images/49-36.png b/images/49-36.png new file mode 100644 index 0000000..082f93e Binary files /dev/null and b/images/49-36.png differ diff --git a/images/49-37.png b/images/49-37.png new file mode 100644 index 0000000..8db9090 Binary files /dev/null and b/images/49-37.png differ diff --git a/images/49-38.png b/images/49-38.png new file mode 100644 index 0000000..cc88380 Binary files /dev/null and b/images/49-38.png differ diff --git a/images/49-39.png b/images/49-39.png new file mode 100644 index 0000000..c66aba3 Binary files /dev/null and b/images/49-39.png differ diff --git a/images/49-4.png b/images/49-4.png new file mode 100644 index 0000000..a7d0112 Binary files /dev/null and b/images/49-4.png differ diff --git a/images/49-40.png b/images/49-40.png new file mode 100644 index 0000000..03bd91a Binary files /dev/null and b/images/49-40.png differ diff --git a/images/49-41.png b/images/49-41.png new file mode 100644 index 0000000..6449e89 Binary files /dev/null and b/images/49-41.png differ diff --git a/images/49-42.png b/images/49-42.png new file mode 100644 index 0000000..e478514 Binary files /dev/null and b/images/49-42.png differ diff --git a/images/49-43.png b/images/49-43.png new file mode 100644 index 0000000..75e947c Binary files /dev/null and b/images/49-43.png differ diff --git a/images/49-44.png b/images/49-44.png new file mode 100644 index 0000000..7978b09 Binary files /dev/null and b/images/49-44.png differ diff --git a/images/49-45.png b/images/49-45.png new file mode 100644 index 0000000..0801e64 Binary files /dev/null and b/images/49-45.png differ diff --git a/images/49-46.png b/images/49-46.png new file mode 100644 index 0000000..a2b298b Binary files /dev/null and b/images/49-46.png differ diff --git a/images/49-47.png b/images/49-47.png new file mode 100644 index 0000000..a65044e Binary files /dev/null and b/images/49-47.png differ diff --git a/images/49-48.png b/images/49-48.png new file mode 100644 index 0000000..916920e Binary files /dev/null and b/images/49-48.png differ diff --git a/images/49-49.png b/images/49-49.png new file mode 100644 index 0000000..e543e45 Binary files /dev/null and b/images/49-49.png differ diff --git a/images/49-5.png b/images/49-5.png new file mode 100644 index 0000000..82a1cb4 Binary files /dev/null and b/images/49-5.png differ diff --git a/images/49-50.png b/images/49-50.png new file mode 100644 index 0000000..8ad301a Binary files /dev/null and b/images/49-50.png differ diff --git a/images/49-51.png b/images/49-51.png new file mode 100644 index 0000000..6ef2970 Binary files /dev/null and b/images/49-51.png differ diff --git a/images/49-52.png b/images/49-52.png new file mode 100644 index 0000000..d5c24ff Binary files /dev/null and b/images/49-52.png differ diff --git a/images/49-53.png b/images/49-53.png new file mode 100644 index 0000000..a813bd2 Binary files /dev/null and b/images/49-53.png differ diff --git a/images/49-54.png b/images/49-54.png new file mode 100644 index 0000000..c46778d Binary files /dev/null and b/images/49-54.png differ diff --git a/images/49-55.png b/images/49-55.png new file mode 100644 index 0000000..7da715a Binary files /dev/null and b/images/49-55.png differ diff --git a/images/49-56.png b/images/49-56.png new file mode 100644 index 0000000..9a60743 Binary files /dev/null and b/images/49-56.png differ diff --git a/images/49-57.png b/images/49-57.png new file mode 100644 index 0000000..5455c00 Binary files /dev/null and b/images/49-57.png differ diff --git a/images/49-58.png b/images/49-58.png new file mode 100644 index 0000000..8b05784 Binary files /dev/null and b/images/49-58.png differ diff --git a/images/49-59.png b/images/49-59.png new file mode 100644 index 0000000..c9753d0 Binary files /dev/null and b/images/49-59.png differ diff --git a/images/49-6.png b/images/49-6.png new file mode 100644 index 0000000..6fa9cd1 Binary files /dev/null and b/images/49-6.png differ diff --git a/images/49-60.png b/images/49-60.png new file mode 100644 index 0000000..97a5cd1 Binary files /dev/null and b/images/49-60.png differ diff --git a/images/49-61.png b/images/49-61.png new file mode 100644 index 0000000..165f543 Binary files /dev/null and b/images/49-61.png differ diff --git a/images/49-62.png b/images/49-62.png new file mode 100644 index 0000000..406f8a5 Binary files /dev/null and b/images/49-62.png differ diff --git a/images/49-63.png b/images/49-63.png new file mode 100644 index 0000000..24d9143 Binary files /dev/null and b/images/49-63.png differ diff --git a/images/49-64.png b/images/49-64.png new file mode 100644 index 0000000..db8f32b Binary files /dev/null and b/images/49-64.png differ diff --git a/images/49-65.png b/images/49-65.png new file mode 100644 index 0000000..4f15c8c Binary files /dev/null and b/images/49-65.png differ diff --git a/images/49-66.png b/images/49-66.png new file mode 100644 index 0000000..12d9e3b Binary files /dev/null and b/images/49-66.png differ diff --git a/images/49-67.png b/images/49-67.png new file mode 100644 index 0000000..1f915ed Binary files /dev/null and b/images/49-67.png differ diff --git a/images/49-68.png b/images/49-68.png new file mode 100644 index 0000000..b4d03c0 Binary files /dev/null and b/images/49-68.png differ diff --git a/images/49-69.png b/images/49-69.png new file mode 100644 index 0000000..ba8a800 Binary files /dev/null and b/images/49-69.png differ diff --git a/images/49-7.png b/images/49-7.png new file mode 100644 index 0000000..6e40eab Binary files /dev/null and b/images/49-7.png differ diff --git a/images/49-70.png b/images/49-70.png new file mode 100644 index 0000000..aa17a41 Binary files /dev/null and b/images/49-70.png differ diff --git a/images/49-71.png b/images/49-71.png new file mode 100644 index 0000000..05515d3 Binary files /dev/null and b/images/49-71.png differ diff --git a/images/49-72.png b/images/49-72.png new file mode 100644 index 0000000..7af4910 Binary files /dev/null and b/images/49-72.png differ diff --git a/images/49-73.png b/images/49-73.png new file mode 100644 index 0000000..01047b3 Binary files /dev/null and b/images/49-73.png differ diff --git a/images/49-74.png b/images/49-74.png new file mode 100644 index 0000000..e4923da Binary files /dev/null and b/images/49-74.png differ diff --git a/images/49-75.png b/images/49-75.png new file mode 100644 index 0000000..afcd55a Binary files /dev/null and b/images/49-75.png differ diff --git a/images/49-76.png b/images/49-76.png new file mode 100644 index 0000000..d767db2 Binary files /dev/null and b/images/49-76.png differ diff --git a/images/49-77.png b/images/49-77.png new file mode 100644 index 0000000..af32d3e Binary files /dev/null and b/images/49-77.png differ diff --git a/images/49-78.png b/images/49-78.png new file mode 100644 index 0000000..4c74ec4 Binary files /dev/null and b/images/49-78.png differ diff --git a/images/49-79.png b/images/49-79.png new file mode 100644 index 0000000..bbd9d29 Binary files /dev/null and b/images/49-79.png differ diff --git a/images/49-8.png b/images/49-8.png new file mode 100644 index 0000000..b8777f3 Binary files /dev/null and b/images/49-8.png differ diff --git a/images/49-80.png b/images/49-80.png new file mode 100644 index 0000000..1f8c36e Binary files /dev/null and b/images/49-80.png differ diff --git a/images/49-81.png b/images/49-81.png new file mode 100644 index 0000000..f4d2166 Binary files /dev/null and b/images/49-81.png differ diff --git a/images/49-82.png b/images/49-82.png new file mode 100644 index 0000000..be4bc6e Binary files /dev/null and b/images/49-82.png differ diff --git a/images/49-83.png b/images/49-83.png new file mode 100644 index 0000000..852aec6 Binary files /dev/null and b/images/49-83.png differ diff --git a/images/49-84.png b/images/49-84.png new file mode 100644 index 0000000..1104c03 Binary files /dev/null and b/images/49-84.png differ diff --git a/images/49-85.png b/images/49-85.png new file mode 100644 index 0000000..af87dae Binary files /dev/null and b/images/49-85.png differ diff --git a/images/49-86.png b/images/49-86.png new file mode 100644 index 0000000..57b6c7c Binary files /dev/null and b/images/49-86.png differ diff --git a/images/49-87.png b/images/49-87.png new file mode 100644 index 0000000..83352f6 Binary files /dev/null and b/images/49-87.png differ diff --git a/images/49-88.png b/images/49-88.png new file mode 100644 index 0000000..b517924 Binary files /dev/null and b/images/49-88.png differ diff --git a/images/49-89.png b/images/49-89.png new file mode 100644 index 0000000..de5c800 Binary files /dev/null and b/images/49-89.png differ diff --git a/images/49-9.png b/images/49-9.png new file mode 100644 index 0000000..606b421 Binary files /dev/null and b/images/49-9.png differ diff --git a/images/49-90.png b/images/49-90.png new file mode 100644 index 0000000..ed6f333 Binary files /dev/null and b/images/49-90.png differ diff --git a/images/5-0.png b/images/5-0.png new file mode 100644 index 0000000..a336449 Binary files /dev/null and b/images/5-0.png differ diff --git a/images/5-1.png b/images/5-1.png new file mode 100644 index 0000000..70d2d3f Binary files /dev/null and b/images/5-1.png differ diff --git a/images/5-10.png b/images/5-10.png new file mode 100644 index 0000000..70f048d Binary files /dev/null and b/images/5-10.png differ diff --git a/images/5-11.png b/images/5-11.png new file mode 100644 index 0000000..036c1dc Binary files /dev/null and b/images/5-11.png differ diff --git a/images/5-12.png b/images/5-12.png new file mode 100644 index 0000000..382d3ea Binary files /dev/null and b/images/5-12.png differ diff --git a/images/5-13.png b/images/5-13.png new file mode 100644 index 0000000..80994be Binary files /dev/null and b/images/5-13.png differ diff --git a/images/5-14.png b/images/5-14.png new file mode 100644 index 0000000..5031576 Binary files /dev/null and b/images/5-14.png differ diff --git a/images/5-15.png b/images/5-15.png new file mode 100644 index 0000000..a9c1615 Binary files /dev/null and b/images/5-15.png differ diff --git a/images/5-16.png b/images/5-16.png new file mode 100644 index 0000000..69993a0 Binary files /dev/null and b/images/5-16.png differ diff --git a/images/5-17.png b/images/5-17.png new file mode 100644 index 0000000..8d70cb9 Binary files /dev/null and b/images/5-17.png differ diff --git a/images/5-18.png b/images/5-18.png new file mode 100644 index 0000000..307dc43 Binary files /dev/null and b/images/5-18.png differ diff --git a/images/5-19.png b/images/5-19.png new file mode 100644 index 0000000..400f4e6 Binary files /dev/null and b/images/5-19.png differ diff --git a/images/5-2.png b/images/5-2.png new file mode 100644 index 0000000..d11d1ad Binary files /dev/null and b/images/5-2.png differ diff --git a/images/5-20.png b/images/5-20.png new file mode 100644 index 0000000..479d0b7 Binary files /dev/null and b/images/5-20.png differ diff --git a/images/5-21.png b/images/5-21.png new file mode 100644 index 0000000..db54ab0 Binary files /dev/null and b/images/5-21.png differ diff --git a/images/5-22.png b/images/5-22.png new file mode 100644 index 0000000..04ef86b Binary files /dev/null and b/images/5-22.png differ diff --git a/images/5-23.png b/images/5-23.png new file mode 100644 index 0000000..2d581d8 Binary files /dev/null and b/images/5-23.png differ diff --git a/images/5-24.png b/images/5-24.png new file mode 100644 index 0000000..47482c9 Binary files /dev/null and b/images/5-24.png differ diff --git a/images/5-25.png b/images/5-25.png new file mode 100644 index 0000000..cc86c91 Binary files /dev/null and b/images/5-25.png differ diff --git a/images/5-26.png b/images/5-26.png new file mode 100644 index 0000000..7693aae Binary files /dev/null and b/images/5-26.png differ diff --git a/images/5-27.png b/images/5-27.png new file mode 100644 index 0000000..16e9159 Binary files /dev/null and b/images/5-27.png differ diff --git a/images/5-28.png b/images/5-28.png new file mode 100644 index 0000000..4c69778 Binary files /dev/null and b/images/5-28.png differ diff --git a/images/5-29.png b/images/5-29.png new file mode 100644 index 0000000..066d90e Binary files /dev/null and b/images/5-29.png differ diff --git a/images/5-3.png b/images/5-3.png new file mode 100644 index 0000000..228e0fe Binary files /dev/null and b/images/5-3.png differ diff --git a/images/5-4.png b/images/5-4.png new file mode 100644 index 0000000..6f02051 Binary files /dev/null and b/images/5-4.png differ diff --git a/images/5-5.png b/images/5-5.png new file mode 100644 index 0000000..ab79dad Binary files /dev/null and b/images/5-5.png differ diff --git a/images/5-6.png b/images/5-6.png new file mode 100644 index 0000000..7d96a53 Binary files /dev/null and b/images/5-6.png differ diff --git a/images/5-7.png b/images/5-7.png new file mode 100644 index 0000000..39577cf Binary files /dev/null and b/images/5-7.png differ diff --git a/images/5-8.png b/images/5-8.png new file mode 100644 index 0000000..246c29e Binary files /dev/null and b/images/5-8.png differ diff --git a/images/5-9.png b/images/5-9.png new file mode 100644 index 0000000..d998bfd Binary files /dev/null and b/images/5-9.png differ diff --git a/images/50-0.png b/images/50-0.png new file mode 100644 index 0000000..3375086 Binary files /dev/null and b/images/50-0.png differ diff --git a/images/50-1.png b/images/50-1.png new file mode 100644 index 0000000..3342672 Binary files /dev/null and b/images/50-1.png differ diff --git a/images/50-10.png b/images/50-10.png new file mode 100644 index 0000000..da9a587 Binary files /dev/null and b/images/50-10.png differ diff --git a/images/50-11.png b/images/50-11.png new file mode 100644 index 0000000..60ca165 Binary files /dev/null and b/images/50-11.png differ diff --git a/images/50-12.png b/images/50-12.png new file mode 100644 index 0000000..228383b Binary files /dev/null and b/images/50-12.png differ diff --git a/images/50-13.png b/images/50-13.png new file mode 100644 index 0000000..ccae16f Binary files /dev/null and b/images/50-13.png differ diff --git a/images/50-14.png b/images/50-14.png new file mode 100644 index 0000000..d343045 Binary files /dev/null and b/images/50-14.png differ diff --git a/images/50-2.png b/images/50-2.png new file mode 100644 index 0000000..860730b Binary files /dev/null and b/images/50-2.png differ diff --git a/images/50-3.png b/images/50-3.png new file mode 100644 index 0000000..d414852 Binary files /dev/null and b/images/50-3.png differ diff --git a/images/50-4.png b/images/50-4.png new file mode 100644 index 0000000..aadf27e Binary files /dev/null and b/images/50-4.png differ diff --git a/images/50-5.png b/images/50-5.png new file mode 100644 index 0000000..44d00d0 Binary files /dev/null and b/images/50-5.png differ diff --git a/images/50-6.png b/images/50-6.png new file mode 100644 index 0000000..ac8b316 Binary files /dev/null and b/images/50-6.png differ diff --git a/images/50-7.png b/images/50-7.png new file mode 100644 index 0000000..369bdad Binary files /dev/null and b/images/50-7.png differ diff --git a/images/50-8.png b/images/50-8.png new file mode 100644 index 0000000..4d0090d Binary files /dev/null and b/images/50-8.png differ diff --git a/images/50-9.png b/images/50-9.png new file mode 100644 index 0000000..78529c7 Binary files /dev/null and b/images/50-9.png differ diff --git a/images/51-0.png b/images/51-0.png new file mode 100644 index 0000000..6b72030 Binary files /dev/null and b/images/51-0.png differ diff --git a/images/51-1.png b/images/51-1.png new file mode 100644 index 0000000..463d407 Binary files /dev/null and b/images/51-1.png differ diff --git a/images/51-10.png b/images/51-10.png new file mode 100644 index 0000000..1b245c0 Binary files /dev/null and b/images/51-10.png differ diff --git a/images/51-11.png b/images/51-11.png new file mode 100644 index 0000000..d2b0ee8 Binary files /dev/null and b/images/51-11.png differ diff --git a/images/51-12.png b/images/51-12.png new file mode 100644 index 0000000..d790562 Binary files /dev/null and b/images/51-12.png differ diff --git a/images/51-13.png b/images/51-13.png new file mode 100644 index 0000000..ff95cd9 Binary files /dev/null and b/images/51-13.png differ diff --git a/images/51-14.png b/images/51-14.png new file mode 100644 index 0000000..ca8265b Binary files /dev/null and b/images/51-14.png differ diff --git a/images/51-15.png b/images/51-15.png new file mode 100644 index 0000000..54a39f8 Binary files /dev/null and b/images/51-15.png differ diff --git a/images/51-16.png b/images/51-16.png new file mode 100644 index 0000000..87a8193 Binary files /dev/null and b/images/51-16.png differ diff --git a/images/51-17.png b/images/51-17.png new file mode 100644 index 0000000..2dbeb98 Binary files /dev/null and b/images/51-17.png differ diff --git a/images/51-18.png b/images/51-18.png new file mode 100644 index 0000000..0c7e71b Binary files /dev/null and b/images/51-18.png differ diff --git a/images/51-19.png b/images/51-19.png new file mode 100644 index 0000000..269c2fa Binary files /dev/null and b/images/51-19.png differ diff --git a/images/51-2.png b/images/51-2.png new file mode 100644 index 0000000..178619c Binary files /dev/null and b/images/51-2.png differ diff --git a/images/51-20.png b/images/51-20.png new file mode 100644 index 0000000..2f265d4 Binary files /dev/null and b/images/51-20.png differ diff --git a/images/51-21.png b/images/51-21.png new file mode 100644 index 0000000..eeffadc Binary files /dev/null and b/images/51-21.png differ diff --git a/images/51-22.png b/images/51-22.png new file mode 100644 index 0000000..a942ee2 Binary files /dev/null and b/images/51-22.png differ diff --git a/images/51-23.png b/images/51-23.png new file mode 100644 index 0000000..f88e6df Binary files /dev/null and b/images/51-23.png differ diff --git a/images/51-24.png b/images/51-24.png new file mode 100644 index 0000000..06f094e Binary files /dev/null and b/images/51-24.png differ diff --git a/images/51-25.png b/images/51-25.png new file mode 100644 index 0000000..43b38a8 Binary files /dev/null and b/images/51-25.png differ diff --git a/images/51-26.png b/images/51-26.png new file mode 100644 index 0000000..befe034 Binary files /dev/null and b/images/51-26.png differ diff --git a/images/51-27.png b/images/51-27.png new file mode 100644 index 0000000..891a148 Binary files /dev/null and b/images/51-27.png differ diff --git a/images/51-28.png b/images/51-28.png new file mode 100644 index 0000000..0bb500f Binary files /dev/null and b/images/51-28.png differ diff --git a/images/51-29.png b/images/51-29.png new file mode 100644 index 0000000..ae75a42 Binary files /dev/null and b/images/51-29.png differ diff --git a/images/51-3.png b/images/51-3.png new file mode 100644 index 0000000..6f061c4 Binary files /dev/null and b/images/51-3.png differ diff --git a/images/51-30.png b/images/51-30.png new file mode 100644 index 0000000..08f9445 Binary files /dev/null and b/images/51-30.png differ diff --git a/images/51-31.png b/images/51-31.png new file mode 100644 index 0000000..148a854 Binary files /dev/null and b/images/51-31.png differ diff --git a/images/51-32.png b/images/51-32.png new file mode 100644 index 0000000..ebf86e1 Binary files /dev/null and b/images/51-32.png differ diff --git a/images/51-33.png b/images/51-33.png new file mode 100644 index 0000000..ffb529d Binary files /dev/null and b/images/51-33.png differ diff --git a/images/51-4.png b/images/51-4.png new file mode 100644 index 0000000..2bbfdc0 Binary files /dev/null and b/images/51-4.png differ diff --git a/images/51-5.png b/images/51-5.png new file mode 100644 index 0000000..6b8197d Binary files /dev/null and b/images/51-5.png differ diff --git a/images/51-6.png b/images/51-6.png new file mode 100644 index 0000000..fbdd7d6 Binary files /dev/null and b/images/51-6.png differ diff --git a/images/51-7.png b/images/51-7.png new file mode 100644 index 0000000..ce0fead Binary files /dev/null and b/images/51-7.png differ diff --git a/images/51-8.png b/images/51-8.png new file mode 100644 index 0000000..40ca548 Binary files /dev/null and b/images/51-8.png differ diff --git a/images/51-9.png b/images/51-9.png new file mode 100644 index 0000000..934979d Binary files /dev/null and b/images/51-9.png differ diff --git a/images/52-0.png b/images/52-0.png new file mode 100644 index 0000000..ed3185f Binary files /dev/null and b/images/52-0.png differ diff --git a/images/52-1.png b/images/52-1.png new file mode 100644 index 0000000..8bab036 Binary files /dev/null and b/images/52-1.png differ diff --git a/images/52-10.png b/images/52-10.png new file mode 100644 index 0000000..545e935 Binary files /dev/null and b/images/52-10.png differ diff --git a/images/52-100.png b/images/52-100.png new file mode 100644 index 0000000..ce36bac Binary files /dev/null and b/images/52-100.png differ diff --git a/images/52-101.png b/images/52-101.png new file mode 100644 index 0000000..81857ed Binary files /dev/null and b/images/52-101.png differ diff --git a/images/52-102.png b/images/52-102.png new file mode 100644 index 0000000..804b654 Binary files /dev/null and b/images/52-102.png differ diff --git a/images/52-103.png b/images/52-103.png new file mode 100644 index 0000000..d11a902 Binary files /dev/null and b/images/52-103.png differ diff --git a/images/52-104.png b/images/52-104.png new file mode 100644 index 0000000..c61d24e Binary files /dev/null and b/images/52-104.png differ diff --git a/images/52-105.png b/images/52-105.png new file mode 100644 index 0000000..090cd3c Binary files /dev/null and b/images/52-105.png differ diff --git a/images/52-106.png b/images/52-106.png new file mode 100644 index 0000000..c261dc7 Binary files /dev/null and b/images/52-106.png differ diff --git a/images/52-107.png b/images/52-107.png new file mode 100644 index 0000000..04e548a Binary files /dev/null and b/images/52-107.png differ diff --git a/images/52-108.png b/images/52-108.png new file mode 100644 index 0000000..4d02b93 Binary files /dev/null and b/images/52-108.png differ diff --git a/images/52-11.png b/images/52-11.png new file mode 100644 index 0000000..96c4ed2 Binary files /dev/null and b/images/52-11.png differ diff --git a/images/52-12.png b/images/52-12.png new file mode 100644 index 0000000..3dec2c3 Binary files /dev/null and b/images/52-12.png differ diff --git a/images/52-13.png b/images/52-13.png new file mode 100644 index 0000000..e45eca8 Binary files /dev/null and b/images/52-13.png differ diff --git a/images/52-14.png b/images/52-14.png new file mode 100644 index 0000000..a677e0d Binary files /dev/null and b/images/52-14.png differ diff --git a/images/52-15.png b/images/52-15.png new file mode 100644 index 0000000..5a8e986 Binary files /dev/null and b/images/52-15.png differ diff --git a/images/52-16.png b/images/52-16.png new file mode 100644 index 0000000..8fd397f Binary files /dev/null and b/images/52-16.png differ diff --git a/images/52-17.png b/images/52-17.png new file mode 100644 index 0000000..fa498c4 Binary files /dev/null and b/images/52-17.png differ diff --git a/images/52-18.png b/images/52-18.png new file mode 100644 index 0000000..a9b3580 Binary files /dev/null and b/images/52-18.png differ diff --git a/images/52-19.png b/images/52-19.png new file mode 100644 index 0000000..4da03b1 Binary files /dev/null and b/images/52-19.png differ diff --git a/images/52-2.png b/images/52-2.png new file mode 100644 index 0000000..bf87a55 Binary files /dev/null and b/images/52-2.png differ diff --git a/images/52-20.png b/images/52-20.png new file mode 100644 index 0000000..b88abbf Binary files /dev/null and b/images/52-20.png differ diff --git a/images/52-21.png b/images/52-21.png new file mode 100644 index 0000000..173f4f3 Binary files /dev/null and b/images/52-21.png differ diff --git a/images/52-22.png b/images/52-22.png new file mode 100644 index 0000000..30f8673 Binary files /dev/null and b/images/52-22.png differ diff --git a/images/52-23.png b/images/52-23.png new file mode 100644 index 0000000..6c30a2a Binary files /dev/null and b/images/52-23.png differ diff --git a/images/52-24.png b/images/52-24.png new file mode 100644 index 0000000..3848e59 Binary files /dev/null and b/images/52-24.png differ diff --git a/images/52-25.png b/images/52-25.png new file mode 100644 index 0000000..3065918 Binary files /dev/null and b/images/52-25.png differ diff --git a/images/52-26.png b/images/52-26.png new file mode 100644 index 0000000..c4dc5a4 Binary files /dev/null and b/images/52-26.png differ diff --git a/images/52-27.png b/images/52-27.png new file mode 100644 index 0000000..99671e1 Binary files /dev/null and b/images/52-27.png differ diff --git a/images/52-28.png b/images/52-28.png new file mode 100644 index 0000000..691e368 Binary files /dev/null and b/images/52-28.png differ diff --git a/images/52-29.png b/images/52-29.png new file mode 100644 index 0000000..407126e Binary files /dev/null and b/images/52-29.png differ diff --git a/images/52-3.png b/images/52-3.png new file mode 100644 index 0000000..4bfc3d0 Binary files /dev/null and b/images/52-3.png differ diff --git a/images/52-30.png b/images/52-30.png new file mode 100644 index 0000000..bbc3199 Binary files /dev/null and b/images/52-30.png differ diff --git a/images/52-31.png b/images/52-31.png new file mode 100644 index 0000000..d196417 Binary files /dev/null and b/images/52-31.png differ diff --git a/images/52-32.png b/images/52-32.png new file mode 100644 index 0000000..65173c2 Binary files /dev/null and b/images/52-32.png differ diff --git a/images/52-33.png b/images/52-33.png new file mode 100644 index 0000000..052672e Binary files /dev/null and b/images/52-33.png differ diff --git a/images/52-34.png b/images/52-34.png new file mode 100644 index 0000000..fc1a83c Binary files /dev/null and b/images/52-34.png differ diff --git a/images/52-35.png b/images/52-35.png new file mode 100644 index 0000000..89c8068 Binary files /dev/null and b/images/52-35.png differ diff --git a/images/52-36.png b/images/52-36.png new file mode 100644 index 0000000..a04d951 Binary files /dev/null and b/images/52-36.png differ diff --git a/images/52-37.png b/images/52-37.png new file mode 100644 index 0000000..191d49f Binary files /dev/null and b/images/52-37.png differ diff --git a/images/52-38.png b/images/52-38.png new file mode 100644 index 0000000..d6e1fe5 Binary files /dev/null and b/images/52-38.png differ diff --git a/images/52-39.png b/images/52-39.png new file mode 100644 index 0000000..8887bcb Binary files /dev/null and b/images/52-39.png differ diff --git a/images/52-4.png b/images/52-4.png new file mode 100644 index 0000000..bd8bc23 Binary files /dev/null and b/images/52-4.png differ diff --git a/images/52-40.png b/images/52-40.png new file mode 100644 index 0000000..6f3b3fd Binary files /dev/null and b/images/52-40.png differ diff --git a/images/52-41.png b/images/52-41.png new file mode 100644 index 0000000..9acd379 Binary files /dev/null and b/images/52-41.png differ diff --git a/images/52-42.png b/images/52-42.png new file mode 100644 index 0000000..76468aa Binary files /dev/null and b/images/52-42.png differ diff --git a/images/52-43.png b/images/52-43.png new file mode 100644 index 0000000..ad4bca9 Binary files /dev/null and b/images/52-43.png differ diff --git a/images/52-44.png b/images/52-44.png new file mode 100644 index 0000000..667c593 Binary files /dev/null and b/images/52-44.png differ diff --git a/images/52-45.png b/images/52-45.png new file mode 100644 index 0000000..2707d32 Binary files /dev/null and b/images/52-45.png differ diff --git a/images/52-46.png b/images/52-46.png new file mode 100644 index 0000000..f64a6b9 Binary files /dev/null and b/images/52-46.png differ diff --git a/images/52-47.png b/images/52-47.png new file mode 100644 index 0000000..de3ee44 Binary files /dev/null and b/images/52-47.png differ diff --git a/images/52-48.png b/images/52-48.png new file mode 100644 index 0000000..166d692 Binary files /dev/null and b/images/52-48.png differ diff --git a/images/52-49.png b/images/52-49.png new file mode 100644 index 0000000..58d81cf Binary files /dev/null and b/images/52-49.png differ diff --git a/images/52-5.png b/images/52-5.png new file mode 100644 index 0000000..293400b Binary files /dev/null and b/images/52-5.png differ diff --git a/images/52-50.png b/images/52-50.png new file mode 100644 index 0000000..091ced7 Binary files /dev/null and b/images/52-50.png differ diff --git a/images/52-51.png b/images/52-51.png new file mode 100644 index 0000000..b0a1f67 Binary files /dev/null and b/images/52-51.png differ diff --git a/images/52-52.png b/images/52-52.png new file mode 100644 index 0000000..2aa67e9 Binary files /dev/null and b/images/52-52.png differ diff --git a/images/52-53.png b/images/52-53.png new file mode 100644 index 0000000..c473811 Binary files /dev/null and b/images/52-53.png differ diff --git a/images/52-54.png b/images/52-54.png new file mode 100644 index 0000000..512eeec Binary files /dev/null and b/images/52-54.png differ diff --git a/images/52-55.png b/images/52-55.png new file mode 100644 index 0000000..ead451f Binary files /dev/null and b/images/52-55.png differ diff --git a/images/52-56.png b/images/52-56.png new file mode 100644 index 0000000..379c856 Binary files /dev/null and b/images/52-56.png differ diff --git a/images/52-57.png b/images/52-57.png new file mode 100644 index 0000000..e5f4284 Binary files /dev/null and b/images/52-57.png differ diff --git a/images/52-58.png b/images/52-58.png new file mode 100644 index 0000000..e50585f Binary files /dev/null and b/images/52-58.png differ diff --git a/images/52-59.png b/images/52-59.png new file mode 100644 index 0000000..47950b7 Binary files /dev/null and b/images/52-59.png differ diff --git a/images/52-6.png b/images/52-6.png new file mode 100644 index 0000000..8e16261 Binary files /dev/null and b/images/52-6.png differ diff --git a/images/52-60.png b/images/52-60.png new file mode 100644 index 0000000..1ca1c7a Binary files /dev/null and b/images/52-60.png differ diff --git a/images/52-61.png b/images/52-61.png new file mode 100644 index 0000000..db340d3 Binary files /dev/null and b/images/52-61.png differ diff --git a/images/52-62.png b/images/52-62.png new file mode 100644 index 0000000..d5f4139 Binary files /dev/null and b/images/52-62.png differ diff --git a/images/52-63.png b/images/52-63.png new file mode 100644 index 0000000..790d565 Binary files /dev/null and b/images/52-63.png differ diff --git a/images/52-64.png b/images/52-64.png new file mode 100644 index 0000000..065d483 Binary files /dev/null and b/images/52-64.png differ diff --git a/images/52-65.png b/images/52-65.png new file mode 100644 index 0000000..fd34ad5 Binary files /dev/null and b/images/52-65.png differ diff --git a/images/52-66.png b/images/52-66.png new file mode 100644 index 0000000..c1d9d4d Binary files /dev/null and b/images/52-66.png differ diff --git a/images/52-67.png b/images/52-67.png new file mode 100644 index 0000000..0768043 Binary files /dev/null and b/images/52-67.png differ diff --git a/images/52-68.png b/images/52-68.png new file mode 100644 index 0000000..3536250 Binary files /dev/null and b/images/52-68.png differ diff --git a/images/52-69.png b/images/52-69.png new file mode 100644 index 0000000..2e53552 Binary files /dev/null and b/images/52-69.png differ diff --git a/images/52-7.png b/images/52-7.png new file mode 100644 index 0000000..72271b7 Binary files /dev/null and b/images/52-7.png differ diff --git a/images/52-70.png b/images/52-70.png new file mode 100644 index 0000000..72f1c5e Binary files /dev/null and b/images/52-70.png differ diff --git a/images/52-71.png b/images/52-71.png new file mode 100644 index 0000000..96d3df2 Binary files /dev/null and b/images/52-71.png differ diff --git a/images/52-72.png b/images/52-72.png new file mode 100644 index 0000000..b334e2b Binary files /dev/null and b/images/52-72.png differ diff --git a/images/52-73.png b/images/52-73.png new file mode 100644 index 0000000..0a426ba Binary files /dev/null and b/images/52-73.png differ diff --git a/images/52-74.png b/images/52-74.png new file mode 100644 index 0000000..e647e3f Binary files /dev/null and b/images/52-74.png differ diff --git a/images/52-75.png b/images/52-75.png new file mode 100644 index 0000000..4475398 Binary files /dev/null and b/images/52-75.png differ diff --git a/images/52-76.png b/images/52-76.png new file mode 100644 index 0000000..e869379 Binary files /dev/null and b/images/52-76.png differ diff --git a/images/52-77.png b/images/52-77.png new file mode 100644 index 0000000..1c2c69a Binary files /dev/null and b/images/52-77.png differ diff --git a/images/52-78.png b/images/52-78.png new file mode 100644 index 0000000..254777f Binary files /dev/null and b/images/52-78.png differ diff --git a/images/52-79.png b/images/52-79.png new file mode 100644 index 0000000..0b307c3 Binary files /dev/null and b/images/52-79.png differ diff --git a/images/52-8.png b/images/52-8.png new file mode 100644 index 0000000..998e0aa Binary files /dev/null and b/images/52-8.png differ diff --git a/images/52-80.png b/images/52-80.png new file mode 100644 index 0000000..b99f38b Binary files /dev/null and b/images/52-80.png differ diff --git a/images/52-81.png b/images/52-81.png new file mode 100644 index 0000000..5dc50ba Binary files /dev/null and b/images/52-81.png differ diff --git a/images/52-82.png b/images/52-82.png new file mode 100644 index 0000000..2f2ebcc Binary files /dev/null and b/images/52-82.png differ diff --git a/images/52-83.png b/images/52-83.png new file mode 100644 index 0000000..19402fb Binary files /dev/null and b/images/52-83.png differ diff --git a/images/52-84.png b/images/52-84.png new file mode 100644 index 0000000..19ec0e6 Binary files /dev/null and b/images/52-84.png differ diff --git a/images/52-85.png b/images/52-85.png new file mode 100644 index 0000000..84b52e7 Binary files /dev/null and b/images/52-85.png differ diff --git a/images/52-86.png b/images/52-86.png new file mode 100644 index 0000000..1af4e33 Binary files /dev/null and b/images/52-86.png differ diff --git a/images/52-87.png b/images/52-87.png new file mode 100644 index 0000000..4af5b29 Binary files /dev/null and b/images/52-87.png differ diff --git a/images/52-88.png b/images/52-88.png new file mode 100644 index 0000000..26d9b43 Binary files /dev/null and b/images/52-88.png differ diff --git a/images/52-89.png b/images/52-89.png new file mode 100644 index 0000000..9af092f Binary files /dev/null and b/images/52-89.png differ diff --git a/images/52-9.png b/images/52-9.png new file mode 100644 index 0000000..2e9f6bc Binary files /dev/null and b/images/52-9.png differ diff --git a/images/52-90.png b/images/52-90.png new file mode 100644 index 0000000..8ca43df Binary files /dev/null and b/images/52-90.png differ diff --git a/images/52-91.png b/images/52-91.png new file mode 100644 index 0000000..e8dbfc7 Binary files /dev/null and b/images/52-91.png differ diff --git a/images/52-92.png b/images/52-92.png new file mode 100644 index 0000000..c4c87c3 Binary files /dev/null and b/images/52-92.png differ diff --git a/images/52-93.png b/images/52-93.png new file mode 100644 index 0000000..63982f8 Binary files /dev/null and b/images/52-93.png differ diff --git a/images/52-94.png b/images/52-94.png new file mode 100644 index 0000000..a9bae09 Binary files /dev/null and b/images/52-94.png differ diff --git a/images/52-95.png b/images/52-95.png new file mode 100644 index 0000000..4187f40 Binary files /dev/null and b/images/52-95.png differ diff --git a/images/52-96.png b/images/52-96.png new file mode 100644 index 0000000..024218c Binary files /dev/null and b/images/52-96.png differ diff --git a/images/52-97.png b/images/52-97.png new file mode 100644 index 0000000..cb6cbc5 Binary files /dev/null and b/images/52-97.png differ diff --git a/images/52-98.png b/images/52-98.png new file mode 100644 index 0000000..2430055 Binary files /dev/null and b/images/52-98.png differ diff --git a/images/52-99.png b/images/52-99.png new file mode 100644 index 0000000..ee72d97 Binary files /dev/null and b/images/52-99.png differ diff --git a/images/53-0.png b/images/53-0.png new file mode 100644 index 0000000..4693397 Binary files /dev/null and b/images/53-0.png differ diff --git a/images/53-1.png b/images/53-1.png new file mode 100644 index 0000000..bbc615b Binary files /dev/null and b/images/53-1.png differ diff --git a/images/53-10.png b/images/53-10.png new file mode 100644 index 0000000..ec76bcd Binary files /dev/null and b/images/53-10.png differ diff --git a/images/53-11.png b/images/53-11.png new file mode 100644 index 0000000..e675e02 Binary files /dev/null and b/images/53-11.png differ diff --git a/images/53-12.png b/images/53-12.png new file mode 100644 index 0000000..9f9018b Binary files /dev/null and b/images/53-12.png differ diff --git a/images/53-13.png b/images/53-13.png new file mode 100644 index 0000000..c84d083 Binary files /dev/null and b/images/53-13.png differ diff --git a/images/53-14.png b/images/53-14.png new file mode 100644 index 0000000..57acdea Binary files /dev/null and b/images/53-14.png differ diff --git a/images/53-15.png b/images/53-15.png new file mode 100644 index 0000000..5225b04 Binary files /dev/null and b/images/53-15.png differ diff --git a/images/53-16.png b/images/53-16.png new file mode 100644 index 0000000..f27fe94 Binary files /dev/null and b/images/53-16.png differ diff --git a/images/53-17.png b/images/53-17.png new file mode 100644 index 0000000..ab55097 Binary files /dev/null and b/images/53-17.png differ diff --git a/images/53-18.png b/images/53-18.png new file mode 100644 index 0000000..c3fbf6a Binary files /dev/null and b/images/53-18.png differ diff --git a/images/53-19.png b/images/53-19.png new file mode 100644 index 0000000..e055c51 Binary files /dev/null and b/images/53-19.png differ diff --git a/images/53-2.png b/images/53-2.png new file mode 100644 index 0000000..6e5d55b Binary files /dev/null and b/images/53-2.png differ diff --git a/images/53-20.png b/images/53-20.png new file mode 100644 index 0000000..7456a5d Binary files /dev/null and b/images/53-20.png differ diff --git a/images/53-21.png b/images/53-21.png new file mode 100644 index 0000000..a0488a9 Binary files /dev/null and b/images/53-21.png differ diff --git a/images/53-22.png b/images/53-22.png new file mode 100644 index 0000000..f5190c2 Binary files /dev/null and b/images/53-22.png differ diff --git a/images/53-23.png b/images/53-23.png new file mode 100644 index 0000000..896fa44 Binary files /dev/null and b/images/53-23.png differ diff --git a/images/53-24.png b/images/53-24.png new file mode 100644 index 0000000..4f265f3 Binary files /dev/null and b/images/53-24.png differ diff --git a/images/53-25.png b/images/53-25.png new file mode 100644 index 0000000..d7a9d7d Binary files /dev/null and b/images/53-25.png differ diff --git a/images/53-26.png b/images/53-26.png new file mode 100644 index 0000000..595d60c Binary files /dev/null and b/images/53-26.png differ diff --git a/images/53-27.png b/images/53-27.png new file mode 100644 index 0000000..5edc57b Binary files /dev/null and b/images/53-27.png differ diff --git a/images/53-28.png b/images/53-28.png new file mode 100644 index 0000000..68b87bd Binary files /dev/null and b/images/53-28.png differ diff --git a/images/53-29.png b/images/53-29.png new file mode 100644 index 0000000..bab0df9 Binary files /dev/null and b/images/53-29.png differ diff --git a/images/53-3.png b/images/53-3.png new file mode 100644 index 0000000..a893c98 Binary files /dev/null and b/images/53-3.png differ diff --git a/images/53-30.png b/images/53-30.png new file mode 100644 index 0000000..4ff9f38 Binary files /dev/null and b/images/53-30.png differ diff --git a/images/53-31.png b/images/53-31.png new file mode 100644 index 0000000..f401bb3 Binary files /dev/null and b/images/53-31.png differ diff --git a/images/53-32.png b/images/53-32.png new file mode 100644 index 0000000..8bbd144 Binary files /dev/null and b/images/53-32.png differ diff --git a/images/53-33.png b/images/53-33.png new file mode 100644 index 0000000..7027286 Binary files /dev/null and b/images/53-33.png differ diff --git a/images/53-34.png b/images/53-34.png new file mode 100644 index 0000000..0dd049a Binary files /dev/null and b/images/53-34.png differ diff --git a/images/53-35.png b/images/53-35.png new file mode 100644 index 0000000..93872ef Binary files /dev/null and b/images/53-35.png differ diff --git a/images/53-36.png b/images/53-36.png new file mode 100644 index 0000000..becfc32 Binary files /dev/null and b/images/53-36.png differ diff --git a/images/53-37.png b/images/53-37.png new file mode 100644 index 0000000..f1fc1cd Binary files /dev/null and b/images/53-37.png differ diff --git a/images/53-38.png b/images/53-38.png new file mode 100644 index 0000000..8458dd3 Binary files /dev/null and b/images/53-38.png differ diff --git a/images/53-39.png b/images/53-39.png new file mode 100644 index 0000000..8c832a3 Binary files /dev/null and b/images/53-39.png differ diff --git a/images/53-4.png b/images/53-4.png new file mode 100644 index 0000000..833ba26 Binary files /dev/null and b/images/53-4.png differ diff --git a/images/53-40.png b/images/53-40.png new file mode 100644 index 0000000..906a105 Binary files /dev/null and b/images/53-40.png differ diff --git a/images/53-41.png b/images/53-41.png new file mode 100644 index 0000000..3f64ed3 Binary files /dev/null and b/images/53-41.png differ diff --git a/images/53-42.png b/images/53-42.png new file mode 100644 index 0000000..cf60f34 Binary files /dev/null and b/images/53-42.png differ diff --git a/images/53-43.png b/images/53-43.png new file mode 100644 index 0000000..fdaa47f Binary files /dev/null and b/images/53-43.png differ diff --git a/images/53-44.png b/images/53-44.png new file mode 100644 index 0000000..568ba74 Binary files /dev/null and b/images/53-44.png differ diff --git a/images/53-45.png b/images/53-45.png new file mode 100644 index 0000000..7027347 Binary files /dev/null and b/images/53-45.png differ diff --git a/images/53-46.png b/images/53-46.png new file mode 100644 index 0000000..de145d6 Binary files /dev/null and b/images/53-46.png differ diff --git a/images/53-47.png b/images/53-47.png new file mode 100644 index 0000000..fc80348 Binary files /dev/null and b/images/53-47.png differ diff --git a/images/53-48.png b/images/53-48.png new file mode 100644 index 0000000..ed4f187 Binary files /dev/null and b/images/53-48.png differ diff --git a/images/53-49.png b/images/53-49.png new file mode 100644 index 0000000..068c420 Binary files /dev/null and b/images/53-49.png differ diff --git a/images/53-5.png b/images/53-5.png new file mode 100644 index 0000000..d221872 Binary files /dev/null and b/images/53-5.png differ diff --git a/images/53-6.png b/images/53-6.png new file mode 100644 index 0000000..5be077c Binary files /dev/null and b/images/53-6.png differ diff --git a/images/53-7.png b/images/53-7.png new file mode 100644 index 0000000..a9b074a Binary files /dev/null and b/images/53-7.png differ diff --git a/images/53-8.png b/images/53-8.png new file mode 100644 index 0000000..2cd2ffa Binary files /dev/null and b/images/53-8.png differ diff --git a/images/53-9.png b/images/53-9.png new file mode 100644 index 0000000..5bbca09 Binary files /dev/null and b/images/53-9.png differ diff --git a/images/54-0.png b/images/54-0.png new file mode 100644 index 0000000..be6eeff Binary files /dev/null and b/images/54-0.png differ diff --git a/images/54-1.png b/images/54-1.png new file mode 100644 index 0000000..7f3bfae Binary files /dev/null and b/images/54-1.png differ diff --git a/images/54-10.png b/images/54-10.png new file mode 100644 index 0000000..caddef2 Binary files /dev/null and b/images/54-10.png differ diff --git a/images/54-2.png b/images/54-2.png new file mode 100644 index 0000000..cbeb243 Binary files /dev/null and b/images/54-2.png differ diff --git a/images/54-3.png b/images/54-3.png new file mode 100644 index 0000000..3bb89f4 Binary files /dev/null and b/images/54-3.png differ diff --git a/images/54-4.png b/images/54-4.png new file mode 100644 index 0000000..88cd7a3 Binary files /dev/null and b/images/54-4.png differ diff --git a/images/54-5.png b/images/54-5.png new file mode 100644 index 0000000..a882a6a Binary files /dev/null and b/images/54-5.png differ diff --git a/images/54-6.png b/images/54-6.png new file mode 100644 index 0000000..979d814 Binary files /dev/null and b/images/54-6.png differ diff --git a/images/54-7.png b/images/54-7.png new file mode 100644 index 0000000..84f10e0 Binary files /dev/null and b/images/54-7.png differ diff --git a/images/54-8.png b/images/54-8.png new file mode 100644 index 0000000..8efdbf9 Binary files /dev/null and b/images/54-8.png differ diff --git a/images/54-9.png b/images/54-9.png new file mode 100644 index 0000000..1919523 Binary files /dev/null and b/images/54-9.png differ diff --git a/images/55-0.png b/images/55-0.png new file mode 100644 index 0000000..145c818 Binary files /dev/null and b/images/55-0.png differ diff --git a/images/55-1.png b/images/55-1.png new file mode 100644 index 0000000..980a784 Binary files /dev/null and b/images/55-1.png differ diff --git a/images/55-10.png b/images/55-10.png new file mode 100644 index 0000000..bce5d9e Binary files /dev/null and b/images/55-10.png differ diff --git a/images/55-11.png b/images/55-11.png new file mode 100644 index 0000000..8b3e342 Binary files /dev/null and b/images/55-11.png differ diff --git a/images/55-12.png b/images/55-12.png new file mode 100644 index 0000000..8c7cd06 Binary files /dev/null and b/images/55-12.png differ diff --git a/images/55-13.png b/images/55-13.png new file mode 100644 index 0000000..87dcb59 Binary files /dev/null and b/images/55-13.png differ diff --git a/images/55-14.png b/images/55-14.png new file mode 100644 index 0000000..f987af4 Binary files /dev/null and b/images/55-14.png differ diff --git a/images/55-15.png b/images/55-15.png new file mode 100644 index 0000000..2f37a30 Binary files /dev/null and b/images/55-15.png differ diff --git a/images/55-16.png b/images/55-16.png new file mode 100644 index 0000000..5ba1069 Binary files /dev/null and b/images/55-16.png differ diff --git a/images/55-17.png b/images/55-17.png new file mode 100644 index 0000000..2aa42c0 Binary files /dev/null and b/images/55-17.png differ diff --git a/images/55-18.png b/images/55-18.png new file mode 100644 index 0000000..97a73e6 Binary files /dev/null and b/images/55-18.png differ diff --git a/images/55-19.png b/images/55-19.png new file mode 100644 index 0000000..834f472 Binary files /dev/null and b/images/55-19.png differ diff --git a/images/55-2.png b/images/55-2.png new file mode 100644 index 0000000..307a6c3 Binary files /dev/null and b/images/55-2.png differ diff --git a/images/55-20.png b/images/55-20.png new file mode 100644 index 0000000..882afdf Binary files /dev/null and b/images/55-20.png differ diff --git a/images/55-21.png b/images/55-21.png new file mode 100644 index 0000000..a2983ab Binary files /dev/null and b/images/55-21.png differ diff --git a/images/55-22.png b/images/55-22.png new file mode 100644 index 0000000..6186762 Binary files /dev/null and b/images/55-22.png differ diff --git a/images/55-23.png b/images/55-23.png new file mode 100644 index 0000000..047da60 Binary files /dev/null and b/images/55-23.png differ diff --git a/images/55-24.png b/images/55-24.png new file mode 100644 index 0000000..5c05ac0 Binary files /dev/null and b/images/55-24.png differ diff --git a/images/55-25.png b/images/55-25.png new file mode 100644 index 0000000..297167e Binary files /dev/null and b/images/55-25.png differ diff --git a/images/55-26.png b/images/55-26.png new file mode 100644 index 0000000..0e2bcf8 Binary files /dev/null and b/images/55-26.png differ diff --git a/images/55-27.png b/images/55-27.png new file mode 100644 index 0000000..0bca094 Binary files /dev/null and b/images/55-27.png differ diff --git a/images/55-28.png b/images/55-28.png new file mode 100644 index 0000000..4c5ec3c Binary files /dev/null and b/images/55-28.png differ diff --git a/images/55-29.png b/images/55-29.png new file mode 100644 index 0000000..58b2fee Binary files /dev/null and b/images/55-29.png differ diff --git a/images/55-3.png b/images/55-3.png new file mode 100644 index 0000000..4356ada Binary files /dev/null and b/images/55-3.png differ diff --git a/images/55-30.png b/images/55-30.png new file mode 100644 index 0000000..6d9f6ea Binary files /dev/null and b/images/55-30.png differ diff --git a/images/55-31.png b/images/55-31.png new file mode 100644 index 0000000..e0e1708 Binary files /dev/null and b/images/55-31.png differ diff --git a/images/55-32.png b/images/55-32.png new file mode 100644 index 0000000..c6e13e7 Binary files /dev/null and b/images/55-32.png differ diff --git a/images/55-33.png b/images/55-33.png new file mode 100644 index 0000000..a41856c Binary files /dev/null and b/images/55-33.png differ diff --git a/images/55-34.png b/images/55-34.png new file mode 100644 index 0000000..05c22cd Binary files /dev/null and b/images/55-34.png differ diff --git a/images/55-35.png b/images/55-35.png new file mode 100644 index 0000000..6d64a80 Binary files /dev/null and b/images/55-35.png differ diff --git a/images/55-36.png b/images/55-36.png new file mode 100644 index 0000000..0155dac Binary files /dev/null and b/images/55-36.png differ diff --git a/images/55-37.png b/images/55-37.png new file mode 100644 index 0000000..520d17a Binary files /dev/null and b/images/55-37.png differ diff --git a/images/55-38.png b/images/55-38.png new file mode 100644 index 0000000..fddce4f Binary files /dev/null and b/images/55-38.png differ diff --git a/images/55-39.png b/images/55-39.png new file mode 100644 index 0000000..5a0303c Binary files /dev/null and b/images/55-39.png differ diff --git a/images/55-4.png b/images/55-4.png new file mode 100644 index 0000000..d4d2518 Binary files /dev/null and b/images/55-4.png differ diff --git a/images/55-40.png b/images/55-40.png new file mode 100644 index 0000000..33c5f90 Binary files /dev/null and b/images/55-40.png differ diff --git a/images/55-41.png b/images/55-41.png new file mode 100644 index 0000000..f023af4 Binary files /dev/null and b/images/55-41.png differ diff --git a/images/55-42.png b/images/55-42.png new file mode 100644 index 0000000..849910f Binary files /dev/null and b/images/55-42.png differ diff --git a/images/55-43.png b/images/55-43.png new file mode 100644 index 0000000..b1a31a5 Binary files /dev/null and b/images/55-43.png differ diff --git a/images/55-44.png b/images/55-44.png new file mode 100644 index 0000000..d3a1cc7 Binary files /dev/null and b/images/55-44.png differ diff --git a/images/55-45.png b/images/55-45.png new file mode 100644 index 0000000..6e17bb7 Binary files /dev/null and b/images/55-45.png differ diff --git a/images/55-46.png b/images/55-46.png new file mode 100644 index 0000000..79b2850 Binary files /dev/null and b/images/55-46.png differ diff --git a/images/55-47.png b/images/55-47.png new file mode 100644 index 0000000..3620605 Binary files /dev/null and b/images/55-47.png differ diff --git a/images/55-48.png b/images/55-48.png new file mode 100644 index 0000000..bfeb3ff Binary files /dev/null and b/images/55-48.png differ diff --git a/images/55-49.png b/images/55-49.png new file mode 100644 index 0000000..097c5db Binary files /dev/null and b/images/55-49.png differ diff --git a/images/55-5.png b/images/55-5.png new file mode 100644 index 0000000..f347c2b Binary files /dev/null and b/images/55-5.png differ diff --git a/images/55-50.png b/images/55-50.png new file mode 100644 index 0000000..3638140 Binary files /dev/null and b/images/55-50.png differ diff --git a/images/55-51.png b/images/55-51.png new file mode 100644 index 0000000..b5be618 Binary files /dev/null and b/images/55-51.png differ diff --git a/images/55-52.png b/images/55-52.png new file mode 100644 index 0000000..c049767 Binary files /dev/null and b/images/55-52.png differ diff --git a/images/55-53.png b/images/55-53.png new file mode 100644 index 0000000..8c9bdc6 Binary files /dev/null and b/images/55-53.png differ diff --git a/images/55-54.png b/images/55-54.png new file mode 100644 index 0000000..e2eb841 Binary files /dev/null and b/images/55-54.png differ diff --git a/images/55-55.png b/images/55-55.png new file mode 100644 index 0000000..43bc109 Binary files /dev/null and b/images/55-55.png differ diff --git a/images/55-56.png b/images/55-56.png new file mode 100644 index 0000000..58931f3 Binary files /dev/null and b/images/55-56.png differ diff --git a/images/55-57.png b/images/55-57.png new file mode 100644 index 0000000..5ba0bf6 Binary files /dev/null and b/images/55-57.png differ diff --git a/images/55-58.png b/images/55-58.png new file mode 100644 index 0000000..49eb1c3 Binary files /dev/null and b/images/55-58.png differ diff --git a/images/55-59.png b/images/55-59.png new file mode 100644 index 0000000..84dbe5d Binary files /dev/null and b/images/55-59.png differ diff --git a/images/55-6.png b/images/55-6.png new file mode 100644 index 0000000..3ab5f74 Binary files /dev/null and b/images/55-6.png differ diff --git a/images/55-60.png b/images/55-60.png new file mode 100644 index 0000000..12be441 Binary files /dev/null and b/images/55-60.png differ diff --git a/images/55-61.png b/images/55-61.png new file mode 100644 index 0000000..a747581 Binary files /dev/null and b/images/55-61.png differ diff --git a/images/55-62.png b/images/55-62.png new file mode 100644 index 0000000..411faa5 Binary files /dev/null and b/images/55-62.png differ diff --git a/images/55-63.png b/images/55-63.png new file mode 100644 index 0000000..50ffdd1 Binary files /dev/null and b/images/55-63.png differ diff --git a/images/55-64.png b/images/55-64.png new file mode 100644 index 0000000..7c801e1 Binary files /dev/null and b/images/55-64.png differ diff --git a/images/55-65.png b/images/55-65.png new file mode 100644 index 0000000..9754335 Binary files /dev/null and b/images/55-65.png differ diff --git a/images/55-66.png b/images/55-66.png new file mode 100644 index 0000000..1021266 Binary files /dev/null and b/images/55-66.png differ diff --git a/images/55-67.png b/images/55-67.png new file mode 100644 index 0000000..1c053a5 Binary files /dev/null and b/images/55-67.png differ diff --git a/images/55-68.png b/images/55-68.png new file mode 100644 index 0000000..8bfbda7 Binary files /dev/null and b/images/55-68.png differ diff --git a/images/55-69.png b/images/55-69.png new file mode 100644 index 0000000..ab820fb Binary files /dev/null and b/images/55-69.png differ diff --git a/images/55-7.png b/images/55-7.png new file mode 100644 index 0000000..841b9a4 Binary files /dev/null and b/images/55-7.png differ diff --git a/images/55-70.png b/images/55-70.png new file mode 100644 index 0000000..788b030 Binary files /dev/null and b/images/55-70.png differ diff --git a/images/55-71.png b/images/55-71.png new file mode 100644 index 0000000..2c9732d Binary files /dev/null and b/images/55-71.png differ diff --git a/images/55-72.png b/images/55-72.png new file mode 100644 index 0000000..534a525 Binary files /dev/null and b/images/55-72.png differ diff --git a/images/55-73.png b/images/55-73.png new file mode 100644 index 0000000..4a46361 Binary files /dev/null and b/images/55-73.png differ diff --git a/images/55-74.png b/images/55-74.png new file mode 100644 index 0000000..88f84cb Binary files /dev/null and b/images/55-74.png differ diff --git a/images/55-75.png b/images/55-75.png new file mode 100644 index 0000000..927e6de Binary files /dev/null and b/images/55-75.png differ diff --git a/images/55-76.png b/images/55-76.png new file mode 100644 index 0000000..f4adaa9 Binary files /dev/null and b/images/55-76.png differ diff --git a/images/55-77.png b/images/55-77.png new file mode 100644 index 0000000..f2b3e8f Binary files /dev/null and b/images/55-77.png differ diff --git a/images/55-78.png b/images/55-78.png new file mode 100644 index 0000000..644355e Binary files /dev/null and b/images/55-78.png differ diff --git a/images/55-79.png b/images/55-79.png new file mode 100644 index 0000000..516246d Binary files /dev/null and b/images/55-79.png differ diff --git a/images/55-8.png b/images/55-8.png new file mode 100644 index 0000000..8188c03 Binary files /dev/null and b/images/55-8.png differ diff --git a/images/55-80.png b/images/55-80.png new file mode 100644 index 0000000..2f52374 Binary files /dev/null and b/images/55-80.png differ diff --git a/images/55-81.png b/images/55-81.png new file mode 100644 index 0000000..95cbe27 Binary files /dev/null and b/images/55-81.png differ diff --git a/images/55-82.png b/images/55-82.png new file mode 100644 index 0000000..efaa4b1 Binary files /dev/null and b/images/55-82.png differ diff --git a/images/55-83.png b/images/55-83.png new file mode 100644 index 0000000..851123d Binary files /dev/null and b/images/55-83.png differ diff --git a/images/55-84.png b/images/55-84.png new file mode 100644 index 0000000..42fe128 Binary files /dev/null and b/images/55-84.png differ diff --git a/images/55-85.png b/images/55-85.png new file mode 100644 index 0000000..c2ca516 Binary files /dev/null and b/images/55-85.png differ diff --git a/images/55-86.png b/images/55-86.png new file mode 100644 index 0000000..002df36 Binary files /dev/null and b/images/55-86.png differ diff --git a/images/55-87.png b/images/55-87.png new file mode 100644 index 0000000..dac396c Binary files /dev/null and b/images/55-87.png differ diff --git a/images/55-88.png b/images/55-88.png new file mode 100644 index 0000000..f02e30c Binary files /dev/null and b/images/55-88.png differ diff --git a/images/55-89.png b/images/55-89.png new file mode 100644 index 0000000..920d501 Binary files /dev/null and b/images/55-89.png differ diff --git a/images/55-9.png b/images/55-9.png new file mode 100644 index 0000000..0627611 Binary files /dev/null and b/images/55-9.png differ diff --git a/images/55-90.png b/images/55-90.png new file mode 100644 index 0000000..bac980d Binary files /dev/null and b/images/55-90.png differ diff --git a/images/56-0.png b/images/56-0.png new file mode 100644 index 0000000..da07267 Binary files /dev/null and b/images/56-0.png differ diff --git a/images/56-1.png b/images/56-1.png new file mode 100644 index 0000000..919e7dc Binary files /dev/null and b/images/56-1.png differ diff --git a/images/56-10.png b/images/56-10.png new file mode 100644 index 0000000..9c274f7 Binary files /dev/null and b/images/56-10.png differ diff --git a/images/56-11.png b/images/56-11.png new file mode 100644 index 0000000..51286e8 Binary files /dev/null and b/images/56-11.png differ diff --git a/images/56-12.png b/images/56-12.png new file mode 100644 index 0000000..bcdbd8d Binary files /dev/null and b/images/56-12.png differ diff --git a/images/56-13.png b/images/56-13.png new file mode 100644 index 0000000..f14e03f Binary files /dev/null and b/images/56-13.png differ diff --git a/images/56-14.png b/images/56-14.png new file mode 100644 index 0000000..d311b69 Binary files /dev/null and b/images/56-14.png differ diff --git a/images/56-15.png b/images/56-15.png new file mode 100644 index 0000000..8f3b281 Binary files /dev/null and b/images/56-15.png differ diff --git a/images/56-16.png b/images/56-16.png new file mode 100644 index 0000000..3d15b91 Binary files /dev/null and b/images/56-16.png differ diff --git a/images/56-17.png b/images/56-17.png new file mode 100644 index 0000000..fa8a05d Binary files /dev/null and b/images/56-17.png differ diff --git a/images/56-18.png b/images/56-18.png new file mode 100644 index 0000000..c13c91a Binary files /dev/null and b/images/56-18.png differ diff --git a/images/56-19.png b/images/56-19.png new file mode 100644 index 0000000..90cbc69 Binary files /dev/null and b/images/56-19.png differ diff --git a/images/56-2.png b/images/56-2.png new file mode 100644 index 0000000..766b0a1 Binary files /dev/null and b/images/56-2.png differ diff --git a/images/56-20.png b/images/56-20.png new file mode 100644 index 0000000..253a861 Binary files /dev/null and b/images/56-20.png differ diff --git a/images/56-21.png b/images/56-21.png new file mode 100644 index 0000000..be25ca3 Binary files /dev/null and b/images/56-21.png differ diff --git a/images/56-22.png b/images/56-22.png new file mode 100644 index 0000000..ae7d63e Binary files /dev/null and b/images/56-22.png differ diff --git a/images/56-23.png b/images/56-23.png new file mode 100644 index 0000000..754e340 Binary files /dev/null and b/images/56-23.png differ diff --git a/images/56-24.png b/images/56-24.png new file mode 100644 index 0000000..9dd6028 Binary files /dev/null and b/images/56-24.png differ diff --git a/images/56-25.png b/images/56-25.png new file mode 100644 index 0000000..7ae8f32 Binary files /dev/null and b/images/56-25.png differ diff --git a/images/56-26.png b/images/56-26.png new file mode 100644 index 0000000..7ee43a2 Binary files /dev/null and b/images/56-26.png differ diff --git a/images/56-27.png b/images/56-27.png new file mode 100644 index 0000000..3e8a5c3 Binary files /dev/null and b/images/56-27.png differ diff --git a/images/56-28.png b/images/56-28.png new file mode 100644 index 0000000..a9e0894 Binary files /dev/null and b/images/56-28.png differ diff --git a/images/56-29.png b/images/56-29.png new file mode 100644 index 0000000..a237500 Binary files /dev/null and b/images/56-29.png differ diff --git a/images/56-3.png b/images/56-3.png new file mode 100644 index 0000000..1f263ef Binary files /dev/null and b/images/56-3.png differ diff --git a/images/56-30.png b/images/56-30.png new file mode 100644 index 0000000..3b9cd7b Binary files /dev/null and b/images/56-30.png differ diff --git a/images/56-31.png b/images/56-31.png new file mode 100644 index 0000000..6442e5c Binary files /dev/null and b/images/56-31.png differ diff --git a/images/56-32.png b/images/56-32.png new file mode 100644 index 0000000..a5077ee Binary files /dev/null and b/images/56-32.png differ diff --git a/images/56-33.png b/images/56-33.png new file mode 100644 index 0000000..62eda8f Binary files /dev/null and b/images/56-33.png differ diff --git a/images/56-34.png b/images/56-34.png new file mode 100644 index 0000000..199c47b Binary files /dev/null and b/images/56-34.png differ diff --git a/images/56-35.png b/images/56-35.png new file mode 100644 index 0000000..7cf17e6 Binary files /dev/null and b/images/56-35.png differ diff --git a/images/56-36.png b/images/56-36.png new file mode 100644 index 0000000..1b123b2 Binary files /dev/null and b/images/56-36.png differ diff --git a/images/56-37.png b/images/56-37.png new file mode 100644 index 0000000..8503313 Binary files /dev/null and b/images/56-37.png differ diff --git a/images/56-38.png b/images/56-38.png new file mode 100644 index 0000000..65bac0e Binary files /dev/null and b/images/56-38.png differ diff --git a/images/56-39.png b/images/56-39.png new file mode 100644 index 0000000..41ee422 Binary files /dev/null and b/images/56-39.png differ diff --git a/images/56-4.png b/images/56-4.png new file mode 100644 index 0000000..b78e7ad Binary files /dev/null and b/images/56-4.png differ diff --git a/images/56-40.png b/images/56-40.png new file mode 100644 index 0000000..546c4e3 Binary files /dev/null and b/images/56-40.png differ diff --git a/images/56-41.png b/images/56-41.png new file mode 100644 index 0000000..af36b74 Binary files /dev/null and b/images/56-41.png differ diff --git a/images/56-42.png b/images/56-42.png new file mode 100644 index 0000000..4303531 Binary files /dev/null and b/images/56-42.png differ diff --git a/images/56-43.png b/images/56-43.png new file mode 100644 index 0000000..d85c503 Binary files /dev/null and b/images/56-43.png differ diff --git a/images/56-44.png b/images/56-44.png new file mode 100644 index 0000000..5ac1f1b Binary files /dev/null and b/images/56-44.png differ diff --git a/images/56-45.png b/images/56-45.png new file mode 100644 index 0000000..c0beb88 Binary files /dev/null and b/images/56-45.png differ diff --git a/images/56-46.png b/images/56-46.png new file mode 100644 index 0000000..e0f270c Binary files /dev/null and b/images/56-46.png differ diff --git a/images/56-47.png b/images/56-47.png new file mode 100644 index 0000000..4ac23b7 Binary files /dev/null and b/images/56-47.png differ diff --git a/images/56-48.png b/images/56-48.png new file mode 100644 index 0000000..a192022 Binary files /dev/null and b/images/56-48.png differ diff --git a/images/56-49.png b/images/56-49.png new file mode 100644 index 0000000..c6059df Binary files /dev/null and b/images/56-49.png differ diff --git a/images/56-5.png b/images/56-5.png new file mode 100644 index 0000000..89a9254 Binary files /dev/null and b/images/56-5.png differ diff --git a/images/56-50.png b/images/56-50.png new file mode 100644 index 0000000..66241cb Binary files /dev/null and b/images/56-50.png differ diff --git a/images/56-51.png b/images/56-51.png new file mode 100644 index 0000000..5445a58 Binary files /dev/null and b/images/56-51.png differ diff --git a/images/56-52.png b/images/56-52.png new file mode 100644 index 0000000..b6473c2 Binary files /dev/null and b/images/56-52.png differ diff --git a/images/56-53.png b/images/56-53.png new file mode 100644 index 0000000..38b3705 Binary files /dev/null and b/images/56-53.png differ diff --git a/images/56-54.png b/images/56-54.png new file mode 100644 index 0000000..0196ff0 Binary files /dev/null and b/images/56-54.png differ diff --git a/images/56-55.png b/images/56-55.png new file mode 100644 index 0000000..69ea76e Binary files /dev/null and b/images/56-55.png differ diff --git a/images/56-56.png b/images/56-56.png new file mode 100644 index 0000000..00bec38 Binary files /dev/null and b/images/56-56.png differ diff --git a/images/56-57.png b/images/56-57.png new file mode 100644 index 0000000..83dcc47 Binary files /dev/null and b/images/56-57.png differ diff --git a/images/56-58.png b/images/56-58.png new file mode 100644 index 0000000..cbb35d0 Binary files /dev/null and b/images/56-58.png differ diff --git a/images/56-59.png b/images/56-59.png new file mode 100644 index 0000000..711273d Binary files /dev/null and b/images/56-59.png differ diff --git a/images/56-6.png b/images/56-6.png new file mode 100644 index 0000000..e9dd5ea Binary files /dev/null and b/images/56-6.png differ diff --git a/images/56-60.png b/images/56-60.png new file mode 100644 index 0000000..b1a7edc Binary files /dev/null and b/images/56-60.png differ diff --git a/images/56-61.png b/images/56-61.png new file mode 100644 index 0000000..9225579 Binary files /dev/null and b/images/56-61.png differ diff --git a/images/56-62.png b/images/56-62.png new file mode 100644 index 0000000..9a627ff Binary files /dev/null and b/images/56-62.png differ diff --git a/images/56-63.png b/images/56-63.png new file mode 100644 index 0000000..e3de33f Binary files /dev/null and b/images/56-63.png differ diff --git a/images/56-64.png b/images/56-64.png new file mode 100644 index 0000000..445562d Binary files /dev/null and b/images/56-64.png differ diff --git a/images/56-65.png b/images/56-65.png new file mode 100644 index 0000000..d55b609 Binary files /dev/null and b/images/56-65.png differ diff --git a/images/56-66.png b/images/56-66.png new file mode 100644 index 0000000..152f9c0 Binary files /dev/null and b/images/56-66.png differ diff --git a/images/56-67.png b/images/56-67.png new file mode 100644 index 0000000..1b136e2 Binary files /dev/null and b/images/56-67.png differ diff --git a/images/56-68.png b/images/56-68.png new file mode 100644 index 0000000..83da24a Binary files /dev/null and b/images/56-68.png differ diff --git a/images/56-69.png b/images/56-69.png new file mode 100644 index 0000000..23a12a9 Binary files /dev/null and b/images/56-69.png differ diff --git a/images/56-7.png b/images/56-7.png new file mode 100644 index 0000000..58fedb5 Binary files /dev/null and b/images/56-7.png differ diff --git a/images/56-70.png b/images/56-70.png new file mode 100644 index 0000000..d2ed4b6 Binary files /dev/null and b/images/56-70.png differ diff --git a/images/56-71.png b/images/56-71.png new file mode 100644 index 0000000..b731932 Binary files /dev/null and b/images/56-71.png differ diff --git a/images/56-72.png b/images/56-72.png new file mode 100644 index 0000000..f459d4e Binary files /dev/null and b/images/56-72.png differ diff --git a/images/56-73.png b/images/56-73.png new file mode 100644 index 0000000..89b3e0e Binary files /dev/null and b/images/56-73.png differ diff --git a/images/56-74.png b/images/56-74.png new file mode 100644 index 0000000..132e860 Binary files /dev/null and b/images/56-74.png differ diff --git a/images/56-8.png b/images/56-8.png new file mode 100644 index 0000000..c3ac793 Binary files /dev/null and b/images/56-8.png differ diff --git a/images/56-9.png b/images/56-9.png new file mode 100644 index 0000000..b66452f Binary files /dev/null and b/images/56-9.png differ diff --git a/images/57-0.png b/images/57-0.png new file mode 100644 index 0000000..61a38ff Binary files /dev/null and b/images/57-0.png differ diff --git a/images/57-1.png b/images/57-1.png new file mode 100644 index 0000000..804e115 Binary files /dev/null and b/images/57-1.png differ diff --git a/images/57-10.png b/images/57-10.png new file mode 100644 index 0000000..cd7166c Binary files /dev/null and b/images/57-10.png differ diff --git a/images/57-11.png b/images/57-11.png new file mode 100644 index 0000000..a592082 Binary files /dev/null and b/images/57-11.png differ diff --git a/images/57-12.png b/images/57-12.png new file mode 100644 index 0000000..1f11f48 Binary files /dev/null and b/images/57-12.png differ diff --git a/images/57-13.png b/images/57-13.png new file mode 100644 index 0000000..3025343 Binary files /dev/null and b/images/57-13.png differ diff --git a/images/57-14.png b/images/57-14.png new file mode 100644 index 0000000..e59c440 Binary files /dev/null and b/images/57-14.png differ diff --git a/images/57-15.png b/images/57-15.png new file mode 100644 index 0000000..ee5cf4b Binary files /dev/null and b/images/57-15.png differ diff --git a/images/57-16.png b/images/57-16.png new file mode 100644 index 0000000..c588444 Binary files /dev/null and b/images/57-16.png differ diff --git a/images/57-2.png b/images/57-2.png new file mode 100644 index 0000000..1127586 Binary files /dev/null and b/images/57-2.png differ diff --git a/images/57-3.png b/images/57-3.png new file mode 100644 index 0000000..146ebc1 Binary files /dev/null and b/images/57-3.png differ diff --git a/images/57-4.png b/images/57-4.png new file mode 100644 index 0000000..e6363b6 Binary files /dev/null and b/images/57-4.png differ diff --git a/images/57-5.png b/images/57-5.png new file mode 100644 index 0000000..d3a7762 Binary files /dev/null and b/images/57-5.png differ diff --git a/images/57-6.png b/images/57-6.png new file mode 100644 index 0000000..99c8e24 Binary files /dev/null and b/images/57-6.png differ diff --git a/images/57-7.png b/images/57-7.png new file mode 100644 index 0000000..c9f316f Binary files /dev/null and b/images/57-7.png differ diff --git a/images/57-8.png b/images/57-8.png new file mode 100644 index 0000000..442628c Binary files /dev/null and b/images/57-8.png differ diff --git a/images/57-9.png b/images/57-9.png new file mode 100644 index 0000000..7680409 Binary files /dev/null and b/images/57-9.png differ diff --git a/images/58-0.png b/images/58-0.png new file mode 100644 index 0000000..e246711 Binary files /dev/null and b/images/58-0.png differ diff --git a/images/58-1.png b/images/58-1.png new file mode 100644 index 0000000..036fc7a Binary files /dev/null and b/images/58-1.png differ diff --git a/images/58-2.png b/images/58-2.png new file mode 100644 index 0000000..74be384 Binary files /dev/null and b/images/58-2.png differ diff --git a/images/58-3.png b/images/58-3.png new file mode 100644 index 0000000..290247c Binary files /dev/null and b/images/58-3.png differ diff --git a/images/58-4.png b/images/58-4.png new file mode 100644 index 0000000..4519030 Binary files /dev/null and b/images/58-4.png differ diff --git a/images/58-5.png b/images/58-5.png new file mode 100644 index 0000000..75c1fb4 Binary files /dev/null and b/images/58-5.png differ diff --git a/images/58-6.png b/images/58-6.png new file mode 100644 index 0000000..4738ae9 Binary files /dev/null and b/images/58-6.png differ diff --git a/images/58-7.png b/images/58-7.png new file mode 100644 index 0000000..53d148a Binary files /dev/null and b/images/58-7.png differ diff --git a/images/59-0.png b/images/59-0.png new file mode 100644 index 0000000..09e98ca Binary files /dev/null and b/images/59-0.png differ diff --git a/images/59-1.png b/images/59-1.png new file mode 100644 index 0000000..d022b4f Binary files /dev/null and b/images/59-1.png differ diff --git a/images/59-10.png b/images/59-10.png new file mode 100644 index 0000000..fdf2496 Binary files /dev/null and b/images/59-10.png differ diff --git a/images/59-11.png b/images/59-11.png new file mode 100644 index 0000000..878ac1a Binary files /dev/null and b/images/59-11.png differ diff --git a/images/59-12.png b/images/59-12.png new file mode 100644 index 0000000..f31c3ea Binary files /dev/null and b/images/59-12.png differ diff --git a/images/59-13.png b/images/59-13.png new file mode 100644 index 0000000..ca3ff44 Binary files /dev/null and b/images/59-13.png differ diff --git a/images/59-14.png b/images/59-14.png new file mode 100644 index 0000000..6159f45 Binary files /dev/null and b/images/59-14.png differ diff --git a/images/59-15.png b/images/59-15.png new file mode 100644 index 0000000..c75b925 Binary files /dev/null and b/images/59-15.png differ diff --git a/images/59-16.png b/images/59-16.png new file mode 100644 index 0000000..e0f6961 Binary files /dev/null and b/images/59-16.png differ diff --git a/images/59-17.png b/images/59-17.png new file mode 100644 index 0000000..1f1f533 Binary files /dev/null and b/images/59-17.png differ diff --git a/images/59-18.png b/images/59-18.png new file mode 100644 index 0000000..21a80d7 Binary files /dev/null and b/images/59-18.png differ diff --git a/images/59-19.png b/images/59-19.png new file mode 100644 index 0000000..932e456 Binary files /dev/null and b/images/59-19.png differ diff --git a/images/59-2.png b/images/59-2.png new file mode 100644 index 0000000..5aa8ddd Binary files /dev/null and b/images/59-2.png differ diff --git a/images/59-20.png b/images/59-20.png new file mode 100644 index 0000000..50491ce Binary files /dev/null and b/images/59-20.png differ diff --git a/images/59-21.png b/images/59-21.png new file mode 100644 index 0000000..9e3813a Binary files /dev/null and b/images/59-21.png differ diff --git a/images/59-22.png b/images/59-22.png new file mode 100644 index 0000000..de64cae Binary files /dev/null and b/images/59-22.png differ diff --git a/images/59-23.png b/images/59-23.png new file mode 100644 index 0000000..0645d5e Binary files /dev/null and b/images/59-23.png differ diff --git a/images/59-24.png b/images/59-24.png new file mode 100644 index 0000000..fc5ec10 Binary files /dev/null and b/images/59-24.png differ diff --git a/images/59-25.png b/images/59-25.png new file mode 100644 index 0000000..2e28574 Binary files /dev/null and b/images/59-25.png differ diff --git a/images/59-26.png b/images/59-26.png new file mode 100644 index 0000000..16878d1 Binary files /dev/null and b/images/59-26.png differ diff --git a/images/59-27.png b/images/59-27.png new file mode 100644 index 0000000..f3c294e Binary files /dev/null and b/images/59-27.png differ diff --git a/images/59-28.png b/images/59-28.png new file mode 100644 index 0000000..dbb4cb0 Binary files /dev/null and b/images/59-28.png differ diff --git a/images/59-29.png b/images/59-29.png new file mode 100644 index 0000000..59871de Binary files /dev/null and b/images/59-29.png differ diff --git a/images/59-3.png b/images/59-3.png new file mode 100644 index 0000000..18fd0c1 Binary files /dev/null and b/images/59-3.png differ diff --git a/images/59-30.png b/images/59-30.png new file mode 100644 index 0000000..5ef4621 Binary files /dev/null and b/images/59-30.png differ diff --git a/images/59-31.png b/images/59-31.png new file mode 100644 index 0000000..e2aac09 Binary files /dev/null and b/images/59-31.png differ diff --git a/images/59-32.png b/images/59-32.png new file mode 100644 index 0000000..85ae55e Binary files /dev/null and b/images/59-32.png differ diff --git a/images/59-33.png b/images/59-33.png new file mode 100644 index 0000000..321a8e0 Binary files /dev/null and b/images/59-33.png differ diff --git a/images/59-34.png b/images/59-34.png new file mode 100644 index 0000000..8b7f01f Binary files /dev/null and b/images/59-34.png differ diff --git a/images/59-35.png b/images/59-35.png new file mode 100644 index 0000000..315fd62 Binary files /dev/null and b/images/59-35.png differ diff --git a/images/59-36.png b/images/59-36.png new file mode 100644 index 0000000..852e594 Binary files /dev/null and b/images/59-36.png differ diff --git a/images/59-37.png b/images/59-37.png new file mode 100644 index 0000000..87ba880 Binary files /dev/null and b/images/59-37.png differ diff --git a/images/59-38.png b/images/59-38.png new file mode 100644 index 0000000..4287533 Binary files /dev/null and b/images/59-38.png differ diff --git a/images/59-39.png b/images/59-39.png new file mode 100644 index 0000000..319e99a Binary files /dev/null and b/images/59-39.png differ diff --git a/images/59-4.png b/images/59-4.png new file mode 100644 index 0000000..a0db2ba Binary files /dev/null and b/images/59-4.png differ diff --git a/images/59-40.png b/images/59-40.png new file mode 100644 index 0000000..326d453 Binary files /dev/null and b/images/59-40.png differ diff --git a/images/59-41.png b/images/59-41.png new file mode 100644 index 0000000..b8b0ac5 Binary files /dev/null and b/images/59-41.png differ diff --git a/images/59-42.png b/images/59-42.png new file mode 100644 index 0000000..8195602 Binary files /dev/null and b/images/59-42.png differ diff --git a/images/59-43.png b/images/59-43.png new file mode 100644 index 0000000..f6d39d4 Binary files /dev/null and b/images/59-43.png differ diff --git a/images/59-5.png b/images/59-5.png new file mode 100644 index 0000000..06cecf8 Binary files /dev/null and b/images/59-5.png differ diff --git a/images/59-6.png b/images/59-6.png new file mode 100644 index 0000000..20b56ed Binary files /dev/null and b/images/59-6.png differ diff --git a/images/59-7.png b/images/59-7.png new file mode 100644 index 0000000..deee5c8 Binary files /dev/null and b/images/59-7.png differ diff --git a/images/59-8.png b/images/59-8.png new file mode 100644 index 0000000..734d2b6 Binary files /dev/null and b/images/59-8.png differ diff --git a/images/59-9.png b/images/59-9.png new file mode 100644 index 0000000..3bde599 Binary files /dev/null and b/images/59-9.png differ diff --git a/images/6-0.png b/images/6-0.png new file mode 100644 index 0000000..141a727 Binary files /dev/null and b/images/6-0.png differ diff --git a/images/6-1.png b/images/6-1.png new file mode 100644 index 0000000..94f3509 Binary files /dev/null and b/images/6-1.png differ diff --git a/images/6-10.png b/images/6-10.png new file mode 100644 index 0000000..52d0f16 Binary files /dev/null and b/images/6-10.png differ diff --git a/images/6-11.png b/images/6-11.png new file mode 100644 index 0000000..ca57461 Binary files /dev/null and b/images/6-11.png differ diff --git a/images/6-12.png b/images/6-12.png new file mode 100644 index 0000000..dd95513 Binary files /dev/null and b/images/6-12.png differ diff --git a/images/6-13.png b/images/6-13.png new file mode 100644 index 0000000..b3dde21 Binary files /dev/null and b/images/6-13.png differ diff --git a/images/6-14.png b/images/6-14.png new file mode 100644 index 0000000..1b4c881 Binary files /dev/null and b/images/6-14.png differ diff --git a/images/6-2.png b/images/6-2.png new file mode 100644 index 0000000..dec4e3d Binary files /dev/null and b/images/6-2.png differ diff --git a/images/6-3.png b/images/6-3.png new file mode 100644 index 0000000..5f970d5 Binary files /dev/null and b/images/6-3.png differ diff --git a/images/6-4.png b/images/6-4.png new file mode 100644 index 0000000..fc76fc3 Binary files /dev/null and b/images/6-4.png differ diff --git a/images/6-5.png b/images/6-5.png new file mode 100644 index 0000000..949c673 Binary files /dev/null and b/images/6-5.png differ diff --git a/images/6-6.png b/images/6-6.png new file mode 100644 index 0000000..c543c72 Binary files /dev/null and b/images/6-6.png differ diff --git a/images/6-7.png b/images/6-7.png new file mode 100644 index 0000000..83904e7 Binary files /dev/null and b/images/6-7.png differ diff --git a/images/6-8.png b/images/6-8.png new file mode 100644 index 0000000..38d6c6e Binary files /dev/null and b/images/6-8.png differ diff --git a/images/6-9.png b/images/6-9.png new file mode 100644 index 0000000..3384fd6 Binary files /dev/null and b/images/6-9.png differ diff --git a/images/60-0.png b/images/60-0.png new file mode 100644 index 0000000..47ff2e9 Binary files /dev/null and b/images/60-0.png differ diff --git a/images/60-1.png b/images/60-1.png new file mode 100644 index 0000000..72df68e Binary files /dev/null and b/images/60-1.png differ diff --git a/images/60-10.png b/images/60-10.png new file mode 100644 index 0000000..93e0832 Binary files /dev/null and b/images/60-10.png differ diff --git a/images/60-11.png b/images/60-11.png new file mode 100644 index 0000000..9520125 Binary files /dev/null and b/images/60-11.png differ diff --git a/images/60-12.png b/images/60-12.png new file mode 100644 index 0000000..92e0a85 Binary files /dev/null and b/images/60-12.png differ diff --git a/images/60-13.png b/images/60-13.png new file mode 100644 index 0000000..a052d6f Binary files /dev/null and b/images/60-13.png differ diff --git a/images/60-14.png b/images/60-14.png new file mode 100644 index 0000000..b0a024a Binary files /dev/null and b/images/60-14.png differ diff --git a/images/60-15.png b/images/60-15.png new file mode 100644 index 0000000..0c31e3a Binary files /dev/null and b/images/60-15.png differ diff --git a/images/60-16.png b/images/60-16.png new file mode 100644 index 0000000..6ce23d0 Binary files /dev/null and b/images/60-16.png differ diff --git a/images/60-17.png b/images/60-17.png new file mode 100644 index 0000000..7d54995 Binary files /dev/null and b/images/60-17.png differ diff --git a/images/60-18.png b/images/60-18.png new file mode 100644 index 0000000..3cb00d2 Binary files /dev/null and b/images/60-18.png differ diff --git a/images/60-19.png b/images/60-19.png new file mode 100644 index 0000000..8b88f34 Binary files /dev/null and b/images/60-19.png differ diff --git a/images/60-2.png b/images/60-2.png new file mode 100644 index 0000000..dc94cbe Binary files /dev/null and b/images/60-2.png differ diff --git a/images/60-20.png b/images/60-20.png new file mode 100644 index 0000000..ea0bd95 Binary files /dev/null and b/images/60-20.png differ diff --git a/images/60-21.png b/images/60-21.png new file mode 100644 index 0000000..3850d82 Binary files /dev/null and b/images/60-21.png differ diff --git a/images/60-22.png b/images/60-22.png new file mode 100644 index 0000000..f19f6e7 Binary files /dev/null and b/images/60-22.png differ diff --git a/images/60-23.png b/images/60-23.png new file mode 100644 index 0000000..3514357 Binary files /dev/null and b/images/60-23.png differ diff --git a/images/60-24.png b/images/60-24.png new file mode 100644 index 0000000..ea1e691 Binary files /dev/null and b/images/60-24.png differ diff --git a/images/60-25.png b/images/60-25.png new file mode 100644 index 0000000..9ecb05e Binary files /dev/null and b/images/60-25.png differ diff --git a/images/60-26.png b/images/60-26.png new file mode 100644 index 0000000..343d3d3 Binary files /dev/null and b/images/60-26.png differ diff --git a/images/60-27.png b/images/60-27.png new file mode 100644 index 0000000..4cd6a98 Binary files /dev/null and b/images/60-27.png differ diff --git a/images/60-28.png b/images/60-28.png new file mode 100644 index 0000000..d67f337 Binary files /dev/null and b/images/60-28.png differ diff --git a/images/60-29.png b/images/60-29.png new file mode 100644 index 0000000..108ff58 Binary files /dev/null and b/images/60-29.png differ diff --git a/images/60-3.png b/images/60-3.png new file mode 100644 index 0000000..0cf48cb Binary files /dev/null and b/images/60-3.png differ diff --git a/images/60-30.png b/images/60-30.png new file mode 100644 index 0000000..108652e Binary files /dev/null and b/images/60-30.png differ diff --git a/images/60-31.png b/images/60-31.png new file mode 100644 index 0000000..f5655e4 Binary files /dev/null and b/images/60-31.png differ diff --git a/images/60-32.png b/images/60-32.png new file mode 100644 index 0000000..f6ecb8d Binary files /dev/null and b/images/60-32.png differ diff --git a/images/60-33.png b/images/60-33.png new file mode 100644 index 0000000..aa68986 Binary files /dev/null and b/images/60-33.png differ diff --git a/images/60-34.png b/images/60-34.png new file mode 100644 index 0000000..1d281e9 Binary files /dev/null and b/images/60-34.png differ diff --git a/images/60-35.png b/images/60-35.png new file mode 100644 index 0000000..7550a2f Binary files /dev/null and b/images/60-35.png differ diff --git a/images/60-36.png b/images/60-36.png new file mode 100644 index 0000000..b2ae7e2 Binary files /dev/null and b/images/60-36.png differ diff --git a/images/60-37.png b/images/60-37.png new file mode 100644 index 0000000..7016c7d Binary files /dev/null and b/images/60-37.png differ diff --git a/images/60-38.png b/images/60-38.png new file mode 100644 index 0000000..496bd7a Binary files /dev/null and b/images/60-38.png differ diff --git a/images/60-39.png b/images/60-39.png new file mode 100644 index 0000000..cbc562f Binary files /dev/null and b/images/60-39.png differ diff --git a/images/60-4.png b/images/60-4.png new file mode 100644 index 0000000..73bfbb6 Binary files /dev/null and b/images/60-4.png differ diff --git a/images/60-40.png b/images/60-40.png new file mode 100644 index 0000000..cf0a16a Binary files /dev/null and b/images/60-40.png differ diff --git a/images/60-41.png b/images/60-41.png new file mode 100644 index 0000000..5c060d5 Binary files /dev/null and b/images/60-41.png differ diff --git a/images/60-42.png b/images/60-42.png new file mode 100644 index 0000000..db734f6 Binary files /dev/null and b/images/60-42.png differ diff --git a/images/60-43.png b/images/60-43.png new file mode 100644 index 0000000..bed43d7 Binary files /dev/null and b/images/60-43.png differ diff --git a/images/60-44.png b/images/60-44.png new file mode 100644 index 0000000..b513b56 Binary files /dev/null and b/images/60-44.png differ diff --git a/images/60-45.png b/images/60-45.png new file mode 100644 index 0000000..da83e15 Binary files /dev/null and b/images/60-45.png differ diff --git a/images/60-46.png b/images/60-46.png new file mode 100644 index 0000000..1044e89 Binary files /dev/null and b/images/60-46.png differ diff --git a/images/60-47.png b/images/60-47.png new file mode 100644 index 0000000..8b24b47 Binary files /dev/null and b/images/60-47.png differ diff --git a/images/60-48.png b/images/60-48.png new file mode 100644 index 0000000..d7dea65 Binary files /dev/null and b/images/60-48.png differ diff --git a/images/60-49.png b/images/60-49.png new file mode 100644 index 0000000..5e8138b Binary files /dev/null and b/images/60-49.png differ diff --git a/images/60-5.png b/images/60-5.png new file mode 100644 index 0000000..6a3170c Binary files /dev/null and b/images/60-5.png differ diff --git a/images/60-50.png b/images/60-50.png new file mode 100644 index 0000000..4b97ada Binary files /dev/null and b/images/60-50.png differ diff --git a/images/60-51.png b/images/60-51.png new file mode 100644 index 0000000..a08dbc2 Binary files /dev/null and b/images/60-51.png differ diff --git a/images/60-52.png b/images/60-52.png new file mode 100644 index 0000000..d04dca5 Binary files /dev/null and b/images/60-52.png differ diff --git a/images/60-53.png b/images/60-53.png new file mode 100644 index 0000000..e03e7bf Binary files /dev/null and b/images/60-53.png differ diff --git a/images/60-54.png b/images/60-54.png new file mode 100644 index 0000000..2b89c9e Binary files /dev/null and b/images/60-54.png differ diff --git a/images/60-55.png b/images/60-55.png new file mode 100644 index 0000000..e1bca4d Binary files /dev/null and b/images/60-55.png differ diff --git a/images/60-56.png b/images/60-56.png new file mode 100644 index 0000000..544a362 Binary files /dev/null and b/images/60-56.png differ diff --git a/images/60-57.png b/images/60-57.png new file mode 100644 index 0000000..47733e3 Binary files /dev/null and b/images/60-57.png differ diff --git a/images/60-58.png b/images/60-58.png new file mode 100644 index 0000000..08d1e50 Binary files /dev/null and b/images/60-58.png differ diff --git a/images/60-59.png b/images/60-59.png new file mode 100644 index 0000000..be3f4a7 Binary files /dev/null and b/images/60-59.png differ diff --git a/images/60-6.png b/images/60-6.png new file mode 100644 index 0000000..8025f7b Binary files /dev/null and b/images/60-6.png differ diff --git a/images/60-60.png b/images/60-60.png new file mode 100644 index 0000000..20cba98 Binary files /dev/null and b/images/60-60.png differ diff --git a/images/60-61.png b/images/60-61.png new file mode 100644 index 0000000..0b6e3b3 Binary files /dev/null and b/images/60-61.png differ diff --git a/images/60-62.png b/images/60-62.png new file mode 100644 index 0000000..6e439c3 Binary files /dev/null and b/images/60-62.png differ diff --git a/images/60-63.png b/images/60-63.png new file mode 100644 index 0000000..3c911e7 Binary files /dev/null and b/images/60-63.png differ diff --git a/images/60-64.png b/images/60-64.png new file mode 100644 index 0000000..2032be5 Binary files /dev/null and b/images/60-64.png differ diff --git a/images/60-65.png b/images/60-65.png new file mode 100644 index 0000000..87c8c2a Binary files /dev/null and b/images/60-65.png differ diff --git a/images/60-66.png b/images/60-66.png new file mode 100644 index 0000000..dc80651 Binary files /dev/null and b/images/60-66.png differ diff --git a/images/60-67.png b/images/60-67.png new file mode 100644 index 0000000..025bd22 Binary files /dev/null and b/images/60-67.png differ diff --git a/images/60-68.png b/images/60-68.png new file mode 100644 index 0000000..0b11918 Binary files /dev/null and b/images/60-68.png differ diff --git a/images/60-69.png b/images/60-69.png new file mode 100644 index 0000000..d36becf Binary files /dev/null and b/images/60-69.png differ diff --git a/images/60-7.png b/images/60-7.png new file mode 100644 index 0000000..e6aab17 Binary files /dev/null and b/images/60-7.png differ diff --git a/images/60-8.png b/images/60-8.png new file mode 100644 index 0000000..30694b2 Binary files /dev/null and b/images/60-8.png differ diff --git a/images/60-9.png b/images/60-9.png new file mode 100644 index 0000000..3799b06 Binary files /dev/null and b/images/60-9.png differ diff --git a/images/61-0.png b/images/61-0.png new file mode 100644 index 0000000..1a81e1d Binary files /dev/null and b/images/61-0.png differ diff --git a/images/61-1.png b/images/61-1.png new file mode 100644 index 0000000..693f3bb Binary files /dev/null and b/images/61-1.png differ diff --git a/images/61-10.png b/images/61-10.png new file mode 100644 index 0000000..8000a1a Binary files /dev/null and b/images/61-10.png differ diff --git a/images/61-100.png b/images/61-100.png new file mode 100644 index 0000000..7c8fa64 Binary files /dev/null and b/images/61-100.png differ diff --git a/images/61-101.png b/images/61-101.png new file mode 100644 index 0000000..bcf0200 Binary files /dev/null and b/images/61-101.png differ diff --git a/images/61-102.png b/images/61-102.png new file mode 100644 index 0000000..a9fe1ca Binary files /dev/null and b/images/61-102.png differ diff --git a/images/61-103.png b/images/61-103.png new file mode 100644 index 0000000..0d1c915 Binary files /dev/null and b/images/61-103.png differ diff --git a/images/61-104.png b/images/61-104.png new file mode 100644 index 0000000..d6e6a61 Binary files /dev/null and b/images/61-104.png differ diff --git a/images/61-105.png b/images/61-105.png new file mode 100644 index 0000000..5ccb877 Binary files /dev/null and b/images/61-105.png differ diff --git a/images/61-106.png b/images/61-106.png new file mode 100644 index 0000000..7f9e367 Binary files /dev/null and b/images/61-106.png differ diff --git a/images/61-107.png b/images/61-107.png new file mode 100644 index 0000000..5f11207 Binary files /dev/null and b/images/61-107.png differ diff --git a/images/61-108.png b/images/61-108.png new file mode 100644 index 0000000..7518f32 Binary files /dev/null and b/images/61-108.png differ diff --git a/images/61-109.png b/images/61-109.png new file mode 100644 index 0000000..a0244ea Binary files /dev/null and b/images/61-109.png differ diff --git a/images/61-11.png b/images/61-11.png new file mode 100644 index 0000000..2625c7b Binary files /dev/null and b/images/61-11.png differ diff --git a/images/61-110.png b/images/61-110.png new file mode 100644 index 0000000..b945234 Binary files /dev/null and b/images/61-110.png differ diff --git a/images/61-111.png b/images/61-111.png new file mode 100644 index 0000000..e77f02f Binary files /dev/null and b/images/61-111.png differ diff --git a/images/61-112.png b/images/61-112.png new file mode 100644 index 0000000..4214559 Binary files /dev/null and b/images/61-112.png differ diff --git a/images/61-113.png b/images/61-113.png new file mode 100644 index 0000000..078c273 Binary files /dev/null and b/images/61-113.png differ diff --git a/images/61-114.png b/images/61-114.png new file mode 100644 index 0000000..4475844 Binary files /dev/null and b/images/61-114.png differ diff --git a/images/61-115.png b/images/61-115.png new file mode 100644 index 0000000..e09355e Binary files /dev/null and b/images/61-115.png differ diff --git a/images/61-116.png b/images/61-116.png new file mode 100644 index 0000000..6ad7000 Binary files /dev/null and b/images/61-116.png differ diff --git a/images/61-117.png b/images/61-117.png new file mode 100644 index 0000000..2508cd5 Binary files /dev/null and b/images/61-117.png differ diff --git a/images/61-118.png b/images/61-118.png new file mode 100644 index 0000000..ee70487 Binary files /dev/null and b/images/61-118.png differ diff --git a/images/61-119.png b/images/61-119.png new file mode 100644 index 0000000..4b38228 Binary files /dev/null and b/images/61-119.png differ diff --git a/images/61-12.png b/images/61-12.png new file mode 100644 index 0000000..ea93bba Binary files /dev/null and b/images/61-12.png differ diff --git a/images/61-120.png b/images/61-120.png new file mode 100644 index 0000000..4a1788d Binary files /dev/null and b/images/61-120.png differ diff --git a/images/61-121.png b/images/61-121.png new file mode 100644 index 0000000..35ab0f2 Binary files /dev/null and b/images/61-121.png differ diff --git a/images/61-122.png b/images/61-122.png new file mode 100644 index 0000000..0840f27 Binary files /dev/null and b/images/61-122.png differ diff --git a/images/61-123.png b/images/61-123.png new file mode 100644 index 0000000..8e2cb32 Binary files /dev/null and b/images/61-123.png differ diff --git a/images/61-124.png b/images/61-124.png new file mode 100644 index 0000000..91cf1cf Binary files /dev/null and b/images/61-124.png differ diff --git a/images/61-125.png b/images/61-125.png new file mode 100644 index 0000000..742dc89 Binary files /dev/null and b/images/61-125.png differ diff --git a/images/61-126.png b/images/61-126.png new file mode 100644 index 0000000..003b65e Binary files /dev/null and b/images/61-126.png differ diff --git a/images/61-127.png b/images/61-127.png new file mode 100644 index 0000000..8057d51 Binary files /dev/null and b/images/61-127.png differ diff --git a/images/61-128.png b/images/61-128.png new file mode 100644 index 0000000..46296c2 Binary files /dev/null and b/images/61-128.png differ diff --git a/images/61-129.png b/images/61-129.png new file mode 100644 index 0000000..8dc330d Binary files /dev/null and b/images/61-129.png differ diff --git a/images/61-13.png b/images/61-13.png new file mode 100644 index 0000000..b1a5e8f Binary files /dev/null and b/images/61-13.png differ diff --git a/images/61-130.png b/images/61-130.png new file mode 100644 index 0000000..2775fd7 Binary files /dev/null and b/images/61-130.png differ diff --git a/images/61-131.png b/images/61-131.png new file mode 100644 index 0000000..500f57f Binary files /dev/null and b/images/61-131.png differ diff --git a/images/61-132.png b/images/61-132.png new file mode 100644 index 0000000..9be988a Binary files /dev/null and b/images/61-132.png differ diff --git a/images/61-133.png b/images/61-133.png new file mode 100644 index 0000000..c554d70 Binary files /dev/null and b/images/61-133.png differ diff --git a/images/61-134.png b/images/61-134.png new file mode 100644 index 0000000..ae8b10e Binary files /dev/null and b/images/61-134.png differ diff --git a/images/61-135.png b/images/61-135.png new file mode 100644 index 0000000..25c24a3 Binary files /dev/null and b/images/61-135.png differ diff --git a/images/61-136.png b/images/61-136.png new file mode 100644 index 0000000..a2a4470 Binary files /dev/null and b/images/61-136.png differ diff --git a/images/61-137.png b/images/61-137.png new file mode 100644 index 0000000..f198766 Binary files /dev/null and b/images/61-137.png differ diff --git a/images/61-138.png b/images/61-138.png new file mode 100644 index 0000000..7710267 Binary files /dev/null and b/images/61-138.png differ diff --git a/images/61-139.png b/images/61-139.png new file mode 100644 index 0000000..932fdce Binary files /dev/null and b/images/61-139.png differ diff --git a/images/61-14.png b/images/61-14.png new file mode 100644 index 0000000..29a8e5d Binary files /dev/null and b/images/61-14.png differ diff --git a/images/61-140.png b/images/61-140.png new file mode 100644 index 0000000..69e2768 Binary files /dev/null and b/images/61-140.png differ diff --git a/images/61-141.png b/images/61-141.png new file mode 100644 index 0000000..d804f25 Binary files /dev/null and b/images/61-141.png differ diff --git a/images/61-142.png b/images/61-142.png new file mode 100644 index 0000000..a8b1fde Binary files /dev/null and b/images/61-142.png differ diff --git a/images/61-143.png b/images/61-143.png new file mode 100644 index 0000000..62a7574 Binary files /dev/null and b/images/61-143.png differ diff --git a/images/61-144.png b/images/61-144.png new file mode 100644 index 0000000..73a8e0d Binary files /dev/null and b/images/61-144.png differ diff --git a/images/61-145.png b/images/61-145.png new file mode 100644 index 0000000..f081e29 Binary files /dev/null and b/images/61-145.png differ diff --git a/images/61-146.png b/images/61-146.png new file mode 100644 index 0000000..34c13d2 Binary files /dev/null and b/images/61-146.png differ diff --git a/images/61-147.png b/images/61-147.png new file mode 100644 index 0000000..d233145 Binary files /dev/null and b/images/61-147.png differ diff --git a/images/61-148.png b/images/61-148.png new file mode 100644 index 0000000..ae31bb3 Binary files /dev/null and b/images/61-148.png differ diff --git a/images/61-149.png b/images/61-149.png new file mode 100644 index 0000000..6632bba Binary files /dev/null and b/images/61-149.png differ diff --git a/images/61-15.png b/images/61-15.png new file mode 100644 index 0000000..7784707 Binary files /dev/null and b/images/61-15.png differ diff --git a/images/61-150.png b/images/61-150.png new file mode 100644 index 0000000..9907208 Binary files /dev/null and b/images/61-150.png differ diff --git a/images/61-151.png b/images/61-151.png new file mode 100644 index 0000000..894c9d1 Binary files /dev/null and b/images/61-151.png differ diff --git a/images/61-152.png b/images/61-152.png new file mode 100644 index 0000000..406a376 Binary files /dev/null and b/images/61-152.png differ diff --git a/images/61-153.png b/images/61-153.png new file mode 100644 index 0000000..a22a1c0 Binary files /dev/null and b/images/61-153.png differ diff --git a/images/61-154.png b/images/61-154.png new file mode 100644 index 0000000..e960980 Binary files /dev/null and b/images/61-154.png differ diff --git a/images/61-155.png b/images/61-155.png new file mode 100644 index 0000000..31b3b51 Binary files /dev/null and b/images/61-155.png differ diff --git a/images/61-156.png b/images/61-156.png new file mode 100644 index 0000000..23d9b59 Binary files /dev/null and b/images/61-156.png differ diff --git a/images/61-157.png b/images/61-157.png new file mode 100644 index 0000000..cb3c466 Binary files /dev/null and b/images/61-157.png differ diff --git a/images/61-158.png b/images/61-158.png new file mode 100644 index 0000000..cfd49d9 Binary files /dev/null and b/images/61-158.png differ diff --git a/images/61-159.png b/images/61-159.png new file mode 100644 index 0000000..27546cf Binary files /dev/null and b/images/61-159.png differ diff --git a/images/61-16.png b/images/61-16.png new file mode 100644 index 0000000..e0c1e9e Binary files /dev/null and b/images/61-16.png differ diff --git a/images/61-160.png b/images/61-160.png new file mode 100644 index 0000000..c003130 Binary files /dev/null and b/images/61-160.png differ diff --git a/images/61-161.png b/images/61-161.png new file mode 100644 index 0000000..e19311e Binary files /dev/null and b/images/61-161.png differ diff --git a/images/61-162.png b/images/61-162.png new file mode 100644 index 0000000..b6cca60 Binary files /dev/null and b/images/61-162.png differ diff --git a/images/61-163.png b/images/61-163.png new file mode 100644 index 0000000..8d8a4ab Binary files /dev/null and b/images/61-163.png differ diff --git a/images/61-164.png b/images/61-164.png new file mode 100644 index 0000000..3d12209 Binary files /dev/null and b/images/61-164.png differ diff --git a/images/61-165.png b/images/61-165.png new file mode 100644 index 0000000..d8877f5 Binary files /dev/null and b/images/61-165.png differ diff --git a/images/61-166.png b/images/61-166.png new file mode 100644 index 0000000..8312094 Binary files /dev/null and b/images/61-166.png differ diff --git a/images/61-167.png b/images/61-167.png new file mode 100644 index 0000000..09b3ff5 Binary files /dev/null and b/images/61-167.png differ diff --git a/images/61-168.png b/images/61-168.png new file mode 100644 index 0000000..7f14e4c Binary files /dev/null and b/images/61-168.png differ diff --git a/images/61-169.png b/images/61-169.png new file mode 100644 index 0000000..e212ab5 Binary files /dev/null and b/images/61-169.png differ diff --git a/images/61-17.png b/images/61-17.png new file mode 100644 index 0000000..202459e Binary files /dev/null and b/images/61-17.png differ diff --git a/images/61-170.png b/images/61-170.png new file mode 100644 index 0000000..69a5d14 Binary files /dev/null and b/images/61-170.png differ diff --git a/images/61-171.png b/images/61-171.png new file mode 100644 index 0000000..4003c50 Binary files /dev/null and b/images/61-171.png differ diff --git a/images/61-172.png b/images/61-172.png new file mode 100644 index 0000000..1b6d043 Binary files /dev/null and b/images/61-172.png differ diff --git a/images/61-173.png b/images/61-173.png new file mode 100644 index 0000000..37a7257 Binary files /dev/null and b/images/61-173.png differ diff --git a/images/61-174.png b/images/61-174.png new file mode 100644 index 0000000..daafde8 Binary files /dev/null and b/images/61-174.png differ diff --git a/images/61-175.png b/images/61-175.png new file mode 100644 index 0000000..e12f182 Binary files /dev/null and b/images/61-175.png differ diff --git a/images/61-176.png b/images/61-176.png new file mode 100644 index 0000000..7bd25c7 Binary files /dev/null and b/images/61-176.png differ diff --git a/images/61-177.png b/images/61-177.png new file mode 100644 index 0000000..d9b1b54 Binary files /dev/null and b/images/61-177.png differ diff --git a/images/61-178.png b/images/61-178.png new file mode 100644 index 0000000..ea93b76 Binary files /dev/null and b/images/61-178.png differ diff --git a/images/61-179.png b/images/61-179.png new file mode 100644 index 0000000..6cbfbed Binary files /dev/null and b/images/61-179.png differ diff --git a/images/61-18.png b/images/61-18.png new file mode 100644 index 0000000..a0d8bac Binary files /dev/null and b/images/61-18.png differ diff --git a/images/61-180.png b/images/61-180.png new file mode 100644 index 0000000..5d0238c Binary files /dev/null and b/images/61-180.png differ diff --git a/images/61-181.png b/images/61-181.png new file mode 100644 index 0000000..4b564a7 Binary files /dev/null and b/images/61-181.png differ diff --git a/images/61-182.png b/images/61-182.png new file mode 100644 index 0000000..80af89b Binary files /dev/null and b/images/61-182.png differ diff --git a/images/61-183.png b/images/61-183.png new file mode 100644 index 0000000..96fa104 Binary files /dev/null and b/images/61-183.png differ diff --git a/images/61-184.png b/images/61-184.png new file mode 100644 index 0000000..c33b93b Binary files /dev/null and b/images/61-184.png differ diff --git a/images/61-185.png b/images/61-185.png new file mode 100644 index 0000000..efedeb8 Binary files /dev/null and b/images/61-185.png differ diff --git a/images/61-186.png b/images/61-186.png new file mode 100644 index 0000000..99ffcde Binary files /dev/null and b/images/61-186.png differ diff --git a/images/61-187.png b/images/61-187.png new file mode 100644 index 0000000..6daefef Binary files /dev/null and b/images/61-187.png differ diff --git a/images/61-188.png b/images/61-188.png new file mode 100644 index 0000000..66c20ca Binary files /dev/null and b/images/61-188.png differ diff --git a/images/61-189.png b/images/61-189.png new file mode 100644 index 0000000..f6be8e6 Binary files /dev/null and b/images/61-189.png differ diff --git a/images/61-19.png b/images/61-19.png new file mode 100644 index 0000000..f6a49fb Binary files /dev/null and b/images/61-19.png differ diff --git a/images/61-190.png b/images/61-190.png new file mode 100644 index 0000000..ab97735 Binary files /dev/null and b/images/61-190.png differ diff --git a/images/61-191.png b/images/61-191.png new file mode 100644 index 0000000..b6a28a3 Binary files /dev/null and b/images/61-191.png differ diff --git a/images/61-192.png b/images/61-192.png new file mode 100644 index 0000000..eeefc6e Binary files /dev/null and b/images/61-192.png differ diff --git a/images/61-193.png b/images/61-193.png new file mode 100644 index 0000000..4ceab9a Binary files /dev/null and b/images/61-193.png differ diff --git a/images/61-194.png b/images/61-194.png new file mode 100644 index 0000000..a4f350d Binary files /dev/null and b/images/61-194.png differ diff --git a/images/61-195.png b/images/61-195.png new file mode 100644 index 0000000..35fc910 Binary files /dev/null and b/images/61-195.png differ diff --git a/images/61-196.png b/images/61-196.png new file mode 100644 index 0000000..68a3969 Binary files /dev/null and b/images/61-196.png differ diff --git a/images/61-197.png b/images/61-197.png new file mode 100644 index 0000000..d1228fe Binary files /dev/null and b/images/61-197.png differ diff --git a/images/61-198.png b/images/61-198.png new file mode 100644 index 0000000..acfcd8e Binary files /dev/null and b/images/61-198.png differ diff --git a/images/61-199.png b/images/61-199.png new file mode 100644 index 0000000..d55de4e Binary files /dev/null and b/images/61-199.png differ diff --git a/images/61-2.png b/images/61-2.png new file mode 100644 index 0000000..244a8df Binary files /dev/null and b/images/61-2.png differ diff --git a/images/61-20.png b/images/61-20.png new file mode 100644 index 0000000..0dd9e72 Binary files /dev/null and b/images/61-20.png differ diff --git a/images/61-200.png b/images/61-200.png new file mode 100644 index 0000000..2d5fe55 Binary files /dev/null and b/images/61-200.png differ diff --git a/images/61-201.png b/images/61-201.png new file mode 100644 index 0000000..499b62a Binary files /dev/null and b/images/61-201.png differ diff --git a/images/61-202.png b/images/61-202.png new file mode 100644 index 0000000..5188075 Binary files /dev/null and b/images/61-202.png differ diff --git a/images/61-203.png b/images/61-203.png new file mode 100644 index 0000000..a182513 Binary files /dev/null and b/images/61-203.png differ diff --git a/images/61-204.png b/images/61-204.png new file mode 100644 index 0000000..7ac71a3 Binary files /dev/null and b/images/61-204.png differ diff --git a/images/61-205.png b/images/61-205.png new file mode 100644 index 0000000..bce9de8 Binary files /dev/null and b/images/61-205.png differ diff --git a/images/61-206.png b/images/61-206.png new file mode 100644 index 0000000..2bd80d3 Binary files /dev/null and b/images/61-206.png differ diff --git a/images/61-207.png b/images/61-207.png new file mode 100644 index 0000000..ab39bf1 Binary files /dev/null and b/images/61-207.png differ diff --git a/images/61-208.png b/images/61-208.png new file mode 100644 index 0000000..cd02332 Binary files /dev/null and b/images/61-208.png differ diff --git a/images/61-209.png b/images/61-209.png new file mode 100644 index 0000000..1987047 Binary files /dev/null and b/images/61-209.png differ diff --git a/images/61-21.png b/images/61-21.png new file mode 100644 index 0000000..214c395 Binary files /dev/null and b/images/61-21.png differ diff --git a/images/61-210.png b/images/61-210.png new file mode 100644 index 0000000..5a67808 Binary files /dev/null and b/images/61-210.png differ diff --git a/images/61-211.png b/images/61-211.png new file mode 100644 index 0000000..7716222 Binary files /dev/null and b/images/61-211.png differ diff --git a/images/61-212.png b/images/61-212.png new file mode 100644 index 0000000..361392c Binary files /dev/null and b/images/61-212.png differ diff --git a/images/61-213.png b/images/61-213.png new file mode 100644 index 0000000..74bf8ff Binary files /dev/null and b/images/61-213.png differ diff --git a/images/61-214.png b/images/61-214.png new file mode 100644 index 0000000..8d1fe29 Binary files /dev/null and b/images/61-214.png differ diff --git a/images/61-215.png b/images/61-215.png new file mode 100644 index 0000000..8028ca7 Binary files /dev/null and b/images/61-215.png differ diff --git a/images/61-216.png b/images/61-216.png new file mode 100644 index 0000000..9d6190c Binary files /dev/null and b/images/61-216.png differ diff --git a/images/61-217.png b/images/61-217.png new file mode 100644 index 0000000..fba06d5 Binary files /dev/null and b/images/61-217.png differ diff --git a/images/61-218.png b/images/61-218.png new file mode 100644 index 0000000..93a0b4f Binary files /dev/null and b/images/61-218.png differ diff --git a/images/61-219.png b/images/61-219.png new file mode 100644 index 0000000..fbd82b2 Binary files /dev/null and b/images/61-219.png differ diff --git a/images/61-22.png b/images/61-22.png new file mode 100644 index 0000000..2b11ee5 Binary files /dev/null and b/images/61-22.png differ diff --git a/images/61-220.png b/images/61-220.png new file mode 100644 index 0000000..6d4d77a Binary files /dev/null and b/images/61-220.png differ diff --git a/images/61-221.png b/images/61-221.png new file mode 100644 index 0000000..ff9970f Binary files /dev/null and b/images/61-221.png differ diff --git a/images/61-222.png b/images/61-222.png new file mode 100644 index 0000000..2d4bbf8 Binary files /dev/null and b/images/61-222.png differ diff --git a/images/61-223.png b/images/61-223.png new file mode 100644 index 0000000..9ede84d Binary files /dev/null and b/images/61-223.png differ diff --git a/images/61-224.png b/images/61-224.png new file mode 100644 index 0000000..6ce83df Binary files /dev/null and b/images/61-224.png differ diff --git a/images/61-225.png b/images/61-225.png new file mode 100644 index 0000000..47a9197 Binary files /dev/null and b/images/61-225.png differ diff --git a/images/61-226.png b/images/61-226.png new file mode 100644 index 0000000..7235e51 Binary files /dev/null and b/images/61-226.png differ diff --git a/images/61-227.png b/images/61-227.png new file mode 100644 index 0000000..77072c7 Binary files /dev/null and b/images/61-227.png differ diff --git a/images/61-228.png b/images/61-228.png new file mode 100644 index 0000000..92d83b9 Binary files /dev/null and b/images/61-228.png differ diff --git a/images/61-229.png b/images/61-229.png new file mode 100644 index 0000000..36003bf Binary files /dev/null and b/images/61-229.png differ diff --git a/images/61-23.png b/images/61-23.png new file mode 100644 index 0000000..984492a Binary files /dev/null and b/images/61-23.png differ diff --git a/images/61-230.png b/images/61-230.png new file mode 100644 index 0000000..355dee1 Binary files /dev/null and b/images/61-230.png differ diff --git a/images/61-231.png b/images/61-231.png new file mode 100644 index 0000000..84cb092 Binary files /dev/null and b/images/61-231.png differ diff --git a/images/61-232.png b/images/61-232.png new file mode 100644 index 0000000..a79757a Binary files /dev/null and b/images/61-232.png differ diff --git a/images/61-233.png b/images/61-233.png new file mode 100644 index 0000000..16c9c93 Binary files /dev/null and b/images/61-233.png differ diff --git a/images/61-234.png b/images/61-234.png new file mode 100644 index 0000000..a0bfd4e Binary files /dev/null and b/images/61-234.png differ diff --git a/images/61-235.png b/images/61-235.png new file mode 100644 index 0000000..7ac1bee Binary files /dev/null and b/images/61-235.png differ diff --git a/images/61-236.png b/images/61-236.png new file mode 100644 index 0000000..0b6ee58 Binary files /dev/null and b/images/61-236.png differ diff --git a/images/61-237.png b/images/61-237.png new file mode 100644 index 0000000..cfb1ee4 Binary files /dev/null and b/images/61-237.png differ diff --git a/images/61-238.png b/images/61-238.png new file mode 100644 index 0000000..5817548 Binary files /dev/null and b/images/61-238.png differ diff --git a/images/61-239.png b/images/61-239.png new file mode 100644 index 0000000..2c605da Binary files /dev/null and b/images/61-239.png differ diff --git a/images/61-24.png b/images/61-24.png new file mode 100644 index 0000000..5b44c2b Binary files /dev/null and b/images/61-24.png differ diff --git a/images/61-240.png b/images/61-240.png new file mode 100644 index 0000000..e822a62 Binary files /dev/null and b/images/61-240.png differ diff --git a/images/61-241.png b/images/61-241.png new file mode 100644 index 0000000..b0981f6 Binary files /dev/null and b/images/61-241.png differ diff --git a/images/61-242.png b/images/61-242.png new file mode 100644 index 0000000..9b4d062 Binary files /dev/null and b/images/61-242.png differ diff --git a/images/61-243.png b/images/61-243.png new file mode 100644 index 0000000..9c8ab4d Binary files /dev/null and b/images/61-243.png differ diff --git a/images/61-25.png b/images/61-25.png new file mode 100644 index 0000000..3fc3562 Binary files /dev/null and b/images/61-25.png differ diff --git a/images/61-26.png b/images/61-26.png new file mode 100644 index 0000000..622cbf0 Binary files /dev/null and b/images/61-26.png differ diff --git a/images/61-27.png b/images/61-27.png new file mode 100644 index 0000000..976ecd8 Binary files /dev/null and b/images/61-27.png differ diff --git a/images/61-28.png b/images/61-28.png new file mode 100644 index 0000000..9160798 Binary files /dev/null and b/images/61-28.png differ diff --git a/images/61-29.png b/images/61-29.png new file mode 100644 index 0000000..8f0da21 Binary files /dev/null and b/images/61-29.png differ diff --git a/images/61-3.png b/images/61-3.png new file mode 100644 index 0000000..25d77ab Binary files /dev/null and b/images/61-3.png differ diff --git a/images/61-30.png b/images/61-30.png new file mode 100644 index 0000000..db010a0 Binary files /dev/null and b/images/61-30.png differ diff --git a/images/61-31.png b/images/61-31.png new file mode 100644 index 0000000..3ca8620 Binary files /dev/null and b/images/61-31.png differ diff --git a/images/61-32.png b/images/61-32.png new file mode 100644 index 0000000..2e29f47 Binary files /dev/null and b/images/61-32.png differ diff --git a/images/61-33.png b/images/61-33.png new file mode 100644 index 0000000..467dd2f Binary files /dev/null and b/images/61-33.png differ diff --git a/images/61-34.png b/images/61-34.png new file mode 100644 index 0000000..32f7f2b Binary files /dev/null and b/images/61-34.png differ diff --git a/images/61-35.png b/images/61-35.png new file mode 100644 index 0000000..5414dc2 Binary files /dev/null and b/images/61-35.png differ diff --git a/images/61-36.png b/images/61-36.png new file mode 100644 index 0000000..6a62695 Binary files /dev/null and b/images/61-36.png differ diff --git a/images/61-37.png b/images/61-37.png new file mode 100644 index 0000000..1bd9298 Binary files /dev/null and b/images/61-37.png differ diff --git a/images/61-38.png b/images/61-38.png new file mode 100644 index 0000000..ee0503a Binary files /dev/null and b/images/61-38.png differ diff --git a/images/61-39.png b/images/61-39.png new file mode 100644 index 0000000..d6d12b7 Binary files /dev/null and b/images/61-39.png differ diff --git a/images/61-4.png b/images/61-4.png new file mode 100644 index 0000000..f7adf3f Binary files /dev/null and b/images/61-4.png differ diff --git a/images/61-40.png b/images/61-40.png new file mode 100644 index 0000000..47442d8 Binary files /dev/null and b/images/61-40.png differ diff --git a/images/61-41.png b/images/61-41.png new file mode 100644 index 0000000..59e1bb2 Binary files /dev/null and b/images/61-41.png differ diff --git a/images/61-42.png b/images/61-42.png new file mode 100644 index 0000000..43ad8c6 Binary files /dev/null and b/images/61-42.png differ diff --git a/images/61-43.png b/images/61-43.png new file mode 100644 index 0000000..f457f3a Binary files /dev/null and b/images/61-43.png differ diff --git a/images/61-44.png b/images/61-44.png new file mode 100644 index 0000000..e8db2ce Binary files /dev/null and b/images/61-44.png differ diff --git a/images/61-45.png b/images/61-45.png new file mode 100644 index 0000000..d9b865e Binary files /dev/null and b/images/61-45.png differ diff --git a/images/61-46.png b/images/61-46.png new file mode 100644 index 0000000..fc98d7a Binary files /dev/null and b/images/61-46.png differ diff --git a/images/61-47.png b/images/61-47.png new file mode 100644 index 0000000..0aa13cf Binary files /dev/null and b/images/61-47.png differ diff --git a/images/61-48.png b/images/61-48.png new file mode 100644 index 0000000..b1db184 Binary files /dev/null and b/images/61-48.png differ diff --git a/images/61-49.png b/images/61-49.png new file mode 100644 index 0000000..1dabea8 Binary files /dev/null and b/images/61-49.png differ diff --git a/images/61-5.png b/images/61-5.png new file mode 100644 index 0000000..1c51a39 Binary files /dev/null and b/images/61-5.png differ diff --git a/images/61-50.png b/images/61-50.png new file mode 100644 index 0000000..3e21c43 Binary files /dev/null and b/images/61-50.png differ diff --git a/images/61-51.png b/images/61-51.png new file mode 100644 index 0000000..49abac6 Binary files /dev/null and b/images/61-51.png differ diff --git a/images/61-52.png b/images/61-52.png new file mode 100644 index 0000000..2436ae4 Binary files /dev/null and b/images/61-52.png differ diff --git a/images/61-53.png b/images/61-53.png new file mode 100644 index 0000000..afc8100 Binary files /dev/null and b/images/61-53.png differ diff --git a/images/61-54.png b/images/61-54.png new file mode 100644 index 0000000..3ed3c08 Binary files /dev/null and b/images/61-54.png differ diff --git a/images/61-55.png b/images/61-55.png new file mode 100644 index 0000000..362d855 Binary files /dev/null and b/images/61-55.png differ diff --git a/images/61-56.png b/images/61-56.png new file mode 100644 index 0000000..26fc28d Binary files /dev/null and b/images/61-56.png differ diff --git a/images/61-57.png b/images/61-57.png new file mode 100644 index 0000000..7a46693 Binary files /dev/null and b/images/61-57.png differ diff --git a/images/61-58.png b/images/61-58.png new file mode 100644 index 0000000..e930971 Binary files /dev/null and b/images/61-58.png differ diff --git a/images/61-59.png b/images/61-59.png new file mode 100644 index 0000000..80b1c66 Binary files /dev/null and b/images/61-59.png differ diff --git a/images/61-6.png b/images/61-6.png new file mode 100644 index 0000000..a1f32e3 Binary files /dev/null and b/images/61-6.png differ diff --git a/images/61-60.png b/images/61-60.png new file mode 100644 index 0000000..1993c51 Binary files /dev/null and b/images/61-60.png differ diff --git a/images/61-61.png b/images/61-61.png new file mode 100644 index 0000000..c1139af Binary files /dev/null and b/images/61-61.png differ diff --git a/images/61-62.png b/images/61-62.png new file mode 100644 index 0000000..faffea1 Binary files /dev/null and b/images/61-62.png differ diff --git a/images/61-63.png b/images/61-63.png new file mode 100644 index 0000000..f1bc36d Binary files /dev/null and b/images/61-63.png differ diff --git a/images/61-64.png b/images/61-64.png new file mode 100644 index 0000000..1ff21dc Binary files /dev/null and b/images/61-64.png differ diff --git a/images/61-65.png b/images/61-65.png new file mode 100644 index 0000000..fd3561f Binary files /dev/null and b/images/61-65.png differ diff --git a/images/61-66.png b/images/61-66.png new file mode 100644 index 0000000..8700949 Binary files /dev/null and b/images/61-66.png differ diff --git a/images/61-67.png b/images/61-67.png new file mode 100644 index 0000000..15cca55 Binary files /dev/null and b/images/61-67.png differ diff --git a/images/61-68.png b/images/61-68.png new file mode 100644 index 0000000..40ba90c Binary files /dev/null and b/images/61-68.png differ diff --git a/images/61-69.png b/images/61-69.png new file mode 100644 index 0000000..a368d10 Binary files /dev/null and b/images/61-69.png differ diff --git a/images/61-7.png b/images/61-7.png new file mode 100644 index 0000000..225574d Binary files /dev/null and b/images/61-7.png differ diff --git a/images/61-70.png b/images/61-70.png new file mode 100644 index 0000000..d6abe64 Binary files /dev/null and b/images/61-70.png differ diff --git a/images/61-71.png b/images/61-71.png new file mode 100644 index 0000000..c130576 Binary files /dev/null and b/images/61-71.png differ diff --git a/images/61-72.png b/images/61-72.png new file mode 100644 index 0000000..d5c4b9f Binary files /dev/null and b/images/61-72.png differ diff --git a/images/61-73.png b/images/61-73.png new file mode 100644 index 0000000..335277b Binary files /dev/null and b/images/61-73.png differ diff --git a/images/61-74.png b/images/61-74.png new file mode 100644 index 0000000..ea2ef52 Binary files /dev/null and b/images/61-74.png differ diff --git a/images/61-75.png b/images/61-75.png new file mode 100644 index 0000000..b446a58 Binary files /dev/null and b/images/61-75.png differ diff --git a/images/61-76.png b/images/61-76.png new file mode 100644 index 0000000..b5bb1cd Binary files /dev/null and b/images/61-76.png differ diff --git a/images/61-77.png b/images/61-77.png new file mode 100644 index 0000000..58c01c0 Binary files /dev/null and b/images/61-77.png differ diff --git a/images/61-78.png b/images/61-78.png new file mode 100644 index 0000000..3b2e8d3 Binary files /dev/null and b/images/61-78.png differ diff --git a/images/61-79.png b/images/61-79.png new file mode 100644 index 0000000..f55f4c2 Binary files /dev/null and b/images/61-79.png differ diff --git a/images/61-8.png b/images/61-8.png new file mode 100644 index 0000000..7648c89 Binary files /dev/null and b/images/61-8.png differ diff --git a/images/61-80.png b/images/61-80.png new file mode 100644 index 0000000..3f5c5d9 Binary files /dev/null and b/images/61-80.png differ diff --git a/images/61-81.png b/images/61-81.png new file mode 100644 index 0000000..7fd398a Binary files /dev/null and b/images/61-81.png differ diff --git a/images/61-82.png b/images/61-82.png new file mode 100644 index 0000000..0ab0453 Binary files /dev/null and b/images/61-82.png differ diff --git a/images/61-83.png b/images/61-83.png new file mode 100644 index 0000000..6493a4e Binary files /dev/null and b/images/61-83.png differ diff --git a/images/61-84.png b/images/61-84.png new file mode 100644 index 0000000..47a4293 Binary files /dev/null and b/images/61-84.png differ diff --git a/images/61-85.png b/images/61-85.png new file mode 100644 index 0000000..23b260c Binary files /dev/null and b/images/61-85.png differ diff --git a/images/61-86.png b/images/61-86.png new file mode 100644 index 0000000..5876982 Binary files /dev/null and b/images/61-86.png differ diff --git a/images/61-87.png b/images/61-87.png new file mode 100644 index 0000000..38e3828 Binary files /dev/null and b/images/61-87.png differ diff --git a/images/61-88.png b/images/61-88.png new file mode 100644 index 0000000..1298c11 Binary files /dev/null and b/images/61-88.png differ diff --git a/images/61-89.png b/images/61-89.png new file mode 100644 index 0000000..3f180e8 Binary files /dev/null and b/images/61-89.png differ diff --git a/images/61-9.png b/images/61-9.png new file mode 100644 index 0000000..b93ecb8 Binary files /dev/null and b/images/61-9.png differ diff --git a/images/61-90.png b/images/61-90.png new file mode 100644 index 0000000..0d61a34 Binary files /dev/null and b/images/61-90.png differ diff --git a/images/61-91.png b/images/61-91.png new file mode 100644 index 0000000..48474a2 Binary files /dev/null and b/images/61-91.png differ diff --git a/images/61-92.png b/images/61-92.png new file mode 100644 index 0000000..4ea64fb Binary files /dev/null and b/images/61-92.png differ diff --git a/images/61-93.png b/images/61-93.png new file mode 100644 index 0000000..ac8c09f Binary files /dev/null and b/images/61-93.png differ diff --git a/images/61-94.png b/images/61-94.png new file mode 100644 index 0000000..192448b Binary files /dev/null and b/images/61-94.png differ diff --git a/images/61-95.png b/images/61-95.png new file mode 100644 index 0000000..2b7e67a Binary files /dev/null and b/images/61-95.png differ diff --git a/images/61-96.png b/images/61-96.png new file mode 100644 index 0000000..d9594ad Binary files /dev/null and b/images/61-96.png differ diff --git a/images/61-97.png b/images/61-97.png new file mode 100644 index 0000000..3d43904 Binary files /dev/null and b/images/61-97.png differ diff --git a/images/61-98.png b/images/61-98.png new file mode 100644 index 0000000..73c479a Binary files /dev/null and b/images/61-98.png differ diff --git a/images/61-99.png b/images/61-99.png new file mode 100644 index 0000000..6729a3c Binary files /dev/null and b/images/61-99.png differ diff --git a/images/62-0.png b/images/62-0.png new file mode 100644 index 0000000..d825082 Binary files /dev/null and b/images/62-0.png differ diff --git a/images/62-1.png b/images/62-1.png new file mode 100644 index 0000000..0a37a39 Binary files /dev/null and b/images/62-1.png differ diff --git a/images/62-10.png b/images/62-10.png new file mode 100644 index 0000000..257c7b6 Binary files /dev/null and b/images/62-10.png differ diff --git a/images/62-11.png b/images/62-11.png new file mode 100644 index 0000000..8d80bac Binary files /dev/null and b/images/62-11.png differ diff --git a/images/62-12.png b/images/62-12.png new file mode 100644 index 0000000..aa26a7d Binary files /dev/null and b/images/62-12.png differ diff --git a/images/62-13.png b/images/62-13.png new file mode 100644 index 0000000..92ea240 Binary files /dev/null and b/images/62-13.png differ diff --git a/images/62-14.png b/images/62-14.png new file mode 100644 index 0000000..c15d4c1 Binary files /dev/null and b/images/62-14.png differ diff --git a/images/62-15.png b/images/62-15.png new file mode 100644 index 0000000..c717126 Binary files /dev/null and b/images/62-15.png differ diff --git a/images/62-16.png b/images/62-16.png new file mode 100644 index 0000000..e730ce9 Binary files /dev/null and b/images/62-16.png differ diff --git a/images/62-17.png b/images/62-17.png new file mode 100644 index 0000000..4dd32b5 Binary files /dev/null and b/images/62-17.png differ diff --git a/images/62-18.png b/images/62-18.png new file mode 100644 index 0000000..ddd0a98 Binary files /dev/null and b/images/62-18.png differ diff --git a/images/62-2.png b/images/62-2.png new file mode 100644 index 0000000..9298ce0 Binary files /dev/null and b/images/62-2.png differ diff --git a/images/62-3.png b/images/62-3.png new file mode 100644 index 0000000..518f4eb Binary files /dev/null and b/images/62-3.png differ diff --git a/images/62-4.png b/images/62-4.png new file mode 100644 index 0000000..0a1583f Binary files /dev/null and b/images/62-4.png differ diff --git a/images/62-5.png b/images/62-5.png new file mode 100644 index 0000000..f65c198 Binary files /dev/null and b/images/62-5.png differ diff --git a/images/62-6.png b/images/62-6.png new file mode 100644 index 0000000..42f6663 Binary files /dev/null and b/images/62-6.png differ diff --git a/images/62-7.png b/images/62-7.png new file mode 100644 index 0000000..b174c92 Binary files /dev/null and b/images/62-7.png differ diff --git a/images/62-8.png b/images/62-8.png new file mode 100644 index 0000000..ca9a7a9 Binary files /dev/null and b/images/62-8.png differ diff --git a/images/62-9.png b/images/62-9.png new file mode 100644 index 0000000..b34396e Binary files /dev/null and b/images/62-9.png differ diff --git a/images/63-0.png b/images/63-0.png new file mode 100644 index 0000000..39988b2 Binary files /dev/null and b/images/63-0.png differ diff --git a/images/63-1.png b/images/63-1.png new file mode 100644 index 0000000..45147dd Binary files /dev/null and b/images/63-1.png differ diff --git a/images/63-10.png b/images/63-10.png new file mode 100644 index 0000000..f7f7947 Binary files /dev/null and b/images/63-10.png differ diff --git a/images/63-11.png b/images/63-11.png new file mode 100644 index 0000000..87d8609 Binary files /dev/null and b/images/63-11.png differ diff --git a/images/63-12.png b/images/63-12.png new file mode 100644 index 0000000..0cf39c2 Binary files /dev/null and b/images/63-12.png differ diff --git a/images/63-13.png b/images/63-13.png new file mode 100644 index 0000000..ce9aa0c Binary files /dev/null and b/images/63-13.png differ diff --git a/images/63-14.png b/images/63-14.png new file mode 100644 index 0000000..c4ecb8f Binary files /dev/null and b/images/63-14.png differ diff --git a/images/63-15.png b/images/63-15.png new file mode 100644 index 0000000..3484bb1 Binary files /dev/null and b/images/63-15.png differ diff --git a/images/63-16.png b/images/63-16.png new file mode 100644 index 0000000..5da15fa Binary files /dev/null and b/images/63-16.png differ diff --git a/images/63-17.png b/images/63-17.png new file mode 100644 index 0000000..854342d Binary files /dev/null and b/images/63-17.png differ diff --git a/images/63-18.png b/images/63-18.png new file mode 100644 index 0000000..a947c9c Binary files /dev/null and b/images/63-18.png differ diff --git a/images/63-19.png b/images/63-19.png new file mode 100644 index 0000000..3babaec Binary files /dev/null and b/images/63-19.png differ diff --git a/images/63-2.png b/images/63-2.png new file mode 100644 index 0000000..16b856a Binary files /dev/null and b/images/63-2.png differ diff --git a/images/63-20.png b/images/63-20.png new file mode 100644 index 0000000..0da7347 Binary files /dev/null and b/images/63-20.png differ diff --git a/images/63-21.png b/images/63-21.png new file mode 100644 index 0000000..d1fa0c6 Binary files /dev/null and b/images/63-21.png differ diff --git a/images/63-3.png b/images/63-3.png new file mode 100644 index 0000000..24ec4b9 Binary files /dev/null and b/images/63-3.png differ diff --git a/images/63-4.png b/images/63-4.png new file mode 100644 index 0000000..44e01b2 Binary files /dev/null and b/images/63-4.png differ diff --git a/images/63-5.png b/images/63-5.png new file mode 100644 index 0000000..373df43 Binary files /dev/null and b/images/63-5.png differ diff --git a/images/63-6.png b/images/63-6.png new file mode 100644 index 0000000..af20c1a Binary files /dev/null and b/images/63-6.png differ diff --git a/images/63-7.png b/images/63-7.png new file mode 100644 index 0000000..b4a187a Binary files /dev/null and b/images/63-7.png differ diff --git a/images/63-8.png b/images/63-8.png new file mode 100644 index 0000000..698bea0 Binary files /dev/null and b/images/63-8.png differ diff --git a/images/63-9.png b/images/63-9.png new file mode 100644 index 0000000..8450605 Binary files /dev/null and b/images/63-9.png differ diff --git a/images/64-0.png b/images/64-0.png new file mode 100644 index 0000000..ba2bf19 Binary files /dev/null and b/images/64-0.png differ diff --git a/images/64-1.png b/images/64-1.png new file mode 100644 index 0000000..715acba Binary files /dev/null and b/images/64-1.png differ diff --git a/images/64-10.png b/images/64-10.png new file mode 100644 index 0000000..4dc448b Binary files /dev/null and b/images/64-10.png differ diff --git a/images/64-11.png b/images/64-11.png new file mode 100644 index 0000000..f457a7b Binary files /dev/null and b/images/64-11.png differ diff --git a/images/64-12.png b/images/64-12.png new file mode 100644 index 0000000..c762cda Binary files /dev/null and b/images/64-12.png differ diff --git a/images/64-13.png b/images/64-13.png new file mode 100644 index 0000000..bf2eea1 Binary files /dev/null and b/images/64-13.png differ diff --git a/images/64-14.png b/images/64-14.png new file mode 100644 index 0000000..15182e2 Binary files /dev/null and b/images/64-14.png differ diff --git a/images/64-15.png b/images/64-15.png new file mode 100644 index 0000000..685e8c4 Binary files /dev/null and b/images/64-15.png differ diff --git a/images/64-16.png b/images/64-16.png new file mode 100644 index 0000000..e217b62 Binary files /dev/null and b/images/64-16.png differ diff --git a/images/64-17.png b/images/64-17.png new file mode 100644 index 0000000..d82b488 Binary files /dev/null and b/images/64-17.png differ diff --git a/images/64-18.png b/images/64-18.png new file mode 100644 index 0000000..03c3f5a Binary files /dev/null and b/images/64-18.png differ diff --git a/images/64-19.png b/images/64-19.png new file mode 100644 index 0000000..8b6e2e2 Binary files /dev/null and b/images/64-19.png differ diff --git a/images/64-2.png b/images/64-2.png new file mode 100644 index 0000000..feeadf1 Binary files /dev/null and b/images/64-2.png differ diff --git a/images/64-20.png b/images/64-20.png new file mode 100644 index 0000000..fec06db Binary files /dev/null and b/images/64-20.png differ diff --git a/images/64-21.png b/images/64-21.png new file mode 100644 index 0000000..bb3afdf Binary files /dev/null and b/images/64-21.png differ diff --git a/images/64-22.png b/images/64-22.png new file mode 100644 index 0000000..4a07ccb Binary files /dev/null and b/images/64-22.png differ diff --git a/images/64-23.png b/images/64-23.png new file mode 100644 index 0000000..0901e97 Binary files /dev/null and b/images/64-23.png differ diff --git a/images/64-24.png b/images/64-24.png new file mode 100644 index 0000000..8c95b0b Binary files /dev/null and b/images/64-24.png differ diff --git a/images/64-25.png b/images/64-25.png new file mode 100644 index 0000000..0e19b0e Binary files /dev/null and b/images/64-25.png differ diff --git a/images/64-26.png b/images/64-26.png new file mode 100644 index 0000000..bd6c7b8 Binary files /dev/null and b/images/64-26.png differ diff --git a/images/64-27.png b/images/64-27.png new file mode 100644 index 0000000..cf55618 Binary files /dev/null and b/images/64-27.png differ diff --git a/images/64-28.png b/images/64-28.png new file mode 100644 index 0000000..adcaac1 Binary files /dev/null and b/images/64-28.png differ diff --git a/images/64-29.png b/images/64-29.png new file mode 100644 index 0000000..8afb660 Binary files /dev/null and b/images/64-29.png differ diff --git a/images/64-3.png b/images/64-3.png new file mode 100644 index 0000000..2593362 Binary files /dev/null and b/images/64-3.png differ diff --git a/images/64-30.png b/images/64-30.png new file mode 100644 index 0000000..a1dfb6c Binary files /dev/null and b/images/64-30.png differ diff --git a/images/64-31.png b/images/64-31.png new file mode 100644 index 0000000..c58d341 Binary files /dev/null and b/images/64-31.png differ diff --git a/images/64-32.png b/images/64-32.png new file mode 100644 index 0000000..9894fb0 Binary files /dev/null and b/images/64-32.png differ diff --git a/images/64-33.png b/images/64-33.png new file mode 100644 index 0000000..83e2210 Binary files /dev/null and b/images/64-33.png differ diff --git a/images/64-34.png b/images/64-34.png new file mode 100644 index 0000000..4deba45 Binary files /dev/null and b/images/64-34.png differ diff --git a/images/64-35.png b/images/64-35.png new file mode 100644 index 0000000..9c4aa93 Binary files /dev/null and b/images/64-35.png differ diff --git a/images/64-36.png b/images/64-36.png new file mode 100644 index 0000000..94f6383 Binary files /dev/null and b/images/64-36.png differ diff --git a/images/64-37.png b/images/64-37.png new file mode 100644 index 0000000..b7200ef Binary files /dev/null and b/images/64-37.png differ diff --git a/images/64-38.png b/images/64-38.png new file mode 100644 index 0000000..caa5afd Binary files /dev/null and b/images/64-38.png differ diff --git a/images/64-39.png b/images/64-39.png new file mode 100644 index 0000000..95fb09e Binary files /dev/null and b/images/64-39.png differ diff --git a/images/64-4.png b/images/64-4.png new file mode 100644 index 0000000..de99534 Binary files /dev/null and b/images/64-4.png differ diff --git a/images/64-40.png b/images/64-40.png new file mode 100644 index 0000000..541b92a Binary files /dev/null and b/images/64-40.png differ diff --git a/images/64-41.png b/images/64-41.png new file mode 100644 index 0000000..00e2af8 Binary files /dev/null and b/images/64-41.png differ diff --git a/images/64-42.png b/images/64-42.png new file mode 100644 index 0000000..8b8395e Binary files /dev/null and b/images/64-42.png differ diff --git a/images/64-43.png b/images/64-43.png new file mode 100644 index 0000000..b0fb8c3 Binary files /dev/null and b/images/64-43.png differ diff --git a/images/64-44.png b/images/64-44.png new file mode 100644 index 0000000..5f6e614 Binary files /dev/null and b/images/64-44.png differ diff --git a/images/64-45.png b/images/64-45.png new file mode 100644 index 0000000..3a37cc5 Binary files /dev/null and b/images/64-45.png differ diff --git a/images/64-46.png b/images/64-46.png new file mode 100644 index 0000000..09744c2 Binary files /dev/null and b/images/64-46.png differ diff --git a/images/64-47.png b/images/64-47.png new file mode 100644 index 0000000..d107f9c Binary files /dev/null and b/images/64-47.png differ diff --git a/images/64-48.png b/images/64-48.png new file mode 100644 index 0000000..6997392 Binary files /dev/null and b/images/64-48.png differ diff --git a/images/64-49.png b/images/64-49.png new file mode 100644 index 0000000..bc66f2d Binary files /dev/null and b/images/64-49.png differ diff --git a/images/64-5.png b/images/64-5.png new file mode 100644 index 0000000..f469a62 Binary files /dev/null and b/images/64-5.png differ diff --git a/images/64-50.png b/images/64-50.png new file mode 100644 index 0000000..f7ef1bc Binary files /dev/null and b/images/64-50.png differ diff --git a/images/64-51.png b/images/64-51.png new file mode 100644 index 0000000..bffa2cc Binary files /dev/null and b/images/64-51.png differ diff --git a/images/64-52.png b/images/64-52.png new file mode 100644 index 0000000..28955cd Binary files /dev/null and b/images/64-52.png differ diff --git a/images/64-53.png b/images/64-53.png new file mode 100644 index 0000000..422db0a Binary files /dev/null and b/images/64-53.png differ diff --git a/images/64-54.png b/images/64-54.png new file mode 100644 index 0000000..8cdfe74 Binary files /dev/null and b/images/64-54.png differ diff --git a/images/64-55.png b/images/64-55.png new file mode 100644 index 0000000..7828b90 Binary files /dev/null and b/images/64-55.png differ diff --git a/images/64-56.png b/images/64-56.png new file mode 100644 index 0000000..8031198 Binary files /dev/null and b/images/64-56.png differ diff --git a/images/64-57.png b/images/64-57.png new file mode 100644 index 0000000..31f2363 Binary files /dev/null and b/images/64-57.png differ diff --git a/images/64-58.png b/images/64-58.png new file mode 100644 index 0000000..df5776a Binary files /dev/null and b/images/64-58.png differ diff --git a/images/64-59.png b/images/64-59.png new file mode 100644 index 0000000..0f36dee Binary files /dev/null and b/images/64-59.png differ diff --git a/images/64-6.png b/images/64-6.png new file mode 100644 index 0000000..5508160 Binary files /dev/null and b/images/64-6.png differ diff --git a/images/64-60.png b/images/64-60.png new file mode 100644 index 0000000..2ca166e Binary files /dev/null and b/images/64-60.png differ diff --git a/images/64-61.png b/images/64-61.png new file mode 100644 index 0000000..c0ea7ca Binary files /dev/null and b/images/64-61.png differ diff --git a/images/64-62.png b/images/64-62.png new file mode 100644 index 0000000..76c0e3b Binary files /dev/null and b/images/64-62.png differ diff --git a/images/64-63.png b/images/64-63.png new file mode 100644 index 0000000..db62ac5 Binary files /dev/null and b/images/64-63.png differ diff --git a/images/64-64.png b/images/64-64.png new file mode 100644 index 0000000..c6f3738 Binary files /dev/null and b/images/64-64.png differ diff --git a/images/64-65.png b/images/64-65.png new file mode 100644 index 0000000..8ce4010 Binary files /dev/null and b/images/64-65.png differ diff --git a/images/64-66.png b/images/64-66.png new file mode 100644 index 0000000..16f47be Binary files /dev/null and b/images/64-66.png differ diff --git a/images/64-67.png b/images/64-67.png new file mode 100644 index 0000000..ee32098 Binary files /dev/null and b/images/64-67.png differ diff --git a/images/64-7.png b/images/64-7.png new file mode 100644 index 0000000..d5dc628 Binary files /dev/null and b/images/64-7.png differ diff --git a/images/64-8.png b/images/64-8.png new file mode 100644 index 0000000..a5966a1 Binary files /dev/null and b/images/64-8.png differ diff --git a/images/64-9.png b/images/64-9.png new file mode 100644 index 0000000..62a34c9 Binary files /dev/null and b/images/64-9.png differ diff --git a/images/65-0.png b/images/65-0.png new file mode 100644 index 0000000..c4e1974 Binary files /dev/null and b/images/65-0.png differ diff --git a/images/65-1.png b/images/65-1.png new file mode 100644 index 0000000..d87778d Binary files /dev/null and b/images/65-1.png differ diff --git a/images/65-10.png b/images/65-10.png new file mode 100644 index 0000000..d77de33 Binary files /dev/null and b/images/65-10.png differ diff --git a/images/65-11.png b/images/65-11.png new file mode 100644 index 0000000..a0dc91b Binary files /dev/null and b/images/65-11.png differ diff --git a/images/65-12.png b/images/65-12.png new file mode 100644 index 0000000..286135c Binary files /dev/null and b/images/65-12.png differ diff --git a/images/65-13.png b/images/65-13.png new file mode 100644 index 0000000..fd4dd4e Binary files /dev/null and b/images/65-13.png differ diff --git a/images/65-14.png b/images/65-14.png new file mode 100644 index 0000000..2ee31ce Binary files /dev/null and b/images/65-14.png differ diff --git a/images/65-15.png b/images/65-15.png new file mode 100644 index 0000000..866bbb5 Binary files /dev/null and b/images/65-15.png differ diff --git a/images/65-16.png b/images/65-16.png new file mode 100644 index 0000000..4a9bf1e Binary files /dev/null and b/images/65-16.png differ diff --git a/images/65-17.png b/images/65-17.png new file mode 100644 index 0000000..7c52183 Binary files /dev/null and b/images/65-17.png differ diff --git a/images/65-18.png b/images/65-18.png new file mode 100644 index 0000000..902d95b Binary files /dev/null and b/images/65-18.png differ diff --git a/images/65-19.png b/images/65-19.png new file mode 100644 index 0000000..5651c6d Binary files /dev/null and b/images/65-19.png differ diff --git a/images/65-2.png b/images/65-2.png new file mode 100644 index 0000000..f91f399 Binary files /dev/null and b/images/65-2.png differ diff --git a/images/65-20.png b/images/65-20.png new file mode 100644 index 0000000..6bd7106 Binary files /dev/null and b/images/65-20.png differ diff --git a/images/65-21.png b/images/65-21.png new file mode 100644 index 0000000..a42db2d Binary files /dev/null and b/images/65-21.png differ diff --git a/images/65-22.png b/images/65-22.png new file mode 100644 index 0000000..907073a Binary files /dev/null and b/images/65-22.png differ diff --git a/images/65-23.png b/images/65-23.png new file mode 100644 index 0000000..8108689 Binary files /dev/null and b/images/65-23.png differ diff --git a/images/65-24.png b/images/65-24.png new file mode 100644 index 0000000..c514e4e Binary files /dev/null and b/images/65-24.png differ diff --git a/images/65-25.png b/images/65-25.png new file mode 100644 index 0000000..c812505 Binary files /dev/null and b/images/65-25.png differ diff --git a/images/65-26.png b/images/65-26.png new file mode 100644 index 0000000..8a2a834 Binary files /dev/null and b/images/65-26.png differ diff --git a/images/65-27.png b/images/65-27.png new file mode 100644 index 0000000..844a53f Binary files /dev/null and b/images/65-27.png differ diff --git a/images/65-28.png b/images/65-28.png new file mode 100644 index 0000000..5536cbf Binary files /dev/null and b/images/65-28.png differ diff --git a/images/65-29.png b/images/65-29.png new file mode 100644 index 0000000..8112f37 Binary files /dev/null and b/images/65-29.png differ diff --git a/images/65-3.png b/images/65-3.png new file mode 100644 index 0000000..d05283f Binary files /dev/null and b/images/65-3.png differ diff --git a/images/65-30.png b/images/65-30.png new file mode 100644 index 0000000..3accd7f Binary files /dev/null and b/images/65-30.png differ diff --git a/images/65-31.png b/images/65-31.png new file mode 100644 index 0000000..86a8f61 Binary files /dev/null and b/images/65-31.png differ diff --git a/images/65-32.png b/images/65-32.png new file mode 100644 index 0000000..f0cbe97 Binary files /dev/null and b/images/65-32.png differ diff --git a/images/65-33.png b/images/65-33.png new file mode 100644 index 0000000..a4d2bd8 Binary files /dev/null and b/images/65-33.png differ diff --git a/images/65-34.png b/images/65-34.png new file mode 100644 index 0000000..dabf090 Binary files /dev/null and b/images/65-34.png differ diff --git a/images/65-35.png b/images/65-35.png new file mode 100644 index 0000000..4e70fc2 Binary files /dev/null and b/images/65-35.png differ diff --git a/images/65-36.png b/images/65-36.png new file mode 100644 index 0000000..6a72afe Binary files /dev/null and b/images/65-36.png differ diff --git a/images/65-4.png b/images/65-4.png new file mode 100644 index 0000000..97100af Binary files /dev/null and b/images/65-4.png differ diff --git a/images/65-5.png b/images/65-5.png new file mode 100644 index 0000000..afff1c5 Binary files /dev/null and b/images/65-5.png differ diff --git a/images/65-6.png b/images/65-6.png new file mode 100644 index 0000000..cc3112e Binary files /dev/null and b/images/65-6.png differ diff --git a/images/65-7.png b/images/65-7.png new file mode 100644 index 0000000..185dc70 Binary files /dev/null and b/images/65-7.png differ diff --git a/images/65-8.png b/images/65-8.png new file mode 100644 index 0000000..62c76a5 Binary files /dev/null and b/images/65-8.png differ diff --git a/images/65-9.png b/images/65-9.png new file mode 100644 index 0000000..98ab26a Binary files /dev/null and b/images/65-9.png differ diff --git a/images/66-0.png b/images/66-0.png new file mode 100644 index 0000000..6ce20d7 Binary files /dev/null and b/images/66-0.png differ diff --git a/images/66-1.png b/images/66-1.png new file mode 100644 index 0000000..8719e3c Binary files /dev/null and b/images/66-1.png differ diff --git a/images/66-10.png b/images/66-10.png new file mode 100644 index 0000000..c88a136 Binary files /dev/null and b/images/66-10.png differ diff --git a/images/66-11.png b/images/66-11.png new file mode 100644 index 0000000..ba64b21 Binary files /dev/null and b/images/66-11.png differ diff --git a/images/66-12.png b/images/66-12.png new file mode 100644 index 0000000..4b316d5 Binary files /dev/null and b/images/66-12.png differ diff --git a/images/66-13.png b/images/66-13.png new file mode 100644 index 0000000..413bebe Binary files /dev/null and b/images/66-13.png differ diff --git a/images/66-14.png b/images/66-14.png new file mode 100644 index 0000000..bbcf205 Binary files /dev/null and b/images/66-14.png differ diff --git a/images/66-15.png b/images/66-15.png new file mode 100644 index 0000000..eb359bc Binary files /dev/null and b/images/66-15.png differ diff --git a/images/66-16.png b/images/66-16.png new file mode 100644 index 0000000..83c370a Binary files /dev/null and b/images/66-16.png differ diff --git a/images/66-17.png b/images/66-17.png new file mode 100644 index 0000000..f717fb9 Binary files /dev/null and b/images/66-17.png differ diff --git a/images/66-18.png b/images/66-18.png new file mode 100644 index 0000000..b30b402 Binary files /dev/null and b/images/66-18.png differ diff --git a/images/66-19.png b/images/66-19.png new file mode 100644 index 0000000..44aa2e8 Binary files /dev/null and b/images/66-19.png differ diff --git a/images/66-2.png b/images/66-2.png new file mode 100644 index 0000000..3af24c0 Binary files /dev/null and b/images/66-2.png differ diff --git a/images/66-20.png b/images/66-20.png new file mode 100644 index 0000000..bb05bbd Binary files /dev/null and b/images/66-20.png differ diff --git a/images/66-21.png b/images/66-21.png new file mode 100644 index 0000000..0d80c82 Binary files /dev/null and b/images/66-21.png differ diff --git a/images/66-22.png b/images/66-22.png new file mode 100644 index 0000000..4fe2bee Binary files /dev/null and b/images/66-22.png differ diff --git a/images/66-23.png b/images/66-23.png new file mode 100644 index 0000000..f2bcece Binary files /dev/null and b/images/66-23.png differ diff --git a/images/66-24.png b/images/66-24.png new file mode 100644 index 0000000..3da8d95 Binary files /dev/null and b/images/66-24.png differ diff --git a/images/66-25.png b/images/66-25.png new file mode 100644 index 0000000..790c99e Binary files /dev/null and b/images/66-25.png differ diff --git a/images/66-26.png b/images/66-26.png new file mode 100644 index 0000000..436105a Binary files /dev/null and b/images/66-26.png differ diff --git a/images/66-27.png b/images/66-27.png new file mode 100644 index 0000000..b084df8 Binary files /dev/null and b/images/66-27.png differ diff --git a/images/66-28.png b/images/66-28.png new file mode 100644 index 0000000..409093c Binary files /dev/null and b/images/66-28.png differ diff --git a/images/66-29.png b/images/66-29.png new file mode 100644 index 0000000..81d9a79 Binary files /dev/null and b/images/66-29.png differ diff --git a/images/66-3.png b/images/66-3.png new file mode 100644 index 0000000..32822c2 Binary files /dev/null and b/images/66-3.png differ diff --git a/images/66-4.png b/images/66-4.png new file mode 100644 index 0000000..0be1176 Binary files /dev/null and b/images/66-4.png differ diff --git a/images/66-5.png b/images/66-5.png new file mode 100644 index 0000000..d31f974 Binary files /dev/null and b/images/66-5.png differ diff --git a/images/66-6.png b/images/66-6.png new file mode 100644 index 0000000..907cd74 Binary files /dev/null and b/images/66-6.png differ diff --git a/images/66-7.png b/images/66-7.png new file mode 100644 index 0000000..ebde4fd Binary files /dev/null and b/images/66-7.png differ diff --git a/images/66-8.png b/images/66-8.png new file mode 100644 index 0000000..a72a4ed Binary files /dev/null and b/images/66-8.png differ diff --git a/images/66-9.png b/images/66-9.png new file mode 100644 index 0000000..5cc883d Binary files /dev/null and b/images/66-9.png differ diff --git a/images/67-0.png b/images/67-0.png new file mode 100644 index 0000000..ea75fb1 Binary files /dev/null and b/images/67-0.png differ diff --git a/images/67-1.png b/images/67-1.png new file mode 100644 index 0000000..0cfd57a Binary files /dev/null and b/images/67-1.png differ diff --git a/images/67-10.png b/images/67-10.png new file mode 100644 index 0000000..2bd2ba1 Binary files /dev/null and b/images/67-10.png differ diff --git a/images/67-11.png b/images/67-11.png new file mode 100644 index 0000000..fd20e84 Binary files /dev/null and b/images/67-11.png differ diff --git a/images/67-12.png b/images/67-12.png new file mode 100644 index 0000000..aa144bf Binary files /dev/null and b/images/67-12.png differ diff --git a/images/67-13.png b/images/67-13.png new file mode 100644 index 0000000..20740c1 Binary files /dev/null and b/images/67-13.png differ diff --git a/images/67-14.png b/images/67-14.png new file mode 100644 index 0000000..0dba29c Binary files /dev/null and b/images/67-14.png differ diff --git a/images/67-15.png b/images/67-15.png new file mode 100644 index 0000000..8ee9d2d Binary files /dev/null and b/images/67-15.png differ diff --git a/images/67-16.png b/images/67-16.png new file mode 100644 index 0000000..338dfb7 Binary files /dev/null and b/images/67-16.png differ diff --git a/images/67-17.png b/images/67-17.png new file mode 100644 index 0000000..e1aa89d Binary files /dev/null and b/images/67-17.png differ diff --git a/images/67-18.png b/images/67-18.png new file mode 100644 index 0000000..1f1fc03 Binary files /dev/null and b/images/67-18.png differ diff --git a/images/67-19.png b/images/67-19.png new file mode 100644 index 0000000..ec33410 Binary files /dev/null and b/images/67-19.png differ diff --git a/images/67-2.png b/images/67-2.png new file mode 100644 index 0000000..10dee1f Binary files /dev/null and b/images/67-2.png differ diff --git a/images/67-20.png b/images/67-20.png new file mode 100644 index 0000000..365cf7f Binary files /dev/null and b/images/67-20.png differ diff --git a/images/67-21.png b/images/67-21.png new file mode 100644 index 0000000..23ff194 Binary files /dev/null and b/images/67-21.png differ diff --git a/images/67-22.png b/images/67-22.png new file mode 100644 index 0000000..154f84e Binary files /dev/null and b/images/67-22.png differ diff --git a/images/67-23.png b/images/67-23.png new file mode 100644 index 0000000..737d1ca Binary files /dev/null and b/images/67-23.png differ diff --git a/images/67-24.png b/images/67-24.png new file mode 100644 index 0000000..ee5d36f Binary files /dev/null and b/images/67-24.png differ diff --git a/images/67-25.png b/images/67-25.png new file mode 100644 index 0000000..28db00c Binary files /dev/null and b/images/67-25.png differ diff --git a/images/67-26.png b/images/67-26.png new file mode 100644 index 0000000..4f34c2c Binary files /dev/null and b/images/67-26.png differ diff --git a/images/67-27.png b/images/67-27.png new file mode 100644 index 0000000..3e40d07 Binary files /dev/null and b/images/67-27.png differ diff --git a/images/67-28.png b/images/67-28.png new file mode 100644 index 0000000..258cd00 Binary files /dev/null and b/images/67-28.png differ diff --git a/images/67-29.png b/images/67-29.png new file mode 100644 index 0000000..6098d5b Binary files /dev/null and b/images/67-29.png differ diff --git a/images/67-3.png b/images/67-3.png new file mode 100644 index 0000000..3206e96 Binary files /dev/null and b/images/67-3.png differ diff --git a/images/67-30.png b/images/67-30.png new file mode 100644 index 0000000..2b7c8ee Binary files /dev/null and b/images/67-30.png differ diff --git a/images/67-31.png b/images/67-31.png new file mode 100644 index 0000000..1f99f61 Binary files /dev/null and b/images/67-31.png differ diff --git a/images/67-32.png b/images/67-32.png new file mode 100644 index 0000000..ddeaa23 Binary files /dev/null and b/images/67-32.png differ diff --git a/images/67-33.png b/images/67-33.png new file mode 100644 index 0000000..fe22a19 Binary files /dev/null and b/images/67-33.png differ diff --git a/images/67-34.png b/images/67-34.png new file mode 100644 index 0000000..7192bc4 Binary files /dev/null and b/images/67-34.png differ diff --git a/images/67-35.png b/images/67-35.png new file mode 100644 index 0000000..0ceb072 Binary files /dev/null and b/images/67-35.png differ diff --git a/images/67-36.png b/images/67-36.png new file mode 100644 index 0000000..a65c228 Binary files /dev/null and b/images/67-36.png differ diff --git a/images/67-37.png b/images/67-37.png new file mode 100644 index 0000000..a142041 Binary files /dev/null and b/images/67-37.png differ diff --git a/images/67-38.png b/images/67-38.png new file mode 100644 index 0000000..510eda4 Binary files /dev/null and b/images/67-38.png differ diff --git a/images/67-39.png b/images/67-39.png new file mode 100644 index 0000000..241c7d5 Binary files /dev/null and b/images/67-39.png differ diff --git a/images/67-4.png b/images/67-4.png new file mode 100644 index 0000000..8c6b027 Binary files /dev/null and b/images/67-4.png differ diff --git a/images/67-40.png b/images/67-40.png new file mode 100644 index 0000000..b4f0fda Binary files /dev/null and b/images/67-40.png differ diff --git a/images/67-41.png b/images/67-41.png new file mode 100644 index 0000000..5a8630e Binary files /dev/null and b/images/67-41.png differ diff --git a/images/67-42.png b/images/67-42.png new file mode 100644 index 0000000..3417854 Binary files /dev/null and b/images/67-42.png differ diff --git a/images/67-43.png b/images/67-43.png new file mode 100644 index 0000000..a24d025 Binary files /dev/null and b/images/67-43.png differ diff --git a/images/67-44.png b/images/67-44.png new file mode 100644 index 0000000..3d2953c Binary files /dev/null and b/images/67-44.png differ diff --git a/images/67-45.png b/images/67-45.png new file mode 100644 index 0000000..d1c39aa Binary files /dev/null and b/images/67-45.png differ diff --git a/images/67-46.png b/images/67-46.png new file mode 100644 index 0000000..1aa05af Binary files /dev/null and b/images/67-46.png differ diff --git a/images/67-47.png b/images/67-47.png new file mode 100644 index 0000000..39cdba3 Binary files /dev/null and b/images/67-47.png differ diff --git a/images/67-48.png b/images/67-48.png new file mode 100644 index 0000000..c377a6c Binary files /dev/null and b/images/67-48.png differ diff --git a/images/67-49.png b/images/67-49.png new file mode 100644 index 0000000..24880f9 Binary files /dev/null and b/images/67-49.png differ diff --git a/images/67-5.png b/images/67-5.png new file mode 100644 index 0000000..2f8e72f Binary files /dev/null and b/images/67-5.png differ diff --git a/images/67-50.png b/images/67-50.png new file mode 100644 index 0000000..41983f0 Binary files /dev/null and b/images/67-50.png differ diff --git a/images/67-51.png b/images/67-51.png new file mode 100644 index 0000000..2aab380 Binary files /dev/null and b/images/67-51.png differ diff --git a/images/67-52.png b/images/67-52.png new file mode 100644 index 0000000..b5a25c0 Binary files /dev/null and b/images/67-52.png differ diff --git a/images/67-53.png b/images/67-53.png new file mode 100644 index 0000000..827c8df Binary files /dev/null and b/images/67-53.png differ diff --git a/images/67-54.png b/images/67-54.png new file mode 100644 index 0000000..33db752 Binary files /dev/null and b/images/67-54.png differ diff --git a/images/67-55.png b/images/67-55.png new file mode 100644 index 0000000..26f93f6 Binary files /dev/null and b/images/67-55.png differ diff --git a/images/67-56.png b/images/67-56.png new file mode 100644 index 0000000..736cc79 Binary files /dev/null and b/images/67-56.png differ diff --git a/images/67-57.png b/images/67-57.png new file mode 100644 index 0000000..019a8d8 Binary files /dev/null and b/images/67-57.png differ diff --git a/images/67-58.png b/images/67-58.png new file mode 100644 index 0000000..3089c31 Binary files /dev/null and b/images/67-58.png differ diff --git a/images/67-59.png b/images/67-59.png new file mode 100644 index 0000000..2bafe9d Binary files /dev/null and b/images/67-59.png differ diff --git a/images/67-6.png b/images/67-6.png new file mode 100644 index 0000000..ee7b4c6 Binary files /dev/null and b/images/67-6.png differ diff --git a/images/67-60.png b/images/67-60.png new file mode 100644 index 0000000..2f8bc26 Binary files /dev/null and b/images/67-60.png differ diff --git a/images/67-61.png b/images/67-61.png new file mode 100644 index 0000000..9729dbc Binary files /dev/null and b/images/67-61.png differ diff --git a/images/67-62.png b/images/67-62.png new file mode 100644 index 0000000..f2d6d8f Binary files /dev/null and b/images/67-62.png differ diff --git a/images/67-63.png b/images/67-63.png new file mode 100644 index 0000000..b7c6e9d Binary files /dev/null and b/images/67-63.png differ diff --git a/images/67-64.png b/images/67-64.png new file mode 100644 index 0000000..1298304 Binary files /dev/null and b/images/67-64.png differ diff --git a/images/67-65.png b/images/67-65.png new file mode 100644 index 0000000..3b08f3f Binary files /dev/null and b/images/67-65.png differ diff --git a/images/67-66.png b/images/67-66.png new file mode 100644 index 0000000..9fd071f Binary files /dev/null and b/images/67-66.png differ diff --git a/images/67-67.png b/images/67-67.png new file mode 100644 index 0000000..e1bcb72 Binary files /dev/null and b/images/67-67.png differ diff --git a/images/67-68.png b/images/67-68.png new file mode 100644 index 0000000..0ae298c Binary files /dev/null and b/images/67-68.png differ diff --git a/images/67-69.png b/images/67-69.png new file mode 100644 index 0000000..d7a6b12 Binary files /dev/null and b/images/67-69.png differ diff --git a/images/67-7.png b/images/67-7.png new file mode 100644 index 0000000..3043a82 Binary files /dev/null and b/images/67-7.png differ diff --git a/images/67-70.png b/images/67-70.png new file mode 100644 index 0000000..937e7e8 Binary files /dev/null and b/images/67-70.png differ diff --git a/images/67-71.png b/images/67-71.png new file mode 100644 index 0000000..e9916ff Binary files /dev/null and b/images/67-71.png differ diff --git a/images/67-72.png b/images/67-72.png new file mode 100644 index 0000000..d92ffb2 Binary files /dev/null and b/images/67-72.png differ diff --git a/images/67-73.png b/images/67-73.png new file mode 100644 index 0000000..b46fa61 Binary files /dev/null and b/images/67-73.png differ diff --git a/images/67-74.png b/images/67-74.png new file mode 100644 index 0000000..0fea5f4 Binary files /dev/null and b/images/67-74.png differ diff --git a/images/67-75.png b/images/67-75.png new file mode 100644 index 0000000..9228516 Binary files /dev/null and b/images/67-75.png differ diff --git a/images/67-76.png b/images/67-76.png new file mode 100644 index 0000000..4665d50 Binary files /dev/null and b/images/67-76.png differ diff --git a/images/67-8.png b/images/67-8.png new file mode 100644 index 0000000..da847f7 Binary files /dev/null and b/images/67-8.png differ diff --git a/images/67-9.png b/images/67-9.png new file mode 100644 index 0000000..c40a0c2 Binary files /dev/null and b/images/67-9.png differ diff --git a/images/68-0.png b/images/68-0.png new file mode 100644 index 0000000..d62c3dd Binary files /dev/null and b/images/68-0.png differ diff --git a/images/68-1.png b/images/68-1.png new file mode 100644 index 0000000..3b0808e Binary files /dev/null and b/images/68-1.png differ diff --git a/images/68-10.png b/images/68-10.png new file mode 100644 index 0000000..8842026 Binary files /dev/null and b/images/68-10.png differ diff --git a/images/68-11.png b/images/68-11.png new file mode 100644 index 0000000..aa42016 Binary files /dev/null and b/images/68-11.png differ diff --git a/images/68-12.png b/images/68-12.png new file mode 100644 index 0000000..7b83ef5 Binary files /dev/null and b/images/68-12.png differ diff --git a/images/68-13.png b/images/68-13.png new file mode 100644 index 0000000..d6cbd64 Binary files /dev/null and b/images/68-13.png differ diff --git a/images/68-14.png b/images/68-14.png new file mode 100644 index 0000000..b7f23ee Binary files /dev/null and b/images/68-14.png differ diff --git a/images/68-15.png b/images/68-15.png new file mode 100644 index 0000000..1cd4556 Binary files /dev/null and b/images/68-15.png differ diff --git a/images/68-16.png b/images/68-16.png new file mode 100644 index 0000000..aa6e088 Binary files /dev/null and b/images/68-16.png differ diff --git a/images/68-17.png b/images/68-17.png new file mode 100644 index 0000000..3d4409c Binary files /dev/null and b/images/68-17.png differ diff --git a/images/68-18.png b/images/68-18.png new file mode 100644 index 0000000..2f90f69 Binary files /dev/null and b/images/68-18.png differ diff --git a/images/68-19.png b/images/68-19.png new file mode 100644 index 0000000..be2422f Binary files /dev/null and b/images/68-19.png differ diff --git a/images/68-2.png b/images/68-2.png new file mode 100644 index 0000000..97e989e Binary files /dev/null and b/images/68-2.png differ diff --git a/images/68-20.png b/images/68-20.png new file mode 100644 index 0000000..a108ea1 Binary files /dev/null and b/images/68-20.png differ diff --git a/images/68-21.png b/images/68-21.png new file mode 100644 index 0000000..7da4069 Binary files /dev/null and b/images/68-21.png differ diff --git a/images/68-22.png b/images/68-22.png new file mode 100644 index 0000000..0175b1b Binary files /dev/null and b/images/68-22.png differ diff --git a/images/68-23.png b/images/68-23.png new file mode 100644 index 0000000..f34d2fd Binary files /dev/null and b/images/68-23.png differ diff --git a/images/68-24.png b/images/68-24.png new file mode 100644 index 0000000..c2ae6ae Binary files /dev/null and b/images/68-24.png differ diff --git a/images/68-25.png b/images/68-25.png new file mode 100644 index 0000000..4894c0a Binary files /dev/null and b/images/68-25.png differ diff --git a/images/68-26.png b/images/68-26.png new file mode 100644 index 0000000..c14cd65 Binary files /dev/null and b/images/68-26.png differ diff --git a/images/68-27.png b/images/68-27.png new file mode 100644 index 0000000..b7f1d0d Binary files /dev/null and b/images/68-27.png differ diff --git a/images/68-28.png b/images/68-28.png new file mode 100644 index 0000000..2d64f74 Binary files /dev/null and b/images/68-28.png differ diff --git a/images/68-29.png b/images/68-29.png new file mode 100644 index 0000000..b4c95ac Binary files /dev/null and b/images/68-29.png differ diff --git a/images/68-3.png b/images/68-3.png new file mode 100644 index 0000000..01a80e4 Binary files /dev/null and b/images/68-3.png differ diff --git a/images/68-30.png b/images/68-30.png new file mode 100644 index 0000000..6537f8a Binary files /dev/null and b/images/68-30.png differ diff --git a/images/68-31.png b/images/68-31.png new file mode 100644 index 0000000..4f2093b Binary files /dev/null and b/images/68-31.png differ diff --git a/images/68-32.png b/images/68-32.png new file mode 100644 index 0000000..64a941b Binary files /dev/null and b/images/68-32.png differ diff --git a/images/68-33.png b/images/68-33.png new file mode 100644 index 0000000..2b3ac00 Binary files /dev/null and b/images/68-33.png differ diff --git a/images/68-34.png b/images/68-34.png new file mode 100644 index 0000000..7c3d192 Binary files /dev/null and b/images/68-34.png differ diff --git a/images/68-35.png b/images/68-35.png new file mode 100644 index 0000000..0929e50 Binary files /dev/null and b/images/68-35.png differ diff --git a/images/68-36.png b/images/68-36.png new file mode 100644 index 0000000..dfda609 Binary files /dev/null and b/images/68-36.png differ diff --git a/images/68-37.png b/images/68-37.png new file mode 100644 index 0000000..f2fde75 Binary files /dev/null and b/images/68-37.png differ diff --git a/images/68-38.png b/images/68-38.png new file mode 100644 index 0000000..533eb6a Binary files /dev/null and b/images/68-38.png differ diff --git a/images/68-39.png b/images/68-39.png new file mode 100644 index 0000000..d550ac8 Binary files /dev/null and b/images/68-39.png differ diff --git a/images/68-4.png b/images/68-4.png new file mode 100644 index 0000000..804f43d Binary files /dev/null and b/images/68-4.png differ diff --git a/images/68-40.png b/images/68-40.png new file mode 100644 index 0000000..69d8593 Binary files /dev/null and b/images/68-40.png differ diff --git a/images/68-41.png b/images/68-41.png new file mode 100644 index 0000000..a2ab313 Binary files /dev/null and b/images/68-41.png differ diff --git a/images/68-5.png b/images/68-5.png new file mode 100644 index 0000000..433ebe1 Binary files /dev/null and b/images/68-5.png differ diff --git a/images/68-6.png b/images/68-6.png new file mode 100644 index 0000000..97e142c Binary files /dev/null and b/images/68-6.png differ diff --git a/images/68-7.png b/images/68-7.png new file mode 100644 index 0000000..b141dee Binary files /dev/null and b/images/68-7.png differ diff --git a/images/68-8.png b/images/68-8.png new file mode 100644 index 0000000..b43572c Binary files /dev/null and b/images/68-8.png differ diff --git a/images/68-9.png b/images/68-9.png new file mode 100644 index 0000000..210342c Binary files /dev/null and b/images/68-9.png differ diff --git a/images/69-0.png b/images/69-0.png new file mode 100644 index 0000000..16258a0 Binary files /dev/null and b/images/69-0.png differ diff --git a/images/69-1.png b/images/69-1.png new file mode 100644 index 0000000..2686eca Binary files /dev/null and b/images/69-1.png differ diff --git a/images/69-10.png b/images/69-10.png new file mode 100644 index 0000000..3dc8d2c Binary files /dev/null and b/images/69-10.png differ diff --git a/images/69-100.png b/images/69-100.png new file mode 100644 index 0000000..e4b9127 Binary files /dev/null and b/images/69-100.png differ diff --git a/images/69-101.png b/images/69-101.png new file mode 100644 index 0000000..e1094d4 Binary files /dev/null and b/images/69-101.png differ diff --git a/images/69-102.png b/images/69-102.png new file mode 100644 index 0000000..56ede47 Binary files /dev/null and b/images/69-102.png differ diff --git a/images/69-103.png b/images/69-103.png new file mode 100644 index 0000000..169e59b Binary files /dev/null and b/images/69-103.png differ diff --git a/images/69-104.png b/images/69-104.png new file mode 100644 index 0000000..ea1128f Binary files /dev/null and b/images/69-104.png differ diff --git a/images/69-105.png b/images/69-105.png new file mode 100644 index 0000000..90fd9c3 Binary files /dev/null and b/images/69-105.png differ diff --git a/images/69-106.png b/images/69-106.png new file mode 100644 index 0000000..301bd55 Binary files /dev/null and b/images/69-106.png differ diff --git a/images/69-107.png b/images/69-107.png new file mode 100644 index 0000000..c7f8bd8 Binary files /dev/null and b/images/69-107.png differ diff --git a/images/69-108.png b/images/69-108.png new file mode 100644 index 0000000..c9fadcc Binary files /dev/null and b/images/69-108.png differ diff --git a/images/69-109.png b/images/69-109.png new file mode 100644 index 0000000..887dd92 Binary files /dev/null and b/images/69-109.png differ diff --git a/images/69-11.png b/images/69-11.png new file mode 100644 index 0000000..3cfd97a Binary files /dev/null and b/images/69-11.png differ diff --git a/images/69-110.png b/images/69-110.png new file mode 100644 index 0000000..69f37a4 Binary files /dev/null and b/images/69-110.png differ diff --git a/images/69-111.png b/images/69-111.png new file mode 100644 index 0000000..cafa712 Binary files /dev/null and b/images/69-111.png differ diff --git a/images/69-112.png b/images/69-112.png new file mode 100644 index 0000000..8e8a922 Binary files /dev/null and b/images/69-112.png differ diff --git a/images/69-113.png b/images/69-113.png new file mode 100644 index 0000000..c1d05a0 Binary files /dev/null and b/images/69-113.png differ diff --git a/images/69-114.png b/images/69-114.png new file mode 100644 index 0000000..c595f02 Binary files /dev/null and b/images/69-114.png differ diff --git a/images/69-115.png b/images/69-115.png new file mode 100644 index 0000000..157e2b8 Binary files /dev/null and b/images/69-115.png differ diff --git a/images/69-116.png b/images/69-116.png new file mode 100644 index 0000000..94c4994 Binary files /dev/null and b/images/69-116.png differ diff --git a/images/69-117.png b/images/69-117.png new file mode 100644 index 0000000..88788d7 Binary files /dev/null and b/images/69-117.png differ diff --git a/images/69-118.png b/images/69-118.png new file mode 100644 index 0000000..3d2aa68 Binary files /dev/null and b/images/69-118.png differ diff --git a/images/69-119.png b/images/69-119.png new file mode 100644 index 0000000..2e7ab80 Binary files /dev/null and b/images/69-119.png differ diff --git a/images/69-12.png b/images/69-12.png new file mode 100644 index 0000000..5c59c85 Binary files /dev/null and b/images/69-12.png differ diff --git a/images/69-13.png b/images/69-13.png new file mode 100644 index 0000000..d434ca6 Binary files /dev/null and b/images/69-13.png differ diff --git a/images/69-14.png b/images/69-14.png new file mode 100644 index 0000000..4c11a86 Binary files /dev/null and b/images/69-14.png differ diff --git a/images/69-15.png b/images/69-15.png new file mode 100644 index 0000000..c98bb90 Binary files /dev/null and b/images/69-15.png differ diff --git a/images/69-16.png b/images/69-16.png new file mode 100644 index 0000000..3e4a4b8 Binary files /dev/null and b/images/69-16.png differ diff --git a/images/69-17.png b/images/69-17.png new file mode 100644 index 0000000..f942c3c Binary files /dev/null and b/images/69-17.png differ diff --git a/images/69-18.png b/images/69-18.png new file mode 100644 index 0000000..18fac61 Binary files /dev/null and b/images/69-18.png differ diff --git a/images/69-19.png b/images/69-19.png new file mode 100644 index 0000000..8329793 Binary files /dev/null and b/images/69-19.png differ diff --git a/images/69-2.png b/images/69-2.png new file mode 100644 index 0000000..13e9473 Binary files /dev/null and b/images/69-2.png differ diff --git a/images/69-20.png b/images/69-20.png new file mode 100644 index 0000000..eeab9a6 Binary files /dev/null and b/images/69-20.png differ diff --git a/images/69-21.png b/images/69-21.png new file mode 100644 index 0000000..1ecaf59 Binary files /dev/null and b/images/69-21.png differ diff --git a/images/69-22.png b/images/69-22.png new file mode 100644 index 0000000..4274a89 Binary files /dev/null and b/images/69-22.png differ diff --git a/images/69-23.png b/images/69-23.png new file mode 100644 index 0000000..327455d Binary files /dev/null and b/images/69-23.png differ diff --git a/images/69-24.png b/images/69-24.png new file mode 100644 index 0000000..4f34bd2 Binary files /dev/null and b/images/69-24.png differ diff --git a/images/69-25.png b/images/69-25.png new file mode 100644 index 0000000..c88b062 Binary files /dev/null and b/images/69-25.png differ diff --git a/images/69-26.png b/images/69-26.png new file mode 100644 index 0000000..55c2a5a Binary files /dev/null and b/images/69-26.png differ diff --git a/images/69-27.png b/images/69-27.png new file mode 100644 index 0000000..18e3cb2 Binary files /dev/null and b/images/69-27.png differ diff --git a/images/69-28.png b/images/69-28.png new file mode 100644 index 0000000..22f9d1d Binary files /dev/null and b/images/69-28.png differ diff --git a/images/69-29.png b/images/69-29.png new file mode 100644 index 0000000..7b108fa Binary files /dev/null and b/images/69-29.png differ diff --git a/images/69-3.png b/images/69-3.png new file mode 100644 index 0000000..d788d32 Binary files /dev/null and b/images/69-3.png differ diff --git a/images/69-30.png b/images/69-30.png new file mode 100644 index 0000000..5f8f2e1 Binary files /dev/null and b/images/69-30.png differ diff --git a/images/69-31.png b/images/69-31.png new file mode 100644 index 0000000..d5831ae Binary files /dev/null and b/images/69-31.png differ diff --git a/images/69-32.png b/images/69-32.png new file mode 100644 index 0000000..aa53f28 Binary files /dev/null and b/images/69-32.png differ diff --git a/images/69-33.png b/images/69-33.png new file mode 100644 index 0000000..0187051 Binary files /dev/null and b/images/69-33.png differ diff --git a/images/69-34.png b/images/69-34.png new file mode 100644 index 0000000..248f858 Binary files /dev/null and b/images/69-34.png differ diff --git a/images/69-35.png b/images/69-35.png new file mode 100644 index 0000000..8a7fdc2 Binary files /dev/null and b/images/69-35.png differ diff --git a/images/69-36.png b/images/69-36.png new file mode 100644 index 0000000..b180439 Binary files /dev/null and b/images/69-36.png differ diff --git a/images/69-37.png b/images/69-37.png new file mode 100644 index 0000000..66182b2 Binary files /dev/null and b/images/69-37.png differ diff --git a/images/69-38.png b/images/69-38.png new file mode 100644 index 0000000..43d1244 Binary files /dev/null and b/images/69-38.png differ diff --git a/images/69-39.png b/images/69-39.png new file mode 100644 index 0000000..9e8ce1a Binary files /dev/null and b/images/69-39.png differ diff --git a/images/69-4.png b/images/69-4.png new file mode 100644 index 0000000..896cebb Binary files /dev/null and b/images/69-4.png differ diff --git a/images/69-40.png b/images/69-40.png new file mode 100644 index 0000000..789d060 Binary files /dev/null and b/images/69-40.png differ diff --git a/images/69-41.png b/images/69-41.png new file mode 100644 index 0000000..a0c560a Binary files /dev/null and b/images/69-41.png differ diff --git a/images/69-42.png b/images/69-42.png new file mode 100644 index 0000000..4b1c840 Binary files /dev/null and b/images/69-42.png differ diff --git a/images/69-43.png b/images/69-43.png new file mode 100644 index 0000000..34f20a2 Binary files /dev/null and b/images/69-43.png differ diff --git a/images/69-44.png b/images/69-44.png new file mode 100644 index 0000000..b68e890 Binary files /dev/null and b/images/69-44.png differ diff --git a/images/69-45.png b/images/69-45.png new file mode 100644 index 0000000..0f85b4b Binary files /dev/null and b/images/69-45.png differ diff --git a/images/69-46.png b/images/69-46.png new file mode 100644 index 0000000..9a8ceb7 Binary files /dev/null and b/images/69-46.png differ diff --git a/images/69-47.png b/images/69-47.png new file mode 100644 index 0000000..4aac87c Binary files /dev/null and b/images/69-47.png differ diff --git a/images/69-48.png b/images/69-48.png new file mode 100644 index 0000000..a8897e7 Binary files /dev/null and b/images/69-48.png differ diff --git a/images/69-49.png b/images/69-49.png new file mode 100644 index 0000000..42cd33d Binary files /dev/null and b/images/69-49.png differ diff --git a/images/69-5.png b/images/69-5.png new file mode 100644 index 0000000..11395fe Binary files /dev/null and b/images/69-5.png differ diff --git a/images/69-50.png b/images/69-50.png new file mode 100644 index 0000000..4a8af1d Binary files /dev/null and b/images/69-50.png differ diff --git a/images/69-51.png b/images/69-51.png new file mode 100644 index 0000000..c1a62c7 Binary files /dev/null and b/images/69-51.png differ diff --git a/images/69-52.png b/images/69-52.png new file mode 100644 index 0000000..204abbb Binary files /dev/null and b/images/69-52.png differ diff --git a/images/69-53.png b/images/69-53.png new file mode 100644 index 0000000..b84dd64 Binary files /dev/null and b/images/69-53.png differ diff --git a/images/69-54.png b/images/69-54.png new file mode 100644 index 0000000..691e687 Binary files /dev/null and b/images/69-54.png differ diff --git a/images/69-55.png b/images/69-55.png new file mode 100644 index 0000000..a625df9 Binary files /dev/null and b/images/69-55.png differ diff --git a/images/69-56.png b/images/69-56.png new file mode 100644 index 0000000..b1d7df3 Binary files /dev/null and b/images/69-56.png differ diff --git a/images/69-57.png b/images/69-57.png new file mode 100644 index 0000000..d359a03 Binary files /dev/null and b/images/69-57.png differ diff --git a/images/69-58.png b/images/69-58.png new file mode 100644 index 0000000..2e04e2e Binary files /dev/null and b/images/69-58.png differ diff --git a/images/69-59.png b/images/69-59.png new file mode 100644 index 0000000..fbbd886 Binary files /dev/null and b/images/69-59.png differ diff --git a/images/69-6.png b/images/69-6.png new file mode 100644 index 0000000..cccd608 Binary files /dev/null and b/images/69-6.png differ diff --git a/images/69-60.png b/images/69-60.png new file mode 100644 index 0000000..bff59ab Binary files /dev/null and b/images/69-60.png differ diff --git a/images/69-61.png b/images/69-61.png new file mode 100644 index 0000000..d7b4776 Binary files /dev/null and b/images/69-61.png differ diff --git a/images/69-62.png b/images/69-62.png new file mode 100644 index 0000000..0a3a675 Binary files /dev/null and b/images/69-62.png differ diff --git a/images/69-63.png b/images/69-63.png new file mode 100644 index 0000000..2cc8863 Binary files /dev/null and b/images/69-63.png differ diff --git a/images/69-64.png b/images/69-64.png new file mode 100644 index 0000000..74fabc0 Binary files /dev/null and b/images/69-64.png differ diff --git a/images/69-65.png b/images/69-65.png new file mode 100644 index 0000000..790f625 Binary files /dev/null and b/images/69-65.png differ diff --git a/images/69-66.png b/images/69-66.png new file mode 100644 index 0000000..057da60 Binary files /dev/null and b/images/69-66.png differ diff --git a/images/69-67.png b/images/69-67.png new file mode 100644 index 0000000..5334ee6 Binary files /dev/null and b/images/69-67.png differ diff --git a/images/69-68.png b/images/69-68.png new file mode 100644 index 0000000..90b3730 Binary files /dev/null and b/images/69-68.png differ diff --git a/images/69-69.png b/images/69-69.png new file mode 100644 index 0000000..5f4ce67 Binary files /dev/null and b/images/69-69.png differ diff --git a/images/69-7.png b/images/69-7.png new file mode 100644 index 0000000..5dfa766 Binary files /dev/null and b/images/69-7.png differ diff --git a/images/69-70.png b/images/69-70.png new file mode 100644 index 0000000..35cd1a5 Binary files /dev/null and b/images/69-70.png differ diff --git a/images/69-71.png b/images/69-71.png new file mode 100644 index 0000000..905139d Binary files /dev/null and b/images/69-71.png differ diff --git a/images/69-72.png b/images/69-72.png new file mode 100644 index 0000000..677421d Binary files /dev/null and b/images/69-72.png differ diff --git a/images/69-73.png b/images/69-73.png new file mode 100644 index 0000000..b92dda9 Binary files /dev/null and b/images/69-73.png differ diff --git a/images/69-74.png b/images/69-74.png new file mode 100644 index 0000000..0c548ac Binary files /dev/null and b/images/69-74.png differ diff --git a/images/69-75.png b/images/69-75.png new file mode 100644 index 0000000..ee27220 Binary files /dev/null and b/images/69-75.png differ diff --git a/images/69-76.png b/images/69-76.png new file mode 100644 index 0000000..a4a3285 Binary files /dev/null and b/images/69-76.png differ diff --git a/images/69-77.png b/images/69-77.png new file mode 100644 index 0000000..6f65d11 Binary files /dev/null and b/images/69-77.png differ diff --git a/images/69-78.png b/images/69-78.png new file mode 100644 index 0000000..94adc93 Binary files /dev/null and b/images/69-78.png differ diff --git a/images/69-79.png b/images/69-79.png new file mode 100644 index 0000000..fd136e4 Binary files /dev/null and b/images/69-79.png differ diff --git a/images/69-8.png b/images/69-8.png new file mode 100644 index 0000000..dce3507 Binary files /dev/null and b/images/69-8.png differ diff --git a/images/69-80.png b/images/69-80.png new file mode 100644 index 0000000..72cb96f Binary files /dev/null and b/images/69-80.png differ diff --git a/images/69-81.png b/images/69-81.png new file mode 100644 index 0000000..1dee4a6 Binary files /dev/null and b/images/69-81.png differ diff --git a/images/69-82.png b/images/69-82.png new file mode 100644 index 0000000..f9bf1d4 Binary files /dev/null and b/images/69-82.png differ diff --git a/images/69-83.png b/images/69-83.png new file mode 100644 index 0000000..3d14409 Binary files /dev/null and b/images/69-83.png differ diff --git a/images/69-84.png b/images/69-84.png new file mode 100644 index 0000000..c244569 Binary files /dev/null and b/images/69-84.png differ diff --git a/images/69-85.png b/images/69-85.png new file mode 100644 index 0000000..eb5fcaa Binary files /dev/null and b/images/69-85.png differ diff --git a/images/69-86.png b/images/69-86.png new file mode 100644 index 0000000..11f6cf5 Binary files /dev/null and b/images/69-86.png differ diff --git a/images/69-87.png b/images/69-87.png new file mode 100644 index 0000000..a835194 Binary files /dev/null and b/images/69-87.png differ diff --git a/images/69-88.png b/images/69-88.png new file mode 100644 index 0000000..8527d24 Binary files /dev/null and b/images/69-88.png differ diff --git a/images/69-89.png b/images/69-89.png new file mode 100644 index 0000000..9e7cbdc Binary files /dev/null and b/images/69-89.png differ diff --git a/images/69-9.png b/images/69-9.png new file mode 100644 index 0000000..de1b2cf Binary files /dev/null and b/images/69-9.png differ diff --git a/images/69-90.png b/images/69-90.png new file mode 100644 index 0000000..e1b5b32 Binary files /dev/null and b/images/69-90.png differ diff --git a/images/69-91.png b/images/69-91.png new file mode 100644 index 0000000..51923a4 Binary files /dev/null and b/images/69-91.png differ diff --git a/images/69-92.png b/images/69-92.png new file mode 100644 index 0000000..72e3480 Binary files /dev/null and b/images/69-92.png differ diff --git a/images/69-93.png b/images/69-93.png new file mode 100644 index 0000000..c9bf017 Binary files /dev/null and b/images/69-93.png differ diff --git a/images/69-94.png b/images/69-94.png new file mode 100644 index 0000000..c71180a Binary files /dev/null and b/images/69-94.png differ diff --git a/images/69-95.png b/images/69-95.png new file mode 100644 index 0000000..f509519 Binary files /dev/null and b/images/69-95.png differ diff --git a/images/69-96.png b/images/69-96.png new file mode 100644 index 0000000..97fd6e0 Binary files /dev/null and b/images/69-96.png differ diff --git a/images/69-97.png b/images/69-97.png new file mode 100644 index 0000000..916c501 Binary files /dev/null and b/images/69-97.png differ diff --git a/images/69-98.png b/images/69-98.png new file mode 100644 index 0000000..7700875 Binary files /dev/null and b/images/69-98.png differ diff --git a/images/69-99.png b/images/69-99.png new file mode 100644 index 0000000..3a13ec3 Binary files /dev/null and b/images/69-99.png differ diff --git a/images/7-0.png b/images/7-0.png new file mode 100644 index 0000000..08479a6 Binary files /dev/null and b/images/7-0.png differ diff --git a/images/7-1.png b/images/7-1.png new file mode 100644 index 0000000..7bf268d Binary files /dev/null and b/images/7-1.png differ diff --git a/images/7-10.png b/images/7-10.png new file mode 100644 index 0000000..aa84dfe Binary files /dev/null and b/images/7-10.png differ diff --git a/images/7-11.png b/images/7-11.png new file mode 100644 index 0000000..f353797 Binary files /dev/null and b/images/7-11.png differ diff --git a/images/7-12.png b/images/7-12.png new file mode 100644 index 0000000..2c1524d Binary files /dev/null and b/images/7-12.png differ diff --git a/images/7-13.png b/images/7-13.png new file mode 100644 index 0000000..cd8025b Binary files /dev/null and b/images/7-13.png differ diff --git a/images/7-14.png b/images/7-14.png new file mode 100644 index 0000000..1c74bb1 Binary files /dev/null and b/images/7-14.png differ diff --git a/images/7-15.png b/images/7-15.png new file mode 100644 index 0000000..1fda0d8 Binary files /dev/null and b/images/7-15.png differ diff --git a/images/7-16.png b/images/7-16.png new file mode 100644 index 0000000..c2cd2fc Binary files /dev/null and b/images/7-16.png differ diff --git a/images/7-17.png b/images/7-17.png new file mode 100644 index 0000000..b616dd2 Binary files /dev/null and b/images/7-17.png differ diff --git a/images/7-18.png b/images/7-18.png new file mode 100644 index 0000000..ebfb7f0 Binary files /dev/null and b/images/7-18.png differ diff --git a/images/7-19.png b/images/7-19.png new file mode 100644 index 0000000..2e58c6b Binary files /dev/null and b/images/7-19.png differ diff --git a/images/7-2.png b/images/7-2.png new file mode 100644 index 0000000..24f4137 Binary files /dev/null and b/images/7-2.png differ diff --git a/images/7-20.png b/images/7-20.png new file mode 100644 index 0000000..348e8d5 Binary files /dev/null and b/images/7-20.png differ diff --git a/images/7-21.png b/images/7-21.png new file mode 100644 index 0000000..e619bd1 Binary files /dev/null and b/images/7-21.png differ diff --git a/images/7-22.png b/images/7-22.png new file mode 100644 index 0000000..9de59ad Binary files /dev/null and b/images/7-22.png differ diff --git a/images/7-23.png b/images/7-23.png new file mode 100644 index 0000000..7a75bad Binary files /dev/null and b/images/7-23.png differ diff --git a/images/7-3.png b/images/7-3.png new file mode 100644 index 0000000..438711f Binary files /dev/null and b/images/7-3.png differ diff --git a/images/7-4.png b/images/7-4.png new file mode 100644 index 0000000..42e0369 Binary files /dev/null and b/images/7-4.png differ diff --git a/images/7-5.png b/images/7-5.png new file mode 100644 index 0000000..2f28b6f Binary files /dev/null and b/images/7-5.png differ diff --git a/images/7-6.png b/images/7-6.png new file mode 100644 index 0000000..5b8c023 Binary files /dev/null and b/images/7-6.png differ diff --git a/images/7-7.png b/images/7-7.png new file mode 100644 index 0000000..59647e1 Binary files /dev/null and b/images/7-7.png differ diff --git a/images/7-8.png b/images/7-8.png new file mode 100644 index 0000000..6c8079a Binary files /dev/null and b/images/7-8.png differ diff --git a/images/7-9.png b/images/7-9.png new file mode 100644 index 0000000..3e39b4b Binary files /dev/null and b/images/7-9.png differ diff --git a/images/70-0.png b/images/70-0.png new file mode 100644 index 0000000..a529821 Binary files /dev/null and b/images/70-0.png differ diff --git a/images/70-1.png b/images/70-1.png new file mode 100644 index 0000000..bf27409 Binary files /dev/null and b/images/70-1.png differ diff --git a/images/70-10.png b/images/70-10.png new file mode 100644 index 0000000..87cdc07 Binary files /dev/null and b/images/70-10.png differ diff --git a/images/70-11.png b/images/70-11.png new file mode 100644 index 0000000..250af2f Binary files /dev/null and b/images/70-11.png differ diff --git a/images/70-12.png b/images/70-12.png new file mode 100644 index 0000000..af8ab75 Binary files /dev/null and b/images/70-12.png differ diff --git a/images/70-13.png b/images/70-13.png new file mode 100644 index 0000000..dddab98 Binary files /dev/null and b/images/70-13.png differ diff --git a/images/70-14.png b/images/70-14.png new file mode 100644 index 0000000..958df4d Binary files /dev/null and b/images/70-14.png differ diff --git a/images/70-15.png b/images/70-15.png new file mode 100644 index 0000000..65b4a58 Binary files /dev/null and b/images/70-15.png differ diff --git a/images/70-16.png b/images/70-16.png new file mode 100644 index 0000000..f4a1658 Binary files /dev/null and b/images/70-16.png differ diff --git a/images/70-17.png b/images/70-17.png new file mode 100644 index 0000000..de340f0 Binary files /dev/null and b/images/70-17.png differ diff --git a/images/70-18.png b/images/70-18.png new file mode 100644 index 0000000..48b68e0 Binary files /dev/null and b/images/70-18.png differ diff --git a/images/70-19.png b/images/70-19.png new file mode 100644 index 0000000..e757704 Binary files /dev/null and b/images/70-19.png differ diff --git a/images/70-2.png b/images/70-2.png new file mode 100644 index 0000000..75789d0 Binary files /dev/null and b/images/70-2.png differ diff --git a/images/70-20.png b/images/70-20.png new file mode 100644 index 0000000..e1d4d80 Binary files /dev/null and b/images/70-20.png differ diff --git a/images/70-21.png b/images/70-21.png new file mode 100644 index 0000000..2acff4f Binary files /dev/null and b/images/70-21.png differ diff --git a/images/70-22.png b/images/70-22.png new file mode 100644 index 0000000..f9b557b Binary files /dev/null and b/images/70-22.png differ diff --git a/images/70-23.png b/images/70-23.png new file mode 100644 index 0000000..e0449d4 Binary files /dev/null and b/images/70-23.png differ diff --git a/images/70-24.png b/images/70-24.png new file mode 100644 index 0000000..a67a9fa Binary files /dev/null and b/images/70-24.png differ diff --git a/images/70-25.png b/images/70-25.png new file mode 100644 index 0000000..00dd63e Binary files /dev/null and b/images/70-25.png differ diff --git a/images/70-26.png b/images/70-26.png new file mode 100644 index 0000000..4d790d2 Binary files /dev/null and b/images/70-26.png differ diff --git a/images/70-27.png b/images/70-27.png new file mode 100644 index 0000000..fbc2d20 Binary files /dev/null and b/images/70-27.png differ diff --git a/images/70-28.png b/images/70-28.png new file mode 100644 index 0000000..e0e1628 Binary files /dev/null and b/images/70-28.png differ diff --git a/images/70-29.png b/images/70-29.png new file mode 100644 index 0000000..04f5940 Binary files /dev/null and b/images/70-29.png differ diff --git a/images/70-3.png b/images/70-3.png new file mode 100644 index 0000000..673cd5c Binary files /dev/null and b/images/70-3.png differ diff --git a/images/70-30.png b/images/70-30.png new file mode 100644 index 0000000..9d6e9f9 Binary files /dev/null and b/images/70-30.png differ diff --git a/images/70-31.png b/images/70-31.png new file mode 100644 index 0000000..618e9d6 Binary files /dev/null and b/images/70-31.png differ diff --git a/images/70-32.png b/images/70-32.png new file mode 100644 index 0000000..712c137 Binary files /dev/null and b/images/70-32.png differ diff --git a/images/70-33.png b/images/70-33.png new file mode 100644 index 0000000..245a6ae Binary files /dev/null and b/images/70-33.png differ diff --git a/images/70-34.png b/images/70-34.png new file mode 100644 index 0000000..9da5fd0 Binary files /dev/null and b/images/70-34.png differ diff --git a/images/70-35.png b/images/70-35.png new file mode 100644 index 0000000..d4e6872 Binary files /dev/null and b/images/70-35.png differ diff --git a/images/70-36.png b/images/70-36.png new file mode 100644 index 0000000..c9bfd90 Binary files /dev/null and b/images/70-36.png differ diff --git a/images/70-37.png b/images/70-37.png new file mode 100644 index 0000000..952f51f Binary files /dev/null and b/images/70-37.png differ diff --git a/images/70-38.png b/images/70-38.png new file mode 100644 index 0000000..0bc005b Binary files /dev/null and b/images/70-38.png differ diff --git a/images/70-39.png b/images/70-39.png new file mode 100644 index 0000000..2ef7a61 Binary files /dev/null and b/images/70-39.png differ diff --git a/images/70-4.png b/images/70-4.png new file mode 100644 index 0000000..577e5b3 Binary files /dev/null and b/images/70-4.png differ diff --git a/images/70-40.png b/images/70-40.png new file mode 100644 index 0000000..199ae64 Binary files /dev/null and b/images/70-40.png differ diff --git a/images/70-41.png b/images/70-41.png new file mode 100644 index 0000000..5d74d17 Binary files /dev/null and b/images/70-41.png differ diff --git a/images/70-42.png b/images/70-42.png new file mode 100644 index 0000000..9c7261a Binary files /dev/null and b/images/70-42.png differ diff --git a/images/70-43.png b/images/70-43.png new file mode 100644 index 0000000..f1c1b94 Binary files /dev/null and b/images/70-43.png differ diff --git a/images/70-44.png b/images/70-44.png new file mode 100644 index 0000000..7f92a26 Binary files /dev/null and b/images/70-44.png differ diff --git a/images/70-45.png b/images/70-45.png new file mode 100644 index 0000000..2bdaf7a Binary files /dev/null and b/images/70-45.png differ diff --git a/images/70-46.png b/images/70-46.png new file mode 100644 index 0000000..b59a611 Binary files /dev/null and b/images/70-46.png differ diff --git a/images/70-47.png b/images/70-47.png new file mode 100644 index 0000000..6d7ed68 Binary files /dev/null and b/images/70-47.png differ diff --git a/images/70-48.png b/images/70-48.png new file mode 100644 index 0000000..b2ec59b Binary files /dev/null and b/images/70-48.png differ diff --git a/images/70-49.png b/images/70-49.png new file mode 100644 index 0000000..8a13d40 Binary files /dev/null and b/images/70-49.png differ diff --git a/images/70-5.png b/images/70-5.png new file mode 100644 index 0000000..2aa03fa Binary files /dev/null and b/images/70-5.png differ diff --git a/images/70-50.png b/images/70-50.png new file mode 100644 index 0000000..b4c54dc Binary files /dev/null and b/images/70-50.png differ diff --git a/images/70-6.png b/images/70-6.png new file mode 100644 index 0000000..6aaaafc Binary files /dev/null and b/images/70-6.png differ diff --git a/images/70-7.png b/images/70-7.png new file mode 100644 index 0000000..1ab5afa Binary files /dev/null and b/images/70-7.png differ diff --git a/images/70-8.png b/images/70-8.png new file mode 100644 index 0000000..d8dbba2 Binary files /dev/null and b/images/70-8.png differ diff --git a/images/70-9.png b/images/70-9.png new file mode 100644 index 0000000..61af5b7 Binary files /dev/null and b/images/70-9.png differ diff --git a/images/71-0.png b/images/71-0.png new file mode 100644 index 0000000..08d71d5 Binary files /dev/null and b/images/71-0.png differ diff --git a/images/71-1.png b/images/71-1.png new file mode 100644 index 0000000..aa2d259 Binary files /dev/null and b/images/71-1.png differ diff --git a/images/71-10.png b/images/71-10.png new file mode 100644 index 0000000..c435d0b Binary files /dev/null and b/images/71-10.png differ diff --git a/images/71-11.png b/images/71-11.png new file mode 100644 index 0000000..cd19f8e Binary files /dev/null and b/images/71-11.png differ diff --git a/images/71-12.png b/images/71-12.png new file mode 100644 index 0000000..410257e Binary files /dev/null and b/images/71-12.png differ diff --git a/images/71-13.png b/images/71-13.png new file mode 100644 index 0000000..0c8c11f Binary files /dev/null and b/images/71-13.png differ diff --git a/images/71-14.png b/images/71-14.png new file mode 100644 index 0000000..662a4bf Binary files /dev/null and b/images/71-14.png differ diff --git a/images/71-15.png b/images/71-15.png new file mode 100644 index 0000000..94f6a7c Binary files /dev/null and b/images/71-15.png differ diff --git a/images/71-2.png b/images/71-2.png new file mode 100644 index 0000000..76a20a0 Binary files /dev/null and b/images/71-2.png differ diff --git a/images/71-3.png b/images/71-3.png new file mode 100644 index 0000000..03ce567 Binary files /dev/null and b/images/71-3.png differ diff --git a/images/71-4.png b/images/71-4.png new file mode 100644 index 0000000..d3ea399 Binary files /dev/null and b/images/71-4.png differ diff --git a/images/71-5.png b/images/71-5.png new file mode 100644 index 0000000..7125971 Binary files /dev/null and b/images/71-5.png differ diff --git a/images/71-6.png b/images/71-6.png new file mode 100644 index 0000000..510b42c Binary files /dev/null and b/images/71-6.png differ diff --git a/images/71-7.png b/images/71-7.png new file mode 100644 index 0000000..dcbf3c6 Binary files /dev/null and b/images/71-7.png differ diff --git a/images/71-8.png b/images/71-8.png new file mode 100644 index 0000000..3a81f7b Binary files /dev/null and b/images/71-8.png differ diff --git a/images/71-9.png b/images/71-9.png new file mode 100644 index 0000000..b7b71a4 Binary files /dev/null and b/images/71-9.png differ diff --git a/images/72-0.png b/images/72-0.png new file mode 100644 index 0000000..a41aa07 Binary files /dev/null and b/images/72-0.png differ diff --git a/images/72-1.png b/images/72-1.png new file mode 100644 index 0000000..0e3fd08 Binary files /dev/null and b/images/72-1.png differ diff --git a/images/72-10.png b/images/72-10.png new file mode 100644 index 0000000..6da5331 Binary files /dev/null and b/images/72-10.png differ diff --git a/images/72-11.png b/images/72-11.png new file mode 100644 index 0000000..aa6016d Binary files /dev/null and b/images/72-11.png differ diff --git a/images/72-12.png b/images/72-12.png new file mode 100644 index 0000000..a877f18 Binary files /dev/null and b/images/72-12.png differ diff --git a/images/72-13.png b/images/72-13.png new file mode 100644 index 0000000..8195d80 Binary files /dev/null and b/images/72-13.png differ diff --git a/images/72-14.png b/images/72-14.png new file mode 100644 index 0000000..96104d4 Binary files /dev/null and b/images/72-14.png differ diff --git a/images/72-15.png b/images/72-15.png new file mode 100644 index 0000000..77c0191 Binary files /dev/null and b/images/72-15.png differ diff --git a/images/72-16.png b/images/72-16.png new file mode 100644 index 0000000..81596a5 Binary files /dev/null and b/images/72-16.png differ diff --git a/images/72-17.png b/images/72-17.png new file mode 100644 index 0000000..128d822 Binary files /dev/null and b/images/72-17.png differ diff --git a/images/72-18.png b/images/72-18.png new file mode 100644 index 0000000..03ef932 Binary files /dev/null and b/images/72-18.png differ diff --git a/images/72-19.png b/images/72-19.png new file mode 100644 index 0000000..0a90620 Binary files /dev/null and b/images/72-19.png differ diff --git a/images/72-2.png b/images/72-2.png new file mode 100644 index 0000000..03eef57 Binary files /dev/null and b/images/72-2.png differ diff --git a/images/72-20.png b/images/72-20.png new file mode 100644 index 0000000..12ab35e Binary files /dev/null and b/images/72-20.png differ diff --git a/images/72-21.png b/images/72-21.png new file mode 100644 index 0000000..711eee2 Binary files /dev/null and b/images/72-21.png differ diff --git a/images/72-22.png b/images/72-22.png new file mode 100644 index 0000000..80f7376 Binary files /dev/null and b/images/72-22.png differ diff --git a/images/72-23.png b/images/72-23.png new file mode 100644 index 0000000..8fd41a8 Binary files /dev/null and b/images/72-23.png differ diff --git a/images/72-24.png b/images/72-24.png new file mode 100644 index 0000000..fe91da4 Binary files /dev/null and b/images/72-24.png differ diff --git a/images/72-25.png b/images/72-25.png new file mode 100644 index 0000000..9c4ba2e Binary files /dev/null and b/images/72-25.png differ diff --git a/images/72-26.png b/images/72-26.png new file mode 100644 index 0000000..c1741c4 Binary files /dev/null and b/images/72-26.png differ diff --git a/images/72-27.png b/images/72-27.png new file mode 100644 index 0000000..ab0f2ba Binary files /dev/null and b/images/72-27.png differ diff --git a/images/72-28.png b/images/72-28.png new file mode 100644 index 0000000..58e1989 Binary files /dev/null and b/images/72-28.png differ diff --git a/images/72-29.png b/images/72-29.png new file mode 100644 index 0000000..b53b4a1 Binary files /dev/null and b/images/72-29.png differ diff --git a/images/72-3.png b/images/72-3.png new file mode 100644 index 0000000..e7e3fc6 Binary files /dev/null and b/images/72-3.png differ diff --git a/images/72-30.png b/images/72-30.png new file mode 100644 index 0000000..2973149 Binary files /dev/null and b/images/72-30.png differ diff --git a/images/72-31.png b/images/72-31.png new file mode 100644 index 0000000..7c745d5 Binary files /dev/null and b/images/72-31.png differ diff --git a/images/72-32.png b/images/72-32.png new file mode 100644 index 0000000..7569510 Binary files /dev/null and b/images/72-32.png differ diff --git a/images/72-33.png b/images/72-33.png new file mode 100644 index 0000000..0f17397 Binary files /dev/null and b/images/72-33.png differ diff --git a/images/72-34.png b/images/72-34.png new file mode 100644 index 0000000..5d4f93f Binary files /dev/null and b/images/72-34.png differ diff --git a/images/72-35.png b/images/72-35.png new file mode 100644 index 0000000..3e65afe Binary files /dev/null and b/images/72-35.png differ diff --git a/images/72-36.png b/images/72-36.png new file mode 100644 index 0000000..2dbf1f9 Binary files /dev/null and b/images/72-36.png differ diff --git a/images/72-37.png b/images/72-37.png new file mode 100644 index 0000000..99a47f7 Binary files /dev/null and b/images/72-37.png differ diff --git a/images/72-38.png b/images/72-38.png new file mode 100644 index 0000000..2bcc156 Binary files /dev/null and b/images/72-38.png differ diff --git a/images/72-39.png b/images/72-39.png new file mode 100644 index 0000000..0279860 Binary files /dev/null and b/images/72-39.png differ diff --git a/images/72-4.png b/images/72-4.png new file mode 100644 index 0000000..7620185 Binary files /dev/null and b/images/72-4.png differ diff --git a/images/72-40.png b/images/72-40.png new file mode 100644 index 0000000..22f130d Binary files /dev/null and b/images/72-40.png differ diff --git a/images/72-41.png b/images/72-41.png new file mode 100644 index 0000000..86c9fba Binary files /dev/null and b/images/72-41.png differ diff --git a/images/72-42.png b/images/72-42.png new file mode 100644 index 0000000..3907734 Binary files /dev/null and b/images/72-42.png differ diff --git a/images/72-43.png b/images/72-43.png new file mode 100644 index 0000000..3ed15a3 Binary files /dev/null and b/images/72-43.png differ diff --git a/images/72-44.png b/images/72-44.png new file mode 100644 index 0000000..f46af6b Binary files /dev/null and b/images/72-44.png differ diff --git a/images/72-45.png b/images/72-45.png new file mode 100644 index 0000000..37675a3 Binary files /dev/null and b/images/72-45.png differ diff --git a/images/72-46.png b/images/72-46.png new file mode 100644 index 0000000..1eeaf4a Binary files /dev/null and b/images/72-46.png differ diff --git a/images/72-47.png b/images/72-47.png new file mode 100644 index 0000000..43399ef Binary files /dev/null and b/images/72-47.png differ diff --git a/images/72-48.png b/images/72-48.png new file mode 100644 index 0000000..0ce8ba4 Binary files /dev/null and b/images/72-48.png differ diff --git a/images/72-49.png b/images/72-49.png new file mode 100644 index 0000000..7ab2d3f Binary files /dev/null and b/images/72-49.png differ diff --git a/images/72-5.png b/images/72-5.png new file mode 100644 index 0000000..e178288 Binary files /dev/null and b/images/72-5.png differ diff --git a/images/72-50.png b/images/72-50.png new file mode 100644 index 0000000..cce7d20 Binary files /dev/null and b/images/72-50.png differ diff --git a/images/72-51.png b/images/72-51.png new file mode 100644 index 0000000..7c5db33 Binary files /dev/null and b/images/72-51.png differ diff --git a/images/72-52.png b/images/72-52.png new file mode 100644 index 0000000..036e1a4 Binary files /dev/null and b/images/72-52.png differ diff --git a/images/72-53.png b/images/72-53.png new file mode 100644 index 0000000..ced0dd7 Binary files /dev/null and b/images/72-53.png differ diff --git a/images/72-54.png b/images/72-54.png new file mode 100644 index 0000000..089f9fa Binary files /dev/null and b/images/72-54.png differ diff --git a/images/72-55.png b/images/72-55.png new file mode 100644 index 0000000..91124b2 Binary files /dev/null and b/images/72-55.png differ diff --git a/images/72-56.png b/images/72-56.png new file mode 100644 index 0000000..bca0ea5 Binary files /dev/null and b/images/72-56.png differ diff --git a/images/72-57.png b/images/72-57.png new file mode 100644 index 0000000..8f639ca Binary files /dev/null and b/images/72-57.png differ diff --git a/images/72-58.png b/images/72-58.png new file mode 100644 index 0000000..edaf667 Binary files /dev/null and b/images/72-58.png differ diff --git a/images/72-59.png b/images/72-59.png new file mode 100644 index 0000000..20fcd2f Binary files /dev/null and b/images/72-59.png differ diff --git a/images/72-6.png b/images/72-6.png new file mode 100644 index 0000000..29b112b Binary files /dev/null and b/images/72-6.png differ diff --git a/images/72-60.png b/images/72-60.png new file mode 100644 index 0000000..0bf355e Binary files /dev/null and b/images/72-60.png differ diff --git a/images/72-61.png b/images/72-61.png new file mode 100644 index 0000000..2aa37e0 Binary files /dev/null and b/images/72-61.png differ diff --git a/images/72-62.png b/images/72-62.png new file mode 100644 index 0000000..dfe99e9 Binary files /dev/null and b/images/72-62.png differ diff --git a/images/72-63.png b/images/72-63.png new file mode 100644 index 0000000..fab4292 Binary files /dev/null and b/images/72-63.png differ diff --git a/images/72-64.png b/images/72-64.png new file mode 100644 index 0000000..e87ab7e Binary files /dev/null and b/images/72-64.png differ diff --git a/images/72-65.png b/images/72-65.png new file mode 100644 index 0000000..eb43534 Binary files /dev/null and b/images/72-65.png differ diff --git a/images/72-66.png b/images/72-66.png new file mode 100644 index 0000000..5f06503 Binary files /dev/null and b/images/72-66.png differ diff --git a/images/72-7.png b/images/72-7.png new file mode 100644 index 0000000..0a1f37e Binary files /dev/null and b/images/72-7.png differ diff --git a/images/72-8.png b/images/72-8.png new file mode 100644 index 0000000..f1be102 Binary files /dev/null and b/images/72-8.png differ diff --git a/images/72-9.png b/images/72-9.png new file mode 100644 index 0000000..dc3f148 Binary files /dev/null and b/images/72-9.png differ diff --git a/images/73-0.png b/images/73-0.png new file mode 100644 index 0000000..3dd6295 Binary files /dev/null and b/images/73-0.png differ diff --git a/images/73-1.png b/images/73-1.png new file mode 100644 index 0000000..0347966 Binary files /dev/null and b/images/73-1.png differ diff --git a/images/73-10.png b/images/73-10.png new file mode 100644 index 0000000..0881729 Binary files /dev/null and b/images/73-10.png differ diff --git a/images/73-11.png b/images/73-11.png new file mode 100644 index 0000000..7325c16 Binary files /dev/null and b/images/73-11.png differ diff --git a/images/73-2.png b/images/73-2.png new file mode 100644 index 0000000..49004bd Binary files /dev/null and b/images/73-2.png differ diff --git a/images/73-3.png b/images/73-3.png new file mode 100644 index 0000000..95d55b6 Binary files /dev/null and b/images/73-3.png differ diff --git a/images/73-4.png b/images/73-4.png new file mode 100644 index 0000000..c850d10 Binary files /dev/null and b/images/73-4.png differ diff --git a/images/73-5.png b/images/73-5.png new file mode 100644 index 0000000..9b6bfae Binary files /dev/null and b/images/73-5.png differ diff --git a/images/73-6.png b/images/73-6.png new file mode 100644 index 0000000..4a40a35 Binary files /dev/null and b/images/73-6.png differ diff --git a/images/73-7.png b/images/73-7.png new file mode 100644 index 0000000..477877e Binary files /dev/null and b/images/73-7.png differ diff --git a/images/73-8.png b/images/73-8.png new file mode 100644 index 0000000..787f339 Binary files /dev/null and b/images/73-8.png differ diff --git a/images/73-9.png b/images/73-9.png new file mode 100644 index 0000000..a687d06 Binary files /dev/null and b/images/73-9.png differ diff --git a/images/74-0.png b/images/74-0.png new file mode 100644 index 0000000..e222e6c Binary files /dev/null and b/images/74-0.png differ diff --git a/images/74-1.png b/images/74-1.png new file mode 100644 index 0000000..70fb2c0 Binary files /dev/null and b/images/74-1.png differ diff --git a/images/74-10.png b/images/74-10.png new file mode 100644 index 0000000..5281cd1 Binary files /dev/null and b/images/74-10.png differ diff --git a/images/74-11.png b/images/74-11.png new file mode 100644 index 0000000..e9fe2d1 Binary files /dev/null and b/images/74-11.png differ diff --git a/images/74-12.png b/images/74-12.png new file mode 100644 index 0000000..c84a6d3 Binary files /dev/null and b/images/74-12.png differ diff --git a/images/74-13.png b/images/74-13.png new file mode 100644 index 0000000..87ee55b Binary files /dev/null and b/images/74-13.png differ diff --git a/images/74-14.png b/images/74-14.png new file mode 100644 index 0000000..7138c2d Binary files /dev/null and b/images/74-14.png differ diff --git a/images/74-15.png b/images/74-15.png new file mode 100644 index 0000000..4c7b5f5 Binary files /dev/null and b/images/74-15.png differ diff --git a/images/74-16.png b/images/74-16.png new file mode 100644 index 0000000..a205b50 Binary files /dev/null and b/images/74-16.png differ diff --git a/images/74-17.png b/images/74-17.png new file mode 100644 index 0000000..2360418 Binary files /dev/null and b/images/74-17.png differ diff --git a/images/74-18.png b/images/74-18.png new file mode 100644 index 0000000..ef3f424 Binary files /dev/null and b/images/74-18.png differ diff --git a/images/74-19.png b/images/74-19.png new file mode 100644 index 0000000..4396b79 Binary files /dev/null and b/images/74-19.png differ diff --git a/images/74-2.png b/images/74-2.png new file mode 100644 index 0000000..5ac71ae Binary files /dev/null and b/images/74-2.png differ diff --git a/images/74-20.png b/images/74-20.png new file mode 100644 index 0000000..524dd88 Binary files /dev/null and b/images/74-20.png differ diff --git a/images/74-21.png b/images/74-21.png new file mode 100644 index 0000000..6fc1c96 Binary files /dev/null and b/images/74-21.png differ diff --git a/images/74-22.png b/images/74-22.png new file mode 100644 index 0000000..e7c76ff Binary files /dev/null and b/images/74-22.png differ diff --git a/images/74-23.png b/images/74-23.png new file mode 100644 index 0000000..027b73f Binary files /dev/null and b/images/74-23.png differ diff --git a/images/74-24.png b/images/74-24.png new file mode 100644 index 0000000..a710441 Binary files /dev/null and b/images/74-24.png differ diff --git a/images/74-25.png b/images/74-25.png new file mode 100644 index 0000000..8e8ded8 Binary files /dev/null and b/images/74-25.png differ diff --git a/images/74-26.png b/images/74-26.png new file mode 100644 index 0000000..6a9e5b9 Binary files /dev/null and b/images/74-26.png differ diff --git a/images/74-27.png b/images/74-27.png new file mode 100644 index 0000000..66411f3 Binary files /dev/null and b/images/74-27.png differ diff --git a/images/74-28.png b/images/74-28.png new file mode 100644 index 0000000..5a504dc Binary files /dev/null and b/images/74-28.png differ diff --git a/images/74-29.png b/images/74-29.png new file mode 100644 index 0000000..4c26fbc Binary files /dev/null and b/images/74-29.png differ diff --git a/images/74-3.png b/images/74-3.png new file mode 100644 index 0000000..4f6710f Binary files /dev/null and b/images/74-3.png differ diff --git a/images/74-30.png b/images/74-30.png new file mode 100644 index 0000000..8d3790f Binary files /dev/null and b/images/74-30.png differ diff --git a/images/74-31.png b/images/74-31.png new file mode 100644 index 0000000..d290a03 Binary files /dev/null and b/images/74-31.png differ diff --git a/images/74-32.png b/images/74-32.png new file mode 100644 index 0000000..65bf14e Binary files /dev/null and b/images/74-32.png differ diff --git a/images/74-33.png b/images/74-33.png new file mode 100644 index 0000000..2bb0167 Binary files /dev/null and b/images/74-33.png differ diff --git a/images/74-34.png b/images/74-34.png new file mode 100644 index 0000000..c73e3ba Binary files /dev/null and b/images/74-34.png differ diff --git a/images/74-35.png b/images/74-35.png new file mode 100644 index 0000000..4bbd6a8 Binary files /dev/null and b/images/74-35.png differ diff --git a/images/74-36.png b/images/74-36.png new file mode 100644 index 0000000..041572c Binary files /dev/null and b/images/74-36.png differ diff --git a/images/74-37.png b/images/74-37.png new file mode 100644 index 0000000..1dda83d Binary files /dev/null and b/images/74-37.png differ diff --git a/images/74-38.png b/images/74-38.png new file mode 100644 index 0000000..5642772 Binary files /dev/null and b/images/74-38.png differ diff --git a/images/74-39.png b/images/74-39.png new file mode 100644 index 0000000..f25039c Binary files /dev/null and b/images/74-39.png differ diff --git a/images/74-4.png b/images/74-4.png new file mode 100644 index 0000000..be5798e Binary files /dev/null and b/images/74-4.png differ diff --git a/images/74-40.png b/images/74-40.png new file mode 100644 index 0000000..79a6127 Binary files /dev/null and b/images/74-40.png differ diff --git a/images/74-41.png b/images/74-41.png new file mode 100644 index 0000000..22f2ef2 Binary files /dev/null and b/images/74-41.png differ diff --git a/images/74-42.png b/images/74-42.png new file mode 100644 index 0000000..8dfb1a1 Binary files /dev/null and b/images/74-42.png differ diff --git a/images/74-43.png b/images/74-43.png new file mode 100644 index 0000000..d789f1e Binary files /dev/null and b/images/74-43.png differ diff --git a/images/74-44.png b/images/74-44.png new file mode 100644 index 0000000..eb9fc06 Binary files /dev/null and b/images/74-44.png differ diff --git a/images/74-5.png b/images/74-5.png new file mode 100644 index 0000000..82fa6ec Binary files /dev/null and b/images/74-5.png differ diff --git a/images/74-6.png b/images/74-6.png new file mode 100644 index 0000000..ff9bc3f Binary files /dev/null and b/images/74-6.png differ diff --git a/images/74-7.png b/images/74-7.png new file mode 100644 index 0000000..9027e0f Binary files /dev/null and b/images/74-7.png differ diff --git a/images/74-8.png b/images/74-8.png new file mode 100644 index 0000000..18150f0 Binary files /dev/null and b/images/74-8.png differ diff --git a/images/74-9.png b/images/74-9.png new file mode 100644 index 0000000..39b1f7c Binary files /dev/null and b/images/74-9.png differ diff --git a/images/75-0.png b/images/75-0.png new file mode 100644 index 0000000..8c58270 Binary files /dev/null and b/images/75-0.png differ diff --git a/images/75-1.png b/images/75-1.png new file mode 100644 index 0000000..bac4110 Binary files /dev/null and b/images/75-1.png differ diff --git a/images/75-10.png b/images/75-10.png new file mode 100644 index 0000000..d8293b6 Binary files /dev/null and b/images/75-10.png differ diff --git a/images/75-11.png b/images/75-11.png new file mode 100644 index 0000000..49e014f Binary files /dev/null and b/images/75-11.png differ diff --git a/images/75-12.png b/images/75-12.png new file mode 100644 index 0000000..7edd65b Binary files /dev/null and b/images/75-12.png differ diff --git a/images/75-13.png b/images/75-13.png new file mode 100644 index 0000000..8ab146d Binary files /dev/null and b/images/75-13.png differ diff --git a/images/75-14.png b/images/75-14.png new file mode 100644 index 0000000..baac347 Binary files /dev/null and b/images/75-14.png differ diff --git a/images/75-15.png b/images/75-15.png new file mode 100644 index 0000000..523f044 Binary files /dev/null and b/images/75-15.png differ diff --git a/images/75-16.png b/images/75-16.png new file mode 100644 index 0000000..e6bcedb Binary files /dev/null and b/images/75-16.png differ diff --git a/images/75-17.png b/images/75-17.png new file mode 100644 index 0000000..ef0aac1 Binary files /dev/null and b/images/75-17.png differ diff --git a/images/75-18.png b/images/75-18.png new file mode 100644 index 0000000..7ea31a7 Binary files /dev/null and b/images/75-18.png differ diff --git a/images/75-19.png b/images/75-19.png new file mode 100644 index 0000000..131db79 Binary files /dev/null and b/images/75-19.png differ diff --git a/images/75-2.png b/images/75-2.png new file mode 100644 index 0000000..2c1da83 Binary files /dev/null and b/images/75-2.png differ diff --git a/images/75-20.png b/images/75-20.png new file mode 100644 index 0000000..e98c3b4 Binary files /dev/null and b/images/75-20.png differ diff --git a/images/75-21.png b/images/75-21.png new file mode 100644 index 0000000..dc893b1 Binary files /dev/null and b/images/75-21.png differ diff --git a/images/75-22.png b/images/75-22.png new file mode 100644 index 0000000..994ed07 Binary files /dev/null and b/images/75-22.png differ diff --git a/images/75-23.png b/images/75-23.png new file mode 100644 index 0000000..e4c62ec Binary files /dev/null and b/images/75-23.png differ diff --git a/images/75-3.png b/images/75-3.png new file mode 100644 index 0000000..207f71d Binary files /dev/null and b/images/75-3.png differ diff --git a/images/75-4.png b/images/75-4.png new file mode 100644 index 0000000..8593382 Binary files /dev/null and b/images/75-4.png differ diff --git a/images/75-5.png b/images/75-5.png new file mode 100644 index 0000000..0b95a32 Binary files /dev/null and b/images/75-5.png differ diff --git a/images/75-6.png b/images/75-6.png new file mode 100644 index 0000000..b3038cf Binary files /dev/null and b/images/75-6.png differ diff --git a/images/75-7.png b/images/75-7.png new file mode 100644 index 0000000..19e245b Binary files /dev/null and b/images/75-7.png differ diff --git a/images/75-8.png b/images/75-8.png new file mode 100644 index 0000000..53d5212 Binary files /dev/null and b/images/75-8.png differ diff --git a/images/75-9.png b/images/75-9.png new file mode 100644 index 0000000..92e93b9 Binary files /dev/null and b/images/75-9.png differ diff --git a/images/76-0.png b/images/76-0.png new file mode 100644 index 0000000..312883e Binary files /dev/null and b/images/76-0.png differ diff --git a/images/76-1.png b/images/76-1.png new file mode 100644 index 0000000..1380412 Binary files /dev/null and b/images/76-1.png differ diff --git a/images/76-10.png b/images/76-10.png new file mode 100644 index 0000000..60f6e11 Binary files /dev/null and b/images/76-10.png differ diff --git a/images/76-11.png b/images/76-11.png new file mode 100644 index 0000000..cb70641 Binary files /dev/null and b/images/76-11.png differ diff --git a/images/76-12.png b/images/76-12.png new file mode 100644 index 0000000..406ff78 Binary files /dev/null and b/images/76-12.png differ diff --git a/images/76-13.png b/images/76-13.png new file mode 100644 index 0000000..26a9ed1 Binary files /dev/null and b/images/76-13.png differ diff --git a/images/76-14.png b/images/76-14.png new file mode 100644 index 0000000..a1508ef Binary files /dev/null and b/images/76-14.png differ diff --git a/images/76-15.png b/images/76-15.png new file mode 100644 index 0000000..9c43145 Binary files /dev/null and b/images/76-15.png differ diff --git a/images/76-16.png b/images/76-16.png new file mode 100644 index 0000000..e76407a Binary files /dev/null and b/images/76-16.png differ diff --git a/images/76-17.png b/images/76-17.png new file mode 100644 index 0000000..53119a9 Binary files /dev/null and b/images/76-17.png differ diff --git a/images/76-2.png b/images/76-2.png new file mode 100644 index 0000000..e12150d Binary files /dev/null and b/images/76-2.png differ diff --git a/images/76-3.png b/images/76-3.png new file mode 100644 index 0000000..bbb0a13 Binary files /dev/null and b/images/76-3.png differ diff --git a/images/76-4.png b/images/76-4.png new file mode 100644 index 0000000..bfc96b0 Binary files /dev/null and b/images/76-4.png differ diff --git a/images/76-5.png b/images/76-5.png new file mode 100644 index 0000000..5760991 Binary files /dev/null and b/images/76-5.png differ diff --git a/images/76-6.png b/images/76-6.png new file mode 100644 index 0000000..929bb8d Binary files /dev/null and b/images/76-6.png differ diff --git a/images/76-7.png b/images/76-7.png new file mode 100644 index 0000000..7824c52 Binary files /dev/null and b/images/76-7.png differ diff --git a/images/76-8.png b/images/76-8.png new file mode 100644 index 0000000..2580fc3 Binary files /dev/null and b/images/76-8.png differ diff --git a/images/76-9.png b/images/76-9.png new file mode 100644 index 0000000..059a3be Binary files /dev/null and b/images/76-9.png differ diff --git a/images/77-0.png b/images/77-0.png new file mode 100644 index 0000000..304c15e Binary files /dev/null and b/images/77-0.png differ diff --git a/images/77-1.png b/images/77-1.png new file mode 100644 index 0000000..7a9ca6b Binary files /dev/null and b/images/77-1.png differ diff --git a/images/77-10.png b/images/77-10.png new file mode 100644 index 0000000..20ba1eb Binary files /dev/null and b/images/77-10.png differ diff --git a/images/77-11.png b/images/77-11.png new file mode 100644 index 0000000..0a3d34a Binary files /dev/null and b/images/77-11.png differ diff --git a/images/77-2.png b/images/77-2.png new file mode 100644 index 0000000..05551aa Binary files /dev/null and b/images/77-2.png differ diff --git a/images/77-3.png b/images/77-3.png new file mode 100644 index 0000000..a15293b Binary files /dev/null and b/images/77-3.png differ diff --git a/images/77-4.png b/images/77-4.png new file mode 100644 index 0000000..db7069b Binary files /dev/null and b/images/77-4.png differ diff --git a/images/77-5.png b/images/77-5.png new file mode 100644 index 0000000..47e34e0 Binary files /dev/null and b/images/77-5.png differ diff --git a/images/77-6.png b/images/77-6.png new file mode 100644 index 0000000..bac4290 Binary files /dev/null and b/images/77-6.png differ diff --git a/images/77-7.png b/images/77-7.png new file mode 100644 index 0000000..c800d6c Binary files /dev/null and b/images/77-7.png differ diff --git a/images/77-8.png b/images/77-8.png new file mode 100644 index 0000000..8e8e864 Binary files /dev/null and b/images/77-8.png differ diff --git a/images/77-9.png b/images/77-9.png new file mode 100644 index 0000000..83f26a2 Binary files /dev/null and b/images/77-9.png differ diff --git a/images/78-0.png b/images/78-0.png new file mode 100644 index 0000000..5ce66e0 Binary files /dev/null and b/images/78-0.png differ diff --git a/images/78-1.png b/images/78-1.png new file mode 100644 index 0000000..e7c966d Binary files /dev/null and b/images/78-1.png differ diff --git a/images/78-10.png b/images/78-10.png new file mode 100644 index 0000000..0a56c30 Binary files /dev/null and b/images/78-10.png differ diff --git a/images/78-11.png b/images/78-11.png new file mode 100644 index 0000000..dcde833 Binary files /dev/null and b/images/78-11.png differ diff --git a/images/78-12.png b/images/78-12.png new file mode 100644 index 0000000..d42c70e Binary files /dev/null and b/images/78-12.png differ diff --git a/images/78-13.png b/images/78-13.png new file mode 100644 index 0000000..a54a4a8 Binary files /dev/null and b/images/78-13.png differ diff --git a/images/78-14.png b/images/78-14.png new file mode 100644 index 0000000..a409977 Binary files /dev/null and b/images/78-14.png differ diff --git a/images/78-15.png b/images/78-15.png new file mode 100644 index 0000000..8a2f51c Binary files /dev/null and b/images/78-15.png differ diff --git a/images/78-16.png b/images/78-16.png new file mode 100644 index 0000000..bef239c Binary files /dev/null and b/images/78-16.png differ diff --git a/images/78-17.png b/images/78-17.png new file mode 100644 index 0000000..65e7402 Binary files /dev/null and b/images/78-17.png differ diff --git a/images/78-18.png b/images/78-18.png new file mode 100644 index 0000000..a9a7666 Binary files /dev/null and b/images/78-18.png differ diff --git a/images/78-19.png b/images/78-19.png new file mode 100644 index 0000000..daac2e5 Binary files /dev/null and b/images/78-19.png differ diff --git a/images/78-2.png b/images/78-2.png new file mode 100644 index 0000000..b0a8821 Binary files /dev/null and b/images/78-2.png differ diff --git a/images/78-20.png b/images/78-20.png new file mode 100644 index 0000000..1744820 Binary files /dev/null and b/images/78-20.png differ diff --git a/images/78-21.png b/images/78-21.png new file mode 100644 index 0000000..36f2a7f Binary files /dev/null and b/images/78-21.png differ diff --git a/images/78-22.png b/images/78-22.png new file mode 100644 index 0000000..25fa729 Binary files /dev/null and b/images/78-22.png differ diff --git a/images/78-23.png b/images/78-23.png new file mode 100644 index 0000000..1ca17b8 Binary files /dev/null and b/images/78-23.png differ diff --git a/images/78-24.png b/images/78-24.png new file mode 100644 index 0000000..e0c137e Binary files /dev/null and b/images/78-24.png differ diff --git a/images/78-25.png b/images/78-25.png new file mode 100644 index 0000000..8c459a4 Binary files /dev/null and b/images/78-25.png differ diff --git a/images/78-26.png b/images/78-26.png new file mode 100644 index 0000000..79bd5fb Binary files /dev/null and b/images/78-26.png differ diff --git a/images/78-27.png b/images/78-27.png new file mode 100644 index 0000000..9a0a255 Binary files /dev/null and b/images/78-27.png differ diff --git a/images/78-28.png b/images/78-28.png new file mode 100644 index 0000000..9201eda Binary files /dev/null and b/images/78-28.png differ diff --git a/images/78-29.png b/images/78-29.png new file mode 100644 index 0000000..d7029a7 Binary files /dev/null and b/images/78-29.png differ diff --git a/images/78-3.png b/images/78-3.png new file mode 100644 index 0000000..a172eef Binary files /dev/null and b/images/78-3.png differ diff --git a/images/78-30.png b/images/78-30.png new file mode 100644 index 0000000..44e455d Binary files /dev/null and b/images/78-30.png differ diff --git a/images/78-31.png b/images/78-31.png new file mode 100644 index 0000000..124e5f6 Binary files /dev/null and b/images/78-31.png differ diff --git a/images/78-32.png b/images/78-32.png new file mode 100644 index 0000000..7b960c8 Binary files /dev/null and b/images/78-32.png differ diff --git a/images/78-33.png b/images/78-33.png new file mode 100644 index 0000000..d48ebde Binary files /dev/null and b/images/78-33.png differ diff --git a/images/78-34.png b/images/78-34.png new file mode 100644 index 0000000..df6fbff Binary files /dev/null and b/images/78-34.png differ diff --git a/images/78-35.png b/images/78-35.png new file mode 100644 index 0000000..1ed66ff Binary files /dev/null and b/images/78-35.png differ diff --git a/images/78-36.png b/images/78-36.png new file mode 100644 index 0000000..229023f Binary files /dev/null and b/images/78-36.png differ diff --git a/images/78-37.png b/images/78-37.png new file mode 100644 index 0000000..febdb3f Binary files /dev/null and b/images/78-37.png differ diff --git a/images/78-38.png b/images/78-38.png new file mode 100644 index 0000000..6a9280e Binary files /dev/null and b/images/78-38.png differ diff --git a/images/78-39.png b/images/78-39.png new file mode 100644 index 0000000..78e206a Binary files /dev/null and b/images/78-39.png differ diff --git a/images/78-4.png b/images/78-4.png new file mode 100644 index 0000000..9fe95a8 Binary files /dev/null and b/images/78-4.png differ diff --git a/images/78-40.png b/images/78-40.png new file mode 100644 index 0000000..fe6f92e Binary files /dev/null and b/images/78-40.png differ diff --git a/images/78-41.png b/images/78-41.png new file mode 100644 index 0000000..fa6ee95 Binary files /dev/null and b/images/78-41.png differ diff --git a/images/78-42.png b/images/78-42.png new file mode 100644 index 0000000..08fb647 Binary files /dev/null and b/images/78-42.png differ diff --git a/images/78-43.png b/images/78-43.png new file mode 100644 index 0000000..56aa156 Binary files /dev/null and b/images/78-43.png differ diff --git a/images/78-44.png b/images/78-44.png new file mode 100644 index 0000000..d2bf834 Binary files /dev/null and b/images/78-44.png differ diff --git a/images/78-45.png b/images/78-45.png new file mode 100644 index 0000000..35e901e Binary files /dev/null and b/images/78-45.png differ diff --git a/images/78-46.png b/images/78-46.png new file mode 100644 index 0000000..45a1193 Binary files /dev/null and b/images/78-46.png differ diff --git a/images/78-47.png b/images/78-47.png new file mode 100644 index 0000000..bfc266b Binary files /dev/null and b/images/78-47.png differ diff --git a/images/78-48.png b/images/78-48.png new file mode 100644 index 0000000..702c76a Binary files /dev/null and b/images/78-48.png differ diff --git a/images/78-49.png b/images/78-49.png new file mode 100644 index 0000000..56685e0 Binary files /dev/null and b/images/78-49.png differ diff --git a/images/78-5.png b/images/78-5.png new file mode 100644 index 0000000..af04950 Binary files /dev/null and b/images/78-5.png differ diff --git a/images/78-50.png b/images/78-50.png new file mode 100644 index 0000000..cb3e604 Binary files /dev/null and b/images/78-50.png differ diff --git a/images/78-51.png b/images/78-51.png new file mode 100644 index 0000000..64adc40 Binary files /dev/null and b/images/78-51.png differ diff --git a/images/78-52.png b/images/78-52.png new file mode 100644 index 0000000..8d65fac Binary files /dev/null and b/images/78-52.png differ diff --git a/images/78-53.png b/images/78-53.png new file mode 100644 index 0000000..eab79b8 Binary files /dev/null and b/images/78-53.png differ diff --git a/images/78-54.png b/images/78-54.png new file mode 100644 index 0000000..454b630 Binary files /dev/null and b/images/78-54.png differ diff --git a/images/78-6.png b/images/78-6.png new file mode 100644 index 0000000..a4b0264 Binary files /dev/null and b/images/78-6.png differ diff --git a/images/78-7.png b/images/78-7.png new file mode 100644 index 0000000..278c9a3 Binary files /dev/null and b/images/78-7.png differ diff --git a/images/78-8.png b/images/78-8.png new file mode 100644 index 0000000..76c3f4c Binary files /dev/null and b/images/78-8.png differ diff --git a/images/78-9.png b/images/78-9.png new file mode 100644 index 0000000..7912d53 Binary files /dev/null and b/images/78-9.png differ diff --git a/images/79-0.png b/images/79-0.png new file mode 100644 index 0000000..8aa4b68 Binary files /dev/null and b/images/79-0.png differ diff --git a/images/79-1.png b/images/79-1.png new file mode 100644 index 0000000..8d496bf Binary files /dev/null and b/images/79-1.png differ diff --git a/images/79-10.png b/images/79-10.png new file mode 100644 index 0000000..92c9baa Binary files /dev/null and b/images/79-10.png differ diff --git a/images/79-11.png b/images/79-11.png new file mode 100644 index 0000000..20a4cfe Binary files /dev/null and b/images/79-11.png differ diff --git a/images/79-12.png b/images/79-12.png new file mode 100644 index 0000000..49ae19d Binary files /dev/null and b/images/79-12.png differ diff --git a/images/79-13.png b/images/79-13.png new file mode 100644 index 0000000..5e06208 Binary files /dev/null and b/images/79-13.png differ diff --git a/images/79-14.png b/images/79-14.png new file mode 100644 index 0000000..b99ca74 Binary files /dev/null and b/images/79-14.png differ diff --git a/images/79-15.png b/images/79-15.png new file mode 100644 index 0000000..7ac727b Binary files /dev/null and b/images/79-15.png differ diff --git a/images/79-16.png b/images/79-16.png new file mode 100644 index 0000000..ef3c4e6 Binary files /dev/null and b/images/79-16.png differ diff --git a/images/79-17.png b/images/79-17.png new file mode 100644 index 0000000..9c9a804 Binary files /dev/null and b/images/79-17.png differ diff --git a/images/79-18.png b/images/79-18.png new file mode 100644 index 0000000..41ad20f Binary files /dev/null and b/images/79-18.png differ diff --git a/images/79-19.png b/images/79-19.png new file mode 100644 index 0000000..9e43789 Binary files /dev/null and b/images/79-19.png differ diff --git a/images/79-2.png b/images/79-2.png new file mode 100644 index 0000000..625746b Binary files /dev/null and b/images/79-2.png differ diff --git a/images/79-20.png b/images/79-20.png new file mode 100644 index 0000000..4a476e7 Binary files /dev/null and b/images/79-20.png differ diff --git a/images/79-21.png b/images/79-21.png new file mode 100644 index 0000000..4cb9f75 Binary files /dev/null and b/images/79-21.png differ diff --git a/images/79-22.png b/images/79-22.png new file mode 100644 index 0000000..28bdba1 Binary files /dev/null and b/images/79-22.png differ diff --git a/images/79-23.png b/images/79-23.png new file mode 100644 index 0000000..3b7418e Binary files /dev/null and b/images/79-23.png differ diff --git a/images/79-24.png b/images/79-24.png new file mode 100644 index 0000000..ca38d8d Binary files /dev/null and b/images/79-24.png differ diff --git a/images/79-25.png b/images/79-25.png new file mode 100644 index 0000000..71e7eae Binary files /dev/null and b/images/79-25.png differ diff --git a/images/79-26.png b/images/79-26.png new file mode 100644 index 0000000..c78a8a9 Binary files /dev/null and b/images/79-26.png differ diff --git a/images/79-27.png b/images/79-27.png new file mode 100644 index 0000000..f537d39 Binary files /dev/null and b/images/79-27.png differ diff --git a/images/79-28.png b/images/79-28.png new file mode 100644 index 0000000..b033713 Binary files /dev/null and b/images/79-28.png differ diff --git a/images/79-29.png b/images/79-29.png new file mode 100644 index 0000000..c7960ad Binary files /dev/null and b/images/79-29.png differ diff --git a/images/79-3.png b/images/79-3.png new file mode 100644 index 0000000..73ffbf5 Binary files /dev/null and b/images/79-3.png differ diff --git a/images/79-30.png b/images/79-30.png new file mode 100644 index 0000000..5cf57bc Binary files /dev/null and b/images/79-30.png differ diff --git a/images/79-31.png b/images/79-31.png new file mode 100644 index 0000000..cc4232d Binary files /dev/null and b/images/79-31.png differ diff --git a/images/79-32.png b/images/79-32.png new file mode 100644 index 0000000..24cd089 Binary files /dev/null and b/images/79-32.png differ diff --git a/images/79-33.png b/images/79-33.png new file mode 100644 index 0000000..54f4269 Binary files /dev/null and b/images/79-33.png differ diff --git a/images/79-34.png b/images/79-34.png new file mode 100644 index 0000000..6c5ebe2 Binary files /dev/null and b/images/79-34.png differ diff --git a/images/79-35.png b/images/79-35.png new file mode 100644 index 0000000..86998b7 Binary files /dev/null and b/images/79-35.png differ diff --git a/images/79-36.png b/images/79-36.png new file mode 100644 index 0000000..d8f60ec Binary files /dev/null and b/images/79-36.png differ diff --git a/images/79-37.png b/images/79-37.png new file mode 100644 index 0000000..4269a7a Binary files /dev/null and b/images/79-37.png differ diff --git a/images/79-38.png b/images/79-38.png new file mode 100644 index 0000000..069195a Binary files /dev/null and b/images/79-38.png differ diff --git a/images/79-39.png b/images/79-39.png new file mode 100644 index 0000000..1718c00 Binary files /dev/null and b/images/79-39.png differ diff --git a/images/79-4.png b/images/79-4.png new file mode 100644 index 0000000..bdb7e07 Binary files /dev/null and b/images/79-4.png differ diff --git a/images/79-40.png b/images/79-40.png new file mode 100644 index 0000000..6c0b7ae Binary files /dev/null and b/images/79-40.png differ diff --git a/images/79-41.png b/images/79-41.png new file mode 100644 index 0000000..9805390 Binary files /dev/null and b/images/79-41.png differ diff --git a/images/79-42.png b/images/79-42.png new file mode 100644 index 0000000..cc4be22 Binary files /dev/null and b/images/79-42.png differ diff --git a/images/79-43.png b/images/79-43.png new file mode 100644 index 0000000..acb7338 Binary files /dev/null and b/images/79-43.png differ diff --git a/images/79-44.png b/images/79-44.png new file mode 100644 index 0000000..27c16e3 Binary files /dev/null and b/images/79-44.png differ diff --git a/images/79-45.png b/images/79-45.png new file mode 100644 index 0000000..3900613 Binary files /dev/null and b/images/79-45.png differ diff --git a/images/79-46.png b/images/79-46.png new file mode 100644 index 0000000..ab54caf Binary files /dev/null and b/images/79-46.png differ diff --git a/images/79-47.png b/images/79-47.png new file mode 100644 index 0000000..7587477 Binary files /dev/null and b/images/79-47.png differ diff --git a/images/79-48.png b/images/79-48.png new file mode 100644 index 0000000..3ea2d00 Binary files /dev/null and b/images/79-48.png differ diff --git a/images/79-49.png b/images/79-49.png new file mode 100644 index 0000000..3a7a6bc Binary files /dev/null and b/images/79-49.png differ diff --git a/images/79-5.png b/images/79-5.png new file mode 100644 index 0000000..879500e Binary files /dev/null and b/images/79-5.png differ diff --git a/images/79-50.png b/images/79-50.png new file mode 100644 index 0000000..f05d340 Binary files /dev/null and b/images/79-50.png differ diff --git a/images/79-51.png b/images/79-51.png new file mode 100644 index 0000000..21c5f4a Binary files /dev/null and b/images/79-51.png differ diff --git a/images/79-52.png b/images/79-52.png new file mode 100644 index 0000000..e418be3 Binary files /dev/null and b/images/79-52.png differ diff --git a/images/79-53.png b/images/79-53.png new file mode 100644 index 0000000..875fad0 Binary files /dev/null and b/images/79-53.png differ diff --git a/images/79-6.png b/images/79-6.png new file mode 100644 index 0000000..11f5108 Binary files /dev/null and b/images/79-6.png differ diff --git a/images/79-7.png b/images/79-7.png new file mode 100644 index 0000000..1c212bc Binary files /dev/null and b/images/79-7.png differ diff --git a/images/79-8.png b/images/79-8.png new file mode 100644 index 0000000..a03ff6a Binary files /dev/null and b/images/79-8.png differ diff --git a/images/79-9.png b/images/79-9.png new file mode 100644 index 0000000..f731568 Binary files /dev/null and b/images/79-9.png differ diff --git a/images/8-0.png b/images/8-0.png new file mode 100644 index 0000000..d328a2f Binary files /dev/null and b/images/8-0.png differ diff --git a/images/8-1.png b/images/8-1.png new file mode 100644 index 0000000..19e7485 Binary files /dev/null and b/images/8-1.png differ diff --git a/images/8-10.png b/images/8-10.png new file mode 100644 index 0000000..2709251 Binary files /dev/null and b/images/8-10.png differ diff --git a/images/8-11.png b/images/8-11.png new file mode 100644 index 0000000..f18d511 Binary files /dev/null and b/images/8-11.png differ diff --git a/images/8-12.png b/images/8-12.png new file mode 100644 index 0000000..727ba5d Binary files /dev/null and b/images/8-12.png differ diff --git a/images/8-13.png b/images/8-13.png new file mode 100644 index 0000000..4e3bd39 Binary files /dev/null and b/images/8-13.png differ diff --git a/images/8-14.png b/images/8-14.png new file mode 100644 index 0000000..65696b0 Binary files /dev/null and b/images/8-14.png differ diff --git a/images/8-15.png b/images/8-15.png new file mode 100644 index 0000000..19a7757 Binary files /dev/null and b/images/8-15.png differ diff --git a/images/8-16.png b/images/8-16.png new file mode 100644 index 0000000..4754b08 Binary files /dev/null and b/images/8-16.png differ diff --git a/images/8-2.png b/images/8-2.png new file mode 100644 index 0000000..d579f62 Binary files /dev/null and b/images/8-2.png differ diff --git a/images/8-3.png b/images/8-3.png new file mode 100644 index 0000000..0c5077c Binary files /dev/null and b/images/8-3.png differ diff --git a/images/8-4.png b/images/8-4.png new file mode 100644 index 0000000..463e0ab Binary files /dev/null and b/images/8-4.png differ diff --git a/images/8-5.png b/images/8-5.png new file mode 100644 index 0000000..b1cabce Binary files /dev/null and b/images/8-5.png differ diff --git a/images/8-6.png b/images/8-6.png new file mode 100644 index 0000000..5617cdd Binary files /dev/null and b/images/8-6.png differ diff --git a/images/8-7.png b/images/8-7.png new file mode 100644 index 0000000..f79f3b6 Binary files /dev/null and b/images/8-7.png differ diff --git a/images/8-8.png b/images/8-8.png new file mode 100644 index 0000000..112a336 Binary files /dev/null and b/images/8-8.png differ diff --git a/images/8-9.png b/images/8-9.png new file mode 100644 index 0000000..09462bf Binary files /dev/null and b/images/8-9.png differ diff --git a/images/80-0.png b/images/80-0.png new file mode 100644 index 0000000..2ec6293 Binary files /dev/null and b/images/80-0.png differ diff --git a/images/80-1.png b/images/80-1.png new file mode 100644 index 0000000..97ead05 Binary files /dev/null and b/images/80-1.png differ diff --git a/images/80-10.png b/images/80-10.png new file mode 100644 index 0000000..715f444 Binary files /dev/null and b/images/80-10.png differ diff --git a/images/80-11.png b/images/80-11.png new file mode 100644 index 0000000..a0dbc76 Binary files /dev/null and b/images/80-11.png differ diff --git a/images/80-2.png b/images/80-2.png new file mode 100644 index 0000000..22a952a Binary files /dev/null and b/images/80-2.png differ diff --git a/images/80-3.png b/images/80-3.png new file mode 100644 index 0000000..31b36a6 Binary files /dev/null and b/images/80-3.png differ diff --git a/images/80-4.png b/images/80-4.png new file mode 100644 index 0000000..b7ef0f4 Binary files /dev/null and b/images/80-4.png differ diff --git a/images/80-5.png b/images/80-5.png new file mode 100644 index 0000000..d053482 Binary files /dev/null and b/images/80-5.png differ diff --git a/images/80-6.png b/images/80-6.png new file mode 100644 index 0000000..11f79fc Binary files /dev/null and b/images/80-6.png differ diff --git a/images/80-7.png b/images/80-7.png new file mode 100644 index 0000000..2e18f63 Binary files /dev/null and b/images/80-7.png differ diff --git a/images/80-8.png b/images/80-8.png new file mode 100644 index 0000000..023e33a Binary files /dev/null and b/images/80-8.png differ diff --git a/images/80-9.png b/images/80-9.png new file mode 100644 index 0000000..212788c Binary files /dev/null and b/images/80-9.png differ diff --git a/images/81-0.png b/images/81-0.png new file mode 100644 index 0000000..e01251a Binary files /dev/null and b/images/81-0.png differ diff --git a/images/81-1.png b/images/81-1.png new file mode 100644 index 0000000..e4fc90c Binary files /dev/null and b/images/81-1.png differ diff --git a/images/81-10.png b/images/81-10.png new file mode 100644 index 0000000..41a9f6f Binary files /dev/null and b/images/81-10.png differ diff --git a/images/81-11.png b/images/81-11.png new file mode 100644 index 0000000..c42d1b9 Binary files /dev/null and b/images/81-11.png differ diff --git a/images/81-12.png b/images/81-12.png new file mode 100644 index 0000000..731cfe9 Binary files /dev/null and b/images/81-12.png differ diff --git a/images/81-13.png b/images/81-13.png new file mode 100644 index 0000000..a15cda6 Binary files /dev/null and b/images/81-13.png differ diff --git a/images/81-14.png b/images/81-14.png new file mode 100644 index 0000000..c03ece4 Binary files /dev/null and b/images/81-14.png differ diff --git a/images/81-15.png b/images/81-15.png new file mode 100644 index 0000000..2e545f8 Binary files /dev/null and b/images/81-15.png differ diff --git a/images/81-16.png b/images/81-16.png new file mode 100644 index 0000000..c4032cd Binary files /dev/null and b/images/81-16.png differ diff --git a/images/81-17.png b/images/81-17.png new file mode 100644 index 0000000..e75f0b1 Binary files /dev/null and b/images/81-17.png differ diff --git a/images/81-18.png b/images/81-18.png new file mode 100644 index 0000000..cf2e029 Binary files /dev/null and b/images/81-18.png differ diff --git a/images/81-19.png b/images/81-19.png new file mode 100644 index 0000000..601d4df Binary files /dev/null and b/images/81-19.png differ diff --git a/images/81-2.png b/images/81-2.png new file mode 100644 index 0000000..a565822 Binary files /dev/null and b/images/81-2.png differ diff --git a/images/81-20.png b/images/81-20.png new file mode 100644 index 0000000..037520b Binary files /dev/null and b/images/81-20.png differ diff --git a/images/81-21.png b/images/81-21.png new file mode 100644 index 0000000..604f2a3 Binary files /dev/null and b/images/81-21.png differ diff --git a/images/81-3.png b/images/81-3.png new file mode 100644 index 0000000..7e5af13 Binary files /dev/null and b/images/81-3.png differ diff --git a/images/81-4.png b/images/81-4.png new file mode 100644 index 0000000..1281196 Binary files /dev/null and b/images/81-4.png differ diff --git a/images/81-5.png b/images/81-5.png new file mode 100644 index 0000000..952db0a Binary files /dev/null and b/images/81-5.png differ diff --git a/images/81-6.png b/images/81-6.png new file mode 100644 index 0000000..a7c5a72 Binary files /dev/null and b/images/81-6.png differ diff --git a/images/81-7.png b/images/81-7.png new file mode 100644 index 0000000..70b3c79 Binary files /dev/null and b/images/81-7.png differ diff --git a/images/81-8.png b/images/81-8.png new file mode 100644 index 0000000..36e450a Binary files /dev/null and b/images/81-8.png differ diff --git a/images/81-9.png b/images/81-9.png new file mode 100644 index 0000000..b6e82bc Binary files /dev/null and b/images/81-9.png differ diff --git a/images/82-0.png b/images/82-0.png new file mode 100644 index 0000000..ab7d10b Binary files /dev/null and b/images/82-0.png differ diff --git a/images/82-1.png b/images/82-1.png new file mode 100644 index 0000000..3171a86 Binary files /dev/null and b/images/82-1.png differ diff --git a/images/82-10.png b/images/82-10.png new file mode 100644 index 0000000..36eafae Binary files /dev/null and b/images/82-10.png differ diff --git a/images/82-11.png b/images/82-11.png new file mode 100644 index 0000000..d54c500 Binary files /dev/null and b/images/82-11.png differ diff --git a/images/82-12.png b/images/82-12.png new file mode 100644 index 0000000..43348a0 Binary files /dev/null and b/images/82-12.png differ diff --git a/images/82-13.png b/images/82-13.png new file mode 100644 index 0000000..3ab29e9 Binary files /dev/null and b/images/82-13.png differ diff --git a/images/82-14.png b/images/82-14.png new file mode 100644 index 0000000..413d794 Binary files /dev/null and b/images/82-14.png differ diff --git a/images/82-15.png b/images/82-15.png new file mode 100644 index 0000000..c4c5a3a Binary files /dev/null and b/images/82-15.png differ diff --git a/images/82-16.png b/images/82-16.png new file mode 100644 index 0000000..7352a33 Binary files /dev/null and b/images/82-16.png differ diff --git a/images/82-17.png b/images/82-17.png new file mode 100644 index 0000000..5262f74 Binary files /dev/null and b/images/82-17.png differ diff --git a/images/82-18.png b/images/82-18.png new file mode 100644 index 0000000..217204d Binary files /dev/null and b/images/82-18.png differ diff --git a/images/82-19.png b/images/82-19.png new file mode 100644 index 0000000..870757f Binary files /dev/null and b/images/82-19.png differ diff --git a/images/82-2.png b/images/82-2.png new file mode 100644 index 0000000..5ca42da Binary files /dev/null and b/images/82-2.png differ diff --git a/images/82-20.png b/images/82-20.png new file mode 100644 index 0000000..050ad8d Binary files /dev/null and b/images/82-20.png differ diff --git a/images/82-21.png b/images/82-21.png new file mode 100644 index 0000000..a628f31 Binary files /dev/null and b/images/82-21.png differ diff --git a/images/82-22.png b/images/82-22.png new file mode 100644 index 0000000..e3dedbd Binary files /dev/null and b/images/82-22.png differ diff --git a/images/82-23.png b/images/82-23.png new file mode 100644 index 0000000..49647c9 Binary files /dev/null and b/images/82-23.png differ diff --git a/images/82-24.png b/images/82-24.png new file mode 100644 index 0000000..4cf3947 Binary files /dev/null and b/images/82-24.png differ diff --git a/images/82-25.png b/images/82-25.png new file mode 100644 index 0000000..a5965ca Binary files /dev/null and b/images/82-25.png differ diff --git a/images/82-26.png b/images/82-26.png new file mode 100644 index 0000000..95486e5 Binary files /dev/null and b/images/82-26.png differ diff --git a/images/82-27.png b/images/82-27.png new file mode 100644 index 0000000..9da2f59 Binary files /dev/null and b/images/82-27.png differ diff --git a/images/82-28.png b/images/82-28.png new file mode 100644 index 0000000..70be62a Binary files /dev/null and b/images/82-28.png differ diff --git a/images/82-29.png b/images/82-29.png new file mode 100644 index 0000000..50f4078 Binary files /dev/null and b/images/82-29.png differ diff --git a/images/82-3.png b/images/82-3.png new file mode 100644 index 0000000..f2f942c Binary files /dev/null and b/images/82-3.png differ diff --git a/images/82-30.png b/images/82-30.png new file mode 100644 index 0000000..e1b34fe Binary files /dev/null and b/images/82-30.png differ diff --git a/images/82-31.png b/images/82-31.png new file mode 100644 index 0000000..0a6fdce Binary files /dev/null and b/images/82-31.png differ diff --git a/images/82-32.png b/images/82-32.png new file mode 100644 index 0000000..217f190 Binary files /dev/null and b/images/82-32.png differ diff --git a/images/82-33.png b/images/82-33.png new file mode 100644 index 0000000..3375e71 Binary files /dev/null and b/images/82-33.png differ diff --git a/images/82-34.png b/images/82-34.png new file mode 100644 index 0000000..a61b021 Binary files /dev/null and b/images/82-34.png differ diff --git a/images/82-35.png b/images/82-35.png new file mode 100644 index 0000000..66f658b Binary files /dev/null and b/images/82-35.png differ diff --git a/images/82-36.png b/images/82-36.png new file mode 100644 index 0000000..c7ca3c9 Binary files /dev/null and b/images/82-36.png differ diff --git a/images/82-37.png b/images/82-37.png new file mode 100644 index 0000000..25b81d1 Binary files /dev/null and b/images/82-37.png differ diff --git a/images/82-4.png b/images/82-4.png new file mode 100644 index 0000000..aeb7590 Binary files /dev/null and b/images/82-4.png differ diff --git a/images/82-5.png b/images/82-5.png new file mode 100644 index 0000000..68e3a4f Binary files /dev/null and b/images/82-5.png differ diff --git a/images/82-6.png b/images/82-6.png new file mode 100644 index 0000000..7f1e080 Binary files /dev/null and b/images/82-6.png differ diff --git a/images/82-7.png b/images/82-7.png new file mode 100644 index 0000000..5e45f75 Binary files /dev/null and b/images/82-7.png differ diff --git a/images/82-8.png b/images/82-8.png new file mode 100644 index 0000000..8d85e49 Binary files /dev/null and b/images/82-8.png differ diff --git a/images/82-9.png b/images/82-9.png new file mode 100644 index 0000000..c6df214 Binary files /dev/null and b/images/82-9.png differ diff --git a/images/83-0.png b/images/83-0.png new file mode 100644 index 0000000..e96cc79 Binary files /dev/null and b/images/83-0.png differ diff --git a/images/83-1.png b/images/83-1.png new file mode 100644 index 0000000..51dc9f2 Binary files /dev/null and b/images/83-1.png differ diff --git a/images/83-10.png b/images/83-10.png new file mode 100644 index 0000000..09b0633 Binary files /dev/null and b/images/83-10.png differ diff --git a/images/83-11.png b/images/83-11.png new file mode 100644 index 0000000..d58f3f6 Binary files /dev/null and b/images/83-11.png differ diff --git a/images/83-12.png b/images/83-12.png new file mode 100644 index 0000000..5480da7 Binary files /dev/null and b/images/83-12.png differ diff --git a/images/83-13.png b/images/83-13.png new file mode 100644 index 0000000..b078b9c Binary files /dev/null and b/images/83-13.png differ diff --git a/images/83-14.png b/images/83-14.png new file mode 100644 index 0000000..38ebe3b Binary files /dev/null and b/images/83-14.png differ diff --git a/images/83-15.png b/images/83-15.png new file mode 100644 index 0000000..72f7c7b Binary files /dev/null and b/images/83-15.png differ diff --git a/images/83-16.png b/images/83-16.png new file mode 100644 index 0000000..c208928 Binary files /dev/null and b/images/83-16.png differ diff --git a/images/83-17.png b/images/83-17.png new file mode 100644 index 0000000..6d90abf Binary files /dev/null and b/images/83-17.png differ diff --git a/images/83-18.png b/images/83-18.png new file mode 100644 index 0000000..ee4d6b2 Binary files /dev/null and b/images/83-18.png differ diff --git a/images/83-19.png b/images/83-19.png new file mode 100644 index 0000000..2c30e51 Binary files /dev/null and b/images/83-19.png differ diff --git a/images/83-2.png b/images/83-2.png new file mode 100644 index 0000000..df5ede2 Binary files /dev/null and b/images/83-2.png differ diff --git a/images/83-20.png b/images/83-20.png new file mode 100644 index 0000000..3cc5058 Binary files /dev/null and b/images/83-20.png differ diff --git a/images/83-21.png b/images/83-21.png new file mode 100644 index 0000000..05a568b Binary files /dev/null and b/images/83-21.png differ diff --git a/images/83-22.png b/images/83-22.png new file mode 100644 index 0000000..3edfeb6 Binary files /dev/null and b/images/83-22.png differ diff --git a/images/83-23.png b/images/83-23.png new file mode 100644 index 0000000..68f8c97 Binary files /dev/null and b/images/83-23.png differ diff --git a/images/83-24.png b/images/83-24.png new file mode 100644 index 0000000..7114059 Binary files /dev/null and b/images/83-24.png differ diff --git a/images/83-25.png b/images/83-25.png new file mode 100644 index 0000000..0c2a978 Binary files /dev/null and b/images/83-25.png differ diff --git a/images/83-26.png b/images/83-26.png new file mode 100644 index 0000000..3289064 Binary files /dev/null and b/images/83-26.png differ diff --git a/images/83-27.png b/images/83-27.png new file mode 100644 index 0000000..a09e4f8 Binary files /dev/null and b/images/83-27.png differ diff --git a/images/83-28.png b/images/83-28.png new file mode 100644 index 0000000..d4747da Binary files /dev/null and b/images/83-28.png differ diff --git a/images/83-29.png b/images/83-29.png new file mode 100644 index 0000000..01b72bf Binary files /dev/null and b/images/83-29.png differ diff --git a/images/83-3.png b/images/83-3.png new file mode 100644 index 0000000..02f7383 Binary files /dev/null and b/images/83-3.png differ diff --git a/images/83-30.png b/images/83-30.png new file mode 100644 index 0000000..be3c274 Binary files /dev/null and b/images/83-30.png differ diff --git a/images/83-31.png b/images/83-31.png new file mode 100644 index 0000000..1e8c853 Binary files /dev/null and b/images/83-31.png differ diff --git a/images/83-32.png b/images/83-32.png new file mode 100644 index 0000000..daa506f Binary files /dev/null and b/images/83-32.png differ diff --git a/images/83-33.png b/images/83-33.png new file mode 100644 index 0000000..a9d803a Binary files /dev/null and b/images/83-33.png differ diff --git a/images/83-34.png b/images/83-34.png new file mode 100644 index 0000000..192bc06 Binary files /dev/null and b/images/83-34.png differ diff --git a/images/83-35.png b/images/83-35.png new file mode 100644 index 0000000..d58131e Binary files /dev/null and b/images/83-35.png differ diff --git a/images/83-36.png b/images/83-36.png new file mode 100644 index 0000000..17b00b4 Binary files /dev/null and b/images/83-36.png differ diff --git a/images/83-37.png b/images/83-37.png new file mode 100644 index 0000000..660844b Binary files /dev/null and b/images/83-37.png differ diff --git a/images/83-38.png b/images/83-38.png new file mode 100644 index 0000000..fd5a1ed Binary files /dev/null and b/images/83-38.png differ diff --git a/images/83-39.png b/images/83-39.png new file mode 100644 index 0000000..c15670b Binary files /dev/null and b/images/83-39.png differ diff --git a/images/83-4.png b/images/83-4.png new file mode 100644 index 0000000..0a0729d Binary files /dev/null and b/images/83-4.png differ diff --git a/images/83-40.png b/images/83-40.png new file mode 100644 index 0000000..56d73ab Binary files /dev/null and b/images/83-40.png differ diff --git a/images/83-41.png b/images/83-41.png new file mode 100644 index 0000000..6fbe2ab Binary files /dev/null and b/images/83-41.png differ diff --git a/images/83-42.png b/images/83-42.png new file mode 100644 index 0000000..0e3387a Binary files /dev/null and b/images/83-42.png differ diff --git a/images/83-43.png b/images/83-43.png new file mode 100644 index 0000000..55ed7ad Binary files /dev/null and b/images/83-43.png differ diff --git a/images/83-44.png b/images/83-44.png new file mode 100644 index 0000000..830820d Binary files /dev/null and b/images/83-44.png differ diff --git a/images/83-45.png b/images/83-45.png new file mode 100644 index 0000000..339b44b Binary files /dev/null and b/images/83-45.png differ diff --git a/images/83-46.png b/images/83-46.png new file mode 100644 index 0000000..6a30fcb Binary files /dev/null and b/images/83-46.png differ diff --git a/images/83-47.png b/images/83-47.png new file mode 100644 index 0000000..b2093b5 Binary files /dev/null and b/images/83-47.png differ diff --git a/images/83-48.png b/images/83-48.png new file mode 100644 index 0000000..db05f43 Binary files /dev/null and b/images/83-48.png differ diff --git a/images/83-49.png b/images/83-49.png new file mode 100644 index 0000000..894af99 Binary files /dev/null and b/images/83-49.png differ diff --git a/images/83-5.png b/images/83-5.png new file mode 100644 index 0000000..3e6d48f Binary files /dev/null and b/images/83-5.png differ diff --git a/images/83-50.png b/images/83-50.png new file mode 100644 index 0000000..68b2072 Binary files /dev/null and b/images/83-50.png differ diff --git a/images/83-51.png b/images/83-51.png new file mode 100644 index 0000000..a170c4f Binary files /dev/null and b/images/83-51.png differ diff --git a/images/83-52.png b/images/83-52.png new file mode 100644 index 0000000..80d02c3 Binary files /dev/null and b/images/83-52.png differ diff --git a/images/83-53.png b/images/83-53.png new file mode 100644 index 0000000..bf2c356 Binary files /dev/null and b/images/83-53.png differ diff --git a/images/83-54.png b/images/83-54.png new file mode 100644 index 0000000..1af8798 Binary files /dev/null and b/images/83-54.png differ diff --git a/images/83-55.png b/images/83-55.png new file mode 100644 index 0000000..62819a3 Binary files /dev/null and b/images/83-55.png differ diff --git a/images/83-56.png b/images/83-56.png new file mode 100644 index 0000000..d081086 Binary files /dev/null and b/images/83-56.png differ diff --git a/images/83-57.png b/images/83-57.png new file mode 100644 index 0000000..b022525 Binary files /dev/null and b/images/83-57.png differ diff --git a/images/83-58.png b/images/83-58.png new file mode 100644 index 0000000..7d13e84 Binary files /dev/null and b/images/83-58.png differ diff --git a/images/83-59.png b/images/83-59.png new file mode 100644 index 0000000..4f031fb Binary files /dev/null and b/images/83-59.png differ diff --git a/images/83-6.png b/images/83-6.png new file mode 100644 index 0000000..ca212d3 Binary files /dev/null and b/images/83-6.png differ diff --git a/images/83-60.png b/images/83-60.png new file mode 100644 index 0000000..afa35ee Binary files /dev/null and b/images/83-60.png differ diff --git a/images/83-61.png b/images/83-61.png new file mode 100644 index 0000000..b9060d9 Binary files /dev/null and b/images/83-61.png differ diff --git a/images/83-62.png b/images/83-62.png new file mode 100644 index 0000000..bb08a6b Binary files /dev/null and b/images/83-62.png differ diff --git a/images/83-63.png b/images/83-63.png new file mode 100644 index 0000000..8c16732 Binary files /dev/null and b/images/83-63.png differ diff --git a/images/83-64.png b/images/83-64.png new file mode 100644 index 0000000..a3ff2af Binary files /dev/null and b/images/83-64.png differ diff --git a/images/83-65.png b/images/83-65.png new file mode 100644 index 0000000..72a9422 Binary files /dev/null and b/images/83-65.png differ diff --git a/images/83-66.png b/images/83-66.png new file mode 100644 index 0000000..a249d45 Binary files /dev/null and b/images/83-66.png differ diff --git a/images/83-67.png b/images/83-67.png new file mode 100644 index 0000000..3a21ded Binary files /dev/null and b/images/83-67.png differ diff --git a/images/83-68.png b/images/83-68.png new file mode 100644 index 0000000..f99015f Binary files /dev/null and b/images/83-68.png differ diff --git a/images/83-7.png b/images/83-7.png new file mode 100644 index 0000000..3c09b23 Binary files /dev/null and b/images/83-7.png differ diff --git a/images/83-8.png b/images/83-8.png new file mode 100644 index 0000000..39cc3a8 Binary files /dev/null and b/images/83-8.png differ diff --git a/images/83-9.png b/images/83-9.png new file mode 100644 index 0000000..b900258 Binary files /dev/null and b/images/83-9.png differ diff --git a/images/84-0.png b/images/84-0.png new file mode 100644 index 0000000..7358d7a Binary files /dev/null and b/images/84-0.png differ diff --git a/images/84-1.png b/images/84-1.png new file mode 100644 index 0000000..2be18b3 Binary files /dev/null and b/images/84-1.png differ diff --git a/images/84-10.png b/images/84-10.png new file mode 100644 index 0000000..86c217c Binary files /dev/null and b/images/84-10.png differ diff --git a/images/84-11.png b/images/84-11.png new file mode 100644 index 0000000..32eff22 Binary files /dev/null and b/images/84-11.png differ diff --git a/images/84-12.png b/images/84-12.png new file mode 100644 index 0000000..b35e083 Binary files /dev/null and b/images/84-12.png differ diff --git a/images/84-13.png b/images/84-13.png new file mode 100644 index 0000000..4dee5c3 Binary files /dev/null and b/images/84-13.png differ diff --git a/images/84-14.png b/images/84-14.png new file mode 100644 index 0000000..e2c5988 Binary files /dev/null and b/images/84-14.png differ diff --git a/images/84-15.png b/images/84-15.png new file mode 100644 index 0000000..2fb303a Binary files /dev/null and b/images/84-15.png differ diff --git a/images/84-16.png b/images/84-16.png new file mode 100644 index 0000000..86a028e Binary files /dev/null and b/images/84-16.png differ diff --git a/images/84-17.png b/images/84-17.png new file mode 100644 index 0000000..f2141be Binary files /dev/null and b/images/84-17.png differ diff --git a/images/84-18.png b/images/84-18.png new file mode 100644 index 0000000..fa999b4 Binary files /dev/null and b/images/84-18.png differ diff --git a/images/84-19.png b/images/84-19.png new file mode 100644 index 0000000..ffd3af5 Binary files /dev/null and b/images/84-19.png differ diff --git a/images/84-2.png b/images/84-2.png new file mode 100644 index 0000000..8a49549 Binary files /dev/null and b/images/84-2.png differ diff --git a/images/84-20.png b/images/84-20.png new file mode 100644 index 0000000..cad32bf Binary files /dev/null and b/images/84-20.png differ diff --git a/images/84-3.png b/images/84-3.png new file mode 100644 index 0000000..5c370ef Binary files /dev/null and b/images/84-3.png differ diff --git a/images/84-4.png b/images/84-4.png new file mode 100644 index 0000000..f41e474 Binary files /dev/null and b/images/84-4.png differ diff --git a/images/84-5.png b/images/84-5.png new file mode 100644 index 0000000..d544237 Binary files /dev/null and b/images/84-5.png differ diff --git a/images/84-6.png b/images/84-6.png new file mode 100644 index 0000000..16b5345 Binary files /dev/null and b/images/84-6.png differ diff --git a/images/84-7.png b/images/84-7.png new file mode 100644 index 0000000..097ca61 Binary files /dev/null and b/images/84-7.png differ diff --git a/images/84-8.png b/images/84-8.png new file mode 100644 index 0000000..750c91d Binary files /dev/null and b/images/84-8.png differ diff --git a/images/84-9.png b/images/84-9.png new file mode 100644 index 0000000..48dc264 Binary files /dev/null and b/images/84-9.png differ diff --git a/images/85-0.png b/images/85-0.png new file mode 100644 index 0000000..1489082 Binary files /dev/null and b/images/85-0.png differ diff --git a/images/85-1.png b/images/85-1.png new file mode 100644 index 0000000..9ef5137 Binary files /dev/null and b/images/85-1.png differ diff --git a/images/85-10.png b/images/85-10.png new file mode 100644 index 0000000..794439d Binary files /dev/null and b/images/85-10.png differ diff --git a/images/85-11.png b/images/85-11.png new file mode 100644 index 0000000..589a1b8 Binary files /dev/null and b/images/85-11.png differ diff --git a/images/85-12.png b/images/85-12.png new file mode 100644 index 0000000..ad66d8f Binary files /dev/null and b/images/85-12.png differ diff --git a/images/85-13.png b/images/85-13.png new file mode 100644 index 0000000..86f8c07 Binary files /dev/null and b/images/85-13.png differ diff --git a/images/85-14.png b/images/85-14.png new file mode 100644 index 0000000..a96947f Binary files /dev/null and b/images/85-14.png differ diff --git a/images/85-15.png b/images/85-15.png new file mode 100644 index 0000000..103b0b8 Binary files /dev/null and b/images/85-15.png differ diff --git a/images/85-16.png b/images/85-16.png new file mode 100644 index 0000000..f85a2ef Binary files /dev/null and b/images/85-16.png differ diff --git a/images/85-17.png b/images/85-17.png new file mode 100644 index 0000000..e5d2af0 Binary files /dev/null and b/images/85-17.png differ diff --git a/images/85-18.png b/images/85-18.png new file mode 100644 index 0000000..debf948 Binary files /dev/null and b/images/85-18.png differ diff --git a/images/85-19.png b/images/85-19.png new file mode 100644 index 0000000..fbbf427 Binary files /dev/null and b/images/85-19.png differ diff --git a/images/85-2.png b/images/85-2.png new file mode 100644 index 0000000..a92560f Binary files /dev/null and b/images/85-2.png differ diff --git a/images/85-20.png b/images/85-20.png new file mode 100644 index 0000000..1dd8b8b Binary files /dev/null and b/images/85-20.png differ diff --git a/images/85-21.png b/images/85-21.png new file mode 100644 index 0000000..8057510 Binary files /dev/null and b/images/85-21.png differ diff --git a/images/85-22.png b/images/85-22.png new file mode 100644 index 0000000..6783b2b Binary files /dev/null and b/images/85-22.png differ diff --git a/images/85-23.png b/images/85-23.png new file mode 100644 index 0000000..5521774 Binary files /dev/null and b/images/85-23.png differ diff --git a/images/85-24.png b/images/85-24.png new file mode 100644 index 0000000..d335b0d Binary files /dev/null and b/images/85-24.png differ diff --git a/images/85-25.png b/images/85-25.png new file mode 100644 index 0000000..9d687cc Binary files /dev/null and b/images/85-25.png differ diff --git a/images/85-26.png b/images/85-26.png new file mode 100644 index 0000000..b778ae7 Binary files /dev/null and b/images/85-26.png differ diff --git a/images/85-27.png b/images/85-27.png new file mode 100644 index 0000000..072d279 Binary files /dev/null and b/images/85-27.png differ diff --git a/images/85-28.png b/images/85-28.png new file mode 100644 index 0000000..744d933 Binary files /dev/null and b/images/85-28.png differ diff --git a/images/85-29.png b/images/85-29.png new file mode 100644 index 0000000..e79885a Binary files /dev/null and b/images/85-29.png differ diff --git a/images/85-3.png b/images/85-3.png new file mode 100644 index 0000000..b38ab71 Binary files /dev/null and b/images/85-3.png differ diff --git a/images/85-30.png b/images/85-30.png new file mode 100644 index 0000000..6c76aaa Binary files /dev/null and b/images/85-30.png differ diff --git a/images/85-31.png b/images/85-31.png new file mode 100644 index 0000000..a97ab5d Binary files /dev/null and b/images/85-31.png differ diff --git a/images/85-32.png b/images/85-32.png new file mode 100644 index 0000000..7bf3c71 Binary files /dev/null and b/images/85-32.png differ diff --git a/images/85-33.png b/images/85-33.png new file mode 100644 index 0000000..a6945b2 Binary files /dev/null and b/images/85-33.png differ diff --git a/images/85-34.png b/images/85-34.png new file mode 100644 index 0000000..fa291bd Binary files /dev/null and b/images/85-34.png differ diff --git a/images/85-35.png b/images/85-35.png new file mode 100644 index 0000000..7187e28 Binary files /dev/null and b/images/85-35.png differ diff --git a/images/85-36.png b/images/85-36.png new file mode 100644 index 0000000..fd33d4c Binary files /dev/null and b/images/85-36.png differ diff --git a/images/85-37.png b/images/85-37.png new file mode 100644 index 0000000..282bda2 Binary files /dev/null and b/images/85-37.png differ diff --git a/images/85-38.png b/images/85-38.png new file mode 100644 index 0000000..19bd027 Binary files /dev/null and b/images/85-38.png differ diff --git a/images/85-39.png b/images/85-39.png new file mode 100644 index 0000000..01ed635 Binary files /dev/null and b/images/85-39.png differ diff --git a/images/85-4.png b/images/85-4.png new file mode 100644 index 0000000..b0bc0a0 Binary files /dev/null and b/images/85-4.png differ diff --git a/images/85-40.png b/images/85-40.png new file mode 100644 index 0000000..c812257 Binary files /dev/null and b/images/85-40.png differ diff --git a/images/85-41.png b/images/85-41.png new file mode 100644 index 0000000..8b1cd3e Binary files /dev/null and b/images/85-41.png differ diff --git a/images/85-42.png b/images/85-42.png new file mode 100644 index 0000000..f621e20 Binary files /dev/null and b/images/85-42.png differ diff --git a/images/85-43.png b/images/85-43.png new file mode 100644 index 0000000..6c42ad7 Binary files /dev/null and b/images/85-43.png differ diff --git a/images/85-44.png b/images/85-44.png new file mode 100644 index 0000000..68d1e69 Binary files /dev/null and b/images/85-44.png differ diff --git a/images/85-45.png b/images/85-45.png new file mode 100644 index 0000000..8e5e7f5 Binary files /dev/null and b/images/85-45.png differ diff --git a/images/85-46.png b/images/85-46.png new file mode 100644 index 0000000..6192bc1 Binary files /dev/null and b/images/85-46.png differ diff --git a/images/85-47.png b/images/85-47.png new file mode 100644 index 0000000..1e071a8 Binary files /dev/null and b/images/85-47.png differ diff --git a/images/85-48.png b/images/85-48.png new file mode 100644 index 0000000..0913083 Binary files /dev/null and b/images/85-48.png differ diff --git a/images/85-5.png b/images/85-5.png new file mode 100644 index 0000000..bb41ae2 Binary files /dev/null and b/images/85-5.png differ diff --git a/images/85-6.png b/images/85-6.png new file mode 100644 index 0000000..de910f1 Binary files /dev/null and b/images/85-6.png differ diff --git a/images/85-7.png b/images/85-7.png new file mode 100644 index 0000000..7296a7f Binary files /dev/null and b/images/85-7.png differ diff --git a/images/85-8.png b/images/85-8.png new file mode 100644 index 0000000..fee4fa2 Binary files /dev/null and b/images/85-8.png differ diff --git a/images/85-9.png b/images/85-9.png new file mode 100644 index 0000000..629e1ec Binary files /dev/null and b/images/85-9.png differ diff --git a/images/86-0.png b/images/86-0.png new file mode 100644 index 0000000..5a55fa5 Binary files /dev/null and b/images/86-0.png differ diff --git a/images/86-1.png b/images/86-1.png new file mode 100644 index 0000000..6ec752f Binary files /dev/null and b/images/86-1.png differ diff --git a/images/86-10.png b/images/86-10.png new file mode 100644 index 0000000..764c3ac Binary files /dev/null and b/images/86-10.png differ diff --git a/images/86-11.png b/images/86-11.png new file mode 100644 index 0000000..5db1888 Binary files /dev/null and b/images/86-11.png differ diff --git a/images/86-12.png b/images/86-12.png new file mode 100644 index 0000000..4b57691 Binary files /dev/null and b/images/86-12.png differ diff --git a/images/86-13.png b/images/86-13.png new file mode 100644 index 0000000..ba5cdc1 Binary files /dev/null and b/images/86-13.png differ diff --git a/images/86-14.png b/images/86-14.png new file mode 100644 index 0000000..fafa006 Binary files /dev/null and b/images/86-14.png differ diff --git a/images/86-15.png b/images/86-15.png new file mode 100644 index 0000000..14e0d67 Binary files /dev/null and b/images/86-15.png differ diff --git a/images/86-16.png b/images/86-16.png new file mode 100644 index 0000000..dc34e85 Binary files /dev/null and b/images/86-16.png differ diff --git a/images/86-17.png b/images/86-17.png new file mode 100644 index 0000000..e171639 Binary files /dev/null and b/images/86-17.png differ diff --git a/images/86-18.png b/images/86-18.png new file mode 100644 index 0000000..5662610 Binary files /dev/null and b/images/86-18.png differ diff --git a/images/86-19.png b/images/86-19.png new file mode 100644 index 0000000..5a163b4 Binary files /dev/null and b/images/86-19.png differ diff --git a/images/86-2.png b/images/86-2.png new file mode 100644 index 0000000..12c3a27 Binary files /dev/null and b/images/86-2.png differ diff --git a/images/86-20.png b/images/86-20.png new file mode 100644 index 0000000..8e69c22 Binary files /dev/null and b/images/86-20.png differ diff --git a/images/86-21.png b/images/86-21.png new file mode 100644 index 0000000..5feef36 Binary files /dev/null and b/images/86-21.png differ diff --git a/images/86-3.png b/images/86-3.png new file mode 100644 index 0000000..991e632 Binary files /dev/null and b/images/86-3.png differ diff --git a/images/86-4.png b/images/86-4.png new file mode 100644 index 0000000..dd75020 Binary files /dev/null and b/images/86-4.png differ diff --git a/images/86-5.png b/images/86-5.png new file mode 100644 index 0000000..57dadd7 Binary files /dev/null and b/images/86-5.png differ diff --git a/images/86-6.png b/images/86-6.png new file mode 100644 index 0000000..770a9c9 Binary files /dev/null and b/images/86-6.png differ diff --git a/images/86-7.png b/images/86-7.png new file mode 100644 index 0000000..3c5b99e Binary files /dev/null and b/images/86-7.png differ diff --git a/images/86-8.png b/images/86-8.png new file mode 100644 index 0000000..dd330d0 Binary files /dev/null and b/images/86-8.png differ diff --git a/images/86-9.png b/images/86-9.png new file mode 100644 index 0000000..b4872dc Binary files /dev/null and b/images/86-9.png differ diff --git a/images/87-0.png b/images/87-0.png new file mode 100644 index 0000000..5fbbf11 Binary files /dev/null and b/images/87-0.png differ diff --git a/images/87-1.png b/images/87-1.png new file mode 100644 index 0000000..8b8c4c3 Binary files /dev/null and b/images/87-1.png differ diff --git a/images/87-10.png b/images/87-10.png new file mode 100644 index 0000000..92a4af7 Binary files /dev/null and b/images/87-10.png differ diff --git a/images/87-11.png b/images/87-11.png new file mode 100644 index 0000000..0711d37 Binary files /dev/null and b/images/87-11.png differ diff --git a/images/87-12.png b/images/87-12.png new file mode 100644 index 0000000..32f1f48 Binary files /dev/null and b/images/87-12.png differ diff --git a/images/87-13.png b/images/87-13.png new file mode 100644 index 0000000..777bbfa Binary files /dev/null and b/images/87-13.png differ diff --git a/images/87-14.png b/images/87-14.png new file mode 100644 index 0000000..cb2eeca Binary files /dev/null and b/images/87-14.png differ diff --git a/images/87-15.png b/images/87-15.png new file mode 100644 index 0000000..ee4a086 Binary files /dev/null and b/images/87-15.png differ diff --git a/images/87-16.png b/images/87-16.png new file mode 100644 index 0000000..416fa59 Binary files /dev/null and b/images/87-16.png differ diff --git a/images/87-17.png b/images/87-17.png new file mode 100644 index 0000000..dc1fab1 Binary files /dev/null and b/images/87-17.png differ diff --git a/images/87-18.png b/images/87-18.png new file mode 100644 index 0000000..8dadeba Binary files /dev/null and b/images/87-18.png differ diff --git a/images/87-19.png b/images/87-19.png new file mode 100644 index 0000000..0a0ac22 Binary files /dev/null and b/images/87-19.png differ diff --git a/images/87-2.png b/images/87-2.png new file mode 100644 index 0000000..12c2ba3 Binary files /dev/null and b/images/87-2.png differ diff --git a/images/87-20.png b/images/87-20.png new file mode 100644 index 0000000..7c9c76c Binary files /dev/null and b/images/87-20.png differ diff --git a/images/87-21.png b/images/87-21.png new file mode 100644 index 0000000..8833809 Binary files /dev/null and b/images/87-21.png differ diff --git a/images/87-22.png b/images/87-22.png new file mode 100644 index 0000000..54ef22a Binary files /dev/null and b/images/87-22.png differ diff --git a/images/87-23.png b/images/87-23.png new file mode 100644 index 0000000..f60d332 Binary files /dev/null and b/images/87-23.png differ diff --git a/images/87-24.png b/images/87-24.png new file mode 100644 index 0000000..29a7e6d Binary files /dev/null and b/images/87-24.png differ diff --git a/images/87-25.png b/images/87-25.png new file mode 100644 index 0000000..4b624fa Binary files /dev/null and b/images/87-25.png differ diff --git a/images/87-26.png b/images/87-26.png new file mode 100644 index 0000000..04f1745 Binary files /dev/null and b/images/87-26.png differ diff --git a/images/87-27.png b/images/87-27.png new file mode 100644 index 0000000..123fb19 Binary files /dev/null and b/images/87-27.png differ diff --git a/images/87-3.png b/images/87-3.png new file mode 100644 index 0000000..0ae080b Binary files /dev/null and b/images/87-3.png differ diff --git a/images/87-4.png b/images/87-4.png new file mode 100644 index 0000000..761275d Binary files /dev/null and b/images/87-4.png differ diff --git a/images/87-5.png b/images/87-5.png new file mode 100644 index 0000000..ffd5a00 Binary files /dev/null and b/images/87-5.png differ diff --git a/images/87-6.png b/images/87-6.png new file mode 100644 index 0000000..139c622 Binary files /dev/null and b/images/87-6.png differ diff --git a/images/87-7.png b/images/87-7.png new file mode 100644 index 0000000..105a953 Binary files /dev/null and b/images/87-7.png differ diff --git a/images/87-8.png b/images/87-8.png new file mode 100644 index 0000000..519b81f Binary files /dev/null and b/images/87-8.png differ diff --git a/images/87-9.png b/images/87-9.png new file mode 100644 index 0000000..16ee8c1 Binary files /dev/null and b/images/87-9.png differ diff --git a/images/88-0.png b/images/88-0.png new file mode 100644 index 0000000..9ee9e52 Binary files /dev/null and b/images/88-0.png differ diff --git a/images/88-1.png b/images/88-1.png new file mode 100644 index 0000000..1897265 Binary files /dev/null and b/images/88-1.png differ diff --git a/images/88-10.png b/images/88-10.png new file mode 100644 index 0000000..669cbe5 Binary files /dev/null and b/images/88-10.png differ diff --git a/images/88-11.png b/images/88-11.png new file mode 100644 index 0000000..47ec0f3 Binary files /dev/null and b/images/88-11.png differ diff --git a/images/88-12.png b/images/88-12.png new file mode 100644 index 0000000..eddde92 Binary files /dev/null and b/images/88-12.png differ diff --git a/images/88-13.png b/images/88-13.png new file mode 100644 index 0000000..73e93e2 Binary files /dev/null and b/images/88-13.png differ diff --git a/images/88-14.png b/images/88-14.png new file mode 100644 index 0000000..1be9147 Binary files /dev/null and b/images/88-14.png differ diff --git a/images/88-15.png b/images/88-15.png new file mode 100644 index 0000000..eac6ba0 Binary files /dev/null and b/images/88-15.png differ diff --git a/images/88-16.png b/images/88-16.png new file mode 100644 index 0000000..f6c80c1 Binary files /dev/null and b/images/88-16.png differ diff --git a/images/88-17.png b/images/88-17.png new file mode 100644 index 0000000..4010dc0 Binary files /dev/null and b/images/88-17.png differ diff --git a/images/88-18.png b/images/88-18.png new file mode 100644 index 0000000..7fcd0bf Binary files /dev/null and b/images/88-18.png differ diff --git a/images/88-19.png b/images/88-19.png new file mode 100644 index 0000000..c539c37 Binary files /dev/null and b/images/88-19.png differ diff --git a/images/88-2.png b/images/88-2.png new file mode 100644 index 0000000..323f88c Binary files /dev/null and b/images/88-2.png differ diff --git a/images/88-20.png b/images/88-20.png new file mode 100644 index 0000000..eb9c279 Binary files /dev/null and b/images/88-20.png differ diff --git a/images/88-21.png b/images/88-21.png new file mode 100644 index 0000000..2cf73d7 Binary files /dev/null and b/images/88-21.png differ diff --git a/images/88-22.png b/images/88-22.png new file mode 100644 index 0000000..0662304 Binary files /dev/null and b/images/88-22.png differ diff --git a/images/88-23.png b/images/88-23.png new file mode 100644 index 0000000..9b1f9ce Binary files /dev/null and b/images/88-23.png differ diff --git a/images/88-24.png b/images/88-24.png new file mode 100644 index 0000000..6cb11dc Binary files /dev/null and b/images/88-24.png differ diff --git a/images/88-3.png b/images/88-3.png new file mode 100644 index 0000000..6ec2c40 Binary files /dev/null and b/images/88-3.png differ diff --git a/images/88-4.png b/images/88-4.png new file mode 100644 index 0000000..2945ab7 Binary files /dev/null and b/images/88-4.png differ diff --git a/images/88-5.png b/images/88-5.png new file mode 100644 index 0000000..39f9b45 Binary files /dev/null and b/images/88-5.png differ diff --git a/images/88-6.png b/images/88-6.png new file mode 100644 index 0000000..228a50d Binary files /dev/null and b/images/88-6.png differ diff --git a/images/88-7.png b/images/88-7.png new file mode 100644 index 0000000..ea556f5 Binary files /dev/null and b/images/88-7.png differ diff --git a/images/88-8.png b/images/88-8.png new file mode 100644 index 0000000..d6e92ef Binary files /dev/null and b/images/88-8.png differ diff --git a/images/88-9.png b/images/88-9.png new file mode 100644 index 0000000..6c8a341 Binary files /dev/null and b/images/88-9.png differ diff --git a/images/89-0.png b/images/89-0.png new file mode 100644 index 0000000..fb2ec08 Binary files /dev/null and b/images/89-0.png differ diff --git a/images/89-1.png b/images/89-1.png new file mode 100644 index 0000000..c0c9aa2 Binary files /dev/null and b/images/89-1.png differ diff --git a/images/89-10.png b/images/89-10.png new file mode 100644 index 0000000..eb4f69b Binary files /dev/null and b/images/89-10.png differ diff --git a/images/89-11.png b/images/89-11.png new file mode 100644 index 0000000..bda7fa3 Binary files /dev/null and b/images/89-11.png differ diff --git a/images/89-12.png b/images/89-12.png new file mode 100644 index 0000000..af03ae4 Binary files /dev/null and b/images/89-12.png differ diff --git a/images/89-13.png b/images/89-13.png new file mode 100644 index 0000000..11e71e2 Binary files /dev/null and b/images/89-13.png differ diff --git a/images/89-14.png b/images/89-14.png new file mode 100644 index 0000000..5071108 Binary files /dev/null and b/images/89-14.png differ diff --git a/images/89-15.png b/images/89-15.png new file mode 100644 index 0000000..4e91ebc Binary files /dev/null and b/images/89-15.png differ diff --git a/images/89-16.png b/images/89-16.png new file mode 100644 index 0000000..dcd21fc Binary files /dev/null and b/images/89-16.png differ diff --git a/images/89-17.png b/images/89-17.png new file mode 100644 index 0000000..b8a7095 Binary files /dev/null and b/images/89-17.png differ diff --git a/images/89-2.png b/images/89-2.png new file mode 100644 index 0000000..eea1bd9 Binary files /dev/null and b/images/89-2.png differ diff --git a/images/89-3.png b/images/89-3.png new file mode 100644 index 0000000..1fc0e85 Binary files /dev/null and b/images/89-3.png differ diff --git a/images/89-4.png b/images/89-4.png new file mode 100644 index 0000000..8984700 Binary files /dev/null and b/images/89-4.png differ diff --git a/images/89-5.png b/images/89-5.png new file mode 100644 index 0000000..8a2c371 Binary files /dev/null and b/images/89-5.png differ diff --git a/images/89-6.png b/images/89-6.png new file mode 100644 index 0000000..7d35672 Binary files /dev/null and b/images/89-6.png differ diff --git a/images/89-7.png b/images/89-7.png new file mode 100644 index 0000000..257be80 Binary files /dev/null and b/images/89-7.png differ diff --git a/images/89-8.png b/images/89-8.png new file mode 100644 index 0000000..88db98d Binary files /dev/null and b/images/89-8.png differ diff --git a/images/89-9.png b/images/89-9.png new file mode 100644 index 0000000..57f8f41 Binary files /dev/null and b/images/89-9.png differ diff --git a/images/9-0.png b/images/9-0.png new file mode 100644 index 0000000..d7a1e70 Binary files /dev/null and b/images/9-0.png differ diff --git a/images/9-1.png b/images/9-1.png new file mode 100644 index 0000000..5284e38 Binary files /dev/null and b/images/9-1.png differ diff --git a/images/9-10.png b/images/9-10.png new file mode 100644 index 0000000..22b8503 Binary files /dev/null and b/images/9-10.png differ diff --git a/images/9-11.png b/images/9-11.png new file mode 100644 index 0000000..108c560 Binary files /dev/null and b/images/9-11.png differ diff --git a/images/9-12.png b/images/9-12.png new file mode 100644 index 0000000..87190cf Binary files /dev/null and b/images/9-12.png differ diff --git a/images/9-13.png b/images/9-13.png new file mode 100644 index 0000000..e0df7ec Binary files /dev/null and b/images/9-13.png differ diff --git a/images/9-14.png b/images/9-14.png new file mode 100644 index 0000000..38cf2de Binary files /dev/null and b/images/9-14.png differ diff --git a/images/9-15.png b/images/9-15.png new file mode 100644 index 0000000..d4adf6a Binary files /dev/null and b/images/9-15.png differ diff --git a/images/9-16.png b/images/9-16.png new file mode 100644 index 0000000..8e22b92 Binary files /dev/null and b/images/9-16.png differ diff --git a/images/9-17.png b/images/9-17.png new file mode 100644 index 0000000..6d5acf0 Binary files /dev/null and b/images/9-17.png differ diff --git a/images/9-18.png b/images/9-18.png new file mode 100644 index 0000000..3fe8e24 Binary files /dev/null and b/images/9-18.png differ diff --git a/images/9-2.png b/images/9-2.png new file mode 100644 index 0000000..e7c680c Binary files /dev/null and b/images/9-2.png differ diff --git a/images/9-3.png b/images/9-3.png new file mode 100644 index 0000000..fd8ce20 Binary files /dev/null and b/images/9-3.png differ diff --git a/images/9-4.png b/images/9-4.png new file mode 100644 index 0000000..9133edc Binary files /dev/null and b/images/9-4.png differ diff --git a/images/9-5.png b/images/9-5.png new file mode 100644 index 0000000..9d383a7 Binary files /dev/null and b/images/9-5.png differ diff --git a/images/9-6.png b/images/9-6.png new file mode 100644 index 0000000..ea90a34 Binary files /dev/null and b/images/9-6.png differ diff --git a/images/9-7.png b/images/9-7.png new file mode 100644 index 0000000..bd20a77 Binary files /dev/null and b/images/9-7.png differ diff --git a/images/9-8.png b/images/9-8.png new file mode 100644 index 0000000..9f5b6ec Binary files /dev/null and b/images/9-8.png differ diff --git a/images/9-9.png b/images/9-9.png new file mode 100644 index 0000000..b465093 Binary files /dev/null and b/images/9-9.png differ diff --git a/images/90-0.png b/images/90-0.png new file mode 100644 index 0000000..755686b Binary files /dev/null and b/images/90-0.png differ diff --git a/images/90-1.png b/images/90-1.png new file mode 100644 index 0000000..3142132 Binary files /dev/null and b/images/90-1.png differ diff --git a/images/90-10.png b/images/90-10.png new file mode 100644 index 0000000..1780c14 Binary files /dev/null and b/images/90-10.png differ diff --git a/images/90-11.png b/images/90-11.png new file mode 100644 index 0000000..6f7020f Binary files /dev/null and b/images/90-11.png differ diff --git a/images/90-12.png b/images/90-12.png new file mode 100644 index 0000000..b9d9fda Binary files /dev/null and b/images/90-12.png differ diff --git a/images/90-13.png b/images/90-13.png new file mode 100644 index 0000000..bc8f4f9 Binary files /dev/null and b/images/90-13.png differ diff --git a/images/90-14.png b/images/90-14.png new file mode 100644 index 0000000..59d6ce1 Binary files /dev/null and b/images/90-14.png differ diff --git a/images/90-15.png b/images/90-15.png new file mode 100644 index 0000000..7467f87 Binary files /dev/null and b/images/90-15.png differ diff --git a/images/90-16.png b/images/90-16.png new file mode 100644 index 0000000..da890af Binary files /dev/null and b/images/90-16.png differ diff --git a/images/90-17.png b/images/90-17.png new file mode 100644 index 0000000..95fc9d3 Binary files /dev/null and b/images/90-17.png differ diff --git a/images/90-18.png b/images/90-18.png new file mode 100644 index 0000000..6903c38 Binary files /dev/null and b/images/90-18.png differ diff --git a/images/90-19.png b/images/90-19.png new file mode 100644 index 0000000..85fbc26 Binary files /dev/null and b/images/90-19.png differ diff --git a/images/90-2.png b/images/90-2.png new file mode 100644 index 0000000..4d4cce4 Binary files /dev/null and b/images/90-2.png differ diff --git a/images/90-20.png b/images/90-20.png new file mode 100644 index 0000000..f37d1e7 Binary files /dev/null and b/images/90-20.png differ diff --git a/images/90-21.png b/images/90-21.png new file mode 100644 index 0000000..d57936d Binary files /dev/null and b/images/90-21.png differ diff --git a/images/90-22.png b/images/90-22.png new file mode 100644 index 0000000..6be3cd2 Binary files /dev/null and b/images/90-22.png differ diff --git a/images/90-23.png b/images/90-23.png new file mode 100644 index 0000000..fa571f7 Binary files /dev/null and b/images/90-23.png differ diff --git a/images/90-24.png b/images/90-24.png new file mode 100644 index 0000000..108bc2f Binary files /dev/null and b/images/90-24.png differ diff --git a/images/90-25.png b/images/90-25.png new file mode 100644 index 0000000..0e9ce77 Binary files /dev/null and b/images/90-25.png differ diff --git a/images/90-26.png b/images/90-26.png new file mode 100644 index 0000000..327ed56 Binary files /dev/null and b/images/90-26.png differ diff --git a/images/90-27.png b/images/90-27.png new file mode 100644 index 0000000..ee4d757 Binary files /dev/null and b/images/90-27.png differ diff --git a/images/90-28.png b/images/90-28.png new file mode 100644 index 0000000..3b8df67 Binary files /dev/null and b/images/90-28.png differ diff --git a/images/90-29.png b/images/90-29.png new file mode 100644 index 0000000..b76486d Binary files /dev/null and b/images/90-29.png differ diff --git a/images/90-3.png b/images/90-3.png new file mode 100644 index 0000000..47518ce Binary files /dev/null and b/images/90-3.png differ diff --git a/images/90-30.png b/images/90-30.png new file mode 100644 index 0000000..8844b6d Binary files /dev/null and b/images/90-30.png differ diff --git a/images/90-31.png b/images/90-31.png new file mode 100644 index 0000000..336edc9 Binary files /dev/null and b/images/90-31.png differ diff --git a/images/90-32.png b/images/90-32.png new file mode 100644 index 0000000..5bcaf7d Binary files /dev/null and b/images/90-32.png differ diff --git a/images/90-33.png b/images/90-33.png new file mode 100644 index 0000000..9218e14 Binary files /dev/null and b/images/90-33.png differ diff --git a/images/90-34.png b/images/90-34.png new file mode 100644 index 0000000..e9f7c31 Binary files /dev/null and b/images/90-34.png differ diff --git a/images/90-35.png b/images/90-35.png new file mode 100644 index 0000000..4967b6a Binary files /dev/null and b/images/90-35.png differ diff --git a/images/90-36.png b/images/90-36.png new file mode 100644 index 0000000..55dab62 Binary files /dev/null and b/images/90-36.png differ diff --git a/images/90-37.png b/images/90-37.png new file mode 100644 index 0000000..20fac4a Binary files /dev/null and b/images/90-37.png differ diff --git a/images/90-38.png b/images/90-38.png new file mode 100644 index 0000000..cc836d3 Binary files /dev/null and b/images/90-38.png differ diff --git a/images/90-39.png b/images/90-39.png new file mode 100644 index 0000000..7b1bcb4 Binary files /dev/null and b/images/90-39.png differ diff --git a/images/90-4.png b/images/90-4.png new file mode 100644 index 0000000..6bfb0b2 Binary files /dev/null and b/images/90-4.png differ diff --git a/images/90-40.png b/images/90-40.png new file mode 100644 index 0000000..ae177c0 Binary files /dev/null and b/images/90-40.png differ diff --git a/images/90-41.png b/images/90-41.png new file mode 100644 index 0000000..730ff54 Binary files /dev/null and b/images/90-41.png differ diff --git a/images/90-42.png b/images/90-42.png new file mode 100644 index 0000000..d16243f Binary files /dev/null and b/images/90-42.png differ diff --git a/images/90-43.png b/images/90-43.png new file mode 100644 index 0000000..4d87e5f Binary files /dev/null and b/images/90-43.png differ diff --git a/images/90-44.png b/images/90-44.png new file mode 100644 index 0000000..7e85f24 Binary files /dev/null and b/images/90-44.png differ diff --git a/images/90-45.png b/images/90-45.png new file mode 100644 index 0000000..2954482 Binary files /dev/null and b/images/90-45.png differ diff --git a/images/90-46.png b/images/90-46.png new file mode 100644 index 0000000..dbcef07 Binary files /dev/null and b/images/90-46.png differ diff --git a/images/90-47.png b/images/90-47.png new file mode 100644 index 0000000..5906880 Binary files /dev/null and b/images/90-47.png differ diff --git a/images/90-48.png b/images/90-48.png new file mode 100644 index 0000000..b18f5ba Binary files /dev/null and b/images/90-48.png differ diff --git a/images/90-49.png b/images/90-49.png new file mode 100644 index 0000000..dc0bd0f Binary files /dev/null and b/images/90-49.png differ diff --git a/images/90-5.png b/images/90-5.png new file mode 100644 index 0000000..a9513df Binary files /dev/null and b/images/90-5.png differ diff --git a/images/90-50.png b/images/90-50.png new file mode 100644 index 0000000..020739a Binary files /dev/null and b/images/90-50.png differ diff --git a/images/90-51.png b/images/90-51.png new file mode 100644 index 0000000..f433497 Binary files /dev/null and b/images/90-51.png differ diff --git a/images/90-52.png b/images/90-52.png new file mode 100644 index 0000000..9cba746 Binary files /dev/null and b/images/90-52.png differ diff --git a/images/90-53.png b/images/90-53.png new file mode 100644 index 0000000..f5a573e Binary files /dev/null and b/images/90-53.png differ diff --git a/images/90-54.png b/images/90-54.png new file mode 100644 index 0000000..372b7b9 Binary files /dev/null and b/images/90-54.png differ diff --git a/images/90-55.png b/images/90-55.png new file mode 100644 index 0000000..e0cde6a Binary files /dev/null and b/images/90-55.png differ diff --git a/images/90-56.png b/images/90-56.png new file mode 100644 index 0000000..6278cbc Binary files /dev/null and b/images/90-56.png differ diff --git a/images/90-57.png b/images/90-57.png new file mode 100644 index 0000000..1f25d6d Binary files /dev/null and b/images/90-57.png differ diff --git a/images/90-58.png b/images/90-58.png new file mode 100644 index 0000000..e782f13 Binary files /dev/null and b/images/90-58.png differ diff --git a/images/90-59.png b/images/90-59.png new file mode 100644 index 0000000..bc08327 Binary files /dev/null and b/images/90-59.png differ diff --git a/images/90-6.png b/images/90-6.png new file mode 100644 index 0000000..2cfbbd1 Binary files /dev/null and b/images/90-6.png differ diff --git a/images/90-60.png b/images/90-60.png new file mode 100644 index 0000000..618b0dd Binary files /dev/null and b/images/90-60.png differ diff --git a/images/90-61.png b/images/90-61.png new file mode 100644 index 0000000..9507194 Binary files /dev/null and b/images/90-61.png differ diff --git a/images/90-62.png b/images/90-62.png new file mode 100644 index 0000000..3e37e7d Binary files /dev/null and b/images/90-62.png differ diff --git a/images/90-63.png b/images/90-63.png new file mode 100644 index 0000000..6f3e5b8 Binary files /dev/null and b/images/90-63.png differ diff --git a/images/90-64.png b/images/90-64.png new file mode 100644 index 0000000..430f268 Binary files /dev/null and b/images/90-64.png differ diff --git a/images/90-65.png b/images/90-65.png new file mode 100644 index 0000000..4024736 Binary files /dev/null and b/images/90-65.png differ diff --git a/images/90-66.png b/images/90-66.png new file mode 100644 index 0000000..377c60b Binary files /dev/null and b/images/90-66.png differ diff --git a/images/90-67.png b/images/90-67.png new file mode 100644 index 0000000..ab44f7d Binary files /dev/null and b/images/90-67.png differ diff --git a/images/90-68.png b/images/90-68.png new file mode 100644 index 0000000..5a396fd Binary files /dev/null and b/images/90-68.png differ diff --git a/images/90-69.png b/images/90-69.png new file mode 100644 index 0000000..caf9750 Binary files /dev/null and b/images/90-69.png differ diff --git a/images/90-7.png b/images/90-7.png new file mode 100644 index 0000000..32e79d9 Binary files /dev/null and b/images/90-7.png differ diff --git a/images/90-70.png b/images/90-70.png new file mode 100644 index 0000000..c554214 Binary files /dev/null and b/images/90-70.png differ diff --git a/images/90-71.png b/images/90-71.png new file mode 100644 index 0000000..d3882be Binary files /dev/null and b/images/90-71.png differ diff --git a/images/90-72.png b/images/90-72.png new file mode 100644 index 0000000..714bccd Binary files /dev/null and b/images/90-72.png differ diff --git a/images/90-73.png b/images/90-73.png new file mode 100644 index 0000000..f694fe3 Binary files /dev/null and b/images/90-73.png differ diff --git a/images/90-8.png b/images/90-8.png new file mode 100644 index 0000000..96c8cda Binary files /dev/null and b/images/90-8.png differ diff --git a/images/90-9.png b/images/90-9.png new file mode 100644 index 0000000..78da347 Binary files /dev/null and b/images/90-9.png differ diff --git a/images/91-0.png b/images/91-0.png new file mode 100644 index 0000000..c092209 Binary files /dev/null and b/images/91-0.png differ diff --git a/images/91-1.png b/images/91-1.png new file mode 100644 index 0000000..bb35589 Binary files /dev/null and b/images/91-1.png differ diff --git a/images/91-10.png b/images/91-10.png new file mode 100644 index 0000000..0ccefff Binary files /dev/null and b/images/91-10.png differ diff --git a/images/91-11.png b/images/91-11.png new file mode 100644 index 0000000..e358edb Binary files /dev/null and b/images/91-11.png differ diff --git a/images/91-12.png b/images/91-12.png new file mode 100644 index 0000000..deb7cd5 Binary files /dev/null and b/images/91-12.png differ diff --git a/images/91-2.png b/images/91-2.png new file mode 100644 index 0000000..fc5f986 Binary files /dev/null and b/images/91-2.png differ diff --git a/images/91-3.png b/images/91-3.png new file mode 100644 index 0000000..0fd91c8 Binary files /dev/null and b/images/91-3.png differ diff --git a/images/91-4.png b/images/91-4.png new file mode 100644 index 0000000..ebc0007 Binary files /dev/null and b/images/91-4.png differ diff --git a/images/91-5.png b/images/91-5.png new file mode 100644 index 0000000..cf92d4f Binary files /dev/null and b/images/91-5.png differ diff --git a/images/91-6.png b/images/91-6.png new file mode 100644 index 0000000..479f424 Binary files /dev/null and b/images/91-6.png differ diff --git a/images/91-7.png b/images/91-7.png new file mode 100644 index 0000000..d8bb55b Binary files /dev/null and b/images/91-7.png differ diff --git a/images/91-8.png b/images/91-8.png new file mode 100644 index 0000000..934b093 Binary files /dev/null and b/images/91-8.png differ diff --git a/images/91-9.png b/images/91-9.png new file mode 100644 index 0000000..4f9f080 Binary files /dev/null and b/images/91-9.png differ diff --git a/images/92-0.png b/images/92-0.png new file mode 100644 index 0000000..2fbb2c3 Binary files /dev/null and b/images/92-0.png differ diff --git a/images/92-1.png b/images/92-1.png new file mode 100644 index 0000000..aeba06e Binary files /dev/null and b/images/92-1.png differ diff --git a/images/92-10.png b/images/92-10.png new file mode 100644 index 0000000..e4f8f3e Binary files /dev/null and b/images/92-10.png differ diff --git a/images/92-11.png b/images/92-11.png new file mode 100644 index 0000000..17f55c7 Binary files /dev/null and b/images/92-11.png differ diff --git a/images/92-12.png b/images/92-12.png new file mode 100644 index 0000000..b0eb38d Binary files /dev/null and b/images/92-12.png differ diff --git a/images/92-13.png b/images/92-13.png new file mode 100644 index 0000000..46cf741 Binary files /dev/null and b/images/92-13.png differ diff --git a/images/92-14.png b/images/92-14.png new file mode 100644 index 0000000..6c2a5ca Binary files /dev/null and b/images/92-14.png differ diff --git a/images/92-15.png b/images/92-15.png new file mode 100644 index 0000000..6a79562 Binary files /dev/null and b/images/92-15.png differ diff --git a/images/92-16.png b/images/92-16.png new file mode 100644 index 0000000..2bc025f Binary files /dev/null and b/images/92-16.png differ diff --git a/images/92-17.png b/images/92-17.png new file mode 100644 index 0000000..00ff0dc Binary files /dev/null and b/images/92-17.png differ diff --git a/images/92-18.png b/images/92-18.png new file mode 100644 index 0000000..121b6b8 Binary files /dev/null and b/images/92-18.png differ diff --git a/images/92-19.png b/images/92-19.png new file mode 100644 index 0000000..50d5ccb Binary files /dev/null and b/images/92-19.png differ diff --git a/images/92-2.png b/images/92-2.png new file mode 100644 index 0000000..1a221ab Binary files /dev/null and b/images/92-2.png differ diff --git a/images/92-20.png b/images/92-20.png new file mode 100644 index 0000000..e63a51f Binary files /dev/null and b/images/92-20.png differ diff --git a/images/92-21.png b/images/92-21.png new file mode 100644 index 0000000..ddf5d98 Binary files /dev/null and b/images/92-21.png differ diff --git a/images/92-22.png b/images/92-22.png new file mode 100644 index 0000000..bf82c92 Binary files /dev/null and b/images/92-22.png differ diff --git a/images/92-23.png b/images/92-23.png new file mode 100644 index 0000000..36a552b Binary files /dev/null and b/images/92-23.png differ diff --git a/images/92-24.png b/images/92-24.png new file mode 100644 index 0000000..4e88e43 Binary files /dev/null and b/images/92-24.png differ diff --git a/images/92-25.png b/images/92-25.png new file mode 100644 index 0000000..2648a2d Binary files /dev/null and b/images/92-25.png differ diff --git a/images/92-26.png b/images/92-26.png new file mode 100644 index 0000000..3aa964e Binary files /dev/null and b/images/92-26.png differ diff --git a/images/92-27.png b/images/92-27.png new file mode 100644 index 0000000..1af49d3 Binary files /dev/null and b/images/92-27.png differ diff --git a/images/92-28.png b/images/92-28.png new file mode 100644 index 0000000..87d6162 Binary files /dev/null and b/images/92-28.png differ diff --git a/images/92-29.png b/images/92-29.png new file mode 100644 index 0000000..cde9b0a Binary files /dev/null and b/images/92-29.png differ diff --git a/images/92-3.png b/images/92-3.png new file mode 100644 index 0000000..a2ff800 Binary files /dev/null and b/images/92-3.png differ diff --git a/images/92-30.png b/images/92-30.png new file mode 100644 index 0000000..4101ec2 Binary files /dev/null and b/images/92-30.png differ diff --git a/images/92-31.png b/images/92-31.png new file mode 100644 index 0000000..b96014b Binary files /dev/null and b/images/92-31.png differ diff --git a/images/92-32.png b/images/92-32.png new file mode 100644 index 0000000..83fa7a2 Binary files /dev/null and b/images/92-32.png differ diff --git a/images/92-4.png b/images/92-4.png new file mode 100644 index 0000000..7ced9b9 Binary files /dev/null and b/images/92-4.png differ diff --git a/images/92-5.png b/images/92-5.png new file mode 100644 index 0000000..86a306d Binary files /dev/null and b/images/92-5.png differ diff --git a/images/92-6.png b/images/92-6.png new file mode 100644 index 0000000..68e8114 Binary files /dev/null and b/images/92-6.png differ diff --git a/images/92-7.png b/images/92-7.png new file mode 100644 index 0000000..a3a8170 Binary files /dev/null and b/images/92-7.png differ diff --git a/images/92-8.png b/images/92-8.png new file mode 100644 index 0000000..34effff Binary files /dev/null and b/images/92-8.png differ diff --git a/images/92-9.png b/images/92-9.png new file mode 100644 index 0000000..9ceb6c1 Binary files /dev/null and b/images/92-9.png differ diff --git a/images/93-0.png b/images/93-0.png new file mode 100644 index 0000000..110958e Binary files /dev/null and b/images/93-0.png differ diff --git a/images/93-1.png b/images/93-1.png new file mode 100644 index 0000000..c1cbb14 Binary files /dev/null and b/images/93-1.png differ diff --git a/images/93-10.png b/images/93-10.png new file mode 100644 index 0000000..f8f35ad Binary files /dev/null and b/images/93-10.png differ diff --git a/images/93-11.png b/images/93-11.png new file mode 100644 index 0000000..2bdd1b5 Binary files /dev/null and b/images/93-11.png differ diff --git a/images/93-12.png b/images/93-12.png new file mode 100644 index 0000000..62cc218 Binary files /dev/null and b/images/93-12.png differ diff --git a/images/93-13.png b/images/93-13.png new file mode 100644 index 0000000..452d009 Binary files /dev/null and b/images/93-13.png differ diff --git a/images/93-14.png b/images/93-14.png new file mode 100644 index 0000000..ce1ba44 Binary files /dev/null and b/images/93-14.png differ diff --git a/images/93-15.png b/images/93-15.png new file mode 100644 index 0000000..404d537 Binary files /dev/null and b/images/93-15.png differ diff --git a/images/93-16.png b/images/93-16.png new file mode 100644 index 0000000..6a32846 Binary files /dev/null and b/images/93-16.png differ diff --git a/images/93-17.png b/images/93-17.png new file mode 100644 index 0000000..29c2f49 Binary files /dev/null and b/images/93-17.png differ diff --git a/images/93-18.png b/images/93-18.png new file mode 100644 index 0000000..8355b3f Binary files /dev/null and b/images/93-18.png differ diff --git a/images/93-19.png b/images/93-19.png new file mode 100644 index 0000000..3e7b7e0 Binary files /dev/null and b/images/93-19.png differ diff --git a/images/93-2.png b/images/93-2.png new file mode 100644 index 0000000..9d59175 Binary files /dev/null and b/images/93-2.png differ diff --git a/images/93-20.png b/images/93-20.png new file mode 100644 index 0000000..ddfd467 Binary files /dev/null and b/images/93-20.png differ diff --git a/images/93-3.png b/images/93-3.png new file mode 100644 index 0000000..7632fb4 Binary files /dev/null and b/images/93-3.png differ diff --git a/images/93-4.png b/images/93-4.png new file mode 100644 index 0000000..33e2cf9 Binary files /dev/null and b/images/93-4.png differ diff --git a/images/93-5.png b/images/93-5.png new file mode 100644 index 0000000..cb1a4e8 Binary files /dev/null and b/images/93-5.png differ diff --git a/images/93-6.png b/images/93-6.png new file mode 100644 index 0000000..8236197 Binary files /dev/null and b/images/93-6.png differ diff --git a/images/93-7.png b/images/93-7.png new file mode 100644 index 0000000..bd56762 Binary files /dev/null and b/images/93-7.png differ diff --git a/images/93-8.png b/images/93-8.png new file mode 100644 index 0000000..fb41686 Binary files /dev/null and b/images/93-8.png differ diff --git a/images/93-9.png b/images/93-9.png new file mode 100644 index 0000000..b5e9947 Binary files /dev/null and b/images/93-9.png differ diff --git a/images/94-0.png b/images/94-0.png new file mode 100644 index 0000000..0d9b690 Binary files /dev/null and b/images/94-0.png differ diff --git a/images/94-1.png b/images/94-1.png new file mode 100644 index 0000000..82f44ab Binary files /dev/null and b/images/94-1.png differ diff --git a/images/94-10.png b/images/94-10.png new file mode 100644 index 0000000..c9dde7e Binary files /dev/null and b/images/94-10.png differ diff --git a/images/94-11.png b/images/94-11.png new file mode 100644 index 0000000..9ae28b3 Binary files /dev/null and b/images/94-11.png differ diff --git a/images/94-12.png b/images/94-12.png new file mode 100644 index 0000000..8964b66 Binary files /dev/null and b/images/94-12.png differ diff --git a/images/94-13.png b/images/94-13.png new file mode 100644 index 0000000..9e8b075 Binary files /dev/null and b/images/94-13.png differ diff --git a/images/94-2.png b/images/94-2.png new file mode 100644 index 0000000..837a1ea Binary files /dev/null and b/images/94-2.png differ diff --git a/images/94-3.png b/images/94-3.png new file mode 100644 index 0000000..15e5e0c Binary files /dev/null and b/images/94-3.png differ diff --git a/images/94-4.png b/images/94-4.png new file mode 100644 index 0000000..3416556 Binary files /dev/null and b/images/94-4.png differ diff --git a/images/94-5.png b/images/94-5.png new file mode 100644 index 0000000..28c0316 Binary files /dev/null and b/images/94-5.png differ diff --git a/images/94-6.png b/images/94-6.png new file mode 100644 index 0000000..4b374b1 Binary files /dev/null and b/images/94-6.png differ diff --git a/images/94-7.png b/images/94-7.png new file mode 100644 index 0000000..2d20ee8 Binary files /dev/null and b/images/94-7.png differ diff --git a/images/94-8.png b/images/94-8.png new file mode 100644 index 0000000..0a436e4 Binary files /dev/null and b/images/94-8.png differ diff --git a/images/94-9.png b/images/94-9.png new file mode 100644 index 0000000..9fd1250 Binary files /dev/null and b/images/94-9.png differ diff --git a/images/95-0.png b/images/95-0.png new file mode 100644 index 0000000..3c1aa61 Binary files /dev/null and b/images/95-0.png differ diff --git a/images/95-1.png b/images/95-1.png new file mode 100644 index 0000000..5db9613 Binary files /dev/null and b/images/95-1.png differ diff --git a/images/95-10.png b/images/95-10.png new file mode 100644 index 0000000..47027df Binary files /dev/null and b/images/95-10.png differ diff --git a/images/95-11.png b/images/95-11.png new file mode 100644 index 0000000..104e2b2 Binary files /dev/null and b/images/95-11.png differ diff --git a/images/95-12.png b/images/95-12.png new file mode 100644 index 0000000..124f2e4 Binary files /dev/null and b/images/95-12.png differ diff --git a/images/95-13.png b/images/95-13.png new file mode 100644 index 0000000..4c79b89 Binary files /dev/null and b/images/95-13.png differ diff --git a/images/95-14.png b/images/95-14.png new file mode 100644 index 0000000..996f36a Binary files /dev/null and b/images/95-14.png differ diff --git a/images/95-2.png b/images/95-2.png new file mode 100644 index 0000000..2b79e69 Binary files /dev/null and b/images/95-2.png differ diff --git a/images/95-3.png b/images/95-3.png new file mode 100644 index 0000000..f5d2101 Binary files /dev/null and b/images/95-3.png differ diff --git a/images/95-4.png b/images/95-4.png new file mode 100644 index 0000000..428cbec Binary files /dev/null and b/images/95-4.png differ diff --git a/images/95-5.png b/images/95-5.png new file mode 100644 index 0000000..3a57918 Binary files /dev/null and b/images/95-5.png differ diff --git a/images/95-6.png b/images/95-6.png new file mode 100644 index 0000000..e10f482 Binary files /dev/null and b/images/95-6.png differ diff --git a/images/95-7.png b/images/95-7.png new file mode 100644 index 0000000..cf8cd28 Binary files /dev/null and b/images/95-7.png differ diff --git a/images/95-8.png b/images/95-8.png new file mode 100644 index 0000000..4d888da Binary files /dev/null and b/images/95-8.png differ diff --git a/images/95-9.png b/images/95-9.png new file mode 100644 index 0000000..a126954 Binary files /dev/null and b/images/95-9.png differ diff --git a/images/96-0.png b/images/96-0.png new file mode 100644 index 0000000..d45ff30 Binary files /dev/null and b/images/96-0.png differ diff --git a/images/96-1.png b/images/96-1.png new file mode 100644 index 0000000..3a57722 Binary files /dev/null and b/images/96-1.png differ diff --git a/images/96-10.png b/images/96-10.png new file mode 100644 index 0000000..7088580 Binary files /dev/null and b/images/96-10.png differ diff --git a/images/96-11.png b/images/96-11.png new file mode 100644 index 0000000..36b0410 Binary files /dev/null and b/images/96-11.png differ diff --git a/images/96-12.png b/images/96-12.png new file mode 100644 index 0000000..808626a Binary files /dev/null and b/images/96-12.png differ diff --git a/images/96-13.png b/images/96-13.png new file mode 100644 index 0000000..830e18f Binary files /dev/null and b/images/96-13.png differ diff --git a/images/96-14.png b/images/96-14.png new file mode 100644 index 0000000..5854c99 Binary files /dev/null and b/images/96-14.png differ diff --git a/images/96-15.png b/images/96-15.png new file mode 100644 index 0000000..7d7201d Binary files /dev/null and b/images/96-15.png differ diff --git a/images/96-16.png b/images/96-16.png new file mode 100644 index 0000000..89d0be9 Binary files /dev/null and b/images/96-16.png differ diff --git a/images/96-17.png b/images/96-17.png new file mode 100644 index 0000000..da1bf69 Binary files /dev/null and b/images/96-17.png differ diff --git a/images/96-18.png b/images/96-18.png new file mode 100644 index 0000000..75ba1e1 Binary files /dev/null and b/images/96-18.png differ diff --git a/images/96-2.png b/images/96-2.png new file mode 100644 index 0000000..be375fe Binary files /dev/null and b/images/96-2.png differ diff --git a/images/96-3.png b/images/96-3.png new file mode 100644 index 0000000..b91efbd Binary files /dev/null and b/images/96-3.png differ diff --git a/images/96-4.png b/images/96-4.png new file mode 100644 index 0000000..1ce8593 Binary files /dev/null and b/images/96-4.png differ diff --git a/images/96-5.png b/images/96-5.png new file mode 100644 index 0000000..ed28dc7 Binary files /dev/null and b/images/96-5.png differ diff --git a/images/96-6.png b/images/96-6.png new file mode 100644 index 0000000..057b1d8 Binary files /dev/null and b/images/96-6.png differ diff --git a/images/96-7.png b/images/96-7.png new file mode 100644 index 0000000..01725f5 Binary files /dev/null and b/images/96-7.png differ diff --git a/images/96-8.png b/images/96-8.png new file mode 100644 index 0000000..80461ee Binary files /dev/null and b/images/96-8.png differ diff --git a/images/96-9.png b/images/96-9.png new file mode 100644 index 0000000..0649629 Binary files /dev/null and b/images/96-9.png differ diff --git a/images/97-0.png b/images/97-0.png new file mode 100644 index 0000000..a059047 Binary files /dev/null and b/images/97-0.png differ diff --git a/images/97-1.png b/images/97-1.png new file mode 100644 index 0000000..1fe6ede Binary files /dev/null and b/images/97-1.png differ diff --git a/images/97-10.png b/images/97-10.png new file mode 100644 index 0000000..7df9284 Binary files /dev/null and b/images/97-10.png differ diff --git a/images/97-11.png b/images/97-11.png new file mode 100644 index 0000000..576ba36 Binary files /dev/null and b/images/97-11.png differ diff --git a/images/97-12.png b/images/97-12.png new file mode 100644 index 0000000..62eb746 Binary files /dev/null and b/images/97-12.png differ diff --git a/images/97-13.png b/images/97-13.png new file mode 100644 index 0000000..44e3127 Binary files /dev/null and b/images/97-13.png differ diff --git a/images/97-14.png b/images/97-14.png new file mode 100644 index 0000000..b409666 Binary files /dev/null and b/images/97-14.png differ diff --git a/images/97-15.png b/images/97-15.png new file mode 100644 index 0000000..a3662eb Binary files /dev/null and b/images/97-15.png differ diff --git a/images/97-16.png b/images/97-16.png new file mode 100644 index 0000000..0b32b4f Binary files /dev/null and b/images/97-16.png differ diff --git a/images/97-17.png b/images/97-17.png new file mode 100644 index 0000000..4cf2557 Binary files /dev/null and b/images/97-17.png differ diff --git a/images/97-18.png b/images/97-18.png new file mode 100644 index 0000000..189ba23 Binary files /dev/null and b/images/97-18.png differ diff --git a/images/97-19.png b/images/97-19.png new file mode 100644 index 0000000..d068355 Binary files /dev/null and b/images/97-19.png differ diff --git a/images/97-2.png b/images/97-2.png new file mode 100644 index 0000000..9c0019c Binary files /dev/null and b/images/97-2.png differ diff --git a/images/97-20.png b/images/97-20.png new file mode 100644 index 0000000..e1bc8b2 Binary files /dev/null and b/images/97-20.png differ diff --git a/images/97-21.png b/images/97-21.png new file mode 100644 index 0000000..77f2324 Binary files /dev/null and b/images/97-21.png differ diff --git a/images/97-22.png b/images/97-22.png new file mode 100644 index 0000000..84174e6 Binary files /dev/null and b/images/97-22.png differ diff --git a/images/97-23.png b/images/97-23.png new file mode 100644 index 0000000..77d3c64 Binary files /dev/null and b/images/97-23.png differ diff --git a/images/97-24.png b/images/97-24.png new file mode 100644 index 0000000..7e58dc8 Binary files /dev/null and b/images/97-24.png differ diff --git a/images/97-25.png b/images/97-25.png new file mode 100644 index 0000000..635c8c0 Binary files /dev/null and b/images/97-25.png differ diff --git a/images/97-26.png b/images/97-26.png new file mode 100644 index 0000000..31db345 Binary files /dev/null and b/images/97-26.png differ diff --git a/images/97-3.png b/images/97-3.png new file mode 100644 index 0000000..46e7e59 Binary files /dev/null and b/images/97-3.png differ diff --git a/images/97-4.png b/images/97-4.png new file mode 100644 index 0000000..05e485e Binary files /dev/null and b/images/97-4.png differ diff --git a/images/97-5.png b/images/97-5.png new file mode 100644 index 0000000..2f6b7ce Binary files /dev/null and b/images/97-5.png differ diff --git a/images/97-6.png b/images/97-6.png new file mode 100644 index 0000000..02e8ad1 Binary files /dev/null and b/images/97-6.png differ diff --git a/images/97-7.png b/images/97-7.png new file mode 100644 index 0000000..f58676b Binary files /dev/null and b/images/97-7.png differ diff --git a/images/97-8.png b/images/97-8.png new file mode 100644 index 0000000..8ed20bd Binary files /dev/null and b/images/97-8.png differ diff --git a/images/97-9.png b/images/97-9.png new file mode 100644 index 0000000..a5b6260 Binary files /dev/null and b/images/97-9.png differ diff --git a/images/98-0.png b/images/98-0.png new file mode 100644 index 0000000..f0d59ad Binary files /dev/null and b/images/98-0.png differ diff --git a/images/98-1.png b/images/98-1.png new file mode 100644 index 0000000..36f94a1 Binary files /dev/null and b/images/98-1.png differ diff --git a/images/98-10.png b/images/98-10.png new file mode 100644 index 0000000..30e3bee Binary files /dev/null and b/images/98-10.png differ diff --git a/images/98-11.png b/images/98-11.png new file mode 100644 index 0000000..491926c Binary files /dev/null and b/images/98-11.png differ diff --git a/images/98-12.png b/images/98-12.png new file mode 100644 index 0000000..b3153d1 Binary files /dev/null and b/images/98-12.png differ diff --git a/images/98-13.png b/images/98-13.png new file mode 100644 index 0000000..c554c6a Binary files /dev/null and b/images/98-13.png differ diff --git a/images/98-14.png b/images/98-14.png new file mode 100644 index 0000000..5c8ef01 Binary files /dev/null and b/images/98-14.png differ diff --git a/images/98-15.png b/images/98-15.png new file mode 100644 index 0000000..44d59c2 Binary files /dev/null and b/images/98-15.png differ diff --git a/images/98-16.png b/images/98-16.png new file mode 100644 index 0000000..1127b6c Binary files /dev/null and b/images/98-16.png differ diff --git a/images/98-17.png b/images/98-17.png new file mode 100644 index 0000000..3bb4b6d Binary files /dev/null and b/images/98-17.png differ diff --git a/images/98-18.png b/images/98-18.png new file mode 100644 index 0000000..78a9d9c Binary files /dev/null and b/images/98-18.png differ diff --git a/images/98-2.png b/images/98-2.png new file mode 100644 index 0000000..6346aed Binary files /dev/null and b/images/98-2.png differ diff --git a/images/98-3.png b/images/98-3.png new file mode 100644 index 0000000..2cc6eb9 Binary files /dev/null and b/images/98-3.png differ diff --git a/images/98-4.png b/images/98-4.png new file mode 100644 index 0000000..c8ea530 Binary files /dev/null and b/images/98-4.png differ diff --git a/images/98-5.png b/images/98-5.png new file mode 100644 index 0000000..08e7ecf Binary files /dev/null and b/images/98-5.png differ diff --git a/images/98-6.png b/images/98-6.png new file mode 100644 index 0000000..2b92865 Binary files /dev/null and b/images/98-6.png differ diff --git a/images/98-7.png b/images/98-7.png new file mode 100644 index 0000000..af3d5cf Binary files /dev/null and b/images/98-7.png differ diff --git a/images/98-8.png b/images/98-8.png new file mode 100644 index 0000000..f6054a9 Binary files /dev/null and b/images/98-8.png differ diff --git a/images/98-9.png b/images/98-9.png new file mode 100644 index 0000000..22eef16 Binary files /dev/null and b/images/98-9.png differ diff --git a/images/99-0.png b/images/99-0.png new file mode 100644 index 0000000..3898fa6 Binary files /dev/null and b/images/99-0.png differ diff --git a/images/99-1.png b/images/99-1.png new file mode 100644 index 0000000..0de2e00 Binary files /dev/null and b/images/99-1.png differ diff --git a/images/99-10.png b/images/99-10.png new file mode 100644 index 0000000..f3cf4a9 Binary files /dev/null and b/images/99-10.png differ diff --git a/images/99-11.png b/images/99-11.png new file mode 100644 index 0000000..d47a065 Binary files /dev/null and b/images/99-11.png differ diff --git a/images/99-12.png b/images/99-12.png new file mode 100644 index 0000000..b243fcc Binary files /dev/null and b/images/99-12.png differ diff --git a/images/99-13.png b/images/99-13.png new file mode 100644 index 0000000..c727969 Binary files /dev/null and b/images/99-13.png differ diff --git a/images/99-14.png b/images/99-14.png new file mode 100644 index 0000000..b3d94e2 Binary files /dev/null and b/images/99-14.png differ diff --git a/images/99-2.png b/images/99-2.png new file mode 100644 index 0000000..ddabbae Binary files /dev/null and b/images/99-2.png differ diff --git a/images/99-3.png b/images/99-3.png new file mode 100644 index 0000000..00ec606 Binary files /dev/null and b/images/99-3.png differ diff --git a/images/99-4.png b/images/99-4.png new file mode 100644 index 0000000..68c756b Binary files /dev/null and b/images/99-4.png differ diff --git a/images/99-5.png b/images/99-5.png new file mode 100644 index 0000000..74d684a Binary files /dev/null and b/images/99-5.png differ diff --git a/images/99-6.png b/images/99-6.png new file mode 100644 index 0000000..63b416d Binary files /dev/null and b/images/99-6.png differ diff --git a/images/99-7.png b/images/99-7.png new file mode 100644 index 0000000..8c6701e Binary files /dev/null and b/images/99-7.png differ diff --git a/images/99-8.png b/images/99-8.png new file mode 100644 index 0000000..b5feb59 Binary files /dev/null and b/images/99-8.png differ diff --git a/images/99-9.png b/images/99-9.png new file mode 100644 index 0000000..9ddc459 Binary files /dev/null and b/images/99-9.png differ diff --git a/loader.py b/loader.py new file mode 100644 index 0000000..1f9952b --- /dev/null +++ b/loader.py @@ -0,0 +1,202 @@ +import os +import argparse +import scipy +import scipy.misc +import scipy.cluster +import numpy as np +import models +import random +from PIL import Image +import colour +import requests +import time + +""" +Load images from a csv file into the database and/or process unprocessed images from the database +""" + +NUM_CLUSTERS = 64 + +def loadFile(indexFileName): + works = [] + + with open(indexFileName, 'r') as fp: + for line in fp: + # print(line) + filename, name, group, emotion = line.split(",") + works.append({ + 'filename':filename.strip(), + 'name':name.strip(), + 'group': group.strip(), + 'emotion': emotion.strip() + }) + # print(filename,name, group, emotion) + + emotions = list(set([work['emotion'] for work in works])) + groups = list(set([work['emotion'] for work in works])) + emoCounts = {} + for work in works: + if work['emotion'] in emoCounts: + emoCounts[work['emotion']] += '#' + else: + emoCounts[work['emotion']] = "#" + groupCounts = {} + for work in works: + if work['group'] in groupCounts: + groupCounts[work['group']] += '#' + else: + groupCounts[work['group']] = "#" + + emotions = {} + for emo, count in emoCounts.items(): + emotion = models.Emotion(name=emo) + emotion.save() + emotions[emo] = emotion + print(emo.center(20), ('('+str(len(count))+') ').rjust(5), count) + + groups = {} + for g, count in groupCounts.items(): + group = models.Group(name=g) + group.save() + groups[g] = group + print(g.center(20), ('('+str(len(count))+') ').rjust(5), count) + + i = 0 + for work in works: + i+=1 + img = models.Artwork() + # img.gender = random.choice(genders) + img.author = work['name'] + # img.age = i + 4 + random.choice([-1,0,0,0,0,1,1,2]) + img.group = groups[work['group']] + img.emotion = emotions[work['emotion']] + img.filename = work['filename'] + # img.colours = getColoursForImageByClusters(Image.open(img.filename)) + img.save() + print("\r%d/%d" % (i, len(works)), end="") + + print("Loaded",len(works),"from", indexFileName) + +def processWorksFromDb(): + artworks = models.Artwork.select().where(models.Artwork.colours == None | models.Artwork.colours == None) + for work in artworks: + processWork(work) + +def processWork(work : models.Artwork): + print("Processing", work.id,"by '"+work.author+"' from", work.group.name) + if work.colours is None: + c = colour.getColoursForImageByMeanShiftClusters(Image.open(work.filename), 'images/%s' % work.id) + work.colours = c + work.save() + if work.faces is None: + f = loadEmotionsFromMs(work.filename) + work.faces = f + work.save() + if not os.path.exists(work.getThumbPath()): + img = Image.open(work.filename) + img.thumbnail((200,200)) + img.save(work.getThumbPath()) + return + +def loadEmotionsFromMs(filename): + headers = { + 'Content-Type':'application/octet-stream', + 'Ocp-Apim-Subscription-Key': '3cb36f05201943679906e6ed68d4318c', + } + data=open(filename,'rb').read() + r = requests.post('https://api.projectoxford.ai/emotion/v1.0/recognize', data=data, headers = headers) + time.sleep(4) # avoid limit + + responsedata = r.json() + + if r.status_code != 200: + raise Exception(responsedata['error']['message']) + + if len(responsedata) < 1: + return [] + + ''' + [ { + u'faceRectangle': {u'width': 153, u'top': 143, u'left': 222, u'height': 153}, + u'scores': {u'sadness': 0.0135554466, u'neutral': 0.935254037, u'contempt': 0.00121790112, u'disgust': 0.0111144362, u'anger': 0.03275946, u'surprise': 0.0057246, u'fear': 0.000241575908, u'happiness': 0.00013255408} + }, ...] + ''' + + return responsedata + # for d in responsedata: + # response = {'faces': []} + # face = {} + # face['metrics'] = {name:score*100 for name,score in d['scores'].items()} + # face['metrics']['joy'] = face['metrics']['happiness'] * 100 + # face['faceRectangle'] = d['faceRectangle'] + # response['faces'].append(face) + + +def main(): + parser = argparse.ArgumentParser(description='Load an csv file into the database') + parser.add_argument('--file', type=str, default=None, help='CVS file to load') + parser.add_argument('--reset', action='store_true', default=False, help='Clear db on load') + parser.add_argument('--process', action='store_true', default=False, help='Load artworks from the database that have not been processed yet and process those') + # parser.add_argument('--db', type=str, default="images.db", help='Specify custom db') + + args = parser.parse_args() + + if not os.path.exists('images.db'): + models.db.create_tables([models.Emotion, models.Group, models.Artwork]) + if args.reset: + models.db.truncate_tables([models.Emotion, models.Group, models.Artwork]) + + if not args.file is None: + loadFile(args.file) + + if args.process is True: + processWorksFromDb() + +def getColourAsHex(colour): + return '#' + ''.join(format(c, '02x') for c in colour.astype(int)) + +def getColoursForImageByClusters(image): + """ + Adapted on answers by + Peter Hansen (http://stackoverflow.com/a/3244061) + & Johan Mickos (http://stackoverflow.com/a/34140327) + """ + im = image.copy().resize((150, 150)) # optional, to reduce time + ar = scipy.misc.fromimage(im) + shape = ar.shape + ar = ar.reshape(scipy.product(shape[:2]), shape[2]) + +# print( 'finding clusters') + codes, dist = scipy.cluster.vq.kmeans(ar.astype(float), NUM_CLUSTERS) +# print ('cluster centres:\n', codes) + + vecs, dist = scipy.cluster.vq.vq(ar, codes) # assign codes + counts, bins = scipy.histogram(vecs, len(codes)) # count occurrences + +# When only looking for single color: +# index_max = scipy.argmax(counts) # find most frequent +# peak = codes[index_max] +# colour = ''.join(chr(c) for c in peak).encode('hex') +# print( 'most frequent is %s (#%s)' % (peak, colour)) + + percentages = 100 * counts / sum(counts) +# print("Percentages", percentages) +# colours = [ in codes] +# print(colours) + return list(zip(codes, percentages)) + +def getColoursForImageByPxAvg(image): + ''' + Don't use this one, blunt way to get average pixel colors + ''' + im = image.copy().resize((8, 8)) + pixels = np.concatenate(scipy.misc.fromimage(im)) + # colours = ['#' + ''.join(format(c, '02x') for c in color.astype(int)) for color in pixels] + percentages = np.zeros(len(pixels)) + (100 / len(pixels)) + return list(zip(pixels, percentages)) + +def getColoursAsHTML(colours): + return " ".join(['%s - (%s %%)' % (getColourAsHex(colour[0]), getColourAsHex(colour[0]), colour[1]) for colour in colours]); + +if __name__ == '__main__': + main() diff --git a/models.py b/models.py index c6f1ce7..a7b1ae6 100644 --- a/models.py +++ b/models.py @@ -18,11 +18,27 @@ class ColoursField(TextField): # db_field = 'colour' def db_value(self, value): + if value is None: + return None return coloursToJson(value) def python_value(self, value): - return jsonToColours(value) # convert str to UUID + if value is None: + return None + return jsonToColours(value) +class JsonField(TextField): +# db_field = 'colour' + + def db_value(self, value): + if value is None: + return None + return json.dumps(value) + + def python_value(self, value): + if value is None: + return None + return json.loads(value) class BaseModel(Model): class Meta: @@ -35,14 +51,18 @@ class Group(BaseModel): name = CharField(unique=True) class Artwork(BaseModel): - author = CharField() - age = SmallIntegerField(index=True) - gender = FixedCharField(max_length=1) # we should not really use this one + author = CharField(null=True) + age = SmallIntegerField(index=True, null=True) + gender = FixedCharField(max_length=1, null=True) # we should not really use this one group = ForeignKeyField(Group, related_name='artworks', index=True) emotion = ForeignKeyField(Emotion, related_name='artworks', index=True) created_date = DateTimeField(default=datetime.datetime.now) filename = CharField() - colours = ColoursField() # serialised colours + percentages: [([r,g,b], percentage), ...] + colours = ColoursField(null=True) # serialised colours + percentages: [([r,g,b], percentage), ...] + faces = JsonField(null=True) # Serialised MS data + + def getThumbPath(self): + return 'thumbs/%s.jpg' % self.id def getAges(): r = Artwork.select(fn.Distinct(Artwork.age)).dicts() @@ -52,6 +72,8 @@ def getEmotionCountsFromArtworks(artworks): emotions = {} for artwork in artworks: e = artwork.emotion.name + if e == 'onbekend': + continue if e in emotions: emotions[e] += 1 else: @@ -77,4 +99,54 @@ def getAgeFractionsFromArtworks(artworks): total = sum(ages.values()) for age in ages: ages[age] = ages[age] / total - return ages \ No newline at end of file + return ages + +def getGroupFractionsFromArtworks(artworks): + groups = {} + for artwork in artworks: + group = artwork.group.name + if group in groups: + groups[group] += 1 + else: + groups[group] = 1 + + total = sum(groups.values()) + for group in groups: + groups[group] = groups[group] / total + return groups + +emotionTranslations = { + 'anger': 'boos', + 'contempt': 'zelfgenoegzaamheid', + 'disgust': 'walging', + 'fear': 'angst', + 'happiness': 'geluk', + 'surprise': 'verbazing', + 'sadness': 'verdriet', + 'neutral': 'neutraal', +} + +def getFaceFractionsFromArtworks(artworks): + emotions = {} + for artwork in artworks: + if artwork.faces is None or len(artwork.faces) < 1: + continue + for face in artwork.faces: + for emotion, score in face['scores'].items(): + if emotion in emotions: + emotions[emotion] += score + else: + emotions[emotion] = score + + total = sum(emotions.values()) + defEmotions = {} + for emotion in emotions: + emotions[emotion] = emotions[emotion] / total + if emotions[emotion] > .02: + defEmotions[emotionTranslations[emotion]] = emotions[emotion] + + total = sum(defEmotions.values()) + for emotion in defEmotions: + defEmotions[emotion] = defEmotions[emotion] / total + + return defEmotions \ No newline at end of file diff --git a/server.py b/server.py index e76344a..b519137 100644 --- a/server.py +++ b/server.py @@ -19,7 +19,7 @@ config = { "conn": models.db } -emotions = [ e for e in models.Emotion.select()] +emotions = [ e for e in models.Emotion.select().order_by(models.Emotion.name)] class MainHandler(tornado.web.RequestHandler): @@ -48,8 +48,9 @@ class ColourHandler(tornado.web.RequestHandler): req_group = self.get_query_argument("group", default=None) req_age = self.get_query_argument("age", default=None) req_emotion = self.get_query_argument("emotion", default=None) + req_work = self.get_query_argument("work", default=None) - q = models.Artwork.select() + q = models.Artwork.select().join(models.Group).order_by(models.Group.name) if req_group is not None: group = models.Group.get(models.Group.id == req_group) q = q.where(models.Artwork.group == group) @@ -58,12 +59,21 @@ class ColourHandler(tornado.web.RequestHandler): elif req_emotion is not None: emotion = models.Emotion.get(models.Emotion.id == req_emotion) q = q.where(models.Artwork.emotion == emotion) + elif req_work is not None: + q = q.where(models.Artwork.id == req_work) + images = q svg = colour.getSvgFromDbImages(images) imgHtml = ""; statHtml = "