commit c580f65893812ea40b42060463dbd449db578cbf Author: Richard Date: Thu Jun 1 16:57:21 2023 +0200 First solution diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c18d74 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ + +*~ +*.swp +*.bak +*.pyc +*.o +.DS_Store +.token diff --git a/README.md b/README.md new file mode 100644 index 0000000..95f3816 --- /dev/null +++ b/README.md @@ -0,0 +1,145 @@ + +Temporal Image Caption Retrieval Competition +===================================== + +Retrieve a caption for a picture from a historical newspaper. + +# UPDATES + +- May 30, 2023: Deadline for submitting the solutions for participants changed to June 14, 2023 +- May 17, 2023: `test-B` directory has been added. Please pull the mother repository. The test-B dataset will be used to determine the winners of the competition. +- April 16, 2023: `train2` directory has been added. Please pull the mother repository. +- March 06, 2023: The baseline has been added. Plase run `baseline.sh` to check it out. +- March 06, 2023: The `test-A` dataset has been published. This is a preliminary test dataset. The final evaluation will be done +on a much bigger dataset published on May 17th. The expected result `expected.tsv` for the `test-A` will not be published. + +# Task Description + +## Introduction + +Multimodal models, especially combining vision and text, are gaining great recognition. A recent example is the image generation model, DALL·E 2 [1]. One such multimodal challenge is Text-Image retrieval, which is to retrieve an image for a text query or retrieve a text for a given image. In this challenge, we introduce a task in the Text-Image retrieval setup, additionally extending the modalities with temporal data. + +Language models rarely utilize any input information except for text. E.g additional data could be a text domain, document timestamp, website URL, or other metadata information. However, models trained solely on text data may be limited in usage. Additional temporal information is useful when factual knowledge is required, but the facts change over time (answering the question: “Who is the president of the U.S.A”, “Who was the president of the U.S.A at 1950”), or language semantic changes (word “gay” meaning shifted from “cheerful” to referring homosexuality). + +The presented task is based on the Chronicling America [2] and Challenging America [3] projects. Chronicling America is an open database of over 16 million pages of digitized historic American newspapers covering 274 years. Challenging America is a set of temporal challenges built from the Chronicling America dataset. + +## Task Definition + +The objective is, given a picture from a newspaper and the newspaper's publication daily date, to retrieve a picture caption from a given caption set. Always, exactly one caption is relevant. + +## Sample data + +**INPUT**: + +Image: + +[](https://github.com/kubapok/cnlps-ticrc) + + +Date timestamp: `19280111` + +Set of all possible captions: `example caption1`, `example caption2`, `MUTT AND JEFF– IT TAKES VERY LITTLE TO MAKE JEFF HAPPY`, `example caption3`, …, `last example caption` + +**EXPECTED OUTPUT:** + +Caption: `MUTT AND JEFF– IT TAKES VERY LITTLE TO MAKE JEFF HAPPY` + +# Data + +Data were collected from the Chronicling America dataset and incorporated into the Challenging America project. The test dataset is created from data, which was not previously presented in any Challenging America project. Therefore participants are allowed to use any data from the Challenging America project, but not Chronicling America (as the Chronicling America project site contains test data). + +Other Challenging America challenges, which may be useful: +- https://gonito.csi.wmi.amu.edu.pl/challenge/challenging-america-geo-prediction +- https://gonito.csi.wmi.amu.edu.pl/challenge/challenging-america-word-gap-prediction +- https://gonito.csi.wmi.amu.edu.pl/challenge/challenging-america-year-prediction + + + +The dataset is created in the following manner. Pictures and captions are extracted from the newspapers by a human annotator (max. one picture per site). + +[](https://github.com/kubapok/cnlps-ticrc) + + +Then, the picture and caption are separated, so the picture does not contain a caption. The caption is typed by a human annotator and kept as golden truth. Newspaper date is taken from newspaper metadata. + +All the data is separated into 3 datasets: training (train), development (dev-0), and test (test-A). The newspaper edition does not overlap between these datasets. The exact procedure for generating Challenging America challenges is given in [3]. + +The final score is calculated only on part of the data released as final test data released on May 17th., not including test data released on Feb 13th. + +# Evaluation + +## Metric + +Metric is Mean Reciprocal Rank ( https://en.wikipedia.org/wiki/Mean_reciprocal_rank ). For the train and development dataset participants are encouraged to use geval evaluation tool, which usage is explained in “HOW TO”. + +# Submissions + +For a given image id and newspaper date timestamp, participants are expected to return a list of proposed captions sorted descending by probability. Though, always only one caption is relevant. + +**In.tsv:** + +The first column in the in.tsv dataset is a picture id. The second column in date timestamp in format YYYYMMDD. + +**Out.tsv:** + +For each row in the in.tsv file, there should be a corresponding list of caption ids sorted from the most probable to the least probable. The ids should be separated by a tab. + +Solutions should be submitted to gonito platform. + + +In order to be included in the final ranking the participants are expected to provide the report that describes their solution. The reports should conform to the requirements specified in the report.tex template and should not exceed 4 pages. + + +# Baseline + +Please run `baseline.sh` from the challenge directory. + +# Rules + +1. Participants are allowed to use any publicly available pre-trained model. +2. Participants are allowed to use any publicly available data, except for data from the Chronicling America https://chroniclingamerica.loc.gov/ . Using any data available in Challenging America is allowed. +3. It is allowed to use the dev set for the model training. +4. Manual labeling is forbidden. +5. Solutions should be submitted by Gonito platform. +6. Max. 5 solutions per day are allowed. +7. The best scoring solution on the leaderboard on test data is the winning one. +8. Teams may consist of one or more people. There is no restriction on the size of the team. Only one team representative should submit the teams' solution to the platform. +9. If the solution submitted by two different teams is found to be the same, the one who submitted earlier would be ranked higher. +10. To be included in the final ranking, a team should provide a report describing their solution. +11. The report should conform to the requirements specified in the exemplary document provided at . + + +# Special session at FedCSIS 2023 + +The authors of selected submissions will be invited to prepare the extended versions of their reports for publication in the conference proceedings and presentation at FedCSIS 2023. The selection will be made by Organizing Committee on the basis of final evaluation results, the quality of the submitted reports, and the originality of the presented methods. The papers will be indexed by the IEEE Digital Library and Web of Science (70 points MEiN- info for polish scientists). + +# Dates + +- Feb 20, 2023: First part of training data available +- Apr 10, 2023: Second part of training data available +- May 17, 2023: Test data available +- ~~May 31, 2023~~ June 14, 2023: Deadline for submitting the solutions +- ~~June 04, 2023~~ June 16, 2023: Announcement of the final results, sending invitations for submitting papers +- July 11, 2023: Deadline for submitting invited papers +- July 16, 2023: Author notification +- July 31, 2023: Final paper submission, registration +- Sept 20, 2023: Challenges in Natural Language Processing Symposium + +# Organizing Committee + +The challenge is organized by the Centre for Artificial Intelligence ( https://csi.amu.edu.pl/ ). The organizing committee is: + +- Jakub Pokrywka, Adam Mickiewicz University, Poland +- Piotr Wierzchoń, Adam Mickiewicz University, Poland +- Krzysztof Jassem, Adam Mickiewicz University, Poland +- Kornel Weryszko, Adam Mickiewicz University, Poland + + +We set up a “CNLPS” Discord server to discuss the the challenge. Please join it to ask any task-related questions: https://discord.gg/VvjHhh7rbF + + +# Citations + +- [1] Ramesh, A., Dhariwal, P., Nichol, A., Chu, C., & Chen, M. (2022). Hierarchical text-conditional image generation with clip latents. arXiv preprint arXiv:2204.06125. +- [2] Lee, B. C. G., Mears, J., Jakeway, E., Ferriter, M., Adams, C., Yarasavage, N., ... & Weld, D. S. (2020). The Newspaper Navigator Dataset: Extracting Headlines and Visual Content from 16 Million Historic Newspaper Pages in Chronicling America. In Proceedings of the 29th ACM International Conference on Information & Knowledge Management (CIKM '20). Association for Computing Machinery, New York, NY, USA, 3055–3062. +- [3] Pokrywka, J., Gralinski, F., Jassem, K., Kaczmarek, K., Jurkiewicz, K., & Wierzchoń, P. (2022, July). Challenging America: Modeling language in longer time scales. In Findings of the Association for Computational Linguistics: NAACL 2022 (pp. 737-749). diff --git a/baseline.py b/baseline.py new file mode 100644 index 0000000..ac9a748 --- /dev/null +++ b/baseline.py @@ -0,0 +1,50 @@ +from sentence_transformers import SentenceTransformer, util +from PIL import Image +import os +import sys +import csv + +#Load CLIP model +model = SentenceTransformer('clip-ViT-B-32') + +split = sys.argv[1] + +#read in.txt +in_data = [] +with open(split + "/in.tsv", "r") as f: + for line in f: + in_data.append(line.split("\t")[0].strip()) + +#read captions.txt ids +captions_d = {} +with open(split + "/captions.tsv", "r") as f: + for line in f: + s_line = line.split() + caption_id = int(s_line[0]) + caption_text = " ".join(s_line[1:]) + captions_d[caption_id] = {"text": caption_text, "score": 0} + + +# take only first 100 characters of a caption +captions = [captions_d[key]["text"][:100] for key in captions_d] + +captions_emb = model.encode(captions) + +answers = [] + +for img_name in in_data: + img_path = split + "/pictures/" + img_name + #Encode an image: + img_emb = model.encode(Image.open(img_path)) + #Compute cosine similarities + cos_scores = util.cos_sim(img_emb, captions_emb) + for i, score in enumerate(cos_scores.tolist()[0]): + captions_d[i+1]["score"] = score + scores = sorted(captions_d, + key = lambda x:captions_d[x]["score"], reverse = True) + answers.append(scores) + +with open(split + "/out.tsv", "w", newline='') as f_out: + writer = csv.writer(f_out, delimiter = "\t") + for answer in answers: + writer.writerow(answer) diff --git a/baseline.sh b/baseline.sh new file mode 100644 index 0000000..c53be1b --- /dev/null +++ b/baseline.sh @@ -0,0 +1,9 @@ +# Run the baseline +python baseline.py dev-0 +python baseline.py test-A +python baseline.py test-B + +# Evaluate the baseline results on the dev-0 dataset +wget https://gonito.net/get/bin/geval +chmod u+x geval +echo $(./geval -t dev-0) diff --git a/config.txt b/config.txt new file mode 100644 index 0000000..30feee7 --- /dev/null +++ b/config.txt @@ -0,0 +1 @@ +--metric MAP --precision 6 --in-header in-header.tsv --out-header out-header.tsv diff --git a/dev-0/captions.tsv b/dev-0/captions.tsv new file mode 100644 index 0000000..294c9f5 --- /dev/null +++ b/dev-0/captions.tsv @@ -0,0 +1,646 @@ +1 "ATTACK THE DOOR AND SEE" +2 "DINNA CRY, LADDIK" +3 "Don't Speak to me." +4 "Hands Up! Not a Move, Murphy! I Have the Drop!" +5 "I Feel Like\nA Real Day’s Work”\nGrape-Nuts\nFOOD +6 "I Have a Message for You." She Said. +7 "I SHALL REPORT THIS TO YOUR FA-\nTHER." HE THREATENED. +8 "I'll Not Be Here a Year From Now."\nShe Warned Him +9 "MUZZLING THE PRESS" +10 "Made in America" Gets Impetus in Washington +11 "My Wife and I Were Very Happy To-\ngether." +12 "My dealer was right\n-they do satisfy!"\nChesterfield\nCIGARETTES +13 "NEITHER MERCY NOR REMORSE." +14 "No." +15 "Ouija! What's\nthe good word?" +16 "Reading Between the Lines" +17 "SOMETHING ODD DISTURBED ME." +18 "THE DOLLAR BEFORE THE MAN." +19 "THE WINE SPECIAL" +20 "Viking" and "Viking System" Clothes +21 "Who's Who" on Congressional "Junket?" +22 $10\nOnly\nFOR an Upper or Lower Set of Teeth. +23 $37.50 SOUTHERN QUEEN $37.50\nTHE SOUTHER BUGGY CO.\nCINCINNATI, OHIO, U. S. A. +24 12-Gauge\nHammerless\n"Pump"\nGun\nThe Marlin +25 14,00 Acres of\nChoice Wheat Land +26 1895 VICTOR BICYCLES: -$100.00\nOVERMAN WHEEL CO. +27 2 for 1\nBoth the Best for the Whole Family\nTHE IDEA IN A FEW WORDS +28 30 FEET OF BOWELS +29 A\nBargain\nfor our\nSubscribers +30 A Bargain for our\nSubscribers\nThe\nNew Idea Woman's MAgazine\nand\nJASPER COURIER\nBoth ONe Year for ONLY $1.50\nThe Latest Fashions The Best Fiction +31 A Bean Harvester at Work. +32 A COPPER MINER.\nPrentice Mulford On Scenes\nof 1862.\nA Sudden Development of\nWiseacres. +33 A Collosal Purchase and Sale of\nWomen's Stylish Garments\nWool, Suits, Silk Suits, Wash Suits, Skirts and Waists +34 A Cure For Obesity. +35 A Demonstration of Value!\nIt can be made clear to anyone that\nour methods of\nDental Treatment\nAre far in advance of many others. Each case is considered carefully, and all work\ndone skillfully and according to the most improved methods.\nOur CROWN AND BRIDGE WORK is Perfection Itsellf. +36 A Fish Scale. +37 A GREAT OFFER\nScribner's Magazine.\nScribner's Magazine For 1895\nNow is the Time to Subscribe\nCHARLES CRIBNER'S SONS Publishers, : : : NEW YORK +38 A Happy Corn Club Boy With a Bushel\nof Selected Seed. +39 A NEW AUSTRALIAN LADY-BUG. +40 A NOVEL LIFEBOAT +41 A Poser For Mummy. +42 A Positive\nCURE FOR\nCATTARH +43 A Pro-Slate Garage\nWILL SOLVE YOUR PROBLEM\nA SIZE FOR EVERY USE\nCLARK & KREMER\nAT YOUR SERVICE. +44 A SPECIFIC\nFOR\nLa Grippe, for Colds, Coughs,\nAND LUNG TROUBLES,\nAYER’S CHERRY PECTORAL +45 A SUBSEQUENT EXPLOSION! +46 A TRAINED NURSE\nAfter Years of Experience, Advises Women in\nRegard to Their Health +47 A Two Headed Baby. +48 A Typical Cholera Pig. +49 A VASE OF ADA SPAULDING CHRYSAN-\nTHEMUMS. +50 A WARM HOME\nLOREY & STURM\nJASPER, IND. +51 A. G. PENDLETON,\nCivil Engineer\nSURVEYOR and\nU. S. Deputy\nMineral Surveyor. +52 ABSOLUTELY\nPURE\nCook's\nGOLDBLUME\nBEER +53 ACT LIKE RURAL VISITORS.\nGrand jury says Keystone police are non-residents and possibly\ncan't find gambling dens. +54 ACTS LIKE MAGIC.\nESTABLISHED 50 YEARS.\nConquers Pain +55 ALBERT SUMMERS,\nBARBER\nFirst Class Work.\nCleanliness a Specialty. +56 ALLIES IN FRONT, GERMAN PEOPLE IN REAR. +57 ALPS IN AMERICA +58 AMUSEMENTS +59 AN EXCELLENT COMBINATION\nCLEANSING THE SYSTEM EFFECTUALLY, DISPELLING\nCOLDS AND HEADACHES, PREVENTING FEVERS,\nOVERCOMING HABITUAL CONSTIPATION PERMANENTLY. +60 ANOTHER QUESTION TO SETTLE\nOR MAYBE HE'LL OPEN THE CANAL WITHOUT AN EXPOSITION. +61 ARROW HEAD\nNURSERY,\nWEST\nHIGH-\nLANDS, +62 ASPIRIN\nName "Bayer" on Genuine +63 ASPIRIN FOR HEADACHE\nName "Bayer" is on Genuine\nAspirin - say Bayer +64 ASTHMA AND CATARRH SUFFERERS\nRECEIVE\nINSTANT\nRELIEF +65 ATTRACTIVE!! +66 AVERY\nAn AVERY Size Tractor for Every Sized Farm.\nMade in Seven Sizes +67 AVOID OPERATION\nGet Out From Under the\nShadow of the Knife. +68 All the Kings In the World Can't Beat My Hand +69 Alluring Dress for Young Girl. +70 Also a complete\nline Sewing\nMachines.\nBoth table and\nDrop head\nstyles. +71 Also keeps a first-\nclass Livery and\nFeed Stable, where\nyou can have yout\nHorses Fed, and\nget the best of rigs\nday or night.\nLeave your or-\nders with\nCASEBIER & BURTON. +72 An Iceless Refrigerator. +73 An Old Kissing Custom Is Revived +74 Archways of the Ruined Praetorium at\nLambessa. +75 Army Is to Play Polo, the Next Thing to Real War +76 As He Passed Men Lifted Their Hats\nand Women Bowed. +77 As sure as you\nare a foot high—\nyou will like this Camel Turkish\nand Domestic\nblend!\nCamel\nCIGGARETTES +78 At the Front!\nHelp Keep It There!\nConserve! +79 At the Old Cross Roads Store in 1938 +80 Attractive Fall Styles in\nWomen's High Boots\nBOSTON\nSHOES FOR\nWOMEN\nNEVER CAME\nTO US IN A\nGREATER\nVARIETY OF\nSMART STYLES. +81 Autos and Taxis For Hire\nBOTH PHONES 2399\nYoung & Berry Auto Co.\nSEVENTH, NEAR BROADWAY. +82 Ayer's Pills\nTHE BEST\nFamily Medicine\nCURE\nSick Headache,\nConstipation,\nDyspepsia,\nLiver Troubles.\nEasy to Take.\nPurely Vegetable. +83 BALL\nAT\nLINLEY HALL\nON\nTHANKSGIVING\nNIGHT,\nNovember, 26th, 1903. +84 BARON OF ODENWALD AND HIS SOL-\nDIERS. +85 BE A MAN\nAPOLLO WAS A PERFECT MAN. +86 BENEVOLENT AND PRO-\nTECTIVE ORDER OF ELKS +87 BETWEEN PORT ARTHUR AND LEAO-YANG. +88 BEWARE OF THE RANGE PEDLER!\nTHE MALLEABLE RANGE\nMADE IN SOUTH BEND +89 BIG SUBSCRIPTION OFFER\nYou Get ALL FOUR of These\nMAGAZINES and OUR NEWSPAPER +90 BIG WATCH\nVALUES!\nMy line of Watches\nis very complete and prices low.\nHoward, Elgin, Waltham\nMovements.\nSolid Gold and Best Gold-filled\nCases at\nSTEINKAMP'S, +91 BUY THE\nLIGHT RUNNING\nNEW HOME\nTHE BEST IS THE CHEAPEST. +92 BUY YOUT\nBarbers Furniture and Cuttery\nAlso Toilet Articles From\nM. TRESOR & CO., +93 Back Feel Achy After Grip? +94 Beat Out Same at It With His Hands +95 Beautify\nYour Home With\nPEE GEE\nRE-NU-LAC\n"WORKS WONDERS" +96 Becker Mayer Company Chicago\nBest Made Children's Clothing +97 Blacksmithing!\nWagons, Buggies, Plows and\nAgricultural Implements! +98 Boston Shoe Co.\nMISSES' AND CHILDREN'S\nSchool and Dress Shoes +99 Brannock's\nDRUG STORE\nCarries\nEverything in\nPAINTS\nOILS,\nVARNISHHES,\nBRUSHES, &c. +100 Breeder's Notice.\nThe Morgan Horse and Jack Co's.\nDR. CASTO +101 Bringing Up Bill CORRECT A Task +102 Broadway Department Store\nBROADWAY COR. 4M LOS ANGELES. ARTHUR LETTO\nMen’s New Fall Suits\n$12.00 +103 Broadway Department Store\nFAULTLESS FALL SUITS FOR MEN AND YOUNG MEN\n$12.00\nIn the Broadway Store for Men +104 Brunswick\nPHONOGRAPHS AND RECORDS\nThere is a size and style for every home at\nF. C. KUEBLER'S +105 Bull Pen and Shed, Purdue Dairy Herd. +106 Burglar-Proof Iron Safe Levied On by Attorney +107 Buy Fourth Liberty Bonds\n"Don't let the SON go down" +108 Buy The\nNEW EDISON RECORDS\nFOR YOUR PHONOGRAPH +109 C. C. HURLEY,\nHardware, Agricultural Implements, Paints\nOILS, GLASS, CUTLERY, GUNS, ETC. +110 C. L. Field. Livery Stable.\nBUDDIES, VEHICLES, CARTS. +111 C. WEIS,\nMeerschaum Pipes, +112 CALIGRAPHS\nIT TOOK THE FIRST PRIZE AT THE LATE\nPARIS EXPOSITION. +113 CANADIAN CUSTOMS OFFICERS COLLECTING DUTY AT LAKE TAGISH. +114 CASEBIER!\nFAST LINE\nCASEBIER'S BUS\nMEETS ALL DAILY\nTrains. +115 CASH DOSCOUNT OFF OUR\nImmense Fall Stock of\nDRY GOODS\nCLOTHING, HATS,\nBOOTS AND SHOES. +116 CASTORIA\nFor Infants and Children.\nThe Kind You Have\nAlways Bought +117 CELEBRATE\nThe Fourth\nWith Flags and Fireworks +118 CENTRAL HOTEL\nEUROPEAN PLAN.\nRooms, 50c to $1.50 per Day.\nSpecial Rates for Monthly Rooms. +119 CENTRAL MARKET\nM. E. HURLEY, PROPRIETOR\nFresh Meats, Veal, Pork, Beef, Mutton, Etc.\nMEATS DELIVERED TO ANY PART OF THE CITY. +120 CHARLES KRAEMER\nDealer in WINES & LIQUORS. +121 CHASE & SANBORN'S\nSEAL BRAND\nCOFFE\nIS THE BEST. +122 CHEAP\nJOB PRINTIN +123 CHICAGO UNION STOCK YARDS,\n"THE WORLD'S BIGGEST BUTCHER SHOP." +124 CHICAGO'S POSTAL BANK OPENS +125 CHOICEST\nTOBACCOS +126 CHURCH NOTICES\nTEMPLE BAPTIST CHURCH +127 CITY HALL KEYSTONE COMEDY HEADQUARTERS. +128 CLIMAX\nA Beautiful Brown Stallion, 15 1-4 Hands High +129 COCK-A-DOODLE-DOO! +130 COMPARISON OF THE PULTRY AND WHEAT PRODUCT. +131 CONSECRATION OF ARCHBISHOP CURLEY AT BALTIMORE. +132 CONSULT\nBECKER\nFor Proper Glasses\nOPTOMETRIST +133 CONTIRENTAL WOOD COOK, +134 CORNS, BUNIONS\nDr. Uriah Z. Litsey\nChiropodist +135 COUNT VON BERNSTORFF\nGerman ambassador to the United\nStates. +136 COW GIRLS IN "THE TENDERFOOT" +137 CPT. SCOTT'S ROUTE TOWARD THE SOUTH POLE. +138 CRATING HOGS MADE EASY. +139 CULLING THE POULTRY FLOCK IN SUMMER\nSingle Comb Partridge Cechin China Cock. +140 Call Us Up +141 Camels are made for Men who\nThink for Themselves\nCamel +142 Cape Horn Palisades. +143 Carting the Oysters to Market. +144 Central Figures in Suits\nAgainst New York World +145 Chase & Sanborn's\n"Seal Brand"\nCoffee +146 Chemise Type Frock of Navy and\nWhite Satin. +147 Chesterfield\nCIGARETTES\nThey Satisfy\n...and the blend\ncan't be copied +148 Chickens Are Always Healthier if\nKept on Open Range. +149 Chinese Diplomat Who May\nBe Recalled by Government\nWu Ting Fang. +150 Clean Up and Paint Up, Then\nBuy Your Screens From Us\nProtect Yourself from the Filthy Housefly\nSTOCK GUARANTED - PRICES FAIR\nCarter Tracy Hardware Company +151 Cold-Water Tank for Cream Cans. +152 Come to Hartford\nTO SEE THE\nSPRING OPENING\nOF\nC. L. Field's car of Buggies just from the\nDavis Carriage Company.\nSo come and judge yourself. +153 Constipation\nVanishes Forever\nPrompt Relief—Permanent Cure\nCARTER'S LITTLE\nLIVER PILLS +154 Couldn’t Keeping Him From\nFunny Work. +155 D. H. BURTIS\nTIN, COPPER AND GRANITE WARE.\nSTOVES and RANGES, GAS and GASOLINE STOVES\nTin and Corrugated Iron Roofing +156 DAD POINTED OUT OF THE WINDOW\nTOWARD VESUVIUS +157 DAILY HINT\nDON'T\nMAKE\nA\nCLOWN +158 DAISY FLY KILLER +159 DAY DREAMS. +160 DE LAVAL\nCream Separator\nSOON PAYS FOR ITSELF +161 DEATHBED OF GEORGE WASHINGTON. +162 DENTISTRY\nDr. B. A. MOSBY\nResident Dentist,\nHUNTINGBURG, IND. +163 DESIGNED BY ARCHITECTS ARTHUR ROLLAND KELLY AND WILLIAM ARTHUR NEWSERY, IN SPANISH COLONIAL TYPE OF ARCHI-\nTECTURE, TO COST $40,000 +164 DEVENISH HARDWARE CO.\nHouse-\nkeeping\nHelps.\nEvery-day Necessities and\nthe Price is Right for\nEach. +165 DISCOURAGING\nWhen a Fellow Works Two Months on a Biplane and the Folks Won't\nLet Him "Go Up" in it. +166 DISEASES OF MEN. +167 DISFIGURING\nHUMORS\nOf the Skin and Scalp\nSpeedily Cured by\nBaths with\nCuticura\nSOAP +168 DO NOT PAMPER FARM HORSES IN WINTER\nEnglish Shire Stallion. +169 DO YOU GET UP\nWITH A LAME BACK?\nKidney Trouble Makes You Miserable. +170 DO YOU INTEND TO BUILD?\nA new Atlas, antitled "SENSIBLE LOW-COST HOUSES," How to Build Them.\n56 DESIRABLE MODERN LOW AND MODERATO COST HOUSES. +171 DR. J. HARDY, DENTIST. +172 DRESS\nMAKERS\nFIND THEM\nLatest Styles +173 DRESSING FOR THE RECEPTION +174 DRESSMAKERS\nFIND THE\nLATEST\nPARIS\nFASHIONS\nL'Art de La Mode. +175 DRESSMAKERS\nFIND THE ONLY\nORIGINAL\nDESIGNS\nPUBLISHED\nIn This Country +176 Daddy's\nEvening\nFairy Tale +177 Dentistry!\nDr. B. A. MOSBY,\nResident Dentist,\nHUNTINGBURG, IND. +178 Designed by Famous Architects +179 Dick Meads. +180 Difficult to Catch. +181 Do YOU want\nClothes that Dazzle ? +182 Do you know\nyou can roll\n50 good\ncigarettes for\n10cts from\none bag od\nGENUINE\n"BULL" DURHAM\nTOBACCO +183 Doctor Henderson\nOVER 27 YEARS OF SPECIAL PRACTICE\nSeminal Weakness & Sexual Debility,\nSyphilis,\nBook\nFree Museum of Anatomy,\nStricture\nRheumatism +184 Don't Go to Great Auto Derby\nIf You Must Have Pet Worries +185 Don’t Blame\nthe Boy\nGet Him a Pair of\nHonest Leather\nTess AND Ted\nSCHOOL SHOES +186 Double Trouble\nThe complication of\nSPRAINS\nand\nBRUISES\nSt. Jacobs Oil\nfor a\nPROMPT, SURE CURE +187 Down go the Price\nAT THE\nDrug Store! +188 Down go the Prices\nAT THE\nDrug Store! +189 Dr. Burke's Catarrh Remedy +190 Dr. PIERCE'S\nPLEASANT\nPELLETS\nCURE\nSICK HEADACHE,\nBILIOUSNESS\nCONSTIPATION,\nINDIGESTION,\nDYSPEPSIA,\nPOOR APPETITE, +191 EASTER MORNING. +192 ELECTRIC FANS for SALE or RENT.\nWe Will EXCHANGE your old model for a NEW TYPE FAN.\nCHILDERS ELECTRIC CO.\nINCORPORATED.\n333 WEST MAIN STREET +193 ENTERPRISE HOTEL,\nJOHN SEARCY, Proprietor\nTHE BEST $1.00 PER DAY HOTEL IN THE CITY OR STATE.\nLouisville, Kentucky. +194 ENTERPRSE HOTEL, +195 EVANSVILLE\nINDIANA\nCOLLEGE AND UNIVERSITY STUDENTS.\nIT PAYS TO TRADE HERE! +196 EVERYTHING\nTHAT'S NEW\nON TAP HERE!\nCLOTHING +197 EXCURSIONS\nTO THE WEST +198 EYE,\nAYE MORE +199 EYERDALE Stock Farm +200 EYERDALE Stock Farm\nThe Home of\nREGISTERED HEREFORD\nCATTLE\nHerd of Select Cows +201 Early\nSpring\nMillinery\nElegant Rough Straw Effects +202 Every\nDollar\nJ. B. Lewis Co's\n"Wear\nResisters" +203 Every Rat Costs the Nation $2, a total of $200,00,00 Annually. +204 Every Young Girl Wants Pretty Arms\nto Show Off. +205 Everyone His Own Chauffeur\nat N. Y. Zoological Park +206 Excelsior Church and School Furnishing Company.\nChurch, School, Opera and Hall Furniture of all kinds. +207 Exciting Rescue of a Pig in Baltimore Harbor +208 FALLING\nHAIR\nSave Your Hair with\nShampoos of\nCuticura\nSOAP +209 FARMER GRANVILLE TOOK HIS DAUGHTER IN HIS ARMS. +210 FARMING IN THE SHADE OF THE OLD APPLE TREE. +211 FASHION'S KEYNOTE\nBy ARABELLA +212 FAST FLYER +213 FEEDING CHICKENS FOR EGG PRODUCTION\nHen Fed No Meat or Milk Laid 36 Eggs While 71 Were Being Laid by the\nMilk-Fed Hens and 72 by the Hen Fed With Beef Scrap. +214 FEEDING RACK. +215 FELIX LAMPERT,\nDUBOTS COUNTY AGENT FOR\nDeering Harvesters\nBALL AND BICYCLE BEARINGS\nBEST BINDING TWINE, +216 FINANCIAL FAKERS FURIOUS\nBecause\nCOIN'S FINANCIAL SCHOOL\nIs teaching the Masses\nTHE TRUTH\nGet It! Study It! +217 FINANCIAL-COMMERCIAL +218 FLOWERS.\nJ. L. Russel +219 FLOWERS.\nJ. L. Russell,\nTHE\nBROADWAY FLORIST\nDENVER, COLO. +220 FOLEY\nKIDNEY\nPILLS +221 FOR\nWOMEN\nAmigo\n$2.50\nA Shoe Which is the STYLISH WOMAN'S Favorite\nINSIST UPON HAVING IT. +222 FOR ALL WOMEN\nWine of Carduin +223 FOR MEN ONLY\nYOUNG MEN OLD MEN\nOUR NEW BOOK +224 FOR SALE\nA\nHOUSE +225 FOR SALE BY ALL DRUGGISTS. +226 FORMAL GOWNS\nOF FINE FABRICS +227 FOUND HER IN AN OLD BOOM. +228 FOUTZ'S\nHORSE AND CATTLE POWDERS +229 FRANK FEHR BREWING CO.\nINCORPORATED\nBrewers and Bottlers\nLOUISVILLE, KY. +230 FREE — TO BETTER KIDNEY HEALTH. +231 FROM SOUP TO NUTS. +232 FRONT ELEVATION. +233 Farm Inventory is Index to Financial\nProgress. +234 Fig. 1—A Young Cluster attacked by\nFirst Brood of Larvae. Notice web-\nbing Together of Berries in Center\nof Cluster. +235 First Floor Plan +236 Floor Plan of Modern Dairy Barn. +237 Florence and Globe Stage Line +238 Florists Present Roses to the United States +239 Flower Trimmed Dresses Delightful for\nGarden Parties. +240 Forks and the Coin. +241 Forward Turret Guns of Connecticut Taken at Close Range +242 Four-Piece Sports Set for Spring and\nSummer. +243 Frazer Axle Grease\nDEMAND THE OLD RELIABLE\nNot affected by Heat or Cold\nHighest Awards at Centennial,\nParis and World,s Fair.\nFRAZER LUBRICATOR CO., +244 Fresh Ohio River Fish\nRECEIVED DAILY\nOHIO RIVER\nA SPECIALTY.\nSegal & Boyer Fish Co. +245 Frock and Fabric\nSimple Garments Regarded Best\nfor Present Wear.\nLOOSE PANEL EFFECT +246 From Corn\nto Toasties\n—a capital evolution\nPost Toasties +247 Furniture! Furniture! +248 Furniture! Furniture!\nFor Ward-Robes\nDressers, Suits, Rock-\ners or anything in the\nGeneral Furniture\nLine, see\nT. J. MORTON. +249 Furniture! Furniture!! +250 Furs, Jackets and Tailor\nMade Suits. +251 G. W. Downs, D. D. S. +252 GARAGE EQUIPMENT & SUPPLY CO. +253 GENEALOGICAL. +254 GENUINE\n"BULL"DURHAM\nTOBACCO +255 GEO. F. SPANGENBERG\nGUNSMITH\nOnly Gunsmith in the City\nALL WORK WARRANTED\nFIRST-CLASS +256 GERMAN BANK\nFifth and Market Sts. +257 GERMAN PRISONERS AT WORK +258 GERMANS ATTACK RUSSIAN LINE. +259 GETTING READY +260 GIVE THE BOYS AND GIRLS A SQUARE MEAL\nBig Girls Prepare the Hot Dishes — Whole School Enjoys Them. +261 GO CARTS\nFROM\n$2.00 UP!\nSIDE BOARDS\nCHINA CLOSETS\nCOMBINATION\nBOOK CASES\nLorey Bros., FURNITURE STORE +262 GOLDMAN & CO.\nTHIS $6 BOOK FREE TO YOU +263 GOOD LOOKS PAIN\nWINE of CARDUI +264 GOSSIP by OUR\nCORRESPONDENTS\nTHAT MAY NOT INTEREST YOU +265 GREAT CHANGES IN AUTOMOBILES +266 GREAT ROCK ISLAND ROUTE +267 GUNSMITH +268 General - Blacksmith +269 George A. Newton\nWatchmaker\nand Jeweler,\nWATCHES, CLOCKS & JEWELRY.\nSewing Machine\nFixtures and Needles.\nPistols. +270 German American Savings Bank +271 Going against the grain. —Chicago\nJournal. +272 Good morning!—Seen the\nCourier?\nWell, I guess! Can't start the day\nwithout that Evansville Courier. +273 Great Expectations +274 H. B. Parker and His Pup Tent. +275 HALL'S SAFE AND LOCK COMPANY.\nSAFES, VAULT FRONTS, ETC. +276 HAT-PIN STAND. +277 HEIRESS WEARS RING IN HER NOSE. +278 HENHOUSE PRODUCT RETURNING TO NORMAL\nPRICES AFFORDS WELCOME CHANGE IN DIET +279 HENRY E. KEMP & CO.\nSHELF and HEAVY HARDWARE +280 HENRY E. KEMP & CO.\nSHELF and HEAVY HARDWARE\nWAGONS, BUGGIES, AGRICULTURAL IMPLEMENTS +281 HERE'S A LITTLE\nPointer for You +282 HERE’S A LITTLE\nPointer for You +283 HIGH TOPS\nMEN'S EASE AND OTHER BRANDS FOR MEN\nAMERICAN BOY SHOE FOR BOYS HIGH OR REGULAR CUT\nWALK OVER SHOES FOR YOUR DRESS SHOE\nAll Price Shoes To Suit Your Pocket Book. Looke Them Over. +284 HILLS "ARCHIMEDEAN,"\nTHE CHAMPION\nLAWN MOWER OF THE WORLD. +285 HIRES\nRootbeer +286 HITECAPS AT THEIR COWARDLY WORK +287 HONEST GOODS, HONEST PRICES\nOur Prices Attract the Trade. +288 HORN, THE TAILOR. +289 HOSTETTER'S\nCELEBRATED\nSTOMACH\nBITTERS +290 HOT WEATHER FOOT-\nWEAR +291 HOUSEHOLD WARE +292 HOW TO DRIVE FOUR HORSES. +293 HOWARD UNIVERSITY, WASHINGTON D. C. +294 Half Gallon Mason Jars +295 Harmony +296 Harness for Work\nHorses\nA New Set.\nT. E. Ditgen, +297 Harold— Will you take my seat, lady?\n-Ally Sloper. +298 Have YOU\nSomething\nTo Sell?\nAdvertise it\nthrough Our\nClassified\nColumns.\nThey Bring Results! +299 Have You Tried Tuxedo in the New\n"TEA-FOIL" PACKAGE?\nFinest Burley Tobacco\nMellow-aged till perfect\n+ a dash of Chocolate +300 He Can Tell Them by the Color of Their Hair +301 He Crumpled Up in a Heap. +302 He opened the door noiselessly. +303 Herald Patterns\nA DAINTY COMBINATION GARMENT +304 Here's Something\nYou Will Like. +305 Holiday Goods\nGALORE! +306 Home Monument Company.\nIreland Indiana +307 I AM NOW A\nMAN! +308 I Almost Fell Forward Into the Room. +309 IF YOU WANT GOOD\nJewelry!\nFOR PRESENTS THAT WILL BE APPRECIATED\nBY ANY ONE, AND KEP FO YEARS,\n:BUY OF:\nF. C. KUEBLER +310 IF YOU WANT THE BEST\nBuy the CHARTER OAK,\nWith the WIRE GAUZE Oven Doors. +311 IN YE OLDEN TIME +312 INTERESTING READING\nA GOOD INVESTMENT\nA Years Subscription to the\nJasper Courier. +313 IT IS BY\nKnowing THE Optical Business\nTHOROUGHLY\nW. L. WHITE, M. D. +314 IT WAS SUNDAY MORNING WHEN WE\nRAILED UP THE DELAWARE. +315 IT'S A MILLSTONE +316 If every one\nlistened to experience,\nhow much dhey'd save\nUnited States Tires\nUnited States Rubber Company +317 In Stilly Watches of Night with Solitary Figure Pacing Bridge\nTHE ANCHOR WATCH, AS SEEN BY ARTIST WILLIAM F. WALKER +318 Intensice Poultry Culture on City Lot. +319 Ironing is hard enough. +320 It Will Take Years to Rebuild European Herds Destroyed by the War. +321 It's Poor Economy to\nEndure a Bad Back +322 It's Your Stomach\nDr. Caldwell's Syrup Pepsin\n(A Laxative) +323 J. A. BLACK\nJEWELER +324 J. D. REED,\nExpressman and Drayman +325 J. E. STEINKAMP.\nJEWELER.\nPIANOS,\nORGANS,\nWatches, Clocks, Jewelery,\nSilverware, Novelties, Etc.\nSEWING MACHINES +326 J. Geoiidge\nHARNESS ATTACHMENT\nPatented\nNOVEMBER 13TH, 1888. +327 J. H. WHITE\nDENTIST.\nOFFICE OVER RED FRONT +328 J. J. HOGAN,\nOYSTER DEALER.\nCLAMS, CRABS and TERRAPIN +329 J. S. STEWART,\nRESIDENT DENTIST, +330 JACOB P. SCHWANK,\nUNDERTAKER and FUNERAL DIRECTOR. +331 JAMES WHITCOMB RILEY HOSPITAL FOR CHILDREN +332 JOHN BUCHARTS\nIS THE PLACE TO BUY CHEAP ALL\nKINDS & STYLES OF DESIRABLE\nFURNITURE +333 JOHN. F. JUDY\nOptician,\nResident Optician. +334 JOHN. M. SMYTH CO.\nMAMMOTH MAIL ORDER HOUSE\n150 to 166 WEST MADISON BY CHICAGO\n$25.00 SAVED TO THE PURCHASER OF THIS\nHigh Grade Top Buggy\nAT OUR SPECIAL OFFER PRICE OD ONLY $34.95 +335 JOHN. M. SMYTH CO.\nThe Best Sewing\nMachine on Earth +336 JOSEPH P. HINES.\nTwin City League Star Who Broke\nHis Ankle Last Sunday +337 JUMBO JEANS PANTS.\nThe Strongest Jeans Panst in the World.\nAlso a full stock of Clothing, Dry Goods, Notions, Boots\nand Shoes at\nECKERT'S NEW STORE, +338 JUST LIKE SANTA CLAUS. +339 Japanese, Dutch and Colonial Sketches\nMerrilees Entertainers to Appear In Novel Musical Program on\nOpening Day of Our Chuatauqua +340 Jasper Roller Mills. +341 July 4th, '95\nOLD MILITARY PARK\nA GRAND PARADE\nGRAND BAND Concert on Picnic Grounds. +342 KEYSTONE POLICE ANSWER BULGLAR ALARM +343 KING OF THE BLOOD. +344 KNIGHTS OF COLUMBUS\nLOUISVILLE\nVS.\nCUMBERLANDS\nNEW ORLEANS\nNational Amateur Baseball Championship +345 KOENIGSBERG, BESIEGED BY THE RUSSIANS +346 Keep Still, You D— Tiger Cat," He\nHissed +347 King Optical Co. +348 L. C. SMITH GUNS +349 LADIES CAN WEAR THEIR MOST DELICATE GOWNS\nWHILE MAKING AND SERVING COCOA CHEER\nTHE INSTANT COCOA\nTHE CHERRY CHEER CO., Inc.\nSIDNEY, OHIO +350 LADYLIKE AND TAILOR\nMADE. +351 LATEST IN EVENING GOWNS +352 LET US FIGURE WITH YOU ON THE PLUMBING\nAND HEATING WORK FOR THAT NEW BUILDING,\nWE ARE EXPERIENCED IN THIS WORK AND WILL\nGLADLY ADVISE WITH YOU. WHEN WE DO YOUR\nPLUMBING AND FITTING WE GIVE YOU THE BEST\nMATERIALS AND THE BEST WORK AND YOU WON'T\nHAVE TO BE EVERLASTING REPAIRING OUR WORK.\nBeaver Hardware & Furniture Company\nBEAVER, OKLAHOMA +353 LEVIATHAN RETURNS WITH VETERANS. +354 LEWIS ROBINSON,\nTin, Copper & Sheet\nIron Worker\nAIR-PIPE for MINES.\nCooking Stoves\nand Tinware. +355 LIBERTY ENRICHING THE WORLD. +356 LIKE COOL FROCKS\nCHIC COAT FOR TRAVEL WEAR +357 LION COFFE\nA LUXURY WITHIN THE REACH OF ALL +358 LION COFFE\nA LUXURY WITHIN THE REACH OF ALL!\nAll Alike!\nLION COFFE\nIT NEVER VARIES\nLION COFFE +359 LIVE STOCK PARADES AT THE INDIANA STATE FAIR. +360 LOADED SHELLS\nPowder, Shot and Ammunition\nOF ALL KINDS\nTALBOT & HUBBARD's\nGUNS TO RENT. +361 LONGBOAT WINS MARATHON RACE\nGreat Long Distance Runners and Methods\nAdopted While Training for Marathon Race +362 LOOK AT CHILD’S\nTONGUE IF SICK,\nCROSS, FEVERISH +363 LOREY & STURM\nAgent for Milwaukee Binders, Mowers and Hay Rakes +364 Last Photograph Taken of Lieutenant\nO'Brian Before His Capture. With\nHim Is His Chum, Lieutenant Raney. +365 Latest Candling Devices +366 Laurels\nAgain!\nI. W. HARPER\nKENTUCKY\nWHISKEY +367 Lightning Rods Seen Everywhere in Washington +368 Look at the Eagle. +369 Louisville, Evans-\nville & St. Louis\nConsolidated R. R.\n"THE AIR LINE."\n53 Miles the Shortest 53\nBetween Louisville & St. Louis. +370 MACBETH, 1908\nWeird Sister— Alsorandolphhearst +371 MAGNIFICENT DISPLAY OF SPRING GOODS\nE. S. BURGAN & SON\nThe Leaders\nPULLMAN, WASHINGTON +372 MEAT TASTES\nBETTER COOKED\nAnd tobacco now tastes much\nbetter toasted.\nYou'll know this when you\nsmoke the famous Lucky Strike\ncigarette, the real Burley cigarette. +373 MEN'S AND BOY'S SUITS +374 MILK AND CHEESE COW. +375 MITCHELL'S\nEYE SALVE +376 MONARCH AND DEFIANCE BICYCLES +377 MONUMENTS\nMarkers and Mausoleums.\nNew Muldoon Monument Co. +378 Make It Easy for Your Wife.\nTHE\nHOOSIER KITCHEN CABINET +379 McKENZIE SCOTT,\nFUNERAL DIRECTOR +380 Men's Suits\n$9.50\n$6.90\nE. S. BURGAN & SON\nTHE LEADERS +381 Merchant Gets Protection +382 Mootherhood +383 Mrs. Leiah L. Klein, Cimmarren, Kan.,\nand the Lucrative Rooster. +384 Mull's Grape Tonic\nA positive cure for\nCONSTIPATION\nSTOMACH AND BOWEL TROUBLE +385 Mutual Profit +386 My name is Nero, and I drum for\nthe\nPalace Hotel. +387 N. HARRIS & SON,\nDealer in all\nkinds of\nFURNITURE +388 NATIONAL\nBUGGY COMPANY +389 NATIONAL BANK OF COMMERCE\nCapital and Surplus— $1,700,00\nThree Per Cent, Interest Paid\nOn Time Deposits +390 NEW CANAAN POLLED COW. +391 NEW GOWN FOR DEBUTANTE +392 NEW HARDWARE!!\nAND\nNEW TIN SHOP! +393 NEW HARDWARE!!\nNEW TIN SHOP! +394 NEW HOME\nSEWING MACHINE +395 NEW STOCK AT\nJOSEPH TROXLER'S\nSADDLES, BRIDLES, HALTERS,\nWAGON AND BUGGY HARNESS.\nBuggy Trimming\nHAMES, TRACECHAINS, WAGON,\nAND BUGGY WHIPS, HORSE\nAND MULE COLLARS. +396 NEW TYPEWRITERS\nTHE\nINTERNATIONAL\nNos. 1 and 2. +397 NO SMOKE, NO ODOR\nSOLITE OIL +398 NOT IN A SETTING MOOD. +399 Napkin Case. +400 Neuralgia\nSLOAN'S\nLINIMENT +401 New Lewis Toque in "Swallow" Blue\nVelvet With Two Conventional\nWhite Birds. +402 New Orleans Beauty Wore the Smuggled Aigrets +403 Not a Very Wide Swath. +404 Not enough rain will fail to properly\nwater one perspiring citizen. +405 OKLAHOMA NEWS. +406 OKLAHOMA NEWS.\nEvents of Interest Culled From\nTeritorial Newspapers. +407 OLD GLORY!\nThe Day\nWe Celebrate.\nLife, Liberty\nAND THE\nPursuit of Happiness\nAdorn Life,\nFoster Liberty\nAND\nPursue Happiness +408 ORE BUYERS,\nW. J. CHAMBERLAIN & CO.,\nDENVER, COLO.\nHighest market prices paid for all\nclasses of ore. +409 ORGANS\nPIANOS +410 OUR GREAT NANCY HANKS BRONZE CLOCK. +411 OUR PERFECT VISION GLASSES +412 OUR TALLEST MAN +413 Old Cutter. +414 On the Glorious\nFourth\nBy MAUD WALKER +415 One Distinguishing\nFeature of the\nRemington\nTypewriter\nis that it LASTS +416 One Way to Conduct a Political Campaign +417 Our Car-Load of Top Buggies, Spring Wagons and Carts +418 Our Gent's Phaeton, \nROOMY.\nLIGHT.\nELEGANT.\nD. M. Sechler Carriage Co., Moline, III. +419 Our Latest and Greatest Premium Offer !\nTHE MAMMOTH CYCLOPAEDIA\nIN FOUR VOLUMES +420 Our Paper\nand\nWoman's World\nBoth for One Year +421 Our Patter Department\nSIMPLE AFTERNOON GOWN. +422 Our Pattern Department\nA DAINTY PINK AND WHITE\nLAWN. +423 Our Pattern Department\nBOY'S NORFOLK SUIT. +424 Our Pattern Department\nSTYLISH COSTUME OF MOHAIR. +425 OwensborO\nBuddY CompanY +426 PARIS FASHION HINTS. +427 PARKER'S\nHAIR BALSAM +428 PATRONIZE HOME INDUSTRY\nBY GETTING A TIN TO-DAY OF\nCHEMO\nBUGS AND ROACH KILLER\nLouisville Chemical Co. +429 PERFECT FITTING\nSPECTACLES AND EYE GLASSES\nOculists' Prescriptions.\nSOUTHERN OPTICAL COMPANY\nINCORPORATED\nFourth and Chestnut. +430 PICTURE OF HIBERNIAN ST. PATRICK'S DAY DELEBRATION AT ST. LOUIS BERTRAND'S CHURCH AFTER THE GREAT PARADE. +431 PIONEER REGISTERED HEREFORDS\nOf\nBEAVER COUNTY +432 PITY THE BLIND!\nSmithy Doesn't Know Where He is Going But He Is on His\nWay. +433 PLAYTIME HAS COME!\nPREPARE the children now to enjoy\nevery minute of the summer vacation.\nCome to our children's store and get\nthe proper footwear.\nSANDALS, TENNIS AND PLAY SHOES $1.00 To $3.00\nBoston Shoe Co. +434 PLOWS THAT PLOW\nNew Methods Make New\nProfits For the Up to\nDate Farmer. Be One.\nCarter Tracy Hardware Company +435 PORTABLE MILLS\nFor Corn Meal\nSTRAUR & CO.,\nP. O. Box 1430, Cincinnati. +436 PORTABLE SELF-FEEDER. +437 POSSIBILITIES OF\nST LOUIS\nBALLON RACE +438 POSTURE TO BE AVOIDED. +439 PRESIDENT ROOSEVELT. +440 PRINCESS JULIANA +441 PROFESSOR MONTRAVILLE WOOD DEMONSTRATING A MONORAIL CAR. +442 PULLMAN\nHardware\nStore\nHARDWARE +443 PURE\nARM AND HAMMER SODA\nin packages. +444 PURE WATER AT EVERY DRINK +445 Partners. +446 Pitiful Story Touched Kindly Heart of Judge +447 Plan of A-Shaped Hag House; Closed Front on Left-Provision for Ventila-\ntion Shown in Small Diagram. +448 Pool and His Cabbage Tree. +449 Poultry Gate Within a Gate. +450 Present Your Wife\nWith a New Range! +451 Pretty Home Gifts +452 QUICK MEAL\nGAS RANGE +453 QUICK MEAL\nGAS RANGE\nGEHER & SON +454 QUICK! YOUR HAIR\nNEEDS "DANDERINE"\nCheck ugly dandruff! Stop hair\ncoming out and double\nits beauty +455 R. BEOK\nREADY MADE\nBOOTS\nAND\nSHOES. +456 RAIN CAN'T TOUCH\nthe man who wears\nSAWYER'S\nEXCELSIOR\nBRAND\nSuits and\nSlickers +457 RAISING TURKEYS ON MASSACHUSETTS FARM. +458 RANCHERS ROUNDING UP BANDITS. +459 RANCHES\nCITY PROPERTY\nPhoenix Real Estate Co. +460 RATS and MICE\nMUST\nBE\nKILLED\nSTEARN'S\nELECTRIC PASTE +461 RHEUMATIC\nSUFFERERS\nGIVEN QUICK RELIEF +462 ROYAL\nBAKING\nPOWDER\nAbsolutely Pure. +463 Real Overalls for Real Boys\nKEY OVERALLS +464 Relly, Barger & Ferrebach.\nCarpenters\nAND\nCABINET MAKERS +465 Remarkable Ornament on an Old Trophy Cannon +466 Remington\nTypewriter +467 Republican Ticket.\nElections, Nov. 6. +468 SACRAFICE AND SERVICE. +469 SAVE 1/3\nON FUEL\nwith this Pipeless Furnace\nMUELLER\nPIPELESS\nFURNACE +470 SCALE 4Ft TO 1 INCH +471 SCHOOL DAYS +472 SCRATCHED 3 YEARS +473 SECRET ORDERS +474 SECRET ORDERS. +475 SELZ' SHOES\nARE WARRANTED\nF. C. TRACY. +476 SEND THAT NEXT PRINTING ORDER TO THE\nJOB-PRINTING-DEPT\nTHAT WILL GIVE YOU HIGHEST QUALITY\nLOWEST PRICES & SUPERIOR SERVICE +477 SHE ANSWERED "YES." +478 SHELF and HEAVY HARDWARE +479 SHUNOOPAVI, WHERE THE INDIANS BARRICADED THEMSELVES. +480 SIMEON MEETS DR. MAYBURY. +481 SKIN HEALTH\nPromoted by Exercise\nand Cuticura Soap +482 SMALL BARN FOR DAIRY. +483 SOME OF THE PACIFIC ISLANDS WHOSE EXISTENCE IS DOUBTED ARE MARKED. +484 SOUTHERN RY.\nTIME TABLE +485 SPRING SUITS.\nSpring Shoes.\nSpring Hats.\nA Full line of Spring Apparel open for inspection. Call and take a look.\nS. KUEBLER, JASPER, IND. +486 STAR\nSTABLE +487 STEAMBOATS.\nThe COAST LINE to MACKINAC\nTAKE THE\nTO CLEVELAND MACKINAC +488 STEVENS\nThe Barrels\nand Lugs of\nSTEVENS\nJ. STEVENS ARMS\n& TOOL COMPANY +489 STEVENS RIFLES AND PISTOLS +490 STEWART DRY GOODS CO\nThe New Fall Clothing\nBoy's New Clothing Ready +491 STEWART DRY GOODS CO\nWe Specialize In\nMEN'S NECKWEAR\nat 55c +492 STEWART DRY GOODS CO\nYOU SAVE AT LEAST 20% IN THIS\nSALE OF FURS\nThe Most Remarkable Fur Event Ever\nHeld in Louisville. +493 STIER'S SMOKERS\n"BREVA"\nTHE SMOKE OF THE HOUR. +494 STOP IT! HE'LL BURST. +495 STRAUSS BROS.\nAMERICA'S LEADING TAILORS +496 STREET GOWN OF BLUE CREPE +497 STRIPED COTTON DRESS. +498 STYLISH BLACK SATIN WRAP +499 SUGGESTIONS REGARDING SILO CONSTRUCTION +500 SUIT FOR MISSES. +501 Sanitaire\nNO BACTERIA IN THIS BED\nSanitaire\nLOREY BROS.\nFURNITURE STORE. +502 Satisfaction In Eyeglasses +503 Save Work-Worry Money.\nBY USING A STOVER GASOLINE\nENGINE.\nMADE RIGHT.\nSOLD RIGHT. +504 Save your Cremo 5 Cent Cigar Bands for Presents\nCremo Cigar BANDS and Old Virginia Cheroot WRAPPERS may be asserted\nCremo Cigar Bands and Old Virginia Cheroot Wrappers +505 School Furniture AND Supplies\nTHOMAS KANE & CO., Racine, Wis. +506 Second Floor Plan +507 Senator Harry S.\nNew\nfor you! +508 Setting Out in Life!\nM. BORN & CO.\nThe Great Chicago Mechant Tailors, +509 Sewing Machine FREE +510 She Collided With a Man. +511 She Was Silent for a Moment. +512 Short Coat for Winter Wear. +513 Sick Headache\nDr. Caldwell's Syrup Pepsin\n(A LAXATIVE) +514 Smart\nMillinery\nAt Popular\nPrices +515 Special Announcement\nMandolin and Guitar Teachers\nand Students\nWe announce to musicians interested\nin high grade instruments, that we\nhave just received a large shipment of\nMARTIN\nGuitars and Mandolins\nThese celebrated instruments have\nnever before been sold at prices less\nthan from $30 to $150. We have some\nspecial styles which we place on sale at\n$17.50, $20.00, $25.00 to $150\nWe invite you to inspect these master-\npieces of the instrument maker’s craft.\nSmall goods department. First floor.\nGeo. J. Bickel Co. +516 Spinning a Top. +517 Spitting Blood +518 Spring Chair for Workers on Sewing\nMachines. +519 Stop That Backache!\nAn Indiana Case\nDOAN's KIDNEY PILLS +520 Street Scene in St. Pierre before Eruption of Mt. Pelee. +521 Such\ntobacco\nenjoyment\nPRINCE ALBERT +522 Summer's\nBarber Shop\nShave 5 cents.\nHair cut 15 cts. +523 Summer-time\nIs Coming, and you will need\na\nWhite Frost\nSanitary\nRefrigerator. +524 TAKING CARE OF THE "ANTIS" +525 THE\nBUCKSKIN\nBREECHES\nJEAN PANTS +526 THE\nKEYSTONE\nHOTEL\n3022 State St.\nCHICAGO,\nILL. +527 THE\nKITCHEN\nCABINET +528 THE "PRINCESS"\nSEWING MACHINE +529 THE AERMOTOR WINDMILL +530 THE ARIZONA REPUBLICAN\nPREMIUM!\nREPRINT OF\nWebster's Unabridged Dictionary\nCONTAINS OVER\n1,500 PAGES\nTHIS GREAT EDUCATOR\nAND\nSTANDARD WORK +531 THE BEE.\nWASHINGTON +532 THE FARMER MUST HAVE GOOD TOOLS\nIf he\nwould\nraise\nGOOD CROPS.\nWe furnish the\nTools from our\nComplete Stock.\nYOU\nDO\nTHE\nREST.\nYOURS FOR GOOD CROPS,\nMcCann & Outman +533 THE GLOBE CITY UNION,\nWill give a Complimentary Dance at the\nPascoe House +534 THE HOME OF REGISTERED HEREFORD CATTLE\nEyerdale Stock Farm +535 THE Kingsbury HAND MADE Hat\nFor sale by E. S. Burgan & Son +536 THE LIFE OF BEECHER.\nAGENTS\nWANTED. +537 THE MEMORIAL BUILDING. +538 THE PROTECTION UMBRELLA. +539 THE REMODELED TRACY HOUSE. +540 THE SPANISH TURBAN. +541 THE STANDARD OF MERIT. "OK" Shoes FOR MISSES AND CHILDREN.\nHighest Quality at Popular Prices.\nDITTMANN SHOE CO., +542 THE UNWELCOME IMMIGRANT\nHe is at Our Door Seeking Admittance. +543 THE WAY SHE LOOKS +544 THERE'S SAFETY\nFOR THE\nSHIPWRECKED\nIN HEALTH +545 THEY PLUNG HIM INTO THE RIVER. +546 THEY SAY\nThieves are cheeky. +547 THIS\nSPACE\nIS\nRESERVED\nFOR AN ADD OF THE\nCHURCHILL*\n*ADDITION\nTO THE CITY OF\nPHOENIX +548 THIS IS OUR\nSIDE +549 THIS PAPER\nNEW YORK\nCHEAP\nJOB PRINTIN +550 THOUSANDS HAVE KIDNEY\nTROUBLE AND DON'T KNOW IT +551 THREE-YEAR-OLD SWIMMER GETS CUP FOR HIS PROWESS. +552 TIRED BACKS. +553 TOURIST AUTOMOBILES\nEventually\nWhy Not Now?\nAuto Vehicle Company +554 TOWN PESTS. +555 TRY THE\n"NEW HOME" SEWING MACHINE. +556 TWO MORE TWIN CITY LEAGUE FAVORITES. +557 Thanksgiving +558 That Spring Suit of Yours\nShould be Tailor Made at\nN. Melchoir & Son\nJasper, Indiana. +559 The\nBoy Puzzle\nBy DR. J. S. KIRTLEY +560 The\nLatest\nand\nBest\nIn\nSewing\nMachines\nCabinet Writing\nDesk Type\nElectrically Driven +561 The\nMCDONALD-CROWLEY-FARMER\nLive Stock\nCommission Company +562 The\nMcDonald-Crowley-Farmer\nLive Stock\nComission Company. +563 The 5th STREET Store\nBOOSTER SALE CHILDREN'S DRESSES\nFinest Stock in Los Angeles — A Toy with Every 50c Purchase +564 The Assassination\nof President Lincoln. +565 The BEE. +566 The Best Roast\nTHE FAMILY EVER HAD. +567 The Best Vehicles\nOn Earth Today\nA. B. BAKER & CO. +568 The Best WASHER\nAGENTS WANTED +569 The Bird of Wisdora\nSAYS\nF. C. KUBBLER\nHAS THE BEST\nCLOCKS,\nJewelry\nAND\nMUSICAL\nInstruments\nIN\nDubois County, Ind. +570 The CONGRESS ARCTIC.\nThe BEST winter OVERSHOE!\nNO BUCKLES to break!\nNO TROUBLE to put on!\nNeat, Genteel, Stylish!\nASK YOUR SHOE DEALER FOR IT! +571 The Carrol Glees Scheduled For Our\nChautauqua Program +572 The Christ of the Andes +573 The Comfort Corset\nNO BONES TO BREAK. +574 The DAIRY\nUDDER DEVELOPMENT OF COW +575 The Enchantment of Blouses +576 The Frances Willard Hospital, Chicago, III. +577 The Gas-Lit City of Tents!\nWill be pitched in Jasper, Ind., on\nTUESDAY, September 24th, 1872. +578 The Home of Patoka Lily +579 The Human Electrical Forces!\nHow They Control the Organs\nof the Body. +580 The Kind You Like to Drink.\nValuable Coupons in Every Can\nThe Alton Mercantile Company\nENID, OKLAHOMA\nWrite for Free Catalog +581 The MILL that GRINDS +582 The Most\nStylish Woman\nF. C. KUEBLER. +583 The SECRET of\nthe SUBMARINE\nby E. Alexander Powell +584 The SHORTEST,\nQUICKEST Route\nTo NEBRASKA\nMISSOURI +585 The Strawberry Leaf Roller\nStrawberry Leaves Showing Their Appearance After Being Folded by the\nRoller. (After Weed.) +586 The WORLD'S BEST BOW +587 The eye ought not to be drugged\nexcept under the special\ncare of a physician.\nMitchell's Eye Salve\nmakes the\nuse of pungent drugs unnec-\nessary and saves you from all\nthe inconvenience and danger\nof that painful treatment. +588 These Two Helpful Books for\nFarmers Will be Sent You Free +589 These are the\nShoes for Me\nN. Melchoir & Son.\nEast side Public Square +590 They Threw Boiled Potatoes and Scrambled Eggs at Ps. +591 They used to call a man a "sport"\nwhen he bought an automobile\nUnited States Tires +592 This Monument in the National Cemetery in Arlington, Va., Was Erected\nto the Unknown Dead of the Civil War. +593 Thousands Have Kidney Trouble\nand Don't Know it.\nHow to Find Out. +594 Tinware\nCarter Tracy Hardware Company +595 Torturing Twinges\nA Kansas Case\nDOAN'S KIDNEY PILLS +596 Tourtured by the Cruel Savages. +597 Town Property for Sale. +598 Try Electric Washing\nWithout Spending One Cent\nLouisville Gas\n& Electric Co. +599 Turkish Baths at Home Cost 2c Each. +600 Two of a Kind. +601 Typical Cotswold Village Street. +602 UNDERTAKER and FUNERAL DIRECTOR. +603 UNION LOCK POULTRY FENCE.\nFor Poultry, Rabbits, Orchards, Gardens, etc. +604 UNITED STATES INFANTRY IN MEXICO. +605 UP TO DATE TYPE OF CO-OPERATIVE CREAMERY. +606 Used\nMexican\nMustang\nLiniment\nand cured his mule of Scratches\nin three weeks.\nUses it in his family.\nConsiders Mexican Mustang\nLiniment best in market. +607 VALENTINE MERCKER\nBOOT AND SHOE MAKER, +608 VANDERBILT\nUNIVERSITY\nSEVEN DEPARTMENTS! +609 VANDERBILT UNIVERSITY. +610 VIEW OF WONDERFUL VICTORY WAY ON OPENING DAY. +611 VOT CHANCE HAVE I GOT NOW! +612 W. ERNY,\nJASPER, INDIANA\nCONTINENTAL WOOD COOK,\nTHE ONLY STOVE MADE WITH\nSLIDING OVEN DOORS.\nCOOKING AND HEATING STOVES ! +613 W. L. DOUGLAS\n"THE SHOE THAT HOLDS ITS SHAPE"\n$3.00 $3.50 $4.00 $4.50 & $5.00 FOR MEN AND WOMEN\nSave Money by Wearing W. L. Douglas\nshoes. For sale by over 9000 shoe dealers.\nThe Best Known Shoes in the World. +614 W. L. Douglas\n$3.50 & $3.00 SHOES FOR MEN +615 WANTED RAW FUR SKINS +616 WE HEARTLY RECCOMEND\nToday’s\nMagazine for Women\nBecause Today’s will afford\nyou recreation, inspiration,\nuplift, pleasure and good\ncheer, besides much helpful\nand important information on many most vital, timely\nand interesting subjects. Today’s is simply wonderful. +617 WE'LL FIX THAT FAN FOR YOU\nAND DO THE WORK QUICKLY AND RIGHT\nCHILDERS ELECTRIC CO. +618 WEAKNESS OF MEN\nQUICKLY, THOROUGHLY, FOREVER CURED\nERIE MEDICAL CO., BUFFALO, N. Y. +619 WELL-CARED-FOR TREE +620 WHAT MAKES ME SMILE!\nDRUGS.\nDRY GOODS AND FURNISHINGS, +621 WHAT! NOT GOING? +622 WHITE\nMOUNTAIN\nHARDWOOD\nREFRIGERATORS.\n"The Kind with\nChill in it." +623 WINCHESTER\nREPEATING SHOTGUNS\nA FAVORITE OF AMERICAN SPORTSMEN\nSold Everywhere. +624 WINCHESTER\nRifles For All Kinds of Hunting. +625 WORLD AWAITS OUTCOME OF SPEEDWAY RACE +626 Waverly Bicycles\nAre the\nHighest\nof all\nHigh\nGrades\nWarranted Superior to any Bicycle built in the World,\nRegardless of Price\nIllustrated Catalogue Fre,, +627 We Make Clothes\nfor Over 300,000\nCustomers\nSelect\nWhat\nYou\nWant\nFrom\nActual\nFabrice +628 Well "Armed"!\nCALUMET\nBAKING POWDER\nHIGHEST QUALITY AWARDS +629 What He Had Drawn From the Shelf\nWas the Morocco Case That Held\nthe Rusted Dueling-Pistol! +630 What is Castoria.\nLetters from Prominent Physicians\naddressed to Chas. H. Fletcher.\nGENUINE CASTORIA ALWAYS\nBears the Signature of\nChas. H. Fletcher.\nThe Kind You Have Always Bought\nIn Use For Over 30 Years. +631 When You Write Letters +632 When in town call and see the Eagle Kaffir\nCorn Header, Price $45.00\nSPECIAL CASH PRICE OF $45.00\nCarter Tracy Hardware Co.\nBEAVER, OKLA. +633 Where the Quick Meal Comes In +634 Whittemore's\nShoe Polishes +635 Who\nopened that\nbottle of\nHIRES\nRootbeer? +636 Why Swift & Company Handle\nPoultry, Eggs, Butter and Cheese +637 Winchester\nRepeaters\nDO NOT BUY ANYTHING IN THE LINE OF\nArms or Ammunition +638 Wire Your Home Now\nPut Men To Work\nLouisville Gas & Electric Co. +639 X-Mas\nWill Soon be\nHere, and you\nwill find\nSanta Claus\nat\nHABERLY's\nIn Gala Attire. +640 YOU CAN SEE IT, +641 YOU DON'T HAVE TO BE A SOLDIER TO\nBE A PATRIOT +642 YOUR FUTURE\nIS IN YOUR OWN HAND. +643 YOUR LOCAL STORE KNOWS YOUR WANTS. +644 Yekutoi Had Revived, but Was Playing Dead. +645 You Will Find\nOur Home Economy Department\nA Very Pleasant Place to Cal. +646 Your next week's washing\nwill look whiter, will be cleaner and will\nbe done with less labor if\nClairette Soap\nis used. The clothes will smell sweeter and\nwill last longer. CLAIRETTE SOAP is\npure, it cleans but does not injure the\nfabric. It does not roughen or sharp the\nhands.\nMillions use it. Do You! diff --git a/dev-0/expected.tsv b/dev-0/expected.tsv new file mode 100644 index 0000000..0968180 --- /dev/null +++ b/dev-0/expected.tsv @@ -0,0 +1,646 @@ +227 +588 +607 +539 +432 +524 +609 +437 +146 +150 +103 +210 +392 +166 +391 +117 +629 +535 +517 +448 +462 +190 +165 +219 +259 +298 +147 +82 +454 +159 +225 +532 +544 +504 +345 +563 +19 +497 +30 +479 +470 +407 +318 +272 +206 +593 +114 +412 +297 +418 +478 +131 +349 +558 +90 +364 +344 +315 +513 +461 +92 +632 +486 +295 +521 +200 +481 +173 +484 +427 +601 +201 +61 +245 +404 +222 +439 +228 +138 +495 +105 +291 +605 +538 +57 +465 +64 +424 +460 +645 +430 +366 +562 +399 +116 +321 +143 +270 +76 +508 +303 +42 +45 +502 +85 +505 +181 +595 +571 +317 +471 +336 +631 +196 +332 +216 +233 +586 +5 +370 +142 +136 +286 +559 +99 +239 +276 +602 +599 +313 +620 +40 +384 +355 +509 +269 +217 +604 +176 +434 +564 +148 +199 +421 +488 +149 +377 +472 +179 +282 +244 +400 +54 +177 +257 +156 +77 +194 +381 +4 +340 +429 +262 +464 +80 +327 +389 +375 +394 +108 +575 +343 +419 +218 +10 +172 +8 +483 +445 +379 +25 +433 +129 +490 +371 +572 +195 +390 +21 +561 +492 +618 +449 +613 +209 +528 +310 +202 +320 +367 +187 +252 +306 +158 +223 +328 +255 +523 +630 +455 +37 +606 +498 +96 +27 +642 +188 +385 +52 +468 +258 +467 +637 +621 +81 +452 +422 +283 +326 +215 +48 +570 +122 +420 +496 +640 +247 +67 +128 +132 +638 +359 +18 +95 +50 +576 +91 +33 +622 +633 +589 +267 +440 +98 +71 +309 +302 +72 +161 +537 +314 +162 +312 +520 +31 +107 +491 +435 +365 +555 +611 +41 +541 +322 +425 +58 +125 +68 +442 +115 +616 +13 +126 +268 +500 +113 +292 +141 +7 +97 +168 +170 +612 +325 +249 +577 +211 +480 +169 +590 +487 +395 +163 +182 +154 +208 +542 +644 +135 +254 +111 +534 +55 +353 +74 +415 +348 +265 +221 +69 +516 +294 +522 +263 +75 +530 +213 +405 +598 +78 +145 +62 +552 +503 +341 +585 +578 +178 +554 +474 +157 +266 +334 +273 +565 +354 +363 +101 +43 +133 +548 +123 +49 +167 +473 +290 +628 +547 +431 +351 +515 +11 +411 +127 +543 +175 +596 +119 +342 +627 +60 +311 +118 +66 +232 +151 +220 +634 +625 +212 +93 +333 +493 +423 +396 +380 +73 +551 +250 +207 +285 +401 +362 +456 +641 +204 +192 +533 +323 +16 +409 +441 +386 +241 +512 +229 +499 +260 +388 +519 +376 +3 +65 +274 +457 +36 +514 +22 +70 +32 +447 +560 +305 +264 +378 +556 +155 +17 +403 +246 +436 +59 +413 +546 +444 +106 +529 +6 +402 +29 +597 +406 +553 +476 +15 +275 +557 +494 +197 +450 +86 +296 +583 +224 +243 +46 +235 +231 +300 +414 +278 +205 +63 +361 +23 +24 +14 +426 +623 +574 +350 +39 +226 +137 +458 +360 +459 +12 +568 +9 +614 +372 +368 +112 +94 +526 +251 +280 +203 +428 +506 +501 +237 +319 +643 +1 +186 +2 +253 +511 +240 +56 +536 +337 +47 +110 +242 +591 +238 +130 +466 +289 +581 +393 +527 +120 +316 +279 +51 +214 +109 +610 +352 +144 +567 +330 +102 +453 +331 +121 +193 +307 +594 +324 +566 +304 +28 +338 +329 +635 +549 +140 +357 +408 +84 +230 +160 +443 +184 +299 +35 +281 +382 +34 +608 +347 +592 +518 +183 +438 +510 +619 +185 +587 +582 +416 +87 +83 +615 +482 +446 +356 +284 +88 +271 +171 +617 +261 +600 +646 +475 +174 +38 +603 +20 +507 +358 +100 +550 +639 +277 +398 +624 +383 +301 +339 +525 +489 +463 +79 +89 +369 +53 +410 +469 +26 +234 +134 +373 +44 +579 +573 +287 +626 +531 +584 +189 +451 +545 +387 +293 +288 +152 +397 +417 +139 +153 +180 +580 +636 +191 +485 +569 +477 +374 +198 +335 +104 +346 +236 +308 +540 +248 +124 +256 +164 diff --git a/dev-0/in.tsv b/dev-0/in.tsv new file mode 100644 index 0000000..204db77 --- /dev/null +++ b/dev-0/in.tsv @@ -0,0 +1,646 @@ +6fe401956f96bad77a7358d3bf49a367.png 1894-07-13 +1022a7da7232d7f8f4e54e9ef063e53e.png 1921-08-19 +6f5b73adfc5265748f5ad3d77ec69022.png 1869-06-11 +7e3b2447ecbc916dbb0d848bdde97158.png 1891-12-31 +9578bab562ff5786d0a9dd35fb16d644.png 1919-12-27 +0d94d337ab9df45a0f339167cbdc9ec7.png 1916-06-16 +bc4c1bee194f71911870ed6e651688c9.png 1890-10-18 +d116dca6fc881897706f3f51384acf01.png 1907-07-25 +fd7cb90bb672bc07d0614fb20975e82e.png 1918-08-15 +1ced040ab268e7681ed0dd065a29263d.png 1916-05-18 +93188482bc1d28d864738af9289e6387.png 1908-10-22 +dd99862472dab17c4b830cff784206a0.png 1905-12-23 +1bdebb74e66718bbd58318d18b8759af.png 1867-05-11 +f154a49393083bf18422cacc8f0c5561.png 1892-02-09 +b441bdec568cd9a26be69423a0658e64.png 1921-04-15 +5e6bd74bc656db701fe472263cb0c1b5.png 1916-07-01 +2fbcb6eb8b17bab9b1eb1257bc91264e.png 1914-06-11 +f03301c77e8c69b694819f81600e7f30.png 1904-02-13 +e52ea277993eefe388aa34e42763c0d6.png 1901-08-24 +a44906aaee63ea1a2f1e96cb889798a3.png 1911-06-09 +7211f6cc25d8cf9035a6df6a8d042720.png 1897-02-19 +786e5d54cc914a57edde4ad3bb66ccc7.png 1895-02-14 +28a718c36c39f0fe7b1f2f507ec4d341.png 1911-02-03 +3f7d9a6242593e84abb58882d4d777b9.png 1892-02-26 +7655ce76bdbbb590e4885a192cfc7d64.png 1898-02-18 +d0a38ffabfa7baf7d6ccb78ff098fa82.png 1919-09-19 +e24b468c23c7005af2837f7947331db0.png 1920-02-20 +054985831cf35367d827288cf2223fe3.png 1894-05-25 +b805a5cc3ef30acfb02cafd34ed1015c.png 1919-10-10 +f10462680bbaf6f9af596643c2baeebf.png 1916-07-15 +0b1c32c5e3e1d56ad2a1f1c29da7f961.png 1895-03-08 +2a10ee3df4d4a21df24849dcb28ea2a8.png 1902-04-12 +8d04d8ceee7eae7142acf4ebfc2949b0.png 1900-08-18 +af3de5b4087a5f14a30004a8f24751d2.png 1902-07-10 +b6769cfafc5a6e75786be581fbfee42a.png 1914-09-25 +2e23b5323d960b20daa645d5634c4500.png 1908-06-13 +e85d9bbcc5c96abbcd9eedfbf1dca25a.png 1917-09-07 +3bac76715217e765b846a96033f9f1df.png 1912-09-13 +30118d676eef2116bc6bcbaf748a1c40.png 1908-02-28 +83dd27f4ee71762df1b424e3b0ac8d4d.png 1901-12-06 +4a59a2605549e0b0b2e3deec76516e38.png 1891-12-09 +fbdc7ab9bfc751945c9a9e380f76a4cd.png 1894-07-13 +7ed7dde9138274a849b3af64ec00dae6.png 1918-12-20 +240c929693a85e58b4e9eb352ccae88f.png 1917-08-24 +3ba88b24f03c24fe5d3fb02b81c13b12.png 1894-03-16 +25b30e8f3c689c15a7550f91aa86e508.png 1906-05-18 +5bdc13ff47329c7ebae4a0112fc04be3.png 1892-12-09 +5f7f8df4e993717b885b577aa561d5cd.png 1922-06-30 +11edb7bf2db4dbb4379116646740f123.png 1911-03-10 +6ae6f662f8df6681d1310cfdc2961f6a.png 1892-09-09 +cf47aacedf4b81592da98d3f1d3b7839.png 1891-02-17 +f964967c93f8f97cd523ee6ea65f074b.png 1921-12-10 +2dad907782db4f4fc46c9e612005c2ad.png 1914-03-27 +1b44056894110f969fdee697fc60dc59.png 1917-03-02 +dbe64fb928a1a6937b96f893f8e269b4.png 1907-07-19 +478c19d548d78425b1baadb4c5752bbf.png 1918-09-26 +d7b80cb7d69bb9178531efb17e7e2096.png 1917-09-22 +656106e0d509bdeb4e487bdd1aa95431.png 1894-03-16 +3d786c616aa9ff6a37a1b33e4d1ec73e.png 1903-07-24 +e4ee184b1ab0aa618e77d7e618f6a4c2.png 1915-04-02 +57cfa690adf053eaef31a8ff05c01894.png 1896-06-06 +bb365b8dee12a07509b8573e81f03a65.png 1907-10-31 +1e430f414686ac5a71fe616f77fd737d.png 1902-10-18 +ed040cfa673ea5e7a83c9410c1238a74.png 1918-07-11 +b7a6cedb6c2eb5b61e75b84212d0d8cf.png 1916-11-09 +b6497d238bc7853052cdb0262ae75c52.png 1917-09-27 +c16306816ef5ac7570393def43b75ecb.png 1908-09-04 +86bf7039a5d3a8f493db279073abeb82.png 1901-07-25 +9bbbb57d9a3d657b2d6db9dd3eb387f9.png 1917-12-21 +e20618573cbf80187090f99a034dde25.png 1920-05-07 +e5de86ef6bb326c1736aa0caf1a8fd13.png 1913-09-12 +50fe6508a2efd382452f9af51923bb23.png 1919-03-06 +40ec243a43e33dabed9dbc04fdf975cb.png 1891-10-17 +5a47546c099b015005e96ddda1a2e763.png 1918-10-11 +3722d2da591a1e8a9d2caf6378b0baae.png 1920-08-27 +e10e9ca4e0cf4db8b59328181fd6d482.png 1898-08-05 +244b30814fbb531cedca1b8674f0a0ba.png 1903-05-30 +41522e3a1c9ed513913f9f3459a6e943.png 1896-01-17 +f83f0931deb02584eb218c5f22653ee9.png 1899-09-15 +e84f78c7e558205c25c165d448f279f3.png 1896-08-20 +d262a9283347c545fdcf6a1bec50ee2a.png 1911-07-21 +83925f9f90491ee273567ea4050ac2dc.png 1917-11-29 +12cef7e2041df852eaa564c0d7877c1c.png 1912-06-07 +e3369d157f7722e1e4750ca9f0a0a2b7.png 1897-05-15 +72dc2481e6438b4f1c3307eb5ec633cd.png 1915-11-11 +e921f8554bfdb5329103e33cfa35a954.png 1913-10-10 +c354707f889e057aff0bf02a84201107.png 1893-12-01 +d89ef2c2da89290b69ba4eb3a85d53b0.png 1906-08-24 +6b79996c05c032bb7d3e9ba8318b9886.png 1921-12-09 +5a933e62588a8cf37d3639ed6eecefd1.png 1919-10-04 +ce854382b0f6e9fe29629b5ed59df31d.png 1917-03-24 +008da0c770b4038fd48bb4393006e50e.png 1915-04-09 +e153a5e12461b3a2432dc426716a8946.png 1895-09-05 +018f0b5a7d714f742ac074562f5e89cb.png 1915-02-26 +e6b2f6e6ec751c71dc0809fad80abcb2.png 1900-10-25 +0fd6a1a49fd669952504335a9cd615d6.png 1917-08-23 +203f35b1826ac284fd3ad97f2ba33784.png 1913-04-18 +799d9003d937d19396139cf42d410f55.png 1908-09-05 +e1506e60a6c16e55b6d1d3af23c88f5c.png 1918-03-21 +0e86ad21f2ee969dd1cfd7ff41526d7a.png 1898-02-26 +c3ca1c6ac0176d64654f5a5dfcfe6b47.png 1908-04-04 +838c4715926b348f813040726602e194.png 1907-08-15 +5a6ab13f226c17685753d00483dd0023.png 1920-10-01 +35abdaef3c0653f617f115ae8882e6e2.png 1920-03-27 +bfd24d01f48692c96f935939dc3437e4.png 1891-11-24 +571a8a7cd0e928236db9c1af7100d25c.png 1896-08-01 +a701e6291d4386640d8e8da6f2034ae1.png 1918-10-31 +67039221bbcda7ee3eeabe12bf1baeb3.png 1915-05-20 +3e74f8225e73d985e1cc0449139a0a29.png 1915-07-02 +c78e6ba2b9329992246e0607621a8a23.png 1908-04-23 +9d31e7814a8126b7de91083c31046371.png 1921-12-01 +e85c21c0c475414bfa31b56e60c74a52.png 1915-08-21 +6d2b986a1a45d85340f0dbd435b74243.png 1916-01-20 +b12c00f72e2a1e9022702d8919cc1c01.png 1910-10-28 +e1788506e1685c26e6f210a75e2fa2a4.png 1867-10-04 +e7873aaa56b4f180d8c6f8a3f88ff44b.png 1895-08-02 +70da270ad576b7e180979cda8ece4506.png 1921-03-11 +7d45e09842588d130d11adf8b0c7ca2e.png 1898-01-01 +e67568045ced6c46570e40dfa8748e9f.png 1916-01-27 +f298bd8d5d16ba88b900a3c25fbad203.png 1908-10-13 +488f6d5c7dc23642b8a36a6763b9aefb.png 1911-12-15 +75cd560ebebb86bafe29eef4af3a04b0.png 1904-11-26 +884ff1b4b9b34513e06c25e8b6a2bfb4.png 1897-11-27 +2d9f5a086997e6411e8fe571fe786ecc.png 1911-07-14 +3958592abdbca7337c63c5f99245d26f.png 1900-03-23 +72a11f7ad7e326c0a9622841fc0ef57f.png 1914-09-18 +883a4493d3544ef1ceb57c677cba4ffe.png 1905-08-18 +b6b7c8caca118d719f9c04e91786cbec.png 1904-09-16 +7677764b3efc04ff1fe1c442c3394595.png 1901-01-04 +c8b911b8be371caa4ffb468e0905a135.png 1904-04-09 +ecafd9fbddbc68177c45514a9864cd6c.png 1902-03-13 +dbfa5210f15c3e6495f1d7cf1d872281.png 1903-01-08 +1598a2865be2911baeaadc6c0daed77d.png 1905-09-01 +69fd7e1629030c9bcc0526341a7e4bb6.png 1917-10-26 +47b3e5a2fc73716ea22a31a7a40e5efd.png 1890-08-23 +1211878f84f5886edb073d28039a603f.png 1883-12-22 +34a2bbb5c850416a2f83190e69af346c.png 1909-02-11 +db2b90cc999a82134310e565b5ee587f.png 1916-04-01 +a2a69c34104b0610a17a651e4cbb409a.png 1921-01-06 +c359fa5dbaed443c6e4201cbf7179255.png 1916-06-22 +877be106cee950364fc29c2560972227.png 1900-02-10 +370884ec87b04086269e907bb06bf052.png 1918-08-02 +b1dffa2bb03eab817c19606e26b7beb8.png 1916-09-28 +8be787b443c337d8cbede8c60247b605.png 1906-12-14 +ea7385f38621da87eef7409ab62f0e3e.png 1914-02-20 +6a83c7e7d8c34aaf158d4c407830dfb2.png 1908-09-01 +4ef396819b6e928c37c58ed723265e3b.png 1915-10-23 +ee4ab29e232c6296b86d7bc12a29713a.png 1895-04-18 +14c4169eb216a45a3d6198f6f623df37.png 1915-01-28 +64d75ec6915437996f838a42d04e0d24.png 1897-06-05 +c14271145054589ad90ad787e76f71c6.png 1919-08-16 +0ff80b9eb0c7a786b94897bd1167912c.png 1914-11-26 +11dbcb195208a2fbea474d134cc3c591.png 1902-04-03 +e89be938d6fb02f0f7487595125d5ecf.png 1893-03-10 +9569cc1727b65a519bc157e2a5b04efa.png 1917-09-28 +c8656d81699291fa090b846d9f22f4e0.png 1905-06-23 +81620cc8677986007f4ddfbc1d366ee2.png 1920-06-24 +1a7c838092b5bd15864875eb30714ba9.png 1893-05-26 +f930f682e20a1be363c88c61f1ab2477.png 1920-12-03 +4d0f41828e5de225e3c77e47cfb0bb27.png 1908-03-27 +8d6fd3e3e6fc9ee062b1578a3f0b7a7b.png 1910-03-18 +5cb3073e31316f3b7bc0a0c68705e7bf.png 1919-09-13 +72c48b3cbb5873501dd754a4f44a918c.png 1890-11-22 +99b9e2f56f974f201d3c3b2209d061eb.png 1870-07-15 +5bba152b4961cb58ef9a04a1d9b1588f.png 1918-11-09 +24dc027ec27ad4d56e188c370d9c3a46.png 1892-02-05 +521dbd5d649c0e8eb2516d25f16406de.png 1918-08-03 +ec12cdef7d2ce6791d5555b86849c4cb.png 1900-05-17 +2fb509b1cc56f83972ab80926270ca33.png 1891-01-31 +066a62d4e213cb7ee8b2d420a1c6f267.png 1907-03-15 +df0925556920efe43eb99a934953e172.png 1921-07-07 +6bf1bfec4863e41aaefdc7e0f961a5b6.png 1873-04-25 +e77247480e98ee94c084d69e8cbd64da.png 1891-03-07 +db9176c68252249f1523215ddad1205a.png 1892-02-13 +7227794e34e1d480c9a4c44a48d1400d.png 1915-02-19 +1fcbb9aa3e7933dd3b56ada2b6f8b6e3.png 1893-06-16 +910d65b313d3abc070a29009c1e0c834.png 1920-08-12 +e816a49838f9c0dc90a087fd55e48567.png 1904-08-06 +3edca032a9709078036061854ca9cbe8.png 1910-04-29 +5a2d4f6b3cfbc13d03b5d849174c2ac9.png 1896-07-18 +ce8ee46114d7ac315a203b3d430b1aa7.png 1920-11-18 +c606eef6822ba27149bb11c76b26a886.png 1919-07-05 +96008badeee14acf3f064e172ee2c792.png 1868-11-06 +a225e4d7f3080590220ce1cc18fa6976.png 1916-10-14 +47ecc68c7f22d3885b58e566fd7d113d.png 1905-03-25 +1aa488aa4ce0f1c9981ab802c772aa04.png 1914-03-05 +d410a8e2502f00c775299c8996cb7865.png 1907-09-06 +1e545076c1ca429f66cecd8466844c1b.png 1891-04-15 +6ae9ed94a47375a26226b8b1317c8fef.png 1920-08-13 +c8a6132925503274eb422fccc1819c6e.png 1895-11-21 +830a2a0c4dfc5598e07f03a298ed8297.png 1916-09-16 +ece3eca53cb1e3837fd23b94def2baa6.png 1891-12-22 +a80162084e06b00195319c3756153611.png 1907-06-06 +1d6df91e8aca8882579aa433b90331f4.png 1916-10-06 +613944716f82618947c412a0c825124e.png 1896-11-26 +6acb2048bc3e118f3958e30f4fc546d3.png 1897-09-23 +e156650e13d42b83d3c6ff7130a715f2.png 1891-04-09 +08463f6da538b57080add656281c9b32.png 1915-12-10 +a40716644f44bc0e37ee590931abf6a7.png 1918-12-06 +7cc096cb0b8cdac6d3c369f9adb4f588.png 1913-03-14 +f06e8636c4c31cdfbff5480c5d88e892.png 1871-12-08 +7695d72bd0fc0a80cba83c9f783460c1.png 1920-11-13 +7c933a1e134e5d170b516e91691ca496.png 1913-03-21 +e725001b640736cd7ca1d66a72056168.png 1917-07-12 +560c02942403ea8aa18bb2202442deca.png 1891-09-20 +f763441786a95bd24e152918db2228a8.png 1897-01-16 +1f70a8b4417829a5faff3c1b6d91af4e.png 1891-03-04 +25131ee91dabb1a809d0e5228d17ef66.png 1907-07-26 +03faa6dc1608a2883e7550ea0ab4a8b2.png 1914-07-09 +ec1a0a12c5eec2eba6988bbd06913948.png 1871-11-03 +0c8d60470275768e4e7cc689180a9a44.png 1895-02-01 +008d2c2884477d05ee4eb3974a6d0e73.png 1896-03-07 +15d3c2dc4216484cc19d11f726c0424e.png 1922-03-10 +31b157c6c3268ed4f2d61142c04ca50f.png 1908-07-24 +a38540ef136ee3c579a7f94ee1d178cf.png 1911-10-20 +e7c326490bfb01416e57852c9c67d9ed.png 1893-11-24 +dfa9151f0d853b50181d342779fe25fc.png 1871-08-18 +f911f05b9d7b1e010d352602029a2290.png 1893-03-24 +718a2fbfb151150bf38d5cdc60fc2866.png 1905-08-25 +3f5c9e6f0028fcf3158a2361fadf2088.png 1918-06-15 +1aaaa318d842213594a82f7b69692438.png 1917-04-21 +60cab58384e0f8ac662c5ecad3f3f70e.png 1894-10-12 +4556d11a8140f5cb5e1058ad04efafb4.png 1895-09-19 +35d7a71640c06ba38ed69d9153ee08f6.png 1910-09-30 +0ee235d44adba25a2613f9c2747c7eea.png 1917-03-10 +ef6127806a772e9001ae63136e4c2ed6.png 1915-03-06 +09327f232d512ba1d50c4abb61bead36.png 1907-03-22 +69671bf028e98378c6563bb2a3c3618c.png 1912-01-19 +4e2056117873ba09fcd2f9d05b059856.png 1891-04-18 +5c1682f5cb148a246ad0f8520ebcdbce.png 1894-07-27 +08dc06cbf70d8faae614f4c160cb71d4.png 1915-09-03 +7073b1b4b598446db2de398f5721e1bf.png 1871-09-29 +32a5c6987db57bd7b18fb6d7073cce9b.png 1890-05-24 +83f3dcba5ba84e6631fc931eb01f8976.png 1921-06-03 +17b3b34ac036070920e6962148e619e1.png 1921-09-23 +6bca4f7ec4ebcc4c4844e45f892b3d4e.png 1893-04-14 +038ff5c8c72f47face2680ceaa779f86.png 1870-04-29 +1f12477d5d8ff8fa88bef1bfb37f0c64.png 1915-10-07 +63924327acb4049a363d74df60c5eb50.png 1891-04-10 +1e9f0b891028ce46c72c00af490a6c33.png 1919-09-20 +e0fbccbd344a1ed972f36abc37e17645.png 1919-03-08 +51726d7284f08a59d6c42327d1c79ef5.png 1909-08-20 +5be725256f027d6a0c97f18aeeaaac03.png 1900-07-20 +da4273b1bf4cc3c1ebd0371f422bf013.png 1915-03-12 +8a79efab7a94e344dae8d03d2a939a75.png 1906-11-16 +9d3c875cba8f383a8300425aa929ca79.png 1899-05-12 +177b44eb94cee9785b9f43be5c70f4fc.png 1893-05-12 +9afd704f2b77d9b4306e0683b85d2cb9.png 1908-05-10 +23b6c837d036d4743e52524b44ff05a9.png 1906-05-11 +4ee078bac231b178058f9d75d4bf7b22.png 1917-04-07 +1c468e742548b078161ad9323658c08b.png 1916-10-13 +ccd4c4b1239b39e6f54dc1cae661a3c0.png 1891-03-28 +485f52e0e1cbd8af0f44dcd650660834.png 1913-01-10 +b06d183c4a74d0c8c0d37de18527499c.png 1917-10-13 +8f27ccf4deaf909544726986e2dbae31.png 1892-12-23 +ec066f98285458e6e0c4a4e5a7988fae.png 1893-02-24 +24d5c540db49d2d90e11fa86a43a64cf.png 1903-07-16 +1aa3b76630080e95a0f5c807ae7b3079.png 1917-07-06 +957e36d3eec594c99bd5758678fb0313.png 1900-03-03 +265f50a5a6662a27532031a4b0e0abc0.png 1891-12-15 +e8fae963f07d637c832094ba7e50afa2.png 1901-08-29 +aef1fe63baf4a9e00334667203b190eb.png 1897-11-19 +531cb5e7550ec315b8fca8f66dc88daa.png 1919-07-25 +c3b5cb2dec0c2722f8aea7b8547ead97.png 1908-10-11 +a0635397d895f9283151f45f929c0f3f.png 1907-09-26 +83394a998aab8b8a652caad3a9e442ab.png 1918-10-18 +a3c7cb1e9df1edd21c8556d8c113b835.png 1916-11-18 +3ebfa35c898376d489220d519474c46a.png 1871-11-10 +ed703e1b74b5c3f9c3ecd9c3ef13f412.png 1917-10-04 +b536c078b33788b6c7427c0c15d8ea78.png 1899-12-28 +3a369576248409229ebf0467fd690641.png 1919-04-19 +7d7f8a91306cd6f1f2d375088e24c0c2.png 1914-04-03 +7222b418f39ab5b54fd6a86822a3f3c4.png 1905-04-21 +905f4f64399afbe251ddaf299ba9d05e.png 1903-10-01 +f4223c3736c224df6cbfded84fbf8bfa.png 1892-09-02 +8474cc3cd0d5305ebdaa8037cd507f25.png 1896-05-02 +ffad61f19fd6530e89dd021c6981dd92.png 1914-12-11 +7e07abb338d1b7ea7c8e800bb89c443b.png 1918-01-11 +425b0513b601bf38fb0febd257d5a964.png 1904-09-10 +d91ec96743dcbf913bfc5704ef2bcaa6.png 1890-12-07 +2e71f53ea61485158baf9996d4903013.png 1914-05-28 +461852c956897b2cd1f14a7f0dade325.png 1891-04-05 +e3fb45cce2ba2f8ae89eb23a5b9d40b8.png 1908-09-19 +24e96a05e14b8a0abe869bcacf8c9ac5.png 1893-10-27 +7b601b953e900d8384dd2ea69d19d79c.png 1907-11-21 +3bd2e66ef318df6203862e5800bf4856.png 1897-12-03 +ba8a1e63bf7ae29d539fdbb530ad753b.png 1897-08-20 +f479c252893e98ab19be494185a5feed.png 1921-09-08 +2111326d7f4126f780afbb72ebbbaaa6.png 1900-12-20 +12b5a7a0e8a9189e3b9dc5ea47ada191.png 1871-04-07 +42cd32fdbf6dc7679382abb3116c6c65.png 1915-03-04 +996e81200dfcac1360167e02f8b7fcea.png 1892-02-13 +ede93014519df003678001dde369443f.png 1872-07-19 +65a1e842a5875bade0d2f50098d4ed7d.png 1903-02-27 +f71cc18d7e7a362c886c41d10ac6e099.png 1892-07-01 +78f8d8977bc462f9e002aa1f49ececde.png 1872-09-13 +fdd6dad43d5d7fcdbcb5758b91ec2e0e.png 1909-02-14 +d1c87b6a17eafee5e6150c6ee0bb19c6.png 1893-06-30 +258f8733b8cae5fd8bd30b9219ce85cc.png 1901-06-21 +2d148d2d468f907df33bd7702ccf52af.png 1905-12-08 +6cb895867ea509caf4063871942d199d.png 1896-12-19 +44235ebbd5dcf2cbcb6a9493edd471b1.png 1873-02-14 +4a6f3d7fd1e832bb036103a6f16eb507.png 1908-04-05 +3259ee3fb0ab4bada06d802683034fd3.png 1921-08-26 +c348605f7f23ad26af62fed5888ec196.png 1921-04-01 +824855a1f2d096ea5669a7f493926b79.png 1900-08-24 +fbc53cd7b3ca13e376074355728ebf88.png 1910-10-21 +3b0fae4dbc486af6f0b099f645c98a30.png 1921-03-10 +7383238516352fe864015bac54c7d325.png 1916-04-28 +2147ae561ece9e864ff7a2cc5c9fc43b.png 1921-09-15 +3761d783f185d691b5b1ba179a4f9a9d.png 1883-08-18 +e4ad2fa0a9f47db05738e5df2a400e84.png 1921-07-14 +01e65ce9714692a95ed7af810dab67c3.png 1904-04-22 +dad6aa72d8a19320e5222a970c5d0fd0.png 1919-01-04 +a202abbeb1c9d6da9d937d1538cc9fa3.png 1914-05-08 +6ea5d224708093def74857fe5e5baf43.png 1906-03-17 +96d2b2495d2e1b1acbe01faff97b095e.png 1900-01-20 +5c779887155ed113c51df7324dbbc7d7.png 1921-08-18 +b6882e89e918626c00d818a7ea01bc0a.png 1905-05-19 +147c7972211b6fee2379419a2b0af044.png 1922-01-05 +111d0218e3b1f8e39edfd51321eb579d.png 1914-02-12 +5569a4eb741560eb060f24f25eea6951.png 1908-09-12 +20bdb67cf2ac8cba11da75e85259bfb7.png 1905-05-12 +849c1136b89b6d17d93f21e8821bbd71.png 1896-10-15 +3ea4f1dff69a33cf831921fa014740a6.png 1920-01-30 +9f7aaa954eaf88de1649bf675d867e27.png 1890-08-06 +9e47e01732f0de9811dd7091cf1d42a3.png 1916-06-01 +da0d639d3c36f720f870539bf4a02f85.png 1897-01-14 +68108ba2f5bcf0e888241187fd447937.png 1919-07-19 +bfaf8e8a5a9c8978fd158c3811f4b583.png 1918-05-02 +a0847371cc2e9f022486497ea84b0453.png 1899-08-26 +825fc86b8055d2eebd20faae425b071b.png 1921-05-13 +14ee9be690d5e15f46d47ef82043b04e.png 1907-04-12 +f5d1cdfef11e0868d64aa16296da018d.png 1909-05-21 +cc4290579184682db108c2eba7a68b62.png 1895-06-28 +bbaf5eb46bd33493a30557c225dcf926.png 1907-08-22 +8a0a4156275b5c603810fcf249989769.png 1918-12-13 +b1e0489869e4cfcb78bf3b78dc10e170.png 1920-05-27 +4d6de0d7fd003c3957dcfbbf855ba917.png 1922-03-16 +bd37024da26bbc4e3b2022c40be37fcb.png 1896-10-10 +f83b624dbd0a772ec8e2e4b369278ca6.png 1908-03-31 +9420672acf431e3486b3f648fb9d3792.png 1895-10-31 +246316ce1534cf483a059cc604d64851.png 1899-11-16 +c0ce0c714b8e3310c3068e4a564733c0.png 1902-12-13 +c1beff87d1988df42f8ca9b634390555.png 1890-11-15 +ab45362c1d6917e818342549ffc3b8c2.png 1884-01-19 +932820138456c6c1ae7b0c2c9316e6a4.png 1905-03-24 +282208a93cb5c2cac0f8f7b5e75e86d7.png 1920-07-17 +40c1a2411da5d48c90346ef27fc940b4.png 1921-03-17 +4ea70510b6f969cc9217e4b8e96829e6.png 1872-08-23 +b8f7b3cf0e57b755c60fa25193a23fdd.png 1894-10-12 +53e9c85d290dcac31797b38a0de75ee9.png 1904-08-27 +c756ca54ee5c55512c84d3b6097bf9cf.png 1891-12-01 +a7a119eb4050081ad23b241542b036db.png 1904-05-06 +e14710cadf83abe095a57398241989d3.png 1897-05-22 +4599621221ba529aff05dda7c82a06a3.png 1903-05-23 +2ecb2995561f8393faa313f95c4118e3.png 1919-02-14 +e8027b790c0ab21ff61312a84d04ea82.png 1891-09-13 +5e28dac79b08860fb2e9ea1aae51c834.png 1915-07-01 +d0809ebd7cff9a3ef767e283c0cd2e63.png 1922-03-03 +f916496f490ce06a9edac869cc62317a.png 1908-05-28 +bd361d617a425103917bf55cfaef6c23.png 1915-05-21 +cba5d852cf89eab53b967597c2b90b38.png 1920-01-03 +3af1e3fa36f19120f4e12a8ef72e432d.png 1920-01-24 +caca5119747fa87ebd252ab351ee0f31.png 1893-05-19 +0b389055432a136d01b8419c1067c862.png 1896-09-25 +bbe55c98ea44442bc98983b50c2133fe.png 1905-02-03 +779689fc807732346768d23317884d58.png 1890-11-04 +7d846ee3928ab2cf40e74bf9bb3cd4fe.png 1919-02-08 +bd67c760cda24ed52906f46afdd36f7f.png 1913-05-23 +bb561c2e9e061809528a5aed23fe8b7e.png 1911-01-20 +980606df74a9301ed9a5f1bd52f94ae3.png 1921-01-14 +59f9c07b2f992a007a56499bd56b0500.png 1892-04-17 +edc70946c63ecd00ba28ad811509cd88.png 1920-06-17 +444a5bd2873ae169ff45b2b5fba82346.png 1891-06-20 +b7032a712ec7b431996ba20fa1dd9fbd.png 1915-12-17 +d6aa36a07a0e9e54bce50808e3380552.png 1914-05-15 +42d10311cf2907e013ce625e659ce86e.png 1912-08-16 +b9d304d534f914992944dfb3e67bc76b.png 1915-05-28 +c78b8da2e6f6561276d1d45d414793c9.png 1891-10-10 +0118994098c4827ce8e41d167e8fdd7d.png 1918-12-26 +c8697a9be51c03d495d01b1d3c69dc0b.png 1902-06-06 +68b5b42266adcbe03f52e70dc842acdf.png 1919-01-18 +8d5182ade0abf71fa2b32b5a83481a8a.png 1906-07-13 +1c79c2b2d59ed844db1543b26c896f9e.png 1891-11-07 +25706ace3326295074266705bd10f7f0.png 1905-05-27 +6d6478dd0cfb6cd97938bfdcce215d26.png 1919-06-20 +c9cd59950c4c7a0c605be12df55b06ac.png 1920-04-10 +4b2517dbfa9239b09a84a0655eae37f7.png 1904-10-08 +a75d40e45da8e29da70914b0ee113aa1.png 1915-08-20 +49a4bda875d315063cf6c74784d2b494.png 1897-05-06 +326b8f2d1cd1a5db49c670d79e0013cd.png 1915-11-19 +75afb6d46733ffb579767c399b3b8b4b.png 1918-11-21 +e555d8c862560a5fd624a9f2cfa69b79.png 1902-10-03 +0dc0143cfc27f57a3a19aa95f0cdce2a.png 1918-03-08 +44d76b3f37f43c2f1faeaaae7f761d28.png 1922-01-27 +ac30cc54d53e4e6d3d9669e39a5fe7ca.png 1918-08-24 +9438a0da068855a4f99deff9ed919735.png 1884-10-18 +ac5c0655687ce2c32072373f17080df1.png 1891-12-30 +926c9983aecd8c44e6c9a5c5005f1ab2.png 1915-12-24 +57a05a1cce57803c68eb3aa98f92ce44.png 1890-11-08 +899b8afad44204e54f9c83e2dd510390.png 1917-06-22 +33647e274131d880ec5157628b88e0cf.png 1901-07-27 +2233e50dabd3461b9928e0b43044d758.png 1908-04-22 +f3b628ee5e0becb64e687a46b4471eb3.png 1914-10-02 +f940e2dda9419bed6f3644ac5817b613.png 1915-07-03 +d24adc769132f1e4991f2c443648e71e.png 1914-08-07 +7eda40a736bd85f14fbeaf534fee6c93.png 1919-02-27 +ac8ba08724e09e0d3ae2713b6283cb6b.png 1892-06-17 +d63d2bb8f07e2779ec2908f4476b7007.png 1915-04-23 +4342a03080d49629b463059108dc8780.png 1898-11-26 +78eca7838ef86cfb592cd0f431ffc4c5.png 1901-05-10 +b10f268a8c5e99839ffe082143326c32.png 1908-11-20 +cf4215ed94540034a329ed7f5749351a.png 1921-06-16 +27ca0f24694d40f1bbcc193a95b0407e.png 1917-04-05 +1e5eb8ad8633242cf9ef6fa5890648fe.png 1908-05-29 +61f5dc23d191526b8f3eecf0ba3c4c5e.png 1919-04-03 +3a22d10dde3fe562d70f56cd1eb8c4af.png 1871-06-23 +4a2fa8f67f63009f78a873a3b83aa033.png 1907-06-07 +91914cd97a3973e34c2b2c2ba878ed99.png 1891-06-14 +9c22b0bfd7d74266c2cc2cddd5d140c1.png 1918-04-25 +317e36d086129dbaa159f6e35d226be5.png 1919-11-29 +1d80f03f86f88d70f1593802dae6efb2.png 1900-12-21 +f6fcb113ab234e6ce176aee53d04208f.png 1914-10-15 +d2ede3c292f9853b7cbaf88db05d6faf.png 1907-05-31 +100b2ee55d8b3c3002ef33efc9031dc3.png 1916-07-22 +e5452db9aed09be7272ed078dce400d4.png 1891-03-20 +2c183d3a777aa69f61857fa1110b42f9.png 1902-03-08 +19f21a5d71a9d2a579f8268547b3d9b8.png 1912-10-18 +e45a329ca9ed54935b92c9ce96bef1a1.png 1915-07-16 +e92b8852e95eaa760291e2924b03101a.png 1900-03-16 +ded9a6d1dad482a2791b6b36294646c9.png 1899-04-14 +72dabdbe035d07d2b7a69d70386f4fdf.png 1907-09-27 +d1f56326963dca3c1a2d180080b2ceb2.png 1890-12-13 +47fa7e84d321963ff6ed1c1e0c2b1561.png 1903-05-22 +e18ac30315f378acdce8aa34cd3a4f10.png 1917-10-12 +47c201850f9e1d16db1975d3481e2604.png 1890-10-26 +35e55783809bc29f08eae1cbe326ca82.png 1918-07-18 +00d85d7bdeae3ac8909993e360bc9356.png 1916-05-19 +e7d616bf12c852dc6ec857035a035bf6.png 1914-01-16 +3c364e37f5ba8f851967db0514c55151.png 1868-01-17 +ce3396b77f6d02ef500e313b1a3ea904.png 1897-10-07 +4fcae8db40cea8906c922e855fe3b981.png 1908-10-23 +be0aa7afd21d2c2021d72d76fe643d76.png 1917-08-31 +721ad44ed516c571e65a73b093f46df8.png 1921-07-29 +a8683aa37e7cca836b6e5cec0905d2b7.png 1890-11-07 +88e26b26ea1359699493b8726653ae0f.png 1915-11-18 +53b903f158d5eadc2023c67f4cc624c8.png 1904-11-04 +8aa961f25ce7188b13138c841bec7fb6.png 1905-09-22 +67ae5ff3983b6a3242b863fcbc4e784f.png 1904-10-01 +af7ccc44fced6660fe38f1dd760b9b34.png 1908-06-28 +2539d7c1e32d122b7c81b4fe8d15e716.png 1917-05-03 +db675437bf9109825aaf3183eeb50326.png 1916-10-12 +0ce7a774b7225570355b7170a434e235.png 1916-04-21 +ba47b1700054366e08896213cece2490.png 1899-09-23 +a4f53b456bb2a4764d1e0aca25665079.png 1906-03-23 +5ebb42ab4f1eec67e5f8acdd5339f332.png 1907-04-25 +1e7496655314ca0b356dcda398b313a9.png 1900-07-27 +f4dbb9c0be9dadac10d3386af7e07144.png 1913-07-11 +4b4d37f917a1bd1206ae735e311a6cdf.png 1908-07-03 +d04b6e4180bd8bc021f6d9a25f155226.png 1919-05-08 +e7cff9d5ea97ddba82242ffa719af792.png 1918-11-01 +efeeea3cc17ec90df658f5cc05e2384d.png 1919-12-19 +64b87fb2935ace67b2f9aaa171f5dcc7.png 1909-02-06 +ae2a4fd70109a43f426619795033b2f4.png 1893-09-15 +06265aee2f8194b432356b0a05883020.png 1914-07-31 +a96e20c5d4f9bab50f518e306b083d7e.png 1896-12-31 +9c9fbe487021d95ec07c07c80f732ac9.png 1908-11-13 +cb3a65e6ffb4c1238abad4bdfa1dafd9.png 1906-09-21 +317bb685776710f3814a72a45a2a9427.png 1916-08-03 +a0b19c2815116974e1d3c30ec34492c7.png 1892-02-14 +3cb3b2af0e6621000118f5293ca3d688.png 1892-10-14 +2a4df32bff44c24219b3154bab034f66.png 1920-09-16 +4904e577a9b26a8598ea52ca0064f421.png 1912-04-12 +9defa7a1a5ad934f4738593377492f85.png 1916-06-10 +b6e906fe20a3e70e915aed04f9118c06.png 1890-10-22 +96374887494a4ecc42fe49801541f763.png 1892-03-12 +44b8e5c369e274a66109c87efc6354ee.png 1919-09-05 +1f90937b89317212e397e9f86240da13.png 1891-01-17 +6c67e97a05a6d5f2e5753ff26905943d.png 1903-06-05 +5f8e394c971a06b0c507624eafbb2245.png 1906-06-01 +1e860527bf6f12e3d439fd62834780f1.png 1918-04-05 +420bb0ebb131fc9aef3e41cadd3c67c9.png 1892-11-04 +cd24bc45e9f9d63392c1065b15797bfc.png 1890-11-11 +e342c1aa665bbed1980b6c7c1a1f18c3.png 1919-10-17 +145bd1aaf72151bf732f5ba8b74c859e.png 1892-07-16 +8285adf74cbb43807882b45a5416bc13.png 1895-04-26 +52b2ce8b33c1b00142a6268caff4c70f.png 1890-12-18 +f120f75953462990f02c9efaf12fa6a7.png 1921-04-28 +41bb920bdc428d04af3b083df916f44f.png 1916-01-22 +f392600b561d8aecf66bfcf36048c4e4.png 1907-05-16 +03778e8650cf7e7422241098d4fb39ee.png 1907-08-16 +d68543ea873dd64f9a9629c05eaed2b9.png 1890-12-21 +898a89391cbaca8c99e70ed1c8337654.png 1897-03-18 +d4e5c87b4de8ae1f900f876efb32c514.png 1916-09-14 +7fc3f954540e9aba650ca4476c6760e9.png 1900-12-07 +bbce92222c8f589bb7148fbb4a2d7984.png 1900-05-03 +cdbc404d0df40b5d735046f7cd9065e0.png 1906-02-16 +8f98201ba1397b77ab059409bd0f09a8.png 1908-01-24 +43b0c1099e3bcd49d4a35cc254fd7c61.png 1915-04-08 +6650a63002be9b79f6431e972bea0d13.png 1916-06-30 +de89b20f77c5397311e534ba781d6221.png 1918-06-22 +cb8044204906a34a5aa6573767fcc63a.png 1892-08-20 +dd7c91d5973f7b29d222e16ff0f4bcd7.png 1897-04-09 +9792f3e6c3898a5d9b9b55a4d94a6b47.png 1912-12-27 +cae68a6129d0086f053e443b15e149a1.png 1892-07-15 +02b083e6f3a9c0d59f2b6762f6394595.png 1917-02-23 +5a85ff3e7f3a93e2dacaa53842904577.png 1920-05-20 +1926a10c833281e5366c51c2bbd2662b.png 1915-07-09 +49b7b74d55f6eb2f2fc11fc8878ccb8d.png 1906-03-10 +d9667bbb9496dcfa696ab71afd280841.png 1906-01-27 +5c80bd9972c556ab084c93544bed7dfa.png 1883-01-20 +850a5ba208f80d933b27f59c360f7b37.png 1900-09-20 +3aa08fa7184155f3e20b62d716fe6f0f.png 1867-12-20 +8cc1b470a74765999b0a3612a189c824.png 1919-03-13 +be4f794ef12e2fda8046a9b5681e923c.png 1897-01-01 +ad2f88fe364b6ac94ea54f3a21b5cf90.png 1921-08-04 +8a33768f60a18454f7f61cfa8ee498d5.png 1890-11-20 +00023810ecf58d034f9e1b9d510feb72.png 1883-09-01 +505a57319cc9a4633a2ffb1815ef859e.png 1904-03-26 +a5a683e3d57d7401883a8f87fa4dc652.png 1891-05-31 +7054054c10bd1a4169ce4e992c7b105b.png 1919-05-24 +73f0c43e3f0d006acf11c5df8ac4f4e8.png 1915-01-07 +9e69cc1ea7de9be376e7747802b23582.png 1909-02-09 +ae810c1bd087022ebb1641b28a2cd703.png 1906-03-31 +41a715effc9b278d769933578dfbb740.png 1904-07-01 +0ab7b1f5027c060b53b512cbb4d2ddc8.png 1908-09-10 +9e67376fedd4c3f0f7a9d4ddd77e89b9.png 1915-07-10 +87725499a97c5b21f2b591c435a0389d.png 1921-12-16 +c1be3b167dc643ef3da9e3b788337f52.png 1896-09-05 +69b124af96e7df0a6c9f147a1965db48.png 1893-07-21 +598cfc79f6e87d6a259a859fdb0b95d4.png 1894-10-19 +270a2ae1106a585cd7c8b87bd44ce111.png 1916-07-27 +ca7cb1fab515be210832ce4327aec5b3.png 1890-09-03 +29678de6eeccda7e21db96d3d522c497.png 1900-08-25 +859b469c38978da187d7c278fbc63ebd.png 1893-12-08 +fb0ee1dc7fcdfac6ae2680314c828f94.png 1900-08-17 +64fd820bc70303f571a8d1fb2cd4b80a.png 1901-12-20 +dfb13f78715ca15f6e439ee2a8169ada.png 1897-06-11 +1820b419b55f13b0f619e4acf707f931.png 1897-04-08 +ccc300f49d010231bc8cf3af9c49841b.png 1890-08-02 +0dc17ca9a2b7cfacef0605bfd9c5f309.png 1921-12-29 +a4d39c845ffc3c32b6725078f6eaf07c.png 1901-11-28 +aef783234f75b28d01069efd9b846f63.png 1892-03-05 +51bd917fbed6ac826982e8996a69d89e.png 1899-12-09 +5cbcabd1dcfb2b35d8e9cf76fa192924.png 1903-07-09 +8ccf2f73a60cb6ee76996c64f5e18d6b.png 1911-04-28 +9295cd90ffb3641c66b92b1354589a46.png 1913-02-21 +02b1e70902780bf57b5342d08b54d453.png 1922-05-12 +da9fcad86d856cba74466c2236b855d7.png 1919-05-02 +482505403ad67af036bc59c7347fec12.png 1901-11-16 +88d380727eec5e51523fc7ba4b091f6b.png 1897-05-29 +13a2b31007a9e4c977aa1c2e043af88f.png 1900-11-09 +450b8052b89b8d42c49053f4acd9565a.png 1907-11-29 +38dfbef49a9b6dbccefb9eb55f92915b.png 1890-04-05 +3b0a095cca05dbb7479f324afe3e8fd7.png 1898-11-19 +e7abf66bffd47208fc6275b679f52ff6.png 1922-05-26 +1e7cad7e17c65a893de63bc6cbaae1cd.png 1915-10-22 +326cc505300aa9847951033d2e394057.png 1895-10-24 +31caa054c3f7d23069c4980182f334c3.png 1905-12-15 +a073aacd3e0cbfd59cf190320d71d3c8.png 1919-05-29 +b01ade831704db3fe29f4b568708b3ad.png 1896-08-27 +1776a57ccf3a96ae0a9e029a28449d81.png 1914-01-08 +a698079a8b68d70998ec2d8e78c38dc1.png 1900-08-23 +234c6c9000492072e3969f46d066de42.png 1904-10-07 +5fa227fdcddc91303db01a048efc48e6.png 1908-06-30 +f7710279715947a5c053bb49927bfd36.png 1904-03-11 +b06cabf8e841bdf415479a7ea591b26b.png 1903-11-12 +6ef948c4b96e43665fc82060daa81026.png 1904-02-05 +d8eb180a8e46802058cac9f1329d5339.png 1901-04-12 +92c6df66679346b72efade55fd1418d6.png 1917-10-05 +d585e93a1ca7ecc5dc1e58c123316209.png 1920-09-03 +6b96b04c8c23deefc80fe78f6c142842.png 1873-06-27 +6a38ef7c0bc72ffe4a9b0e9bcb38e2c8.png 1908-10-16 +7a5e6ee186e78fb84eea02cce70432c7.png 1915-10-08 +ae24a0699d93e2a512cbebab786a305b.png 1890-10-27 +d4be4b456beb7ad389da4d60c197dc81.png 1916-05-06 +0ff4f02ce758f43fedc135e0d882f56b.png 1906-04-20 +54c0dd80ecbf375e4b1758175762ef77.png 1910-01-28 +9f42af865317ac7153e359a86e127c19.png 1893-09-22 +82e0ae68027b17da7fa82a846df5763f.png 1903-09-10 +efbac43991e8c4ae5b730549163b60bc.png 1895-08-08 +5dd9b8c3af7a84e75a1a2f0034bd2576.png 1918-10-04 +d5111c8d1669b43f71d34649120c8e76.png 1900-10-04 +8e70216b56a3a3542cd30d8d99972f45.png 1912-04-05 +b7ef5b99bf46046636c097ac39254d71.png 1922-02-24 +74ebf3e50331508270fab2127cd7fccc.png 1901-09-05 +eee8dc7c6b70c5c0cbe8ca2baae584f8.png 1914-07-02 +ed14d030f2e36ad077b90fc40acaa7d1.png 1904-01-29 +7f994bc42d0f525c65c4f03dc4476527.png 1903-12-18 +1adf7a4a910174d09eddd27cff6028c0.png 1905-08-05 +40f3a4f5e7bc8a7f3b119b3f2d2cd837.png 1916-06-09 +05e191a4e1fe0afd433471027f5c5870.png 1914-09-04 +4953293510ab5586e9488c30ab789450.png 1921-06-09 +f1ffbf9afd04c622abae17ace4da54e2.png 1918-04-11 +095495af21a9a6c2f2dee43c05c7568a.png 1917-05-25 +1d349383eecc8383950d1155f0ea390c.png 1895-07-26 +4d9c19607aaf1b9ccf861e56535c5677.png 1899-11-30 +e88f3d89d8a5f9bd45c147000c65da61.png 1921-02-10 +1245834d89c065ca1db2abe6930c2b72.png 1908-09-18 +b7c9c65d64af8fb26b5e26d3d17ce19e.png 1921-10-21 +5bc37202d6bf21614956b23ff123a62a.png 1899-01-13 +2147651ad77fee06e1aff0bedae8dec2.png 1921-06-11 +ae58f1e2a75cc14dcb44618c43e5d491.png 1897-09-25 +de8693213eb128940ad5cd31652079fc.png 1922-04-21 +4b2d52cd49e95106a14df868cc57120c.png 1895-07-18 +7b7bdbdb75ef1c65bfca07c5956f212e.png 1907-12-26 +ffc8195f7c48d8d131a95fa56bd2c14b.png 1921-01-29 +77a5b2d3dbf700d9bdfeff0888e9d7d3.png 1904-06-25 +9909988e506a4010f1b6f6539a86d4bb.png 1895-12-07 +f5acd14b0b400db992d3d0b55a1c3760.png 1895-04-11 +9d3f563edbb8b0f4a0c35b70cb33aaa3.png 1891-01-24 +f52e37a894355b49a9f141e03a9ce3c4.png 1902-07-31 +bc08fd93ace01d9799c566798ec33328.png 1895-09-27 +8925fcb2de3167d9895a17e6d713ce7e.png 1896-03-14 +3903ff01fbe1279aeaeb4b3cdb6f7c25.png 1905-09-02 +33e9a319ec466fe14996261178ddca40.png 1915-06-17 +ed20a13c0628dbae58950ae9d613d947.png 1921-11-11 +f4ce48c47989581c3a865b1113bc49c7.png 1899-02-17 +6cb7aed583f35058a2d8339844def903.png 1900-10-26 +be68d20ccf7a695bd9ed104e69a456de.png 1892-11-19 +503018898a6c5039cb34108d5ff049d4.png 1897-05-08 +0aae99caa46482c15138df3743f14816.png 1894-12-07 +9abfb8bf7f070ea7647c1d2f491ae71d.png 1914-01-09 +b3fa01277f7a80367da2178883e6e273.png 1893-04-07 +08ae1eccba734b8d2ef4a1b1dadb1bf8.png 1914-07-30 +d11043f1bc56160314a0426958f5490b.png 1914-05-14 +50d6f08b2de2e12d82e15040e14a4f2c.png 1918-08-30 +d18b7147fa8b224842da50587d47c7be.png 1916-03-30 +691f5fc2204cf59d5ad6b6d6b4ed4730.png 1919-03-28 +b87b17eddbbf29159b7f555004fec99a.png 1922-04-07 +4c8f35ba5be43dea9dd7a6fa95e55284.png 1902-05-23 +83e9d60aad8df267ab38b8cf4f9380da.png 1893-07-08 +ceb1147062388765fa319d6035c28647.png 1891-11-26 +259b104dbb1a1323e19b98d20dde4cb9.png 1891-05-02 +bc804f63b13c082c7a98990f2ce268f1.png 1890-02-01 +d001851310f12a6c18000baea9ab107f.png 1899-11-24 +a011c5d809330faf6cbec242e4702d2d.png 1921-10-07 +7f378830ee8fa182dbb99b6eb5d5bfbd.png 1920-08-26 +ad3f6886ca477cabe40f6c766b76b5b3.png 1907-03-28 +97000778471f2ca77dad1a04d984902c.png 1918-02-21 +f924fcc146dc26482a095433659ba445.png 1900-10-27 +992e9b6ab3885299a84a614d195839ca.png 1892-06-10 +2a28463b247e17db5b773a249695b1e3.png 1911-08-11 +e57d821b3b53ac29908e46da012e716c.png 1916-02-19 +1ee76f1974596de721c9a533fec17586.png 1902-03-01 diff --git a/dev-0/pictures/00023810ecf58d034f9e1b9d510feb72.png b/dev-0/pictures/00023810ecf58d034f9e1b9d510feb72.png new file mode 100644 index 0000000..4b56d04 Binary files /dev/null and b/dev-0/pictures/00023810ecf58d034f9e1b9d510feb72.png differ diff --git a/dev-0/pictures/008d2c2884477d05ee4eb3974a6d0e73.png b/dev-0/pictures/008d2c2884477d05ee4eb3974a6d0e73.png new file mode 100644 index 0000000..203fc8a Binary files /dev/null and b/dev-0/pictures/008d2c2884477d05ee4eb3974a6d0e73.png differ diff --git a/dev-0/pictures/008da0c770b4038fd48bb4393006e50e.png b/dev-0/pictures/008da0c770b4038fd48bb4393006e50e.png new file mode 100644 index 0000000..3589c3d Binary files /dev/null and b/dev-0/pictures/008da0c770b4038fd48bb4393006e50e.png differ diff --git a/dev-0/pictures/00d85d7bdeae3ac8909993e360bc9356.png b/dev-0/pictures/00d85d7bdeae3ac8909993e360bc9356.png new file mode 100644 index 0000000..cf6a8af Binary files /dev/null and b/dev-0/pictures/00d85d7bdeae3ac8909993e360bc9356.png differ diff --git a/dev-0/pictures/0118994098c4827ce8e41d167e8fdd7d.png b/dev-0/pictures/0118994098c4827ce8e41d167e8fdd7d.png new file mode 100644 index 0000000..573e40f Binary files /dev/null and b/dev-0/pictures/0118994098c4827ce8e41d167e8fdd7d.png differ diff --git a/dev-0/pictures/018f0b5a7d714f742ac074562f5e89cb.png b/dev-0/pictures/018f0b5a7d714f742ac074562f5e89cb.png new file mode 100644 index 0000000..206c352 Binary files /dev/null and b/dev-0/pictures/018f0b5a7d714f742ac074562f5e89cb.png differ diff --git a/dev-0/pictures/01e65ce9714692a95ed7af810dab67c3.png b/dev-0/pictures/01e65ce9714692a95ed7af810dab67c3.png new file mode 100644 index 0000000..b8d1c16 Binary files /dev/null and b/dev-0/pictures/01e65ce9714692a95ed7af810dab67c3.png differ diff --git a/dev-0/pictures/02b083e6f3a9c0d59f2b6762f6394595.png b/dev-0/pictures/02b083e6f3a9c0d59f2b6762f6394595.png new file mode 100644 index 0000000..63b69a1 Binary files /dev/null and b/dev-0/pictures/02b083e6f3a9c0d59f2b6762f6394595.png differ diff --git a/dev-0/pictures/02b1e70902780bf57b5342d08b54d453.png b/dev-0/pictures/02b1e70902780bf57b5342d08b54d453.png new file mode 100644 index 0000000..f79adce Binary files /dev/null and b/dev-0/pictures/02b1e70902780bf57b5342d08b54d453.png differ diff --git a/dev-0/pictures/03778e8650cf7e7422241098d4fb39ee.png b/dev-0/pictures/03778e8650cf7e7422241098d4fb39ee.png new file mode 100644 index 0000000..97a4c5e Binary files /dev/null and b/dev-0/pictures/03778e8650cf7e7422241098d4fb39ee.png differ diff --git a/dev-0/pictures/038ff5c8c72f47face2680ceaa779f86.png b/dev-0/pictures/038ff5c8c72f47face2680ceaa779f86.png new file mode 100644 index 0000000..6d32e7b Binary files /dev/null and b/dev-0/pictures/038ff5c8c72f47face2680ceaa779f86.png differ diff --git a/dev-0/pictures/03faa6dc1608a2883e7550ea0ab4a8b2.png b/dev-0/pictures/03faa6dc1608a2883e7550ea0ab4a8b2.png new file mode 100644 index 0000000..833b7dd Binary files /dev/null and b/dev-0/pictures/03faa6dc1608a2883e7550ea0ab4a8b2.png differ diff --git a/dev-0/pictures/054985831cf35367d827288cf2223fe3.png b/dev-0/pictures/054985831cf35367d827288cf2223fe3.png new file mode 100644 index 0000000..ca7c257 Binary files /dev/null and b/dev-0/pictures/054985831cf35367d827288cf2223fe3.png differ diff --git a/dev-0/pictures/05e191a4e1fe0afd433471027f5c5870.png b/dev-0/pictures/05e191a4e1fe0afd433471027f5c5870.png new file mode 100644 index 0000000..1d1098f Binary files /dev/null and b/dev-0/pictures/05e191a4e1fe0afd433471027f5c5870.png differ diff --git a/dev-0/pictures/06265aee2f8194b432356b0a05883020.png b/dev-0/pictures/06265aee2f8194b432356b0a05883020.png new file mode 100644 index 0000000..6125460 Binary files /dev/null and b/dev-0/pictures/06265aee2f8194b432356b0a05883020.png differ diff --git a/dev-0/pictures/066a62d4e213cb7ee8b2d420a1c6f267.png b/dev-0/pictures/066a62d4e213cb7ee8b2d420a1c6f267.png new file mode 100644 index 0000000..4283dcf Binary files /dev/null and b/dev-0/pictures/066a62d4e213cb7ee8b2d420a1c6f267.png differ diff --git a/dev-0/pictures/08463f6da538b57080add656281c9b32.png b/dev-0/pictures/08463f6da538b57080add656281c9b32.png new file mode 100644 index 0000000..456334a Binary files /dev/null and b/dev-0/pictures/08463f6da538b57080add656281c9b32.png differ diff --git a/dev-0/pictures/08ae1eccba734b8d2ef4a1b1dadb1bf8.png b/dev-0/pictures/08ae1eccba734b8d2ef4a1b1dadb1bf8.png new file mode 100644 index 0000000..c0f59ee Binary files /dev/null and b/dev-0/pictures/08ae1eccba734b8d2ef4a1b1dadb1bf8.png differ diff --git a/dev-0/pictures/08dc06cbf70d8faae614f4c160cb71d4.png b/dev-0/pictures/08dc06cbf70d8faae614f4c160cb71d4.png new file mode 100644 index 0000000..5817f1f Binary files /dev/null and b/dev-0/pictures/08dc06cbf70d8faae614f4c160cb71d4.png differ diff --git a/dev-0/pictures/09327f232d512ba1d50c4abb61bead36.png b/dev-0/pictures/09327f232d512ba1d50c4abb61bead36.png new file mode 100644 index 0000000..00c64ef Binary files /dev/null and b/dev-0/pictures/09327f232d512ba1d50c4abb61bead36.png differ diff --git a/dev-0/pictures/095495af21a9a6c2f2dee43c05c7568a.png b/dev-0/pictures/095495af21a9a6c2f2dee43c05c7568a.png new file mode 100644 index 0000000..914a171 Binary files /dev/null and b/dev-0/pictures/095495af21a9a6c2f2dee43c05c7568a.png differ diff --git a/dev-0/pictures/0aae99caa46482c15138df3743f14816.png b/dev-0/pictures/0aae99caa46482c15138df3743f14816.png new file mode 100644 index 0000000..22178e3 Binary files /dev/null and b/dev-0/pictures/0aae99caa46482c15138df3743f14816.png differ diff --git a/dev-0/pictures/0ab7b1f5027c060b53b512cbb4d2ddc8.png b/dev-0/pictures/0ab7b1f5027c060b53b512cbb4d2ddc8.png new file mode 100644 index 0000000..18fbec4 Binary files /dev/null and b/dev-0/pictures/0ab7b1f5027c060b53b512cbb4d2ddc8.png differ diff --git a/dev-0/pictures/0b1c32c5e3e1d56ad2a1f1c29da7f961.png b/dev-0/pictures/0b1c32c5e3e1d56ad2a1f1c29da7f961.png new file mode 100644 index 0000000..7b136ed Binary files /dev/null and b/dev-0/pictures/0b1c32c5e3e1d56ad2a1f1c29da7f961.png differ diff --git a/dev-0/pictures/0b389055432a136d01b8419c1067c862.png b/dev-0/pictures/0b389055432a136d01b8419c1067c862.png new file mode 100644 index 0000000..cd46406 Binary files /dev/null and b/dev-0/pictures/0b389055432a136d01b8419c1067c862.png differ diff --git a/dev-0/pictures/0c8d60470275768e4e7cc689180a9a44.png b/dev-0/pictures/0c8d60470275768e4e7cc689180a9a44.png new file mode 100644 index 0000000..09ce1c1 Binary files /dev/null and b/dev-0/pictures/0c8d60470275768e4e7cc689180a9a44.png differ diff --git a/dev-0/pictures/0ce7a774b7225570355b7170a434e235.png b/dev-0/pictures/0ce7a774b7225570355b7170a434e235.png new file mode 100644 index 0000000..5ffb7db Binary files /dev/null and b/dev-0/pictures/0ce7a774b7225570355b7170a434e235.png differ diff --git a/dev-0/pictures/0d94d337ab9df45a0f339167cbdc9ec7.png b/dev-0/pictures/0d94d337ab9df45a0f339167cbdc9ec7.png new file mode 100644 index 0000000..40a4803 Binary files /dev/null and b/dev-0/pictures/0d94d337ab9df45a0f339167cbdc9ec7.png differ diff --git a/dev-0/pictures/0dc0143cfc27f57a3a19aa95f0cdce2a.png b/dev-0/pictures/0dc0143cfc27f57a3a19aa95f0cdce2a.png new file mode 100644 index 0000000..53be2a1 Binary files /dev/null and b/dev-0/pictures/0dc0143cfc27f57a3a19aa95f0cdce2a.png differ diff --git a/dev-0/pictures/0dc17ca9a2b7cfacef0605bfd9c5f309.png b/dev-0/pictures/0dc17ca9a2b7cfacef0605bfd9c5f309.png new file mode 100644 index 0000000..70ae304 Binary files /dev/null and b/dev-0/pictures/0dc17ca9a2b7cfacef0605bfd9c5f309.png differ diff --git a/dev-0/pictures/0e86ad21f2ee969dd1cfd7ff41526d7a.png b/dev-0/pictures/0e86ad21f2ee969dd1cfd7ff41526d7a.png new file mode 100644 index 0000000..c97302f Binary files /dev/null and b/dev-0/pictures/0e86ad21f2ee969dd1cfd7ff41526d7a.png differ diff --git a/dev-0/pictures/0ee235d44adba25a2613f9c2747c7eea.png b/dev-0/pictures/0ee235d44adba25a2613f9c2747c7eea.png new file mode 100644 index 0000000..9cf4b34 Binary files /dev/null and b/dev-0/pictures/0ee235d44adba25a2613f9c2747c7eea.png differ diff --git a/dev-0/pictures/0fd6a1a49fd669952504335a9cd615d6.png b/dev-0/pictures/0fd6a1a49fd669952504335a9cd615d6.png new file mode 100644 index 0000000..4cac62b Binary files /dev/null and b/dev-0/pictures/0fd6a1a49fd669952504335a9cd615d6.png differ diff --git a/dev-0/pictures/0ff4f02ce758f43fedc135e0d882f56b.png b/dev-0/pictures/0ff4f02ce758f43fedc135e0d882f56b.png new file mode 100644 index 0000000..44a0427 Binary files /dev/null and b/dev-0/pictures/0ff4f02ce758f43fedc135e0d882f56b.png differ diff --git a/dev-0/pictures/0ff80b9eb0c7a786b94897bd1167912c.png b/dev-0/pictures/0ff80b9eb0c7a786b94897bd1167912c.png new file mode 100644 index 0000000..83da6c9 Binary files /dev/null and b/dev-0/pictures/0ff80b9eb0c7a786b94897bd1167912c.png differ diff --git a/dev-0/pictures/100b2ee55d8b3c3002ef33efc9031dc3.png b/dev-0/pictures/100b2ee55d8b3c3002ef33efc9031dc3.png new file mode 100644 index 0000000..26af1ca Binary files /dev/null and b/dev-0/pictures/100b2ee55d8b3c3002ef33efc9031dc3.png differ diff --git a/dev-0/pictures/1022a7da7232d7f8f4e54e9ef063e53e.png b/dev-0/pictures/1022a7da7232d7f8f4e54e9ef063e53e.png new file mode 100644 index 0000000..cf6068e Binary files /dev/null and b/dev-0/pictures/1022a7da7232d7f8f4e54e9ef063e53e.png differ diff --git a/dev-0/pictures/111d0218e3b1f8e39edfd51321eb579d.png b/dev-0/pictures/111d0218e3b1f8e39edfd51321eb579d.png new file mode 100644 index 0000000..87a6fcf Binary files /dev/null and b/dev-0/pictures/111d0218e3b1f8e39edfd51321eb579d.png differ diff --git a/dev-0/pictures/11dbcb195208a2fbea474d134cc3c591.png b/dev-0/pictures/11dbcb195208a2fbea474d134cc3c591.png new file mode 100644 index 0000000..36000b9 Binary files /dev/null and b/dev-0/pictures/11dbcb195208a2fbea474d134cc3c591.png differ diff --git a/dev-0/pictures/11edb7bf2db4dbb4379116646740f123.png b/dev-0/pictures/11edb7bf2db4dbb4379116646740f123.png new file mode 100644 index 0000000..719dc96 Binary files /dev/null and b/dev-0/pictures/11edb7bf2db4dbb4379116646740f123.png differ diff --git a/dev-0/pictures/1211878f84f5886edb073d28039a603f.png b/dev-0/pictures/1211878f84f5886edb073d28039a603f.png new file mode 100644 index 0000000..47eb8e6 Binary files /dev/null and b/dev-0/pictures/1211878f84f5886edb073d28039a603f.png differ diff --git a/dev-0/pictures/1245834d89c065ca1db2abe6930c2b72.png b/dev-0/pictures/1245834d89c065ca1db2abe6930c2b72.png new file mode 100644 index 0000000..af509a6 Binary files /dev/null and b/dev-0/pictures/1245834d89c065ca1db2abe6930c2b72.png differ diff --git a/dev-0/pictures/12b5a7a0e8a9189e3b9dc5ea47ada191.png b/dev-0/pictures/12b5a7a0e8a9189e3b9dc5ea47ada191.png new file mode 100644 index 0000000..01c0bd8 Binary files /dev/null and b/dev-0/pictures/12b5a7a0e8a9189e3b9dc5ea47ada191.png differ diff --git a/dev-0/pictures/12cef7e2041df852eaa564c0d7877c1c.png b/dev-0/pictures/12cef7e2041df852eaa564c0d7877c1c.png new file mode 100644 index 0000000..037dd9d Binary files /dev/null and b/dev-0/pictures/12cef7e2041df852eaa564c0d7877c1c.png differ diff --git a/dev-0/pictures/13a2b31007a9e4c977aa1c2e043af88f.png b/dev-0/pictures/13a2b31007a9e4c977aa1c2e043af88f.png new file mode 100644 index 0000000..e8f313a Binary files /dev/null and b/dev-0/pictures/13a2b31007a9e4c977aa1c2e043af88f.png differ diff --git a/dev-0/pictures/145bd1aaf72151bf732f5ba8b74c859e.png b/dev-0/pictures/145bd1aaf72151bf732f5ba8b74c859e.png new file mode 100644 index 0000000..e73aba5 Binary files /dev/null and b/dev-0/pictures/145bd1aaf72151bf732f5ba8b74c859e.png differ diff --git a/dev-0/pictures/147c7972211b6fee2379419a2b0af044.png b/dev-0/pictures/147c7972211b6fee2379419a2b0af044.png new file mode 100644 index 0000000..017f78c Binary files /dev/null and b/dev-0/pictures/147c7972211b6fee2379419a2b0af044.png differ diff --git a/dev-0/pictures/14c4169eb216a45a3d6198f6f623df37.png b/dev-0/pictures/14c4169eb216a45a3d6198f6f623df37.png new file mode 100644 index 0000000..e21687f Binary files /dev/null and b/dev-0/pictures/14c4169eb216a45a3d6198f6f623df37.png differ diff --git a/dev-0/pictures/14ee9be690d5e15f46d47ef82043b04e.png b/dev-0/pictures/14ee9be690d5e15f46d47ef82043b04e.png new file mode 100644 index 0000000..50fe535 Binary files /dev/null and b/dev-0/pictures/14ee9be690d5e15f46d47ef82043b04e.png differ diff --git a/dev-0/pictures/1598a2865be2911baeaadc6c0daed77d.png b/dev-0/pictures/1598a2865be2911baeaadc6c0daed77d.png new file mode 100644 index 0000000..a7da04a Binary files /dev/null and b/dev-0/pictures/1598a2865be2911baeaadc6c0daed77d.png differ diff --git a/dev-0/pictures/15d3c2dc4216484cc19d11f726c0424e.png b/dev-0/pictures/15d3c2dc4216484cc19d11f726c0424e.png new file mode 100644 index 0000000..e63db12 Binary files /dev/null and b/dev-0/pictures/15d3c2dc4216484cc19d11f726c0424e.png differ diff --git a/dev-0/pictures/1776a57ccf3a96ae0a9e029a28449d81.png b/dev-0/pictures/1776a57ccf3a96ae0a9e029a28449d81.png new file mode 100644 index 0000000..49b5822 Binary files /dev/null and b/dev-0/pictures/1776a57ccf3a96ae0a9e029a28449d81.png differ diff --git a/dev-0/pictures/177b44eb94cee9785b9f43be5c70f4fc.png b/dev-0/pictures/177b44eb94cee9785b9f43be5c70f4fc.png new file mode 100644 index 0000000..2c494ad Binary files /dev/null and b/dev-0/pictures/177b44eb94cee9785b9f43be5c70f4fc.png differ diff --git a/dev-0/pictures/17b3b34ac036070920e6962148e619e1.png b/dev-0/pictures/17b3b34ac036070920e6962148e619e1.png new file mode 100644 index 0000000..db70366 Binary files /dev/null and b/dev-0/pictures/17b3b34ac036070920e6962148e619e1.png differ diff --git a/dev-0/pictures/1820b419b55f13b0f619e4acf707f931.png b/dev-0/pictures/1820b419b55f13b0f619e4acf707f931.png new file mode 100644 index 0000000..4a5b0c0 Binary files /dev/null and b/dev-0/pictures/1820b419b55f13b0f619e4acf707f931.png differ diff --git a/dev-0/pictures/1926a10c833281e5366c51c2bbd2662b.png b/dev-0/pictures/1926a10c833281e5366c51c2bbd2662b.png new file mode 100644 index 0000000..8a40666 Binary files /dev/null and b/dev-0/pictures/1926a10c833281e5366c51c2bbd2662b.png differ diff --git a/dev-0/pictures/19f21a5d71a9d2a579f8268547b3d9b8.png b/dev-0/pictures/19f21a5d71a9d2a579f8268547b3d9b8.png new file mode 100644 index 0000000..3ff937d Binary files /dev/null and b/dev-0/pictures/19f21a5d71a9d2a579f8268547b3d9b8.png differ diff --git a/dev-0/pictures/1a7c838092b5bd15864875eb30714ba9.png b/dev-0/pictures/1a7c838092b5bd15864875eb30714ba9.png new file mode 100644 index 0000000..f00aa3b Binary files /dev/null and b/dev-0/pictures/1a7c838092b5bd15864875eb30714ba9.png differ diff --git a/dev-0/pictures/1aa3b76630080e95a0f5c807ae7b3079.png b/dev-0/pictures/1aa3b76630080e95a0f5c807ae7b3079.png new file mode 100644 index 0000000..ece6a27 Binary files /dev/null and b/dev-0/pictures/1aa3b76630080e95a0f5c807ae7b3079.png differ diff --git a/dev-0/pictures/1aa488aa4ce0f1c9981ab802c772aa04.png b/dev-0/pictures/1aa488aa4ce0f1c9981ab802c772aa04.png new file mode 100644 index 0000000..76e7a00 Binary files /dev/null and b/dev-0/pictures/1aa488aa4ce0f1c9981ab802c772aa04.png differ diff --git a/dev-0/pictures/1aaaa318d842213594a82f7b69692438.png b/dev-0/pictures/1aaaa318d842213594a82f7b69692438.png new file mode 100644 index 0000000..d5ab85c Binary files /dev/null and b/dev-0/pictures/1aaaa318d842213594a82f7b69692438.png differ diff --git a/dev-0/pictures/1adf7a4a910174d09eddd27cff6028c0.png b/dev-0/pictures/1adf7a4a910174d09eddd27cff6028c0.png new file mode 100644 index 0000000..68ccf6f Binary files /dev/null and b/dev-0/pictures/1adf7a4a910174d09eddd27cff6028c0.png differ diff --git a/dev-0/pictures/1b44056894110f969fdee697fc60dc59.png b/dev-0/pictures/1b44056894110f969fdee697fc60dc59.png new file mode 100644 index 0000000..c5780ac Binary files /dev/null and b/dev-0/pictures/1b44056894110f969fdee697fc60dc59.png differ diff --git a/dev-0/pictures/1bdebb74e66718bbd58318d18b8759af.png b/dev-0/pictures/1bdebb74e66718bbd58318d18b8759af.png new file mode 100644 index 0000000..c4117c5 Binary files /dev/null and b/dev-0/pictures/1bdebb74e66718bbd58318d18b8759af.png differ diff --git a/dev-0/pictures/1c468e742548b078161ad9323658c08b.png b/dev-0/pictures/1c468e742548b078161ad9323658c08b.png new file mode 100644 index 0000000..b45df9d Binary files /dev/null and b/dev-0/pictures/1c468e742548b078161ad9323658c08b.png differ diff --git a/dev-0/pictures/1c79c2b2d59ed844db1543b26c896f9e.png b/dev-0/pictures/1c79c2b2d59ed844db1543b26c896f9e.png new file mode 100644 index 0000000..8ae7894 Binary files /dev/null and b/dev-0/pictures/1c79c2b2d59ed844db1543b26c896f9e.png differ diff --git a/dev-0/pictures/1ced040ab268e7681ed0dd065a29263d.png b/dev-0/pictures/1ced040ab268e7681ed0dd065a29263d.png new file mode 100644 index 0000000..b863781 Binary files /dev/null and b/dev-0/pictures/1ced040ab268e7681ed0dd065a29263d.png differ diff --git a/dev-0/pictures/1d349383eecc8383950d1155f0ea390c.png b/dev-0/pictures/1d349383eecc8383950d1155f0ea390c.png new file mode 100644 index 0000000..d172932 Binary files /dev/null and b/dev-0/pictures/1d349383eecc8383950d1155f0ea390c.png differ diff --git a/dev-0/pictures/1d6df91e8aca8882579aa433b90331f4.png b/dev-0/pictures/1d6df91e8aca8882579aa433b90331f4.png new file mode 100644 index 0000000..f0404ff Binary files /dev/null and b/dev-0/pictures/1d6df91e8aca8882579aa433b90331f4.png differ diff --git a/dev-0/pictures/1d80f03f86f88d70f1593802dae6efb2.png b/dev-0/pictures/1d80f03f86f88d70f1593802dae6efb2.png new file mode 100644 index 0000000..fdf63e5 Binary files /dev/null and b/dev-0/pictures/1d80f03f86f88d70f1593802dae6efb2.png differ diff --git a/dev-0/pictures/1e430f414686ac5a71fe616f77fd737d.png b/dev-0/pictures/1e430f414686ac5a71fe616f77fd737d.png new file mode 100644 index 0000000..86f22b2 Binary files /dev/null and b/dev-0/pictures/1e430f414686ac5a71fe616f77fd737d.png differ diff --git a/dev-0/pictures/1e545076c1ca429f66cecd8466844c1b.png b/dev-0/pictures/1e545076c1ca429f66cecd8466844c1b.png new file mode 100644 index 0000000..ba342b5 Binary files /dev/null and b/dev-0/pictures/1e545076c1ca429f66cecd8466844c1b.png differ diff --git a/dev-0/pictures/1e5eb8ad8633242cf9ef6fa5890648fe.png b/dev-0/pictures/1e5eb8ad8633242cf9ef6fa5890648fe.png new file mode 100644 index 0000000..533cda1 Binary files /dev/null and b/dev-0/pictures/1e5eb8ad8633242cf9ef6fa5890648fe.png differ diff --git a/dev-0/pictures/1e7496655314ca0b356dcda398b313a9.png b/dev-0/pictures/1e7496655314ca0b356dcda398b313a9.png new file mode 100644 index 0000000..009ad38 Binary files /dev/null and b/dev-0/pictures/1e7496655314ca0b356dcda398b313a9.png differ diff --git a/dev-0/pictures/1e7cad7e17c65a893de63bc6cbaae1cd.png b/dev-0/pictures/1e7cad7e17c65a893de63bc6cbaae1cd.png new file mode 100644 index 0000000..462980d Binary files /dev/null and b/dev-0/pictures/1e7cad7e17c65a893de63bc6cbaae1cd.png differ diff --git a/dev-0/pictures/1e860527bf6f12e3d439fd62834780f1.png b/dev-0/pictures/1e860527bf6f12e3d439fd62834780f1.png new file mode 100644 index 0000000..66dfa47 Binary files /dev/null and b/dev-0/pictures/1e860527bf6f12e3d439fd62834780f1.png differ diff --git a/dev-0/pictures/1e9f0b891028ce46c72c00af490a6c33.png b/dev-0/pictures/1e9f0b891028ce46c72c00af490a6c33.png new file mode 100644 index 0000000..c7496e2 Binary files /dev/null and b/dev-0/pictures/1e9f0b891028ce46c72c00af490a6c33.png differ diff --git a/dev-0/pictures/1ee76f1974596de721c9a533fec17586.png b/dev-0/pictures/1ee76f1974596de721c9a533fec17586.png new file mode 100644 index 0000000..2faa73e Binary files /dev/null and b/dev-0/pictures/1ee76f1974596de721c9a533fec17586.png differ diff --git a/dev-0/pictures/1f12477d5d8ff8fa88bef1bfb37f0c64.png b/dev-0/pictures/1f12477d5d8ff8fa88bef1bfb37f0c64.png new file mode 100644 index 0000000..c5b4ca0 Binary files /dev/null and b/dev-0/pictures/1f12477d5d8ff8fa88bef1bfb37f0c64.png differ diff --git a/dev-0/pictures/1f70a8b4417829a5faff3c1b6d91af4e.png b/dev-0/pictures/1f70a8b4417829a5faff3c1b6d91af4e.png new file mode 100644 index 0000000..8684b43 Binary files /dev/null and b/dev-0/pictures/1f70a8b4417829a5faff3c1b6d91af4e.png differ diff --git a/dev-0/pictures/1f90937b89317212e397e9f86240da13.png b/dev-0/pictures/1f90937b89317212e397e9f86240da13.png new file mode 100644 index 0000000..569028c Binary files /dev/null and b/dev-0/pictures/1f90937b89317212e397e9f86240da13.png differ diff --git a/dev-0/pictures/1fcbb9aa3e7933dd3b56ada2b6f8b6e3.png b/dev-0/pictures/1fcbb9aa3e7933dd3b56ada2b6f8b6e3.png new file mode 100644 index 0000000..eda4a21 Binary files /dev/null and b/dev-0/pictures/1fcbb9aa3e7933dd3b56ada2b6f8b6e3.png differ diff --git a/dev-0/pictures/203f35b1826ac284fd3ad97f2ba33784.png b/dev-0/pictures/203f35b1826ac284fd3ad97f2ba33784.png new file mode 100644 index 0000000..bdfa419 Binary files /dev/null and b/dev-0/pictures/203f35b1826ac284fd3ad97f2ba33784.png differ diff --git a/dev-0/pictures/20bdb67cf2ac8cba11da75e85259bfb7.png b/dev-0/pictures/20bdb67cf2ac8cba11da75e85259bfb7.png new file mode 100644 index 0000000..0bb6e05 Binary files /dev/null and b/dev-0/pictures/20bdb67cf2ac8cba11da75e85259bfb7.png differ diff --git a/dev-0/pictures/2111326d7f4126f780afbb72ebbbaaa6.png b/dev-0/pictures/2111326d7f4126f780afbb72ebbbaaa6.png new file mode 100644 index 0000000..896989e Binary files /dev/null and b/dev-0/pictures/2111326d7f4126f780afbb72ebbbaaa6.png differ diff --git a/dev-0/pictures/2147651ad77fee06e1aff0bedae8dec2.png b/dev-0/pictures/2147651ad77fee06e1aff0bedae8dec2.png new file mode 100644 index 0000000..fbc612e Binary files /dev/null and b/dev-0/pictures/2147651ad77fee06e1aff0bedae8dec2.png differ diff --git a/dev-0/pictures/2147ae561ece9e864ff7a2cc5c9fc43b.png b/dev-0/pictures/2147ae561ece9e864ff7a2cc5c9fc43b.png new file mode 100644 index 0000000..13c6611 Binary files /dev/null and b/dev-0/pictures/2147ae561ece9e864ff7a2cc5c9fc43b.png differ diff --git a/dev-0/pictures/2233e50dabd3461b9928e0b43044d758.png b/dev-0/pictures/2233e50dabd3461b9928e0b43044d758.png new file mode 100644 index 0000000..6a1da7e Binary files /dev/null and b/dev-0/pictures/2233e50dabd3461b9928e0b43044d758.png differ diff --git a/dev-0/pictures/234c6c9000492072e3969f46d066de42.png b/dev-0/pictures/234c6c9000492072e3969f46d066de42.png new file mode 100644 index 0000000..a302421 Binary files /dev/null and b/dev-0/pictures/234c6c9000492072e3969f46d066de42.png differ diff --git a/dev-0/pictures/23b6c837d036d4743e52524b44ff05a9.png b/dev-0/pictures/23b6c837d036d4743e52524b44ff05a9.png new file mode 100644 index 0000000..c6e6476 Binary files /dev/null and b/dev-0/pictures/23b6c837d036d4743e52524b44ff05a9.png differ diff --git a/dev-0/pictures/240c929693a85e58b4e9eb352ccae88f.png b/dev-0/pictures/240c929693a85e58b4e9eb352ccae88f.png new file mode 100644 index 0000000..36ec741 Binary files /dev/null and b/dev-0/pictures/240c929693a85e58b4e9eb352ccae88f.png differ diff --git a/dev-0/pictures/244b30814fbb531cedca1b8674f0a0ba.png b/dev-0/pictures/244b30814fbb531cedca1b8674f0a0ba.png new file mode 100644 index 0000000..86c9e2a Binary files /dev/null and b/dev-0/pictures/244b30814fbb531cedca1b8674f0a0ba.png differ diff --git a/dev-0/pictures/246316ce1534cf483a059cc604d64851.png b/dev-0/pictures/246316ce1534cf483a059cc604d64851.png new file mode 100644 index 0000000..2ab3c00 Binary files /dev/null and b/dev-0/pictures/246316ce1534cf483a059cc604d64851.png differ diff --git a/dev-0/pictures/24d5c540db49d2d90e11fa86a43a64cf.png b/dev-0/pictures/24d5c540db49d2d90e11fa86a43a64cf.png new file mode 100644 index 0000000..38ad1aa Binary files /dev/null and b/dev-0/pictures/24d5c540db49d2d90e11fa86a43a64cf.png differ diff --git a/dev-0/pictures/24dc027ec27ad4d56e188c370d9c3a46.png b/dev-0/pictures/24dc027ec27ad4d56e188c370d9c3a46.png new file mode 100644 index 0000000..ff6f3ec Binary files /dev/null and b/dev-0/pictures/24dc027ec27ad4d56e188c370d9c3a46.png differ diff --git a/dev-0/pictures/24e96a05e14b8a0abe869bcacf8c9ac5.png b/dev-0/pictures/24e96a05e14b8a0abe869bcacf8c9ac5.png new file mode 100644 index 0000000..4480c57 Binary files /dev/null and b/dev-0/pictures/24e96a05e14b8a0abe869bcacf8c9ac5.png differ diff --git a/dev-0/pictures/25131ee91dabb1a809d0e5228d17ef66.png b/dev-0/pictures/25131ee91dabb1a809d0e5228d17ef66.png new file mode 100644 index 0000000..df696cd Binary files /dev/null and b/dev-0/pictures/25131ee91dabb1a809d0e5228d17ef66.png differ diff --git a/dev-0/pictures/2539d7c1e32d122b7c81b4fe8d15e716.png b/dev-0/pictures/2539d7c1e32d122b7c81b4fe8d15e716.png new file mode 100644 index 0000000..95db303 Binary files /dev/null and b/dev-0/pictures/2539d7c1e32d122b7c81b4fe8d15e716.png differ diff --git a/dev-0/pictures/25706ace3326295074266705bd10f7f0.png b/dev-0/pictures/25706ace3326295074266705bd10f7f0.png new file mode 100644 index 0000000..432f206 Binary files /dev/null and b/dev-0/pictures/25706ace3326295074266705bd10f7f0.png differ diff --git a/dev-0/pictures/258f8733b8cae5fd8bd30b9219ce85cc.png b/dev-0/pictures/258f8733b8cae5fd8bd30b9219ce85cc.png new file mode 100644 index 0000000..f970353 Binary files /dev/null and b/dev-0/pictures/258f8733b8cae5fd8bd30b9219ce85cc.png differ diff --git a/dev-0/pictures/259b104dbb1a1323e19b98d20dde4cb9.png b/dev-0/pictures/259b104dbb1a1323e19b98d20dde4cb9.png new file mode 100644 index 0000000..75a8f0e Binary files /dev/null and b/dev-0/pictures/259b104dbb1a1323e19b98d20dde4cb9.png differ diff --git a/dev-0/pictures/25b30e8f3c689c15a7550f91aa86e508.png b/dev-0/pictures/25b30e8f3c689c15a7550f91aa86e508.png new file mode 100644 index 0000000..567b4d2 Binary files /dev/null and b/dev-0/pictures/25b30e8f3c689c15a7550f91aa86e508.png differ diff --git a/dev-0/pictures/265f50a5a6662a27532031a4b0e0abc0.png b/dev-0/pictures/265f50a5a6662a27532031a4b0e0abc0.png new file mode 100644 index 0000000..5969e81 Binary files /dev/null and b/dev-0/pictures/265f50a5a6662a27532031a4b0e0abc0.png differ diff --git a/dev-0/pictures/270a2ae1106a585cd7c8b87bd44ce111.png b/dev-0/pictures/270a2ae1106a585cd7c8b87bd44ce111.png new file mode 100644 index 0000000..8147834 Binary files /dev/null and b/dev-0/pictures/270a2ae1106a585cd7c8b87bd44ce111.png differ diff --git a/dev-0/pictures/27ca0f24694d40f1bbcc193a95b0407e.png b/dev-0/pictures/27ca0f24694d40f1bbcc193a95b0407e.png new file mode 100644 index 0000000..0adf0b5 Binary files /dev/null and b/dev-0/pictures/27ca0f24694d40f1bbcc193a95b0407e.png differ diff --git a/dev-0/pictures/282208a93cb5c2cac0f8f7b5e75e86d7.png b/dev-0/pictures/282208a93cb5c2cac0f8f7b5e75e86d7.png new file mode 100644 index 0000000..7d32f6f Binary files /dev/null and b/dev-0/pictures/282208a93cb5c2cac0f8f7b5e75e86d7.png differ diff --git a/dev-0/pictures/28a718c36c39f0fe7b1f2f507ec4d341.png b/dev-0/pictures/28a718c36c39f0fe7b1f2f507ec4d341.png new file mode 100644 index 0000000..0fda08e Binary files /dev/null and b/dev-0/pictures/28a718c36c39f0fe7b1f2f507ec4d341.png differ diff --git a/dev-0/pictures/29678de6eeccda7e21db96d3d522c497.png b/dev-0/pictures/29678de6eeccda7e21db96d3d522c497.png new file mode 100644 index 0000000..c90897b Binary files /dev/null and b/dev-0/pictures/29678de6eeccda7e21db96d3d522c497.png differ diff --git a/dev-0/pictures/2a10ee3df4d4a21df24849dcb28ea2a8.png b/dev-0/pictures/2a10ee3df4d4a21df24849dcb28ea2a8.png new file mode 100644 index 0000000..4d37a66 Binary files /dev/null and b/dev-0/pictures/2a10ee3df4d4a21df24849dcb28ea2a8.png differ diff --git a/dev-0/pictures/2a28463b247e17db5b773a249695b1e3.png b/dev-0/pictures/2a28463b247e17db5b773a249695b1e3.png new file mode 100644 index 0000000..083745c Binary files /dev/null and b/dev-0/pictures/2a28463b247e17db5b773a249695b1e3.png differ diff --git a/dev-0/pictures/2a4df32bff44c24219b3154bab034f66.png b/dev-0/pictures/2a4df32bff44c24219b3154bab034f66.png new file mode 100644 index 0000000..6ad9e96 Binary files /dev/null and b/dev-0/pictures/2a4df32bff44c24219b3154bab034f66.png differ diff --git a/dev-0/pictures/2c183d3a777aa69f61857fa1110b42f9.png b/dev-0/pictures/2c183d3a777aa69f61857fa1110b42f9.png new file mode 100644 index 0000000..448850e Binary files /dev/null and b/dev-0/pictures/2c183d3a777aa69f61857fa1110b42f9.png differ diff --git a/dev-0/pictures/2d148d2d468f907df33bd7702ccf52af.png b/dev-0/pictures/2d148d2d468f907df33bd7702ccf52af.png new file mode 100644 index 0000000..3ecb99d Binary files /dev/null and b/dev-0/pictures/2d148d2d468f907df33bd7702ccf52af.png differ diff --git a/dev-0/pictures/2d9f5a086997e6411e8fe571fe786ecc.png b/dev-0/pictures/2d9f5a086997e6411e8fe571fe786ecc.png new file mode 100644 index 0000000..fbac54f Binary files /dev/null and b/dev-0/pictures/2d9f5a086997e6411e8fe571fe786ecc.png differ diff --git a/dev-0/pictures/2dad907782db4f4fc46c9e612005c2ad.png b/dev-0/pictures/2dad907782db4f4fc46c9e612005c2ad.png new file mode 100644 index 0000000..7a1bf36 Binary files /dev/null and b/dev-0/pictures/2dad907782db4f4fc46c9e612005c2ad.png differ diff --git a/dev-0/pictures/2e23b5323d960b20daa645d5634c4500.png b/dev-0/pictures/2e23b5323d960b20daa645d5634c4500.png new file mode 100644 index 0000000..a2ac6cb Binary files /dev/null and b/dev-0/pictures/2e23b5323d960b20daa645d5634c4500.png differ diff --git a/dev-0/pictures/2e71f53ea61485158baf9996d4903013.png b/dev-0/pictures/2e71f53ea61485158baf9996d4903013.png new file mode 100644 index 0000000..e2e7808 Binary files /dev/null and b/dev-0/pictures/2e71f53ea61485158baf9996d4903013.png differ diff --git a/dev-0/pictures/2ecb2995561f8393faa313f95c4118e3.png b/dev-0/pictures/2ecb2995561f8393faa313f95c4118e3.png new file mode 100644 index 0000000..441bb71 Binary files /dev/null and b/dev-0/pictures/2ecb2995561f8393faa313f95c4118e3.png differ diff --git a/dev-0/pictures/2fb509b1cc56f83972ab80926270ca33.png b/dev-0/pictures/2fb509b1cc56f83972ab80926270ca33.png new file mode 100644 index 0000000..e2c0031 Binary files /dev/null and b/dev-0/pictures/2fb509b1cc56f83972ab80926270ca33.png differ diff --git a/dev-0/pictures/2fbcb6eb8b17bab9b1eb1257bc91264e.png b/dev-0/pictures/2fbcb6eb8b17bab9b1eb1257bc91264e.png new file mode 100644 index 0000000..167b002 Binary files /dev/null and b/dev-0/pictures/2fbcb6eb8b17bab9b1eb1257bc91264e.png differ diff --git a/dev-0/pictures/30118d676eef2116bc6bcbaf748a1c40.png b/dev-0/pictures/30118d676eef2116bc6bcbaf748a1c40.png new file mode 100644 index 0000000..5f9e1c3 Binary files /dev/null and b/dev-0/pictures/30118d676eef2116bc6bcbaf748a1c40.png differ diff --git a/dev-0/pictures/317bb685776710f3814a72a45a2a9427.png b/dev-0/pictures/317bb685776710f3814a72a45a2a9427.png new file mode 100644 index 0000000..8cef3f9 Binary files /dev/null and b/dev-0/pictures/317bb685776710f3814a72a45a2a9427.png differ diff --git a/dev-0/pictures/317e36d086129dbaa159f6e35d226be5.png b/dev-0/pictures/317e36d086129dbaa159f6e35d226be5.png new file mode 100644 index 0000000..4a6704c Binary files /dev/null and b/dev-0/pictures/317e36d086129dbaa159f6e35d226be5.png differ diff --git a/dev-0/pictures/31b157c6c3268ed4f2d61142c04ca50f.png b/dev-0/pictures/31b157c6c3268ed4f2d61142c04ca50f.png new file mode 100644 index 0000000..84c0580 Binary files /dev/null and b/dev-0/pictures/31b157c6c3268ed4f2d61142c04ca50f.png differ diff --git a/dev-0/pictures/31caa054c3f7d23069c4980182f334c3.png b/dev-0/pictures/31caa054c3f7d23069c4980182f334c3.png new file mode 100644 index 0000000..7c4e6e5 Binary files /dev/null and b/dev-0/pictures/31caa054c3f7d23069c4980182f334c3.png differ diff --git a/dev-0/pictures/3259ee3fb0ab4bada06d802683034fd3.png b/dev-0/pictures/3259ee3fb0ab4bada06d802683034fd3.png new file mode 100644 index 0000000..3855e9c Binary files /dev/null and b/dev-0/pictures/3259ee3fb0ab4bada06d802683034fd3.png differ diff --git a/dev-0/pictures/326b8f2d1cd1a5db49c670d79e0013cd.png b/dev-0/pictures/326b8f2d1cd1a5db49c670d79e0013cd.png new file mode 100644 index 0000000..b8dd690 Binary files /dev/null and b/dev-0/pictures/326b8f2d1cd1a5db49c670d79e0013cd.png differ diff --git a/dev-0/pictures/326cc505300aa9847951033d2e394057.png b/dev-0/pictures/326cc505300aa9847951033d2e394057.png new file mode 100644 index 0000000..94870d4 Binary files /dev/null and b/dev-0/pictures/326cc505300aa9847951033d2e394057.png differ diff --git a/dev-0/pictures/32a5c6987db57bd7b18fb6d7073cce9b.png b/dev-0/pictures/32a5c6987db57bd7b18fb6d7073cce9b.png new file mode 100644 index 0000000..544771f Binary files /dev/null and b/dev-0/pictures/32a5c6987db57bd7b18fb6d7073cce9b.png differ diff --git a/dev-0/pictures/33647e274131d880ec5157628b88e0cf.png b/dev-0/pictures/33647e274131d880ec5157628b88e0cf.png new file mode 100644 index 0000000..3753069 Binary files /dev/null and b/dev-0/pictures/33647e274131d880ec5157628b88e0cf.png differ diff --git a/dev-0/pictures/33e9a319ec466fe14996261178ddca40.png b/dev-0/pictures/33e9a319ec466fe14996261178ddca40.png new file mode 100644 index 0000000..0c66df3 Binary files /dev/null and b/dev-0/pictures/33e9a319ec466fe14996261178ddca40.png differ diff --git a/dev-0/pictures/34a2bbb5c850416a2f83190e69af346c.png b/dev-0/pictures/34a2bbb5c850416a2f83190e69af346c.png new file mode 100644 index 0000000..7db778b Binary files /dev/null and b/dev-0/pictures/34a2bbb5c850416a2f83190e69af346c.png differ diff --git a/dev-0/pictures/35abdaef3c0653f617f115ae8882e6e2.png b/dev-0/pictures/35abdaef3c0653f617f115ae8882e6e2.png new file mode 100644 index 0000000..4919158 Binary files /dev/null and b/dev-0/pictures/35abdaef3c0653f617f115ae8882e6e2.png differ diff --git a/dev-0/pictures/35d7a71640c06ba38ed69d9153ee08f6.png b/dev-0/pictures/35d7a71640c06ba38ed69d9153ee08f6.png new file mode 100644 index 0000000..724c48e Binary files /dev/null and b/dev-0/pictures/35d7a71640c06ba38ed69d9153ee08f6.png differ diff --git a/dev-0/pictures/35e55783809bc29f08eae1cbe326ca82.png b/dev-0/pictures/35e55783809bc29f08eae1cbe326ca82.png new file mode 100644 index 0000000..b289330 Binary files /dev/null and b/dev-0/pictures/35e55783809bc29f08eae1cbe326ca82.png differ diff --git a/dev-0/pictures/370884ec87b04086269e907bb06bf052.png b/dev-0/pictures/370884ec87b04086269e907bb06bf052.png new file mode 100644 index 0000000..93fa1d9 Binary files /dev/null and b/dev-0/pictures/370884ec87b04086269e907bb06bf052.png differ diff --git a/dev-0/pictures/3722d2da591a1e8a9d2caf6378b0baae.png b/dev-0/pictures/3722d2da591a1e8a9d2caf6378b0baae.png new file mode 100644 index 0000000..f0c210c Binary files /dev/null and b/dev-0/pictures/3722d2da591a1e8a9d2caf6378b0baae.png differ diff --git a/dev-0/pictures/3761d783f185d691b5b1ba179a4f9a9d.png b/dev-0/pictures/3761d783f185d691b5b1ba179a4f9a9d.png new file mode 100644 index 0000000..9755c7e Binary files /dev/null and b/dev-0/pictures/3761d783f185d691b5b1ba179a4f9a9d.png differ diff --git a/dev-0/pictures/38dfbef49a9b6dbccefb9eb55f92915b.png b/dev-0/pictures/38dfbef49a9b6dbccefb9eb55f92915b.png new file mode 100644 index 0000000..7f09ba0 Binary files /dev/null and b/dev-0/pictures/38dfbef49a9b6dbccefb9eb55f92915b.png differ diff --git a/dev-0/pictures/3903ff01fbe1279aeaeb4b3cdb6f7c25.png b/dev-0/pictures/3903ff01fbe1279aeaeb4b3cdb6f7c25.png new file mode 100644 index 0000000..f1a909a Binary files /dev/null and b/dev-0/pictures/3903ff01fbe1279aeaeb4b3cdb6f7c25.png differ diff --git a/dev-0/pictures/3958592abdbca7337c63c5f99245d26f.png b/dev-0/pictures/3958592abdbca7337c63c5f99245d26f.png new file mode 100644 index 0000000..4572613 Binary files /dev/null and b/dev-0/pictures/3958592abdbca7337c63c5f99245d26f.png differ diff --git a/dev-0/pictures/3a22d10dde3fe562d70f56cd1eb8c4af.png b/dev-0/pictures/3a22d10dde3fe562d70f56cd1eb8c4af.png new file mode 100644 index 0000000..5780ba3 Binary files /dev/null and b/dev-0/pictures/3a22d10dde3fe562d70f56cd1eb8c4af.png differ diff --git a/dev-0/pictures/3a369576248409229ebf0467fd690641.png b/dev-0/pictures/3a369576248409229ebf0467fd690641.png new file mode 100644 index 0000000..d939784 Binary files /dev/null and b/dev-0/pictures/3a369576248409229ebf0467fd690641.png differ diff --git a/dev-0/pictures/3aa08fa7184155f3e20b62d716fe6f0f.png b/dev-0/pictures/3aa08fa7184155f3e20b62d716fe6f0f.png new file mode 100644 index 0000000..6a4fed6 Binary files /dev/null and b/dev-0/pictures/3aa08fa7184155f3e20b62d716fe6f0f.png differ diff --git a/dev-0/pictures/3af1e3fa36f19120f4e12a8ef72e432d.png b/dev-0/pictures/3af1e3fa36f19120f4e12a8ef72e432d.png new file mode 100644 index 0000000..f3c40db Binary files /dev/null and b/dev-0/pictures/3af1e3fa36f19120f4e12a8ef72e432d.png differ diff --git a/dev-0/pictures/3b0a095cca05dbb7479f324afe3e8fd7.png b/dev-0/pictures/3b0a095cca05dbb7479f324afe3e8fd7.png new file mode 100644 index 0000000..cabf1de Binary files /dev/null and b/dev-0/pictures/3b0a095cca05dbb7479f324afe3e8fd7.png differ diff --git a/dev-0/pictures/3b0fae4dbc486af6f0b099f645c98a30.png b/dev-0/pictures/3b0fae4dbc486af6f0b099f645c98a30.png new file mode 100644 index 0000000..a4d1b62 Binary files /dev/null and b/dev-0/pictures/3b0fae4dbc486af6f0b099f645c98a30.png differ diff --git a/dev-0/pictures/3ba88b24f03c24fe5d3fb02b81c13b12.png b/dev-0/pictures/3ba88b24f03c24fe5d3fb02b81c13b12.png new file mode 100644 index 0000000..d177701 Binary files /dev/null and b/dev-0/pictures/3ba88b24f03c24fe5d3fb02b81c13b12.png differ diff --git a/dev-0/pictures/3bac76715217e765b846a96033f9f1df.png b/dev-0/pictures/3bac76715217e765b846a96033f9f1df.png new file mode 100644 index 0000000..8dac3b4 Binary files /dev/null and b/dev-0/pictures/3bac76715217e765b846a96033f9f1df.png differ diff --git a/dev-0/pictures/3bd2e66ef318df6203862e5800bf4856.png b/dev-0/pictures/3bd2e66ef318df6203862e5800bf4856.png new file mode 100644 index 0000000..959e86a Binary files /dev/null and b/dev-0/pictures/3bd2e66ef318df6203862e5800bf4856.png differ diff --git a/dev-0/pictures/3c364e37f5ba8f851967db0514c55151.png b/dev-0/pictures/3c364e37f5ba8f851967db0514c55151.png new file mode 100644 index 0000000..455ad64 Binary files /dev/null and b/dev-0/pictures/3c364e37f5ba8f851967db0514c55151.png differ diff --git a/dev-0/pictures/3cb3b2af0e6621000118f5293ca3d688.png b/dev-0/pictures/3cb3b2af0e6621000118f5293ca3d688.png new file mode 100644 index 0000000..58fdee1 Binary files /dev/null and b/dev-0/pictures/3cb3b2af0e6621000118f5293ca3d688.png differ diff --git a/dev-0/pictures/3d786c616aa9ff6a37a1b33e4d1ec73e.png b/dev-0/pictures/3d786c616aa9ff6a37a1b33e4d1ec73e.png new file mode 100644 index 0000000..425557f Binary files /dev/null and b/dev-0/pictures/3d786c616aa9ff6a37a1b33e4d1ec73e.png differ diff --git a/dev-0/pictures/3e74f8225e73d985e1cc0449139a0a29.png b/dev-0/pictures/3e74f8225e73d985e1cc0449139a0a29.png new file mode 100644 index 0000000..28102f2 Binary files /dev/null and b/dev-0/pictures/3e74f8225e73d985e1cc0449139a0a29.png differ diff --git a/dev-0/pictures/3ea4f1dff69a33cf831921fa014740a6.png b/dev-0/pictures/3ea4f1dff69a33cf831921fa014740a6.png new file mode 100644 index 0000000..ce0c0d1 Binary files /dev/null and b/dev-0/pictures/3ea4f1dff69a33cf831921fa014740a6.png differ diff --git a/dev-0/pictures/3ebfa35c898376d489220d519474c46a.png b/dev-0/pictures/3ebfa35c898376d489220d519474c46a.png new file mode 100644 index 0000000..400912f Binary files /dev/null and b/dev-0/pictures/3ebfa35c898376d489220d519474c46a.png differ diff --git a/dev-0/pictures/3edca032a9709078036061854ca9cbe8.png b/dev-0/pictures/3edca032a9709078036061854ca9cbe8.png new file mode 100644 index 0000000..ccfc049 Binary files /dev/null and b/dev-0/pictures/3edca032a9709078036061854ca9cbe8.png differ diff --git a/dev-0/pictures/3f5c9e6f0028fcf3158a2361fadf2088.png b/dev-0/pictures/3f5c9e6f0028fcf3158a2361fadf2088.png new file mode 100644 index 0000000..8078c6e Binary files /dev/null and b/dev-0/pictures/3f5c9e6f0028fcf3158a2361fadf2088.png differ diff --git a/dev-0/pictures/3f7d9a6242593e84abb58882d4d777b9.png b/dev-0/pictures/3f7d9a6242593e84abb58882d4d777b9.png new file mode 100644 index 0000000..4beceaa Binary files /dev/null and b/dev-0/pictures/3f7d9a6242593e84abb58882d4d777b9.png differ diff --git a/dev-0/pictures/40c1a2411da5d48c90346ef27fc940b4.png b/dev-0/pictures/40c1a2411da5d48c90346ef27fc940b4.png new file mode 100644 index 0000000..e968fea Binary files /dev/null and b/dev-0/pictures/40c1a2411da5d48c90346ef27fc940b4.png differ diff --git a/dev-0/pictures/40ec243a43e33dabed9dbc04fdf975cb.png b/dev-0/pictures/40ec243a43e33dabed9dbc04fdf975cb.png new file mode 100644 index 0000000..f1c3a23 Binary files /dev/null and b/dev-0/pictures/40ec243a43e33dabed9dbc04fdf975cb.png differ diff --git a/dev-0/pictures/40f3a4f5e7bc8a7f3b119b3f2d2cd837.png b/dev-0/pictures/40f3a4f5e7bc8a7f3b119b3f2d2cd837.png new file mode 100644 index 0000000..e1c0e1a Binary files /dev/null and b/dev-0/pictures/40f3a4f5e7bc8a7f3b119b3f2d2cd837.png differ diff --git a/dev-0/pictures/41522e3a1c9ed513913f9f3459a6e943.png b/dev-0/pictures/41522e3a1c9ed513913f9f3459a6e943.png new file mode 100644 index 0000000..92cf4db Binary files /dev/null and b/dev-0/pictures/41522e3a1c9ed513913f9f3459a6e943.png differ diff --git a/dev-0/pictures/41a715effc9b278d769933578dfbb740.png b/dev-0/pictures/41a715effc9b278d769933578dfbb740.png new file mode 100644 index 0000000..fd17c73 Binary files /dev/null and b/dev-0/pictures/41a715effc9b278d769933578dfbb740.png differ diff --git a/dev-0/pictures/41bb920bdc428d04af3b083df916f44f.png b/dev-0/pictures/41bb920bdc428d04af3b083df916f44f.png new file mode 100644 index 0000000..6fd5ff6 Binary files /dev/null and b/dev-0/pictures/41bb920bdc428d04af3b083df916f44f.png differ diff --git a/dev-0/pictures/420bb0ebb131fc9aef3e41cadd3c67c9.png b/dev-0/pictures/420bb0ebb131fc9aef3e41cadd3c67c9.png new file mode 100644 index 0000000..8443d3d Binary files /dev/null and b/dev-0/pictures/420bb0ebb131fc9aef3e41cadd3c67c9.png differ diff --git a/dev-0/pictures/425b0513b601bf38fb0febd257d5a964.png b/dev-0/pictures/425b0513b601bf38fb0febd257d5a964.png new file mode 100644 index 0000000..71f43a4 Binary files /dev/null and b/dev-0/pictures/425b0513b601bf38fb0febd257d5a964.png differ diff --git a/dev-0/pictures/42cd32fdbf6dc7679382abb3116c6c65.png b/dev-0/pictures/42cd32fdbf6dc7679382abb3116c6c65.png new file mode 100644 index 0000000..13d5caf Binary files /dev/null and b/dev-0/pictures/42cd32fdbf6dc7679382abb3116c6c65.png differ diff --git a/dev-0/pictures/42d10311cf2907e013ce625e659ce86e.png b/dev-0/pictures/42d10311cf2907e013ce625e659ce86e.png new file mode 100644 index 0000000..d9b74cc Binary files /dev/null and b/dev-0/pictures/42d10311cf2907e013ce625e659ce86e.png differ diff --git a/dev-0/pictures/4342a03080d49629b463059108dc8780.png b/dev-0/pictures/4342a03080d49629b463059108dc8780.png new file mode 100644 index 0000000..3fe5352 Binary files /dev/null and b/dev-0/pictures/4342a03080d49629b463059108dc8780.png differ diff --git a/dev-0/pictures/43b0c1099e3bcd49d4a35cc254fd7c61.png b/dev-0/pictures/43b0c1099e3bcd49d4a35cc254fd7c61.png new file mode 100644 index 0000000..c3ad2d9 Binary files /dev/null and b/dev-0/pictures/43b0c1099e3bcd49d4a35cc254fd7c61.png differ diff --git a/dev-0/pictures/44235ebbd5dcf2cbcb6a9493edd471b1.png b/dev-0/pictures/44235ebbd5dcf2cbcb6a9493edd471b1.png new file mode 100644 index 0000000..1c9c2ce Binary files /dev/null and b/dev-0/pictures/44235ebbd5dcf2cbcb6a9493edd471b1.png differ diff --git a/dev-0/pictures/444a5bd2873ae169ff45b2b5fba82346.png b/dev-0/pictures/444a5bd2873ae169ff45b2b5fba82346.png new file mode 100644 index 0000000..cfab167 Binary files /dev/null and b/dev-0/pictures/444a5bd2873ae169ff45b2b5fba82346.png differ diff --git a/dev-0/pictures/44b8e5c369e274a66109c87efc6354ee.png b/dev-0/pictures/44b8e5c369e274a66109c87efc6354ee.png new file mode 100644 index 0000000..5401600 Binary files /dev/null and b/dev-0/pictures/44b8e5c369e274a66109c87efc6354ee.png differ diff --git a/dev-0/pictures/44d76b3f37f43c2f1faeaaae7f761d28.png b/dev-0/pictures/44d76b3f37f43c2f1faeaaae7f761d28.png new file mode 100644 index 0000000..ed1a64a Binary files /dev/null and b/dev-0/pictures/44d76b3f37f43c2f1faeaaae7f761d28.png differ diff --git a/dev-0/pictures/450b8052b89b8d42c49053f4acd9565a.png b/dev-0/pictures/450b8052b89b8d42c49053f4acd9565a.png new file mode 100644 index 0000000..1117f66 Binary files /dev/null and b/dev-0/pictures/450b8052b89b8d42c49053f4acd9565a.png differ diff --git a/dev-0/pictures/4556d11a8140f5cb5e1058ad04efafb4.png b/dev-0/pictures/4556d11a8140f5cb5e1058ad04efafb4.png new file mode 100644 index 0000000..46ba519 Binary files /dev/null and b/dev-0/pictures/4556d11a8140f5cb5e1058ad04efafb4.png differ diff --git a/dev-0/pictures/4599621221ba529aff05dda7c82a06a3.png b/dev-0/pictures/4599621221ba529aff05dda7c82a06a3.png new file mode 100644 index 0000000..e92945c Binary files /dev/null and b/dev-0/pictures/4599621221ba529aff05dda7c82a06a3.png differ diff --git a/dev-0/pictures/461852c956897b2cd1f14a7f0dade325.png b/dev-0/pictures/461852c956897b2cd1f14a7f0dade325.png new file mode 100644 index 0000000..68091fb Binary files /dev/null and b/dev-0/pictures/461852c956897b2cd1f14a7f0dade325.png differ diff --git a/dev-0/pictures/478c19d548d78425b1baadb4c5752bbf.png b/dev-0/pictures/478c19d548d78425b1baadb4c5752bbf.png new file mode 100644 index 0000000..a57d79f Binary files /dev/null and b/dev-0/pictures/478c19d548d78425b1baadb4c5752bbf.png differ diff --git a/dev-0/pictures/47b3e5a2fc73716ea22a31a7a40e5efd.png b/dev-0/pictures/47b3e5a2fc73716ea22a31a7a40e5efd.png new file mode 100644 index 0000000..97660fe Binary files /dev/null and b/dev-0/pictures/47b3e5a2fc73716ea22a31a7a40e5efd.png differ diff --git a/dev-0/pictures/47c201850f9e1d16db1975d3481e2604.png b/dev-0/pictures/47c201850f9e1d16db1975d3481e2604.png new file mode 100644 index 0000000..937d149 Binary files /dev/null and b/dev-0/pictures/47c201850f9e1d16db1975d3481e2604.png differ diff --git a/dev-0/pictures/47ecc68c7f22d3885b58e566fd7d113d.png b/dev-0/pictures/47ecc68c7f22d3885b58e566fd7d113d.png new file mode 100644 index 0000000..9d7e46a Binary files /dev/null and b/dev-0/pictures/47ecc68c7f22d3885b58e566fd7d113d.png differ diff --git a/dev-0/pictures/47fa7e84d321963ff6ed1c1e0c2b1561.png b/dev-0/pictures/47fa7e84d321963ff6ed1c1e0c2b1561.png new file mode 100644 index 0000000..5e22975 Binary files /dev/null and b/dev-0/pictures/47fa7e84d321963ff6ed1c1e0c2b1561.png differ diff --git a/dev-0/pictures/482505403ad67af036bc59c7347fec12.png b/dev-0/pictures/482505403ad67af036bc59c7347fec12.png new file mode 100644 index 0000000..eb8b527 Binary files /dev/null and b/dev-0/pictures/482505403ad67af036bc59c7347fec12.png differ diff --git a/dev-0/pictures/485f52e0e1cbd8af0f44dcd650660834.png b/dev-0/pictures/485f52e0e1cbd8af0f44dcd650660834.png new file mode 100644 index 0000000..8190438 Binary files /dev/null and b/dev-0/pictures/485f52e0e1cbd8af0f44dcd650660834.png differ diff --git a/dev-0/pictures/488f6d5c7dc23642b8a36a6763b9aefb.png b/dev-0/pictures/488f6d5c7dc23642b8a36a6763b9aefb.png new file mode 100644 index 0000000..64f87c2 Binary files /dev/null and b/dev-0/pictures/488f6d5c7dc23642b8a36a6763b9aefb.png differ diff --git a/dev-0/pictures/4904e577a9b26a8598ea52ca0064f421.png b/dev-0/pictures/4904e577a9b26a8598ea52ca0064f421.png new file mode 100644 index 0000000..9429c56 Binary files /dev/null and b/dev-0/pictures/4904e577a9b26a8598ea52ca0064f421.png differ diff --git a/dev-0/pictures/4953293510ab5586e9488c30ab789450.png b/dev-0/pictures/4953293510ab5586e9488c30ab789450.png new file mode 100644 index 0000000..121296f Binary files /dev/null and b/dev-0/pictures/4953293510ab5586e9488c30ab789450.png differ diff --git a/dev-0/pictures/49a4bda875d315063cf6c74784d2b494.png b/dev-0/pictures/49a4bda875d315063cf6c74784d2b494.png new file mode 100644 index 0000000..c1ea2bd Binary files /dev/null and b/dev-0/pictures/49a4bda875d315063cf6c74784d2b494.png differ diff --git a/dev-0/pictures/49b7b74d55f6eb2f2fc11fc8878ccb8d.png b/dev-0/pictures/49b7b74d55f6eb2f2fc11fc8878ccb8d.png new file mode 100644 index 0000000..e2fac58 Binary files /dev/null and b/dev-0/pictures/49b7b74d55f6eb2f2fc11fc8878ccb8d.png differ diff --git a/dev-0/pictures/4a2fa8f67f63009f78a873a3b83aa033.png b/dev-0/pictures/4a2fa8f67f63009f78a873a3b83aa033.png new file mode 100644 index 0000000..0311af4 Binary files /dev/null and b/dev-0/pictures/4a2fa8f67f63009f78a873a3b83aa033.png differ diff --git a/dev-0/pictures/4a59a2605549e0b0b2e3deec76516e38.png b/dev-0/pictures/4a59a2605549e0b0b2e3deec76516e38.png new file mode 100644 index 0000000..3ec206c Binary files /dev/null and b/dev-0/pictures/4a59a2605549e0b0b2e3deec76516e38.png differ diff --git a/dev-0/pictures/4a6f3d7fd1e832bb036103a6f16eb507.png b/dev-0/pictures/4a6f3d7fd1e832bb036103a6f16eb507.png new file mode 100644 index 0000000..e1eff3e Binary files /dev/null and b/dev-0/pictures/4a6f3d7fd1e832bb036103a6f16eb507.png differ diff --git a/dev-0/pictures/4b2517dbfa9239b09a84a0655eae37f7.png b/dev-0/pictures/4b2517dbfa9239b09a84a0655eae37f7.png new file mode 100644 index 0000000..2ebde9a Binary files /dev/null and b/dev-0/pictures/4b2517dbfa9239b09a84a0655eae37f7.png differ diff --git a/dev-0/pictures/4b2d52cd49e95106a14df868cc57120c.png b/dev-0/pictures/4b2d52cd49e95106a14df868cc57120c.png new file mode 100644 index 0000000..ab55823 Binary files /dev/null and b/dev-0/pictures/4b2d52cd49e95106a14df868cc57120c.png differ diff --git a/dev-0/pictures/4b4d37f917a1bd1206ae735e311a6cdf.png b/dev-0/pictures/4b4d37f917a1bd1206ae735e311a6cdf.png new file mode 100644 index 0000000..0b48e0e Binary files /dev/null and b/dev-0/pictures/4b4d37f917a1bd1206ae735e311a6cdf.png differ diff --git a/dev-0/pictures/4c8f35ba5be43dea9dd7a6fa95e55284.png b/dev-0/pictures/4c8f35ba5be43dea9dd7a6fa95e55284.png new file mode 100644 index 0000000..739dd93 Binary files /dev/null and b/dev-0/pictures/4c8f35ba5be43dea9dd7a6fa95e55284.png differ diff --git a/dev-0/pictures/4d0f41828e5de225e3c77e47cfb0bb27.png b/dev-0/pictures/4d0f41828e5de225e3c77e47cfb0bb27.png new file mode 100644 index 0000000..aadf62d Binary files /dev/null and b/dev-0/pictures/4d0f41828e5de225e3c77e47cfb0bb27.png differ diff --git a/dev-0/pictures/4d6de0d7fd003c3957dcfbbf855ba917.png b/dev-0/pictures/4d6de0d7fd003c3957dcfbbf855ba917.png new file mode 100644 index 0000000..61ca988 Binary files /dev/null and b/dev-0/pictures/4d6de0d7fd003c3957dcfbbf855ba917.png differ diff --git a/dev-0/pictures/4d9c19607aaf1b9ccf861e56535c5677.png b/dev-0/pictures/4d9c19607aaf1b9ccf861e56535c5677.png new file mode 100644 index 0000000..ffd51f7 Binary files /dev/null and b/dev-0/pictures/4d9c19607aaf1b9ccf861e56535c5677.png differ diff --git a/dev-0/pictures/4e2056117873ba09fcd2f9d05b059856.png b/dev-0/pictures/4e2056117873ba09fcd2f9d05b059856.png new file mode 100644 index 0000000..2db8123 Binary files /dev/null and b/dev-0/pictures/4e2056117873ba09fcd2f9d05b059856.png differ diff --git a/dev-0/pictures/4ea70510b6f969cc9217e4b8e96829e6.png b/dev-0/pictures/4ea70510b6f969cc9217e4b8e96829e6.png new file mode 100644 index 0000000..76e3ae4 Binary files /dev/null and b/dev-0/pictures/4ea70510b6f969cc9217e4b8e96829e6.png differ diff --git a/dev-0/pictures/4ee078bac231b178058f9d75d4bf7b22.png b/dev-0/pictures/4ee078bac231b178058f9d75d4bf7b22.png new file mode 100644 index 0000000..6ecae20 Binary files /dev/null and b/dev-0/pictures/4ee078bac231b178058f9d75d4bf7b22.png differ diff --git a/dev-0/pictures/4ef396819b6e928c37c58ed723265e3b.png b/dev-0/pictures/4ef396819b6e928c37c58ed723265e3b.png new file mode 100644 index 0000000..ab1ef28 Binary files /dev/null and b/dev-0/pictures/4ef396819b6e928c37c58ed723265e3b.png differ diff --git a/dev-0/pictures/4fcae8db40cea8906c922e855fe3b981.png b/dev-0/pictures/4fcae8db40cea8906c922e855fe3b981.png new file mode 100644 index 0000000..fdb747d Binary files /dev/null and b/dev-0/pictures/4fcae8db40cea8906c922e855fe3b981.png differ diff --git a/dev-0/pictures/503018898a6c5039cb34108d5ff049d4.png b/dev-0/pictures/503018898a6c5039cb34108d5ff049d4.png new file mode 100644 index 0000000..8223964 Binary files /dev/null and b/dev-0/pictures/503018898a6c5039cb34108d5ff049d4.png differ diff --git a/dev-0/pictures/505a57319cc9a4633a2ffb1815ef859e.png b/dev-0/pictures/505a57319cc9a4633a2ffb1815ef859e.png new file mode 100644 index 0000000..6e29bed Binary files /dev/null and b/dev-0/pictures/505a57319cc9a4633a2ffb1815ef859e.png differ diff --git a/dev-0/pictures/50d6f08b2de2e12d82e15040e14a4f2c.png b/dev-0/pictures/50d6f08b2de2e12d82e15040e14a4f2c.png new file mode 100644 index 0000000..e43c619 Binary files /dev/null and b/dev-0/pictures/50d6f08b2de2e12d82e15040e14a4f2c.png differ diff --git a/dev-0/pictures/50fe6508a2efd382452f9af51923bb23.png b/dev-0/pictures/50fe6508a2efd382452f9af51923bb23.png new file mode 100644 index 0000000..54b5bf7 Binary files /dev/null and b/dev-0/pictures/50fe6508a2efd382452f9af51923bb23.png differ diff --git a/dev-0/pictures/51726d7284f08a59d6c42327d1c79ef5.png b/dev-0/pictures/51726d7284f08a59d6c42327d1c79ef5.png new file mode 100644 index 0000000..14daab5 Binary files /dev/null and b/dev-0/pictures/51726d7284f08a59d6c42327d1c79ef5.png differ diff --git a/dev-0/pictures/51bd917fbed6ac826982e8996a69d89e.png b/dev-0/pictures/51bd917fbed6ac826982e8996a69d89e.png new file mode 100644 index 0000000..3b427b9 Binary files /dev/null and b/dev-0/pictures/51bd917fbed6ac826982e8996a69d89e.png differ diff --git a/dev-0/pictures/521dbd5d649c0e8eb2516d25f16406de.png b/dev-0/pictures/521dbd5d649c0e8eb2516d25f16406de.png new file mode 100644 index 0000000..fbeae2c Binary files /dev/null and b/dev-0/pictures/521dbd5d649c0e8eb2516d25f16406de.png differ diff --git a/dev-0/pictures/52b2ce8b33c1b00142a6268caff4c70f.png b/dev-0/pictures/52b2ce8b33c1b00142a6268caff4c70f.png new file mode 100644 index 0000000..16fafaf Binary files /dev/null and b/dev-0/pictures/52b2ce8b33c1b00142a6268caff4c70f.png differ diff --git a/dev-0/pictures/531cb5e7550ec315b8fca8f66dc88daa.png b/dev-0/pictures/531cb5e7550ec315b8fca8f66dc88daa.png new file mode 100644 index 0000000..def8e1c Binary files /dev/null and b/dev-0/pictures/531cb5e7550ec315b8fca8f66dc88daa.png differ diff --git a/dev-0/pictures/53b903f158d5eadc2023c67f4cc624c8.png b/dev-0/pictures/53b903f158d5eadc2023c67f4cc624c8.png new file mode 100644 index 0000000..d3a7994 Binary files /dev/null and b/dev-0/pictures/53b903f158d5eadc2023c67f4cc624c8.png differ diff --git a/dev-0/pictures/53e9c85d290dcac31797b38a0de75ee9.png b/dev-0/pictures/53e9c85d290dcac31797b38a0de75ee9.png new file mode 100644 index 0000000..953fd1d Binary files /dev/null and b/dev-0/pictures/53e9c85d290dcac31797b38a0de75ee9.png differ diff --git a/dev-0/pictures/54c0dd80ecbf375e4b1758175762ef77.png b/dev-0/pictures/54c0dd80ecbf375e4b1758175762ef77.png new file mode 100644 index 0000000..5e89452 Binary files /dev/null and b/dev-0/pictures/54c0dd80ecbf375e4b1758175762ef77.png differ diff --git a/dev-0/pictures/5569a4eb741560eb060f24f25eea6951.png b/dev-0/pictures/5569a4eb741560eb060f24f25eea6951.png new file mode 100644 index 0000000..bbe6b1e Binary files /dev/null and b/dev-0/pictures/5569a4eb741560eb060f24f25eea6951.png differ diff --git a/dev-0/pictures/560c02942403ea8aa18bb2202442deca.png b/dev-0/pictures/560c02942403ea8aa18bb2202442deca.png new file mode 100644 index 0000000..b20f39e Binary files /dev/null and b/dev-0/pictures/560c02942403ea8aa18bb2202442deca.png differ diff --git a/dev-0/pictures/571a8a7cd0e928236db9c1af7100d25c.png b/dev-0/pictures/571a8a7cd0e928236db9c1af7100d25c.png new file mode 100644 index 0000000..e5de283 Binary files /dev/null and b/dev-0/pictures/571a8a7cd0e928236db9c1af7100d25c.png differ diff --git a/dev-0/pictures/57a05a1cce57803c68eb3aa98f92ce44.png b/dev-0/pictures/57a05a1cce57803c68eb3aa98f92ce44.png new file mode 100644 index 0000000..55321d9 Binary files /dev/null and b/dev-0/pictures/57a05a1cce57803c68eb3aa98f92ce44.png differ diff --git a/dev-0/pictures/57cfa690adf053eaef31a8ff05c01894.png b/dev-0/pictures/57cfa690adf053eaef31a8ff05c01894.png new file mode 100644 index 0000000..6cdb34c Binary files /dev/null and b/dev-0/pictures/57cfa690adf053eaef31a8ff05c01894.png differ diff --git a/dev-0/pictures/598cfc79f6e87d6a259a859fdb0b95d4.png b/dev-0/pictures/598cfc79f6e87d6a259a859fdb0b95d4.png new file mode 100644 index 0000000..9b112c1 Binary files /dev/null and b/dev-0/pictures/598cfc79f6e87d6a259a859fdb0b95d4.png differ diff --git a/dev-0/pictures/59f9c07b2f992a007a56499bd56b0500.png b/dev-0/pictures/59f9c07b2f992a007a56499bd56b0500.png new file mode 100644 index 0000000..c0add39 Binary files /dev/null and b/dev-0/pictures/59f9c07b2f992a007a56499bd56b0500.png differ diff --git a/dev-0/pictures/5a2d4f6b3cfbc13d03b5d849174c2ac9.png b/dev-0/pictures/5a2d4f6b3cfbc13d03b5d849174c2ac9.png new file mode 100644 index 0000000..8d381c4 Binary files /dev/null and b/dev-0/pictures/5a2d4f6b3cfbc13d03b5d849174c2ac9.png differ diff --git a/dev-0/pictures/5a47546c099b015005e96ddda1a2e763.png b/dev-0/pictures/5a47546c099b015005e96ddda1a2e763.png new file mode 100644 index 0000000..55de37c Binary files /dev/null and b/dev-0/pictures/5a47546c099b015005e96ddda1a2e763.png differ diff --git a/dev-0/pictures/5a6ab13f226c17685753d00483dd0023.png b/dev-0/pictures/5a6ab13f226c17685753d00483dd0023.png new file mode 100644 index 0000000..391852a Binary files /dev/null and b/dev-0/pictures/5a6ab13f226c17685753d00483dd0023.png differ diff --git a/dev-0/pictures/5a85ff3e7f3a93e2dacaa53842904577.png b/dev-0/pictures/5a85ff3e7f3a93e2dacaa53842904577.png new file mode 100644 index 0000000..01dded1 Binary files /dev/null and b/dev-0/pictures/5a85ff3e7f3a93e2dacaa53842904577.png differ diff --git a/dev-0/pictures/5a933e62588a8cf37d3639ed6eecefd1.png b/dev-0/pictures/5a933e62588a8cf37d3639ed6eecefd1.png new file mode 100644 index 0000000..52d11fb Binary files /dev/null and b/dev-0/pictures/5a933e62588a8cf37d3639ed6eecefd1.png differ diff --git a/dev-0/pictures/5bba152b4961cb58ef9a04a1d9b1588f.png b/dev-0/pictures/5bba152b4961cb58ef9a04a1d9b1588f.png new file mode 100644 index 0000000..23657bb Binary files /dev/null and b/dev-0/pictures/5bba152b4961cb58ef9a04a1d9b1588f.png differ diff --git a/dev-0/pictures/5bc37202d6bf21614956b23ff123a62a.png b/dev-0/pictures/5bc37202d6bf21614956b23ff123a62a.png new file mode 100644 index 0000000..1c5b9a7 Binary files /dev/null and b/dev-0/pictures/5bc37202d6bf21614956b23ff123a62a.png differ diff --git a/dev-0/pictures/5bdc13ff47329c7ebae4a0112fc04be3.png b/dev-0/pictures/5bdc13ff47329c7ebae4a0112fc04be3.png new file mode 100644 index 0000000..2ed1887 Binary files /dev/null and b/dev-0/pictures/5bdc13ff47329c7ebae4a0112fc04be3.png differ diff --git a/dev-0/pictures/5be725256f027d6a0c97f18aeeaaac03.png b/dev-0/pictures/5be725256f027d6a0c97f18aeeaaac03.png new file mode 100644 index 0000000..b46ae9e Binary files /dev/null and b/dev-0/pictures/5be725256f027d6a0c97f18aeeaaac03.png differ diff --git a/dev-0/pictures/5c1682f5cb148a246ad0f8520ebcdbce.png b/dev-0/pictures/5c1682f5cb148a246ad0f8520ebcdbce.png new file mode 100644 index 0000000..510c3af Binary files /dev/null and b/dev-0/pictures/5c1682f5cb148a246ad0f8520ebcdbce.png differ diff --git a/dev-0/pictures/5c779887155ed113c51df7324dbbc7d7.png b/dev-0/pictures/5c779887155ed113c51df7324dbbc7d7.png new file mode 100644 index 0000000..1b0fbcb Binary files /dev/null and b/dev-0/pictures/5c779887155ed113c51df7324dbbc7d7.png differ diff --git a/dev-0/pictures/5c80bd9972c556ab084c93544bed7dfa.png b/dev-0/pictures/5c80bd9972c556ab084c93544bed7dfa.png new file mode 100644 index 0000000..af6f65f Binary files /dev/null and b/dev-0/pictures/5c80bd9972c556ab084c93544bed7dfa.png differ diff --git a/dev-0/pictures/5cb3073e31316f3b7bc0a0c68705e7bf.png b/dev-0/pictures/5cb3073e31316f3b7bc0a0c68705e7bf.png new file mode 100644 index 0000000..85f1568 Binary files /dev/null and b/dev-0/pictures/5cb3073e31316f3b7bc0a0c68705e7bf.png differ diff --git a/dev-0/pictures/5cbcabd1dcfb2b35d8e9cf76fa192924.png b/dev-0/pictures/5cbcabd1dcfb2b35d8e9cf76fa192924.png new file mode 100644 index 0000000..b818a10 Binary files /dev/null and b/dev-0/pictures/5cbcabd1dcfb2b35d8e9cf76fa192924.png differ diff --git a/dev-0/pictures/5dd9b8c3af7a84e75a1a2f0034bd2576.png b/dev-0/pictures/5dd9b8c3af7a84e75a1a2f0034bd2576.png new file mode 100644 index 0000000..53fd456 Binary files /dev/null and b/dev-0/pictures/5dd9b8c3af7a84e75a1a2f0034bd2576.png differ diff --git a/dev-0/pictures/5e28dac79b08860fb2e9ea1aae51c834.png b/dev-0/pictures/5e28dac79b08860fb2e9ea1aae51c834.png new file mode 100644 index 0000000..51d0a25 Binary files /dev/null and b/dev-0/pictures/5e28dac79b08860fb2e9ea1aae51c834.png differ diff --git a/dev-0/pictures/5e6bd74bc656db701fe472263cb0c1b5.png b/dev-0/pictures/5e6bd74bc656db701fe472263cb0c1b5.png new file mode 100644 index 0000000..dc5dc0f Binary files /dev/null and b/dev-0/pictures/5e6bd74bc656db701fe472263cb0c1b5.png differ diff --git a/dev-0/pictures/5ebb42ab4f1eec67e5f8acdd5339f332.png b/dev-0/pictures/5ebb42ab4f1eec67e5f8acdd5339f332.png new file mode 100644 index 0000000..f47dd30 Binary files /dev/null and b/dev-0/pictures/5ebb42ab4f1eec67e5f8acdd5339f332.png differ diff --git a/dev-0/pictures/5f7f8df4e993717b885b577aa561d5cd.png b/dev-0/pictures/5f7f8df4e993717b885b577aa561d5cd.png new file mode 100644 index 0000000..eae26a6 Binary files /dev/null and b/dev-0/pictures/5f7f8df4e993717b885b577aa561d5cd.png differ diff --git a/dev-0/pictures/5f8e394c971a06b0c507624eafbb2245.png b/dev-0/pictures/5f8e394c971a06b0c507624eafbb2245.png new file mode 100644 index 0000000..b7f8932 Binary files /dev/null and b/dev-0/pictures/5f8e394c971a06b0c507624eafbb2245.png differ diff --git a/dev-0/pictures/5fa227fdcddc91303db01a048efc48e6.png b/dev-0/pictures/5fa227fdcddc91303db01a048efc48e6.png new file mode 100644 index 0000000..405af1f Binary files /dev/null and b/dev-0/pictures/5fa227fdcddc91303db01a048efc48e6.png differ diff --git a/dev-0/pictures/60cab58384e0f8ac662c5ecad3f3f70e.png b/dev-0/pictures/60cab58384e0f8ac662c5ecad3f3f70e.png new file mode 100644 index 0000000..4bdc1ad Binary files /dev/null and b/dev-0/pictures/60cab58384e0f8ac662c5ecad3f3f70e.png differ diff --git a/dev-0/pictures/613944716f82618947c412a0c825124e.png b/dev-0/pictures/613944716f82618947c412a0c825124e.png new file mode 100644 index 0000000..5fbd3e4 Binary files /dev/null and b/dev-0/pictures/613944716f82618947c412a0c825124e.png differ diff --git a/dev-0/pictures/61f5dc23d191526b8f3eecf0ba3c4c5e.png b/dev-0/pictures/61f5dc23d191526b8f3eecf0ba3c4c5e.png new file mode 100644 index 0000000..0cd9524 Binary files /dev/null and b/dev-0/pictures/61f5dc23d191526b8f3eecf0ba3c4c5e.png differ diff --git a/dev-0/pictures/63924327acb4049a363d74df60c5eb50.png b/dev-0/pictures/63924327acb4049a363d74df60c5eb50.png new file mode 100644 index 0000000..1df6b3e Binary files /dev/null and b/dev-0/pictures/63924327acb4049a363d74df60c5eb50.png differ diff --git a/dev-0/pictures/64b87fb2935ace67b2f9aaa171f5dcc7.png b/dev-0/pictures/64b87fb2935ace67b2f9aaa171f5dcc7.png new file mode 100644 index 0000000..d8a3f43 Binary files /dev/null and b/dev-0/pictures/64b87fb2935ace67b2f9aaa171f5dcc7.png differ diff --git a/dev-0/pictures/64d75ec6915437996f838a42d04e0d24.png b/dev-0/pictures/64d75ec6915437996f838a42d04e0d24.png new file mode 100644 index 0000000..613875f Binary files /dev/null and b/dev-0/pictures/64d75ec6915437996f838a42d04e0d24.png differ diff --git a/dev-0/pictures/64fd820bc70303f571a8d1fb2cd4b80a.png b/dev-0/pictures/64fd820bc70303f571a8d1fb2cd4b80a.png new file mode 100644 index 0000000..e0f0f8e Binary files /dev/null and b/dev-0/pictures/64fd820bc70303f571a8d1fb2cd4b80a.png differ diff --git a/dev-0/pictures/656106e0d509bdeb4e487bdd1aa95431.png b/dev-0/pictures/656106e0d509bdeb4e487bdd1aa95431.png new file mode 100644 index 0000000..a2d49f5 Binary files /dev/null and b/dev-0/pictures/656106e0d509bdeb4e487bdd1aa95431.png differ diff --git a/dev-0/pictures/65a1e842a5875bade0d2f50098d4ed7d.png b/dev-0/pictures/65a1e842a5875bade0d2f50098d4ed7d.png new file mode 100644 index 0000000..ba5c867 Binary files /dev/null and b/dev-0/pictures/65a1e842a5875bade0d2f50098d4ed7d.png differ diff --git a/dev-0/pictures/6650a63002be9b79f6431e972bea0d13.png b/dev-0/pictures/6650a63002be9b79f6431e972bea0d13.png new file mode 100644 index 0000000..c013662 Binary files /dev/null and b/dev-0/pictures/6650a63002be9b79f6431e972bea0d13.png differ diff --git a/dev-0/pictures/67039221bbcda7ee3eeabe12bf1baeb3.png b/dev-0/pictures/67039221bbcda7ee3eeabe12bf1baeb3.png new file mode 100644 index 0000000..98358be Binary files /dev/null and b/dev-0/pictures/67039221bbcda7ee3eeabe12bf1baeb3.png differ diff --git a/dev-0/pictures/67ae5ff3983b6a3242b863fcbc4e784f.png b/dev-0/pictures/67ae5ff3983b6a3242b863fcbc4e784f.png new file mode 100644 index 0000000..45b927e Binary files /dev/null and b/dev-0/pictures/67ae5ff3983b6a3242b863fcbc4e784f.png differ diff --git a/dev-0/pictures/68108ba2f5bcf0e888241187fd447937.png b/dev-0/pictures/68108ba2f5bcf0e888241187fd447937.png new file mode 100644 index 0000000..3e9c38f Binary files /dev/null and b/dev-0/pictures/68108ba2f5bcf0e888241187fd447937.png differ diff --git a/dev-0/pictures/68b5b42266adcbe03f52e70dc842acdf.png b/dev-0/pictures/68b5b42266adcbe03f52e70dc842acdf.png new file mode 100644 index 0000000..0457f50 Binary files /dev/null and b/dev-0/pictures/68b5b42266adcbe03f52e70dc842acdf.png differ diff --git a/dev-0/pictures/691f5fc2204cf59d5ad6b6d6b4ed4730.png b/dev-0/pictures/691f5fc2204cf59d5ad6b6d6b4ed4730.png new file mode 100644 index 0000000..f6ff096 Binary files /dev/null and b/dev-0/pictures/691f5fc2204cf59d5ad6b6d6b4ed4730.png differ diff --git a/dev-0/pictures/69671bf028e98378c6563bb2a3c3618c.png b/dev-0/pictures/69671bf028e98378c6563bb2a3c3618c.png new file mode 100644 index 0000000..9605c12 Binary files /dev/null and b/dev-0/pictures/69671bf028e98378c6563bb2a3c3618c.png differ diff --git a/dev-0/pictures/69b124af96e7df0a6c9f147a1965db48.png b/dev-0/pictures/69b124af96e7df0a6c9f147a1965db48.png new file mode 100644 index 0000000..efdbaa7 Binary files /dev/null and b/dev-0/pictures/69b124af96e7df0a6c9f147a1965db48.png differ diff --git a/dev-0/pictures/69fd7e1629030c9bcc0526341a7e4bb6.png b/dev-0/pictures/69fd7e1629030c9bcc0526341a7e4bb6.png new file mode 100644 index 0000000..8d28392 Binary files /dev/null and b/dev-0/pictures/69fd7e1629030c9bcc0526341a7e4bb6.png differ diff --git a/dev-0/pictures/6a38ef7c0bc72ffe4a9b0e9bcb38e2c8.png b/dev-0/pictures/6a38ef7c0bc72ffe4a9b0e9bcb38e2c8.png new file mode 100644 index 0000000..cbc15cf Binary files /dev/null and b/dev-0/pictures/6a38ef7c0bc72ffe4a9b0e9bcb38e2c8.png differ diff --git a/dev-0/pictures/6a83c7e7d8c34aaf158d4c407830dfb2.png b/dev-0/pictures/6a83c7e7d8c34aaf158d4c407830dfb2.png new file mode 100644 index 0000000..60f4ff1 Binary files /dev/null and b/dev-0/pictures/6a83c7e7d8c34aaf158d4c407830dfb2.png differ diff --git a/dev-0/pictures/6acb2048bc3e118f3958e30f4fc546d3.png b/dev-0/pictures/6acb2048bc3e118f3958e30f4fc546d3.png new file mode 100644 index 0000000..9bd4515 Binary files /dev/null and b/dev-0/pictures/6acb2048bc3e118f3958e30f4fc546d3.png differ diff --git a/dev-0/pictures/6ae6f662f8df6681d1310cfdc2961f6a.png b/dev-0/pictures/6ae6f662f8df6681d1310cfdc2961f6a.png new file mode 100644 index 0000000..17d8b0f Binary files /dev/null and b/dev-0/pictures/6ae6f662f8df6681d1310cfdc2961f6a.png differ diff --git a/dev-0/pictures/6ae9ed94a47375a26226b8b1317c8fef.png b/dev-0/pictures/6ae9ed94a47375a26226b8b1317c8fef.png new file mode 100644 index 0000000..fd18501 Binary files /dev/null and b/dev-0/pictures/6ae9ed94a47375a26226b8b1317c8fef.png differ diff --git a/dev-0/pictures/6b79996c05c032bb7d3e9ba8318b9886.png b/dev-0/pictures/6b79996c05c032bb7d3e9ba8318b9886.png new file mode 100644 index 0000000..afd70fc Binary files /dev/null and b/dev-0/pictures/6b79996c05c032bb7d3e9ba8318b9886.png differ diff --git a/dev-0/pictures/6b96b04c8c23deefc80fe78f6c142842.png b/dev-0/pictures/6b96b04c8c23deefc80fe78f6c142842.png new file mode 100644 index 0000000..51c5eaa Binary files /dev/null and b/dev-0/pictures/6b96b04c8c23deefc80fe78f6c142842.png differ diff --git a/dev-0/pictures/6bca4f7ec4ebcc4c4844e45f892b3d4e.png b/dev-0/pictures/6bca4f7ec4ebcc4c4844e45f892b3d4e.png new file mode 100644 index 0000000..0f8ee6a Binary files /dev/null and b/dev-0/pictures/6bca4f7ec4ebcc4c4844e45f892b3d4e.png differ diff --git a/dev-0/pictures/6bf1bfec4863e41aaefdc7e0f961a5b6.png b/dev-0/pictures/6bf1bfec4863e41aaefdc7e0f961a5b6.png new file mode 100644 index 0000000..57f6ce0 Binary files /dev/null and b/dev-0/pictures/6bf1bfec4863e41aaefdc7e0f961a5b6.png differ diff --git a/dev-0/pictures/6c67e97a05a6d5f2e5753ff26905943d.png b/dev-0/pictures/6c67e97a05a6d5f2e5753ff26905943d.png new file mode 100644 index 0000000..86ed931 Binary files /dev/null and b/dev-0/pictures/6c67e97a05a6d5f2e5753ff26905943d.png differ diff --git a/dev-0/pictures/6cb7aed583f35058a2d8339844def903.png b/dev-0/pictures/6cb7aed583f35058a2d8339844def903.png new file mode 100644 index 0000000..cb75dee Binary files /dev/null and b/dev-0/pictures/6cb7aed583f35058a2d8339844def903.png differ diff --git a/dev-0/pictures/6cb895867ea509caf4063871942d199d.png b/dev-0/pictures/6cb895867ea509caf4063871942d199d.png new file mode 100644 index 0000000..d21ba3a Binary files /dev/null and b/dev-0/pictures/6cb895867ea509caf4063871942d199d.png differ diff --git a/dev-0/pictures/6d2b986a1a45d85340f0dbd435b74243.png b/dev-0/pictures/6d2b986a1a45d85340f0dbd435b74243.png new file mode 100644 index 0000000..2465e69 Binary files /dev/null and b/dev-0/pictures/6d2b986a1a45d85340f0dbd435b74243.png differ diff --git a/dev-0/pictures/6d6478dd0cfb6cd97938bfdcce215d26.png b/dev-0/pictures/6d6478dd0cfb6cd97938bfdcce215d26.png new file mode 100644 index 0000000..68fb9f8 Binary files /dev/null and b/dev-0/pictures/6d6478dd0cfb6cd97938bfdcce215d26.png differ diff --git a/dev-0/pictures/6ea5d224708093def74857fe5e5baf43.png b/dev-0/pictures/6ea5d224708093def74857fe5e5baf43.png new file mode 100644 index 0000000..a692343 Binary files /dev/null and b/dev-0/pictures/6ea5d224708093def74857fe5e5baf43.png differ diff --git a/dev-0/pictures/6ef948c4b96e43665fc82060daa81026.png b/dev-0/pictures/6ef948c4b96e43665fc82060daa81026.png new file mode 100644 index 0000000..a1eef24 Binary files /dev/null and b/dev-0/pictures/6ef948c4b96e43665fc82060daa81026.png differ diff --git a/dev-0/pictures/6f5b73adfc5265748f5ad3d77ec69022.png b/dev-0/pictures/6f5b73adfc5265748f5ad3d77ec69022.png new file mode 100644 index 0000000..27ab559 Binary files /dev/null and b/dev-0/pictures/6f5b73adfc5265748f5ad3d77ec69022.png differ diff --git a/dev-0/pictures/6fe401956f96bad77a7358d3bf49a367.png b/dev-0/pictures/6fe401956f96bad77a7358d3bf49a367.png new file mode 100644 index 0000000..c770d03 Binary files /dev/null and b/dev-0/pictures/6fe401956f96bad77a7358d3bf49a367.png differ diff --git a/dev-0/pictures/7054054c10bd1a4169ce4e992c7b105b.png b/dev-0/pictures/7054054c10bd1a4169ce4e992c7b105b.png new file mode 100644 index 0000000..33ba5ef Binary files /dev/null and b/dev-0/pictures/7054054c10bd1a4169ce4e992c7b105b.png differ diff --git a/dev-0/pictures/7073b1b4b598446db2de398f5721e1bf.png b/dev-0/pictures/7073b1b4b598446db2de398f5721e1bf.png new file mode 100644 index 0000000..5da1828 Binary files /dev/null and b/dev-0/pictures/7073b1b4b598446db2de398f5721e1bf.png differ diff --git a/dev-0/pictures/70da270ad576b7e180979cda8ece4506.png b/dev-0/pictures/70da270ad576b7e180979cda8ece4506.png new file mode 100644 index 0000000..ad6e0d0 Binary files /dev/null and b/dev-0/pictures/70da270ad576b7e180979cda8ece4506.png differ diff --git a/dev-0/pictures/718a2fbfb151150bf38d5cdc60fc2866.png b/dev-0/pictures/718a2fbfb151150bf38d5cdc60fc2866.png new file mode 100644 index 0000000..9d1b12b Binary files /dev/null and b/dev-0/pictures/718a2fbfb151150bf38d5cdc60fc2866.png differ diff --git a/dev-0/pictures/7211f6cc25d8cf9035a6df6a8d042720.png b/dev-0/pictures/7211f6cc25d8cf9035a6df6a8d042720.png new file mode 100644 index 0000000..e8adb4e Binary files /dev/null and b/dev-0/pictures/7211f6cc25d8cf9035a6df6a8d042720.png differ diff --git a/dev-0/pictures/721ad44ed516c571e65a73b093f46df8.png b/dev-0/pictures/721ad44ed516c571e65a73b093f46df8.png new file mode 100644 index 0000000..8757023 Binary files /dev/null and b/dev-0/pictures/721ad44ed516c571e65a73b093f46df8.png differ diff --git a/dev-0/pictures/7222b418f39ab5b54fd6a86822a3f3c4.png b/dev-0/pictures/7222b418f39ab5b54fd6a86822a3f3c4.png new file mode 100644 index 0000000..782e1bf Binary files /dev/null and b/dev-0/pictures/7222b418f39ab5b54fd6a86822a3f3c4.png differ diff --git a/dev-0/pictures/7227794e34e1d480c9a4c44a48d1400d.png b/dev-0/pictures/7227794e34e1d480c9a4c44a48d1400d.png new file mode 100644 index 0000000..6475d47 Binary files /dev/null and b/dev-0/pictures/7227794e34e1d480c9a4c44a48d1400d.png differ diff --git a/dev-0/pictures/72a11f7ad7e326c0a9622841fc0ef57f.png b/dev-0/pictures/72a11f7ad7e326c0a9622841fc0ef57f.png new file mode 100644 index 0000000..f0c4cba Binary files /dev/null and b/dev-0/pictures/72a11f7ad7e326c0a9622841fc0ef57f.png differ diff --git a/dev-0/pictures/72c48b3cbb5873501dd754a4f44a918c.png b/dev-0/pictures/72c48b3cbb5873501dd754a4f44a918c.png new file mode 100644 index 0000000..e1beb23 Binary files /dev/null and b/dev-0/pictures/72c48b3cbb5873501dd754a4f44a918c.png differ diff --git a/dev-0/pictures/72dabdbe035d07d2b7a69d70386f4fdf.png b/dev-0/pictures/72dabdbe035d07d2b7a69d70386f4fdf.png new file mode 100644 index 0000000..071e39b Binary files /dev/null and b/dev-0/pictures/72dabdbe035d07d2b7a69d70386f4fdf.png differ diff --git a/dev-0/pictures/72dc2481e6438b4f1c3307eb5ec633cd.png b/dev-0/pictures/72dc2481e6438b4f1c3307eb5ec633cd.png new file mode 100644 index 0000000..e954c05 Binary files /dev/null and b/dev-0/pictures/72dc2481e6438b4f1c3307eb5ec633cd.png differ diff --git a/dev-0/pictures/7383238516352fe864015bac54c7d325.png b/dev-0/pictures/7383238516352fe864015bac54c7d325.png new file mode 100644 index 0000000..24dd469 Binary files /dev/null and b/dev-0/pictures/7383238516352fe864015bac54c7d325.png differ diff --git a/dev-0/pictures/73f0c43e3f0d006acf11c5df8ac4f4e8.png b/dev-0/pictures/73f0c43e3f0d006acf11c5df8ac4f4e8.png new file mode 100644 index 0000000..4cf7b20 Binary files /dev/null and b/dev-0/pictures/73f0c43e3f0d006acf11c5df8ac4f4e8.png differ diff --git a/dev-0/pictures/74ebf3e50331508270fab2127cd7fccc.png b/dev-0/pictures/74ebf3e50331508270fab2127cd7fccc.png new file mode 100644 index 0000000..c167db0 Binary files /dev/null and b/dev-0/pictures/74ebf3e50331508270fab2127cd7fccc.png differ diff --git a/dev-0/pictures/75afb6d46733ffb579767c399b3b8b4b.png b/dev-0/pictures/75afb6d46733ffb579767c399b3b8b4b.png new file mode 100644 index 0000000..d3b8149 Binary files /dev/null and b/dev-0/pictures/75afb6d46733ffb579767c399b3b8b4b.png differ diff --git a/dev-0/pictures/75cd560ebebb86bafe29eef4af3a04b0.png b/dev-0/pictures/75cd560ebebb86bafe29eef4af3a04b0.png new file mode 100644 index 0000000..f3bc4a4 Binary files /dev/null and b/dev-0/pictures/75cd560ebebb86bafe29eef4af3a04b0.png differ diff --git a/dev-0/pictures/7655ce76bdbbb590e4885a192cfc7d64.png b/dev-0/pictures/7655ce76bdbbb590e4885a192cfc7d64.png new file mode 100644 index 0000000..d64c228 Binary files /dev/null and b/dev-0/pictures/7655ce76bdbbb590e4885a192cfc7d64.png differ diff --git a/dev-0/pictures/7677764b3efc04ff1fe1c442c3394595.png b/dev-0/pictures/7677764b3efc04ff1fe1c442c3394595.png new file mode 100644 index 0000000..ac0f990 Binary files /dev/null and b/dev-0/pictures/7677764b3efc04ff1fe1c442c3394595.png differ diff --git a/dev-0/pictures/7695d72bd0fc0a80cba83c9f783460c1.png b/dev-0/pictures/7695d72bd0fc0a80cba83c9f783460c1.png new file mode 100644 index 0000000..f5cc119 Binary files /dev/null and b/dev-0/pictures/7695d72bd0fc0a80cba83c9f783460c1.png differ diff --git a/dev-0/pictures/779689fc807732346768d23317884d58.png b/dev-0/pictures/779689fc807732346768d23317884d58.png new file mode 100644 index 0000000..1bd2a82 Binary files /dev/null and b/dev-0/pictures/779689fc807732346768d23317884d58.png differ diff --git a/dev-0/pictures/77a5b2d3dbf700d9bdfeff0888e9d7d3.png b/dev-0/pictures/77a5b2d3dbf700d9bdfeff0888e9d7d3.png new file mode 100644 index 0000000..a7f69b0 Binary files /dev/null and b/dev-0/pictures/77a5b2d3dbf700d9bdfeff0888e9d7d3.png differ diff --git a/dev-0/pictures/786e5d54cc914a57edde4ad3bb66ccc7.png b/dev-0/pictures/786e5d54cc914a57edde4ad3bb66ccc7.png new file mode 100644 index 0000000..ed9cec1 Binary files /dev/null and b/dev-0/pictures/786e5d54cc914a57edde4ad3bb66ccc7.png differ diff --git a/dev-0/pictures/78eca7838ef86cfb592cd0f431ffc4c5.png b/dev-0/pictures/78eca7838ef86cfb592cd0f431ffc4c5.png new file mode 100644 index 0000000..9a877bd Binary files /dev/null and b/dev-0/pictures/78eca7838ef86cfb592cd0f431ffc4c5.png differ diff --git a/dev-0/pictures/78f8d8977bc462f9e002aa1f49ececde.png b/dev-0/pictures/78f8d8977bc462f9e002aa1f49ececde.png new file mode 100644 index 0000000..c4c84e1 Binary files /dev/null and b/dev-0/pictures/78f8d8977bc462f9e002aa1f49ececde.png differ diff --git a/dev-0/pictures/799d9003d937d19396139cf42d410f55.png b/dev-0/pictures/799d9003d937d19396139cf42d410f55.png new file mode 100644 index 0000000..357c648 Binary files /dev/null and b/dev-0/pictures/799d9003d937d19396139cf42d410f55.png differ diff --git a/dev-0/pictures/7a5e6ee186e78fb84eea02cce70432c7.png b/dev-0/pictures/7a5e6ee186e78fb84eea02cce70432c7.png new file mode 100644 index 0000000..16700e8 Binary files /dev/null and b/dev-0/pictures/7a5e6ee186e78fb84eea02cce70432c7.png differ diff --git a/dev-0/pictures/7b601b953e900d8384dd2ea69d19d79c.png b/dev-0/pictures/7b601b953e900d8384dd2ea69d19d79c.png new file mode 100644 index 0000000..c35c0fa Binary files /dev/null and b/dev-0/pictures/7b601b953e900d8384dd2ea69d19d79c.png differ diff --git a/dev-0/pictures/7b7bdbdb75ef1c65bfca07c5956f212e.png b/dev-0/pictures/7b7bdbdb75ef1c65bfca07c5956f212e.png new file mode 100644 index 0000000..48979e2 Binary files /dev/null and b/dev-0/pictures/7b7bdbdb75ef1c65bfca07c5956f212e.png differ diff --git a/dev-0/pictures/7c933a1e134e5d170b516e91691ca496.png b/dev-0/pictures/7c933a1e134e5d170b516e91691ca496.png new file mode 100644 index 0000000..1bc38d3 Binary files /dev/null and b/dev-0/pictures/7c933a1e134e5d170b516e91691ca496.png differ diff --git a/dev-0/pictures/7cc096cb0b8cdac6d3c369f9adb4f588.png b/dev-0/pictures/7cc096cb0b8cdac6d3c369f9adb4f588.png new file mode 100644 index 0000000..0090c1f Binary files /dev/null and b/dev-0/pictures/7cc096cb0b8cdac6d3c369f9adb4f588.png differ diff --git a/dev-0/pictures/7d45e09842588d130d11adf8b0c7ca2e.png b/dev-0/pictures/7d45e09842588d130d11adf8b0c7ca2e.png new file mode 100644 index 0000000..ebc2de7 Binary files /dev/null and b/dev-0/pictures/7d45e09842588d130d11adf8b0c7ca2e.png differ diff --git a/dev-0/pictures/7d7f8a91306cd6f1f2d375088e24c0c2.png b/dev-0/pictures/7d7f8a91306cd6f1f2d375088e24c0c2.png new file mode 100644 index 0000000..100cf56 Binary files /dev/null and b/dev-0/pictures/7d7f8a91306cd6f1f2d375088e24c0c2.png differ diff --git a/dev-0/pictures/7d846ee3928ab2cf40e74bf9bb3cd4fe.png b/dev-0/pictures/7d846ee3928ab2cf40e74bf9bb3cd4fe.png new file mode 100644 index 0000000..53c6900 Binary files /dev/null and b/dev-0/pictures/7d846ee3928ab2cf40e74bf9bb3cd4fe.png differ diff --git a/dev-0/pictures/7e07abb338d1b7ea7c8e800bb89c443b.png b/dev-0/pictures/7e07abb338d1b7ea7c8e800bb89c443b.png new file mode 100644 index 0000000..87610a0 Binary files /dev/null and b/dev-0/pictures/7e07abb338d1b7ea7c8e800bb89c443b.png differ diff --git a/dev-0/pictures/7e3b2447ecbc916dbb0d848bdde97158.png b/dev-0/pictures/7e3b2447ecbc916dbb0d848bdde97158.png new file mode 100644 index 0000000..7f27607 Binary files /dev/null and b/dev-0/pictures/7e3b2447ecbc916dbb0d848bdde97158.png differ diff --git a/dev-0/pictures/7ed7dde9138274a849b3af64ec00dae6.png b/dev-0/pictures/7ed7dde9138274a849b3af64ec00dae6.png new file mode 100644 index 0000000..b9d9275 Binary files /dev/null and b/dev-0/pictures/7ed7dde9138274a849b3af64ec00dae6.png differ diff --git a/dev-0/pictures/7eda40a736bd85f14fbeaf534fee6c93.png b/dev-0/pictures/7eda40a736bd85f14fbeaf534fee6c93.png new file mode 100644 index 0000000..592dc7e Binary files /dev/null and b/dev-0/pictures/7eda40a736bd85f14fbeaf534fee6c93.png differ diff --git a/dev-0/pictures/7f378830ee8fa182dbb99b6eb5d5bfbd.png b/dev-0/pictures/7f378830ee8fa182dbb99b6eb5d5bfbd.png new file mode 100644 index 0000000..1e61e7e Binary files /dev/null and b/dev-0/pictures/7f378830ee8fa182dbb99b6eb5d5bfbd.png differ diff --git a/dev-0/pictures/7f994bc42d0f525c65c4f03dc4476527.png b/dev-0/pictures/7f994bc42d0f525c65c4f03dc4476527.png new file mode 100644 index 0000000..43d188c Binary files /dev/null and b/dev-0/pictures/7f994bc42d0f525c65c4f03dc4476527.png differ diff --git a/dev-0/pictures/7fc3f954540e9aba650ca4476c6760e9.png b/dev-0/pictures/7fc3f954540e9aba650ca4476c6760e9.png new file mode 100644 index 0000000..db4292f Binary files /dev/null and b/dev-0/pictures/7fc3f954540e9aba650ca4476c6760e9.png differ diff --git a/dev-0/pictures/81620cc8677986007f4ddfbc1d366ee2.png b/dev-0/pictures/81620cc8677986007f4ddfbc1d366ee2.png new file mode 100644 index 0000000..8ffb69e Binary files /dev/null and b/dev-0/pictures/81620cc8677986007f4ddfbc1d366ee2.png differ diff --git a/dev-0/pictures/824855a1f2d096ea5669a7f493926b79.png b/dev-0/pictures/824855a1f2d096ea5669a7f493926b79.png new file mode 100644 index 0000000..80ba98f Binary files /dev/null and b/dev-0/pictures/824855a1f2d096ea5669a7f493926b79.png differ diff --git a/dev-0/pictures/825fc86b8055d2eebd20faae425b071b.png b/dev-0/pictures/825fc86b8055d2eebd20faae425b071b.png new file mode 100644 index 0000000..49d64b8 Binary files /dev/null and b/dev-0/pictures/825fc86b8055d2eebd20faae425b071b.png differ diff --git a/dev-0/pictures/8285adf74cbb43807882b45a5416bc13.png b/dev-0/pictures/8285adf74cbb43807882b45a5416bc13.png new file mode 100644 index 0000000..a66f6b7 Binary files /dev/null and b/dev-0/pictures/8285adf74cbb43807882b45a5416bc13.png differ diff --git a/dev-0/pictures/82e0ae68027b17da7fa82a846df5763f.png b/dev-0/pictures/82e0ae68027b17da7fa82a846df5763f.png new file mode 100644 index 0000000..0f1cf81 Binary files /dev/null and b/dev-0/pictures/82e0ae68027b17da7fa82a846df5763f.png differ diff --git a/dev-0/pictures/830a2a0c4dfc5598e07f03a298ed8297.png b/dev-0/pictures/830a2a0c4dfc5598e07f03a298ed8297.png new file mode 100644 index 0000000..38518d4 Binary files /dev/null and b/dev-0/pictures/830a2a0c4dfc5598e07f03a298ed8297.png differ diff --git a/dev-0/pictures/83394a998aab8b8a652caad3a9e442ab.png b/dev-0/pictures/83394a998aab8b8a652caad3a9e442ab.png new file mode 100644 index 0000000..563c5a1 Binary files /dev/null and b/dev-0/pictures/83394a998aab8b8a652caad3a9e442ab.png differ diff --git a/dev-0/pictures/838c4715926b348f813040726602e194.png b/dev-0/pictures/838c4715926b348f813040726602e194.png new file mode 100644 index 0000000..e92a8e5 Binary files /dev/null and b/dev-0/pictures/838c4715926b348f813040726602e194.png differ diff --git a/dev-0/pictures/83925f9f90491ee273567ea4050ac2dc.png b/dev-0/pictures/83925f9f90491ee273567ea4050ac2dc.png new file mode 100644 index 0000000..954f9bc Binary files /dev/null and b/dev-0/pictures/83925f9f90491ee273567ea4050ac2dc.png differ diff --git a/dev-0/pictures/83dd27f4ee71762df1b424e3b0ac8d4d.png b/dev-0/pictures/83dd27f4ee71762df1b424e3b0ac8d4d.png new file mode 100644 index 0000000..1ad4cc3 Binary files /dev/null and b/dev-0/pictures/83dd27f4ee71762df1b424e3b0ac8d4d.png differ diff --git a/dev-0/pictures/83e9d60aad8df267ab38b8cf4f9380da.png b/dev-0/pictures/83e9d60aad8df267ab38b8cf4f9380da.png new file mode 100644 index 0000000..0e10496 Binary files /dev/null and b/dev-0/pictures/83e9d60aad8df267ab38b8cf4f9380da.png differ diff --git a/dev-0/pictures/83f3dcba5ba84e6631fc931eb01f8976.png b/dev-0/pictures/83f3dcba5ba84e6631fc931eb01f8976.png new file mode 100644 index 0000000..e849b72 Binary files /dev/null and b/dev-0/pictures/83f3dcba5ba84e6631fc931eb01f8976.png differ diff --git a/dev-0/pictures/8474cc3cd0d5305ebdaa8037cd507f25.png b/dev-0/pictures/8474cc3cd0d5305ebdaa8037cd507f25.png new file mode 100644 index 0000000..99fb144 Binary files /dev/null and b/dev-0/pictures/8474cc3cd0d5305ebdaa8037cd507f25.png differ diff --git a/dev-0/pictures/849c1136b89b6d17d93f21e8821bbd71.png b/dev-0/pictures/849c1136b89b6d17d93f21e8821bbd71.png new file mode 100644 index 0000000..306c8ea Binary files /dev/null and b/dev-0/pictures/849c1136b89b6d17d93f21e8821bbd71.png differ diff --git a/dev-0/pictures/850a5ba208f80d933b27f59c360f7b37.png b/dev-0/pictures/850a5ba208f80d933b27f59c360f7b37.png new file mode 100644 index 0000000..93ec296 Binary files /dev/null and b/dev-0/pictures/850a5ba208f80d933b27f59c360f7b37.png differ diff --git a/dev-0/pictures/859b469c38978da187d7c278fbc63ebd.png b/dev-0/pictures/859b469c38978da187d7c278fbc63ebd.png new file mode 100644 index 0000000..053711b Binary files /dev/null and b/dev-0/pictures/859b469c38978da187d7c278fbc63ebd.png differ diff --git a/dev-0/pictures/86bf7039a5d3a8f493db279073abeb82.png b/dev-0/pictures/86bf7039a5d3a8f493db279073abeb82.png new file mode 100644 index 0000000..561b45d Binary files /dev/null and b/dev-0/pictures/86bf7039a5d3a8f493db279073abeb82.png differ diff --git a/dev-0/pictures/87725499a97c5b21f2b591c435a0389d.png b/dev-0/pictures/87725499a97c5b21f2b591c435a0389d.png new file mode 100644 index 0000000..89a7fa0 Binary files /dev/null and b/dev-0/pictures/87725499a97c5b21f2b591c435a0389d.png differ diff --git a/dev-0/pictures/877be106cee950364fc29c2560972227.png b/dev-0/pictures/877be106cee950364fc29c2560972227.png new file mode 100644 index 0000000..f2a0c68 Binary files /dev/null and b/dev-0/pictures/877be106cee950364fc29c2560972227.png differ diff --git a/dev-0/pictures/883a4493d3544ef1ceb57c677cba4ffe.png b/dev-0/pictures/883a4493d3544ef1ceb57c677cba4ffe.png new file mode 100644 index 0000000..acd4e33 Binary files /dev/null and b/dev-0/pictures/883a4493d3544ef1ceb57c677cba4ffe.png differ diff --git a/dev-0/pictures/884ff1b4b9b34513e06c25e8b6a2bfb4.png b/dev-0/pictures/884ff1b4b9b34513e06c25e8b6a2bfb4.png new file mode 100644 index 0000000..20dc15f Binary files /dev/null and b/dev-0/pictures/884ff1b4b9b34513e06c25e8b6a2bfb4.png differ diff --git a/dev-0/pictures/88d380727eec5e51523fc7ba4b091f6b.png b/dev-0/pictures/88d380727eec5e51523fc7ba4b091f6b.png new file mode 100644 index 0000000..de84b0c Binary files /dev/null and b/dev-0/pictures/88d380727eec5e51523fc7ba4b091f6b.png differ diff --git a/dev-0/pictures/88e26b26ea1359699493b8726653ae0f.png b/dev-0/pictures/88e26b26ea1359699493b8726653ae0f.png new file mode 100644 index 0000000..853cf14 Binary files /dev/null and b/dev-0/pictures/88e26b26ea1359699493b8726653ae0f.png differ diff --git a/dev-0/pictures/8925fcb2de3167d9895a17e6d713ce7e.png b/dev-0/pictures/8925fcb2de3167d9895a17e6d713ce7e.png new file mode 100644 index 0000000..137a1fc Binary files /dev/null and b/dev-0/pictures/8925fcb2de3167d9895a17e6d713ce7e.png differ diff --git a/dev-0/pictures/898a89391cbaca8c99e70ed1c8337654.png b/dev-0/pictures/898a89391cbaca8c99e70ed1c8337654.png new file mode 100644 index 0000000..287368c Binary files /dev/null and b/dev-0/pictures/898a89391cbaca8c99e70ed1c8337654.png differ diff --git a/dev-0/pictures/899b8afad44204e54f9c83e2dd510390.png b/dev-0/pictures/899b8afad44204e54f9c83e2dd510390.png new file mode 100644 index 0000000..3963648 Binary files /dev/null and b/dev-0/pictures/899b8afad44204e54f9c83e2dd510390.png differ diff --git a/dev-0/pictures/8a0a4156275b5c603810fcf249989769.png b/dev-0/pictures/8a0a4156275b5c603810fcf249989769.png new file mode 100644 index 0000000..41a4d2f Binary files /dev/null and b/dev-0/pictures/8a0a4156275b5c603810fcf249989769.png differ diff --git a/dev-0/pictures/8a33768f60a18454f7f61cfa8ee498d5.png b/dev-0/pictures/8a33768f60a18454f7f61cfa8ee498d5.png new file mode 100644 index 0000000..80b2239 Binary files /dev/null and b/dev-0/pictures/8a33768f60a18454f7f61cfa8ee498d5.png differ diff --git a/dev-0/pictures/8a79efab7a94e344dae8d03d2a939a75.png b/dev-0/pictures/8a79efab7a94e344dae8d03d2a939a75.png new file mode 100644 index 0000000..c808a89 Binary files /dev/null and b/dev-0/pictures/8a79efab7a94e344dae8d03d2a939a75.png differ diff --git a/dev-0/pictures/8aa961f25ce7188b13138c841bec7fb6.png b/dev-0/pictures/8aa961f25ce7188b13138c841bec7fb6.png new file mode 100644 index 0000000..4a52bc3 Binary files /dev/null and b/dev-0/pictures/8aa961f25ce7188b13138c841bec7fb6.png differ diff --git a/dev-0/pictures/8be787b443c337d8cbede8c60247b605.png b/dev-0/pictures/8be787b443c337d8cbede8c60247b605.png new file mode 100644 index 0000000..34da8a2 Binary files /dev/null and b/dev-0/pictures/8be787b443c337d8cbede8c60247b605.png differ diff --git a/dev-0/pictures/8cc1b470a74765999b0a3612a189c824.png b/dev-0/pictures/8cc1b470a74765999b0a3612a189c824.png new file mode 100644 index 0000000..8399485 Binary files /dev/null and b/dev-0/pictures/8cc1b470a74765999b0a3612a189c824.png differ diff --git a/dev-0/pictures/8ccf2f73a60cb6ee76996c64f5e18d6b.png b/dev-0/pictures/8ccf2f73a60cb6ee76996c64f5e18d6b.png new file mode 100644 index 0000000..70bf2e9 Binary files /dev/null and b/dev-0/pictures/8ccf2f73a60cb6ee76996c64f5e18d6b.png differ diff --git a/dev-0/pictures/8d04d8ceee7eae7142acf4ebfc2949b0.png b/dev-0/pictures/8d04d8ceee7eae7142acf4ebfc2949b0.png new file mode 100644 index 0000000..ddd85fd Binary files /dev/null and b/dev-0/pictures/8d04d8ceee7eae7142acf4ebfc2949b0.png differ diff --git a/dev-0/pictures/8d5182ade0abf71fa2b32b5a83481a8a.png b/dev-0/pictures/8d5182ade0abf71fa2b32b5a83481a8a.png new file mode 100644 index 0000000..23b8679 Binary files /dev/null and b/dev-0/pictures/8d5182ade0abf71fa2b32b5a83481a8a.png differ diff --git a/dev-0/pictures/8d6fd3e3e6fc9ee062b1578a3f0b7a7b.png b/dev-0/pictures/8d6fd3e3e6fc9ee062b1578a3f0b7a7b.png new file mode 100644 index 0000000..2c10d4e Binary files /dev/null and b/dev-0/pictures/8d6fd3e3e6fc9ee062b1578a3f0b7a7b.png differ diff --git a/dev-0/pictures/8e70216b56a3a3542cd30d8d99972f45.png b/dev-0/pictures/8e70216b56a3a3542cd30d8d99972f45.png new file mode 100644 index 0000000..d7224bf Binary files /dev/null and b/dev-0/pictures/8e70216b56a3a3542cd30d8d99972f45.png differ diff --git a/dev-0/pictures/8f27ccf4deaf909544726986e2dbae31.png b/dev-0/pictures/8f27ccf4deaf909544726986e2dbae31.png new file mode 100644 index 0000000..41462ec Binary files /dev/null and b/dev-0/pictures/8f27ccf4deaf909544726986e2dbae31.png differ diff --git a/dev-0/pictures/8f98201ba1397b77ab059409bd0f09a8.png b/dev-0/pictures/8f98201ba1397b77ab059409bd0f09a8.png new file mode 100644 index 0000000..0c24baa Binary files /dev/null and b/dev-0/pictures/8f98201ba1397b77ab059409bd0f09a8.png differ diff --git a/dev-0/pictures/905f4f64399afbe251ddaf299ba9d05e.png b/dev-0/pictures/905f4f64399afbe251ddaf299ba9d05e.png new file mode 100644 index 0000000..6264ca4 Binary files /dev/null and b/dev-0/pictures/905f4f64399afbe251ddaf299ba9d05e.png differ diff --git a/dev-0/pictures/910d65b313d3abc070a29009c1e0c834.png b/dev-0/pictures/910d65b313d3abc070a29009c1e0c834.png new file mode 100644 index 0000000..6e79514 Binary files /dev/null and b/dev-0/pictures/910d65b313d3abc070a29009c1e0c834.png differ diff --git a/dev-0/pictures/91914cd97a3973e34c2b2c2ba878ed99.png b/dev-0/pictures/91914cd97a3973e34c2b2c2ba878ed99.png new file mode 100644 index 0000000..3e407ab Binary files /dev/null and b/dev-0/pictures/91914cd97a3973e34c2b2c2ba878ed99.png differ diff --git a/dev-0/pictures/926c9983aecd8c44e6c9a5c5005f1ab2.png b/dev-0/pictures/926c9983aecd8c44e6c9a5c5005f1ab2.png new file mode 100644 index 0000000..afe1e78 Binary files /dev/null and b/dev-0/pictures/926c9983aecd8c44e6c9a5c5005f1ab2.png differ diff --git a/dev-0/pictures/9295cd90ffb3641c66b92b1354589a46.png b/dev-0/pictures/9295cd90ffb3641c66b92b1354589a46.png new file mode 100644 index 0000000..eb2985a Binary files /dev/null and b/dev-0/pictures/9295cd90ffb3641c66b92b1354589a46.png differ diff --git a/dev-0/pictures/92c6df66679346b72efade55fd1418d6.png b/dev-0/pictures/92c6df66679346b72efade55fd1418d6.png new file mode 100644 index 0000000..bc1012a Binary files /dev/null and b/dev-0/pictures/92c6df66679346b72efade55fd1418d6.png differ diff --git a/dev-0/pictures/93188482bc1d28d864738af9289e6387.png b/dev-0/pictures/93188482bc1d28d864738af9289e6387.png new file mode 100644 index 0000000..b44141e Binary files /dev/null and b/dev-0/pictures/93188482bc1d28d864738af9289e6387.png differ diff --git a/dev-0/pictures/932820138456c6c1ae7b0c2c9316e6a4.png b/dev-0/pictures/932820138456c6c1ae7b0c2c9316e6a4.png new file mode 100644 index 0000000..25afa32 Binary files /dev/null and b/dev-0/pictures/932820138456c6c1ae7b0c2c9316e6a4.png differ diff --git a/dev-0/pictures/9420672acf431e3486b3f648fb9d3792.png b/dev-0/pictures/9420672acf431e3486b3f648fb9d3792.png new file mode 100644 index 0000000..36b89da Binary files /dev/null and b/dev-0/pictures/9420672acf431e3486b3f648fb9d3792.png differ diff --git a/dev-0/pictures/9438a0da068855a4f99deff9ed919735.png b/dev-0/pictures/9438a0da068855a4f99deff9ed919735.png new file mode 100644 index 0000000..5539c0f Binary files /dev/null and b/dev-0/pictures/9438a0da068855a4f99deff9ed919735.png differ diff --git a/dev-0/pictures/9569cc1727b65a519bc157e2a5b04efa.png b/dev-0/pictures/9569cc1727b65a519bc157e2a5b04efa.png new file mode 100644 index 0000000..7440797 Binary files /dev/null and b/dev-0/pictures/9569cc1727b65a519bc157e2a5b04efa.png differ diff --git a/dev-0/pictures/9578bab562ff5786d0a9dd35fb16d644.png b/dev-0/pictures/9578bab562ff5786d0a9dd35fb16d644.png new file mode 100644 index 0000000..711ffcc Binary files /dev/null and b/dev-0/pictures/9578bab562ff5786d0a9dd35fb16d644.png differ diff --git a/dev-0/pictures/957e36d3eec594c99bd5758678fb0313.png b/dev-0/pictures/957e36d3eec594c99bd5758678fb0313.png new file mode 100644 index 0000000..912f65f Binary files /dev/null and b/dev-0/pictures/957e36d3eec594c99bd5758678fb0313.png differ diff --git a/dev-0/pictures/96008badeee14acf3f064e172ee2c792.png b/dev-0/pictures/96008badeee14acf3f064e172ee2c792.png new file mode 100644 index 0000000..3b19ff9 Binary files /dev/null and b/dev-0/pictures/96008badeee14acf3f064e172ee2c792.png differ diff --git a/dev-0/pictures/96374887494a4ecc42fe49801541f763.png b/dev-0/pictures/96374887494a4ecc42fe49801541f763.png new file mode 100644 index 0000000..f13e332 Binary files /dev/null and b/dev-0/pictures/96374887494a4ecc42fe49801541f763.png differ diff --git a/dev-0/pictures/96d2b2495d2e1b1acbe01faff97b095e.png b/dev-0/pictures/96d2b2495d2e1b1acbe01faff97b095e.png new file mode 100644 index 0000000..3b53a96 Binary files /dev/null and b/dev-0/pictures/96d2b2495d2e1b1acbe01faff97b095e.png differ diff --git a/dev-0/pictures/97000778471f2ca77dad1a04d984902c.png b/dev-0/pictures/97000778471f2ca77dad1a04d984902c.png new file mode 100644 index 0000000..d32869e Binary files /dev/null and b/dev-0/pictures/97000778471f2ca77dad1a04d984902c.png differ diff --git a/dev-0/pictures/9792f3e6c3898a5d9b9b55a4d94a6b47.png b/dev-0/pictures/9792f3e6c3898a5d9b9b55a4d94a6b47.png new file mode 100644 index 0000000..781d944 Binary files /dev/null and b/dev-0/pictures/9792f3e6c3898a5d9b9b55a4d94a6b47.png differ diff --git a/dev-0/pictures/980606df74a9301ed9a5f1bd52f94ae3.png b/dev-0/pictures/980606df74a9301ed9a5f1bd52f94ae3.png new file mode 100644 index 0000000..9ead44b Binary files /dev/null and b/dev-0/pictures/980606df74a9301ed9a5f1bd52f94ae3.png differ diff --git a/dev-0/pictures/9909988e506a4010f1b6f6539a86d4bb.png b/dev-0/pictures/9909988e506a4010f1b6f6539a86d4bb.png new file mode 100644 index 0000000..5a5a7ed Binary files /dev/null and b/dev-0/pictures/9909988e506a4010f1b6f6539a86d4bb.png differ diff --git a/dev-0/pictures/992e9b6ab3885299a84a614d195839ca.png b/dev-0/pictures/992e9b6ab3885299a84a614d195839ca.png new file mode 100644 index 0000000..e52a950 Binary files /dev/null and b/dev-0/pictures/992e9b6ab3885299a84a614d195839ca.png differ diff --git a/dev-0/pictures/996e81200dfcac1360167e02f8b7fcea.png b/dev-0/pictures/996e81200dfcac1360167e02f8b7fcea.png new file mode 100644 index 0000000..81d02ba Binary files /dev/null and b/dev-0/pictures/996e81200dfcac1360167e02f8b7fcea.png differ diff --git a/dev-0/pictures/99b9e2f56f974f201d3c3b2209d061eb.png b/dev-0/pictures/99b9e2f56f974f201d3c3b2209d061eb.png new file mode 100644 index 0000000..016f6eb Binary files /dev/null and b/dev-0/pictures/99b9e2f56f974f201d3c3b2209d061eb.png differ diff --git a/dev-0/pictures/9abfb8bf7f070ea7647c1d2f491ae71d.png b/dev-0/pictures/9abfb8bf7f070ea7647c1d2f491ae71d.png new file mode 100644 index 0000000..5f42967 Binary files /dev/null and b/dev-0/pictures/9abfb8bf7f070ea7647c1d2f491ae71d.png differ diff --git a/dev-0/pictures/9afd704f2b77d9b4306e0683b85d2cb9.png b/dev-0/pictures/9afd704f2b77d9b4306e0683b85d2cb9.png new file mode 100644 index 0000000..e33935b Binary files /dev/null and b/dev-0/pictures/9afd704f2b77d9b4306e0683b85d2cb9.png differ diff --git a/dev-0/pictures/9bbbb57d9a3d657b2d6db9dd3eb387f9.png b/dev-0/pictures/9bbbb57d9a3d657b2d6db9dd3eb387f9.png new file mode 100644 index 0000000..96bf44d Binary files /dev/null and b/dev-0/pictures/9bbbb57d9a3d657b2d6db9dd3eb387f9.png differ diff --git a/dev-0/pictures/9c22b0bfd7d74266c2cc2cddd5d140c1.png b/dev-0/pictures/9c22b0bfd7d74266c2cc2cddd5d140c1.png new file mode 100644 index 0000000..60783a8 Binary files /dev/null and b/dev-0/pictures/9c22b0bfd7d74266c2cc2cddd5d140c1.png differ diff --git a/dev-0/pictures/9c9fbe487021d95ec07c07c80f732ac9.png b/dev-0/pictures/9c9fbe487021d95ec07c07c80f732ac9.png new file mode 100644 index 0000000..194bb38 Binary files /dev/null and b/dev-0/pictures/9c9fbe487021d95ec07c07c80f732ac9.png differ diff --git a/dev-0/pictures/9d31e7814a8126b7de91083c31046371.png b/dev-0/pictures/9d31e7814a8126b7de91083c31046371.png new file mode 100644 index 0000000..b0de19b Binary files /dev/null and b/dev-0/pictures/9d31e7814a8126b7de91083c31046371.png differ diff --git a/dev-0/pictures/9d3c875cba8f383a8300425aa929ca79.png b/dev-0/pictures/9d3c875cba8f383a8300425aa929ca79.png new file mode 100644 index 0000000..f39b7da Binary files /dev/null and b/dev-0/pictures/9d3c875cba8f383a8300425aa929ca79.png differ diff --git a/dev-0/pictures/9d3f563edbb8b0f4a0c35b70cb33aaa3.png b/dev-0/pictures/9d3f563edbb8b0f4a0c35b70cb33aaa3.png new file mode 100644 index 0000000..fa1b894 Binary files /dev/null and b/dev-0/pictures/9d3f563edbb8b0f4a0c35b70cb33aaa3.png differ diff --git a/dev-0/pictures/9defa7a1a5ad934f4738593377492f85.png b/dev-0/pictures/9defa7a1a5ad934f4738593377492f85.png new file mode 100644 index 0000000..746ad73 Binary files /dev/null and b/dev-0/pictures/9defa7a1a5ad934f4738593377492f85.png differ diff --git a/dev-0/pictures/9e47e01732f0de9811dd7091cf1d42a3.png b/dev-0/pictures/9e47e01732f0de9811dd7091cf1d42a3.png new file mode 100644 index 0000000..7ed5c8b Binary files /dev/null and b/dev-0/pictures/9e47e01732f0de9811dd7091cf1d42a3.png differ diff --git a/dev-0/pictures/9e67376fedd4c3f0f7a9d4ddd77e89b9.png b/dev-0/pictures/9e67376fedd4c3f0f7a9d4ddd77e89b9.png new file mode 100644 index 0000000..90cff04 Binary files /dev/null and b/dev-0/pictures/9e67376fedd4c3f0f7a9d4ddd77e89b9.png differ diff --git a/dev-0/pictures/9e69cc1ea7de9be376e7747802b23582.png b/dev-0/pictures/9e69cc1ea7de9be376e7747802b23582.png new file mode 100644 index 0000000..59e1962 Binary files /dev/null and b/dev-0/pictures/9e69cc1ea7de9be376e7747802b23582.png differ diff --git a/dev-0/pictures/9f42af865317ac7153e359a86e127c19.png b/dev-0/pictures/9f42af865317ac7153e359a86e127c19.png new file mode 100644 index 0000000..823b121 Binary files /dev/null and b/dev-0/pictures/9f42af865317ac7153e359a86e127c19.png differ diff --git a/dev-0/pictures/9f7aaa954eaf88de1649bf675d867e27.png b/dev-0/pictures/9f7aaa954eaf88de1649bf675d867e27.png new file mode 100644 index 0000000..2d07ebd Binary files /dev/null and b/dev-0/pictures/9f7aaa954eaf88de1649bf675d867e27.png differ diff --git a/dev-0/pictures/a011c5d809330faf6cbec242e4702d2d.png b/dev-0/pictures/a011c5d809330faf6cbec242e4702d2d.png new file mode 100644 index 0000000..cda8a06 Binary files /dev/null and b/dev-0/pictures/a011c5d809330faf6cbec242e4702d2d.png differ diff --git a/dev-0/pictures/a0635397d895f9283151f45f929c0f3f.png b/dev-0/pictures/a0635397d895f9283151f45f929c0f3f.png new file mode 100644 index 0000000..0c7bf14 Binary files /dev/null and b/dev-0/pictures/a0635397d895f9283151f45f929c0f3f.png differ diff --git a/dev-0/pictures/a073aacd3e0cbfd59cf190320d71d3c8.png b/dev-0/pictures/a073aacd3e0cbfd59cf190320d71d3c8.png new file mode 100644 index 0000000..4124b39 Binary files /dev/null and b/dev-0/pictures/a073aacd3e0cbfd59cf190320d71d3c8.png differ diff --git a/dev-0/pictures/a0847371cc2e9f022486497ea84b0453.png b/dev-0/pictures/a0847371cc2e9f022486497ea84b0453.png new file mode 100644 index 0000000..5bca1f8 Binary files /dev/null and b/dev-0/pictures/a0847371cc2e9f022486497ea84b0453.png differ diff --git a/dev-0/pictures/a0b19c2815116974e1d3c30ec34492c7.png b/dev-0/pictures/a0b19c2815116974e1d3c30ec34492c7.png new file mode 100644 index 0000000..0ff5cec Binary files /dev/null and b/dev-0/pictures/a0b19c2815116974e1d3c30ec34492c7.png differ diff --git a/dev-0/pictures/a202abbeb1c9d6da9d937d1538cc9fa3.png b/dev-0/pictures/a202abbeb1c9d6da9d937d1538cc9fa3.png new file mode 100644 index 0000000..fe0272b Binary files /dev/null and b/dev-0/pictures/a202abbeb1c9d6da9d937d1538cc9fa3.png differ diff --git a/dev-0/pictures/a225e4d7f3080590220ce1cc18fa6976.png b/dev-0/pictures/a225e4d7f3080590220ce1cc18fa6976.png new file mode 100644 index 0000000..20831ce Binary files /dev/null and b/dev-0/pictures/a225e4d7f3080590220ce1cc18fa6976.png differ diff --git a/dev-0/pictures/a2a69c34104b0610a17a651e4cbb409a.png b/dev-0/pictures/a2a69c34104b0610a17a651e4cbb409a.png new file mode 100644 index 0000000..4727468 Binary files /dev/null and b/dev-0/pictures/a2a69c34104b0610a17a651e4cbb409a.png differ diff --git a/dev-0/pictures/a38540ef136ee3c579a7f94ee1d178cf.png b/dev-0/pictures/a38540ef136ee3c579a7f94ee1d178cf.png new file mode 100644 index 0000000..b85d149 Binary files /dev/null and b/dev-0/pictures/a38540ef136ee3c579a7f94ee1d178cf.png differ diff --git a/dev-0/pictures/a3c7cb1e9df1edd21c8556d8c113b835.png b/dev-0/pictures/a3c7cb1e9df1edd21c8556d8c113b835.png new file mode 100644 index 0000000..5d4d9fb Binary files /dev/null and b/dev-0/pictures/a3c7cb1e9df1edd21c8556d8c113b835.png differ diff --git a/dev-0/pictures/a40716644f44bc0e37ee590931abf6a7.png b/dev-0/pictures/a40716644f44bc0e37ee590931abf6a7.png new file mode 100644 index 0000000..ff94087 Binary files /dev/null and b/dev-0/pictures/a40716644f44bc0e37ee590931abf6a7.png differ diff --git a/dev-0/pictures/a44906aaee63ea1a2f1e96cb889798a3.png b/dev-0/pictures/a44906aaee63ea1a2f1e96cb889798a3.png new file mode 100644 index 0000000..d6fbd72 Binary files /dev/null and b/dev-0/pictures/a44906aaee63ea1a2f1e96cb889798a3.png differ diff --git a/dev-0/pictures/a4d39c845ffc3c32b6725078f6eaf07c.png b/dev-0/pictures/a4d39c845ffc3c32b6725078f6eaf07c.png new file mode 100644 index 0000000..40695ef Binary files /dev/null and b/dev-0/pictures/a4d39c845ffc3c32b6725078f6eaf07c.png differ diff --git a/dev-0/pictures/a4f53b456bb2a4764d1e0aca25665079.png b/dev-0/pictures/a4f53b456bb2a4764d1e0aca25665079.png new file mode 100644 index 0000000..2a47843 Binary files /dev/null and b/dev-0/pictures/a4f53b456bb2a4764d1e0aca25665079.png differ diff --git a/dev-0/pictures/a5a683e3d57d7401883a8f87fa4dc652.png b/dev-0/pictures/a5a683e3d57d7401883a8f87fa4dc652.png new file mode 100644 index 0000000..f99a357 Binary files /dev/null and b/dev-0/pictures/a5a683e3d57d7401883a8f87fa4dc652.png differ diff --git a/dev-0/pictures/a698079a8b68d70998ec2d8e78c38dc1.png b/dev-0/pictures/a698079a8b68d70998ec2d8e78c38dc1.png new file mode 100644 index 0000000..9b18101 Binary files /dev/null and b/dev-0/pictures/a698079a8b68d70998ec2d8e78c38dc1.png differ diff --git a/dev-0/pictures/a701e6291d4386640d8e8da6f2034ae1.png b/dev-0/pictures/a701e6291d4386640d8e8da6f2034ae1.png new file mode 100644 index 0000000..8a9ff72 Binary files /dev/null and b/dev-0/pictures/a701e6291d4386640d8e8da6f2034ae1.png differ diff --git a/dev-0/pictures/a75d40e45da8e29da70914b0ee113aa1.png b/dev-0/pictures/a75d40e45da8e29da70914b0ee113aa1.png new file mode 100644 index 0000000..043bfb8 Binary files /dev/null and b/dev-0/pictures/a75d40e45da8e29da70914b0ee113aa1.png differ diff --git a/dev-0/pictures/a7a119eb4050081ad23b241542b036db.png b/dev-0/pictures/a7a119eb4050081ad23b241542b036db.png new file mode 100644 index 0000000..bc20135 Binary files /dev/null and b/dev-0/pictures/a7a119eb4050081ad23b241542b036db.png differ diff --git a/dev-0/pictures/a80162084e06b00195319c3756153611.png b/dev-0/pictures/a80162084e06b00195319c3756153611.png new file mode 100644 index 0000000..f345fc6 Binary files /dev/null and b/dev-0/pictures/a80162084e06b00195319c3756153611.png differ diff --git a/dev-0/pictures/a8683aa37e7cca836b6e5cec0905d2b7.png b/dev-0/pictures/a8683aa37e7cca836b6e5cec0905d2b7.png new file mode 100644 index 0000000..28d8713 Binary files /dev/null and b/dev-0/pictures/a8683aa37e7cca836b6e5cec0905d2b7.png differ diff --git a/dev-0/pictures/a96e20c5d4f9bab50f518e306b083d7e.png b/dev-0/pictures/a96e20c5d4f9bab50f518e306b083d7e.png new file mode 100644 index 0000000..aa8f2b7 Binary files /dev/null and b/dev-0/pictures/a96e20c5d4f9bab50f518e306b083d7e.png differ diff --git a/dev-0/pictures/ab45362c1d6917e818342549ffc3b8c2.png b/dev-0/pictures/ab45362c1d6917e818342549ffc3b8c2.png new file mode 100644 index 0000000..f03fb4c Binary files /dev/null and b/dev-0/pictures/ab45362c1d6917e818342549ffc3b8c2.png differ diff --git a/dev-0/pictures/ac30cc54d53e4e6d3d9669e39a5fe7ca.png b/dev-0/pictures/ac30cc54d53e4e6d3d9669e39a5fe7ca.png new file mode 100644 index 0000000..64cc0f8 Binary files /dev/null and b/dev-0/pictures/ac30cc54d53e4e6d3d9669e39a5fe7ca.png differ diff --git a/dev-0/pictures/ac5c0655687ce2c32072373f17080df1.png b/dev-0/pictures/ac5c0655687ce2c32072373f17080df1.png new file mode 100644 index 0000000..31acd45 Binary files /dev/null and b/dev-0/pictures/ac5c0655687ce2c32072373f17080df1.png differ diff --git a/dev-0/pictures/ac8ba08724e09e0d3ae2713b6283cb6b.png b/dev-0/pictures/ac8ba08724e09e0d3ae2713b6283cb6b.png new file mode 100644 index 0000000..dcc2729 Binary files /dev/null and b/dev-0/pictures/ac8ba08724e09e0d3ae2713b6283cb6b.png differ diff --git a/dev-0/pictures/ad2f88fe364b6ac94ea54f3a21b5cf90.png b/dev-0/pictures/ad2f88fe364b6ac94ea54f3a21b5cf90.png new file mode 100644 index 0000000..fed7734 Binary files /dev/null and b/dev-0/pictures/ad2f88fe364b6ac94ea54f3a21b5cf90.png differ diff --git a/dev-0/pictures/ad3f6886ca477cabe40f6c766b76b5b3.png b/dev-0/pictures/ad3f6886ca477cabe40f6c766b76b5b3.png new file mode 100644 index 0000000..1e3da13 Binary files /dev/null and b/dev-0/pictures/ad3f6886ca477cabe40f6c766b76b5b3.png differ diff --git a/dev-0/pictures/ae24a0699d93e2a512cbebab786a305b.png b/dev-0/pictures/ae24a0699d93e2a512cbebab786a305b.png new file mode 100644 index 0000000..bd925ee Binary files /dev/null and b/dev-0/pictures/ae24a0699d93e2a512cbebab786a305b.png differ diff --git a/dev-0/pictures/ae2a4fd70109a43f426619795033b2f4.png b/dev-0/pictures/ae2a4fd70109a43f426619795033b2f4.png new file mode 100644 index 0000000..6d6ed32 Binary files /dev/null and b/dev-0/pictures/ae2a4fd70109a43f426619795033b2f4.png differ diff --git a/dev-0/pictures/ae58f1e2a75cc14dcb44618c43e5d491.png b/dev-0/pictures/ae58f1e2a75cc14dcb44618c43e5d491.png new file mode 100644 index 0000000..08cbfd6 Binary files /dev/null and b/dev-0/pictures/ae58f1e2a75cc14dcb44618c43e5d491.png differ diff --git a/dev-0/pictures/ae810c1bd087022ebb1641b28a2cd703.png b/dev-0/pictures/ae810c1bd087022ebb1641b28a2cd703.png new file mode 100644 index 0000000..3196eb9 Binary files /dev/null and b/dev-0/pictures/ae810c1bd087022ebb1641b28a2cd703.png differ diff --git a/dev-0/pictures/aef1fe63baf4a9e00334667203b190eb.png b/dev-0/pictures/aef1fe63baf4a9e00334667203b190eb.png new file mode 100644 index 0000000..576b38d Binary files /dev/null and b/dev-0/pictures/aef1fe63baf4a9e00334667203b190eb.png differ diff --git a/dev-0/pictures/aef783234f75b28d01069efd9b846f63.png b/dev-0/pictures/aef783234f75b28d01069efd9b846f63.png new file mode 100644 index 0000000..1b683c0 Binary files /dev/null and b/dev-0/pictures/aef783234f75b28d01069efd9b846f63.png differ diff --git a/dev-0/pictures/af3de5b4087a5f14a30004a8f24751d2.png b/dev-0/pictures/af3de5b4087a5f14a30004a8f24751d2.png new file mode 100644 index 0000000..75b6252 Binary files /dev/null and b/dev-0/pictures/af3de5b4087a5f14a30004a8f24751d2.png differ diff --git a/dev-0/pictures/af7ccc44fced6660fe38f1dd760b9b34.png b/dev-0/pictures/af7ccc44fced6660fe38f1dd760b9b34.png new file mode 100644 index 0000000..c491c41 Binary files /dev/null and b/dev-0/pictures/af7ccc44fced6660fe38f1dd760b9b34.png differ diff --git a/dev-0/pictures/b01ade831704db3fe29f4b568708b3ad.png b/dev-0/pictures/b01ade831704db3fe29f4b568708b3ad.png new file mode 100644 index 0000000..94b0e74 Binary files /dev/null and b/dev-0/pictures/b01ade831704db3fe29f4b568708b3ad.png differ diff --git a/dev-0/pictures/b06cabf8e841bdf415479a7ea591b26b.png b/dev-0/pictures/b06cabf8e841bdf415479a7ea591b26b.png new file mode 100644 index 0000000..ee30d34 Binary files /dev/null and b/dev-0/pictures/b06cabf8e841bdf415479a7ea591b26b.png differ diff --git a/dev-0/pictures/b06d183c4a74d0c8c0d37de18527499c.png b/dev-0/pictures/b06d183c4a74d0c8c0d37de18527499c.png new file mode 100644 index 0000000..160dfeb Binary files /dev/null and b/dev-0/pictures/b06d183c4a74d0c8c0d37de18527499c.png differ diff --git a/dev-0/pictures/b10f268a8c5e99839ffe082143326c32.png b/dev-0/pictures/b10f268a8c5e99839ffe082143326c32.png new file mode 100644 index 0000000..eaca335 Binary files /dev/null and b/dev-0/pictures/b10f268a8c5e99839ffe082143326c32.png differ diff --git a/dev-0/pictures/b12c00f72e2a1e9022702d8919cc1c01.png b/dev-0/pictures/b12c00f72e2a1e9022702d8919cc1c01.png new file mode 100644 index 0000000..c9ea403 Binary files /dev/null and b/dev-0/pictures/b12c00f72e2a1e9022702d8919cc1c01.png differ diff --git a/dev-0/pictures/b1dffa2bb03eab817c19606e26b7beb8.png b/dev-0/pictures/b1dffa2bb03eab817c19606e26b7beb8.png new file mode 100644 index 0000000..fff7f5b Binary files /dev/null and b/dev-0/pictures/b1dffa2bb03eab817c19606e26b7beb8.png differ diff --git a/dev-0/pictures/b1e0489869e4cfcb78bf3b78dc10e170.png b/dev-0/pictures/b1e0489869e4cfcb78bf3b78dc10e170.png new file mode 100644 index 0000000..0d2ffd6 Binary files /dev/null and b/dev-0/pictures/b1e0489869e4cfcb78bf3b78dc10e170.png differ diff --git a/dev-0/pictures/b3fa01277f7a80367da2178883e6e273.png b/dev-0/pictures/b3fa01277f7a80367da2178883e6e273.png new file mode 100644 index 0000000..3285831 Binary files /dev/null and b/dev-0/pictures/b3fa01277f7a80367da2178883e6e273.png differ diff --git a/dev-0/pictures/b441bdec568cd9a26be69423a0658e64.png b/dev-0/pictures/b441bdec568cd9a26be69423a0658e64.png new file mode 100644 index 0000000..67c31fa Binary files /dev/null and b/dev-0/pictures/b441bdec568cd9a26be69423a0658e64.png differ diff --git a/dev-0/pictures/b536c078b33788b6c7427c0c15d8ea78.png b/dev-0/pictures/b536c078b33788b6c7427c0c15d8ea78.png new file mode 100644 index 0000000..e3b9c8d Binary files /dev/null and b/dev-0/pictures/b536c078b33788b6c7427c0c15d8ea78.png differ diff --git a/dev-0/pictures/b6497d238bc7853052cdb0262ae75c52.png b/dev-0/pictures/b6497d238bc7853052cdb0262ae75c52.png new file mode 100644 index 0000000..607aa8f Binary files /dev/null and b/dev-0/pictures/b6497d238bc7853052cdb0262ae75c52.png differ diff --git a/dev-0/pictures/b6769cfafc5a6e75786be581fbfee42a.png b/dev-0/pictures/b6769cfafc5a6e75786be581fbfee42a.png new file mode 100644 index 0000000..f169d28 Binary files /dev/null and b/dev-0/pictures/b6769cfafc5a6e75786be581fbfee42a.png differ diff --git a/dev-0/pictures/b6882e89e918626c00d818a7ea01bc0a.png b/dev-0/pictures/b6882e89e918626c00d818a7ea01bc0a.png new file mode 100644 index 0000000..b5c5b47 Binary files /dev/null and b/dev-0/pictures/b6882e89e918626c00d818a7ea01bc0a.png differ diff --git a/dev-0/pictures/b6b7c8caca118d719f9c04e91786cbec.png b/dev-0/pictures/b6b7c8caca118d719f9c04e91786cbec.png new file mode 100644 index 0000000..9c3cedb Binary files /dev/null and b/dev-0/pictures/b6b7c8caca118d719f9c04e91786cbec.png differ diff --git a/dev-0/pictures/b6e906fe20a3e70e915aed04f9118c06.png b/dev-0/pictures/b6e906fe20a3e70e915aed04f9118c06.png new file mode 100644 index 0000000..d7c8bdb Binary files /dev/null and b/dev-0/pictures/b6e906fe20a3e70e915aed04f9118c06.png differ diff --git a/dev-0/pictures/b7032a712ec7b431996ba20fa1dd9fbd.png b/dev-0/pictures/b7032a712ec7b431996ba20fa1dd9fbd.png new file mode 100644 index 0000000..50b27a8 Binary files /dev/null and b/dev-0/pictures/b7032a712ec7b431996ba20fa1dd9fbd.png differ diff --git a/dev-0/pictures/b7a6cedb6c2eb5b61e75b84212d0d8cf.png b/dev-0/pictures/b7a6cedb6c2eb5b61e75b84212d0d8cf.png new file mode 100644 index 0000000..99bc764 Binary files /dev/null and b/dev-0/pictures/b7a6cedb6c2eb5b61e75b84212d0d8cf.png differ diff --git a/dev-0/pictures/b7c9c65d64af8fb26b5e26d3d17ce19e.png b/dev-0/pictures/b7c9c65d64af8fb26b5e26d3d17ce19e.png new file mode 100644 index 0000000..9dcd706 Binary files /dev/null and b/dev-0/pictures/b7c9c65d64af8fb26b5e26d3d17ce19e.png differ diff --git a/dev-0/pictures/b7ef5b99bf46046636c097ac39254d71.png b/dev-0/pictures/b7ef5b99bf46046636c097ac39254d71.png new file mode 100644 index 0000000..3970e8f Binary files /dev/null and b/dev-0/pictures/b7ef5b99bf46046636c097ac39254d71.png differ diff --git a/dev-0/pictures/b805a5cc3ef30acfb02cafd34ed1015c.png b/dev-0/pictures/b805a5cc3ef30acfb02cafd34ed1015c.png new file mode 100644 index 0000000..1d6d9dd Binary files /dev/null and b/dev-0/pictures/b805a5cc3ef30acfb02cafd34ed1015c.png differ diff --git a/dev-0/pictures/b87b17eddbbf29159b7f555004fec99a.png b/dev-0/pictures/b87b17eddbbf29159b7f555004fec99a.png new file mode 100644 index 0000000..51672cf Binary files /dev/null and b/dev-0/pictures/b87b17eddbbf29159b7f555004fec99a.png differ diff --git a/dev-0/pictures/b8f7b3cf0e57b755c60fa25193a23fdd.png b/dev-0/pictures/b8f7b3cf0e57b755c60fa25193a23fdd.png new file mode 100644 index 0000000..f57a30b Binary files /dev/null and b/dev-0/pictures/b8f7b3cf0e57b755c60fa25193a23fdd.png differ diff --git a/dev-0/pictures/b9d304d534f914992944dfb3e67bc76b.png b/dev-0/pictures/b9d304d534f914992944dfb3e67bc76b.png new file mode 100644 index 0000000..d307367 Binary files /dev/null and b/dev-0/pictures/b9d304d534f914992944dfb3e67bc76b.png differ diff --git a/dev-0/pictures/ba47b1700054366e08896213cece2490.png b/dev-0/pictures/ba47b1700054366e08896213cece2490.png new file mode 100644 index 0000000..bc88952 Binary files /dev/null and b/dev-0/pictures/ba47b1700054366e08896213cece2490.png differ diff --git a/dev-0/pictures/ba8a1e63bf7ae29d539fdbb530ad753b.png b/dev-0/pictures/ba8a1e63bf7ae29d539fdbb530ad753b.png new file mode 100644 index 0000000..23706ac Binary files /dev/null and b/dev-0/pictures/ba8a1e63bf7ae29d539fdbb530ad753b.png differ diff --git a/dev-0/pictures/bb365b8dee12a07509b8573e81f03a65.png b/dev-0/pictures/bb365b8dee12a07509b8573e81f03a65.png new file mode 100644 index 0000000..be51712 Binary files /dev/null and b/dev-0/pictures/bb365b8dee12a07509b8573e81f03a65.png differ diff --git a/dev-0/pictures/bb561c2e9e061809528a5aed23fe8b7e.png b/dev-0/pictures/bb561c2e9e061809528a5aed23fe8b7e.png new file mode 100644 index 0000000..530c9e5 Binary files /dev/null and b/dev-0/pictures/bb561c2e9e061809528a5aed23fe8b7e.png differ diff --git a/dev-0/pictures/bbaf5eb46bd33493a30557c225dcf926.png b/dev-0/pictures/bbaf5eb46bd33493a30557c225dcf926.png new file mode 100644 index 0000000..640b8d3 Binary files /dev/null and b/dev-0/pictures/bbaf5eb46bd33493a30557c225dcf926.png differ diff --git a/dev-0/pictures/bbce92222c8f589bb7148fbb4a2d7984.png b/dev-0/pictures/bbce92222c8f589bb7148fbb4a2d7984.png new file mode 100644 index 0000000..b08ea13 Binary files /dev/null and b/dev-0/pictures/bbce92222c8f589bb7148fbb4a2d7984.png differ diff --git a/dev-0/pictures/bbe55c98ea44442bc98983b50c2133fe.png b/dev-0/pictures/bbe55c98ea44442bc98983b50c2133fe.png new file mode 100644 index 0000000..5a54e93 Binary files /dev/null and b/dev-0/pictures/bbe55c98ea44442bc98983b50c2133fe.png differ diff --git a/dev-0/pictures/bc08fd93ace01d9799c566798ec33328.png b/dev-0/pictures/bc08fd93ace01d9799c566798ec33328.png new file mode 100644 index 0000000..ecd8581 Binary files /dev/null and b/dev-0/pictures/bc08fd93ace01d9799c566798ec33328.png differ diff --git a/dev-0/pictures/bc4c1bee194f71911870ed6e651688c9.png b/dev-0/pictures/bc4c1bee194f71911870ed6e651688c9.png new file mode 100644 index 0000000..459ac00 Binary files /dev/null and b/dev-0/pictures/bc4c1bee194f71911870ed6e651688c9.png differ diff --git a/dev-0/pictures/bc804f63b13c082c7a98990f2ce268f1.png b/dev-0/pictures/bc804f63b13c082c7a98990f2ce268f1.png new file mode 100644 index 0000000..f28c272 Binary files /dev/null and b/dev-0/pictures/bc804f63b13c082c7a98990f2ce268f1.png differ diff --git a/dev-0/pictures/bd361d617a425103917bf55cfaef6c23.png b/dev-0/pictures/bd361d617a425103917bf55cfaef6c23.png new file mode 100644 index 0000000..9f530b3 Binary files /dev/null and b/dev-0/pictures/bd361d617a425103917bf55cfaef6c23.png differ diff --git a/dev-0/pictures/bd37024da26bbc4e3b2022c40be37fcb.png b/dev-0/pictures/bd37024da26bbc4e3b2022c40be37fcb.png new file mode 100644 index 0000000..7ac60e8 Binary files /dev/null and b/dev-0/pictures/bd37024da26bbc4e3b2022c40be37fcb.png differ diff --git a/dev-0/pictures/bd67c760cda24ed52906f46afdd36f7f.png b/dev-0/pictures/bd67c760cda24ed52906f46afdd36f7f.png new file mode 100644 index 0000000..04d0ea9 Binary files /dev/null and b/dev-0/pictures/bd67c760cda24ed52906f46afdd36f7f.png differ diff --git a/dev-0/pictures/be0aa7afd21d2c2021d72d76fe643d76.png b/dev-0/pictures/be0aa7afd21d2c2021d72d76fe643d76.png new file mode 100644 index 0000000..90a9aa4 Binary files /dev/null and b/dev-0/pictures/be0aa7afd21d2c2021d72d76fe643d76.png differ diff --git a/dev-0/pictures/be4f794ef12e2fda8046a9b5681e923c.png b/dev-0/pictures/be4f794ef12e2fda8046a9b5681e923c.png new file mode 100644 index 0000000..f8d775e Binary files /dev/null and b/dev-0/pictures/be4f794ef12e2fda8046a9b5681e923c.png differ diff --git a/dev-0/pictures/be68d20ccf7a695bd9ed104e69a456de.png b/dev-0/pictures/be68d20ccf7a695bd9ed104e69a456de.png new file mode 100644 index 0000000..9f2af6d Binary files /dev/null and b/dev-0/pictures/be68d20ccf7a695bd9ed104e69a456de.png differ diff --git a/dev-0/pictures/bfaf8e8a5a9c8978fd158c3811f4b583.png b/dev-0/pictures/bfaf8e8a5a9c8978fd158c3811f4b583.png new file mode 100644 index 0000000..3141876 Binary files /dev/null and b/dev-0/pictures/bfaf8e8a5a9c8978fd158c3811f4b583.png differ diff --git a/dev-0/pictures/bfd24d01f48692c96f935939dc3437e4.png b/dev-0/pictures/bfd24d01f48692c96f935939dc3437e4.png new file mode 100644 index 0000000..77c5ae0 Binary files /dev/null and b/dev-0/pictures/bfd24d01f48692c96f935939dc3437e4.png differ diff --git a/dev-0/pictures/c0ce0c714b8e3310c3068e4a564733c0.png b/dev-0/pictures/c0ce0c714b8e3310c3068e4a564733c0.png new file mode 100644 index 0000000..9457aa3 Binary files /dev/null and b/dev-0/pictures/c0ce0c714b8e3310c3068e4a564733c0.png differ diff --git a/dev-0/pictures/c14271145054589ad90ad787e76f71c6.png b/dev-0/pictures/c14271145054589ad90ad787e76f71c6.png new file mode 100644 index 0000000..30999a8 Binary files /dev/null and b/dev-0/pictures/c14271145054589ad90ad787e76f71c6.png differ diff --git a/dev-0/pictures/c16306816ef5ac7570393def43b75ecb.png b/dev-0/pictures/c16306816ef5ac7570393def43b75ecb.png new file mode 100644 index 0000000..6357c84 Binary files /dev/null and b/dev-0/pictures/c16306816ef5ac7570393def43b75ecb.png differ diff --git a/dev-0/pictures/c1be3b167dc643ef3da9e3b788337f52.png b/dev-0/pictures/c1be3b167dc643ef3da9e3b788337f52.png new file mode 100644 index 0000000..862ab3f Binary files /dev/null and b/dev-0/pictures/c1be3b167dc643ef3da9e3b788337f52.png differ diff --git a/dev-0/pictures/c1beff87d1988df42f8ca9b634390555.png b/dev-0/pictures/c1beff87d1988df42f8ca9b634390555.png new file mode 100644 index 0000000..7102878 Binary files /dev/null and b/dev-0/pictures/c1beff87d1988df42f8ca9b634390555.png differ diff --git a/dev-0/pictures/c348605f7f23ad26af62fed5888ec196.png b/dev-0/pictures/c348605f7f23ad26af62fed5888ec196.png new file mode 100644 index 0000000..a927679 Binary files /dev/null and b/dev-0/pictures/c348605f7f23ad26af62fed5888ec196.png differ diff --git a/dev-0/pictures/c354707f889e057aff0bf02a84201107.png b/dev-0/pictures/c354707f889e057aff0bf02a84201107.png new file mode 100644 index 0000000..cea54f8 Binary files /dev/null and b/dev-0/pictures/c354707f889e057aff0bf02a84201107.png differ diff --git a/dev-0/pictures/c359fa5dbaed443c6e4201cbf7179255.png b/dev-0/pictures/c359fa5dbaed443c6e4201cbf7179255.png new file mode 100644 index 0000000..6597334 Binary files /dev/null and b/dev-0/pictures/c359fa5dbaed443c6e4201cbf7179255.png differ diff --git a/dev-0/pictures/c3b5cb2dec0c2722f8aea7b8547ead97.png b/dev-0/pictures/c3b5cb2dec0c2722f8aea7b8547ead97.png new file mode 100644 index 0000000..5cc807b Binary files /dev/null and b/dev-0/pictures/c3b5cb2dec0c2722f8aea7b8547ead97.png differ diff --git a/dev-0/pictures/c3ca1c6ac0176d64654f5a5dfcfe6b47.png b/dev-0/pictures/c3ca1c6ac0176d64654f5a5dfcfe6b47.png new file mode 100644 index 0000000..f2ddcd9 Binary files /dev/null and b/dev-0/pictures/c3ca1c6ac0176d64654f5a5dfcfe6b47.png differ diff --git a/dev-0/pictures/c606eef6822ba27149bb11c76b26a886.png b/dev-0/pictures/c606eef6822ba27149bb11c76b26a886.png new file mode 100644 index 0000000..7249245 Binary files /dev/null and b/dev-0/pictures/c606eef6822ba27149bb11c76b26a886.png differ diff --git a/dev-0/pictures/c756ca54ee5c55512c84d3b6097bf9cf.png b/dev-0/pictures/c756ca54ee5c55512c84d3b6097bf9cf.png new file mode 100644 index 0000000..9cd9516 Binary files /dev/null and b/dev-0/pictures/c756ca54ee5c55512c84d3b6097bf9cf.png differ diff --git a/dev-0/pictures/c78b8da2e6f6561276d1d45d414793c9.png b/dev-0/pictures/c78b8da2e6f6561276d1d45d414793c9.png new file mode 100644 index 0000000..7914aca Binary files /dev/null and b/dev-0/pictures/c78b8da2e6f6561276d1d45d414793c9.png differ diff --git a/dev-0/pictures/c78e6ba2b9329992246e0607621a8a23.png b/dev-0/pictures/c78e6ba2b9329992246e0607621a8a23.png new file mode 100644 index 0000000..6a57366 Binary files /dev/null and b/dev-0/pictures/c78e6ba2b9329992246e0607621a8a23.png differ diff --git a/dev-0/pictures/c8656d81699291fa090b846d9f22f4e0.png b/dev-0/pictures/c8656d81699291fa090b846d9f22f4e0.png new file mode 100644 index 0000000..fb80f9e Binary files /dev/null and b/dev-0/pictures/c8656d81699291fa090b846d9f22f4e0.png differ diff --git a/dev-0/pictures/c8697a9be51c03d495d01b1d3c69dc0b.png b/dev-0/pictures/c8697a9be51c03d495d01b1d3c69dc0b.png new file mode 100644 index 0000000..e20c1a2 Binary files /dev/null and b/dev-0/pictures/c8697a9be51c03d495d01b1d3c69dc0b.png differ diff --git a/dev-0/pictures/c8a6132925503274eb422fccc1819c6e.png b/dev-0/pictures/c8a6132925503274eb422fccc1819c6e.png new file mode 100644 index 0000000..6bb0a7e Binary files /dev/null and b/dev-0/pictures/c8a6132925503274eb422fccc1819c6e.png differ diff --git a/dev-0/pictures/c8b911b8be371caa4ffb468e0905a135.png b/dev-0/pictures/c8b911b8be371caa4ffb468e0905a135.png new file mode 100644 index 0000000..9cd09b8 Binary files /dev/null and b/dev-0/pictures/c8b911b8be371caa4ffb468e0905a135.png differ diff --git a/dev-0/pictures/c9cd59950c4c7a0c605be12df55b06ac.png b/dev-0/pictures/c9cd59950c4c7a0c605be12df55b06ac.png new file mode 100644 index 0000000..c7e4fd3 Binary files /dev/null and b/dev-0/pictures/c9cd59950c4c7a0c605be12df55b06ac.png differ diff --git a/dev-0/pictures/ca7cb1fab515be210832ce4327aec5b3.png b/dev-0/pictures/ca7cb1fab515be210832ce4327aec5b3.png new file mode 100644 index 0000000..6614de4 Binary files /dev/null and b/dev-0/pictures/ca7cb1fab515be210832ce4327aec5b3.png differ diff --git a/dev-0/pictures/caca5119747fa87ebd252ab351ee0f31.png b/dev-0/pictures/caca5119747fa87ebd252ab351ee0f31.png new file mode 100644 index 0000000..81f6e4d Binary files /dev/null and b/dev-0/pictures/caca5119747fa87ebd252ab351ee0f31.png differ diff --git a/dev-0/pictures/cae68a6129d0086f053e443b15e149a1.png b/dev-0/pictures/cae68a6129d0086f053e443b15e149a1.png new file mode 100644 index 0000000..31293a4 Binary files /dev/null and b/dev-0/pictures/cae68a6129d0086f053e443b15e149a1.png differ diff --git a/dev-0/pictures/cb3a65e6ffb4c1238abad4bdfa1dafd9.png b/dev-0/pictures/cb3a65e6ffb4c1238abad4bdfa1dafd9.png new file mode 100644 index 0000000..6b52e13 Binary files /dev/null and b/dev-0/pictures/cb3a65e6ffb4c1238abad4bdfa1dafd9.png differ diff --git a/dev-0/pictures/cb8044204906a34a5aa6573767fcc63a.png b/dev-0/pictures/cb8044204906a34a5aa6573767fcc63a.png new file mode 100644 index 0000000..e94f962 Binary files /dev/null and b/dev-0/pictures/cb8044204906a34a5aa6573767fcc63a.png differ diff --git a/dev-0/pictures/cba5d852cf89eab53b967597c2b90b38.png b/dev-0/pictures/cba5d852cf89eab53b967597c2b90b38.png new file mode 100644 index 0000000..45de30d Binary files /dev/null and b/dev-0/pictures/cba5d852cf89eab53b967597c2b90b38.png differ diff --git a/dev-0/pictures/cc4290579184682db108c2eba7a68b62.png b/dev-0/pictures/cc4290579184682db108c2eba7a68b62.png new file mode 100644 index 0000000..9beff9d Binary files /dev/null and b/dev-0/pictures/cc4290579184682db108c2eba7a68b62.png differ diff --git a/dev-0/pictures/ccc300f49d010231bc8cf3af9c49841b.png b/dev-0/pictures/ccc300f49d010231bc8cf3af9c49841b.png new file mode 100644 index 0000000..29de721 Binary files /dev/null and b/dev-0/pictures/ccc300f49d010231bc8cf3af9c49841b.png differ diff --git a/dev-0/pictures/ccd4c4b1239b39e6f54dc1cae661a3c0.png b/dev-0/pictures/ccd4c4b1239b39e6f54dc1cae661a3c0.png new file mode 100644 index 0000000..31f62eb Binary files /dev/null and b/dev-0/pictures/ccd4c4b1239b39e6f54dc1cae661a3c0.png differ diff --git a/dev-0/pictures/cd24bc45e9f9d63392c1065b15797bfc.png b/dev-0/pictures/cd24bc45e9f9d63392c1065b15797bfc.png new file mode 100644 index 0000000..ca64ae8 Binary files /dev/null and b/dev-0/pictures/cd24bc45e9f9d63392c1065b15797bfc.png differ diff --git a/dev-0/pictures/cdbc404d0df40b5d735046f7cd9065e0.png b/dev-0/pictures/cdbc404d0df40b5d735046f7cd9065e0.png new file mode 100644 index 0000000..92f7ef6 Binary files /dev/null and b/dev-0/pictures/cdbc404d0df40b5d735046f7cd9065e0.png differ diff --git a/dev-0/pictures/ce3396b77f6d02ef500e313b1a3ea904.png b/dev-0/pictures/ce3396b77f6d02ef500e313b1a3ea904.png new file mode 100644 index 0000000..af6a2f3 Binary files /dev/null and b/dev-0/pictures/ce3396b77f6d02ef500e313b1a3ea904.png differ diff --git a/dev-0/pictures/ce854382b0f6e9fe29629b5ed59df31d.png b/dev-0/pictures/ce854382b0f6e9fe29629b5ed59df31d.png new file mode 100644 index 0000000..9ece0a0 Binary files /dev/null and b/dev-0/pictures/ce854382b0f6e9fe29629b5ed59df31d.png differ diff --git a/dev-0/pictures/ce8ee46114d7ac315a203b3d430b1aa7.png b/dev-0/pictures/ce8ee46114d7ac315a203b3d430b1aa7.png new file mode 100644 index 0000000..1ebaeae Binary files /dev/null and b/dev-0/pictures/ce8ee46114d7ac315a203b3d430b1aa7.png differ diff --git a/dev-0/pictures/ceb1147062388765fa319d6035c28647.png b/dev-0/pictures/ceb1147062388765fa319d6035c28647.png new file mode 100644 index 0000000..cc7a4d4 Binary files /dev/null and b/dev-0/pictures/ceb1147062388765fa319d6035c28647.png differ diff --git a/dev-0/pictures/cf4215ed94540034a329ed7f5749351a.png b/dev-0/pictures/cf4215ed94540034a329ed7f5749351a.png new file mode 100644 index 0000000..e14f017 Binary files /dev/null and b/dev-0/pictures/cf4215ed94540034a329ed7f5749351a.png differ diff --git a/dev-0/pictures/cf47aacedf4b81592da98d3f1d3b7839.png b/dev-0/pictures/cf47aacedf4b81592da98d3f1d3b7839.png new file mode 100644 index 0000000..01dfb11 Binary files /dev/null and b/dev-0/pictures/cf47aacedf4b81592da98d3f1d3b7839.png differ diff --git a/dev-0/pictures/d001851310f12a6c18000baea9ab107f.png b/dev-0/pictures/d001851310f12a6c18000baea9ab107f.png new file mode 100644 index 0000000..4b13661 Binary files /dev/null and b/dev-0/pictures/d001851310f12a6c18000baea9ab107f.png differ diff --git a/dev-0/pictures/d04b6e4180bd8bc021f6d9a25f155226.png b/dev-0/pictures/d04b6e4180bd8bc021f6d9a25f155226.png new file mode 100644 index 0000000..2d338ad Binary files /dev/null and b/dev-0/pictures/d04b6e4180bd8bc021f6d9a25f155226.png differ diff --git a/dev-0/pictures/d0809ebd7cff9a3ef767e283c0cd2e63.png b/dev-0/pictures/d0809ebd7cff9a3ef767e283c0cd2e63.png new file mode 100644 index 0000000..9403ab6 Binary files /dev/null and b/dev-0/pictures/d0809ebd7cff9a3ef767e283c0cd2e63.png differ diff --git a/dev-0/pictures/d0a38ffabfa7baf7d6ccb78ff098fa82.png b/dev-0/pictures/d0a38ffabfa7baf7d6ccb78ff098fa82.png new file mode 100644 index 0000000..fd0d5b9 Binary files /dev/null and b/dev-0/pictures/d0a38ffabfa7baf7d6ccb78ff098fa82.png differ diff --git a/dev-0/pictures/d11043f1bc56160314a0426958f5490b.png b/dev-0/pictures/d11043f1bc56160314a0426958f5490b.png new file mode 100644 index 0000000..c97ba83 Binary files /dev/null and b/dev-0/pictures/d11043f1bc56160314a0426958f5490b.png differ diff --git a/dev-0/pictures/d116dca6fc881897706f3f51384acf01.png b/dev-0/pictures/d116dca6fc881897706f3f51384acf01.png new file mode 100644 index 0000000..f11ba7f Binary files /dev/null and b/dev-0/pictures/d116dca6fc881897706f3f51384acf01.png differ diff --git a/dev-0/pictures/d18b7147fa8b224842da50587d47c7be.png b/dev-0/pictures/d18b7147fa8b224842da50587d47c7be.png new file mode 100644 index 0000000..2b4ed9b Binary files /dev/null and b/dev-0/pictures/d18b7147fa8b224842da50587d47c7be.png differ diff --git a/dev-0/pictures/d1c87b6a17eafee5e6150c6ee0bb19c6.png b/dev-0/pictures/d1c87b6a17eafee5e6150c6ee0bb19c6.png new file mode 100644 index 0000000..98ad77b Binary files /dev/null and b/dev-0/pictures/d1c87b6a17eafee5e6150c6ee0bb19c6.png differ diff --git a/dev-0/pictures/d1f56326963dca3c1a2d180080b2ceb2.png b/dev-0/pictures/d1f56326963dca3c1a2d180080b2ceb2.png new file mode 100644 index 0000000..6929802 Binary files /dev/null and b/dev-0/pictures/d1f56326963dca3c1a2d180080b2ceb2.png differ diff --git a/dev-0/pictures/d24adc769132f1e4991f2c443648e71e.png b/dev-0/pictures/d24adc769132f1e4991f2c443648e71e.png new file mode 100644 index 0000000..6b30184 Binary files /dev/null and b/dev-0/pictures/d24adc769132f1e4991f2c443648e71e.png differ diff --git a/dev-0/pictures/d262a9283347c545fdcf6a1bec50ee2a.png b/dev-0/pictures/d262a9283347c545fdcf6a1bec50ee2a.png new file mode 100644 index 0000000..9b3b89d Binary files /dev/null and b/dev-0/pictures/d262a9283347c545fdcf6a1bec50ee2a.png differ diff --git a/dev-0/pictures/d2ede3c292f9853b7cbaf88db05d6faf.png b/dev-0/pictures/d2ede3c292f9853b7cbaf88db05d6faf.png new file mode 100644 index 0000000..bfb3d25 Binary files /dev/null and b/dev-0/pictures/d2ede3c292f9853b7cbaf88db05d6faf.png differ diff --git a/dev-0/pictures/d410a8e2502f00c775299c8996cb7865.png b/dev-0/pictures/d410a8e2502f00c775299c8996cb7865.png new file mode 100644 index 0000000..a159783 Binary files /dev/null and b/dev-0/pictures/d410a8e2502f00c775299c8996cb7865.png differ diff --git a/dev-0/pictures/d4be4b456beb7ad389da4d60c197dc81.png b/dev-0/pictures/d4be4b456beb7ad389da4d60c197dc81.png new file mode 100644 index 0000000..2b299b5 Binary files /dev/null and b/dev-0/pictures/d4be4b456beb7ad389da4d60c197dc81.png differ diff --git a/dev-0/pictures/d4e5c87b4de8ae1f900f876efb32c514.png b/dev-0/pictures/d4e5c87b4de8ae1f900f876efb32c514.png new file mode 100644 index 0000000..e667232 Binary files /dev/null and b/dev-0/pictures/d4e5c87b4de8ae1f900f876efb32c514.png differ diff --git a/dev-0/pictures/d5111c8d1669b43f71d34649120c8e76.png b/dev-0/pictures/d5111c8d1669b43f71d34649120c8e76.png new file mode 100644 index 0000000..309e002 Binary files /dev/null and b/dev-0/pictures/d5111c8d1669b43f71d34649120c8e76.png differ diff --git a/dev-0/pictures/d585e93a1ca7ecc5dc1e58c123316209.png b/dev-0/pictures/d585e93a1ca7ecc5dc1e58c123316209.png new file mode 100644 index 0000000..7880f26 Binary files /dev/null and b/dev-0/pictures/d585e93a1ca7ecc5dc1e58c123316209.png differ diff --git a/dev-0/pictures/d63d2bb8f07e2779ec2908f4476b7007.png b/dev-0/pictures/d63d2bb8f07e2779ec2908f4476b7007.png new file mode 100644 index 0000000..30170f0 Binary files /dev/null and b/dev-0/pictures/d63d2bb8f07e2779ec2908f4476b7007.png differ diff --git a/dev-0/pictures/d68543ea873dd64f9a9629c05eaed2b9.png b/dev-0/pictures/d68543ea873dd64f9a9629c05eaed2b9.png new file mode 100644 index 0000000..5e16c00 Binary files /dev/null and b/dev-0/pictures/d68543ea873dd64f9a9629c05eaed2b9.png differ diff --git a/dev-0/pictures/d6aa36a07a0e9e54bce50808e3380552.png b/dev-0/pictures/d6aa36a07a0e9e54bce50808e3380552.png new file mode 100644 index 0000000..2233a85 Binary files /dev/null and b/dev-0/pictures/d6aa36a07a0e9e54bce50808e3380552.png differ diff --git a/dev-0/pictures/d7b80cb7d69bb9178531efb17e7e2096.png b/dev-0/pictures/d7b80cb7d69bb9178531efb17e7e2096.png new file mode 100644 index 0000000..ea5d462 Binary files /dev/null and b/dev-0/pictures/d7b80cb7d69bb9178531efb17e7e2096.png differ diff --git a/dev-0/pictures/d89ef2c2da89290b69ba4eb3a85d53b0.png b/dev-0/pictures/d89ef2c2da89290b69ba4eb3a85d53b0.png new file mode 100644 index 0000000..7d342ba Binary files /dev/null and b/dev-0/pictures/d89ef2c2da89290b69ba4eb3a85d53b0.png differ diff --git a/dev-0/pictures/d8eb180a8e46802058cac9f1329d5339.png b/dev-0/pictures/d8eb180a8e46802058cac9f1329d5339.png new file mode 100644 index 0000000..74e2267 Binary files /dev/null and b/dev-0/pictures/d8eb180a8e46802058cac9f1329d5339.png differ diff --git a/dev-0/pictures/d91ec96743dcbf913bfc5704ef2bcaa6.png b/dev-0/pictures/d91ec96743dcbf913bfc5704ef2bcaa6.png new file mode 100644 index 0000000..b8a3cee Binary files /dev/null and b/dev-0/pictures/d91ec96743dcbf913bfc5704ef2bcaa6.png differ diff --git a/dev-0/pictures/d9667bbb9496dcfa696ab71afd280841.png b/dev-0/pictures/d9667bbb9496dcfa696ab71afd280841.png new file mode 100644 index 0000000..acf02cb Binary files /dev/null and b/dev-0/pictures/d9667bbb9496dcfa696ab71afd280841.png differ diff --git a/dev-0/pictures/da0d639d3c36f720f870539bf4a02f85.png b/dev-0/pictures/da0d639d3c36f720f870539bf4a02f85.png new file mode 100644 index 0000000..36cac05 Binary files /dev/null and b/dev-0/pictures/da0d639d3c36f720f870539bf4a02f85.png differ diff --git a/dev-0/pictures/da4273b1bf4cc3c1ebd0371f422bf013.png b/dev-0/pictures/da4273b1bf4cc3c1ebd0371f422bf013.png new file mode 100644 index 0000000..48ac17a Binary files /dev/null and b/dev-0/pictures/da4273b1bf4cc3c1ebd0371f422bf013.png differ diff --git a/dev-0/pictures/da9fcad86d856cba74466c2236b855d7.png b/dev-0/pictures/da9fcad86d856cba74466c2236b855d7.png new file mode 100644 index 0000000..d0605b3 Binary files /dev/null and b/dev-0/pictures/da9fcad86d856cba74466c2236b855d7.png differ diff --git a/dev-0/pictures/dad6aa72d8a19320e5222a970c5d0fd0.png b/dev-0/pictures/dad6aa72d8a19320e5222a970c5d0fd0.png new file mode 100644 index 0000000..548d895 Binary files /dev/null and b/dev-0/pictures/dad6aa72d8a19320e5222a970c5d0fd0.png differ diff --git a/dev-0/pictures/db2b90cc999a82134310e565b5ee587f.png b/dev-0/pictures/db2b90cc999a82134310e565b5ee587f.png new file mode 100644 index 0000000..733ba5d Binary files /dev/null and b/dev-0/pictures/db2b90cc999a82134310e565b5ee587f.png differ diff --git a/dev-0/pictures/db675437bf9109825aaf3183eeb50326.png b/dev-0/pictures/db675437bf9109825aaf3183eeb50326.png new file mode 100644 index 0000000..3923b0a Binary files /dev/null and b/dev-0/pictures/db675437bf9109825aaf3183eeb50326.png differ diff --git a/dev-0/pictures/db9176c68252249f1523215ddad1205a.png b/dev-0/pictures/db9176c68252249f1523215ddad1205a.png new file mode 100644 index 0000000..12bdb33 Binary files /dev/null and b/dev-0/pictures/db9176c68252249f1523215ddad1205a.png differ diff --git a/dev-0/pictures/dbe64fb928a1a6937b96f893f8e269b4.png b/dev-0/pictures/dbe64fb928a1a6937b96f893f8e269b4.png new file mode 100644 index 0000000..c294134 Binary files /dev/null and b/dev-0/pictures/dbe64fb928a1a6937b96f893f8e269b4.png differ diff --git a/dev-0/pictures/dbfa5210f15c3e6495f1d7cf1d872281.png b/dev-0/pictures/dbfa5210f15c3e6495f1d7cf1d872281.png new file mode 100644 index 0000000..b9130b1 Binary files /dev/null and b/dev-0/pictures/dbfa5210f15c3e6495f1d7cf1d872281.png differ diff --git a/dev-0/pictures/dd7c91d5973f7b29d222e16ff0f4bcd7.png b/dev-0/pictures/dd7c91d5973f7b29d222e16ff0f4bcd7.png new file mode 100644 index 0000000..a2c86ba Binary files /dev/null and b/dev-0/pictures/dd7c91d5973f7b29d222e16ff0f4bcd7.png differ diff --git a/dev-0/pictures/dd99862472dab17c4b830cff784206a0.png b/dev-0/pictures/dd99862472dab17c4b830cff784206a0.png new file mode 100644 index 0000000..ef77116 Binary files /dev/null and b/dev-0/pictures/dd99862472dab17c4b830cff784206a0.png differ diff --git a/dev-0/pictures/de8693213eb128940ad5cd31652079fc.png b/dev-0/pictures/de8693213eb128940ad5cd31652079fc.png new file mode 100644 index 0000000..1d26d0f Binary files /dev/null and b/dev-0/pictures/de8693213eb128940ad5cd31652079fc.png differ diff --git a/dev-0/pictures/de89b20f77c5397311e534ba781d6221.png b/dev-0/pictures/de89b20f77c5397311e534ba781d6221.png new file mode 100644 index 0000000..a3a684c Binary files /dev/null and b/dev-0/pictures/de89b20f77c5397311e534ba781d6221.png differ diff --git a/dev-0/pictures/ded9a6d1dad482a2791b6b36294646c9.png b/dev-0/pictures/ded9a6d1dad482a2791b6b36294646c9.png new file mode 100644 index 0000000..c145541 Binary files /dev/null and b/dev-0/pictures/ded9a6d1dad482a2791b6b36294646c9.png differ diff --git a/dev-0/pictures/df0925556920efe43eb99a934953e172.png b/dev-0/pictures/df0925556920efe43eb99a934953e172.png new file mode 100644 index 0000000..616117a Binary files /dev/null and b/dev-0/pictures/df0925556920efe43eb99a934953e172.png differ diff --git a/dev-0/pictures/dfa9151f0d853b50181d342779fe25fc.png b/dev-0/pictures/dfa9151f0d853b50181d342779fe25fc.png new file mode 100644 index 0000000..f16b209 Binary files /dev/null and b/dev-0/pictures/dfa9151f0d853b50181d342779fe25fc.png differ diff --git a/dev-0/pictures/dfb13f78715ca15f6e439ee2a8169ada.png b/dev-0/pictures/dfb13f78715ca15f6e439ee2a8169ada.png new file mode 100644 index 0000000..507dbf9 Binary files /dev/null and b/dev-0/pictures/dfb13f78715ca15f6e439ee2a8169ada.png differ diff --git a/dev-0/pictures/e0fbccbd344a1ed972f36abc37e17645.png b/dev-0/pictures/e0fbccbd344a1ed972f36abc37e17645.png new file mode 100644 index 0000000..e63d9a4 Binary files /dev/null and b/dev-0/pictures/e0fbccbd344a1ed972f36abc37e17645.png differ diff --git a/dev-0/pictures/e10e9ca4e0cf4db8b59328181fd6d482.png b/dev-0/pictures/e10e9ca4e0cf4db8b59328181fd6d482.png new file mode 100644 index 0000000..8399eaf Binary files /dev/null and b/dev-0/pictures/e10e9ca4e0cf4db8b59328181fd6d482.png differ diff --git a/dev-0/pictures/e14710cadf83abe095a57398241989d3.png b/dev-0/pictures/e14710cadf83abe095a57398241989d3.png new file mode 100644 index 0000000..6a2db98 Binary files /dev/null and b/dev-0/pictures/e14710cadf83abe095a57398241989d3.png differ diff --git a/dev-0/pictures/e1506e60a6c16e55b6d1d3af23c88f5c.png b/dev-0/pictures/e1506e60a6c16e55b6d1d3af23c88f5c.png new file mode 100644 index 0000000..4966593 Binary files /dev/null and b/dev-0/pictures/e1506e60a6c16e55b6d1d3af23c88f5c.png differ diff --git a/dev-0/pictures/e153a5e12461b3a2432dc426716a8946.png b/dev-0/pictures/e153a5e12461b3a2432dc426716a8946.png new file mode 100644 index 0000000..81a4592 Binary files /dev/null and b/dev-0/pictures/e153a5e12461b3a2432dc426716a8946.png differ diff --git a/dev-0/pictures/e156650e13d42b83d3c6ff7130a715f2.png b/dev-0/pictures/e156650e13d42b83d3c6ff7130a715f2.png new file mode 100644 index 0000000..4f50ff1 Binary files /dev/null and b/dev-0/pictures/e156650e13d42b83d3c6ff7130a715f2.png differ diff --git a/dev-0/pictures/e1788506e1685c26e6f210a75e2fa2a4.png b/dev-0/pictures/e1788506e1685c26e6f210a75e2fa2a4.png new file mode 100644 index 0000000..1b32d2a Binary files /dev/null and b/dev-0/pictures/e1788506e1685c26e6f210a75e2fa2a4.png differ diff --git a/dev-0/pictures/e18ac30315f378acdce8aa34cd3a4f10.png b/dev-0/pictures/e18ac30315f378acdce8aa34cd3a4f10.png new file mode 100644 index 0000000..f7a4ac7 Binary files /dev/null and b/dev-0/pictures/e18ac30315f378acdce8aa34cd3a4f10.png differ diff --git a/dev-0/pictures/e20618573cbf80187090f99a034dde25.png b/dev-0/pictures/e20618573cbf80187090f99a034dde25.png new file mode 100644 index 0000000..c8d9a2a Binary files /dev/null and b/dev-0/pictures/e20618573cbf80187090f99a034dde25.png differ diff --git a/dev-0/pictures/e24b468c23c7005af2837f7947331db0.png b/dev-0/pictures/e24b468c23c7005af2837f7947331db0.png new file mode 100644 index 0000000..a1d8adb Binary files /dev/null and b/dev-0/pictures/e24b468c23c7005af2837f7947331db0.png differ diff --git a/dev-0/pictures/e3369d157f7722e1e4750ca9f0a0a2b7.png b/dev-0/pictures/e3369d157f7722e1e4750ca9f0a0a2b7.png new file mode 100644 index 0000000..931f13b Binary files /dev/null and b/dev-0/pictures/e3369d157f7722e1e4750ca9f0a0a2b7.png differ diff --git a/dev-0/pictures/e342c1aa665bbed1980b6c7c1a1f18c3.png b/dev-0/pictures/e342c1aa665bbed1980b6c7c1a1f18c3.png new file mode 100644 index 0000000..4cf8ed0 Binary files /dev/null and b/dev-0/pictures/e342c1aa665bbed1980b6c7c1a1f18c3.png differ diff --git a/dev-0/pictures/e3fb45cce2ba2f8ae89eb23a5b9d40b8.png b/dev-0/pictures/e3fb45cce2ba2f8ae89eb23a5b9d40b8.png new file mode 100644 index 0000000..522a6ce Binary files /dev/null and b/dev-0/pictures/e3fb45cce2ba2f8ae89eb23a5b9d40b8.png differ diff --git a/dev-0/pictures/e45a329ca9ed54935b92c9ce96bef1a1.png b/dev-0/pictures/e45a329ca9ed54935b92c9ce96bef1a1.png new file mode 100644 index 0000000..297565e Binary files /dev/null and b/dev-0/pictures/e45a329ca9ed54935b92c9ce96bef1a1.png differ diff --git a/dev-0/pictures/e4ad2fa0a9f47db05738e5df2a400e84.png b/dev-0/pictures/e4ad2fa0a9f47db05738e5df2a400e84.png new file mode 100644 index 0000000..e8d2df9 Binary files /dev/null and b/dev-0/pictures/e4ad2fa0a9f47db05738e5df2a400e84.png differ diff --git a/dev-0/pictures/e4ee184b1ab0aa618e77d7e618f6a4c2.png b/dev-0/pictures/e4ee184b1ab0aa618e77d7e618f6a4c2.png new file mode 100644 index 0000000..83e123e Binary files /dev/null and b/dev-0/pictures/e4ee184b1ab0aa618e77d7e618f6a4c2.png differ diff --git a/dev-0/pictures/e52ea277993eefe388aa34e42763c0d6.png b/dev-0/pictures/e52ea277993eefe388aa34e42763c0d6.png new file mode 100644 index 0000000..012edfd Binary files /dev/null and b/dev-0/pictures/e52ea277993eefe388aa34e42763c0d6.png differ diff --git a/dev-0/pictures/e5452db9aed09be7272ed078dce400d4.png b/dev-0/pictures/e5452db9aed09be7272ed078dce400d4.png new file mode 100644 index 0000000..c49c8c3 Binary files /dev/null and b/dev-0/pictures/e5452db9aed09be7272ed078dce400d4.png differ diff --git a/dev-0/pictures/e555d8c862560a5fd624a9f2cfa69b79.png b/dev-0/pictures/e555d8c862560a5fd624a9f2cfa69b79.png new file mode 100644 index 0000000..b0110db Binary files /dev/null and b/dev-0/pictures/e555d8c862560a5fd624a9f2cfa69b79.png differ diff --git a/dev-0/pictures/e57d821b3b53ac29908e46da012e716c.png b/dev-0/pictures/e57d821b3b53ac29908e46da012e716c.png new file mode 100644 index 0000000..f3aa44d Binary files /dev/null and b/dev-0/pictures/e57d821b3b53ac29908e46da012e716c.png differ diff --git a/dev-0/pictures/e5de86ef6bb326c1736aa0caf1a8fd13.png b/dev-0/pictures/e5de86ef6bb326c1736aa0caf1a8fd13.png new file mode 100644 index 0000000..dc38fd4 Binary files /dev/null and b/dev-0/pictures/e5de86ef6bb326c1736aa0caf1a8fd13.png differ diff --git a/dev-0/pictures/e67568045ced6c46570e40dfa8748e9f.png b/dev-0/pictures/e67568045ced6c46570e40dfa8748e9f.png new file mode 100644 index 0000000..82a5e30 Binary files /dev/null and b/dev-0/pictures/e67568045ced6c46570e40dfa8748e9f.png differ diff --git a/dev-0/pictures/e6b2f6e6ec751c71dc0809fad80abcb2.png b/dev-0/pictures/e6b2f6e6ec751c71dc0809fad80abcb2.png new file mode 100644 index 0000000..4adb595 Binary files /dev/null and b/dev-0/pictures/e6b2f6e6ec751c71dc0809fad80abcb2.png differ diff --git a/dev-0/pictures/e725001b640736cd7ca1d66a72056168.png b/dev-0/pictures/e725001b640736cd7ca1d66a72056168.png new file mode 100644 index 0000000..f27da79 Binary files /dev/null and b/dev-0/pictures/e725001b640736cd7ca1d66a72056168.png differ diff --git a/dev-0/pictures/e77247480e98ee94c084d69e8cbd64da.png b/dev-0/pictures/e77247480e98ee94c084d69e8cbd64da.png new file mode 100644 index 0000000..0732abc Binary files /dev/null and b/dev-0/pictures/e77247480e98ee94c084d69e8cbd64da.png differ diff --git a/dev-0/pictures/e7873aaa56b4f180d8c6f8a3f88ff44b.png b/dev-0/pictures/e7873aaa56b4f180d8c6f8a3f88ff44b.png new file mode 100644 index 0000000..23e533e Binary files /dev/null and b/dev-0/pictures/e7873aaa56b4f180d8c6f8a3f88ff44b.png differ diff --git a/dev-0/pictures/e7abf66bffd47208fc6275b679f52ff6.png b/dev-0/pictures/e7abf66bffd47208fc6275b679f52ff6.png new file mode 100644 index 0000000..22571a9 Binary files /dev/null and b/dev-0/pictures/e7abf66bffd47208fc6275b679f52ff6.png differ diff --git a/dev-0/pictures/e7c326490bfb01416e57852c9c67d9ed.png b/dev-0/pictures/e7c326490bfb01416e57852c9c67d9ed.png new file mode 100644 index 0000000..7590da9 Binary files /dev/null and b/dev-0/pictures/e7c326490bfb01416e57852c9c67d9ed.png differ diff --git a/dev-0/pictures/e7cff9d5ea97ddba82242ffa719af792.png b/dev-0/pictures/e7cff9d5ea97ddba82242ffa719af792.png new file mode 100644 index 0000000..ac83394 Binary files /dev/null and b/dev-0/pictures/e7cff9d5ea97ddba82242ffa719af792.png differ diff --git a/dev-0/pictures/e7d616bf12c852dc6ec857035a035bf6.png b/dev-0/pictures/e7d616bf12c852dc6ec857035a035bf6.png new file mode 100644 index 0000000..ac67fea Binary files /dev/null and b/dev-0/pictures/e7d616bf12c852dc6ec857035a035bf6.png differ diff --git a/dev-0/pictures/e8027b790c0ab21ff61312a84d04ea82.png b/dev-0/pictures/e8027b790c0ab21ff61312a84d04ea82.png new file mode 100644 index 0000000..334a3d3 Binary files /dev/null and b/dev-0/pictures/e8027b790c0ab21ff61312a84d04ea82.png differ diff --git a/dev-0/pictures/e816a49838f9c0dc90a087fd55e48567.png b/dev-0/pictures/e816a49838f9c0dc90a087fd55e48567.png new file mode 100644 index 0000000..bea6c46 Binary files /dev/null and b/dev-0/pictures/e816a49838f9c0dc90a087fd55e48567.png differ diff --git a/dev-0/pictures/e84f78c7e558205c25c165d448f279f3.png b/dev-0/pictures/e84f78c7e558205c25c165d448f279f3.png new file mode 100644 index 0000000..84544f9 Binary files /dev/null and b/dev-0/pictures/e84f78c7e558205c25c165d448f279f3.png differ diff --git a/dev-0/pictures/e85c21c0c475414bfa31b56e60c74a52.png b/dev-0/pictures/e85c21c0c475414bfa31b56e60c74a52.png new file mode 100644 index 0000000..ce9ffa6 Binary files /dev/null and b/dev-0/pictures/e85c21c0c475414bfa31b56e60c74a52.png differ diff --git a/dev-0/pictures/e85d9bbcc5c96abbcd9eedfbf1dca25a.png b/dev-0/pictures/e85d9bbcc5c96abbcd9eedfbf1dca25a.png new file mode 100644 index 0000000..e8d4523 Binary files /dev/null and b/dev-0/pictures/e85d9bbcc5c96abbcd9eedfbf1dca25a.png differ diff --git a/dev-0/pictures/e88f3d89d8a5f9bd45c147000c65da61.png b/dev-0/pictures/e88f3d89d8a5f9bd45c147000c65da61.png new file mode 100644 index 0000000..2710e0d Binary files /dev/null and b/dev-0/pictures/e88f3d89d8a5f9bd45c147000c65da61.png differ diff --git a/dev-0/pictures/e89be938d6fb02f0f7487595125d5ecf.png b/dev-0/pictures/e89be938d6fb02f0f7487595125d5ecf.png new file mode 100644 index 0000000..d416a61 Binary files /dev/null and b/dev-0/pictures/e89be938d6fb02f0f7487595125d5ecf.png differ diff --git a/dev-0/pictures/e8fae963f07d637c832094ba7e50afa2.png b/dev-0/pictures/e8fae963f07d637c832094ba7e50afa2.png new file mode 100644 index 0000000..7ca8c86 Binary files /dev/null and b/dev-0/pictures/e8fae963f07d637c832094ba7e50afa2.png differ diff --git a/dev-0/pictures/e921f8554bfdb5329103e33cfa35a954.png b/dev-0/pictures/e921f8554bfdb5329103e33cfa35a954.png new file mode 100644 index 0000000..563dd75 Binary files /dev/null and b/dev-0/pictures/e921f8554bfdb5329103e33cfa35a954.png differ diff --git a/dev-0/pictures/e92b8852e95eaa760291e2924b03101a.png b/dev-0/pictures/e92b8852e95eaa760291e2924b03101a.png new file mode 100644 index 0000000..1fdf528 Binary files /dev/null and b/dev-0/pictures/e92b8852e95eaa760291e2924b03101a.png differ diff --git a/dev-0/pictures/ea7385f38621da87eef7409ab62f0e3e.png b/dev-0/pictures/ea7385f38621da87eef7409ab62f0e3e.png new file mode 100644 index 0000000..e8203c5 Binary files /dev/null and b/dev-0/pictures/ea7385f38621da87eef7409ab62f0e3e.png differ diff --git a/dev-0/pictures/ec066f98285458e6e0c4a4e5a7988fae.png b/dev-0/pictures/ec066f98285458e6e0c4a4e5a7988fae.png new file mode 100644 index 0000000..86c148b Binary files /dev/null and b/dev-0/pictures/ec066f98285458e6e0c4a4e5a7988fae.png differ diff --git a/dev-0/pictures/ec12cdef7d2ce6791d5555b86849c4cb.png b/dev-0/pictures/ec12cdef7d2ce6791d5555b86849c4cb.png new file mode 100644 index 0000000..9c9ad06 Binary files /dev/null and b/dev-0/pictures/ec12cdef7d2ce6791d5555b86849c4cb.png differ diff --git a/dev-0/pictures/ec1a0a12c5eec2eba6988bbd06913948.png b/dev-0/pictures/ec1a0a12c5eec2eba6988bbd06913948.png new file mode 100644 index 0000000..04275ba Binary files /dev/null and b/dev-0/pictures/ec1a0a12c5eec2eba6988bbd06913948.png differ diff --git a/dev-0/pictures/ecafd9fbddbc68177c45514a9864cd6c.png b/dev-0/pictures/ecafd9fbddbc68177c45514a9864cd6c.png new file mode 100644 index 0000000..b94cee5 Binary files /dev/null and b/dev-0/pictures/ecafd9fbddbc68177c45514a9864cd6c.png differ diff --git a/dev-0/pictures/ece3eca53cb1e3837fd23b94def2baa6.png b/dev-0/pictures/ece3eca53cb1e3837fd23b94def2baa6.png new file mode 100644 index 0000000..6eb1fd0 Binary files /dev/null and b/dev-0/pictures/ece3eca53cb1e3837fd23b94def2baa6.png differ diff --git a/dev-0/pictures/ed040cfa673ea5e7a83c9410c1238a74.png b/dev-0/pictures/ed040cfa673ea5e7a83c9410c1238a74.png new file mode 100644 index 0000000..38da468 Binary files /dev/null and b/dev-0/pictures/ed040cfa673ea5e7a83c9410c1238a74.png differ diff --git a/dev-0/pictures/ed14d030f2e36ad077b90fc40acaa7d1.png b/dev-0/pictures/ed14d030f2e36ad077b90fc40acaa7d1.png new file mode 100644 index 0000000..8fe8f79 Binary files /dev/null and b/dev-0/pictures/ed14d030f2e36ad077b90fc40acaa7d1.png differ diff --git a/dev-0/pictures/ed20a13c0628dbae58950ae9d613d947.png b/dev-0/pictures/ed20a13c0628dbae58950ae9d613d947.png new file mode 100644 index 0000000..dffd11c Binary files /dev/null and b/dev-0/pictures/ed20a13c0628dbae58950ae9d613d947.png differ diff --git a/dev-0/pictures/ed703e1b74b5c3f9c3ecd9c3ef13f412.png b/dev-0/pictures/ed703e1b74b5c3f9c3ecd9c3ef13f412.png new file mode 100644 index 0000000..472a060 Binary files /dev/null and b/dev-0/pictures/ed703e1b74b5c3f9c3ecd9c3ef13f412.png differ diff --git a/dev-0/pictures/edc70946c63ecd00ba28ad811509cd88.png b/dev-0/pictures/edc70946c63ecd00ba28ad811509cd88.png new file mode 100644 index 0000000..ba484f8 Binary files /dev/null and b/dev-0/pictures/edc70946c63ecd00ba28ad811509cd88.png differ diff --git a/dev-0/pictures/ede93014519df003678001dde369443f.png b/dev-0/pictures/ede93014519df003678001dde369443f.png new file mode 100644 index 0000000..db05f5b Binary files /dev/null and b/dev-0/pictures/ede93014519df003678001dde369443f.png differ diff --git a/dev-0/pictures/ee4ab29e232c6296b86d7bc12a29713a.png b/dev-0/pictures/ee4ab29e232c6296b86d7bc12a29713a.png new file mode 100644 index 0000000..e221923 Binary files /dev/null and b/dev-0/pictures/ee4ab29e232c6296b86d7bc12a29713a.png differ diff --git a/dev-0/pictures/eee8dc7c6b70c5c0cbe8ca2baae584f8.png b/dev-0/pictures/eee8dc7c6b70c5c0cbe8ca2baae584f8.png new file mode 100644 index 0000000..3d47dc4 Binary files /dev/null and b/dev-0/pictures/eee8dc7c6b70c5c0cbe8ca2baae584f8.png differ diff --git a/dev-0/pictures/ef6127806a772e9001ae63136e4c2ed6.png b/dev-0/pictures/ef6127806a772e9001ae63136e4c2ed6.png new file mode 100644 index 0000000..62cf57b Binary files /dev/null and b/dev-0/pictures/ef6127806a772e9001ae63136e4c2ed6.png differ diff --git a/dev-0/pictures/efbac43991e8c4ae5b730549163b60bc.png b/dev-0/pictures/efbac43991e8c4ae5b730549163b60bc.png new file mode 100644 index 0000000..b1711c8 Binary files /dev/null and b/dev-0/pictures/efbac43991e8c4ae5b730549163b60bc.png differ diff --git a/dev-0/pictures/efeeea3cc17ec90df658f5cc05e2384d.png b/dev-0/pictures/efeeea3cc17ec90df658f5cc05e2384d.png new file mode 100644 index 0000000..8e15053 Binary files /dev/null and b/dev-0/pictures/efeeea3cc17ec90df658f5cc05e2384d.png differ diff --git a/dev-0/pictures/f03301c77e8c69b694819f81600e7f30.png b/dev-0/pictures/f03301c77e8c69b694819f81600e7f30.png new file mode 100644 index 0000000..1c9bad1 Binary files /dev/null and b/dev-0/pictures/f03301c77e8c69b694819f81600e7f30.png differ diff --git a/dev-0/pictures/f06e8636c4c31cdfbff5480c5d88e892.png b/dev-0/pictures/f06e8636c4c31cdfbff5480c5d88e892.png new file mode 100644 index 0000000..2e6203f Binary files /dev/null and b/dev-0/pictures/f06e8636c4c31cdfbff5480c5d88e892.png differ diff --git a/dev-0/pictures/f10462680bbaf6f9af596643c2baeebf.png b/dev-0/pictures/f10462680bbaf6f9af596643c2baeebf.png new file mode 100644 index 0000000..c7fb871 Binary files /dev/null and b/dev-0/pictures/f10462680bbaf6f9af596643c2baeebf.png differ diff --git a/dev-0/pictures/f120f75953462990f02c9efaf12fa6a7.png b/dev-0/pictures/f120f75953462990f02c9efaf12fa6a7.png new file mode 100644 index 0000000..028b6d4 Binary files /dev/null and b/dev-0/pictures/f120f75953462990f02c9efaf12fa6a7.png differ diff --git a/dev-0/pictures/f154a49393083bf18422cacc8f0c5561.png b/dev-0/pictures/f154a49393083bf18422cacc8f0c5561.png new file mode 100644 index 0000000..49a7cab Binary files /dev/null and b/dev-0/pictures/f154a49393083bf18422cacc8f0c5561.png differ diff --git a/dev-0/pictures/f1ffbf9afd04c622abae17ace4da54e2.png b/dev-0/pictures/f1ffbf9afd04c622abae17ace4da54e2.png new file mode 100644 index 0000000..171ca65 Binary files /dev/null and b/dev-0/pictures/f1ffbf9afd04c622abae17ace4da54e2.png differ diff --git a/dev-0/pictures/f298bd8d5d16ba88b900a3c25fbad203.png b/dev-0/pictures/f298bd8d5d16ba88b900a3c25fbad203.png new file mode 100644 index 0000000..5c3166b Binary files /dev/null and b/dev-0/pictures/f298bd8d5d16ba88b900a3c25fbad203.png differ diff --git a/dev-0/pictures/f392600b561d8aecf66bfcf36048c4e4.png b/dev-0/pictures/f392600b561d8aecf66bfcf36048c4e4.png new file mode 100644 index 0000000..05105e4 Binary files /dev/null and b/dev-0/pictures/f392600b561d8aecf66bfcf36048c4e4.png differ diff --git a/dev-0/pictures/f3b628ee5e0becb64e687a46b4471eb3.png b/dev-0/pictures/f3b628ee5e0becb64e687a46b4471eb3.png new file mode 100644 index 0000000..f8df877 Binary files /dev/null and b/dev-0/pictures/f3b628ee5e0becb64e687a46b4471eb3.png differ diff --git a/dev-0/pictures/f4223c3736c224df6cbfded84fbf8bfa.png b/dev-0/pictures/f4223c3736c224df6cbfded84fbf8bfa.png new file mode 100644 index 0000000..523b247 Binary files /dev/null and b/dev-0/pictures/f4223c3736c224df6cbfded84fbf8bfa.png differ diff --git a/dev-0/pictures/f479c252893e98ab19be494185a5feed.png b/dev-0/pictures/f479c252893e98ab19be494185a5feed.png new file mode 100644 index 0000000..2c15de6 Binary files /dev/null and b/dev-0/pictures/f479c252893e98ab19be494185a5feed.png differ diff --git a/dev-0/pictures/f4ce48c47989581c3a865b1113bc49c7.png b/dev-0/pictures/f4ce48c47989581c3a865b1113bc49c7.png new file mode 100644 index 0000000..6fe4f49 Binary files /dev/null and b/dev-0/pictures/f4ce48c47989581c3a865b1113bc49c7.png differ diff --git a/dev-0/pictures/f4dbb9c0be9dadac10d3386af7e07144.png b/dev-0/pictures/f4dbb9c0be9dadac10d3386af7e07144.png new file mode 100644 index 0000000..e09a5af Binary files /dev/null and b/dev-0/pictures/f4dbb9c0be9dadac10d3386af7e07144.png differ diff --git a/dev-0/pictures/f52e37a894355b49a9f141e03a9ce3c4.png b/dev-0/pictures/f52e37a894355b49a9f141e03a9ce3c4.png new file mode 100644 index 0000000..bf0fedf Binary files /dev/null and b/dev-0/pictures/f52e37a894355b49a9f141e03a9ce3c4.png differ diff --git a/dev-0/pictures/f5acd14b0b400db992d3d0b55a1c3760.png b/dev-0/pictures/f5acd14b0b400db992d3d0b55a1c3760.png new file mode 100644 index 0000000..f73c737 Binary files /dev/null and b/dev-0/pictures/f5acd14b0b400db992d3d0b55a1c3760.png differ diff --git a/dev-0/pictures/f5d1cdfef11e0868d64aa16296da018d.png b/dev-0/pictures/f5d1cdfef11e0868d64aa16296da018d.png new file mode 100644 index 0000000..0a5d12d Binary files /dev/null and b/dev-0/pictures/f5d1cdfef11e0868d64aa16296da018d.png differ diff --git a/dev-0/pictures/f6fcb113ab234e6ce176aee53d04208f.png b/dev-0/pictures/f6fcb113ab234e6ce176aee53d04208f.png new file mode 100644 index 0000000..0674da0 Binary files /dev/null and b/dev-0/pictures/f6fcb113ab234e6ce176aee53d04208f.png differ diff --git a/dev-0/pictures/f71cc18d7e7a362c886c41d10ac6e099.png b/dev-0/pictures/f71cc18d7e7a362c886c41d10ac6e099.png new file mode 100644 index 0000000..d7935af Binary files /dev/null and b/dev-0/pictures/f71cc18d7e7a362c886c41d10ac6e099.png differ diff --git a/dev-0/pictures/f763441786a95bd24e152918db2228a8.png b/dev-0/pictures/f763441786a95bd24e152918db2228a8.png new file mode 100644 index 0000000..5b34976 Binary files /dev/null and b/dev-0/pictures/f763441786a95bd24e152918db2228a8.png differ diff --git a/dev-0/pictures/f7710279715947a5c053bb49927bfd36.png b/dev-0/pictures/f7710279715947a5c053bb49927bfd36.png new file mode 100644 index 0000000..5700924 Binary files /dev/null and b/dev-0/pictures/f7710279715947a5c053bb49927bfd36.png differ diff --git a/dev-0/pictures/f83b624dbd0a772ec8e2e4b369278ca6.png b/dev-0/pictures/f83b624dbd0a772ec8e2e4b369278ca6.png new file mode 100644 index 0000000..09b08a1 Binary files /dev/null and b/dev-0/pictures/f83b624dbd0a772ec8e2e4b369278ca6.png differ diff --git a/dev-0/pictures/f83f0931deb02584eb218c5f22653ee9.png b/dev-0/pictures/f83f0931deb02584eb218c5f22653ee9.png new file mode 100644 index 0000000..aa709a4 Binary files /dev/null and b/dev-0/pictures/f83f0931deb02584eb218c5f22653ee9.png differ diff --git a/dev-0/pictures/f911f05b9d7b1e010d352602029a2290.png b/dev-0/pictures/f911f05b9d7b1e010d352602029a2290.png new file mode 100644 index 0000000..2298e4e Binary files /dev/null and b/dev-0/pictures/f911f05b9d7b1e010d352602029a2290.png differ diff --git a/dev-0/pictures/f916496f490ce06a9edac869cc62317a.png b/dev-0/pictures/f916496f490ce06a9edac869cc62317a.png new file mode 100644 index 0000000..01b7cd3 Binary files /dev/null and b/dev-0/pictures/f916496f490ce06a9edac869cc62317a.png differ diff --git a/dev-0/pictures/f924fcc146dc26482a095433659ba445.png b/dev-0/pictures/f924fcc146dc26482a095433659ba445.png new file mode 100644 index 0000000..9e678fc Binary files /dev/null and b/dev-0/pictures/f924fcc146dc26482a095433659ba445.png differ diff --git a/dev-0/pictures/f930f682e20a1be363c88c61f1ab2477.png b/dev-0/pictures/f930f682e20a1be363c88c61f1ab2477.png new file mode 100644 index 0000000..003edf9 Binary files /dev/null and b/dev-0/pictures/f930f682e20a1be363c88c61f1ab2477.png differ diff --git a/dev-0/pictures/f940e2dda9419bed6f3644ac5817b613.png b/dev-0/pictures/f940e2dda9419bed6f3644ac5817b613.png new file mode 100644 index 0000000..9c8480e Binary files /dev/null and b/dev-0/pictures/f940e2dda9419bed6f3644ac5817b613.png differ diff --git a/dev-0/pictures/f964967c93f8f97cd523ee6ea65f074b.png b/dev-0/pictures/f964967c93f8f97cd523ee6ea65f074b.png new file mode 100644 index 0000000..01f1722 Binary files /dev/null and b/dev-0/pictures/f964967c93f8f97cd523ee6ea65f074b.png differ diff --git a/dev-0/pictures/fb0ee1dc7fcdfac6ae2680314c828f94.png b/dev-0/pictures/fb0ee1dc7fcdfac6ae2680314c828f94.png new file mode 100644 index 0000000..cf2f82b Binary files /dev/null and b/dev-0/pictures/fb0ee1dc7fcdfac6ae2680314c828f94.png differ diff --git a/dev-0/pictures/fbc53cd7b3ca13e376074355728ebf88.png b/dev-0/pictures/fbc53cd7b3ca13e376074355728ebf88.png new file mode 100644 index 0000000..eab8030 Binary files /dev/null and b/dev-0/pictures/fbc53cd7b3ca13e376074355728ebf88.png differ diff --git a/dev-0/pictures/fbdc7ab9bfc751945c9a9e380f76a4cd.png b/dev-0/pictures/fbdc7ab9bfc751945c9a9e380f76a4cd.png new file mode 100644 index 0000000..ecd24a8 Binary files /dev/null and b/dev-0/pictures/fbdc7ab9bfc751945c9a9e380f76a4cd.png differ diff --git a/dev-0/pictures/fd7cb90bb672bc07d0614fb20975e82e.png b/dev-0/pictures/fd7cb90bb672bc07d0614fb20975e82e.png new file mode 100644 index 0000000..7637e4a Binary files /dev/null and b/dev-0/pictures/fd7cb90bb672bc07d0614fb20975e82e.png differ diff --git a/dev-0/pictures/fdd6dad43d5d7fcdbcb5758b91ec2e0e.png b/dev-0/pictures/fdd6dad43d5d7fcdbcb5758b91ec2e0e.png new file mode 100644 index 0000000..b5e89bb Binary files /dev/null and b/dev-0/pictures/fdd6dad43d5d7fcdbcb5758b91ec2e0e.png differ diff --git a/dev-0/pictures/ffad61f19fd6530e89dd021c6981dd92.png b/dev-0/pictures/ffad61f19fd6530e89dd021c6981dd92.png new file mode 100644 index 0000000..4a9433c Binary files /dev/null and b/dev-0/pictures/ffad61f19fd6530e89dd021c6981dd92.png differ diff --git a/dev-0/pictures/ffc8195f7c48d8d131a95fa56bd2c14b.png b/dev-0/pictures/ffc8195f7c48d8d131a95fa56bd2c14b.png new file mode 100644 index 0000000..bb9a92a Binary files /dev/null and b/dev-0/pictures/ffc8195f7c48d8d131a95fa56bd2c14b.png differ diff --git a/in-header.tsv b/in-header.tsv new file mode 100644 index 0000000..c5c20f9 --- /dev/null +++ b/in-header.tsv @@ -0,0 +1 @@ +picture_id date diff --git a/out-header.tsv b/out-header.tsv new file mode 100644 index 0000000..5181e62 --- /dev/null +++ b/out-header.tsv @@ -0,0 +1 @@ +probable_answer_1 probable_answer_2 probable_answer_3 probable_answer_4 probable_answer_5 probable_answer_6 probable_answer_7 probable_answer_8 probable_answer_9 probable_answer_10 probable_answer_11 probable_answer_12 probable_answer_13 probable_answer_14 probable_answer_15 probable_answer_16 probable_answer_17 probable_answer_18 probable_answer_19 probable_answer_20 probable_answer_21 probable_answer_22 probable_answer_23 probable_answer_24 probable_answer_25 probable_answer_26 probable_answer_27 probable_answer_28 probable_answer_29 probable_answer_30 probable_answer_31 probable_answer_32 probable_answer_33 probable_answer_34 probable_answer_35 probable_answer_36 probable_answer_37 probable_answer_38 probable_answer_39 probable_answer_40 probable_answer_41 probable_answer_42 probable_answer_43 probable_answer_44 probable_answer_45 probable_answer_46 probable_answer_47 probable_answer_48 probable_answer_49 probable_answer_50 probable_answer_51 probable_answer_52 probable_answer_53 probable_answer_54 probable_answer_55 probable_answer_56 probable_answer_57 probable_answer_58 probable_answer_59 probable_answer_60 probable_answer_61 probable_answer_62 probable_answer_63 probable_answer_64 probable_answer_65 probable_answer_66 probable_answer_67 probable_answer_68 probable_answer_69 probable_answer_70 probable_answer_71 probable_answer_72 probable_answer_73 probable_answer_74 probable_answer_75 probable_answer_76 probable_answer_77 probable_answer_78 probable_answer_79 probable_answer_80 probable_answer_81 probable_answer_82 probable_answer_83 probable_answer_84 probable_answer_85 probable_answer_86 probable_answer_87 probable_answer_88 probable_answer_89 probable_answer_90 probable_answer_91 probable_answer_92 probable_answer_93 probable_answer_94 probable_answer_95 probable_answer_96 probable_answer_97 probable_answer_98 probable_answer_99 probable_answer_100 \ No newline at end of file diff --git a/sample-picture-w-caption.png b/sample-picture-w-caption.png new file mode 100644 index 0000000..445568d Binary files /dev/null and b/sample-picture-w-caption.png differ diff --git a/sample-picture.png b/sample-picture.png new file mode 100644 index 0000000..e0d1959 Binary files /dev/null and b/sample-picture.png differ diff --git a/test-A/captions.tsv b/test-A/captions.tsv new file mode 100644 index 0000000..e60a48f --- /dev/null +++ b/test-A/captions.tsv @@ -0,0 +1,92 @@ +1 "Harvard" Calf.\nCrocker’s\n939 Pa. Avc.\nShoes shined free. +2 "Hechts’ Greater Stores.”\nWe are not offering you a lot of odds and\nends in last year’s clothing.\n$9.95 for man’s suits usually sold at $15\nand $17 and wholesaled at $13. +3 "Is She Your Daughter?" +4 "Mother’s Bread"\nIs Baked Cleanly\nCorby’s\nModern\nBakery. +5 "Your Credit is Good”\nSmall, but–\n58c\nLassburgh Furniture Co. +6 $250,000\nTo Be\nGiven Away\nthis year in valuable\narticles to smokers of\nBlackwell’s\nGenuine\nDurham Tobacco\nThe Best\nSmoking Tobacco Made +7 $8\nU. S. DENTAL\nASS’N +8 100 Glacier Refrigerators\nat Manufacturer’s Prices.\nLANSBURGH FURNITURE AND CARPET CO., +9 22 Years Old this Week.\nSpecial Anniversary Prices. +10 A BLESSING TO ANY HOME\nGOLD DUST\nWashing Powder\nTHE WALDORF.\nReastaurants. +11 A ONE-DAY\nCHIFFRONIER\nBARGAIN.\n$4.95\nCREDIT.\nLansburgh Furniture\nCompany, +12 A SPECIAL\nCorset Sale\nFor Thursday and\nFriday. +13 A. J. BITTER\nUndertaker.\nMETALIC CASKETS\nWooden Caskets +14 B. W. SANDS\nDEALER IN\nWatches, Clocks, and Jewelry\nNew Stock\nNew Styles,\nLow Prices!\nFINE\nWATCH REPAIRING\nAND\nENGRAVING!\nWEST SIDE, - - KIRKSVILLE, MO. +15 BEHIND TIME\nTHOMAS JEWELRY STORE. +16 BRAZILIAN BALM!\nThe Greay South American Balsam\nFOR INTERNAL AND EXTERNAL USE.\nCURES\nCoughs, Colds, Croup and LaGrippe\nLIKE MAGIC.\nRADICALLY CURES\nCATARRH.\nCOLD IN THE HEAD. +17 COLUMBIA SALES DEPARTMENT.\nOur entire stock of 1900\nSTERLING BICYCLES,\nChain Road Models, for\n$28.50\nBEST TIRES – SPLENDID EQUIPMENT.\nAMERICAN BICYCLE CO.,\nCOLUMBIA SALES DEPARTMENT,\n817-819 Fourteenth St. +18 COME WITH ME TO\nSHOLLY’S\nBEE HIVE\nRESTAURANT\nWherey you can get a\nSquare Meal for 25c\nTINSMAN will wait on us and\nsell us our\nCHRISTMAS CANDIES AND\nFRUITS, CIGARS AND\nTOBACCO. +19 Children’s\nShoes.\nLeaders Friday and Saturday. +20 Clothing +21 Collins & Markey\nPOULTRY, EGGS, HIDES AND\nPELTS. +22 Corsets +23 DAVID BAIRD\nAMERICAN AND ITALIAN\nMARBLE\nHEAD STONES, ETC.\nKIRKSVILLE, MO. +24 DEERING BINDER TWINE.\nTHE "FLOWER” BRANDS.\n"COLDEN ROD,” "DAISY,”\n"LILY,” "BUTTERCUP,” Etc.\nMade from the Best Manilla and Sisal Fibres. Also Patent\nComposite SILVER Binder Twine.\nAMONG THE DEERING TWINES THERE IS A\nVARIETY FOR EVERY TASTE AND EVERY POCKET. +25 DON’T SACRAFICE…\nFuture Comfort for present seeming Economy, but BUY\nthe Sewing Machine with and established reputation that\nguarantees you long and satisfactory service:\nThe WHITE.\nITS BEAUTIFULLY FIGURED WOODWORK,\nDURABLE CONSTRUCTION,\nFINE MECHANICAL ADJUSTMENT,\ncoupled with the Finest Set of Steel Attach-\nments, makes it the\nMOST DESIRAVLE MACHINE IN THE MARKET\nWhite Sewing Machine Co.,\nCLEVELAND, Ohio. +26 DR. B. C. AXTELL\nDENTIST,\nSuccessor to\nL. D. PEARCE +27 DR. B. C. AXTELL,\nSURGEON AND MECHANIC DENTIST +28 Deering Junior Steel Binder.\nKING OF THE HARVEST FIELD.\nWorks Perfectly on Rough, Uneven Ground. — Some Others do not.\nWorks Perfectly in Tail, Heavy Grain. — Some Others do not.\nWorks Perfectly in Light, Short Grain. — Some Others do not.\nWorks Perfectly in Badly Lodged Grain. — Some Others do not. +29 Diamond Dyes\nBrilliant!\nDurable!\nEconomical!\nDIAMOND PAINTS. +30 Dr. Pierce’s\nFAVORITE\nPrescription\nThere is no BEAUTY without\nHEALTH. "Favorite Pre-\nscription” makes women\nBEUTIFUL by making them\nHEALTHY. It makes weak\nwomen STRONG and\nsick women WELL. +31 EDMINSTON\nMerchant\nTAILOR\nSUITS MADE TO ORDER\nIn The Very Latest Style\nFINE LINE OF CHOICE ENGLISH AND AMERICAN GOOD\nFROM WHICH TO SELECT +32 EXIT UNDERWEAR\n(MEN’S)\nMIDWINTER\nCLEANING SALE\n20\nPER\nCENT\nOFF.\nJOSEPH AUERBACH, +33 Featherbone Corsets and Waists, +34 GRAND PUBLIC SALE!\nOF PURE BRED\nPOLAND - CHINA - HOGS\nAT\nFair Grounds, Kirksville, Mo.\nThursday December 17 th\nSale to Begin Promptly at 12:30. Come Early and\nLook Over the Offering. +35 Get the Boys Ready for School. +36 Great Removal Sale\nAND\nBargain Friday, No. 12.\n$8.50 for $15 Ladie’s Tailor\nmade Suits. +37 HANDY COBBLER.\nA Complete Outfit +38 HERCULES\nGas and\nGasoline\nENGINES\nNOTED FOR\nSIMPLICITY,\nSTRENGTH,\nECONOMY\nAND\nSUPERIOR\nWORKSMANSHIP\nIn Every Detail. +39 HERE IS THE CUT OF YOUR\nGREAT $2.50 SHOE\nLadies, Warranted. Buy one pair if\nyou never have. If any of our\nshoes rip we sew them for\nnothing. We carry\na full line of\nDRESSING +40 HOSTETTER’S\nCELEBRATED\nSTOMACH\nBITTERS +41 Having purchased the business\nat Combs & Son, I am in the mar-\nket to Purchase all your poultry\nand eggs for which I will pay the\nhighest cash price. Call and see\nme. CHAS. COLE. +42 IMPORTED PERCHERON HORSE CONTROLEUR 10801 (11230)\nProperty of S. J. MILLER, Kirksville, Mo. +43 If you find the way +44 It Makes You Hungry\nPaine’s\nCelery Compound\nThe Best\nSpring Medicine. +45 KIRKSVILLE MERCANTILE COLLEGE & WRITING INSTITUTE +46 L. L. BERENS,\nSCIENTIFIC OPTICIAN AND JEWELER.\nGod’s Greatest Gift.\nTO MAN IS HIS VISION +47 LIVERY FEED\nAND\nSALE STABLE\nT. E. GRAVES\nPROPRIETOR.\nFIRST CLASS TEAMS AND\nVEHICLES. +48 LOOK AT\nTHE BOX\nThis is Walter Baker & Co.’s Cocoa\nbox – be sure that you don’t get an\nimitation of it. +49 M. QUINN,\nLivery, Feed, & Sale Stable\nOpposite Pool’s Hotel +50 MAKES CLEANING EASY\nGOLD DUST\nWashing Powder\nTHE N. K. FAIRBANK COMPANY +51 MILLINERY\nHaving opened Millinery Parlors in\nmy new building on Spring street\nopposite the post office, and put\nin a select stck of Spring and\nSummer goods, I soiled the pat-\nronage of the ladies and invite\nthem to call and inspect goods.\nNew Goods arriving daily\nMiss L. Bradshaw +52 McALLISTER & FEAST,\nOPTICIANS,\n"1311" F St. N. W. +53 Mother’s Bread.\nTrade-mark Registrated. +54 Munyon’s\nHealth\nTals.\nNo man can do his best when ham-\npered by disease. — MUNYON. +55 New York Weekly Tribune,\nFOR\nEVERY member of\nEVERY family on\nEVERY farm, in\nEVERY village, in\nEVERY State or Territory.\nFOR education\nFOR Noble Manhood\nFOR True Womanhood.\nIT GIVES all the important news of the Nation.\nIT GIVES all the important news on the world.\nIT GIVES the most reliable market reports.\nIT GIVES brilliant and instructive editorials.\nIT GIVES dascinating short stories.\nIT GIVES an unexcelled agricultural department.\nIT GIVES scientific and mechanical information.\nIT GIVES illustrated fashion articles.\nIT GIVES humorous illustrations.\nIT GIVES entertainment to young and old.\nIT GIVES satisfaction everywhere to everybody.\nWE FURNISH\nThe Islander and New York Weekly Tribune\n1 YEAR for &1.50\nCASH IN ADVANCE.\nAddress all Orders to THE ISLANDER. +56 OUR "LITTLE BREECHES” DIPLOMACY\n"You hear no more of the 'haul down the flag’ argument in this campaign. The flag was hauled down\nin Alaska the other day”. — Mr. B +57 OVERWORK MAKES\nWEAK KIDNEYS.\nUnhealthy Kidneys Make Impure Blood\nYOUR KIDNEYS ARE YOUR BLOOD PURIFIERS\nA Prompt Way tu Cure Yourself When Symptoms Show\nThat Your Kidneys Are Out of Order.\nTo Test the Wonderful Merits of the Great Modern\nDiscovery, Swamp-Root. Every "Times” Reader\nMay Have a Sample Bottle Sent Free By Mail. +58 Our Silent $15 Machines\nC. Auerbach, 7 & M. Gon’I Agency\nDomesting Sewing Machine Co. +59 PATRONIZE DIRCET IMPORTATION +60 PATRONIZE DIRECT IMPORTATION\nTHE ABOVE WELL-KNOWN BRAND HAS BEEN ANALIZED BY THE XOSY +61 POULTRY AND EGGS. +62 Parker, Bridget & Co.\nGrand Clean-up of Chouce\nOdds and Ends in Boy’s\nClothing at Little or Nothing\nThe Suits Go Like This.\nReefers Should Fairly Fly\n$5, %6 and $7 Cape Overcoats, $3.39 +63 Pillow Inhaler\nCares While You Sleep. +64 Poison Oak\nPoison Ivy\nSSS Nature’s Antidote\nFOR Nature’s Poisons, +65 Poland China Hogs\nPRAIRIE VALLEY HERD +66 ROOT’S ACME HAND-BLOWER\nFOR\nBLACKSMITHS.\nOnly Blower Made with positice blast. Re-\nquires only Half of the Labor required\nby a bellows. +67 Reduce Your Coal Bills. +68 SAN JUAN TRADING CO,M SOLE\nAGENTS FOR SAN JUAN COUNTY.\nCANS SOLD OR LEASED. +69 START\nTHE\nGIRL\nRIGHT. +70 SYRUP of FIGS\nONE ENJOYS +71 Sells Brothers\nFAMOUS ROMAN YIPPODROME,\nTHREE-RING CIRCUS, TWO ELEVATED STAGES AND\nFIVE-CONTINENT MENAGERIE, IN MIGHTY\nUNION WITH\nS.J H. BARRETT’S\nMonster International Worlds Fair,\nZOOLOGICAL INSTITUTE, TRIPLE CIRCUS, METROPOLI-\nTAN MUSEM, AND GREAT GOLDEN MENAGERIE\nWILL EXHIBIT AT\nKIRKSVILLE\nON\nWEDNESDAY JULY 30 +72 Shoes +73 Special 2-day Sale of Iron Beds,\nA Saving oof 1/3.\nBUY ON CREDIT\nLANSBURGH Furniture Company, +74 Still the Best\nIron Bed Bargain!\n$3.25.\nMAYER & PETIT, +75 THE\nREGAL\nSHOE\nGEM\nCORK SOLE.\nL. C. BLISS & CO. +76 THE BICYCLE RACE. +77 THE MAN WHO BETS $16\nMay Lose his Money.\nYou Can Not Lose if You Invest $16 in a\nDARLING A.\nCOOK STOVE\nWe Have Sold 100\nof THEM\nA Full Sized No. 8 (Without Reservoir) with 50 Pieces\nof Ware for $16.00.\nHELME BROS. CO., +78 THE WEATHER TODAY\nGOOD AFTERNOON +79 THEY WASH THEIR CLOTHES\nWITH\nCLAIR\nETTE\nSOAP.\nThats where they get their style.\nMADE ONLY BY\nN. K. Fairbank & Co. St Louis. +80 TIME REDUCED.\nREMEMBER THAT\nThe Grat Rock Island, Route\nRUNS THEIR\nPhillips Pullman Excurion Cars +81 TIME TABLE +82 TWO IN ONE!\nPETER’S\nDouble Cylinder,\nDouble Acting\nFORCE PUMPS.\n"Nothing Succeeds Like Succes”\nThey Throw Double the Volume of\nWater with one Half the Labor,\nCHEAP PUMPS. +83 The Blessing of the Altars. +84 This Skirt 92c. +85 This…..\nFashionable Skirt\nA Special Bargain to\nMail Order Customers\nof Portland’s Greatest Store. +86 VICTOR COFFE\nWINS ON MERIT. 1-LB. CANS ONLY.\nPrice within Reach of Everybody. LUXURY and ECONOMY.\nSHAPLEICH COFFE CO., BOSTON. +87 WE\nMAKE\nMEN,\nMARITAL STRENGTH,\nVITUALITY, MANHOOD. +88 WOMAN. I want a god receipt for making a\nspring medicine.\nDOCTOR. Take a Ripans Tabule. It is the best\nspring medicine ever made and has\nthe widest range of general appli-\ncation. Take on after meals so\nlong as you require them. May be\na single on will be all you need. +89 Waverley BICYCLES.\nAre the\nHighest\nof all\nHigh\nGrades\nWarranted Superior to any Bicycle\nin the World, regardles of Price. +90 We Now Have Our Samples of\nOxford Vicunas,\nOuting Flannels,\nFancy Vestings &\nBlue Serges which\nare extremly pop-\nular with up-to-\ndate dressers. We\nshow everything new and stylish.\nChampagne, the Tailor. +91 We See Good Times Coming\nOrder One of Our\nBlue Serge\nSuits at $15.50\nSIX LITTLE TAILORS\n941 Pa. Ave, N. W. +92 World’ Fair\nHIGHEST MEDAL\nawarded to\nDr. Price’s Cream Baking Powder. diff --git a/test-A/in.tsv b/test-A/in.tsv new file mode 100644 index 0000000..f21c112 --- /dev/null +++ b/test-A/in.tsv @@ -0,0 +1,92 @@ +68e1eb77bd6054a3fc234dae01f6e495.png 1896-08-27 +c97c08904ac1bb99a1df8d7a6d432f47.png 1900-03-26 +24a0acd48aa2f44530b6f7176b48ea75.png 1895-06-20 +0a41f7c7a6c884374b54810fd74306a9.png 1899-08-03 +994f872d34f821605e233d31ace1bc62.png 1890-07-11 +062b081b00dca03a6b150d18fc19d754.png 1895-02-07 +ef765d887e23f546f7cd5c9701c58ffe.png 1899-08-09 +907c65b244226b88e43b0a96150db39e.png 1898-01-27 +88a991d6a3002147c8ceb77778f821a3.png 1898-03-16 +53884bc778dbef4bc2a2e6deb5c07b3c.png 1896-05-01 +87ee48b6706ee29d9baa970701a9dd38.png 1895-01-18 +512698357396240e46583e73d017ca25.png 1898-05-14 +58f8cd97182c3a735eea19fa6f053e0f.png 1897-09-22 +23024c939b0160fc9bfe900cd8e9f093.png 1896-12-11 +76ee89f9266b1a87ca6f45750f368ede.png 1893-11-03 +3a6c128723231061923e9c0b273d9235.png 1896-12-10 +587227727a136fa49515e4addc065d2e.png 1896-02-06 +2f5450fe4ef9cdfad7ac0c871934ac7f.png 1900-08-30 +3ea978638c194e9eb500fbd836989180.png 1896-12-04 +0c0a9c29cf1ccdd4e308dccfb9131080.png 1895-10-24 +dbffce1918df71b8d6f5df6b7067dda8.png 1893-11-10 +8ad307a79d978897d23f28862dc7b61b.png 1889-03-15 +abc9375a34906214899a377814489ac3.png 1898-06-14 +65b888b1385d4ac472ae6e2695f1ab08.png 1897-03-25 +af63ddf0c54a6f20600db13fbc1041c9.png 1885-06-24 +52a0596237db1a9306504860dbce2232.png 1894-12-28 +0d1f76af92302ce8a5a0f97a85fa9d3b.png 1897-06-10 +6c4cf9aa2150e1aaabf982da391a8726.png 1897-08-27 +b9cd432af3ee872112bb6b68bfd9a642.png 1893-07-07 +c676c6e4e0c7814275adbab97d587f58.png 1897-07-03 +23b84221b97bca36177fefc659c8e4cd.png 1900-03-02 +7dac3bf792f54eb222b133b672624e66.png 1897-04-03 +bfb681772c38d4a38834cabb0492c539.png 1898-01-08 +e95bc12becb12c2d71a6e574bd9a7b16.png 1900-09-18 +0080c16d060b2244f4a6b56b07d6a25a.png 1899-03-30 +472d3265123f13a11e72f7db74dd0ccf.png 1899-06-22 +422086aa81455b8649c213fe13f798af.png 1895-07-26 +3f64d3b888b58db116197577e6ff84bf.png 1897-09-18 +fef9d12530f8dcb88ec9628023aa1dc7.png 1898-04-06 +2a70f56aeb1388f44f5a5fe2b0adf119.png 1896-04-17 +67d4edb4b47a74d3ab19743714fe2604.png 1898-05-30 +6a6899418859d21f0406fb3284b4c4d2.png 1898-06-16 +86a9f008bc4f402ac15d52fa409f94b1.png 1890-01-24 +338bed16ec9d1fc24a841723f7d91c3e.png 1896-07-10 +033e2f458bdaeb285a3fe700b64a2dad.png 1893-10-27 +4b4f23fb2dcfb4178ccee4a1fc48fa00.png 1898-03-25 +f84700d4a2a68445be4318291b6c7acc.png 1900-11-03 +3c325f43fc7815e5232da866dc317dc9.png 1890-07-25 +2c41890e057d78047d5eccff6a948aa6.png 1900-01-11 +0138329e618e669a0b64e5bf2e3e2929.png 1898-07-19 +394d6c136f1b3dc08c08587c7169f781.png 1885-08-28 +badaf396531f3546797d68f5cfcc6add.png 1896-11-06 +5a11ccd40ebac2c59e5786df6d61b2ea.png 1890-11-07 +d85188af8d9c36e5a606079621870ccf.png 1897-02-04 +81b880aa5f85818eac83abd435f55678.png 1900-11-02 +cbaf8d7095d8710b74d64b8513ad8625.png 1888-07-20 +633c252783f361399e0898f1023e5d30.png 1900-03-07 +8515b05ff771a957130d3154afdc013e.png 1896-03-13 +269776cb24e9d147deb50d562d9ac656.png 1900-03-10 +5bd25fdc0a0762116d5f86dc8764a606.png 1889-12-06 +b80e909d93fdc25f0eaeac2d6de0f328.png 1900-09-14 +0482c8402991bd622975283eae5dc3f5.png 1890-04-25 +55b20879814e5017f7c479c95508bc76.png 1894-11-02 +7a34185ac67e5209d2d8184ce27850e8.png 1897-01-28 +0d000d686d9659196282cac6180a913c.png 1896-05-22 +8df72a94c3b3bc6a0b790b3285366109.png 1889-12-27 +9b3842f08d63375ddc144fa304073275.png 1898-05-12 +b9b0ecceb19bd10d26fc8ab0a1f8de84.png 1899-06-16 +7592d6fe5f91f29b2c183836f80864ca.png 1889-02-01 +266ef817d6370584c950d2fa41207581.png 1899-05-26 +d0dfa9e8ce9b6fbd4a654eeae7c8e089.png 1899-05-02 +3b41bb328f361d51e8990beb7e144ed0.png 1895-07-04 +eaf132f3010913c4a0e18780235388cb.png 1889-01-18 +7df2328773ea4a19e3379831b91825b3.png 1900-01-31 +ca648b46eafce02b16665e55d8005a6b.png 1897-06-21 +097bdf0458e9c9a8656801976edc932e.png 1890-06-13 +d4c81d3de15e54c912771c2a6be8103e.png 1885-04-02 +5d34ab627f1dd69303d7416406a51da9.png 1890-04-18 +f9ed3ef7f08cf0e03f17ecff168daefa.png 1899-06-28 +490b8065e0a5b94a40c9399ab5465876.png 1896-02-07 +ce0324d0c64db289c46daa8550031f39.png 1897-01-19 +00a72adb5b1f2a2260661e10f1ed9f0e.png 1899-02-15 +b424f64197897ab9a86b921a026c94f8.png 1890-03-21 +6f309835f7dae72bacba6078e94c593d.png 1890-02-28 +761aa890357d4ee41660305ae66faadd.png 1893-08-11 +ef32b8ab221f6d9466a4998c182d9b92.png 1888-06-01 +03bbac70824c6a18e2595acd4e469da2.png 1895-04-05 +57d2037fcb6de94fdfdd153ca7a6d96a.png 1897-10-27 +ce9eb5ab68d6258ba08ad313eb77d4b3.png 1900-10-15 +33bbd09e284a8e680d07bc27d5a43ec1.png 1900-09-06 +104f3397319f3b1aa4107401362e9375.png 1898-03-11 +3cdc1e544809ae6d61de6f9020d22a00.png 1898-06-25 diff --git a/test-A/out.tsv b/test-A/out.tsv new file mode 100644 index 0000000..e95cde2 --- /dev/null +++ b/test-A/out.tsv @@ -0,0 +1,92 @@ +52 46 55 57 88 54 53 13 30 11 71 87 60 27 76 26 43 2 56 20 32 17 58 5 45 33 51 48 18 7 3 41 1 92 62 89 59 40 25 14 61 23 9 38 77 36 72 22 79 21 80 8 35 84 66 50 69 81 67 29 49 63 10 44 19 73 78 68 28 39 85 37 74 47 83 90 64 6 24 65 4 82 15 70 42 12 31 75 16 91 86 34 +7 26 27 5 17 62 41 77 52 92 55 11 46 54 2 53 61 13 89 14 40 56 18 72 71 51 30 66 39 48 21 38 67 88 75 50 76 79 22 36 20 80 57 85 44 15 6 84 58 33 37 9 8 35 19 73 1 60 74 63 45 81 47 4 49 65 86 69 23 3 68 43 59 70 29 87 32 82 34 42 28 10 83 31 16 12 25 91 64 78 24 90 +51 26 27 55 92 56 53 13 33 22 54 45 21 50 88 46 11 52 71 41 77 5 48 61 62 17 79 20 30 40 28 23 8 80 57 66 2 37 47 49 76 75 89 65 87 3 64 44 72 18 7 42 1 38 14 67 4 39 43 81 85 68 36 59 84 6 25 60 58 32 70 82 86 29 35 73 74 69 24 19 83 9 15 31 10 12 78 63 16 34 90 91 +33 22 53 79 55 51 85 62 11 21 25 88 8 61 5 36 54 17 50 20 28 27 57 37 66 77 12 80 92 7 41 30 56 89 13 60 59 74 2 84 26 69 32 35 73 87 24 52 71 48 38 82 90 76 44 67 49 47 18 81 3 1 72 70 40 31 39 45 43 10 4 75 58 46 65 83 9 29 64 91 16 63 15 42 68 19 23 78 14 6 86 34 +21 57 71 55 56 54 50 5 61 62 76 40 88 11 41 8 51 49 17 92 77 79 35 43 65 28 13 33 59 46 53 83 47 80 87 22 26 60 20 66 19 82 27 70 7 2 81 89 38 44 67 72 48 30 3 10 52 90 45 18 85 78 9 32 1 36 31 63 84 6 75 24 73 58 16 37 69 12 74 14 25 29 4 42 39 68 34 86 91 15 23 64 +92 11 88 50 37 13 77 62 21 59 48 82 66 5 79 41 57 17 30 54 38 33 67 46 52 22 1 26 55 63 71 27 61 56 28 20 86 80 60 45 8 68 53 58 70 85 84 74 29 89 64 44 16 24 51 83 25 2 87 32 35 9 73 10 12 76 40 75 6 7 81 42 14 90 43 69 72 36 3 23 31 39 65 78 4 91 15 18 19 49 47 34 +79 50 53 77 55 11 88 33 62 21 92 66 57 22 61 51 37 67 5 54 36 20 30 69 28 85 4 56 25 40 87 70 41 59 24 8 44 29 26 3 74 32 45 60 7 2 64 27 10 17 35 12 48 71 38 18 82 6 84 81 1 13 73 80 39 76 72 14 46 49 16 9 52 89 58 83 65 43 68 47 23 78 31 63 19 90 91 15 75 42 86 34 +51 50 53 33 92 62 88 11 30 55 22 79 52 21 17 48 71 5 41 61 54 64 36 56 57 70 44 80 46 16 8 13 45 77 67 2 40 89 24 26 20 66 76 68 58 14 59 75 23 85 4 74 12 27 60 7 87 69 37 29 6 72 3 82 38 73 18 63 39 28 9 25 10 86 84 49 83 43 42 32 1 19 15 81 47 35 65 31 78 90 91 34 +52 46 55 17 53 13 56 41 14 88 89 27 71 33 43 1 54 11 61 26 57 20 45 72 77 38 2 76 21 18 58 87 30 7 39 66 62 8 51 60 5 92 40 42 32 79 65 80 22 48 68 67 28 25 47 19 84 50 36 6 23 85 3 81 75 31 49 59 9 24 10 69 82 86 35 15 73 63 78 29 90 12 34 74 44 64 4 16 83 70 37 91 +33 22 51 11 55 62 20 12 36 92 56 2 53 26 5 45 27 31 79 85 25 71 37 13 30 46 8 52 88 54 17 60 21 24 87 41 32 59 48 77 1 28 66 39 14 84 90 50 61 57 58 89 73 38 40 80 72 23 7 76 18 74 44 49 75 3 42 47 6 69 81 68 91 67 70 43 82 65 29 86 9 63 4 35 19 15 64 83 16 78 10 34 +92 30 11 50 48 53 26 40 71 77 45 55 52 88 89 79 54 10 17 46 76 27 21 80 1 62 44 57 74 61 5 9 51 7 86 59 6 25 33 22 82 37 56 4 65 67 63 24 14 2 66 38 60 75 8 13 87 41 70 28 83 16 29 58 18 64 43 20 23 81 73 72 15 68 39 69 3 35 42 36 32 84 34 78 85 31 49 12 19 91 47 90 +13 11 53 5 77 66 55 21 25 8 56 51 61 71 62 73 52 58 57 27 88 20 54 26 41 28 48 33 22 92 46 18 59 79 45 67 50 7 82 83 30 49 85 17 40 37 2 72 80 4 32 84 38 70 81 60 74 65 44 36 47 89 43 1 68 87 15 24 76 19 23 63 6 86 35 14 39 10 3 12 75 31 16 64 42 9 69 29 78 90 34 91 +55 52 11 1 92 54 56 71 67 2 5 77 53 80 13 45 62 23 40 26 51 41 46 79 8 88 48 85 50 27 28 37 7 20 75 33 17 36 30 21 35 38 76 84 61 6 87 3 42 57 59 64 22 18 72 9 68 49 65 74 66 86 70 81 63 43 14 60 89 69 83 25 10 39 73 16 31 19 58 32 15 78 24 47 4 44 29 82 91 90 12 34 +13 66 21 56 53 75 54 27 26 28 61 11 5 52 71 33 45 57 20 72 88 42 46 7 55 65 22 1 44 50 84 80 62 85 17 41 73 48 8 39 51 67 59 37 92 2 30 79 81 77 64 87 47 60 14 6 49 63 83 19 43 76 40 16 23 34 4 74 38 29 18 82 32 24 89 25 68 70 35 36 9 90 58 3 31 69 15 10 78 12 86 91 +21 65 61 55 54 13 41 56 28 53 66 71 11 5 52 57 42 26 1 75 27 62 34 33 45 88 77 72 17 49 44 8 80 7 18 20 67 48 46 22 47 70 37 6 2 50 51 40 30 92 79 73 76 38 59 84 68 43 60 85 89 87 39 81 4 19 23 14 83 35 25 3 32 74 82 9 63 64 36 86 24 16 31 90 78 58 15 69 29 10 12 91 +85 33 84 20 51 21 62 22 28 13 56 26 55 37 66 75 11 45 52 27 46 53 88 5 61 92 2 39 79 71 72 36 1 54 30 50 77 67 25 57 17 41 59 90 60 7 48 87 8 74 18 24 29 31 12 49 40 42 19 65 3 81 82 80 73 38 43 44 69 35 83 89 4 63 76 47 6 23 32 9 70 58 16 68 91 10 78 64 14 34 15 86 +50 48 92 79 11 21 33 30 51 53 62 55 5 22 13 77 52 88 37 45 41 17 8 6 61 57 26 25 28 16 27 75 44 54 85 46 36 2 24 20 40 66 56 71 59 18 4 89 68 12 70 86 58 7 67 10 84 60 49 1 82 29 80 87 83 42 39 9 64 76 74 73 38 63 31 72 3 69 14 32 65 23 43 81 35 47 15 19 90 78 34 91 +57 62 50 5 54 26 55 77 41 45 48 67 27 37 92 11 17 21 46 56 86 59 30 22 79 25 38 88 66 58 1 20 28 2 60 53 52 80 71 13 8 51 40 44 32 70 36 33 61 75 68 6 89 24 73 82 14 87 76 18 35 85 47 29 81 72 83 16 31 4 7 64 90 65 23 74 19 63 43 12 84 3 49 69 9 10 15 42 39 78 91 34 +61 21 41 33 55 71 11 62 56 92 5 20 28 54 50 22 57 53 77 17 79 88 27 26 87 76 52 59 45 66 2 60 1 38 8 72 51 13 47 25 37 49 89 42 24 48 46 40 65 75 7 18 30 67 73 32 83 81 43 44 58 70 82 29 19 36 74 4 64 85 80 3 35 90 16 86 10 68 31 84 23 39 14 78 12 9 6 63 69 91 15 34 +66 28 82 38 77 55 11 27 56 58 17 50 92 88 71 5 54 25 52 21 57 46 53 37 26 45 41 89 20 61 13 73 59 33 7 76 81 47 8 48 51 60 62 72 87 84 1 79 22 80 30 49 40 43 74 14 67 42 2 85 44 18 24 70 65 4 39 75 36 9 23 90 83 29 31 6 35 69 19 10 63 68 3 15 78 86 12 32 64 16 91 34 +62 55 51 33 22 88 20 79 56 52 30 11 50 53 92 85 5 3 77 36 61 57 37 45 54 21 19 72 48 2 84 13 17 26 39 71 25 41 40 8 28 46 18 1 75 27 58 59 35 60 80 24 76 12 87 70 66 69 74 89 7 4 31 49 43 67 64 38 82 14 81 90 65 44 29 16 73 6 68 47 91 10 63 83 78 15 32 9 86 23 42 34 +53 54 21 5 55 92 11 77 61 88 27 66 26 48 41 56 13 44 37 62 71 57 50 52 18 40 45 28 46 70 20 87 2 80 4 7 25 79 22 30 17 59 76 8 49 23 14 67 51 43 33 72 1 89 65 60 3 81 47 38 82 36 39 35 68 6 19 10 64 69 29 58 24 83 9 73 75 31 16 32 42 86 85 15 74 78 63 84 90 12 34 91 +57 88 54 55 5 63 73 11 62 30 13 77 52 92 56 79 25 50 51 21 40 45 53 80 46 8 61 33 44 71 2 26 27 20 32 87 48 70 74 37 49 16 41 67 17 76 18 59 64 22 36 89 66 35 7 28 58 85 82 38 4 72 14 60 83 6 69 10 75 43 1 68 81 19 86 47 3 84 39 31 65 29 15 78 9 23 12 90 24 42 91 34 +56 55 21 53 71 11 61 28 52 62 42 66 5 33 54 20 13 65 17 26 7 1 45 22 92 79 27 51 40 41 50 88 2 8 46 77 48 24 76 44 57 72 59 70 38 85 37 67 60 23 43 73 18 75 80 84 49 89 30 36 47 25 87 14 32 6 58 64 74 68 31 19 39 81 63 4 35 83 16 86 29 3 90 34 82 12 9 69 10 78 15 91 +45 33 55 22 79 40 52 30 50 28 56 11 71 57 13 21 88 2 92 12 9 48 37 61 59 41 6 69 7 18 26 53 1 51 85 77 23 27 20 60 84 67 87 76 62 66 54 5 44 8 3 43 49 58 46 68 10 31 75 64 25 17 35 42 36 24 89 38 80 81 72 70 39 14 29 32 83 65 15 74 86 82 16 4 19 63 78 73 47 91 34 90 +21 41 61 33 55 5 11 56 50 53 28 62 57 54 52 71 88 8 45 92 77 79 20 26 51 17 27 49 47 48 65 1 22 44 40 13 2 60 46 38 70 66 59 89 30 18 68 42 25 87 32 24 76 72 7 75 43 67 16 37 14 4 29 73 85 80 81 90 64 31 86 84 36 3 58 10 78 83 35 82 74 9 39 12 69 19 6 63 23 34 15 91 +77 13 28 5 11 25 58 55 73 8 20 50 66 53 56 48 38 85 57 17 62 71 92 45 54 52 21 33 27 37 22 46 51 26 84 88 79 61 67 82 83 89 59 41 72 80 81 60 18 76 47 7 74 40 32 1 2 87 14 36 75 30 24 49 10 70 6 43 44 23 15 31 65 4 42 29 19 63 90 86 3 35 9 12 68 39 78 69 64 16 91 34 +13 16 48 53 92 88 55 11 56 57 79 85 54 68 51 46 66 36 50 5 26 64 7 62 8 52 17 20 32 77 83 81 23 84 27 33 80 2 30 21 76 9 18 49 61 24 74 45 63 44 43 75 73 67 71 58 28 12 41 72 22 4 6 87 39 19 14 60 40 25 59 29 42 38 15 35 31 37 89 70 78 47 10 69 65 3 86 91 1 82 90 34 +92 53 55 54 71 52 56 48 5 88 11 46 13 50 26 66 27 77 57 62 20 51 18 2 41 30 21 37 70 28 7 61 23 45 22 43 59 33 72 79 17 76 87 14 40 25 38 8 60 75 81 67 63 80 44 82 36 89 32 1 68 3 65 86 84 49 64 16 47 6 19 39 83 10 85 4 73 29 58 24 42 9 31 35 78 15 90 69 74 12 34 91 +83 13 55 11 53 52 22 62 71 46 92 45 5 50 20 51 33 77 40 56 87 61 21 25 88 54 79 57 76 59 26 8 48 81 17 28 2 27 37 80 58 66 23 7 35 82 60 44 18 30 72 70 19 85 6 36 73 9 1 84 4 89 10 67 75 49 41 3 38 43 31 14 74 69 15 32 90 65 12 39 86 24 78 68 47 16 29 64 63 91 42 34 +13 53 56 11 55 52 46 71 92 17 48 72 54 26 27 22 39 21 80 8 77 7 1 61 57 33 73 5 28 45 19 67 66 58 75 40 65 79 88 62 51 50 85 63 2 41 68 23 20 4 30 84 42 6 38 9 18 59 60 76 37 83 24 87 34 25 74 82 43 81 36 49 32 44 35 86 89 47 64 14 70 15 16 12 29 31 10 78 3 69 90 91 +76 89 17 55 80 71 51 56 62 11 54 92 13 52 22 79 61 40 50 5 57 2 88 33 59 86 30 27 48 21 20 67 25 77 46 87 8 45 26 83 41 28 66 49 53 44 43 36 70 60 18 35 38 82 4 1 81 31 58 72 32 6 24 65 37 74 47 85 3 73 68 15 7 9 19 75 63 69 90 16 10 14 29 12 78 64 84 39 42 23 91 34 +62 55 11 92 2 20 79 53 35 71 56 37 77 5 58 19 52 50 36 61 22 48 54 88 18 17 57 41 8 21 1 80 40 76 27 46 72 45 87 33 59 26 4 13 85 67 51 30 70 32 65 60 39 89 25 31 3 38 43 82 28 14 66 91 44 75 49 81 68 7 84 24 23 90 69 10 73 74 64 47 86 6 29 15 9 12 78 83 63 16 42 34 +17 89 76 11 54 5 55 38 92 88 27 52 53 46 80 1 28 71 56 25 50 48 61 26 30 77 43 62 20 82 57 21 87 37 2 13 60 51 45 41 8 73 40 75 7 59 9 22 66 74 44 79 47 36 58 81 49 24 33 72 67 29 90 42 64 32 14 70 4 18 69 3 84 31 35 23 68 65 78 85 39 86 63 6 19 15 10 83 16 12 91 34 +62 36 37 33 22 11 20 2 17 53 85 25 5 79 55 56 1 51 88 39 84 31 12 89 66 74 71 35 50 21 48 87 52 7 13 28 59 57 27 45 72 54 60 76 90 24 44 77 80 41 38 8 69 58 75 30 61 46 92 32 91 47 26 49 73 82 19 14 9 3 4 43 67 81 18 40 23 68 29 70 42 64 65 10 63 15 86 78 6 83 16 34 +55 51 88 22 11 53 33 79 30 62 92 26 50 5 77 57 48 20 56 52 13 27 54 61 45 71 46 40 3 17 21 41 8 72 44 7 25 2 66 80 67 76 87 36 70 37 18 63 59 23 89 24 38 4 69 16 60 82 81 58 43 73 75 39 10 28 6 1 14 12 32 85 19 84 65 86 74 78 64 49 35 68 9 15 29 83 31 47 42 91 90 34 +21 41 61 33 55 11 5 28 56 71 54 62 57 8 53 52 77 88 92 50 20 26 27 51 45 17 79 22 59 38 47 40 1 13 48 60 44 24 46 66 7 2 49 16 65 87 70 18 30 72 68 67 43 89 37 75 32 80 76 42 25 85 84 81 90 3 73 86 36 29 14 4 35 31 82 58 10 78 9 39 69 64 12 83 19 63 74 6 23 34 15 91 +84 85 33 20 22 51 39 53 75 72 62 66 55 56 2 37 28 21 13 11 88 5 1 26 79 45 61 71 36 27 52 77 19 54 46 12 92 7 60 50 17 57 30 24 8 59 65 48 42 67 25 32 49 90 74 18 87 81 3 41 31 43 29 38 40 23 70 80 91 47 73 9 83 82 4 14 44 68 76 35 89 69 10 16 58 64 63 78 15 34 6 86 +26 27 92 55 46 13 50 62 11 77 37 54 88 52 30 22 45 2 5 56 48 57 66 71 41 20 79 21 17 33 53 61 28 51 40 87 25 1 80 36 67 72 59 8 7 89 75 6 31 82 44 14 3 76 24 83 60 32 63 35 43 68 18 49 85 86 23 64 38 58 16 19 39 29 81 84 70 73 65 74 69 10 12 90 4 15 9 42 47 78 91 34 +62 37 27 26 20 71 56 28 55 21 54 45 88 46 13 1 52 11 92 2 77 41 5 72 57 50 53 66 51 61 90 33 22 48 80 8 85 84 47 87 44 75 36 25 30 31 79 19 89 17 65 59 18 35 49 82 70 60 24 81 7 14 38 40 3 39 32 43 67 74 76 64 42 91 6 16 23 73 78 83 69 58 29 68 10 4 63 15 12 9 86 34 +52 45 11 51 71 17 5 92 21 55 49 13 26 40 80 53 46 50 27 9 62 18 48 41 56 61 20 1 79 22 33 76 2 68 25 8 73 7 89 75 54 77 15 14 81 28 42 58 57 23 6 86 65 84 67 44 72 85 82 66 32 88 36 30 10 74 87 83 4 38 59 47 24 31 60 12 90 43 19 37 29 64 35 70 39 78 34 63 3 16 69 91 +73 11 5 28 56 13 71 74 55 66 88 52 53 54 25 21 7 49 27 8 17 62 51 89 26 46 57 77 61 80 41 18 37 58 45 76 81 20 30 92 38 67 50 40 82 42 47 59 44 79 87 1 48 22 35 72 2 60 33 43 4 63 65 24 6 83 69 3 9 70 36 39 19 75 68 23 32 84 78 15 64 86 31 34 90 29 16 10 85 12 14 91 +13 80 28 38 27 11 55 17 5 47 66 21 45 50 56 26 33 54 71 89 53 92 41 77 52 57 22 88 60 20 42 61 73 49 59 8 25 62 48 46 76 43 87 79 75 1 65 40 81 72 51 67 2 14 6 84 24 85 18 30 37 82 9 7 74 70 29 31 44 68 3 58 36 4 15 16 19 35 10 83 64 23 78 32 90 69 63 39 86 12 34 91 +80 11 13 92 55 56 71 45 50 27 52 66 53 67 26 17 61 62 5 21 28 77 54 79 46 51 40 76 68 41 59 88 7 89 73 57 82 33 48 22 20 1 6 38 8 25 81 58 2 4 60 42 74 65 30 49 43 75 83 18 23 44 36 86 87 47 14 15 72 10 9 70 32 35 85 29 63 78 24 84 19 64 37 31 3 16 69 39 34 12 90 91 +77 11 52 55 5 51 58 14 62 92 13 79 57 80 46 48 25 56 54 8 88 45 30 71 41 21 81 76 61 67 17 53 2 50 26 33 22 18 20 15 59 27 40 7 60 35 73 38 82 70 3 87 89 86 66 72 1 83 85 36 37 19 43 74 68 10 69 28 64 32 31 49 23 9 44 63 6 4 39 65 24 29 78 84 47 90 12 42 75 16 91 34 +57 63 54 53 88 55 5 92 61 11 70 13 40 56 30 77 21 52 44 50 27 48 26 73 62 25 46 45 18 37 71 20 28 4 7 41 79 80 59 67 87 81 76 16 66 8 49 74 2 51 17 22 72 32 3 35 60 43 23 33 83 10 58 69 75 38 1 14 86 64 82 89 65 19 47 6 36 9 78 68 84 15 39 31 85 42 29 90 24 12 34 91 +55 71 56 76 17 33 21 5 89 54 28 88 87 42 61 22 47 38 11 53 41 13 20 50 45 27 62 49 30 92 57 7 2 26 79 32 37 51 77 48 40 43 66 72 46 59 44 80 70 65 73 52 18 60 8 1 64 3 35 23 25 85 81 83 69 29 12 74 84 67 90 24 14 39 19 36 6 9 75 82 78 4 58 31 68 16 10 63 15 86 91 34 +56 50 48 55 11 33 53 79 13 89 5 17 22 76 41 43 21 45 37 20 92 35 88 67 60 80 10 24 38 59 2 77 66 73 85 8 61 71 40 39 87 28 75 84 72 62 81 9 14 15 65 7 52 44 25 32 19 57 30 63 27 23 69 74 29 83 26 64 12 36 46 18 3 82 1 58 68 54 51 47 78 4 31 86 70 49 16 42 6 90 91 34 +77 5 13 11 8 28 53 26 58 52 27 46 66 55 17 45 56 54 25 48 21 73 38 41 51 71 62 92 20 7 18 61 88 37 33 1 85 57 49 84 72 50 82 47 89 22 2 42 60 14 81 30 79 80 65 40 87 32 59 43 67 76 44 23 83 4 39 68 24 75 29 6 70 36 64 19 31 74 15 9 90 63 3 35 10 78 12 86 16 69 34 91 +28 11 53 52 77 46 5 56 88 66 71 27 92 54 26 21 55 37 62 13 50 20 57 17 51 1 7 48 25 61 33 58 44 84 79 73 24 22 41 72 82 87 30 45 89 2 18 75 74 85 38 39 70 8 81 60 36 76 32 42 59 49 80 83 43 47 35 14 67 40 19 29 16 65 12 10 31 64 69 9 3 4 90 23 68 63 6 78 15 86 91 34 +45 33 40 22 55 79 52 50 56 71 28 11 92 30 13 57 59 88 7 37 12 51 2 6 26 27 69 61 9 23 8 53 85 67 48 1 41 18 25 60 21 54 20 76 5 66 62 42 77 3 58 31 84 17 38 35 68 43 49 44 24 87 64 75 80 46 36 29 81 70 15 14 89 10 39 63 65 72 83 82 32 19 74 4 16 47 86 78 73 91 34 90 +33 22 11 37 5 2 62 12 21 17 20 24 25 36 75 13 39 51 52 77 79 60 71 7 72 31 89 74 32 59 50 28 46 73 66 57 61 55 45 58 48 41 85 35 92 56 14 54 23 30 88 29 53 90 27 9 1 87 42 8 26 38 76 65 44 69 84 91 19 63 67 81 40 82 49 6 80 18 70 83 15 43 47 10 3 4 34 64 16 78 86 68 +52 13 11 46 62 71 53 55 5 92 21 48 54 17 79 45 22 33 26 50 61 57 51 76 56 88 77 18 2 20 27 28 58 23 66 8 41 87 89 36 80 59 14 1 49 75 43 25 30 40 15 81 68 37 7 83 24 85 72 19 32 60 6 67 82 84 73 86 35 64 4 10 42 44 38 47 3 70 31 16 74 65 9 39 29 12 90 78 63 69 91 34 +62 55 88 51 46 92 20 26 2 85 27 52 56 36 41 53 11 79 54 5 45 71 30 37 48 50 28 1 13 57 84 17 21 18 77 8 33 22 61 31 89 87 25 14 66 72 80 43 40 75 39 68 35 60 38 59 3 67 19 24 7 76 32 69 90 74 58 82 44 70 49 23 29 81 64 65 4 86 63 15 91 47 83 6 12 78 73 10 9 42 16 34 +11 62 39 17 2 1 5 77 52 72 92 55 41 36 56 67 9 19 37 7 80 74 53 79 45 8 58 21 66 50 75 20 35 71 57 28 60 46 48 27 59 68 6 85 88 54 26 89 51 32 25 18 61 14 65 49 30 13 22 38 76 23 31 73 69 82 33 44 40 87 42 84 86 43 3 24 29 81 90 47 10 83 91 34 70 15 12 4 64 78 16 63 +53 52 13 45 23 71 17 11 8 55 54 27 26 58 92 46 20 5 40 14 2 77 50 56 31 80 22 83 28 60 21 51 4 75 62 7 57 61 33 89 59 25 87 76 41 81 49 79 32 88 66 68 43 36 72 42 38 6 47 48 73 15 90 1 29 82 64 67 18 85 9 35 65 44 10 37 30 24 39 74 86 84 63 78 19 70 12 3 69 16 91 34 +73 11 5 13 28 56 71 74 8 54 21 17 66 25 49 89 53 55 88 52 77 62 7 61 27 80 47 26 51 20 41 45 38 57 46 22 42 50 58 65 33 76 81 48 60 72 18 79 82 1 30 44 43 92 37 59 24 87 67 2 40 35 4 32 75 9 83 70 64 39 36 29 19 63 84 6 3 68 23 34 69 78 90 15 85 16 31 10 86 12 14 91 +13 11 77 28 5 25 55 45 48 58 50 8 73 52 56 53 26 66 54 57 27 46 21 20 71 92 79 17 38 40 88 61 62 37 83 80 1 42 41 51 74 72 22 75 33 60 18 59 30 7 85 49 2 82 84 89 81 44 76 70 67 6 87 65 43 23 4 32 29 47 36 9 14 35 24 39 10 15 3 63 19 31 69 64 68 90 86 16 78 34 12 91 +62 51 11 2 88 52 21 20 45 55 5 36 26 17 13 71 44 54 8 28 53 85 41 27 57 33 66 46 37 22 56 40 25 79 77 92 50 1 24 80 32 61 31 73 76 58 48 49 68 30 67 15 84 82 87 89 90 18 7 14 70 35 59 23 74 81 72 75 91 12 60 38 9 4 47 83 43 69 39 29 65 78 19 64 6 10 42 3 63 86 16 34 +62 55 11 56 33 30 5 92 79 22 51 88 77 2 54 27 36 57 46 26 53 20 45 87 18 71 21 50 52 48 66 59 17 61 13 41 70 37 67 40 7 3 44 80 24 69 1 6 28 64 14 8 12 60 72 85 25 76 31 58 38 82 86 75 32 89 83 65 49 43 84 90 39 81 29 68 19 9 10 35 47 74 4 73 16 15 42 23 91 78 63 34 +79 55 57 50 62 30 88 92 11 54 5 53 26 64 27 21 44 40 35 33 45 74 3 37 87 59 46 51 22 16 2 52 69 70 67 77 71 61 20 36 7 25 48 28 56 63 76 41 60 6 4 66 17 9 29 89 24 18 80 13 83 8 82 10 1 85 49 58 12 81 32 38 14 15 73 68 31 19 84 43 78 86 47 65 91 39 23 72 75 42 90 34 +42 55 28 56 71 49 50 45 11 57 62 17 47 26 21 54 88 40 65 27 5 13 30 52 76 1 20 8 79 44 2 80 61 7 77 92 46 24 53 89 33 43 41 66 51 38 22 67 87 59 70 35 18 6 68 48 82 72 9 25 60 81 3 64 29 90 84 83 78 85 74 36 37 73 69 16 58 32 31 10 4 75 34 63 15 14 19 23 86 39 12 91 +56 27 11 50 21 62 26 17 5 55 71 66 45 54 65 33 52 53 46 76 57 28 88 80 13 51 41 42 47 38 89 61 77 92 49 8 7 48 1 79 58 22 14 64 30 2 82 40 25 73 18 23 43 75 59 20 4 36 87 60 44 72 83 81 74 68 6 24 39 32 78 67 19 10 29 37 70 31 15 85 63 35 9 34 3 16 90 86 84 69 12 91 +6 92 50 55 11 54 77 30 62 48 59 17 28 5 88 9 26 7 18 45 27 79 2 71 57 56 21 58 67 80 53 68 61 40 13 41 52 66 8 20 42 86 60 37 23 24 1 87 31 76 36 51 35 25 22 70 46 10 44 3 43 33 81 64 49 16 38 72 15 69 65 84 83 39 14 78 90 75 32 63 89 29 85 74 82 4 19 73 91 34 12 47 +72 75 1 37 22 55 39 19 20 62 11 33 56 13 2 51 77 71 53 92 27 57 45 17 52 50 26 5 28 54 88 30 60 48 66 79 46 87 35 25 21 59 61 8 40 44 7 41 36 85 76 67 80 89 32 69 49 3 42 18 65 31 9 38 83 43 58 70 74 82 84 23 90 68 12 47 6 81 14 73 29 16 64 4 24 10 78 91 15 63 86 34 +14 13 45 52 11 55 77 81 46 53 5 57 51 80 17 71 88 33 22 54 48 76 15 62 92 21 20 25 28 66 61 60 83 50 8 58 41 23 32 43 89 59 2 26 73 56 79 27 47 36 72 85 18 12 38 82 49 87 35 67 37 40 75 30 6 19 65 9 63 7 4 68 1 31 74 84 24 44 39 42 70 10 29 90 16 78 69 3 86 64 91 34 +50 22 33 55 62 30 79 71 45 11 92 53 20 21 54 88 5 17 51 77 52 37 75 48 67 85 56 61 57 84 13 40 46 12 41 76 7 26 58 87 80 2 72 3 82 68 59 70 28 8 42 69 25 44 27 4 86 35 39 64 36 9 89 6 23 29 81 60 38 1 19 83 66 43 18 73 24 16 63 65 74 10 15 32 49 78 14 31 91 90 47 34 +62 56 27 11 92 37 26 28 53 46 66 71 55 5 13 52 20 21 2 88 48 17 54 77 57 45 41 1 36 22 23 61 50 75 80 89 18 8 25 76 30 40 33 87 7 51 49 31 72 79 59 67 35 58 82 85 84 24 47 65 90 19 73 81 14 43 6 70 60 44 42 38 74 3 68 32 4 64 15 16 39 83 69 12 86 9 29 91 63 78 10 34 +66 82 77 28 17 92 38 50 55 46 11 54 27 88 5 57 71 89 58 53 56 45 52 26 21 41 25 48 37 59 76 60 79 20 30 62 61 67 80 33 87 51 14 24 13 81 73 6 44 74 22 8 72 40 2 18 7 75 70 47 43 4 1 10 49 84 83 63 85 15 39 16 29 68 42 36 86 65 31 35 69 9 23 64 90 78 19 3 32 12 91 34 +71 66 55 56 54 11 92 53 37 88 41 62 13 46 2 50 57 61 87 1 21 52 28 27 5 20 30 45 48 26 22 80 18 17 79 33 77 32 67 59 44 75 7 35 76 82 8 84 43 70 40 24 89 81 51 72 60 3 6 36 64 38 25 90 85 19 47 23 31 4 49 86 74 14 16 65 68 10 69 78 73 29 58 42 9 39 63 91 83 12 15 34 +46 55 57 52 11 62 5 26 30 27 51 54 45 88 56 21 92 77 41 2 61 79 53 59 17 25 71 13 40 22 50 33 58 37 20 48 28 80 89 67 87 66 8 1 3 81 14 18 7 35 76 31 36 38 60 70 82 6 73 44 83 15 63 23 43 86 49 16 32 72 24 47 75 68 19 65 69 74 90 29 4 78 12 9 64 85 10 91 39 42 84 34 +17 89 76 71 54 88 11 27 28 55 56 53 5 52 92 45 38 43 1 13 46 20 26 57 50 25 80 61 40 77 48 72 62 30 87 22 7 21 41 37 2 47 66 73 60 33 75 59 14 8 82 49 79 67 58 24 51 74 29 36 44 81 68 9 84 18 90 3 85 42 32 70 4 64 65 39 23 31 35 86 69 78 63 19 15 6 83 10 16 12 91 34 +92 55 71 53 54 77 88 5 48 56 11 46 52 57 26 27 50 14 18 62 13 30 66 2 41 51 20 70 37 17 7 28 23 79 21 59 87 22 33 40 43 38 25 45 61 72 60 89 8 76 6 80 82 86 58 75 32 67 16 49 44 47 68 39 63 1 3 81 36 64 65 29 10 9 83 84 24 31 90 19 15 85 73 35 42 4 69 78 74 12 34 91 +53 54 66 55 56 71 57 13 88 11 61 20 21 28 50 46 59 43 32 45 77 26 40 83 92 60 5 27 67 76 87 25 62 7 23 52 33 81 79 22 72 8 48 18 2 65 64 3 41 51 38 17 30 29 24 1 47 70 85 19 44 73 58 9 68 84 42 49 16 36 89 82 74 35 37 6 80 4 63 69 14 39 78 10 86 75 31 15 90 12 34 91 +62 11 36 2 56 5 79 52 17 51 33 35 55 46 20 48 85 71 31 58 22 45 92 27 26 8 14 53 25 88 76 37 50 77 87 13 19 41 54 21 30 40 7 80 59 28 57 1 18 60 84 89 67 69 91 23 74 75 72 3 66 90 38 29 39 32 61 68 82 24 73 9 47 12 6 43 65 83 81 70 15 86 10 49 4 64 63 78 42 44 16 34 +72 75 1 39 37 22 20 19 53 62 11 55 33 56 51 17 26 52 21 27 92 5 71 77 28 2 66 45 54 79 13 25 57 50 61 48 88 46 41 8 60 7 30 59 36 40 44 85 49 80 65 76 42 87 35 58 89 23 38 67 74 90 82 32 43 84 18 31 83 9 81 68 73 3 69 70 6 4 47 29 12 14 24 64 78 16 63 10 91 15 34 86 +56 13 53 52 21 27 28 11 26 66 5 46 54 88 33 71 61 51 49 62 44 45 92 55 80 30 42 17 22 7 50 75 48 85 73 65 57 47 1 89 41 72 8 77 84 37 20 76 23 64 39 59 4 79 24 25 81 82 2 87 40 58 19 67 74 6 83 18 60 70 43 36 38 68 16 63 15 9 14 35 12 32 31 3 29 34 86 10 78 69 90 91 +21 57 13 88 61 5 54 62 55 27 56 71 26 44 64 41 11 53 45 59 50 28 52 16 76 30 46 20 17 40 33 2 83 51 79 22 48 49 70 8 72 66 60 43 7 18 77 38 87 47 24 68 81 82 80 92 65 37 1 67 36 6 73 75 58 4 89 63 25 32 42 31 78 90 14 84 74 35 39 29 19 9 10 15 3 85 69 23 86 12 91 34 +56 55 71 76 53 28 17 21 62 50 11 5 45 80 92 13 79 26 52 42 77 57 54 27 41 51 87 65 48 89 88 49 2 47 59 35 61 40 1 67 46 38 24 30 14 22 68 20 66 33 74 43 19 60 58 18 75 4 7 36 81 72 85 37 3 8 23 32 25 73 6 70 39 10 44 82 83 64 9 84 31 69 15 29 78 90 63 16 86 34 12 91 +62 5 55 53 11 79 88 50 92 77 80 51 52 26 41 21 46 22 3 33 2 56 36 8 20 35 45 27 67 85 66 57 30 17 54 61 7 13 40 87 37 25 69 1 18 71 49 76 48 59 84 44 43 10 19 4 73 70 89 83 31 74 58 28 72 24 68 82 60 47 64 39 32 29 81 6 14 38 9 75 90 15 12 63 65 86 23 42 16 78 91 34 +53 71 92 5 11 27 26 52 33 45 17 54 42 2 8 47 62 41 55 46 50 13 51 56 48 80 14 20 30 60 21 85 57 64 1 61 87 58 31 88 79 22 40 66 77 65 59 23 73 38 6 89 25 68 7 28 72 49 75 90 4 76 32 36 67 43 10 81 82 18 37 84 34 29 39 86 74 24 44 70 19 35 9 12 83 16 63 15 78 3 91 69 +53 56 13 21 55 11 22 28 48 39 33 8 17 67 24 54 57 72 77 66 50 41 5 26 61 63 59 62 73 79 65 68 7 75 6 85 45 2 27 80 34 20 60 58 32 92 1 88 71 52 84 30 38 42 40 51 36 19 25 37 46 47 74 49 82 9 23 4 43 44 83 35 12 89 29 16 81 76 87 31 10 18 86 64 14 90 70 3 69 15 78 91 +27 46 54 71 26 88 53 92 50 57 56 21 17 33 55 29 66 61 52 75 11 8 84 28 79 45 7 76 20 5 13 67 22 14 44 51 85 48 1 30 82 38 80 62 43 41 60 59 77 72 64 24 81 25 40 87 2 32 18 89 63 73 83 58 4 39 65 16 10 42 15 23 9 90 78 37 70 35 19 6 74 47 68 3 49 36 31 69 86 34 12 91 +55 28 42 56 47 17 50 71 76 13 11 5 62 49 45 27 26 89 21 54 88 41 57 92 53 80 52 33 38 2 8 48 79 40 51 77 30 65 22 73 43 66 87 61 44 24 20 74 14 46 7 35 37 1 58 25 67 60 59 68 36 81 29 3 82 18 70 9 72 31 90 69 32 4 6 10 64 85 19 84 83 78 63 15 86 23 75 39 12 16 91 34 +17 11 58 45 21 5 77 41 62 66 52 50 36 46 74 80 92 71 79 38 2 54 88 37 73 13 89 51 25 61 7 27 53 29 55 14 57 39 28 35 48 76 20 59 8 9 32 72 22 60 26 82 87 75 31 56 18 23 33 24 1 30 68 67 44 81 83 40 85 65 69 49 4 12 15 90 19 43 42 10 47 84 64 70 6 86 34 63 3 91 16 78 +45 52 27 55 26 71 40 21 11 51 56 13 17 61 46 92 5 1 33 22 20 50 79 77 6 80 7 54 41 57 67 53 2 30 88 83 25 62 8 49 28 23 87 66 68 76 18 89 14 81 44 15 31 35 65 72 58 43 48 24 38 36 82 59 42 73 85 37 75 64 60 19 9 78 86 4 70 39 74 3 69 29 12 84 47 10 16 32 63 34 90 91 +57 13 46 88 27 82 52 11 77 66 54 26 17 79 71 62 50 45 92 20 58 53 5 30 55 38 21 59 28 61 89 22 83 51 76 8 56 37 25 7 60 33 48 72 40 67 87 74 2 80 73 41 44 23 1 63 70 14 75 24 35 81 6 43 36 18 29 49 16 32 64 69 85 65 31 47 90 19 15 84 9 42 4 39 68 10 78 3 86 12 91 34 +75 39 72 1 11 37 22 33 52 51 85 30 17 56 53 19 62 79 88 55 92 2 7 74 36 57 5 61 27 26 20 48 54 44 35 9 84 71 80 25 77 66 46 60 45 69 13 67 76 41 21 12 50 40 59 3 8 89 87 24 70 28 6 82 42 43 73 58 38 14 68 31 18 32 90 10 83 63 65 91 81 29 64 16 23 4 49 15 78 86 47 34 +11 64 88 53 5 8 45 54 57 56 28 55 44 46 62 33 17 16 52 30 25 48 73 77 26 21 51 50 92 58 41 66 13 38 61 14 22 2 20 1 24 27 36 60 70 71 59 89 80 79 43 75 29 72 40 85 6 32 87 47 74 18 39 65 76 4 23 7 49 9 67 84 68 82 81 90 37 31 42 12 10 86 83 78 19 3 63 69 35 34 15 91 +56 62 55 26 92 27 71 28 13 21 83 46 50 77 45 20 53 11 40 66 79 67 2 17 57 54 76 5 61 88 19 82 59 89 22 35 52 37 80 72 6 1 44 48 8 81 3 38 87 41 60 18 30 7 43 65 33 64 51 68 58 36 85 4 23 69 73 70 24 25 74 31 78 49 9 84 15 14 32 90 29 75 47 10 91 86 63 16 39 42 12 34 +13 5 53 11 21 62 73 8 61 25 77 52 20 88 55 56 28 92 71 33 22 48 58 51 26 46 54 27 37 45 79 7 41 57 84 23 50 17 2 81 66 59 18 85 30 76 72 70 83 49 43 24 63 40 60 74 65 36 89 47 42 80 44 32 67 75 14 38 4 87 1 64 68 6 82 35 39 31 29 19 10 16 15 12 90 9 3 86 78 69 34 91 +5 11 52 55 57 26 13 54 27 62 77 22 45 92 2 51 30 56 79 50 33 88 40 46 20 21 80 25 87 59 67 8 53 71 36 61 37 48 41 18 58 73 17 72 35 76 1 3 38 60 44 7 81 32 49 70 89 83 23 31 6 14 68 19 82 63 4 15 86 16 66 75 74 85 43 65 28 90 69 9 47 12 29 64 24 10 78 39 84 91 42 34 diff --git a/test-A/pictures/0080c16d060b2244f4a6b56b07d6a25a.png b/test-A/pictures/0080c16d060b2244f4a6b56b07d6a25a.png new file mode 100644 index 0000000..b283d76 Binary files /dev/null and b/test-A/pictures/0080c16d060b2244f4a6b56b07d6a25a.png differ diff --git a/test-A/pictures/00a72adb5b1f2a2260661e10f1ed9f0e.png b/test-A/pictures/00a72adb5b1f2a2260661e10f1ed9f0e.png new file mode 100644 index 0000000..d712790 Binary files /dev/null and b/test-A/pictures/00a72adb5b1f2a2260661e10f1ed9f0e.png differ diff --git a/test-A/pictures/0138329e618e669a0b64e5bf2e3e2929.png b/test-A/pictures/0138329e618e669a0b64e5bf2e3e2929.png new file mode 100644 index 0000000..18c0cc3 Binary files /dev/null and b/test-A/pictures/0138329e618e669a0b64e5bf2e3e2929.png differ diff --git a/test-A/pictures/033e2f458bdaeb285a3fe700b64a2dad.png b/test-A/pictures/033e2f458bdaeb285a3fe700b64a2dad.png new file mode 100644 index 0000000..5d4031f Binary files /dev/null and b/test-A/pictures/033e2f458bdaeb285a3fe700b64a2dad.png differ diff --git a/test-A/pictures/03bbac70824c6a18e2595acd4e469da2.png b/test-A/pictures/03bbac70824c6a18e2595acd4e469da2.png new file mode 100644 index 0000000..3e069f4 Binary files /dev/null and b/test-A/pictures/03bbac70824c6a18e2595acd4e469da2.png differ diff --git a/test-A/pictures/0482c8402991bd622975283eae5dc3f5.png b/test-A/pictures/0482c8402991bd622975283eae5dc3f5.png new file mode 100644 index 0000000..08d9567 Binary files /dev/null and b/test-A/pictures/0482c8402991bd622975283eae5dc3f5.png differ diff --git a/test-A/pictures/062b081b00dca03a6b150d18fc19d754.png b/test-A/pictures/062b081b00dca03a6b150d18fc19d754.png new file mode 100644 index 0000000..188e59a Binary files /dev/null and b/test-A/pictures/062b081b00dca03a6b150d18fc19d754.png differ diff --git a/test-A/pictures/097bdf0458e9c9a8656801976edc932e.png b/test-A/pictures/097bdf0458e9c9a8656801976edc932e.png new file mode 100644 index 0000000..96b9ec9 Binary files /dev/null and b/test-A/pictures/097bdf0458e9c9a8656801976edc932e.png differ diff --git a/test-A/pictures/0a41f7c7a6c884374b54810fd74306a9.png b/test-A/pictures/0a41f7c7a6c884374b54810fd74306a9.png new file mode 100644 index 0000000..e3c7cf6 Binary files /dev/null and b/test-A/pictures/0a41f7c7a6c884374b54810fd74306a9.png differ diff --git a/test-A/pictures/0c0a9c29cf1ccdd4e308dccfb9131080.png b/test-A/pictures/0c0a9c29cf1ccdd4e308dccfb9131080.png new file mode 100644 index 0000000..a5af857 Binary files /dev/null and b/test-A/pictures/0c0a9c29cf1ccdd4e308dccfb9131080.png differ diff --git a/test-A/pictures/0d000d686d9659196282cac6180a913c.png b/test-A/pictures/0d000d686d9659196282cac6180a913c.png new file mode 100644 index 0000000..16fcb87 Binary files /dev/null and b/test-A/pictures/0d000d686d9659196282cac6180a913c.png differ diff --git a/test-A/pictures/0d1f76af92302ce8a5a0f97a85fa9d3b.png b/test-A/pictures/0d1f76af92302ce8a5a0f97a85fa9d3b.png new file mode 100644 index 0000000..383fb1a Binary files /dev/null and b/test-A/pictures/0d1f76af92302ce8a5a0f97a85fa9d3b.png differ diff --git a/test-A/pictures/104f3397319f3b1aa4107401362e9375.png b/test-A/pictures/104f3397319f3b1aa4107401362e9375.png new file mode 100644 index 0000000..f7b2601 Binary files /dev/null and b/test-A/pictures/104f3397319f3b1aa4107401362e9375.png differ diff --git a/test-A/pictures/23024c939b0160fc9bfe900cd8e9f093.png b/test-A/pictures/23024c939b0160fc9bfe900cd8e9f093.png new file mode 100644 index 0000000..5248902 Binary files /dev/null and b/test-A/pictures/23024c939b0160fc9bfe900cd8e9f093.png differ diff --git a/test-A/pictures/23b84221b97bca36177fefc659c8e4cd.png b/test-A/pictures/23b84221b97bca36177fefc659c8e4cd.png new file mode 100644 index 0000000..5a21a25 Binary files /dev/null and b/test-A/pictures/23b84221b97bca36177fefc659c8e4cd.png differ diff --git a/test-A/pictures/24a0acd48aa2f44530b6f7176b48ea75.png b/test-A/pictures/24a0acd48aa2f44530b6f7176b48ea75.png new file mode 100644 index 0000000..88e42b3 Binary files /dev/null and b/test-A/pictures/24a0acd48aa2f44530b6f7176b48ea75.png differ diff --git a/test-A/pictures/266ef817d6370584c950d2fa41207581.png b/test-A/pictures/266ef817d6370584c950d2fa41207581.png new file mode 100644 index 0000000..c1eb744 Binary files /dev/null and b/test-A/pictures/266ef817d6370584c950d2fa41207581.png differ diff --git a/test-A/pictures/269776cb24e9d147deb50d562d9ac656.png b/test-A/pictures/269776cb24e9d147deb50d562d9ac656.png new file mode 100644 index 0000000..015e4e7 Binary files /dev/null and b/test-A/pictures/269776cb24e9d147deb50d562d9ac656.png differ diff --git a/test-A/pictures/2a70f56aeb1388f44f5a5fe2b0adf119.png b/test-A/pictures/2a70f56aeb1388f44f5a5fe2b0adf119.png new file mode 100644 index 0000000..bb14a08 Binary files /dev/null and b/test-A/pictures/2a70f56aeb1388f44f5a5fe2b0adf119.png differ diff --git a/test-A/pictures/2c41890e057d78047d5eccff6a948aa6.png b/test-A/pictures/2c41890e057d78047d5eccff6a948aa6.png new file mode 100644 index 0000000..29adb51 Binary files /dev/null and b/test-A/pictures/2c41890e057d78047d5eccff6a948aa6.png differ diff --git a/test-A/pictures/2f5450fe4ef9cdfad7ac0c871934ac7f.png b/test-A/pictures/2f5450fe4ef9cdfad7ac0c871934ac7f.png new file mode 100644 index 0000000..20b4395 Binary files /dev/null and b/test-A/pictures/2f5450fe4ef9cdfad7ac0c871934ac7f.png differ diff --git a/test-A/pictures/338bed16ec9d1fc24a841723f7d91c3e.png b/test-A/pictures/338bed16ec9d1fc24a841723f7d91c3e.png new file mode 100644 index 0000000..1fc3fd8 Binary files /dev/null and b/test-A/pictures/338bed16ec9d1fc24a841723f7d91c3e.png differ diff --git a/test-A/pictures/33bbd09e284a8e680d07bc27d5a43ec1.png b/test-A/pictures/33bbd09e284a8e680d07bc27d5a43ec1.png new file mode 100644 index 0000000..e089d00 Binary files /dev/null and b/test-A/pictures/33bbd09e284a8e680d07bc27d5a43ec1.png differ diff --git a/test-A/pictures/394d6c136f1b3dc08c08587c7169f781.png b/test-A/pictures/394d6c136f1b3dc08c08587c7169f781.png new file mode 100644 index 0000000..0d79409 Binary files /dev/null and b/test-A/pictures/394d6c136f1b3dc08c08587c7169f781.png differ diff --git a/test-A/pictures/3a6c128723231061923e9c0b273d9235.png b/test-A/pictures/3a6c128723231061923e9c0b273d9235.png new file mode 100644 index 0000000..7ccaf26 Binary files /dev/null and b/test-A/pictures/3a6c128723231061923e9c0b273d9235.png differ diff --git a/test-A/pictures/3b41bb328f361d51e8990beb7e144ed0.png b/test-A/pictures/3b41bb328f361d51e8990beb7e144ed0.png new file mode 100644 index 0000000..035002f Binary files /dev/null and b/test-A/pictures/3b41bb328f361d51e8990beb7e144ed0.png differ diff --git a/test-A/pictures/3c325f43fc7815e5232da866dc317dc9.png b/test-A/pictures/3c325f43fc7815e5232da866dc317dc9.png new file mode 100644 index 0000000..d6655cc Binary files /dev/null and b/test-A/pictures/3c325f43fc7815e5232da866dc317dc9.png differ diff --git a/test-A/pictures/3cdc1e544809ae6d61de6f9020d22a00.png b/test-A/pictures/3cdc1e544809ae6d61de6f9020d22a00.png new file mode 100644 index 0000000..0886f71 Binary files /dev/null and b/test-A/pictures/3cdc1e544809ae6d61de6f9020d22a00.png differ diff --git a/test-A/pictures/3ea978638c194e9eb500fbd836989180.png b/test-A/pictures/3ea978638c194e9eb500fbd836989180.png new file mode 100644 index 0000000..f37d5c9 Binary files /dev/null and b/test-A/pictures/3ea978638c194e9eb500fbd836989180.png differ diff --git a/test-A/pictures/3f64d3b888b58db116197577e6ff84bf.png b/test-A/pictures/3f64d3b888b58db116197577e6ff84bf.png new file mode 100644 index 0000000..2ed1ca2 Binary files /dev/null and b/test-A/pictures/3f64d3b888b58db116197577e6ff84bf.png differ diff --git a/test-A/pictures/422086aa81455b8649c213fe13f798af.png b/test-A/pictures/422086aa81455b8649c213fe13f798af.png new file mode 100644 index 0000000..6494d03 Binary files /dev/null and b/test-A/pictures/422086aa81455b8649c213fe13f798af.png differ diff --git a/test-A/pictures/472d3265123f13a11e72f7db74dd0ccf.png b/test-A/pictures/472d3265123f13a11e72f7db74dd0ccf.png new file mode 100644 index 0000000..594bfe4 Binary files /dev/null and b/test-A/pictures/472d3265123f13a11e72f7db74dd0ccf.png differ diff --git a/test-A/pictures/490b8065e0a5b94a40c9399ab5465876.png b/test-A/pictures/490b8065e0a5b94a40c9399ab5465876.png new file mode 100644 index 0000000..f564690 Binary files /dev/null and b/test-A/pictures/490b8065e0a5b94a40c9399ab5465876.png differ diff --git a/test-A/pictures/4b4f23fb2dcfb4178ccee4a1fc48fa00.png b/test-A/pictures/4b4f23fb2dcfb4178ccee4a1fc48fa00.png new file mode 100644 index 0000000..5a042bf Binary files /dev/null and b/test-A/pictures/4b4f23fb2dcfb4178ccee4a1fc48fa00.png differ diff --git a/test-A/pictures/512698357396240e46583e73d017ca25.png b/test-A/pictures/512698357396240e46583e73d017ca25.png new file mode 100644 index 0000000..aec7903 Binary files /dev/null and b/test-A/pictures/512698357396240e46583e73d017ca25.png differ diff --git a/test-A/pictures/52a0596237db1a9306504860dbce2232.png b/test-A/pictures/52a0596237db1a9306504860dbce2232.png new file mode 100644 index 0000000..ecfa98d Binary files /dev/null and b/test-A/pictures/52a0596237db1a9306504860dbce2232.png differ diff --git a/test-A/pictures/53884bc778dbef4bc2a2e6deb5c07b3c.png b/test-A/pictures/53884bc778dbef4bc2a2e6deb5c07b3c.png new file mode 100644 index 0000000..07a6fa8 Binary files /dev/null and b/test-A/pictures/53884bc778dbef4bc2a2e6deb5c07b3c.png differ diff --git a/test-A/pictures/55b20879814e5017f7c479c95508bc76.png b/test-A/pictures/55b20879814e5017f7c479c95508bc76.png new file mode 100644 index 0000000..8009d0a Binary files /dev/null and b/test-A/pictures/55b20879814e5017f7c479c95508bc76.png differ diff --git a/test-A/pictures/57d2037fcb6de94fdfdd153ca7a6d96a.png b/test-A/pictures/57d2037fcb6de94fdfdd153ca7a6d96a.png new file mode 100644 index 0000000..8348e73 Binary files /dev/null and b/test-A/pictures/57d2037fcb6de94fdfdd153ca7a6d96a.png differ diff --git a/test-A/pictures/587227727a136fa49515e4addc065d2e.png b/test-A/pictures/587227727a136fa49515e4addc065d2e.png new file mode 100644 index 0000000..a938219 Binary files /dev/null and b/test-A/pictures/587227727a136fa49515e4addc065d2e.png differ diff --git a/test-A/pictures/58f8cd97182c3a735eea19fa6f053e0f.png b/test-A/pictures/58f8cd97182c3a735eea19fa6f053e0f.png new file mode 100644 index 0000000..f836ca6 Binary files /dev/null and b/test-A/pictures/58f8cd97182c3a735eea19fa6f053e0f.png differ diff --git a/test-A/pictures/5a11ccd40ebac2c59e5786df6d61b2ea.png b/test-A/pictures/5a11ccd40ebac2c59e5786df6d61b2ea.png new file mode 100644 index 0000000..ffd36d6 Binary files /dev/null and b/test-A/pictures/5a11ccd40ebac2c59e5786df6d61b2ea.png differ diff --git a/test-A/pictures/5bd25fdc0a0762116d5f86dc8764a606.png b/test-A/pictures/5bd25fdc0a0762116d5f86dc8764a606.png new file mode 100644 index 0000000..da870fa Binary files /dev/null and b/test-A/pictures/5bd25fdc0a0762116d5f86dc8764a606.png differ diff --git a/test-A/pictures/5d34ab627f1dd69303d7416406a51da9.png b/test-A/pictures/5d34ab627f1dd69303d7416406a51da9.png new file mode 100644 index 0000000..c8acc71 Binary files /dev/null and b/test-A/pictures/5d34ab627f1dd69303d7416406a51da9.png differ diff --git a/test-A/pictures/633c252783f361399e0898f1023e5d30.png b/test-A/pictures/633c252783f361399e0898f1023e5d30.png new file mode 100644 index 0000000..cc41fe4 Binary files /dev/null and b/test-A/pictures/633c252783f361399e0898f1023e5d30.png differ diff --git a/test-A/pictures/65b888b1385d4ac472ae6e2695f1ab08.png b/test-A/pictures/65b888b1385d4ac472ae6e2695f1ab08.png new file mode 100644 index 0000000..3cd9dba Binary files /dev/null and b/test-A/pictures/65b888b1385d4ac472ae6e2695f1ab08.png differ diff --git a/test-A/pictures/67d4edb4b47a74d3ab19743714fe2604.png b/test-A/pictures/67d4edb4b47a74d3ab19743714fe2604.png new file mode 100644 index 0000000..93bfa4a Binary files /dev/null and b/test-A/pictures/67d4edb4b47a74d3ab19743714fe2604.png differ diff --git a/test-A/pictures/68e1eb77bd6054a3fc234dae01f6e495.png b/test-A/pictures/68e1eb77bd6054a3fc234dae01f6e495.png new file mode 100644 index 0000000..ab8e5fd Binary files /dev/null and b/test-A/pictures/68e1eb77bd6054a3fc234dae01f6e495.png differ diff --git a/test-A/pictures/6a6899418859d21f0406fb3284b4c4d2.png b/test-A/pictures/6a6899418859d21f0406fb3284b4c4d2.png new file mode 100644 index 0000000..5e8baa9 Binary files /dev/null and b/test-A/pictures/6a6899418859d21f0406fb3284b4c4d2.png differ diff --git a/test-A/pictures/6c4cf9aa2150e1aaabf982da391a8726.png b/test-A/pictures/6c4cf9aa2150e1aaabf982da391a8726.png new file mode 100644 index 0000000..0b39be9 Binary files /dev/null and b/test-A/pictures/6c4cf9aa2150e1aaabf982da391a8726.png differ diff --git a/test-A/pictures/6f309835f7dae72bacba6078e94c593d.png b/test-A/pictures/6f309835f7dae72bacba6078e94c593d.png new file mode 100644 index 0000000..93485c6 Binary files /dev/null and b/test-A/pictures/6f309835f7dae72bacba6078e94c593d.png differ diff --git a/test-A/pictures/7592d6fe5f91f29b2c183836f80864ca.png b/test-A/pictures/7592d6fe5f91f29b2c183836f80864ca.png new file mode 100644 index 0000000..41be2c7 Binary files /dev/null and b/test-A/pictures/7592d6fe5f91f29b2c183836f80864ca.png differ diff --git a/test-A/pictures/761aa890357d4ee41660305ae66faadd.png b/test-A/pictures/761aa890357d4ee41660305ae66faadd.png new file mode 100644 index 0000000..60f1305 Binary files /dev/null and b/test-A/pictures/761aa890357d4ee41660305ae66faadd.png differ diff --git a/test-A/pictures/76ee89f9266b1a87ca6f45750f368ede.png b/test-A/pictures/76ee89f9266b1a87ca6f45750f368ede.png new file mode 100644 index 0000000..fd4afcf Binary files /dev/null and b/test-A/pictures/76ee89f9266b1a87ca6f45750f368ede.png differ diff --git a/test-A/pictures/7a34185ac67e5209d2d8184ce27850e8.png b/test-A/pictures/7a34185ac67e5209d2d8184ce27850e8.png new file mode 100644 index 0000000..f7a05ae Binary files /dev/null and b/test-A/pictures/7a34185ac67e5209d2d8184ce27850e8.png differ diff --git a/test-A/pictures/7dac3bf792f54eb222b133b672624e66.png b/test-A/pictures/7dac3bf792f54eb222b133b672624e66.png new file mode 100644 index 0000000..59d98fe Binary files /dev/null and b/test-A/pictures/7dac3bf792f54eb222b133b672624e66.png differ diff --git a/test-A/pictures/7df2328773ea4a19e3379831b91825b3.png b/test-A/pictures/7df2328773ea4a19e3379831b91825b3.png new file mode 100644 index 0000000..337b341 Binary files /dev/null and b/test-A/pictures/7df2328773ea4a19e3379831b91825b3.png differ diff --git a/test-A/pictures/81b880aa5f85818eac83abd435f55678.png b/test-A/pictures/81b880aa5f85818eac83abd435f55678.png new file mode 100644 index 0000000..ad712fe Binary files /dev/null and b/test-A/pictures/81b880aa5f85818eac83abd435f55678.png differ diff --git a/test-A/pictures/8515b05ff771a957130d3154afdc013e.png b/test-A/pictures/8515b05ff771a957130d3154afdc013e.png new file mode 100644 index 0000000..4ba3e36 Binary files /dev/null and b/test-A/pictures/8515b05ff771a957130d3154afdc013e.png differ diff --git a/test-A/pictures/86a9f008bc4f402ac15d52fa409f94b1.png b/test-A/pictures/86a9f008bc4f402ac15d52fa409f94b1.png new file mode 100644 index 0000000..12f15c1 Binary files /dev/null and b/test-A/pictures/86a9f008bc4f402ac15d52fa409f94b1.png differ diff --git a/test-A/pictures/87ee48b6706ee29d9baa970701a9dd38.png b/test-A/pictures/87ee48b6706ee29d9baa970701a9dd38.png new file mode 100644 index 0000000..1273d41 Binary files /dev/null and b/test-A/pictures/87ee48b6706ee29d9baa970701a9dd38.png differ diff --git a/test-A/pictures/88a991d6a3002147c8ceb77778f821a3.png b/test-A/pictures/88a991d6a3002147c8ceb77778f821a3.png new file mode 100644 index 0000000..4218943 Binary files /dev/null and b/test-A/pictures/88a991d6a3002147c8ceb77778f821a3.png differ diff --git a/test-A/pictures/8ad307a79d978897d23f28862dc7b61b.png b/test-A/pictures/8ad307a79d978897d23f28862dc7b61b.png new file mode 100644 index 0000000..d3d59c9 Binary files /dev/null and b/test-A/pictures/8ad307a79d978897d23f28862dc7b61b.png differ diff --git a/test-A/pictures/8df72a94c3b3bc6a0b790b3285366109.png b/test-A/pictures/8df72a94c3b3bc6a0b790b3285366109.png new file mode 100644 index 0000000..e06c7b1 Binary files /dev/null and b/test-A/pictures/8df72a94c3b3bc6a0b790b3285366109.png differ diff --git a/test-A/pictures/907c65b244226b88e43b0a96150db39e.png b/test-A/pictures/907c65b244226b88e43b0a96150db39e.png new file mode 100644 index 0000000..3167bf4 Binary files /dev/null and b/test-A/pictures/907c65b244226b88e43b0a96150db39e.png differ diff --git a/test-A/pictures/994f872d34f821605e233d31ace1bc62.png b/test-A/pictures/994f872d34f821605e233d31ace1bc62.png new file mode 100644 index 0000000..c388e6a Binary files /dev/null and b/test-A/pictures/994f872d34f821605e233d31ace1bc62.png differ diff --git a/test-A/pictures/9b3842f08d63375ddc144fa304073275.png b/test-A/pictures/9b3842f08d63375ddc144fa304073275.png new file mode 100644 index 0000000..f04a2b9 Binary files /dev/null and b/test-A/pictures/9b3842f08d63375ddc144fa304073275.png differ diff --git a/test-A/pictures/abc9375a34906214899a377814489ac3.png b/test-A/pictures/abc9375a34906214899a377814489ac3.png new file mode 100644 index 0000000..71f0af8 Binary files /dev/null and b/test-A/pictures/abc9375a34906214899a377814489ac3.png differ diff --git a/test-A/pictures/af63ddf0c54a6f20600db13fbc1041c9.png b/test-A/pictures/af63ddf0c54a6f20600db13fbc1041c9.png new file mode 100644 index 0000000..ae9f93e Binary files /dev/null and b/test-A/pictures/af63ddf0c54a6f20600db13fbc1041c9.png differ diff --git a/test-A/pictures/b424f64197897ab9a86b921a026c94f8.png b/test-A/pictures/b424f64197897ab9a86b921a026c94f8.png new file mode 100644 index 0000000..fe33ec6 Binary files /dev/null and b/test-A/pictures/b424f64197897ab9a86b921a026c94f8.png differ diff --git a/test-A/pictures/b80e909d93fdc25f0eaeac2d6de0f328.png b/test-A/pictures/b80e909d93fdc25f0eaeac2d6de0f328.png new file mode 100644 index 0000000..e3aa563 Binary files /dev/null and b/test-A/pictures/b80e909d93fdc25f0eaeac2d6de0f328.png differ diff --git a/test-A/pictures/b9b0ecceb19bd10d26fc8ab0a1f8de84.png b/test-A/pictures/b9b0ecceb19bd10d26fc8ab0a1f8de84.png new file mode 100644 index 0000000..0e1469e Binary files /dev/null and b/test-A/pictures/b9b0ecceb19bd10d26fc8ab0a1f8de84.png differ diff --git a/test-A/pictures/b9cd432af3ee872112bb6b68bfd9a642.png b/test-A/pictures/b9cd432af3ee872112bb6b68bfd9a642.png new file mode 100644 index 0000000..f042d0f Binary files /dev/null and b/test-A/pictures/b9cd432af3ee872112bb6b68bfd9a642.png differ diff --git a/test-A/pictures/badaf396531f3546797d68f5cfcc6add.png b/test-A/pictures/badaf396531f3546797d68f5cfcc6add.png new file mode 100644 index 0000000..3b27c22 Binary files /dev/null and b/test-A/pictures/badaf396531f3546797d68f5cfcc6add.png differ diff --git a/test-A/pictures/bfb681772c38d4a38834cabb0492c539.png b/test-A/pictures/bfb681772c38d4a38834cabb0492c539.png new file mode 100644 index 0000000..733739b Binary files /dev/null and b/test-A/pictures/bfb681772c38d4a38834cabb0492c539.png differ diff --git a/test-A/pictures/c676c6e4e0c7814275adbab97d587f58.png b/test-A/pictures/c676c6e4e0c7814275adbab97d587f58.png new file mode 100644 index 0000000..8f971bc Binary files /dev/null and b/test-A/pictures/c676c6e4e0c7814275adbab97d587f58.png differ diff --git a/test-A/pictures/c97c08904ac1bb99a1df8d7a6d432f47.png b/test-A/pictures/c97c08904ac1bb99a1df8d7a6d432f47.png new file mode 100644 index 0000000..f49d671 Binary files /dev/null and b/test-A/pictures/c97c08904ac1bb99a1df8d7a6d432f47.png differ diff --git a/test-A/pictures/ca648b46eafce02b16665e55d8005a6b.png b/test-A/pictures/ca648b46eafce02b16665e55d8005a6b.png new file mode 100644 index 0000000..bd7bdad Binary files /dev/null and b/test-A/pictures/ca648b46eafce02b16665e55d8005a6b.png differ diff --git a/test-A/pictures/cbaf8d7095d8710b74d64b8513ad8625.png b/test-A/pictures/cbaf8d7095d8710b74d64b8513ad8625.png new file mode 100644 index 0000000..48204ec Binary files /dev/null and b/test-A/pictures/cbaf8d7095d8710b74d64b8513ad8625.png differ diff --git a/test-A/pictures/ce0324d0c64db289c46daa8550031f39.png b/test-A/pictures/ce0324d0c64db289c46daa8550031f39.png new file mode 100644 index 0000000..691d9c2 Binary files /dev/null and b/test-A/pictures/ce0324d0c64db289c46daa8550031f39.png differ diff --git a/test-A/pictures/ce9eb5ab68d6258ba08ad313eb77d4b3.png b/test-A/pictures/ce9eb5ab68d6258ba08ad313eb77d4b3.png new file mode 100644 index 0000000..2ebd1e1 Binary files /dev/null and b/test-A/pictures/ce9eb5ab68d6258ba08ad313eb77d4b3.png differ diff --git a/test-A/pictures/d0dfa9e8ce9b6fbd4a654eeae7c8e089.png b/test-A/pictures/d0dfa9e8ce9b6fbd4a654eeae7c8e089.png new file mode 100644 index 0000000..c39b70e Binary files /dev/null and b/test-A/pictures/d0dfa9e8ce9b6fbd4a654eeae7c8e089.png differ diff --git a/test-A/pictures/d4c81d3de15e54c912771c2a6be8103e.png b/test-A/pictures/d4c81d3de15e54c912771c2a6be8103e.png new file mode 100644 index 0000000..fd63738 Binary files /dev/null and b/test-A/pictures/d4c81d3de15e54c912771c2a6be8103e.png differ diff --git a/test-A/pictures/d85188af8d9c36e5a606079621870ccf.png b/test-A/pictures/d85188af8d9c36e5a606079621870ccf.png new file mode 100644 index 0000000..e3277b0 Binary files /dev/null and b/test-A/pictures/d85188af8d9c36e5a606079621870ccf.png differ diff --git a/test-A/pictures/dbffce1918df71b8d6f5df6b7067dda8.png b/test-A/pictures/dbffce1918df71b8d6f5df6b7067dda8.png new file mode 100644 index 0000000..91702c9 Binary files /dev/null and b/test-A/pictures/dbffce1918df71b8d6f5df6b7067dda8.png differ diff --git a/test-A/pictures/e95bc12becb12c2d71a6e574bd9a7b16.png b/test-A/pictures/e95bc12becb12c2d71a6e574bd9a7b16.png new file mode 100644 index 0000000..ef765c6 Binary files /dev/null and b/test-A/pictures/e95bc12becb12c2d71a6e574bd9a7b16.png differ diff --git a/test-A/pictures/eaf132f3010913c4a0e18780235388cb.png b/test-A/pictures/eaf132f3010913c4a0e18780235388cb.png new file mode 100644 index 0000000..77fb4c0 Binary files /dev/null and b/test-A/pictures/eaf132f3010913c4a0e18780235388cb.png differ diff --git a/test-A/pictures/ef32b8ab221f6d9466a4998c182d9b92.png b/test-A/pictures/ef32b8ab221f6d9466a4998c182d9b92.png new file mode 100644 index 0000000..eccf542 Binary files /dev/null and b/test-A/pictures/ef32b8ab221f6d9466a4998c182d9b92.png differ diff --git a/test-A/pictures/ef765d887e23f546f7cd5c9701c58ffe.png b/test-A/pictures/ef765d887e23f546f7cd5c9701c58ffe.png new file mode 100644 index 0000000..d16f993 Binary files /dev/null and b/test-A/pictures/ef765d887e23f546f7cd5c9701c58ffe.png differ diff --git a/test-A/pictures/f84700d4a2a68445be4318291b6c7acc.png b/test-A/pictures/f84700d4a2a68445be4318291b6c7acc.png new file mode 100644 index 0000000..c286e24 Binary files /dev/null and b/test-A/pictures/f84700d4a2a68445be4318291b6c7acc.png differ diff --git a/test-A/pictures/f9ed3ef7f08cf0e03f17ecff168daefa.png b/test-A/pictures/f9ed3ef7f08cf0e03f17ecff168daefa.png new file mode 100644 index 0000000..5dff0b7 Binary files /dev/null and b/test-A/pictures/f9ed3ef7f08cf0e03f17ecff168daefa.png differ diff --git a/test-A/pictures/fef9d12530f8dcb88ec9628023aa1dc7.png b/test-A/pictures/fef9d12530f8dcb88ec9628023aa1dc7.png new file mode 100644 index 0000000..a3ff136 Binary files /dev/null and b/test-A/pictures/fef9d12530f8dcb88ec9628023aa1dc7.png differ diff --git a/test-B/captions.tsv b/test-B/captions.tsv new file mode 100644 index 0000000..fe9628c --- /dev/null +++ b/test-B/captions.tsv @@ -0,0 +1,435 @@ +1 "THE SHARP CRACK OF A RIFLE SOUNDED CLOSE BY.” +2 $1.50 and $1.69\nWRAPPERS,\n98c. +3 $1.69 for $2.50\nMen’s Hats. +4 $1.95\nFor this Elegant Rattan Rocker—\nregular price $5.00—only 100 of\nthem. +5 $15\nSuits\nto Order,\n$10\n$15\nOvercoats\nto Order,\n$10\nHORN’S COMPLIMENTARY\nCHRISTMAS GIFTS ! +6 $15 Corner China Case,\n$9.70. +7 $2 Waists for 98c. +8 $2.00 FOUNTAIN PEN.\n70c +9 $3.95 Special for Thursday and Friday.\nLansburg\nFurniture Co., +10 $5.00\nTO\nCALIFORNIA +11 $6.50 Decorated Dinner Set, $3.98. +12 $6.50 for a lot Ladies;\n$9 homespun suits. +13 $6.85\nfor $12 Men’s Suits +14 100,00 pounds of paultry and \n100,000 of butter wanted for which\nI will pay the hishest marke\nprice in cash. We are always in\nthe market for dall, summer and\nwinter apples. +15 150 Boy's Blue\nSerge Suits… $2.49 +16 3-burner, $1.79. +17 4-qt Enameled Iron Saucepot, only\n31c. +18 55c.\nA wonderful price for a Chair\nlike this. Very well made, of hard-\nwood with rattan seat. Antique\nfinish. A comfortable and conveni-\nent perch or sewing Rocker. +19 8-quart Enameled\nIron Tea Kettle…… 65c +20 98c Wrapper, 59. +21 98c and $1.19 Wrappers\nToday and Tomorrow,\n59c. +22 A\nGood Table\nCheap.\nCash or Credit. +23 A\nShoe\n"Scoop"\nfor\nMen at\n$3.39. +24 A $2.50 highly polished\nmahoganized Jardiniere\nStand,\n$1.25 +25 A 6-foot Oak Extension Table—5 legs.\nSold everywhere for $4.50. Our price\nonly……………………………………… $2.98 +26 A COMMON–SENSE CURE\nMUNYON’S\nINHALER. +27 A Chair\nBargain.\n95c.\nCASH OR CREDIT.\nMayer & Pettit,\n415-417 7th St. +28 A Fortnight’s Remnant Gathering in a One-day’s Offering. +29 A GOOD CORSET\nFOR YOU.\nONLY $1. +30 A GREAT\nSKIRT SALE.\nSaturday,\n$1.29. +31 A Generous Offer\nTO EVERY READER OF THE WASHINGTON TIMES.\nThree Free Bottles Upon Application.\nMedicine Reduced to an Exact Science by\nThe World’s Most Famous Physician. +32 A LETTER TO WOMEN. +33 A MODEL HOUSE +34 A Normal Chest, +35 A PRETTY STYLE\nGENTLEMAN’S BUTTON-SHOE +36 A Perfect\nInfant Food\nGAIL BORDEN\nEAGLE BRAND\nCONDENSED MILK.\nA CAREFULLY PREPARED AND NATURAL\nSUBSTITUTE FOR MOTHERS MILK. +37 A Rocker\nBargain\nUnprecedented. +38 A Sideboard Marvel. +39 A WOMAN\nHESITATES\nMcELREE’S\nWINE OF CARDUI +40 A World’s Tribute.\nAmerica Leads the Nations in\nthe March of Progress. +41 A card engraver and designer who lives in Brooklyn, says: +42 A charming Lady’s Desk +43 A day of the most unusual selling---tomorrow.\nWe are trimming all hats free of cost, +44 A large, beautifully–carved Oak Dressing\nCase—large, beveled plate glass,\n$7.95. +45 A new arrival.\nThis Fine Wrapper\nOnly $1.68. +46 A praire fire moves faster than any horse\ncan run. +47 A pretty 16-in. top. Bedroom\nTable, with under shelf……..35c +48 A solid oak, 6-ft. Extension\nTable, 5 legs,\n$2.75. +49 A very fine pretilly carbed\noak Chiffonier, worth $4 for\n$3.98 +50 A. J. BITTER.\nUndertaker.\nMETALIC CASKETS\nWooden Caskets. +51 ABOUT THE FANCY BODICE +52 ADMIRAL DEWEY. +53 ALEXANDER III, CZAR OF RUSSIA.\n(From a recent photograph.) +54 ALL FOR THE BABY,\nTHIS COAT, $1.59. +55 ALWAYS ASK\nFOR MOTHER’S\nMOTHER’S BREAD\nCORBY’S\nCorby’s\nModern\nBakery. +56 ANGEVINE & McCREW\nDEALER IN\nFurniture and Plain and Fancy Coffins.\nUNDERTAKING A SPECIALTY HEARSE FUR-\nNISHED WHEN REQUIRED. +57 ANGEVINE & NOVINGER,\nDEALERS IN\nFURNITURE\nUNDERTAKING A SPECIALTY. +58 ARE YOU A\nSTRONG MAN? +59 ARE YOU NERVOUS\nAND LACK VITAL ENERGY? +60 ASSIST NATURE +61 ATLAS TABLETS +62 About\nthis time\ntake a\ndrink\nof\nHires\nROOTBEER +63 Adair County Corn Crop for 1890. +64 Advice of a\nDruggist +65 All Baby Carriages\nand Go–carts at\nCost for One\nDay, Tuesday. +66 An Ideal Summer Garden.\nGEORGE F. KOZEL, 14th St., Between S and T. +67 An Unusual Corset. +68 An elegant bedroom suite—\nmahogany finish—handsomely\ncarved and finished—\nFrench plate glass…$22.50 +69 Another 98c\nKid Glove Sale. +70 Arizona Mail and Stage Line,\nTombstone, Arizona.\n406 Allen St. Under Occidental Hotel.\nROBT, CROUCH, PROPRIETOR, +71 At Last\nA PRACTICAL\nType–Writing\nMachine…\nAT A LOW PRICE\nThe Blickensderfer No. 5\nPRICE…$35.00 +72 At the Busy Corner At the Busy Corner\nLast Week of the Baum Sale\nSealing the Doom of\nWinter Dress Goods. +73 B. C. AXTELL\nDENTIST, +74 B. W. SANDS\nDEALER IN\nWATCHES, CLOCKS AND JEWELRY\nNew Stock,\nNew Styles,\nLow Prices ! +75 B. W. SANDS\nDEALER IN\nWATCHES, CLOCKS AND JEWELRY\nNew Stock,\nNew Styles,\nLow Prices!\nFINE\nWATCH REPAIRING\nAND\nENGRAVING! +76 BARR’S MEAT MARKET\nKIRKSVILLE, MO.\nFRESH BEEF AND FRESH PORK +77 BATTLE OF SAN JUAN. +78 BEDFORD\nCAMERAS\nFOR FILM OR PLATES.\nKOZY CAMERA CO., +79 BEFORE\nTHEY ACHE— +80 BEST EVER MADE\n30c. per lb.\nStrictly Pure and excels all others\nin baking quality and healthdulness.\nWill keep in any climate. +81 BEST IN THE WORLD.\nRambler\nBicycles +82 BOOTS, SHOES, &c.\nE. H. SPENCE & CO. +83 BRAZILIAN BALM!\nThe Great South American Balsam, +84 BUCKETS, +85 BUY YOUR\nFUR GARMENTS +86 BUY YOUR\nFUR GARMENTS\nS. Silverfield, +87 Big\nWrapper\nSpecial\n49c +88 Boys’\nFurnishings\nand Shoes. +89 Boys’ Clothing. +90 CAN’T HELP TELLING. +91 CAPES AND JACKETS\nOur Cloak and Cape Department leads them all. +92 CASH\nLUMBER YARD\nLARGEST LUMBER SHED +93 CASH\nLUMBER YARD\nLARGEST LUMBER SHEL\nJOSEPH DOUGLASS,\nPROPRIETOR,\nSuccesor to\nDOUGLAS & SON. +94 CASH\nLUMBER YARD\nLARGEST LUMBER SHEL\nJOSEPH DOUGLASS,\nPROPRIETOR. +95 CASTELBERG’S CASTELBERG’S\nTHE\nOphthalmometer. +96 CAUGHT IN A BLIZZAAD. +97 CHILDREN’S CLOTHING\n$1.00 AND $1.50.\n$2.00 TO $5.00.\nHALF PRICE.\nRobinson & Chery Co., +98 CLARK’S RIGHT–LAP\nPlow and Seeder Combined. +99 CLOTHING OPPORTUNITIES. +100 COLUMBIA WASHINGTON'S\nLEADING THEATRE\nTHE JEFFERSON\nDE ANGELIS\nOPERA COMPANY. +101 COMMISSARY GENERAL CHARLES P. EAGAN. +102 COUNTRY HOUSE TABLE.\nA Useful and Pretty Article That Can Be\nMade In Many Styles at Small Cost. +103 CYCLOPEDIAS. +104 Capes and Jackets. +105 Carpets and Rugs. +106 Clothing for Men and Boys. +107 Corner Chair—mahogany\nfinish frame—upholstered\nin silk damask—$5 should\nbe the price.\nFor 2 days, $3.35 +108 Corner House, with Stable and Large Side Lot, Reduced to $25 Per Mo.\nInterior House Reduced to $19 Per Month. +109 Corsets +110 Cough is a Friend! +111 Crockery Dept. +112 Cupid’s arrows\nfly straightest in\nthe light of a\nclear complexion,\nbright eyes and\nrosy lips. The\nwoman who\nis vigorously\nhealth is sure to\nbe attractive. +113 D. W. DARNSWORTH\nDEALER IN\nPianos Organs\nAND THE—\nWEHIT SEWING MACHINE +114 DAVID BAIRD\nDealer in\nAMERICAN AND ITALIAN\nMARBLE\nHEAD STONES, ETC.\nKIRKSVILLE, MO., +115 DEERING JUNIOR STEEL BINDER. +116 DEPARTURE OF STEAMERN.\nONLY ONE DOLLAR\nTO\nNEWPORT’S NEWS, NORFOLK, AND PORTS-\nMOUTH. +117 DO YOU GET UP\nWITH A LAME BACK?\nKidney Trouble Makes You Miserable. +118 DOCTORS McCHESNEY & DUNBAR\nSPECIALISTS OF RECOGNIZED ABILITY HAVE PERMANENTLY LOCATED AT KIRKSVILLE\nand offer their services to all those who are afflicted with diseases of chronic nature. +119 DON’T\nDon’t Put\nIt Off\nIf you are going to buy\nfor fall or winter, might\nas well buy early and get\na whole season’s wear and\ncomfort out of your cloth-\ning. Good goods can’t be\nsold lower than we’re sell-\ning them now, and first\npick out of this splendid\nnew stock ought to be\nworh something to you. +120 DON’T SACRIFICE…\nThe WHITE.\nITS BEAUTIFULLY FIGURED WOODWORK,\nDURABLE CONSTRUCTION,\nFINE MECHANICAL ADJUSTMENT,\nMOST DESIRABLE MACHINE IN THE MARKET.\nWhite Sewing Machine Co., +121 Death robs a\nman not only of\nhis life, but all\ntoo frequently\nof the remnants\nof his fortune.\nthat ill health\nhas left him. +122 Dining Room Completely Furnished for $24.50. +123 Direct from the Coal Mines\nof Wyoming Valley +124 Doctor Henderson +125 Don't Let Those Old\nDiseased Teeth +126 Doneght Bankrupt Stock Must All Go!\nOnly 30 More Days to Close Out the Entire Stock!\nFIFTY CENTS ON THE DOLLAR BUYS IT! +127 Down Goes the Rent\nTo $16 Per Month. +128 EACH FOEMAN DREW HIS BLADE. +129 EISENMANN’S\nGREAT\nSATURDAY BARGAINS!\nSpecial Skirt Sale.\n49c +130 ELECTRIC TELEPHONE +131 EVANS’ DENTAL PARLOR, +132 Eyes\nCause\nHeadache. +133 FIRST ACCURATE MAP OF THE KLONDIKE GOLD FIELDS. +134 FISHERMEN’S DEPOT.\nSEINE–TWINES, +135 FOOR FORM BOOTS\nFOR ALL WOMEN.\nA Well Spent\n$3.00 +136 FOR\nOUT OF DOORS\nSole Leather Sole…………\n………………………………$5.50 a pair\nElk Skin Sole, Blucher\nStyle………… $6.00 a pair. +137 FOR GRADUATING GIFTS.\nTHOMAS JEWELRY HOUSE. +138 FOR SALE\nTwo Car Loads of Canada Sheep +139 FOR SALE—HOUSES.\nA BARGAIN\nONLY $3,250.\nCOST $4,500. +140 FREE EXHIBITION\nSEVEN\nSUTHERLAND\nSISTERS\nHair Grower and\nScalp Cleaner +141 FREE HELP FOR WEAK MEN\n"CALTHOS"\nProf. Laborde's Marbelous French Cure for Lost Manhood. +142 FREE SAMPLES TO LADIES.\nNo Reserve--Every Lady Who Writes\nWill be Given a Free Trial Pack-\nage by Mail Prepaid. +143 FRESH STOCK JUST\nON SALE OF\nThoes\n$4.25\nSuit\nCases. +144 Famous for Fit.\n"Langlois" +145 Fill Your Own Teeth +146 First Showing of the New Fall\nReady–to–wear Hats. +147 Flanelette\nWrappers at a\nSacrifice. +148 For Nearly Two Years\nUnable to Lay in Bed +149 For Rent, Only $18 per mo. +150 For Rent, Only $18 per mo.\nELEGANT SUBURBAN HOME. +151 Foundation Stones +152 French Satine\nSkirt….. $1.89 +153 Full Nickeled 2-burner\nGas Stove……………$1.25 +154 GENERAL BULLER. +155 GET RICH!\n$4.50 Shoes.\nFor 3 Days, $3.39 +156 GETTING OUT AMONG THE PEOPLE. +157 GIRLS IN STORES, +158 GOLD\nDUST\nWashing Powder +159 GREAT AMERICAN\nMEAR–CUTTER. +160 GRIP CAN BE CURED.\nMunyon’s Inhaler Relieves the Head, Throat and Lungs Almost\nInstantly, While Munyon’s Cold and Grip Cure Drives\nthe Disease from the System. +161 Get this Packege\nWhen You Call for It.\nAnd Don’t Be Defrauded\nby any Substitute\nThat Some Dealers\nTry to Sell You\nfor the Sake of\nthe Larger Profit! +162 Glassware Bargains. +163 Guns—Rifles—Revolvers\nM. A. TAPPAN & CO., +164 HANDY COBBLER. +165 HANDY COBBLER.\nA Complete Outfit +166 HAVE YOUR EYES TESTED.\nTHOMAS JEWELRY HOUSE. +167 HEALTH & BEAUTY.\nHEWITT’S SULPHUR TABLETS +168 HEALTH &BEAUTY.\nHEWITT’S SULPHUR TABLETS +169 HERCULES\nGAS AND GASOLINE\n…ENGINES…\nNOTED FOR…\nSIMPLICITY\nSTRENGTH\nECONOMY\nSUPERIOR WORK,\nMANSHIP…\nIN EVERY DETAIL. +170 HERCULES\nGAS AND GASOLINE\n…ENGINES…\nNOTED FOR…\nSIMPLICITY\nSTRENGTH\nECONOMY\nSUPERIOR WORK-\nMANSHIP…\nIN EVERY DETAIL +171 HERCULES\nGAS and\nGASOLINE\nENGINES\nNOTED FOR\nSIMPLICITY,\nSTRENGTH,\nECONOMY\nAND\nSUPERIOR\nWORKMANSHIP\nIn Every Detail. +172 HERCULES Gasoline Engines,\nHercules Gas Engine Works. +173 HIGH–GRADE\nMAKERS\nare offering as a regular\nequipment, without addi-\ntional cost to their buyers,\nCHRISTY Anatomical Saddles +174 HORSES, MULES, &c.\nFOR SALE,\nTWO FINE YOUNG MULES, +175 HORSES, MULES, &c.\nFOR SALE, A FIRST–CLASS\nCARRIAGE TEAM— +176 HORSES, MULES, &c.\nTWO WELL BROKE YOUNG\nMULKS FOR SALE. +177 HOUSEHOLD GEMS +178 Hardware and Stoves +179 Hat News for the Men +180 Have a Rambler?\nWE have secured the Agency for the famous RAMBLER\nBICYCLES and will be pleased to have you call and see the\nbeautiful sample now in stock. This machine is fitted with\nthe GEMUINE G. & J. Clincher tire. Give us the pleasure\nof showing you the superior features and points of construc-\ntion of thi Copper Rimmed Beauty.\nTHOMAS JEWELR HOUSE. +181 He Loves Me—? +182 Here’s an Oak\nChiffonier\n$4.65.\nCASH OR CREDIT.\nMAYER & PETTIT, +183 Hess wants\nyou to see\n—their "Russia"\ncalf shoes at $3.50\nand $4. Made on\nthe "Pear" toe in\nall the popular\nshades of tan. +184 Holbrook, Pierce & Wikes are\nbuying poultry every day in the\nyear exept Sundays. They want\n100,000 dozens. +185 Housekeeping\nBargains. +186 I Grow Hair On Bald Heads. +187 IF THE WORST SHOULD COME.\nSENATOR BLANK: "Mr. President, I rise—"\nTHE CHAIR: "Sit down"\nSENATOR BLANK: "But, Mr. President, I submit—"\nTHE CHAIR: "Shut up! You are a hoodlum! Go into the cloakroom and join\nyour fellow hoboes." +188 IF YOU WANT TO\nCATCH FISH +189 IMPORTED PERCHERON HORSE CONTROLEUR 10801 11230,\nProperty of S. J. MILLER, Kirksville, Mo. +190 IN THE VARY LATEST STYLE\nFINE LINE OF CHOICE ENGLISH AND AMERICAN GOOD\nFROM WHICH TO SELECT +191 INFLUENZA, +192 IT REQUIRES NO RUBBING.\nA COMMON–SENSE REMEDY\nFor all DISEASES of MAN or BEAST REQUIRING an EXTERNAL APPLICATION. +193 If reading tires your eyes\nyou need glasses. We give you\nexpert advice free.\nMcAllister & Feast,\nOPTICIANS,\n"1331" F St. +194 If you find the way +195 Ingersoll’s Famous\nGuaranteed Yan-\nkee Watch….94c +196 Insanity is the horrible deam of\nthe night perpetually present during\nthe day. Insanity in women is oft-\nener due to disease of the organs dis-\ntinctyl feminine than to any other cause. +197 Iowa Central Ry.\nH E ONLY LINE RUNNING\nSOLID VESTIBULED\nTRAINS TO\nSt. Paul and Minneapolis\nWITHOUT CHANGE\nTWO THROUGH TRAINS\nDAILY +198 Iowa Central Ry.\nTHE ONLY LINE RUNNING\nSOLID VESTIBULED\nTRAINS TO\nSt. Paul and Minneapolis\nWITHOUT CHANGE\nTWO THROUGH TRAINS\nDAILY +199 It Eclipses All +200 It Makes You Hungry\nPaine’s\nCelery Compound\nThe Best\nSpring Medicine. +201 It’s A Big Offer\nWE OFFER OUR HAND-\nTO THE LADIES OF ADAIR COUNTY\nGIVE THEM OUR HEART-\nTO GIVE THEM A FORTUNE\nYOU WONT REFUSE +202 JOHN ROBERTS\nPRACTICAL BOOT AND SHOE MAKER +203 JOHN ROBERTS,\nPRACTICAL BOOT AND SHOE MAKER +204 JOYFUL MANHOOD +205 Jolly Fat Frogs. +206 KENDALL’S SPAVIN CURE. +207 L. L. BERENS\nPractical Optician and\nWatchmaker\nAll Defects of the Vision Scientifi-\ncally Fitted.\n1629 Holley St., – New Whatcom. +208 L. L. BERENS,\nThe Only Exclusive Optician in the City +209 LACTATED FOOD\nBABIES CRY FOR IT.\nINVALIDS RELISH IT. +210 LIVERY, FEED\nAND\nSALE STABLE\nT. E. GRAVES\nPROPRIETOR,\nFIRST CLASS TEAMS AND\nVEHICLES. +211 LIVERY, FEED\nAND\nSALE STABLE.\nT. E. GRAVES;\nPROPRIETOR,\nFIRST CLASS TEAMS AND\nVEHICLES. +212 Locket.\nREGULARLY SET\nSale Price. $9.60 +213 Look into the men’s suit values Hechts\noffer at $10, $12.50 and $15. +214 MAKE YOUR FEET GLAD.\nSel’z Nu–Shu. +215 MARBLE\nAND\nGRANITE WORKS\nKIRKSVILLE, MO. +216 MASONIC NOTICE. +217 MOTHER AND SON BOTH CURED.\nTHE SON\nCURED OF\nGASTRIC CATTARH.\nTHE MOTHER\nCURED OF\nASTHMA. +218 MUNYON’S LIFE CHAMBER. +219 Made to Your Measure and Genuinely Tailored. +220 Magnificent Eastertide and Spring Opening of\nMILLINERY (Our New Department.)\nLadies’ Man=Tailored Suites===Gowns===Costumes, and Silk and Fine Wash Waists, +221 Many\nStubborn Case\nHAVE BEEN CURED\nBy the Pillow Inhaler\nAFTER ALL OTHER\nMEANS HAD FAILED.\n8 HOURS IN 24\nYOU SLEEP IN AN\nAIR THAT CURES. +222 Men’s Crash Suits.\nMen’s Serge Suits.\nMen’s Cheviot Suits. +223 Men’s Separate Pants. +224 Men’s Spring\nHats.\nFrom 6 to 10\nTonight, $1.23. +225 Men’s Spring Suits, $5.50 +226 Men’s Suits, $10. +227 Men’s very stylish\nWool Suits. Worth\n$10, for\n$6.95.\nMen’s handsomely\nmade Topcoats. Worth\n$8.50, for\n$5.50.\nMen’s fine extra qual-\nity Kersey Overcoats,\n$10.00. +228 Men’s winter suits, up to $15, for….$8.75\nThe second shipment of men’s\nsuits of the purchase made last\nweek has arrived and is now ready. +229 More Men’s Shoes at $1. +230 Mother’s Bread.\nTrade–mark Registered. +231 Mrs. McKinley’s Inaugural Ball Gown. +232 NEARER AND NEARER CAME THE STRANGER. +233 NEVER TOO LATE\nPRAMETURE OLD ACE MADE\nIMPOSSIBLE. +234 NORTHEAST MISSOURI STATE NORMAL SCHOOL. KIRKSVILLE, MO., +235 NOW, LADIES,\nHERE IS YOUR CHANCE,\nFor we have placed on sale\ntoday one lot of $1.48,\n$1.25 and $1 Laws Wrap-\npres for 69c. +236 Never Were Small\nLots of\nBoy’s Clothing\ncut as they have been\nfor tomorrow. +237 New York Weekly Tribune, +238 No other store offers so much value in\nchildren’s clothing as this\nChildren’s suits at $1.98\nand $2.98.\nChildren’s suits at $3.98\nand $4.98.\nEISMAN BROS.\nCOR. 7TH AND E +239 No use blaming the gas, when\nit is your eyes that need help.\nMcALLISTER & FEAST,\nOPTICIANS,\n"1311" F St. N. W. +240 Now\nIt’s a\nRocker Sale. +241 Now Comes a Saks Sale of Saks Suits. +242 OCULIST\nDR. J. MURRAY,\nOFFICE OVER UNION BANK\nKIRKSVILLE, MO. +243 OH, THE\nPAIN! +244 OLD FATHER TIME RECEIVES THE NEW YEAR. +245 ON THE WATCH +246 ONLY 100\nOF THESE\nWASH SKIRTS.\nToday’s price\nwill be ..... 68c. +247 OPTICAL illusions often deceive beholders, who are\ndeluded into the idea that an illusion is a reality. +248 OUR WHEELS are all right\nNothing Better.\nTHOMAS\nJewelry House. +249 Old\nPeople. +250 Old Bruin\nCONSUMER’S BREWING COMPANY. +251 One Week More.\nSterling Silver Nail Polishers, 50c. +252 One–Half Saved\nGold Dust cleans\neverything about the\nhouse better, with\nhalf the effort, in\nhalf the time and at\nhalf the cost of\nsoap or any other\ncleanser. +253 One–Half Saved.\nGold Dust cleans\neverything about the\nhouse better, with\nhalf the effort, in\nhalf the time and at\nhalf the cost of\nsoap or any other\ncleanser.\nTHE N. K. FAIRBANK COMPANY +254 Our CHEAP\nGrades All Sold.\nWILL MAKE THE FIGHT\nFROM THIS DATE\nON OUR\nVery Best Suits\nAND OVERCOATS +255 Our Great\nSweater Sale\n98c. +256 Out–talked often—out–done never.\nMid=winter Sale of Muslin Underwear. +257 PALLISTER’S "A No. 1."\nWARRANTED HAVANA FILLER. +258 PHYSICAL\nMANHOOD\n"THREE CLASSES OF MEN" +259 POSITIONS HELD WHEN THE HOERS SURRENDERED. +260 POST OFFICE DEPARTMENT BUILDING, WASHINGTON, D. C. +261 POULTRY AND EGGS. +262 POULTRY WANTED +263 POWER\nFOR\nPROFIT\nHercules Gas\nEngine Works\nHercules Special\n(2 1/2 actual horsepower)\nPrice, only $185. +264 PREMIUM NO. 3.—CHOPPING KNIFE. +265 PREMIUM NO. 7.\nTHE FAMOUS SERRATED BREAD KNIFE. +266 PRINCESS TEA\nFOR SALE BY\nPIERCE & WILKES +267 PRIZE WHITE LEGHORNS. +268 PROBLEM NO. 14\nBY C. H. A. New York.\nBLACK 6 PIECES.\nWHITE 7 PIECES.\nWhite mates in two moves. +269 PROBLEM NO. 27.\nBy Smothered Mate.\nBLACK 9 PIECES.\nWHITE 5 PIECES.\nWhite mates in two moves. +270 PROBLEM NO. 30.\nBy Dr. J. H. Graham, N. Y.\nBLACK S PIECES.\nWHITE 6 PIECES.\nWhite mates in two moves. +271 PROBLEM NO. 7.\nBy Prof. O. A. Brownson.\nBLACK 4 PIECES.\nWHITE 6 PIECES.\nWhite mates in two moves. +272 PROPOSED MINING BUILDING. +273 PROTECT YOUR EYES. +274 PUFF BOX, 97c\nSterling Silver Tops--\nGenuine Cut Glass Bowls +275 Pabst-Milwaukee\nBeer +276 Painless Extraction 25c.\nDR. PATTON, Dentist, +277 Photographing the Capitol. +278 Piano Value +279 Poland China Hogs\nPRAIRIE VALLEY HERD +280 Poultry And Eggs\nHIGHEST CASH PRICE\nAT ALL TIMES,\nFOR ALL THE\nPoultry and Eggs\nYOU HAVE TO SELL. +281 Public Sale Thursday, Sept. 12, 1895,\nI will sell at my farm 10 miles south of Kirksville and 2 miles southwest of Millard\n80 head of grade Hereford cattle. 30 head of horses and mules of all ages. +282 RAILROAD LINES. +283 RAMBLER\nBICYCLES…\nLadies’ and Gents;\nAll Sizes…All Weights\n$45, $55, $65, $85, $100 +284 RAMBLER\nBICYCLES…\nLadies’ and Gents’\nAll Sizes…All Weights\n$45, $55, $65, $85, $100\nFRED. T. MERRILL CYCLE CO. +285 RAVEN GLOSS\nSHOE DRESSING +286 REGISTERED JERSEY\nBULL CALF FOR SALE. +287 RENT ONLY $19 PER MONTH +288 RESCUE FOR WEAK MEN\nProf. Jules Laborde’s Wonderful French Preparation of\n"CALTHOS" that Restores Lost Manhood. +289 RESISTING AN ATTACK! +290 REVERSE ENGLISH.\nTHE AMERICAN DIPLOMACY IN CHINA. +291 RING UP PHONE 772\nFor Sewing Machine\nRENTING\n&\nREPAIRING.\nC. AUERBACH, 7 & H, Agency: +292 RINGLING BROS.\nWORLD’S\nGREATEST SHOWS\nRoyal Roman Hippodrome\nCaesar’s Triumphal Entry Into Rome +293 ROUTE OF THE PROCESSION. +294 RUBBER STAMPS,\nSEALS AND STENCILS,\nArthur Bamingarien +295 Ready for Business Again.\nThe Julius Lansburgh Furniture and Carpet Co., +296 Rents reducet to $18 per month.\nOnly Two Left. +297 Round Steak………………………….3 lbs 25c\nSirloin Steak…………………………..2 lbs 25c\nPorterhouse Steak……………….…….15c lb\nRoast Beef……………………..6, 8 and 10 c lb +298 SCENES IN THE ROBINSON CASE. +299 SERVING YOUR DESSERT\nTHOMAS JEWELRY HOUSE. +300 SHAVING\nSTAND\n$6.75 +301 SHE WROTE FROM VIENNA. +302 SHOES AND BOOTS +303 SICK\nHead-\nAches. +304 SIGHT IS PRICELESS.\nScience to Your Aid. +305 SILVER, GOLD AND COPPER\nDRY GOOD, CLOTHING, SHOE, LADIES CAPES, AND JACKETS. ETS., +306 SOLD EVERYWHERE\nGAIL BORDEN\nEAGLE BRAND\nCONDENSED MILK\nPURE MILK\nPERFECTLY PRESERVED +307 SQUARE QUAKER FOLDING, HOT AIR, and VAPOR BATH CABINET +308 STEAM AND\nGASOLINE\nENGINES +309 STEAM AND\nGASOLINE\nENGINES\nPORTABLE AND\nMARINE +310 Sale of exclusive shirt waists.\nHECHT AND COMPANY, +311 Sale of high–grade all–\nwool cheviot\nSuits\n$6.25 +312 Saturday's\nShoe–selling\nProgram. +313 Saturday;s\n69c.\n$2.00 and $3.00 Skirts,\n98c. +314 Save\nOn\nYour\n'Easter'\nShoes! +315 Say, Mr. Bike Rider, We Want You\nParticularly Trousers, +316 Solution to\nPROBLEM NO. 20.\nBy B and K, City.\nSOLUTIONS.\nPROBLEM NO. 20.\nB and K send us a solution to\nthe 16 queens puzzle which we ilustrate above with 16 pawns. It\nwill be seen that it presents a pe-\nculiarly symmetrical appearance. +317 Some Men Want the Earth. +318 Sore Eyes, Weak Eyes\nINFLAMED EYES, +319 Sore Eyes, Weak Eyes\nINFLAMED EYES.\nDR. JACKSON’S\nINDIAN EYE SALVE. +320 Special\nTailoring Offer. +321 Special Prices on\nParlor Suites,\nand on Credit.\nLANSBURGH’S FURNITURE COMPANY, +322 Special Values in\nChildren’s Easter Suits. +323 Special..44c\nThis light–weight Under kirt,\nmade of excellent quality striped\nlinen lawn, full width and length\nfinished with deep flounce and\nrows of heavy cording, gored at\nthe top on a perfect–fitting French\nyoke with draw string, all lengths.\nSPECIAL\nPRICE…. 44c. +324 Sterling Silver\nWatch, $2.59. +325 Sterling Silver Top\nPepper and Salt\nCellars, 20c +326 Swiftest, Strongest\nSaves Most and Lasts Longest\nRemington\nStandard Typewriter +327 THE\nINTERNATIONAL\nTYPEWRITER! +328 THE\nTRIO FEED MILL.\nCUTTER, GRINDER AND\nSHELLER\nWarranted to Give Satisfaction. +329 THE "GEM" TRICYCLE +330 THE BEST\nBLOOD\nPurifier\nAND TONIC\nFor Old and Young\nTO\nQUICKEN\nTHE Appetite,\nREMOVE THAT\nTired Feeling\nAnd Make the Weak Strong.\nAyer’s Sarsaparilla\nCures others, will cure you +331 THE CONGRESSIONAL BILL–POSTER\nCHAIRMAN DINGLEY—"Gol darn it, how can I make these two pieces match?" +332 THE DEMOCRATIC FLAG\nWAVES OVER VIRGINIA REDEEM-\nED, REGENERATED, AND\nDISENTHRALLED. +333 THE DOLLAR vs. THE MAN. +334 THE ERICKSON PATENT SQUIRREL BOMB +335 THE GREATEST\nCOAT and WRAP SALE +336 THE HARBOR OF SANTIAGO DE CUBA. +337 THE JEWEL\nWe are agents for this celebrat-\ned line of Gasoline stoves. The\nJewel Grand, Jewel Cabinet, and\nJewel Process can not be excelled.\nCall and see them. +338 THE MASSACHUSETTS, CAPTAIN G. F. J HIGGINSON. +339 THE MILLER ORGAN\nIS THE FINEST AND BEST +340 THE OREGON.\n"We’re Coming, Admiral." +341 THE POISON OF NICOTINE NEUTRALIZED\nHEALTH CIGARS +342 THE PURE-BRED JERSEY\nBULL\nPRINCE, +343 THE REASON.\nTHE MAN: "Why closed ?"\nTHE TRUST: "Because if you don’t vote right you can’t eat." +344 THE SANFORD REFELCTOR\nHOT–AIR FURNACE, +345 THE SANFORD REFLECTOR\nHOT–AIR FURNACE, +346 THE SCENE OF THE COMING BATTLE. +347 THE STAR FILTER. +348 THE STERLING CO.\nManufacturer of\nTHE STERLING PIANOS,\nFINISH and adaptability for stand-\ning in Tune have no equal.\nEvery Piano Warranted for Five Years\nSTERLIN ORGAN\nFactories, Derby, Conn. +349 THE TIMES DAILY WEATHER MAP. +350 THE TRIUMPH OF SCIENCE.\nCONSUMPTION CAN BE CURED IN ANY CLIMATE.\nA scene in The Slocum Laboratory, New York: The Discoverer demonstrating to Medical Men and Students the Value\nand Wonderful Curative Powers of his New Discoveries.\nNOTE—All readers of this paper can have Three Free Bottles of the Doctor’s New Discoveries, with complete directions,\nby sending their full address to Dr. Slocum’s Laboratory, 98 Pine street, New York City. +351 THE TURF.\nTHE GRANDEST\nRACE OF THE SEA-\nSON—STATE FAIR– +352 THE WANZER LAMP. +353 THE WEATHER TODAY. +354 THE delights of an evening spent around a well-lighted read-\ning table are not half understood. An illustrated magazine\nwith its wealth of illustrations, its stories of adventure and\nlove, its descriptions of travel which carry you to the remotest\nends of the earth, and its instructive articles for young and old—these\nare the first requisites for your own enjoyment and the entertainment\nand proper education of your children. +355 THEY PUMP\nEASILY\nA STEADY STREAM\nLOTS OF WATER\nWHAT MORE COULD YOU ASK. +356 THEY WASH THEIR CLOTHES\nWITH\nCLAIR\nETTE\nSOAP.\nThat’s where they get their style.\nMADE ONLY BY\nN. K. FAIRBANK & CO. ST. LOUIS. +357 THIS COAT, $1.48. +358 THIS WRAPPER 98c. +359 TIME REDUCED,\nREMEMBER THAT\nTHE GREAT ROCK ISLAND ROUTE\nRUNS THEIR\nPhillips Pullman Excursion Cars\nTO\nCalifornia\non their fast trains. Examine\ntime cards and see that we are\nnearly\nTWO HOURS\nquicker than any other route\nCHICAGO TO LOS ANGELES. +360 TIME REDUCED.\nREMEMBER THAT\nTHE GREAT ROCK ISLAND ROUTE\nRUNS THEIR\nPhillips Pullman Excursion Cars\nTO\nCalifornia\non their fast trains. Examine\ntime cards and see that we are\nnearly\nTWO HOURS\nQuicker than any other route\nCHICAGO TO LOS ANGELES. +361 TRUMPET CALLS. +362 TRY IT FREE\nCALTHOS\nThe Famous French Cure\nfor Weak Men. +363 Tabourettes. +364 Take it\nHIRES\nRootbeer +365 Tartar Came Fow;s\nPER PAIR $4.00\nPER TRIO $5.00\nEGS, Per setting $1.24 +366 Tartar Came Fowls +367 Test for Astigmatism. +368 The "Consol”, a $1.50 In-\ncandescent Lamp, 39c. +369 The Cleveland\nIt Pays to Buy the\nBest!\nThe Requisite Virtues of a Modern Bicycle are\nnot Measured by the Price.\nIt Pays to Ride the Best! +370 The Eye the Seat of the Soul\nExaminations\nAbsolutely\nFree\nOf\nCharge. +371 The First Sign of Spring\n(sarsaparilla, Juniper berries) +372 The Flower Dolls. +373 The Greatest Sale of\nSilverware Ever Held\nIn the United States. +374 The Hallwood Cash Register. +375 The Hallwood Cash Register.\nA Marvel of Mechanical SKill.\nHalwood Cash Register Office,\n1304 F STREET N. W. +376 The Leading "English Sparrow" Gun +377 The Lowery Mansion, at the Corner of Vermont Avenue and K. Street\nNorthwest, Which Has Been Leased for the Use of Curselias\nVanderbill, +378 The Onward March +379 The Regal Shoe, +380 The Saks Sale of Saks Suits +381 The Summons to School +382 The Weather Today. +383 The Wonder of the Age,\n$7.50 Baking Dish, $2.85. +384 The World’s\nGreatest\nPalmist,\nDr. C. L. Perin, +385 The bed represented by this\ncut is full size, white enameled,\nwith solid brass knobs. A bed\nthat usually sells for $5.50.\nThursday and Friday our price\nwill be\n$3.35.\nCASH OR CREDIT. +386 The man worked in an Ohio coal mine, and this Is the story he\ntold: +387 There’ll be a big\ncouch hurrah +388 There’s a saving of\nexactly $3.33 when you\npay $2.23 for this\nCHIFFONIER h e r e.\nFine rich oak, 5 draw-\ners, solidly made. Cash\nor Credit,\n$3.33 +389 This\nis the\nvery best\nSmoking\nTobacco\nmade.\nBlackwell’s Genuine\nBULL DURHAM +390 This Excellent\nWrapper Only, 69c. +391 This Fine Polished Oak Ladies’\nWriting Desk with drawer, usual\nprice $16. Our price Wednesday and\nThursday,\n$6.85 +392 This Handsome Kaftan Carriage, with\nadjustable parasol and brake…… $3.25 +393 This Skirt, 49c. +394 This Stylish Wrapper\nOnly 98c. +395 This Tea Gown\nonly….. $1.48 +396 This Top Coat +397 This Watch\nFREE +398 This Wraper\nReduced to $1.19. +399 This Wrapper, 98c. +400 This high–grade\nSolid Oak Leather\nseat Rocker, strong-\nly made and well\nfinished. Regular $4\nvalue—for\n$1.98. +401 This large oak, brace arm\ncane nest dinig–room Chair.\nCash or Credit………………89c +402 Three Big\nWrapper Bargains. +403 Toothache Suffering +404 Top\nCoats\nAt $10, $12,\n$15, $18, $20\nand $25. +405 Two Overcoat Snaps.\n$5.50\n$7.50\nTwo Suit Snaps.\n$8.50\n$6.50 +406 Umbrellas\nworth up to $10\nfor\n$2.98\nUmbrellas.\nMen’s and\nMisses’. +407 Unmatchable Specials.\n$3.75 Dresden Clocks, $1.09. +408 Unparalleled Prices\non Cuff Buttons. +409 VENTILATED SHOES. +410 Very Heave Oak Extension Table,\nwith pins finely carved.\n$4.25 +411 W. Berens and Sons’ Grandma’s Bread\nBEWARE OF IMITATIONS.\nGrandma’s Bread. +412 W. L. DOUGLAS\n$3.50 SHOE UNION MADE +413 WE GIVE\nPREMIUM\nSTAMPS +414 WE WILL TAKE YOU\nTo California\nCheaply, Quickly and Comfortably\nON THE\nPhillips Rock Island\nTourist Excursions +415 WEAR\nW. L. DOUGLAS\nSHOE $3.50\nBEST IN THE WORLD +416 WINE OF CARDUI TREATMENT\nOF\nFEMALE DISEASES +417 WONDER\nDoneghy Shoe Store\n$2.00 WONDER\nWears longer, fits better, looks neater than\nany $2.50 shoe in the market.\nexcept at the\nDoneghy\nSHOE STORE\nWESTSIDE +418 WONDER\nDoneghy Shoe Store\n$2.00 WONDER\nWears longer, fits better. looks neater than\nany $250 sho in the market.\nexcept at the\nDoneghy\nSHOE STORE\nWESTSIDE +419 Warm Underskirt. +420 Warner’s Safe Cure\nIN LARGE\nOR SMALL\nBOTTLES +421 Wash the Dishes Quickly!\nYou can if you\nuse Gold DUst.\nIt does most of\nthe work. It\nsaves time, mon-\ney and labor. +422 Wash the Dishes Quickly!\nYou can if you\nuse Gold Dust.\nIt does most of\nthe work. It\nsaves time, mon-\ney and labor.\nTHE N. K. FAIRBANK COMPANY +423 We Now Have Our Samples of\nOxford Vicunas,\nOuting Flannels,\nFancy Vestings &\nBlue Serges which\nrule extremely pop-\nular with up-to-\ndate dressers. We\nshow everything\nnew and stylish.\nChampagne, the Tailor. +424 We Sell Bicycles— +425 We hit it\njust right\n$10.\nThe Suits The Overcoats The Ulsters +426 Wheels\nIN\nYOUR\nHEAD +427 Where to Buy Clothing\nfor Boys===and Why? +428 Will Exhibit At\nBenson Sept 1.\nS. H. BARRETT’S\nNEW UNITED MONSTER\nRAILROAD SHOWS\nA CONSOLIDATED COLLOSAL CREATION +429 With summer comes the GASOLINE\nSTOVE demand. We’re elegantly pre-\npared. Here’s the finest two-burner\nstove, with splendid sheet iron\neven included. Cash or Credit, $3.98 +430 You ger our\nGUARAN-\nTEE FOR\n"FAST COL\nOR" when you\nbuy these splen-\ndid black and\nblue Kersey\nOvercoats—and\nyou get over-\ncoats that can’t\nbe improved\nupon in any\nway. Have silk\nvelvet collar—\nbody is lined\nwith worsted‚\nand yoke faced\nwith satin. Our price,\n$15. +431 You might just as well ride a\nhigh–grade bicycle as a cheap\nno–name, auction or bargain\ncounter affair. If you ride a\nSpalding Bicycle you can rest\nassured you will not feel\nashamed when asked the name\nof your wheel. We are selling\nnew 1896 models of the Spalding\nBicycle for $50; Women’s\nmodels, $60.\nA. G. Spalding & Bros.,\n1013 PENNA, AVE. +432 Your Bank Account +433 Your Face +434 Your next week’s washing\nwill look whiter, will be cleaner and will\nbe done with less labor if\n Clairette Soap\nis used. The clothes will smell sweater and\nwill last longer. CLAIRETTE SOAP is\npire, it cleans but does not injure the\nfabric. It does not roughen or chap the\nhands.\nMillions use it. Do You? +435 over\ntobacco ends\nin agreement\nthat the best\nis\nLORILLARD’S\nSENSATION\nCUT\nPLUG\nYou can smoke\nor chew it.\n2 ounces 5 cents diff --git a/test-B/in.tsv b/test-B/in.tsv new file mode 100644 index 0000000..1b14c22 --- /dev/null +++ b/test-B/in.tsv @@ -0,0 +1,435 @@ +1d78d21604bf3543512496005cad02d8.png 1895-07-19 +d2a0f47008619c1b6fa30266bb9ca5d6.png 1894-03-09 +531153628c8f80eb43a648f418702801.png 1900-02-14 +c033f9b4121c8819a6958fb087e290d0.png 1900-10-10 +5a43cd9f3f5d72bdfcd44e348dcf105b.png 1885-08-24 +6134662fb25f5fed8c5b19a2e70ffa7f.png 1894-04-06 +9e7749b9e5af10dc24c43d7f5a52028a.png 1894-10-18 +0f25bfa1500de4149aff84a0884c8484.png 1898-02-15 +02ea529c8b325fb87daa71ad83f05c3a.png 1888-03-02 +368c103bad1e2528668fd9763e4671a3.png 1884-03-29 +0aceb9893188c7dabd6131d081583acd.png 1898-07-20 +d8598552c76eaa93867f043bbd6ba68d.png 1896-01-02 +57638a35fd70113cba549de4f20e9ff4.png 1898-01-27 +b05780252c674d2bba41debd6285abd0.png 1898-01-05 +e77d7bf57c0d32042387b30917b43d08.png 1897-05-03 +cc8c8c553602378b3bbf559c8c6de326.png 1899-02-01 +a921f2e4edbae72af0673658f0b41a42.png 1894-10-26 +dd4f9c59ffb5cc0961e35b731890edcd.png 1899-06-02 +508c5584ac5d297e2ee69d1040e3833d.png 1890-04-11 +fefef30376e48a90ee2ce702c7bf6ed1.png 1897-10-25 +c6a62e492c59ddb2c8facf99d54cce55.png 1889-11-29 +cc1744d43a7b2a0a0869f9004a0685da.png 1900-04-10 +a1fd65ae0fe1f305102f4ef9d84f83d4.png 1894-12-14 +25264e1f07e2ce01aa668a2d40e2fd7c.png 1893-06-23 +6bd303a9232d3971836863d9f52950c1.png 1897-09-03 +0537c0a10766fcb26e89b200f6fd24fe.png 1900-04-06 +cfac68c4d0415900bbed13b070b55c21.png 1897-08-01 +9f55867d59b33e7cf97d5ac0fe6998d3.png 1897-06-19 +6d05962a218bc6d64a019b627f8ac196.png 1894-06-01 +fc6e1194675bf2181b991fb262b37962.png 1895-05-23 +65d756de17aad523e4f04de5af5b5563.png 1897-04-17 +f7e50748b237e5a0f32124be659369a7.png 1900-01-19 +d652ea72f5873f89ca398b7555921688.png 1896-02-27 +0db6561affe97f1b5cea32176f95498f.png 1897-11-09 +cb5b03d0b79d6a6f74afa15a0e25c287.png 1889-09-06 +165ac96100f90505cc9d8badc191a9c2.png 1898-08-26 +7f519b39eece6485b50b0569d3659289.png 1900-01-08 +dc38f159733883d161ab9d3852ecba00.png 1899-01-25 +501945962095922e3ec2c06c2897dc44.png 1898-05-27 +c0fa195ba6d55152bbf9a257fc29ca43.png 1899-03-13 +e3b59bf5956482bf2123110e2c5ed637.png 1897-05-20 +6ef367912b330c8d387ac96fbae745c2.png 1900-09-21 +9a7ea2ab4e4dccb14455eec810bd8a6d.png 1889-06-14 +ec53511067b5cec597ead7ab93a3cc91.png 1898-04-08 +0887f7aaa4cc9e4ba6f2ad124edff293.png 1898-05-07 +052bfca1602bd9a30c5543a810653573.png 1894-07-06 +ffe729001d670017712e73d584cf3aa7.png 1898-07-05 +0a64cf9ef23b4ac03d6b0c7881ecafab.png 1899-04-06 +25167d7504a8816e86a41b0095d54d4d.png 1898-06-27 +7e60af61cf7ae2c343b7ecd62267f05f.png 1900-02-05 +9cb5fc74055261a3784079928bf9c8fc.png 1900-04-16 +e84cf231a10e16545d693a1b75e96f04.png 1897-06-03 +9d2c66fadbd8ccf495ac12c4d9a5c303.png 1899-05-15 +965613a122d90210a96cdd98e60e8e55.png 1898-03-15 +fa90cfd468a50761dc368556b32fd595.png 1889-11-08 +c4cf6f8198e9f4b27a521286400690fb.png 1898-04-20 +ea3c4978d94dbd08e933be5446d15199.png 1898-06-23 +20d00f5b434aa6ee1121902c006f05c3.png 1897-01-04 +1c5633592756a6f1f3f0e4edf3a0ecdf.png 1894-01-19 +0255d85136815f8b0246d599315a21ec.png 1897-10-28 +9d0e5779d2f50d6b504875f2eb29d986.png 1889-10-25 +18e712a764035838eed17253141cd231.png 1882-10-10 +8782c53091a46e0b7f0dbb5dc421636c.png 1881-03-29 +1cf8bac93d7a1fea15332b30f5f5fd97.png 1897-06-03 +e6fe9d1eb0408975c6675986c0f3cf09.png 1897-05-26 +ae34c3e054d4e6b2772ee80ca619efc7.png 1900-09-13 +cfca3f858a393902f6f6d4936c122d7d.png 1894-03-02 +ba8e076b173cbb6882da2a12da987dbe.png 1898-04-27 +8af376429a0a45323a63a92f603e310d.png 1883-12-11 +b769f1c3990b41fb722260cba75475a7.png 1899-01-18 +4496d873988165e25190e80b47cf684c.png 1897-03-09 +1703b1af05218328721828b28c95a0b4.png 1900-10-05 +3ae0966a716d2e0d7cb53da36b30887e.png 1897-08-20 +bff268b6d024353f4f8cbf98e43edbc2.png 1900-10-19 +5723b46bf94d3fb0df880837d5bc0450.png 1899-01-13 +4a713d9ea03c62c242c77decbaa2eac3.png 1897-07-27 +fc047d9b296ae3e21b89896dd47a4e4d.png 1899-06-14 +d0492ae6c78148a730c4566d6ab3c279.png 1900-01-31 +ea20a1902839bae33ebda3c67dec89f7.png 1889-05-31 +2f6253f352d6db84664e632289ef7c93.png 1898-01-01 +a4c544c5e21b2cd860d7f1e0f555420c.png 1888-07-27 +fbd95c3373233168aa4b10f9278ae150.png 1899-01-19 +c20c08a00109ef4ffec4ee436924fbc2.png 1898-08-10 +b88c68e36b1df1b788fad6efa9b8f665.png 1899-03-21 +20f9c15952f3334448216340dd90a091.png 1899-03-31 +f70033ce0adaa20735724dee93cc0d2a.png 1900-11-05 +aba19f647c30788fe72595145b56f6da.png 1893-12-08 +9d7af128e35d9009ad3f7034bb93a0ba.png 1899-06-05 +d4f278621d7adf4376abb7fa19a8f423.png 1899-02-06 +7a11814cecd9737e4560c8c183431629.png 1894-12-07 +19a627677f41c709440d4f983c3fbadc.png 1897-12-23 +03aab9837854ac1a457802c6c7c2aad5.png 1890-11-14 +9d550e94ad6c73f00e09ec923599fc37.png 1894-03-30 +9363872be79179977df64fc99bc5d924.png 1900-04-09 +ab25f0ed6eb76b7ac4363a22e1f8899a.png 1897-07-28 +522ab240b886ec23c5e40f9cd7e5dafb.png 1896-06-26 +10179be6842dceec3eb219bcda465430.png 1889-10-04 +50e46ef8b2a2e95b22c4e286e1c49cf1.png 1899-06-23 +c93d567e6201611b1d14ca52cd7d2d53.png 1897-05-28 +15228d4ca4fa96a3cc20db8010292531.png 1898-02-02 +934c40c9eccefea9eca35d9d1a99b2ac.png 1897-06-18 +efd2991f335d702849acff79e6091c43.png 1898-08-12 +1a152816afe0351ae8f65681ae93bafa.png 1897-04-29 +519da046e8a8d76e509c1f25b198baa0.png 1900-03-16 +a6a955728123defb03447a0d770b9b03.png 1899-05-06 +fed873f7be65f1e428eb98c1d89e9e61.png 1899-02-20 +ee19068b87a6753abe8e981237416c01.png 1897-09-21 +21e4ff945d2ddfbcce46255fb61d8640.png 1897-01-09 +2fb5a032e57566107112eae35587c08e.png 1900-04-20 +ffda1424b9fac9688e4ad3edf38ecafa.png 1897-08-26 +d91a952ddb220202ef7b2d6d8bc8941b.png 1898-03-19 +edc747a64afaec7001a6ea1b31edd4fb.png 1889-05-10 +af3559387e6eecbd0ecfa7586f949e73.png 1899-04-25 +84cf0c3ee6db057ff990bf1835e8cc77.png 1888-03-30 +d330b4dc8f9c39933674af9db3d7a16f.png 1900-10-27 +6838965bd95e56846ece5718bdcdcd87.png 1898-12-15 +cb8243079cee2b1d088e136c7449c07e.png 1900-08-20 +be27d839a85a41db8f9afb87550109f9.png 1898-02-18 +923eef7f20329e6dae05b5a00085d0db.png 1900-03-20 +021cbb34f51086168f1310373162bc49.png 1897-11-05 +3d21edffd3c542abedc43479093b51fb.png 1898-12-14 +46df9b464452f398569087d346969b02.png 1896-07-02 +bdb5d817ce4d4220738db9370e18c31a.png 1900-03-22 +d33b7b2afb64b84f89acf0cc2563d65e.png 1890-02-07 +2ac07c6b5f9a4fc0d410129aa0ad4bda.png 1895-10-11 +0572b8ec5b814618a8aa38483d22edc0.png 1895-01-24 +1eea5461c06cbfee613487f446a06f8e.png 1895-11-28 +99b3c41ac88f420705507064dd607c6a.png 1898-07-21 +1de3f01ed84858e7c6a75c6a32bfaaee.png 1900-11-06 +c224e86320349ac3e6a3a032963e5752.png 1899-03-24 +3bb5d18becff7eedbfc0bb2be4d9f37c.png 1890-05-02 +3cf4a89eeaa4fdb6be80adc4b3de5156.png 1890-09-26 +fc569135cade6391b8cdf212c31a1264.png 1897-09-11 +c443512e4126605265aa035100b59881.png 1900-03-09 +6be0610d18b151bbfd8ba7cd4f96fbc1.png 1893-09-29 +c8ce0b99701a3dfbbffabef5ca9ed20d.png 1896-04-09 +dbdd0f085a15564756ef9f4e56188b80.png 1898-03-14 +0251d8459ff30bd6f072ec95d0056570.png 1900-01-22 +4e36a65a2c5ed39862f92c1cfd17e739.png 1898-02-10 +882b7e3ec1d881e45687e6a26b82eca2.png 1897-09-23 +3e4a5499ecb52c160cf0dfb43104d27d.png 1883-05-16 +ff81688eea88aebaa88aae48a1aeb69c.png 1899-06-08 +cf70801486e517b3823ae3bd2d210e1b.png 1896-01-10 +343a027d70f356bc08918467abf5ad5b.png 1883-11-08 +af44c8f2737b7ff7fa0c8495d7cd5d15.png 1895-12-19 +796670f42cd249bc4dfb3d5af67d5637.png 1899-09-21 +4ea420973e68996cd47f6a2c966cd6b7.png 1888-05-18 +935ae9ca11090bce520e82a9764a9ec7.png 1900-10-02 +a35a81ad8bb6c65c2426f789480e110b.png 1889-09-13 +d3fe93cce9370e5b18d0b8a49a446633.png 1889-10-11 +6156a05cc8f4cb3f5a48343e67394784.png 1896-06-04 +5bead8776428072aa2c9342eee0ee037.png 1895-10-17 +15d874572a781832f3c1e525cb5230a0.png 1897-06-02 +6737ec13c7379c27cad194b7844284d3.png 1897-07-14 +df404998d533300d7132bf1bf2a4df19.png 1897-09-01 +2d4f80e71de0edfb16778bd66316ee39.png 1898-01-31 +b1e4abdfcb3c130cced4398f256f54d5.png 1900-03-30 +2b042109343033693e5af152552c4321.png 1900-10-31 +9c631af461150731c43bdf0704b8f963.png 1900-09-01 +5fd8f5edf58d68925a7bfbb12e5749f7.png 1900-09-24 +450945cd72c6170a102e93aad3ab8bc0.png 1898-05-13 +fb686e78f2d350c46842fa56861eca4d.png 1895-07-25 +0c9dfffaefa6d2f01f55849a0e7e03b6.png 1888-09-21 +3e417eeb0c6184d80d1056c44e6eff05.png 1889-01-04 +4f7cc6eb714531ff2ea4bec0ba2fc609.png 1897-02-27 +47e6745c77c4464ad5b38253f80695c5.png 1899-02-24 +66ba76eb9c450e14f350ceb8ef880520.png 1897-08-04 +763a84b63d483c26c22e19bf7e39db6f.png 1899-06-17 +8137ae5c705b279866f431f85dc44f7e.png 1898-07-01 +b8c1779a44039d7e1e92c47bba0cc0cd.png 1898-02-25 +68a1cb233615ba5b15483950c8a0b98f.png 1897-07-02 +b9e6d696be11336c5ba15287f9ee7d9e.png 1889-04-05 +67e3b5e8a8c4b1062a16a87068fae52c.png 1898-04-11 +fb6df9f81bbe674d193b2045ea4378a2.png 1897-03-30 +f4ff6b875efc5cb418aaed5844adaefa.png 1899-05-23 +197e48ed650e462efccc660ca5bc6124.png 1895-04-19 +e59b75ddc30f768359d8c46ad73d8262.png 1899-06-24 +3a80b2743e147138eeff6f7086a4164c.png 1898-03-03 +3bbab19bb50308459e59e0613cf113e2.png 1897-06-22 +82a92fbb7150843c4afd173983ca8d16.png 1898-08-17 +bd95ea508140c63d38788c72b1d8f159.png 1895-09-26 +b78c4faed309d882caf3961cd45131ef.png 1896-03-12 +b43282bb4dd9b4fac699174e28d9e80f.png 1894-05-04 +de2a6dc3bab2da8a9e2114a626780b8f.png 1883-07-01 +bfd98926e83d354a9128d61e4f41ded1.png 1893-07-14 +c55a8c01c57851eea1630e95751d26ea.png 1900-10-13 +b16b5785eac2bf8c0ac8b6f8ba577a84.png 1895-08-30 +9a9665edd3e5d2e0b569afed24fc179e.png 1895-05-16 +51e7a95a8caa1ca8868c1b7489dd588c.png 1897-05-13 +bfc60ff6ea9a5e4a67c65821d19801b2.png 1897-08-19 +f3000a13a94a2ea003c7d7ff5f5ee594.png 1895-09-05 +da53b6c79f2e5ae5975244bf97bae298.png 1894-11-08 +53762e23af9ef775bfd841224ff86fee.png 1897-01-07 +c77a41f35d1a39cc3b0c4fed366b4564.png 1893-05-26 +afac327e177195b9ab5a221a11f10541.png 1899-05-10 +8b90199590d872c140c5eae24ae3f03e.png 1897-11-11 +45c28d487625ff85cc791ba3daf8acb0.png 1889-06-07 +e1d2ec59373c95cfc58108671a7b4d0c.png 1900-04-03 +01f63b76c8e4e5b6b54a49befc3b7455.png 1899-04-12 +2fe554b859213446614e2552688a8573.png 1893-12-22 +8c263411d571e075088e2933b709dfd3.png 1897-06-25 +f96d671cd07ccd8ba24b28b88ebf55c3.png 1880-11-26 +d18f2832e2e660f62e45465d01e084d0.png 1898-04-21 +3264a67ec295cf65e369e6befbee03e8.png 1885-08-05 +7e748f5c5950c76469b0c45bfc6033d8.png 1896-11-13 +e68f89e6ce981e3f343c8ad38adbbb90.png 1893-09-01 +488ccd27b10c2bfe7753814d629903d5.png 1894-04-27 +b5b468f886ddf181d418f17998bffa8c.png 1888-12-28 +d9f48fff556f23315575c716b804b9f9.png 1899-04-14 +b2cce1c47618493eb1a573789e579b98.png 1885-03-21 +09008967926f856bde158f8029e47713.png 1897-02-11 +a83b0ce55dcdf684f9299d3c7cd04111.png 1899-04-08 +d607481ff682d9f3b428228c67c0d6c7.png 1900-03-21 +8d80cbbd971e92466022c9998de91751.png 1882-12-31 +fba53fb9d02bfbbd76247cf20f99fc9e.png 1900-01-01 +2246477631acfe4a717f1d2b277cbf49.png 1899-03-27 +2a5017348c7f2556e4ba9d4512e00c2e.png 1893-03-10 +1ac5da1aef5ef9315dbb290805175092.png 1897-02-22 +528944e833711342c8e34baf56b9b8ba.png 1896-05-08 +eb94f81953a5de87df2f7cec0ee68b17.png 1899-12-10 +7a2f8ddd3d78ecc8472c0ab4c10829d4.png 1894-06-29 +769913838d55ce53c6a622ff90e43a19.png 1897-11-18 +b0abc66a6d08c1daf5261e269c40b83f.png 1898-06-06 +11b429e533dffc610f14078b4332a4fc.png 1897-01-29 +39a06ca05fe20996dbe910879ea263e3.png 1897-03-04 +18703991fef6ed72a43c4280b71dc27f.png 1897-04-15 +a94b0bddb18be52da05b502b740155b1.png 1900-09-20 +f898b9d1360e527a3d012bf3974dc985.png 1896-11-27 +f18b34ef90e4d6813604105c6ece3233.png 1895-12-26 +aab4d6e9d63c80b05565321dba9bf077.png 1899-04-28 +5de7aae5fed8243472962f904ff5cb27.png 1898-07-04 +b09de8189fd5a6825d36dbbd1d8f9259.png 1899-06-20 +a164932312b404f57c13a87474974196.png 1899-02-14 +129a2ea58cea52676a25f100f21e8682.png 1897-02-05 +d7a0b4c59a9473bd3fcbd9e086d87352.png 1897-03-11 +4bd940c4681586d534e376f41ab744df.png 1900-02-27 +9e5f458a7924a1a6751c19ab28884d42.png 1881-03-25 +ebc68edb123db33f1a5d71efca2f5566.png 1898-01-22 +70f16599efcb176c5b5711f4d338c5f6.png 1893-10-13 +9c896c9ec6b5d09aae1918c28f31308d.png 1896-07-09 +8d6c6f73520188feba16e5136100c1df.png 1898-01-04 +0452e3fc8c7111fd9db7963f2ca814a6.png 1900-09-27 +6d0d62977efb11c1e1c09d8154a9b014.png 1888-02-10 +737236d2293f7b7e26253300f54f1d1c.png 1897-06-01 +c699655122d529831ce5ad9b7439370a.png 1900-02-03 +b7cd733071743391a4ee5d953e6facbc.png 1899-11-01 +8291856becbac8c2d3f88d7e8ee67479.png 1898-03-04 +4a69fdcb96c1077446953461939447fe.png 1900-09-17 +afa82592ecb903853a5167800410e077.png 1897-01-12 +66c2c2cc60e8691039f7fdeb231a5daf.png 1897-08-31 +4accd29030e988f299b7631d7c53e014.png 1896-03-26 +84cd965e7d9f7e0da2613ab86239815e.png 1900-02-16 +4eb84fd9056650499cc11d753f167a3d.png 1881-04-22 +9b0a7f3806d117ea501cbf4f6926633e.png 1888-06-08 +b0e420fdf22f6a2d59ba53d209455bea.png 1897-09-30 +dda59bea34642c719379d4a62b0a7829.png 1888-02-17 +571bf7671fa0e963e26d3497f1dadfb6.png 1897-01-14 +31a3ba9e49b2316a44804f9b11841a74.png 1895-04-18 +39a13c73cd71a632e8cbd950dbafc49d.png 1898-06-10 +2bac90d5b2c443e02ac0aae6ff78ce7e.png 1898-01-20 +853effc65a6655d179f5cf1d756df1f2.png 1897-09-30 +eb2bf822c74445cf1332daddfd20490a.png 1898-06-15 +bfb52adb3be16520bd23ddedce6f8093.png 1899-03-17 +f5a3244a2763e913edfcd90ca6b846e5.png 1897-07-22 +33c0f615857f9c89878892da4bb5e5c5.png 1899-01-02 +6edf846a2588e4774f819274ae35854f.png 1897-09-15 +8247e11b209121d9b0bfaa2648d03df7.png 1897-09-04 +9e955b9ab75ae63456aa2b59c6700131.png 1900-08-06 +ebcd278e389bf5774b28685d316c0491.png 1898-12-19 +77a6d465a779c2668304b65b8f9ab776.png 1898-05-25 +558e02d21a1cd8927008665e09cc8f7c.png 1897-06-14 +cc58ad42e60a6fcc8933cac0b0f8c520.png 1889-01-11 +254dd2cd4faeb84e4b3f01d6ee208573.png 1897-03-02 +393624b2c3994c85d154fd8d1afd2443.png 1897-04-24 +0b8575c4f1877db3d45ca3a8eb7542c8.png 1898-02-03 +5ae5ada143d5e81d38b7bde4de71cabd.png 1890-10-03 +5a2a21067fd13cab354557bb7aac0889.png 1895-09-13 +eea4c2aa99bc1b84ef215e188f261a76.png 1896-08-06 +d30c4914ccc4c71ef3ed8f9ec31ef3eb.png 1897-01-28 +f8dfc0229d942beb8d4a6ebcd2c8128b.png 1900-09-25 +8f1a1834b335432fcb041e9ed0d1f1a8.png 1900-03-29 +a60afa238f4ba6ec31bf116b054f42c1.png 1894-01-26 +eaee88456ca9377e9f8995428a0a6e3a.png 1899-03-09 +93a1ec7a8dc8c4e25939df781700c260.png 1897-04-29 +35ed452eefa905b7ffdd3269675899b3.png 1900-11-01 +1bf3966274ceea873e3b569bae9308a9.png 1898-07-11 +3c8cc31567c5f23200e5a94e1ef8475e.png 1899-04-19 +cce7b7ae2587bb5fb4237f3cdc112f27.png 1882-05-28 +fd8f8ec4a5a2b66a639951f5cd910f1d.png 1898-02-11 +349b075a14a3e9e241434f53f2cd1d3a.png 1890-01-10 +c946a846052de913988c53aa2036b4a2.png 1898-12-23 +c2a95fd2de08c1b7a3d0800efba46fac.png 1900-01-04 +f4afc42167edf88ebcd244e24e042000.png 1893-01-20 +9451a98439c18c202afd7cdb9aef6d08.png 1897-03-08 +673d8c2f7e56691638ab9e5b2ae75ce0.png 1888-03-09 +d7c18b04b6bd107be40b01b394f1165f.png 1897-08-02 +1d37df97fdd0f6b5d00e987e4daa430a.png 1898-02-17 +2a6cacbcd86560ec6093c66410a77285.png 1897-10-21 +94b2f0e1da1bd8209ca638c14dfdabca.png 1897-05-31 +2b7171f7c470e142c0f903636956a278.png 1899-10-05 +6457a1568f39360c93a119cf9741d3c6.png 1897-01-15 +bdf6c8a7d81583300eb1c0ce826ee70b.png 1897-04-09 +7263a64f2fb7467fa50be8e834283d9a.png 1888-11-30 +e0f946dc39b898feff2306bafa106429.png 1893-08-04 +84ab7d404a8af63772c29d0ef9815cec.png 1894-11-22 +70542147ab39d1fd1c2a1ccd0c5eee1d.png 1898-01-06 +89ffea5b2fe2e30e8c0a63275091d1cd.png 1899-04-13 +919c6cd4cf3421c3c5b6b615d8b4f2b5.png 1899-12-22 +5c286586a1efe669eb37b36c13c832a5.png 1898-01-07 +113036c48f89725f7f2a769bd5a1727c.png 1895-04-12 +5f3f6363d692ac4dd2f584c1a254066a.png 1900-01-02 +cb15042cf0dc5d1a5ef81988351d6f56.png 1900-02-06 +bc768feaceaa5b4cc7719682a0e9f371.png 1897-02-15 +2f43cc28e19be9e125633b10737455ef.png 1897-06-04 +1da723647e1c1c16b181547fec9f6d23.png 1900-04-02 +d6b107bc71ec96ed18014e6204df3dec.png 1894-03-23 +0d7407a2157cc726fdeb490f6a4cc963.png 1897-02-11 +749bdc44d138d99e18969fd748c8cb78.png 1898-05-28 +6489e369e29210cbcf5c1ab7b1ea06ac.png 1894-05-18 +ba7d63ee0daaded7383fd47dc6ecd01d.png 1899-03-03 +314d9033f5d1df169f4523b5020bf8f0.png 1896-05-29 +b2925fd5dc6d14fad465d05f7e0d7368.png 1897-04-27 +e87aa166c4ce6759f0e6f37d9fb725c7.png 1889-03-08 +c45fd7ca39385e6d3fcda6fcf9fba536.png 1896-10-30 +b0b63def428d88471c235dc8411b09e1.png 1900-04-04 +c496d91b95d3588f96bc79d4cbe1ecf8.png 1898-08-01 +2bcd11abf8f6af88611798ee77ed14fd.png 1889-03-01 +7316b0a124f022ad26685d9f1047a66f.png 1890-08-15 +4fad76c757749d96cb13c3349c82d914.png 1899-01-06 +d820d62e9fd81caced6506787c928289.png 1899-04-10 +0217b6c670578dd3ca2c885123899e41.png 1889-09-20 +23f0a2bf0e9073a5600cf61bd1b1b322.png 1897-09-16 +b22b03e4c2e5c8d620893acd4e8b666a.png 1893-01-06 +1f3589b72e8140f5c9e9b7757c871506.png 1896-10-22 +8c67029983460f0e8a8b09de976f7e2b.png 1897-02-09 +f2ef3e7a046b06bd83a4a6623cab0655.png 1895-12-13 +d4f97334a33c92f6a729c6d5e96c017e.png 1897-04-30 +b08f502588fe796fe0628e372a750926.png 1893-05-05 +3591e09e43d8141cb084920edf9e7b33.png 1896-12-18 +542142e9224ad295112a0082811598de.png 1898-03-02 +99a62f52fbbf8645b032f82c0cd0de67.png 1898-06-22 +3bccacb55e3e30bc79a75868ce2a76ef.png 1897-03-06 +168bdfed4f1cf4358527facc7b2f57c1.png 1896-09-11 +beffbd615561fe7932ba0b1d0061a4e8.png 1897-07-22 +5c2993aa52c121be4c6e6918948b2163.png 1899-02-08 +385a87885afcef7e0c6255078f82bc2f.png 1897-03-18 +feec5d0935d9cf4c0a3ec6332f953d49.png 1897-01-22 +66637566887cd8f106fdac8b7d26e7e5.png 1900-09-28 +fb32b49af67a347fc2c1dbeb6f2c3d1a.png 1898-02-07 +812ad583544ff2703baf5d5b07af0798.png 1894-07-05 +7cb7e42e045450f830a90a65b6bccd04.png 1900-02-23 +4aec5167313427c5077c0fad0ae434c1.png 1896-02-21 +949a753d6ea7b9873535154483718529.png 1890-08-22 +25b8df7c08473af767c43a740b4edbb7.png 1898-06-17 +13837d40f662da07d9939fa25994527f.png 1896-04-23 +95de766a9bb6714ae6fe4aab7f7875fe.png 1888-08-17 +ba53ecbb741ab9402aa4911c0d7e5fd8.png 1898-08-20 +ce43c9eeef5412ff83b969c9b4707722.png 1893-10-06 +692427b1be53350a84350f9db99521cb.png 1898-03-08 +29cc8dc8429c8d9f7ff04db3a7f78c3e.png 1898-08-18 +c1648d2b66bf0529362d3f3bf867b49b.png 1897-06-28 +ed405e9589a609e0c04a3ae3dba92de6.png 1890-12-26 +2cf93fa226d1d71776700c69831315ab.png 1898-12-21 +bdd276554b7383aef5a63ea4a552d1d1.png 1900-10-26 +d9ed7e9b1a186adc83b1d77b34ab2d64.png 1890-01-31 +ea57aa58becee38032b314904f550c05.png 1899-04-05 +2f7b2c44b2883b783e4291cfde4132c0.png 1897-07-01 +24c4a804f92a24090435e593ebd4b368.png 1900-04-16 +3a284704b6917e66742c25f2b7177c52.png 1900-04-18 +e4dbd203c4ece7a3826221a754f903b7.png 1900-08-29 +1bffc282140c893888ae474f69ce1e1f.png 1897-05-12 +738af3c5c00338a03145f4fd2435c916.png 1899-04-03 +5d2039fba4f44fad53654a27d52068c5.png 1899-08-30 +ccba5885cc15d2ebdd27f4975f4ed32d.png 1897-05-25 +b177b854b7b30e2eda41043c42399496.png 1900-10-06 +6e92a5a6a125561adbfcd58b14ac556b.png 1900-04-12 +4394a34ebb982e70196982da27336a24.png 1897-03-29 +4abe4e6f75d17a8eeebd31b178000e6e.png 1898-08-22 +2272729d1edf5e59ae3678e1b01a3414.png 1900-02-07 +2e35ba91ff0e43c5d08c8c55e6be5095.png 1890-08-08 +9fc58c0ccbfe3b53f8c71fe97e8241a6.png 1897-04-01 +90dcc18f53ffa76cc5760212c84af9b9.png 1893-06-16 +5e44ab1451f94de3e864ce05607f029e.png 1897-07-31 +4f61d9f068e65db2f4e80cf5c3876450.png 1895-10-10 +233d6f643fa4e223add5a3cf771c888c.png 1889-06-28 +d05f103d98829af1029f8eaf2773c1a5.png 1899-03-23 +ac26c34c331d11041ec0323d8934a0f9.png 1897-03-11 +82c9a7b42201f16ae0dee4bbcfd14be5.png 1890-07-04 +95711c79c29eeb808bdd78a9ef9341d0.png 1897-07-19 +00a65da32053a633e024b77fc9f9ba3e.png 1896-06-05 +6ce46c0962343efd39ccf2b6a46fb3d2.png 1900-01-12 +42715fb2879592c74749a9df3caf7bbe.png 1897-01-08 +27b3acd979055bd052452d3168dcdc88.png 1898-02-14 +a14e187cf6c49cfc8a52a4ca27e213fb.png 1896-04-24 +7429cc7fbfb636ebb06c956279eff707.png 1888-04-13 +7a08b888b34e6ae17931cdcb446c1c08.png 1897-11-10 +bc69840e45fae12fab971b46cc09bd25.png 1894-04-13 +614e94ae4621135b795f1b85caa48079.png 1897-11-02 +de486f5ddf6696447ff5956e4dd50c8c.png 1889-05-24 +57f0cf8327745a9a4e2fee229a0a247e.png 1895-10-25 +705ecf822edc534ec42dbb5150dd2166.png 1900-03-20 +b21b4f5cbeeef717830109f40b6e6462.png 1899-07-19 +c7533dfde1cc599918b59fb982574da4.png 1897-09-08 +e0c83dbec67476b54c4f1c8e0adde360.png 1900-03-01 +bd1ad168e93ad07f0e58957445ef202f.png 1900-03-12 +f3cadbc38d64c15060955c770c03231f.png 1893-05-19 +6d505402b486908f93cf29dc6b9f9ef5.png 1900-04-07 +137d18c0783de593acb64e0e6cdd8182.png 1900-01-10 +57e83531289b2f5aa2e2b3abf4b827f5.png 1890-07-18 +26d78fa55d64ed2e73d56416743339a1.png 1885-07-20 +c136732576d54a125554e0ec38caab00.png 1899-05-08 +33da9fa1862afb173452276fa9477f4d.png 1898-06-03 +a56ab3878dd523cd80fb76f8e8c0f580.png 1900-02-28 +aa00221d562acb3ac04c02b00d8bd60f.png 1880-12-29 +e95f2edf1ac8bf4f3a473c5013e8b2fd.png 1888-09-07 +7135732212937d07d8067eddae240a77.png 1898-02-26 +02924174a1d5201f022b002531c1d0fa.png 1889-03-29 +080b05b0deff0a04015e226c6b487577.png 1893-12-15 +adf5b835d0c714440e3149c2231ec4c7.png 1899-04-24 +91189f6b1170e18f42f742c51c5616d5.png 1899-07-20 +cb84588ca383505cd8875f3802478902.png 1895-02-01 +fd60a3d039cca0b7709cbd530aba21f4.png 1898-06-20 +e560203e5025af11e57d0966d49d6938.png 1900-09-12 +9b38bcd65fdb591982a0ec2964f8c2e0.png 1897-11-06 +b93de082690dae7115c3be9bb5917326.png 1899-02-27 +aac0e2a8e52b732336874aa12ac5c9f7.png 1897-05-14 +ed410d9e936304c3ca22ed9e492405bb.png 1896-03-05 +dfd7332b07818cca73f08cdeba942c49.png 1889-07-19 +96de06f5d928385df87d31069a36ff36.png 1890-10-10 +cedac606706e4aa9a6eaf7f547851a77.png 1890-08-01 +f9697bffeeeb29d74cf50c06ab1e2de8.png 1899-01-31 +ec278c79680099db88874835fa61b06d.png 1893-04-21 +bdf9c18e17921231a87d1f1c2191b2eb.png 1897-03-20 +bc50aec007dc06a2a519b945ead87c20.png 1898-02-23 +e2cb91bcf31117c3956bb08501f5c2b2.png 1893-06-02 diff --git a/test-B/out.tsv b/test-B/out.tsv new file mode 100644 index 0000000..36c9407 --- /dev/null +++ b/test-B/out.tsv @@ -0,0 +1,435 @@ +370 318 247 166 367 319 239 132 95 208 242 304 103 207 193 1 237 232 273 90 190 31 433 79 192 161 196 163 64 384 301 297 112 50 340 386 331 114 216 78 347 144 291 159 128 365 411 295 338 294 201 363 362 397 194 191 28 39 113 206 203 430 366 170 74 310 334 387 343 315 93 415 73 181 141 354 169 240 230 100 220 119 332 313 351 123 235 187 378 306 352 59 199 258 195 131 305 412 350 47 75 218 426 20 9 317 115 142 413 57 324 427 46 86 376 256 118 245 292 431 303 10 282 70 202 154 167 168 209 106 349 121 101 177 275 236 424 249 26 130 264 298 43 99 214 276 97 137 53 379 7 56 197 373 133 398 341 84 124 105 253 330 233 40 243 52 61 32 403 62 432 60 380 94 82 428 16 284 147 140 139 248 120 359 360 24 326 414 111 257 34 221 312 251 217 157 262 88 41 63 323 265 125 420 393 321 89 356 288 188 231 179 346 272 394 213 71 55 345 211 396 244 358 250 407 210 87 85 261 241 212 198 308 364 45 162 219 184 361 51 283 421 81 268 435 8 422 156 204 116 404 342 371 267 117 259 254 175 266 419 333 158 434 126 287 399 285 381 353 382 150 252 145 281 58 417 149 416 110 98 30 339 38 37 271 289 408 423 200 383 368 327 406 134 405 178 223 348 316 222 229 309 277 155 2 21 14 234 329 278 96 185 44 385 77 69 148 409 171 189 344 290 274 280 129 22 42 143 238 35 299 65 83 389 173 127 260 293 418 395 174 270 152 255 279 186 374 33 109 335 146 296 227 67 164 151 68 320 226 325 6 160 225 102 355 425 215 172 401 246 92 153 269 176 372 13 311 5 357 66 328 390 76 183 12 302 23 25 3 165 138 108 36 136 48 307 336 224 11 135 27 377 314 72 122 80 205 182 228 180 402 18 322 369 375 286 29 410 4 337 104 429 107 17 263 300 388 391 91 54 392 49 19 15 400 +220 39 266 51 82 237 109 310 231 331 97 202 395 372 67 356 163 305 203 201 64 146 63 190 430 312 291 119 99 12 256 147 411 419 43 253 179 431 379 351 302 50 354 116 30 363 130 1 322 247 140 159 239 7 393 308 230 208 261 174 313 420 380 267 236 427 26 295 165 70 31 196 301 352 235 323 86 240 78 405 131 14 154 56 29 284 103 66 157 428 65 185 117 72 177 175 346 176 24 298 334 57 106 238 318 144 93 414 283 376 141 152 100 167 168 422 412 309 321 362 90 297 191 365 115 434 315 209 275 285 329 79 158 156 224 161 88 207 95 381 409 350 142 330 77 348 192 32 113 232 46 416 9 55 288 85 20 359 204 135 123 306 133 73 360 42 241 349 250 84 417 314 128 281 403 111 426 384 378 367 415 173 62 374 187 217 71 366 3 339 61 206 311 114 52 28 234 35 151 120 294 293 421 368 335 205 364 340 74 425 222 345 435 195 371 413 87 169 134 104 170 433 218 387 10 320 254 2 94 155 125 262 299 197 45 272 258 211 259 136 6 47 325 278 245 200 407 377 246 178 216 418 164 112 252 137 401 162 110 338 33 373 361 182 83 101 89 303 341 244 392 319 280 342 406 357 199 102 292 36 424 383 332 68 307 225 233 105 143 40 172 91 248 210 257 124 44 279 423 189 249 316 214 344 188 121 212 268 347 59 18 198 166 193 282 69 194 429 264 16 432 276 139 34 226 75 37 243 386 370 221 118 181 184 408 60 289 129 21 404 290 394 138 27 265 145 343 223 227 304 229 160 273 11 296 353 382 326 183 317 41 397 398 22 38 410 255 385 132 25 300 271 5 53 108 126 328 58 396 287 388 186 49 242 127 17 251 150 171 219 54 8 213 13 260 148 48 402 355 98 270 153 81 375 333 358 277 399 149 96 215 19 324 327 92 337 122 76 263 4 107 391 336 15 269 228 369 389 400 390 80 274 23 180 286 +154 1 39 52 340 338 376 318 201 101 411 378 141 315 220 128 430 294 121 230 203 144 433 159 331 163 51 247 237 84 305 179 232 386 103 124 258 379 288 192 79 64 94 95 90 123 62 218 181 362 187 366 133 50 297 99 46 112 403 259 202 413 77 190 161 114 165 245 346 196 367 93 119 352 301 28 106 147 342 53 204 130 31 427 26 20 61 116 191 303 365 194 7 43 109 217 319 426 233 306 208 170 206 291 341 177 236 131 310 199 169 235 412 317 397 273 370 195 240 244 58 295 339 253 243 381 304 431 67 224 125 424 363 117 166 308 115 42 239 334 421 262 419 350 188 222 344 82 312 78 285 298 332 120 278 275 267 409 271 276 111 178 186 347 329 256 264 86 60 330 364 361 56 100 3 414 75 343 345 164 394 254 351 110 268 309 261 349 387 132 266 156 358 207 416 137 356 63 368 34 55 432 354 173 87 399 89 405 74 14 250 231 157 289 302 284 146 293 384 389 200 209 249 45 85 88 113 142 32 393 265 73 172 69 167 168 283 326 223 40 257 197 59 272 359 211 425 10 71 134 398 422 287 316 193 435 37 176 282 145 360 299 353 382 16 373 348 270 2 140 104 21 380 252 434 229 279 408 35 415 185 210 171 160 47 175 335 395 158 139 184 151 242 83 221 292 38 97 407 57 320 226 372 174 213 374 216 127 135 248 8 428 149 333 269 98 126 406 162 70 357 24 420 118 321 198 155 260 290 41 281 65 313 136 307 241 189 417 36 96 296 91 396 234 13 212 225 72 29 219 280 214 105 81 323 227 9 383 12 311 148 328 390 150 33 228 22 23 30 418 423 371 324 183 401 143 5 6 355 205 152 153 92 129 44 277 327 263 322 102 429 336 238 375 404 314 108 17 402 215 80 337 76 251 68 255 27 138 274 66 377 410 122 385 246 325 19 300 15 369 25 182 286 54 11 400 18 180 48 107 388 49 392 4 391 +237 220 430 331 119 101 203 82 295 405 116 231 64 154 356 179 310 113 227 305 312 50 31 39 357 99 52 256 187 93 239 63 202 315 222 406 338 201 412 144 349 165 380 78 163 425 86 146 250 1 241 106 161 208 12 411 159 291 226 360 51 359 147 225 97 70 352 297 253 67 393 335 85 254 298 141 379 197 30 56 306 104 190 130 340 94 133 427 123 26 261 368 431 284 207 419 7 235 109 318 348 311 198 386 417 66 43 363 409 257 53 115 213 224 185 20 191 373 334 247 90 3 376 14 13 128 5 346 350 343 259 294 72 184 365 131 232 169 238 272 351 170 242 313 302 260 69 422 156 192 65 275 236 395 134 240 415 88 258 267 114 367 418 283 230 84 288 266 95 79 206 216 414 124 229 308 281 218 204 320 100 162 121 228 164 117 9 181 384 177 420 407 136 10 244 354 91 157 234 103 377 345 423 403 362 57 24 339 196 342 321 301 155 309 140 143 73 262 329 433 378 372 61 317 361 364 139 374 16 245 264 188 34 111 280 28 27 381 54 37 193 394 62 322 175 434 424 366 398 249 158 45 125 303 195 150 396 413 152 2 137 293 265 74 421 6 183 347 273 35 223 209 435 233 151 383 387 341 268 314 127 371 333 89 432 296 112 96 23 200 55 149 330 323 29 217 71 221 21 142 428 287 105 278 58 33 87 178 219 397 194 344 166 199 46 332 174 276 255 118 282 68 172 17 32 42 290 77 214 304 173 426 47 243 285 279 326 307 108 110 252 205 353 382 429 167 168 319 416 36 38 22 75 40 246 135 408 325 299 145 60 189 120 292 271 370 211 375 402 358 404 289 176 132 59 277 401 83 270 126 160 399 44 210 92 8 171 186 215 385 138 392 251 389 212 248 18 81 182 11 324 48 15 122 316 369 98 129 76 327 355 390 148 388 269 153 41 328 19 107 25 49 4 300 274 263 286 337 102 336 400 80 410 180 391 +237 63 70 334 113 1 133 50 159 346 85 31 342 281 192 259 267 250 147 331 78 351 121 189 66 203 275 39 86 340 123 349 386 261 154 298 93 56 202 297 14 295 116 279 379 64 411 28 77 82 338 294 348 174 312 101 201 345 376 163 230 20 247 94 207 138 291 205 65 414 272 175 187 231 197 51 239 144 220 306 356 244 366 179 245 387 128 412 130 365 253 10 216 308 119 430 79 61 131 95 146 221 52 413 350 90 218 262 99 103 374 364 359 266 198 258 199 317 326 67 352 360 232 73 151 196 184 26 114 354 422 204 34 318 176 46 169 100 170 117 9 377 108 191 139 330 7 16 141 240 344 368 293 161 188 172 301 363 367 347 105 145 339 98 278 288 305 30 62 150 362 420 284 236 378 313 332 264 57 208 256 60 217 149 310 428 309 257 47 45 125 40 48 109 329 195 2 233 234 235 177 38 37 315 280 190 127 381 71 361 373 333 178 33 134 405 311 97 43 88 268 148 156 383 209 164 343 393 211 431 341 84 115 112 302 59 87 92 403 185 384 292 323 335 210 370 304 303 328 200 424 409 136 194 21 106 165 419 22 433 416 415 214 193 69 120 286 260 287 273 283 53 152 181 432 276 426 36 289 76 353 382 224 372 435 27 140 417 263 183 206 421 158 375 167 168 265 290 242 401 402 3 282 327 314 425 249 385 111 25 6 229 58 166 395 427 42 434 380 357 155 307 407 32 271 55 126 227 222 319 153 124 215 410 122 243 171 96 162 226 398 135 110 104 252 296 270 118 68 371 388 277 173 285 24 132 12 321 44 429 418 254 182 142 269 241 299 157 89 320 358 137 389 406 225 355 223 316 143 397 74 18 49 102 160 394 11 72 399 83 81 29 13 8 255 213 91 396 400 325 248 246 324 228 390 238 41 17 404 23 322 75 54 186 80 336 251 369 212 5 129 219 300 337 423 408 391 4 35 107 15 392 274 19 180 +203 295 202 291 82 412 23 159 294 113 284 88 220 131 56 9 373 185 64 237 165 163 331 164 57 128 183 229 258 283 420 251 312 141 374 253 356 321 71 173 178 239 300 93 170 70 94 422 305 424 169 240 99 177 140 111 379 264 265 406 315 31 47 320 50 314 24 329 190 214 135 363 78 187 285 95 143 155 192 22 66 208 235 380 427 97 348 106 120 261 256 383 137 407 179 375 43 42 431 102 27 139 248 417 207 411 310 350 136 307 306 218 250 415 362 1 119 385 201 149 309 272 308 150 204 30 144 26 33 61 266 409 12 162 328 302 288 334 206 275 90 123 339 85 175 161 351 360 225 130 3 157 167 168 352 241 386 37 16 359 226 86 72 81 133 115 213 63 145 430 48 13 216 354 176 405 368 114 413 421 25 297 109 79 318 267 73 65 193 262 69 153 105 252 298 349 276 142 222 326 6 44 38 125 376 428 7 230 166 403 418 387 117 367 384 147 435 51 234 313 184 55 242 11 398 10 8 227 172 75 20 101 340 92 171 391 224 238 35 323 287 103 410 311 303 346 67 129 219 401 243 365 223 151 174 408 414 122 52 124 327 236 361 84 259 116 34 154 278 335 429 18 299 68 74 215 2 404 98 134 341 280 369 282 5 426 14 343 62 273 378 260 317 41 249 247 211 28 304 40 233 396 197 146 158 188 296 231 83 394 381 388 29 182 17 180 108 402 118 210 393 333 372 301 344 281 254 395 433 200 39 194 45 434 345 127 195 186 330 58 112 198 423 319 89 32 342 432 290 77 397 279 228 87 160 196 322 232 36 370 257 364 156 121 132 148 209 325 377 425 191 152 60 21 76 366 244 293 263 126 189 338 221 205 212 46 217 400 292 357 59 138 199 324 246 371 358 416 100 268 399 274 353 382 270 181 389 392 110 419 355 4 277 255 104 347 289 337 80 390 245 49 53 96 91 107 15 316 271 54 269 336 332 19 286 +187 237 64 331 31 141 295 26 82 154 130 163 257 203 50 350 131 52 1 116 39 113 341 253 202 435 239 430 101 192 352 338 360 359 93 56 221 250 308 63 208 119 258 354 256 412 362 220 376 121 356 159 298 247 78 218 196 297 117 334 343 57 403 244 144 201 379 368 288 348 70 207 169 330 315 190 431 66 179 94 346 161 309 165 204 310 209 321 275 291 170 349 95 386 411 261 222 387 191 361 51 422 340 259 312 420 109 305 99 266 100 380 133 339 111 27 106 124 61 326 216 317 53 240 245 103 318 242 79 7 125 123 162 67 71 178 128 114 147 303 373 366 185 90 193 197 367 345 351 319 9 226 241 428 200 164 28 409 294 416 235 344 38 177 401 374 46 160 363 229 195 73 384 206 65 62 262 59 433 74 37 20 329 110 276 278 320 267 166 172 378 16 227 232 311 198 421 127 14 414 167 168 85 21 225 268 377 432 75 415 284 408 173 145 83 405 302 77 287 184 13 86 290 306 252 271 265 120 115 425 333 296 281 140 155 427 213 280 10 272 423 126 2 370 230 407 137 34 58 260 397 365 417 118 304 307 12 233 254 325 429 18 301 105 424 364 231 175 347 42 24 270 389 188 413 33 375 22 426 217 249 8 47 23 97 43 335 264 300 234 84 6 323 156 146 332 88 199 434 299 112 150 171 243 383 194 68 181 158 149 5 205 214 122 342 327 273 381 353 382 45 35 395 282 406 223 236 371 139 30 418 285 72 142 283 357 419 29 394 211 87 248 151 279 55 32 136 40 224 174 3 108 219 107 238 398 313 157 60 314 134 251 210 183 153 316 104 228 148 263 143 393 289 48 4 17 402 102 132 328 98 399 92 388 396 324 293 36 337 292 11 176 69 269 358 96 189 277 186 212 215 372 89 385 49 81 400 135 369 44 41 404 182 19 322 355 76 25 255 91 152 129 391 138 410 390 336 54 274 392 80 180 15 246 286 +56 385 57 50 388 47 410 67 113 68 182 49 266 203 24 9 42 220 102 295 44 352 391 38 291 237 321 34 202 51 379 374 18 331 159 131 48 363 120 307 141 163 310 64 300 348 7 107 82 109 207 247 114 25 27 31 178 253 401 356 22 393 111 278 256 39 95 231 122 187 362 368 411 99 312 216 164 93 375 78 288 419 201 147 30 63 429 192 61 240 412 339 230 6 144 285 373 165 305 190 430 208 185 354 267 33 70 1 128 115 345 239 422 409 346 88 383 29 130 315 329 152 323 334 154 103 218 376 294 177 119 151 90 26 306 71 150 167 168 86 20 420 117 85 261 123 301 161 320 268 137 153 259 173 73 149 221 11 344 297 94 370 298 175 407 367 169 14 214 395 415 299 170 318 431 106 133 387 100 293 313 337 325 97 284 116 196 37 350 281 421 65 139 365 28 52 162 330 258 66 79 272 403 176 121 16 101 189 212 342 262 140 252 271 400 416 302 338 251 244 17 264 205 257 191 308 384 349 209 204 283 417 250 158 270 413 143 108 45 424 43 135 397 195 125 174 105 427 236 46 408 223 434 372 366 206 77 287 112 276 324 265 166 435 232 377 380 309 319 155 242 55 145 394 217 428 74 179 136 248 235 188 432 197 234 386 378 361 351 87 157 341 275 360 328 418 84 303 405 53 23 359 340 211 36 314 433 414 245 280 35 343 194 10 215 148 426 72 127 4 200 260 183 290 75 210 172 83 32 364 347 241 198 398 229 142 2 124 246 60 296 381 12 279 316 396 243 233 274 358 371 304 357 62 273 69 333 118 327 8 332 219 399 269 254 317 423 184 193 199 225 249 89 41 335 226 402 326 156 222 40 59 21 181 171 311 92 132 129 126 160 238 58 146 277 292 322 353 382 138 282 96 110 425 81 263 289 404 80 98 13 224 355 134 255 3 390 76 389 227 186 5 19 392 213 336 406 369 104 54 286 180 228 91 15 +262 261 366 376 63 163 211 202 210 184 334 82 203 379 237 267 280 1 230 294 308 331 141 39 416 384 247 103 192 190 362 159 78 295 306 279 64 70 93 365 220 86 352 253 428 310 57 174 208 345 431 154 173 169 26 288 312 412 130 411 144 275 170 401 95 51 9 73 305 348 83 285 291 136 101 109 131 102 259 175 239 67 354 189 119 60 172 94 46 302 351 356 309 114 191 71 284 367 413 363 240 56 414 113 52 281 430 344 346 43 321 245 330 97 311 24 350 318 112 140 217 120 74 115 297 378 178 90 117 118 85 161 232 68 278 420 28 201 98 283 20 206 187 106 422 272 307 315 342 323 196 218 266 16 204 195 338 134 234 415 133 258 77 423 177 176 79 182 424 368 256 99 171 111 36 319 292 313 7 75 193 339 326 61 123 116 50 137 197 359 419 409 216 100 298 231 235 194 380 360 188 361 183 207 147 340 34 55 31 276 395 427 250 233 84 128 370 329 14 314 332 432 252 135 289 66 426 257 138 25 254 40 108 421 10 268 198 165 410 371 200 152 59 151 387 166 248 434 121 293 167 168 407 158 179 236 47 349 155 87 264 48 347 287 62 92 374 397 377 417 81 300 301 373 433 328 125 381 44 271 335 38 153 139 435 35 150 22 214 393 30 18 41 403 222 160 164 49 124 212 65 316 317 185 341 105 260 149 157 388 209 429 244 156 265 242 263 221 304 364 76 270 282 88 27 320 241 33 299 181 386 353 382 142 418 126 296 143 273 162 229 146 396 243 6 129 42 227 58 408 8 322 255 223 45 325 32 145 148 249 37 290 69 224 17 400 29 246 89 343 110 405 357 186 225 127 303 238 53 324 327 122 72 11 96 205 375 199 23 404 394 383 4 337 5 389 80 398 132 286 228 219 355 358 269 180 392 372 385 425 399 215 21 13 12 391 213 251 277 107 3 104 226 333 2 406 336 369 91 54 15 390 274 19 402 +163 1 189 174 56 297 203 202 70 192 237 113 159 411 281 211 279 39 334 63 342 95 230 93 210 207 331 175 247 176 161 123 259 351 46 294 64 430 308 376 190 31 315 240 250 291 239 57 78 365 318 71 332 379 131 170 9 130 169 187 47 50 116 86 197 348 367 338 20 90 424 412 220 310 305 94 79 267 309 201 154 295 352 26 216 413 292 431 141 340 366 82 326 268 85 306 284 128 261 378 172 286 349 103 232 65 111 271 262 345 144 115 119 84 121 133 114 301 101 264 195 198 362 321 120 312 275 323 28 386 208 414 99 147 14 73 139 363 218 283 34 344 61 117 329 373 298 258 432 236 134 43 7 24 409 191 97 16 253 350 138 256 51 401 278 343 178 177 182 316 217 254 184 27 356 433 270 62 282 407 10 384 428 69 209 53 235 288 387 266 200 173 67 105 88 181 346 185 359 393 98 234 360 263 420 108 339 66 422 17 276 106 374 269 196 137 272 164 171 162 60 48 179 403 280 204 304 358 42 214 421 8 37 38 293 76 410 112 389 194 22 426 311 55 368 125 330 77 206 257 25 370 183 166 307 102 149 354 249 328 153 341 380 364 361 244 188 242 347 199 415 40 45 151 233 303 388 87 319 317 248 417 427 143 395 290 150 167 168 397 399 52 222 100 325 273 145 92 335 165 285 109 241 81 265 302 44 394 314 313 223 243 205 405 33 126 435 136 320 158 289 193 371 36 74 383 156 221 287 132 398 381 231 83 59 375 245 157 251 353 382 58 160 418 434 357 396 419 252 227 30 416 229 296 155 408 322 140 385 89 127 110 75 6 215 142 355 212 68 333 35 146 2 148 377 406 152 300 260 32 23 425 21 49 423 124 402 72 224 129 327 299 118 213 429 400 41 122 18 324 3 255 135 19 391 277 11 372 225 180 80 12 238 226 29 390 13 404 246 219 96 228 186 337 104 336 107 369 4 5 54 274 392 15 91 +187 203 202 18 56 27 295 50 237 131 141 159 149 323 307 401 63 31 348 57 9 329 218 321 362 298 150 288 291 65 411 240 287 113 253 64 216 71 70 334 376 220 345 363 164 259 33 1 66 272 185 144 352 250 331 192 344 93 47 67 374 221 379 339 261 39 266 99 95 409 130 201 420 127 368 163 90 197 385 356 173 247 108 328 422 346 190 82 278 312 101 161 4 262 178 230 207 117 198 350 412 37 147 52 294 267 258 154 78 375 139 121 88 413 349 122 165 123 119 430 26 387 120 116 20 370 34 79 61 94 264 148 133 84 214 140 276 354 204 191 28 103 7 256 234 196 177 315 338 260 128 14 68 296 16 431 285 388 343 318 107 293 106 24 175 115 209 244 403 188 239 48 245 365 424 386 281 268 170 109 73 303 10 42 169 145 235 208 206 22 330 38 426 414 189 309 200 434 182 279 85 360 275 43 366 305 184 211 98 300 340 359 310 378 125 351 377 151 111 86 429 231 265 367 410 373 134 400 242 381 284 416 156 46 421 236 297 62 6 306 243 217 252 105 232 102 210 176 364 179 415 49 342 135 320 280 427 174 114 249 384 97 137 428 172 314 55 271 195 326 257 77 233 25 308 92 142 302 155 157 143 100 194 361 383 397 432 23 372 223 138 435 60 304 205 283 153 45 160 118 226 433 332 124 87 273 51 199 407 40 290 53 317 158 301 341 327 380 215 292 17 289 167 168 270 112 126 44 69 251 222 417 282 394 225 333 58 229 395 36 2 405 59 299 398 393 32 183 396 241 353 382 171 181 254 418 337 311 263 316 248 391 13 29 166 83 347 406 269 21 277 162 30 402 110 358 96 89 12 371 335 322 419 146 224 193 11 72 81 392 399 76 219 238 180 425 132 186 213 313 357 227 3 423 8 286 319 80 389 228 369 355 74 212 255 41 136 324 129 336 5 390 75 408 325 404 152 19 35 54 15 104 246 274 91 +288 141 362 352 237 272 345 63 376 67 334 218 159 24 346 50 39 368 95 1 103 329 202 350 78 203 151 247 163 154 178 261 61 77 308 266 344 331 294 192 131 309 26 84 31 52 130 293 116 420 220 253 115 187 338 328 70 64 379 431 33 260 307 207 144 216 170 397 250 169 82 245 109 147 259 123 172 195 190 348 244 363 416 351 90 298 267 56 428 297 133 413 34 179 134 208 99 197 188 275 101 422 426 295 407 66 111 230 315 173 28 339 149 354 292 198 121 377 378 349 370 278 239 9 57 65 262 285 71 284 374 419 414 361 393 412 150 114 258 234 43 128 204 86 305 85 424 312 409 411 306 366 6 201 211 347 302 62 280 16 367 310 20 156 161 340 191 318 7 300 140 177 205 93 164 365 51 137 356 14 106 429 79 210 317 196 158 279 46 162 330 73 17 194 323 375 277 282 83 231 10 276 38 60 386 113 252 40 291 108 209 421 232 430 184 206 74 373 433 119 221 102 283 240 100 316 321 139 359 360 337 75 364 256 381 145 98 435 242 165 342 160 146 341 120 171 304 47 257 58 268 199 319 235 281 112 355 217 290 30 287 214 233 248 224 313 29 117 353 382 401 410 200 124 27 153 44 88 332 301 415 125 372 243 336 215 273 324 22 371 166 263 383 94 333 427 167 168 135 185 398 384 343 42 122 193 175 264 289 18 236 105 152 189 434 299 406 380 396 37 118 59 97 157 403 303 127 326 176 432 92 87 8 212 223 11 36 25 3 174 142 182 48 45 395 68 53 81 181 251 296 271 72 385 126 249 327 55 143 2 265 405 335 394 155 325 19 314 32 89 49 180 132 246 129 320 270 229 408 76 222 23 183 186 225 388 138 358 96 417 387 357 389 254 241 369 21 148 226 110 69 399 274 425 311 104 219 418 80 107 255 404 423 13 4 400 322 402 41 35 227 213 269 12 238 390 5 392 136 228 286 91 15 391 54 +154 128 259 203 315 51 141 67 39 103 163 331 430 352 159 202 52 101 376 338 1 165 63 379 362 144 220 258 61 288 237 384 99 26 310 247 53 50 318 130 305 34 90 412 95 334 117 187 419 133 109 218 393 161 7 170 82 192 169 397 64 121 119 31 342 112 297 204 256 197 113 124 378 231 115 386 93 361 411 123 190 216 196 217 79 84 230 267 20 191 223 363 295 232 366 56 329 293 272 409 250 261 62 131 350 339 403 302 201 147 276 195 94 244 298 253 78 106 367 346 428 177 116 291 164 77 365 198 330 265 340 323 427 179 416 239 207 206 208 308 264 222 294 368 405 381 359 28 236 245 281 181 345 266 433 423 178 347 301 360 341 200 46 86 317 254 275 279 188 225 380 278 312 151 282 344 284 125 114 85 221 233 57 348 356 387 211 60 226 58 370 160 262 415 111 413 343 209 320 73 373 100 351 137 364 319 271 227 422 306 292 332 194 43 210 372 424 309 349 66 242 268 186 414 425 156 35 189 140 273 97 316 431 240 29 70 88 174 173 303 270 421 354 426 371 33 175 324 257 214 8 243 199 435 167 168 304 166 235 71 89 401 176 420 241 9 74 249 234 24 184 59 395 105 14 183 357 118 394 432 10 172 229 120 157 134 205 132 139 75 146 417 158 98 283 322 406 145 37 40 252 69 16 38 110 358 326 13 135 285 185 213 136 104 311 396 42 299 162 212 83 287 18 149 374 321 333 289 313 290 389 219 399 155 280 418 150 23 55 377 171 30 87 407 47 17 32 108 142 148 434 325 6 385 152 328 143 27 307 65 260 12 224 408 277 96 193 238 126 336 353 382 296 81 314 19 45 127 68 228 269 92 251 5 41 248 153 398 300 3 335 22 48 429 91 4 255 72 15 36 138 286 182 263 327 215 122 383 375 76 337 246 390 21 107 2 392 25 44 400 102 355 54 274 369 410 129 11 388 80 180 404 402 49 391 +18 187 401 27 323 295 56 57 159 131 203 9 107 202 321 240 237 141 67 4 63 329 216 331 411 400 173 220 431 430 190 50 379 291 385 149 362 348 113 144 64 298 31 1 247 266 122 218 39 370 334 354 201 52 93 120 150 352 90 192 250 410 47 288 37 161 20 221 119 259 253 154 387 376 197 68 51 287 65 163 109 66 103 307 350 79 363 70 185 346 339 231 198 164 412 99 117 38 48 170 42 128 267 102 230 169 26 22 7 318 95 71 338 24 175 367 207 384 422 82 239 121 349 278 147 368 388 281 116 177 420 315 28 264 345 33 244 191 209 189 360 356 359 34 94 130 165 330 258 426 204 196 127 413 101 340 148 234 262 46 133 344 293 182 256 123 414 297 300 374 343 73 272 105 232 275 206 310 312 125 84 285 284 409 245 249 378 188 424 78 115 342 25 108 178 403 61 233 415 320 98 211 257 208 294 309 200 10 174 139 217 112 140 351 214 305 88 276 53 433 16 243 303 49 194 428 332 106 45 395 210 118 366 145 14 29 60 160 308 261 176 306 195 111 434 242 156 377 236 254 114 137 416 97 301 283 290 62 380 43 328 296 77 392 235 397 86 273 394 265 6 100 199 427 87 381 304 435 260 292 375 373 172 268 40 252 372 421 179 85 181 157 135 124 248 222 171 364 167 168 279 432 386 55 311 241 226 219 317 365 398 142 358 423 417 341 151 429 289 361 126 405 302 59 225 418 180 396 353 382 347 58 158 271 223 96 44 419 138 110 205 393 134 166 32 153 263 92 270 371 314 13 326 357 143 299 72 399 322 184 2 193 333 21 407 36 12 83 81 11 238 69 155 162 282 335 383 389 425 17 280 146 319 391 277 406 227 316 213 215 23 89 74 369 30 132 337 35 251 402 313 327 186 269 229 75 136 228 286 5 408 80 76 390 183 41 212 324 224 54 355 255 19 8 104 3 152 129 336 404 325 15 91 246 274 +56 61 50 411 163 151 192 159 20 147 294 1 259 230 103 39 237 128 376 268 305 34 203 141 267 31 170 169 331 258 202 190 95 216 114 352 271 430 346 293 64 244 38 195 261 161 413 270 379 308 93 374 363 178 115 362 116 381 295 310 247 297 154 428 218 57 365 207 220 316 111 90 291 121 28 348 341 86 285 205 315 340 51 288 323 47 99 265 393 133 334 70 130 211 167 168 7 210 120 338 82 378 318 52 26 385 44 269 358 101 63 144 109 253 397 345 266 78 131 279 172 275 339 239 407 67 256 94 309 250 278 113 62 134 46 187 410 419 79 75 123 350 106 71 351 373 105 74 292 209 177 194 349 399 422 367 14 85 324 208 77 366 387 344 87 139 370 403 264 240 420 55 298 354 204 112 412 360 421 329 398 272 359 312 232 431 196 158 125 394 342 257 328 197 424 401 361 65 201 435 384 372 217 97 301 254 10 33 319 284 119 171 235 60 73 282 280 416 48 9 16 236 175 137 276 343 42 153 368 214 162 212 364 262 53 191 414 415 426 375 427 402 179 45 245 188 174 84 303 409 43 24 22 433 176 189 234 283 88 145 356 432 40 92 198 330 326 164 317 321 221 117 58 386 251 98 69 322 313 156 155 388 200 25 6 302 307 325 332 166 248 273 223 347 243 408 152 306 30 233 165 83 249 390 8 185 252 150 383 138 199 124 314 405 100 149 304 263 160 173 2 59 281 231 299 118 417 429 140 89 320 66 37 333 21 290 129 182 81 206 126 222 425 193 337 181 215 184 260 289 132 423 287 229 110 17 353 382 36 32 377 72 142 246 143 91 227 434 11 406 148 18 335 395 396 225 102 108 157 13 355 242 418 327 104 136 27 35 49 371 255 238 183 29 68 389 296 357 311 127 400 96 380 3 23 80 226 213 146 228 122 41 241 336 180 186 219 12 135 224 76 277 19 274 4 391 404 300 392 15 5 369 286 54 107 +377 237 131 66 272 33 234 113 93 291 31 108 203 202 220 334 63 163 139 150 64 295 159 253 321 348 50 208 260 350 82 70 207 239 346 101 331 296 356 94 298 52 287 1 266 261 56 151 116 411 127 187 78 198 57 130 197 149 422 375 231 312 414 379 115 100 338 95 73 374 216 428 310 185 360 352 359 201 242 39 354 147 141 144 14 247 278 345 178 114 190 430 349 431 258 376 340 332 140 120 250 412 275 154 308 177 109 9 218 28 343 192 378 281 386 128 230 79 86 245 294 156 240 293 344 123 184 259 133 99 235 367 196 51 119 372 363 97 373 264 301 20 267 173 65 351 134 27 40 297 413 161 26 68 61 122 326 276 85 166 381 339 307 118 121 384 232 252 204 318 365 420 106 262 284 280 90 362 288 328 215 257 169 117 124 429 37 24 170 306 368 285 409 172 268 309 323 67 407 256 330 305 335 424 302 329 6 299 421 311 105 77 103 71 209 137 48 10 16 43 387 191 199 88 401 435 315 380 45 125 304 179 175 7 319 244 195 416 282 364 62 361 265 434 193 388 46 415 427 341 221 182 142 200 111 189 283 342 398 92 164 236 206 233 8 84 38 69 194 290 205 102 383 370 165 83 366 12 277 146 25 60 145 217 371 72 155 432 42 49 337 158 188 353 382 279 317 403 347 316 410 248 74 30 32 417 55 22 58 167 168 303 44 395 176 433 174 320 241 405 271 162 243 34 425 254 426 289 227 41 397 126 153 333 138 292 222 47 313 211 314 327 2 238 273 112 181 255 355 249 357 11 87 210 418 408 59 75 81 21 396 419 270 406 404 36 171 214 213 369 402 13 136 225 358 226 322 96 104 300 5 143 98 53 228 157 148 89 110 17 229 135 263 186 160 224 219 183 394 3 393 152 385 132 223 29 389 76 91 4 18 399 269 423 212 23 391 325 80 324 251 35 107 54 390 400 336 180 246 286 19 129 15 392 274 +261 63 262 366 237 163 184 280 192 82 220 70 334 39 267 331 376 230 253 64 411 1 202 159 379 141 295 294 56 169 211 348 203 247 190 306 101 93 170 308 356 78 352 57 351 144 275 154 210 133 147 422 86 130 365 103 362 67 363 259 239 208 312 46 310 416 412 191 291 250 345 172 134 26 431 305 51 285 428 430 95 279 94 266 52 31 112 174 113 115 413 350 332 288 207 201 330 161 245 232 368 50 177 36 60 43 318 85 119 116 346 109 216 354 9 99 20 79 378 73 71 189 420 175 131 349 231 240 234 384 106 123 100 187 178 340 309 77 117 195 28 204 167 168 367 83 323 90 196 321 16 218 278 200 344 209 61 258 338 97 339 14 421 401 173 7 66 414 319 120 121 244 197 256 140 171 84 315 424 179 217 188 111 281 284 158 302 298 114 311 380 252 194 359 307 342 293 34 55 360 347 370 395 419 409 235 206 435 24 268 118 185 59 68 361 128 198 415 373 427 176 297 341 313 40 10 432 272 434 254 329 74 301 433 393 137 374 403 257 283 260 314 381 164 377 264 423 214 156 289 125 75 343 102 387 126 353 382 233 92 47 136 108 38 157 165 287 98 407 276 236 146 65 17 317 396 371 152 87 292 58 30 193 335 303 386 426 397 290 124 273 149 429 222 153 6 160 328 22 320 241 265 62 182 105 162 145 139 166 394 282 88 150 110 199 221 151 296 142 45 81 32 205 304 224 53 248 372 271 129 398 155 243 399 8 364 326 181 25 417 44 135 37 18 42 132 27 69 227 388 127 89 408 29 33 48 21 263 325 299 249 358 96 223 80 357 148 212 143 383 41 333 225 2 35 322 242 270 76 316 49 229 375 410 404 3 183 23 219 418 406 324 277 72 238 389 246 300 11 251 405 226 337 269 12 228 138 13 122 425 186 336 213 255 327 215 104 5 390 402 355 4 400 385 392 180 369 19 107 91 391 286 54 15 274 +113 1 376 67 348 163 315 165 63 101 130 339 202 310 203 39 331 154 411 109 50 51 131 64 52 297 141 133 82 95 334 78 159 93 259 237 169 70 115 430 308 393 170 309 374 220 201 356 94 250 31 306 345 144 99 71 278 164 344 239 291 231 295 197 26 294 29 362 61 266 230 419 123 62 412 375 34 326 338 361 352 207 187 56 284 172 119 318 128 161 359 253 363 288 305 218 275 350 360 261 116 198 190 409 90 192 413 272 7 86 302 422 386 365 373 276 216 247 178 117 147 258 282 397 84 103 256 307 341 379 120 240 367 85 195 125 424 431 14 378 222 301 208 340 428 323 191 66 420 242 12 97 20 329 312 265 427 298 30 421 384 124 283 349 342 368 106 79 42 267 223 236 9 435 177 188 206 179 381 173 405 347 196 73 217 403 372 279 134 185 111 204 262 18 158 407 145 221 330 151 395 366 24 57 69 346 280 357 135 364 232 254 92 268 281 380 434 235 36 46 167 168 406 264 211 65 271 184 114 143 27 387 55 273 210 351 193 171 244 416 88 53 162 260 327 17 234 320 112 33 121 209 157 433 226 233 425 200 160 175 304 47 432 152 37 383 311 414 140 328 252 313 401 245 257 77 225 142 28 166 139 194 189 322 270 343 183 354 8 43 321 58 174 389 100 98 74 214 137 182 316 10 396 246 332 227 16 263 429 108 181 75 417 149 156 241 176 38 287 249 40 293 104 89 415 243 319 6 377 290 385 426 60 87 59 150 423 105 394 292 129 110 146 303 317 205 229 418 371 45 314 199 213 358 299 32 255 83 238 44 22 81 4 370 35 285 13 132 408 399 23 2 102 153 127 126 353 382 136 333 224 118 3 219 155 398 289 335 388 21 269 186 96 337 72 296 68 48 138 49 251 355 148 215 228 25 324 76 300 122 277 5 91 212 248 180 54 325 107 41 19 11 402 336 369 80 391 286 410 404 390 15 274 400 392 +189 174 175 351 237 281 46 63 259 176 192 173 247 267 331 428 334 342 253 103 159 346 211 154 20 308 352 250 130 210 1 295 115 275 345 272 279 306 50 78 220 430 422 71 31 263 133 367 113 311 310 93 56 379 354 144 26 191 79 163 350 348 298 82 431 258 39 64 38 368 232 312 208 420 119 207 292 309 323 61 28 117 147 338 349 14 366 90 230 116 284 329 217 169 202 376 363 356 326 378 94 170 60 291 158 340 101 161 195 245 196 95 140 201 216 65 203 423 266 426 414 297 57 123 344 416 172 86 108 40 105 318 177 233 294 411 99 131 330 9 360 365 51 190 359 67 204 73 240 139 435 261 307 141 121 150 106 66 197 149 53 377 128 315 386 45 87 167 168 185 218 10 347 283 43 276 118 289 239 384 278 424 52 85 77 7 125 380 70 59 48 381 25 412 317 198 256 33 194 413 37 97 120 353 382 303 362 98 36 156 24 403 301 179 332 200 112 252 16 293 187 100 387 199 171 262 138 285 305 288 160 206 304 146 321 235 231 427 343 358 421 214 286 361 188 34 145 373 401 319 341 241 83 374 287 371 432 370 234 339 178 328 415 302 434 273 333 148 209 157 249 114 257 221 243 47 166 102 244 92 58 433 22 268 88 264 313 335 68 137 109 227 236 32 282 254 41 409 84 127 62 193 394 151 124 320 399 222 81 242 136 383 300 248 255 162 21 393 110 183 325 2 396 44 357 419 142 181 290 219 42 327 223 410 30 74 296 398 132 55 372 271 184 316 280 96 104 165 405 402 182 417 270 369 12 215 80 6 213 425 164 126 89 225 134 364 111 400 299 226 407 153 135 265 152 129 122 8 277 69 355 314 224 251 260 17 75 186 72 388 238 18 408 397 91 418 180 228 395 429 322 76 13 390 229 375 269 389 155 205 404 324 385 143 35 246 391 406 27 5 15 212 49 3 337 392 54 29 11 23 19 4 107 336 274 +220 430 310 222 227 405 331 425 217 237 99 12 305 231 86 119 357 254 39 320 201 380 51 104 31 226 225 315 395 85 411 190 356 256 363 241 291 372 384 393 295 106 247 223 165 311 147 192 335 82 381 128 267 64 30 319 97 50 91 354 208 313 5 312 239 349 67 318 140 322 230 427 1 179 141 379 228 203 213 316 236 61 163 406 130 367 216 423 235 191 177 266 161 360 419 359 56 202 79 185 13 373 144 362 52 154 232 88 90 116 306 290 297 352 253 95 109 261 346 157 268 26 103 218 340 196 63 93 204 298 20 259 323 258 301 28 207 78 7 378 169 113 170 131 115 43 156 249 100 271 89 187 412 206 159 54 238 133 124 294 151 240 365 57 35 117 101 112 413 293 351 73 111 416 415 197 284 74 246 350 105 110 219 308 72 321 9 24 6 288 135 343 94 142 120 265 387 136 167 168 193 341 125 264 146 403 317 53 333 14 348 164 361 178 278 273 186 270 408 376 339 75 366 166 414 55 302 434 200 368 303 181 198 364 229 397 37 195 194 394 396 84 417 184 280 32 279 137 33 422 304 262 244 233 433 83 255 409 283 155 421 160 330 214 309 118 205 123 374 143 431 392 211 424 29 62 371 353 382 276 275 199 342 162 334 420 209 152 121 46 435 175 188 370 257 42 77 282 398 245 69 60 292 40 70 10 428 338 407 139 2 45 158 58 3 210 251 234 250 87 418 114 243 224 66 385 132 281 429 145 129 272 329 432 252 332 260 345 174 242 426 296 344 16 347 358 269 65 22 96 212 8 34 327 183 287 171 314 36 299 47 221 68 324 289 38 27 134 150 404 248 21 172 402 71 127 399 383 325 176 285 59 326 149 173 401 23 189 11 386 126 44 138 389 18 377 41 328 15 102 277 307 337 153 81 25 98 148 108 355 92 375 390 17 122 182 48 410 107 19 300 274 80 4 76 215 369 388 391 336 263 400 49 180 286 +61 50 203 141 202 151 95 352 294 56 288 374 159 163 147 220 178 331 350 407 346 308 207 103 295 57 362 39 293 376 259 114 291 1 411 216 111 309 266 28 261 237 169 218 379 82 170 77 113 109 130 305 78 230 244 67 334 131 128 190 348 268 297 258 208 310 329 64 363 373 247 93 267 192 24 31 172 354 375 253 51 361 34 345 413 63 75 384 115 312 278 368 74 239 211 381 47 137 412 71 316 133 116 422 26 42 272 9 38 210 33 430 298 120 165 7 99 105 162 328 164 397 240 410 271 421 385 302 349 43 420 161 351 70 121 280 424 187 409 339 154 66 428 365 102 94 338 167 168 90 177 284 344 204 416 256 140 270 221 205 378 366 315 40 88 22 20 285 196 367 46 414 372 321 44 195 318 52 106 332 323 119 185 139 6 155 173 171 301 144 360 393 62 299 359 275 431 11 100 166 191 283 175 347 201 234 85 217 55 248 341 123 356 232 370 252 330 134 65 30 231 307 86 401 84 292 377 251 214 326 79 73 72 179 193 324 403 383 327 235 182 387 264 209 408 236 98 435 101 406 279 429 415 37 158 117 319 337 199 380 386 176 388 229 426 153 320 194 212 27 10 336 313 97 16 200 242 174 260 125 276 14 395 265 68 250 269 300 262 340 427 149 432 254 112 342 156 197 215 122 245 60 257 419 143 277 59 223 145 263 317 150 325 343 434 146 25 124 188 314 222 87 304 48 206 126 41 303 83 184 224 135 306 18 364 225 53 433 233 287 29 322 142 45 290 333 89 249 92 273 69 405 423 282 353 382 355 81 198 49 23 108 398 118 281 394 35 138 8 241 17 2 417 296 226 32 152 189 160 335 400 148 12 425 58 13 157 136 371 183 21 132 358 3 243 402 129 399 246 127 219 19 255 274 5 213 91 289 391 227 418 311 36 104 110 181 76 4 180 80 369 228 396 238 107 390 389 186 357 96 392 404 286 15 54 +64 295 141 310 430 220 56 350 185 331 31 237 131 323 203 57 50 253 119 113 202 239 352 362 356 256 385 192 117 321 86 320 222 291 221 68 99 311 191 9 288 258 51 422 26 106 190 368 154 95 159 208 120 52 354 130 225 330 344 420 227 82 345 305 93 207 124 216 165 1 39 101 144 315 276 395 73 307 405 85 204 434 116 318 167 168 7 427 161 70 201 78 196 421 61 250 94 367 187 140 300 169 412 363 423 170 163 247 179 411 147 376 177 341 226 266 380 312 231 319 335 218 298 348 67 259 346 28 158 125 365 357 79 128 297 206 24 401 403 230 374 217 121 254 408 114 178 71 306 223 244 360 334 359 308 173 240 118 12 48 309 416 429 261 105 435 304 252 43 90 33 88 47 193 379 228 384 209 166 235 425 13 431 115 164 343 38 262 160 22 241 59 34 245 195 133 264 407 30 409 213 25 242 284 392 340 393 303 278 109 97 103 102 257 232 415 381 5 74 349 275 219 294 338 428 265 366 378 236 273 112 214 148 351 66 414 110 285 287 143 211 75 46 127 200 111 20 72 370 406 267 42 152 157 387 210 373 16 83 419 188 63 35 313 339 243 55 122 238 229 123 233 283 386 153 58 280 18 14 150 299 145 91 151 197 126 249 45 417 65 433 398 194 296 104 272 142 146 60 361 37 10 388 23 156 182 175 162 137 171 100 317 149 89 139 234 410 394 289 62 8 246 77 87 432 383 44 135 184 293 198 375 418 328 347 326 53 134 40 342 301 36 302 172 396 29 426 424 333 54 129 224 413 49 364 27 32 155 372 268 255 397 136 290 322 6 11 181 108 329 3 337 270 377 353 382 84 325 271 174 199 282 260 314 132 21 17 69 371 2 205 391 15 92 332 248 279 263 355 215 176 98 281 402 96 183 251 292 404 358 212 186 389 399 19 4 316 327 81 138 324 189 107 269 80 369 76 400 41 180 390 277 336 274 286 +78 163 95 113 207 31 63 308 309 345 239 70 131 291 71 237 172 26 159 344 130 375 202 203 310 352 376 350 295 242 141 120 362 356 64 56 169 334 348 307 197 195 170 328 93 374 50 294 192 253 116 39 411 231 420 1 297 61 114 17 115 208 306 178 250 266 276 82 67 198 367 19 66 221 9 187 101 220 230 24 153 216 288 326 182 34 331 284 430 395 429 14 338 263 275 431 272 349 368 422 435 98 133 47 57 217 412 154 73 189 305 86 218 147 318 281 329 123 234 158 27 166 339 161 407 51 259 330 300 315 373 190 247 94 62 201 167 168 140 421 401 69 337 393 20 137 191 424 319 109 160 97 325 117 323 185 252 264 409 171 162 377 108 265 360 261 65 184 428 164 321 413 99 359 16 384 365 44 144 7 347 33 397 268 364 283 316 379 111 119 240 256 341 139 68 209 121 361 90 388 312 173 103 351 52 8 416 340 128 257 174 386 235 165 298 258 342 271 279 79 280 175 134 370 327 29 18 85 270 262 304 251 145 151 434 403 124 385 143 36 74 383 193 244 150 405 84 210 211 282 324 196 49 177 293 372 152 346 389 206 332 55 278 215 23 75 260 433 267 105 355 311 106 414 363 273 176 125 48 102 222 419 366 30 53 204 83 22 214 378 88 92 212 179 138 181 149 410 38 132 100 42 398 354 371 118 232 10 87 236 320 313 200 77 188 254 28 25 46 415 301 157 110 45 299 6 112 292 248 205 406 269 80 243 37 127 303 21 432 183 43 380 343 287 285 2 408 135 317 76 142 277 427 129 302 274 296 314 394 399 40 358 227 81 59 194 381 233 333 126 122 396 156 290 387 249 60 241 426 225 400 417 245 12 402 391 136 322 107 226 392 246 58 199 357 335 11 213 72 155 229 223 425 13 238 353 382 336 369 418 146 255 15 224 89 32 423 3 186 286 35 404 228 289 219 390 180 148 96 4 41 5 104 54 91 +50 376 159 338 163 1 116 63 202 56 340 237 203 272 134 70 128 346 197 115 93 101 77 265 198 259 133 154 379 231 351 82 412 334 309 52 310 264 67 282 78 360 293 359 411 95 189 147 308 348 352 386 230 130 294 109 220 331 113 345 430 94 151 207 20 192 363 31 144 409 234 377 239 34 312 92 131 103 373 123 44 374 64 295 175 98 250 261 285 393 39 7 141 190 349 61 26 268 253 33 266 414 281 365 297 362 420 51 14 170 298 71 279 291 161 405 169 305 172 258 378 278 332 328 10 368 267 90 99 367 65 24 347 288 9 210 211 318 208 336 247 218 428 188 57 79 302 326 275 323 62 195 260 276 215 325 100 350 240 66 139 38 8 329 339 341 256 435 87 121 313 16 383 178 48 28 164 174 176 47 23 138 201 111 364 417 398 86 344 385 410 422 216 356 403 415 45 46 419 200 361 315 292 152 284 375 301 342 235 6 108 114 354 40 73 431 97 387 88 30 137 242 271 106 119 183 43 257 358 150 236 173 193 167 168 217 155 397 149 179 29 221 229 424 206 117 69 191 406 245 330 187 165 418 209 381 394 22 156 283 433 166 396 270 136 277 143 2 319 432 55 120 196 194 162 199 413 399 321 53 366 273 140 184 314 177 426 395 25 204 232 370 327 214 407 185 85 280 84 427 60 262 125 42 146 306 355 252 303 307 263 287 145 37 224 269 3 243 68 343 421 248 132 171 304 316 416 402 76 380 83 384 335 233 129 102 148 158 246 17 353 382 127 254 21 317 124 205 135 222 105 74 126 58 372 311 290 320 153 299 289 324 212 160 241 333 434 404 182 371 157 251 296 223 11 401 181 390 408 75 249 59 35 244 357 72 225 429 112 389 32 391 227 89 122 142 81 286 118 388 219 392 425 226 96 110 27 255 36 13 91 369 80 400 213 300 274 186 104 322 19 228 41 12 18 5 49 238 180 423 337 4 54 15 107 +231 220 393 67 305 203 202 310 419 395 51 63 430 50 159 379 237 147 99 154 39 313 7 103 141 20 109 352 30 163 152 207 412 56 1 82 365 291 52 363 409 362 338 368 165 144 31 95 285 230 93 266 86 312 26 376 411 334 331 119 130 190 70 123 323 192 356 113 288 29 297 97 329 405 347 253 247 349 133 78 87 34 236 90 246 64 256 293 24 101 294 106 315 261 43 161 250 128 239 201 208 345 415 28 272 348 295 131 386 340 318 218 346 116 284 216 85 100 9 268 206 189 302 235 427 320 240 264 394 259 196 136 366 417 217 79 384 177 281 351 278 158 94 179 267 77 367 45 308 398 342 187 170 258 121 420 301 169 16 140 204 330 57 199 271 10 164 283 418 234 114 117 84 298 306 232 151 135 71 73 370 332 339 416 191 406 413 129 176 115 357 62 361 137 14 242 124 350 66 422 61 209 200 221 157 197 414 276 174 378 265 431 275 139 392 33 155 426 434 309 188 46 421 262 364 193 372 244 175 335 105 358 167 168 183 279 44 146 178 381 380 112 433 47 403 173 280 214 273 134 42 88 344 55 373 359 396 254 360 68 303 319 149 314 53 224 185 222 371 65 387 374 37 317 12 194 399 89 48 172 423 125 111 252 428 198 321 211 150 205 257 241 132 223 354 212 142 166 377 108 210 243 410 229 72 385 35 22 23 304 260 2 6 69 282 233 83 401 104 435 424 251 292 40 316 181 60 162 195 32 270 156 311 38 322 143 184 429 341 353 382 287 120 145 432 98 245 21 92 249 27 91 225 425 325 3 383 299 59 226 269 186 397 25 390 238 18 160 402 255 343 138 8 171 375 96 215 17 248 58 36 102 407 227 328 326 219 182 277 324 404 127 5 118 107 148 289 213 296 153 76 74 333 290 13 286 274 307 122 110 54 126 408 388 400 263 300 327 11 81 75 389 41 49 19 80 336 228 391 355 15 337 369 4 180 +101 154 203 52 202 331 113 165 315 93 163 82 338 237 130 1 412 63 376 386 259 50 430 348 159 64 94 334 78 70 144 141 384 197 295 187 310 124 250 116 128 51 169 359 294 170 39 133 207 99 239 222 302 360 291 220 31 115 123 352 242 361 272 95 379 350 339 308 305 164 198 297 201 53 131 103 62 288 208 258 56 67 119 340 411 312 161 409 309 318 261 227 190 26 275 284 90 20 225 106 405 298 195 216 349 218 253 306 231 61 204 114 428 397 109 427 179 356 234 367 192 226 393 365 278 381 71 431 380 362 223 247 357 172 345 422 260 346 57 363 66 265 183 73 329 368 326 230 413 206 374 435 378 341 236 9 281 34 178 351 266 311 147 97 84 86 193 373 364 229 342 191 79 419 173 433 254 276 257 344 279 301 35 343 184 256 125 100 415 188 366 77 282 12 425 244 423 271 322 117 424 320 151 85 232 213 7 267 262 13 420 134 354 270 88 166 417 414 241 8 283 74 396 137 407 211 403 177 268 347 264 121 290 10 210 233 196 111 317 14 75 406 120 28 375 194 313 104 240 330 235 293 42 217 171 319 23 33 16 145 136 323 58 40 30 421 273 139 175 299 118 292 92 162 112 321 24 135 46 69 327 238 387 245 200 89 416 408 37 395 249 304 143 316 181 418 426 43 156 228 185 155 60 140 280 158 432 377 98 389 221 307 55 372 303 287 17 38 6 160 219 394 5 199 186 167 168 214 146 36 81 332 29 149 333 205 383 358 434 243 224 105 87 314 209 189 252 285 150 47 401 110 174 371 152 45 370 108 91 65 335 132 22 48 212 27 142 277 3 398 157 399 385 324 18 59 96 215 2 248 127 296 429 353 382 32 263 153 289 328 68 72 336 11 182 255 83 176 126 269 122 325 102 41 76 21 25 148 300 19 251 15 246 54 44 410 337 129 404 369 4 138 388 286 391 390 355 180 274 400 49 402 80 392 107 +393 67 202 220 203 310 231 51 7 419 430 152 141 63 109 159 50 147 379 29 352 99 237 412 30 165 246 1 82 331 154 305 362 395 338 313 43 323 288 409 368 291 144 56 20 363 405 230 52 128 365 345 207 179 315 119 192 259 115 266 295 31 268 113 34 297 95 285 133 356 216 411 312 163 187 86 334 346 106 135 130 164 78 103 415 23 294 123 236 39 320 70 247 24 61 101 293 190 281 224 256 136 417 93 376 329 161 183 9 410 427 302 44 398 77 90 64 271 87 348 394 420 6 85 97 26 28 218 84 418 146 116 201 151 347 131 258 272 413 240 267 57 373 406 357 370 344 45 253 178 170 208 235 239 351 384 169 340 261 214 284 298 278 3 330 342 47 265 221 121 27 223 48 367 250 254 177 197 349 114 318 105 386 217 129 117 16 311 308 204 366 206 189 79 71 111 264 158 385 374 173 383 279 18 222 332 176 380 396 276 14 88 275 434 62 429 392 364 17 196 140 306 139 12 358 10 66 22 381 422 309 137 350 316 155 270 416 426 94 360 399 174 283 339 378 149 359 188 198 423 69 209 251 301 25 269 53 172 143 195 401 153 273 226 335 375 191 185 361 260 431 33 227 397 38 241 199 229 107 242 175 200 65 414 37 225 425 134 321 68 89 232 234 211 328 193 150 400 354 42 303 407 233 421 73 167 168 314 46 212 210 403 124 108 433 120 408 125 280 307 194 243 2 255 262 324 219 387 290 435 145 13 100 160 11 213 317 102 390 72 319 104 55 35 377 205 244 112 162 132 402 166 21 156 287 58 171 252 83 98 325 326 36 122 292 157 304 424 343 32 372 322 282 257 92 238 19 432 182 138 40 245 142 127 184 54 333 60 126 277 91 59 215 148 300 249 5 388 181 186 353 382 341 371 248 8 428 74 274 296 228 299 289 41 263 15 404 75 80 327 118 286 96 49 337 76 4 355 391 81 110 336 389 369 180 +377 237 66 272 321 139 334 108 131 291 296 93 64 33 208 234 287 150 295 253 346 159 163 348 57 203 113 239 202 331 127 82 220 149 1 50 101 151 260 345 312 190 94 78 412 356 275 351 354 27 379 386 230 144 63 326 116 178 198 65 411 20 344 294 73 56 187 378 28 278 197 247 298 338 130 114 422 177 414 261 360 308 359 31 79 86 115 431 120 95 332 259 352 52 375 428 293 40 240 266 169 387 9 170 85 335 185 51 262 100 14 311 424 376 70 61 430 256 109 363 365 173 367 156 68 301 258 154 134 350 26 323 119 306 175 340 307 252 133 216 267 123 380 276 232 280 41 161 118 201 218 16 420 407 282 343 339 310 374 349 192 384 128 105 184 381 284 39 92 373 264 71 141 318 215 285 90 174 99 147 309 204 257 46 117 140 37 245 368 194 361 421 305 196 207 413 97 242 211 409 125 191 69 283 103 172 24 6 77 193 55 250 106 84 315 122 341 372 434 297 43 158 88 415 281 153 195 429 366 329 199 241 279 233 47 81 200 210 432 235 162 22 62 155 137 176 268 166 167 168 304 248 417 179 342 171 148 87 38 142 209 126 362 7 403 347 364 32 10 383 189 8 72 74 30 138 427 328 236 316 302 111 337 265 121 401 254 145 353 382 206 303 288 143 426 136 317 102 221 45 433 164 244 59 314 124 219 243 416 313 369 370 435 60 290 231 188 371 320 214 146 238 330 98 277 299 289 44 270 21 48 83 408 327 34 405 273 222 67 404 227 182 217 25 58 398 292 213 183 425 319 2 5 12 75 358 418 205 355 249 42 333 13 406 395 385 226 255 181 229 152 423 419 165 271 11 396 397 388 104 322 4 325 225 157 394 186 112 36 223 135 402 76 110 49 17 129 399 410 228 357 160 132 89 3 35 96 389 251 336 80 263 91 393 18 212 53 29 224 324 300 180 269 400 23 274 15 246 390 391 107 19 392 286 54 +237 356 113 291 220 64 130 305 78 231 74 51 253 177 201 334 235 163 137 310 266 295 422 39 159 192 75 348 331 190 350 284 31 208 411 178 42 119 352 374 71 312 67 99 142 239 82 207 308 421 431 32 86 167 168 435 408 299 244 196 20 240 95 185 157 375 203 63 283 123 362 1 301 169 165 141 368 313 170 133 324 216 430 85 166 256 109 326 131 204 115 147 24 327 248 247 140 7 212 70 52 116 161 26 97 164 434 195 373 93 258 202 379 360 117 298 90 415 349 179 73 120 294 144 9 309 297 395 359 21 413 354 14 339 45 59 252 288 420 158 361 2 397 154 250 318 125 380 290 329 30 206 106 275 376 200 278 61 306 267 378 335 112 341 412 50 427 37 345 100 432 351 245 191 320 321 363 242 230 28 424 12 365 34 16 347 57 87 343 346 188 43 317 340 366 272 187 394 403 384 429 372 56 383 79 162 94 156 407 29 315 377 243 251 304 103 232 416 330 419 72 381 261 414 38 66 367 197 55 128 249 199 68 262 41 146 254 65 46 319 209 47 10 257 426 276 393 110 370 428 353 382 69 234 77 84 145 386 124 371 289 387 241 425 332 193 5 218 342 111 221 172 153 127 6 62 198 433 40 280 101 307 173 273 22 281 58 259 114 300 236 337 296 399 184 303 402 126 398 287 150 121 333 314 358 325 8 181 260 233 171 344 238 205 83 129 194 364 404 149 88 274 118 405 264 33 155 293 219 152 60 175 214 217 255 265 27 409 285 211 338 323 81 160 225 139 277 215 369 226 385 355 311 282 89 98 174 302 44 189 210 328 105 417 132 151 396 96 268 17 104 357 13 222 35 53 213 227 316 148 390 263 423 292 176 229 11 279 418 224 391 36 389 182 3 143 91 406 270 271 135 80 92 186 134 102 336 388 322 49 223 246 108 76 228 19 122 401 23 180 54 183 392 136 18 269 138 48 410 286 400 107 25 4 15 +431 424 329 284 283 103 315 180 81 159 294 173 308 170 426 291 237 248 169 369 64 203 247 144 309 334 141 331 65 128 354 376 1 414 275 413 171 113 295 51 190 362 239 71 202 90 352 73 130 26 411 350 20 78 120 161 258 56 240 208 194 9 115 193 31 163 345 192 57 288 50 39 187 298 367 119 318 293 250 394 379 253 172 220 67 117 149 46 378 351 412 340 82 370 116 131 196 321 430 397 164 175 61 178 121 363 358 201 123 326 63 312 10 305 349 207 95 70 230 79 99 154 204 368 297 301 416 256 272 428 232 150 109 142 398 366 211 118 422 415 267 420 177 16 218 174 206 216 191 40 360 346 133 197 106 356 330 34 344 7 339 97 338 359 287 399 243 263 292 45 348 386 74 427 266 101 264 306 32 233 114 199 387 165 188 313 261 28 139 341 37 235 214 179 278 310 147 210 75 262 112 433 409 62 276 327 22 307 380 24 55 195 209 290 125 249 384 27 198 244 385 59 421 87 432 217 84 374 52 137 66 47 93 145 419 43 160 38 77 60 314 407 434 371 98 317 347 205 41 166 156 364 140 259 332 304 58 296 365 381 273 189 42 158 343 393 14 212 86 236 342 21 392 285 162 257 252 400 282 2 289 323 328 403 302 127 153 401 157 361 167 168 260 265 390 102 111 176 100 18 417 152 372 333 373 221 375 88 316 148 200 254 30 241 299 181 300 234 319 105 124 185 108 245 303 353 382 126 35 138 335 396 69 134 129 146 94 85 395 423 155 219 320 6 418 151 406 429 405 8 238 33 383 231 435 110 36 135 44 311 89 408 281 223 136 4 143 23 25 242 48 80 268 324 222 355 29 225 132 402 229 53 279 68 280 255 251 377 184 425 96 246 72 410 224 357 83 271 122 227 226 183 277 213 186 182 5 13 12 270 389 337 404 215 3 107 11 336 274 76 17 322 92 104 228 269 19 54 388 49 325 286 391 91 15 +220 237 39 372 231 430 411 247 31 266 356 100 352 141 67 331 179 86 42 130 253 43 301 51 334 196 201 384 109 306 64 85 140 103 362 192 431 163 379 112 288 90 305 161 1 240 190 428 363 159 131 63 133 146 95 318 354 295 209 395 116 244 147 119 154 203 230 330 97 329 218 339 232 26 291 433 349 65 256 36 142 351 79 84 177 208 261 204 422 421 56 82 420 144 292 114 376 235 413 350 310 62 78 348 202 165 298 315 158 346 50 284 73 191 321 24 359 342 360 267 123 181 434 426 217 128 365 378 297 186 403 170 187 414 278 169 419 99 125 275 46 380 294 387 367 250 55 293 312 233 308 167 168 113 303 224 366 117 364 424 57 195 206 14 32 236 397 199 200 121 373 435 156 53 52 111 37 93 216 371 28 370 12 368 61 340 262 185 427 258 194 357 361 115 70 283 34 7 71 60 124 87 20 317 338 72 106 341 207 322 239 381 257 416 3 45 335 47 347 401 164 29 415 105 157 245 252 285 10 145 74 120 326 38 432 281 9 83 287 221 259 222 238 309 319 33 393 412 273 160 377 110 249 264 176 173 386 40 88 69 41 296 66 353 382 189 205 323 77 101 394 280 75 254 137 94 396 345 406 241 302 172 139 197 272 409 374 304 344 243 104 149 405 162 175 313 234 59 425 407 18 135 299 188 383 211 214 30 184 54 151 155 343 127 8 398 276 178 132 126 358 193 150 68 166 16 227 138 327 314 268 35 89 290 2 58 282 316 265 174 210 248 332 6 404 417 81 118 198 311 212 242 279 171 320 271 27 289 333 152 226 260 148 143 399 22 44 182 5 307 96 98 21 108 251 229 418 107 388 392 91 324 49 134 225 389 129 270 300 11 213 402 17 255 375 136 277 328 429 408 219 390 228 325 263 223 183 215 423 4 13 355 369 153 385 102 269 122 23 246 92 19 274 337 400 80 180 410 76 286 25 48 15 336 391 +70 63 163 237 310 159 93 50 78 116 295 113 114 331 207 250 1 31 231 203 220 101 56 39 430 291 348 197 202 356 234 253 141 144 411 154 131 95 294 239 365 305 281 198 130 67 201 345 82 315 422 94 360 115 192 334 147 9 349 359 259 86 187 20 362 230 195 97 235 258 288 338 64 412 66 128 57 189 26 257 240 134 117 112 306 352 256 123 242 264 7 344 109 377 103 373 247 297 99 190 216 284 368 350 420 376 275 14 24 261 393 52 267 61 119 268 133 51 351 414 312 367 363 100 161 169 208 121 170 340 272 218 384 196 405 342 265 276 73 236 435 292 217 254 318 167 168 184 222 16 428 321 69 206 71 379 90 77 372 185 323 85 339 271 106 68 162 298 151 270 191 266 431 221 347 136 10 413 279 53 62 182 244 325 37 313 407 225 386 421 204 227 140 12 79 30 329 346 364 389 330 311 232 166 308 158 175 280 415 172 120 174 332 215 36 283 341 361 108 401 395 409 152 27 139 179 92 173 87 46 293 343 55 88 124 178 209 425 233 262 165 319 47 176 278 320 111 137 301 374 419 226 34 200 307 282 416 252 309 326 223 366 65 427 385 188 143 299 29 44 45 398 417 403 18 260 211 378 333 285 322 28 105 210 40 43 324 433 269 193 214 74 205 125 127 424 84 388 212 336 317 303 156 380 17 241 273 251 38 229 58 245 177 300 22 181 146 434 354 370 33 224 304 213 118 21 302 290 328 296 23 160 60 406 2 48 375 75 183 89 287 76 199 394 186 157 126 164 316 228 13 314 6 418 357 286 142 149 383 381 397 155 194 145 410 59 153 387 277 432 122 399 371 246 429 83 358 25 129 138 135 98 426 238 423 32 243 8 80 249 3 353 382 132 255 81 396 335 408 72 35 15 402 171 150 289 263 96 42 248 337 400 110 355 49 107 404 91 102 104 274 219 19 5 4 369 327 11 41 390 148 391 392 54 180 +159 376 163 1 95 202 203 207 265 352 71 128 78 26 208 264 173 348 131 130 141 326 67 113 63 334 379 412 50 345 363 362 276 98 237 291 192 338 51 103 154 57 367 308 368 178 190 430 329 339 253 420 220 239 331 56 259 8 169 285 295 344 24 170 310 361 64 109 82 328 431 23 231 435 144 409 323 61 373 294 267 365 309 115 164 52 175 20 147 258 120 401 346 247 101 195 340 77 405 172 288 350 7 9 93 197 187 160 300 34 39 278 341 86 230 415 191 416 410 419 312 31 116 73 44 198 261 406 318 240 347 250 216 330 370 305 297 189 79 403 90 46 284 251 411 70 165 273 206 374 99 171 298 218 375 268 315 134 174 325 112 393 161 211 153 407 43 356 200 282 257 321 378 119 33 204 140 263 210 234 426 177 408 366 275 272 351 152 281 117 106 85 385 133 16 29 386 266 136 188 125 422 242 123 279 137 384 65 75 413 283 214 371 201 359 307 260 313 252 102 302 256 342 193 429 176 360 304 145 424 349 18 179 114 433 396 397 301 293 196 48 327 124 262 135 166 47 182 248 94 68 69 84 10 319 212 380 28 354 209 428 243 221 427 320 35 217 303 121 87 332 62 100 306 417 277 88 81 311 381 271 74 83 97 22 236 232 358 40 14 421 394 233 167 168 60 42 270 392 245 162 414 254 25 434 372 400 143 92 194 129 364 27 38 111 398 235 17 314 324 183 423 395 184 66 132 185 30 37 53 6 105 289 118 146 335 223 222 418 45 199 149 59 399 157 215 290 55 58 156 387 219 432 139 150 158 377 229 292 151 280 389 224 108 32 391 287 249 357 155 241 353 382 89 142 186 205 148 316 227 110 36 180 3 343 269 244 404 246 255 274 388 425 299 11 296 181 336 76 126 2 41 337 127 49 5 72 225 355 138 383 317 96 122 213 369 390 4 333 226 104 21 13 402 286 322 107 238 19 12 91 80 228 54 15 +70 294 413 190 230 291 141 113 237 114 50 305 362 195 430 411 202 192 95 159 216 297 359 360 31 412 260 235 334 253 203 120 163 161 384 345 1 250 93 187 82 295 331 101 129 86 119 116 170 53 415 292 75 87 344 210 288 356 20 78 348 97 258 220 338 121 64 326 71 106 169 144 379 74 134 43 194 351 247 278 28 341 211 218 73 240 56 9 90 40 313 130 123 310 46 275 301 308 131 232 152 254 128 204 39 427 196 45 264 378 340 352 311 428 142 35 236 100 10 136 94 103 189 244 312 323 420 350 222 147 386 256 321 333 434 318 284 285 179 330 398 115 407 62 227 191 197 397 375 343 69 257 414 52 242 380 365 137 208 422 154 201 158 419 279 44 265 99 14 332 32 83 239 395 57 174 178 433 416 423 268 324 55 63 354 393 231 252 349 124 88 234 233 229 155 79 276 394 381 367 401 34 207 172 339 238 214 309 262 246 58 126 421 431 61 41 243 245 118 228 72 417 206 432 181 316 374 435 315 60 198 389 283 85 293 167 168 370 317 363 266 84 306 241 364 81 105 408 16 26 366 213 112 418 271 290 319 249 342 387 77 177 281 376 24 405 89 261 30 335 51 358 182 327 175 248 6 47 21 307 399 280 424 140 139 183 347 361 302 304 368 171 409 8 287 406 76 65 68 282 199 125 153 2 336 429 270 426 166 209 217 298 92 5 219 156 267 173 322 3 212 372 320 66 143 272 151 37 127 149 371 110 403 145 164 176 13 193 200 186 296 27 138 328 59 98 223 251 289 185 314 150 373 303 109 108 135 42 353 382 165 184 117 188 215 273 337 7 425 269 111 390 346 33 388 180 22 224 15 255 146 226 263 225 133 132 157 96 38 299 259 160 277 329 23 392 162 49 205 80 300 67 400 148 221 402 274 377 18 48 17 25 102 286 385 36 383 410 357 19 404 29 107 369 104 325 122 355 391 11 91 396 4 12 54 +348 113 388 56 374 339 375 49 50 182 278 57 38 203 237 34 202 295 410 42 391 307 131 159 207 47 33 64 178 95 70 291 350 39 120 346 208 44 1 385 266 379 141 220 363 253 345 192 376 9 71 114 31 61 321 78 422 48 344 24 163 362 331 301 164 216 352 82 173 102 272 190 430 294 68 334 22 288 100 298 218 93 429 354 308 247 377 66 151 312 309 51 63 147 305 149 411 85 201 267 144 420 240 260 412 103 239 150 130 65 329 428 116 356 293 28 285 86 109 119 177 413 121 204 250 153 122 25 154 368 67 230 37 323 187 170 90 27 73 328 115 77 169 300 99 261 165 20 275 419 161 337 94 268 432 175 287 79 196 403 338 197 195 52 191 172 384 185 343 18 409 361 88 46 123 244 26 310 215 145 14 326 232 139 137 393 401 435 125 327 299 416 421 258 259 242 330 257 431 211 407 349 108 198 341 351 106 367 276 16 256 387 252 74 214 167 168 414 140 101 370 40 378 6 174 264 366 415 262 117 318 10 7 297 210 424 152 271 380 128 234 245 205 231 75 60 188 325 342 8 373 111 200 176 189 30 281 194 383 365 302 270 315 206 156 217 434 166 158 209 105 386 43 372 171 320 248 359 340 364 133 408 72 397 427 360 92 221 381 112 118 251 280 426 127 306 62 284 313 129 87 263 84 142 55 292 303 316 143 155 347 296 433 249 124 17 162 233 53 148 41 236 134 179 279 97 304 283 243 335 157 324 333 45 59 199 311 290 219 241 289 229 2 353 382 355 319 184 98 32 110 138 417 89 317 235 277 314 425 265 81 336 223 371 400 193 423 332 69 58 83 35 107 273 222 126 181 212 269 369 160 405 282 21 418 254 225 146 396 226 227 11 96 255 395 80 135 36 357 13 402 389 358 394 5 238 404 136 29 274 104 399 76 132 180 213 246 183 398 228 322 186 286 3 12 4 23 224 91 390 406 54 19 392 15 +141 362 31 288 350 237 192 64 253 258 256 244 34 26 167 168 384 61 117 39 220 121 50 216 239 331 330 217 221 95 204 356 113 411 191 164 147 368 165 119 196 214 125 51 209 203 99 420 1 310 320 103 430 85 79 187 185 218 416 247 154 235 232 352 67 201 261 339 86 231 319 90 298 28 318 276 207 161 295 379 240 393 202 341 370 333 57 297 145 124 160 343 252 116 257 349 179 250 317 395 59 93 110 159 56 70 114 315 305 7 422 131 9 206 100 83 354 383 306 144 128 303 412 304 30 421 58 140 291 346 177 52 312 37 14 294 123 106 73 60 166 243 374 351 169 82 403 366 275 381 200 230 170 208 109 156 249 365 278 414 130 413 10 43 225 307 226 222 112 63 118 313 284 190 380 373 363 120 435 340 142 94 45 66 236 427 158 428 163 266 432 387 335 133 69 33 348 345 267 378 344 367 425 405 20 262 431 301 360 44 419 280 424 234 27 197 415 71 300 233 77 151 143 241 329 199 2 38 137 292 65 342 406 385 434 407 195 359 265 273 29 188 22 162 46 398 173 16 40 184 227 347 186 264 314 97 193 361 293 111 205 254 105 426 78 18 48 375 148 364 290 84 13 371 72 53 127 386 245 334 47 259 101 21 181 229 372 198 401 8 178 251 402 321 323 242 62 224 397 357 32 194 299 433 308 146 309 24 12 287 115 213 246 152 149 6 182 311 283 75 68 389 223 74 248 289 87 155 157 394 332 400 104 376 296 55 408 126 150 409 36 272 410 25 5 327 183 388 353 382 396 88 404 423 429 3 139 228 136 268 23 211 238 328 316 326 270 176 338 399 255 91 322 153 89 135 215 175 122 281 210 132 277 108 172 285 392 391 302 219 171 355 271 174 129 42 417 358 324 377 4 260 134 107 80 49 102 390 54 212 81 92 189 17 41 282 96 325 369 418 336 11 76 269 138 279 263 35 15 98 274 337 19 286 180 +159 207 163 95 103 78 352 365 130 239 367 237 308 331 334 345 203 113 291 141 208 50 1 178 376 368 202 259 218 169 247 20 170 258 373 31 115 362 310 67 253 363 261 297 192 128 350 329 63 348 131 173 284 407 133 61 26 276 325 153 57 197 154 64 412 7 82 430 298 56 220 147 323 166 338 144 71 34 309 116 230 294 324 212 397 328 420 172 195 39 318 408 374 198 426 51 161 99 435 268 52 346 282 16 193 98 312 431 344 411 409 295 216 356 74 316 75 361 90 242 137 288 24 385 190 248 271 272 347 422 9 278 206 14 370 231 379 283 405 349 101 86 191 114 117 375 109 196 187 293 177 267 393 270 151 305 266 251 66 162 326 264 416 360 304 273 164 171 84 73 359 205 319 285 252 339 265 386 106 119 307 240 223 429 123 315 201 124 250 70 351 256 341 28 306 23 111 79 214 313 366 77 243 299 320 330 378 160 217 275 428 384 188 419 93 281 421 413 415 85 121 383 140 44 120 434 189 244 132 340 204 165 274 175 167 168 403 17 97 358 303 424 65 129 342 234 179 118 209 222 279 200 46 102 321 33 381 184 38 48 387 145 221 60 25 43 88 380 302 62 59 22 158 87 58 69 152 47 30 263 125 199 396 194 112 433 254 235 427 262 333 398 232 432 36 394 139 6 236 10 29 257 40 399 280 292 260 227 354 410 83 364 327 377 35 233 372 11 425 94 176 289 311 211 2 210 215 37 401 353 382 156 149 317 269 255 301 300 245 8 55 150 134 183 337 68 423 357 174 12 287 225 105 45 314 89 81 402 185 213 417 143 335 241 219 332 226 21 27 249 371 229 414 157 246 42 404 146 389 135 126 110 224 53 127 406 296 290 155 19 343 180 100 277 108 80 355 238 92 3 148 395 104 32 390 228 418 322 186 13 182 138 5 142 181 136 76 388 122 18 336 369 4 96 72 41 392 391 91 400 286 49 54 15 107 +101 154 338 52 237 1 53 93 203 31 331 159 259 340 163 64 412 187 346 202 51 352 63 50 378 94 100 82 113 253 109 295 144 430 208 77 131 26 141 366 242 130 275 376 116 197 379 124 231 78 220 258 70 256 191 363 103 433 179 192 204 386 128 267 368 218 198 133 245 247 422 260 169 79 294 349 99 384 170 46 319 67 334 308 361 348 250 362 318 216 196 261 106 347 351 288 201 431 115 367 65 403 90 297 239 121 315 312 298 114 365 310 95 123 147 232 119 125 350 326 356 291 28 330 332 61 415 290 343 39 190 420 7 339 66 377 178 413 34 303 414 37 373 177 207 428 321 272 84 161 234 85 359 302 117 416 240 333 266 175 341 156 10 57 360 16 6 40 281 309 411 435 195 73 345 293 424 62 199 188 58 381 172 317 206 305 118 278 230 33 408 209 282 173 244 162 276 262 145 427 380 20 3 134 301 14 374 185 56 279 184 86 419 257 120 344 110 426 421 233 432 307 146 287 241 43 214 329 273 9 229 166 194 60 357 370 112 342 222 127 264 335 285 409 364 235 277 354 38 224 268 97 151 304 158 167 168 397 160 181 407 59 2 252 221 164 111 296 200 96 405 372 226 165 104 139 137 236 32 98 30 289 69 425 306 105 174 140 29 299 71 155 320 8 149 92 371 375 22 108 271 132 83 396 417 243 387 434 205 254 284 45 171 383 225 148 313 265 406 213 249 24 300 311 393 13 89 135 186 68 88 12 21 17 270 23 280 74 47 176 398 292 91 353 382 150 189 143 42 314 217 27 248 72 227 238 418 157 152 193 223 212 327 429 395 11 211 183 75 394 215 358 404 142 87 126 402 81 263 323 5 41 399 153 283 385 369 219 76 122 210 255 182 389 316 35 401 44 388 269 228 54 55 18 36 325 48 328 322 136 336 102 390 324 355 423 49 4 15 19 400 107 337 138 25 251 129 80 246 410 392 286 391 274 180 +31 39 62 237 162 111 187 275 411 250 331 95 141 64 364 56 177 291 413 50 90 416 103 373 362 318 305 363 258 294 297 190 247 79 82 367 387 113 430 371 169 170 295 239 163 9 119 192 271 203 178 199 123 334 288 220 78 201 121 386 315 330 126 28 268 266 144 125 354 11 207 84 204 159 267 352 1 218 366 99 306 128 202 379 378 61 208 321 131 161 249 339 164 26 20 16 130 257 350 261 259 424 303 298 145 147 137 343 116 57 179 216 230 349 341 165 240 403 101 368 209 256 412 34 196 117 73 308 66 270 433 235 232 110 47 356 133 6 24 191 325 273 365 284 397 206 193 420 421 154 370 114 120 88 253 351 299 361 301 22 63 10 435 340 426 431 422 70 51 254 243 269 264 181 166 43 205 244 329 316 432 194 380 7 38 197 106 93 115 42 139 304 328 338 312 86 214 265 278 384 217 105 151 233 52 262 222 348 360 155 290 359 281 100 395 58 85 415 374 109 55 156 326 71 75 346 293 317 342 223 409 200 309 150 372 283 274 414 394 69 227 381 428 46 310 226 248 74 287 32 132 241 327 407 160 27 124 376 221 383 282 167 168 347 37 276 320 175 229 97 242 183 142 13 195 425 94 59 185 210 211 17 236 153 333 149 174 251 358 198 14 279 172 112 353 382 406 67 302 296 21 23 12 219 77 272 323 402 45 48 324 140 408 25 401 345 171 427 213 118 252 158 398 319 405 3 173 313 87 184 40 2 60 225 314 81 292 65 285 36 53 434 127 429 234 332 417 41 224 399 389 33 423 231 157 396 344 176 122 188 44 245 135 337 102 186 5 280 19 335 289 377 146 136 355 311 393 148 228 35 98 388 68 307 18 212 134 108 375 30 8 129 89 410 400 418 390 255 419 238 404 83 189 385 215 80 76 104 72 300 143 182 96 4 357 29 260 322 107 138 369 336 152 92 392 180 277 49 263 91 246 391 286 15 54 +141 187 350 31 291 131 64 362 237 288 192 298 26 331 276 39 356 130 258 113 221 202 56 57 203 27 239 201 315 117 159 411 147 217 386 435 164 360 253 359 310 1 297 79 95 208 334 204 179 73 62 50 295 420 78 348 259 197 88 367 265 144 198 161 368 119 163 430 218 9 312 373 374 345 65 387 304 23 169 340 321 124 207 128 256 90 190 343 184 352 330 191 318 220 250 170 28 125 140 51 376 306 326 384 209 193 18 116 99 247 82 341 235 7 264 412 48 165 354 363 413 25 329 230 20 118 71 428 294 272 364 22 173 240 52 257 344 422 206 120 154 121 106 111 93 145 216 323 188 63 379 284 242 261 156 185 275 101 365 166 346 214 61 303 307 84 378 320 109 70 383 351 409 249 114 160 414 370 55 426 397 47 361 421 175 427 69 424 375 103 196 309 406 67 349 38 110 332 401 229 339 134 308 14 66 43 431 94 177 434 34 403 317 236 262 300 42 86 299 416 123 328 233 243 266 244 393 143 366 97 305 408 2 85 167 168 33 195 171 172 327 16 58 155 389 10 232 183 410 200 122 37 398 400 381 333 75 222 162 127 45 126 432 278 252 186 273 46 3 77 102 150 211 283 280 98 285 226 419 245 44 433 251 380 87 21 137 313 338 149 210 355 178 13 139 59 74 281 388 223 394 181 224 290 319 133 289 8 415 199 115 429 112 30 405 60 282 287 417 347 4 108 293 146 225 40 234 142 267 302 314 241 296 194 423 157 136 425 129 36 254 395 335 385 105 213 227 231 271 238 148 12 100 174 248 358 301 342 279 29 68 158 153 292 270 135 268 399 81 151 182 17 89 72 377 407 219 316 24 176 311 76 418 35 32 391 396 260 277 83 6 104 92 324 372 402 246 11 205 152 371 107 5 369 357 269 353 382 189 263 53 337 325 41 228 49 132 91 404 180 322 215 390 255 138 274 392 212 19 80 15 54 96 286 336 +272 377 260 237 346 50 295 93 33 208 350 131 113 351 198 334 348 82 234 202 64 197 220 308 1 151 94 100 163 116 101 63 379 277 203 92 239 218 66 77 52 159 428 78 31 70 298 331 375 340 56 130 95 253 216 381 412 301 172 339 275 231 154 139 261 293 150 26 65 230 359 349 360 247 207 259 187 266 309 57 386 250 376 374 133 352 99 79 345 312 192 40 343 258 149 178 380 141 411 169 115 338 46 103 85 156 367 61 109 354 170 332 356 420 292 144 294 435 378 282 191 242 108 422 28 190 409 39 414 257 319 341 51 321 291 318 140 287 215 123 363 307 184 134 10 147 38 347 127 256 120 413 20 290 86 106 368 328 353 382 232 302 361 126 329 362 403 296 240 278 264 196 167 168 175 336 432 267 173 245 119 430 53 67 344 281 204 280 161 310 330 90 37 326 241 416 304 288 235 128 124 83 105 199 6 14 373 185 303 262 206 370 166 387 16 73 34 384 217 193 195 306 209 146 365 194 201 158 125 424 9 121 188 323 327 279 177 415 317 164 137 114 364 145 315 305 41 42 111 276 236 171 372 333 179 233 419 88 200 117 8 407 7 59 30 335 285 24 60 433 426 273 243 43 297 142 62 366 289 84 429 162 268 244 160 32 112 118 97 211 155 72 55 58 69 165 316 221 393 265 311 421 313 2 342 132 431 284 210 122 71 252 110 427 337 214 21 205 417 87 254 98 174 74 434 320 271 181 299 248 383 176 68 186 229 157 129 81 355 249 263 389 183 22 219 45 222 153 27 44 152 75 89 223 182 270 388 48 325 283 425 405 143 371 29 189 406 394 47 255 418 408 96 5 314 397 148 358 49 251 135 398 25 226 396 369 395 136 227 76 3 225 104 300 399 213 138 13 11 224 402 269 102 423 404 36 91 401 17 80 238 410 12 35 385 357 246 18 228 391 212 23 324 390 322 4 274 180 286 400 107 19 15 54 392 +203 154 338 52 202 331 101 376 163 430 1 315 165 220 159 128 141 51 116 82 93 379 412 144 237 63 53 50 67 310 259 340 190 295 323 64 258 99 187 94 103 352 77 231 56 106 115 222 133 201 119 288 346 207 305 216 35 124 297 39 378 302 309 247 423 350 318 427 311 362 164 31 204 239 161 225 266 298 431 312 359 95 170 131 320 109 308 405 192 169 97 90 130 208 360 363 365 61 342 256 227 261 123 113 366 267 254 380 428 367 244 253 179 211 351 223 236 226 7 86 419 409 291 348 411 334 339 276 12 272 71 197 403 384 250 393 147 354 78 357 66 188 173 210 284 121 175 330 322 425 278 100 386 177 85 265 241 125 26 79 381 329 84 349 415 397 356 422 120 373 414 112 57 294 275 213 232 62 34 293 13 14 9 134 319 73 46 361 58 433 245 28 196 218 117 70 230 281 242 229 341 200 30 198 24 282 185 264 206 262 408 424 88 43 238 343 283 240 191 219 114 178 317 111 29 395 368 345 40 435 332 235 209 421 301 401 155 321 8 20 65 344 347 234 151 137 370 257 385 268 156 285 89 145 417 5 313 166 271 195 426 387 273 74 104 279 193 205 299 60 194 228 172 406 233 374 183 75 102 10 407 38 140 136 33 243 83 135 396 290 143 217 333 364 174 377 199 162 249 158 16 176 371 413 314 252 37 18 292 214 432 139 184 146 23 418 42 105 303 304 68 260 306 316 270 224 47 98 420 181 48 416 167 168 248 72 149 189 335 171 372 326 280 434 152 287 212 150 118 394 6 307 3 353 382 182 289 157 277 25 186 45 127 110 59 410 132 383 328 22 142 336 87 15 296 54 160 91 17 126 92 358 96 300 44 398 263 392 429 108 221 148 32 246 389 81 27 399 69 55 36 2 11 138 255 325 153 375 269 324 21 41 355 122 49 215 404 388 327 180 76 251 19 4 391 129 286 107 400 369 402 390 337 80 274 +261 63 262 184 163 366 280 331 237 267 220 141 82 202 192 376 203 351 174 64 70 39 334 211 31 379 362 189 350 159 306 133 295 431 312 190 253 288 26 93 77 230 259 1 411 61 349 308 247 103 175 281 78 428 210 346 266 416 365 239 57 154 169 116 67 144 101 352 46 310 279 14 170 330 412 354 342 66 130 117 258 217 7 340 43 345 71 363 56 176 430 9 208 414 294 275 95 99 51 422 201 232 309 378 207 356 94 86 332 424 161 73 119 420 216 305 177 291 123 50 191 147 318 173 298 368 167 168 90 413 28 293 315 284 134 20 240 285 131 204 384 140 195 245 323 79 297 302 256 200 344 235 209 113 179 348 321 109 115 172 40 187 106 52 250 16 314 196 164 272 367 338 85 36 359 360 165 83 401 128 10 415 112 114 108 178 319 311 97 60 120 234 283 100 373 197 377 188 427 218 139 339 171 194 121 254 292 290 380 87 244 111 185 328 231 329 156 6 136 205 102 343 317 118 149 137 45 206 59 125 276 55 409 341 421 353 382 257 333 268 38 98 381 252 158 198 394 84 150 278 34 387 138 307 423 347 273 335 287 65 313 395 157 221 68 160 407 146 135 432 325 374 361 24 393 316 214 386 151 233 320 260 88 435 372 371 126 199 398 301 304 399 434 105 162 326 58 403 282 74 193 166 22 383 183 426 124 296 110 37 370 303 264 289 263 224 433 155 222 33 405 397 429 47 30 227 81 2 69 92 236 241 145 417 76 358 80 212 29 21 152 229 44 27 243 249 127 17 223 32 153 265 96 248 419 142 271 402 143 23 396 181 357 25 18 148 75 225 53 406 48 182 132 336 62 3 408 375 299 35 226 270 277 72 322 12 418 425 8 390 219 11 89 242 104 327 42 41 300 364 13 122 186 238 388 269 255 404 213 286 410 251 389 228 400 246 324 5 337 129 385 49 215 369 355 392 91 180 19 4 15 54 107 391 274 +50 67 159 203 141 163 202 237 352 294 113 63 393 31 1 147 103 95 128 362 315 379 207 56 310 411 331 154 368 288 192 247 412 82 231 24 39 61 34 363 220 70 259 7 78 305 348 187 131 151 373 291 430 109 51 376 64 26 99 208 216 409 230 253 114 93 130 258 338 339 101 218 267 144 52 297 365 295 268 329 272 239 356 345 20 334 133 33 346 116 261 374 256 121 293 178 190 170 265 410 169 123 242 306 397 285 57 330 111 197 278 367 29 165 384 419 284 90 435 161 266 312 250 23 413 318 106 195 115 62 276 9 117 271 415 361 370 200 401 275 94 308 264 244 341 407 44 302 86 349 66 119 28 344 364 375 137 324 420 201 217 198 30 223 18 196 152 162 281 125 79 386 214 71 350 377 257 85 145 134 323 422 240 189 340 319 236 27 209 416 300 342 164 251 403 47 48 298 14 172 73 16 167 168 431 328 120 204 97 84 139 307 270 385 234 351 366 177 332 38 77 150 182 428 388 395 6 100 394 398 347 232 136 173 205 191 88 316 424 112 149 166 283 325 212 301 279 260 360 229 124 309 378 221 46 406 433 10 359 183 235 280 417 358 282 188 68 155 8 405 381 292 160 193 427 140 108 194 313 429 273 372 252 383 179 421 320 343 87 37 153 60 135 321 69 399 65 45 426 269 53 158 245 371 25 354 17 304 314 317 303 262 122 43 387 333 2 222 176 206 74 36 83 75 55 414 199 132 380 11 22 185 92 81 299 254 184 326 243 107 432 42 105 418 402 225 89 156 287 40 98 58 226 233 215 143 396 49 434 389 174 129 175 211 246 248 21 210 241 290 102 4 274 408 425 127 296 357 213 181 59 171 277 327 118 336 249 322 13 12 390 400 337 391 3 157 224 142 353 382 32 126 35 335 355 186 146 263 423 110 227 76 148 255 289 311 219 80 138 238 96 104 72 404 369 41 392 286 19 228 91 5 15 180 54 +431 315 284 103 329 237 424 144 283 154 159 64 331 116 203 239 101 141 250 39 81 294 31 295 1 50 128 26 258 298 275 67 187 117 349 426 63 52 123 411 291 20 70 115 192 163 78 318 113 308 202 130 362 82 220 109 253 338 201 65 164 121 247 334 369 7 173 412 179 376 165 51 340 233 161 99 90 351 204 259 79 310 430 288 197 367 386 170 306 133 350 147 352 131 208 93 413 218 363 56 119 356 169 346 61 193 297 379 309 216 244 256 207 420 368 240 312 261 180 196 16 342 191 414 293 257 190 272 206 305 422 267 198 360 378 156 84 409 46 124 235 106 359 10 366 232 222 365 265 95 243 185 195 37 77 361 301 403 73 317 264 188 354 94 339 162 242 149 230 127 209 249 345 62 236 433 114 125 172 303 248 276 380 14 66 9 343 58 330 158 231 393 217 341 194 241 419 347 421 287 364 12 97 245 226 373 425 234 372 397 177 69 145 273 175 205 254 53 348 71 112 292 266 304 199 415 427 146 321 134 225 289 57 45 40 262 381 432 407 370 34 394 333 377 111 221 416 214 314 38 302 260 428 320 200 281 28 160 358 167 168 150 140 86 2 296 398 384 139 435 178 290 405 319 332 21 27 166 60 282 30 278 36 22 326 344 374 307 387 399 151 181 157 189 88 383 142 229 223 174 100 87 59 313 311 299 43 96 85 224 24 55 371 118 171 423 213 29 227 353 382 120 211 110 357 252 13 105 417 268 47 32 285 396 176 6 136 42 72 74 401 132 23 402 406 210 89 280 279 355 137 108 184 434 335 186 263 300 75 219 418 155 322 33 395 3 143 271 215 327 8 277 35 104 18 126 135 148 48 389 390 323 138 385 98 238 152 328 408 212 251 375 316 122 336 17 228 183 83 270 68 92 400 153 324 25 255 404 80 129 102 44 429 5 269 107 246 41 76 182 410 286 15 4 91 388 54 19 325 11 392 49 274 337 391 +431 315 284 424 329 103 237 283 159 101 331 187 154 295 308 64 203 144 239 81 141 116 52 31 163 50 250 309 258 70 426 338 202 1 130 63 78 253 82 113 170 169 115 220 412 275 193 26 173 369 93 349 247 180 123 179 201 192 216 294 430 411 356 208 350 360 128 242 376 291 340 119 65 248 359 305 334 56 197 298 420 352 99 244 362 422 367 318 288 7 67 117 133 161 61 90 207 310 106 20 204 131 39 109 172 312 190 368 198 351 261 94 297 222 240 272 95 379 46 218 165 16 235 124 58 226 62 121 348 380 84 413 363 51 71 164 386 241 343 421 306 225 206 188 414 342 79 37 196 326 378 158 254 227 345 415 361 53 317 273 162 12 10 409 231 259 267 14 178 175 346 287 347 9 320 97 293 73 397 339 232 405 260 57 341 185 321 191 433 234 384 147 425 364 354 171 230 86 195 149 233 373 370 156 256 166 407 40 114 199 66 27 194 333 265 262 257 311 302 213 281 432 435 366 13 266 299 85 330 428 167 168 189 125 177 427 319 236 160 307 127 249 140 146 245 381 365 264 282 145 344 314 292 290 252 304 43 406 134 263 313 205 23 24 296 278 416 403 100 74 419 243 118 303 209 394 393 224 22 374 77 372 358 150 34 276 21 60 357 2 211 174 214 289 200 229 139 120 111 301 59 371 30 396 137 217 398 112 98 88 417 327 45 387 184 383 69 151 142 300 210 335 228 75 377 399 238 3 408 28 355 87 223 401 280 221 353 382 434 219 35 322 279 36 143 181 55 38 17 418 105 6 423 268 285 96 104 176 32 29 328 155 5 110 375 18 108 157 395 212 126 402 42 132 89 186 72 323 33 136 135 215 429 47 332 389 8 138 83 277 271 183 400 48 92 129 153 385 68 148 80 251 392 404 390 270 44 122 25 152 91 19 255 316 4 246 102 76 324 107 336 337 15 410 11 54 269 182 286 325 41 274 388 49 391 +331 187 63 237 82 203 295 101 154 163 220 430 93 113 52 202 315 412 50 70 338 231 165 144 310 159 51 379 116 250 67 141 31 94 99 222 227 201 380 348 334 130 225 64 256 226 281 386 119 242 305 131 133 78 56 297 239 179 123 128 241 356 258 197 109 208 405 1 261 103 169 259 431 409 207 97 66 106 359 12 115 384 360 411 170 254 26 352 291 114 312 349 284 340 247 351 275 161 311 124 190 272 213 204 198 342 184 236 339 53 288 415 253 318 117 35 95 90 218 302 86 73 308 39 216 367 298 7 192 376 196 13 425 267 234 350 257 320 235 322 61 363 57 427 79 306 428 321 417 329 393 9 343 62 206 223 244 362 84 365 14 238 85 240 146 147 419 195 357 262 121 373 377 20 34 164 229 346 294 191 422 435 137 309 183 414 266 88 361 189 175 341 366 317 283 173 378 368 111 424 423 166 403 232 230 100 418 387 193 5 420 345 228 397 408 136 177 43 260 224 219 37 278 372 433 395 10 276 172 74 139 323 205 279 282 209 396 58 364 313 162 71 151 155 125 401 185 181 301 374 293 112 200 344 330 290 27 16 24 354 29 118 104 65 319 89 46 303 143 188 333 30 150 77 426 174 186 332 268 264 326 156 413 120 406 140 221 105 265 370 347 217 314 75 149 199 42 273 280 233 287 214 178 211 245 249 299 68 381 134 3 28 371 432 307 40 33 248 271 389 167 168 292 23 416 421 157 69 135 127 210 18 194 158 17 142 145 270 296 38 171 243 394 215 407 126 110 434 32 304 325 176 47 335 55 108 92 6 160 132 277 59 285 212 36 375 98 252 87 81 45 8 60 383 385 83 22 72 398 327 324 358 15 21 2 182 48 91 353 382 152 255 316 399 286 76 404 138 4 289 251 107 122 429 44 54 41 148 96 300 369 328 11 25 19 263 153 246 336 269 102 388 402 400 337 274 129 392 49 355 390 391 410 80 180 +113 348 375 374 295 56 356 253 50 141 42 71 203 237 164 350 291 220 64 31 339 39 57 165 192 331 307 159 422 294 202 411 163 309 308 288 169 82 120 362 67 239 93 170 119 130 94 178 376 310 435 421 131 187 207 185 216 147 61 70 201 27 429 44 329 266 38 1 34 95 65 345 18 326 344 78 354 63 9 379 240 430 284 412 167 168 109 218 341 334 161 431 52 305 312 26 327 420 208 278 51 385 172 363 24 410 190 252 116 360 247 99 315 47 231 359 258 352 321 235 275 111 88 434 230 204 391 33 373 133 256 428 383 114 424 250 268 121 154 413 22 283 409 173 298 140 106 90 306 128 115 407 193 102 196 177 380 197 320 301 144 388 214 66 179 387 251 46 117 368 85 384 142 300 12 123 101 137 244 318 261 7 297 37 158 260 403 86 346 171 105 271 75 74 182 153 330 48 259 265 367 198 191 328 157 14 16 257 263 30 29 28 145 299 62 68 401 432 79 112 20 323 427 72 349 340 175 2 206 150 222 221 103 229 426 97 149 166 162 264 25 338 55 84 43 100 143 361 53 272 49 209 270 370 195 135 267 302 285 217 125 242 365 416 248 351 343 226 415 337 364 319 303 21 241 124 400 32 200 397 381 155 17 372 73 395 287 314 393 98 45 313 59 408 378 317 273 234 77 92 236 280 269 23 433 342 139 245 316 233 188 366 419 225 243 10 417 8 335 347 394 122 156 107 35 87 414 386 232 249 69 211 425 127 4 40 276 227 6 262 215 304 405 293 389 126 406 11 371 210 160 292 398 58 129 36 5 333 89 219 60 83 290 254 194 174 213 81 146 181 281 13 311 418 184 377 148 41 296 108 396 151 110 176 289 357 392 223 183 402 199 224 423 358 399 228 274 282 332 369 136 238 189 205 3 353 382 134 132 118 355 325 246 212 324 279 404 152 322 180 96 255 277 186 138 104 80 390 91 76 19 54 336 15 286 +237 50 33 100 66 113 377 56 351 61 374 272 348 131 266 308 220 346 70 295 116 292 57 159 379 352 78 208 293 39 64 339 24 103 218 309 354 350 95 63 363 275 312 109 375 178 203 163 151 431 428 85 77 345 334 216 329 82 150 172 261 202 359 147 368 291 65 141 207 247 360 130 114 250 134 51 278 175 362 93 28 411 253 414 376 230 167 168 380 301 416 192 191 356 321 407 42 260 234 86 111 149 185 120 299 31 239 122 38 68 288 99 298 1 267 26 331 10 420 343 198 190 373 144 344 429 169 115 287 305 197 204 67 94 158 140 105 139 422 170 7 92 177 244 231 430 424 280 240 6 121 381 372 323 297 211 22 370 71 336 108 412 173 154 328 310 201 258 259 330 384 341 195 119 106 20 37 9 349 101 383 435 367 196 209 162 307 432 426 43 327 47 34 137 73 365 347 294 210 161 248 166 90 88 79 16 262 256 14 46 153 361 257 366 245 128 11 205 290 83 403 302 364 179 187 421 387 74 318 52 232 127 156 413 340 55 385 145 102 335 241 284 338 133 146 296 409 72 123 281 40 279 315 378 18 171 326 303 342 320 112 30 125 62 277 53 152 184 2 75 283 325 164 44 313 300 337 433 215 174 406 332 27 434 8 117 176 319 285 87 353 382 235 60 252 59 200 282 264 188 81 415 221 199 401 419 410 236 155 189 333 206 388 386 427 217 41 32 194 242 84 97 233 49 405 222 193 306 182 98 268 214 142 165 408 69 249 273 317 45 393 316 254 395 21 265 263 304 225 58 17 229 157 355 148 243 224 289 311 212 124 29 89 3 371 226 104 12 314 402 369 276 219 110 181 118 425 417 5 397 13 129 394 48 213 126 143 392 227 223 132 160 398 271 251 107 255 35 138 136 25 357 91 186 76 324 423 238 389 399 4 270 358 36 19 418 404 80 228 135 96 322 400 269 180 183 391 274 23 396 246 390 286 54 15 +220 356 291 113 201 237 64 350 119 239 140 295 203 431 308 51 39 345 187 159 202 82 331 422 309 354 253 141 192 178 429 31 26 190 131 12 120 99 430 434 196 193 362 344 305 109 247 412 179 349 57 307 284 169 352 67 321 310 130 170 173 256 312 163 42 85 208 368 71 32 240 421 320 367 95 334 86 9 330 142 204 348 18 298 106 283 185 66 380 359 43 117 360 167 168 231 435 411 300 177 70 207 374 235 427 191 326 258 78 165 294 146 426 61 409 63 407 128 420 401 46 22 363 315 318 56 416 221 313 59 379 47 161 341 7 335 266 93 370 218 1 288 27 395 217 248 24 301 68 50 230 297 90 351 102 153 157 164 250 172 144 30 414 408 386 97 171 135 166 74 195 16 232 28 424 72 103 254 100 419 252 375 241 88 339 343 79 405 415 29 275 346 393 112 123 384 75 365 94 296 206 261 147 62 328 118 73 299 37 10 317 340 366 413 236 225 378 116 83 14 162 428 21 137 25 304 373 376 433 244 158 323 329 303 267 311 224 121 55 251 111 372 287 20 33 129 200 160 226 425 199 214 48 403 302 2 347 234 122 87 257 306 263 114 319 290 327 264 285 242 154 156 262 273 406 353 382 219 333 417 41 381 110 175 222 105 155 216 383 115 98 227 125 84 388 243 276 133 272 124 58 127 265 134 149 278 44 387 5 229 23 281 3 139 432 38 181 52 410 391 268 13 81 238 209 249 65 35 289 184 338 145 213 69 197 332 150 233 188 314 337 280 174 176 361 418 260 423 101 245 342 6 60 77 364 107 371 40 316 89 271 136 205 357 148 394 45 152 182 385 126 194 255 397 404 223 228 186 198 369 4 108 132 11 355 34 270 277 398 392 215 377 104 180 325 259 246 211 8 96 49 17 189 399 400 210 92 396 279 269 53 80 36 212 282 402 358 143 183 292 324 19 322 389 91 293 54 76 151 274 138 390 336 15 286 +266 352 67 383 237 288 141 111 362 379 334 51 373 203 192 7 159 220 11 261 331 44 325 17 39 205 247 411 178 231 351 253 24 103 26 147 202 50 209 308 34 77 363 6 164 165 297 116 63 350 85 346 393 56 218 109 38 130 256 354 65 368 356 31 305 169 239 312 121 170 309 86 64 230 163 422 419 196 84 28 366 345 128 161 299 119 365 430 329 144 154 258 416 99 421 190 1 280 409 153 43 267 294 177 14 293 100 429 82 310 78 340 201 290 376 298 330 386 188 187 52 20 175 274 306 90 179 22 117 217 374 30 137 395 426 79 19 46 150 275 415 123 16 313 9 221 240 378 113 428 291 435 370 295 342 47 57 66 208 191 319 37 292 272 284 380 162 204 412 318 420 262 323 23 244 341 29 207 102 106 410 397 149 248 434 387 133 131 33 158 95 167 168 414 252 326 384 343 115 212 199 338 155 61 140 206 211 278 145 285 431 60 301 101 125 200 315 283 367 114 317 173 327 349 432 2 185 250 394 232 45 55 146 324 42 105 214 87 53 171 347 381 385 195 216 197 403 184 245 10 359 210 74 360 321 83 424 152 120 122 62 335 160 361 364 40 375 303 344 156 348 279 172 235 259 71 73 70 264 427 151 398 328 143 139 273 75 157 302 198 97 281 265 68 21 241 407 229 88 377 333 233 59 408 236 339 257 174 392 224 268 406 332 193 314 287 32 433 3 112 35 396 249 300 135 320 353 382 399 166 110 251 176 18 58 183 276 129 4 148 243 255 417 304 41 246 254 296 289 413 189 127 69 358 223 389 25 307 194 80 8 371 36 124 402 93 142 234 72 27 126 96 219 271 118 138 260 263 89 357 372 401 98 181 132 418 222 12 76 390 355 225 136 337 282 311 405 5 226 270 277 242 13 81 48 134 108 94 316 213 186 215 404 227 425 336 269 369 238 423 322 54 107 228 104 400 182 49 388 180 286 391 91 92 15 +237 31 159 250 141 220 331 203 253 258 116 63 244 350 202 386 64 39 192 179 362 123 187 352 163 84 261 201 82 121 247 50 239 422 351 431 356 1 103 411 164 144 298 288 312 165 204 295 412 117 199 128 420 275 368 334 93 330 14 154 421 99 52 185 379 318 340 349 317 230 196 147 79 67 315 70 329 66 119 338 62 78 365 26 366 90 376 61 231 256 383 133 161 232 294 113 240 267 7 190 347 303 426 158 130 146 177 109 224 43 373 319 233 207 218 188 77 114 259 378 333 170 169 94 216 46 297 51 134 413 83 60 112 359 101 360 209 111 252 310 23 430 257 162 342 305 363 343 65 140 346 175 131 345 195 71 16 284 124 127 384 28 235 95 306 308 280 361 409 364 106 156 197 299 262 20 393 56 292 407 69 370 85 414 178 264 184 354 397 125 348 314 243 191 221 58 206 208 200 37 432 323 424 291 115 3 100 214 434 332 57 234 433 415 304 309 167 168 245 229 266 265 205 344 372 403 173 145 435 281 242 339 97 427 301 273 149 381 88 10 367 59 302 236 272 198 406 326 387 341 416 160 105 293 30 283 45 278 86 428 53 287 40 34 249 419 371 289 321 9 389 222 2 24 194 166 380 137 215 174 377 72 285 395 313 21 73 38 118 155 374 189 176 226 353 382 55 17 398 32 132 268 307 296 139 290 417 241 325 282 276 126 120 223 87 186 193 248 260 6 172 181 150 254 36 183 74 12 277 225 399 217 157 98 401 213 425 96 211 142 151 271 336 328 81 394 29 408 110 22 251 402 311 210 279 320 89 33 13 358 75 418 143 212 44 47 68 327 300 135 148 171 355 335 8 35 27 92 227 322 429 270 324 18 19 396 405 375 153 108 76 4 263 423 238 369 219 228 357 41 152 136 48 269 122 42 385 246 80 390 316 138 129 404 25 410 102 255 5 104 11 286 400 274 388 182 180 15 337 107 392 49 91 54 391 +373 237 159 63 203 111 331 363 264 163 11 202 128 422 9 383 131 261 298 164 31 178 411 295 6 253 177 50 350 294 144 187 421 365 297 266 140 57 22 113 103 299 44 258 420 99 147 173 201 65 78 265 162 165 7 145 47 66 90 209 1 122 230 56 247 330 407 386 239 141 64 412 305 79 216 356 259 73 291 28 325 250 23 367 306 362 190 137 338 68 192 207 267 275 116 220 284 123 240 185 321 82 102 125 101 139 328 93 403 55 196 251 38 262 334 197 200 170 16 119 117 37 346 208 366 134 359 318 312 175 95 20 376 343 184 67 360 354 14 169 161 77 280 415 149 10 283 188 303 191 384 198 236 206 374 121 435 40 106 97 61 62 368 349 379 84 364 272 296 414 109 252 378 218 234 351 2 287 69 204 348 290 285 43 51 276 340 424 281 248 166 308 243 430 249 199 39 154 323 115 405 118 176 273 34 88 24 432 150 212 36 130 94 410 235 381 431 409 211 413 205 339 60 232 304 133 52 426 315 70 71 48 279 307 12 387 372 352 427 361 155 244 59 434 326 114 282 210 380 21 385 157 226 317 167 168 233 320 274 329 179 42 127 26 135 223 309 406 86 416 288 41 85 32 193 229 148 151 260 341 156 377 278 112 428 100 214 242 120 256 143 301 76 241 375 333 158 347 217 313 293 126 124 58 98 132 33 87 324 433 30 221 417 45 257 314 310 17 370 398 80 215 345 25 332 231 3 353 382 75 254 74 311 277 394 153 53 213 222 13 108 194 342 46 292 219 189 83 27 402 302 89 81 174 225 408 268 336 289 171 401 186 29 136 110 224 92 183 142 319 399 146 358 397 181 160 388 172 300 322 238 105 182 96 425 371 18 195 227 245 418 5 395 255 327 271 335 344 270 138 72 355 429 423 396 35 390 228 129 316 8 404 393 400 391 263 4 369 357 104 49 419 269 152 389 15 19 54 91 246 337 180 107 286 392 +31 64 26 141 117 430 220 124 237 187 350 341 192 257 131 82 125 110 119 310 179 191 331 239 227 217 113 221 253 39 116 63 362 201 420 203 12 196 130 416 258 435 146 357 315 330 165 303 295 403 163 202 356 405 101 1 213 85 121 311 250 226 276 425 305 431 222 52 67 99 167 168 231 7 244 161 349 160 86 256 209 298 343 208 338 335 206 147 360 185 190 359 318 79 140 334 118 242 288 51 56 312 37 422 73 361 225 261 104 123 386 384 367 320 145 90 204 304 5 247 70 389 401 164 154 43 13 166 20 409 159 321 14 427 235 106 216 200 50 128 428 169 27 241 218 348 273 297 66 197 156 339 308 265 162 340 254 61 344 411 376 193 281 109 62 393 395 352 380 224 173 170 309 291 3 319 412 184 59 207 45 175 262 232 266 158 317 115 144 240 354 306 58 28 188 342 415 421 38 408 346 333 363 379 83 91 307 394 155 351 275 365 373 2 267 195 177 21 29 252 95 368 71 238 214 103 54 93 426 30 10 272 198 323 23 32 133 142 387 345 228 284 243 229 249 290 314 434 9 18 406 78 68 87 302 402 219 313 65 424 366 423 16 296 371 419 299 233 127 398 34 150 24 97 46 378 433 381 329 137 396 84 245 280 205 35 370 139 364 178 374 301 72 69 300 53 112 143 111 289 157 326 120 432 234 282 94 399 105 397 264 181 287 414 260 199 60 372 278 96 149 322 114 47 268 194 369 100 186 413 189 347 230 283 259 383 407 183 135 132 172 270 358 148 429 152 57 22 107 294 42 136 223 375 404 255 392 377 293 174 332 44 271 4 134 212 8 251 88 40 327 77 6 151 74 353 382 279 33 129 248 182 215 17 292 285 171 126 15 390 417 122 55 80 108 236 48 328 153 176 19 246 355 263 418 385 75 36 388 89 98 211 277 41 324 76 11 25 49 316 81 400 210 325 269 138 274 92 286 391 337 102 336 410 180 +308 376 309 63 202 70 211 210 56 203 159 116 163 329 175 50 197 65 198 98 345 93 428 272 82 141 71 253 263 237 189 172 1 154 431 64 344 328 291 170 259 101 169 131 295 288 46 134 351 14 113 133 411 78 346 359 422 360 362 293 94 348 174 138 220 57 275 334 279 248 190 352 294 230 130 171 338 258 123 281 192 103 250 350 61 115 374 297 266 386 239 31 331 176 120 20 26 261 158 9 378 412 39 420 340 292 173 282 201 284 323 178 326 73 77 356 86 66 208 414 298 114 276 424 426 52 140 62 310 315 307 375 379 305 366 349 144 207 95 87 40 339 354 33 128 147 195 321 55 430 204 167 168 106 191 330 421 90 377 180 267 85 413 247 262 7 302 235 342 184 252 193 117 283 161 416 16 365 76 119 149 164 403 218 312 240 185 187 280 232 242 234 245 260 92 10 156 216 318 363 45 341 109 24 28 99 306 151 67 434 364 299 177 165 231 217 355 108 100 215 137 79 409 435 278 139 51 179 188 327 102 150 196 43 34 97 81 84 200 387 118 83 125 88 121 206 194 244 372 233 368 209 287 74 427 401 265 105 160 432 429 380 361 367 392 301 415 256 145 257 410 205 38 385 358 335 124 75 22 166 268 300 332 58 393 27 381 142 129 264 21 143 135 289 313 221 316 317 398 394 285 319 371 72 47 343 44 249 60 320 395 304 236 48 336 399 111 148 370 2 53 433 333 303 407 157 36 402 423 243 127 405 311 25 183 110 408 384 397 37 18 353 382 296 347 146 214 153 68 383 241 112 6 162 337 254 222 199 182 290 369 325 8 42 419 227 373 229 80 17 126 30 286 314 155 270 277 59 271 273 246 396 89 152 417 238 357 224 223 388 181 96 32 69 122 389 225 41 219 390 12 255 49 418 186 3 212 425 251 11 136 35 132 5 322 406 228 269 400 226 23 91 13 19 104 391 29 213 324 4 404 54 15 274 107 +376 163 128 1 159 50 203 202 56 220 265 207 411 115 63 93 141 338 147 31 352 363 95 295 334 64 116 331 39 78 154 134 239 237 230 67 192 231 362 350 82 71 61 348 264 412 253 323 379 70 258 310 259 131 266 164 101 77 57 197 103 346 373 94 144 113 293 190 385 7 133 430 368 26 374 66 130 20 291 294 261 393 272 216 288 8 340 123 422 24 151 315 14 175 282 410 409 351 198 90 208 328 341 435 329 267 52 195 431 318 298 161 276 345 356 278 38 305 188 420 257 9 210 250 51 397 211 165 44 178 256 394 330 200 169 312 170 339 365 309 308 386 137 34 349 218 121 301 361 111 240 281 297 326 47 378 187 375 268 247 205 201 403 167 168 109 398 360 28 367 359 285 120 114 221 98 176 79 387 260 45 87 344 191 235 112 244 177 381 419 189 86 358 209 48 424 10 347 99 16 332 217 377 162 399 234 262 383 204 173 46 214 42 166 55 413 370 366 185 407 284 354 100 401 325 65 406 405 33 30 105 319 145 119 275 415 242 342 174 60 125 402 53 215 421 92 85 196 252 206 69 279 232 416 88 292 321 428 6 23 273 117 139 302 384 37 307 102 270 2 124 160 194 62 43 417 299 280 84 372 172 73 271 156 22 306 106 251 182 140 303 283 371 389 149 143 83 248 304 313 245 314 199 434 193 68 223 426 184 333 40 132 316 390 343 433 336 150 320 29 179 414 158 364 300 97 277 327 243 152 418 21 254 427 18 25 388 236 138 153 155 233 58 229 324 432 317 395 110 148 108 429 135 289 36 287 27 75 249 76 127 355 212 222 290 183 32 118 396 74 72 246 11 408 263 122 96 380 81 335 181 49 59 171 142 146 269 35 41 136 219 224 126 353 382 3 129 225 17 296 357 241 80 157 423 425 322 89 391 227 186 286 180 274 226 392 311 369 12 13 4 104 404 213 91 255 337 107 400 238 228 19 5 54 15 +259 133 346 77 237 116 349 293 340 338 154 52 334 63 351 1 336 275 376 28 386 159 414 101 378 163 272 151 61 93 203 312 82 298 360 359 308 128 147 64 123 39 261 352 66 266 354 295 99 331 257 202 309 40 279 113 365 10 103 144 282 78 94 208 412 51 16 220 31 95 411 139 281 267 258 115 170 169 156 428 345 197 363 379 130 292 50 239 187 134 294 188 381 230 301 70 79 194 90 20 179 85 207 247 198 100 364 57 192 114 232 333 183 218 191 83 201 290 65 172 366 256 332 407 317 131 161 377 92 216 306 62 361 368 73 121 318 245 164 184 253 190 46 329 199 341 297 430 178 141 374 288 250 9 348 205 177 291 353 382 350 6 56 305 26 339 138 38 86 420 14 195 231 71 372 244 367 284 304 33 2 234 109 278 262 422 344 347 413 204 149 435 206 127 167 168 260 289 215 60 310 240 233 158 387 330 373 196 342 326 415 287 303 424 302 356 433 280 30 185 380 84 384 43 362 155 140 236 106 88 296 209 146 150 125 108 97 37 119 105 276 283 409 189 175 321 403 87 124 145 285 243 176 67 126 323 311 21 45 235 315 343 307 327 47 427 171 59 34 431 313 165 81 264 432 69 426 355 273 370 22 24 398 162 268 335 42 7 417 3 383 74 112 421 120 402 118 221 157 242 174 314 32 76 241 111 416 405 328 193 265 96 53 8 98 229 200 271 58 263 249 136 117 48 425 214 358 375 137 68 152 135 393 320 316 254 213 277 36 319 55 419 399 217 153 166 270 142 72 75 406 122 252 223 148 222 224 12 132 389 104 173 110 13 418 397 395 226 325 211 181 385 388 212 41 27 186 210 299 89 369 434 225 371 269 390 394 182 11 91 410 219 25 404 49 44 251 227 429 102 160 5 248 238 29 408 80 357 396 401 23 400 143 324 17 337 129 322 286 391 255 300 18 35 228 423 19 246 274 54 107 4 15 392 180 +50 56 203 113 307 34 202 141 220 31 388 147 385 47 237 207 374 348 164 410 159 182 411 409 295 64 352 187 95 49 288 39 379 261 57 151 63 33 291 376 216 362 192 253 120 131 42 44 165 61 266 67 218 221 294 70 375 38 356 278 331 178 9 383 66 121 334 350 259 247 82 114 345 429 391 78 329 363 346 267 14 163 312 71 93 1 48 339 128 256 430 239 305 68 230 27 422 412 214 85 201 99 349 26 413 368 344 306 268 133 111 185 258 285 102 298 244 119 407 123 51 262 167 168 272 90 150 393 149 24 161 297 300 88 271 205 293 86 318 196 370 18 397 321 177 310 154 170 28 323 315 7 169 366 25 115 270 22 116 139 354 209 240 351 79 144 137 403 191 280 65 330 94 103 125 130 108 421 231 117 328 309 77 373 153 387 308 276 204 401 301 20 208 188 190 302 434 420 365 184 46 145 109 84 419 264 281 155 386 252 16 101 122 341 342 210 195 211 200 175 73 52 217 197 251 424 367 343 416 303 338 106 316 236 100 232 105 287 260 435 6 377 314 112 381 242 384 143 127 158 257 250 337 135 23 36 275 340 172 332 299 55 17 30 37 183 234 148 176 140 265 378 319 279 320 179 60 415 269 304 245 428 10 136 432 45 107 97 69 229 198 189 235 173 43 206 327 215 194 243 284 372 317 324 174 166 431 2 199 417 62 395 427 360 400 325 223 353 382 110 426 162 359 361 405 8 414 394 124 326 233 53 29 254 371 333 11 433 364 72 160 156 83 347 212 248 126 380 249 98 134 357 313 273 389 296 87 225 74 290 358 138 181 399 118 396 32 35 418 283 336 40 21 92 142 96 222 193 59 398 226 408 75 157 425 171 76 402 274 132 241 58 335 152 89 322 292 12 277 263 146 289 406 224 282 355 104 227 246 80 41 311 129 13 423 219 4 3 186 390 238 213 81 19 54 228 404 392 286 5 369 255 91 180 15 +50 56 159 261 163 1 237 202 192 63 203 346 147 376 39 64 121 279 82 297 250 379 141 331 342 221 154 131 220 247 259 253 117 362 430 334 345 26 295 31 330 305 93 191 230 288 267 196 411 403 103 116 134 85 133 338 239 409 258 66 312 67 275 205 272 70 420 310 298 354 285 119 77 128 109 144 28 209 352 266 86 79 264 200 61 113 350 190 78 366 51 262 207 95 218 101 318 189 386 256 349 412 416 57 244 20 308 204 34 280 351 99 294 14 130 245 7 303 302 281 341 211 94 65 348 68 231 265 306 363 44 356 33 114 344 175 151 367 201 187 123 106 208 210 173 276 387 90 217 431 401 73 115 329 216 112 293 125 339 161 174 340 48 234 197 319 167 168 240 365 179 184 46 309 422 136 414 169 52 170 419 323 178 315 291 100 9 188 111 138 232 385 332 347 164 165 373 405 361 410 145 59 393 328 214 71 368 284 185 260 377 198 206 359 38 88 278 176 172 426 146 428 177 62 60 148 343 105 36 150 432 370 199 242 92 433 435 317 335 360 108 87 236 83 76 47 139 413 321 166 43 97 25 304 98 195 45 257 424 314 292 381 149 268 132 427 158 273 127 156 378 313 243 283 374 10 252 16 301 229 434 307 120 193 353 382 110 55 287 84 102 104 383 364 155 282 415 124 421 235 30 22 286 118 398 194 137 157 140 357 397 222 160 40 320 215 371 311 24 224 325 380 395 326 58 42 384 2 417 37 181 289 394 299 23 407 152 233 358 53 183 388 227 271 126 74 296 429 277 406 249 171 162 399 17 135 32 143 153 372 29 182 89 402 248 423 408 396 254 21 72 27 6 3 212 75 255 389 69 418 324 11 96 241 270 8 49 122 223 300 142 425 333 35 225 290 263 18 91 336 251 269 81 404 226 355 400 246 316 375 391 54 186 327 390 5 219 12 19 322 228 80 13 213 369 41 238 129 337 392 107 4 180 274 15 +220 67 51 231 411 356 261 237 39 109 430 331 63 294 310 247 395 147 113 203 159 163 379 56 334 266 201 262 99 154 202 291 187 82 393 419 297 366 267 305 205 342 64 306 1 165 85 230 50 315 295 207 103 7 365 250 412 20 348 97 216 86 239 130 144 376 161 119 52 123 190 192 128 131 90 256 133 95 329 318 196 79 236 275 169 170 372 179 29 349 312 308 413 121 253 101 352 409 301 26 78 322 34 43 116 70 114 31 42 106 363 281 339 111 112 84 12 259 209 208 141 431 218 279 340 93 14 280 232 302 204 380 240 184 386 384 332 428 278 177 427 351 313 244 55 346 357 285 197 298 284 191 422 338 396 268 288 24 367 258 117 164 415 378 100 387 9 320 426 115 433 30 188 36 394 271 397 28 206 94 309 374 66 362 234 120 45 185 361 235 125 71 61 57 321 323 47 87 343 174 172 354 189 245 368 414 417 293 264 46 350 222 299 434 314 35 283 403 254 424 359 241 233 62 421 89 105 199 405 16 134 146 194 360 175 370 73 198 145 200 181 152 341 65 124 358 257 173 88 140 242 407 319 406 157 303 137 214 176 377 10 249 398 60 272 53 317 381 311 399 292 418 69 420 158 432 136 151 183 401 373 221 383 270 217 224 195 225 77 435 138 156 316 371 423 260 135 166 265 345 416 425 149 347 392 72 238 139 8 40 32 307 353 382 226 178 364 211 243 37 74 223 6 276 167 168 273 210 252 150 110 38 22 212 330 76 155 132 33 41 290 171 193 248 344 335 287 2 304 227 142 104 410 27 162 3 21 269 75 96 11 102 83 68 251 385 246 18 389 59 17 160 13 408 153 58 404 282 229 148 375 390 182 213 122 186 98 333 143 286 289 54 326 325 127 48 324 219 429 296 300 215 107 118 108 255 25 277 81 388 5 126 23 402 263 91 44 327 129 328 92 228 355 49 337 19 274 80 15 336 369 400 4 391 180 +261 159 342 63 50 297 141 1 103 379 192 133 279 163 294 376 259 203 237 202 154 267 362 67 288 366 230 346 365 147 86 51 189 34 56 310 285 39 128 430 416 331 305 109 85 20 280 352 93 338 61 231 345 306 411 95 262 253 52 428 101 393 250 114 281 412 130 136 211 138 26 82 293 44 308 258 334 272 409 218 401 170 196 70 173 351 210 144 169 94 78 190 28 295 330 184 131 7 64 247 113 220 275 123 77 374 312 363 276 265 172 121 191 344 57 387 240 384 151 9 187 115 217 291 119 31 46 116 386 414 256 76 348 106 318 349 90 245 339 368 419 340 302 367 134 264 73 208 209 292 410 99 341 420 161 79 266 286 87 239 373 111 329 378 278 165 125 298 234 200 221 188 197 347 236 167 168 413 43 403 14 207 309 33 62 205 117 350 415 359 326 204 332 178 174 284 244 195 360 98 201 313 319 140 36 164 323 216 315 10 232 381 97 55 198 328 45 60 105 235 252 171 65 112 370 92 361 148 176 335 255 74 83 145 175 206 356 30 177 433 268 435 124 75 364 395 48 357 214 242 427 194 40 139 137 434 417 38 193 59 385 22 283 118 152 179 150 254 71 398 432 149 108 104 257 397 100 246 422 233 16 405 354 371 321 314 389 260 84 135 263 120 426 317 358 183 25 158 423 424 37 143 303 91 377 311 301 29 400 431 24 69 399 343 160 282 27 304 58 223 243 229 380 375 47 156 324 6 394 155 320 89 421 408 307 88 157 146 418 271 215 199 81 68 212 166 289 396 8 185 18 273 372 227 53 102 32 224 407 182 287 406 142 270 66 249 41 162 126 222 132 383 248 110 333 322 80 327 129 21 353 382 316 54 181 277 2 300 42 96 35 17 296 153 390 186 290 241 425 72 225 4 23 299 269 122 11 251 127 238 388 355 219 3 5 429 213 49 12 226 228 325 402 392 336 13 404 369 107 391 337 274 19 180 15 +163 70 56 116 63 202 1 259 134 203 50 175 411 376 281 159 338 189 351 309 197 308 237 78 31 431 147 239 207 340 101 65 131 292 77 93 198 174 39 211 284 329 113 154 220 103 315 82 279 192 64 172 210 310 346 350 176 258 365 305 297 291 261 170 169 141 295 424 430 349 422 123 115 95 356 79 46 326 9 379 298 288 318 57 121 283 14 334 217 20 348 362 268 61 184 250 86 414 133 190 272 88 230 138 128 235 359 293 267 360 234 187 276 412 7 253 205 109 342 114 428 47 28 26 161 352 201 363 94 73 386 367 130 345 208 242 144 409 209 247 328 240 378 66 312 282 421 373 117 71 90 263 53 193 97 331 232 191 271 236 323 151 266 120 321 34 218 244 195 256 374 139 377 280 231 420 275 270 366 51 316 111 85 62 98 52 171 332 100 354 27 87 301 24 294 355 405 204 119 44 264 40 156 69 385 221 413 166 248 313 339 265 216 164 341 262 196 158 55 344 306 383 426 10 361 393 140 188 269 99 222 185 179 76 254 22 81 125 387 84 215 415 302 403 106 299 67 347 304 410 137 108 38 143 401 330 372 260 229 384 319 249 178 162 136 167 168 407 33 375 92 105 173 45 214 370 325 435 155 16 277 336 314 6 285 364 118 177 194 434 273 152 389 224 307 233 43 74 206 303 30 227 278 395 42 343 75 68 37 145 18 417 150 149 419 245 135 2 3 165 381 243 48 406 252 402 112 58 12 425 257 17 183 25 433 23 398 72 102 432 322 368 289 427 127 199 146 317 223 327 182 124 397 21 290 60 212 311 335 380 369 36 225 200 286 96 416 358 129 392 181 287 142 394 300 399 89 241 8 251 418 122 320 132 83 153 296 160 388 246 353 382 408 226 333 13 186 110 148 228 11 400 59 91 126 157 180 371 80 32 29 357 238 429 255 35 104 396 324 213 391 390 19 404 337 49 219 5 15 423 274 107 4 41 54 +279 163 70 297 1 56 189 159 192 202 250 63 342 203 237 411 50 334 281 294 247 230 93 259 123 101 154 39 78 197 261 207 116 76 82 103 95 113 239 340 147 169 133 310 128 20 170 211 430 365 138 308 210 338 130 376 115 331 198 190 86 305 386 184 141 412 379 64 174 114 366 367 272 318 161 345 351 262 94 131 389 428 9 352 90 332 234 275 144 31 362 201 34 284 280 57 216 306 111 187 134 295 286 240 348 220 14 424 205 315 175 288 373 346 46 218 356 268 312 339 217 363 172 264 293 358 359 47 26 282 298 79 258 121 85 291 341 292 393 265 378 232 48 73 200 360 309 71 267 176 413 97 271 191 326 344 28 67 343 8 409 208 98 99 209 236 44 253 139 368 66 414 349 278 399 196 52 313 151 193 242 235 387 24 43 276 410 61 283 432 166 119 350 77 433 330 117 183 194 316 398 106 62 171 256 178 435 257 394 136 266 420 65 10 22 431 92 323 254 45 40 16 7 177 206 304 263 60 51 173 87 100 415 188 374 384 137 397 38 195 108 182 74 311 301 84 55 244 125 75 416 25 270 347 403 231 361 162 109 396 354 302 179 260 329 328 245 273 321 319 102 105 145 132 405 407 181 364 167 168 426 214 371 290 152 243 285 126 185 30 215 199 357 112 17 143 204 58 325 401 381 427 248 380 249 395 370 335 27 422 269 53 419 303 417 307 83 317 156 120 383 68 33 69 88 124 6 149 421 289 233 129 59 164 377 390 212 150 153 148 434 81 140 353 382 333 42 110 37 406 227 36 320 222 158 314 375 155 408 2 165 223 385 418 241 221 135 146 157 324 224 229 252 21 3 296 287 299 246 122 118 355 402 23 251 127 255 423 404 11 425 41 160 388 32 89 80 29 72 327 213 372 429 277 226 142 49 96 35 300 322 19 186 225 5 104 400 238 391 13 219 91 392 336 12 228 54 337 274 369 18 180 15 4 107 +1 367 163 264 95 128 115 8 265 318 282 276 129 71 373 161 159 363 230 326 376 240 190 152 365 197 47 301 79 347 189 126 116 20 70 192 389 195 313 98 310 435 334 9 235 378 341 31 90 237 323 84 73 198 268 297 203 123 191 202 193 78 86 194 63 405 132 292 208 131 370 130 279 121 34 430 340 386 69 432 352 273 433 362 345 338 239 174 56 271 270 384 176 254 28 93 284 64 415 141 361 257 144 214 26 412 50 281 344 218 351 87 46 153 360 251 232 311 247 211 181 210 143 359 169 103 77 170 411 256 278 348 319 57 243 315 40 139 14 398 393 424 206 142 269 387 374 61 332 23 113 101 397 298 283 259 246 24 303 201 30 97 431 16 199 44 403 207 407 7 75 166 217 134 304 321 175 10 364 324 236 358 137 162 381 331 112 184 43 62 349 308 312 32 242 182 37 401 231 39 94 368 406 74 285 379 59 223 335 173 100 408 117 200 212 145 222 114 81 147 188 196 220 25 154 38 339 167 168 119 253 399 353 382 262 413 124 305 291 55 92 428 306 366 22 272 404 383 330 45 409 309 327 343 394 51 421 249 17 420 82 307 164 133 233 85 325 125 186 422 127 60 250 216 258 157 316 395 178 65 155 328 293 149 414 58 120 234 346 111 221 110 179 419 380 99 371 296 136 427 261 83 48 286 172 288 209 138 354 187 185 21 275 252 426 177 277 295 320 267 106 80 204 171 118 241 156 280 417 342 2 228 219 76 314 150 287 160 213 350 290 289 3 274 13 227 27 390 385 416 229 255 429 248 263 96 89 42 52 375 294 148 333 434 108 53 317 402 158 244 396 140 109 356 410 102 6 215 35 418 355 266 205 29 67 19 88 224 425 5 388 135 151 225 68 226 66 180 105 238 33 15 329 146 183 391 357 423 41 36 322 165 372 11 302 4 245 299 260 336 369 300 337 12 122 400 377 49 104 392 72 18 91 54 107 +33 377 272 291 237 334 150 131 234 247 108 139 113 66 331 141 239 352 295 349 159 95 350 260 149 207 218 116 345 242 294 346 414 208 190 253 64 93 114 384 308 354 287 351 296 360 321 220 57 359 50 78 428 133 163 127 40 28 178 201 288 411 344 192 169 261 413 170 185 379 202 309 203 31 317 70 130 177 216 407 187 63 1 52 56 61 298 362 340 9 94 387 151 430 161 105 199 412 144 82 332 356 266 431 310 39 86 378 197 103 365 100 99 90 259 232 343 115 429 198 24 26 119 348 20 73 120 172 297 293 368 275 258 381 329 278 230 262 301 245 386 123 367 106 128 420 370 312 85 374 147 77 196 422 375 284 235 424 121 60 231 304 97 51 10 305 318 102 16 79 156 101 353 382 337 376 383 313 373 233 290 280 204 363 315 380 326 43 194 109 252 240 88 6 166 292 299 45 307 338 432 154 46 118 426 184 435 415 398 327 347 153 419 134 189 236 171 84 248 22 421 8 111 397 306 333 7 122 74 323 71 193 328 250 137 191 68 222 14 281 30 34 366 256 341 427 320 42 319 221 244 126 311 67 188 25 62 268 87 283 173 206 276 75 205 48 401 215 393 339 285 335 152 277 279 409 179 211 227 124 434 165 195 164 83 316 433 117 267 217 27 282 12 47 273 44 416 289 140 361 425 65 342 92 210 410 254 175 406 162 209 408 302 358 372 125 37 405 243 59 145 249 238 38 241 395 303 58 255 214 21 394 264 55 155 158 219 11 213 2 257 13 417 81 112 72 181 271 167 168 364 142 223 89 182 41 330 32 226 403 17 143 357 396 5 385 423 263 399 69 186 138 300 265 212 157 225 174 160 270 146 183 388 355 49 200 418 228 98 132 176 402 135 35 110 53 104 229 136 96 371 246 322 314 148 325 390 389 76 19 36 269 324 91 404 369 29 3 23 274 129 336 224 18 392 251 180 391 4 80 54 107 400 15 286 +220 430 266 51 237 39 179 67 203 202 154 331 163 43 379 310 190 146 109 231 356 82 159 352 305 131 7 64 301 201 253 1 411 42 31 247 52 103 376 144 431 119 196 208 297 130 291 111 147 363 224 230 24 161 90 295 235 26 312 3 116 56 207 84 173 412 306 63 395 318 114 165 422 101 267 99 348 133 239 261 362 433 112 294 359 315 256 97 141 354 12 100 380 365 360 338 169 372 284 20 192 334 142 170 308 46 232 427 128 298 73 140 78 29 177 106 321 124 32 113 240 415 403 123 339 373 351 211 323 409 368 288 175 95 435 93 350 408 209 86 50 283 115 378 349 405 394 268 275 57 419 120 137 413 135 346 342 79 367 426 397 167 168 204 197 71 9 428 302 258 164 285 366 434 416 77 187 210 185 191 216 74 293 259 262 206 178 157 393 316 55 361 241 340 125 250 245 414 30 218 303 65 14 374 281 238 53 421 330 35 75 195 299 326 166 36 117 424 272 276 417 383 156 200 47 347 278 313 329 62 370 34 309 45 423 236 217 420 16 371 87 260 8 151 233 174 257 335 252 198 66 194 158 384 199 85 88 341 28 319 94 311 212 271 188 162 254 407 121 72 320 357 10 6 61 345 33 358 176 145 172 418 143 270 386 398 155 242 38 160 387 406 221 2 222 249 344 332 234 248 265 70 385 322 11 273 40 18 425 399 280 381 282 83 132 307 60 244 219 193 37 264 317 41 396 292 139 89 429 17 181 364 377 432 184 21 227 343 189 243 136 68 375 304 325 226 59 118 134 186 81 69 171 102 5 324 205 27 314 105 110 214 300 401 353 382 225 150 182 279 404 44 289 213 58 251 149 107 388 22 229 126 153 389 269 327 290 328 287 390 277 152 215 4 96 49 13 337 183 104 223 54 148 98 402 296 19 108 127 80 23 410 129 333 76 369 228 255 355 122 138 336 91 246 274 180 392 400 263 15 25 92 48 391 286 +431 329 220 284 237 424 315 159 103 350 283 63 203 64 65 202 308 426 82 31 295 331 39 192 163 349 204 141 253 368 352 199 247 309 422 376 216 66 244 305 119 173 1 379 354 169 170 334 258 239 347 291 116 362 190 67 130 351 412 81 7 248 46 261 154 196 201 267 369 133 128 275 28 298 232 98 26 20 312 179 180 317 345 113 378 117 71 288 90 293 381 51 430 414 235 99 294 411 52 240 318 187 356 123 250 326 131 109 346 112 40 413 156 340 121 175 421 370 353 382 61 207 164 78 144 323 338 147 146 161 366 56 185 231 310 195 420 43 416 306 301 158 304 256 302 73 214 177 208 360 165 84 172 193 359 428 32 259 120 297 50 93 266 57 70 16 79 197 363 409 218 115 206 332 59 174 200 101 194 330 245 276 37 60 384 77 191 372 10 367 217 106 348 205 188 9 380 125 233 189 178 327 209 314 140 415 167 168 263 171 342 211 221 392 42 45 419 12 260 14 321 383 292 262 142 21 230 394 273 319 100 243 62 36 252 344 313 427 249 361 95 27 371 387 272 97 339 105 303 224 85 198 386 406 393 145 399 135 72 210 358 435 343 242 365 307 432 281 397 86 30 149 333 176 285 94 311 433 277 335 118 124 385 87 241 434 278 160 287 2 405 236 88 155 58 341 425 137 403 114 157 290 126 148 407 53 24 35 234 280 166 374 373 289 364 18 127 138 282 300 96 83 254 429 55 22 417 69 357 264 328 299 401 151 229 257 74 279 23 398 225 38 296 408 395 320 3 377 150 227 226 181 222 162 111 34 29 47 6 355 418 212 184 110 89 400 75 238 153 33 132 5 402 396 265 104 390 41 375 139 13 44 322 102 54 143 268 423 219 108 134 129 4 8 223 183 136 213 228 68 251 80 17 186 410 316 215 255 404 246 152 336 271 324 91 48 25 76 19 122 389 270 337 325 11 107 286 92 182 269 388 49 15 274 391 +237 26 31 158 192 16 383 64 123 345 422 253 411 78 295 230 1 421 163 250 284 306 167 168 86 344 80 334 431 420 291 20 140 265 93 14 185 435 159 326 239 170 94 318 169 17 297 177 9 161 147 90 298 145 113 70 63 240 55 37 209 374 386 116 373 154 206 350 160 162 328 356 283 221 307 264 220 362 82 351 10 308 257 85 341 315 178 412 262 389 153 218 256 203 190 81 235 202 424 144 2 164 141 115 111 179 184 294 368 125 201 319 244 312 252 130 330 261 378 45 97 305 290 204 398 347 50 200 313 87 199 217 343 62 346 127 340 428 365 402 131 22 394 360 92 272 358 309 376 23 114 187 47 348 191 233 429 399 156 57 317 99 38 243 249 73 66 188 359 28 84 364 117 149 275 371 363 331 88 273 266 303 36 214 414 67 121 106 176 296 349 285 79 71 21 215 69 258 119 30 216 139 242 103 43 427 415 434 390 287 299 426 150 379 433 180 281 232 267 96 430 110 393 193 300 52 83 142 251 375 247 419 289 151 352 172 46 342 234 361 355 101 174 6 59 133 333 314 157 367 186 165 413 231 254 7 146 128 171 353 382 282 276 175 381 12 124 280 95 321 109 56 332 51 112 377 292 100 105 405 369 194 58 396 311 304 39 40 53 77 135 354 205 65 60 366 197 155 248 320 395 260 227 387 195 409 259 372 277 3 166 370 118 403 325 357 24 136 33 29 329 137 189 108 8 288 339 335 198 44 274 301 404 143 134 102 397 122 132 310 181 416 408 407 222 219 173 27 425 126 384 327 241 323 19 32 183 120 61 74 278 225 148 245 75 11 152 236 72 229 263 182 255 138 76 380 208 13 34 293 41 337 432 226 224 388 417 196 48 385 401 207 238 246 406 302 98 129 104 223 89 338 212 5 324 268 25 279 211 418 68 269 322 54 49 42 213 210 228 271 18 336 286 4 91 270 35 410 423 400 107 15 316 392 391 +163 78 95 70 197 189 1 93 203 202 113 131 411 116 207 230 63 56 237 198 310 239 115 31 281 367 134 71 161 412 195 64 338 50 47 365 159 268 101 291 264 334 276 9 242 176 326 174 348 345 94 318 139 192 172 386 308 279 430 190 250 82 123 309 376 240 292 130 20 297 79 235 270 405 282 373 208 57 360 14 271 259 344 359 152 153 351 220 210 211 97 234 431 374 340 121 170 141 39 108 169 175 321 295 126 356 114 66 69 144 315 167 168 90 275 201 435 305 407 92 265 86 166 432 375 218 26 217 256 352 272 184 350 284 266 362 269 216 182 312 347 316 258 34 383 253 73 298 191 7 120 306 331 307 138 236 424 8 384 301 325 128 129 422 311 313 100 119 415 98 222 187 254 193 363 294 143 280 349 27 389 61 364 261 55 77 401 24 23 231 263 257 87 28 409 420 428 377 137 319 323 332 16 62 283 395 212 343 17 181 88 341 84 37 147 154 361 185 10 162 232 44 413 379 330 127 368 221 196 247 433 262 22 74 214 370 288 385 287 387 215 206 133 328 111 398 296 112 132 393 378 414 149 75 117 178 260 68 273 290 51 380 46 103 403 43 209 229 339 227 155 40 381 76 278 65 200 223 53 417 406 354 388 410 45 304 99 421 194 33 150 136 125 140 303 397 346 30 158 358 342 6 2 228 106 48 241 171 285 233 324 286 145 366 109 38 255 248 199 89 243 353 382 327 399 246 85 25 151 42 177 252 3 19 249 418 21 142 427 429 204 416 188 277 267 434 179 251 173 320 13 157 314 52 394 293 225 164 81 213 83 124 122 408 36 80 244 183 335 35 402 160 426 118 425 404 12 110 333 105 329 274 32 337 355 96 59 322 226 102 58 11 419 29 371 224 299 156 135 205 67 317 148 60 186 372 302 289 18 238 336 396 219 391 390 15 165 392 49 5 357 146 369 300 72 41 180 400 245 4 107 91 104 423 54 +420 26 31 237 64 140 253 330 334 356 362 160 217 435 209 39 141 239 308 350 341 163 250 78 192 221 411 130 416 309 131 62 363 331 266 159 191 110 306 275 361 372 298 167 168 79 103 190 145 196 142 109 147 403 422 303 257 82 95 364 125 201 434 162 59 169 230 50 177 157 368 291 204 170 73 258 307 90 65 235 252 244 36 63 1 284 20 431 61 256 352 208 318 325 158 276 116 247 305 288 218 97 202 203 371 424 367 119 249 51 376 161 294 187 267 421 205 112 240 117 185 172 220 295 123 86 2 310 200 207 164 206 16 319 273 144 427 413 285 378 99 345 381 283 326 339 349 85 10 344 166 178 32 365 173 67 351 55 28 106 261 84 348 428 402 113 251 433 87 297 373 304 317 430 312 195 354 232 21 193 264 405 118 355 216 156 57 366 301 124 56 83 328 126 412 383 394 179 46 71 52 88 360 414 359 384 386 9 243 137 171 340 233 7 329 154 70 100 300 347 188 37 321 197 432 262 389 115 379 395 69 128 236 134 259 272 346 380 316 74 139 234 6 199 93 77 409 184 214 111 289 45 343 387 282 121 198 296 66 34 399 8 43 133 132 24 165 374 274 419 58 75 426 238 101 17 358 60 333 265 299 406 231 176 313 81 335 242 315 194 407 245 281 342 135 415 174 290 353 382 114 398 40 279 12 120 175 186 38 89 14 287 146 338 332 150 397 370 241 337 292 181 254 47 280 105 94 151 41 33 127 30 42 268 311 22 222 153 98 425 29 260 149 263 377 148 226 322 390 302 104 278 314 143 72 320 393 80 248 129 138 155 229 396 293 270 429 404 327 215 255 96 271 417 211 423 401 5 212 3 223 227 369 323 219 375 108 23 44 53 210 225 277 408 11 19 189 92 13 76 152 246 27 418 224 324 180 91 213 182 357 269 68 102 183 122 15 136 336 228 54 388 18 35 25 48 49 385 410 286 400 4 392 391 107 +331 237 187 163 64 159 82 203 412 116 31 202 343 295 63 52 340 250 123 1 386 411 101 128 130 115 161 422 239 420 253 154 272 93 70 184 131 79 378 298 133 356 334 333 216 312 242 432 197 201 127 94 117 78 37 361 346 352 379 65 147 62 156 260 192 275 185 240 169 126 377 99 198 113 50 170 121 259 177 125 403 350 266 235 10 289 373 244 90 303 209 261 428 291 363 308 141 351 348 435 296 318 179 374 364 230 206 119 376 243 164 360 229 204 317 145 26 306 149 207 280 290 359 273 368 144 77 329 40 61 22 220 304 190 7 338 277 196 16 20 424 310 66 256 218 73 262 67 97 199 205 155 109 165 245 309 6 345 84 321 287 315 43 88 45 421 103 431 302 56 372 191 258 208 305 366 314 106 231 426 28 330 162 51 21 413 332 349 2 362 59 341 278 139 257 146 433 233 249 409 247 14 265 32 282 195 183 100 186 415 375 85 9 188 307 414 38 158 264 284 339 380 365 124 427 288 281 53 120 313 110 95 294 381 248 167 168 254 134 342 194 234 276 344 326 383 319 398 181 166 30 172 57 236 150 178 402 232 58 173 46 387 111 252 267 430 23 132 71 355 299 137 3 226 328 300 114 238 60 33 263 193 354 214 425 39 399 419 241 370 87 224 86 42 293 279 157 327 285 369 140 148 8 72 358 394 367 34 92 55 171 301 353 382 98 393 143 225 215 68 24 297 221 160 200 320 27 213 429 151 105 384 96 69 142 41 408 283 406 44 407 222 89 83 74 347 292 112 223 29 417 434 176 13 397 118 335 17 152 219 12 81 416 175 36 35 108 104 405 75 47 135 390 211 322 418 153 357 76 371 395 210 251 174 48 217 182 325 227 19 5 385 396 389 401 336 136 311 122 25 80 255 388 189 337 11 324 323 91 212 404 246 274 102 138 180 286 129 228 268 423 410 54 49 271 18 270 400 392 391 316 15 269 4 107 +203 202 331 82 52 163 101 220 154 338 412 93 430 295 315 310 237 63 165 159 144 113 51 187 50 67 94 116 70 348 99 201 222 231 131 119 379 359 250 31 64 207 106 356 242 431 360 141 190 1 376 258 56 225 197 109 227 256 169 78 123 239 208 386 291 226 170 115 179 311 130 323 340 380 281 305 198 423 128 7 259 124 405 312 216 409 352 103 284 241 253 320 133 35 66 12 223 297 308 204 275 97 114 213 411 173 427 302 247 272 175 261 350 288 334 57 309 61 90 192 53 351 266 318 345 339 422 161 415 393 13 234 342 254 9 428 95 321 20 164 73 39 363 349 26 344 236 117 71 367 86 229 384 88 362 257 120 417 419 365 298 146 425 346 283 267 219 79 368 100 408 62 195 378 306 235 218 177 184 276 435 373 166 357 414 196 238 206 377 147 294 260 29 418 322 137 125 172 183 361 121 354 230 265 244 307 14 282 189 240 228 211 232 85 84 262 185 397 279 420 395 5 193 329 343 30 24 317 34 188 43 134 403 366 68 77 278 210 151 268 191 58 89 178 433 313 341 424 396 140 224 401 374 111 112 347 209 37 74 330 118 413 23 287 162 155 332 46 65 139 326 16 264 136 28 174 143 33 150 40 301 135 381 245 385 394 171 387 27 299 75 233 319 156 364 10 421 18 149 370 3 273 214 434 285 249 105 314 145 271 221 217 127 199 92 426 333 38 6 158 205 215 293 176 270 104 200 98 303 406 407 17 194 371 248 335 290 252 372 429 167 168 108 45 87 47 42 142 48 296 416 432 292 243 181 186 304 280 36 182 55 152 375 15 383 328 8 358 157 22 59 398 69 277 60 126 72 32 389 102 316 263 255 132 110 122 160 399 81 83 44 300 21 2 325 153 91 41 148 25 96 11 388 404 327 324 212 246 369 4 353 382 251 107 337 54 129 336 289 138 19 286 49 76 269 180 402 410 355 400 392 391 390 80 274 +231 220 393 67 203 51 305 202 430 310 395 63 50 419 379 237 109 159 39 99 56 165 154 7 82 152 207 141 411 147 163 1 313 20 30 352 230 323 144 103 285 412 29 409 363 291 119 190 95 93 331 86 338 266 405 201 31 376 34 130 256 356 362 246 368 315 52 123 312 288 113 365 247 261 236 64 293 90 297 87 97 253 128 208 334 239 133 78 357 161 70 348 106 320 268 101 349 192 329 85 295 26 318 218 116 24 302 427 345 340 216 196 115 392 417 259 294 347 394 9 164 240 415 170 346 384 131 398 281 94 28 100 250 367 386 189 235 169 308 57 264 187 197 206 104 332 217 342 284 301 278 272 418 271 258 43 79 121 177 45 420 158 267 77 114 191 416 406 117 351 330 151 298 396 434 209 179 204 366 380 306 422 135 199 12 335 232 140 136 14 339 91 431 47 222 71 44 129 279 283 42 61 10 370 309 265 167 168 84 68 176 124 198 378 175 254 16 66 234 62 105 262 223 73 174 112 413 275 221 46 183 173 244 55 188 414 280 241 350 157 137 155 214 53 344 276 381 316 242 421 120 65 88 33 200 89 273 372 139 403 48 364 385 423 185 387 193 257 358 211 134 359 37 194 433 210 35 374 146 172 360 322 425 22 361 321 410 401 38 314 426 178 319 143 225 149 125 303 6 252 229 270 212 354 226 311 399 243 195 317 72 282 111 373 227 205 428 132 377 166 69 108 150 98 184 156 40 260 292 60 432 371 233 27 304 181 142 249 32 54 224 383 287 171 92 429 269 245 83 238 341 18 2 25 404 353 382 424 102 397 36 435 23 307 213 145 162 290 343 255 107 148 13 219 299 96 59 3 21 160 138 402 58 375 8 251 390 127 215 118 5 182 186 326 277 296 407 122 17 388 110 126 325 153 333 74 289 228 324 248 286 41 328 76 408 400 11 263 327 75 49 19 81 336 274 355 389 300 80 15 391 337 4 369 180 +101 430 357 315 52 222 165 154 119 297 227 203 144 411 187 51 63 237 338 50 99 305 254 202 201 113 405 106 220 86 159 425 295 225 310 163 104 331 179 190 94 250 14 261 1 340 82 124 123 236 116 31 412 93 64 85 226 308 141 67 228 170 128 318 161 427 356 130 169 239 423 56 12 265 309 264 365 343 291 419 78 342 177 311 258 90 97 350 322 164 223 349 178 363 359 109 378 379 35 380 53 7 323 192 131 366 66 262 306 89 197 360 204 209 230 121 373 299 95 241 218 244 335 70 284 320 133 115 247 386 421 5 339 54 103 422 275 346 354 62 367 376 191 288 431 240 334 206 213 20 362 200 298 13 16 381 302 351 125 409 39 79 208 317 111 253 256 9 181 26 114 312 198 428 184 207 88 341 188 352 433 364 272 120 383 279 55 234 219 238 266 195 117 216 283 173 403 84 231 233 34 147 245 136 348 91 58 415 396 281 61 345 259 414 371 393 232 139 408 384 229 57 46 397 146 17 73 424 374 257 307 196 71 387 276 28 282 145 321 353 382 150 280 267 395 242 344 172 249 156 407 77 185 175 273 434 243 205 329 313 294 429 194 287 183 37 96 235 47 43 151 149 137 420 134 301 413 330 224 60 38 278 255 211 217 162 69 394 74 368 29 30 72 40 24 76 406 112 158 435 347 319 426 127 33 417 10 100 210 189 171 87 110 22 118 166 361 303 328 193 199 3 389 304 75 186 290 418 157 370 316 135 42 102 11 292 333 432 271 377 45 155 326 268 6 252 44 65 296 153 36 221 108 372 385 314 214 143 68 15 248 83 375 80 8 23 398 293 270 174 140 182 81 152 416 59 105 285 260 167 168 212 122 325 48 358 132 332 129 98 92 289 27 404 160 126 399 401 215 327 142 2 176 18 21 25 337 32 388 41 277 148 138 263 392 324 49 246 269 300 19 369 390 410 402 355 251 274 4 286 180 336 400 391 107 +220 331 31 237 430 141 203 39 64 310 202 82 295 207 350 222 165 208 99 163 227 50 217 405 315 305 231 425 119 56 356 320 93 51 239 411 116 192 258 86 12 63 95 113 412 362 179 288 349 106 85 190 423 380 226 67 312 225 154 144 1 201 311 291 254 256 216 52 133 379 140 247 360 26 241 94 185 359 61 340 266 131 319 384 103 124 363 187 357 298 431 104 395 13 101 213 30 253 354 330 57 261 128 250 393 373 204 130 164 267 117 318 297 257 109 147 346 53 159 161 427 7 70 323 335 78 191 343 338 367 348 313 100 351 90 352 406 244 177 184 14 123 125 308 249 73 235 79 169 193 197 166 232 88 115 223 365 333 416 381 417 265 196 24 230 415 170 284 66 136 281 317 156 91 339 5 294 218 229 146 97 206 242 368 43 376 341 28 276 162 20 9 316 321 83 118 302 361 275 304 428 420 422 71 403 378 301 309 111 334 167 168 198 306 110 240 151 175 414 408 262 77 366 209 435 268 228 259 413 37 290 74 105 121 35 407 409 6 114 236 238 195 374 211 188 200 134 278 280 418 72 303 419 342 155 219 322 271 137 424 10 387 160 372 112 183 58 29 75 264 272 292 3 199 214 283 293 210 421 394 386 178 273 45 221 120 434 174 2 233 234 344 345 143 329 397 173 224 347 371 23 383 84 377 245 34 398 157 65 139 40 243 33 186 152 279 46 205 158 62 433 55 89 270 69 314 402 27 145 353 382 194 252 332 38 54 135 385 432 16 396 87 68 325 370 426 296 181 172 21 96 60 176 364 129 260 282 22 127 429 248 299 401 189 246 59 287 255 150 326 142 251 132 149 18 8 32 285 358 307 171 277 289 392 399 327 375 44 42 328 98 47 126 389 404 148 36 92 138 102 212 81 48 300 41 269 182 108 355 122 324 369 25 215 15 390 11 336 388 263 153 107 17 76 80 410 49 337 4 19 391 274 400 286 180 +121 64 237 31 331 411 117 141 424 201 161 362 20 39 62 56 125 192 315 123 250 163 113 291 187 306 99 330 79 119 216 239 240 147 364 318 244 298 170 50 90 308 85 82 169 341 350 413 294 432 297 63 191 145 386 26 275 420 69 1 373 131 51 305 218 196 303 258 34 177 157 217 103 317 127 261 110 7 162 339 209 116 111 70 230 243 159 284 334 288 403 109 256 52 249 312 185 378 114 247 206 412 16 430 28 78 287 295 133 253 203 73 421 343 130 387 126 106 190 84 310 262 101 361 65 95 105 179 97 59 67 304 61 124 254 332 259 428 10 276 381 37 154 416 380 367 202 194 422 340 155 158 397 47 144 280 9 178 329 379 172 266 296 368 233 22 181 399 349 21 356 351 320 309 149 205 86 197 435 433 278 431 38 393 94 358 372 120 45 166 348 395 283 188 220 346 314 235 394 128 164 2 241 156 200 12 232 93 425 115 398 257 204 290 360 384 414 195 352 58 353 382 273 165 267 342 366 383 426 427 409 333 60 137 319 252 268 272 46 359 139 264 153 363 160 29 285 214 376 207 66 226 396 198 229 374 302 222 365 171 354 55 236 184 335 30 77 87 221 40 27 74 173 234 225 23 271 75 371 357 245 407 43 293 13 32 36 338 390 251 434 199 150 167 168 88 14 57 313 208 301 231 223 151 282 370 345 415 132 89 42 242 112 183 270 6 279 389 248 140 24 255 324 281 344 289 17 402 176 321 269 148 193 401 238 118 429 299 405 146 53 326 72 316 48 408 142 41 122 227 213 211 347 81 260 210 100 419 355 307 406 186 135 92 265 263 417 98 337 83 104 174 327 404 25 76 322 300 33 3 182 175 212 311 80 11 19 108 323 292 96 134 385 369 410 138 277 388 71 418 375 143 215 224 8 325 423 68 54 18 44 377 219 328 5 189 129 336 228 180 136 152 35 246 49 286 91 102 107 4 274 15 400 392 391 +237 331 187 64 315 82 141 63 101 259 295 154 113 52 250 203 310 39 144 202 258 239 163 93 31 192 165 1 67 116 356 159 412 78 386 411 117 201 70 362 179 99 51 131 123 50 312 256 288 119 275 291 94 204 338 164 350 106 430 376 247 298 109 253 340 26 349 334 66 197 7 261 130 297 348 62 133 220 393 379 306 360 257 90 79 318 384 88 222 207 359 351 191 409 161 125 365 208 419 352 231 206 124 339 198 103 57 216 169 170 223 95 420 403 431 363 56 190 147 196 229 209 342 427 195 128 294 185 267 281 346 240 364 85 284 413 218 317 233 422 20 343 368 134 329 308 367 236 121 435 303 330 345 242 361 276 221 244 69 341 86 9 115 71 305 235 97 366 14 433 302 333 266 27 387 188 245 234 34 214 183 61 145 30 37 77 268 53 320 114 140 84 146 415 224 272 10 321 73 226 127 58 344 200 249 428 181 432 373 23 230 100 217 12 313 374 397 232 372 414 166 389 43 326 177 225 156 271 184 309 380 16 112 265 347 260 378 3 89 28 407 175 262 110 241 319 370 227 273 172 354 47 243 287 301 304 149 193 264 405 377 278 205 59 33 29 299 173 65 421 46 38 111 199 426 417 270 424 381 152 425 416 213 290 282 323 279 162 167 168 307 401 283 311 296 22 136 280 139 2 155 158 120 254 13 45 36 178 18 105 314 408 60 42 186 150 289 151 406 74 157 383 118 395 375 418 160 35 108 132 434 174 189 75 137 40 55 357 32 24 194 135 126 423 332 48 285 21 385 68 92 396 87 269 176 252 293 142 6 292 325 72 171 327 316 300 371 394 219 398 211 148 353 382 255 210 182 98 83 215 402 335 238 81 358 277 399 246 122 107 228 96 143 25 324 328 8 104 138 322 400 251 17 429 388 248 263 355 41 5 4 404 410 129 76 15 153 212 286 49 102 369 336 390 91 44 11 391 337 54 274 80 180 19 392 +71 375 326 120 327 374 113 159 95 291 348 237 70 376 78 295 309 294 203 61 328 202 345 308 115 169 334 170 172 50 413 350 141 218 352 31 130 1 187 57 178 331 344 412 163 411 9 253 362 171 42 190 131 422 192 164 323 429 230 63 64 207 339 307 208 288 93 220 56 247 173 329 195 431 98 144 34 90 310 354 420 263 82 239 250 161 321 346 153 165 26 424 284 365 430 47 261 142 86 379 266 240 278 14 103 22 137 363 318 133 264 39 384 421 94 268 272 33 297 20 67 368 351 52 349 46 298 259 356 391 51 154 102 27 366 65 149 434 79 184 158 119 301 196 193 206 370 248 123 378 312 177 367 201 260 204 24 271 258 16 109 75 235 338 114 340 216 315 337 175 116 41 409 85 117 147 73 139 232 28 305 276 283 121 88 150 214 275 236 74 106 267 290 428 197 262 359 25 306 101 40 256 84 38 8 99 48 194 316 167 168 128 304 55 191 87 360 280 435 44 287 426 43 265 386 330 397 210 254 252 415 174 211 62 270 145 242 433 285 243 427 66 380 300 281 407 77 7 32 414 416 432 92 410 6 166 209 140 10 401 234 342 179 198 45 279 81 185 341 129 188 17 105 222 143 189 257 381 387 231 233 215 182 18 372 343 364 118 361 217 124 97 395 320 403 333 180 347 205 244 221 151 60 126 160 125 134 37 292 127 385 181 58 223 311 273 249 59 135 289 408 398 377 111 176 293 241 299 245 373 317 251 229 200 269 296 155 156 394 393 423 69 157 302 417 108 219 383 358 282 419 313 148 100 314 388 112 303 72 400 162 418 213 225 227 199 68 132 29 49 226 83 21 35 212 146 332 335 396 355 89 183 425 405 277 2 324 13 319 30 138 399 53 325 110 122 23 228 238 80 152 353 382 36 19 11 369 255 12 5 186 274 371 389 322 4 246 357 76 136 96 224 402 286 107 390 392 404 3 406 336 104 15 91 54 +268 316 270 271 269 237 259 346 267 39 331 190 247 114 77 334 379 203 141 95 220 430 202 362 20 1 266 159 288 147 163 131 308 161 352 310 323 216 293 133 295 291 376 57 309 365 151 87 298 218 350 378 411 354 28 103 305 258 169 351 170 239 144 294 349 47 233 154 207 66 276 338 90 115 261 78 51 34 61 194 208 292 52 230 38 178 9 120 342 63 86 278 116 128 130 204 24 187 113 45 121 191 384 367 363 301 177 279 172 192 31 413 348 56 307 93 40 64 50 102 46 410 99 234 73 82 70 16 106 332 6 412 196 312 137 366 22 71 321 256 43 26 174 318 420 10 139 345 189 297 289 416 67 262 42 112 275 344 398 232 119 79 381 156 340 240 415 407 235 405 175 341 394 14 197 152 171 254 105 179 53 361 427 370 60 101 33 201 414 140 311 285 260 195 217 358 109 395 428 188 176 166 153 403 313 85 236 380 385 211 339 173 368 426 253 100 145 333 431 257 423 329 206 280 231 210 429 245 272 48 94 273 222 243 111 117 393 284 123 59 433 317 182 264 134 97 326 244 304 425 303 283 419 290 249 401 356 62 84 155 7 424 209 315 32 214 399 225 58 69 44 68 335 200 185 320 282 387 372 374 199 373 27 435 30 125 227 215 364 65 72 359 377 306 223 198 167 168 336 129 74 162 213 135 263 110 422 37 287 360 142 353 382 25 88 41 343 212 165 149 148 150 164 250 337 158 136 205 241 325 406 75 98 248 55 108 347 157 281 390 2 124 274 146 138 181 127 118 242 302 92 330 11 183 89 122 96 228 8 13 252 322 83 219 327 434 5 371 375 421 226 132 432 21 229 186 408 392 255 319 383 328 296 265 397 357 224 388 409 143 386 126 277 221 35 324 193 91 404 314 402 389 17 299 81 29 396 238 160 251 104 184 80 49 355 76 246 36 3 417 18 12 300 400 286 418 391 107 15 19 54 369 4 180 23 +113 348 50 374 56 278 375 388 182 49 237 57 291 131 339 42 295 95 70 78 34 218 1 47 44 391 130 9 352 220 307 120 331 207 203 334 368 61 385 356 410 38 68 294 430 376 178 24 321 147 216 71 363 187 345 208 33 247 253 346 202 133 159 163 114 379 387 64 66 411 63 327 48 268 141 350 377 429 31 93 298 27 266 272 240 271 192 384 239 407 344 201 115 422 312 231 367 428 20 195 161 82 270 177 401 288 74 310 39 349 52 102 301 362 329 128 150 190 354 122 90 259 73 318 111 244 242 28 326 256 412 267 25 109 421 75 361 373 144 360 359 103 116 370 169 22 18 153 409 170 230 86 67 196 88 261 308 413 119 51 123 297 419 85 94 206 257 351 154 197 100 37 7 121 164 365 305 185 105 340 309 26 117 191 167 168 250 79 323 338 77 383 397 173 214 6 101 276 285 287 306 151 149 108 234 337 341 137 386 204 99 198 65 166 378 332 193 264 281 175 16 293 125 420 205 107 252 46 316 232 330 140 8 372 434 97 139 189 30 221 11 380 366 435 275 364 194 258 245 313 217 43 235 414 62 179 165 143 347 209 324 431 290 200 300 118 343 415 188 55 315 236 84 393 403 172 60 432 284 328 304 416 10 269 40 14 260 433 424 136 211 381 53 302 124 145 106 319 17 87 152 233 342 395 162 127 262 400 325 176 45 303 98 155 280 426 371 299 417 174 210 296 215 265 112 142 223 184 320 92 158 69 83 222 229 249 243 279 248 251 425 148 241 254 283 225 427 408 59 212 273 72 157 171 181 21 32 405 314 353 382 226 282 2 89 418 156 35 358 333 4 394 146 398 292 199 274 317 238 41 129 5 110 289 335 277 126 263 219 227 389 355 183 134 36 399 29 322 96 132 12 13 311 357 255 224 423 160 396 246 213 3 58 81 76 186 228 404 23 135 402 406 369 138 336 104 390 80 19 392 91 180 286 54 15 +346 259 376 1 159 288 77 141 63 50 133 272 39 147 237 203 293 202 163 116 329 128 386 151 362 258 61 70 308 154 253 298 121 56 309 103 134 351 411 294 192 352 315 28 331 95 78 338 261 218 93 291 328 350 123 379 33 378 230 345 98 64 247 334 65 220 239 14 187 170 305 340 115 422 421 82 178 297 90 190 292 365 169 204 46 164 139 130 117 428 79 101 114 66 31 62 34 52 374 144 172 265 94 99 201 430 310 264 318 156 185 51 245 366 344 188 211 426 295 349 197 424 412 20 266 414 354 161 7 363 279 131 26 312 113 431 57 210 317 108 284 282 179 198 175 381 348 387 149 302 276 158 205 109 196 106 216 252 409 84 85 165 413 71 207 420 403 244 268 125 60 119 208 150 289 377 40 343 236 364 250 326 232 393 105 341 355 280 332 233 67 231 281 167 168 356 111 177 200 240 416 138 267 234 278 342 86 361 339 191 367 323 176 359 275 304 194 88 285 360 92 217 330 336 10 235 100 145 58 127 368 209 22 432 243 410 215 73 433 283 256 189 16 373 303 193 375 38 435 120 221 262 171 174 380 112 299 287 333 72 9 140 199 263 43 48 55 195 214 271 370 427 229 372 434 30 206 383 184 273 87 97 146 222 301 347 24 148 260 223 47 316 277 397 173 8 44 327 27 270 37 290 45 296 249 321 25 385 415 155 6 313 2 406 23 242 124 407 353 382 248 419 257 358 69 401 319 42 405 269 224 307 118 126 102 81 137 143 429 398 153 59 53 166 320 241 3 384 335 425 181 402 314 399 157 162 160 395 75 89 110 32 254 122 104 74 394 251 83 417 76 306 142 135 21 226 225 152 91 183 357 132 396 300 371 227 212 408 96 311 17 186 255 325 418 41 13 246 18 136 324 369 12 389 390 213 337 29 68 11 129 392 182 404 19 388 219 35 180 228 238 322 80 423 400 36 5 286 391 4 49 54 274 15 107 +50 56 410 48 25 348 57 203 113 65 102 237 295 202 159 376 141 385 329 47 38 374 346 9 1 34 363 22 331 39 334 163 64 375 187 93 362 131 116 352 70 266 388 288 278 147 44 207 78 42 345 309 24 308 350 247 323 339 298 220 33 291 391 411 321 272 120 170 63 150 31 239 261 182 61 169 379 218 259 178 103 310 192 122 430 95 307 154 175 114 197 429 67 354 27 351 315 66 7 49 293 144 82 77 230 258 149 216 52 190 121 198 268 115 94 164 412 297 130 90 373 208 368 151 344 393 101 18 409 250 71 338 68 431 424 123 428 173 85 28 386 256 88 240 99 172 209 119 201 86 211 20 285 253 79 383 422 312 111 117 294 328 318 370 14 426 267 204 51 359 420 401 387 161 210 360 419 284 299 133 109 106 153 128 100 275 292 300 305 177 271 366 262 365 349 16 26 30 248 46 377 185 340 165 356 98 403 414 378 176 196 73 282 413 139 134 191 171 343 244 260 62 84 92 287 270 184 367 188 108 280 137 189 245 242 6 264 283 325 231 174 301 330 105 276 193 152 205 10 179 37 306 148 303 200 195 194 326 364 214 333 263 407 342 127 316 145 281 415 341 129 432 125 143 397 313 279 167 168 302 206 97 234 140 421 166 327 435 427 11 43 40 215 361 232 221 162 17 337 304 138 416 320 243 236 235 45 217 405 155 53 380 433 60 124 55 319 381 156 269 87 249 317 408 332 199 2 157 273 223 58 335 265 398 229 372 434 118 233 384 314 394 257 23 72 296 400 112 59 246 222 74 252 406 81 83 251 417 126 358 158 347 241 353 382 219 290 21 357 395 336 289 225 277 392 146 132 226 76 8 4 107 402 75 371 399 254 36 355 29 89 142 32 135 181 160 324 418 180 212 35 69 396 110 423 224 13 369 238 389 311 425 183 3 227 96 41 104 213 5 186 390 136 12 274 255 322 228 404 80 286 54 91 19 15 +393 67 419 310 7 246 50 152 51 220 430 30 99 231 147 202 109 203 315 165 29 237 141 63 313 363 323 256 395 154 305 119 106 1 34 159 86 405 163 236 362 20 56 113 144 288 179 379 356 82 409 331 187 97 164 103 291 259 338 85 352 123 427 230 247 115 223 406 43 386 266 39 31 192 357 412 411 190 297 295 224 346 368 70 78 52 116 84 161 376 365 345 268 394 201 64 240 207 222 216 250 133 128 348 294 312 26 284 261 320 93 349 90 267 218 311 176 130 285 334 298 272 87 129 342 95 398 24 329 293 225 77 28 89 351 308 45 415 281 121 258 278 101 104 44 9 178 235 170 253 283 271 226 169 177 429 307 117 204 434 332 302 151 254 420 380 309 131 423 318 330 335 413 135 340 183 239 344 146 189 174 209 139 57 221 366 3 14 65 410 12 175 339 205 61 79 158 431 208 370 143 347 16 136 264 172 374 417 227 301 188 88 27 279 196 275 47 241 214 191 378 149 173 197 100 140 94 134 66 17 105 381 6 321 361 354 150 265 392 71 306 396 33 397 358 137 120 257 418 185 114 18 414 46 399 401 232 37 199 255 367 350 273 206 262 69 91 48 38 385 217 373 62 10 72 157 213 276 234 229 23 364 13 303 426 422 68 322 372 425 195 212 124 387 384 155 416 211 83 111 2 22 244 153 424 198 433 269 54 403 210 238 319 270 182 53 200 316 243 383 317 108 260 408 107 35 219 167 168 280 102 341 343 388 375 282 25 142 371 377 125 228 73 402 407 435 194 145 421 55 156 390 359 328 287 251 360 292 21 314 42 233 245 324 171 184 92 138 252 132 58 49 353 382 32 242 193 160 127 432 5 112 428 60 290 15 249 8 325 333 162 215 304 186 59 11 296 98 263 74 40 36 148 299 404 126 181 277 122 400 81 286 289 337 166 80 96 118 110 19 76 274 326 248 300 75 389 336 4 41 327 391 355 369 180 +56 47 57 34 388 182 9 113 50 321 307 374 38 295 237 391 310 291 385 375 220 115 348 49 331 67 31 99 203 48 363 68 163 70 93 78 207 410 7 178 63 266 64 22 42 44 131 102 339 407 202 94 185 305 141 25 161 24 356 20 120 294 334 190 323 61 109 253 261 422 187 373 256 95 201 144 159 14 97 393 260 51 306 420 240 86 111 149 150 30 230 101 106 218 320 27 139 33 345 315 284 122 170 169 430 192 239 90 82 429 208 368 411 267 365 352 165 147 247 287 119 164 173 278 344 216 350 6 143 123 71 189 362 18 380 52 241 88 92 283 114 29 226 288 16 234 272 231 401 177 424 421 12 153 262 313 197 222 154 225 157 412 65 298 152 435 281 431 176 297 427 206 39 242 129 130 85 311 337 117 354 409 372 137 309 349 296 103 175 413 128 268 405 325 26 13 367 318 11 235 167 168 108 66 308 73 198 250 127 285 280 376 151 395 432 158 116 236 338 259 184 162 138 84 254 43 172 252 398 17 270 264 140 87 419 196 328 379 238 275 37 300 1 174 258 279 191 251 383 79 301 377 360 188 223 10 194 2 346 394 434 271 74 142 415 179 359 329 126 124 213 246 211 28 69 293 341 205 408 46 257 215 45 423 397 387 326 210 204 133 212 343 217 121 330 77 21 340 219 105 195 248 417 36 316 378 428 145 100 342 274 134 312 171 112 366 381 209 265 396 89 299 402 322 166 193 221 426 358 418 319 55 232 370 292 364 244 327 118 72 361 404 314 414 135 40 433 227 75 351 335 243 416 200 107 214 386 324 403 3 62 273 233 276 83 333 384 60 399 357 228 303 290 302 389 181 132 81 347 199 8 125 425 282 148 183 249 269 155 406 80 76 4 32 304 371 317 53 136 58 156 41 229 160 224 35 23 110 263 5 15 400 353 382 390 186 146 245 59 180 369 332 277 336 255 96 355 289 98 392 104 19 91 54 286 +331 350 291 202 430 141 50 203 88 220 163 411 31 187 288 56 305 82 356 106 295 334 39 237 61 216 315 207 266 95 64 97 147 429 297 236 427 247 1 310 113 376 116 182 374 309 93 362 258 379 51 57 348 253 345 201 308 131 119 165 120 192 159 78 261 9 169 428 190 298 412 217 99 238 344 52 312 115 354 352 316 170 86 130 339 133 94 222 177 340 25 239 388 77 161 218 49 363 294 346 365 425 204 373 360 407 422 435 178 71 359 14 63 302 48 413 90 330 351 423 70 230 271 154 100 275 405 254 73 337 387 378 227 306 85 114 307 185 410 12 268 421 244 66 24 320 111 318 383 128 151 223 256 144 89 267 102 184 47 33 28 44 381 26 208 34 104 42 375 384 424 164 322 225 101 109 62 79 259 272 123 434 366 38 329 226 321 367 235 200 431 342 409 276 284 103 328 121 341 229 278 124 262 158 46 414 172 205 380 270 393 134 179 67 232 252 338 153 419 343 125 175 386 311 385 361 391 74 136 333 167 168 317 117 285 20 313 183 84 53 137 176 30 7 13 35 304 397 249 162 332 105 166 349 155 372 323 65 209 368 140 139 196 110 211 401 280 299 10 250 91 22 45 135 415 195 27 75 40 188 16 173 283 197 171 417 213 319 301 191 174 55 143 408 193 326 240 210 2 364 36 145 72 290 432 357 241 325 403 293 433 5 347 156 395 231 214 248 126 245 292 420 370 194 43 303 118 198 233 11 228 112 18 426 199 58 87 371 300 23 416 219 206 221 59 68 389 355 335 122 327 279 242 314 127 181 281 260 6 418 296 269 287 150 243 402 108 60 265 264 21 189 149 152 186 157 263 8 282 15 142 406 41 353 382 358 138 394 29 246 257 160 377 32 398 83 17 69 273 399 37 277 289 92 234 3 212 255 324 81 146 251 148 98 224 54 76 400 215 96 132 107 390 274 129 396 19 336 80 392 404 180 369 4 286 +163 159 376 63 103 128 1 133 379 202 95 203 207 338 272 412 237 329 334 294 352 346 259 141 261 78 77 239 50 409 308 154 208 82 345 291 340 26 293 265 192 147 365 230 130 367 431 39 331 411 362 20 131 370 285 297 113 397 151 220 56 7 267 386 101 67 288 116 247 144 312 31 66 52 193 351 134 61 318 309 264 231 349 123 284 305 315 347 64 23 218 51 258 328 170 368 178 373 169 111 253 197 114 189 426 190 188 420 430 310 90 28 302 98 34 366 266 205 109 33 93 361 166 161 279 70 275 115 195 424 348 242 281 71 172 121 350 99 363 319 136 415 198 250 374 344 298 273 16 221 86 211 164 173 175 153 210 262 295 356 283 435 24 433 199 268 341 44 403 57 125 167 168 43 201 378 79 200 326 194 413 145 377 106 278 342 416 75 417 85 214 132 209 65 360 216 256 204 150 325 244 401 73 139 248 359 165 9 304 8 196 354 120 229 414 234 276 324 179 383 217 62 206 306 240 393 385 60 212 74 330 428 358 176 280 10 282 191 137 317 187 323 174 6 46 88 149 407 339 177 394 422 84 314 184 94 410 14 245 97 155 100 69 119 387 381 183 236 87 112 162 384 405 138 332 327 140 232 252 108 301 224 364 418 270 399 271 292 419 395 336 398 303 47 427 251 171 55 421 11 158 260 117 45 343 35 406 81 257 316 277 160 371 143 235 102 105 287 396 156 38 42 124 40 53 434 432 375 135 313 215 243 22 233 17 429 408 48 3 321 37 380 353 382 92 146 185 29 263 299 223 118 249 19 2 307 222 18 36 355 289 68 254 372 300 27 30 89 225 83 290 320 148 21 127 269 296 274 25 181 186 110 157 180 152 390 357 389 335 369 58 333 126 402 76 59 311 226 122 142 241 32 392 129 255 219 322 227 213 41 96 182 12 13 425 72 80 4 423 404 104 400 238 337 286 388 246 5 91 228 49 54 391 107 15 +234 377 272 260 131 348 237 202 334 350 220 346 63 82 113 50 203 198 101 231 95 197 70 115 93 159 208 33 275 295 379 1 414 66 253 381 64 163 412 422 308 356 100 266 31 207 359 428 339 141 261 239 360 150 351 258 250 216 242 218 52 78 201 215 151 287 298 94 149 56 416 281 345 28 312 340 109 57 259 187 374 277 140 99 144 293 420 291 39 267 139 103 278 123 196 173 204 247 378 349 130 172 411 375 321 352 92 338 120 380 133 79 376 301 116 192 309 147 61 154 230 330 77 386 10 294 26 40 118 191 51 332 190 384 430 296 326 331 367 328 178 166 108 288 137 185 67 319 413 127 156 240 169 114 73 245 232 62 134 343 128 106 14 124 363 364 170 370 373 65 20 305 302 177 372 90 435 85 362 354 299 86 344 361 431 318 184 6 117 206 9 285 119 37 366 341 365 371 244 424 46 221 175 310 97 125 121 353 382 193 199 292 161 409 262 297 167 168 368 407 84 329 335 248 30 235 252 306 264 313 158 241 205 282 195 415 426 304 421 60 209 347 257 276 284 71 279 194 427 236 105 432 43 434 145 8 307 280 164 311 188 273 74 317 256 16 217 290 126 142 32 214 200 303 342 88 68 41 189 289 69 83 176 98 233 403 387 162 174 179 155 283 7 75 395 112 81 323 148 34 419 58 111 211 417 333 171 243 268 122 320 165 143 315 383 397 254 55 210 45 181 219 186 59 5 316 265 2 72 433 22 12 327 369 405 249 146 87 355 42 160 13 96 263 425 21 38 396 24 27 213 76 314 418 44 29 48 89 226 110 271 132 53 404 135 389 406 17 408 398 401 104 429 183 238 393 227 80 36 157 336 225 102 129 91 47 270 25 222 337 152 251 322 255 228 229 138 153 357 325 402 11 3 223 358 423 324 410 400 136 394 300 388 385 224 399 269 35 182 286 212 180 18 246 15 19 4 390 54 49 23 107 274 391 392 +231 220 310 237 163 51 395 67 63 356 39 70 109 201 393 430 82 50 203 113 7 202 78 159 313 1 295 253 100 31 30 305 419 99 411 207 93 154 56 266 116 422 291 331 348 152 208 250 130 144 197 301 64 379 196 239 97 101 29 235 412 119 242 405 281 431 190 95 312 284 198 12 86 360 103 187 363 359 24 165 123 352 131 147 52 234 230 338 294 247 20 257 256 94 376 179 115 340 206 283 384 306 372 318 140 9 26 14 349 261 216 189 175 323 368 365 169 161 315 146 170 420 42 232 380 90 66 112 302 240 192 167 168 415 351 174 334 297 185 259 308 62 339 320 114 57 377 142 367 275 43 362 330 268 121 124 428 73 364 141 218 79 241 409 133 246 347 264 77 417 55 265 414 321 85 298 285 236 311 354 373 361 117 53 71 158 345 374 288 16 346 435 199 258 128 299 350 272 421 416 46 68 151 177 32 10 34 413 332 262 28 84 260 157 162 425 309 267 254 191 271 278 434 47 111 136 176 37 166 106 386 418 357 326 120 137 211 292 252 245 44 87 293 370 134 184 217 36 33 433 178 74 156 212 276 222 143 210 221 366 371 195 193 378 172 45 226 319 282 209 329 341 403 279 164 407 426 65 406 173 344 375 135 155 40 238 427 277 204 381 125 404 401 27 335 139 398 6 3 227 342 2 181 72 392 200 215 394 273 118 396 69 316 225 224 61 194 325 432 387 280 105 383 233 424 244 188 429 287 214 18 21 132 343 314 304 182 251 83 385 317 75 248 129 183 303 243 5 38 127 270 59 249 397 423 35 22 205 213 290 149 108 145 88 336 60 92 322 58 150 353 382 296 13 307 126 171 389 408 89 223 96 358 399 388 289 327 17 8 19 219 324 160 104 229 76 98 122 48 186 410 81 91 269 337 41 107 328 300 80 402 110 228 11 153 333 138 102 25 255 355 148 369 263 274 54 286 49 400 4 390 391 23 180 15 +220 356 231 67 310 39 51 365 395 411 393 201 109 237 422 63 253 434 185 165 235 230 159 147 12 421 419 29 190 119 64 7 323 331 334 99 266 291 203 295 30 383 305 313 202 430 284 306 31 363 1 179 256 97 362 261 315 82 188 431 163 14 141 164 52 93 297 239 142 246 144 84 133 192 379 130 134 196 283 312 116 169 113 20 170 43 140 240 55 409 123 348 376 420 350 250 349 152 161 301 66 56 9 78 131 406 112 158 247 90 167 168 318 177 373 86 24 94 45 275 394 262 298 351 128 352 187 412 265 374 26 321 344 70 154 345 368 50 111 294 288 65 309 372 216 360 308 146 106 332 252 359 157 18 206 117 143 366 232 32 340 62 209 191 280 57 224 307 258 427 380 184 329 79 435 87 264 36 347 405 42 424 387 69 407 85 103 398 197 267 44 2 204 236 200 120 346 311 101 413 115 135 125 414 71 339 218 429 173 162 21 378 72 234 416 401 272 417 285 399 73 46 354 367 358 320 124 299 221 16 245 207 28 403 415 4 156 241 342 114 150 34 3 121 222 178 27 17 386 68 226 302 338 254 198 433 149 384 95 276 326 259 314 175 364 330 375 233 371 317 100 357 10 418 377 303 208 426 105 341 343 102 60 381 428 37 225 361 293 47 217 385 273 211 425 238 278 77 127 287 432 397 88 61 172 139 282 145 392 22 243 129 281 214 249 74 322 296 174 38 242 251 268 328 260 137 160 83 194 199 126 6 210 33 257 423 171 40 193 316 304 255 289 23 136 110 59 389 89 292 181 396 402 11 155 195 151 75 176 58 319 370 8 98 189 227 390 335 223 213 355 166 353 382 205 271 118 108 219 96 92 104 41 215 270 80 244 153 53 81 35 132 408 13 290 248 410 212 5 325 183 229 148 279 122 25 333 76 277 327 300 228 19 182 54 404 138 269 48 107 324 369 274 388 186 91 263 180 337 15 400 336 49 391 286 +308 203 346 116 272 202 63 428 293 93 309 376 33 134 163 50 377 141 39 95 350 288 131 1 61 220 197 56 113 374 237 198 295 334 331 77 159 57 266 345 172 151 133 66 94 291 294 359 329 352 351 261 348 354 70 170 169 360 82 175 64 211 338 253 259 414 282 78 120 362 139 411 115 178 103 379 190 208 147 323 207 71 247 210 310 344 192 114 154 258 65 410 128 108 230 150 9 431 315 130 239 31 412 430 14 375 328 349 123 278 218 92 297 321 24 422 144 275 340 424 284 20 292 51 109 301 46 234 298 102 268 28 100 386 336 167 168 339 305 416 149 171 140 86 260 216 263 38 420 280 40 312 174 378 138 26 205 85 101 231 176 232 161 52 204 267 34 10 121 381 401 248 196 90 250 73 67 201 7 332 98 363 42 316 365 283 194 429 105 279 189 287 47 158 137 341 413 302 44 62 356 407 276 421 188 191 318 156 281 240 177 185 195 252 368 409 215 217 307 387 119 164 366 385 262 244 187 435 393 235 111 256 79 16 87 264 271 299 45 330 55 48 99 384 277 370 326 343 403 165 117 426 106 367 68 342 285 245 173 182 355 319 270 296 153 88 372 193 327 432 60 242 337 122 209 265 317 43 184 364 306 395 25 373 81 361 8 166 353 382 72 200 83 125 22 371 145 333 358 380 433 236 6 84 397 127 415 206 434 41 74 313 419 75 152 221 311 199 30 222 58 398 394 97 162 53 233 155 214 143 37 27 124 383 399 257 388 118 112 325 11 320 229 290 142 347 269 223 304 405 179 18 180 2 335 314 427 408 49 402 21 369 126 212 227 303 225 183 129 136 243 300 110 392 289 148 249 59 417 423 32 35 241 254 76 157 219 135 17 146 251 12 273 246 36 390 89 160 324 69 406 80 389 181 186 391 322 29 255 396 224 213 13 400 96 226 132 357 418 19 23 425 228 5 4 104 3 91 238 286 274 107 404 54 15 +244 147 237 39 31 50 121 56 220 247 28 350 201 64 346 331 66 192 266 61 113 298 411 372 141 112 354 381 305 267 216 253 435 38 295 79 161 430 99 373 330 334 341 422 116 159 187 196 258 333 256 374 348 275 185 103 312 119 162 428 384 352 51 1 301 207 2 100 232 362 128 343 356 239 317 204 361 293 203 82 421 63 416 37 257 299 130 14 291 294 250 420 78 240 231 190 351 288 95 179 261 360 363 268 90 308 359 218 278 111 177 163 380 114 57 125 208 70 379 156 383 191 22 290 67 167 168 133 235 271 347 303 24 259 53 151 42 85 340 386 320 105 402 21 378 26 32 225 270 367 117 106 329 371 349 65 424 368 316 413 77 233 432 226 315 52 169 59 339 199 431 109 200 45 131 425 202 62 366 72 60 407 123 12 154 6 310 145 205 194 43 41 181 170 364 319 252 158 217 241 10 322 332 414 137 20 318 297 230 120 86 314 34 284 46 146 426 164 40 254 209 304 249 377 30 5 115 142 84 412 370 47 309 406 93 197 387 165 178 280 234 224 264 365 292 285 222 110 122 166 195 140 313 214 272 427 325 353 382 71 227 188 155 11 213 9 16 338 306 395 403 97 139 74 376 206 273 269 75 229 173 321 251 13 236 33 335 144 83 245 55 124 289 94 175 262 172 405 375 433 398 58 101 415 221 87 126 7 198 328 73 283 345 88 243 408 44 302 193 68 157 296 127 248 242 228 184 3 385 287 104 311 48 89 160 307 429 118 265 149 281 434 394 219 260 344 327 300 399 69 326 8 323 176 223 29 174 358 25 393 150 27 409 277 91 419 342 324 401 148 263 388 238 389 282 153 276 171 357 215 397 211 96 189 210 255 404 36 410 98 212 102 423 369 417 182 132 129 391 108 355 390 186 81 279 152 134 143 337 35 135 336 92 18 396 418 80 17 392 274 183 136 23 76 138 49 54 107 246 400 19 4 15 180 286 +63 147 237 346 192 330 159 66 64 61 1 331 83 31 50 350 202 247 376 267 163 141 191 253 39 203 416 121 200 133 334 362 60 98 341 82 230 351 28 26 422 420 220 190 161 14 245 298 378 403 295 154 328 259 134 435 308 411 187 119 117 257 79 363 131 158 167 168 77 352 338 156 115 201 93 101 217 318 103 430 312 144 367 414 197 340 73 232 10 261 290 109 173 20 379 196 62 52 151 204 78 218 276 188 278 266 130 116 309 279 272 288 354 43 176 118 332 99 94 349 90 178 431 239 128 112 364 6 421 110 160 428 113 56 305 125 46 140 195 311 234 317 377 198 368 139 348 208 40 304 293 67 216 123 51 372 169 345 84 380 177 164 303 170 315 57 145 194 244 240 343 179 280 258 95 319 33 250 231 206 59 401 275 87 235 70 381 281 92 339 264 353 382 209 252 262 366 85 7 86 356 174 365 323 432 297 307 412 146 9 434 282 184 306 321 214 294 106 211 374 199 361 273 302 424 289 150 205 243 172 386 287 108 310 222 221 284 24 254 384 387 58 296 100 80 329 16 149 71 165 359 45 241 22 2 155 233 347 336 120 38 268 326 342 426 355 157 360 185 409 313 277 344 427 21 193 285 126 433 127 260 55 32 175 210 34 292 227 373 236 256 283 97 265 207 65 105 142 111 301 114 225 291 162 47 8 406 37 320 226 13 102 405 370 333 104 171 69 242 425 30 415 402 36 189 371 148 224 413 124 335 181 3 383 166 255 12 72 299 96 229 81 213 143 393 223 42 300 88 137 53 132 135 18 27 327 398 228 138 249 74 423 186 316 29 48 395 215 271 394 419 399 417 122 41 314 325 76 248 263 429 358 388 68 25 75 89 219 270 369 375 182 410 152 407 389 136 238 129 183 91 408 404 418 11 269 5 357 397 396 44 17 23 4 153 251 286 390 322 180 212 324 35 246 49 400 385 54 337 15 107 274 19 391 392 +431 284 424 329 103 283 315 237 64 203 159 81 308 144 173 376 331 202 294 170 180 309 169 239 291 26 20 141 295 1 63 258 369 163 82 334 352 78 115 247 192 113 250 275 71 208 39 412 426 154 130 31 116 65 261 293 411 338 368 101 56 50 349 379 312 207 414 351 354 248 253 298 128 346 131 367 204 345 413 267 318 90 190 57 161 362 164 256 340 73 178 350 272 363 297 123 70 220 420 9 66 117 51 171 95 194 230 133 216 99 149 119 175 61 46 240 52 206 193 366 16 172 430 288 106 378 67 211 416 165 93 79 409 259 201 360 10 287 188 232 218 7 359 177 34 109 191 394 266 197 301 262 305 330 386 306 150 60 264 342 422 174 321 147 121 310 415 244 187 302 205 196 97 210 326 358 370 120 356 214 348 77 156 45 371 374 347 167 168 365 198 265 397 432 195 179 339 158 260 151 37 282 380 118 217 403 276 278 189 433 22 28 199 398 139 314 40 341 399 344 55 47 125 38 243 285 427 273 160 381 24 263 162 307 94 245 145 209 185 317 58 292 304 200 387 42 112 296 114 138 428 257 142 233 249 59 235 166 134 14 86 33 88 127 407 84 289 328 137 234 343 62 124 373 87 421 85 364 98 419 36 146 319 361 74 176 2 377 140 108 313 383 157 372 32 290 303 153 111 327 384 241 323 385 332 281 417 136 69 333 435 279 221 100 311 6 48 75 353 382 27 400 393 252 242 300 236 21 212 401 231 320 43 405 434 8 148 222 280 229 396 299 155 335 225 105 390 254 23 402 110 184 53 223 423 102 418 30 219 135 132 89 25 152 375 35 18 395 181 268 41 96 83 226 183 429 355 143 224 406 357 238 425 126 92 72 324 227 251 68 408 44 80 316 336 213 3 17 325 215 255 122 4 29 13 129 12 277 271 404 182 410 5 322 186 270 389 76 392 19 104 228 388 49 11 337 286 54 246 107 391 274 269 91 15 +203 202 67 163 315 50 63 379 141 82 331 231 430 39 220 237 128 31 165 1 259 409 154 113 187 159 51 192 109 412 164 362 56 376 338 393 144 147 26 302 312 352 363 99 411 419 52 95 310 305 130 258 297 295 384 64 101 201 116 256 119 348 288 207 103 214 291 261 197 247 93 356 133 386 131 161 121 239 294 61 216 265 90 339 329 293 70 190 123 179 7 318 349 23 136 334 253 250 281 78 373 298 117 350 69 330 85 183 198 306 79 365 230 86 29 285 417 229 361 204 208 218 106 397 170 169 340 267 405 84 223 88 53 276 62 342 257 346 368 420 30 20 34 323 221 266 403 209 264 278 196 222 240 351 364 431 155 236 341 124 242 415 57 115 244 200 125 367 406 284 151 97 427 135 206 268 188 308 94 360 359 380 301 111 387 272 191 235 275 14 395 418 178 114 66 271 413 401 366 378 320 345 314 251 435 232 28 370 195 262 343 160 422 372 140 217 43 313 254 173 134 433 71 100 428 189 396 73 234 9 177 35 145 156 205 416 303 112 279 317 65 309 332 105 37 226 241 181 344 184 227 175 60 77 152 381 27 425 146 24 47 354 46 243 347 421 8 426 282 357 225 185 283 176 58 321 424 12 137 167 168 158 33 10 377 414 18 162 199 245 304 42 374 120 280 270 213 319 273 434 174 211 150 249 36 16 143 172 157 394 233 324 371 149 193 139 252 260 194 224 210 17 13 118 423 307 132 326 38 89 333 166 398 432 48 104 55 290 3 59 127 186 110 287 335 292 385 142 389 328 32 219 311 358 325 87 74 246 375 45 296 98 322 407 238 68 72 316 269 2 277 289 299 40 75 410 6 83 44 108 399 22 408 171 107 388 25 126 148 215 383 404 92 429 182 248 402 212 129 300 21 353 382 228 355 327 81 122 286 91 96 76 5 255 102 138 153 400 11 336 19 15 54 390 4 392 337 49 391 369 274 41 263 80 180 +237 377 113 295 33 66 298 64 108 139 131 185 291 56 239 150 93 70 31 220 187 50 321 208 356 272 116 253 105 203 346 65 78 375 177 39 354 163 348 82 159 149 57 374 1 127 198 334 197 345 343 234 63 247 94 202 422 260 95 85 344 331 296 411 261 99 190 287 144 352 259 178 312 109 275 359 350 101 111 360 310 201 100 349 386 192 122 379 207 363 266 430 339 141 130 407 368 218 68 256 156 383 123 179 221 9 38 318 27 351 216 121 301 184 133 431 232 147 86 7 26 340 250 420 90 230 14 209 6 151 414 387 20 308 161 373 306 297 380 79 240 51 280 175 61 429 267 162 257 262 88 338 28 119 293 128 258 117 332 428 196 242 372 115 307 362 311 378 278 169 288 361 421 222 191 73 114 170 367 424 376 329 305 294 52 16 47 235 37 290 154 409 315 106 10 12 303 172 97 412 281 215 413 264 125 164 347 69 425 22 366 34 55 158 381 205 146 405 120 204 72 304 30 245 92 140 403 323 46 231 268 284 241 328 199 401 84 435 265 166 2 145 364 138 21 45 42 309 195 326 370 416 252 165 388 153 67 244 333 62 335 226 43 40 233 24 77 103 213 341 206 217 227 282 134 320 102 194 49 402 427 243 317 384 236 249 330 432 32 11 313 188 415 434 71 277 118 143 292 327 365 426 48 353 382 299 273 137 406 174 124 254 74 157 276 211 182 398 342 385 183 167 168 289 319 44 417 279 59 193 189 248 155 433 283 87 148 13 176 3 132 337 224 419 200 393 110 219 229 104 58 142 112 395 181 171 18 225 302 41 210 96 152 126 238 408 8 314 394 325 355 358 173 5 17 223 285 271 75 83 91 76 369 371 399 418 357 60 255 270 25 423 214 81 98 160 404 251 397 316 89 36 136 410 29 107 322 389 228 336 396 23 53 212 269 390 135 391 263 4 300 186 324 392 19 274 80 246 54 129 35 15 400 180 286 +220 63 31 159 147 64 163 356 411 351 66 237 266 192 82 201 350 253 306 200 141 331 202 203 235 39 140 373 348 14 312 362 113 167 168 116 239 384 294 308 435 330 50 420 422 71 295 305 372 230 61 158 185 169 26 119 376 170 190 85 161 334 1 374 56 383 67 431 109 83 341 231 164 128 421 267 216 43 309 12 412 261 297 93 123 86 244 434 250 2 125 339 114 379 131 413 7 275 430 51 424 317 247 232 258 329 196 111 120 28 252 328 57 62 352 99 90 310 346 323 9 145 204 130 172 155 284 165 380 60 78 177 98 365 162 240 30 142 371 278 133 291 156 73 257 45 44 206 184 256 217 315 321 319 265 87 209 112 100 361 314 187 10 288 343 20 117 386 354 318 381 29 378 280 70 299 262 360 313 22 79 207 414 46 326 21 103 121 94 65 40 55 359 160 105 301 115 366 340 375 293 137 298 176 36 428 211 24 42 332 416 188 402 292 281 97 345 84 264 251 363 285 179 344 154 175 395 307 205 335 364 333 349 208 342 37 283 415 195 77 221 178 320 32 16 290 426 259 347 69 302 59 241 174 407 157 368 173 429 248 101 191 210 387 263 397 106 325 234 110 199 432 143 409 214 303 27 403 377 151 38 11 149 139 72 276 193 126 144 304 102 401 236 393 272 287 6 226 398 394 370 68 17 254 225 171 194 166 197 300 52 74 95 224 367 273 8 127 427 399 233 327 13 425 277 322 410 135 218 311 296 355 33 229 41 75 243 215 260 3 150 47 23 405 146 34 249 25 183 289 80 338 389 358 433 238 136 417 385 222 182 81 35 245 58 198 189 186 227 408 255 213 48 76 129 118 153 404 369 353 382 419 88 181 406 388 92 122 18 268 396 282 124 134 337 223 242 246 418 279 390 423 5 108 391 148 219 357 270 274 96 132 324 316 212 49 286 400 152 53 104 271 91 228 138 180 89 336 4 19 269 107 54 392 15 +345 376 237 308 159 309 163 352 344 272 172 63 375 78 95 131 113 348 260 33 130 202 178 328 1 295 169 350 71 82 291 346 170 331 218 339 116 329 61 374 203 26 120 141 208 259 379 326 253 52 412 420 307 334 377 70 275 50 338 115 351 349 288 220 362 234 154 207 77 294 67 356 231 368 103 435 187 64 266 57 413 192 239 31 66 197 261 250 407 133 198 263 216 409 173 171 101 93 431 151 195 190 428 340 247 144 429 56 40 24 277 321 123 310 312 360 150 149 298 359 293 414 109 411 230 284 422 337 99 9 426 327 114 242 179 147 98 297 300 65 276 158 20 245 363 258 90 34 361 378 354 215 84 302 27 140 191 278 267 106 365 204 164 257 14 28 16 51 39 185 73 287 139 315 323 306 347 240 268 153 43 430 367 86 134 341 94 165 206 108 62 201 161 7 370 380 46 283 128 252 318 146 285 424 393 256 366 119 79 117 10 177 85 38 386 221 137 292 364 88 196 416 30 305 248 373 156 372 304 97 75 74 160 184 381 401 415 384 100 421 121 244 280 183 124 145 290 281 188 199 301 316 193 433 395 434 343 313 111 135 262 214 125 105 42 279 92 127 166 419 330 332 296 403 232 55 167 168 353 382 47 336 209 282 175 317 342 6 235 236 251 273 397 17 58 233 200 194 224 22 222 205 265 217 427 432 271 243 87 303 311 211 299 289 60 118 152 264 143 68 126 18 81 162 355 241 23 102 210 189 174 270 408 45 405 320 333 157 8 182 142 29 383 37 387 319 335 223 314 406 155 229 59 25 83 3 396 72 2 398 112 69 19 176 48 249 417 53 219 49 129 225 36 425 181 148 21 226 385 41 410 423 89 358 371 213 132 394 35 255 227 32 369 388 11 122 44 418 325 186 269 254 13 12 389 180 96 246 138 238 110 400 76 80 5 324 357 399 322 402 136 212 228 392 404 104 391 107 274 4 15 390 91 286 54 +113 331 237 348 163 50 430 187 39 295 220 202 203 31 141 1 116 93 64 310 56 131 82 70 350 384 201 315 412 57 361 95 51 253 298 130 231 208 26 339 154 259 78 250 159 278 405 67 312 119 192 222 356 52 227 291 147 216 380 239 109 257 63 379 362 179 207 247 161 226 165 352 288 376 144 242 349 133 99 100 425 320 258 94 117 431 420 103 225 363 101 411 204 241 164 360 359 191 276 79 254 61 124 268 266 256 190 27 346 321 197 270 373 318 169 125 311 271 115 338 73 90 403 422 128 213 106 218 308 423 170 341 294 367 121 354 272 413 343 305 374 340 334 297 13 419 198 7 230 265 123 114 217 435 368 37 240 386 275 71 185 393 9 244 284 20 264 66 428 12 53 330 206 235 24 406 221 232 345 173 34 140 261 62 364 5 110 30 323 344 156 281 329 175 421 86 166 134 333 313 301 196 181 372 433 177 234 309 303 381 145 408 143 267 28 351 85 14 319 35 365 195 120 43 77 401 229 378 377 223 409 415 332 395 342 249 347 137 111 290 432 193 200 306 88 375 118 84 416 316 317 188 304 172 252 424 18 209 370 97 243 302 219 214 427 273 162 299 233 387 160 426 58 236 10 158 127 335 326 146 228 184 414 155 68 29 205 33 6 417 42 182 38 238 289 269 396 23 357 322 167 168 151 112 293 260 262 366 55 397 46 69 245 283 105 65 60 429 224 74 47 199 139 22 75 211 251 136 152 72 16 407 178 174 280 307 45 325 385 2 300 194 87 434 277 8 287 296 104 59 210 186 92 3 40 418 126 327 189 122 89 314 282 279 383 394 371 83 32 44 17 388 150 389 48 149 183 171 292 285 176 398 21 142 404 157 108 353 382 107 132 96 49 98 328 25 358 248 91 410 212 36 129 324 399 81 369 246 215 402 391 102 153 148 255 4 15 19 355 263 337 41 135 336 11 400 76 390 138 392 54 80 274 286 180 +231 220 67 51 395 310 39 203 393 202 109 82 165 237 430 163 356 159 7 201 331 63 31 411 419 305 29 99 12 50 266 147 1 412 154 93 253 141 190 64 113 119 291 230 144 379 362 130 363 52 30 301 313 239 256 338 294 295 235 196 97 306 247 192 315 409 20 164 261 288 103 208 348 376 323 78 207 352 140 86 101 302 187 349 297 312 250 116 357 152 365 350 422 209 26 94 56 169 123 170 372 415 318 179 285 70 284 131 124 90 206 431 9 308 133 43 100 434 14 374 42 142 232 405 330 394 95 62 240 275 117 128 268 258 84 135 396 334 79 161 384 283 44 106 246 85 397 146 368 332 340 71 259 24 321 298 57 46 167 168 427 420 114 380 413 55 416 197 157 320 339 359 360 319 366 177 185 111 417 204 414 216 345 386 421 32 200 299 236 120 346 351 28 267 242 347 309 378 178 173 191 77 87 293 137 398 271 278 217 375 373 241 335 354 45 61 73 367 66 272 83 262 34 371 36 428 265 115 264 218 68 65 403 156 74 244 435 234 425 418 184 433 33 198 426 199 281 329 245 175 358 16 121 222 158 72 364 257 212 125 401 174 195 151 189 155 408 383 344 35 280 260 112 311 136 254 326 176 377 370 143 214 162 47 361 134 252 54 221 10 399 211 75 6 429 342 40 341 276 172 166 423 307 188 194 193 270 129 322 317 381 37 248 251 407 314 53 27 238 2 387 18 249 282 243 139 303 432 105 183 104 343 41 277 210 226 424 17 102 406 324 392 233 404 3 60 145 227 21 273 255 304 118 225 316 132 5 88 223 96 149 224 38 171 69 22 279 287 328 181 385 89 150 213 215 410 219 205 8 160 58 59 300 296 23 186 127 25 229 325 269 327 182 11 353 382 390 289 126 48 13 110 91 108 153 292 148 290 19 402 333 337 355 98 76 107 388 336 122 391 81 389 4 263 92 80 228 138 49 274 400 369 286 15 180 +113 295 237 354 331 203 57 64 131 350 291 208 70 71 202 61 42 31 93 430 159 220 82 163 51 348 352 326 247 294 187 298 190 334 41 1 120 52 253 422 94 56 192 50 207 412 428 130 173 321 95 375 169 431 114 66 141 144 119 256 218 376 338 170 78 102 47 9 26 346 349 239 109 374 128 260 367 318 33 359 73 339 154 380 379 204 360 272 38 39 232 177 201 161 165 377 420 196 384 301 308 362 179 368 111 343 257 258 370 320 90 242 27 327 22 116 250 164 315 310 166 140 101 378 356 121 330 115 240 309 100 46 117 234 351 391 137 142 8 99 79 106 48 386 216 401 32 178 261 195 345 363 413 278 244 288 307 134 312 266 341 304 206 421 193 28 122 118 233 40 124 411 245 75 287 414 248 63 259 18 85 297 53 344 191 262 133 20 86 175 427 59 77 306 305 433 264 197 37 74 112 388 167 168 290 105 72 103 340 162 241 67 227 25 333 296 311 149 185 435 68 172 329 323 44 221 373 408 65 219 230 285 267 43 424 222 198 235 366 10 275 171 211 423 361 403 317 127 194 381 243 150 277 213 415 139 123 146 14 407 342 88 156 34 284 432 335 300 210 84 108 148 182 184 299 92 60 147 302 434 365 254 16 405 200 265 199 252 125 231 303 387 55 215 276 158 81 126 145 347 319 5 24 209 107 410 174 249 6 426 7 409 332 49 97 83 157 289 416 188 282 214 273 62 425 313 236 87 226 429 181 268 364 293 217 283 58 280 328 419 417 2 281 110 12 229 205 397 238 372 271 389 160 21 225 353 382 45 35 136 270 155 69 151 385 292 11 371 223 13 394 279 383 176 104 369 400 418 132 96 17 98 314 404 398 228 4 30 36 396 316 406 212 263 89 189 186 393 358 251 337 395 153 336 255 29 135 399 357 23 91 355 143 269 152 180 3 224 183 402 325 76 322 129 19 324 80 138 286 274 390 246 54 15 392 +231 220 393 203 67 202 50 305 63 159 395 379 154 51 147 310 419 237 430 20 103 99 109 39 7 56 412 409 163 352 1 338 52 123 141 331 363 291 334 411 365 82 230 329 266 313 144 285 207 165 376 93 297 133 70 323 152 113 368 87 130 26 101 236 312 30 362 201 386 119 31 261 272 253 293 267 34 90 247 190 128 106 356 64 294 315 192 405 256 161 95 345 97 78 131 259 349 43 302 86 340 24 318 346 114 94 348 394 239 187 250 398 246 366 347 218 342 281 308 288 264 189 177 28 415 427 216 284 151 208 179 351 79 45 295 29 116 196 9 206 170 84 413 121 268 240 158 136 235 298 420 204 258 417 77 332 100 278 169 320 234 367 14 85 279 217 283 306 414 62 16 57 10 384 301 137 157 361 378 265 244 124 139 406 33 309 357 199 191 330 392 358 140 115 164 176 232 418 197 149 426 431 422 88 262 134 178 111 370 117 271 364 372 221 188 135 73 275 173 146 339 155 373 209 421 242 403 183 105 416 335 61 396 47 46 359 344 175 174 360 399 112 150 66 433 172 55 381 65 276 385 314 350 380 317 53 89 423 252 254 224 44 434 68 129 303 48 257 198 185 401 387 6 23 194 280 377 42 211 12 273 374 214 287 125 71 371 322 241 410 210 108 260 167 168 319 222 223 229 321 212 193 37 233 200 120 35 181 251 22 132 2 166 205 249 243 60 428 299 435 142 432 424 92 162 245 83 316 292 341 270 282 354 156 104 3 325 184 195 18 21 72 390 225 25 69 304 138 38 127 40 145 429 98 343 397 32 186 143 226 171 425 307 248 353 382 402 17 215 96 238 311 160 269 91 328 296 383 122 277 27 5 76 102 59 36 118 148 407 58 324 289 11 274 219 153 74 404 182 8 227 408 255 290 13 388 41 213 286 375 19 263 107 333 389 300 336 326 54 126 110 81 75 80 228 400 15 49 355 337 391 327 4 369 180 +237 77 116 259 1 163 376 346 340 147 159 187 63 331 298 52 351 350 422 154 338 378 253 356 115 258 31 65 40 64 156 133 101 220 284 141 128 288 197 82 334 411 308 239 179 201 203 329 202 103 198 431 290 70 349 61 78 295 348 309 363 28 66 428 360 257 312 291 50 359 185 326 93 412 123 373 275 272 354 435 26 14 235 204 310 99 372 170 39 247 169 352 294 191 283 192 421 293 289 130 46 240 188 79 244 121 234 361 216 97 414 420 20 424 317 386 332 261 10 208 51 266 267 196 134 30 144 250 381 161 207 426 127 362 109 365 113 366 318 315 119 341 106 333 131 374 190 245 56 175 100 231 16 90 2 62 281 7 218 209 172 146 413 117 94 199 256 37 430 377 125 364 303 58 177 236 45 233 379 85 206 21 71 301 230 345 403 305 347 343 232 158 265 330 264 292 120 406 336 95 282 164 304 112 339 260 273 88 252 195 84 367 243 32 67 145 276 380 262 313 140 205 73 57 221 353 382 297 69 72 43 38 12 162 306 427 224 86 407 279 368 242 327 9 126 280 184 194 355 157 151 415 176 3 87 81 344 254 200 249 178 432 402 425 278 22 302 328 111 167 168 319 229 173 98 287 277 92 296 83 241 383 155 320 165 139 183 114 375 60 370 369 314 434 59 263 342 124 398 149 174 110 387 193 323 335 55 268 160 33 142 166 53 105 409 393 6 226 238 419 433 248 321 222 24 135 399 36 171 307 358 42 311 299 215 416 89 225 214 27 285 408 8 47 13 137 23 96 213 34 217 417 223 150 271 384 405 394 389 74 152 132 429 118 251 104 29 316 211 181 75 143 227 210 300 322 108 270 189 397 48 138 186 91 41 76 385 153 390 418 18 325 388 122 148 269 395 401 68 80 44 371 423 219 136 25 102 410 5 404 11 246 129 228 400 182 17 15 357 35 324 255 180 396 212 49 4 19 337 391 54 392 274 286 107 +113 348 375 18 374 56 27 295 131 203 50 266 339 57 67 291 388 202 187 63 31 120 159 207 220 237 379 163 93 95 376 9 352 278 70 411 307 107 64 401 329 71 321 182 240 42 49 218 78 216 141 178 82 130 47 24 412 231 345 33 94 363 164 385 65 230 410 362 356 1 253 368 109 294 344 61 34 250 350 429 4 197 208 149 331 239 39 334 38 308 201 422 323 116 52 154 37 122 312 328 192 430 346 272 68 7 409 66 267 198 144 26 101 169 147 172 407 242 165 14 377 309 190 99 161 170 48 330 150 244 173 373 326 281 195 119 431 123 420 51 288 29 300 338 327 22 360 315 259 185 90 268 128 261 88 413 73 85 287 117 391 298 310 359 140 349 257 214 247 6 100 428 121 384 275 293 115 145 137 306 370 305 20 297 260 400 221 16 337 397 354 351 114 125 290 133 435 102 234 28 111 103 276 256 403 191 342 86 264 108 421 251 318 367 285 387 167 168 424 189 372 395 175 44 280 393 79 265 364 139 84 177 271 262 25 77 320 343 62 153 200 383 279 301 340 196 30 127 209 98 204 55 365 53 434 258 155 46 341 217 284 10 263 299 416 92 378 106 184 245 248 426 211 252 43 302 176 188 74 270 415 166 380 151 417 206 97 414 361 366 419 158 69 232 160 105 135 296 210 171 162 75 17 316 332 433 303 347 432 193 2 143 236 319 11 386 205 179 112 40 235 124 381 418 156 333 223 241 283 36 174 45 229 12 249 142 405 314 254 427 243 21 226 87 72 194 8 126 215 324 23 157 304 406 222 233 371 269 199 118 83 396 134 148 273 225 183 277 313 60 181 357 282 59 129 76 152 398 394 389 138 292 353 382 110 13 311 425 41 402 146 335 96 317 219 238 58 132 408 81 224 89 358 322 325 180 35 227 3 80 32 136 355 213 212 186 369 423 399 392 336 19 289 404 255 228 246 5 104 286 274 390 54 91 15 +50 56 113 95 78 334 291 34 120 187 178 1 70 352 203 247 376 86 348 192 163 141 170 309 159 345 297 57 169 411 85 130 295 294 218 308 339 288 182 71 84 237 315 207 202 93 430 161 90 429 329 374 39 375 47 64 366 195 344 115 250 150 131 397 413 9 27 318 230 172 94 362 262 210 387 153 239 428 211 65 24 379 123 25 388 278 393 261 190 305 310 33 342 424 419 119 139 103 116 401 431 49 52 149 201 121 363 331 51 62 177 46 284 337 386 48 378 31 220 307 240 14 253 38 111 266 79 144 99 28 258 73 74 67 368 232 18 204 26 61 196 271 370 44 117 281 410 189 20 268 272 326 42 154 328 188 184 321 367 354 174 22 422 88 365 208 82 137 361 75 101 340 194 259 7 147 63 206 426 327 30 407 316 356 165 343 125 306 409 421 175 323 164 197 412 16 248 216 351 17 106 171 108 338 102 385 43 244 128 384 298 313 179 287 114 279 205 109 245 242 304 350 364 256 283 191 341 236 105 233 292 275 181 312 280 274 427 330 133 199 98 263 166 60 349 432 134 143 97 221 198 433 285 145 324 223 403 152 267 373 138 270 293 246 126 391 276 176 243 319 346 273 127 360 92 100 249 347 359 55 217 185 129 269 10 158 58 77 317 420 289 235 434 414 6 264 257 234 301 193 69 252 209 389 214 162 254 68 124 132 299 260 107 156 212 302 110 155 377 435 112 282 300 45 353 382 380 383 118 408 325 417 87 416 157 358 332 81 415 296 381 53 148 37 59 231 392 394 395 398 66 11 151 40 333 229 89 357 167 168 160 303 122 265 19 396 29 222 41 200 406 418 405 35 72 142 140 251 21 173 372 238 8 290 335 320 83 96 314 32 399 180 241 423 355 2 76 183 225 400 3 336 227 146 215 224 136 36 371 186 286 311 226 104 219 277 135 425 13 255 228 4 213 404 23 390 402 369 80 322 12 5 54 91 15 +154 203 63 202 93 163 237 338 52 101 165 67 94 220 82 144 116 315 159 50 31 430 295 201 123 331 411 1 51 310 39 64 376 258 250 113 109 207 141 133 259 78 281 231 253 340 342 164 356 119 70 99 379 187 128 386 412 431 334 53 349 352 106 305 192 294 346 239 351 261 266 103 204 26 297 147 56 366 365 190 124 197 291 90 267 350 95 318 115 247 179 348 422 121 161 131 77 329 100 275 284 7 208 256 236 130 14 34 189 230 312 216 234 298 20 288 232 362 306 393 195 175 339 397 170 66 308 363 169 257 240 86 79 198 384 378 46 84 61 419 206 218 244 368 114 374 97 272 409 427 85 188 196 309 242 265 359 245 222 112 268 134 326 360 302 177 413 373 71 117 125 319 233 200 191 262 37 235 57 28 330 301 420 345 254 137 140 403 347 283 271 172 120 317 293 433 62 361 343 323 415 184 299 167 168 344 211 29 69 428 377 209 199 10 424 38 414 264 367 73 372 185 217 174 12 156 333 389 65 278 58 166 111 357 435 320 279 381 9 321 210 221 205 223 158 276 36 225 226 282 145 176 423 43 33 162 89 30 341 405 354 88 178 303 92 421 380 146 332 139 105 292 83 224 173 47 149 45 227 151 74 273 370 260 241 60 387 407 401 280 285 16 313 287 417 270 396 375 432 364 307 425 395 311 252 416 434 316 383 194 104 249 229 426 87 394 160 243 24 213 127 55 408 75 42 150 186 181 35 304 418 18 371 118 27 110 6 248 214 40 44 358 96 2 212 322 142 72 399 335 135 22 13 17 193 23 21 238 182 68 183 255 3 132 108 228 81 98 219 325 353 382 157 388 289 277 59 215 263 385 8 136 171 155 269 32 327 143 290 314 398 406 328 286 296 41 324 48 402 91 138 102 126 410 152 148 429 300 251 5 76 355 336 369 107 49 404 122 54 129 246 400 4 390 153 25 80 19 11 337 180 274 15 391 392 +379 56 203 159 50 202 220 67 44 352 385 231 266 51 409 147 363 109 412 163 207 7 57 24 285 230 348 82 237 376 113 78 312 430 164 411 410 34 131 374 1 253 295 310 103 329 345 291 305 208 128 111 192 294 419 362 141 373 178 368 356 95 130 323 165 383 325 43 393 144 63 265 116 278 154 137 415 68 86 261 143 293 64 267 346 308 331 190 100 93 65 115 9 39 247 370 99 18 85 47 20 26 33 175 351 114 212 239 216 338 288 309 120 302 23 221 365 169 61 248 77 119 6 170 29 240 42 422 173 256 297 31 417 155 299 321 319 218 161 88 151 334 70 52 375 133 71 152 347 264 342 123 272 211 167 168 38 214 179 387 14 187 201 210 426 344 429 177 435 90 35 101 30 258 136 420 11 153 121 140 408 259 172 340 367 318 268 197 315 106 403 224 195 397 102 400 193 28 107 22 300 431 27 313 94 73 324 328 418 354 209 135 395 434 276 405 166 298 55 252 17 251 301 366 229 284 79 125 134 105 205 196 84 158 204 421 413 146 401 188 326 98 45 339 394 75 191 350 292 46 150 198 386 74 388 314 37 149 185 384 16 359 176 250 236 174 8 275 273 145 360 378 189 416 117 341 3 414 283 280 330 274 87 380 171 97 182 199 307 66 83 244 217 433 260 327 377 245 49 361 349 235 381 183 4 206 53 320 407 271 262 398 257 279 303 138 242 424 122 332 234 392 223 129 281 10 406 69 139 396 232 427 48 306 432 428 112 335 2 246 160 200 60 148 277 372 364 62 25 162 156 358 399 89 124 287 194 132 72 41 343 270 290 357 336 108 282 254 391 316 92 215 219 241 263 36 40 233 243 184 157 311 249 81 255 186 371 21 142 222 317 333 304 423 19 127 337 353 382 32 118 269 225 80 355 58 96 389 402 59 404 227 76 390 289 181 126 226 322 296 5 12 104 369 238 425 91 54 13 110 180 213 228 286 15 +50 56 220 147 356 231 237 411 64 221 253 295 39 63 185 201 113 67 14 385 430 266 31 196 159 192 331 133 187 51 387 82 348 119 363 395 1 117 163 291 434 247 203 256 318 141 321 70 209 379 230 57 131 121 79 202 422 403 191 125 303 298 352 362 240 310 306 177 312 109 68 78 99 261 167 168 349 305 334 372 346 7 235 90 200 20 409 161 351 42 301 190 47 9 420 130 179 123 128 368 144 267 26 154 250 85 93 330 431 354 164 65 45 393 165 421 216 86 278 294 218 239 55 116 34 297 339 323 329 205 148 383 275 206 33 288 366 204 284 412 376 259 258 12 252 28 214 350 419 416 244 120 373 207 394 66 262 413 342 30 103 150 111 97 341 43 360 32 243 380 359 84 62 105 101 426 112 158 2 71 94 114 264 433 127 374 398 414 100 37 232 145 265 245 285 61 52 378 435 146 181 157 365 115 386 73 88 307 283 315 396 139 44 106 299 149 36 345 308 173 424 29 358 367 208 234 46 340 313 364 87 319 142 156 24 236 38 95 293 370 272 287 110 399 72 325 175 317 427 169 140 170 377 428 357 197 217 155 273 304 381 326 343 21 415 276 335 143 371 281 241 77 59 151 178 332 188 280 268 401 302 199 195 83 6 417 347 344 10 249 405 320 135 314 189 16 233 361 425 432 174 257 124 296 251 384 254 300 309 137 132 402 60 27 397 289 353 382 126 407 338 184 18 406 194 222 22 198 69 260 96 160 375 418 226 17 166 429 224 227 279 152 3 311 410 390 271 108 162 388 290 176 118 225 404 327 58 134 408 98 215 23 8 229 193 40 333 138 48 328 11 49 248 270 211 282 242 136 238 35 392 172 122 54 74 246 104 53 322 89 182 5 210 25 219 102 423 107 153 183 13 76 277 80 92 324 255 269 292 389 316 4 186 75 212 81 213 400 223 171 391 41 369 228 355 274 19 129 91 263 337 336 286 15 180 +220 231 50 411 356 31 348 203 237 113 82 67 116 202 412 310 312 147 63 154 295 70 159 51 373 430 393 7 86 64 1 30 379 395 144 250 351 93 230 201 306 239 331 101 12 109 417 347 305 257 187 207 256 179 281 360 405 294 78 208 253 99 56 140 123 301 20 265 340 365 359 39 163 152 363 291 266 128 97 216 418 29 315 119 235 130 136 259 85 3 313 94 409 320 415 419 297 413 43 95 115 66 52 189 380 222 131 420 133 241 349 398 37 376 386 146 161 14 240 45 190 431 338 394 435 374 285 55 114 100 345 26 224 36 232 24 422 293 192 236 425 314 334 214 364 339 209 357 155 197 90 251 346 254 261 284 352 383 165 57 343 275 23 125 242 267 368 16 164 141 9 10 2 69 318 62 264 302 185 71 278 121 198 384 321 406 377 402 106 311 335 258 103 167 168 234 372 151 53 244 226 326 175 344 124 233 169 184 366 229 227 247 170 367 323 65 6 134 342 319 221 268 330 162 283 361 145 370 183 77 13 196 47 329 427 325 79 111 213 246 127 46 28 193 206 238 87 298 260 399 199 434 317 375 272 362 358 135 308 276 290 34 333 73 177 42 407 105 156 158 217 332 142 433 32 225 218 35 414 117 397 262 88 149 61 166 178 381 176 195 21 143 421 378 280 424 322 341 204 150 403 139 299 273 287 249 33 84 307 191 174 432 350 303 429 296 387 243 137 27 173 371 120 194 58 354 72 428 157 271 188 396 389 270 40 211 200 210 38 324 288 219 5 181 223 390 252 255 186 74 68 22 327 282 215 404 279 408 83 309 300 108 104 385 8 41 132 304 426 416 75 269 205 92 212 44 54 18 277 423 81 126 328 80 388 91 392 76 112 59 172 11 122 401 89 182 129 245 107 96 316 153 17 60 353 382 228 110 118 160 292 248 369 48 148 138 289 355 98 336 286 49 171 400 15 337 274 4 410 25 102 391 19 263 180 +50 237 70 412 159 331 295 101 411 93 116 281 20 82 250 63 351 64 163 31 154 203 179 131 340 258 187 220 1 113 123 312 202 360 359 144 52 192 275 78 348 56 413 298 147 430 303 431 386 184 114 94 373 356 115 208 267 349 79 2 333 7 109 140 125 201 239 103 185 261 190 3 383 346 338 297 128 405 291 308 207 326 402 259 306 224 241 342 294 254 186 420 339 10 318 37 141 133 363 253 100 197 216 247 90 407 242 372 169 175 379 99 205 77 26 146 319 177 334 276 368 234 265 352 310 21 69 130 16 170 240 57 415 162 222 66 198 256 14 403 380 249 226 378 361 279 264 321 330 365 61 266 362 43 95 272 422 73 235 232 204 121 282 117 65 376 217 233 124 262 6 199 86 209 134 425 106 51 343 313 13 317 195 435 161 309 67 85 367 167 168 127 139 87 305 424 71 166 62 158 84 119 151 193 9 12 230 320 374 244 28 311 227 225 428 315 213 58 236 156 341 433 111 24 45 206 414 83 408 399 257 164 366 145 377 231 345 218 358 273 229 34 38 221 172 27 39 137 344 260 328 174 421 329 364 409 347 387 384 46 196 176 23 394 398 292 354 105 53 88 381 173 350 278 417 118 155 406 22 191 290 287 188 393 296 165 245 97 215 149 426 40 55 432 189 288 301 251 243 98 370 389 280 30 299 132 126 390 335 74 143 325 307 136 284 332 59 304 418 293 138 41 150 397 110 120 300 252 219 427 75 375 160 238 396 47 76 211 314 92 223 194 214 36 8 33 96 289 268 270 178 210 171 248 404 419 29 327 17 371 5 183 323 302 353 382 108 355 181 322 142 32 285 72 68 35 271 112 434 385 89 104 316 200 283 263 148 60 228 212 277 395 255 429 11 416 80 388 157 42 81 107 122 152 18 357 269 369 129 91 286 324 423 182 401 135 44 400 48 19 274 153 49 246 15 4 336 337 410 102 25 391 54 392 180 +352 113 429 120 50 375 56 374 178 57 291 295 237 348 410 203 345 24 42 47 368 18 49 329 67 388 266 153 220 78 159 95 71 187 34 48 27 202 9 141 182 376 344 337 308 379 102 339 331 309 391 130 218 38 307 300 131 385 68 25 310 288 362 321 207 422 39 64 82 239 253 169 51 33 354 107 115 419 61 315 216 350 334 393 31 401 170 22 312 247 7 192 208 409 26 163 278 70 363 430 119 431 164 411 421 88 323 256 190 328 1 117 99 185 44 268 165 63 103 356 305 154 85 240 122 172 65 346 327 407 109 412 201 90 93 177 30 123 370 147 230 144 250 116 297 52 195 294 231 121 17 46 150 149 298 105 86 28 16 161 106 111 259 267 293 14 263 284 271 318 326 285 221 244 424 137 175 158 330 261 272 428 204 248 196 299 426 173 191 152 114 128 395 320 214 20 338 74 73 397 171 72 380 302 43 367 413 366 79 420 342 386 258 66 373 270 283 179 101 349 94 6 97 287 416 140 262 275 384 387 223 260 245 360 84 359 236 62 98 427 383 434 252 37 301 11 232 75 242 364 313 347 139 197 361 77 29 167 168 403 365 378 415 229 162 125 193 324 290 166 400 325 351 306 133 251 174 276 188 280 206 343 209 100 145 211 281 340 155 372 108 176 205 217 432 377 341 381 210 55 222 316 264 392 59 189 257 433 435 127 135 157 148 241 194 60 198 124 199 304 200 19 314 225 151 414 233 35 89 212 269 417 53 408 317 303 273 184 333 10 243 319 45 4 249 112 146 226 296 58 129 279 246 357 160 118 23 235 156 181 142 265 335 423 418 219 215 40 143 87 183 32 234 371 81 254 224 311 292 289 353 382 238 2 138 394 8 398 180 405 41 227 92 126 132 13 83 332 21 12 369 282 277 96 110 134 355 274 69 255 425 322 396 228 406 3 358 136 36 402 213 5 399 80 76 389 104 186 54 390 286 91 404 336 15 +388 182 49 50 56 113 57 429 307 47 9 178 34 291 385 203 120 295 163 321 237 411 331 374 38 334 352 31 153 141 345 93 42 202 391 348 68 220 159 1 266 337 44 78 422 247 376 185 410 128 350 95 239 64 253 344 102 363 164 131 147 375 362 150 70 192 187 61 421 170 356 169 354 24 161 230 207 33 48 149 139 46 240 278 190 7 22 288 167 168 407 368 261 111 115 294 401 339 90 122 216 39 16 63 94 123 71 379 309 346 430 201 218 25 308 305 26 221 409 256 373 310 298 330 67 88 116 130 387 14 297 144 27 301 196 82 177 77 165 306 318 412 121 119 18 133 117 323 383 20 349 262 287 51 86 17 99 108 272 28 435 217 175 79 85 315 393 386 264 114 341 252 127 154 420 258 397 312 431 370 413 340 209 428 6 109 300 367 268 176 73 285 280 259 195 267 105 338 52 11 419 65 103 319 244 424 434 205 97 208 194 326 101 377 188 151 329 257 328 30 365 189 10 281 191 214 137 37 158 378 296 204 414 366 100 275 250 43 106 125 66 232 427 343 271 231 236 211 197 327 265 45 171 235 206 126 403 184 384 394 200 284 270 395 293 332 342 360 172 325 143 112 371 359 148 55 74 432 174 398 140 210 84 145 351 83 173 276 107 358 62 155 304 162 316 69 415 347 416 313 75 60 87 233 198 303 152 234 243 290 110 251 215 399 32 193 8 142 361 248 53 179 260 426 320 166 317 283 381 212 299 118 23 254 245 333 364 372 134 40 279 433 314 302 199 223 181 92 249 21 389 263 417 41 380 269 273 2 324 157 36 59 124 29 96 135 229 138 242 353 382 156 12 58 183 357 400 289 241 4 402 160 72 136 282 396 132 89 274 225 246 19 292 76 226 408 222 129 238 418 405 277 335 80 355 219 425 390 311 13 423 35 336 3 81 186 146 227 322 98 213 255 406 404 369 224 54 180 228 104 5 286 392 91 15 +163 376 1 159 203 202 207 334 128 95 56 259 133 93 411 113 326 331 239 141 237 71 63 31 101 78 70 348 64 291 115 77 154 412 276 169 50 197 338 308 170 352 295 220 362 258 216 131 309 350 82 340 265 281 175 272 345 161 192 144 189 57 66 230 116 198 94 90 346 375 61 253 310 20 344 339 174 9 374 422 120 187 208 365 26 201 298 172 349 431 261 318 190 164 430 14 130 288 103 98 39 378 294 211 195 330 210 123 284 360 200 114 359 297 231 379 413 278 264 8 373 356 147 16 435 34 329 341 305 52 424 46 293 323 385 315 304 121 361 67 240 176 420 282 275 367 363 28 196 266 218 316 263 173 312 428 262 247 7 171 51 86 250 10 232 117 384 301 206 65 327 366 386 40 387 79 191 134 358 268 405 217 184 332 256 368 257 403 188 267 167 168 279 273 178 283 397 38 87 165 416 166 108 377 328 112 280 27 119 393 73 183 307 69 415 139 125 242 145 99 143 343 45 290 381 185 151 409 47 243 421 209 351 407 62 347 394 270 234 182 321 92 149 252 55 414 24 193 60 137 235 399 126 37 53 221 370 177 100 271 233 244 333 426 204 153 303 194 401 33 306 432 22 85 23 289 342 160 75 84 254 205 124 287 43 127 140 97 105 110 248 320 138 150 292 106 88 398 215 429 74 109 48 302 354 132 156 371 214 336 277 223 317 260 372 6 181 236 319 380 296 434 42 427 158 383 155 314 313 162 222 417 44 410 364 118 68 285 388 419 406 58 402 249 433 425 199 148 395 81 355 102 21 152 135 229 30 179 245 36 241 2 41 418 311 111 219 142 269 390 76 180 227 29 357 300 212 59 389 96 369 17 25 353 382 335 299 49 251 325 324 32 18 396 225 213 83 286 136 226 423 186 80 337 35 3 408 89 246 129 238 12 322 391 122 224 13 255 157 146 392 72 5 228 11 19 104 404 54 4 91 400 107 274 15 +411 230 220 250 64 55 374 159 237 266 350 295 356 31 163 375 422 291 113 306 93 209 63 328 297 131 201 383 253 261 147 70 299 343 164 203 202 94 239 265 185 56 177 111 22 14 373 421 1 66 116 50 331 190 348 354 140 275 51 192 78 178 351 82 187 184 330 207 298 240 280 262 360 72 7 359 158 363 9 235 307 39 308 57 156 12 38 264 120 340 346 431 216 65 305 244 412 36 119 420 109 99 71 2 339 162 435 334 28 85 208 312 141 145 130 20 401 123 414 45 16 125 97 169 376 256 67 165 170 217 341 430 37 429 249 128 321 247 362 61 272 48 21 232 87 378 161 101 377 42 10 90 427 204 144 79 365 318 231 106 371 258 166 284 386 73 260 191 133 424 233 179 117 309 47 43 413 83 215 27 407 137 173 25 379 41 95 434 26 62 315 372 281 114 294 134 121 310 345 33 367 381 395 76 102 30 329 44 402 100 267 105 319 428 115 288 88 333 86 74 313 142 6 320 234 335 32 122 80 283 257 326 157 75 139 149 248 188 167 168 77 432 347 252 410 146 342 352 103 46 127 196 388 175 366 211 301 176 69 296 150 153 236 92 287 290 218 40 398 344 84 293 251 394 304 242 18 332 364 238 199 154 303 368 194 384 245 17 221 279 126 108 200 11 292 387 197 278 349 198 52 206 327 210 34 355 399 24 68 205 408 385 300 403 416 59 172 323 254 285 29 81 124 380 426 195 182 151 243 268 58 174 314 271 193 289 370 317 282 361 415 393 112 406 60 118 8 338 155 358 425 433 417 273 276 259 337 49 110 389 160 96 104 255 390 419 409 311 391 224 219 135 171 405 241 302 353 382 3 148 270 322 369 143 5 325 214 269 89 227 397 316 23 423 186 277 91 418 222 189 226 19 181 132 229 4 263 225 13 223 357 246 180 152 136 129 107 212 400 98 35 396 53 324 404 213 138 183 392 336 54 286 274 228 15 +308 56 329 50 293 170 203 169 309 202 65 376 379 175 237 248 159 431 171 211 210 250 163 20 39 172 266 348 154 116 190 82 64 115 103 426 359 63 430 360 113 98 352 392 201 231 46 1 294 305 339 123 259 220 351 144 278 230 378 70 291 413 263 331 428 51 161 57 312 412 334 130 93 253 178 192 133 258 295 31 340 90 338 78 189 275 239 346 129 267 342 147 109 414 345 411 174 197 298 272 310 71 24 14 34 301 141 208 247 422 386 292 424 61 100 52 86 268 416 363 362 67 194 62 101 128 95 193 216 395 138 99 198 121 177 204 318 87 315 244 261 297 354 26 158 85 84 120 10 119 218 137 94 131 16 79 73 344 114 387 302 240 282 349 235 106 74 368 9 196 358 361 284 179 117 398 173 316 420 374 323 356 43 415 75 77 28 149 45 433 232 341 380 409 330 262 326 53 421 366 191 40 394 150 335 364 7 125 283 207 164 350 321 371 279 313 403 124 370 217 419 434 281 97 33 176 285 271 384 233 140 427 111 187 432 245 156 142 206 209 381 332 377 151 66 299 199 367 399 249 257 58 47 139 88 195 42 393 118 270 6 60 55 167 168 81 372 287 155 252 148 264 306 112 288 405 205 188 429 256 397 407 435 134 166 243 365 146 185 236 303 165 276 347 265 105 307 180 234 59 37 373 241 8 83 317 320 152 153 32 92 396 145 44 343 157 260 38 337 22 68 327 333 162 385 212 219 357 181 319 200 269 280 254 30 143 160 126 21 417 2 290 389 72 353 382 325 108 273 110 328 222 390 324 229 401 89 69 29 214 311 375 289 314 410 41 304 408 418 423 136 35 251 336 96 227 296 3 224 127 223 135 369 383 102 184 17 406 27 132 400 225 402 355 221 215 5 183 76 238 425 122 11 277 242 18 36 104 186 226 404 246 48 80 213 13 23 300 322 91 274 228 25 255 286 107 182 388 54 4 19 12 49 15 391 +331 237 116 187 82 31 64 412 93 239 295 340 333 163 386 360 435 350 343 202 308 220 359 1 203 119 179 94 159 123 334 99 169 192 430 341 290 161 309 258 346 170 428 146 117 85 253 52 247 356 141 190 348 422 26 40 63 312 257 411 144 250 378 134 420 254 425 349 43 317 86 345 14 305 405 50 121 227 197 315 106 70 115 256 156 67 298 101 275 125 79 201 380 131 78 351 154 261 191 226 130 110 184 216 272 113 297 3 338 244 51 240 222 229 431 61 198 213 133 109 352 241 235 284 344 10 165 415 13 58 147 65 77 196 2 185 379 373 7 421 303 376 155 90 403 321 183 318 66 311 310 208 21 304 205 37 259 195 245 414 288 56 280 320 16 296 365 127 335 95 28 224 128 409 289 39 232 231 209 330 273 92 302 103 20 9 62 433 12 218 427 262 114 225 361 408 59 204 407 402 193 160 45 432 173 282 177 363 188 260 429 243 97 362 145 87 178 424 230 266 5 236 283 126 319 207 162 172 164 199 367 368 377 307 434 413 100 426 46 88 158 30 57 291 124 120 332 29 339 139 72 73 366 281 314 6 326 249 234 354 215 171 278 374 74 328 104 406 265 71 233 417 353 382 166 181 242 276 267 223 313 84 175 279 217 206 264 287 221 357 306 69 252 228 398 238 347 167 168 151 381 24 214 372 32 219 384 294 22 23 364 387 143 375 342 200 416 75 263 118 83 38 149 111 194 393 137 301 404 369 277 383 394 27 285 136 140 53 418 135 268 81 325 370 248 60 132 399 55 329 355 423 150 91 96 358 419 336 33 34 105 68 323 397 293 174 327 76 189 322 292 299 89 176 300 157 389 35 371 271 396 251 153 108 255 142 129 186 138 17 98 337 148 395 80 8 19 112 152 48 44 316 41 270 211 42 122 47 324 210 401 390 11 25 15 36 54 385 269 212 182 388 246 180 274 400 18 102 286 49 107 391 4 392 410 +50 56 385 67 159 203 34 47 141 410 57 218 247 1 352 187 128 38 39 113 51 95 376 288 163 388 48 362 307 42 202 131 44 315 295 393 68 331 182 24 220 237 363 120 430 339 61 411 121 31 318 18 259 379 346 64 291 401 370 49 374 147 192 310 348 103 7 419 90 278 102 298 207 154 115 329 33 99 25 109 373 150 367 9 111 239 216 266 321 323 93 253 409 334 368 161 264 20 178 230 149 122 256 258 196 114 130 117 144 190 293 27 403 94 164 28 208 231 79 165 22 70 52 375 78 221 201 297 177 107 350 285 387 209 345 265 240 305 354 125 170 244 119 397 151 344 63 169 133 26 412 139 223 267 272 378 300 330 294 422 431 356 245 366 65 14 145 191 232 108 308 261 173 204 420 62 424 185 262 338 116 101 304 82 84 361 162 194 276 197 433 421 342 365 243 29 85 306 88 391 413 273 394 358 343 123 341 46 71 383 242 236 271 268 86 106 214 233 287 328 303 30 301 426 364 198 148 166 127 429 181 77 217 270 252 16 112 416 195 320 381 200 428 66 312 60 399 284 73 309 407 250 340 6 205 37 257 427 332 137 45 176 188 395 156 317 175 211 432 132 349 152 105 384 316 124 87 434 275 153 302 380 435 206 222 398 319 249 23 357 210 282 281 172 386 8 193 299 296 372 283 189 371 260 157 100 377 10 143 59 396 199 347 415 126 337 58 53 351 405 167 168 92 158 359 324 254 251 110 333 235 269 11 43 69 360 280 248 292 289 97 313 279 140 417 226 241 225 174 55 414 179 72 229 2 98 89 425 171 389 184 408 4 155 353 382 17 40 212 314 160 400 118 234 135 81 423 21 406 418 35 390 74 32 219 12 134 215 246 75 96 335 36 402 13 142 355 104 290 277 326 183 129 392 136 138 327 83 186 180 263 325 336 213 322 41 311 238 227 274 369 76 80 255 54 146 19 91 404 228 5 3 224 286 15 +18 187 27 401 323 203 67 57 4 202 159 107 56 295 9 173 240 220 141 321 131 348 237 329 39 113 109 63 24 190 379 362 266 376 363 331 352 50 51 163 334 216 247 431 430 410 288 102 291 103 298 231 71 144 1 400 345 278 207 120 411 354 307 164 201 285 64 218 99 339 350 37 52 192 154 412 90 267 250 253 178 31 93 315 422 95 310 119 42 65 82 161 122 149 374 7 344 300 29 47 259 68 169 368 175 66 294 165 338 34 170 20 370 409 128 22 256 177 388 84 346 185 48 26 356 230 384 312 38 420 147 284 130 28 78 70 385 305 61 262 330 79 318 117 121 424 320 115 309 174 206 239 387 73 204 208 176 46 182 367 140 261 366 189 111 328 416 123 413 429 244 150 426 258 308 100 276 196 342 137 283 94 365 114 221 378 191 101 428 98 214 106 375 211 116 287 293 332 25 33 200 380 188 257 395 264 197 88 373 297 272 209 43 415 434 275 16 281 414 86 232 349 125 85 421 112 145 435 210 133 172 6 97 157 49 393 268 199 77 243 198 245 44 234 301 105 306 423 248 148 372 347 427 236 142 252 403 53 249 433 10 326 359 14 371 360 311 171 241 223 302 343 279 242 340 167 168 233 62 162 135 158 45 143 303 351 419 156 60 394 290 217 195 205 87 118 381 391 235 139 361 341 108 377 151 225 40 30 83 153 271 254 397 180 396 392 194 222 160 127 226 251 432 273 299 124 17 179 12 304 407 263 265 364 270 32 292 337 41 72 11 126 219 314 260 181 81 313 134 59 55 417 296 386 280 184 155 353 382 405 327 289 383 317 13 193 358 418 277 74 96 398 166 322 75 23 389 36 333 92 238 58 138 369 406 35 215 129 335 2 110 213 212 316 399 319 89 69 21 146 357 152 80 282 408 229 286 227 183 269 425 186 132 19 136 5 76 324 228 255 402 355 8 404 224 336 246 325 390 54 3 104 274 15 91 +315 133 340 165 123 99 202 430 62 386 201 297 331 223 378 302 119 203 291 88 106 179 188 411 237 90 94 318 334 236 170 309 258 163 82 222 101 424 85 254 427 169 63 1 177 376 134 128 64 93 61 161 79 308 86 104 130 204 305 387 413 144 52 56 306 84 187 14 329 51 381 34 364 279 259 39 113 217 103 190 284 181 154 275 232 379 412 261 342 89 109 230 272 227 192 317 58 220 397 247 195 141 164 172 60 249 159 28 346 225 288 116 425 262 218 197 433 226 184 125 50 349 233 124 366 339 405 351 357 156 431 298 20 194 67 97 295 115 267 365 310 229 70 282 414 178 363 409 250 183 239 352 281 151 77 211 146 338 13 31 78 110 312 283 273 210 69 380 367 114 57 350 244 95 199 322 131 356 46 138 359 3 121 304 360 292 362 9 320 426 372 91 147 171 191 117 245 256 428 198 205 135 294 12 345 224 343 10 174 26 73 43 158 206 421 98 264 40 228 393 216 253 361 278 354 145 419 287 432 137 333 341 240 241 55 136 347 7 213 423 403 407 373 112 139 276 111 81 92 175 344 176 185 243 193 290 207 293 335 35 316 289 280 105 74 120 238 189 374 326 396 406 87 422 311 330 371 66 265 384 348 155 266 434 234 127 149 118 417 166 355 235 415 420 208 353 382 157 196 299 303 75 332 33 301 36 370 59 219 16 22 160 296 96 173 45 263 214 248 24 435 162 328 418 186 314 132 143 408 323 252 209 65 285 319 313 150 47 38 76 108 53 30 271 126 100 29 27 2 15 221 5 23 260 368 358 182 395 71 37 42 389 32 140 6 321 8 148 72 255 401 200 268 257 383 307 242 327 231 215 394 21 398 399 48 337 416 212 142 324 41 336 25 54 102 369 129 167 168 270 429 377 388 180 385 153 404 277 152 375 402 122 17 18 44 325 269 286 11 246 400 83 390 410 49 251 300 80 19 68 107 4 274 391 392 +307 237 187 253 113 31 67 220 331 1 256 295 240 192 64 420 356 185 291 117 27 140 147 37 363 50 306 221 334 26 82 350 230 348 159 411 352 123 164 201 131 63 430 242 321 141 216 20 109 9 130 196 422 368 71 288 413 235 247 261 191 39 244 57 99 401 165 362 339 345 259 203 360 383 312 231 202 315 2 370 18 125 318 90 45 93 275 149 7 294 359 250 119 412 16 161 330 95 179 150 61 29 431 167 168 376 393 303 262 14 346 51 380 158 351 300 42 47 252 329 107 65 78 298 145 387 386 200 333 108 116 70 374 127 344 310 38 239 424 33 364 85 327 373 177 284 272 22 56 241 208 385 163 139 190 379 184 105 278 266 415 258 30 218 62 48 287 340 354 365 232 233 251 173 402 398 419 121 257 207 21 34 403 111 12 317 79 114 429 214 320 435 361 142 120 276 301 72 118 84 268 206 409 388 283 243 154 103 249 421 68 305 28 209 59 169 367 416 304 349 25 170 162 46 122 43 407 10 426 100 66 428 94 432 110 297 217 434 106 280 32 400 133 313 395 366 375 341 115 319 73 308 156 267 314 124 270 394 193 204 226 378 128 195 176 182 342 343 281 399 166 86 36 384 52 377 101 87 414 146 405 397 23 175 44 328 245 254 152 197 6 157 273 358 199 296 98 88 290 144 410 323 178 24 151 425 49 372 55 427 309 153 212 265 174 148 299 433 215 143 289 271 137 223 227 126 135 181 222 302 77 229 326 347 112 408 80 198 285 264 219 381 391 269 40 332 17 396 4 389 189 260 417 390 194 13 316 186 423 81 355 136 357 97 371 293 335 60 225 188 246 282 83 69 418 58 279 234 311 324 155 172 3 102 236 41 74 96 224 353 382 5 132 138 92 369 53 11 75 292 255 248 171 104 8 160 337 404 211 213 134 406 180 76 238 277 228 336 263 210 205 325 322 35 129 89 183 54 91 392 286 338 274 19 15 +220 179 82 12 163 237 146 99 50 305 109 165 315 51 431 258 67 331 411 31 356 310 64 224 295 39 116 103 63 159 119 141 56 147 284 78 363 430 202 201 203 351 3 350 226 288 106 175 7 123 406 43 187 133 298 185 283 113 70 256 222 128 130 312 61 291 297 309 329 253 227 239 204 362 386 266 1 190 405 380 134 308 207 409 235 425 267 424 250 225 247 427 261 97 144 349 379 393 177 93 192 383 259 66 86 281 376 117 176 85 412 111 65 420 302 275 90 334 241 354 30 208 140 164 14 422 373 26 340 240 365 94 372 359 368 360 205 188 88 320 174 348 169 131 306 311 421 170 13 231 229 236 161 318 151 79 361 84 29 154 381 115 317 254 157 426 112 104 121 313 71 158 100 52 196 139 209 352 173 367 346 341 294 213 244 339 407 216 434 62 72 230 342 262 374 199 114 249 330 184 20 414 345 77 378 435 23 156 38 95 162 101 125 167 168 135 357 303 335 105 301 413 347 307 338 265 172 325 57 408 272 343 46 366 28 35 257 191 328 2 42 178 183 238 417 189 24 419 423 197 332 217 34 264 223 195 166 218 37 89 9 193 402 10 17 155 143 273 91 232 322 120 387 69 397 73 314 279 415 233 252 16 282 394 344 32 321 221 395 211 47 396 364 198 206 326 299 403 21 74 58 145 228 210 137 293 243 323 416 428 142 214 6 45 234 245 290 353 382 149 278 44 150 251 385 404 124 136 418 248 280 55 432 22 5 59 40 242 433 138 87 333 18 370 319 384 355 33 287 304 127 194 171 260 268 429 219 398 160 98 215 276 399 200 68 285 27 246 327 152 292 36 75 83 96 118 358 377 11 132 212 92 81 110 371 375 296 53 255 153 48 60 181 277 108 271 300 54 186 289 126 263 41 401 316 148 129 102 369 8 388 122 182 19 336 15 389 410 390 76 25 270 324 392 337 80 400 274 49 180 4 269 286 391 107 +147 50 128 63 1 259 363 376 159 141 163 203 237 103 67 202 329 315 61 346 56 220 113 352 64 216 334 348 192 331 93 131 133 258 95 295 207 164 267 362 330 112 99 39 57 247 365 261 308 430 165 178 31 82 208 411 298 239 187 28 94 154 272 350 70 291 288 264 200 339 341 26 34 305 431 373 119 170 367 379 384 51 169 310 90 130 144 253 293 134 190 435 323 265 409 123 71 401 161 240 85 284 109 78 218 106 410 121 66 294 77 412 115 79 230 276 403 406 349 424 204 381 318 176 84 266 177 309 356 151 125 7 117 250 282 173 191 366 24 338 374 46 256 60 86 98 278 420 48 188 52 65 372 407 422 205 371 116 222 145 268 368 297 73 185 361 378 328 20 175 201 380 421 38 111 9 33 283 281 244 140 214 386 275 354 16 416 101 234 320 302 231 139 257 251 120 18 426 179 172 312 307 102 47 223 428 37 92 236 30 150 167 168 83 271 273 232 174 209 196 427 342 370 301 27 225 279 156 393 347 97 321 303 311 419 42 58 206 14 137 405 243 105 43 217 197 88 332 124 8 25 351 262 149 160 252 226 62 377 345 423 289 304 69 29 233 211 413 162 241 364 242 227 81 189 22 433 254 317 194 59 415 285 10 319 210 260 344 387 300 316 198 375 270 166 89 193 100 292 72 343 158 434 245 118 132 12 313 235 314 108 146 394 53 110 40 199 229 340 23 4 249 114 432 157 182 195 224 269 287 357 360 181 359 397 385 353 382 6 248 414 326 425 2 13 280 142 290 104 322 306 335 215 135 45 171 152 429 184 358 388 333 127 402 213 32 417 219 126 143 153 87 325 55 155 183 263 296 395 299 122 396 136 96 11 399 138 391 255 277 148 336 389 3 221 383 398 228 17 68 327 21 44 35 186 74 129 5 212 408 36 238 355 49 75 91 418 324 41 246 76 404 369 274 107 180 390 54 400 286 80 392 337 15 19 +103 247 239 207 367 208 318 193 166 95 370 273 237 163 319 132 39 78 386 50 334 331 242 196 203 304 61 159 114 220 1 79 31 294 340 411 90 433 232 141 112 161 338 64 428 376 384 191 190 363 365 192 216 123 259 147 258 154 261 298 63 100 315 354 201 310 256 430 20 291 347 350 362 303 352 297 199 202 131 144 366 230 7 128 426 113 379 218 305 52 109 51 288 205 59 34 187 301 206 409 133 28 346 115 84 121 99 231 416 412 361 167 168 170 431 86 169 308 403 43 73 130 292 67 312 194 424 209 378 262 349 415 57 56 197 106 26 267 82 330 432 295 268 177 111 397 119 381 93 245 317 204 285 413 387 368 117 380 266 162 342 244 217 179 372 343 77 118 32 195 235 140 276 214 181 9 16 373 420 124 184 306 47 101 313 46 85 240 249 74 284 62 427 271 173 282 329 142 188 236 321 75 359 253 10 393 280 116 125 97 70 60 250 158 264 272 198 351 360 325 341 243 383 139 309 53 137 293 421 345 41 69 6 24 222 405 275 88 348 414 356 157 394 326 175 221 241 42 71 87 371 419 233 38 281 229 358 65 155 14 278 234 223 213 364 270 134 316 55 174 98 353 382 105 289 120 283 323 171 89 58 399 279 212 422 156 254 146 164 211 145 178 333 165 200 406 44 299 324 45 172 94 138 332 68 185 37 210 377 143 22 339 226 176 151 327 189 186 251 374 398 265 225 407 40 248 287 110 30 2 149 434 435 396 3 150 274 148 252 96 269 260 290 21 224 395 13 302 83 126 408 219 344 257 314 296 417 153 11 238 129 12 66 35 23 8 81 401 320 277 33 27 136 418 423 322 410 183 328 104 255 390 357 355 127 335 160 425 404 389 152 48 227 92 402 122 215 29 102 18 307 25 385 375 5 72 17 135 36 311 228 76 108 91 246 336 429 80 263 286 107 182 337 369 180 388 391 4 392 300 15 54 19 400 49 +203 82 202 409 136 312 302 379 412 237 135 63 144 294 415 183 331 109 67 214 285 141 119 305 430 338 345 363 417 147 154 220 165 190 231 256 259 86 229 155 356 39 291 1 123 310 70 97 88 130 113 50 151 362 163 240 253 103 334 418 20 51 101 395 64 69 116 159 31 344 230 192 201 365 53 288 131 173 295 235 99 208 405 352 78 35 314 386 348 384 7 315 114 52 164 174 351 79 85 247 368 349 301 411 311 93 95 297 267 222 84 90 106 298 266 178 281 427 350 346 29 43 77 206 179 420 416 330 161 284 250 393 413 196 306 24 236 380 9 175 187 223 434 152 258 372 23 275 66 30 218 170 133 323 37 268 216 73 157 318 61 177 169 189 313 158 121 26 176 71 364 227 276 46 185 191 422 239 254 342 283 340 197 195 278 207 329 261 425 217 10 232 28 140 359 360 112 16 146 414 142 226 419 293 204 431 125 62 376 124 279 96 367 100 105 87 378 257 198 241 433 89 264 308 366 57 56 244 320 272 211 371 117 134 403 282 209 347 40 332 128 407 234 335 6 47 307 213 421 167 168 428 354 225 139 12 377 242 210 143 271 181 68 129 361 243 94 321 341 398 233 339 194 111 343 357 303 381 426 13 326 65 200 184 98 45 374 5 199 252 32 60 260 156 245 149 162 14 55 309 406 394 118 74 72 137 188 333 83 424 387 115 373 280 304 3 435 193 262 33 255 322 228 238 290 396 251 108 287 219 317 205 2 34 75 423 292 224 126 172 432 370 249 353 382 397 120 150 145 296 358 153 328 171 160 221 273 212 127 44 21 58 59 148 270 277 383 17 399 289 246 324 36 408 429 42 265 38 319 41 110 404 389 27 336 375 215 337 401 104 300 269 81 325 138 402 132 248 286 11 263 76 15 166 22 327 80 54 186 182 102 390 355 400 385 299 316 92 122 18 107 25 8 91 392 48 274 369 410 180 19 49 388 4 391 +63 351 175 98 14 237 211 174 65 281 376 210 308 253 93 159 259 176 64 331 309 192 116 422 431 295 189 1 46 66 374 258 170 326 31 179 163 328 94 169 201 345 119 190 344 263 197 56 310 346 220 123 334 82 57 133 311 70 360 378 216 240 359 43 198 86 185 115 71 312 101 230 203 275 272 279 62 172 146 184 297 291 411 421 92 158 338 177 428 178 173 128 113 293 204 235 202 354 267 85 401 147 375 28 298 187 323 387 50 78 373 239 244 284 20 306 154 366 156 329 292 60 262 90 424 140 99 45 342 280 171 414 61 40 120 318 261 340 317 9 350 161 195 430 435 117 141 106 10 305 144 379 330 167 168 348 252 386 138 248 362 7 73 102 84 97 321 341 127 191 349 427 51 188 21 335 343 283 200 232 426 105 315 356 2 365 121 87 52 381 22 149 372 250 79 109 266 130 364 247 131 77 209 402 236 413 194 37 307 72 12 67 303 380 278 420 125 282 16 206 26 245 139 233 164 59 222 289 134 432 165 265 108 287 58 114 145 48 38 302 196 135 74 410 193 285 352 254 290 224 367 416 355 217 383 88 339 27 137 234 403 126 150 327 83 260 296 294 377 39 408 243 353 382 112 227 412 332 363 370 142 333 299 257 288 69 55 3 313 183 241 415 44 25 166 36 81 384 314 33 249 199 371 118 304 76 394 34 157 32 276 273 398 148 425 361 399 358 75 264 429 433 160 320 162 434 319 47 80 110 368 231 24 256 301 151 208 68 213 238 397 103 155 218 395 132 219 400 18 214 111 229 13 225 180 129 369 405 347 226 30 143 407 215 8 409 124 89 96 221 42 53 95 6 5 389 385 390 100 268 388 255 393 228 29 104 357 41 153 122 186 286 17 406 136 242 23 300 181 207 417 91 182 205 277 392 325 404 251 223 423 152 418 316 322 11 396 271 246 419 337 4 324 270 15 391 212 336 49 269 19 35 54 274 107 +331 52 430 222 154 101 310 163 1 113 165 315 227 141 348 203 405 159 50 376 311 202 225 237 295 338 64 220 93 130 259 51 423 226 119 99 115 124 380 106 187 144 56 94 384 258 78 239 208 128 95 131 320 190 116 412 352 173 67 213 367 82 231 253 216 250 241 161 192 204 350 356 223 291 86 288 357 361 359 297 339 427 363 103 278 381 164 247 57 63 360 425 334 284 26 228 53 13 435 12 179 305 61 201 422 207 261 71 35 206 362 312 218 169 294 39 373 256 197 323 254 5 170 191 188 133 379 345 117 322 242 406 185 298 365 109 97 318 308 70 408 85 264 265 344 198 309 7 340 195 420 90 368 407 31 341 236 411 89 276 428 178 104 240 234 346 9 257 143 403 393 177 266 123 230 24 147 275 313 34 30 421 100 343 431 283 79 378 433 219 374 114 84 175 319 273 238 125 419 211 137 290 321 73 43 75 112 267 409 354 415 244 210 74 166 120 347 121 386 342 233 272 111 88 20 396 77 306 91 366 134 196 193 397 335 262 224 37 23 432 28 58 302 146 235 424 62 229 349 29 351 157 232 46 145 17 245 68 217 260 307 270 8 299 387 252 66 303 395 271 200 329 172 413 268 301 414 167 168 3 281 158 249 16 304 194 38 279 282 293 385 214 162 364 330 160 40 280 33 317 92 60 434 184 15 14 118 326 152 416 69 426 10 292 136 183 140 221 156 174 417 6 401 389 65 72 243 182 370 171 383 181 98 110 151 54 255 375 332 42 22 105 59 27 212 287 139 189 18 209 44 333 429 55 285 377 246 372 371 289 300 394 418 126 150 83 155 149 132 199 404 135 353 382 45 186 314 316 398 328 176 142 87 153 327 48 25 81 47 392 205 127 102 277 19 325 36 324 96 32 11 148 108 251 129 296 248 122 215 2 4 41 358 263 76 410 388 336 399 269 400 49 21 337 369 138 274 391 107 286 180 402 355 390 80 +261 366 262 267 184 331 192 280 220 211 237 259 174 39 247 82 210 63 334 103 46 306 61 379 141 64 253 203 163 363 56 312 411 365 376 85 295 175 169 86 428 288 26 202 31 51 1 294 170 362 217 378 14 147 176 352 230 346 190 351 161 308 67 318 256 413 57 191 367 291 298 99 431 302 279 90 130 177 258 154 350 79 144 43 315 159 430 214 78 424 20 208 245 310 232 356 50 111 173 119 354 293 7 285 423 101 117 109 95 194 422 323 60 329 28 266 314 416 71 133 201 218 189 420 179 239 36 105 348 196 128 421 252 426 94 70 305 157 409 121 209 244 185 240 204 73 412 93 140 136 77 9 106 235 172 112 16 349 138 278 183 84 207 361 171 38 167 168 384 113 311 139 200 178 321 156 381 284 319 114 187 342 320 316 339 164 254 120 188 330 309 345 52 297 206 368 289 275 380 116 165 328 387 131 125 332 373 40 233 115 374 195 151 216 243 427 432 88 34 303 340 149 66 158 292 59 65 394 343 83 344 6 317 123 162 335 150 353 382 160 134 307 304 249 434 197 146 102 205 333 370 55 433 273 276 110 222 358 290 181 407 403 281 414 118 100 135 397 45 419 268 372 393 415 399 53 193 283 155 223 47 241 145 137 68 401 313 257 30 97 108 347 221 198 338 248 199 58 22 301 124 341 360 359 326 25 282 398 37 231 287 74 402 417 2 148 396 271 229 21 371 227 87 357 166 72 395 272 270 250 24 32 69 263 296 10 18 383 264 224 126 132 42 236 98 80 435 425 33 75 390 265 127 251 62 142 300 27 41 3 408 96 12 299 48 81 104 143 418 186 322 35 377 410 29 325 182 44 129 219 405 429 375 212 260 226 153 234 388 13 225 89 213 364 23 277 327 269 385 152 122 92 238 386 406 11 8 355 337 17 246 404 324 76 49 255 91 5 180 242 228 369 389 392 54 215 4 400 391 15 286 336 107 19 274 +308 376 309 163 71 172 95 78 291 113 120 159 329 237 169 170 207 263 345 331 130 203 352 202 344 1 171 375 239 431 295 63 350 348 294 328 26 141 178 374 208 103 98 362 31 339 56 326 253 315 61 82 131 70 310 259 284 192 379 64 411 115 67 116 412 164 247 190 216 422 250 424 430 266 218 334 356 429 327 144 187 413 220 154 288 349 165 323 57 16 128 361 407 123 50 275 248 368 133 173 230 426 307 195 346 293 258 312 90 46 197 153 39 99 51 268 276 337 420 340 14 298 261 409 201 359 161 93 114 360 117 175 428 367 283 198 242 65 370 267 272 231 318 20 119 9 158 421 278 147 338 7 193 393 297 149 363 351 52 191 106 271 354 160 77 105 66 24 435 121 140 366 180 166 397 73 320 177 252 330 86 145 378 62 210 304 33 211 185 109 302 196 365 101 124 305 204 232 137 85 316 434 299 395 94 34 300 386 416 257 240 22 75 306 372 282 260 205 264 79 188 214 221 217 189 280 74 270 209 194 206 215 415 301 341 342 256 333 40 355 234 179 102 45 419 265 321 262 10 244 38 403 150 347 243 385 381 27 183 97 81 28 88 129 245 273 84 174 281 87 392 427 151 111 125 55 139 37 398 30 135 384 433 233 414 364 47 279 100 292 408 287 60 377 380 373 343 290 277 58 394 134 156 8 112 138 42 162 235 43 222 167 168 313 223 432 184 199 332 249 152 72 319 118 285 59 317 251 303 387 176 423 289 358 53 269 127 401 23 236 41 369 254 6 29 110 405 200 410 148 132 18 219 311 314 155 399 353 382 212 241 69 35 108 229 182 324 17 2 357 157 181 48 296 371 402 89 335 142 32 19 417 146 246 83 36 68 227 425 21 25 396 80 383 126 92 143 406 226 225 389 336 418 213 44 122 388 49 390 76 12 325 238 96 13 400 255 136 11 5 224 322 186 107 3 286 228 15 54 274 104 404 391 91 4 +50 231 63 67 220 203 154 393 202 56 430 237 147 159 109 338 310 101 51 113 163 99 82 52 39 1 93 363 20 411 144 103 207 7 294 70 230 31 379 419 323 250 356 295 412 128 331 130 133 305 165 187 261 116 315 131 119 409 405 34 30 247 395 348 352 141 376 253 106 201 121 291 29 78 123 94 259 208 312 152 64 281 86 192 266 313 236 95 265 330 264 334 197 189 342 368 267 85 365 179 362 14 218 190 285 134 256 339 97 349 386 297 346 26 222 298 345 364 278 53 329 340 384 161 357 206 318 240 198 306 367 117 90 420 205 427 351 140 347 100 246 372 302 204 258 12 293 279 196 275 373 164 24 62 272 320 79 87 136 288 396 124 57 422 175 66 61 308 268 115 415 217 226 417 146 200 301 176 239 403 371 401 416 234 158 28 43 191 398 257 242 216 224 151 431 225 77 114 9 173 188 69 394 221 18 45 174 16 377 380 223 241 84 374 227 366 413 359 65 276 44 169 361 244 105 170 360 177 232 319 71 303 83 209 37 322 10 418 172 284 344 434 433 73 33 125 254 235 149 185 309 311 167 168 199 111 428 406 68 55 282 271 425 36 89 139 335 135 88 262 214 426 370 186 178 112 387 46 92 48 38 378 137 287 414 341 410 145 321 23 317 3 435 332 358 6 183 132 314 325 283 143 98 60 385 193 229 381 350 421 213 156 127 354 47 150 273 212 195 243 104 260 399 13 397 194 252 423 251 280 255 42 157 432 35 375 162 392 166 58 27 307 118 184 343 108 383 228 233 129 245 22 155 2 407 181 17 299 32 424 404 249 326 120 211 292 333 72 25 4 96 296 286 210 138 238 402 15 122 160 59 142 40 388 316 353 382 277 54 21 324 304 270 91 289 408 219 327 215 107 148 182 269 429 5 390 171 290 328 102 400 11 110 8 74 153 248 389 76 80 263 274 19 49 75 81 41 300 126 336 391 355 369 337 180 +333 331 237 77 116 346 187 159 298 254 350 290 351 258 412 50 247 52 295 82 352 161 93 127 378 435 154 14 126 64 334 131 119 163 2 195 340 235 70 289 239 121 312 196 192 422 201 259 428 343 253 31 103 319 256 10 425 407 141 58 117 349 318 21 101 128 430 1 16 169 190 365 415 99 123 411 432 37 170 79 113 218 233 95 297 144 94 304 191 374 431 373 360 257 362 244 359 39 120 413 133 240 6 380 197 267 341 90 216 363 185 280 73 345 177 204 156 330 125 85 276 261 338 421 38 147 275 313 368 78 420 199 398 26 414 28 317 45 208 308 220 243 433 22 310 130 86 61 115 284 403 203 106 305 291 206 315 379 40 46 114 9 51 408 241 162 372 63 321 367 65 344 20 303 178 348 155 74 229 288 198 402 59 202 158 179 75 175 366 296 166 232 278 361 426 100 242 160 292 7 236 226 207 353 382 213 83 250 266 386 57 110 97 184 377 84 311 209 309 376 354 109 332 53 69 223 384 245 87 112 339 225 342 356 375 320 173 264 124 283 429 30 188 273 137 424 13 145 370 230 43 67 205 272 165 294 281 248 387 34 66 381 183 249 200 12 27 287 194 252 139 5 260 72 427 24 222 140 405 71 164 282 265 325 399 227 231 329 263 171 299 238 214 397 88 62 306 134 41 347 146 406 167 168 32 157 60 193 118 416 105 174 262 302 234 417 358 186 383 228 172 326 328 217 279 3 96 335 224 149 176 92 111 389 336 364 394 293 152 314 307 181 434 301 419 56 151 8 409 104 81 277 212 255 393 300 136 182 132 251 327 369 324 98 390 33 89 29 153 219 215 357 268 142 143 271 418 355 423 129 270 388 23 42 135 150 221 55 68 48 337 122 316 385 404 323 47 44 108 76 322 401 11 285 35 25 19 148 210 395 91 80 36 400 211 371 189 269 410 102 49 17 396 391 246 180 15 107 54 138 286 274 18 4 392 +331 203 295 237 93 31 202 52 82 101 315 220 165 113 154 50 412 115 61 430 187 163 144 56 226 94 141 64 63 227 380 99 169 242 130 222 216 159 379 310 67 338 170 320 348 241 258 51 213 119 359 95 334 128 133 360 352 247 1 350 225 207 349 70 208 190 124 116 231 161 298 78 201 291 13 239 311 12 259 197 114 123 312 405 39 131 425 164 272 66 373 57 386 179 250 384 90 192 339 288 103 367 254 343 53 218 411 368 256 305 340 106 260 204 261 198 297 253 318 109 306 409 431 184 275 374 393 363 20 376 397 26 7 117 357 71 235 257 362 219 356 415 284 281 266 422 267 193 166 137 361 62 9 244 294 195 223 147 262 24 278 162 413 381 333 427 308 423 34 185 290 321 351 346 139 345 234 302 317 424 111 86 344 342 230 121 394 79 354 435 326 173 73 196 183 206 417 85 149 27 365 151 58 301 378 309 428 84 293 375 177 16 14 42 38 232 5 37 282 229 364 156 307 150 433 10 167 168 191 420 265 178 97 341 347 323 276 322 329 40 6 143 238 240 377 68 418 236 120 23 35 155 112 398 30 200 287 100 408 273 414 175 105 366 146 407 387 228 172 22 188 88 29 303 396 421 47 419 43 28 370 332 304 127 194 264 125 358 211 283 280 432 233 403 395 8 271 33 383 313 48 268 46 243 118 299 406 327 296 77 171 74 199 92 217 249 145 205 314 221 245 210 209 270 416 277 399 140 335 136 279 45 214 126 401 181 104 69 158 134 319 108 135 142 32 385 59 186 426 17 122 182 316 324 18 330 292 75 60 189 372 65 87 2 252 55 215 36 157 110 3 44 174 248 89 21 160 132 212 224 389 81 429 371 72 176 434 388 148 285 152 353 382 300 98 402 107 25 41 91 83 251 96 289 390 337 11 153 328 102 49 369 15 255 4 269 410 325 391 54 404 263 400 286 76 19 246 138 129 80 336 355 274 180 392 +71 326 327 376 237 375 113 159 309 61 374 308 95 1 291 31 163 78 130 295 120 169 70 64 352 331 354 253 350 172 170 26 190 345 348 431 178 115 239 329 171 142 63 422 192 334 164 294 301 207 141 247 82 202 263 203 328 201 9 362 340 208 344 250 90 187 173 346 218 42 103 420 413 412 368 144 52 57 349 50 149 351 261 284 195 131 339 46 8 154 435 56 379 39 161 119 363 16 165 98 370 321 424 318 204 411 116 430 193 258 323 240 123 150 220 133 283 421 272 206 429 34 378 338 267 79 287 93 312 278 20 177 232 367 257 99 347 361 28 32 196 330 288 359 40 305 341 121 298 77 175 191 360 304 22 427 384 106 117 67 315 101 86 234 194 139 158 307 73 260 51 262 366 216 174 259 414 235 426 252 137 33 185 74 75 118 264 179 266 94 310 275 38 221 381 105 128 47 290 14 109 230 432 245 248 387 65 153 356 211 386 377 233 60 59 297 100 124 243 428 281 244 43 145 27 280 62 306 210 66 242 112 397 249 87 276 409 189 10 24 197 380 188 433 256 160 88 300 254 391 127 84 416 166 97 231 265 81 114 342 85 102 289 415 364 167 168 296 337 434 311 125 45 147 37 184 17 403 273 317 156 313 41 222 227 126 7 209 215 333 365 217 180 303 343 369 408 157 198 292 200 214 285 320 407 385 372 199 140 219 395 205 419 335 277 58 129 373 279 302 151 394 236 241 108 6 146 181 401 226 69 148 371 143 213 268 398 396 92 282 299 132 155 229 383 293 316 425 238 225 417 176 111 18 72 393 423 55 251 13 405 110 358 83 53 134 355 332 182 353 382 135 68 357 35 314 389 400 212 44 271 183 23 418 30 21 228 2 325 255 223 162 25 5 48 270 319 12 152 138 324 89 29 186 404 36 399 388 49 336 104 402 96 122 11 246 19 136 322 80 3 286 406 410 224 269 390 76 392 91 4 274 54 15 107 +203 159 56 50 220 379 141 202 61 93 346 376 95 237 352 259 67 295 308 266 293 374 57 147 288 192 362 163 411 103 39 1 348 77 115 216 116 169 109 294 51 291 170 310 309 128 247 190 172 151 208 258 350 154 230 131 261 24 82 34 331 334 267 218 363 33 207 410 94 178 211 339 63 31 78 375 38 430 113 28 120 345 85 351 253 384 64 268 86 204 164 7 272 210 26 114 165 231 297 323 349 373 133 381 393 144 130 321 167 168 332 316 305 239 377 342 205 298 329 100 111 315 365 338 99 52 140 368 47 344 175 413 66 366 161 292 428 278 44 312 412 42 209 354 90 171 187 416 9 40 285 196 106 275 422 65 401 137 105 370 328 139 121 102 409 380 265 240 420 301 435 43 46 356 71 149 378 271 22 20 200 14 117 276 134 92 191 27 101 166 340 119 424 256 280 150 245 70 185 177 257 326 341 123 260 387 361 79 318 367 53 414 217 195 299 421 18 343 407 232 336 244 156 385 431 201 419 236 397 234 125 98 158 235 264 284 173 302 214 262 197 372 320 55 182 62 388 29 73 176 48 415 270 84 145 403 6 10 248 263 330 287 386 174 277 279 30 138 179 60 427 252 88 25 359 223 307 143 75 68 360 108 327 395 37 283 188 83 432 347 74 319 221 222 306 184 189 198 199 426 58 273 87 193 241 162 41 16 269 250 383 281 300 194 317 155 112 97 49 81 233 152 251 434 313 429 337 303 364 72 206 45 153 423 433 146 296 124 333 325 282 400 69 394 242 59 122 229 311 8 355 254 353 382 290 89 408 225 127 107 219 335 396 304 249 215 11 314 243 135 118 142 289 160 406 212 405 32 324 224 183 322 226 36 13 2 148 132 213 425 12 358 126 417 398 399 246 136 227 91 357 186 129 255 402 35 3 80 4 17 21 110 23 157 391 104 181 228 371 418 404 96 369 390 389 5 286 76 392 180 238 274 19 54 15 +18 187 27 203 107 401 295 67 202 220 57 379 159 4 237 56 31 141 266 240 131 9 348 331 113 323 321 352 400 411 329 247 207 291 173 362 51 216 431 63 39 82 350 24 93 334 412 120 190 109 64 192 430 231 288 144 253 37 163 201 103 370 164 368 71 169 1 95 230 50 294 354 7 170 119 363 244 267 250 161 374 154 312 218 147 52 356 384 410 298 20 140 346 422 239 178 26 66 90 149 268 376 208 29 165 116 122 375 128 339 345 117 42 413 297 123 99 300 308 351 38 94 204 385 330 315 342 130 78 65 258 47 281 415 79 409 209 387 214 175 338 196 278 285 340 429 114 70 293 395 100 46 137 68 271 344 426 121 200 150 275 366 435 305 189 133 195 360 221 373 420 185 22 284 259 84 257 359 365 14 343 261 262 28 61 309 177 111 172 16 388 45 256 101 349 307 328 73 424 310 306 416 326 43 85 112 318 34 301 102 197 264 367 272 232 248 414 153 33 86 394 287 115 145 428 176 125 6 48 206 235 174 378 270 433 434 167 168 191 53 397 386 105 88 380 421 276 320 283 106 139 245 217 332 135 98 198 179 377 347 290 303 158 171 199 10 62 252 265 160 188 316 77 233 337 302 364 417 211 393 87 372 403 25 242 383 333 55 407 127 234 44 263 251 11 182 156 97 299 142 427 155 249 205 317 241 236 162 327 292 118 418 194 40 243 41 341 60 311 361 184 269 124 210 49 398 83 260 254 32 108 17 419 23 166 358 371 146 273 193 296 280 2 381 304 319 81 148 314 59 279 180 399 219 143 74 36 183 432 30 69 75 212 392 12 396 151 223 58 181 21 226 222 126 157 136 134 324 313 423 389 138 110 391 277 72 369 402 229 357 335 405 13 92 353 382 289 186 96 213 225 35 80 408 406 238 132 152 8 282 215 425 227 76 19 89 390 129 224 286 3 322 325 355 5 255 404 336 228 54 104 274 246 15 91 +23 379 373 82 412 312 237 314 409 417 183 31 415 67 351 155 326 136 418 229 63 202 203 144 356 240 109 306 159 334 331 135 340 380 164 169 190 170 360 302 345 220 51 113 265 187 116 241 276 295 179 214 359 69 173 128 239 1 435 344 119 348 291 64 165 123 349 99 339 125 430 285 88 130 29 43 26 258 7 50 315 284 37 387 192 261 267 411 254 310 308 86 275 323 420 71 352 280 97 365 184 201 131 197 20 222 213 221 305 145 161 79 85 106 163 16 431 368 193 9 376 133 30 427 198 329 208 143 362 141 374 216 90 231 12 363 393 35 65 101 407 175 297 95 303 346 311 73 247 343 375 62 230 61 372 235 236 253 364 120 24 200 397 395 327 283 383 209 256 321 244 81 272 147 333 320 251 149 413 207 424 185 117 398 386 405 219 264 78 156 384 309 195 317 115 52 13 318 66 361 378 3 259 341 146 294 162 84 45 223 74 342 425 206 350 171 40 347 402 428 98 153 127 250 243 335 154 139 178 367 307 172 56 238 57 46 150 137 140 225 296 129 370 298 188 75 266 394 111 422 338 406 103 290 2 226 414 126 325 93 70 281 196 177 227 27 389 233 87 292 224 429 218 248 282 249 403 55 262 257 358 330 328 157 36 47 124 273 313 287 408 232 426 324 14 322 369 255 234 288 433 21 17 83 166 194 160 105 357 77 10 399 421 22 38 366 121 199 191 293 114 152 432 186 33 278 300 28 319 354 268 142 6 304 158 167 168 204 205 434 34 80 301 396 18 252 189 174 8 401 151 59 385 110 419 72 279 60 217 58 355 39 289 260 176 100 89 5 4 299 228 271 400 94 270 32 263 371 381 11 212 337 148 41 390 242 404 118 277 112 269 377 68 108 353 382 423 53 134 245 332 132 181 44 96 15 246 416 76 138 122 42 210 388 211 180 102 316 92 54 104 25 274 107 19 215 182 392 48 91 286 410 49 336 391 +308 172 376 309 345 78 159 352 169 113 163 170 130 344 263 237 348 178 171 63 95 67 329 326 71 375 202 339 1 328 26 291 203 334 103 368 131 409 207 82 195 98 431 250 116 50 374 338 379 412 141 109 120 173 420 218 192 253 331 266 239 154 208 362 275 231 350 347 56 295 419 52 34 144 70 153 272 261 294 297 57 393 307 115 24 363 429 51 284 288 33 327 61 190 310 346 64 16 129 315 312 31 422 20 101 361 340 260 220 65 197 428 278 356 123 187 435 90 247 259 147 426 413 99 7 198 164 411 152 230 77 283 267 86 430 158 302 285 204 377 165 323 140 337 351 407 39 359 38 424 293 9 128 62 134 298 30 416 257 206 360 378 93 216 386 306 276 258 373 240 256 191 106 161 372 367 318 300 84 85 349 66 46 47 179 341 365 421 366 342 175 305 119 150 73 28 88 193 149 364 79 252 234 330 209 14 313 177 43 265 354 414 196 188 133 201 221 262 160 40 370 81 10 282 145 245 281 22 29 264 214 17 279 434 277 27 87 42 117 125 397 151 248 380 401 321 182 111 217 185 433 69 75 189 102 244 304 427 49 100 146 415 236 242 18 403 194 124 97 74 162 273 243 83 174 301 205 280 60 135 405 395 211 121 223 108 137 8 59 384 94 139 210 180 176 215 23 222 383 387 6 233 200 290 55 388 246 268 232 37 381 92 105 143 114 44 292 371 303 58 138 355 157 396 112 156 184 369 199 319 36 235 410 229 314 417 183 53 45 167 168 398 48 287 224 25 336 317 358 255 89 299 311 406 3 325 408 132 166 251 332 155 333 432 335 353 382 249 418 394 118 68 241 289 181 320 343 254 35 32 11 324 186 385 219 357 142 126 122 316 96 2 400 271 148 225 110 399 127 423 296 21 80 270 72 402 226 13 41 213 392 19 76 389 322 212 227 425 136 104 12 238 286 107 269 228 391 404 5 274 390 4 15 91 54 +237 63 39 154 1 253 159 259 147 46 346 220 351 50 175 121 349 250 82 305 133 203 329 64 422 31 179 192 331 354 70 174 202 116 281 431 267 187 247 128 244 356 163 189 119 201 308 298 245 56 386 430 379 352 103 340 338 65 232 312 77 258 141 306 109 123 196 288 275 261 231 342 350 14 239 28 284 301 101 310 51 204 176 113 315 52 421 302 411 134 146 79 130 67 61 112 309 66 156 190 99 240 362 264 376 292 297 426 26 293 197 378 295 90 318 216 144 366 85 115 161 272 256 218 412 100 170 317 334 86 420 158 252 279 131 230 84 211 169 78 332 359 191 360 330 424 20 368 266 185 177 117 283 93 210 294 7 106 363 178 381 414 291 233 367 165 60 198 428 365 164 43 348 419 377 361 188 208 347 380 173 370 262 98 343 403 36 285 341 234 209 278 96 353 382 83 319 345 97 383 37 125 335 373 257 409 172 71 194 235 32 95 16 59 387 58 260 289 432 40 303 140 413 434 304 73 214 62 433 111 195 427 114 236 435 384 265 81 57 207 311 200 10 299 416 282 105 415 268 243 94 280 53 199 221 142 326 42 364 72 38 372 241 323 224 88 167 168 145 229 24 242 30 339 276 222 34 205 325 206 273 406 124 104 151 271 393 344 374 227 157 149 184 138 120 263 45 3 17 333 321 137 12 313 136 8 2 217 249 193 33 328 417 9 248 181 314 76 127 139 27 118 44 55 162 108 277 251 215 47 287 357 307 369 22 155 425 135 87 23 397 160 254 21 401 290 371 407 171 166 300 226 150 320 69 429 110 89 355 389 183 270 74 286 405 296 398 395 126 418 148 394 6 212 29 399 396 324 404 358 225 68 132 408 153 269 152 102 92 13 48 238 213 402 410 423 91 35 223 327 122 75 129 400 143 228 322 18 316 5 375 219 385 41 54 255 336 388 19 246 390 11 25 186 80 180 392 182 4 391 337 107 49 15 274 +315 431 284 424 283 103 331 329 237 220 258 222 81 179 116 106 64 430 141 225 308 239 310 309 144 115 173 298 1 99 50 163 295 363 82 253 227 226 159 216 288 311 247 204 187 134 203 119 423 154 63 26 369 31 70 354 376 130 291 346 147 202 425 305 208 128 88 352 61 190 405 78 349 293 254 350 180 427 256 51 426 39 170 109 362 223 236 267 146 201 169 422 192 259 79 381 165 367 250 272 334 224 340 318 411 356 46 297 97 372 275 205 77 161 414 261 13 380 65 312 420 123 66 360 56 338 90 117 412 378 188 133 322 207 101 359 217 52 7 361 73 406 67 131 156 197 89 175 320 193 233 93 113 71 368 241 12 413 351 151 164 185 213 218 177 302 228 409 57 235 294 121 174 232 191 276 58 379 341 317 84 20 249 407 257 421 95 292 172 198 229 3 9 244 10 14 158 196 104 136 195 339 248 419 245 86 273 35 211 345 333 234 140 330 124 28 112 281 403 265 386 240 43 348 238 282 415 16 243 60 24 264 304 194 40 435 178 53 118 343 365 206 321 323 210 433 2 160 162 290 355 219 125 428 94 366 145 5 342 214 260 303 289 266 314 371 328 279 301 370 138 313 416 120 171 393 353 382 62 176 300 262 72 373 114 230 278 384 37 167 168 74 139 252 209 30 166 374 100 85 137 142 199 111 59 22 307 242 347 45 326 432 23 397 91 394 299 296 34 21 344 38 102 200 306 27 110 332 287 402 157 364 316 383 408 32 417 377 184 335 434 6 69 149 55 357 429 387 87 127 401 189 181 33 75 358 47 8 398 105 155 280 285 263 98 212 135 150 42 399 319 96 268 418 152 108 221 15 215 18 231 25 29 186 143 48 132 36 392 395 83 327 126 389 251 271 183 325 396 336 153 277 92 246 182 148 410 255 270 80 129 122 390 385 375 400 68 41 17 404 44 76 324 269 388 54 337 11 19 107 274 4 49 286 391 +356 422 253 147 237 31 158 295 184 85 20 63 435 365 113 411 187 123 341 373 334 116 2 307 192 64 386 14 348 86 284 306 9 294 420 383 413 291 309 266 10 93 312 275 172 308 170 30 169 190 363 201 313 374 279 230 424 65 97 321 163 421 78 272 372 185 281 94 99 161 88 133 45 16 21 215 92 333 28 349 261 141 235 106 70 139 366 145 244 431 250 340 164 280 177 1 56 100 267 130 432 62 283 351 114 131 331 305 297 90 251 26 343 159 76 101 345 178 36 200 256 144 81 216 156 50 191 360 315 402 162 128 407 22 398 98 376 7 119 318 346 359 252 414 38 142 167 168 344 361 355 399 66 239 121 175 310 364 37 415 188 434 197 55 199 319 298 57 429 378 262 150 427 43 24 358 125 127 110 220 389 109 87 51 202 134 430 69 203 153 176 117 12 149 195 254 303 377 34 82 317 105 419 263 140 79 84 381 259 46 126 198 375 234 258 33 67 246 299 40 368 296 397 412 257 205 393 394 83 339 204 74 236 276 165 240 174 274 226 330 243 6 152 278 137 47 301 39 231 352 108 290 328 329 428 238 287 335 171 217 61 371 157 384 247 265 129 151 80 52 332 227 426 405 425 186 292 225 362 166 242 179 207 71 8 232 221 233 77 155 138 194 282 13 260 347 273 249 255 380 115 135 433 59 183 288 300 388 324 189 304 29 387 209 27 181 44 111 3 248 96 354 357 75 289 58 268 196 95 32 342 182 406 367 264 326 245 89 327 241 320 104 390 193 314 229 409 293 379 311 208 23 417 271 408 206 353 382 103 72 73 120 60 337 350 154 404 218 17 403 416 270 146 223 396 277 41 325 212 112 219 213 369 224 68 285 222 122 418 136 143 11 302 214 269 42 385 91 118 132 5 48 395 338 49 370 54 228 322 25 316 391 148 211 124 173 160 401 336 410 286 323 180 102 210 53 400 18 107 35 15 19 423 4 392 +220 67 51 141 237 64 39 288 31 231 117 109 362 430 330 217 147 26 103 372 192 167 168 82 393 416 7 191 258 363 179 315 431 395 310 352 29 56 356 209 61 99 239 196 350 163 1 318 202 131 79 146 85 201 368 165 203 90 253 119 18 305 419 86 266 411 185 256 379 63 140 112 331 403 216 232 160 303 204 100 284 339 12 144 349 342 235 297 110 420 247 221 354 30 154 261 177 95 301 250 123 113 130 267 133 125 293 124 135 50 283 164 351 323 208 273 384 329 190 367 84 291 66 159 304 207 78 156 166 406 295 298 357 169 312 32 308 14 73 152 158 376 116 43 426 70 259 319 206 187 170 370 341 409 175 59 57 65 245 394 205 28 240 340 45 412 346 230 128 421 434 415 214 359 422 381 244 218 360 427 309 121 335 2 313 405 161 34 200 199 334 306 378 348 224 326 104 115 106 97 83 392 46 371 424 20 366 24 413 401 173 58 47 435 111 60 52 428 3 42 302 118 249 294 27 281 276 62 243 320 105 387 254 414 197 386 338 10 361 195 71 380 148 37 142 9 88 365 157 176 137 373 77 425 385 398 236 275 174 101 181 222 145 193 383 53 72 120 262 292 347 317 162 189 396 345 272 93 321 399 211 178 198 54 241 358 226 132 397 289 290 151 188 364 107 252 282 36 87 344 91 227 433 33 172 55 212 38 402 134 21 299 40 4 114 6 16 311 210 407 327 257 225 417 278 246 138 194 265 429 332 248 314 333 307 374 94 300 353 382 408 68 233 234 279 143 171 264 186 418 69 8 343 17 316 285 44 74 242 251 223 432 96 89 81 423 390 22 184 150 149 280 127 155 263 377 23 139 400 260 268 322 75 255 404 213 182 229 35 13 355 238 389 122 296 410 287 48 325 277 219 5 369 375 80 271 215 102 108 153 98 183 328 41 324 11 388 19 136 129 228 126 49 25 336 15 270 269 337 180 92 286 274 76 391 +258 141 58 362 144 288 163 170 192 169 34 350 237 331 159 204 297 411 52 154 253 1 294 61 376 201 413 196 93 338 203 275 103 50 284 64 90 318 330 31 202 26 123 386 112 250 94 101 117 63 378 179 309 308 235 128 334 326 191 256 356 177 315 339 295 351 397 124 130 428 79 39 276 67 206 51 114 259 340 230 187 412 40 283 84 341 95 247 78 218 387 190 291 59 365 217 53 261 172 113 131 82 245 115 142 342 109 116 403 317 216 161 167 168 195 106 420 384 366 424 71 349 431 298 121 188 367 171 119 133 77 352 306 164 422 46 197 433 430 7 310 244 262 118 272 14 427 243 173 165 252 60 359 363 232 62 99 178 220 20 98 166 346 435 9 32 278 282 70 432 416 160 10 233 110 137 158 75 140 360 239 333 73 57 408 354 38 145 304 249 208 66 240 125 301 414 379 348 319 209 8 86 421 344 236 74 234 332 396 426 263 198 56 225 407 69 28 134 303 321 175 200 111 207 29 185 434 147 55 273 307 343 16 287 194 345 368 221 267 257 193 381 289 361 292 415 184 181 211 383 83 380 226 100 312 92 353 382 127 394 266 47 199 389 279 299 329 305 174 260 210 373 364 151 214 85 371 186 229 157 254 87 223 370 399 42 398 358 43 148 149 13 97 347 374 264 265 213 156 224 120 96 3 21 281 313 135 323 215 162 37 231 290 41 33 320 222 248 23 45 393 2 241 405 132 228 143 89 139 189 372 126 22 81 30 280 406 205 35 150 336 76 146 324 404 425 183 88 355 328 375 65 242 302 219 296 24 176 335 385 327 300 227 212 316 129 419 409 277 377 390 105 68 36 423 395 238 311 401 251 6 325 5 27 271 417 357 268 293 108 80 155 182 15 12 102 44 72 270 255 152 17 269 418 104 153 138 369 402 48 314 286 11 429 400 285 337 136 180 18 122 25 274 410 49 246 322 91 388 4 19 54 391 107 392 +1 189 163 116 367 376 282 318 174 63 79 386 176 351 264 95 70 159 240 281 161 175 279 338 128 123 271 340 197 50 93 121 230 56 301 139 387 46 20 192 308 297 411 34 90 47 77 326 98 134 31 113 268 272 191 430 202 129 131 247 334 28 365 9 103 292 132 190 433 232 195 237 194 270 181 198 360 130 359 250 101 217 133 211 203 78 269 313 346 363 218 384 378 210 370 62 169 170 345 26 193 428 310 86 412 259 100 144 309 138 276 236 94 362 347 341 115 312 405 265 73 8 379 201 214 389 172 82 87 332 254 92 235 84 71 10 152 196 126 40 97 364 39 108 14 278 409 339 352 184 403 361 57 432 206 342 344 64 117 305 303 284 69 424 348 231 349 373 415 286 304 239 154 136 243 273 55 263 256 319 431 330 366 298 414 199 59 331 182 53 315 306 119 249 371 327 147 262 125 233 395 291 51 110 311 75 74 401 316 208 188 141 112 261 275 16 65 43 435 285 321 22 37 353 382 229 38 295 221 354 222 242 426 283 277 257 374 85 253 166 205 397 358 186 105 407 434 142 343 244 137 45 171 109 223 155 143 44 7 153 420 413 234 158 421 88 33 145 60 200 96 422 61 209 150 216 293 76 419 267 30 255 120 323 127 280 251 212 317 52 381 114 149 81 329 204 24 89 207 246 32 124 148 58 393 335 377 177 167 168 187 227 328 258 179 427 106 220 356 162 416 289 302 383 324 287 178 355 27 215 68 140 185 399 42 118 417 307 350 48 25 398 296 99 156 248 111 252 151 288 164 333 380 228 368 394 406 23 173 266 35 135 410 17 83 290 385 21 160 404 2 294 102 241 408 219 183 375 396 157 418 224 213 225 6 245 80 3 226 314 122 67 357 320 336 66 5 13 425 29 36 19 325 146 104 429 372 299 402 390 260 322 392 41 400 388 49 238 165 15 180 11 369 12 391 4 337 72 274 423 91 54 107 18 300 +202 291 379 203 376 95 163 159 187 120 220 56 294 334 285 1 412 130 430 247 411 352 170 169 308 230 305 141 113 103 128 356 82 409 312 309 345 340 192 26 161 239 370 237 331 190 71 314 267 90 318 218 240 344 253 329 288 295 261 23 417 86 366 262 207 221 99 50 284 88 362 297 264 31 172 183 119 51 236 78 131 79 315 413 302 323 43 178 121 265 114 424 420 378 16 418 310 144 348 153 201 351 401 98 147 395 194 106 46 20 34 52 57 206 35 28 136 67 85 97 196 426 434 19 232 123 84 258 421 208 171 326 431 387 384 105 216 111 64 367 9 415 283 179 39 205 271 427 62 155 174 422 361 252 214 342 397 229 24 177 165 386 256 154 306 338 275 61 204 73 93 55 251 133 181 322 117 109 164 210 195 428 7 339 254 250 268 173 279 69 175 63 328 217 429 47 60 374 280 70 137 354 433 365 380 14 278 116 243 276 135 368 300 403 184 273 27 211 332 149 263 321 139 244 125 65 248 185 42 143 304 423 259 188 341 158 266 373 209 364 94 349 145 346 75 293 74 327 316 363 166 140 317 303 150 77 396 343 435 330 87 193 320 112 231 360 350 298 132 222 115 347 301 223 359 89 245 238 393 101 235 241 257 358 272 375 289 270 394 307 10 197 160 199 319 176 189 287 337 432 407 44 18 414 269 233 151 100 419 281 191 138 335 381 45 38 200 398 33 8 22 311 224 249 126 37 416 405 385 81 124 40 400 372 127 296 242 383 392 408 225 17 325 134 399 219 371 162 167 168 353 382 30 6 406 213 226 157 25 3 110 59 102 72 156 146 227 142 29 355 357 198 32 41 13 313 324 292 58 129 118 299 182 11 48 36 410 425 234 389 212 66 148 282 68 290 96 108 215 180 228 53 333 388 21 12 186 5 404 2 255 277 80 260 390 49 83 246 92 369 152 286 122 274 76 107 402 15 377 336 104 54 391 4 91 +220 39 231 310 50 393 51 67 237 430 201 315 203 295 109 113 165 356 1 82 56 411 419 99 130 305 141 331 395 202 93 163 144 64 94 291 7 128 31 288 30 119 159 12 29 63 362 116 301 154 258 376 247 70 190 131 339 196 239 66 208 363 95 253 379 185 352 297 187 348 85 179 42 265 78 359 24 360 86 256 161 266 318 334 230 121 152 192 197 207 147 90 123 218 101 216 52 133 62 409 380 412 350 405 222 306 235 425 368 312 20 298 261 198 169 232 117 170 284 177 47 164 302 357 373 272 115 61 250 343 204 275 100 313 241 240 320 157 308 294 374 26 268 421 338 244 361 364 366 431 330 14 57 257 367 375 394 38 349 79 372 346 262 106 156 422 72 321 340 384 33 345 112 341 344 120 264 206 140 378 105 103 233 354 162 217 46 278 416 111 28 195 365 428 68 124 84 71 245 139 283 150 9 34 259 97 226 125 127 427 242 114 386 293 44 406 417 387 191 254 181 307 223 146 142 342 88 413 309 317 225 37 329 396 271 178 246 55 381 351 282 397 209 371 420 287 236 267 104 434 149 32 285 108 58 403 45 280 414 407 377 43 335 151 433 229 227 323 281 260 424 418 53 358 135 74 435 252 158 249 73 415 136 243 166 10 134 429 69 383 65 155 167 168 35 214 276 122 16 398 77 299 347 175 184 194 87 296 270 332 129 432 193 145 304 199 172 385 426 399 189 213 188 143 221 333 251 8 6 273 137 392 22 311 303 234 319 75 401 292 27 211 290 183 289 316 23 92 326 200 174 314 370 176 48 2 13 40 353 382 83 210 279 21 18 96 59 89 110 408 60 173 423 182 25 402 126 3 224 248 389 102 5 219 186 132 91 410 328 238 327 212 269 41 355 205 171 36 160 277 404 388 324 54 107 322 17 228 337 148 11 300 215 325 390 118 153 255 81 49 98 263 391 369 76 336 138 80 19 4 274 180 286 400 15 +332 237 159 163 331 31 220 116 1 40 63 378 203 231 340 130 78 253 201 334 202 39 123 141 349 204 190 258 361 386 147 154 187 312 52 411 338 352 275 350 82 351 346 77 310 216 305 100 170 259 295 26 169 64 412 113 93 244 235 376 51 362 192 179 28 284 308 133 356 291 240 101 50 347 373 99 379 348 345 315 290 128 422 239 413 288 306 199 309 67 90 414 177 144 247 298 431 424 196 109 230 115 250 430 317 114 368 185 66 360 70 79 366 61 359 119 421 326 266 156 232 297 256 178 283 260 318 381 161 344 363 94 435 384 32 420 58 30 62 46 341 165 406 333 245 43 57 95 252 293 267 329 207 214 37 9 353 382 262 188 106 301 84 380 233 10 294 415 14 125 261 277 428 195 197 372 7 112 395 131 364 73 330 172 164 194 126 335 302 343 121 272 127 20 313 319 209 103 59 191 387 354 208 146 339 158 221 281 292 234 377 16 257 117 433 24 145 81 218 173 21 105 23 200 160 120 45 157 65 97 2 85 137 321 167 168 198 427 393 265 140 397 162 276 60 342 71 398 289 206 409 142 425 236 287 407 307 241 139 155 171 175 303 273 124 184 56 254 135 278 304 370 229 432 365 264 371 83 323 280 149 300 367 92 299 296 426 104 174 383 215 314 249 96 111 416 205 38 251 29 224 86 6 243 41 189 279 285 110 74 434 217 374 34 151 429 394 42 193 417 53 268 72 12 98 263 3 118 166 419 282 88 150 389 181 320 55 403 375 226 143 408 22 242 357 358 327 399 87 27 69 134 75 396 405 222 129 248 91 33 89 225 8 404 213 108 44 176 68 153 13 211 402 369 36 223 418 183 210 152 328 337 76 311 148 47 5 136 355 325 212 132 17 401 122 19 238 324 219 35 227 182 271 390 186 102 11 270 255 48 400 385 228 423 246 336 138 269 25 392 322 316 180 388 410 286 80 54 18 49 4 274 15 107 391 +376 308 309 163 159 172 329 95 202 291 352 169 203 71 120 78 170 1 345 113 207 263 237 344 171 331 178 328 259 130 431 348 63 154 103 26 239 82 339 115 412 98 141 294 253 56 128 379 295 173 131 61 350 315 362 192 422 208 144 164 250 310 374 90 426 16 334 275 430 220 266 411 375 413 64 70 31 190 272 346 326 323 20 218 50 276 284 361 67 99 307 123 293 51 133 165 258 230 46 116 298 195 57 409 340 424 312 338 368 378 247 318 261 288 93 158 420 248 101 177 429 349 187 77 52 201 216 197 39 356 302 175 161 153 278 428 7 367 14 267 327 366 370 147 231 363 117 106 297 62 304 204 33 119 9 421 149 283 114 198 393 145 191 386 252 160 210 337 242 407 34 66 268 211 73 124 65 79 305 365 84 94 419 86 427 330 232 151 121 180 372 206 262 87 435 342 189 416 282 24 196 135 434 243 215 88 193 109 140 194 28 137 320 10 355 105 300 174 166 301 22 205 245 264 351 102 188 240 397 279 85 347 40 214 185 403 217 381 179 45 271 265 354 316 273 433 395 233 125 415 58 183 256 257 223 209 364 221 8 359 47 60 341 394 281 43 398 358 285 139 156 134 55 360 287 299 150 234 333 176 306 199 81 414 38 42 111 289 97 75 392 280 277 138 408 260 249 321 270 30 292 385 236 74 399 244 317 384 100 303 148 313 405 118 37 235 108 132 377 167 168 53 343 332 380 387 27 110 129 432 112 371 423 290 157 401 162 319 222 200 152 6 219 35 181 23 357 184 59 353 382 69 373 254 396 41 369 314 127 48 89 229 146 2 17 92 72 311 142 32 335 269 251 19 410 29 155 417 182 21 336 246 402 18 296 241 212 80 406 83 25 425 126 143 418 36 96 383 390 225 76 226 227 324 213 49 388 186 122 224 238 68 3 389 13 322 325 255 12 286 44 136 104 11 5 400 15 54 107 91 228 404 274 391 4 +237 147 332 39 331 63 1 116 141 259 216 244 159 411 352 77 247 220 376 293 346 340 294 349 128 253 28 192 20 46 31 201 368 267 112 230 154 203 258 123 362 334 381 312 378 298 187 204 133 338 232 26 239 103 130 64 288 422 363 345 351 218 202 121 350 275 413 52 250 347 310 305 295 306 50 40 366 170 421 348 70 361 90 188 163 196 240 430 235 169 156 199 85 318 231 365 185 344 161 61 100 191 257 79 379 190 99 323 16 45 386 301 308 245 329 84 115 356 291 78 261 125 10 113 266 330 144 119 114 256 93 82 158 384 370 167 168 289 412 393 177 37 179 194 56 217 101 95 234 264 373 407 309 60 197 317 214 206 435 7 297 262 343 131 207 87 414 145 67 151 342 178 353 382 86 272 233 209 268 51 24 43 105 341 66 278 433 364 110 65 58 303 315 9 271 333 284 221 372 419 307 62 252 424 2 398 38 367 94 394 140 387 406 354 34 399 420 96 290 273 403 198 319 109 416 59 280 195 377 276 127 360 21 431 106 146 134 111 358 304 30 359 236 287 172 139 71 428 53 120 160 339 189 313 149 117 409 415 374 279 97 281 32 200 164 124 83 260 395 285 69 14 243 265 432 73 270 302 429 165 383 126 184 426 162 142 283 174 205 208 57 98 176 292 175 42 427 157 22 47 55 296 36 88 224 269 434 389 242 135 249 108 254 181 425 215 72 153 152 326 402 33 277 150 321 173 223 171 211 371 282 23 210 136 89 104 27 229 397 314 132 380 263 336 122 6 155 335 3 251 92 222 320 390 183 91 182 355 311 246 193 226 357 137 328 41 68 81 299 12 8 225 148 129 241 118 405 76 401 17 327 166 138 417 410 337 29 375 385 392 316 44 13 300 18 396 186 143 213 388 400 11 212 227 48 49 322 418 324 19 74 255 80 107 102 286 4 325 238 404 369 25 248 75 219 423 228 5 35 408 274 54 180 15 391 +346 70 376 63 1 272 159 259 50 203 93 77 202 237 292 338 147 116 154 253 351 134 141 133 101 293 163 377 329 94 379 288 52 39 78 411 56 308 33 151 103 362 128 309 234 345 295 61 121 298 218 82 386 258 109 192 92 170 14 365 187 172 108 334 250 331 340 422 139 414 230 305 352 95 348 28 169 65 412 310 130 131 123 328 144 261 57 220 79 421 239 197 46 344 198 431 231 291 150 20 430 149 360 428 51 240 359 62 190 64 247 297 245 34 100 275 326 363 98 374 342 67 409 378 113 189 236 350 90 264 201 211 426 26 387 302 349 31 281 158 233 339 196 312 265 53 420 40 164 215 178 185 167 168 267 66 318 115 114 99 366 7 279 86 323 252 204 210 175 165 235 9 401 321 277 367 260 119 356 156 282 161 10 266 364 244 284 208 111 138 294 315 84 117 287 375 37 27 216 368 263 106 171 393 278 332 125 16 73 347 336 403 280 232 381 372 354 127 195 285 85 301 88 105 43 188 217 373 191 97 424 343 58 55 179 415 384 289 200 22 184 276 317 361 176 194 173 193 407 87 206 207 434 243 242 262 71 268 221 435 140 330 146 304 416 433 112 47 174 283 383 413 410 370 148 48 303 341 60 177 405 120 296 432 24 256 417 380 419 333 199 145 72 355 118 69 427 155 313 6 205 222 209 257 224 18 38 229 273 122 249 254 81 290 299 30 214 42 124 307 135 306 248 44 45 126 181 395 314 327 142 76 406 25 353 382 316 23 271 397 358 270 418 74 160 223 157 425 2 255 3 59 104 21 152 89 83 91 75 320 241 96 153 162 429 136 398 385 137 32 143 319 335 357 399 102 29 389 166 227 396 400 186 17 12 311 110 225 8 402 392 269 68 226 371 4 394 183 11 132 246 212 251 129 322 182 300 213 36 286 80 369 337 180 13 238 219 408 324 228 404 35 5 41 388 390 423 19 49 107 325 54 391 274 15 +95 141 50 203 159 202 352 207 163 362 56 288 237 31 78 113 131 294 39 1 300 57 368 329 70 187 64 26 192 291 24 34 61 63 410 295 345 363 376 71 401 128 374 348 182 67 412 379 247 331 27 9 130 103 253 220 147 411 230 413 388 208 93 151 18 114 334 47 367 154 216 297 307 239 178 430 144 435 350 218 259 344 82 84 315 375 276 161 328 115 195 339 365 278 420 90 242 310 33 190 338 48 170 305 409 111 240 323 318 385 169 20 221 272 116 370 264 121 120 267 397 349 330 51 173 298 356 403 285 258 164 431 393 250 284 73 308 261 321 49 197 309 265 268 7 102 101 266 137 42 312 52 407 94 191 177 373 422 251 25 306 123 384 23 214 167 168 293 346 99 325 14 391 109 17 117 189 160 270 204 271 275 8 217 316 424 79 44 201 257 400 416 62 252 66 22 28 165 86 77 281 139 145 429 366 133 426 153 364 341 150 172 88 256 38 200 16 244 125 231 347 378 179 361 206 354 198 108 262 119 326 319 342 43 185 124 421 415 83 419 234 149 405 143 166 301 433 196 140 283 162 65 383 85 134 176 194 406 6 193 324 98 235 279 209 232 387 351 302 212 184 332 100 107 236 432 46 106 360 174 381 304 359 188 428 254 211 303 377 37 340 97 408 243 158 210 30 386 10 152 175 248 112 414 260 122 135 205 199 68 398 280 75 126 394 372 320 273 299 60 29 274 69 358 233 74 313 249 223 287 417 343 434 245 269 36 389 371 181 396 395 40 327 215 183 58 292 53 337 317 282 229 314 399 55 155 4 118 136 132 87 92 81 427 156 142 333 2 45 224 290 171 127 380 35 11 296 157 105 19 423 222 355 353 382 129 418 138 3 263 336 425 311 110 277 186 21 72 89 59 146 289 32 246 225 335 226 357 241 227 219 148 76 80 96 390 402 180 322 404 104 13 213 41 238 286 392 12 369 228 255 5 15 91 54 +261 63 262 366 237 163 184 82 267 376 280 331 192 220 334 306 70 64 202 411 141 379 1 159 351 39 253 189 56 203 144 211 67 133 230 31 101 154 356 174 295 362 348 103 259 46 308 247 210 169 352 93 78 190 431 175 130 363 275 412 170 349 147 26 312 428 365 250 294 201 7 123 239 266 310 281 422 57 20 51 113 86 430 291 413 279 14 330 50 368 52 208 285 258 94 9 117 288 318 161 305 232 116 207 90 191 79 36 16 350 332 112 342 43 172 378 177 340 240 416 99 187 346 315 245 244 85 176 204 195 209 77 231 345 200 109 216 61 119 298 339 128 71 95 173 196 235 302 278 424 420 179 297 28 354 115 319 106 131 60 167 168 338 218 217 73 256 134 284 367 401 414 140 373 84 384 197 309 188 111 323 321 100 121 164 97 66 359 360 409 293 178 421 435 272 194 165 120 361 393 329 311 415 83 395 10 34 234 347 185 314 114 301 380 171 344 268 394 419 38 427 198 206 252 426 158 341 40 55 257 254 59 370 313 377 433 343 87 397 307 233 137 125 68 58 387 283 124 24 45 108 396 398 407 65 374 386 317 149 156 17 136 264 432 434 214 399 303 353 382 335 118 403 102 371 37 289 74 287 30 193 98 47 381 150 292 320 273 126 157 358 265 263 145 423 62 199 105 383 290 139 146 22 6 135 357 162 260 205 241 160 282 326 276 88 166 333 152 48 21 75 110 417 236 29 155 8 243 429 248 221 153 224 182 328 2 92 127 222 44 181 249 372 25 183 271 304 81 296 27 227 32 132 364 96 23 53 69 142 229 223 33 76 299 42 129 151 80 148 18 388 408 212 410 138 418 3 12 389 375 406 316 270 325 405 225 143 89 11 390 35 322 41 49 242 219 404 324 300 402 226 425 277 246 122 186 251 13 269 104 327 238 72 255 213 228 215 5 337 336 400 385 355 369 286 4 180 19 392 54 391 107 91 15 274 +163 352 376 159 63 1 141 362 95 202 288 331 203 334 50 237 103 345 67 78 154 308 26 379 338 169 170 368 130 34 297 239 178 420 82 329 261 61 231 51 207 52 259 309 393 412 114 192 253 247 144 294 431 131 325 128 109 344 310 39 173 172 218 64 116 409 7 101 267 77 190 24 187 31 365 123 346 284 56 71 230 133 84 23 305 367 220 258 361 57 151 291 20 426 90 93 70 208 339 9 295 350 113 318 411 430 117 328 435 348 326 276 373 272 17 363 62 386 197 419 121 285 315 370 195 250 397 16 330 413 416 99 14 341 401 161 342 340 221 111 351 347 293 79 171 302 407 312 165 278 177 268 179 349 137 283 366 160 147 198 73 162 43 115 281 323 298 275 196 164 201 33 217 266 216 189 86 240 183 204 209 384 433 378 422 306 356 46 415 279 119 265 313 28 98 264 234 257 252 191 106 242 408 403 206 280 364 251 385 414 262 212 374 74 263 94 75 282 233 188 158 166 271 243 29 88 273 371 359 83 53 360 134 47 19 175 424 248 428 214 125 324 140 30 300 124 395 232 65 375 304 387 153 211 97 150 274 145 405 245 321 303 10 139 200 256 432 210 152 135 389 184 44 421 199 6 427 102 319 112 194 149 8 292 429 301 58 69 66 38 120 215 270 316 396 317 260 307 410 406 383 358 314 193 85 132 60 87 167 168 48 35 417 354 327 100 108 236 372 22 244 37 174 40 205 380 105 18 398 118 81 146 377 55 185 235 25 59 394 254 176 27 224 336 3 126 277 186 337 155 381 399 287 290 249 229 434 68 223 181 299 143 289 45 400 355 157 11 269 418 343 156 423 320 42 127 332 246 333 136 129 222 148 353 382 36 241 296 182 255 80 92 110 89 32 142 76 357 425 219 138 311 4 122 2 180 335 21 226 96 213 390 227 225 369 388 13 322 402 238 404 392 286 12 72 107 49 5 391 41 104 228 15 91 54 +31 141 253 356 39 350 64 202 203 66 422 63 14 331 237 220 362 201 93 192 163 159 70 1 288 187 411 258 185 179 82 298 421 330 94 291 50 116 250 204 147 420 62 239 164 252 334 434 119 323 275 266 134 261 165 295 140 431 190 308 77 131 365 123 351 310 315 312 78 346 188 235 121 247 386 343 184 57 412 224 435 99 345 170 344 376 169 158 117 28 200 51 43 154 244 297 130 106 207 309 161 317 230 125 280 9 256 177 306 373 307 430 144 284 85 374 383 24 156 113 414 71 240 3 333 162 281 259 84 176 114 348 127 101 90 276 65 120 378 352 133 128 332 12 354 364 262 7 26 175 30 97 360 305 145 109 257 73 429 321 407 299 178 174 427 2 366 340 232 196 233 368 319 10 95 341 359 328 355 69 209 416 221 67 267 86 79 100 52 83 56 428 349 111 46 363 264 16 265 88 300 58 318 313 146 413 229 167 168 377 338 272 225 191 60 45 393 172 195 388 205 424 371 21 289 22 126 20 216 37 314 296 403 361 218 283 124 302 379 217 367 197 401 23 139 206 151 55 112 311 290 249 236 208 102 287 432 61 294 329 40 406 304 231 110 211 149 155 301 36 44 173 72 103 278 285 222 292 142 223 210 150 182 395 38 198 303 199 242 342 398 27 243 92 6 263 193 245 320 408 108 375 426 87 347 189 115 415 33 25 226 160 389 402 143 339 409 410 234 380 273 372 13 118 48 279 29 68 381 135 425 215 268 433 166 105 335 59 254 137 171 214 353 382 384 370 32 387 194 98 293 282 397 183 251 271 419 152 49 417 181 325 17 89 246 18 405 213 153 8 76 227 157 385 241 47 136 74 326 394 75 270 34 53 238 81 129 399 260 122 316 404 138 248 277 336 423 80 11 358 369 418 228 322 357 19 4 41 255 96 269 337 42 148 35 396 186 219 180 390 212 324 15 104 132 327 5 391 286 107 91 400 54 392 274 +237 1 346 244 147 348 259 133 350 50 116 351 77 298 278 331 378 70 64 39 334 28 349 113 247 220 163 31 216 100 361 253 339 63 103 123 365 352 141 232 340 381 37 199 46 179 288 201 61 121 360 428 218 359 85 240 272 156 82 192 40 363 258 376 231 347 159 312 430 154 52 422 79 421 115 411 366 130 90 293 128 187 373 261 301 119 354 175 190 318 204 284 317 109 329 368 65 356 66 379 196 197 177 86 161 205 239 372 117 386 420 426 144 78 305 295 362 51 267 414 95 275 202 99 62 313 20 203 431 425 125 191 294 188 413 374 198 315 151 101 407 345 387 208 10 424 338 308 292 245 200 256 303 56 234 30 26 310 353 382 266 290 233 60 84 185 412 67 370 341 45 250 164 194 114 367 38 364 145 291 283 43 282 174 273 343 332 309 289 304 384 131 206 209 149 14 297 333 16 435 249 419 162 380 252 243 235 170 44 71 383 93 146 214 169 106 377 344 207 7 262 257 415 433 280 393 268 406 34 73 97 127 24 72 221 287 158 264 112 178 326 224 319 59 330 327 150 189 33 432 236 2 279 105 222 335 302 165 9 126 398 281 323 271 241 254 226 6 111 405 87 155 94 314 176 193 230 311 358 139 306 58 427 403 69 173 397 32 195 47 299 21 276 434 242 140 22 110 124 402 227 104 307 143 225 3 134 285 152 167 168 217 184 371 57 409 83 416 166 172 157 342 277 74 12 265 229 399 394 142 211 55 96 355 270 5 98 13 296 53 395 137 42 120 213 91 389 321 118 148 210 260 325 385 75 8 88 108 375 92 81 320 429 223 316 248 136 357 404 132 417 186 369 251 228 29 160 238 390 181 89 171 396 17 215 328 408 68 263 182 135 183 23 153 138 212 269 255 336 36 324 246 102 418 322 129 388 27 48 122 410 219 35 300 25 41 11 80 76 401 49 274 4 423 54 337 18 392 400 19 180 15 391 107 286 +50 159 63 237 103 44 163 136 345 78 147 376 56 379 192 203 67 409 352 141 1 430 113 297 20 202 34 95 130 368 52 334 128 133 412 144 329 386 154 362 207 189 338 365 261 291 294 220 26 116 349 247 384 348 109 230 205 331 411 7 82 342 131 239 310 217 340 51 330 363 305 31 173 123 121 115 253 61 285 281 87 70 312 351 231 410 9 295 208 117 193 24 161 77 346 318 367 93 206 218 306 64 308 370 416 366 393 101 90 187 196 267 259 167 168 344 359 360 39 356 57 415 86 288 264 170 114 309 191 258 169 79 43 435 23 405 221 272 197 414 278 250 184 119 48 201 14 276 28 256 188 175 313 65 266 373 315 417 190 73 298 265 112 341 98 45 354 413 387 10 293 426 339 134 431 240 262 118 279 275 212 350 214 419 420 172 236 198 406 25 84 400 16 179 97 68 183 99 165 174 347 178 164 155 397 69 398 428 332 319 83 383 200 434 358 403 166 55 401 242 94 153 433 224 302 125 303 60 284 280 394 106 209 195 160 325 361 235 395 85 177 407 418 140 143 257 254 273 392 137 399 29 53 62 211 139 100 304 152 71 321 27 424 46 124 151 374 326 422 378 111 232 199 176 314 6 21 138 74 243 75 17 268 210 233 385 47 110 105 324 88 204 146 389 194 132 30 66 364 171 22 377 252 292 216 427 18 244 2 421 149 317 229 150 40 371 343 135 38 246 271 307 234 357 429 301 33 148 245 37 283 181 248 182 223 36 287 323 320 396 274 158 381 59 380 76 260 222 375 35 145 353 382 92 432 120 108 104 42 3 316 299 263 142 156 126 185 249 225 96 336 270 328 335 282 107 80 408 286 290 251 289 327 255 227 186 58 162 296 226 322 19 425 157 127 11 102 129 89 372 333 311 122 241 81 8 390 41 215 213 32 219 300 402 269 91 277 72 238 13 391 388 404 228 12 423 5 49 355 54 4 369 337 15 180 +103 379 82 431 202 203 329 409 312 284 412 315 237 302 173 283 159 67 285 220 109 426 415 291 136 144 424 247 331 294 417 141 314 207 208 35 239 64 113 63 88 293 305 51 130 214 352 430 163 362 190 258 119 131 164 128 229 418 356 147 363 308 39 367 295 23 165 99 81 116 267 261 192 26 248 78 253 216 106 193 95 56 351 338 1 411 170 155 183 370 135 365 350 230 259 169 187 197 50 154 288 345 309 90 31 61 346 376 368 204 340 334 420 348 97 201 275 65 218 161 349 52 318 20 240 73 231 179 133 180 198 46 112 206 101 71 79 196 310 70 384 178 427 256 188 298 372 272 117 123 175 413 57 7 323 140 114 419 397 151 120 234 236 369 297 121 266 16 354 250 380 416 212 264 172 342 77 433 313 111 9 360 28 347 434 422 361 339 149 387 194 33 115 86 244 29 359 66 84 405 137 222 177 166 344 60 199 278 292 366 243 407 134 89 435 153 223 69 301 195 150 273 98 100 125 265 306 282 191 378 321 232 43 124 414 174 209 167 168 423 320 276 37 311 85 381 385 373 364 393 403 74 55 145 24 205 225 171 217 326 75 428 185 303 30 200 242 241 268 341 158 319 34 160 235 227 139 62 105 287 157 330 304 374 252 219 299 322 224 307 156 260 317 118 386 189 40 146 143 221 394 327 383 371 176 432 421 152 10 93 226 395 343 148 162 45 18 233 358 262 6 396 213 408 289 132 290 254 42 47 324 129 142 36 32 257 251 27 300 12 401 377 245 38 249 83 14 281 238 44 398 279 328 58 271 68 277 102 406 425 53 280 429 127 211 87 22 316 186 210 332 255 333 13 400 72 181 296 399 108 17 392 228 110 59 357 353 382 325 270 94 3 335 274 375 138 410 41 2 263 4 389 184 5 96 122 246 8 215 80 355 404 11 126 104 25 21 269 107 48 402 336 390 337 54 19 182 286 91 388 76 15 92 49 391 +203 67 39 202 51 165 154 220 237 63 1 163 315 419 109 393 310 82 141 305 50 331 430 338 147 128 379 144 159 31 99 64 288 302 231 259 201 411 101 376 93 207 52 362 352 346 116 409 294 164 119 7 363 256 253 133 121 70 293 103 187 123 26 349 247 61 78 30 412 318 258 295 356 190 239 298 84 312 261 130 386 106 113 192 232 161 230 244 301 250 56 94 266 334 236 90 329 297 95 204 29 378 97 112 79 179 77 427 350 431 196 340 366 218 422 14 208 284 267 291 197 46 20 306 156 34 330 115 28 216 372 342 117 323 351 85 365 170 66 368 275 308 395 240 53 235 285 169 281 86 414 354 361 88 62 403 100 124 245 348 264 229 384 374 364 185 272 417 111 317 367 313 191 283 265 257 198 131 214 223 152 381 339 359 42 12 209 397 222 195 282 177 206 421 157 360 65 428 332 373 309 262 343 178 134 155 347 37 72 415 120 188 292 136 357 433 89 194 380 200 43 135 125 268 221 406 151 104 71 276 114 377 57 146 175 234 176 60 319 217 420 418 158 184 424 35 73 205 105 181 233 140 162 345 416 303 174 242 16 426 314 413 241 9 280 279 199 142 33 320 47 173 139 243 254 278 40 252 167 168 271 189 10 58 145 405 226 341 17 370 211 304 225 8 69 394 434 246 249 321 273 38 371 183 425 387 277 344 432 172 137 143 45 435 210 83 260 383 160 407 23 322 149 36 44 299 401 212 32 333 307 6 24 289 87 2 224 55 375 410 74 335 423 150 311 326 238 96 132 127 193 18 68 398 227 290 353 382 48 110 3 396 287 270 59 324 108 118 429 358 21 296 316 399 13 91 213 186 385 166 27 81 92 325 126 75 328 22 355 251 102 215 25 98 171 129 402 182 219 408 269 248 388 148 255 138 153 122 389 300 336 54 11 228 76 19 369 41 5 263 404 327 390 286 49 107 15 391 392 337 400 180 274 80 4 +367 318 247 103 50 239 208 163 95 207 193 319 370 132 166 331 31 237 78 273 1 334 433 64 340 79 113 196 297 242 411 366 187 386 376 90 161 191 261 304 294 159 315 201 347 258 303 363 192 154 39 259 203 52 220 365 426 61 308 131 232 352 63 190 28 244 430 170 403 428 218 141 128 378 84 112 56 262 169 59 7 338 123 26 317 412 384 121 130 409 147 256 291 424 397 194 216 144 350 43 230 181 361 99 34 310 20 101 62 197 51 119 199 202 240 387 295 431 206 298 306 82 413 114 116 184 86 379 204 16 106 249 179 330 167 168 282 364 109 349 115 111 420 343 162 117 356 209 245 85 432 348 46 177 284 125 368 305 100 285 267 93 214 312 186 253 362 195 275 373 419 341 229 309 351 346 380 221 250 301 354 73 70 381 124 133 47 188 421 313 266 278 427 198 57 236 58 372 65 276 360 339 342 359 120 140 205 405 280 178 243 332 235 172 407 60 415 281 222 77 241 292 145 231 94 345 422 393 406 223 3 88 14 288 264 329 287 157 67 118 416 10 254 97 279 98 283 268 158 217 233 74 353 382 139 333 110 213 296 75 189 32 371 176 38 271 226 321 9 105 69 211 398 30 175 173 155 383 40 126 358 210 394 137 171 156 289 174 293 272 326 21 71 53 323 89 2 6 316 142 257 252 224 55 200 42 374 325 435 146 185 127 13 41 417 399 251 37 344 434 138 324 302 22 414 24 225 153 248 149 396 408 164 23 307 401 404 134 395 270 35 160 234 81 129 290 143 150 12 320 148 327 87 328 260 314 265 83 299 219 151 45 212 418 425 11 269 8 68 48 335 92 33 165 96 227 277 136 238 357 27 29 44 122 183 104 246 389 152 375 377 108 25 36 385 5 66 274 18 402 423 390 17 72 76 410 355 322 429 228 311 182 263 255 215 135 388 102 337 369 107 80 300 180 286 91 19 336 49 4 392 391 54 15 400 +220 231 51 39 310 67 430 63 203 202 395 237 99 393 305 419 154 201 331 159 165 82 163 113 109 103 7 52 31 315 64 379 291 356 266 207 101 119 412 50 130 259 239 256 144 411 230 141 352 295 56 128 124 405 20 95 26 1 86 190 338 318 365 208 147 133 312 123 131 362 376 247 253 97 12 323 216 301 161 93 363 409 90 197 384 29 350 334 192 206 357 106 196 313 30 261 250 116 85 320 288 348 112 329 179 152 284 70 294 78 302 340 272 169 427 242 297 115 258 306 170 267 349 428 422 367 191 218 308 386 140 281 94 359 415 217 177 380 360 381 416 198 34 346 298 117 121 345 79 232 285 293 234 187 157 61 135 222 268 42 236 43 9 368 397 189 164 146 378 366 372 339 84 276 204 423 142 351 167 168 283 28 185 278 235 396 62 275 175 254 344 73 120 240 311 77 431 342 374 262 417 195 227 125 244 57 425 403 55 265 241 46 221 71 137 66 309 413 394 271 114 299 420 370 14 330 434 166 433 421 414 270 226 104 24 53 151 176 223 188 100 225 158 245 364 174 347 33 316 173 16 418 209 200 211 264 319 178 322 210 87 273 32 332 214 139 426 335 279 354 212 74 111 156 69 246 304 172 257 435 321 377 105 89 35 134 194 361 136 72 317 45 68 184 238 132 373 47 88 193 358 160 424 199 118 60 341 303 398 307 36 282 233 401 324 181 385 183 10 292 243 249 162 149 6 91 260 387 252 8 150 5 48 213 383 38 75 255 343 371 65 108 143 287 40 407 432 429 399 37 145 59 219 44 83 314 280 58 224 155 54 326 251 408 392 406 96 171 186 375 18 13 110 17 129 353 382 229 41 289 25 153 205 248 22 215 98 328 27 127 228 122 269 3 410 277 404 290 325 102 92 23 182 296 148 2 138 333 76 21 337 126 15 300 327 19 11 263 390 336 388 389 81 286 4 391 107 274 402 355 80 49 369 400 180 +187 331 237 298 350 141 159 334 31 1 244 203 116 202 422 64 253 163 352 121 82 247 39 412 179 376 77 288 258 52 192 239 362 154 435 130 78 431 216 204 428 220 70 201 346 196 330 250 379 312 164 295 259 378 326 257 333 361 50 351 165 131 119 356 207 28 147 233 317 115 123 128 161 84 381 426 300 26 63 100 43 235 340 103 338 79 289 40 421 242 308 386 61 354 113 240 117 221 343 218 62 208 260 16 71 277 156 95 46 359 360 126 430 290 146 127 90 315 10 169 368 195 276 199 197 185 93 170 349 420 144 266 305 414 373 37 432 303 67 190 348 38 275 332 272 14 291 375 245 413 58 51 345 99 374 101 363 191 243 232 318 347 198 65 140 364 310 329 177 73 415 370 377 264 284 403 353 382 304 252 173 160 109 309 380 297 59 125 133 341 85 124 23 366 411 294 120 301 72 145 178 162 302 106 188 256 7 53 367 409 112 231 344 32 94 429 158 229 20 24 209 292 319 155 206 21 66 384 110 3 424 407 137 234 254 299 200 425 27 261 2 281 224 278 86 263 57 296 193 45 339 175 285 365 149 172 427 9 241 56 327 313 214 311 69 273 249 30 111 262 328 406 83 416 283 433 181 393 267 383 22 397 314 342 280 134 60 307 205 8 306 6 184 287 142 166 248 176 230 321 236 96 387 265 87 282 372 434 323 174 408 157 194 293 222 401 97 419 398 335 33 88 320 139 388 167 168 74 215 153 34 42 405 150 268 389 369 227 355 104 114 19 417 135 171 399 17 358 118 13 394 47 12 75 186 183 226 371 148 400 223 105 213 41 48 217 238 81 402 29 98 189 152 18 151 108 5 271 336 132 357 182 418 225 251 324 25 143 35 89 122 279 270 44 395 423 325 219 228 210 337 211 212 316 255 92 49 129 68 91 55 136 390 36 410 76 396 404 180 80 102 269 246 391 11 322 107 274 385 286 4 54 138 15 392 +63 50 163 128 1 159 67 265 147 203 231 202 338 237 20 154 101 93 95 376 133 61 70 31 78 393 331 365 207 294 230 310 412 411 113 363 151 82 130 115 264 141 192 56 131 352 253 39 116 373 345 220 64 297 134 272 197 7 52 362 368 305 34 144 379 349 261 295 109 103 26 259 276 348 346 291 293 123 114 267 51 334 94 374 430 250 266 398 409 239 198 167 168 420 278 14 178 281 356 315 257 24 367 258 275 216 306 208 329 312 435 288 86 44 189 195 360 87 161 234 359 190 71 77 344 341 339 399 330 9 256 350 121 242 57 323 99 358 53 45 419 413 318 29 90 405 410 285 394 66 377 240 165 351 282 200 218 33 85 298 217 385 48 235 152 342 386 324 308 403 302 347 170 10 111 268 407 136 325 16 279 119 187 191 319 169 280 375 2 340 395 30 47 381 209 164 23 422 251 73 415 384 252 28 97 247 6 244 397 328 137 69 221 416 62 139 313 364 117 260 173 158 92 140 361 106 125 366 301 188 162 21 206 124 105 236 215 401 79 8 36 65 433 177 179 38 431 37 284 166 309 98 196 332 421 201 43 402 145 414 383 428 378 417 112 292 214 83 320 254 370 176 193 204 372 68 183 406 271 55 108 390 22 321 396 307 184 300 354 182 212 326 120 314 262 172 357 205 146 303 333 246 434 185 371 232 88 270 160 223 135 273 46 322 427 343 149 175 233 25 60 222 387 194 100 27 245 426 84 211 432 174 418 143 132 304 287 150 424 299 296 58 156 18 229 283 210 12 153 316 42 40 155 224 311 138 336 335 76 17 199 277 425 227 225 317 243 96 388 389 80 11 186 122 102 127 74 75 181 429 226 118 129 380 408 3 148 249 423 157 59 72 290 248 353 382 110 255 274 126 89 49 327 241 35 13 213 142 219 263 355 289 269 32 286 404 104 41 400 81 171 392 391 91 4 238 228 19 5 107 369 337 54 15 180 +352 187 203 202 329 207 159 113 18 331 376 95 27 78 131 237 291 368 163 295 50 57 56 348 67 379 141 63 24 220 130 103 401 216 9 345 412 334 208 144 82 1 363 178 31 70 315 71 431 310 266 410 61 173 120 300 154 52 48 128 239 362 411 64 250 272 240 247 350 115 259 93 107 430 294 323 147 231 321 284 409 374 308 133 7 39 288 218 123 164 26 99 165 47 312 298 109 90 253 367 25 356 169 338 297 170 192 309 51 339 375 318 346 33 101 42 201 429 230 370 84 422 354 275 111 190 116 242 261 102 281 20 267 373 268 278 344 258 195 307 424 365 161 349 22 285 177 172 293 117 197 88 37 122 66 94 276 114 366 347 340 283 385 328 426 234 137 256 413 305 393 149 302 206 119 179 384 182 271 386 377 189 420 175 16 153 400 204 342 306 79 73 106 150 151 326 140 34 262 166 428 264 388 62 14 198 185 4 68 270 378 199 330 244 320 65 38 214 364 17 421 23 77 360 359 43 415 124 361 121 193 176 98 304 265 28 337 236 174 86 97 205 139 158 209 397 188 46 257 407 85 245 387 419 287 433 53 125 248 427 49 10 351 416 299 196 380 395 273 221 327 414 223 301 316 200 217 112 108 332 279 232 191 233 29 403 381 260 167 168 162 252 145 372 171 194 81 303 6 100 263 30 211 243 105 134 184 11 135 183 235 60 87 155 210 319 251 417 277 371 383 406 394 118 215 314 434 435 391 282 343 423 55 146 249 44 160 317 269 45 254 290 132 127 392 398 313 280 229 40 396 157 405 222 241 58 333 156 418 69 180 341 226 225 181 148 292 36 432 74 89 136 75 224 358 296 8 143 92 83 357 219 59 152 353 382 41 2 325 12 138 126 72 142 369 399 3 32 324 311 335 322 35 19 96 289 13 186 425 212 402 238 21 213 227 355 389 408 76 110 129 286 80 404 246 336 104 390 5 255 228 274 54 91 15 +237 376 1 116 163 259 334 346 159 77 272 340 386 331 298 154 101 63 338 123 352 345 308 52 70 309 133 326 350 290 50 16 291 115 245 239 31 93 351 40 349 378 130 78 258 20 10 147 411 26 289 187 61 128 361 295 144 348 170 169 275 329 28 253 156 39 103 310 257 347 414 218 113 293 172 62 202 364 79 64 317 195 90 344 428 197 294 141 381 333 71 216 328 201 360 359 413 121 288 420 95 179 82 198 192 368 374 7 235 203 94 14 279 339 234 363 247 315 99 127 46 65 318 327 134 422 161 412 341 424 435 190 266 240 178 131 284 421 231 250 58 362 188 185 177 208 312 204 261 175 433 199 276 230 343 45 430 426 145 233 87 304 84 265 158 205 100 267 377 56 373 92 232 151 354 69 260 220 273 106 66 297 51 2 375 67 37 366 263 191 380 262 431 278 193 277 301 264 244 283 370 21 139 336 379 243 282 356 365 149 403 117 33 207 73 387 287 189 303 355 34 425 332 30 125 402 353 382 305 367 372 9 109 242 196 166 215 43 299 222 405 281 194 38 407 59 184 432 98 60 164 221 6 292 236 406 119 171 241 85 174 86 146 398 57 226 280 313 181 306 206 296 252 24 124 137 126 200 415 32 249 55 150 393 176 97 160 132 209 162 254 140 22 88 8 342 335 268 320 384 72 114 120 321 213 173 397 165 3 47 416 427 217 210 53 167 168 108 248 110 395 111 358 302 42 105 211 399 408 214 13 251 74 330 224 142 223 157 383 409 81 96 229 183 307 256 396 394 319 12 27 148 225 112 118 138 404 75 153 155 89 76 91 122 369 152 5 311 337 23 135 429 219 41 143 271 419 227 104 434 390 371 323 186 357 29 48 389 324 15 238 19 325 285 83 270 129 300 11 401 314 269 17 417 228 25 316 212 255 36 322 80 418 385 423 410 68 102 182 180 246 136 44 400 388 392 35 18 286 49 54 274 4 391 107 +351 272 377 93 131 237 234 260 348 113 70 220 50 134 295 198 359 360 92 33 197 202 94 346 308 116 208 63 334 82 172 163 66 309 291 412 207 379 78 321 356 239 184 115 261 159 101 350 56 428 375 275 203 374 259 95 175 266 169 64 414 52 250 57 170 281 253 365 312 65 1 376 100 114 150 31 218 151 230 339 340 386 133 407 297 139 86 294 14 292 331 293 373 411 147 73 420 130 26 120 328 352 211 267 123 380 190 345 140 310 216 305 108 166 231 242 61 144 215 149 338 178 349 99 306 363 240 154 279 329 210 287 109 384 9 282 422 262 85 77 137 381 192 344 185 367 103 431 187 141 43 258 235 119 74 280 323 326 378 106 97 28 413 301 302 318 298 409 177 40 88 278 173 247 368 430 354 71 343 10 128 8 332 248 20 417 79 366 435 277 161 90 51 191 201 171 424 284 105 24 241 204 335 167 168 256 285 361 179 69 236 415 75 55 111 296 174 127 39 193 196 118 189 416 341 307 84 319 362 30 342 16 406 126 434 372 257 62 299 46 98 76 158 313 232 142 370 6 387 156 155 162 209 268 316 276 125 264 188 146 7 389 67 68 205 72 34 421 252 418 311 206 200 37 265 143 81 164 427 221 283 176 2 214 288 364 405 426 27 217 429 124 194 183 87 383 117 432 304 254 303 136 145 419 403 336 238 245 347 195 21 199 42 353 382 165 330 320 222 314 3 45 271 273 224 263 129 290 121 327 371 233 315 244 138 433 122 229 83 270 41 337 243 227 112 325 32 17 11 160 44 38 89 317 36 397 5 408 13 12 425 213 395 333 60 249 251 355 157 58 219 393 132 226 22 398 53 47 104 225 153 59 135 385 402 394 223 401 404 110 255 358 423 181 152 289 148 91 369 102 48 29 322 396 228 269 186 23 35 246 399 96 25 410 80 357 300 18 274 182 212 286 324 19 388 392 180 400 390 4 391 49 107 15 54 +113 375 348 374 291 339 33 56 237 131 50 272 295 120 377 57 78 266 163 203 70 95 308 178 208 207 61 220 345 202 109 278 428 67 159 309 130 379 329 82 344 352 294 172 64 218 63 350 356 307 71 337 376 24 31 334 150 429 239 93 149 66 9 321 114 141 116 253 65 411 182 250 407 27 312 100 346 260 34 75 195 38 420 169 170 74 1 363 310 51 144 231 153 275 139 197 362 216 327 42 198 192 368 288 351 230 147 108 412 326 293 422 137 328 261 388 190 49 240 413 268 164 354 343 173 331 7 68 360 103 306 424 431 94 299 359 99 187 305 39 287 201 52 85 133 234 349 414 409 185 315 166 247 47 111 20 284 380 435 86 280 373 248 26 101 90 88 140 242 298 16 364 73 77 123 430 122 6 256 115 301 161 410 165 154 395 384 121 297 151 341 263 383 171 316 257 22 28 340 259 244 29 14 55 267 175 365 37 106 285 300 397 271 119 184 62 196 292 361 18 209 44 393 145 262 338 79 30 40 330 193 72 372 125 167 168 97 177 290 385 318 117 421 8 2 205 158 191 367 128 134 378 270 162 283 258 10 281 302 215 232 92 157 204 155 46 366 415 156 241 417 276 403 21 296 236 432 217 387 84 105 127 386 252 426 206 194 87 419 214 102 211 143 427 401 81 245 43 320 434 370 152 251 189 416 45 381 11 433 233 188 17 200 41 319 235 391 313 279 210 304 264 142 342 222 179 418 48 324 124 229 12 269 183 69 176 98 221 265 25 129 314 353 382 347 335 174 333 323 303 332 249 277 60 126 212 223 325 89 282 396 394 402 398 405 243 36 358 112 225 135 355 226 238 76 213 107 219 408 118 13 369 336 83 199 273 136 389 406 317 425 160 181 53 59 311 254 148 371 399 357 255 58 180 96 138 423 23 146 227 132 322 404 289 110 80 3 35 5 32 224 186 400 104 274 228 19 4 392 246 390 91 286 54 15 +272 376 159 33 113 163 348 345 237 131 375 50 202 78 308 377 203 93 328 339 295 344 1 334 70 309 95 63 291 374 178 172 56 207 208 71 329 352 57 346 94 253 294 234 108 116 150 218 260 412 92 307 120 220 66 198 428 130 350 197 379 139 64 82 26 169 170 141 331 187 411 247 261 149 98 61 250 192 259 429 103 52 190 115 134 409 239 326 242 321 128 386 278 362 230 338 351 77 147 101 9 420 288 144 151 215 413 356 216 368 133 287 312 123 34 298 173 275 114 310 31 100 154 363 340 153 65 422 39 28 16 20 359 231 430 109 349 360 266 90 51 262 201 431 323 24 264 258 361 378 293 67 263 204 73 354 177 99 435 285 284 414 297 337 46 196 171 245 240 86 79 424 327 318 366 7 85 40 195 341 121 426 175 27 185 55 343 387 206 119 191 47 365 305 106 276 38 367 182 48 184 401 161 268 102 282 302 211 277 62 14 381 252 84 127 137 380 296 279 265 200 267 281 407 88 403 232 10 304 433 280 210 364 248 164 257 405 158 42 370 300 145 416 105 283 194 165 256 332 140 49 330 315 388 415 421 122 188 434 432 117 166 25 87 167 168 372 193 111 22 179 125 306 189 373 347 174 217 199 410 299 118 8 292 68 60 384 97 205 156 395 233 124 235 353 382 43 243 74 427 342 301 44 244 236 209 157 393 317 271 112 221 273 289 303 311 419 148 290 417 320 81 126 333 37 270 335 162 397 45 30 214 316 176 138 336 58 75 6 181 160 383 313 155 146 41 249 76 241 2 355 142 222 32 358 23 59 385 152 394 18 21 229 72 83 219 418 135 110 406 183 314 396 223 391 17 132 69 398 425 129 143 319 371 11 225 251 399 89 408 227 226 13 29 254 389 213 269 136 5 96 325 104 186 357 369 392 238 423 36 402 53 255 35 3 224 324 212 12 19 180 404 286 228 80 91 274 4 390 400 107 246 322 54 15 +39 147 220 141 56 362 247 237 288 196 51 1 256 192 350 266 50 244 64 67 121 209 185 31 331 310 430 298 253 109 159 356 411 231 395 354 363 112 221 323 203 258 201 352 305 57 79 68 267 117 105 264 28 291 190 61 416 385 421 379 191 26 119 216 113 297 90 261 346 125 47 332 111 161 7 103 99 202 239 130 218 387 128 365 131 167 168 100 422 318 278 301 230 200 376 177 235 46 232 120 368 95 334 366 114 24 204 372 434 295 348 341 44 312 85 38 66 329 303 361 45 373 163 393 240 321 351 315 14 187 330 65 59 116 413 144 293 217 419 268 420 42 259 262 71 158 86 403 169 367 20 208 2 29 133 252 409 214 170 304 60 381 306 431 380 30 345 271 140 401 265 34 82 308 32 211 188 383 320 343 151 110 294 148 245 426 344 406 370 145 207 33 78 164 165 156 339 349 179 154 175 127 9 233 63 384 378 157 257 276 173 87 243 309 424 149 285 347 398 142 73 317 72 152 43 428 123 12 270 289 280 241 435 77 340 206 210 162 37 414 199 402 394 275 55 410 48 432 342 139 433 102 359 335 115 93 25 292 374 249 307 22 407 150 360 176 194 412 250 251 284 18 178 316 299 392 181 205 122 106 273 427 174 88 134 10 358 236 21 333 405 399 272 269 429 172 386 222 84 287 313 425 137 166 283 62 124 328 126 160 355 27 146 319 300 97 83 94 314 296 52 195 415 302 155 353 382 58 53 108 107 423 326 397 254 41 40 290 171 311 104 357 226 246 338 16 143 325 129 6 364 377 118 11 36 8 96 70 135 23 153 388 98 248 197 212 282 189 408 390 223 136 74 132 184 182 389 371 193 225 75 263 219 324 69 417 4 213 229 13 391 337 91 277 279 396 101 234 35 138 322 327 5 49 227 198 404 375 89 281 92 3 418 186 54 224 183 215 260 17 81 400 238 242 369 255 80 228 76 19 274 336 286 180 15 +237 340 338 376 52 159 116 309 346 77 308 352 154 103 259 1 379 247 331 203 95 170 245 31 350 169 334 298 351 50 202 378 172 349 218 115 40 294 272 414 239 61 208 67 365 64 231 266 26 56 295 133 144 130 329 288 293 141 101 99 253 82 28 51 147 207 267 420 78 362 354 422 216 345 128 332 163 275 257 10 20 192 39 63 412 366 38 156 291 363 90 161 428 197 261 188 304 34 171 368 109 113 348 360 149 367 16 46 318 301 359 339 198 377 370 178 233 413 190 220 430 285 33 232 312 258 79 347 426 230 302 361 384 411 290 336 14 131 196 289 191 62 278 173 221 326 310 201 120 121 151 374 65 195 431 45 134 60 273 187 381 268 100 164 344 356 316 93 194 57 185 386 364 209 353 382 330 179 287 206 204 333 419 416 123 409 177 328 435 317 199 342 158 71 403 260 263 297 327 243 127 53 140 150 106 66 292 372 70 244 165 117 58 7 84 124 125 73 433 160 139 355 59 271 421 6 234 303 407 87 250 262 145 276 96 415 393 217 119 24 305 240 373 22 43 86 252 341 9 256 323 37 270 112 319 427 166 296 94 398 175 114 98 380 214 42 111 315 432 387 146 343 236 395 264 2 424 105 85 306 321 205 277 265 375 282 162 183 284 249 152 30 132 313 155 97 396 148 193 110 83 434 358 383 307 335 153 320 41 8 397 21 74 69 241 181 126 118 248 394 242 137 299 402 269 32 167 168 425 47 235 88 254 314 48 229 281 135 283 399 75 429 280 108 279 211 223 36 92 184 138 406 122 200 210 405 72 357 222 174 25 325 81 311 80 157 392 55 404 255 417 29 219 189 369 215 68 213 104 23 212 44 142 385 89 3 410 11 371 102 390 226 337 418 176 401 408 13 91 423 300 224 251 143 225 35 228 400 17 322 388 238 246 129 12 186 18 324 27 136 19 227 389 5 182 49 54 180 391 274 76 15 286 4 107 +377 272 93 208 50 131 348 33 321 202 234 291 346 101 260 70 203 220 56 139 295 237 163 134 351 113 198 94 150 379 151 197 95 230 57 287 412 253 1 78 66 108 259 63 308 338 82 149 92 159 334 64 411 293 86 52 116 309 144 376 359 31 360 356 65 109 172 365 239 296 207 100 133 352 190 154 218 310 120 275 278 261 77 14 430 375 323 431 61 282 103 363 130 9 350 301 414 384 247 141 115 345 184 380 85 266 187 422 127 367 240 378 185 305 340 374 280 106 169 409 170 79 28 73 292 373 178 339 349 20 312 294 88 297 236 175 26 298 331 161 428 40 99 114 123 362 55 326 250 387 279 407 147 211 119 196 258 318 335 381 285 53 424 277 267 43 281 167 168 51 386 235 256 242 192 137 248 7 420 155 332 97 354 140 90 166 276 27 191 241 173 231 344 368 264 46 262 417 111 210 232 118 302 366 434 193 415 30 343 177 156 194 329 84 87 201 216 126 62 171 215 128 24 158 254 421 306 34 320 67 427 6 16 69 143 39 72 68 328 316 37 315 416 71 252 221 288 105 284 214 413 209 10 74 81 336 330 372 200 188 342 426 361 217 307 8 432 403 142 136 125 265 117 47 195 341 429 174 148 370 364 313 353 382 245 122 233 204 347 124 393 319 83 129 189 162 314 183 121 304 243 268 419 418 164 406 283 199 229 75 206 138 405 299 255 222 22 205 383 238 290 176 80 303 44 227 21 433 311 327 337 58 179 223 395 135 273 257 435 42 397 145 244 219 355 401 408 157 60 396 98 358 317 89 249 45 385 48 25 398 165 102 152 246 2 5 17 29 112 18 181 271 333 160 423 425 322 404 394 186 13 289 270 225 228 213 11 38 153 41 96 263 369 3 182 146 59 32 132 76 12 371 35 226 325 402 110 36 357 224 399 212 251 91 410 23 388 104 389 269 274 180 49 300 324 4 400 390 392 19 391 286 107 54 15 +31 250 275 62 330 70 420 64 364 159 237 411 362 63 202 141 371 294 50 82 356 163 230 192 147 39 101 203 144 123 56 20 412 216 334 207 306 103 291 295 253 257 416 266 297 239 281 113 413 78 95 1 187 16 154 422 339 201 9 66 10 431 36 26 190 348 368 133 130 131 331 261 128 265 363 90 305 379 235 231 93 272 352 340 169 116 170 52 197 360 209 365 267 298 268 220 177 351 359 338 234 162 114 345 288 386 161 318 349 164 140 279 264 312 121 240 7 77 34 247 342 151 293 346 366 79 115 198 134 284 14 319 258 208 358 367 301 398 285 67 350 167 168 87 430 395 259 244 218 6 308 376 394 343 393 117 205 341 414 55 126 271 45 179 415 262 158 217 278 119 51 28 189 329 43 97 347 407 61 71 424 310 399 99 374 57 37 47 315 178 195 200 94 421 196 377 242 435 17 199 194 313 76 396 191 111 22 80 232 233 109 106 433 84 24 344 204 81 2 434 215 397 214 370 137 303 373 86 254 221 260 145 193 378 282 426 185 139 83 184 166 124 384 332 252 326 280 73 316 125 88 283 428 328 108 58 372 188 309 172 38 100 44 206 165 85 21 149 236 383 287 46 150 321 120 173 273 160 156 75 33 417 419 299 270 211 381 276 112 243 354 210 245 30 60 317 249 251 224 48 361 403 65 74 248 409 304 320 69 127 8 152 40 290 432 3 307 136 302 323 135 390 174 427 405 402 132 325 176 155 183 333 142 269 105 23 389 110 296 375 118 327 418 410 146 59 314 181 53 355 385 175 353 382 171 336 256 406 32 292 229 212 153 122 129 138 387 300 277 42 186 29 388 27 429 324 227 357 89 19 98 289 425 143 335 369 68 102 157 311 148 219 380 12 92 25 263 72 423 408 180 404 246 41 96 182 225 11 35 226 241 401 255 13 286 274 400 337 238 223 213 322 222 18 5 228 104 49 391 4 392 91 54 107 15 +331 50 315 163 128 203 56 220 202 237 187 295 113 179 61 258 430 159 259 82 141 64 39 298 51 1 99 412 216 103 379 376 144 63 52 116 133 352 165 95 131 154 247 93 310 291 94 130 294 31 197 201 222 67 101 239 115 190 192 7 380 90 318 123 57 350 339 363 204 288 320 272 169 367 348 117 261 109 312 297 405 338 409 161 226 170 207 119 359 198 411 70 34 164 146 360 424 278 334 329 264 265 431 361 413 208 106 227 218 177 362 121 378 250 428 173 340 111 373 241 71 175 308 386 43 125 374 151 302 78 79 305 223 262 26 282 124 185 84 397 343 147 281 23 13 3 267 425 433 253 284 62 349 256 311 231 24 368 257 178 233 166 225 254 406 232 323 423 35 276 213 88 245 242 351 20 188 46 356 387 53 249 346 422 33 426 156 58 42 224 134 105 354 27 174 403 366 381 275 365 266 230 85 342 341 304 229 8 240 333 183 9 195 73 194 137 211 191 139 317 210 303 408 273 14 184 364 38 193 301 66 86 176 432 60 69 206 407 393 100 77 293 316 196 417 279 328 120 268 427 415 345 321 420 344 12 162 435 384 145 370 309 28 47 214 10 243 22 114 290 235 199 300 326 181 205 270 421 16 40 271 244 48 217 98 219 209 112 18 72 283 150 330 394 357 307 149 419 396 289 372 65 371 385 157 132 136 140 29 358 414 104 332 418 30 155 389 108 37 347 110 375 186 189 287 401 97 314 327 221 143 306 160 234 148 377 74 299 280 6 45 248 75 182 236 127 260 172 158 399 383 252 353 382 102 388 59 89 200 122 167 168 238 126 32 81 322 5 92 395 285 25 325 2 296 55 398 416 319 118 313 292 135 228 251 335 96 171 402 68 429 138 87 277 41 21 269 324 17 434 4 410 212 83 91 107 215 142 152 355 369 263 336 153 400 76 390 49 11 404 255 180 129 44 391 36 337 19 286 392 15 80 54 246 274 +220 39 237 350 64 374 31 113 375 131 42 208 51 266 348 354 291 295 109 231 301 298 356 352 147 1 253 203 130 239 260 430 82 67 331 95 202 196 207 159 192 310 185 56 244 201 26 422 256 32 61 140 142 377 71 247 85 163 57 346 116 50 72 339 190 141 70 100 411 312 28 368 187 78 119 294 33 379 381 305 334 230 66 343 372 421 232 38 177 99 359 363 93 156 360 216 120 161 65 250 321 308 362 179 240 235 416 380 420 7 299 121 167 168 330 278 191 326 117 218 79 164 63 395 261 376 204 267 288 86 412 435 413 221 178 154 245 431 12 146 111 242 165 327 157 47 432 428 347 125 257 209 367 30 144 272 43 320 14 37 27 345 197 341 52 22 403 94 419 258 349 275 77 280 128 259 234 318 73 166 429 158 41 2 55 335 290 169 162 378 351 46 199 205 268 200 115 90 198 29 373 306 145 361 384 344 304 264 170 315 10 193 407 9 285 103 284 365 101 68 137 309 122 127 20 59 307 134 6 328 24 338 340 434 112 16 414 241 296 195 388 319 271 289 329 45 370 252 124 366 8 332 97 21 265 74 139 300 383 425 123 105 262 391 217 40 303 386 172 424 206 415 364 62 251 277 287 184 106 151 409 293 426 273 75 114 405 175 283 408 276 83 297 317 44 313 302 433 393 84 333 110 254 160 311 371 316 173 323 233 214 133 60 155 149 188 87 34 88 427 102 150 249 243 126 108 194 135 236 387 18 417 36 248 53 49 153 402 314 353 382 69 215 182 48 152 342 222 270 176 174 281 58 401 404 337 96 325 5 410 394 181 211 355 398 3 107 104 282 226 224 118 423 210 406 397 25 219 279 92 238 292 418 269 227 212 143 171 11 229 148 385 324 91 399 357 129 213 17 322 369 132 358 13 81 263 336 225 89 186 396 35 255 389 189 223 98 136 19 4 76 138 80 54 390 23 228 400 246 183 392 274 180 286 15 +231 220 395 51 67 310 237 39 109 356 430 163 266 159 203 7 147 82 419 393 202 253 31 201 63 379 154 50 1 291 411 99 305 30 331 29 93 301 295 52 100 312 196 113 119 12 235 78 64 97 130 376 372 144 256 20 348 116 190 313 363 165 86 365 247 103 412 349 409 230 26 422 56 334 294 70 239 192 338 152 352 323 351 405 250 377 431 261 101 140 285 123 208 131 85 90 24 207 267 79 362 346 46 318 185 434 415 206 302 368 306 117 232 45 141 197 298 9 357 240 14 259 161 293 281 133 65 360 366 77 43 350 94 95 420 191 359 308 340 187 209 347 275 320 175 380 297 216 384 321 28 234 278 329 128 414 284 413 339 158 124 142 218 204 262 16 332 179 315 121 156 169 87 345 57 189 177 198 421 272 157 66 257 428 417 170 258 106 245 114 174 115 378 167 168 164 416 146 426 367 268 10 105 42 53 398 221 394 241 361 68 371 288 32 34 330 120 311 33 252 72 173 84 342 283 44 264 112 244 374 62 71 135 176 236 433 199 242 6 55 335 246 418 354 188 425 396 427 217 73 125 151 309 200 96 319 155 370 435 344 143 136 386 403 373 40 149 387 47 314 381 195 277 37 194 222 299 214 61 254 265 2 280 271 111 364 150 139 397 322 36 287 233 137 238 205 276 407 260 303 358 423 401 383 178 184 243 212 134 60 21 226 292 304 162 69 399 317 392 127 211 343 166 326 273 249 35 385 404 432 172 282 289 83 74 145 59 181 341 193 54 225 38 118 279 424 307 5 22 210 129 296 429 248 408 132 353 382 224 110 108 227 270 182 375 88 41 406 160 251 410 107 325 148 18 27 219 104 58 186 3 138 183 215 89 324 8 213 316 255 75 102 290 300 126 13 48 223 388 402 122 17 390 25 333 11 91 229 171 98 328 153 92 49 336 327 355 269 76 337 263 389 80 286 81 228 19 4 369 400 23 15 274 391 180 +329 65 431 308 56 103 309 203 173 237 141 426 202 159 376 64 362 26 170 248 169 284 50 379 239 192 144 20 171 172 424 117 291 283 392 71 118 63 190 98 131 196 416 130 420 39 293 57 295 266 206 231 331 352 253 180 154 414 218 258 315 201 411 175 263 82 178 240 298 191 250 46 247 90 305 348 1 363 187 345 318 161 113 217 67 330 312 121 109 422 149 9 288 220 79 230 147 350 87 339 209 354 95 115 208 430 346 384 31 401 81 193 163 51 409 73 119 78 267 259 204 359 211 323 70 164 360 61 369 276 378 334 321 52 412 174 370 148 338 123 367 403 84 160 428 344 99 177 351 120 261 18 249 45 278 294 150 189 210 194 125 340 301 349 129 101 287 124 7 10 366 307 157 116 275 244 37 243 235 310 272 285 387 233 86 142 165 413 197 304 216 302 106 415 16 158 40 262 386 207 221 326 97 434 156 128 232 188 421 24 368 133 28 112 342 303 60 292 14 365 27 395 42 419 140 93 374 341 176 256 34 55 394 234 185 198 22 398 358 167 168 59 214 427 135 195 297 381 47 53 138 85 433 313 137 306 33 66 88 252 114 377 356 314 179 400 435 385 289 77 199 343 139 245 62 32 335 100 94 273 372 166 145 58 432 200 155 153 353 382 102 260 96 74 38 328 111 257 146 361 380 399 43 68 105 347 236 2 127 264 319 110 299 327 320 75 290 268 151 21 281 364 429 143 242 296 417 405 279 282 134 36 205 393 6 30 280 410 83 108 29 317 332 371 300 375 357 418 152 397 181 407 184 212 222 69 383 122 271 223 406 316 44 241 41 423 35 373 162 25 4 107 72 132 17 219 396 337 229 265 311 254 80 8 54 277 390 402 136 92 238 126 322 333 48 355 270 89 225 215 389 23 408 227 183 104 336 425 224 255 186 251 269 76 286 226 246 91 11 324 213 12 5 228 13 3 404 182 325 274 391 19 49 388 15 +31 420 141 64 237 362 192 334 306 330 350 288 39 416 253 164 303 201 26 356 117 239 79 331 123 50 125 340 159 411 160 250 63 90 145 126 147 140 62 206 216 82 258 20 209 275 319 110 267 435 318 187 167 168 16 298 144 191 177 161 317 365 38 371 119 273 221 244 61 10 190 36 341 235 28 217 214 243 170 169 162 56 156 403 70 366 1 116 163 339 142 363 378 179 113 204 196 295 67 396 232 59 412 249 109 121 131 413 86 202 368 422 208 165 261 124 257 247 203 84 384 9 294 304 276 207 240 45 402 230 73 434 130 364 432 85 233 367 343 291 185 262 381 351 40 349 58 95 52 386 34 310 197 200 252 7 99 218 415 256 285 43 220 348 66 266 37 188 373 93 424 234 312 264 301 394 354 428 199 87 352 154 309 60 194 281 115 242 83 308 346 205 265 101 132 166 198 65 118 106 174 2 307 358 157 376 69 14 333 114 137 374 355 342 272 345 251 372 158 78 149 32 398 305 127 175 426 57 6 314 103 150 321 259 22 405 335 195 176 404 379 172 135 427 289 311 297 399 254 284 184 133 55 51 227 46 433 344 360 430 414 183 222 361 193 173 383 181 290 88 245 282 421 47 3 359 128 231 139 431 189 229 387 370 94 389 21 397 219 390 287 171 315 112 186 23 44 296 71 347 329 224 120 100 326 313 260 338 223 80 41 393 151 353 382 280 357 77 328 425 407 143 129 380 29 325 278 155 377 409 134 111 226 96 323 332 215 236 419 146 279 395 213 299 13 148 225 178 241 320 406 255 24 104 283 300 12 17 5 97 327 248 33 76 293 81 105 74 408 138 302 30 92 268 75 274 277 72 136 270 8 42 228 417 152 182 211 375 263 98 108 89 153 388 322 238 423 292 271 369 48 324 27 418 212 316 401 210 91 54 102 11 336 246 25 53 337 68 410 122 35 429 15 286 269 385 400 49 180 19 18 391 4 392 107 +67 220 231 393 203 51 202 430 419 109 323 50 237 165 310 63 141 113 207 39 159 31 99 163 356 154 147 348 82 352 363 305 331 379 395 29 1 362 52 288 216 119 412 130 86 411 128 95 294 30 315 131 338 357 56 295 350 64 103 152 85 7 409 201 26 208 368 187 247 144 376 78 164 259 93 405 116 101 256 190 334 106 192 253 349 266 230 239 339 261 293 34 297 302 104 384 312 70 313 114 420 291 236 345 197 427 346 374 57 124 268 191 61 298 415 97 218 244 365 285 90 308 204 267 258 169 250 161 170 416 123 278 115 179 20 196 133 276 344 246 221 140 200 94 361 198 240 423 265 306 12 222 242 275 73 234 320 380 209 318 84 173 406 206 396 435 375 100 28 342 14 120 271 385 178 372 9 272 330 381 18 68 434 24 417 347 284 340 257 264 335 151 403 413 91 77 366 428 172 270 214 329 117 183 301 79 217 112 281 71 341 137 125 373 367 135 66 223 53 121 33 65 425 129 43 309 359 422 410 351 227 394 431 401 360 332 136 235 386 177 354 44 89 307 418 316 283 88 321 145 378 397 254 322 232 311 54 16 241 87 429 205 62 160 260 167 168 377 225 262 111 37 185 157 433 69 105 27 370 398 55 414 166 72 158 407 279 226 273 319 38 42 46 364 35 392 282 47 314 388 299 23 188 45 199 48 251 387 146 10 36 184 162 139 182 195 280 193 156 252 255 238 83 245 155 328 134 292 98 303 426 40 229 317 6 194 143 60 343 421 353 382 5 118 212 102 300 304 243 74 277 211 408 8 189 171 175 219 269 324 210 32 132 22 49 149 233 150 333 176 13 224 213 215 25 383 424 371 142 325 2 92 58 110 75 181 326 186 17 432 174 153 59 358 249 3 228 108 122 96 399 287 404 389 290 15 11 76 337 289 107 148 402 126 41 21 127 248 263 327 274 296 81 4 336 390 400 138 391 80 355 286 19 369 180 +70 50 163 78 113 63 31 237 348 197 411 56 93 131 1 377 101 116 198 114 207 231 95 202 310 189 159 239 281 295 203 82 154 242 356 291 338 130 230 250 234 187 259 268 192 147 151 331 297 64 430 26 345 115 67 374 257 294 172 306 376 109 412 360 352 141 373 368 334 39 169 375 253 61 339 170 359 365 218 220 272 94 9 275 240 144 71 34 216 20 66 97 27 405 57 344 435 108 367 14 121 161 362 128 363 195 265 261 420 100 201 305 123 308 86 264 379 271 235 208 139 409 349 69 278 407 258 312 52 364 247 393 346 7 134 266 341 315 340 267 133 190 24 279 276 256 182 73 389 351 221 298 62 307 16 288 184 431 167 168 90 282 309 384 318 103 119 293 428 342 217 47 236 111 44 323 162 332 270 321 254 33 68 79 99 215 143 65 386 292 343 284 413 260 152 36 196 176 193 88 397 30 77 330 422 191 388 350 417 280 29 328 313 106 174 92 222 51 178 401 395 37 28 53 415 347 361 301 136 17 398 329 84 209 285 117 55 18 358 414 269 287 424 419 326 206 85 316 10 149 74 244 150 383 385 76 126 200 127 175 120 179 137 158 406 232 75 311 2 302 211 124 387 6 416 263 166 418 319 21 210 185 98 283 227 129 145 48 46 214 372 403 23 125 262 138 396 3 378 370 87 223 43 433 8 155 410 252 229 421 425 432 325 140 324 22 233 38 290 399 160 402 224 171 45 226 322 153 296 212 122 204 429 225 314 366 173 381 181 199 320 194 333 183 394 357 303 12 251 427 380 89 13 205 241 40 371 246 58 105 273 434 177 49 112 255 355 286 188 142 164 83 248 213 243 426 304 42 277 11 404 25 353 382 118 156 146 107 337 228 81 157 335 408 327 354 238 299 165 60 4 135 249 132 245 59 80 317 336 102 186 274 19 96 400 110 35 289 300 32 148 72 104 390 91 15 219 391 5 369 392 423 180 54 41 +50 272 237 346 113 133 377 428 294 331 114 63 1 78 334 293 163 374 39 95 70 93 33 352 66 56 131 203 386 141 288 61 291 247 308 345 202 151 348 207 354 159 220 147 128 116 94 178 350 64 31 259 218 208 411 338 295 349 368 266 253 239 139 376 123 57 250 82 154 298 134 77 100 130 172 170 192 340 169 344 261 103 120 268 329 297 379 201 20 244 351 375 356 111 144 190 307 343 197 282 310 121 187 194 230 309 115 339 71 412 362 430 73 275 315 216 101 108 9 407 198 258 90 52 359 360 47 431 28 24 332 38 278 284 318 301 420 234 305 232 424 270 86 161 150 367 196 92 26 271 414 410 195 312 422 99 34 51 413 361 85 373 433 162 328 109 14 167 168 378 316 267 62 231 215 204 193 79 42 256 65 323 381 264 341 387 149 245 105 306 235 317 211 205 363 177 260 16 383 44 364 242 46 302 429 435 321 401 191 40 403 48 10 7 283 304 119 257 292 185 370 358 409 6 330 384 287 75 87 106 333 175 74 210 145 171 156 166 45 280 55 279 158 153 337 281 319 262 67 276 102 140 421 240 365 265 353 382 252 84 189 179 68 397 277 285 221 217 164 125 199 398 347 122 426 416 112 432 393 11 336 60 388 182 83 394 8 366 233 188 214 88 269 124 176 137 173 399 97 81 53 327 326 209 98 372 117 25 138 43 136 127 165 248 303 419 355 263 236 299 174 395 222 313 243 200 342 206 434 22 41 2 380 184 290 126 415 405 49 296 417 58 385 118 30 427 402 183 37 406 27 311 273 249 181 21 132 229 72 371 300 142 320 157 223 76 18 152 325 335 32 227 129 324 251 59 155 146 389 289 390 12 408 104 160 148 69 110 36 241 213 418 143 23 186 254 357 423 226 225 212 219 89 425 17 314 96 3 391 13 135 396 5 224 369 29 180 255 238 392 91 246 35 4 228 274 19 400 404 80 107 322 286 54 15 +26 163 237 192 141 1 131 63 64 376 334 159 362 341 113 203 31 130 435 125 361 411 253 352 261 202 52 366 326 239 308 384 297 412 101 420 331 356 330 82 350 78 294 145 275 250 191 116 379 295 50 39 147 103 154 95 110 351 365 208 262 339 85 128 206 276 428 309 160 169 265 258 373 188 204 348 403 298 247 46 344 209 73 221 312 184 179 201 218 164 187 242 170 119 216 205 430 79 422 345 140 70 124 291 190 217 318 368 90 86 338 230 121 93 288 196 200 266 267 133 172 161 416 431 349 144 71 66 343 413 342 340 257 363 244 346 109 220 256 123 386 397 53 60 100 433 56 67 43 319 106 207 315 77 415 424 62 197 280 321 259 240 359 360 69 310 232 421 166 57 173 409 306 195 177 65 380 34 134 367 55 211 264 117 272 378 278 234 175 51 74 167 168 165 112 10 389 28 231 75 137 111 229 434 281 198 185 115 118 20 235 317 98 210 178 37 303 252 387 329 432 9 84 7 114 222 94 374 162 245 347 289 354 279 214 260 8 23 371 156 33 328 273 105 16 158 171 304 377 364 370 24 414 300 120 305 325 61 302 193 181 99 333 407 97 381 427 227 224 58 241 88 199 233 284 307 249 59 263 83 401 406 292 17 327 372 383 299 254 332 426 287 301 311 290 268 323 186 174 150 314 136 149 155 127 236 243 189 417 405 2 285 271 14 226 45 194 36 419 251 293 375 76 35 6 320 225 146 38 396 139 270 21 282 40 3 142 394 32 408 395 296 423 87 89 153 143 238 248 399 213 41 393 418 13 148 358 313 108 27 429 22 277 353 382 176 157 283 398 425 30 335 182 132 81 219 29 96 316 5 135 228 126 44 255 151 47 223 322 18 357 212 11 183 269 72 324 42 19 12 369 138 215 68 355 402 337 129 92 4 122 152 274 49 390 80 286 385 388 336 404 102 48 104 246 25 410 107 54 400 15 180 91 391 392 +237 116 1 77 163 308 46 259 147 187 411 288 65 141 376 346 334 298 258 239 309 123 63 31 378 56 203 331 50 175 220 315 351 82 39 202 64 340 159 362 192 350 70 431 170 329 169 356 28 295 424 154 93 156 201 253 179 291 293 349 386 345 26 172 428 16 284 121 244 85 310 422 430 128 204 197 247 190 101 305 412 78 363 421 318 235 79 348 133 354 366 360 344 341 20 359 86 272 161 289 130 216 198 90 312 381 185 240 338 103 387 61 209 352 414 94 52 14 261 113 435 115 317 413 275 211 426 9 40 292 106 62 196 263 379 120 134 119 109 131 290 297 178 210 127 71 230 283 99 326 409 276 164 125 100 218 174 191 57 88 262 245 189 365 176 51 294 84 66 232 374 171 139 281 117 249 257 149 332 73 373 177 144 97 267 7 420 343 184 250 217 10 45 266 158 37 193 27 303 425 282 233 268 339 140 243 306 256 403 364 150 222 95 301 330 361 415 370 429 307 302 265 221 279 372 38 280 208 229 167 168 165 380 111 194 328 58 321 112 367 264 323 333 254 434 207 145 231 236 87 353 382 199 188 355 105 287 319 252 30 55 205 195 206 126 22 234 368 24 304 313 155 43 432 47 214 135 260 151 67 98 273 271 69 241 433 114 407 358 375 311 402 53 157 83 12 146 72 410 389 427 327 32 248 377 296 153 2 399 21 162 320 335 416 278 108 394 142 342 81 200 160 92 314 395 227 33 60 347 383 110 419 183 393 34 223 316 337 44 277 336 242 3 124 138 401 398 129 59 17 270 226 18 269 42 173 96 384 405 385 299 224 136 388 143 25 89 285 13 137 74 6 400 406 417 8 102 181 48 23 75 152 251 225 397 166 213 148 182 122 238 118 215 390 186 408 5 357 76 132 369 36 300 325 104 228 68 91 80 29 371 418 49 41 11 107 423 4 392 219 180 322 396 212 15 19 35 255 404 246 324 391 54 274 286 +293 259 346 133 237 349 208 163 203 220 291 272 116 66 77 131 64 65 202 63 1 95 151 282 61 351 82 338 295 301 352 239 130 377 431 430 308 292 51 197 154 312 188 113 266 298 354 194 334 159 253 191 198 379 85 134 28 93 348 230 261 359 57 156 360 192 103 141 376 20 99 90 331 367 232 52 139 39 190 412 56 260 78 258 247 79 422 33 380 109 86 101 164 144 407 361 321 340 170 250 318 363 67 216 381 140 147 70 169 411 378 128 288 40 362 428 31 115 294 345 275 424 370 149 46 207 329 187 309 315 218 256 175 310 297 71 26 268 350 384 287 100 386 150 177 281 55 178 125 196 296 105 278 356 289 244 343 305 365 306 420 161 277 123 403 316 231 262 332 209 108 145 347 276 323 73 184 433 137 214 341 368 243 167 168 264 120 211 413 127 374 41 172 416 353 382 94 432 117 166 319 339 387 414 335 158 204 38 267 222 280 372 375 193 199 60 148 233 427 344 173 106 366 421 179 304 311 43 50 14 241 426 303 88 119 240 435 205 273 98 121 174 270 326 336 409 6 92 234 24 165 83 284 290 317 415 313 217 124 330 32 271 87 22 185 10 9 210 327 373 235 206 81 75 219 302 27 434 257 59 285 358 74 393 37 111 248 279 254 201 16 8 7 320 84 132 265 342 355 398 249 252 200 221 195 171 397 114 189 42 34 176 394 69 236 423 333 21 30 406 213 396 328 245 62 215 112 110 307 417 283 162 146 242 399 72 405 227 223 419 251 118 364 408 142 45 29 181 152 2 47 58 314 53 212 183 102 68 395 157 369 269 97 155 229 96 126 5 371 186 425 35 299 89 153 36 385 136 404 226 418 104 401 255 160 402 357 12 13 80 129 383 263 324 429 322 225 122 180 143 390 238 135 224 392 91 246 389 325 3 44 138 337 48 23 228 17 18 19 300 274 286 25 76 410 107 11 54 4 400 182 388 49 15 391 +50 56 113 31 291 385 374 34 147 348 61 237 259 38 411 63 220 78 47 294 331 295 363 230 64 57 268 278 163 388 67 161 375 7 20 266 203 70 99 315 128 307 261 247 1 310 271 430 376 339 139 413 192 239 95 130 14 39 115 93 393 410 121 151 407 90 178 207 352 216 48 111 22 182 169 9 170 281 334 105 149 65 187 356 141 185 256 116 293 122 308 159 120 6 298 202 218 316 154 94 267 101 240 117 329 103 114 16 109 197 201 422 123 258 68 368 373 144 30 270 133 119 409 365 323 150 421 280 49 362 253 269 190 131 82 429 42 318 346 108 297 127 398 321 66 287 383 164 176 424 71 358 312 205 51 88 138 217 306 52 343 394 381 431 309 320 341 28 305 198 367 279 33 209 24 85 272 175 262 172 231 189 27 191 301 350 46 397 370 188 26 44 79 196 194 45 153 349 257 402 387 2 69 106 361 379 386 344 296 264 435 223 25 399 235 288 177 222 345 360 330 102 420 290 18 340 419 37 250 338 260 86 282 364 359 244 167 168 221 226 332 372 337 179 426 208 77 265 211 29 232 145 10 254 427 184 43 275 432 129 214 377 152 158 210 405 378 112 84 165 303 97 342 412 241 21 366 174 92 17 87 354 380 193 204 236 11 333 284 125 327 60 233 107 384 199 132 351 62 162 416 171 200 313 206 155 143 243 395 195 434 252 225 326 100 319 391 403 126 148 285 183 55 347 317 134 12 166 234 13 273 246 396 249 433 292 304 59 328 156 425 276 251 390 428 229 8 124 137 242 181 227 302 406 3 299 417 415 110 73 53 357 36 89 283 314 325 140 58 389 32 248 215 408 371 40 212 245 173 213 401 311 23 418 157 160 322 72 4 83 353 382 224 263 289 335 414 74 219 80 76 96 142 135 324 146 118 41 98 404 238 81 423 228 136 186 392 355 75 300 35 255 336 277 369 400 274 104 286 5 54 19 91 180 15 +237 411 209 147 331 430 244 141 50 258 67 31 39 97 204 288 217 65 51 231 109 236 187 356 220 203 201 63 79 291 159 106 298 192 295 427 116 163 362 329 123 253 247 342 90 154 202 128 64 61 306 256 121 372 144 36 350 322 119 230 315 216 318 1 386 88 351 56 82 117 99 196 26 384 218 334 352 177 238 103 52 250 156 161 363 93 261 34 379 133 420 239 179 191 95 267 387 84 259 310 190 293 78 292 165 348 381 266 428 297 53 232 339 115 413 305 349 14 112 58 113 360 359 346 181 397 245 100 378 125 240 130 101 275 114 131 340 55 85 170 419 164 395 393 205 28 7 169 94 62 294 330 197 124 89 376 235 317 249 433 20 233 105 185 312 303 86 104 367 366 364 338 57 254 137 380 222 431 434 308 414 403 354 272 373 46 145 412 60 208 361 422 45 69 37 284 332 426 198 195 70 262 221 158 343 370 127 357 243 281 111 257 341 264 409 199 304 110 206 29 207 278 146 10 59 421 333 73 188 273 226 424 214 425 200 234 77 151 368 194 347 184 166 405 289 15 33 9 140 301 54 265 66 268 40 241 323 365 321 167 168 276 72 432 223 227 139 32 398 302 252 160 279 396 287 186 309 157 87 335 296 12 162 38 43 149 299 118 416 225 377 415 401 271 320 211 175 91 16 345 150 407 172 178 189 280 30 283 213 248 148 2 71 435 383 324 371 134 319 402 282 47 27 285 74 358 394 344 406 374 423 13 132 120 210 183 176 173 417 229 290 24 399 316 242 17 126 314 260 270 328 353 382 142 385 75 21 389 143 44 6 326 193 311 3 307 313 174 155 171 138 68 224 108 418 277 182 219 22 135 96 18 215 5 42 83 251 152 325 48 355 92 35 269 390 212 228 23 98 8 81 136 337 388 49 286 263 408 76 410 404 255 400 246 122 429 25 41 327 375 392 153 107 129 300 11 369 4 80 102 19 336 274 180 391 +159 376 308 309 98 163 329 103 63 263 71 328 345 202 170 172 1 203 169 272 291 426 237 192 50 352 259 178 123 294 20 412 323 128 133 344 116 346 173 386 171 362 428 95 120 431 331 154 113 253 334 78 141 258 239 340 348 338 56 144 130 115 190 351 93 295 175 207 248 197 411 379 422 230 16 61 82 7 70 77 378 326 339 265 374 198 46 26 90 67 282 189 293 424 201 318 350 327 211 247 52 195 34 218 65 164 210 310 298 264 276 421 409 131 57 14 284 250 365 94 99 288 101 267 413 147 275 261 158 208 64 149 312 279 366 278 134 266 367 193 161 349 363 66 375 40 174 177 435 62 220 9 315 252 370 117 188 204 420 10 79 368 33 87 153 39 137 106 165 240 51 31 140 302 114 28 243 359 138 341 191 430 292 407 281 297 45 119 361 84 176 360 60 283 358 356 121 22 433 145 429 86 102 397 245 231 403 414 58 187 43 354 273 109 196 38 342 434 185 24 234 355 206 305 150 215 387 415 330 151 410 129 216 73 92 393 289 394 262 307 48 317 105 373 205 268 399 233 217 194 180 232 85 427 214 372 156 148 47 304 125 166 287 303 124 416 167 168 398 299 432 179 88 242 139 132 199 74 347 25 301 381 321 419 160 235 75 111 332 364 257 285 256 408 23 353 382 55 385 112 313 97 146 209 280 118 244 59 127 100 42 401 333 135 236 319 383 37 249 184 395 8 200 251 336 2 157 96 300 81 212 320 377 396 290 69 384 181 6 223 155 183 53 271 21 324 44 229 41 343 110 380 311 306 371 254 18 316 314 17 80 30 402 35 390 277 270 260 296 162 219 405 108 221 325 142 27 152 392 32 369 337 224 29 335 72 143 3 222 83 357 126 89 186 417 19 423 241 269 11 76 418 406 225 68 122 389 246 388 182 226 213 255 400 13 136 227 4 286 425 404 36 322 238 12 49 228 274 5 15 391 54 104 91 107 +431 284 329 424 315 103 283 237 64 81 308 159 294 331 144 203 180 291 426 65 170 173 309 113 295 20 239 50 1 63 169 247 141 39 202 411 369 31 70 349 258 78 56 293 163 82 26 275 116 376 128 346 413 354 250 192 130 154 90 248 115 253 412 298 352 220 161 208 99 414 351 379 362 9 133 272 334 216 318 123 190 261 149 207 194 193 172 420 367 267 119 131 57 73 61 46 305 363 67 201 312 106 178 430 240 230 117 171 71 297 338 350 368 187 51 287 101 340 204 121 164 259 394 97 288 147 378 79 109 196 16 256 7 175 150 218 358 345 356 93 409 66 422 197 177 188 360 10 348 179 34 52 321 206 386 211 232 301 77 359 397 302 95 167 168 415 151 266 370 244 433 416 174 205 120 114 191 139 60 310 165 366 317 292 330 432 427 235 40 399 198 142 278 380 28 306 339 387 217 47 314 243 210 262 158 45 199 37 260 398 403 282 156 189 118 145 264 214 249 112 245 185 296 342 58 381 94 341 22 55 233 428 127 14 365 125 374 326 273 421 38 162 347 343 234 32 2 313 111 372 307 290 88 385 236 84 209 74 157 285 200 87 86 176 304 42 160 134 407 265 195 361 417 59 377 100 419 62 263 276 166 241 289 43 138 24 33 364 140 27 383 281 373 344 393 108 303 371 85 353 382 332 21 323 146 221 137 257 434 124 435 98 384 75 333 396 252 405 6 105 36 401 153 328 320 299 279 212 48 225 69 30 327 402 319 231 254 242 148 18 390 155 418 222 181 229 311 136 238 226 400 335 23 89 102 53 423 300 355 268 223 280 152 8 132 126 143 316 425 429 135 227 395 110 224 406 25 219 357 184 12 92 183 13 215 336 375 35 3 122 129 251 324 68 96 80 29 72 4 44 17 83 41 213 408 255 271 277 404 410 392 182 322 186 76 5 228 270 104 11 325 388 246 389 19 107 49 337 274 54 269 286 91 391 15 +163 1 56 376 279 203 202 294 261 159 230 189 297 430 334 247 366 411 192 262 39 95 70 207 50 305 237 285 190 340 211 128 280 365 161 174 379 154 78 220 338 184 197 210 342 318 20 367 86 101 259 63 134 64 103 130 315 90 310 93 116 331 113 82 352 131 147 412 424 121 240 268 250 267 239 24 264 198 123 176 138 363 232 201 46 291 281 31 47 284 71 141 34 144 282 115 170 9 111 271 169 208 428 378 175 308 133 373 306 79 312 397 332 393 114 410 401 85 345 57 187 94 136 44 119 205 28 358 97 283 348 278 99 351 236 194 275 73 8 362 386 346 55 188 413 431 117 112 67 409 293 195 166 14 295 258 51 196 253 62 218 407 26 76 265 60 52 7 191 216 256 43 394 288 301 217 48 399 359 432 98 272 415 313 61 347 398 356 298 433 106 77 360 343 182 384 84 235 137 349 417 309 254 370 16 344 339 177 209 75 292 38 276 374 206 266 316 371 368 65 69 389 200 330 325 244 387 74 234 326 139 173 193 319 364 419 87 416 22 212 302 109 361 405 354 323 181 414 45 151 422 152 100 286 314 25 172 350 10 270 304 132 178 321 420 311 341 40 17 396 108 233 231 120 269 153 204 421 102 242 199 214 185 248 155 105 418 42 81 329 245 427 243 88 273 335 162 36 125 164 324 30 92 126 143 66 383 179 320 395 83 249 53 223 171 156 257 183 357 426 317 37 403 33 145 124 6 390 303 68 380 251 58 227 388 41 229 165 287 328 167 168 222 149 289 255 27 157 260 353 382 307 150 406 290 140 381 118 299 158 89 148 23 72 246 408 32 322 296 59 221 252 110 333 425 129 375 11 435 35 385 2 241 224 355 127 29 135 434 263 215 3 122 19 142 377 80 146 372 21 429 96 327 404 400 186 49 391 160 225 402 104 18 300 226 5 238 228 423 277 219 392 13 213 369 12 180 274 54 91 107 336 4 337 15 +31 167 168 118 192 191 341 26 64 141 294 124 217 362 239 110 237 420 79 131 416 61 330 125 82 166 216 304 121 318 258 90 170 196 163 384 73 350 101 56 147 169 413 20 159 276 1 261 34 291 206 202 95 117 203 303 28 367 272 218 200 187 115 242 160 310 344 197 370 253 297 397 430 386 190 62 331 161 305 220 50 113 208 234 151 403 60 308 201 207 273 230 123 178 70 321 86 262 295 247 346 144 128 103 394 365 52 319 99 340 145 435 221 345 358 243 349 130 332 426 307 244 264 154 306 59 114 338 214 424 348 378 360 198 428 268 156 359 209 411 398 343 116 267 211 259 293 66 44 357 395 260 194 399 9 63 10 40 352 288 339 385 177 106 210 184 412 65 278 45 422 78 97 43 232 431 334 381 39 112 373 279 363 46 143 287 171 376 309 179 421 250 189 173 172 401 57 415 265 231 280 281 351 408 235 139 284 85 193 93 240 158 289 109 433 427 379 366 84 140 434 356 119 387 409 312 149 83 204 316 275 245 175 77 371 393 252 111 335 257 233 248 212 396 133 33 58 368 150 181 67 249 329 290 132 285 301 188 311 296 432 298 14 282 142 213 148 374 364 199 98 137 32 270 94 183 414 195 100 302 254 361 24 185 22 313 7 120 271 315 227 389 182 324 51 2 283 68 8 27 36 21 328 256 390 317 164 162 69 127 236 342 425 75 23 347 91 326 336 152 38 405 353 382 71 105 186 238 174 87 74 47 380 146 292 299 323 314 55 16 222 155 126 269 108 375 407 104 383 48 226 134 80 205 354 320 6 377 5 54 81 135 225 277 13 388 3 333 241 30 165 92 300 37 369 219 76 429 19 136 266 255 53 274 180 215 224 251 263 42 337 404 229 176 400 322 41 410 419 29 355 89 406 153 372 17 327 228 96 402 25 12 102 246 423 18 417 11 88 35 223 392 122 49 4 138 418 286 157 129 325 107 391 72 15 +163 159 1 70 203 202 197 56 78 63 189 50 134 412 376 95 338 131 93 116 198 272 365 207 411 101 310 128 237 294 113 265 44 282 334 133 192 230 367 345 281 428 24 308 325 82 20 115 279 259 360 276 359 292 348 175 195 351 291 147 71 410 373 141 379 9 31 362 264 340 239 309 430 176 190 174 415 154 326 305 231 130 86 405 193 64 346 220 374 94 375 297 409 386 328 247 103 385 268 161 208 7 98 139 123 39 14 324 344 363 57 352 137 77 151 295 170 69 242 211 377 138 318 172 169 350 34 319 210 288 8 136 212 61 87 143 129 284 312 240 235 261 356 67 114 435 26 253 152 234 420 275 266 166 407 144 65 109 331 108 398 47 321 66 316 73 92 397 178 217 393 285 431 153 218 250 349 258 248 332 323 75 358 383 251 293 417 182 97 90 278 315 111 33 267 74 347 28 341 79 6 45 306 270 280 52 298 313 256 378 121 403 368 271 167 168 283 399 23 51 173 422 263 414 384 424 184 100 214 16 387 236 120 10 191 43 48 150 342 40 366 229 46 301 401 62 260 394 307 408 125 339 200 38 55 413 140 215 88 68 183 187 426 76 164 85 329 119 22 418 155 273 17 395 196 354 311 252 396 434 149 262 232 221 188 404 132 216 370 162 254 201 117 209 330 99 205 53 406 29 194 304 102 327 177 421 314 106 35 2 302 364 30 206 433 27 145 25 135 21 222 83 335 224 343 171 223 361 416 429 274 371 246 277 11 419 432 427 84 227 37 389 269 165 158 257 388 390 156 243 160 303 402 179 255 3 355 185 204 126 124 287 353 382 233 381 80 199 81 286 42 290 336 380 392 296 225 357 333 118 181 105 122 299 36 320 58 89 244 186 322 96 112 148 245 249 157 60 127 289 72 18 213 142 146 59 241 41 391 372 228 300 425 317 400 49 110 13 219 32 226 180 19 12 423 4 369 238 5 15 91 337 104 54 107 +342 281 237 192 267 63 306 331 351 31 286 64 14 159 141 297 66 101 154 144 323 259 67 207 279 295 82 211 356 362 210 93 78 94 173 288 85 430 261 220 208 26 350 174 298 175 203 250 123 308 1 368 109 179 202 346 216 201 190 130 20 247 258 349 312 340 311 36 165 338 117 99 51 119 379 37 189 195 256 39 128 334 90 9 253 70 292 310 86 240 217 384 204 50 420 161 164 169 170 376 262 335 61 235 411 365 197 431 140 339 191 56 121 373 416 367 435 43 52 71 377 7 412 352 196 116 230 146 163 275 38 366 138 198 28 200 177 149 245 266 348 378 95 10 133 315 232 73 387 103 46 125 272 150 106 184 139 317 218 422 318 160 156 239 98 343 105 80 424 280 393 321 40 65 209 381 284 309 145 413 162 124 185 57 79 147 176 293 354 84 45 290 273 148 92 403 328 108 427 434 60 414 254 113 221 62 287 16 330 34 320 172 205 302 111 360 305 374 257 333 329 22 264 69 188 380 307 227 32 59 428 127 359 255 363 415 187 206 151 167 168 222 110 304 6 289 42 276 131 233 432 158 112 178 87 30 347 314 115 396 341 294 326 303 214 231 426 409 58 236 402 157 194 183 401 301 243 263 265 394 234 313 77 244 126 171 283 181 353 382 361 120 142 282 88 332 278 419 199 357 102 252 249 48 345 364 29 421 425 114 386 55 433 33 291 241 242 97 68 429 155 260 296 2 21 135 47 372 423 370 229 385 53 268 399 215 193 358 398 83 12 137 8 72 224 89 383 25 285 118 76 226 219 27 344 404 223 327 17 100 375 397 417 319 132 225 405 41 186 13 3 400 35 136 104 408 246 316 369 152 395 300 228 81 44 418 134 277 96 299 389 388 129 166 213 355 18 153 390 270 238 5 23 271 371 406 74 24 212 410 11 407 19 143 182 322 251 122 15 325 49 269 54 75 4 391 248 91 180 324 337 274 107 392 336 +431 284 424 283 329 180 103 315 81 173 426 159 369 308 170 331 291 169 144 247 237 248 294 334 309 128 193 64 141 239 376 161 194 1 240 190 90 65 171 367 26 20 413 203 71 354 258 149 275 352 117 192 130 73 345 295 414 187 318 362 119 9 113 115 46 178 378 358 411 293 56 394 253 150 51 120 298 397 412 202 379 78 172 31 250 340 368 116 312 208 350 370 351 430 16 163 363 272 61 123 50 57 39 95 398 326 218 99 288 82 121 297 164 243 206 305 10 79 349 196 131 267 321 204 415 106 139 175 287 230 97 264 211 154 344 366 67 420 133 118 263 191 427 201 233 292 40 188 34 433 220 174 399 409 216 177 142 232 256 74 341 428 360 416 422 75 199 278 387 346 339 70 338 210 359 28 62 59 101 301 27 386 380 235 348 276 22 207 421 197 365 262 261 330 60 306 45 84 52 37 314 296 214 347 179 432 63 147 289 307 160 407 153 313 327 24 304 98 249 364 109 273 125 165 145 356 195 112 252 7 38 58 157 47 189 381 244 371 317 236 32 43 127 282 417 343 257 162 137 290 77 285 87 198 217 158 259 156 86 266 254 265 332 384 342 209 21 55 385 302 423 328 403 434 166 361 373 241 176 126 181 200 310 114 390 400 333 14 2 88 167 168 374 419 418 69 238 401 323 316 124 205 148 353 382 212 311 108 93 303 129 435 111 300 335 140 219 320 41 42 35 66 185 245 260 405 393 100 396 30 155 138 23 151 223 234 429 152 268 102 105 89 299 222 25 319 406 85 33 134 8 372 18 146 110 132 221 225 143 135 392 4 94 48 80 425 271 375 226 136 213 6 229 402 408 255 36 355 395 383 13 357 324 227 279 242 270 231 280 96 281 5 251 183 29 224 389 83 184 377 53 72 122 186 182 322 246 12 68 3 228 337 404 277 44 269 410 17 104 336 11 92 215 76 107 274 19 54 388 49 286 91 15 325 391 +332 159 237 231 1 259 63 147 331 220 187 163 411 430 31 113 154 67 190 101 297 70 351 413 203 294 267 20 352 7 189 51 50 65 202 310 261 348 376 295 379 123 347 128 281 56 323 412 230 82 116 247 393 293 291 174 39 334 312 356 305 64 192 133 340 99 216 170 240 52 315 78 250 175 169 406 119 130 349 342 398 256 46 201 329 279 235 338 115 109 144 363 378 306 395 45 394 266 90 386 179 275 253 161 368 105 141 346 373 40 409 43 26 290 239 345 79 209 380 244 207 366 326 260 343 30 318 199 103 431 258 176 288 415 365 262 360 359 93 66 9 197 146 97 191 185 77 424 57 121 361 114 339 298 85 27 335 387 301 106 284 177 232 358 308 313 362 292 10 399 34 84 28 278 245 224 422 280 14 214 354 392 419 195 208 241 200 344 236 414 156 198 100 420 86 71 131 268 164 350 196 204 165 254 173 302 117 205 194 16 321 178 87 24 211 61 357 257 134 417 32 62 221 149 188 218 29 333 303 206 125 37 283 2 138 3 95 210 6 427 18 111 421 143 397 88 184 371 372 341 309 183 426 374 433 94 112 405 381 401 384 155 330 150 434 4 158 435 407 120 36 282 428 152 172 429 367 377 390 69 370 314 21 317 139 273 73 364 402 425 272 396 320 285 234 227 311 243 171 145 55 41 233 222 418 162 12 127 137 68 403 264 226 319 307 276 81 193 151 383 148 304 76 389 277 22 265 327 58 287 126 53 44 432 108 252 72 42 251 38 104 47 60 229 375 33 225 249 83 59 11 181 157 271 289 160 167 168 246 142 135 96 416 74 124 98 408 89 23 132 217 17 13 353 382 248 296 223 166 270 213 385 75 328 324 255 286 136 118 215 238 242 322 8 153 122 299 5 110 129 423 54 140 263 404 92 219 107 269 91 212 400 48 35 325 19 300 369 316 410 102 228 80 355 182 25 186 337 388 336 180 15 49 274 391 +220 39 51 109 147 411 203 67 237 430 231 31 305 266 163 82 315 379 202 310 363 201 100 372 356 331 258 190 99 56 295 63 12 312 159 116 66 64 179 1 365 247 431 256 141 165 103 111 50 216 291 350 230 204 119 352 192 7 267 207 175 395 24 261 144 128 29 380 268 154 297 393 373 298 259 106 208 293 187 253 284 235 351 20 133 146 222 329 412 95 131 177 320 90 346 57 123 299 402 161 78 209 79 140 422 43 239 362 413 85 185 424 301 196 275 348 366 232 156 354 113 288 334 88 93 308 316 61 14 416 55 241 318 26 419 86 425 294 378 376 30 250 405 130 151 169 236 332 115 340 114 164 97 271 28 313 387 217 170 360 200 359 62 349 167 168 205 224 84 72 339 162 244 386 374 137 226 117 225 409 254 121 283 397 46 292 427 112 321 240 394 342 435 361 45 211 415 383 371 101 302 406 343 317 158 52 421 341 423 262 338 227 265 53 134 306 174 77 368 3 87 191 249 125 367 433 328 403 330 184 65 281 347 197 210 414 218 309 323 245 199 248 155 42 364 2 381 104 407 428 139 322 94 70 142 74 9 32 384 176 120 426 195 178 33 105 73 6 278 166 335 135 408 434 47 270 257 303 285 37 223 272 75 264 13 89 145 27 83 233 370 420 377 34 399 319 358 10 157 314 280 198 188 325 417 172 345 290 40 311 91 357 251 35 213 432 229 276 206 71 173 124 152 214 398 136 60 38 18 273 219 212 234 16 107 194 181 150 189 269 69 252 22 243 396 429 58 36 238 21 333 282 279 304 81 344 401 324 193 17 418 149 5 326 11 221 143 110 260 41 277 160 375 390 59 287 132 171 296 122 228 44 392 385 183 353 382 23 307 404 186 289 337 8 68 118 102 242 127 355 98 108 389 96 153 4 246 255 148 300 327 126 54 388 369 129 215 15 410 80 92 182 400 138 25 19 263 48 336 274 76 180 49 286 391 +237 63 203 141 31 202 1 163 39 386 165 315 411 116 133 259 154 64 82 220 123 159 288 192 147 239 164 331 187 253 430 334 250 144 26 362 67 101 258 349 51 312 119 179 305 99 121 409 161 247 52 338 376 291 201 78 207 244 256 70 117 379 310 352 261 295 50 350 351 356 14 412 93 340 128 188 113 346 95 130 297 106 185 204 298 85 230 221 365 318 7 86 190 170 431 293 393 79 169 197 309 302 103 90 109 209 378 308 84 77 360 56 134 66 359 195 422 329 330 232 191 272 65 205 69 276 235 265 231 281 156 427 94 284 222 214 131 46 317 196 267 20 236 229 257 97 366 240 368 262 61 184 216 125 403 420 217 414 363 397 306 345 419 208 342 245 28 275 421 198 343 266 114 183 218 348 294 357 280 344 58 361 62 71 264 53 373 341 146 23 354 115 367 30 34 254 88 73 43 323 303 233 282 279 224 127 314 16 112 139 332 151 124 160 60 384 395 37 177 311 424 105 12 413 9 120 155 175 383 252 178 223 301 372 307 428 268 243 339 380 381 206 405 417 136 140 227 435 158 172 57 111 145 194 100 406 10 3 364 415 304 162 434 149 425 143 326 333 321 241 45 335 150 271 249 320 407 433 200 226 234 283 394 225 319 189 285 40 273 29 135 398 278 313 137 213 296 167 168 426 242 181 289 377 176 174 2 110 416 418 292 347 387 8 270 104 290 432 83 21 287 13 401 353 382 199 173 6 322 33 55 396 72 27 59 38 24 374 358 17 44 74 260 138 370 118 408 47 157 399 36 316 87 89 371 355 299 325 126 193 211 429 238 389 166 171 423 75 96 402 186 324 32 210 108 153 269 48 142 251 35 152 215 22 263 212 98 328 132 68 129 228 54 375 277 25 92 410 300 91 219 182 148 18 42 255 388 336 404 390 81 248 246 385 15 327 5 102 286 122 76 49 19 337 369 41 80 11 274 400 392 391 4 107 180 +53 154 101 52 338 1 259 237 352 51 203 430 159 346 141 379 144 64 50 208 331 202 253 106 362 376 109 366 77 258 384 294 100 46 103 308 315 115 204 192 340 128 93 130 378 220 247 163 275 218 26 67 187 82 288 310 363 95 245 416 422 99 39 191 295 131 431 261 342 298 365 31 433 267 309 301 196 178 256 121 179 169 170 147 427 412 403 173 119 293 116 297 94 133 63 28 232 266 90 86 216 305 230 351 79 124 85 61 318 34 354 190 78 343 368 330 312 56 291 177 222 231 7 350 172 408 161 341 58 111 151 339 83 419 320 125 113 268 411 186 201 317 415 413 356 367 319 302 381 65 279 349 156 334 175 114 380 361 250 165 6 70 271 278 84 285 195 33 57 303 209 10 281 197 357 276 347 272 373 321 335 73 43 316 140 420 407 164 117 428 426 254 311 345 158 211 112 239 424 62 120 105 370 432 414 38 435 60 145 188 241 104 37 240 207 233 348 421 66 123 329 292 397 359 260 236 257 423 270 16 14 289 405 234 185 71 210 167 168 244 24 396 409 264 235 214 262 20 199 225 282 360 206 198 89 75 171 386 97 40 326 8 265 160 243 221 137 284 333 393 194 9 148 273 146 299 181 74 166 3 162 59 252 323 336 213 344 425 183 290 200 242 30 217 226 287 307 47 434 205 118 110 224 229 5 280 374 227 91 313 134 212 394 304 364 283 155 152 332 300 387 17 13 88 42 32 174 2 353 382 371 238 72 12 228 29 249 139 81 223 269 35 69 219 132 248 372 157 377 135 22 325 98 149 127 255 306 189 277 322 406 68 395 41 184 45 96 102 358 21 142 54 87 399 383 55 398 23 11 417 296 314 92 385 429 404 143 176 327 263 136 15 375 150 108 126 193 369 324 418 18 153 80 328 402 19 390 36 129 27 392 401 44 251 389 215 122 76 107 337 246 4 355 25 182 274 400 138 48 286 388 180 410 49 391 +31 113 93 63 237 356 348 61 64 115 116 407 101 50 253 295 192 94 435 52 351 250 167 168 147 119 412 334 14 306 163 331 413 131 123 1 201 389 159 341 216 350 78 203 202 130 365 16 386 239 349 45 242 294 20 359 367 360 373 257 220 187 82 430 376 308 161 381 154 169 170 166 345 340 309 405 374 261 267 90 256 332 67 137 422 34 28 344 2 120 310 307 291 230 343 333 297 361 26 158 128 85 6 125 143 339 9 258 234 415 7 99 83 260 70 95 346 65 92 311 207 30 145 398 312 77 281 305 114 175 266 315 121 320 265 37 329 139 272 354 342 79 244 259 22 226 193 221 213 411 298 197 190 27 347 208 235 21 178 179 71 13 431 164 319 352 394 162 338 142 318 420 268 368 383 247 399 12 117 393 191 231 384 106 185 73 36 10 425 188 402 151 38 97 275 358 66 56 29 264 140 149 313 375 280 86 177 127 217 43 299 150 198 273 317 232 227 47 287 196 254 421 204 357 144 278 303 290 252 110 429 126 270 397 124 321 370 262 424 335 363 184 233 218 109 39 276 44 199 165 241 378 323 240 141 327 427 366 122 432 296 51 111 293 284 282 134 248 326 380 212 403 156 304 395 105 379 58 434 408 214 385 100 3 377 251 182 225 364 194 153 57 48 238 362 136 87 219 33 108 328 5 23 133 222 330 155 68 72 387 174 69 62 409 301 40 314 118 205 416 146 324 8 172 183 249 390 60 243 11 59 372 419 428 152 181 271 426 80 46 32 24 406 84 277 245 433 209 160 138 189 388 302 195 176 49 401 246 42 135 112 55 292 41 279 300 171 414 396 173 74 132 206 283 103 17 96 215 337 236 53 369 129 98 353 382 285 269 322 229 355 157 81 255 288 88 325 400 274 417 18 200 289 186 404 423 25 104 316 223 148 410 228 371 107 75 224 76 211 263 286 418 54 102 91 391 210 19 336 4 35 392 89 180 15 +308 309 345 172 375 376 328 159 344 348 71 169 374 113 178 170 63 237 263 352 120 78 130 171 334 350 307 339 429 329 422 203 295 95 202 253 173 326 362 131 141 218 115 291 272 163 50 98 412 26 67 288 70 250 116 409 420 82 266 192 61 158 153 261 331 368 220 103 1 57 56 327 411 346 337 207 431 356 323 64 123 16 230 310 275 109 164 190 144 379 31 239 363 435 93 195 65 421 297 86 20 413 428 33 294 147 208 434 51 14 85 46 284 34 197 187 312 39 140 165 154 24 7 62 90 366 298 338 260 99 359 278 416 198 351 52 215 360 38 177 149 66 9 430 247 133 365 204 201 206 330 424 393 426 94 419 240 349 267 386 191 252 231 293 84 145 280 119 256 285 216 378 305 106 315 22 161 209 77 414 347 196 17 258 276 175 87 101 150 184 283 262 340 151 259 354 321 73 318 179 306 364 214 117 361 55 134 188 257 221 43 341 79 40 114 42 407 167 168 28 47 377 129 217 10 300 211 342 92 102 160 137 59 88 372 299 302 367 355 370 185 403 174 433 287 248 121 264 234 210 427 139 125 128 27 279 242 243 244 152 245 381 432 281 205 180 124 415 301 81 317 142 156 146 37 333 235 100 30 373 80 105 282 194 176 304 200 232 193 189 395 303 97 45 380 313 74 265 233 58 157 343 384 41 397 182 48 236 111 75 60 292 25 83 135 251 311 162 223 387 290 29 108 320 2 358 126 21 401 394 388 49 32 112 199 314 383 268 18 296 325 127 273 398 138 277 289 222 249 371 410 118 36 69 23 353 382 246 408 369 155 399 166 254 148 6 229 316 19 336 219 183 181 8 110 335 417 385 423 53 332 44 72 241 271 405 132 255 402 89 143 68 418 224 186 319 122 76 226 225 425 324 389 3 13 96 396 213 35 400 227 270 238 391 286 11 12 357 5 390 274 269 228 212 322 406 136 392 4 104 107 15 404 91 54 +147 220 39 237 259 141 203 288 28 293 202 50 411 346 192 31 247 121 156 1 201 305 159 350 56 294 298 209 196 362 232 230 103 187 258 204 381 378 85 312 99 244 79 267 64 63 253 261 363 190 151 235 20 218 430 77 61 82 379 366 116 352 161 256 239 386 26 95 163 128 372 217 100 266 119 331 140 134 412 70 154 236 295 72 7 422 318 216 179 90 86 413 191 117 245 66 365 356 317 351 384 51 43 310 205 177 291 111 109 114 46 78 185 208 123 416 349 285 332 297 115 370 315 334 164 338 133 14 144 105 207 329 214 106 167 168 221 303 268 240 40 421 330 62 340 301 65 409 131 354 420 262 84 368 30 403 125 319 308 194 343 57 279 316 304 335 280 323 139 195 32 199 250 361 373 170 348 272 376 414 176 367 387 60 419 169 264 45 292 197 231 55 93 88 302 347 229 275 157 434 165 113 34 314 424 47 10 374 271 130 67 200 224 415 149 101 284 428 188 175 2 393 276 313 211 341 431 146 145 33 135 299 155 281 380 87 234 254 137 178 97 52 426 249 339 243 383 265 425 120 16 345 364 142 252 83 223 289 395 278 427 162 260 158 6 251 94 12 432 206 166 112 309 306 71 210 59 58 174 398 73 198 359 282 333 37 433 320 397 287 273 3 184 435 222 360 307 399 89 21 358 69 277 22 270 353 382 321 150 9 124 172 160 44 257 290 394 355 127 233 325 407 283 344 406 53 328 241 24 342 193 38 402 417 126 296 110 173 118 322 36 226 132 405 42 377 324 74 248 269 91 410 96 75 143 181 183 136 227 336 104 215 225 148 212 242 423 189 408 8 13 138 371 108 390 27 213 186 401 41 92 418 311 129 246 153 152 171 396 385 48 81 357 388 404 23 122 300 25 238 326 98 228 429 80 68 327 76 255 375 17 102 18 337 5 35 274 219 29 389 11 263 54 369 182 19 286 400 4 15 107 392 49 391 180 +56 57 385 401 9 18 321 47 295 410 266 68 27 131 187 50 42 237 107 203 352 159 24 220 291 141 411 102 202 113 48 331 379 323 240 22 363 388 362 25 67 122 64 182 144 173 329 49 348 247 120 431 201 230 95 253 190 354 185 38 111 430 216 368 192 422 31 207 34 387 218 39 300 370 44 163 221 51 288 7 90 310 149 93 278 412 164 256 150 103 400 161 177 70 119 250 88 4 147 1 208 373 178 318 239 109 285 117 20 209 33 356 307 231 305 79 63 114 346 391 367 82 37 154 115 374 267 384 65 420 78 298 287 297 196 175 376 334 28 148 191 312 99 345 365 73 315 339 71 121 123 350 189 6 261 383 395 214 137 26 165 284 262 170 133 244 330 306 169 421 61 409 301 299 86 52 11 342 415 128 258 204 66 414 320 43 130 403 14 112 264 349 206 259 167 168 419 94 424 45 97 248 426 100 283 55 303 275 429 101 105 366 281 294 125 87 344 252 127 211 106 84 236 85 272 16 434 176 46 174 158 140 10 200 234 139 153 166 375 360 413 242 359 309 416 217 118 116 210 232 276 53 205 293 338 108 308 188 340 351 195 407 249 36 233 60 378 145 427 377 151 235 433 393 179 343 17 268 29 245 143 243 162 273 194 135 397 197 257 296 398 394 328 304 372 279 199 254 428 62 292 380 265 124 417 347 155 432 77 325 319 142 386 223 30 371 74 364 313 181 193 157 317 423 290 219 198 435 314 271 212 171 302 251 152 270 418 260 280 408 324 72 75 59 172 32 83 381 392 215 337 40 326 361 160 35 126 58 23 241 358 396 81 96 69 2 184 156 180 335 238 110 341 332 138 98 134 322 136 405 357 21 225 146 399 89 311 222 41 132 226 229 353 382 289 327 92 333 12 406 80 369 263 402 316 274 269 425 183 13 224 227 129 277 5 76 389 3 390 8 355 19 186 255 282 213 54 404 246 228 286 104 336 91 15 +268 270 269 271 316 237 331 259 190 267 247 233 1 346 161 39 367 114 20 16 239 77 334 46 289 430 194 291 159 276 9 378 90 365 295 47 362 95 170 308 169 121 38 163 298 144 191 254 379 323 87 203 354 141 202 57 305 192 187 139 73 66 131 258 309 28 278 243 288 218 352 204 376 22 318 147 405 425 128 71 31 351 52 60 420 10 342 312 40 230 154 130 208 279 411 178 64 86 412 177 34 311 338 103 207 310 133 220 301 79 106 174 189 196 349 119 102 59 413 188 363 321 307 344 26 240 206 257 45 63 116 304 137 70 24 261 292 112 313 407 156 264 153 216 117 384 120 266 340 99 332 415 50 297 293 14 51 317 232 345 333 366 93 172 43 115 427 262 260 273 171 358 113 78 197 151 426 127 303 227 58 201 350 341 429 69 179 235 253 82 32 361 129 256 294 214 175 326 101 166 6 348 234 403 290 249 150 410 56 380 48 368 213 182 423 222 145 370 335 343 173 149 398 431 306 105 176 185 123 287 359 152 215 195 320 433 364 285 424 360 108 394 339 110 236 241 284 62 27 385 155 84 282 181 373 255 280 100 97 244 414 134 142 94 217 199 162 272 68 157 211 416 74 245 37 61 212 5 148 395 200 225 53 33 198 183 381 210 353 382 30 275 283 399 408 315 371 126 248 357 44 296 25 193 41 387 75 428 125 138 435 132 136 96 252 158 65 164 263 42 85 118 72 242 124 92 98 67 356 422 219 55 404 209 140 432 111 274 347 228 281 401 135 329 265 88 223 421 393 238 390 434 419 2 337 336 389 314 13 146 372 8 231 250 226 186 122 21 229 327 7 109 388 322 355 330 386 328 396 402 35 143 325 324 89 81 383 397 165 80 417 377 160 221 409 302 251 374 205 83 167 168 286 17 224 406 11 76 91 418 104 299 49 277 375 36 184 12 3 391 319 15 54 246 369 392 29 19 400 300 180 4 18 107 23 +220 237 163 376 295 93 331 348 82 431 113 315 1 225 334 116 380 86 291 222 64 250 412 294 201 310 31 312 320 411 56 430 63 115 185 187 258 203 94 373 123 235 206 100 99 241 216 12 70 130 106 57 351 202 384 119 405 50 101 85 326 190 230 305 259 349 226 133 350 9 231 223 52 154 204 272 103 161 78 240 406 247 141 292 131 128 147 424 114 144 7 170 207 169 435 381 218 415 39 266 30 97 67 208 253 340 308 386 365 379 323 140 159 321 20 363 28 299 356 227 84 339 109 13 360 264 66 311 254 361 359 192 45 346 318 24 413 414 234 313 261 330 87 420 10 284 236 239 16 90 298 51 200 256 58 344 124 345 71 427 265 267 197 158 371 213 343 287 275 165 179 37 329 297 352 407 333 232 62 61 43 378 224 26 393 74 322 372 65 244 426 309 88 167 168 156 257 387 278 120 95 188 341 425 172 374 40 199 75 162 362 111 394 262 238 306 112 105 195 149 422 117 2 288 198 177 175 317 366 301 143 332 293 79 338 303 121 134 29 77 319 383 398 55 166 137 283 290 191 432 127 282 152 395 73 347 335 276 228 196 433 421 428 389 354 89 176 98 21 125 219 5 233 242 370 53 248 409 69 401 397 417 27 229 193 403 423 151 184 281 304 314 245 14 377 164 289 342 358 23 174 139 302 96 399 157 368 126 46 211 173 296 357 307 273 122 408 243 194 353 382 155 150 280 142 178 260 364 189 210 42 38 22 214 327 249 160 252 34 35 72 186 60 92 255 325 416 110 418 419 209 251 145 129 59 215 181 434 396 171 118 41 367 3 18 81 146 402 6 375 104 83 32 33 15 47 8 277 136 279 217 221 246 324 390 263 285 132 76 429 300 270 11 48 268 91 271 17 108 68 385 404 4 135 212 148 392 25 205 355 36 153 183 369 138 328 410 336 80 44 102 316 269 182 400 107 180 274 337 54 286 388 19 49 391 +39 141 288 237 362 331 220 67 51 393 310 31 61 64 147 103 203 99 256 419 346 192 430 258 247 350 154 201 231 159 202 82 112 305 63 109 1 253 411 259 294 217 26 244 315 298 119 90 79 352 204 235 232 196 156 318 312 106 28 128 216 116 218 100 163 185 297 412 30 381 187 239 161 114 261 165 372 95 379 230 413 356 191 121 50 151 292 317 111 190 395 295 293 52 209 301 267 366 245 179 363 378 7 144 416 236 29 34 340 177 384 181 427 78 343 433 349 303 266 101 170 313 97 250 333 167 168 20 130 361 58 62 14 125 169 123 208 207 124 257 291 364 368 77 342 403 354 72 140 332 397 302 420 152 66 162 367 365 85 113 223 164 199 60 56 110 316 386 306 347 284 233 351 330 84 200 272 33 249 40 409 240 426 304 376 415 243 194 157 32 329 428 46 131 289 93 421 320 117 264 422 262 222 226 338 265 214 373 86 319 374 359 105 42 225 323 360 115 89 229 273 88 53 425 197 38 206 43 133 12 280 59 47 37 432 414 254 339 10 139 57 380 145 55 195 341 308 158 370 221 290 70 268 406 383 146 104 423 276 188 424 407 260 345 299 283 71 45 94 371 2 160 186 234 241 9 431 178 6 357 252 358 278 198 246 398 387 344 405 73 166 285 69 399 211 334 275 137 16 149 136 74 135 127 224 193 142 155 394 434 417 348 271 251 435 324 22 172 277 210 335 132 314 385 353 382 75 184 87 24 322 91 35 134 212 120 408 270 205 213 309 183 227 13 296 242 281 326 174 282 377 23 173 148 238 321 279 21 287 118 311 68 108 255 44 418 176 150 396 429 410 65 143 83 48 27 96 8 3 171 325 129 122 307 269 36 175 189 402 17 126 328 138 215 300 219 389 355 25 390 182 375 5 401 18 248 76 41 263 102 327 153 228 54 98 81 337 11 80 92 15 392 404 388 369 19 49 400 336 286 4 274 107 391 180 +237 154 100 203 141 338 52 288 220 362 253 202 159 39 31 208 64 163 53 93 114 101 26 103 292 1 50 295 331 352 109 256 51 294 379 78 144 63 116 131 258 204 346 412 192 430 112 207 231 384 94 95 61 82 368 121 267 187 356 342 257 169 218 167 168 230 261 250 350 170 196 179 247 348 124 305 411 46 67 191 34 130 77 310 147 190 340 363 403 422 128 349 113 57 416 266 201 140 232 366 70 239 319 334 106 365 433 318 259 376 56 297 298 216 345 245 414 367 275 119 312 351 344 90 86 197 115 161 420 378 347 308 206 79 85 84 278 123 177 28 73 301 7 415 235 413 339 33 321 99 343 377 172 43 431 244 66 10 291 133 221 361 224 14 58 111 354 435 293 386 341 252 240 307 309 303 234 173 242 195 178 137 359 326 37 276 317 198 151 217 162 199 329 381 360 268 156 264 209 281 419 380 146 184 260 60 185 165 432 158 16 374 125 65 75 200 272 421 40 71 186 315 262 330 332 38 166 211 74 20 306 370 323 83 97 233 428 164 426 287 120 3 24 373 9 229 6 389 134 333 225 222 160 142 427 194 299 265 118 105 145 397 236 285 409 407 181 175 68 241 117 8 273 434 215 226 59 335 55 372 210 110 284 270 17 188 316 174 280 30 405 271 171 182 408 325 393 302 155 300 320 424 72 32 383 313 189 395 148 62 29 304 277 212 371 139 282 127 214 193 364 149 279 387 296 401 89 243 104 227 213 254 47 88 27 41 143 45 311 42 406 35 417 328 290 2 98 176 92 423 96 289 150 249 263 22 87 44 108 388 353 382 248 23 13 126 132 385 429 394 283 69 205 425 404 396 36 336 375 21 357 219 398 418 5 157 152 223 18 228 255 324 314 269 135 399 122 238 358 49 81 153 91 11 138 327 102 76 251 12 369 48 274 400 107 129 136 4 80 322 402 410 392 337 183 355 286 19 25 390 15 246 54 391 180 +431 284 315 283 424 329 103 308 237 81 309 64 411 39 220 354 331 258 291 180 144 141 369 179 65 51 116 310 109 170 247 204 414 201 130 305 288 173 430 169 190 99 298 239 253 192 349 119 106 20 159 334 63 275 26 1 426 356 340 70 256 360 67 362 363 217 261 82 78 413 376 249 31 133 359 250 294 203 222 295 50 205 115 297 318 163 196 147 164 165 161 352 193 90 350 156 79 351 46 187 123 117 172 7 272 188 420 154 61 131 232 378 427 233 367 235 73 56 372 177 71 134 346 174 146 208 202 317 128 175 248 171 216 425 306 422 14 9 57 101 244 191 55 88 267 312 230 419 12 301 218 225 293 142 380 211 97 84 197 240 423 236 416 32 259 113 10 194 209 245 345 254 387 40 185 140 394 321 365 195 157 178 412 86 45 428 138 386 158 405 125 311 379 341 339 381 28 227 304 95 93 66 223 118 368 366 58 226 243 87 74 210 409 77 330 273 262 206 287 167 168 434 296 52 307 151 276 292 358 361 121 421 198 403 60 241 207 338 224 266 2 320 432 393 326 36 289 302 145 34 355 314 407 433 374 323 353 382 22 43 279 16 149 160 21 282 231 342 139 104 371 399 322 124 112 264 397 59 281 150 75 343 94 415 435 265 199 313 214 398 136 290 89 335 370 62 42 406 257 38 221 120 347 3 280 37 13 401 85 384 303 252 219 27 234 127 137 328 316 348 33 189 69 260 395 333 96 30 228 238 263 278 184 344 213 402 135 98 166 200 327 24 72 181 383 114 176 229 5 162 111 47 299 429 364 53 110 390 129 152 29 35 373 408 100 417 108 6 332 18 102 357 396 126 285 377 148 23 91 300 212 392 80 418 186 319 143 155 8 242 385 83 400 105 183 336 246 132 92 255 153 251 375 268 41 404 389 54 277 271 17 324 76 215 25 325 122 68 15 48 270 337 4 44 107 182 274 388 269 11 410 19 286 49 391 +189 163 174 297 279 70 1 230 202 211 210 113 281 294 56 192 237 411 342 291 203 176 93 351 175 250 123 130 267 78 379 190 46 331 159 365 114 240 247 57 259 332 161 412 86 430 170 95 413 20 310 9 306 169 315 348 318 63 334 79 268 308 90 50 82 424 94 261 366 47 64 187 207 131 239 216 73 172 367 284 197 97 271 262 433 154 31 286 111 352 138 120 103 295 345 344 292 305 201 85 119 378 275 39 26 340 144 43 356 115 254 431 84 106 232 321 27 283 256 220 409 311 99 309 326 270 128 195 208 236 235 116 183 376 349 178 343 414 312 258 179 264 139 269 71 358 88 386 184 76 432 101 301 214 218 51 10 147 198 141 278 65 177 7 171 360 133 387 359 34 28 253 61 373 282 191 16 415 389 363 173 417 338 234 194 55 14 136 121 323 117 407 134 98 397 316 426 181 105 62 384 420 69 182 401 362 280 199 249 126 143 266 81 403 125 217 329 394 67 399 427 108 223 302 137 151 100 364 276 298 22 92 339 408 204 380 395 314 285 335 290 206 60 263 162 74 328 370 393 109 303 209 428 313 272 166 374 273 257 193 222 248 418 167 168 354 346 87 36 75 361 45 307 242 405 196 319 149 40 89 233 241 341 8 153 293 368 304 185 53 145 243 317 158 396 398 227 434 320 155 200 3 422 25 52 37 132 288 77 265 112 48 287 188 42 435 35 17 102 322 150 58 6 229 353 382 224 381 205 251 157 357 421 347 423 221 406 66 33 164 129 142 24 388 38 140 83 244 44 160 146 30 330 135 245 289 41 59 23 350 215 252 213 238 127 148 212 410 13 371 324 255 2 296 325 156 124 333 152 416 419 260 425 110 383 32 21 225 165 226 400 80 231 118 19 299 375 228 11 300 390 327 68 29 355 18 219 377 122 277 12 72 404 246 402 385 186 429 372 49 337 96 180 5 107 4 15 104 391 369 336 274 54 392 91 +237 202 203 231 51 159 39 52 93 154 253 82 64 109 163 411 220 1 67 63 306 208 131 331 50 230 196 310 242 31 338 124 295 412 113 356 239 101 422 130 94 144 261 78 201 266 140 348 133 267 301 26 103 319 56 294 430 420 433 379 305 298 7 250 187 256 291 206 207 318 247 362 115 141 232 431 190 147 403 192 197 36 376 46 169 308 235 346 384 42 363 340 416 100 70 125 65 366 350 352 95 167 168 334 170 312 90 73 119 339 173 234 116 351 99 349 184 32 177 55 330 57 365 367 79 166 165 114 378 275 209 123 117 354 258 281 191 14 262 61 217 178 414 84 198 309 259 12 142 368 372 112 164 297 175 85 276 20 260 347 374 86 272 240 434 419 288 156 415 218 161 257 118 345 302 377 145 326 29 185 421 278 307 284 245 77 221 413 204 71 409 97 135 179 329 37 172 285 359 106 62 315 321 120 34 268 428 137 252 395 426 188 361 10 432 370 216 332 344 128 158 303 28 360 199 264 194 386 280 299 40 47 195 282 435 200 424 343 151 9 393 16 193 211 417 33 383 160 304 364 293 98 381 121 342 279 287 66 6 30 111 273 162 283 317 157 174 397 148 380 58 83 139 205 59 341 233 210 212 249 60 132 215 271 375 405 373 74 313 146 110 408 38 248 127 43 2 335 87 311 265 320 41 316 189 407 105 171 92 325 296 427 236 134 277 21 270 214 418 44 45 323 8 387 75 155 176 96 358 22 108 24 241 394 396 53 399 243 357 143 254 314 244 425 149 371 289 17 104 68 398 328 290 182 81 353 382 300 102 69 72 401 404 238 292 385 181 126 138 27 152 222 327 76 226 18 333 269 153 263 3 255 88 423 150 89 369 219 213 429 227 251 224 54 5 336 229 406 322 388 136 186 183 49 402 324 91 122 390 223 80 410 391 48 337 11 35 23 225 355 389 129 13 25 246 400 107 19 286 4 274 180 228 392 15 +133 346 77 63 1 259 116 237 163 376 154 39 203 159 70 202 338 351 329 272 103 50 350 308 349 293 352 82 31 207 220 334 61 123 64 431 147 141 331 261 315 253 340 258 294 175 288 379 95 78 128 144 244 386 121 101 354 422 46 298 52 93 239 412 345 411 281 197 65 309 113 56 247 151 14 360 134 365 359 28 430 305 362 131 26 201 267 312 198 192 377 266 130 291 292 250 297 230 428 208 164 378 218 310 100 232 317 284 109 216 295 187 20 66 368 414 170 366 199 7 245 318 169 190 90 413 189 16 115 156 426 275 51 172 205 348 179 302 161 71 79 279 67 204 165 33 231 178 174 211 342 363 99 40 374 347 424 210 221 330 409 94 139 188 356 196 301 407 393 84 10 158 280 326 421 373 53 112 344 176 60 420 195 57 282 111 119 62 85 194 278 332 73 367 242 86 125 319 268 276 191 240 299 114 138 336 361 383 185 106 149 283 306 108 234 397 9 34 304 233 403 333 256 177 257 339 370 264 435 30 167 168 252 45 235 419 117 236 381 285 265 364 140 200 209 88 387 97 433 262 341 415 87 145 229 214 120 323 432 313 193 155 150 98 37 124 222 372 328 343 38 184 24 217 384 6 127 43 289 416 287 353 382 206 2 162 58 277 105 263 321 146 83 316 290 248 303 81 173 166 327 74 375 42 137 371 271 260 171 314 75 380 22 72 47 126 224 417 355 249 36 273 223 55 243 307 325 427 358 8 402 183 23 398 394 21 270 212 434 385 44 254 296 118 395 3 92 215 410 311 429 96 136 399 389 69 160 425 405 320 12 143 152 27 241 122 401 251 153 226 59 324 17 227 418 369 388 225 68 406 110 135 335 408 48 102 186 132 32 35 357 89 181 142 322 76 104 269 29 11 13 148 157 18 213 423 180 300 182 396 390 238 129 246 25 337 80 41 19 404 91 228 49 286 219 255 400 5 4 274 391 107 392 54 15 +202 82 203 106 237 331 312 64 163 50 427 412 119 159 302 380 430 227 165 113 99 311 222 305 220 141 295 208 88 258 97 379 101 93 405 190 70 187 144 51 236 250 298 131 52 256 291 63 86 359 315 109 350 78 134 338 154 85 334 431 61 297 1 247 253 360 56 409 308 116 239 241 238 130 411 229 309 376 351 386 423 94 204 151 217 356 310 420 103 173 381 225 39 179 294 261 384 345 362 320 95 136 259 115 348 207 254 417 192 71 346 428 213 117 330 89 175 226 414 288 352 67 31 133 177 79 275 114 35 146 191 322 284 104 13 183 367 415 155 363 161 73 354 57 201 123 26 344 128 5 230 178 285 90 53 232 272 121 65 422 124 335 216 267 197 223 228 403 218 196 329 43 266 185 318 343 164 432 357 418 170 147 340 12 137 140 169 378 174 28 234 321 198 434 66 342 365 333 283 307 118 240 407 188 231 100 326 244 339 408 166 58 195 276 72 425 74 91 206 125 135 282 184 9 281 341 349 158 193 77 262 374 416 46 435 424 75 62 143 6 10 235 264 120 156 211 14 210 111 24 255 157 33 279 366 172 233 314 278 245 249 377 413 242 433 368 224 69 20 313 293 23 406 40 260 139 84 68 162 214 205 325 105 280 361 426 34 421 7 15 194 317 176 219 372 323 37 364 383 59 387 252 30 3 304 299 373 287 301 171 167 168 328 306 248 292 303 98 290 319 257 401 55 395 209 243 273 300 393 41 148 296 265 60 16 145 429 112 44 149 370 92 2 110 87 32 397 17 353 382 160 108 268 38 189 419 221 396 127 142 371 347 22 215 152 332 181 289 29 212 182 47 199 150 83 126 8 375 153 27 96 45 42 138 200 102 54 327 277 316 81 48 21 271 11 263 398 404 337 122 25 270 129 186 394 286 76 385 336 18 402 19 36 324 132 358 369 400 399 49 251 392 246 355 410 388 180 389 274 269 391 107 80 390 4 +220 237 266 201 64 305 207 78 113 231 356 39 137 147 51 291 208 31 166 310 177 159 42 331 374 295 312 163 190 130 203 299 239 167 168 350 348 67 99 192 373 74 86 244 119 95 431 352 115 100 216 430 131 24 368 82 354 267 235 85 284 63 123 204 379 50 329 109 202 141 75 71 43 247 165 362 196 248 61 179 256 116 178 435 161 334 363 212 7 253 411 56 320 73 185 90 70 142 290 301 103 93 26 2 324 205 125 240 319 413 169 318 140 133 422 375 408 157 164 308 170 199 12 261 32 330 45 365 112 283 66 414 10 162 342 346 200 128 372 242 258 158 68 37 120 20 117 57 339 347 146 47 144 341 298 421 313 415 191 376 30 14 403 97 52 395 381 377 251 156 424 72 1 145 351 412 111 154 380 106 275 360 309 34 294 278 94 349 9 359 272 384 87 288 28 21 367 297 79 340 427 366 327 38 206 41 22 250 114 325 262 315 321 335 230 402 209 304 416 383 77 232 55 195 432 394 397 188 29 405 429 153 343 345 407 6 425 420 175 33 378 333 193 280 172 361 16 59 44 419 273 65 234 370 426 434 428 393 293 306 173 241 326 337 218 281 249 155 69 121 110 386 303 385 317 83 184 3 254 217 101 245 433 243 176 5 371 398 387 226 399 118 276 27 328 174 224 84 88 124 314 221 287 46 300 225 252 332 236 189 274 62 187 151 323 149 260 139 53 171 265 259 338 257 316 8 127 358 211 233 357 264 58 197 417 307 227 194 369 268 181 150 60 152 289 406 105 214 353 382 344 219 210 11 35 132 96 302 40 238 255 285 104 409 13 222 296 277 160 213 355 81 89 134 279 404 364 292 215 198 263 396 148 311 182 229 91 143 418 126 122 390 270 271 135 322 388 391 129 389 36 17 102 49 282 18 410 186 183 392 54 423 23 401 228 223 108 98 92 48 136 336 80 76 269 180 19 138 246 107 286 25 400 4 15 +259 350 237 141 346 258 288 39 298 331 50 351 159 202 362 220 77 292 61 147 203 163 192 103 334 175 312 116 1 151 247 261 216 293 204 63 267 376 218 154 253 28 109 82 352 379 308 46 56 115 51 133 64 272 26 378 131 294 430 85 428 365 128 190 366 187 295 310 342 211 121 156 210 329 66 381 79 70 281 363 297 100 276 31 191 349 420 174 78 384 196 95 140 338 284 114 130 93 113 208 239 177 144 266 57 164 99 431 86 52 170 318 412 173 161 169 240 373 179 309 348 422 234 416 289 411 244 20 90 201 117 158 250 40 268 189 345 413 235 72 233 167 168 380 101 354 333 332 105 368 279 305 119 367 106 230 424 176 207 264 34 262 316 356 209 84 67 217 185 123 33 112 134 386 222 125 426 280 361 165 205 315 256 14 71 340 283 38 330 7 178 73 65 341 421 270 387 307 145 231 188 245 372 275 232 271 200 278 317 172 195 58 197 214 339 291 323 414 88 94 344 111 311 320 303 254 60 435 206 343 53 304 374 243 407 10 359 347 290 236 370 146 433 302 198 59 425 16 69 199 360 162 37 403 377 301 44 328 137 43 257 98 273 252 409 92 139 24 285 226 405 299 184 415 194 87 326 124 241 22 9 83 166 432 383 335 321 249 221 160 242 62 265 225 120 282 148 223 434 215 364 47 6 319 263 389 127 108 423 229 410 325 45 277 306 227 427 213 32 97 313 353 382 406 260 48 118 171 269 30 13 89 104 2 314 155 287 157 102 81 408 136 149 300 224 135 401 68 42 12 322 375 193 110 355 23 74 142 138 397 419 8 27 122 212 327 29 75 393 25 251 55 248 126 91 5 219 400 183 153 41 21 150 336 398 395 399 385 76 96 3 358 286 228 371 296 143 35 181 255 132 186 394 402 17 429 238 152 417 129 182 404 357 18 369 396 324 11 80 36 390 388 418 15 274 19 337 107 4 49 246 392 391 180 54 +202 147 203 82 409 163 302 50 136 159 312 56 237 63 379 297 373 259 113 220 305 178 134 285 85 363 111 294 412 109 261 267 365 187 346 411 308 279 141 348 7 99 88 356 229 67 205 103 86 119 374 78 183 295 430 207 376 310 1 173 131 192 165 66 151 135 266 334 128 155 106 164 314 230 28 23 309 264 291 362 350 70 298 61 31 218 188 43 281 64 328 214 325 288 258 57 338 179 293 315 176 422 272 201 406 339 51 256 190 352 351 361 93 44 366 77 169 26 284 175 170 410 208 95 123 39 9 240 133 265 280 116 144 209 69 331 330 236 239 247 172 101 161 250 174 417 211 262 275 349 130 14 121 76 24 210 253 216 184 415 97 114 386 154 341 368 420 345 375 34 30 283 329 323 52 94 224 380 427 424 162 79 65 320 140 177 354 222 381 223 145 340 251 48 20 196 33 434 429 47 200 407 84 431 90 102 115 405 416 197 342 401 235 25 435 378 17 403 204 387 62 27 3 72 318 146 22 11 185 428 125 137 343 46 306 226 234 16 38 421 254 120 73 278 217 89 55 311 198 307 98 225 6 268 117 157 413 105 423 414 393 143 153 418 167 168 300 191 364 372 139 189 227 13 367 245 241 29 206 360 260 359 313 193 276 138 244 100 92 388 426 231 122 377 149 384 335 383 2 303 344 171 42 156 273 150 282 12 74 370 228 160 10 221 299 37 321 419 60 215 355 371 248 232 332 80 395 213 326 322 75 71 400 18 317 271 433 158 83 194 53 40 242 238 195 425 87 166 347 21 112 252 81 397 5 257 199 304 287 243 36 432 68 353 382 402 394 319 316 219 129 152 104 249 132 35 385 124 408 301 389 8 398 270 324 337 255 290 108 336 263 277 45 327 118 274 296 182 91 142 292 357 59 269 110 19 391 32 58 126 399 289 148 358 233 96 246 286 127 41 396 212 369 49 333 181 107 404 390 186 15 4 54 180 392 +144 141 376 163 31 295 39 93 95 203 64 379 294 331 1 237 159 164 412 220 192 147 259 362 128 113 411 207 26 363 202 195 57 368 133 352 56 288 315 338 216 340 346 90 413 334 267 349 103 50 258 61 165 350 100 332 261 239 94 28 312 169 293 329 291 131 424 154 170 201 78 161 116 123 230 63 205 82 397 190 67 69 51 265 130 361 232 185 374 204 99 71 177 256 384 247 381 208 348 266 393 373 187 409 264 101 415 121 306 435 298 297 85 214 52 231 211 209 77 378 79 199 318 262 191 326 20 84 431 188 275 137 420 308 278 301 110 200 406 70 125 175 178 156 111 416 210 24 366 386 7 145 253 62 160 37 251 86 105 218 345 115 250 305 276 10 321 430 38 184 351 403 109 9 341 342 339 166 310 151 40 14 354 330 172 343 304 302 432 197 240 419 206 119 149 372 309 284 235 303 268 221 42 60 43 367 183 196 155 375 34 66 290 162 398 333 45 371 344 387 394 414 46 65 272 328 365 134 106 317 280 88 370 347 179 244 282 139 167 168 273 98 112 421 383 402 426 124 33 422 16 117 323 319 360 114 120 194 399 8 30 236 53 217 356 299 359 158 47 150 292 417 2 358 23 181 279 176 289 87 229 198 249 364 257 189 314 248 243 73 174 75 281 74 171 36 283 433 327 320 277 287 233 285 245 41 32 127 22 377 140 142 58 271 427 428 242 173 222 6 396 234 132 55 313 401 407 223 254 252 157 324 380 296 59 325 405 418 126 353 382 270 260 390 143 97 215 146 21 224 89 425 81 355 395 153 307 118 96 193 3 385 389 148 92 136 263 186 27 17 269 429 410 241 48 336 29 72 225 316 226 83 35 300 135 44 219 152 434 357 122 213 138 13 335 68 129 25 102 108 423 337 11 408 311 212 286 404 227 180 12 322 104 246 18 255 19 182 369 388 76 80 391 400 274 238 5 91 228 107 49 4 54 392 15 +163 1 376 159 128 50 63 133 338 202 134 265 147 20 56 70 203 95 78 154 259 115 197 207 101 272 264 231 346 305 93 412 411 77 310 237 230 334 189 198 340 192 116 363 430 348 151 352 345 379 98 44 294 113 282 24 195 349 87 61 373 367 365 331 131 279 285 190 86 276 405 297 281 82 293 141 398 8 220 103 7 253 130 71 52 161 409 94 34 393 123 268 144 362 308 67 351 176 278 332 121 406 358 341 174 69 291 267 208 386 39 318 31 114 92 347 136 258 26 239 178 240 415 261 368 210 344 323 275 428 250 394 234 64 57 211 175 359 410 28 109 360 295 266 399 378 435 9 309 90 235 284 312 315 247 385 356 325 218 397 431 45 417 328 33 374 14 419 10 139 170 188 152 420 422 51 298 173 99 169 143 313 370 292 167 168 100 377 256 329 216 23 119 85 324 326 172 215 288 407 302 43 403 46 236 47 414 319 339 271 66 242 97 283 187 201 301 108 433 257 307 194 106 79 401 273 336 137 424 418 75 361 252 73 138 200 191 260 387 366 62 270 330 6 381 16 280 112 111 164 21 40 254 221 246 65 38 88 193 389 2 120 217 53 364 342 129 48 251 196 413 214 74 83 55 350 390 155 384 125 166 60 183 371 375 232 421 311 105 354 153 68 206 209 140 145 150 335 81 306 84 132 30 223 383 177 321 353 382 182 199 396 29 229 395 212 277 205 165 269 416 427 126 76 135 204 304 162 37 245 262 149 402 316 25 17 314 179 263 303 184 22 156 432 124 244 343 426 222 224 158 243 434 287 233 160 117 89 429 3 248 372 42 227 355 380 408 357 171 181 91 11 274 80 392 317 27 225 286 327 96 320 148 289 388 35 404 255 102 58 118 300 185 322 127 425 369 72 228 146 296 299 186 104 333 157 290 18 13 249 241 400 142 219 180 36 213 59 110 226 122 423 32 5 19 49 41 391 12 238 337 4 54 15 107 +200 31 192 141 64 26 56 362 420 356 237 221 266 209 82 117 330 368 131 14 63 319 163 164 416 261 350 147 220 257 411 57 276 295 67 341 167 168 250 159 207 39 306 318 123 430 66 239 1 288 253 61 308 59 177 162 334 90 161 196 303 111 109 190 101 348 384 349 110 9 206 113 85 431 363 434 140 352 309 125 371 185 262 321 20 331 79 373 216 298 191 422 165 169 38 201 78 342 208 160 51 403 264 37 205 265 275 119 203 83 144 95 217 258 93 377 218 202 36 175 435 256 267 170 339 62 45 166 310 149 145 231 29 16 243 379 44 187 52 80 304 133 173 7 50 94 329 178 346 307 184 366 273 312 130 121 383 6 291 2 240 112 22 158 402 364 150 118 365 351 70 235 409 278 73 174 172 99 424 376 197 367 279 199 17 48 10 27 280 247 105 244 115 387 395 179 21 233 315 60 290 127 176 148 361 103 214 287 68 65 343 317 230 106 297 128 401 232 399 272 372 413 156 116 222 55 132 198 305 183 34 42 92 227 325 386 320 146 204 139 137 281 360 23 47 301 46 285 426 354 114 252 428 249 193 189 359 358 393 421 8 188 394 374 100 369 340 433 282 427 124 323 248 30 370 388 84 299 296 28 410 53 412 181 241 408 294 251 353 382 88 357 154 215 381 86 157 87 142 71 314 380 219 98 415 72 195 43 335 108 69 313 293 333 414 284 398 311 97 102 122 33 378 25 429 226 289 120 260 171 254 432 385 332 355 419 186 242 152 151 134 326 18 58 328 19 32 345 194 302 397 229 405 81 259 35 300 396 375 41 211 347 234 406 344 76 212 283 425 182 400 13 417 223 268 390 49 77 255 24 210 12 274 126 138 225 96 327 263 245 277 143 337 418 213 224 407 54 292 404 423 324 104 153 3 135 136 5 40 389 391 107 74 155 180 11 4 238 316 236 286 228 75 338 246 89 322 271 91 336 270 129 269 15 392 +220 203 163 39 430 237 331 64 1 31 202 56 93 201 411 114 190 95 305 295 141 112 159 230 318 207 179 113 51 63 352 101 310 161 338 94 128 154 356 131 297 247 53 192 121 116 169 315 197 253 170 379 195 52 123 119 187 115 422 367 109 431 130 204 162 216 82 78 258 67 239 362 350 266 250 147 288 257 359 376 433 339 232 281 360 412 47 389 90 208 144 242 26 235 275 348 196 111 50 231 84 57 100 181 217 384 61 403 306 124 254 244 62 24 386 198 301 261 311 278 405 378 373 20 79 308 211 177 165 349 361 218 191 43 291 99 167 168 133 419 268 34 363 224 240 42 341 166 397 210 413 366 354 340 294 264 420 227 312 222 343 365 407 38 221 120 44 334 70 185 347 256 435 8 103 68 146 271 416 332 330 421 137 342 184 270 262 74 75 265 28 393 364 344 106 321 424 319 164 206 46 316 351 14 174 298 380 427 307 69 182 371 282 86 272 7 233 259 66 395 309 9 126 245 175 55 209 425 428 97 345 267 273 276 71 383 178 303 117 125 36 35 3 225 73 323 134 158 370 372 374 172 29 139 252 236 408 234 409 317 132 326 284 368 432 292 415 414 12 60 142 280 406 396 188 88 173 388 322 434 385 199 160 279 304 194 320 241 226 394 156 65 324 269 401 381 387 102 249 108 6 417 37 58 358 313 83 85 72 399 213 329 398 30 423 32 299 140 40 17 13 110 105 212 293 59 143 27 10 193 176 45 16 228 357 87 229 260 77 418 151 285 157 200 251 33 89 22 118 429 145 171 248 136 283 325 426 290 21 189 155 23 346 223 333 238 243 152 81 353 382 219 18 335 287 150 98 2 302 296 215 186 92 41 214 127 337 149 328 104 153 107 314 377 375 49 205 5 135 122 19 80 277 129 148 410 274 404 255 15 402 263 300 96 183 138 289 369 11 76 392 336 327 390 355 4 91 246 48 286 391 400 25 54 180 +220 39 237 430 114 203 163 51 231 331 266 31 196 379 43 411 141 372 356 352 67 1 247 190 253 362 109 301 202 159 305 100 179 103 201 112 24 64 161 154 433 318 131 208 310 288 63 431 42 140 90 376 297 130 170 169 167 168 395 111 119 363 144 230 78 84 82 261 403 256 56 146 348 147 232 350 192 26 95 422 128 384 308 416 354 86 295 200 239 7 240 413 321 50 66 315 142 224 359 349 235 258 14 133 57 435 360 412 306 380 294 53 334 47 330 278 116 207 120 93 46 373 191 79 181 365 434 397 367 338 209 291 323 275 426 312 187 298 204 3 366 195 293 339 268 177 370 123 121 421 303 341 52 414 316 267 206 284 85 378 137 20 317 113 319 99 29 409 34 216 165 361 368 32 218 115 9 309 415 346 428 252 60 393 257 424 117 186 217 74 432 73 342 419 172 394 347 158 101 61 281 28 292 427 197 132 75 241 340 351 10 166 211 157 68 83 173 77 371 38 125 233 106 221 71 244 151 283 420 262 271 329 194 55 326 386 387 374 259 65 62 162 8 185 285 12 155 124 33 199 245 175 276 97 178 273 280 302 210 94 164 250 401 396 41 264 16 272 345 37 383 260 299 156 385 254 270 236 30 406 174 40 313 249 45 72 171 18 59 88 188 405 176 222 160 87 251 184 358 145 265 407 135 248 344 6 35 198 325 381 377 398 353 382 307 212 332 229 304 343 126 105 404 36 335 282 287 193 110 357 107 364 214 139 243 417 102 11 225 70 69 429 143 242 269 296 58 399 408 314 27 234 324 2 81 118 44 182 388 205 150 279 22 300 226 98 219 148 418 17 375 149 134 423 215 96 189 127 21 425 227 183 327 277 4 89 389 311 238 152 320 290 138 23 289 213 153 136 274 13 337 322 108 328 333 336 129 5 122 49 263 223 392 390 355 369 410 80 104 19 255 228 402 246 54 76 92 25 180 400 91 48 286 391 15 +216 411 163 230 365 384 95 56 207 1 367 192 159 237 93 264 291 305 203 61 79 202 247 297 190 161 78 210 352 362 28 112 201 141 131 211 170 70 294 169 430 57 318 189 174 128 271 113 90 310 9 121 240 268 239 71 220 295 197 232 63 431 195 370 50 47 348 413 144 73 123 208 64 86 139 34 120 20 114 31 340 284 378 250 94 270 116 332 330 26 259 181 74 366 412 321 147 234 275 176 99 97 101 115 218 242 75 282 279 166 46 424 60 257 103 130 344 214 276 311 235 338 187 27 345 308 217 407 356 379 258 84 55 236 198 288 167 168 269 267 309 265 363 281 316 191 283 253 256 351 254 206 334 43 301 422 306 272 194 119 381 175 347 401 177 432 182 262 137 386 233 82 153 178 313 248 376 323 39 173 196 435 373 360 315 359 342 106 81 185 326 433 92 415 16 172 273 341 134 8 151 98 343 100 199 420 204 421 261 304 83 53 303 105 132 397 244 126 319 331 179 40 140 184 193 69 142 408 22 361 350 405 154 62 307 118 292 349 266 278 243 108 427 7 51 387 143 252 414 158 389 160 312 37 380 374 222 249 406 251 136 371 129 339 149 59 221 419 188 111 14 317 212 200 171 428 223 85 324 328 150 409 36 354 24 209 66 52 227 87 388 125 164 353 382 215 320 298 241 32 346 426 289 285 58 434 238 162 10 364 45 152 88 156 38 280 89 245 67 145 109 228 17 403 329 117 219 287 65 133 423 358 42 337 385 393 68 110 102 80 286 429 368 335 138 293 375 2 417 77 124 399 76 260 290 296 96 383 21 322 410 299 394 333 127 33 30 418 377 355 48 213 186 155 325 13 41 18 6 224 157 425 3 19 35 225 25 44 314 277 231 229 416 395 246 400 135 402 226 398 302 263 255 165 23 146 180 274 183 327 372 205 29 72 104 148 49 357 404 5 396 300 369 122 4 15 107 11 12 91 390 391 392 336 54 +67 310 231 393 51 109 63 220 202 7 203 323 419 86 395 152 99 237 82 430 159 119 305 29 311 165 106 144 190 97 295 30 256 39 363 356 43 85 313 130 405 20 141 113 246 52 320 230 362 50 334 291 331 427 253 412 415 266 70 365 34 154 147 255 379 208 338 236 101 345 103 12 179 64 374 380 163 312 294 352 420 285 135 140 240 288 1 409 192 201 302 346 129 259 222 235 216 105 146 376 157 95 9 206 348 93 31 131 227 89 218 261 301 411 78 434 207 297 423 347 161 384 254 57 123 26 284 275 298 417 44 164 187 247 87 77 239 178 225 272 322 90 28 56 250 351 267 72 278 170 169 422 116 115 416 315 241 367 137 191 344 368 71 357 238 234 24 173 264 283 335 142 226 418 293 158 372 308 128 176 223 197 61 177 196 366 224 281 258 136 204 188 151 318 174 33 10 16 349 47 342 396 79 98 217 53 40 133 350 167 168 94 112 306 381 35 46 5 134 375 257 328 84 185 198 37 219 360 242 359 212 214 213 88 378 74 265 32 73 339 124 268 330 260 329 195 102 309 143 364 413 55 100 280 13 262 66 394 175 398 221 340 232 425 433 209 45 354 326 279 228 42 189 172 62 83 414 435 121 370 183 22 321 407 69 3 65 211 210 377 282 38 307 193 276 319 373 332 421 244 426 6 252 324 386 233 68 156 117 273 428 314 397 245 432 194 429 292 403 371 155 14 361 36 184 138 341 408 410 104 48 200 111 54 114 139 327 120 153 401 75 431 299 25 125 91 145 229 149 60 243 160 166 303 162 387 96 171 251 343 92 383 58 108 317 150 424 199 406 18 15 271 287 148 353 382 59 249 118 392 358 27 215 205 333 316 289 186 248 132 290 2 270 277 304 23 399 300 385 325 126 182 21 181 41 17 404 80 127 76 263 122 11 402 296 110 8 336 81 390 286 337 389 388 400 4 49 355 274 391 269 369 107 180 19 +207 397 407 95 360 359 239 75 203 159 74 163 352 31 291 324 216 195 244 170 169 202 137 131 113 237 64 141 208 334 220 376 78 308 52 338 412 349 63 67 309 295 116 431 190 197 350 331 212 1 103 130 71 305 294 340 348 411 384 368 293 253 39 101 56 218 9 50 198 61 362 297 154 57 178 114 90 430 82 123 266 379 413 93 367 345 120 192 161 260 166 422 288 133 261 258 144 115 386 70 201 187 250 28 275 242 370 375 46 172 268 329 267 247 230 316 374 278 318 20 234 24 415 26 99 34 351 231 128 189 248 346 109 281 164 196 284 356 272 259 177 210 51 16 365 373 171 211 310 40 271 77 245 306 124 378 66 420 354 264 165 421 119 43 344 188 339 301 73 433 330 106 299 361 321 100 233 97 240 232 62 312 147 298 79 134 121 60 193 175 319 276 393 111 7 270 191 173 112 315 262 221 326 427 194 86 55 385 328 414 377 47 363 435 366 342 341 53 6 332 304 118 151 282 84 149 33 409 426 424 65 395 257 263 153 29 429 94 252 254 279 428 283 251 265 381 179 347 45 162 184 236 285 416 14 287 394 408 323 117 398 280 27 209 273 292 140 206 199 36 42 167 168 17 317 434 215 290 383 204 10 185 256 249 380 139 343 336 150 68 160 307 156 353 382 235 98 337 243 214 358 320 132 37 357 8 158 419 87 59 217 396 142 417 38 405 85 88 303 81 69 387 403 327 432 205 22 23 313 44 125 241 399 222 200 145 371 364 146 406 182 296 302 388 418 35 19 126 83 219 11 127 174 155 30 72 372 333 89 225 108 325 401 105 122 180 183 76 129 2 143 213 58 269 238 181 32 322 135 176 335 224 102 223 13 3 277 423 314 226 148 355 21 18 425 229 410 389 400 157 92 300 96 41 110 49 80 289 369 136 274 227 152 402 12 392 390 138 404 48 5 311 107 228 186 4 104 255 54 91 246 25 391 286 15 +291 330 78 237 70 163 31 345 319 294 295 230 64 380 351 241 169 95 240 26 1 344 20 170 50 365 113 356 9 63 93 265 159 411 192 172 312 253 131 308 61 30 86 82 114 56 65 66 73 130 373 161 201 371 74 250 75 216 321 235 57 85 106 309 348 431 420 310 187 190 239 275 360 367 123 281 430 257 140 71 111 341 101 254 334 374 315 37 151 435 429 153 197 323 276 88 97 256 14 141 320 2 362 413 98 359 318 217 162 27 313 306 368 208 234 305 261 129 167 168 363 116 393 268 307 16 297 90 83 383 264 218 207 272 424 422 206 220 69 92 198 349 195 99 185 223 178 139 143 94 376 67 280 303 21 137 193 407 188 53 115 171 87 266 22 346 10 105 202 222 100 175 375 366 80 412 76 44 18 352 282 17 236 388 354 314 173 45 120 79 184 397 203 287 33 284 109 405 379 158 43 327 370 326 331 47 55 7 364 119 177 427 339 415 160 147 361 142 174 225 398 387 258 24 262 311 152 288 428 292 432 401 179 414 227 149 48 23 29 416 402 136 325 242 12 389 125 293 433 229 409 138 46 233 358 244 221 394 191 166 399 246 52 144 157 273 145 189 182 267 25 103 278 39 127 232 342 34 200 259 13 62 301 226 252 238 337 283 38 176 84 385 133 335 214 128 183 117 194 150 290 219 248 384 408 426 403 347 343 377 77 340 378 279 249 329 316 410 156 255 212 108 68 417 28 419 155 6 406 196 338 304 328 434 400 247 381 260 421 89 243 36 271 164 317 40 298 112 270 231 121 215 299 181 154 211 296 3 386 285 322 60 350 251 8 263 302 132 423 204 199 134 210 135 418 228 122 333 124 395 186 5 224 213 353 382 49 41 404 332 209 289 324 51 42 118 300 372 390 81 165 425 58 277 146 126 336 205 59 15 355 72 102 11 269 357 107 32 286 396 4 245 96 110 274 148 35 104 369 391 19 91 392 180 54 +220 430 305 310 119 357 237 64 31 104 315 427 99 201 306 331 51 106 97 113 295 130 52 411 161 236 384 334 39 82 165 368 393 141 50 291 352 381 67 425 254 101 405 350 12 203 356 380 179 322 318 90 147 204 297 222 93 231 123 258 238 128 26 154 124 159 187 216 94 239 256 227 202 253 163 247 133 144 419 91 34 225 86 63 190 412 226 177 1 169 339 95 170 241 208 56 363 196 115 217 373 240 320 78 85 89 244 230 232 192 62 349 218 28 335 379 348 275 112 367 30 103 250 378 131 207 79 330 362 61 342 109 395 340 70 116 288 312 235 406 397 54 185 261 413 360 137 206 191 359 266 366 284 120 424 329 84 43 396 213 386 431 88 242 121 304 117 233 267 166 195 338 36 347 7 317 157 125 14 351 376 194 42 20 308 420 73 301 387 414 364 421 422 146 423 58 262 298 53 394 13 37 341 417 10 319 5 228 29 313 415 114 370 343 433 59 432 100 345 278 158 365 273 197 181 199 167 168 283 374 272 302 162 164 9 209 309 354 69 188 434 74 156 346 35 294 46 57 223 38 435 45 293 252 264 409 332 333 142 249 60 428 398 55 200 110 234 24 224 47 221 416 126 383 229 16 311 371 276 32 403 418 361 139 281 344 172 265 259 66 111 287 407 219 65 198 303 40 184 245 243 118 155 257 140 105 3 280 145 299 321 87 72 255 426 353 382 372 127 160 358 193 326 135 314 246 22 214 75 212 285 71 399 260 385 149 21 290 307 408 2 173 282 296 151 143 323 292 77 41 248 132 178 23 182 171 33 152 150 389 27 15 8 6 324 96 375 44 186 404 17 268 271 289 279 316 148 81 92 108 68 327 211 183 429 210 83 401 175 48 174 189 136 134 392 390 98 377 270 129 251 122 205 325 215 176 388 402 153 25 18 263 277 76 369 11 49 102 337 19 269 300 274 138 286 410 328 355 107 80 400 4 336 180 391 +116 360 359 272 93 308 70 348 237 198 63 295 356 113 197 428 82 239 163 94 131 386 50 123 220 202 334 92 377 31 207 412 351 282 346 345 64 309 159 250 411 134 203 234 175 312 275 133 261 172 253 56 184 291 281 340 78 147 1 215 208 115 414 230 33 130 167 168 420 169 150 26 349 170 100 9 139 71 350 435 65 294 114 344 86 297 374 431 190 16 376 97 321 101 141 14 140 95 201 189 144 331 339 85 379 20 57 193 328 310 341 266 242 216 373 192 185 77 284 128 235 422 178 231 73 108 305 66 256 103 354 99 240 46 413 298 211 293 279 258 158 218 151 149 265 352 319 55 280 306 424 154 210 338 262 409 257 120 61 247 106 259 187 429 179 109 267 62 76 343 407 166 375 177 362 363 119 434 45 381 90 301 430 318 248 368 156 307 287 161 52 209 278 10 191 88 260 264 37 39 311 28 364 417 288 361 302 137 217 221 79 329 421 378 380 415 332 98 162 171 367 117 127 74 83 7 283 111 402 173 383 174 313 317 87 232 365 2 292 155 205 290 30 105 43 51 387 164 320 263 326 176 389 145 241 21 204 67 40 244 426 125 296 194 330 327 72 276 81 199 366 188 118 315 347 126 358 333 371 183 335 136 75 8 325 323 353 382 299 303 394 252 196 384 24 405 222 146 153 195 68 38 69 403 433 233 314 418 285 206 238 12 229 372 243 370 355 214 245 416 142 6 200 398 268 432 399 337 236 227 143 138 121 304 419 3 110 213 124 408 254 395 84 17 427 60 34 249 58 342 273 129 44 289 397 32 226 5 277 122 165 160 251 224 369 22 132 42 13 270 393 59 157 425 406 41 11 152 36 388 47 27 219 80 271 390 89 225 180 181 23 255 182 135 29 357 423 404 96 316 48 148 385 223 396 186 336 49 322 112 102 104 228 35 324 53 269 410 91 300 25 401 19 246 212 391 274 4 286 400 18 392 54 15 107 +237 350 354 61 113 39 295 131 294 234 50 187 374 331 208 202 115 298 291 109 203 220 64 71 207 130 381 159 82 272 95 57 201 63 70 247 147 78 218 334 352 266 312 348 141 31 346 33 88 56 288 250 1 258 430 368 163 412 42 363 239 253 261 28 51 22 345 411 106 230 310 308 301 356 236 326 116 349 375 428 66 85 192 359 379 119 178 360 216 140 20 47 190 362 122 351 204 422 244 52 327 259 120 268 161 26 77 93 103 376 377 267 173 144 99 367 67 240 329 275 191 309 257 133 25 100 245 365 48 297 435 305 193 341 86 134 321 372 299 196 121 420 197 128 9 285 151 343 414 232 271 330 370 97 38 79 340 198 195 94 101 256 320 278 307 72 378 179 380 167 168 386 413 384 264 318 7 177 427 10 111 142 102 235 114 338 431 43 339 419 206 154 407 221 347 90 156 284 146 242 366 315 290 123 302 27 429 117 416 254 373 164 344 46 328 139 185 137 287 172 73 364 233 426 37 166 124 231 304 270 280 260 16 62 6 313 89 74 410 165 65 12 105 40 41 30 158 316 169 75 157 432 306 281 391 421 175 311 279 415 170 108 69 176 388 145 199 87 125 174 283 84 14 155 296 276 262 409 55 2 293 289 32 24 59 433 361 265 83 188 149 205 136 217 112 303 200 162 209 319 127 241 332 333 68 403 44 424 335 34 417 60 300 383 118 184 92 323 248 126 238 18 45 150 21 342 337 387 401 353 382 317 425 153 227 53 8 277 405 194 222 243 214 269 273 282 210 17 11 211 215 229 104 406 255 249 91 223 434 252 226 152 393 322 423 135 148 418 182 171 160 36 81 263 5 110 225 29 325 58 181 213 292 219 251 355 385 224 96 183 49 408 371 398 395 13 189 129 143 400 336 397 314 402 212 107 369 228 394 98 3 389 186 246 76 132 35 358 324 399 80 404 4 274 357 23 396 138 180 15 286 19 390 54 392 +431 284 424 283 315 103 329 81 237 294 308 180 64 291 159 331 170 295 144 309 169 239 369 173 275 116 293 203 78 113 65 414 247 1 163 208 193 426 20 26 202 349 354 141 411 258 82 272 351 250 63 115 70 56 190 413 248 346 130 50 192 376 334 39 412 31 73 57 161 253 9 90 99 194 367 360 352 321 220 318 172 216 171 119 230 359 420 149 106 133 128 297 305 379 154 131 430 312 298 178 46 340 61 287 362 240 117 93 97 292 123 378 197 310 345 356 261 338 207 256 51 363 71 204 187 101 150 109 368 348 211 259 40 10 79 95 267 350 415 201 120 175 380 394 198 288 139 196 67 232 218 147 301 206 358 422 52 167 168 16 151 416 66 191 188 7 210 77 34 55 409 164 142 28 260 114 121 235 326 179 118 296 60 306 282 313 156 370 397 74 365 432 433 387 217 177 234 302 366 174 386 341 428 94 427 398 264 134 314 317 243 339 22 75 262 407 236 162 278 241 158 273 47 86 27 344 343 266 399 166 244 332 189 417 421 307 100 62 165 199 127 58 45 24 381 403 304 249 330 138 374 377 214 245 285 59 205 342 276 43 200 125 33 311 289 14 323 98 233 347 195 140 364 263 361 145 290 265 160 108 88 423 157 111 384 87 435 257 371 353 382 373 405 32 84 279 185 38 21 112 2 37 254 209 328 401 42 136 372 281 327 319 320 85 419 137 30 222 434 316 105 418 385 238 176 126 393 146 48 252 225 242 335 303 153 92 299 333 102 152 155 124 268 25 6 36 396 219 69 221 129 212 148 400 89 383 143 355 336 300 223 227 8 229 280 18 429 390 226 231 425 395 408 402 181 110 72 213 41 375 406 184 255 183 135 132 44 83 5 23 35 215 80 224 251 12 53 68 13 271 182 122 277 324 29 410 404 357 4 270 96 392 246 3 228 76 322 186 389 17 104 337 325 388 269 11 274 49 19 107 286 91 391 54 15 +308 163 78 95 237 309 239 352 368 207 70 1 376 31 113 172 159 169 345 103 63 350 170 71 26 123 291 130 116 329 259 133 272 386 250 331 334 61 141 50 82 64 347 431 178 294 349 115 310 192 208 348 187 362 268 247 412 218 39 202 253 216 203 263 295 344 20 147 340 16 338 411 67 144 231 93 284 375 7 346 275 154 220 230 407 420 413 195 351 328 370 258 271 315 422 131 367 24 153 52 288 374 171 326 193 318 266 158 339 56 361 201 257 90 121 424 99 120 242 298 293 190 304 356 429 379 101 421 197 161 66 393 109 312 297 327 10 365 46 77 426 244 179 397 62 363 234 199 128 28 98 261 435 189 337 430 330 409 283 428 217 162 354 9 79 151 270 173 51 278 377 57 198 84 332 240 317 166 301 33 175 167 168 100 191 281 273 94 360 306 364 305 395 316 221 341 65 359 34 232 378 134 416 235 139 149 384 267 117 47 164 252 209 313 177 106 204 43 277 119 114 196 366 185 248 206 419 373 160 87 323 282 415 40 307 433 137 343 14 236 97 30 264 86 59 414 215 358 176 165 290 184 372 269 124 262 150 60 27 194 398 260 53 245 132 319 256 140 381 302 279 394 111 17 145 243 22 69 85 222 74 276 405 174 105 183 212 355 254 380 292 127 125 303 333 156 200 45 205 427 265 37 73 383 152 29 287 371 58 280 19 399 146 108 55 342 118 285 75 353 382 321 188 23 211 6 233 81 214 223 434 251 88 42 401 210 396 249 2 92 324 21 8 126 48 112 387 296 181 3 289 300 142 406 299 241 320 102 403 226 224 83 110 432 402 135 357 89 155 225 12 32 122 38 129 44 311 336 325 180 425 157 18 213 138 25 408 389 369 229 335 13 11 182 36 390 410 72 96 417 385 80 246 68 227 143 314 404 388 148 392 238 49 219 418 136 76 186 41 322 423 35 255 107 400 274 228 104 5 286 91 15 4 54 391 +377 237 66 131 113 272 291 33 234 208 207 260 295 108 31 150 139 93 220 239 50 348 356 334 56 70 64 375 321 202 198 78 203 287 163 253 149 94 197 82 411 294 187 159 95 346 101 340 57 115 296 127 242 298 331 374 360 100 144 359 350 52 310 1 216 120 250 63 349 261 73 247 151 430 114 185 20 130 379 301 116 275 266 354 422 312 218 363 147 278 343 178 412 352 99 230 428 201 367 79 166 190 345 231 264 9 332 414 368 177 413 373 123 68 14 28 27 293 338 268 141 128 308 39 161 386 240 306 259 119 318 297 133 122 307 61 258 192 232 424 378 90 407 256 339 257 71 365 323 154 97 169 65 381 86 51 193 196 344 109 215 267 235 24 170 10 16 284 431 326 134 106 199 111 184 105 262 103 429 409 351 137 8 282 85 40 26 245 315 380 376 6 121 124 281 156 173 172 361 140 37 88 384 372 7 387 421 118 48 194 383 299 417 329 285 276 364 311 280 304 434 271 191 206 420 305 209 236 47 45 290 415 30 84 288 117 233 92 162 179 347 62 309 69 42 366 370 46 252 241 398 41 283 353 382 248 319 335 67 182 362 265 38 125 43 328 44 302 388 337 175 55 316 204 313 432 142 270 341 22 303 77 327 433 205 320 25 145 427 60 410 330 418 2 34 254 244 49 317 83 273 279 221 195 342 405 102 153 200 416 419 158 164 167 168 126 358 277 425 72 21 155 32 183 146 74 222 12 136 188 243 181 426 435 371 227 189 87 403 81 395 333 217 152 11 393 214 406 394 385 89 211 112 238 397 165 226 213 249 58 143 210 255 171 174 357 223 138 75 219 289 176 355 401 402 132 5 13 396 17 59 389 36 399 369 225 269 157 148 104 110 314 408 229 76 96 404 98 53 186 228 3 423 300 135 160 29 246 292 263 4 322 391 224 325 18 251 91 390 212 129 80 23 324 107 35 180 336 274 392 400 54 19 15 286 +377 272 131 237 234 33 260 66 100 113 346 321 208 203 348 202 379 64 220 295 63 414 334 163 159 150 359 93 31 360 82 198 57 197 266 139 207 101 350 50 109 1 178 253 116 108 291 428 144 231 312 308 51 141 296 261 287 151 52 73 374 275 114 340 352 149 56 95 351 216 354 115 218 39 78 375 190 298 239 259 331 338 130 177 356 94 345 278 154 332 187 201 267 363 378 185 281 422 412 247 301 28 61 79 127 411 339 386 120 242 65 67 376 293 380 169 26 99 362 240 192 68 123 196 430 140 170 258 215 381 245 309 250 9 257 172 344 10 230 103 204 384 288 349 133 175 6 77 343 147 118 431 137 46 326 40 37 156 323 277 262 161 294 128 86 373 20 232 85 90 184 420 413 310 365 416 105 173 305 256 209 318 74 367 14 24 297 106 191 329 166 119 368 285 387 307 122 8 280 328 27 134 407 264 299 211 16 341 97 70 199 424 276 235 92 306 335 366 302 125 290 241 167 168 117 252 111 342 429 361 337 7 248 195 403 121 84 409 370 432 60 372 164 206 42 124 434 282 210 268 244 162 279 38 435 75 347 415 311 421 32 317 179 303 145 315 158 34 304 155 188 194 153 88 41 221 330 233 426 165 200 43 69 284 353 382 427 397 189 433 319 171 102 83 364 292 142 174 71 55 22 401 320 62 205 236 383 30 126 59 2 146 193 44 58 395 283 11 112 98 327 289 143 313 316 176 265 243 45 219 29 273 217 271 408 417 21 249 419 333 214 47 87 254 12 81 222 138 425 13 226 405 181 72 388 104 270 238 48 49 355 213 17 404 369 398 396 53 110 182 186 160 5 418 148 36 225 371 314 227 89 157 152 223 324 132 229 402 423 410 325 300 385 135 136 4 183 25 255 357 406 91 96 322 389 263 393 358 18 3 76 212 394 269 129 35 107 251 228 400 399 224 336 19 80 23 391 15 286 54 180 390 274 246 392 +231 220 51 67 39 237 266 395 109 379 82 310 203 393 430 331 356 165 100 99 31 305 7 154 113 63 419 29 159 202 253 64 312 119 163 12 363 256 208 201 295 301 30 147 50 411 196 130 103 352 144 247 52 261 116 85 152 56 422 372 146 190 42 1 431 416 380 313 291 275 179 357 86 207 239 376 302 351 187 68 191 412 65 368 26 267 335 349 348 78 346 350 409 97 93 293 315 20 216 230 354 244 131 117 209 298 240 334 185 141 285 250 415 362 308 164 140 330 320 106 294 235 347 192 175 241 95 338 339 24 257 90 53 79 101 405 133 32 232 158 204 177 123 121 161 377 420 306 197 359 43 124 360 37 167 168 157 318 323 45 340 329 384 427 77 105 46 392 57 373 120 299 72 374 218 28 403 428 14 297 70 366 321 288 258 112 10 284 332 87 394 169 342 18 281 435 434 361 6 417 155 199 278 173 283 128 245 425 111 206 94 115 162 421 137 262 156 170 259 398 66 178 9 280 84 367 221 198 16 2 125 33 426 414 319 54 38 365 370 433 47 200 386 83 104 381 303 378 268 34 371 62 387 314 272 44 364 205 345 311 166 135 383 396 236 309 418 406 432 260 264 61 21 214 142 317 252 222 242 195 55 59 73 226 413 41 234 188 40 74 3 5 107 385 189 287 292 322 212 127 238 145 174 424 254 88 224 217 401 89 36 397 176 246 11 249 341 343 233 290 114 273 69 407 277 225 255 149 172 71 296 429 353 382 333 375 423 22 27 248 184 404 91 194 139 151 132 229 282 96 307 148 326 402 35 213 110 150 265 60 324 399 271 219 325 304 344 243 193 181 227 183 358 279 134 75 122 13 408 251 316 276 118 211 160 327 58 300 129 143 223 388 136 210 171 186 369 336 390 153 270 215 182 4 289 81 102 138 49 48 410 8 108 126 98 228 17 25 19 92 328 76 23 337 389 263 355 269 80 400 15 274 391 286 180 +70 295 291 237 242 56 93 31 78 348 220 294 57 16 50 218 63 163 377 159 85 356 310 64 351 94 113 88 253 33 167 168 26 9 100 272 373 330 216 66 185 261 363 230 307 82 1 266 412 231 339 105 172 334 131 86 192 420 422 158 139 92 14 169 27 151 30 190 170 250 256 140 150 239 7 321 320 312 20 114 99 393 149 411 287 178 308 24 108 10 280 147 123 352 120 413 116 234 360 281 435 115 197 130 365 346 77 306 61 2 101 318 275 203 207 200 345 319 374 152 198 331 55 106 315 111 95 161 235 37 52 202 71 67 208 265 309 430 12 344 240 359 127 424 379 176 90 215 341 162 154 260 65 262 22 141 97 343 407 175 45 305 201 368 349 340 109 380 415 402 293 278 367 395 191 117 254 21 153 47 184 51 375 398 194 222 174 284 187 376 267 313 428 166 137 241 328 354 290 122 292 29 362 73 38 13 297 6 264 39 226 62 177 394 119 329 8 145 279 350 268 387 432 361 79 342 252 364 429 327 258 206 72 301 225 34 227 233 296 288 193 221 333 251 128 43 405 182 427 18 223 323 399 87 358 229 421 171 336 417 385 83 434 431 257 397 48 370 383 133 205 214 156 213 28 126 403 236 381 118 406 388 335 433 80 298 276 68 217 60 243 76 247 316 81 299 204 273 314 282 303 183 378 46 270 155 103 188 259 408 160 246 337 179 263 425 283 142 69 326 414 134 232 40 418 401 416 386 300 164 195 84 199 173 410 311 125 23 409 366 121 17 157 144 219 25 419 277 189 271 196 255 304 372 317 371 36 42 132 396 143 75 110 165 269 390 211 3 384 389 248 357 347 49 238 74 302 355 41 338 89 426 135 58 249 228 210 212 404 102 107 181 285 186 124 59 11 112 353 382 209 138 136 244 148 324 53 5 129 96 332 245 289 146 423 322 224 369 32 44 274 4 325 180 98 35 391 286 19 104 392 15 91 400 54 +237 39 192 250 334 350 244 31 141 85 205 147 159 288 411 253 163 247 298 331 259 64 1 352 258 275 220 261 356 103 209 86 428 203 346 308 169 294 170 130 26 362 349 78 204 187 202 116 82 79 60 179 366 61 133 46 420 201 430 354 239 154 123 297 413 230 190 28 291 67 161 317 50 84 267 66 196 266 109 378 121 218 90 164 232 95 51 342 63 379 330 351 381 62 16 191 262 177 386 240 256 56 309 216 131 312 119 245 113 422 295 178 144 20 114 376 359 363 156 329 340 125 305 431 301 315 77 10 360 172 70 99 318 52 348 310 146 345 281 7 14 368 361 117 93 412 112 165 341 279 414 435 284 257 57 58 43 372 306 106 207 416 365 145 208 65 338 293 188 111 292 421 384 185 158 289 214 140 128 371 24 235 364 115 174 252 403 344 217 175 433 367 233 194 339 374 303 97 272 387 9 38 343 100 424 40 401 200 432 189 280 278 162 426 434 101 199 71 151 167 168 211 195 197 69 249 110 231 353 382 134 264 332 73 302 347 32 184 407 283 94 160 53 222 34 176 395 55 419 234 427 59 373 36 236 321 210 171 333 314 335 181 304 393 224 377 37 206 83 243 254 273 87 409 380 268 276 328 124 45 326 397 425 137 88 72 198 3 319 105 2 285 157 142 307 265 229 370 316 42 47 263 383 357 44 22 30 227 415 139 173 311 398 271 260 299 323 127 322 300 12 223 423 290 221 313 358 399 153 120 138 6 136 21 96 182 118 149 394 282 155 429 226 193 27 225 166 33 126 242 89 388 183 241 402 405 48 215 296 396 320 29 74 238 150 8 251 287 132 17 270 135 76 13 355 389 325 75 108 408 277 49 104 410 406 213 375 81 337 41 68 148 404 269 143 25 248 92 5 390 54 186 417 129 98 324 102 255 219 11 212 228 35 122 327 286 80 18 152 23 19 418 336 400 91 369 385 107 246 391 15 180 4 274 392 +220 51 430 67 231 237 310 305 39 165 393 203 119 99 379 395 179 419 109 331 266 256 82 106 154 295 202 315 43 56 7 427 86 64 146 357 356 85 380 190 352 63 363 141 12 30 201 144 247 159 163 50 312 52 405 411 113 288 103 147 431 335 320 104 323 224 261 313 222 116 311 204 97 152 334 409 208 29 376 241 196 291 130 392 350 192 93 191 362 423 236 161 253 72 351 31 131 321 157 412 90 293 227 100 34 230 101 57 112 1 140 349 365 368 216 354 348 91 339 187 164 185 366 267 240 120 342 239 128 284 415 406 105 338 258 177 308 42 329 285 35 117 24 346 302 95 318 372 297 416 84 225 94 206 20 115 26 283 173 68 275 123 9 298 3 53 207 381 428 89 28 121 124 384 232 425 5 175 292 301 414 79 88 434 33 235 46 218 54 87 209 169 133 14 422 322 262 417 306 170 374 78 394 359 238 45 387 345 250 244 226 38 246 61 158 167 168 135 360 403 378 254 137 330 255 195 65 309 433 426 420 294 432 217 281 259 367 47 83 401 303 418 340 280 278 385 424 314 317 396 150 200 111 142 260 197 70 223 211 219 155 77 398 55 272 228 408 299 344 156 199 66 213 18 347 139 343 174 245 229 73 370 410 188 413 10 6 13 62 114 407 149 71 307 435 233 22 373 210 32 37 178 234 74 249 16 421 279 125 319 371 386 176 212 290 214 198 205 184 264 172 287 257 102 194 59 221 353 382 377 183 134 397 364 429 186 361 166 383 181 44 60 375 273 27 252 242 40 341 248 15 243 2 107 182 136 388 276 268 69 58 25 36 132 148 316 21 160 162 332 171 41 151 399 48 358 143 129 296 145 265 189 11 193 325 138 96 118 333 75 8 110 108 304 49 282 98 127 126 81 122 402 404 23 153 300 271 326 17 289 324 92 390 327 251 270 277 328 263 369 4 215 389 274 76 337 355 336 400 19 269 391 80 180 286 +376 308 309 163 291 159 172 95 113 71 78 120 329 207 202 169 203 170 345 1 237 294 344 352 348 263 331 328 141 350 130 178 63 171 295 259 431 103 362 375 26 239 412 310 67 208 131 315 339 82 61 192 374 31 98 253 56 220 128 411 379 430 323 413 115 70 266 356 284 144 422 164 190 326 173 64 51 230 288 154 275 165 334 218 424 250 216 187 99 346 258 429 409 20 247 57 147 16 276 50 90 7 426 116 39 123 195 420 153 407 393 361 368 312 158 349 93 161 268 133 307 327 293 272 261 46 365 248 318 297 367 231 114 201 267 298 283 337 117 340 9 421 338 77 197 106 119 14 363 278 366 370 175 242 109 330 52 101 428 434 24 435 140 160 271 65 305 302 191 34 86 177 62 395 378 33 149 416 198 121 204 66 320 397 185 73 252 304 211 264 342 189 105 306 316 180 196 193 217 166 210 386 351 145 265 79 94 85 240 354 232 137 300 415 214 124 419 209 256 111 359 221 427 22 97 372 87 347 360 206 27 151 234 174 84 394 45 75 47 270 28 102 257 134 341 301 215 403 281 135 10 243 260 262 88 125 188 179 299 194 205 358 355 43 321 285 273 279 398 385 38 233 183 235 40 167 168 384 55 433 30 381 150 364 280 282 236 74 373 401 139 223 81 58 380 176 112 251 42 332 152 287 392 8 343 292 245 333 399 408 18 319 41 29 60 244 313 423 37 200 129 222 138 156 23 405 162 377 118 277 100 290 414 199 303 254 53 269 410 69 311 17 317 432 249 59 289 6 19 36 184 387 110 72 396 132 148 2 219 108 324 127 371 212 157 241 181 182 155 35 48 357 353 382 89 314 417 246 229 369 25 142 80 402 225 146 143 83 21 92 126 390 226 32 336 418 335 296 425 383 227 406 213 325 12 122 44 255 76 68 389 13 388 238 136 96 224 11 49 322 400 186 3 107 286 15 5 228 274 54 404 104 4 91 391 +203 220 202 338 154 179 52 430 163 331 101 412 1 295 93 50 82 64 144 51 159 376 379 237 56 94 146 315 131 297 43 352 190 116 141 124 224 114 187 53 201 133 359 35 318 3 113 208 119 169 253 31 258 360 211 170 165 123 84 310 197 161 431 433 408 115 39 227 308 26 103 247 380 422 207 100 175 340 109 222 90 210 405 348 95 403 423 386 305 204 339 130 192 232 63 362 411 261 350 378 46 288 128 366 121 177 173 250 278 196 309 334 256 311 137 281 57 78 342 242 106 239 254 367 351 195 312 198 241 230 397 266 75 7 298 216 206 67 34 356 365 218 61 99 267 272 319 384 415 166 294 409 74 428 330 79 257 414 276 164 344 71 291 225 111 184 62 86 341 321 233 117 174 275 363 70 191 73 226 368 413 8 120 77 343 326 231 345 354 262 259 427 432 147 112 248 125 14 425 320 349 323 188 245 178 426 302 361 24 229 424 299 240 370 421 317 301 306 268 85 435 181 213 155 13 221 346 209 58 167 168 185 219 28 156 151 303 347 217 172 252 417 162 270 10 33 329 235 194 387 271 374 279 234 140 199 284 381 83 282 419 143 38 88 244 42 65 420 396 9 20 373 416 98 5 60 307 265 260 406 434 285 6 389 72 158 47 171 418 126 118 223 193 176 55 186 16 332 228 249 200 40 371 105 264 160 357 236 394 37 59 12 364 273 142 132 145 17 139 97 304 287 134 407 110 66 325 293 292 335 41 238 280 243 377 290 393 385 328 89 22 333 283 316 23 358 148 150 383 322 189 108 29 102 182 353 382 215 136 372 395 313 212 277 81 296 27 32 127 149 96 69 399 300 30 135 104 45 205 157 401 21 314 2 336 87 68 214 327 18 269 429 398 289 36 375 183 263 404 92 122 324 388 19 138 369 153 337 107 44 49 76 251 11 4 286 355 129 91 390 80 400 274 152 255 180 402 54 48 15 410 25 392 246 391 +50 56 113 31 147 61 291 237 207 261 203 294 411 374 78 220 111 114 63 307 365 44 205 34 295 95 141 202 334 163 128 363 356 99 131 66 383 298 331 7 239 247 151 103 64 373 218 67 375 266 159 192 70 306 57 121 288 161 139 256 407 348 47 262 38 409 259 297 20 6 178 39 82 184 208 216 329 85 68 258 123 315 1 65 280 350 253 230 133 413 305 164 272 187 188 109 339 130 362 90 367 293 430 144 201 388 101 366 51 93 165 122 310 182 267 14 9 385 312 421 149 422 115 318 349 150 376 86 185 386 346 88 177 28 119 197 345 343 352 209 379 424 244 190 167 168 154 2 170 105 169 381 278 33 340 196 108 52 368 175 231 166 162 281 94 116 410 275 321 179 354 30 387 125 106 397 11 198 145 16 361 49 377 117 341 69 240 393 268 428 79 97 235 193 330 24 120 319 405 242 232 420 22 42 412 191 176 45 143 338 250 304 279 370 84 21 226 43 344 26 217 260 77 155 264 48 342 308 434 284 372 309 183 55 236 223 394 427 195 206 402 222 285 398 360 211 112 10 214 301 73 194 359 257 303 29 328 273 27 189 364 221 138 271 12 416 426 199 302 435 351 172 317 134 384 137 320 380 265 62 252 210 136 200 234 287 229 71 37 299 403 358 158 153 316 225 241 378 204 87 36 100 415 157 140 135 292 124 156 60 347 406 313 212 399 332 127 132 102 46 174 146 276 417 314 327 432 233 74 414 323 3 23 431 290 251 283 249 429 433 395 337 25 270 215 333 296 391 142 148 13 213 173 419 224 76 89 243 248 245 254 17 282 18 72 322 92 326 425 357 118 75 40 324 171 107 227 418 110 371 83 53 41 353 382 32 274 389 104 152 181 401 96 277 238 269 8 390 219 325 335 59 246 408 58 396 311 129 355 160 289 81 126 98 91 186 80 300 228 423 54 263 35 392 336 5 404 255 369 4 286 400 15 19 180 +18 401 27 187 57 323 203 202 295 4 9 131 56 63 321 159 240 237 93 173 107 141 67 348 400 329 220 379 190 113 331 82 50 376 218 266 64 66 334 431 253 362 352 411 412 144 307 298 197 52 94 430 250 70 216 410 1 119 163 109 291 39 20 154 102 149 374 198 339 288 346 207 338 164 201 65 363 150 90 356 420 120 354 122 99 387 272 24 247 26 349 267 230 170 285 31 192 345 169 71 37 409 130 259 48 368 178 350 103 22 385 47 165 42 161 221 68 422 116 309 38 278 312 287 231 175 101 177 34 414 51 375 388 133 33 305 98 359 294 78 261 308 208 360 344 73 284 140 330 239 206 185 204 123 262 428 95 234 275 315 28 61 310 88 281 256 370 257 189 7 79 106 415 147 258 211 117 318 191 413 283 367 260 293 300 174 114 276 128 416 378 172 434 424 188 92 384 108 377 86 137 403 210 25 245 297 366 302 340 214 105 84 351 182 46 85 125 342 328 151 97 176 14 10 426 264 87 196 16 135 320 209 427 380 43 121 232 49 435 148 252 127 139 249 200 157 171 118 134 194 115 268 145 243 77 417 45 242 62 394 235 395 423 279 244 343 6 311 156 160 180 60 195 326 143 217 233 301 418 29 111 296 365 341 167 168 142 314 303 332 100 306 433 254 53 179 248 236 429 55 158 241 40 392 421 83 273 215 124 184 386 263 372 364 44 432 381 199 405 373 155 397 304 112 335 396 282 361 265 226 391 371 138 398 193 280 270 222 223 81 225 271 358 406 219 126 289 69 181 292 353 382 290 347 74 393 419 357 13 317 21 205 59 96 153 2 32 166 316 72 12 30 238 407 110 369 162 277 58 322 75 327 136 299 146 399 251 229 333 11 389 35 183 36 227 213 17 313 23 425 76 89 337 41 129 319 402 408 5 80 132 8 383 255 104 212 286 355 269 228 186 54 336 152 404 224 3 390 324 325 15 19 246 91 274 +237 331 187 203 202 253 64 141 117 113 159 295 163 356 422 51 258 119 315 116 350 1 82 348 310 239 430 165 50 298 192 109 256 421 220 250 288 93 131 99 185 386 204 380 412 362 312 291 67 31 431 70 39 106 190 52 259 179 403 130 343 247 164 345 63 344 284 196 170 7 222 201 154 252 144 311 169 121 173 57 359 334 409 338 360 56 434 420 308 94 411 79 197 241 305 26 235 379 191 101 161 376 321 354 71 177 427 307 216 320 147 341 346 257 134 12 115 178 198 318 283 330 120 140 240 208 352 297 123 127 65 128 78 243 309 226 231 339 264 230 225 261 374 349 85 408 218 245 13 428 158 125 157 294 378 103 14 213 278 317 58 90 133 276 363 23 73 221 275 156 86 296 361 432 111 351 30 59 9 97 223 209 124 100 285 61 229 28 265 244 323 272 227 260 43 289 423 332 326 340 193 300 68 335 303 46 266 114 375 232 424 373 414 262 302 435 365 95 242 62 188 195 72 236 405 313 406 24 207 401 287 254 393 126 175 34 20 66 377 417 416 27 282 84 429 299 37 425 426 143 367 176 29 184 16 162 172 38 88 419 368 33 206 415 32 149 146 249 150 77 10 328 155 381 280 407 383 118 395 366 290 233 433 137 413 333 319 314 40 234 166 174 329 384 200 387 306 301 35 181 110 160 364 145 139 47 92 199 171 238 75 215 83 304 228 418 219 2 22 60 214 267 273 353 382 81 74 55 3 152 21 167 168 224 142 5 183 89 398 153 370 194 44 248 397 69 105 268 48 396 98 129 372 342 151 6 404 18 53 87 217 42 211 45 102 357 25 148 104 17 108 112 8 371 136 210 394 281 388 277 251 135 369 293 271 122 205 347 292 182 355 402 96 270 132 410 385 263 41 399 255 358 389 327 279 49 91 180 186 325 15 322 189 76 246 391 19 337 324 316 269 4 11 212 80 400 336 36 138 390 107 54 392 286 274 +220 237 203 39 310 231 31 67 51 430 165 393 141 202 50 305 201 331 99 411 356 154 63 163 82 147 64 395 315 109 419 244 7 1 116 187 144 119 295 113 159 288 256 179 253 362 12 247 196 258 93 52 207 123 379 350 26 56 30 190 86 349 261 266 78 239 164 363 128 85 192 338 250 161 291 29 106 412 103 121 357 235 306 312 117 209 70 100 298 185 204 427 301 90 216 95 232 352 20 208 386 323 130 318 97 330 222 368 409 94 101 14 431 348 384 297 422 376 340 66 79 405 124 217 257 372 394 320 230 140 275 240 334 346 313 268 339 259 284 37 361 133 302 373 114 28 366 191 125 317 131 425 267 152 218 365 281 360 53 43 170 169 359 241 146 112 380 177 271 308 45 293 221 294 61 197 236 104 84 68 262 403 351 415 332 206 254 184 46 77 421 420 354 280 167 168 265 34 162 9 226 189 225 434 428 321 65 57 335 200 398 62 343 416 38 205 242 329 378 145 272 105 111 303 156 417 414 115 214 435 175 342 283 341 44 397 347 285 10 157 136 2 264 278 367 42 383 87 406 155 16 229 309 407 198 314 120 246 47 158 433 319 32 374 73 233 223 227 72 199 333 24 249 402 413 245 71 135 142 3 188 270 69 127 364 299 387 377 139 252 322 183 36 55 176 370 418 58 311 381 358 424 224 33 174 273 213 54 426 276 6 151 13 88 399 396 307 134 345 137 149 40 195 110 83 21 304 344 243 401 74 292 172 287 166 89 178 296 181 432 194 129 150 234 173 23 392 60 160 316 211 423 251 290 35 238 22 279 429 371 260 408 91 143 59 353 382 132 212 182 27 210 282 389 375 219 385 388 390 193 186 289 75 324 269 5 96 8 277 325 48 404 18 410 108 118 248 215 126 171 122 300 255 228 41 49 326 11 92 355 17 102 107 148 153 138 81 328 25 263 336 76 327 15 98 337 369 80 391 274 286 19 4 400 180 +237 247 196 318 411 433 103 201 413 121 331 90 294 79 39 187 113 192 432 199 159 145 426 161 232 403 370 125 20 334 1 64 95 387 115 428 397 34 50 306 431 295 67 123 131 170 114 297 352 244 317 163 169 31 319 412 315 130 204 424 28 218 362 239 117 367 230 349 253 109 128 62 379 378 303 84 141 132 16 51 181 341 144 177 194 308 291 46 197 343 366 298 258 190 191 99 358 301 278 356 220 250 119 59 275 329 399 273 243 45 430 166 348 339 78 147 287 231 203 112 120 340 394 42 116 240 26 106 398 63 312 209 233 384 21 154 73 58 216 202 261 380 82 52 435 126 208 43 368 353 382 292 2 310 100 427 276 195 7 179 71 124 256 365 288 206 249 262 361 10 61 372 133 198 32 354 172 245 386 264 205 222 393 360 55 363 381 376 173 359 38 248 351 396 40 420 137 75 236 383 214 70 56 415 284 241 221 242 93 304 97 364 110 85 266 188 193 60 309 217 127 207 345 156 9 14 235 157 373 139 74 342 305 347 94 8 185 422 234 111 282 87 374 407 324 434 419 299 86 57 149 350 390 158 414 333 267 171 226 29 257 313 330 259 395 142 344 321 252 148 162 346 140 12 421 280 165 22 416 129 409 69 332 6 186 37 254 408 223 105 389 323 307 35 178 89 285 251 260 30 265 289 65 164 33 13 338 101 320 47 326 268 184 213 296 357 41 283 314 88 150 229 327 417 143 24 290 406 404 293 160 155 153 36 81 302 425 271 219 77 3 167 168 212 238 429 418 225 53 146 281 263 174 322 83 200 337 96 335 311 227 272 355 98 405 189 23 270 371 300 224 17 135 316 134 68 402 279 118 11 328 72 176 375 385 175 277 183 325 108 66 152 269 377 27 215 122 211 151 255 246 336 210 92 274 80 228 423 180 138 182 5 18 104 76 401 369 388 102 49 44 19 25 48 54 136 410 286 392 15 4 400 107 91 391 +259 133 346 63 293 281 349 237 272 279 78 123 151 386 275 282 189 340 359 208 360 234 312 70 261 154 95 64 61 1 334 266 202 20 414 116 308 130 101 113 253 203 378 65 28 118 230 197 99 298 184 345 348 295 198 82 93 178 73 201 156 422 351 163 10 114 66 242 115 297 177 131 57 39 291 164 250 90 46 361 77 215 220 128 258 232 381 9 94 188 216 92 331 284 144 407 431 301 194 354 71 31 85 430 306 40 51 411 239 100 365 294 374 139 379 363 147 376 413 352 218 344 368 159 262 86 367 276 305 321 16 342 106 329 313 332 428 140 280 170 338 267 207 339 169 26 190 105 377 205 307 56 195 366 158 318 161 309 76 192 191 62 206 204 245 424 33 109 187 353 382 50 52 55 172 283 174 103 124 79 38 231 327 193 341 14 387 87 372 289 323 315 292 244 117 199 247 278 370 420 108 302 88 179 84 347 271 6 2 287 384 145 304 196 43 81 134 157 427 175 24 125 356 317 257 355 433 185 233 47 121 398 432 328 149 176 243 21 371 256 150 165 67 83 235 358 69 296 264 60 416 403 111 373 375 268 260 333 303 421 364 426 399 330 141 311 273 217 30 316 167 168 42 435 96 137 97 412 171 240 37 393 326 146 310 142 32 22 320 252 7 249 270 34 409 119 166 200 110 127 173 183 343 350 362 8 254 162 380 45 265 319 59 425 98 402 383 277 405 227 429 251 221 419 74 314 53 211 58 335 394 68 138 12 290 5 397 152 209 236 186 415 288 325 27 286 102 417 135 122 120 210 337 219 213 112 36 104 408 299 238 153 336 324 136 241 269 75 143 396 126 248 390 285 80 132 181 17 212 41 48 13 148 263 89 369 401 423 222 404 226 49 91 357 129 155 418 3 406 44 385 29 160 214 223 246 255 225 388 400 300 434 182 395 11 224 180 389 72 229 391 23 19 410 25 274 322 18 35 15 228 107 54 4 392 +189 174 176 1 367 175 318 192 46 301 79 159 56 281 351 20 163 342 308 211 297 63 376 210 90 121 271 47 247 240 292 161 103 270 365 326 34 387 191 169 128 116 181 31 170 202 86 117 386 39 230 203 259 264 430 113 190 9 95 284 269 138 315 250 129 362 26 268 279 51 379 7 310 84 334 194 236 433 132 97 232 235 201 366 77 172 426 431 123 411 309 217 131 130 70 267 282 384 82 329 424 218 28 243 338 316 214 237 249 378 139 193 64 370 239 144 14 313 195 283 262 261 363 71 286 57 85 141 62 254 73 78 409 8 346 233 298 275 401 412 305 306 196 256 340 105 101 93 197 403 206 65 291 184 405 389 112 50 303 119 276 361 263 154 331 40 142 312 98 94 339 432 171 125 109 413 87 360 272 359 347 204 152 136 222 415 345 341 364 59 352 69 10 209 223 323 304 278 153 88 395 115 311 120 434 273 221 354 22 358 349 414 344 258 421 253 147 321 158 319 126 327 108 251 373 133 61 81 330 435 110 288 332 16 114 198 348 422 75 397 427 212 89 148 229 25 38 385 428 295 134 186 149 231 244 100 48 99 111 419 150 74 53 106 356 199 248 188 302 45 177 58 30 102 374 353 382 182 407 178 280 32 143 166 60 35 255 55 124 43 42 350 185 227 155 173 324 285 289 205 265 399 145 216 37 137 317 277 335 220 393 410 383 294 208 27 225 408 381 24 252 200 293 246 33 328 343 17 234 52 416 157 67 96 380 76 127 394 320 187 179 160 371 164 417 135 226 287 162 156 266 420 207 140 396 92 167 168 404 118 333 228 257 183 151 66 398 68 36 21 44 29 219 290 2 377 325 425 307 83 241 357 213 314 296 245 242 372 355 13 12 418 215 122 19 6 400 322 23 224 423 299 368 165 41 390 80 146 336 406 391 5 15 429 4 392 180 3 11 238 104 375 18 402 260 337 369 107 49 54 388 300 72 274 91 +231 220 51 67 109 39 395 310 430 237 305 419 266 63 379 163 203 103 99 159 393 82 356 202 201 291 154 352 7 56 29 113 130 411 331 256 190 147 315 86 119 50 295 196 247 363 52 329 144 412 372 323 253 128 1 97 301 133 141 165 376 428 362 308 348 90 318 131 208 409 116 78 64 384 312 95 334 230 380 26 42 293 161 152 239 31 405 365 20 288 259 216 30 24 339 207 261 284 346 267 192 85 112 302 169 177 313 431 100 34 272 206 12 170 79 320 123 218 422 236 285 187 349 120 415 350 106 359 297 392 158 197 121 360 240 66 366 93 283 309 222 175 241 340 115 157 101 250 338 191 427 244 351 294 357 209 368 46 70 275 298 278 235 179 387 345 204 378 377 232 416 140 28 306 361 342 433 137 367 9 421 57 77 117 62 354 258 426 420 347 370 68 262 124 35 84 434 381 322 33 321 292 73 14 71 43 281 423 125 87 413 189 214 403 173 299 397 417 185 61 198 195 386 205 172 212 114 53 65 425 414 167 168 245 394 104 55 181 142 217 174 264 111 396 74 226 47 200 364 32 135 234 72 373 418 374 105 401 88 243 344 178 164 94 254 424 176 252 335 311 317 225 146 265 16 238 273 89 166 45 330 151 194 211 221 139 199 188 435 268 223 156 38 332 132 276 210 303 385 150 134 227 149 316 75 98 60 304 248 325 314 96 324 242 145 319 358 233 282 246 257 155 5 219 59 10 6 279 40 398 18 371 249 341 343 280 353 382 406 271 91 193 162 143 432 83 44 37 251 171 129 213 429 399 136 118 287 184 260 407 36 13 375 58 41 270 27 289 277 69 8 410 160 54 186 102 255 408 229 326 108 383 22 107 110 48 2 148 153 307 328 127 183 290 404 182 138 122 300 333 21 228 296 11 263 224 25 327 17 126 215 81 337 3 92 390 355 388 23 19 49 15 336 269 389 402 4 274 76 286 369 391 80 180 400 +50 376 56 203 159 202 163 141 93 348 63 1 329 57 34 113 374 95 309 334 237 288 411 61 103 338 410 346 308 295 352 94 133 39 379 345 362 207 154 259 261 272 339 78 70 116 331 294 128 71 48 375 192 220 363 131 44 82 293 350 278 230 77 258 33 297 101 115 170 310 64 52 412 67 169 147 9 291 65 151 38 305 208 218 247 175 25 178 385 144 86 430 172 24 428 365 130 266 340 328 98 211 344 366 267 239 190 393 85 134 253 285 189 14 197 298 231 114 351 102 51 210 240 409 216 66 31 187 26 20 165 173 47 90 420 182 42 164 161 92 22 312 28 250 138 387 279 120 268 109 280 123 323 424 342 368 284 315 378 349 198 99 326 174 307 318 46 275 302 391 204 7 321 191 200 256 384 205 88 401 264 276 359 403 354 106 121 119 188 414 262 360 367 244 167 168 386 195 413 263 176 201 139 171 79 196 209 316 117 327 265 137 73 177 377 87 184 206 283 217 419 234 373 431 150 232 40 422 381 416 292 149 62 100 10 55 270 370 281 301 27 330 341 248 105 242 415 388 347 356 271 426 16 125 325 306 236 111 84 108 282 432 143 49 68 361 260 18 194 405 185 383 97 37 214 372 166 245 60 427 336 155 429 300 380 407 45 319 332 215 140 145 153 152 287 364 304 421 229 313 112 183 124 435 299 158 53 156 30 252 43 249 303 397 343 320 314 193 223 317 333 8 433 58 74 273 221 417 199 6 222 148 157 394 83 434 129 358 233 72 335 122 179 243 118 257 392 357 395 17 400 135 81 246 136 75 162 396 76 235 254 104 398 353 382 322 89 406 23 132 402 399 290 69 355 35 160 371 41 255 418 277 225 59 241 110 269 289 408 423 36 286 127 2 425 227 296 29 146 181 142 11 219 91 126 212 337 311 251 96 21 32 324 389 226 369 5 224 180 213 390 4 238 228 274 13 80 12 54 186 3 404 107 19 15 +39 67 103 51 141 220 352 203 294 95 379 192 411 34 237 159 163 393 202 230 50 247 128 362 113 310 99 419 305 288 297 315 63 26 130 291 308 395 117 147 154 331 318 430 52 169 170 121 239 1 409 261 187 196 90 366 266 64 56 82 258 218 412 256 204 413 334 119 259 161 329 109 231 267 384 31 123 216 250 84 207 365 190 62 363 165 144 295 7 339 372 342 253 79 78 178 368 350 244 376 306 111 201 106 278 20 236 312 120 293 205 217 46 309 416 209 356 28 61 275 397 191 348 131 24 177 433 378 232 133 302 116 361 367 93 43 370 172 351 262 410 374 125 112 349 428 403 346 206 424 97 70 179 85 42 101 284 200 364 94 195 386 86 264 427 381 57 421 115 298 420 214 338 48 208 124 285 240 29 401 301 345 340 330 323 105 316 60 194 268 271 426 47 114 38 317 422 188 77 344 16 9 181 415 132 164 25 380 30 319 33 157 158 276 182 270 387 160 59 152 245 134 273 373 272 137 139 14 73 176 145 151 221 432 431 303 55 185 140 223 347 324 343 153 325 89 58 341 110 162 35 243 407 173 320 69 222 280 396 283 313 252 434 265 354 166 371 332 435 174 300 8 189 249 71 146 251 417 314 233 254 149 281 135 167 168 150 353 382 304 199 279 322 242 156 88 423 17 414 72 357 321 18 269 197 53 65 10 328 287 307 241 375 429 299 257 183 22 282 66 212 211 292 184 234 193 32 98 171 186 224 394 44 102 210 358 74 136 405 40 23 333 229 399 406 359 418 360 388 235 138 385 175 45 108 6 225 226 68 83 142 49 100 155 87 36 383 246 289 311 75 37 260 12 41 126 19 377 118 425 408 27 248 96 263 398 238 337 296 127 198 148 255 92 3 143 335 227 219 104 326 336 76 13 389 81 122 392 213 129 355 391 277 286 290 274 21 2 107 400 327 390 215 11 404 228 5 15 91 80 4 402 54 369 180 +1 163 329 259 409 159 376 308 379 315 202 170 20 169 291 98 130 340 426 203 172 128 193 237 113 103 154 123 50 386 294 161 309 412 56 101 302 82 90 318 334 352 312 411 326 133 424 171 34 378 430 144 138 365 147 284 338 79 346 190 247 69 99 84 187 239 129 278 413 95 218 230 240 63 62 272 7 229 201 285 116 78 77 192 121 363 70 305 331 183 43 28 282 279 387 361 46 155 431 297 52 261 65 273 351 258 189 16 26 179 433 293 88 310 367 263 345 109 283 23 419 364 248 370 313 267 348 178 417 197 395 236 268 397 39 194 115 64 231 366 119 10 149 349 67 393 264 210 420 31 415 47 220 106 134 176 368 206 51 342 175 97 250 339 3 214 405 295 86 211 105 205 271 396 139 243 298 327 232 344 224 125 9 421 143 188 362 373 204 207 24 265 111 262 141 253 177 60 195 87 150 120 198 418 358 181 403 117 158 132 427 428 57 73 164 323 131 292 276 199 406 174 145 256 114 93 223 196 254 14 356 152 287 303 314 332 135 398 30 235 341 289 233 422 191 208 414 153 71 94 269 136 301 35 304 58 217 317 85 212 432 266 22 374 392 8 222 343 100 372 407 394 245 281 45 316 249 399 381 40 270 74 380 355 186 185 75 434 306 127 151 225 165 89 140 353 382 209 435 290 216 280 53 226 6 359 173 360 357 156 252 251 137 27 288 157 234 275 146 246 162 38 389 44 333 383 244 148 81 257 61 241 354 347 96 2 59 37 13 328 124 55 42 321 33 335 29 324 160 311 142 184 296 66 242 404 92 108 166 384 350 21 401 410 180 213 375 221 110 408 11 319 377 200 112 429 299 371 320 260 126 325 32 425 227 385 219 330 390 17 18 228 238 307 416 68 76 12 402 72 118 322 215 167 168 277 369 122 102 48 83 336 41 255 25 104 286 337 19 15 91 182 274 5 4 400 423 388 36 54 300 107 80 49 391 +188 141 187 350 334 64 356 237 253 362 365 63 39 422 331 291 309 134 192 31 159 130 295 119 421 131 345 431 376 52 330 203 1 179 297 220 411 288 201 250 147 323 298 202 190 204 239 329 434 427 84 106 113 266 43 344 247 352 170 307 169 140 368 386 116 62 161 258 117 218 158 185 420 261 26 351 315 244 230 308 312 163 133 9 191 401 354 178 90 82 123 262 57 276 240 306 275 121 349 14 435 66 430 78 154 99 103 93 206 70 177 366 85 209 256 97 86 164 165 216 167 168 200 144 326 367 426 346 73 343 363 27 217 305 18 101 252 236 28 196 284 112 318 184 341 20 383 310 95 7 414 259 416 364 321 429 338 145 373 71 412 114 235 94 61 17 125 173 88 56 287 149 79 303 65 233 224 272 50 59 380 378 304 280 384 424 245 317 22 406 207 328 10 55 128 120 77 118 348 146 299 127 111 172 403 361 16 257 428 37 48 296 432 60 340 124 232 249 238 320 355 156 171 290 243 333 195 311 360 58 294 208 374 157 110 205 387 381 370 342 23 359 162 221 313 413 150 46 379 267 264 339 289 67 347 160 36 12 283 197 407 234 409 105 25 193 222 87 21 176 142 153 53 2 225 281 3 241 211 242 214 393 223 227 51 45 115 30 265 371 83 38 98 126 175 198 300 166 433 226 33 302 69 181 273 199 314 47 278 24 74 135 319 137 32 139 122 19 102 174 397 100 210 254 4 194 332 353 382 248 263 40 13 109 279 415 285 260 419 425 229 89 372 213 155 42 96 268 108 293 34 231 375 405 399 246 327 335 72 410 301 271 398 322 358 75 11 148 292 255 282 151 394 228 6 337 377 186 389 395 80 81 423 402 270 143 316 219 8 92 408 183 15 251 417 189 215 76 5 152 388 357 182 68 325 400 138 129 269 136 180 132 418 44 369 277 35 29 104 390 212 41 385 49 274 396 286 324 336 392 107 54 404 391 91 +331 63 134 237 163 1 64 222 346 50 311 261 82 315 202 147 151 225 141 116 220 259 334 179 227 308 93 133 106 239 430 203 298 99 386 309 66 31 78 70 294 272 184 356 258 39 288 376 310 190 291 130 159 192 226 61 245 188 247 411 253 119 169 250 338 117 295 170 312 350 359 305 360 101 349 354 405 279 94 154 26 365 86 12 431 51 197 97 207 345 297 187 114 204 284 420 367 340 201 13 267 113 109 115 57 14 380 77 156 131 208 73 56 213 95 146 414 422 144 352 348 198 165 425 230 28 351 52 423 427 412 282 317 161 193 254 224 79 262 362 85 216 280 128 236 103 320 191 118 223 67 341 123 173 60 428 218 322 140 378 275 172 407 281 228 88 302 235 318 217 256 323 9 185 343 276 164 136 178 121 344 195 241 232 304 174 71 111 435 7 283 205 257 175 363 328 408 92 361 177 43 90 406 3 421 307 211 20 234 379 434 290 293 24 403 158 65 330 210 409 238 381 374 104 249 424 242 321 124 139 266 6 372 183 167 168 244 62 176 200 55 413 194 58 316 278 229 339 89 355 91 120 10 366 46 416 72 264 16 75 74 329 377 306 171 373 40 273 313 125 84 368 196 206 268 53 33 252 325 98 138 353 382 102 429 231 5 30 83 384 433 335 415 162 160 233 303 243 215 265 166 110 221 395 357 240 401 371 199 219 383 189 69 289 285 319 332 271 15 214 393 426 314 45 432 419 333 100 35 22 364 112 342 209 137 397 417 143 296 34 387 301 277 299 398 145 270 292 8 326 157 126 59 76 23 347 336 370 155 25 108 135 287 260 2 105 150 153 38 32 68 87 152 181 81 36 402 396 47 186 127 48 29 17 255 149 418 27 142 394 300 324 212 44 41 21 11 248 37 404 182 18 132 337 327 263 42 385 269 358 410 122 129 388 375 369 148 389 399 251 54 96 246 180 19 80 286 392 4 49 274 390 391 400 107 +31 356 275 306 411 63 266 192 250 348 70 141 163 295 36 330 253 147 319 83 230 237 420 308 140 123 64 422 435 158 169 362 431 93 334 9 114 309 170 365 373 351 133 187 257 291 26 239 261 14 62 57 352 50 341 220 113 159 172 20 216 24 297 144 67 131 1 383 56 389 16 202 368 78 86 184 371 416 360 82 95 376 71 90 345 339 116 374 66 281 364 201 359 209 94 265 434 231 2 162 407 331 161 10 190 235 45 421 167 168 395 344 280 294 85 272 7 164 195 349 285 321 43 398 252 305 221 203 412 363 117 87 244 340 39 278 200 130 366 394 178 288 386 413 379 77 323 217 6 284 80 393 205 267 358 185 188 299 384 21 207 310 429 279 318 350 125 399 262 343 402 258 17 397 315 101 430 375 145 111 307 312 55 361 115 128 377 256 129 134 346 137 34 166 247 38 414 193 347 29 28 160 177 75 208 30 234 215 81 76 44 328 292 367 232 22 183 154 74 97 51 61 251 119 52 424 320 179 27 109 100 428 151 419 206 342 378 415 92 37 268 175 329 290 189 73 84 153 171 333 99 240 65 103 3 276 106 326 396 214 317 303 105 176 264 218 69 248 142 150 47 271 283 301 300 332 120 152 313 165 273 354 191 233 293 23 390 199 8 58 287 204 33 337 174 139 270 121 403 406 79 136 149 314 196 370 338 110 211 259 355 40 12 427 282 46 263 197 60 381 298 325 19 98 254 426 401 194 118 369 126 372 127 48 59 335 316 269 433 156 155 124 173 210 224 96 327 143 198 417 409 242 296 11 186 246 304 243 324 238 387 432 25 410 388 132 53 13 18 68 227 353 382 357 122 405 380 88 249 108 260 336 302 255 404 236 41 219 385 229 311 180 418 135 225 226 72 245 138 241 102 112 181 182 277 213 42 148 146 289 223 222 4 322 425 423 157 32 408 49 5 274 107 212 228 89 400 104 286 35 392 391 54 91 15 +231 67 220 395 51 63 39 393 109 237 159 310 163 203 31 50 7 202 419 147 430 29 356 266 201 305 291 82 411 154 103 99 331 1 376 165 113 253 294 379 207 52 141 372 261 362 93 338 130 313 230 30 20 412 365 196 363 78 56 239 12 64 97 247 190 256 152 70 334 295 100 301 144 349 128 208 352 140 116 26 119 348 192 123 330 235 101 95 323 133 90 288 306 267 405 297 384 86 131 318 66 409 312 281 206 293 250 209 259 422 368 187 420 346 431 114 339 197 315 340 416 77 285 329 9 268 217 24 34 377 234 366 347 394 161 386 272 216 112 360 240 284 413 332 302 359 415 117 28 179 42 298 87 45 232 351 43 62 264 398 262 79 367 85 55 244 242 350 164 218 94 373 434 236 189 191 14 308 397 44 278 265 71 106 345 258 357 167 168 275 198 65 320 84 212 68 246 124 361 121 177 57 73 417 374 142 204 169 427 16 342 170 283 146 319 414 53 421 36 271 396 137 199 175 407 176 371 10 6 364 158 354 151 134 188 46 185 33 378 370 18 358 61 392 428 115 257 321 200 433 174 135 111 401 403 157 426 32 120 280 221 136 125 418 166 260 178 406 383 299 184 195 322 309 399 435 380 252 162 245 251 173 47 156 205 344 2 314 324 132 279 303 139 105 381 37 83 74 273 341 375 40 155 214 241 316 69 335 193 211 27 60 317 326 276 425 304 72 118 96 238 387 224 385 429 194 149 325 172 222 424 243 233 270 282 249 311 150 38 254 277 21 210 181 11 145 410 226 287 402 225 143 160 3 186 353 382 328 108 432 183 75 48 129 182 22 248 35 343 59 390 98 290 215 54 269 23 8 104 17 127 227 307 408 292 296 88 327 5 255 102 89 41 107 138 423 388 333 336 223 110 300 58 148 289 122 404 13 25 213 171 19 229 153 219 76 91 92 4 126 355 49 286 274 337 389 81 80 391 263 400 228 369 15 180 +31 422 411 237 113 295 147 253 64 334 356 266 275 163 85 192 250 413 284 420 116 230 158 341 50 123 365 187 20 373 294 431 307 374 131 184 159 2 308 56 63 14 306 86 93 202 375 81 9 244 309 435 101 239 424 216 261 170 134 348 45 36 372 331 141 169 257 145 383 164 161 283 279 1 203 144 260 26 220 94 315 321 319 57 16 330 190 281 235 345 78 407 349 62 340 70 312 386 363 205 28 128 207 280 83 178 172 291 10 333 38 339 272 51 65 376 99 7 67 412 106 362 100 432 92 185 121 140 366 88 276 197 305 74 344 37 90 46 256 388 421 162 175 361 326 109 265 328 21 82 402 352 191 22 115 415 198 343 290 139 201 398 6 346 71 179 167 168 165 200 142 351 371 119 378 318 130 133 429 176 297 193 76 262 87 97 215 114 153 267 195 61 75 292 298 188 399 259 34 127 43 156 80 30 389 177 310 137 303 377 125 258 428 332 394 419 254 364 247 313 84 430 27 427 360 381 221 52 40 240 66 117 174 149 299 359 232 317 227 274 199 414 327 110 209 347 105 251 358 231 354 433 24 296 288 300 226 252 426 368 217 194 77 146 55 384 379 397 301 44 111 355 154 342 8 329 166 278 287 73 380 409 311 39 314 273 79 17 405 196 425 248 182 243 204 126 138 282 120 208 95 150 335 3 29 13 41 186 241 69 263 233 173 59 152 135 277 238 103 225 171 47 183 72 151 12 264 129 406 236 32 245 434 393 350 293 271 108 242 96 229 189 33 417 302 289 369 367 320 222 234 155 58 390 249 285 218 60 416 49 224 136 23 403 387 268 157 98 212 338 68 357 122 89 324 42 408 160 304 325 255 418 223 104 143 337 353 382 206 214 246 270 211 401 48 228 181 410 210 391 213 112 385 219 395 18 11 53 396 269 180 132 370 91 404 25 5 124 148 316 286 107 118 19 323 400 322 4 102 54 423 336 35 392 15 +63 379 384 141 159 409 163 133 430 362 192 67 259 51 26 220 202 297 203 136 128 230 411 412 82 109 103 147 237 39 95 416 200 308 131 330 130 261 312 352 161 113 267 305 217 169 183 170 144 293 31 331 365 334 34 50 69 291 349 1 302 247 191 294 60 64 164 435 90 401 160 310 214 258 231 276 341 285 288 99 201 315 348 306 20 173 376 346 329 56 154 190 79 367 361 125 318 196 350 218 368 119 339 278 61 165 397 66 117 239 413 363 395 403 205 208 78 197 93 57 111 172 73 332 151 86 351 14 123 178 256 309 253 345 266 167 168 373 24 207 187 279 281 372 7 356 206 342 264 52 112 120 114 98 118 84 415 265 314 295 9 29 110 101 366 216 121 85 221 410 417 209 229 393 83 188 344 386 370 195 43 116 62 434 419 140 177 236 433 387 204 340 420 155 23 371 272 198 28 275 135 115 189 262 338 378 145 97 268 106 323 427 381 194 298 271 46 280 321 431 319 55 303 134 374 176 124 179 316 10 184 137 174 181 94 240 428 139 88 47 175 232 284 243 364 414 71 250 252 421 418 16 422 171 158 317 35 426 77 270 359 360 396 70 254 324 223 406 304 424 44 222 394 244 380 282 234 150 242 75 87 65 325 432 301 182 407 149 74 166 358 405 33 389 224 357 105 347 186 36 233 156 343 42 307 273 251 225 132 212 193 38 153 398 354 399 257 313 287 18 53 385 211 408 235 353 382 59 100 8 292 68 322 89 210 157 199 22 48 6 269 17 25 249 143 76 27 296 283 45 375 92 40 185 108 290 162 388 328 423 102 58 152 377 289 320 260 425 383 227 311 30 245 241 148 226 41 104 213 248 335 142 11 274 146 299 2 32 81 238 37 127 3 326 429 12 107 126 49 336 13 80 400 333 263 219 255 96 129 404 19 21 300 286 138 122 4 277 355 215 390 327 72 228 91 392 246 54 337 402 5 369 391 15 180 +18 187 27 401 295 9 57 203 237 107 4 63 202 113 131 93 56 240 321 329 159 348 400 323 331 31 411 431 50 291 250 66 70 190 141 64 379 220 52 82 201 334 144 20 412 430 281 94 163 354 154 39 266 173 67 150 216 65 119 37 149 247 356 253 161 339 101 298 189 338 410 352 207 218 122 387 284 197 170 1 169 123 388 307 71 384 306 349 116 78 350 26 120 90 47 48 294 192 231 360 362 259 239 359 24 164 376 97 99 422 198 315 114 175 312 368 73 330 374 275 102 257 363 68 297 14 42 185 414 428 109 267 165 287 345 22 420 130 103 305 244 51 79 230 346 133 95 308 283 38 234 309 84 375 413 242 182 385 262 147 318 367 221 351 177 288 310 386 272 249 117 256 34 178 409 128 121 25 370 278 424 118 208 261 395 195 204 342 377 28 258 268 139 344 415 172 435 340 174 285 200 108 16 49 196 209 206 300 7 125 232 140 88 127 235 106 343 45 391 62 98 53 33 378 426 417 365 364 191 184 214 366 233 111 142 380 176 276 10 46 373 61 137 271 188 100 326 245 211 86 6 270 434 427 296 328 264 301 194 403 279 293 421 303 320 92 105 145 217 135 418 157 179 171 236 87 241 162 115 332 429 433 394 112 302 248 252 260 210 263 43 416 341 167 168 77 12 238 40 311 290 29 158 36 254 243 124 372 317 407 11 226 156 126 44 397 160 193 85 304 389 155 148 361 60 199 222 55 143 21 398 314 2 74 225 83 383 358 81 405 347 333 17 371 280 181 134 151 213 30 432 392 393 215 292 32 69 13 423 273 153 313 316 381 265 136 223 219 205 138 251 396 59 322 75 327 299 166 353 382 419 183 146 76 229 399 180 282 58 337 319 269 23 289 110 96 72 227 369 425 357 406 402 335 41 277 212 286 35 89 324 8 408 5 186 132 80 129 152 228 390 355 224 255 3 404 104 19 336 325 15 54 274 246 91 +154 31 220 430 64 101 203 331 202 52 141 163 237 315 116 338 165 93 82 357 239 1 119 39 295 50 305 179 350 207 310 187 250 113 144 405 376 26 227 259 99 94 51 222 258 412 56 208 124 106 201 190 130 78 349 161 216 159 95 63 340 362 427 204 128 123 291 67 192 133 352 297 86 256 384 431 411 334 312 318 288 253 379 90 197 104 191 164 85 61 356 247 359 254 275 53 298 360 62 70 103 244 225 423 425 380 117 147 231 335 363 386 131 330 406 257 115 361 170 169 381 368 367 348 378 320 43 198 100 339 294 109 393 241 121 232 226 242 308 261 266 188 346 7 262 302 420 311 79 409 236 12 235 397 422 97 343 125 341 206 265 364 396 91 196 185 413 306 276 230 146 309 366 213 323 218 114 193 224 28 433 403 284 73 195 281 84 293 240 71 194 57 395 351 20 211 30 332 354 13 162 200 9 317 373 342 166 419 137 177 221 424 371 321 301 66 415 46 5 267 264 228 209 414 435 134 156 35 416 365 229 3 210 428 347 319 160 387 394 417 432 111 278 217 175 345 58 14 110 112 10 272 223 279 184 238 304 344 214 329 16 234 273 233 145 249 322 54 34 173 219 303 183 407 290 313 88 245 118 426 120 40 282 77 374 140 260 292 434 45 280 167 168 268 158 139 421 418 65 151 89 408 23 29 74 271 181 299 199 283 370 60 72 178 105 69 398 155 136 6 157 172 87 55 243 314 149 252 135 150 377 37 372 24 287 307 33 189 96 59 326 205 353 382 358 333 285 32 75 83 143 142 174 132 8 92 127 126 68 21 399 255 383 2 38 375 186 171 296 270 182 316 289 404 17 27 36 401 389 385 277 246 42 22 152 248 176 392 212 215 129 47 148 108 44 81 48 327 388 429 76 98 390 402 18 325 138 15 41 122 300 11 269 324 19 355 328 25 153 49 263 102 251 369 286 410 336 274 337 180 80 107 4 400 391 +56 113 291 377 295 131 207 237 31 50 220 198 70 197 272 163 63 348 66 208 203 93 68 307 150 202 242 231 130 78 57 33 95 64 239 218 345 334 9 187 234 108 356 116 375 159 321 350 141 149 44 253 82 1 139 374 352 266 260 182 281 360 388 368 331 359 250 430 144 344 39 114 201 109 24 339 101 329 310 115 379 61 94 216 99 338 411 298 122 376 67 14 154 190 346 71 362 49 349 26 162 261 363 367 256 52 420 340 287 288 373 431 247 323 47 20 422 259 151 123 100 312 332 257 230 297 294 161 178 119 166 306 7 27 90 343 86 65 192 127 111 38 169 120 240 175 409 147 361 73 278 412 184 407 170 293 185 305 264 103 258 393 133 275 137 308 262 51 301 128 296 85 189 97 351 401 48 318 215 267 235 30 196 88 172 121 365 79 424 284 337 354 413 16 315 309 244 385 177 386 395 92 195 428 320 42 193 265 28 106 134 280 330 10 364 191 414 221 164 34 328 380 140 6 206 211 405 167 168 209 55 417 248 268 77 429 105 102 313 241 299 370 217 12 37 222 282 419 232 285 435 210 62 18 117 383 384 118 372 347 387 378 165 416 179 421 124 397 276 341 156 391 245 304 342 22 74 173 434 252 152 142 188 226 410 125 302 53 427 143 366 84 157 398 290 199 204 87 418 25 194 21 158 205 403 200 279 145 381 107 292 29 283 69 2 317 316 311 45 277 40 236 72 254 46 335 227 174 415 43 425 83 112 432 249 136 271 273 183 402 225 426 176 75 303 76 353 382 243 371 394 213 11 60 238 138 171 433 319 32 223 233 181 155 396 214 13 314 270 358 146 126 153 36 326 8 135 333 357 160 300 219 212 251 389 327 325 17 322 324 246 423 58 5 229 81 399 129 4 406 148 89 228 59 404 132 98 110 289 355 274 369 96 408 23 3 255 104 224 80 263 336 392 269 41 180 91 186 400 35 390 286 19 54 15 +237 187 315 1 298 64 141 318 331 39 258 50 411 185 192 127 116 161 117 295 79 125 334 289 128 90 121 362 253 288 204 144 203 163 233 119 247 159 378 201 239 430 202 218 130 93 26 297 364 156 113 62 264 343 291 177 361 387 188 373 222 312 179 164 421 94 376 413 84 181 123 99 191 131 339 256 240 310 381 216 249 190 69 352 165 380 46 58 243 51 232 403 265 220 78 244 31 379 56 262 245 356 82 294 57 386 250 340 147 433 409 397 367 273 241 360 28 359 259 432 88 424 230 170 133 341 321 52 351 366 206 194 110 197 20 60 254 276 106 363 350 425 344 169 420 95 349 195 105 261 287 115 278 111 196 198 428 70 412 272 73 14 306 422 34 235 85 9 145 214 345 150 38 109 296 7 59 305 126 101 149 303 47 257 162 304 223 348 354 317 431 252 427 157 329 86 414 209 221 226 426 154 284 10 24 124 65 63 275 100 330 158 43 139 290 371 27 67 346 419 333 229 393 406 231 208 368 97 77 280 342 319 260 213 72 23 146 175 178 308 282 30 134 217 37 33 374 143 155 166 332 61 225 13 120 320 236 211 16 365 96 370 353 382 227 184 112 384 434 103 396 160 66 389 199 338 242 314 335 401 292 407 302 357 193 200 326 405 44 307 210 372 266 137 114 267 395 12 55 74 22 75 234 21 301 182 32 92 8 108 293 415 89 2 283 71 40 299 285 6 309 45 207 313 53 122 375 268 435 68 271 311 398 35 174 3 417 104 140 408 224 42 347 277 5 205 132 118 358 383 377 394 323 270 238 219 172 87 399 251 148 355 416 142 324 136 25 186 29 228 418 151 176 423 279 167 168 328 248 152 171 49 173 183 385 404 48 269 322 255 327 300 83 98 81 41 189 17 402 281 18 102 429 215 212 153 388 410 246 337 129 135 316 325 15 91 107 4 76 390 369 19 336 36 11 263 138 54 391 400 274 180 286 80 392 +315 67 7 50 363 310 51 163 430 109 99 203 305 141 223 259 128 409 86 393 202 256 147 165 119 373 365 220 82 30 113 406 1 379 63 85 56 103 176 291 106 159 237 190 29 405 187 297 412 427 323 362 331 69 214 131 34 285 43 90 247 164 411 222 231 144 240 267 384 236 288 57 302 136 387 133 417 348 380 192 161 294 97 276 423 312 334 64 376 246 73 93 88 258 278 208 320 28 419 95 318 79 356 415 254 111 9 174 152 177 84 378 125 140 313 129 230 173 183 135 61 295 298 188 284 311 264 20 367 155 170 31 339 235 229 175 226 352 434 201 117 123 239 281 104 361 227 395 130 169 293 225 179 12 39 193 154 206 397 218 253 23 13 145 143 273 283 401 374 321 78 94 62 424 386 178 346 157 418 368 403 357 26 265 137 52 24 335 241 151 204 139 413 338 70 381 330 251 207 314 194 306 27 47 261 213 282 349 279 120 89 46 308 243 366 115 266 211 3 425 210 394 101 191 341 345 35 351 134 91 105 6 420 421 238 303 426 196 370 347 354 350 121 232 10 275 398 252 162 25 199 37 189 422 301 224 209 217 428 116 16 408 431 200 150 396 38 185 255 216 221 22 414 197 329 44 18 340 219 410 433 228 149 124 435 87 372 98 186 364 432 114 272 132 102 304 332 317 324 65 5 160 319 342 126 242 77 195 309 359 262 48 360 328 60 205 14 268 416 74 158 343 344 71 167 168 385 375 172 166 156 371 32 325 198 2 292 249 92 184 402 45 358 280 233 171 326 250 59 322 75 11 118 271 307 404 146 100 83 244 142 42 21 66 407 399 234 181 72 81 55 58 388 33 290 355 182 353 382 8 15 287 257 333 148 40 112 212 153 53 4 377 316 248 68 110 296 138 245 54 274 390 260 327 383 41 270 429 300 108 96 400 289 17 299 122 127 269 107 180 389 76 36 215 277 49 391 286 80 263 337 392 336 369 19 +70 163 78 131 95 113 50 230 411 197 123 291 63 1 326 189 367 240 202 237 93 348 239 281 203 56 198 208 242 116 31 207 64 130 318 250 79 20 71 279 268 310 264 82 365 61 101 308 413 386 297 94 161 190 73 374 218 195 301 275 345 159 351 47 176 412 57 424 282 334 363 90 14 254 174 9 166 361 115 134 139 103 191 192 276 172 271 340 338 69 295 184 270 201 144 431 373 84 278 26 384 86 37 114 170 169 211 97 432 210 294 259 193 321 344 236 347 360 88 309 55 261 389 284 257 315 121 194 356 359 206 27 216 232 34 92 305 352 181 235 433 62 380 28 327 375 167 168 132 430 258 292 262 46 331 409 162 362 378 364 269 376 313 405 126 77 187 306 247 366 339 10 75 241 316 265 129 119 312 7 127 283 387 415 74 175 111 420 220 217 332 87 234 214 125 256 407 16 266 120 141 182 298 154 341 89 272 303 233 152 98 280 243 185 222 128 99 85 330 287 149 370 105 106 76 349 273 307 137 178 249 81 422 379 381 145 343 304 342 403 147 39 22 368 253 319 255 196 108 414 43 109 100 290 138 267 158 296 248 143 401 204 177 53 223 395 199 179 383 155 426 153 142 51 65 358 117 435 428 311 328 353 382 320 40 171 421 188 397 408 30 6 215 140 244 333 32 173 393 8 221 151 124 68 425 209 346 251 21 416 110 136 399 285 52 59 200 42 157 417 45 112 150 229 133 96 231 286 58 3 83 2 427 402 205 160 186 377 12 323 302 329 277 227 263 246 350 118 41 394 398 156 434 317 372 354 288 314 13 33 289 24 212 66 17 335 23 60 322 371 419 183 418 122 260 406 226 80 299 44 67 164 38 238 325 213 35 404 252 388 355 219 228 135 225 324 148 385 396 25 224 293 146 36 18 29 337 48 5 429 357 11 102 390 423 245 19 72 410 369 274 49 180 104 165 336 107 15 4 300 391 400 91 392 54 +231 39 237 201 220 331 51 192 187 141 67 64 85 430 310 356 116 31 163 288 113 86 203 63 119 82 247 428 350 161 291 253 384 109 380 266 99 250 298 295 362 411 334 159 56 395 412 93 359 294 360 435 169 348 239 190 312 62 202 352 244 170 235 305 320 1 196 379 147 130 343 297 78 275 95 66 278 121 315 50 208 317 284 24 179 79 413 364 308 43 94 354 52 7 100 12 90 386 339 177 205 333 365 165 414 128 123 257 431 405 14 185 57 133 125 372 30 425 241 262 301 363 29 204 351 340 258 318 230 420 373 181 200 422 240 374 321 154 313 290 9 216 432 254 261 114 144 131 366 393 330 103 227 306 117 106 26 408 280 101 188 232 164 416 421 256 433 335 378 341 222 206 415 97 60 70 368 309 156 20 71 283 304 193 191 259 197 28 207 42 361 32 10 75 209 140 22 55 145 157 184 347 376 346 74 349 195 419 137 387 214 73 396 370 40 243 403 72 5 84 236 134 401 58 172 299 342 213 252 245 272 426 367 427 112 158 267 226 142 37 264 199 124 120 329 434 162 166 338 311 46 357 303 319 198 129 249 424 171 265 127 155 248 69 115 225 345 296 218 173 178 289 281 111 87 45 83 238 406 371 126 381 61 217 233 13 300 302 429 276 211 332 234 175 417 397 323 423 65 16 110 407 377 152 316 326 2 242 375 118 287 219 210 53 105 38 139 344 27 146 183 251 6 167 168 285 33 409 34 273 194 404 268 314 229 279 21 35 48 149 160 135 174 25 398 68 88 59 98 47 418 176 271 136 394 77 150 186 263 260 358 151 327 353 382 143 223 224 8 277 36 399 293 189 41 92 228 282 292 3 104 132 355 322 102 325 270 221 383 410 89 402 108 44 96 255 153 182 81 18 122 148 23 324 388 328 389 337 76 54 336 307 91 246 369 392 390 138 11 385 212 215 269 17 391 49 80 286 107 19 15 180 274 4 400 +39 430 128 203 220 305 141 202 95 154 67 331 61 159 352 50 411 51 1 163 315 31 147 192 259 230 217 362 121 310 56 161 379 258 237 393 26 103 20 207 99 64 101 405 318 288 338 63 52 419 297 130 231 363 293 165 376 90 190 109 291 144 34 119 170 247 113 169 93 53 232 218 261 133 204 82 384 256 116 86 254 187 114 106 216 342 350 201 28 117 134 412 244 378 94 409 295 294 329 365 151 104 191 196 222 268 195 271 253 115 197 239 112 208 79 265 78 267 227 334 131 386 57 346 264 349 236 308 85 123 366 367 357 320 316 124 91 276 298 416 211 302 427 368 250 84 7 111 395 403 323 312 164 381 279 181 275 340 221 345 177 401 223 179 46 178 70 206 339 136 330 189 88 14 272 433 278 266 225 301 210 167 168 77 198 344 356 240 281 370 174 309 413 343 270 306 425 200 245 397 361 60 332 43 422 235 160 421 406 233 62 262 372 423 139 380 317 394 156 125 209 420 105 188 97 185 322 282 214 194 341 120 176 69 71 347 431 158 242 58 428 284 33 304 89 348 9 285 280 358 226 55 249 292 73 415 47 152 424 172 66 87 319 29 44 374 273 364 313 269 100 205 373 24 229 110 184 241 399 359 392 257 157 30 387 303 137 360 162 38 417 354 311 396 432 414 243 351 72 407 328 335 333 17 234 8 75 42 186 132 175 140 398 118 18 321 19 435 37 108 98 426 252 324 224 246 173 146 74 289 10 12 228 65 199 212 13 135 27 385 166 155 145 213 35 307 45 68 150 219 418 429 40 143 171 283 16 6 142 149 32 183 371 434 48 36 83 96 255 138 23 193 22 287 59 377 299 182 92 290 353 382 148 410 314 238 153 296 15 389 54 408 383 215 25 41 3 260 277 248 325 251 286 388 127 126 336 326 5 2 107 402 129 300 76 102 390 21 122 337 355 81 375 274 263 80 4 11 400 369 404 49 391 327 180 +26 192 237 368 85 189 31 334 64 295 250 159 175 93 259 86 331 351 163 216 342 350 174 82 94 281 50 258 170 413 411 306 169 218 294 420 116 256 1 267 177 46 239 90 176 428 101 66 56 291 230 191 125 297 154 123 28 381 220 161 343 346 20 298 332 290 430 318 352 247 78 113 431 373 424 197 378 167 168 65 412 310 195 70 242 308 349 52 16 200 115 257 14 377 209 253 119 240 162 208 340 147 198 160 317 190 367 63 92 348 106 275 345 211 304 99 185 131 127 272 45 67 329 341 235 158 266 362 166 37 10 145 254 120 422 261 319 9 6 173 109 108 315 36 311 179 384 232 39 149 210 344 43 227 321 141 204 276 196 57 379 130 214 262 287 61 199 416 312 284 361 365 435 202 79 133 105 289 38 408 326 156 103 128 301 333 273 22 59 386 97 187 354 144 140 309 124 178 72 360 278 433 264 380 399 356 207 184 303 425 203 60 51 265 296 241 201 233 305 359 7 279 335 134 370 117 73 40 394 292 121 363 421 100 293 415 338 234 414 222 81 347 426 374 12 358 357 71 283 432 427 403 330 366 226 137 245 206 339 32 148 48 194 2 146 34 77 231 150 151 111 221 95 423 139 243 138 260 110 69 387 229 371 288 41 383 255 353 382 215 286 58 323 118 248 188 280 320 62 398 213 88 307 13 33 244 249 282 47 183 419 132 217 171 83 44 21 114 328 102 376 409 402 407 219 417 68 299 153 313 225 84 364 172 252 8 406 24 76 429 385 180 17 238 30 112 164 302 74 397 223 434 181 27 126 285 5 393 395 122 29 87 396 3 80 42 405 369 263 418 53 55 251 224 277 327 372 136 228 390 300 375 236 25 75 212 142 35 157 401 389 314 193 404 143 155 165 104 98 182 322 89 96 388 186 268 54 355 19 325 410 205 316 152 18 23 129 11 91 49 337 324 336 400 135 246 271 269 391 4 107 270 392 274 15 +376 159 308 309 163 50 63 116 338 340 1 98 172 169 170 237 202 154 103 294 272 52 203 329 352 259 56 77 331 348 412 93 71 78 113 20 345 128 133 386 263 101 115 123 346 351 197 291 239 198 379 171 82 250 144 95 253 326 295 130 70 192 26 411 334 94 426 339 275 431 207 230 258 328 378 428 178 16 34 265 134 190 175 362 208 173 344 141 231 57 120 266 310 282 62 218 67 349 64 368 420 90 323 293 189 374 61 201 422 318 65 267 367 409 46 278 261 312 359 360 327 298 99 158 14 248 234 279 356 7 413 92 33 131 9 147 10 363 31 109 430 264 268 195 40 161 284 39 51 247 211 245 257 193 361 206 210 79 87 297 240 106 204 414 341 350 421 220 407 424 435 114 373 342 375 149 24 288 433 347 66 188 281 187 100 138 305 365 177 370 243 216 215 302 364 45 191 358 117 111 22 84 28 276 164 283 58 179 292 415 174 252 366 121 88 332 301 47 38 86 43 403 285 377 137 185 432 60 354 242 396 233 336 355 273 194 6 232 23 393 73 287 321 372 315 129 48 394 398 140 151 397 199 176 217 74 119 387 150 153 196 97 399 317 410 166 75 124 262 156 105 139 260 304 289 419 167 168 395 8 416 271 145 330 290 303 132 42 313 427 183 385 306 44 383 381 236 53 125 2 256 127 235 307 380 270 277 249 160 181 148 229 333 55 85 162 392 209 21 205 200 37 429 434 353 382 319 165 102 146 112 299 408 320 3 384 244 59 280 17 25 241 401 325 214 184 405 155 69 254 221 118 81 110 18 157 389 11 417 152 27 251 269 316 371 68 335 224 30 29 402 223 83 143 212 418 126 135 108 41 314 89 180 96 72 296 35 222 406 343 357 219 311 369 390 142 32 122 300 19 76 225 400 324 226 404 182 213 36 337 186 255 80 136 13 246 388 4 425 12 238 286 227 423 391 49 322 274 5 228 91 104 15 54 107 +163 159 50 141 192 362 1 237 67 203 331 103 310 31 256 39 128 376 7 56 109 294 202 288 113 258 393 297 338 34 147 430 315 63 247 259 363 305 95 20 51 86 220 154 207 411 61 373 64 239 231 264 356 230 341 26 348 235 318 352 78 253 144 265 208 131 349 130 196 82 365 114 379 397 419 99 409 112 190 173 306 121 116 291 85 276 218 267 324 412 435 71 70 261 350 345 101 201 312 367 384 79 325 209 339 330 251 240 133 368 161 167 168 386 217 191 295 170 169 69 403 97 214 52 347 119 24 57 90 431 134 195 236 244 319 268 111 93 370 250 334 115 416 420 117 221 216 407 165 284 361 29 23 123 385 340 75 278 106 413 308 275 47 197 351 415 346 398 189 424 292 44 342 9 74 372 301 298 344 164 100 151 178 152 323 271 257 428 204 124 360 222 399 285 211 8 187 359 73 405 293 140 200 66 166 46 433 282 136 394 281 65 358 88 303 332 283 389 422 266 254 175 406 212 162 53 395 210 329 232 87 401 313 84 326 16 270 77 387 125 137 160 427 62 223 184 198 206 38 36 28 273 181 188 309 321 304 279 14 383 414 396 10 307 272 302 98 68 354 60 366 225 59 432 242 176 380 33 421 174 30 205 229 320 378 89 172 120 374 243 434 132 145 193 2 45 94 153 55 42 12 177 262 252 269 158 364 83 234 226 155 157 194 417 183 371 314 245 142 58 280 37 118 43 105 343 328 425 21 129 408 143 241 322 317 185 311 246 81 13 381 213 255 35 233 17 335 179 274 377 199 357 426 171 390 260 126 353 382 299 402 287 227 156 135 110 182 149 249 228 333 248 418 139 32 27 215 148 186 6 300 410 18 429 76 40 127 238 286 72 224 80 296 150 355 22 375 404 48 25 316 96 423 327 146 290 11 108 336 3 5 138 92 289 219 400 277 263 4 104 41 388 15 180 102 49 19 369 392 91 391 337 122 54 107 +377 237 272 131 234 113 66 291 208 33 139 260 150 207 31 108 93 50 295 348 356 198 56 64 375 197 334 94 220 294 239 149 287 114 70 321 411 78 187 101 95 360 127 340 359 296 331 242 163 253 346 374 298 144 73 202 1 247 350 159 120 203 100 301 82 275 63 57 430 343 261 216 363 201 413 115 185 354 264 20 349 147 79 428 116 123 52 332 278 386 9 28 99 250 218 323 14 130 352 379 161 414 367 190 310 312 230 151 412 368 257 128 422 240 297 177 178 119 141 318 134 378 90 424 266 232 293 407 166 338 192 215 373 306 27 39 381 8 196 235 256 262 345 68 365 315 122 105 61 16 169 308 267 268 118 199 170 121 339 282 281 103 10 193 86 194 259 111 154 431 184 387 258 48 71 284 97 40 85 37 156 351 231 106 65 45 191 51 326 409 245 133 47 361 304 69 421 344 109 366 209 124 26 288 434 265 280 137 429 398 233 353 382 6 173 41 307 276 117 364 376 24 384 290 92 84 38 125 271 311 62 206 55 162 7 347 372 417 285 172 140 362 358 46 303 43 383 370 432 252 388 329 433 179 236 415 42 283 305 88 30 380 328 299 25 341 145 34 126 182 302 204 189 60 102 181 142 21 316 317 410 319 248 313 335 273 22 243 394 279 44 420 205 244 2 337 397 277 254 320 327 49 241 342 427 67 309 72 183 330 425 188 200 211 138 175 136 419 270 416 32 221 214 426 418 83 155 403 195 333 74 164 81 210 153 405 158 87 435 77 11 152 167 168 249 12 371 393 406 227 146 399 112 222 355 58 357 255 5 217 238 132 76 171 402 401 219 395 289 165 213 75 89 143 408 59 226 389 223 396 385 176 423 13 314 110 96 369 36 269 174 104 186 98 17 390 157 53 229 4 251 228 148 225 18 160 3 129 404 292 29 391 135 322 246 212 300 324 80 325 263 224 23 91 107 35 180 400 336 54 274 19 392 286 15 +350 31 113 203 237 202 131 412 82 159 250 295 375 64 308 50 187 63 348 208 116 163 93 220 207 374 101 130 239 266 373 66 70 141 422 275 331 297 298 346 309 334 253 291 356 147 368 411 261 78 299 52 39 258 56 1 312 95 343 94 362 169 338 272 352 328 178 192 435 420 377 62 162 61 359 170 428 360 386 184 197 198 288 345 26 14 340 351 430 57 218 376 111 421 156 230 164 173 120 65 71 330 326 242 339 154 172 51 310 16 109 77 85 379 201 134 190 209 280 140 260 363 416 341 144 103 133 293 431 378 33 216 179 28 414 247 365 119 284 100 333 123 7 257 9 235 99 166 307 204 383 380 115 306 121 106 22 117 40 305 165 128 282 145 177 354 424 321 344 364 161 276 367 366 215 407 349 320 79 6 124 294 10 240 72 262 267 408 151 415 137 67 88 234 193 259 265 409 264 231 304 196 90 73 191 332 43 2 248 125 122 185 244 167 168 277 347 200 175 24 290 17 315 319 263 83 245 114 195 329 429 205 12 158 76 302 232 318 229 281 86 300 252 256 37 279 221 23 155 361 20 283 55 327 84 199 241 139 217 46 188 206 371 434 278 53 21 413 317 58 75 381 48 384 171 226 74 27 403 285 355 146 432 149 127 426 296 301 335 126 287 108 254 323 303 38 59 427 425 417 372 150 153 92 342 13 222 236 243 213 25 433 30 311 42 3 214 225 268 97 370 45 87 405 325 47 227 44 34 224 11 110 211 251 160 183 69 135 314 387 289 194 249 8 313 81 105 397 176 406 5 157 29 210 395 102 369 273 337 32 41 219 118 233 336 143 398 80 402 271 19 36 270 418 98 223 389 142 353 382 148 174 292 388 393 60 423 238 186 410 68 89 189 316 385 394 399 181 18 357 358 104 96 396 419 404 136 401 182 112 138 132 91 35 228 255 400 274 129 4 324 322 269 212 152 180 390 49 286 15 391 107 54 392 246 +98 63 113 159 411 291 295 184 328 31 374 128 237 375 64 14 71 348 239 170 192 164 163 306 169 201 308 66 265 356 93 203 422 123 193 339 9 57 56 253 120 309 82 50 202 284 420 1 173 424 141 326 94 373 261 294 117 331 140 351 376 131 365 147 62 280 412 61 76 172 281 262 78 230 362 95 327 145 200 190 431 130 125 55 428 421 187 297 178 386 211 275 312 264 119 114 350 407 315 220 240 133 171 161 115 85 349 276 344 343 235 216 258 70 23 318 345 165 263 90 334 185 340 250 79 283 43 307 387 207 272 65 426 210 26 99 314 366 116 248 20 363 435 218 188 279 321 27 86 137 16 183 73 179 149 177 22 329 317 364 251 320 323 413 69 101 330 232 214 352 176 197 383 67 368 144 278 7 296 341 75 266 45 378 434 175 267 252 409 304 92 273 195 135 259 81 287 208 28 242 384 97 189 166 74 206 397 111 10 282 406 156 257 243 433 310 37 303 361 46 244 432 298 198 105 106 51 209 40 372 127 247 103 379 403 102 2 256 401 360 158 233 398 194 59 204 88 191 21 12 109 342 229 205 305 142 154 121 174 367 370 162 302 36 319 157 58 167 168 333 249 427 359 34 150 234 48 84 155 41 430 25 24 196 224 299 415 410 417 429 385 300 346 290 134 231 52 118 60 87 3 355 139 402 153 8 32 414 288 38 388 29 371 354 146 394 132 186 47 160 138 393 72 313 80 148 180 215 332 254 380 399 42 124 236 136 129 408 143 110 39 217 30 83 405 395 219 182 293 358 108 381 18 221 285 418 238 225 33 301 347 44 241 213 416 324 289 199 226 369 260 292 126 357 6 181 377 227 223 335 396 245 222 17 353 382 389 268 390 151 11 311 100 338 122 13 112 391 325 423 404 255 212 4 246 35 277 419 425 400 96 286 152 49 322 5 270 68 89 77 271 316 104 392 337 53 269 91 228 54 274 19 336 15 107 +56 159 376 203 50 202 65 329 323 57 334 348 237 141 131 66 385 18 71 362 295 173 63 9 1 345 175 240 352 64 272 220 163 411 24 187 379 103 363 144 307 67 253 431 192 93 298 27 266 133 70 190 288 321 309 149 259 98 47 113 401 291 256 409 33 90 339 424 39 278 308 170 344 346 331 338 218 34 250 211 422 154 150 48 169 174 102 115 293 230 130 116 31 430 4 284 412 310 387 161 247 197 20 312 189 374 210 128 164 95 26 261 148 82 151 178 185 78 368 38 351 328 285 420 61 207 68 198 101 46 315 216 99 94 7 354 22 123 258 120 88 276 350 221 378 177 25 283 108 410 14 52 117 318 365 267 281 356 28 119 172 287 305 79 16 147 373 206 264 37 109 383 375 196 239 282 134 176 191 42 403 201 86 188 51 204 342 214 434 121 297 262 84 349 139 106 111 77 209 416 279 10 112 428 413 294 367 330 359 138 263 377 360 200 208 231 386 73 165 340 292 194 421 366 182 426 243 275 195 232 415 217 92 303 414 171 125 326 85 427 87 44 137 234 260 245 370 300 127 432 252 114 332 97 268 233 429 388 301 249 244 45 394 49 43 145 105 153 156 6 347 122 60 361 265 55 40 158 433 23 100 392 184 157 302 304 341 81 358 280 384 314 306 62 380 343 155 223 435 205 215 140 296 235 257 236 107 417 273 393 167 168 248 320 180 405 372 407 381 397 400 143 142 317 289 160 162 316 135 29 327 69 126 59 271 395 199 335 118 398 419 124 270 17 242 58 179 399 418 369 83 32 371 396 36 353 382 53 222 229 30 290 225 311 364 166 181 254 299 255 8 241 2 333 286 391 219 406 423 183 11 226 146 132 110 21 402 251 72 89 41 96 193 277 336 224 313 357 355 129 389 152 322 269 390 74 425 325 13 238 76 80 227 319 3 337 35 75 408 324 228 212 404 213 5 12 136 186 19 54 246 104 274 91 15 +220 39 430 331 310 266 163 101 31 356 350 141 237 305 297 51 154 111 306 201 113 187 203 411 315 64 202 362 52 165 179 288 7 130 119 63 67 422 42 291 1 159 192 253 338 26 373 376 169 334 308 161 82 170 354 239 261 295 256 109 250 352 190 62 56 196 144 131 133 431 116 259 231 275 99 318 247 340 299 395 421 147 235 330 284 12 36 78 435 200 230 128 341 359 50 363 379 309 360 209 419 207 164 383 204 90 367 412 208 258 121 365 103 217 14 386 178 9 348 197 191 298 349 117 57 124 374 28 123 218 221 244 384 380 95 378 93 364 346 53 73 55 106 11 301 162 429 321 427 206 47 102 366 100 428 66 177 84 120 319 77 167 168 283 361 320 312 70 140 368 17 262 79 222 216 240 257 323 112 416 158 265 242 268 43 271 185 408 86 24 302 20 22 227 339 434 405 34 280 193 294 94 403 343 61 290 393 198 329 342 125 347 30 225 172 29 423 115 397 97 332 142 233 414 326 351 137 281 267 184 232 313 371 46 252 420 317 195 236 88 424 223 146 110 375 409 211 387 74 304 276 35 27 71 272 224 241 75 166 425 38 229 335 401 23 135 173 254 175 16 270 370 44 145 85 433 210 357 48 157 426 264 413 6 345 226 114 118 19 32 68 406 160 407 18 25 188 183 87 104 249 278 181 245 199 307 3 389 136 248 394 40 2 325 21 83 72 292 205 10 415 279 344 322 285 45 59 171 328 303 37 156 65 60 410 174 5 417 176 316 13 58 238 300 381 122 219 134 155 273 234 228 372 33 153 327 377 213 385 269 214 243 194 8 89 311 282 126 388 189 260 293 432 314 287 333 324 296 81 182 151 69 289 398 139 399 105 418 251 353 382 41 107 91 212 76 396 129 152 186 127 150 391 358 143 96 148 108 132 246 54 277 369 149 337 4 98 355 392 49 215 80 263 402 255 274 404 390 400 92 180 336 138 15 286 +133 349 359 360 340 351 237 414 159 259 346 63 61 1 31 116 82 40 93 275 199 334 83 354 293 73 203 163 64 295 239 365 78 306 130 412 192 297 312 220 250 52 345 113 207 202 305 282 190 184 261 256 216 350 378 100 187 379 353 382 28 279 367 10 230 154 232 197 330 253 101 272 94 373 428 86 281 352 430 85 266 331 317 131 384 183 115 20 77 90 99 50 66 415 338 422 313 170 128 191 57 169 319 240 308 14 119 198 179 309 178 39 294 244 368 123 298 193 9 92 347 208 70 60 291 194 231 411 118 65 43 156 62 413 258 146 292 26 335 341 151 381 344 188 74 431 267 326 235 30 398 21 149 6 318 296 45 139 79 310 140 95 195 177 109 196 173 304 366 161 307 97 356 167 168 287 380 166 67 406 303 262 141 427 247 201 56 46 2 218 98 51 364 125 144 137 127 68 164 276 361 16 343 257 290 376 280 348 387 342 264 420 377 374 417 7 106 284 204 302 333 407 435 126 206 209 371 108 175 236 327 362 432 416 120 150 75 147 22 37 155 103 33 386 142 200 321 59 162 214 174 265 134 87 248 421 233 157 311 383 241 370 221 32 121 403 301 105 424 329 363 114 285 393 171 88 273 176 254 117 158 229 148 36 44 145 96 289 5 332 227 234 136 426 299 339 112 288 165 124 418 268 283 71 172 425 111 81 314 429 399 189 433 205 278 84 153 385 252 224 38 243 358 24 397 315 434 409 80 3 53 47 405 185 249 238 242 213 245 401 400 408 48 419 357 76 394 219 375 69 328 372 72 135 217 222 55 104 138 8 212 29 12 152 226 324 186 122 323 58 260 42 402 27 23 13 160 110 251 225 369 395 277 325 228 270 34 271 132 320 25 389 11 143 263 355 223 211 215 404 286 390 255 181 410 316 102 89 300 388 41 182 246 54 337 336 210 18 129 91 17 396 269 35 392 4 322 19 423 49 391 274 107 15 180 +39 220 67 51 203 237 231 202 109 379 82 310 154 165 266 430 411 356 147 305 393 99 163 63 56 315 295 159 119 7 419 144 64 256 395 331 190 201 230 50 312 346 141 1 100 106 253 291 258 52 376 363 261 288 338 352 86 294 116 93 365 20 334 85 409 204 329 259 31 113 192 179 431 53 103 207 412 12 362 30 349 247 366 26 78 196 164 130 267 302 239 354 29 111 297 133 298 323 350 232 57 372 427 121 301 222 161 131 66 308 94 90 380 128 293 61 236 240 42 140 351 318 208 112 123 187 101 348 209 245 88 191 28 235 422 167 168 313 218 18 14 97 416 169 216 79 177 105 170 383 185 250 306 386 84 77 387 321 275 95 34 268 43 309 70 320 342 46 175 292 434 285 284 405 65 413 368 347 340 433 262 357 33 403 345 415 114 378 384 339 394 206 299 401 317 151 172 414 211 158 45 72 146 55 241 200 117 37 374 278 217 244 361 89 373 224 152 426 47 174 104 283 225 157 319 27 195 124 35 125 24 420 135 156 223 38 32 9 381 142 178 335 229 265 254 115 210 44 417 87 406 120 188 359 68 421 344 428 221 162 326 189 280 370 226 360 155 2 311 71 271 134 343 332 424 367 234 137 330 233 272 83 257 102 377 432 397 303 322 11 197 435 199 62 255 227 36 264 6 418 246 316 149 287 396 423 10 399 407 214 176 173 281 73 184 22 248 107 58 69 358 364 249 252 398 425 181 270 16 392 21 139 410 145 74 205 91 213 143 60 150 276 325 273 341 3 59 307 314 385 136 4 194 243 212 148 353 382 193 166 429 40 198 408 238 127 13 289 23 333 98 171 304 279 242 402 228 260 122 375 183 5 41 219 54 296 75 160 17 132 96 269 282 118 129 110 290 48 371 138 404 186 108 390 277 8 25 327 251 324 328 263 153 92 388 400 389 300 126 355 215 81 15 182 274 80 337 336 19 49 369 76 286 391 180 +310 31 237 393 64 30 201 113 51 7 220 185 295 99 412 235 239 12 93 231 67 119 312 411 123 373 207 331 313 190 356 306 82 375 115 383 144 419 94 139 127 163 334 395 368 374 242 234 202 159 165 86 420 187 71 50 272 335 141 32 320 351 149 430 10 348 90 266 161 63 150 208 29 116 246 240 350 435 287 291 381 37 339 2 262 85 97 427 95 361 152 253 425 340 109 343 301 258 195 20 347 352 87 415 26 326 380 357 16 203 321 311 290 318 431 78 157 250 177 254 137 164 305 384 256 70 372 79 21 315 45 238 145 142 125 130 296 117 62 360 9 405 47 179 402 166 14 1 406 428 196 413 424 192 345 376 106 359 281 43 162 422 363 297 156 379 319 284 236 216 344 397 120 241 386 417 247 317 69 169 33 414 184 364 230 349 221 378 131 204 398 170 362 133 273 213 155 333 288 40 304 307 327 309 39 308 226 209 175 418 421 197 432 73 52 191 298 193 22 280 188 57 199 38 61 388 189 387 59 283 267 377 261 74 42 66 124 278 367 394 404 243 370 84 44 232 408 182 206 198 28 158 140 100 167 168 92 135 227 108 429 72 260 173 147 303 129 128 8 252 249 219 56 88 154 255 126 65 13 396 5 178 354 341 146 110 265 46 194 96 407 34 3 366 391 101 365 222 58 24 68 257 244 174 143 214 6 160 259 245 275 434 233 264 323 48 332 433 104 299 314 325 289 89 49 205 346 426 276 17 399 105 403 122 55 218 251 353 382 27 358 342 25 330 409 322 225 103 217 176 132 148 401 279 181 183 153 324 294 416 36 369 200 41 83 302 23 282 172 248 75 300 54 329 263 77 385 91 229 355 215 338 121 328 224 285 277 371 186 390 211 292 112 210 212 337 81 111 114 98 60 11 293 171 118 80 274 35 223 389 136 228 18 76 410 102 423 19 134 268 15 151 138 400 316 271 270 286 4 392 269 53 107 180 336 +1 133 63 346 259 95 352 128 293 331 237 376 334 332 77 349 272 159 147 338 130 103 282 350 220 61 216 247 203 39 368 64 151 379 351 154 208 378 28 207 202 40 113 163 347 363 301 277 141 60 340 33 278 367 197 31 354 329 52 26 50 218 384 304 144 116 298 377 291 112 381 121 90 253 430 131 78 407 234 232 239 66 345 267 93 199 198 98 276 295 188 261 231 294 194 190 353 382 123 365 260 230 134 115 101 362 245 139 192 46 170 414 318 70 412 308 169 178 258 71 161 411 10 67 370 177 191 196 312 51 348 206 204 99 79 406 156 82 366 288 297 420 94 413 84 179 73 264 240 305 310 317 360 8 361 339 20 359 16 386 424 256 279 416 43 323 428 100 57 233 315 187 24 185 242 200 374 289 344 422 244 108 214 309 119 109 284 105 431 164 150 215 426 34 201 371 268 257 266 364 341 275 149 281 343 333 120 217 409 435 265 243 285 330 42 336 37 235 433 56 118 193 9 252 114 292 373 146 403 173 271 421 126 415 106 290 326 62 7 316 205 167 168 47 111 65 313 287 273 410 405 53 195 432 303 59 236 45 302 393 224 86 166 38 96 380 137 30 92 6 140 32 372 221 85 124 117 250 387 48 307 22 262 172 417 419 283 306 58 328 176 280 397 145 174 270 125 342 162 327 165 321 296 383 160 356 375 394 427 102 320 127 157 209 319 14 158 87 148 358 81 398 189 175 181 249 110 211 55 83 132 2 395 299 300 97 210 142 41 401 72 184 152 335 88 136 23 222 248 418 25 314 399 355 223 3 155 311 254 269 186 74 182 21 429 425 135 153 241 75 171 423 89 44 219 183 104 229 408 69 227 369 396 29 225 402 357 27 122 263 76 138 434 35 11 212 36 251 390 91 68 392 389 226 255 12 385 213 388 129 404 5 143 324 13 18 246 49 322 80 238 286 325 400 180 4 337 228 391 17 274 54 107 19 15 +377 131 207 291 208 202 234 113 239 272 203 220 66 295 237 64 33 163 56 260 63 242 82 93 321 108 70 159 266 57 139 356 348 31 375 114 78 95 150 379 216 412 73 253 198 101 197 411 144 27 250 94 352 166 50 287 275 1 261 52 190 346 149 9 100 350 230 130 312 137 178 374 116 120 151 422 201 431 187 298 115 310 215 111 430 177 281 154 109 140 185 334 345 127 51 278 296 338 339 354 407 299 141 26 305 128 331 360 97 294 367 359 99 307 414 262 340 231 74 218 349 420 376 344 55 276 86 343 308 293 297 248 20 39 428 267 133 68 61 301 122 413 258 106 257 118 368 363 247 164 306 184 123 103 240 169 71 256 173 193 424 192 161 75 170 232 211 6 90 14 67 384 162 265 373 328 172 7 318 28 315 147 79 182 134 105 124 16 24 156 362 415 365 259 285 8 284 85 280 417 205 386 88 264 329 378 119 409 245 195 209 210 351 125 332 387 401 302 380 309 330 158 268 388 145 319 397 189 165 235 403 361 204 179 43 366 252 326 383 323 84 429 288 320 77 236 37 381 10 342 49 372 191 167 168 196 244 65 40 337 62 418 421 423 370 435 254 199 121 304 38 72 34 311 46 22 433 76 364 427 341 313 279 194 432 42 335 371 30 283 416 347 69 395 282 241 12 405 221 434 87 175 41 217 238 188 48 83 45 316 117 206 47 398 233 200 153 102 92 419 17 142 219 81 271 60 36 58 11 174 176 155 222 146 273 171 303 143 426 227 136 410 314 243 355 408 353 382 394 270 2 300 112 44 277 425 396 249 327 214 21 290 32 126 29 292 317 358 181 357 135 393 110 89 289 255 183 385 213 322 18 138 226 96 104 225 212 157 13 132 160 369 5 3 404 229 324 325 402 186 389 406 224 148 59 25 399 223 333 98 152 107 251 91 263 19 228 180 53 269 80 35 4 23 390 336 391 400 274 246 54 129 286 392 15 +237 70 63 203 163 187 154 202 101 267 331 338 52 133 259 82 159 31 93 351 116 348 64 1 306 201 376 366 113 253 297 179 339 119 128 130 169 295 312 250 340 334 379 349 170 137 373 431 308 356 123 294 184 361 131 281 144 124 412 94 298 244 26 67 197 242 216 192 204 413 85 346 430 51 275 342 261 97 344 435 109 257 62 166 258 175 345 422 365 234 141 50 374 114 145 341 343 352 279 389 305 240 172 99 309 37 333 347 34 78 262 90 239 310 198 220 106 125 77 359 121 378 360 190 384 61 291 248 320 302 43 177 56 368 173 98 140 315 10 115 208 84 79 380 66 321 311 364 20 207 3 318 120 162 73 189 256 350 146 272 428 415 232 247 58 362 386 245 46 199 178 16 65 231 433 188 224 403 165 111 414 36 241 329 363 86 221 408 381 161 375 299 174 23 164 147 405 230 426 6 276 218 372 45 319 9 185 424 191 235 317 326 7 135 303 254 427 278 38 196 411 238 28 2 14 205 292 156 171 432 354 151 252 57 229 206 88 387 5 265 260 417 117 227 370 409 69 100 420 335 33 12 110 425 105 293 21 266 158 357 290 288 377 397 24 160 103 211 406 280 30 285 136 396 127 383 149 367 273 186 243 95 226 13 233 307 328 313 330 53 282 139 236 39 194 219 29 83 314 284 418 176 225 398 268 399 40 287 213 300 143 104 264 421 71 195 155 167 168 92 193 118 327 394 76 222 27 401 210 301 263 402 108 96 209 332 371 416 8 249 277 407 358 271 74 134 112 22 59 181 41 323 183 395 47 393 270 289 55 32 150 419 87 304 215 72 68 214 132 89 157 60 148 353 382 217 11 142 126 75 404 385 296 423 255 212 17 81 369 228 283 91 35 138 434 200 122 322 429 18 388 400 42 223 286 153 390 325 251 355 182 80 324 48 44 337 19 107 269 102 4 54 152 316 410 336 129 49 246 25 274 392 391 180 15 +346 63 237 1 133 259 272 338 77 351 386 340 116 50 113 70 123 376 349 281 197 154 95 93 377 334 159 139 198 163 202 101 52 365 295 203 31 151 147 134 279 275 144 412 348 78 411 121 28 82 414 294 379 79 291 293 234 208 301 298 94 33 247 352 128 103 150 64 308 253 282 39 231 261 207 374 359 360 331 242 20 336 131 309 187 220 10 108 239 90 422 215 164 14 318 40 363 218 345 66 366 201 356 130 149 61 192 232 51 378 267 350 115 430 189 326 65 62 364 161 317 170 339 268 367 56 169 233 277 260 250 114 264 332 297 26 196 428 92 230 16 156 172 188 141 304 361 375 409 99 183 347 313 306 221 245 191 9 362 407 184 278 34 368 199 287 46 355 354 305 105 244 205 373 329 214 190 98 312 258 127 257 73 413 266 384 383 288 276 381 7 270 85 100 420 393 343 292 195 71 200 109 6 194 84 342 138 60 353 382 47 175 344 370 86 185 315 271 125 284 421 328 265 117 119 310 431 424 30 236 177 303 38 433 330 165 118 53 193 216 179 296 240 145 415 178 327 235 55 57 333 285 256 111 419 387 321 37 426 417 273 206 67 140 323 302 166 280 162 217 432 167 168 380 126 204 174 42 87 69 243 435 290 405 22 176 403 341 21 262 158 416 316 269 155 120 45 252 289 2 299 112 209 41 124 59 97 48 152 8 283 148 96 241 372 146 371 74 76 211 249 425 319 58 88 434 122 307 210 137 132 395 43 24 136 396 311 106 397 251 418 181 171 32 81 263 173 83 314 358 229 75 25 44 406 335 410 222 427 385 27 186 72 254 36 142 160 23 135 104 12 248 357 224 325 402 110 226 3 398 227 223 153 157 68 399 394 255 143 102 369 212 11 320 404 324 91 429 401 389 219 213 29 89 225 80 286 5 129 408 13 246 238 388 390 182 17 274 18 337 228 300 391 35 322 49 392 423 4 400 19 54 180 107 15 +247 370 239 318 208 207 166 319 367 95 237 64 103 1 331 163 31 132 242 203 39 159 50 193 304 338 220 78 141 192 386 291 334 350 384 216 202 376 79 273 196 90 310 190 430 161 433 354 256 147 131 363 93 411 154 191 295 128 352 144 232 63 362 26 347 365 412 133 301 113 297 298 258 340 52 379 294 330 201 315 187 115 28 121 114 70 119 20 253 346 82 51 100 397 230 195 57 312 7 303 112 206 431 101 259 349 351 218 366 61 123 288 194 177 231 261 199 59 71 276 413 403 209 167 168 130 56 415 343 9 368 106 305 137 427 387 170 332 34 420 99 118 264 266 250 169 426 245 394 306 73 86 398 124 179 416 244 43 282 345 323 272 197 221 32 265 424 381 235 214 16 53 275 94 428 378 111 46 117 356 204 97 373 432 393 317 116 120 175 313 188 60 236 45 47 139 383 164 240 84 134 217 85 422 341 329 262 419 10 308 67 140 142 243 285 321 281 74 409 359 249 358 181 380 284 371 414 125 198 75 87 146 173 165 185 360 260 267 293 278 435 42 157 109 324 33 77 41 361 158 150 399 257 292 8 156 55 405 421 252 233 38 348 234 396 200 434 342 374 174 30 309 105 162 212 339 149 326 211 145 88 222 110 83 14 407 184 40 44 66 48 178 62 268 210 189 287 6 364 404 229 102 344 65 406 417 58 37 22 335 241 89 148 24 219 98 377 333 283 423 353 382 213 299 224 248 153 289 151 357 280 320 176 2 290 277 395 96 152 271 279 410 155 401 92 160 408 251 223 205 227 69 316 25 186 325 390 385 270 171 327 81 127 215 311 21 307 172 418 68 35 372 3 225 108 254 328 126 143 226 11 238 302 23 296 314 36 255 136 72 182 129 425 27 375 122 274 183 135 429 12 246 5 336 138 17 76 18 388 389 402 29 13 104 269 355 391 322 49 300 369 337 228 80 54 91 286 107 263 4 180 392 400 19 15 +411 65 209 237 306 79 318 291 201 97 113 230 62 112 90 297 331 130 196 131 236 36 187 42 430 39 181 51 159 1 356 63 31 421 191 240 220 247 384 161 163 366 433 244 295 128 190 204 95 119 339 364 218 253 64 261 206 329 420 387 84 351 26 103 232 348 342 376 426 372 379 322 308 367 334 120 266 427 403 192 395 233 121 434 169 301 239 55 117 352 203 88 361 125 170 275 422 303 386 378 305 365 262 123 217 424 315 431 413 397 52 186 373 250 145 78 177 249 264 298 370 292 50 428 343 82 304 202 256 340 231 158 412 109 114 432 363 238 362 147 359 360 326 267 141 144 309 116 179 154 43 106 20 67 287 99 46 350 184 330 195 93 94 354 73 47 7 28 111 341 419 132 194 101 235 110 409 258 100 380 243 14 221 71 164 278 86 165 197 347 273 34 310 59 383 142 56 321 115 284 32 127 188 166 317 435 172 296 349 327 69 89 105 53 214 265 294 323 85 133 401 374 252 146 157 281 319 414 12 57 185 9 280 199 45 299 216 35 40 156 70 10 126 381 124 74 58 312 346 254 149 245 139 41 16 61 248 60 8 222 98 205 241 276 288 208 140 160 37 193 137 18 279 173 332 75 167 168 344 257 87 289 368 148 22 251 198 242 389 415 353 382 357 162 371 21 259 178 200 345 393 272 54 290 2 333 283 229 171 29 338 38 282 118 417 407 302 375 77 293 150 155 207 406 17 226 227 416 174 6 223 314 24 72 313 425 211 175 33 176 285 358 271 316 396 66 268 418 405 3 234 328 324 189 224 307 11 260 210 182 27 398 104 394 270 263 399 23 225 300 96 108 81 135 183 122 325 213 212 286 385 320 153 5 219 44 68 277 143 25 408 102 311 19 134 335 355 388 4 429 377 30 136 269 151 392 92 13 48 423 76 129 228 337 215 246 138 107 255 49 15 152 390 410 83 404 402 369 400 80 336 91 274 180 391 +220 67 231 51 310 109 163 154 203 202 237 39 430 63 356 82 266 144 411 393 7 159 165 201 305 379 315 29 376 352 297 258 99 331 253 24 1 395 295 170 169 52 93 141 363 147 179 116 101 64 261 113 123 78 288 259 419 86 103 50 256 115 190 56 308 348 338 100 230 372 130 291 133 284 131 207 119 192 34 340 20 208 351 342 275 239 247 267 294 235 196 362 250 306 412 90 318 114 334 106 380 172 422 204 365 301 431 31 46 95 94 128 26 309 366 77 146 112 161 339 84 70 283 12 43 197 167 168 409 216 85 346 292 42 281 349 359 57 368 413 262 14 378 397 360 236 272 120 177 111 302 30 164 175 312 386 323 97 117 187 79 245 329 232 373 435 135 350 321 254 428 396 191 158 61 313 195 218 140 268 427 198 241 394 222 293 189 9 33 298 137 415 345 240 433 152 211 320 299 374 234 142 124 58 178 414 74 384 62 185 244 55 210 405 184 173 285 416 87 278 357 341 28 421 403 40 75 319 224 121 217 344 260 53 209 3 426 367 279 206 47 387 325 73 317 330 32 361 171 66 151 434 157 134 83 420 225 265 45 88 125 188 68 398 332 377 276 10 226 424 408 257 223 166 271 252 347 71 354 407 280 370 233 174 248 423 242 425 156 326 401 358 264 44 273 36 60 89 65 6 399 417 249 205 38 200 375 316 162 282 307 381 243 406 343 176 432 143 18 364 194 16 199 385 183 383 335 181 389 145 35 324 105 311 104 69 219 371 212 107 72 246 429 418 150 2 214 270 13 303 160 251 287 139 132 336 227 213 102 404 186 221 155 136 17 81 289 215 129 149 300 59 37 328 322 98 22 263 27 21 127 11 304 392 92 8 337 229 193 290 118 238 91 110 353 382 5 333 96 269 228 108 314 182 390 410 126 76 277 41 148 23 153 274 296 138 355 388 122 80 402 327 54 19 4 255 25 48 400 15 49 286 369 180 391 +377 237 66 131 272 291 113 33 208 295 321 150 108 93 348 139 234 334 220 260 239 31 163 287 356 253 159 203 50 375 149 64 296 202 346 78 52 207 187 57 56 115 94 82 411 350 101 95 422 310 127 151 144 360 130 359 120 374 266 1 278 63 298 70 247 379 261 331 354 428 198 73 197 100 190 294 178 430 114 345 230 338 301 352 86 27 275 343 367 414 349 231 216 68 185 340 14 308 312 177 240 28 218 20 140 412 116 384 173 109 344 79 166 363 201 242 9 268 297 264 41 365 161 154 99 378 61 326 431 196 97 65 169 306 250 119 259 147 192 123 373 51 24 170 256 267 339 137 106 258 293 232 413 376 141 133 85 26 105 318 434 323 90 307 128 39 103 429 172 40 332 122 276 235 71 43 424 407 118 184 124 386 281 351 37 6 380 387 335 280 156 372 262 309 305 252 245 248 368 206 421 409 209 134 284 67 311 328 282 191 199 46 16 142 88 121 195 337 381 257 415 194 299 215 361 69 285 236 193 8 427 7 330 420 362 398 347 370 44 315 74 329 10 111 34 342 221 304 233 182 38 319 204 117 83 254 48 366 175 125 417 84 316 241 341 179 432 288 255 353 382 320 283 45 416 77 162 22 217 271 158 30 327 55 302 200 388 153 126 62 42 364 383 75 238 270 435 92 433 145 60 371 317 146 171 265 25 401 303 403 32 155 164 290 72 205 397 244 211 174 313 405 188 47 279 102 243 81 219 408 167 168 418 49 273 165 227 426 87 58 12 277 425 5 181 112 176 89 396 222 189 210 419 138 21 358 395 410 213 369 143 36 214 355 59 148 136 385 404 11 292 333 357 2 389 226 183 289 249 152 17 228 98 394 13 223 322 314 393 160 225 406 96 132 186 263 157 402 104 110 29 18 423 53 4 300 399 3 135 80 229 269 224 325 212 324 251 129 91 246 76 391 35 54 390 400 107 180 274 23 286 392 15 19 336 +346 1 163 202 203 141 82 101 237 331 288 77 154 64 386 70 159 338 93 63 39 50 258 116 350 259 133 340 51 187 147 376 305 298 272 334 220 134 253 106 312 430 179 412 315 94 247 295 414 31 362 52 428 28 378 239 308 190 119 151 201 431 121 85 359 345 86 123 360 99 261 61 310 156 330 204 165 100 302 78 354 352 109 114 14 192 208 232 309 66 26 422 411 379 103 275 128 144 256 161 178 130 245 297 146 266 95 56 341 405 57 244 175 115 197 365 131 216 170 169 222 311 207 46 43 117 420 67 366 7 10 79 218 351 250 284 267 195 58 343 344 408 174 380 294 188 381 62 424 333 73 90 224 191 198 291 140 164 289 319 356 113 290 317 335 184 227 262 435 374 104 328 299 125 211 280 91 177 403 230 318 176 281 349 3 210 240 377 234 264 293 363 254 276 427 235 279 348 24 257 282 40 283 196 185 231 193 2 373 172 205 229 83 320 71 173 421 326 325 371 415 252 225 265 367 241 384 416 53 242 332 6 162 118 20 33 74 30 167 168 139 110 92 16 321 313 69 236 361 12 425 158 260 9 433 329 304 72 301 364 368 111 432 97 223 37 75 215 65 137 5 124 307 194 407 426 84 206 60 213 59 285 199 155 221 409 21 217 160 402 226 105 434 45 166 406 233 13 88 145 171 429 347 413 34 38 277 339 292 273 303 209 108 228 87 370 120 200 189 248 136 357 89 32 81 22 98 143 387 342 127 372 268 55 138 296 278 353 382 417 255 126 419 393 397 44 423 152 287 41 181 112 383 375 243 263 238 214 398 336 212 135 76 314 300 8 249 149 306 11 355 153 96 150 323 401 395 29 102 35 271 219 142 322 183 47 316 122 369 418 27 404 23 68 337 394 157 186 399 324 148 270 180 48 358 132 396 410 385 25 17 129 327 42 182 36 389 251 80 19 269 15 54 388 390 246 286 18 49 400 274 4 107 392 391 +308 309 428 116 50 197 198 346 272 359 360 293 63 56 345 175 70 376 93 172 414 65 170 203 351 169 237 202 282 159 163 348 115 354 133 329 253 178 263 295 123 113 334 344 288 141 82 171 77 134 352 78 94 120 100 362 39 1 46 292 98 386 422 61 350 248 294 190 211 33 71 331 247 131 377 411 95 57 305 210 266 103 239 9 114 340 14 138 291 64 147 431 151 378 220 92 158 218 86 20 338 429 40 154 374 192 430 349 379 261 297 310 339 201 328 174 259 230 66 130 258 412 323 87 208 321 167 168 207 298 26 278 275 24 140 420 410 356 62 28 150 109 31 128 73 139 421 176 426 144 173 279 149 10 121 307 44 85 189 232 268 231 252 284 16 194 195 161 215 193 34 191 235 250 119 196 102 392 341 156 330 301 45 204 435 234 90 216 381 51 407 387 337 302 313 101 434 312 363 267 318 355 38 316 244 281 177 416 413 424 105 375 366 276 368 217 153 336 52 287 74 245 108 137 7 419 332 106 129 353 382 280 83 315 403 99 240 364 67 117 187 72 283 75 370 367 152 68 335 393 361 327 79 97 319 326 299 385 118 409 384 185 271 365 233 188 262 306 30 325 256 55 372 47 317 358 43 60 84 205 371 333 246 395 398 6 206 270 380 143 22 415 25 260 199 125 42 373 58 179 433 48 236 221 264 126 21 88 164 111 432 285 296 142 311 145 405 2 162 127 81 180 342 399 124 388 182 290 53 59 242 209 257 394 160 383 76 277 408 110 243 427 402 222 166 343 200 265 214 303 165 155 135 148 41 269 304 227 184 11 320 212 8 223 136 289 249 401 37 229 146 397 122 96 241 32 347 183 254 80 17 417 49 369 273 157 314 389 251 357 300 104 423 255 91 324 390 89 36 112 181 219 69 35 238 228 27 132 5 406 225 418 186 396 425 274 391 224 322 12 18 29 404 400 213 19 13 3 226 54 23 286 15 4 107 +126 237 331 119 64 65 312 412 93 240 281 174 185 220 43 63 161 254 310 211 82 176 311 373 175 14 116 432 201 31 256 37 295 184 259 380 210 115 235 306 253 422 351 203 72 202 30 424 305 163 9 56 120 113 94 335 51 417 1 192 159 415 109 280 297 164 348 241 334 298 343 379 22 21 320 342 431 420 266 117 155 321 123 190 27 346 133 46 130 101 403 173 418 187 189 276 158 127 67 165 71 28 216 368 378 430 99 242 106 7 90 308 170 340 73 179 402 169 57 435 376 272 87 313 200 20 255 125 350 230 425 52 85 196 356 421 143 38 267 314 79 291 147 144 149 284 10 139 154 26 69 156 70 286 12 137 121 250 365 50 16 97 332 2 157 239 315 45 309 318 162 128 177 59 74 408 349 262 84 427 131 428 307 238 17 361 362 243 333 6 227 141 222 374 146 44 140 244 383 287 86 386 263 77 142 108 387 261 296 388 258 354 360 303 283 100 252 204 199 226 29 233 352 62 413 317 401 377 407 289 341 405 393 232 323 5 213 13 219 264 231 182 345 371 36 363 326 224 381 75 294 191 32 338 78 278 279 111 110 339 355 166 359 225 434 150 292 138 221 34 41 229 145 197 246 344 172 236 260 129 353 382 167 168 429 251 409 304 3 39 195 68 24 148 80 329 414 293 423 411 248 88 330 364 171 249 47 302 290 66 40 400 209 98 188 394 207 208 399 23 8 375 198 124 136 273 419 245 247 288 206 426 406 285 152 398 372 112 104 42 95 49 61 55 92 367 103 358 105 118 366 212 81 301 416 369 102 19 25 193 299 228 404 180 275 89 214 18 217 319 178 385 205 389 300 194 58 48 114 395 265 370 134 327 357 433 181 91 33 135 186 384 410 282 96 183 76 328 122 223 160 218 153 397 391 234 35 257 277 390 132 322 60 324 347 396 15 151 337 53 107 215 4 83 325 11 270 54 392 274 268 336 271 269 316 +39 203 220 411 379 237 244 31 95 331 202 64 207 154 159 352 261 266 147 230 247 294 275 103 128 192 141 163 26 121 1 50 267 62 366 305 53 297 293 165 63 204 116 376 250 144 315 111 82 350 201 179 56 362 239 20 164 334 90 430 262 208 190 52 346 67 205 413 258 295 312 253 51 318 361 329 125 364 259 216 78 43 161 368 130 218 93 349 291 123 403 145 298 99 61 191 416 28 363 131 112 79 84 308 209 85 232 113 342 397 268 288 299 330 384 169 393 339 170 343 187 341 60 119 433 177 338 302 199 188 351 422 34 317 347 14 412 271 162 301 133 57 431 421 101 365 409 265 94 114 319 280 257 110 195 100 106 66 217 245 378 151 435 373 55 196 367 356 109 221 256 105 158 278 303 46 316 270 166 77 306 156 200 381 167 168 426 38 86 340 354 285 134 178 194 146 140 124 224 160 231 419 249 374 240 370 233 394 424 73 432 407 420 10 185 383 7 264 344 117 386 348 372 155 206 345 371 292 33 309 214 333 47 428 37 387 172 16 279 24 69 310 395 399 332 181 427 137 3 323 211 401 70 42 358 252 115 88 197 87 6 184 120 45 83 229 276 74 242 175 149 325 75 414 186 210 269 58 71 321 314 132 273 272 236 2 304 320 415 287 243 289 307 406 193 23 353 382 398 9 139 380 183 389 65 36 284 251 150 97 248 417 290 136 72 176 281 222 425 21 174 313 254 359 235 360 322 30 234 22 198 8 189 434 324 96 377 35 173 127 328 402 296 396 89 11 357 282 40 300 32 18 260 122 405 41 388 157 135 59 390 223 410 418 241 171 118 126 12 81 212 225 68 385 226 408 283 153 44 148 277 17 19 138 227 108 29 142 355 13 375 213 27 48 423 76 326 80 335 336 219 182 104 429 152 311 274 92 102 143 98 49 129 238 4 337 107 327 25 255 215 263 228 369 5 404 400 392 246 91 286 54 180 15 391 +50 56 385 34 47 57 113 38 388 266 307 374 67 363 182 348 220 295 49 147 410 237 203 42 31 291 64 321 178 61 339 192 141 411 9 7 163 68 44 253 109 111 39 78 261 159 331 93 51 375 131 391 278 120 256 356 294 202 310 409 164 33 102 267 230 207 63 115 362 48 288 99 185 393 205 6 422 247 376 315 70 218 334 1 14 352 82 144 151 20 94 190 85 430 22 24 30 95 419 346 161 139 407 65 117 379 240 154 90 323 150 345 86 88 149 128 298 268 122 372 429 373 18 187 305 165 259 201 25 114 26 167 168 177 239 420 365 344 103 119 121 216 306 285 368 421 383 350 169 329 354 27 123 153 170 175 341 293 258 66 105 101 130 208 116 196 209 262 29 191 272 52 106 71 301 176 413 387 16 231 214 133 158 312 250 79 221 318 320 308 46 435 217 271 337 173 325 252 349 330 287 260 431 403 416 338 366 280 204 28 143 309 412 11 37 424 188 152 401 206 77 108 125 394 328 342 319 223 279 257 397 17 112 297 137 264 281 434 275 195 157 270 45 145 427 197 377 2 251 107 97 200 55 92 299 174 284 73 100 138 351 211 265 127 140 172 367 232 244 189 402 380 361 83 194 300 343 303 84 148 212 313 378 432 426 43 162 184 234 236 222 235 36 381 87 358 198 408 415 276 296 210 179 370 225 283 316 428 226 72 60 241 10 129 155 314 340 12 302 156 399 395 433 398 396 405 233 142 386 371 327 248 124 53 134 215 243 21 269 326 245 69 74 282 166 229 417 290 364 246 35 249 89 324 242 8 360 333 110 171 359 199 160 347 41 254 317 311 384 274 389 135 273 32 62 292 357 181 132 418 13 219 414 304 118 75 335 59 58 322 183 40 423 136 193 4 332 289 353 382 390 126 80 96 3 76 425 404 227 23 146 238 213 186 81 263 277 224 355 406 255 336 98 400 228 54 369 104 5 392 180 286 91 19 15 +39 220 244 237 31 147 203 141 51 192 430 67 331 411 350 305 247 1 165 310 112 202 393 362 288 95 384 159 63 266 231 315 64 379 163 56 161 113 121 256 253 128 352 419 85 356 258 261 295 190 50 154 99 395 209 306 201 119 196 207 82 109 116 86 204 26 275 164 61 216 93 297 217 268 376 366 130 144 169 230 293 267 239 187 318 103 291 348 330 170 53 78 259 334 308 421 271 28 90 363 232 294 373 346 79 349 52 47 200 339 158 208 38 312 66 365 301 422 354 14 280 191 167 168 431 123 347 361 372 20 179 368 329 250 120 125 416 342 57 114 218 34 240 298 367 42 323 338 222 351 7 270 94 409 133 264 131 412 117 62 214 29 185 343 381 278 257 413 262 68 24 235 317 205 111 46 71 403 106 332 428 265 319 341 427 140 36 435 105 37 433 236 162 316 285 100 43 115 145 386 321 101 195 30 370 420 401 309 97 333 12 322 177 172 221 84 320 284 340 233 184 152 378 394 380 303 302 44 374 252 60 364 425 424 199 251 434 151 397 70 211 178 357 345 181 45 69 77 407 254 269 313 344 9 156 281 292 124 65 314 59 110 155 398 87 139 410 383 72 360 273 194 359 432 304 175 197 160 241 58 146 249 210 188 225 299 226 387 206 55 229 223 2 73 16 405 137 142 276 166 415 10 22 385 399 311 227 243 245 406 83 414 283 358 272 375 402 307 174 88 371 213 32 104 324 33 74 136 173 171 40 429 189 242 426 389 279 132 396 335 182 157 27 149 75 176 198 13 127 89 8 134 48 21 353 382 290 296 135 193 122 129 6 23 183 423 212 325 392 18 224 287 150 102 377 25 153 417 260 35 107 41 388 126 186 246 234 118 328 108 282 5 219 238 3 228 326 96 11 300 390 289 92 337 91 418 98 263 81 17 49 408 148 138 248 143 255 277 54 355 327 215 404 80 391 369 286 336 274 15 400 19 76 4 180 +154 338 52 101 376 220 51 163 67 231 53 237 203 1 430 331 202 39 109 100 310 82 379 340 144 31 159 201 315 50 352 305 63 259 112 141 93 56 253 334 266 366 431 346 147 64 165 258 77 116 295 179 190 301 247 119 103 128 187 78 275 7 356 196 288 393 90 204 106 318 384 378 363 411 99 208 245 115 113 427 123 70 362 232 348 342 216 306 94 294 239 121 84 235 86 397 34 422 339 347 79 412 419 124 267 133 26 169 43 170 256 297 349 29 284 46 161 261 131 207 130 298 197 291 285 114 250 95 361 62 262 244 61 380 236 192 373 240 368 386 234 97 350 28 413 191 372 326 293 319 164 195 312 357 308 260 433 283 175 415 396 30 85 330 233 359 206 351 414 365 302 354 12 409 218 360 146 222 10 198 137 403 254 428 58 230 42 14 367 345 329 416 209 111 257 370 281 241 20 332 317 3 199 395 405 117 24 181 224 211 321 167 168 40 323 272 125 142 313 278 73 424 299 32 194 37 166 242 57 120 74 177 381 426 156 36 421 341 172 71 210 65 185 425 135 292 217 268 184 364 173 344 320 140 377 188 89 303 158 75 104 394 189 309 9 343 6 151 371 162 186 47 16 212 335 435 221 432 227 273 374 152 200 83 420 88 387 276 407 174 69 38 45 243 33 333 35 226 358 290 157 417 252 91 87 225 145 60 265 248 18 304 223 271 249 5 178 59 155 139 96 408 118 105 423 311 280 264 66 213 277 398 316 289 55 406 383 2 279 171 238 110 132 399 68 72 287 418 193 322 307 219 21 282 81 255 389 149 434 229 27 228 143 375 134 17 160 176 13 401 150 127 214 148 8 44 205 353 382 126 22 270 136 54 324 246 327 23 314 404 182 11 107 385 41 429 296 108 102 263 300 325 390 98 269 215 122 251 400 92 402 369 183 15 392 153 129 337 336 388 328 48 138 80 4 410 49 25 19 355 76 274 180 286 391 +318 239 370 367 247 166 319 95 208 207 242 132 103 237 304 193 163 331 64 1 50 31 273 386 216 196 78 79 90 384 39 192 338 190 347 161 191 203 159 340 141 297 220 411 433 376 93 310 430 295 232 350 187 363 144 352 201 365 362 63 113 112 131 123 366 315 154 412 202 100 133 61 70 26 128 256 258 351 114 167 168 291 115 334 301 354 199 28 218 209 56 59 230 379 170 119 52 431 298 330 101 305 169 415 332 231 206 397 343 197 259 147 47 403 53 99 7 317 420 349 195 121 181 378 387 221 303 427 312 428 313 194 106 346 51 245 177 261 86 82 97 57 236 118 240 9 294 94 288 235 84 74 73 359 34 341 306 308 282 10 360 217 20 130 424 249 393 275 157 111 253 426 46 323 292 43 179 284 244 281 137 198 380 432 414 272 75 139 116 184 175 214 373 276 62 262 117 371 266 124 32 250 142 413 356 381 321 162 409 342 416 419 120 188 243 60 16 204 435 267 368 71 396 422 264 125 40 345 257 85 88 421 211 140 158 210 309 150 287 105 285 241 67 398 417 265 233 361 234 383 189 65 324 213 326 283 77 109 38 364 290 268 30 348 149 248 156 185 55 126 229 14 174 44 222 89 277 279 293 434 353 382 151 24 394 280 254 200 87 33 423 173 358 41 110 339 407 260 58 252 164 42 8 178 134 145 22 405 271 278 6 83 219 98 404 251 146 155 45 418 406 223 329 148 69 385 171 395 399 320 333 325 165 68 127 37 81 296 377 92 344 374 289 212 143 66 408 316 172 21 2 160 238 102 96 176 108 227 225 270 327 226 35 48 152 299 183 314 129 224 215 401 372 425 25 274 23 307 357 302 186 246 335 336 328 12 153 3 255 311 389 138 205 269 13 5 136 72 322 36 17 355 11 135 182 122 27 80 29 390 76 410 228 375 18 429 402 104 369 388 286 337 263 180 391 107 300 19 91 4 49 54 392 400 15 +67 203 202 109 159 50 163 231 379 82 352 141 207 56 130 95 51 362 409 220 1 237 376 345 63 78 305 412 288 154 29 208 393 131 61 39 113 285 363 23 430 26 128 192 31 52 294 338 310 178 420 103 302 291 419 368 253 356 308 348 34 24 165 312 331 173 99 344 309 265 64 144 329 325 57 295 218 264 190 147 71 251 101 169 86 116 170 7 230 239 44 119 416 334 136 114 373 106 261 297 275 164 339 187 17 365 315 330 361 250 266 247 374 20 172 350 415 411 179 85 216 183 68 152 258 276 385 111 135 140 323 115 272 201 278 214 240 229 195 256 349 30 431 395 405 340 346 90 134 435 35 137 123 9 347 370 306 396 197 33 88 367 196 384 133 212 324 161 204 284 417 267 375 77 397 221 429 93 342 320 422 143 151 380 307 209 326 318 121 341 257 98 73 433 43 188 403 427 206 407 198 319 386 259 16 406 120 413 313 293 268 364 191 153 124 200 75 100 117 321 70 65 84 74 62 298 28 177 160 300 244 328 38 97 418 8 175 357 426 79 281 112 283 205 155 193 354 359 171 222 167 168 360 366 242 129 125 47 410 83 42 18 279 408 189 351 66 46 401 236 146 166 19 217 37 234 252 223 158 314 394 53 241 434 105 145 371 335 301 428 27 303 36 211 162 372 414 246 421 69 87 149 273 60 271 14 6 89 235 423 94 157 260 226 392 317 224 400 210 262 378 398 432 424 248 225 327 282 245 174 387 55 232 219 337 10 185 280 150 72 45 274 227 132 199 287 377 388 254 3 243 383 156 299 182 381 22 118 102 176 139 48 213 277 104 358 194 13 311 332 11 255 58 12 142 304 59 316 263 40 233 181 270 343 292 399 425 81 249 184 186 389 404 25 391 5 290 353 382 322 228 108 127 336 296 269 2 32 122 49 238 148 54 215 289 333 91 107 110 96 41 369 355 92 21 76 80 126 138 4 402 15 390 286 180 +141 192 356 237 253 362 258 159 39 288 256 220 31 261 203 1 82 163 350 202 204 342 297 267 85 64 63 250 331 147 294 67 312 103 352 26 154 306 351 167 168 235 112 113 379 298 179 51 130 109 7 66 133 349 412 50 275 140 201 144 196 128 244 411 46 329 164 106 61 315 119 86 310 174 317 281 60 259 430 252 368 420 239 308 170 169 422 230 346 99 416 431 266 173 231 88 264 413 334 214 116 330 71 291 295 284 165 79 365 305 208 131 14 247 176 185 190 363 376 56 158 218 175 200 300 434 114 240 366 78 207 121 177 123 354 90 302 380 189 435 117 111 161 292 262 309 279 70 77 414 341 393 421 206 229 283 188 319 209 183 257 301 10 348 332 340 307 151 427 95 115 191 236 338 178 224 57 345 23 318 145 216 28 424 426 20 276 52 205 378 43 34 58 97 265 101 125 232 36 172 65 93 326 361 225 195 339 285 187 30 226 373 384 383 84 406 293 419 211 245 409 16 83 136 381 359 100 24 124 280 105 386 89 278 156 432 360 371 347 32 372 134 403 241 344 221 142 272 367 137 313 146 222 374 428 12 303 395 251 33 184 415 299 385 217 197 335 321 135 62 40 94 157 433 9 210 29 233 234 243 320 73 407 370 3 199 333 223 314 323 155 37 397 2 377 8 311 120 343 53 35 68 194 69 286 13 76 213 160 364 42 254 353 382 17 325 44 162 45 215 59 47 304 38 355 98 166 227 127 417 171 198 87 263 55 138 287 273 72 149 289 328 249 425 181 389 394 81 268 282 408 143 396 74 248 387 21 423 260 152 398 290 118 75 193 228 404 401 153 399 405 357 126 110 418 6 277 296 186 139 148 369 358 429 108 246 22 238 322 242 150 324 271 327 27 5 212 336 402 219 270 410 129 41 18 96 316 375 182 48 390 269 132 400 92 255 80 102 19 25 15 388 11 104 4 122 54 180 49 391 274 337 107 392 91 +294 147 141 192 362 67 288 356 220 50 411 56 253 26 365 159 31 420 363 291 64 230 267 151 82 413 203 24 78 109 103 202 167 168 131 352 20 163 295 178 95 247 334 341 57 237 111 261 1 114 430 61 266 328 268 39 416 435 308 51 310 133 34 190 258 128 348 63 7 169 177 408 217 319 113 394 86 205 330 170 374 137 396 315 83 85 272 434 278 144 161 130 259 252 235 218 300 160 99 9 271 339 306 331 154 90 140 214 376 231 173 251 379 208 256 93 412 346 309 164 123 398 204 368 207 145 329 70 265 71 285 179 275 305 43 125 33 84 106 216 284 350 358 276 367 209 407 297 121 403 158 29 8 323 45 366 6 431 426 316 55 165 79 240 395 191 321 318 293 101 200 206 221 28 399 2 73 372 393 11 222 402 409 371 119 117 257 16 298 405 77 172 422 410 250 94 139 14 248 201 87 187 415 354 66 380 239 270 397 38 299 307 88 424 36 52 390 320 116 134 345 236 428 342 196 283 423 120 150 419 312 378 338 30 223 303 162 325 185 344 60 105 195 370 387 375 188 311 264 62 135 301 97 142 47 262 427 381 102 349 421 212 384 373 351 273 224 42 433 46 269 75 279 386 115 404 227 401 385 326 274 383 313 244 166 183 364 215 225 302 429 280 232 317 10 124 233 254 153 335 282 74 243 35 58 322 361 211 3 260 152 143 347 44 21 360 219 176 194 22 359 193 80 112 129 314 89 234 281 210 241 146 156 157 414 149 132 171 37 12 41 304 340 136 175 245 100 65 199 59 174 118 69 181 324 27 229 18 226 32 333 197 81 327 355 377 53 17 110 184 406 290 5 249 292 425 432 13 389 189 155 186 289 353 382 40 72 337 388 228 126 107 138 182 357 242 255 287 108 332 417 92 68 343 98 213 238 336 246 96 198 296 23 277 25 400 49 148 263 48 76 127 418 122 4 15 392 180 104 91 54 369 391 286 19 +329 65 431 56 50 237 203 103 220 424 113 411 308 159 284 293 295 31 379 315 64 291 202 63 39 266 144 283 250 352 67 348 147 309 426 116 376 20 331 82 170 201 363 175 169 154 209 298 164 244 239 207 230 123 57 231 275 267 130 78 141 312 128 70 90 430 173 339 179 45 261 131 350 99 165 101 163 248 392 374 93 26 409 208 172 14 258 121 7 161 109 412 356 192 51 149 240 294 204 119 247 305 362 46 81 349 340 115 190 368 9 1 413 369 422 346 420 66 334 301 253 216 306 318 185 262 354 351 196 79 394 112 178 187 342 24 120 94 55 414 278 52 150 218 37 117 36 146 310 16 71 395 171 18 177 97 106 189 191 42 398 61 34 393 386 95 88 366 174 84 197 372 249 263 205 297 206 321 383 302 73 217 256 288 370 338 38 259 10 133 361 345 114 373 292 360 378 87 287 138 359 385 419 100 235 323 125 272 176 111 421 415 232 156 416 194 85 43 314 303 427 364 180 403 53 387 233 428 281 375 47 188 358 343 299 27 193 285 211 199 330 145 62 264 198 69 307 2 124 28 260 158 22 214 399 381 367 137 434 86 433 377 77 30 384 365 344 243 195 142 257 407 162 317 40 300 410 313 210 139 44 380 127 6 347 224 140 401 245 33 200 406 105 280 265 157 402 183 417 152 341 166 23 155 32 184 167 168 432 429 357 229 68 236 221 335 326 118 60 273 279 242 435 327 98 72 304 397 328 290 400 160 122 320 371 3 296 134 21 135 136 29 418 276 58 181 148 129 234 241 17 96 390 333 151 54 405 388 268 48 222 353 382 108 59 251 319 153 107 332 396 4 132 89 102 143 322 316 252 282 49 8 12 74 182 110 212 238 11 41 289 227 219 425 76 271 225 254 80 226 25 92 389 277 35 355 83 223 104 311 215 75 270 186 337 126 246 423 324 325 408 336 13 286 255 213 269 5 391 19 91 404 228 274 15 +116 237 295 93 331 161 101 56 185 64 94 348 169 170 57 334 65 203 123 184 82 163 412 298 9 235 187 31 52 351 202 70 127 411 63 50 280 239 162 85 306 291 321 373 201 139 24 177 343 365 374 378 363 197 422 407 14 333 1 190 278 312 340 159 2 259 290 254 113 261 424 267 105 78 99 66 240 220 45 428 119 10 253 308 149 287 294 16 329 262 431 386 198 150 90 413 356 37 22 318 257 86 272 126 175 156 425 296 97 360 6 147 309 258 192 114 115 143 420 368 178 266 62 359 402 195 211 247 21 379 130 92 380 275 154 111 414 12 128 346 227 430 27 43 297 77 375 350 376 40 88 216 408 100 210 144 338 352 141 366 305 310 387 120 383 341 218 171 188 205 213 39 121 421 183 284 304 320 432 79 73 238 125 435 196 20 72 209 243 131 289 3 46 106 204 361 207 282 179 134 33 36 344 377 133 199 28 364 30 315 403 172 117 260 250 256 339 109 164 230 191 303 222 398 26 349 345 415 328 372 357 226 71 61 84 332 426 326 206 155 281 176 7 13 108 317 241 245 381 193 249 263 417 335 38 244 69 138 103 151 354 48 311 342 51 167 168 433 248 104 288 145 406 229 409 68 292 389 58 336 242 273 44 232 355 233 369 327 323 165 314 362 219 158 405 34 194 174 157 25 302 388 264 95 60 293 215 146 279 384 137 208 47 8 98 313 55 173 283 135 385 299 252 59 265 110 427 397 182 367 87 231 234 76 276 434 353 382 74 189 5 122 429 307 301 102 91 418 225 49 81 399 214 223 32 322 319 347 370 42 358 277 268 300 395 166 67 410 75 132 236 96 148 394 200 337 221 325 153 224 129 186 142 11 181 124 112 160 404 23 391 54 18 330 228 396 118 29 83 4 285 393 140 390 270 217 212 401 316 416 89 255 136 80 271 152 400 53 371 324 251 41 35 423 286 17 419 274 180 269 392 15 246 107 19 +163 63 70 411 239 31 1 202 64 203 281 56 113 237 50 207 189 131 230 291 220 39 93 116 78 123 159 26 197 412 82 250 144 161 295 95 147 365 192 315 134 312 297 130 279 261 121 14 266 259 256 20 242 240 305 430 422 154 334 101 351 128 66 338 198 187 318 184 69 409 257 94 201 176 79 217 264 352 218 141 90 115 276 191 373 9 195 88 310 190 431 234 258 117 253 379 356 262 47 214 330 386 16 340 376 216 368 362 185 7 383 364 235 119 174 57 268 424 232 348 265 10 290 421 133 301 111 360 342 331 280 209 359 363 86 345 221 167 168 28 377 367 298 46 175 306 162 384 308 188 361 85 349 62 139 254 37 332 413 374 282 343 267 196 103 200 393 170 67 208 100 321 294 313 99 169 307 97 329 127 231 51 244 296 172 73 61 236 164 278 309 432 347 316 125 247 108 407 284 27 34 346 145 341 6 30 414 177 136 71 271 114 416 287 84 344 366 420 151 77 403 326 109 204 350 292 378 339 293 112 405 53 275 149 417 158 395 92 272 303 381 137 166 206 387 181 193 229 415 398 152 435 370 55 45 205 43 155 199 110 22 270 288 156 419 314 406 52 397 211 179 210 106 194 8 87 433 285 243 182 120 319 23 304 260 105 65 418 302 178 375 153 17 249 233 183 269 425 150 358 320 283 325 388 371 140 2 160 372 389 21 401 317 42 222 135 33 122 138 60 3 215 399 165 132 212 12 48 76 426 328 402 394 410 24 59 224 286 323 427 58 32 38 273 248 68 29 252 353 382 299 333 223 434 118 124 36 227 241 126 355 146 143 44 226 324 251 277 83 263 385 289 142 19 173 357 89 96 246 380 157 40 322 98 72 335 429 255 148 74 35 225 354 311 25 13 336 428 11 129 171 408 327 213 49 186 390 404 396 18 75 80 245 107 81 274 228 238 300 41 102 391 219 104 369 4 337 5 400 392 423 91 54 180 15 +202 203 379 409 82 302 412 312 165 88 135 183 141 285 229 136 164 50 352 155 214 187 305 259 61 159 362 67 417 331 119 237 23 315 56 113 64 131 99 220 363 95 144 35 178 418 413 120 192 31 151 314 109 348 300 253 161 34 411 430 288 201 51 415 39 247 291 84 63 345 258 374 163 356 90 26 173 1 130 154 216 78 147 329 307 294 71 190 376 24 223 103 128 230 177 240 344 297 101 218 170 143 339 79 169 179 318 267 278 123 62 295 276 378 207 106 42 70 52 73 310 375 403 284 57 86 133 125 309 427 27 208 397 236 121 221 266 111 334 47 308 204 114 384 368 43 420 28 9 46 252 429 426 256 7 350 85 29 365 340 338 422 115 367 381 326 293 93 364 298 434 351 283 196 272 366 264 33 239 323 346 206 185 137 431 328 139 69 116 268 158 261 387 330 361 20 421 94 306 235 271 380 243 14 359 405 372 354 254 360 18 174 250 194 342 97 222 270 149 433 157 244 117 145 188 370 321 167 168 60 393 176 419 181 423 385 233 195 424 275 320 265 349 124 197 150 232 160 303 38 100 44 400 273 262 407 172 414 175 140 373 304 316 435 16 6 386 217 191 343 65 249 317 22 383 182 98 301 210 245 251 112 193 126 30 58 341 211 425 388 17 279 432 408 281 89 416 333 77 102 337 428 37 225 10 200 66 74 226 171 231 105 224 199 280 287 68 153 75 198 156 55 313 242 3 142 260 40 219 401 184 241 347 53 248 209 227 118 391 205 129 394 189 13 146 213 162 395 49 327 87 282 127 2 72 166 32 292 238 108 299 410 325 319 406 289 25 324 311 134 357 45 234 107 355 335 257 269 396 148 322 110 48 59 358 296 41 8 371 389 290 398 353 382 132 104 263 152 332 186 21 81 96 36 83 228 399 12 277 92 212 138 11 122 377 5 274 402 215 180 404 80 246 369 19 91 76 4 390 336 255 286 54 15 392 +163 1 95 63 44 133 8 70 338 159 24 115 202 134 86 78 50 376 114 195 98 189 129 310 276 365 71 152 268 349 305 203 341 141 345 430 116 128 313 192 367 282 61 207 190 143 265 362 20 246 405 406 398 412 231 237 136 197 324 348 230 123 344 393 340 294 264 325 334 93 87 297 428 360 272 359 151 410 240 352 435 75 363 251 193 351 56 415 389 308 309 147 235 101 326 9 347 198 288 215 311 411 253 323 408 154 26 285 279 386 74 373 77 281 83 82 69 259 73 130 167 168 161 346 271 257 270 131 332 173 278 284 214 401 178 385 414 379 252 113 14 431 57 126 31 100 137 208 318 368 407 319 212 45 335 39 176 239 420 292 174 331 103 221 295 210 283 234 144 397 358 121 370 417 64 315 394 211 40 220 247 350 409 307 10 371 34 170 23 153 301 399 47 182 169 330 378 269 227 400 30 384 28 119 256 242 254 138 43 7 217 90 85 419 21 374 37 361 194 166 356 404 139 291 67 94 17 312 46 160 92 353 382 418 97 429 293 196 354 416 218 275 52 191 403 172 135 79 390 25 81 48 364 258 422 16 273 188 274 6 321 387 62 175 76 328 395 250 187 396 140 80 66 280 164 298 336 339 263 199 244 106 433 304 424 421 232 109 2 375 200 55 261 209 260 162 38 145 35 68 355 222 228 201 112 53 383 155 267 402 413 183 266 236 216 248 327 105 108 357 255 118 366 206 434 277 51 117 223 99 29 306 302 377 229 316 132 314 427 5 60 171 111 59 317 300 120 381 179 423 158 33 22 380 27 84 243 142 150 125 432 233 177 102 65 124 184 303 165 342 224 388 72 425 149 156 3 180 296 213 204 58 426 157 245 392 91 15 320 186 262 219 241 181 88 391 333 205 286 369 49 96 290 287 146 13 110 225 148 185 238 32 289 11 89 19 42 329 4 343 104 249 127 36 299 372 226 322 18 337 41 54 12 122 107 +26 352 141 159 63 237 368 64 362 131 345 50 334 376 147 31 163 67 308 420 253 329 95 288 130 1 294 272 78 202 82 109 203 61 34 192 154 435 309 261 379 339 218 350 285 221 325 330 116 160 239 344 338 113 208 346 356 341 207 220 56 103 169 170 172 83 52 348 231 267 24 216 361 51 33 77 363 305 276 412 128 133 23 70 374 349 191 173 275 178 101 413 266 265 409 71 73 247 347 340 365 416 167 168 297 137 293 419 230 144 403 212 312 431 28 39 319 306 177 123 430 151 145 125 295 195 291 310 251 252 8 190 331 259 134 258 217 20 260 140 14 114 422 250 328 375 197 284 257 360 384 359 351 307 386 187 90 264 234 158 86 93 373 298 124 204 200 411 326 367 179 16 302 161 115 278 99 79 370 121 300 407 198 164 244 366 66 29 57 84 397 318 209 65 166 106 393 36 206 117 377 415 408 280 240 428 201 381 98 283 378 85 196 188 171 315 62 342 152 111 323 165 44 75 433 262 119 9 242 389 120 414 153 184 354 274 74 256 421 100 17 7 426 434 396 406 314 429 43 232 112 60 304 424 303 214 405 282 273 324 299 301 46 38 364 245 394 59 372 87 327 162 150 135 139 30 281 205 10 398 40 383 432 45 279 316 2 263 317 427 97 199 35 175 385 235 243 88 194 193 94 332 313 395 47 81 233 371 156 358 248 110 146 118 268 142 185 215 42 58 55 37 236 108 6 387 321 68 149 399 229 292 211 210 380 129 417 401 92 277 335 189 102 353 382 155 222 423 355 136 157 183 21 320 104 53 290 224 271 143 311 69 289 287 89 132 126 270 254 343 105 402 3 410 333 336 296 22 322 19 249 337 32 255 219 404 127 181 223 418 357 246 76 11 174 138 182 241 225 80 390 425 72 388 392 27 41 227 18 122 96 400 91 226 148 186 369 13 176 49 5 269 180 238 213 391 48 228 12 107 4 15 25 54 286 +237 50 121 203 201 141 192 154 187 1 204 411 125 318 331 196 114 244 362 161 433 297 31 144 145 247 159 64 202 34 349 79 170 95 20 90 169 366 128 430 378 275 123 26 341 413 339 294 403 113 352 338 278 258 361 221 116 317 163 130 93 305 84 131 103 101 94 39 58 232 276 62 240 119 46 190 100 218 14 112 181 63 233 28 308 298 389 253 56 52 387 384 435 303 249 367 70 78 262 432 315 199 412 295 343 257 379 191 340 288 348 239 85 109 209 330 177 230 86 363 421 334 126 386 217 73 110 117 147 250 309 373 350 51 10 194 422 259 21 99 353 382 364 306 376 287 7 186 127 115 179 124 235 53 243 365 16 370 261 424 291 216 133 264 172 206 57 195 220 397 61 256 333 431 106 273 351 105 60 356 158 414 304 426 205 292 342 319 428 37 38 358 368 381 98 197 344 184 59 420 87 254 162 207 301 310 2 399 77 67 222 354 82 164 214 398 347 156 329 185 267 9 132 242 208 178 111 139 188 307 171 120 326 345 43 419 425 160 252 265 271 193 296 312 407 140 282 165 280 45 229 394 149 166 65 8 346 279 173 241 409 359 75 69 357 40 320 360 22 321 332 74 47 335 236 281 372 383 415 380 268 24 245 71 96 374 226 13 323 155 427 198 393 23 406 41 134 272 223 6 289 167 168 137 55 396 211 108 416 405 157 83 3 284 316 189 200 231 234 129 313 270 263 213 104 402 285 293 210 176 66 142 33 148 390 302 417 434 248 32 30 118 29 143 151 325 266 89 88 42 27 225 269 401 150 355 92 36 327 224 299 12 97 300 227 395 174 408 228 182 290 135 314 219 418 76 251 324 311 388 68 136 328 371 35 72 17 260 404 283 153 146 18 255 138 429 81 337 175 377 336 385 375 212 44 80 238 277 183 5 215 122 49 152 423 11 102 322 91 48 274 19 369 107 410 246 25 54 400 286 392 4 15 391 180 +377 272 50 237 66 151 56 346 131 33 220 348 203 202 70 63 234 293 114 113 147 295 100 208 207 116 1 150 163 159 260 64 95 198 78 239 82 197 430 139 93 218 379 61 109 261 39 77 411 141 65 28 339 308 291 359 360 216 294 57 266 149 428 334 414 144 108 31 103 298 356 253 374 345 352 351 51 215 287 201 259 321 101 350 412 288 247 250 79 190 115 275 242 323 230 354 121 99 422 362 338 278 375 381 312 73 178 185 267 344 154 363 123 331 90 9 231 407 134 172 431 305 376 301 26 24 309 111 94 420 128 120 310 386 196 20 10 86 268 67 130 365 232 187 367 413 122 343 170 169 85 191 318 281 292 105 7 349 368 329 167 168 34 380 297 6 285 192 175 14 302 156 258 299 211 262 240 403 52 133 119 330 127 166 140 409 373 205 125 416 361 383 16 296 316 177 92 378 68 161 280 162 424 277 315 405 245 434 282 217 256 271 193 84 210 366 27 209 387 137 341 328 117 37 97 38 158 284 173 340 43 194 204 384 145 55 429 184 106 8 11 62 435 415 47 221 40 264 206 46 307 22 372 244 30 195 353 382 279 432 179 306 395 199 332 200 276 336 236 71 241 164 74 248 426 421 270 53 257 153 364 311 417 370 290 235 303 143 118 433 320 189 313 410 42 60 2 75 188 252 425 385 283 174 325 124 102 337 342 254 142 397 335 44 146 222 233 304 355 165 176 393 347 326 273 155 126 12 319 419 83 401 171 227 317 249 289 112 87 427 88 265 45 72 226 181 182 243 225 388 21 13 48 418 269 17 41 214 314 81 152 29 69 138 406 160 98 251 371 104 148 333 58 402 212 396 32 219 49 394 110 358 357 327 157 398 18 324 3 423 132 263 408 5 136 59 213 238 96 25 322 255 229 36 76 300 399 135 404 223 224 91 183 186 89 19 369 107 228 389 4 80 129 390 35 392 274 180 246 23 400 15 54 286 391 +50 48 410 56 25 57 47 113 102 24 159 203 363 9 295 22 38 348 42 247 237 44 220 352 391 207 141 368 202 34 334 64 329 291 385 266 95 373 192 331 131 321 67 374 122 362 379 187 310 208 39 68 218 375 164 115 33 278 216 239 144 178 78 1 90 147 350 31 307 388 285 430 339 103 120 383 365 177 150 71 66 27 346 61 190 182 93 393 161 99 111 345 86 412 354 51 7 298 429 88 268 70 63 18 300 240 201 162 422 411 253 315 409 288 163 128 256 173 272 119 367 149 356 82 185 305 153 121 137 323 79 20 28 85 376 384 165 318 130 420 214 267 206 271 123 261 370 170 387 431 250 264 258 401 299 424 169 154 109 325 49 294 52 114 309 65 312 117 259 328 230 284 419 297 26 94 106 242 30 16 366 84 139 270 6 133 344 308 274 166 330 204 351 320 306 196 14 188 421 37 175 11 23 415 275 301 105 43 231 151 17 303 340 386 191 251 380 262 293 260 152 427 116 145 349 343 394 283 276 287 273 167 168 73 304 403 233 101 209 426 243 378 62 281 313 200 197 100 407 205 428 396 316 189 87 265 46 112 248 232 377 397 406 107 125 195 341 269 364 223 435 338 10 433 234 179 45 215 97 342 157 432 60 8 108 194 155 236 140 29 434 69 148 2 174 241 77 176 184 405 198 416 317 252 358 98 417 314 257 132 413 381 398 92 249 229 333 245 326 221 127 158 414 347 143 327 59 217 292 399 72 357 211 335 359 302 172 193 124 225 226 156 360 408 210 222 199 219 395 244 129 142 418 55 21 280 40 81 134 290 181 361 212 118 296 4 171 74 337 372 235 135 324 402 58 400 332 83 282 279 319 41 246 160 404 36 13 183 89 254 32 126 353 382 355 392 289 146 311 423 75 35 110 96 53 425 371 3 12 238 213 227 136 369 224 390 263 138 255 277 5 76 180 104 228 389 186 322 80 286 336 54 91 19 15 +266 395 31 220 237 295 235 6 45 2 190 230 185 64 291 351 7 14 373 82 30 379 192 342 161 312 356 56 9 111 398 162 70 402 115 201 310 411 320 158 120 21 202 119 99 203 299 305 209 90 147 343 24 97 420 123 10 362 159 67 87 313 413 51 383 19 407 253 20 290 429 177 137 38 430 113 85 44 257 216 43 267 164 365 306 178 251 364 256 308 292 144 354 16 62 394 294 240 47 88 29 93 321 57 339 422 435 431 169 427 72 348 393 250 142 117 352 318 39 301 42 374 319 141 170 368 50 22 79 281 183 261 66 105 297 247 26 149 106 349 152 37 315 175 280 346 80 200 330 12 309 167 168 265 116 421 231 86 331 229 303 268 11 156 205 145 363 329 275 109 406 1 384 133 317 163 143 361 17 298 157 40 140 399 254 258 100 222 61 328 65 125 166 314 248 179 372 232 333 94 155 414 34 238 226 3 335 165 244 371 48 293 390 316 325 71 55 358 412 218 25 378 214 415 233 340 174 239 271 52 428 341 262 139 227 388 213 28 424 380 323 252 405 27 246 243 211 196 360 63 188 434 279 419 130 350 225 376 74 176 272 269 128 403 241 284 150 131 121 194 58 33 278 154 387 68 189 36 401 46 219 375 385 334 13 208 172 75 287 359 101 357 78 127 324 199 84 110 8 191 300 425 32 223 135 236 288 367 273 112 259 153 307 417 95 210 69 217 212 366 146 181 173 337 302 433 264 207 304 270 245 347 311 381 289 122 184 224 195 410 285 18 77 255 322 377 59 206 221 204 103 391 249 114 193 60 136 96 260 171 418 108 134 129 408 187 397 283 409 41 276 182 296 228 426 102 389 404 416 151 92 332 197 263 23 126 274 5 327 148 132 73 89 344 355 386 345 282 353 382 432 107 49 83 76 160 370 124 53 423 326 198 396 186 81 104 54 35 215 234 338 138 392 277 91 369 4 286 400 336 118 98 180 15 242 +83 31 63 192 306 50 237 411 294 66 64 220 250 141 275 159 26 319 147 207 253 131 36 356 78 163 231 1 208 239 113 349 256 128 334 79 70 93 14 310 114 295 20 16 56 341 346 373 330 420 221 94 200 92 95 257 348 235 154 339 308 318 413 393 265 261 90 85 67 123 368 362 51 10 101 340 244 331 361 45 209 82 38 47 317 230 431 9 190 161 77 73 374 272 367 305 276 99 384 185 2 247 303 216 187 39 315 217 116 288 218 191 203 291 167 168 140 422 202 117 106 162 179 125 312 352 379 97 7 144 119 428 61 169 298 258 72 430 170 121 158 399 139 285 284 273 24 251 403 201 177 309 264 351 419 164 363 381 301 278 86 214 394 398 395 323 280 149 71 30 424 60 127 376 401 34 115 232 68 145 407 360 435 365 28 287 233 160 358 402 130 283 150 69 43 350 151 386 282 111 88 240 313 52 74 21 297 433 359 29 267 242 81 281 321 354 37 199 105 65 57 329 410 183 18 290 427 333 33 432 266 152 204 383 62 406 225 87 371 342 46 268 136 343 84 182 364 412 370 259 243 304 252 142 120 320 262 184 409 44 134 347 175 421 271 229 133 260 172 75 48 3 156 405 188 377 181 236 397 109 389 387 224 146 335 22 316 165 254 296 226 307 108 353 382 292 249 196 59 8 23 166 174 186 245 222 314 378 372 416 375 396 385 194 344 176 132 58 293 110 89 6 193 76 345 332 390 124 178 206 103 12 13 415 302 197 27 223 311 429 328 434 241 355 227 270 137 357 234 189 80 366 380 388 246 414 118 126 96 211 425 135 325 300 129 155 198 210 112 205 195 100 269 148 4 49 122 40 42 408 55 338 279 25 153 157 228 324 238 277 32 212 213 53 336 426 171 41 143 219 322 17 255 404 289 102 299 215 138 98 11 5 327 104 369 173 107 417 423 248 392 35 391 91 418 326 54 274 337 263 180 286 400 19 15 +175 237 63 351 174 46 64 334 1 431 281 163 203 331 189 159 259 298 202 346 50 376 82 39 311 176 154 253 220 308 192 354 179 258 116 14 93 312 267 315 31 211 101 65 119 20 338 284 204 428 378 210 326 113 306 414 133 430 201 190 77 115 261 146 244 247 232 350 173 424 422 349 71 309 78 366 79 275 386 330 28 130 147 51 121 310 352 318 305 123 208 117 297 239 141 245 262 61 60 57 73 233 342 66 380 295 144 340 283 188 156 128 365 94 26 345 103 294 279 329 367 291 289 381 379 161 191 98 200 106 250 56 99 16 420 43 426 86 317 272 90 112 177 360 195 70 359 85 368 411 222 235 412 276 170 9 185 241 257 230 256 413 197 207 10 169 264 363 293 356 194 240 341 288 333 158 184 84 321 302 52 432 38 373 307 187 196 344 7 109 45 319 421 136 125 353 382 59 348 21 278 335 164 362 40 216 118 407 282 361 2 83 198 374 416 280 87 199 427 206 81 97 120 95 301 343 273 285 131 266 249 425 304 172 227 165 292 218 178 193 53 303 8 74 134 140 242 323 224 403 364 102 435 62 58 401 162 383 332 67 377 37 263 405 69 100 252 243 433 290 24 313 108 142 225 213 139 36 12 415 408 127 339 214 138 149 114 370 371 47 124 248 3 171 287 13 314 254 167 168 387 372 320 92 369 423 44 234 409 145 226 30 126 160 88 155 48 325 22 157 410 32 150 217 137 34 265 328 110 229 180 68 72 260 296 104 6 105 347 166 434 406 238 268 55 402 181 205 355 25 299 33 151 76 384 399 75 417 398 429 358 209 394 357 236 96 277 183 393 300 221 5 419 388 231 397 212 219 223 42 228 143 152 89 270 182 395 153 271 286 111 23 148 41 375 327 418 135 129 35 400 389 49 132 27 91 122 404 255 324 391 322 251 17 186 269 29 390 316 385 215 80 18 15 11 396 392 337 246 336 54 19 4 274 107 +220 231 51 67 395 411 310 393 266 356 113 237 291 39 56 430 203 147 109 82 99 163 63 202 261 419 64 201 331 379 7 97 295 207 159 165 256 305 247 267 294 312 50 230 262 239 297 119 29 190 306 86 372 409 315 144 348 154 31 85 123 334 365 30 20 103 342 313 130 412 131 1 250 161 301 43 329 366 205 208 114 90 376 12 179 236 363 318 79 26 152 70 216 78 253 192 14 106 196 95 349 427 187 240 431 93 112 352 42 111 281 284 185 133 116 55 141 320 413 323 120 100 322 164 380 285 209 121 308 117 351 9 339 47 169 24 321 128 386 302 415 170 417 422 184 362 177 275 368 314 357 268 191 394 280 52 232 57 34 45 84 405 434 146 101 299 235 278 206 241 283 87 158 426 88 384 66 298 387 396 175 204 367 361 218 293 157 403 279 244 418 288 259 234 105 71 94 340 137 383 197 183 397 125 258 189 346 374 424 36 35 214 174 172 65 406 271 303 420 222 433 224 73 421 166 373 155 176 254 332 246 309 360 401 188 359 264 69 140 115 398 28 16 46 238 89 414 139 242 370 195 338 354 200 62 221 72 407 149 257 124 350 212 377 173 145 311 135 142 249 416 181 358 428 343 194 330 399 150 167 168 217 292 68 341 272 199 345 138 225 423 270 136 132 378 10 392 319 435 198 251 2 233 134 32 27 364 151 162 243 3 265 335 276 381 385 6 37 74 371 432 248 18 33 22 211 61 226 156 344 77 408 347 245 316 425 11 260 210 287 273 252 193 410 107 53 102 227 317 21 178 8 38 76 223 83 182 325 353 382 290 402 375 404 41 269 17 229 110 307 60 324 75 171 59 304 286 122 390 143 127 282 153 429 213 54 186 160 129 48 13 296 255 23 219 215 96 388 104 25 40 108 326 148 389 328 118 5 289 49 333 58 300 98 44 81 126 92 263 19 327 277 337 80 91 228 355 274 4 15 391 336 369 400 180 +266 19 237 159 111 31 331 220 203 395 17 334 308 144 411 116 6 202 163 239 63 352 161 362 297 78 123 192 39 190 178 379 7 154 169 170 67 52 141 356 291 26 376 201 253 84 51 373 247 422 340 267 20 386 298 368 338 34 1 16 281 305 351 323 430 250 9 64 90 230 309 56 147 95 103 342 115 187 50 421 259 293 130 288 346 14 231 383 435 261 218 133 306 412 268 207 62 82 113 101 349 121 350 318 77 117 332 294 179 164 153 295 312 158 345 11 28 24 364 43 70 10 177 66 175 325 429 197 79 310 378 361 99 329 119 162 221 271 363 290 279 189 128 367 137 262 413 100 185 188 347 217 284 257 360 196 433 354 131 150 374 359 149 393 216 272 211 275 38 208 256 313 60 45 47 414 165 198 235 420 434 171 167 168 205 240 109 366 172 174 191 65 431 206 330 252 258 194 93 232 210 87 315 328 299 114 415 301 199 409 397 394 398 57 344 426 365 233 343 195 209 348 321 292 370 105 244 140 280 387 55 204 73 97 339 46 317 245 183 270 139 200 30 124 419 407 283 324 106 120 278 173 303 71 22 381 146 23 138 176 287 184 112 380 358 249 384 156 151 432 428 37 145 254 341 40 269 160 285 273 264 110 157 53 416 86 385 193 424 326 44 61 377 427 319 234 142 2 143 316 181 389 166 405 371 224 399 74 127 94 29 337 375 241 3 372 27 248 75 42 243 32 276 36 80 265 304 236 307 125 68 58 260 396 333 263 98 132 214 274 242 251 320 41 85 135 155 126 353 382 21 212 417 33 314 277 403 401 88 118 406 69 296 282 108 59 134 327 213 289 102 83 302 402 222 311 122 390 355 219 223 148 96 335 152 418 225 357 226 229 255 13 4 238 215 76 392 408 425 72 18 227 12 186 48 423 246 25 35 129 336 8 410 136 89 81 182 322 404 286 300 5 388 92 369 107 228 180 49 400 54 15 104 391 91 +422 158 253 356 147 421 31 192 237 420 64 435 411 295 63 123 20 113 215 187 85 383 116 334 93 341 386 348 252 185 167 168 307 2 141 86 159 308 9 365 94 306 250 309 131 272 26 201 230 45 70 88 275 164 97 14 184 431 169 305 321 177 363 266 170 434 291 106 415 412 244 178 125 172 239 145 7 312 140 294 344 235 374 190 217 234 78 16 65 261 114 407 202 399 99 221 267 345 372 28 21 203 175 163 402 150 90 133 161 281 319 82 373 220 87 10 256 428 413 195 427 109 67 139 257 358 101 394 36 366 55 284 330 92 377 121 205 110 216 204 56 351 43 119 1 37 398 62 318 333 50 346 298 349 156 362 424 176 149 343 165 76 331 430 38 376 303 328 310 115 100 409 57 258 162 227 61 426 315 429 242 313 144 317 251 300 83 299 12 191 127 22 39 34 130 238 350 134 69 292 117 260 80 128 46 71 254 179 66 378 153 51 24 297 33 279 389 200 111 384 280 84 142 240 371 17 105 262 247 174 81 397 209 188 199 236 273 189 329 40 340 414 311 285 296 419 226 27 263 375 243 30 231 47 276 335 193 360 287 283 225 381 416 206 135 259 417 265 233 95 157 137 368 361 197 354 196 314 3 6 359 367 60 74 390 355 290 352 347 232 248 364 52 73 171 143 425 79 405 432 339 13 96 118 337 301 44 198 151 288 403 77 103 249 75 72 59 89 289 396 120 433 166 41 160 186 29 379 229 418 98 304 393 207 108 274 223 332 388 404 224 320 357 342 126 218 183 369 387 293 214 155 246 173 23 58 401 213 146 208 194 245 222 380 408 278 326 212 302 282 264 122 324 181 138 11 8 129 182 124 353 382 154 49 32 241 255 132 322 277 370 104 112 327 136 323 219 268 325 42 228 5 406 152 385 91 395 271 148 68 338 180 211 19 48 270 107 54 410 25 18 210 400 391 102 336 53 269 423 15 286 35 4 316 392 +349 133 63 237 259 359 334 360 340 353 382 130 1 123 239 282 378 428 159 40 308 345 351 163 197 386 346 190 199 191 170 293 10 169 279 95 187 305 90 82 198 103 20 193 128 412 350 344 28 414 113 78 354 232 309 261 116 326 196 203 98 361 381 297 244 318 313 141 96 275 398 367 61 118 281 194 331 312 304 430 9 59 317 284 184 384 26 64 306 240 258 79 242 119 70 202 291 99 387 247 327 303 46 338 31 192 201 352 144 101 189 411 415 424 220 273 368 93 73 77 341 16 335 253 379 256 139 288 234 156 413 332 171 218 295 409 39 407 154 114 195 262 406 272 373 161 86 370 115 183 366 307 276 206 393 235 250 231 164 177 188 347 172 420 283 85 422 179 87 131 62 204 431 52 21 243 294 216 376 365 205 65 298 348 333 249 14 358 51 178 280 339 104 173 66 362 43 67 427 30 363 126 71 149 117 374 301 310 314 60 221 125 433 356 110 403 315 230 399 109 209 292 426 74 435 357 157 57 233 37 94 421 22 302 45 329 84 208 69 166 289 47 425 263 200 397 50 132 416 150 296 105 38 267 32 214 254 419 97 81 165 124 319 129 174 215 343 92 106 76 290 236 121 432 371 83 6 355 162 145 147 266 217 148 146 120 372 7 5 100 167 168 34 44 151 33 417 155 186 185 278 136 405 176 394 207 41 75 383 140 408 268 138 375 330 175 342 434 135 137 287 260 380 264 285 252 389 227 2 321 429 142 229 181 153 160 112 111 395 270 418 311 127 401 12 390 158 42 245 108 396 224 369 364 402 91 55 24 134 323 152 88 324 58 251 213 248 265 255 277 222 225 219 241 8 102 56 72 25 68 404 271 257 48 238 27 23 143 226 54 80 400 299 3 328 246 211 223 182 29 212 13 228 89 210 337 316 36 325 269 392 35 377 410 385 11 300 53 320 122 286 423 180 17 322 274 388 336 49 19 4 18 15 391 107 +67 231 109 159 63 29 163 31 51 237 220 78 113 411 50 331 1 334 291 203 360 130 207 412 393 349 395 202 356 348 133 95 82 310 103 359 116 407 20 114 7 93 239 253 70 295 230 187 294 141 430 338 34 431 297 362 154 192 52 268 247 352 39 201 26 250 101 420 144 123 281 147 14 368 197 365 345 169 9 376 308 379 64 24 288 367 261 99 56 284 66 170 161 61 419 208 397 240 128 131 16 346 173 398 12 198 244 119 44 275 196 306 405 326 413 383 373 71 351 271 235 57 216 218 267 305 340 97 256 117 30 259 347 329 43 94 278 363 90 115 121 298 258 266 77 6 221 179 272 190 189 68 435 339 375 384 330 195 265 293 386 422 374 45 350 27 313 409 312 318 315 86 140 151 212 344 415 358 242 184 342 257 316 152 17 87 283 396 394 264 385 178 165 254 79 28 162 377 417 309 172 236 65 426 167 168 62 209 433 324 414 285 301 217 370 429 36 233 372 234 206 193 23 191 37 47 111 399 146 320 136 85 280 428 69 321 252 164 361 273 416 357 434 106 84 215 408 55 323 232 421 120 107 166 137 158 378 270 251 401 418 10 332 307 183 139 2 199 53 364 46 21 18 48 135 177 262 40 124 75 153 222 74 214 260 224 317 73 328 269 400 366 3 425 98 279 380 303 100 296 205 160 134 402 127 302 243 108 282 276 341 304 427 333 33 424 311 185 319 22 226 354 143 194 38 241 406 343 263 171 125 112 59 149 277 188 11 314 300 410 287 245 182 155 204 105 322 325 227 80 92 200 58 388 175 335 13 387 353 382 83 246 390 381 19 290 60 126 150 176 249 327 213 156 118 132 255 403 186 225 35 292 42 142 299 72 145 371 248 238 25 174 223 88 404 32 432 129 102 4 181 219 122 229 157 337 423 211 81 289 389 355 76 5 104 96 148 8 138 210 49 336 274 89 41 392 110 369 54 286 228 91 15 180 391 +352 362 237 141 95 159 331 24 78 239 131 308 368 208 207 63 288 420 373 163 435 220 116 31 346 379 50 34 103 26 169 192 170 56 266 231 178 334 325 144 57 20 345 64 329 130 295 247 190 39 350 306 216 291 267 52 67 154 77 348 1 9 253 261 430 73 339 113 268 162 363 218 93 393 109 365 172 351 309 376 293 114 202 203 147 82 310 51 338 84 38 115 367 297 356 83 90 413 316 323 70 278 271 318 419 275 321 16 294 191 47 412 305 111 431 347 230 276 370 384 128 416 161 361 61 177 140 274 313 299 197 14 344 285 6 201 101 377 123 133 164 284 86 206 36 270 257 374 66 250 340 187 166 319 234 79 330 233 429 258 259 137 171 242 378 44 17 349 342 298 354 65 251 33 272 422 198 100 151 99 119 411 280 22 209 366 158 7 200 165 87 415 375 407 312 217 43 62 359 292 360 196 179 260 199 28 68 236 124 341 145 326 102 301 45 120 303 235 125 395 10 75 160 414 273 152 94 403 337 383 195 304 71 433 167 168 221 315 30 121 53 283 173 182 204 389 60 385 150 269 153 175 262 387 410 252 300 364 248 243 232 421 97 112 210 74 46 264 184 106 193 194 40 188 254 211 240 426 42 358 381 8 245 327 185 372 117 129 277 432 134 380 265 126 409 394 396 397 81 149 423 256 85 139 215 355 118 408 105 428 398 386 424 189 110 2 281 88 317 332 328 98 205 156 333 27 214 399 307 371 212 434 21 23 249 343 427 388 401 244 222 29 324 336 279 132 11 263 290 55 255 282 80 146 59 19 49 405 353 382 311 219 287 241 142 127 37 143 69 302 425 48 157 246 320 186 122 181 108 289 417 58 92 18 223 402 296 25 335 135 89 41 107 322 314 183 32 155 96 174 390 224 418 238 3 12 391 35 227 213 176 13 72 148 404 226 225 369 5 357 138 76 400 229 406 136 228 180 4 392 104 286 15 91 54 +295 412 82 203 291 202 113 23 312 159 356 88 185 373 253 9 183 237 229 220 131 284 164 56 251 294 64 422 57 165 321 163 128 420 331 155 314 170 31 71 374 239 93 169 264 94 283 178 66 78 258 379 265 320 70 300 417 99 140 305 424 285 214 240 177 22 141 173 407 415 201 208 431 375 411 348 143 97 123 69 248 50 120 137 135 43 383 27 190 192 24 136 139 206 329 16 149 187 235 47 207 119 409 315 150 106 363 85 308 266 360 114 307 63 380 111 386 309 427 161 30 302 261 359 179 175 162 418 95 213 272 234 144 90 385 421 215 12 37 176 252 241 242 3 306 256 226 351 310 406 250 6 133 275 42 328 193 334 145 130 430 1 13 153 33 368 86 362 413 225 184 167 168 172 26 10 352 267 318 157 105 129 204 281 147 218 20 171 73 44 350 115 216 339 125 65 313 287 405 81 365 117 7 102 262 238 166 297 79 276 48 2 61 68 403 227 323 92 122 429 398 367 288 414 109 75 349 101 391 326 174 369 384 243 230 55 298 435 14 340 428 303 434 311 38 11 404 222 224 8 72 402 25 278 219 387 388 142 158 118 197 74 299 317 354 127 84 333 376 343 5 273 98 188 346 116 335 231 51 282 62 327 17 280 426 410 296 52 195 35 108 408 341 394 260 34 189 378 236 198 103 83 21 254 319 301 247 151 396 134 67 186 200 45 304 40 361 146 279 28 182 223 249 233 263 154 290 18 342 41 58 401 397 132 381 180 377 29 87 124 259 194 330 372 432 433 395 364 211 76 156 77 257 344 345 393 32 425 112 210 60 366 121 370 89 228 244 46 322 39 232 325 199 196 324 148 358 205 423 152 160 293 212 399 126 209 59 36 191 138 221 181 357 400 292 217 337 255 338 355 353 382 80 274 268 371 289 100 110 277 246 416 390 347 270 96 316 49 245 4 419 389 53 107 104 271 392 91 15 54 269 286 19 336 332 +237 220 116 179 380 331 430 222 82 64 227 295 241 315 360 359 405 311 258 226 425 239 163 31 298 225 213 310 187 190 201 202 1 134 305 350 334 13 119 66 312 56 12 423 141 50 99 93 203 343 272 348 146 161 216 39 208 106 204 356 341 412 113 257 70 184 3 254 63 250 144 57 224 43 351 131 197 198 100 361 339 51 156 435 354 256 175 247 414 165 297 147 159 321 94 377 78 115 185 320 123 386 130 288 428 406 275 363 346 373 411 235 5 26 86 72 109 62 308 139 79 340 88 28 376 192 261 431 232 117 379 234 365 284 229 362 30 74 317 291 427 133 193 313 85 169 73 349 128 24 90 228 408 207 407 318 378 162 14 344 249 61 155 95 424 170 253 345 238 126 188 262 143 242 260 9 374 84 52 7 364 65 309 219 121 97 174 387 166 20 125 10 290 293 367 191 352 381 417 280 409 266 240 223 27 335 302 136 103 389 268 325 164 101 218 75 415 432 177 259 77 111 35 281 420 114 33 150 368 110 137 196 127 402 328 267 366 338 176 393 422 151 283 67 104 413 323 265 199 183 245 46 233 16 236 211 292 206 38 433 296 282 278 230 248 372 154 105 194 289 140 244 45 375 403 71 264 276 124 2 303 333 301 58 306 210 426 395 157 304 40 418 277 149 329 421 273 37 287 108 89 195 299 92 270 205 271 243 173 419 357 21 347 91 22 322 314 371 332 178 209 330 152 158 23 181 6 8 384 87 145 34 200 69 55 397 231 118 279 355 221 353 382 120 251 59 294 172 142 342 112 316 394 434 398 326 47 319 383 215 29 307 217 252 32 429 15 81 285 160 404 60 83 167 168 76 122 41 214 138 370 416 324 336 189 68 129 396 369 186 171 358 327 132 96 182 17 269 385 135 153 255 399 337 25 53 42 401 212 48 246 44 98 102 388 11 148 300 274 180 390 263 19 18 49 392 36 4 54 410 80 107 286 400 391 +220 231 237 39 67 86 430 51 85 266 356 119 357 256 305 147 310 31 411 63 349 419 7 64 295 154 82 109 179 331 379 395 159 56 335 99 363 301 352 253 165 163 208 203 144 393 267 133 113 116 43 146 100 190 78 130 50 26 202 201 230 52 131 207 42 261 191 1 103 312 362 239 161 348 196 334 372 20 405 141 291 12 368 140 93 90 177 247 376 394 318 235 197 329 187 30 192 209 298 412 403 123 97 167 168 346 306 240 54 365 112 216 250 398 115 380 288 431 354 422 350 294 293 351 297 105 104 95 29 433 434 347 101 221 14 164 106 409 72 65 24 232 142 415 275 338 45 33 206 313 234 321 377 366 323 308 70 34 218 57 359 157 278 260 198 84 259 114 169 111 339 360 224 397 413 137 3 245 9 416 185 342 340 315 302 170 387 367 257 79 396 374 303 124 345 94 6 46 244 204 420 135 96 425 158 406 281 87 254 373 268 5 128 384 53 414 427 309 241 378 61 381 120 175 262 236 156 195 117 272 16 370 199 10 178 319 258 121 28 332 73 299 47 36 32 66 284 280 55 125 227 37 166 344 255 432 68 426 217 151 417 383 83 285 320 27 435 184 361 330 74 150 371 152 69 77 358 316 149 273 399 421 162 2 287 353 382 200 155 292 188 283 341 172 38 311 252 139 242 212 249 132 91 418 407 71 276 11 205 160 317 307 173 174 222 194 214 401 233 18 279 404 88 424 264 62 385 145 107 21 428 143 243 211 265 226 392 271 238 127 386 8 429 44 22 290 189 176 134 296 325 423 138 110 314 210 193 390 364 304 326 388 148 246 322 181 75 89 59 40 343 248 60 118 228 282 186 375 402 277 324 182 17 171 270 183 225 58 41 98 408 215 108 251 327 153 49 126 229 122 35 136 219 102 13 129 389 269 289 92 4 213 333 223 300 337 328 274 80 410 48 81 19 369 263 76 355 336 400 23 286 25 15 391 180 +50 307 78 345 178 34 159 309 56 130 344 429 113 334 374 95 203 71 308 141 44 376 253 202 237 291 163 153 352 57 115 348 230 218 1 38 411 120 362 294 288 331 247 375 192 368 187 164 61 363 9 261 337 147 17 356 385 169 328 207 170 295 63 161 14 329 64 26 70 239 297 298 20 339 420 325 172 33 258 350 182 39 143 250 412 173 272 131 259 268 409 103 67 93 266 52 47 422 216 82 116 190 165 188 90 22 201 278 99 150 177 346 149 275 379 119 252 144 310 388 285 123 204 133 171 154 106 24 312 220 31 267 367 383 413 240 274 49 419 46 208 65 326 271 306 276 195 16 435 264 94 88 167 168 84 270 305 284 86 265 321 206 365 341 117 300 393 139 101 102 407 196 354 109 137 430 77 391 434 366 128 221 121 349 410 28 338 85 262 386 318 361 197 55 114 340 421 48 6 74 151 25 42 179 428 7 51 256 397 191 79 327 373 370 92 313 347 111 351 378 387 280 360 359 73 209 140 431 323 287 30 426 283 408 198 263 330 75 129 299 108 315 158 432 145 342 66 175 98 27 319 260 424 124 194 43 416 125 403 223 233 185 427 60 62 211 210 304 343 184 87 293 68 243 394 37 381 214 217 302 212 364 157 273 174 316 126 248 45 236 205 97 281 245 152 433 279 398 166 269 246 384 232 134 59 303 415 229 69 127 380 358 242 199 160 257 289 235 251 405 414 189 200 234 176 58 89 156 10 11 249 317 231 193 301 244 112 333 324 142 118 138 314 83 282 353 382 100 215 399 332 320 122 2 146 36 135 296 155 41 401 162 80 40 389 35 372 76 23 105 32 18 400 292 377 8 148 222 21 136 29 355 72 225 53 335 132 417 183 277 371 219 241 224 96 226 81 290 181 110 254 402 396 418 238 336 423 390 3 180 406 19 227 311 357 425 255 228 5 186 213 13 404 369 104 286 322 395 392 12 107 4 91 54 15 +294 147 237 70 20 413 348 411 356 31 56 113 250 159 216 253 50 295 291 63 301 230 116 334 201 365 123 85 422 163 131 192 187 1 340 67 363 351 45 202 384 130 28 331 105 275 203 61 101 78 386 128 232 220 242 64 77 366 329 349 278 37 99 256 244 121 361 16 196 339 352 419 114 293 399 2 377 117 308 65 90 151 333 420 373 381 346 407 231 197 272 10 312 266 281 34 87 430 258 345 218 7 103 360 217 234 141 358 191 170 261 195 21 359 257 39 267 393 394 82 169 315 247 190 318 343 66 30 233 158 185 9 332 46 235 149 264 161 109 354 198 178 298 309 208 207 323 83 376 140 144 310 306 205 287 47 58 133 106 86 51 372 330 402 297 57 26 344 398 52 374 370 317 152 378 194 22 347 259 115 204 156 431 367 145 265 79 279 424 341 319 127 362 134 284 215 142 38 119 368 69 112 292 111 93 350 342 282 14 432 150 412 379 409 139 307 254 97 177 125 175 262 321 239 434 428 288 162 60 206 313 179 290 429 164 41 59 270 43 271 88 240 94 305 181 172 320 6 62 364 32 390 433 303 416 36 100 276 268 243 421 27 435 426 96 280 221 33 245 209 122 129 188 260 302 24 223 92 273 199 55 76 95 403 40 414 166 137 193 120 108 214 174 18 53 252 80 84 71 296 176 184 251 154 304 405 327 42 189 153 289 285 29 415 132 249 316 427 353 382 410 397 44 387 138 395 165 383 98 186 167 168 335 48 401 12 388 72 283 173 406 146 68 73 336 160 8 299 338 246 155 110 135 81 226 375 269 229 328 118 238 385 314 423 255 222 211 236 148 324 425 369 89 212 157 389 371 124 136 277 182 210 3 380 49 126 355 171 200 219 25 225 13 357 107 300 326 227 322 248 241 143 337 408 11 224 263 17 23 74 311 417 104 75 392 396 4 183 400 286 102 213 5 228 418 325 91 404 180 54 35 391 274 19 15 +203 163 202 67 159 376 165 141 220 430 51 1 95 128 207 305 39 310 231 315 50 154 362 113 412 393 99 405 352 288 31 56 78 130 164 82 379 109 291 237 331 144 63 26 103 338 208 265 259 119 363 411 61 258 7 190 409 334 86 323 64 187 239 192 350 170 169 93 71 101 253 264 52 357 29 34 295 256 356 368 106 345 294 133 309 230 131 348 395 161 201 308 329 222 115 261 344 85 297 90 218 178 302 284 173 339 57 276 427 361 23 419 250 406 147 94 420 120 124 397 225 247 137 318 320 204 117 20 197 121 114 143 312 116 373 266 365 216 123 374 349 415 223 380 240 24 267 195 416 298 307 9 206 384 330 275 84 172 236 293 200 285 278 423 226 283 342 431 227 272 196 401 254 340 104 79 198 44 221 386 385 346 179 191 97 367 328 70 33 422 435 135 403 366 188 341 394 378 268 262 112 140 8 177 28 69 175 413 242 66 211 306 232 77 35 62 244 217 241 212 425 375 321 160 43 396 134 273 281 30 125 210 189 16 229 326 214 257 53 417 424 46 171 68 98 434 88 301 151 213 100 359 183 335 347 37 433 209 392 111 73 14 145 360 381 136 167 168 235 176 311 252 174 13 12 87 18 370 372 27 428 324 155 219 429 418 89 271 152 47 251 184 74 300 149 313 17 279 185 157 10 387 426 153 343 139 65 421 91 75 166 182 194 60 364 332 280 6 354 42 414 304 314 282 205 407 317 158 150 351 54 270 322 38 398 243 303 58 162 234 233 55 408 371 108 325 432 156 199 5 245 146 45 181 193 142 129 228 316 358 319 224 48 249 299 287 292 22 105 246 118 263 186 388 255 132 399 238 383 248 72 333 19 337 410 377 110 83 3 40 102 260 81 327 92 277 32 148 138 215 389 36 59 353 382 336 127 49 289 296 96 122 25 269 126 274 2 41 290 404 11 15 355 107 402 21 400 180 390 286 4 369 391 76 80 +318 370 239 247 319 166 367 95 208 237 132 207 242 103 304 1 193 31 64 78 90 273 190 50 163 161 79 411 331 232 386 192 384 297 430 310 196 295 340 365 201 433 291 220 347 39 144 363 216 203 113 187 70 159 301 100 123 334 112 93 305 313 191 366 20 114 206 131 362 338 315 235 119 141 415 240 256 387 28 63 354 412 199 343 352 194 294 351 170 195 97 9 128 230 167 168 86 202 26 306 147 73 350 115 349 218 332 209 169 7 236 258 181 231 47 197 10 142 330 397 74 133 427 106 99 376 82 431 378 154 56 101 317 177 284 298 275 57 121 312 59 43 428 398 130 379 413 424 62 24 46 393 253 341 303 116 420 245 249 292 380 356 403 75 414 52 139 282 276 257 426 360 217 373 359 94 345 157 118 221 214 250 198 61 179 16 32 87 324 346 243 262 84 125 288 137 105 124 432 71 233 51 371 264 188 88 40 261 266 45 85 323 53 435 321 259 111 241 30 364 162 140 120 368 394 244 60 283 55 281 134 34 272 422 405 421 251 213 175 308 158 417 396 419 184 361 326 150 358 285 222 254 89 404 234 268 395 248 416 189 407 156 287 204 117 14 265 149 434 211 339 185 406 399 342 309 145 210 381 2 329 348 409 174 126 212 110 65 200 267 219 37 21 260 271 109 383 229 252 353 382 81 69 155 152 44 83 333 41 293 77 38 280 344 290 418 325 223 22 289 227 42 143 146 8 58 67 423 98 66 127 68 178 238 225 374 299 246 320 96 226 6 327 277 389 401 279 151 278 335 33 12 164 129 274 148 425 171 92 372 160 296 408 270 173 385 176 316 172 357 35 215 311 377 255 165 183 224 108 136 355 3 186 153 390 5 13 135 102 302 48 336 269 72 138 25 11 36 307 314 76 27 122 328 23 205 182 402 18 322 228 29 80 375 410 107 429 17 369 104 4 286 337 180 388 392 300 263 54 91 391 15 19 49 400 +237 123 386 331 317 199 116 20 39 133 368 1 201 433 413 64 318 239 340 79 70 349 78 272 90 294 351 192 16 10 177 365 387 303 315 297 159 244 240 163 360 298 187 432 2 99 179 247 31 125 147 393 308 403 347 350 82 426 398 334 145 250 305 121 424 253 197 21 399 216 103 313 126 45 359 312 261 196 127 26 130 358 161 373 428 170 430 411 185 61 256 345 378 343 7 37 304 235 119 113 59 407 352 162 169 353 382 425 28 333 85 221 249 84 191 62 131 421 100 63 218 115 290 181 258 93 306 232 431 383 111 67 139 233 366 346 50 273 73 198 164 243 412 158 435 367 332 128 361 188 259 209 178 43 109 422 60 141 341 287 254 364 146 394 296 144 397 95 117 268 295 190 114 132 110 310 282 86 257 32 231 149 204 106 356 6 65 309 214 402 409 226 69 156 94 30 230 348 381 379 40 222 52 193 101 278 284 234 3 370 291 329 151 206 362 77 245 58 153 207 165 220 66 38 46 275 289 194 405 354 154 415 195 22 374 242 376 203 414 301 419 288 384 223 167 168 236 87 157 9 23 344 264 97 357 363 108 324 252 307 280 420 51 276 34 262 380 251 281 330 427 224 148 241 390 47 217 202 371 33 166 12 140 186 406 105 267 172 14 13 389 327 429 396 339 150 319 229 395 408 292 189 112 56 137 342 208 227 155 175 183 404 124 283 174 72 314 41 98 176 335 74 212 302 225 311 293 271 416 29 326 88 213 248 104 299 184 260 355 338 200 96 160 269 321 266 11 134 142 27 205 215 92 24 372 328 434 277 42 143 75 171 57 89 320 8 138 246 270 55 377 385 265 53 279 136 68 83 44 173 122 71 5 325 152 81 219 120 255 80 263 417 17 375 238 336 285 129 228 118 36 316 211 19 135 337 210 322 76 418 369 54 91 48 35 274 401 25 323 400 182 300 388 15 107 4 102 410 286 49 18 423 180 392 391 +231 220 51 395 39 310 430 393 67 305 203 165 419 63 99 202 141 331 119 237 7 201 109 323 163 50 356 154 256 190 1 362 411 30 82 12 196 159 29 288 379 405 313 31 52 259 64 412 230 130 147 315 295 144 103 152 86 380 352 235 291 56 93 357 253 427 113 239 266 376 187 128 384 90 247 192 26 161 409 20 416 318 179 43 140 258 363 97 350 28 106 157 312 320 365 246 117 208 206 241 334 297 284 349 204 79 169 348 415 170 335 425 85 301 298 142 346 434 191 285 401 116 330 232 423 386 121 135 9 394 368 124 46 123 283 94 164 217 177 216 101 417 95 112 302 422 378 306 78 133 372 338 344 294 200 68 240 209 293 359 345 366 261 431 207 57 197 311 100 104 125 32 339 360 236 392 185 381 55 308 62 72 42 361 84 222 321 131 250 244 120 332 418 420 34 221 421 340 397 428 146 268 218 403 5 396 87 262 14 414 406 227 167 168 254 367 317 129 265 278 176 114 238 199 73 173 398 70 275 35 351 272 61 77 267 264 59 24 91 105 435 198 74 44 71 276 174 341 426 347 211 136 45 387 243 156 245 413 225 226 354 370 358 213 371 54 214 175 143 137 319 242 281 374 194 257 303 155 433 304 309 115 271 364 210 189 83 329 188 252 181 219 139 60 233 118 47 183 273 195 184 343 18 342 158 65 399 326 48 53 33 249 151 160 270 10 40 373 292 193 111 66 178 408 314 255 289 385 234 429 16 150 186 282 37 13 307 223 25 75 212 38 280 58 251 89 166 110 432 149 69 148 299 353 382 132 162 126 316 410 324 287 172 127 322 375 6 96 296 260 377 98 102 27 171 145 134 3 424 279 407 108 21 224 88 8 229 182 328 2 22 248 383 23 36 277 404 41 390 228 122 333 325 269 205 388 92 300 17 215 290 4 402 153 15 107 263 389 76 49 391 11 81 19 355 337 327 274 138 336 80 400 369 286 180 +17 266 362 141 178 63 253 159 422 19 237 421 308 288 192 84 373 31 331 239 330 352 305 376 309 111 170 169 16 39 164 153 64 203 411 350 26 190 230 261 202 383 297 250 161 144 163 325 356 177 14 368 158 9 429 252 306 78 23 34 95 103 90 416 1 187 334 363 345 52 220 275 123 154 201 200 116 24 420 20 62 435 218 298 115 6 7 365 267 323 395 328 434 364 338 430 209 206 247 191 67 371 216 367 131 119 101 83 412 140 379 66 299 165 121 264 329 188 307 71 77 217 258 137 366 291 60 318 240 346 130 117 431 167 168 173 56 171 43 280 11 133 262 354 50 28 196 257 147 204 284 36 347 57 349 172 179 295 342 55 384 207 160 149 162 290 80 82 378 272 79 340 321 185 211 112 150 99 10 283 407 51 414 374 61 319 281 231 361 233 38 145 86 195 189 73 415 110 386 208 124 426 312 113 303 274 47 128 339 432 287 87 341 197 210 310 106 324 326 244 234 22 433 344 348 118 40 46 97 235 381 265 276 278 397 175 403 212 70 313 359 174 360 37 427 221 198 142 139 370 249 317 301 232 58 293 100 292 126 243 343 351 184 273 199 413 157 74 296 245 102 256 251 205 194 65 260 93 294 125 337 259 424 380 419 377 248 120 393 75 156 254 304 33 114 53 375 279 127 353 382 109 394 44 409 263 387 59 285 401 255 134 176 311 85 98 315 27 398 108 96 214 181 135 45 32 268 327 358 385 215 332 81 389 289 405 68 166 30 241 399 428 333 236 355 277 151 396 406 320 94 148 372 146 42 2 193 223 69 21 225 242 3 8 392 314 13 182 122 300 132 183 143 271 155 335 105 138 129 88 219 282 226 4 227 18 238 76 222 213 224 408 357 29 336 425 322 270 316 152 246 302 48 5 89 228 229 423 12 390 410 41 180 186 417 35 402 369 25 388 269 49 418 92 72 404 286 400 136 54 104 15 107 391 91 +57 56 388 385 182 50 49 47 410 391 321 68 34 113 38 102 44 9 348 307 331 203 42 120 295 374 48 51 363 266 64 131 202 178 25 253 247 291 339 22 220 33 278 375 401 237 93 173 159 190 141 163 88 18 310 192 285 6 109 122 24 82 61 99 430 207 139 379 208 256 164 354 67 27 86 150 267 422 240 175 352 185 119 187 78 95 94 411 7 362 85 31 323 268 420 165 429 356 177 261 161 176 111 409 70 144 367 218 346 259 376 312 106 288 334 167 168 305 407 294 230 90 153 114 149 71 239 298 103 387 252 223 365 65 151 320 201 174 412 147 216 196 73 271 427 258 214 30 345 170 316 169 20 117 11 140 39 211 300 434 115 431 107 270 383 1 79 419 308 46 318 63 137 337 415 272 325 28 204 373 309 210 408 315 14 344 328 154 205 403 191 372 128 108 97 143 148 52 421 157 330 428 380 26 301 152 293 217 74 384 350 195 37 287 77 105 284 194 368 92 351 138 311 279 133 100 236 16 262 125 393 221 417 123 206 281 370 283 121 118 188 313 112 189 89 424 158 260 297 432 326 306 329 75 366 43 338 416 101 130 116 378 66 405 377 155 209 319 248 231 232 341 276 222 171 280 303 60 29 302 166 197 250 413 343 264 162 423 172 10 342 349 129 212 83 41 225 145 229 418 435 215 135 414 219 241 335 433 296 84 299 55 243 35 17 234 314 397 269 426 381 127 87 198 32 290 400 72 359 257 244 69 235 226 45 273 360 233 254 402 394 251 238 245 134 327 275 184 142 395 2 249 274 59 386 200 179 324 40 304 340 8 136 361 13 333 242 132 404 156 396 193 255 124 398 12 4 292 58 160 36 98 227 317 126 246 183 282 322 263 213 110 21 358 353 382 53 357 199 181 289 228 364 5 371 265 81 332 347 425 62 399 186 3 80 277 355 104 146 96 180 224 23 369 336 76 389 54 91 390 286 406 392 15 19 +352 159 212 207 95 103 237 203 220 163 294 291 216 192 368 141 247 384 202 208 39 31 1 370 130 230 334 430 362 253 78 379 239 63 367 147 67 267 128 20 154 137 331 329 50 350 161 305 64 218 26 293 170 365 412 397 407 90 177 169 56 338 411 144 16 166 7 131 28 415 259 258 113 57 52 295 178 77 190 268 82 61 99 24 121 413 431 261 9 376 324 101 310 297 266 93 330 114 318 347 356 195 60 308 271 319 201 123 288 381 34 232 51 363 346 74 196 231 70 244 416 46 301 345 119 75 351 366 248 53 278 153 109 116 112 189 187 133 188 191 199 217 66 242 197 340 79 115 426 323 6 140 275 281 43 332 394 309 419 264 105 83 252 422 106 312 342 373 378 86 349 204 285 194 315 336 45 393 234 240 167 168 316 111 260 361 73 299 304 151 100 298 10 214 435 158 256 120 421 134 164 206 292 385 198 348 175 233 124 276 85 306 165 84 273 284 409 68 97 117 341 420 257 71 250 360 210 270 94 433 272 399 211 359 172 358 290 427 205 398 424 325 262 87 209 118 320 245 265 156 317 321 235 221 47 14 302 254 176 160 162 44 279 344 37 354 193 395 173 434 40 432 236 410 371 374 58 405 408 132 33 313 69 145 174 171 386 243 62 125 38 185 29 380 303 387 22 429 343 59 179 280 282 8 98 42 289 287 377 152 414 139 364 283 55 403 333 149 200 251 339 181 401 23 223 383 30 357 417 35 122 353 382 96 183 372 135 269 89 36 425 150 11 65 127 406 215 249 222 2 155 81 335 307 390 136 88 241 110 32 102 72 108 428 148 274 277 392 182 314 17 142 396 328 21 18 418 129 337 41 229 326 219 225 184 92 146 296 27 375 19 143 48 186 226 327 322 107 157 126 423 255 13 227 311 263 388 138 300 238 389 80 224 3 213 402 76 355 5 12 404 49 228 400 4 246 369 104 180 91 54 25 286 15 391 +39 237 220 231 154 100 51 253 109 288 362 141 310 256 203 208 52 159 356 64 163 31 331 167 168 352 67 196 266 1 301 26 103 430 338 416 112 114 131 202 379 305 140 230 411 346 190 295 63 82 78 192 50 350 144 116 422 101 292 42 363 130 53 384 261 247 7 93 169 403 86 348 191 201 294 61 235 95 147 365 142 257 267 354 368 412 170 239 46 258 298 218 349 419 179 306 207 56 232 119 245 124 321 57 34 420 376 340 318 433 435 204 43 121 209 115 14 431 32 308 111 206 161 312 197 177 367 278 90 128 319 250 85 113 259 79 240 252 151 29 216 221 414 323 339 366 77 133 24 307 200 347 297 359 146 33 275 73 66 187 345 173 185 217 377 415 378 413 309 361 172 291 395 276 360 195 99 372 342 84 334 71 28 326 341 30 344 434 374 38 156 94 137 380 158 40 211 393 36 10 68 106 421 74 260 303 335 351 432 198 370 383 160 20 162 125 293 242 83 224 373 97 6 264 184 343 72 299 262 8 55 428 166 234 332 37 9 325 120 381 178 75 210 265 212 123 317 329 199 285 60 330 118 426 110 268 313 233 284 280 272 174 47 59 181 182 70 58 165 175 16 409 397 281 316 65 3 241 171 407 41 300 427 304 152 244 117 408 164 157 17 194 405 315 45 429 44 273 404 145 214 12 371 188 283 134 104 148 387 193 401 222 353 382 287 96 277 236 27 424 155 302 143 423 215 139 243 311 186 225 357 254 189 385 394 102 320 388 2 87 386 249 105 406 226 135 35 396 22 282 248 270 279 289 229 176 129 328 255 425 62 126 251 69 296 375 398 389 417 290 271 127 21 132 18 227 324 205 213 149 364 5 399 150 108 333 89 98 358 88 49 263 153 122 274 11 418 219 91 138 80 314 327 238 246 336 13 4 81 107 136 369 92 23 337 223 228 400 355 392 54 322 410 269 402 48 76 390 19 25 391 183 286 15 180 +237 244 50 128 121 247 218 201 39 411 315 1 430 318 352 331 31 161 90 187 297 306 62 179 393 125 99 340 147 34 123 192 64 364 141 79 20 130 232 133 103 373 419 317 181 144 298 61 52 217 231 378 386 67 199 116 288 51 261 154 177 258 156 368 433 343 381 28 273 63 194 26 304 362 361 233 387 367 113 110 47 346 333 191 58 413 119 267 341 339 397 56 347 329 370 117 145 159 278 425 84 109 230 222 259 216 262 245 256 342 69 95 303 240 220 379 265 243 249 349 334 85 38 115 101 421 170 363 209 127 169 188 204 253 104 196 254 221 305 294 428 239 264 426 163 310 291 351 124 376 7 356 384 190 330 111 360 366 272 350 359 406 106 257 383 424 420 78 357 114 158 185 226 37 60 14 223 432 162 354 165 86 45 82 236 250 275 403 312 405 358 372 164 398 295 87 10 293 395 345 435 59 131 77 43 46 24 308 409 195 427 203 266 289 365 301 186 205 280 197 396 241 389 16 208 30 412 23 380 271 13 332 320 112 105 394 399 268 146 206 151 149 40 202 353 382 94 296 3 36 287 12 276 242 290 97 93 319 42 55 73 302 235 214 284 252 32 139 29 184 338 88 285 213 96 414 198 322 2 166 22 344 282 229 150 193 70 227 200 374 9 407 126 309 44 132 422 225 434 178 33 172 21 57 66 348 6 371 160 65 313 108 152 307 270 157 137 89 155 335 279 122 224 134 281 207 431 402 74 189 299 415 167 168 8 326 269 324 100 355 283 314 53 416 390 292 140 327 148 75 120 91 171 323 35 321 183 72 234 118 417 68 27 408 277 219 136 251 48 176 316 83 401 238 212 175 143 81 173 255 142 385 182 54 228 311 71 5 328 418 404 246 300 138 129 135 211 388 92 17 210 174 11 98 260 76 248 107 49 377 153 18 25 41 263 325 375 429 423 80 369 4 215 336 337 19 410 392 102 15 400 286 274 391 180 +63 237 50 128 31 147 1 294 220 39 346 66 247 121 192 352 430 161 44 163 93 293 218 410 310 60 331 278 159 20 367 349 318 330 368 141 113 264 24 28 133 334 56 332 406 90 253 230 411 154 151 231 298 78 259 64 67 196 232 203 395 272 130 9 348 26 362 190 378 99 363 315 297 393 94 34 291 323 114 194 288 103 79 305 57 112 187 202 354 401 77 364 61 217 384 191 119 376 83 379 6 340 386 290 361 261 47 245 421 48 413 350 95 381 339 373 428 267 170 207 235 100 51 169 256 244 268 204 258 14 144 356 120 341 201 46 111 8 30 266 139 10 7 109 68 282 62 197 116 338 73 317 131 420 18 295 200 42 52 115 398 45 279 208 97 419 257 365 43 433 216 240 271 117 321 92 372 84 123 353 382 403 422 370 308 265 214 188 431 374 329 250 70 101 25 313 394 343 377 424 239 162 156 301 38 150 158 181 304 358 416 409 388 205 351 87 33 195 236 276 414 106 222 167 168 178 82 206 185 198 252 177 273 149 306 182 434 312 134 4 179 225 387 108 105 118 399 366 284 371 287 396 209 226 345 193 319 280 281 303 380 102 243 397 86 65 122 142 160 32 176 307 316 16 359 360 221 125 262 2 199 233 58 40 285 405 132 22 342 29 234 59 71 427 344 152 85 69 412 347 435 241 309 127 126 275 296 21 269 145 174 270 11 13 140 189 260 383 246 136 223 429 254 333 432 155 407 172 289 320 283 110 426 98 302 251 37 229 143 417 27 12 249 184 227 335 107 173 375 157 213 402 328 357 175 211 415 392 3 292 41 425 49 228 129 224 355 88 242 96 390 164 311 72 55 385 148 391 171 124 186 53 89 418 277 210 215 404 74 146 137 166 326 81 75 165 324 238 36 183 255 135 17 104 153 212 23 327 325 138 76 423 322 336 5 219 408 389 400 300 314 80 248 19 299 337 263 91 274 35 369 286 15 54 180 +331 350 237 31 141 239 61 64 193 163 220 430 216 258 115 349 207 208 192 288 133 26 291 381 147 334 190 354 130 295 431 131 116 39 82 362 359 312 360 259 217 159 70 367 113 71 247 1 298 57 109 253 352 308 204 202 179 119 95 51 345 63 203 297 169 420 222 227 73 161 380 256 348 315 170 79 167 168 405 368 254 106 411 356 78 309 318 187 384 20 284 103 272 435 235 173 88 310 52 128 293 427 93 330 363 344 191 50 99 341 376 425 226 261 311 250 343 86 346 424 117 90 56 339 320 144 184 266 197 124 361 140 351 164 195 85 201 154 134 412 118 230 213 13 218 234 257 46 340 378 276 165 244 206 28 238 326 428 66 304 305 416 434 100 267 209 142 422 421 65 374 347 414 177 198 7 97 9 242 196 225 101 172 232 156 338 413 275 185 123 386 12 241 321 67 377 365 5 306 317 27 166 260 301 290 2 59 158 175 77 240 200 252 146 283 370 329 332 379 282 423 32 125 151 333 281 94 407 43 211 120 375 16 199 194 313 112 87 273 178 160 45 278 205 174 114 236 406 307 171 372 409 433 327 221 294 21 10 303 394 162 249 296 105 188 403 40 233 62 223 104 322 397 110 14 84 210 373 145 366 323 262 137 98 289 319 387 264 60 219 176 335 364 229 415 398 22 402 126 121 302 280 75 89 243 111 419 432 55 342 358 24 74 139 228 328 34 426 429 399 37 8 383 157 353 382 292 91 53 30 38 231 417 408 371 401 3 81 265 58 214 224 72 245 153 357 6 299 182 42 181 69 279 33 155 189 127 287 29 132 285 136 150 108 186 277 41 47 83 316 149 418 143 263 268 248 36 92 271 314 35 395 148 393 135 68 355 215 122 18 369 17 102 255 152 44 388 270 389 49 300 76 390 404 385 337 11 183 107 23 96 396 400 25 48 15 212 138 324 180 325 410 80 129 19 54 269 251 4 246 286 391 336 274 392 +63 50 31 237 141 133 334 134 266 362 411 272 352 95 159 253 64 1 207 420 261 78 288 309 163 147 188 26 66 351 70 230 294 39 202 345 376 218 34 203 239 56 84 123 130 192 131 356 220 67 62 340 368 275 116 44 338 250 349 365 151 350 346 308 113 187 383 422 330 297 306 307 111 329 231 291 374 305 52 14 295 414 114 169 416 101 293 170 17 325 9 103 137 24 234 201 115 208 407 386 397 82 178 77 379 216 154 331 328 373 144 247 267 161 364 121 162 7 190 344 167 168 61 197 20 262 435 221 281 179 93 73 412 164 90 413 109 421 363 10 393 355 242 244 150 280 172 6 367 99 259 195 184 158 285 377 366 205 279 360 43 83 149 198 33 140 319 28 217 209 278 60 336 395 71 318 348 276 359 189 86 371 212 258 361 252 177 119 19 57 98 16 79 378 409 143 370 139 323 145 341 430 347 354 65 74 128 298 339 312 284 100 160 310 260 94 36 85 375 431 240 384 424 317 332 257 176 118 224 55 191 51 200 211 301 206 428 166 268 313 46 232 196 251 165 419 315 108 38 264 210 204 299 106 125 287 434 117 235 245 429 194 47 30 75 324 304 401 146 381 282 105 97 185 11 410 8 265 398 343 248 29 3 23 302 156 316 193 274 175 273 321 120 215 406 124 353 382 432 415 236 174 40 138 199 45 214 342 403 171 303 22 283 69 256 326 102 92 271 153 152 112 372 327 88 426 127 396 87 389 135 18 142 246 27 126 292 417 433 2 387 76 277 427 53 42 290 80 314 182 233 21 254 300 405 37 173 388 394 68 296 155 270 243 48 122 110 59 358 249 183 380 333 399 58 337 263 136 157 311 132 418 408 129 225 385 229 96 25 181 72 320 226 32 269 222 241 89 81 12 255 400 402 223 335 322 289 357 49 425 404 186 13 238 227 4 213 369 148 41 35 390 392 219 228 391 5 104 180 423 286 15 107 91 54 +216 163 237 159 332 201 1 340 50 331 295 384 67 187 378 240 202 109 258 192 259 204 170 93 28 190 147 169 363 203 144 40 411 90 99 334 123 52 294 51 413 77 24 154 220 114 106 348 113 275 305 415 69 386 116 376 283 161 338 128 119 291 264 284 101 412 231 141 397 84 230 20 235 86 206 191 430 63 43 31 257 373 315 78 64 256 94 70 239 179 115 9 379 236 234 26 178 253 297 352 339 81 420 343 75 278 254 360 218 130 131 232 103 29 100 195 366 57 79 359 137 346 34 95 177 85 74 381 56 433 288 290 318 380 427 330 164 310 233 265 247 312 267 301 73 341 10 365 197 60 196 117 356 345 361 405 173 319 243 435 16 362 82 306 97 293 223 37 370 188 272 125 89 165 432 198 367 251 276 414 273 208 424 285 32 324 46 250 71 194 349 303 120 313 156 298 317 347 344 350 321 426 262 126 181 261 61 419 121 308 342 58 320 422 396 199 124 140 398 387 110 87 142 160 7 241 244 157 289 323 209 118 374 371 219 171 279 372 210 407 189 215 421 428 55 335 395 200 281 307 368 304 45 409 408 3 266 425 222 329 364 41 211 282 104 403 333 389 92 225 431 326 13 394 255 245 98 354 59 65 62 268 166 242 406 252 358 226 39 212 214 224 302 133 377 351 249 5 111 416 309 322 184 38 353 382 357 175 76 337 434 185 68 145 112 153 172 393 12 139 277 287 2 53 238 213 314 83 132 158 136 91 151 217 21 23 328 207 155 27 417 129 105 127 174 280 30 227 47 248 228 176 327 186 183 162 270 423 221 229 399 146 149 143 375 311 22 205 193 66 42 35 260 96 135 271 299 180 88 6 296 404 148 292 150 14 33 418 429 167 168 134 44 72 11 36 152 390 401 402 8 138 325 17 336 18 369 385 383 300 108 80 269 102 286 182 355 400 388 122 246 316 54 410 274 263 48 107 25 19 15 392 49 4 391 +31 306 356 63 250 411 141 36 70 330 275 93 362 147 123 266 420 348 64 237 26 169 192 239 163 295 82 78 261 319 170 334 113 62 308 253 368 172 133 230 291 101 184 20 159 435 50 280 14 9 422 83 10 373 16 1 131 140 7 360 94 144 56 187 341 267 95 207 257 310 431 309 359 202 365 200 297 412 340 281 235 201 339 90 386 2 262 116 164 167 168 161 158 331 216 217 67 220 395 209 114 55 351 434 376 66 345 130 162 416 371 221 272 190 39 85 97 21 364 86 6 383 305 285 393 398 288 189 407 45 352 203 358 208 421 394 109 399 374 384 57 430 183 188 318 284 87 160 22 344 349 231 402 103 413 80 294 363 321 414 117 185 312 366 145 65 125 279 244 154 247 379 24 92 377 171 111 265 52 268 389 195 73 424 205 252 263 347 27 177 397 350 315 240 175 79 30 134 278 34 307 100 343 76 258 129 375 77 329 193 115 332 367 342 361 43 346 119 37 256 415 197 105 276 99 242 333 303 29 179 234 218 126 69 166 165 338 176 264 81 317 47 215 206 17 84 396 155 299 121 323 137 214 287 254 298 44 178 273 128 151 152 428 314 3 139 282 127 106 429 110 23 61 419 28 198 283 38 153 149 74 232 150 390 191 417 313 199 290 174 409 296 251 46 259 406 271 71 293 75 59 292 355 301 378 48 427 98 233 51 108 138 173 194 196 40 326 328 136 12 58 388 320 372 335 304 182 270 248 311 370 260 60 112 120 204 403 156 426 401 418 88 132 357 211 387 405 124 142 316 122 249 118 381 243 433 369 380 135 337 222 33 241 246 302 25 229 210 68 238 224 13 300 354 325 143 53 410 186 236 269 432 11 277 8 96 245 227 404 322 213 181 226 425 102 353 382 49 255 336 225 327 223 146 408 148 219 324 18 289 385 157 42 19 180 72 32 41 104 4 107 212 89 5 286 423 400 228 35 91 274 54 392 391 15 +163 331 141 187 237 64 1 31 50 154 52 203 338 220 39 239 247 202 78 430 95 82 250 159 295 179 116 101 113 244 397 192 411 294 352 376 253 93 26 133 130 386 56 114 308 288 121 103 258 362 144 169 319 412 208 170 201 62 207 216 334 275 63 123 361 161 341 305 350 340 131 297 318 259 315 413 379 356 384 435 53 111 218 268 90 84 51 61 147 431 403 230 266 119 348 190 433 271 79 242 124 231 94 359 75 165 330 310 128 373 360 339 222 166 109 422 74 204 343 70 349 67 309 43 298 347 257 420 191 20 270 367 196 291 368 317 278 370 100 99 364 380 232 396 312 351 303 125 221 66 85 354 195 137 432 106 57 209 261 346 34 197 145 162 299 178 164 86 177 345 421 3 71 273 256 426 7 158 240 172 199 378 394 344 428 374 115 387 329 363 306 245 193 117 146 265 160 409 358 241 16 110 415 46 427 194 408 185 10 217 28 14 23 264 301 235 252 267 407 405 290 333 24 425 366 416 198 181 227 262 272 205 393 77 214 167 168 302 357 233 424 254 399 226 224 342 371 332 55 132 304 58 105 211 188 276 200 175 326 213 281 229 112 293 140 42 171 134 381 73 38 269 13 321 206 365 37 35 395 323 419 320 210 372 6 243 389 316 249 151 60 398 383 406 83 282 260 87 414 17 97 184 234 285 173 248 284 40 325 155 69 2 236 280 33 139 88 120 9 324 287 307 45 59 156 375 434 47 212 279 65 127 251 21 225 335 353 382 12 183 27 8 126 377 401 149 429 186 22 327 404 89 19 5 118 32 153 223 311 417 41 36 150 292 96 29 189 219 337 296 313 68 11 289 423 143 322 215 98 314 283 142 328 157 277 390 228 104 402 238 30 174 72 418 122 44 148 108 300 92 18 274 81 176 263 135 136 385 255 336 129 107 355 182 388 91 152 76 4 102 48 138 80 54 392 49 400 369 410 180 25 246 15 286 391 +220 231 51 67 310 395 430 237 356 97 203 305 393 109 202 99 291 419 266 39 119 190 427 163 106 331 64 82 165 159 379 7 236 86 256 295 63 56 30 313 201 230 113 411 253 247 152 131 357 312 208 29 12 130 363 431 239 154 380 144 352 179 85 348 147 43 196 141 284 315 31 207 434 240 93 323 157 334 409 103 140 283 78 42 238 405 288 412 321 294 285 26 1 65 362 308 9 52 365 311 50 161 90 415 146 322 297 95 192 20 185 301 261 320 204 420 120 306 57 335 318 191 241 116 339 372 34 177 376 209 112 89 235 72 101 187 117 54 298 115 79 422 354 142 367 71 342 374 173 169 423 100 170 123 206 222 267 216 128 164 250 350 32 84 158 416 309 47 329 246 368 135 68 88 302 70 45 351 275 55 73 137 94 345 396 87 104 24 217 366 258 403 349 401 338 413 167 168 359 14 46 212 417 394 232 124 111 360 262 172 428 255 414 392 114 268 218 36 433 384 293 408 35 381 133 74 435 254 346 44 424 264 175 278 418 197 426 224 18 299 281 33 432 385 303 307 330 370 344 16 102 234 398 195 340 378 260 200 174 425 182 38 221 227 226 129 421 28 5 410 387 91 105 272 178 386 347 242 41 27 143 252 6 121 166 61 383 22 373 371 10 429 225 244 184 375 37 211 139 176 397 62 276 319 66 361 280 407 259 17 53 316 3 69 198 134 326 245 77 193 83 388 364 314 248 188 249 406 199 75 171 125 205 156 210 271 214 233 15 343 279 273 149 265 219 153 150 8 189 160 404 155 132 358 186 25 194 292 145 49 243 223 287 332 257 317 59 162 118 213 300 282 399 151 107 228 296 148 11 48 304 377 341 2 270 13 181 136 229 40 60 251 58 327 290 98 127 353 382 183 110 126 108 21 138 324 122 337 81 325 215 289 96 92 328 263 390 391 277 402 269 400 274 19 23 355 333 4 286 76 389 369 80 180 336 +338 52 101 154 237 159 116 203 340 93 50 1 331 113 202 82 77 412 163 346 295 31 64 208 197 376 231 348 78 115 63 187 242 144 259 51 216 131 198 253 275 352 430 130 220 258 298 422 94 351 379 347 267 65 109 53 260 170 309 359 56 360 169 124 334 378 26 70 103 201 61 308 245 114 386 356 128 239 141 332 339 363 57 250 207 312 349 350 384 147 179 272 100 173 218 266 431 420 247 326 345 204 95 377 99 310 40 414 34 67 123 190 415 435 261 195 374 244 367 191 33 37 433 361 428 66 133 196 90 28 46 188 291 257 380 178 333 366 79 373 119 290 368 318 319 106 192 288 156 234 166 175 281 10 232 293 256 121 38 6 294 329 297 344 221 58 330 199 73 362 411 370 161 233 240 302 177 172 413 125 151 278 341 282 321 120 277 241 206 307 85 146 342 230 365 343 408 285 140 134 20 162 426 145 39 424 9 62 320 43 137 194 262 264 315 184 381 403 84 405 305 303 409 364 14 301 185 372 287 273 127 92 16 306 167 168 86 354 276 165 164 235 311 416 41 7 432 118 317 22 215 375 226 222 209 139 42 236 117 299 104 284 407 3 335 32 24 383 96 254 427 112 421 97 83 268 304 158 98 296 425 60 397 417 224 149 108 59 160 110 122 279 171 252 71 357 248 225 2 111 30 45 105 74 300 369 81 148 388 353 382 385 328 186 227 229 68 13 155 292 265 289 193 47 174 27 126 214 249 219 181 213 21 75 12 434 88 396 406 91 150 280 327 217 243 23 143 419 313 5 418 387 205 389 36 314 263 283 135 132 182 29 200 211 336 89 238 176 228 270 323 69 48 210 271 401 87 8 393 11 223 72 152 400 189 398 35 44 17 429 142 18 55 153 322 371 402 358 183 76 212 255 157 404 395 138 325 394 49 399 355 102 19 337 136 324 316 54 25 251 269 80 4 107 391 423 286 390 129 15 410 392 180 274 246 +113 122 295 237 56 131 48 57 247 38 354 47 187 291 350 39 346 42 352 334 50 33 220 331 64 25 410 111 130 298 207 321 368 147 78 66 401 105 22 374 218 1 411 261 9 239 377 102 95 348 70 159 192 363 121 185 430 150 208 31 203 256 163 63 177 428 266 61 244 387 373 93 388 190 267 262 68 367 79 178 119 128 108 51 201 343 278 27 422 205 253 82 11 375 139 85 275 351 379 209 149 240 234 191 202 120 216 28 90 259 99 103 196 94 323 272 301 127 88 310 287 146 232 141 345 182 376 116 250 109 385 162 318 20 144 49 117 86 204 306 431 370 161 26 366 424 329 179 73 18 77 407 114 356 359 349 67 360 296 37 421 297 339 52 34 230 294 340 123 264 133 332 268 308 315 288 46 260 154 245 307 429 125 24 106 100 386 115 258 362 7 199 293 312 43 169 153 221 242 194 145 65 391 409 151 347 381 303 16 299 344 372 170 112 330 184 305 188 101 280 432 44 327 290 304 433 384 206 420 426 197 6 222 364 378 97 14 412 166 326 164 281 59 71 361 271 249 233 156 257 84 333 198 342 309 285 320 414 189 383 365 175 419 338 341 337 416 10 328 231 211 279 118 243 165 403 107 311 193 195 69 62 45 214 270 273 380 72 157 317 140 148 284 427 397 55 60 435 172 181 167 168 173 217 137 2 210 236 289 74 32 134 226 30 265 302 254 200 40 313 8 124 53 325 319 393 110 174 353 382 248 413 235 158 405 215 415 282 223 21 17 176 276 36 252 83 87 283 227 425 434 406 269 92 12 171 126 400 152 241 4 398 300 219 395 371 142 358 238 132 417 5 408 277 41 89 98 316 394 160 155 3 75 357 58 292 399 13 212 225 314 213 96 335 104 423 138 224 402 229 322 136 76 355 396 251 29 418 255 81 324 228 389 369 143 186 91 263 392 404 390 23 135 183 35 336 129 54 19 246 274 180 286 80 15 +268 270 269 271 316 237 331 259 267 247 190 346 39 161 1 114 239 233 77 16 367 291 379 430 20 46 194 95 334 47 159 38 90 295 365 121 170 169 144 362 187 9 298 378 141 289 352 354 192 203 66 305 288 276 52 31 202 163 342 73 308 191 28 131 218 349 57 154 103 351 139 254 22 208 278 258 230 128 301 318 309 10 338 292 243 411 220 261 34 147 204 60 133 376 70 189 293 207 312 87 116 64 86 279 130 177 413 50 425 340 178 333 363 412 216 40 106 93 102 323 196 420 112 405 321 266 384 79 310 24 119 99 366 257 117 407 156 317 137 232 166 343 297 71 179 313 304 264 188 6 206 53 171 56 410 63 273 59 26 415 115 43 101 14 151 294 307 370 172 120 303 368 344 350 427 262 311 174 290 260 197 361 240 82 332 113 45 201 426 182 100 403 345 51 234 213 58 235 48 145 155 78 249 280 341 175 127 214 153 150 348 380 199 433 149 359 123 358 373 129 339 173 69 285 360 253 429 256 227 94 414 211 244 181 306 32 398 245 62 222 210 108 287 200 236 416 275 84 162 241 423 44 110 37 97 364 185 217 176 183 195 272 68 193 126 431 394 61 142 284 27 33 315 74 326 424 248 124 282 105 335 152 320 42 381 132 111 125 198 134 164 353 382 75 336 67 25 242 371 157 435 215 30 148 212 388 146 387 209 136 385 65 85 296 347 422 92 357 399 5 329 393 389 250 55 225 219 96 283 41 118 255 421 395 432 265 428 158 372 408 263 138 88 419 252 72 135 356 140 223 238 404 401 274 7 281 377 2 228 383 229 231 186 13 337 226 98 205 165 80 49 434 386 390 109 314 397 8 374 122 143 224 21 167 168 89 417 327 302 322 328 330 324 81 299 325 355 396 402 35 409 221 11 406 3 251 76 277 160 104 418 184 91 375 83 36 17 391 286 319 12 369 54 29 15 246 400 392 300 19 18 4 180 23 107 +82 202 203 379 312 302 409 412 135 237 136 220 183 67 305 285 163 63 331 165 159 119 229 415 109 417 430 144 88 363 173 190 141 155 201 99 123 39 418 113 50 214 164 1 23 64 294 51 35 154 259 106 352 291 179 240 187 130 147 356 295 362 338 315 103 310 314 267 31 334 178 56 101 345 351 380 256 411 192 348 78 207 52 151 97 247 20 86 405 258 116 231 368 131 208 230 133 90 216 349 95 24 268 427 128 70 26 346 161 253 266 288 61 308 298 29 420 177 413 43 297 175 85 329 79 386 170 169 222 376 365 261 344 84 93 206 46 236 293 37 204 7 364 66 239 395 146 311 250 350 284 275 241 69 342 340 218 320 272 431 9 318 71 227 330 57 309 62 174 264 185 16 223 157 254 100 281 278 433 77 372 416 121 28 196 359 301 115 114 111 360 339 426 307 197 306 393 384 189 73 425 271 226 422 361 137 283 235 323 366 47 378 195 326 279 434 232 403 357 354 374 98 53 105 367 321 414 112 200 381 176 30 234 149 373 213 89 191 313 10 424 6 120 117 125 124 244 139 219 325 225 188 262 94 140 303 371 387 60 198 276 12 407 423 335 68 87 172 224 33 158 34 257 282 194 193 270 243 3 287 72 143 162 217 396 419 290 394 300 65 233 406 210 13 238 343 211 435 5 347 156 317 280 432 134 205 370 322 150 209 249 160 260 42 45 153 40 142 14 265 184 145 273 408 397 383 242 332 429 251 341 167 168 252 96 199 171 181 32 421 428 333 44 245 74 304 55 221 292 228 17 127 38 353 382 328 248 377 118 129 104 316 296 2 152 83 41 148 75 398 27 375 358 212 299 22 58 108 269 11 337 289 102 110 126 324 166 385 399 319 215 277 36 132 255 138 21 81 401 263 59 404 327 389 54 286 402 8 91 182 122 76 15 355 92 410 400 107 388 336 18 186 48 274 25 246 390 49 80 369 180 19 392 391 4 +26 95 141 352 31 362 420 368 239 308 130 159 131 309 345 207 350 237 78 163 64 169 334 288 253 170 276 172 192 435 160 344 218 291 221 71 103 376 1 307 330 24 328 113 284 325 178 67 208 294 191 63 153 250 422 356 173 329 203 16 39 202 195 190 145 206 247 361 365 217 367 295 187 171 73 216 70 349 416 431 117 306 20 90 331 341 9 116 140 220 297 412 34 272 161 147 339 326 50 261 154 8 363 397 144 251 209 318 348 263 82 403 429 252 242 124 125 62 120 310 283 300 52 115 305 86 162 197 275 347 123 61 407 304 346 323 177 257 137 413 411 267 109 266 373 424 59 316 360 258 430 17 56 196 375 79 57 51 268 234 359 421 164 201 384 298 99 198 84 230 262 166 66 98 75 337 374 74 366 188 393 260 319 33 240 315 231 434 259 273 378 355 324 433 364 204 200 46 265 386 133 119 428 340 212 243 419 28 351 101 338 256 379 128 303 214 7 83 110 106 271 244 264 77 293 270 371 415 158 285 167 168 321 274 370 184 409 65 85 121 81 114 36 150 193 232 142 151 396 10 23 118 69 281 194 152 377 40 312 179 395 112 87 29 327 156 165 394 282 97 185 47 354 139 405 414 60 235 278 43 129 301 149 134 233 14 342 205 279 30 317 38 372 313 189 180 426 358 427 398 249 280 132 380 215 381 100 93 299 126 45 245 248 254 389 19 175 222 37 408 111 292 432 353 382 157 182 135 236 6 423 269 287 108 290 383 406 385 296 343 22 399 88 311 143 55 58 211 210 336 289 127 332 102 320 387 181 333 241 2 199 225 42 32 21 335 80 174 223 68 402 44 369 277 226 94 89 176 314 105 404 357 183 13 401 27 417 53 227 302 255 146 76 246 72 425 219 390 388 138 238 11 3 148 155 213 122 229 224 96 186 15 92 418 35 49 228 18 12 5 48 104 392 322 410 41 136 25 286 91 400 391 54 4 107 +239 207 31 208 64 242 237 220 166 95 193 304 318 367 331 103 247 131 216 78 163 273 26 340 113 310 201 141 82 7 319 368 185 99 167 168 123 147 231 206 125 63 192 79 196 362 39 303 350 384 420 132 73 162 352 209 253 90 203 330 70 190 250 411 161 430 258 199 370 61 28 235 177 202 1 145 179 386 144 361 114 305 431 339 159 363 312 244 295 347 341 276 403 169 191 10 170 360 187 124 359 356 257 100 435 51 288 262 313 365 425 405 261 116 112 101 376 266 20 378 416 62 118 195 56 156 197 334 50 37 117 412 256 40 267 2 413 119 217 32 43 204 188 243 372 66 424 317 366 306 245 110 415 84 426 308 83 373 407 379 249 314 320 221 45 130 164 402 343 175 291 284 240 71 252 414 298 198 59 260 140 349 165 393 381 232 213 301 422 52 87 332 290 428 16 272 348 74 200 60 157 158 297 374 86 9 146 67 128 38 315 254 327 93 346 85 326 259 289 139 14 21 282 421 142 280 97 111 321 109 248 354 383 30 307 57 394 409 137 333 205 42 47 380 160 275 106 309 406 387 427 149 154 433 408 150 121 395 351 323 230 338 115 234 277 65 398 293 55 355 371 345 22 364 3 299 218 194 375 404 283 184 24 96 226 172 12 241 127 173 225 329 46 399 224 135 358 335 227 6 432 287 265 397 302 133 151 174 77 238 58 44 233 120 357 294 68 251 215 155 219 222 75 423 296 34 214 434 143 419 325 171 353 382 104 229 281 223 344 264 278 105 342 129 13 94 311 91 377 27 401 8 181 33 396 236 88 285 69 189 80 212 322 270 274 279 134 292 268 48 182 176 178 152 369 390 5 36 122 300 72 211 23 148 153 29 316 389 271 429 328 388 183 126 41 210 263 385 98 186 89 324 417 138 246 81 17 53 35 11 418 108 391 25 92 76 49 136 54 410 255 18 337 102 336 228 392 19 269 4 286 400 107 180 15 +309 345 308 237 159 376 344 116 272 63 172 113 348 33 78 352 202 131 328 163 203 178 375 295 50 95 141 130 288 82 169 218 260 339 170 70 26 350 346 351 294 420 362 291 374 67 379 250 329 52 1 71 334 93 120 253 220 208 103 377 331 192 307 207 275 61 266 338 64 428 154 56 429 409 31 412 187 259 356 134 239 413 411 77 368 57 247 123 197 109 263 115 261 198 147 149 65 66 340 435 230 190 39 349 144 312 173 216 231 326 99 337 150 293 171 101 24 360 195 298 94 359 422 234 310 179 414 431 151 245 185 386 321 407 158 34 297 153 363 204 14 114 9 426 106 98 302 257 139 133 46 85 16 354 240 284 84 90 140 278 40 51 86 164 191 323 365 62 242 258 92 267 43 28 119 20 315 165 287 378 161 108 201 121 341 27 146 361 7 292 364 156 88 393 79 117 38 305 343 73 188 300 276 424 244 256 145 366 128 277 380 184 430 318 421 262 327 285 100 111 175 221 433 30 177 215 306 280 403 125 401 137 214 196 160 10 252 183 416 268 97 342 127 434 367 279 372 330 206 265 373 395 317 283 209 205 419 370 17 347 105 58 290 199 336 282 281 232 296 18 264 47 381 427 55 224 42 251 236 167 168 248 222 135 235 124 415 303 301 74 6 162 217 166 211 384 37 72 229 152 432 243 194 304 193 273 157 353 382 22 299 332 75 241 182 397 60 210 316 289 233 155 313 311 49 3 355 29 48 59 388 406 129 143 189 53 174 200 87 314 25 333 19 45 320 387 335 68 383 23 126 271 176 223 410 122 112 69 249 118 102 2 83 138 405 142 226 8 181 319 417 398 396 81 89 225 325 132 270 41 21 13 213 148 423 44 408 394 418 32 219 11 110 389 371 186 96 76 238 269 255 358 425 402 227 385 80 36 254 228 357 369 12 400 399 324 35 180 136 322 246 404 392 5 4 15 212 104 391 107 274 390 91 286 54 +237 70 201 348 31 130 64 123 82 190 113 356 331 1 411 116 295 100 179 291 216 9 362 197 413 90 261 349 187 28 361 56 387 262 51 39 278 99 62 43 297 50 220 78 163 203 192 79 386 63 250 20 354 37 365 202 110 141 73 170 360 198 144 161 111 430 204 290 97 308 256 66 133 232 359 339 312 169 57 142 315 86 422 146 188 128 301 313 34 431 378 173 156 177 305 287 395 22 239 140 414 240 249 266 424 85 433 131 294 109 420 318 397 346 52 149 379 10 55 321 218 209 3 193 412 258 84 101 145 373 310 117 106 159 434 231 205 340 334 253 93 230 363 125 282 45 67 421 275 374 196 341 384 147 27 46 214 38 114 309 42 351 370 65 47 317 435 415 323 264 303 162 345 119 383 426 288 185 428 244 302 26 364 281 409 154 164 243 150 134 95 206 69 194 389 343 7 151 195 344 175 427 16 233 184 87 329 103 224 121 376 105 235 208 352 227 191 298 30 367 320 393 366 118 265 279 394 207 403 59 155 338 284 211 417 77 94 342 178 2 355 40 432 306 314 406 259 88 268 419 181 247 280 199 60 296 257 293 165 272 210 353 382 14 24 330 29 405 127 358 234 222 152 200 407 35 61 371 172 21 399 171 174 11 17 381 167 168 189 380 157 332 18 311 148 307 137 32 388 58 229 41 299 115 12 396 4 304 402 71 158 401 5 292 221 418 254 246 408 6 219 425 350 135 74 19 327 241 126 182 217 276 75 416 404 238 273 398 251 248 252 23 166 186 122 368 267 375 289 213 124 226 236 271 242 8 377 255 260 328 153 112 283 333 285 139 223 143 102 136 372 357 429 92 270 176 347 98 326 335 336 245 13 269 129 183 96 76 48 225 215 319 120 390 132 33 49 80 385 53 81 25 83 89 322 324 325 104 160 36 44 369 108 212 138 228 400 277 410 316 423 72 263 107 274 337 68 300 392 54 91 286 180 15 391 +261 63 237 267 366 331 262 184 280 259 103 61 247 159 258 141 220 147 192 67 411 39 202 288 203 109 82 163 365 294 379 230 376 31 7 205 362 363 50 187 1 306 334 85 204 308 201 134 346 279 350 133 312 144 352 174 329 295 117 431 169 86 302 298 60 14 190 99 51 253 79 170 173 245 315 64 351 154 310 412 46 281 196 356 232 348 378 342 430 297 56 128 130 123 428 349 119 57 116 28 179 78 211 244 209 275 26 268 90 189 161 384 284 340 413 121 106 112 217 77 240 175 176 305 216 317 401 218 177 101 93 372 43 111 318 409 165 40 424 164 151 256 354 235 293 239 291 52 66 113 36 210 309 188 266 136 95 138 285 167 168 314 416 426 84 34 339 70 191 156 328 58 178 254 381 214 380 208 65 135 172 114 94 9 55 271 420 222 278 367 20 422 231 71 183 250 200 370 343 131 88 140 373 361 16 415 185 24 368 197 322 283 194 338 236 332 330 292 100 323 386 97 207 311 223 316 195 407 199 345 264 115 206 374 272 289 229 421 227 146 347 387 320 414 270 427 321 27 12 395 224 325 432 98 273 105 158 333 29 233 62 10 434 396 433 157 397 139 125 155 198 120 241 319 59 83 225 22 32 18 260 226 234 171 393 303 344 69 37 353 382 304 359 137 403 360 335 160 425 301 33 6 3 38 269 300 249 243 181 252 405 341 162 435 282 30 73 287 23 193 357 102 290 124 166 406 145 89 149 299 118 383 417 419 44 72 81 307 263 13 326 221 87 408 265 248 296 377 17 143 423 42 429 394 45 25 402 2 47 276 364 68 313 35 142 76 257 150 108 153 96 410 371 132 127 277 358 110 399 48 251 53 213 212 398 92 21 375 126 228 80 104 355 74 148 11 418 400 242 122 75 286 186 238 152 327 219 404 41 336 8 215 255 324 182 4 388 129 54 385 337 91 390 5 389 369 107 15 19 246 392 180 49 391 274 +308 309 120 172 291 113 71 376 159 123 345 263 178 328 431 344 253 169 220 272 237 295 348 163 170 95 310 422 78 130 326 171 158 375 239 82 374 187 356 192 177 173 421 70 1 64 185 331 190 115 429 131 334 411 203 31 412 307 149 99 312 386 144 230 67 201 195 106 218 90 305 215 9 26 261 216 252 297 320 202 329 175 360 428 359 424 133 174 339 63 141 362 250 256 16 284 281 164 153 311 315 430 119 352 161 56 258 434 408 109 22 51 365 248 350 266 279 267 409 57 275 137 196 86 140 323 259 366 327 318 197 367 341 165 287 321 427 62 240 150 85 262 145 337 33 379 20 207 176 413 59 46 45 98 294 116 7 61 351 393 426 420 231 204 34 276 188 74 368 180 93 147 43 139 419 298 30 189 221 370 179 191 75 234 435 97 346 361 58 166 304 278 265 283 103 198 10 219 37 114 167 168 156 213 214 395 235 289 38 88 257 222 73 397 184 50 317 299 28 314 14 125 60 208 247 363 117 193 280 373 225 94 47 243 273 355 401 121 236 338 415 124 24 12 127 349 128 313 65 354 260 42 227 343 254 129 154 27 105 39 378 55 135 211 330 87 244 210 101 242 206 414 226 232 79 233 433 394 290 80 41 300 407 138 102 152 249 398 342 416 251 288 324 142 183 217 134 160 296 372 384 66 369 381 13 157 229 32 29 385 264 383 347 89 246 301 162 205 2 387 245 155 302 388 194 282 402 403 84 340 151 69 209 223 132 364 238 81 432 285 40 303 306 358 423 335 380 8 333 268 148 212 92 108 425 48 146 52 23 241 118 6 21 181 293 353 382 77 399 96 199 143 357 3 76 5 224 371 68 17 111 72 35 200 255 112 122 228 277 110 322 182 406 292 19 25 405 44 396 390 126 18 377 417 100 271 410 392 186 49 418 136 332 104 319 270 11 91 53 391 389 286 316 83 325 15 400 404 336 269 36 54 274 107 4 +34 67 141 117 103 51 109 237 362 239 173 350 218 39 31 192 26 217 258 64 79 416 56 196 163 131 124 203 259 191 50 121 90 430 159 288 63 331 276 298 384 339 202 113 420 1 243 118 330 169 161 144 170 206 318 95 247 61 261 352 115 99 29 308 160 303 110 293 154 201 304 297 315 250 338 52 310 291 147 20 409 334 7 209 349 230 386 231 346 221 220 119 294 59 365 363 130 82 128 411 133 190 125 403 216 309 73 123 46 187 368 148 278 357 424 232 101 164 60 348 372 212 376 253 222 57 426 194 433 428 106 28 361 341 200 240 378 84 167 168 9 207 395 16 112 387 178 177 273 284 305 208 367 370 412 78 379 66 393 342 204 431 329 188 165 172 295 145 205 116 166 58 137 214 282 340 264 345 256 413 272 156 111 236 427 38 301 197 65 69 366 47 344 86 262 275 371 343 267 410 381 62 10 48 85 323 397 435 171 157 149 401 432 351 422 354 93 289 307 44 181 306 226 244 405 70 380 114 77 254 234 249 22 71 97 332 321 283 373 134 198 139 292 140 421 45 434 415 245 266 320 233 223 151 419 132 193 312 42 225 32 175 176 398 353 382 359 185 242 54 317 347 396 374 195 153 383 24 87 189 6 105 33 104 120 360 100 37 150 356 199 158 213 394 89 143 241 316 281 55 94 407 211 279 27 287 358 43 364 268 285 252 53 302 179 162 25 425 30 40 414 271 399 333 210 335 265 319 12 408 98 280 322 127 235 326 255 186 18 14 182 227 260 385 270 263 96 13 423 311 146 83 314 122 324 135 296 313 184 91 72 257 102 88 41 108 389 76 248 92 238 406 152 375 75 68 219 126 174 81 74 142 290 299 138 36 377 2 129 336 228 327 80 404 35 388 429 17 8 328 390 300 417 224 4 229 23 402 21 355 5 269 277 325 392 286 251 49 418 15 400 215 155 136 107 369 3 337 11 274 183 180 246 19 391 +220 430 101 405 237 202 203 154 357 50 106 52 305 231 310 104 427 82 91 338 227 119 335 99 97 86 208 222 51 295 64 236 380 163 54 159 311 93 322 144 130 1 67 331 190 165 291 412 312 179 395 187 113 201 5 56 204 53 241 78 379 85 320 63 381 352 141 363 256 124 95 238 39 109 334 31 70 225 254 12 376 89 250 147 411 356 191 239 425 230 131 259 368 420 228 94 253 240 115 384 315 285 26 247 146 323 157 302 226 103 7 207 349 415 419 116 206 340 348 423 123 216 161 409 258 213 298 234 345 266 218 431 28 43 367 393 88 396 173 406 90 197 307 20 242 100 196 346 128 288 313 261 121 30 244 135 192 137 386 308 359 294 61 309 9 198 185 235 392 297 232 57 79 417 284 13 35 318 72 360 177 68 321 279 350 339 283 117 15 140 170 342 71 344 378 169 272 362 275 217 224 262 73 418 293 245 37 152 87 55 414 260 34 195 267 351 134 65 219 301 264 343 84 136 164 16 374 223 33 422 354 10 372 114 428 364 229 330 287 32 432 416 434 193 366 133 408 403 3 306 62 188 329 142 46 276 255 40 194 77 156 257 209 278 281 166 129 58 96 118 69 139 365 151 273 172 6 398 158 211 45 413 353 382 404 314 74 210 149 105 42 24 120 282 433 401 407 371 66 370 249 299 246 178 361 303 29 341 212 394 426 200 167 168 424 183 22 347 148 44 143 175 304 189 150 233 199 317 221 184 181 174 265 214 47 14 292 127 92 48 155 290 268 171 280 435 377 125 326 60 289 160 112 38 319 186 59 387 205 36 248 252 296 243 145 333 98 421 182 75 373 375 83 176 108 25 41 397 2 332 27 110 111 215 162 429 21 277 23 17 122 300 358 138 132 383 271 81 388 8 385 76 263 126 399 270 102 153 286 49 11 410 327 402 18 337 316 325 369 328 324 400 251 390 391 19 274 180 389 355 107 336 80 269 4 +220 67 231 51 393 419 203 430 310 39 395 202 305 109 99 237 159 63 323 379 165 82 356 50 154 119 163 411 152 103 141 97 86 291 352 294 30 7 230 147 190 331 266 113 201 362 106 363 256 52 144 293 247 1 85 427 288 64 285 313 261 295 412 357 128 56 207 253 20 302 236 130 409 95 208 338 29 26 31 259 376 384 93 78 192 267 301 312 246 346 268 315 101 348 90 420 308 34 365 345 131 216 44 416 415 239 196 318 191 217 70 434 114 405 368 306 161 68 9 206 218 43 12 179 297 372 275 169 170 120 105 320 349 164 140 329 133 366 57 322 187 28 271 250 116 157 350 135 396 33 123 53 240 417 204 351 392 334 94 177 77 335 79 342 410 278 232 72 209 178 115 344 339 298 380 151 367 284 104 197 61 136 422 234 309 381 84 54 316 413 89 65 354 24 281 124 66 258 146 431 173 158 112 272 14 46 121 244 423 117 418 87 100 221 111 212 71 347 255 374 394 378 279 385 222 270 330 319 183 88 321 55 235 283 398 42 16 185 340 265 238 262 311 433 172 264 386 414 245 62 428 47 198 36 242 370 6 134 174 214 156 45 280 73 254 137 18 167 168 314 35 426 195 83 176 397 401 403 91 292 276 223 188 199 429 129 189 421 425 205 364 241 307 407 155 175 257 32 252 38 361 10 48 200 359 227 360 194 225 371 74 260 211 17 139 102 143 387 142 373 377 282 273 60 303 37 125 182 233 243 25 317 332 299 162 210 358 224 132 249 8 160 435 69 40 149 171 406 229 324 388 150 353 382 432 118 181 341 287 325 226 269 375 166 251 22 148 75 41 153 184 343 424 399 383 108 328 219 96 145 408 59 304 49 186 27 248 193 11 5 215 58 3 277 98 138 337 213 404 289 326 15 336 300 19 13 2 290 127 92 122 228 76 23 296 110 333 21 107 274 390 263 327 391 355 402 126 81 286 80 400 4 389 369 180 +411 93 306 63 203 237 154 201 50 331 39 114 113 64 242 250 52 230 94 187 207 220 31 202 291 163 131 159 295 239 231 318 144 192 253 101 294 133 305 78 208 20 125 349 1 123 384 351 130 261 141 297 379 95 249 433 103 281 412 196 26 84 217 73 55 386 70 90 124 140 340 362 119 206 301 169 82 430 413 247 170 197 266 348 330 367 36 422 161 179 234 352 204 79 51 177 276 339 42 232 121 363 190 262 128 118 356 319 62 116 275 403 147 56 117 431 414 9 166 165 14 164 184 244 7 365 86 329 315 109 267 67 303 334 366 359 360 420 298 273 100 308 256 240 383 338 34 195 378 57 278 235 193 376 233 198 387 284 145 421 99 424 368 191 310 209 218 46 85 258 342 199 372 373 260 43 364 272 312 194 428 350 321 343 188 426 259 115 397 53 287 146 167 168 10 288 142 97 374 419 401 69 416 432 65 112 271 346 186 156 224 216 28 178 37 309 221 409 377 172 158 370 111 66 185 106 304 317 60 354 361 279 293 98 280 16 47 268 395 347 77 211 139 326 151 381 189 252 162 137 236 316 417 3 257 160 105 132 135 200 435 415 58 120 265 87 345 38 292 245 32 33 74 283 307 407 243 285 127 282 40 45 27 302 264 344 173 149 427 59 181 393 71 210 299 110 134 358 214 296 341 157 270 75 22 8 92 405 313 333 108 389 399 398 434 375 24 12 61 323 353 382 215 394 176 171 371 96 2 335 332 418 136 175 21 150 357 314 6 174 155 406 76 30 396 325 205 248 182 148 41 68 104 44 380 17 88 83 388 183 238 254 18 48 138 229 81 269 289 385 327 29 328 277 241 102 126 23 410 324 425 320 222 212 143 25 251 223 89 390 49 402 226 153 107 11 80 122 227 290 404 263 72 219 408 35 355 429 311 213 423 322 400 225 337 255 274 336 300 129 391 286 369 13 5 54 152 91 4 246 228 19 392 180 15 +82 202 203 379 302 312 412 409 135 220 67 109 417 285 331 237 415 305 136 63 418 165 183 363 51 130 352 144 39 231 190 173 314 141 164 159 155 334 266 88 119 267 147 259 99 229 201 362 35 97 154 64 123 103 86 293 101 216 430 214 151 163 29 372 345 20 338 291 1 356 240 131 157 177 178 310 368 24 133 90 7 284 348 50 235 52 113 272 294 288 26 283 256 329 230 116 395 253 411 70 351 365 346 174 414 206 23 275 427 128 298 100 106 315 84 295 431 420 187 9 301 170 85 218 140 378 340 258 161 43 380 381 344 192 115 413 169 376 350 46 179 95 405 208 204 61 197 77 292 10 247 175 297 137 261 422 364 359 16 56 66 384 236 323 87 360 185 198 308 234 330 62 73 112 196 78 158 93 79 339 250 142 71 176 313 318 189 57 426 281 37 428 31 321 307 416 28 69 200 282 374 306 12 419 320 322 349 366 433 435 195 223 42 254 371 47 264 40 309 124 407 111 342 207 279 276 120 98 65 114 354 311 45 149 222 278 244 6 386 33 425 241 239 233 394 373 260 32 423 243 30 326 125 434 403 232 238 361 146 367 268 53 89 156 225 194 290 424 188 191 55 300 335 257 377 387 421 74 72 224 126 94 2 262 105 347 209 143 393 5 162 332 172 287 252 150 83 211 160 41 226 167 168 303 60 96 152 210 341 289 139 249 271 134 343 153 121 299 145 219 199 398 171 429 432 245 75 205 251 333 280 117 248 38 213 81 21 217 127 406 337 357 358 317 181 14 3 58 34 13 193 227 11 325 129 212 184 118 68 397 375 265 221 296 36 273 270 148 277 102 399 328 108 304 324 370 228 389 22 316 353 382 104 383 408 242 215 396 17 336 27 263 110 59 319 385 166 122 92 401 327 76 402 255 138 355 180 8 182 390 91 369 286 132 44 186 269 404 18 80 54 392 274 15 107 19 410 246 400 388 49 25 48 4 391 +430 203 101 237 165 202 331 315 119 220 357 187 154 52 305 50 412 82 31 99 405 310 338 144 227 141 113 295 222 393 104 93 63 197 201 51 64 163 161 356 256 419 179 67 116 297 130 359 239 254 106 425 94 70 360 386 411 123 56 379 86 306 349 190 380 340 318 231 128 198 1 124 207 427 226 409 241 208 159 225 39 97 85 12 218 352 261 250 288 242 334 311 90 247 78 103 291 417 302 258 170 169 236 7 26 192 367 109 95 184 363 298 131 213 20 121 61 335 376 362 320 312 244 368 406 348 230 84 415 378 133 223 115 13 294 350 34 381 284 229 35 253 384 146 343 164 423 418 257 281 91 235 191 232 216 30 342 395 259 53 272 183 206 195 79 5 136 275 308 262 114 240 89 204 228 366 414 196 397 155 117 88 54 147 143 43 365 322 396 221 351 317 323 267 301 431 9 62 282 264 14 238 181 177 28 345 66 283 309 313 373 266 234 260 346 428 374 157 29 433 279 135 339 268 422 364 71 361 403 193 217 194 73 319 139 65 219 37 278 354 329 394 16 420 134 3 413 10 424 120 185 307 280 265 330 69 344 249 233 57 72 125 42 224 156 152 321 276 273 303 209 112 137 189 74 111 149 150 151 285 46 398 17 142 175 44 341 47 214 6 162 246 188 255 434 332 199 347 8 23 211 77 58 271 173 287 140 100 370 293 87 68 407 333 245 210 432 200 387 290 127 27 186 421 435 108 304 167 168 24 178 243 166 326 105 40 172 176 270 38 353 382 48 36 55 314 45 377 372 83 96 408 75 33 389 118 296 158 132 383 174 416 375 212 426 110 182 385 401 145 32 126 160 171 358 205 371 22 324 292 18 252 404 277 129 25 59 388 60 316 21 215 399 15 92 2 299 41 429 392 122 76 81 327 248 148 98 138 269 369 19 325 289 49 251 107 153 328 11 391 102 263 410 402 274 4 300 390 286 355 336 400 80 337 180 +67 50 63 231 109 51 141 237 393 56 29 31 128 113 315 362 117 130 1 430 131 163 352 203 220 82 379 297 339 409 192 26 103 306 202 159 7 395 411 310 330 218 144 147 368 64 99 20 34 217 294 291 154 376 288 373 95 412 308 261 121 276 305 62 116 239 125 365 90 356 318 133 331 230 52 420 258 348 39 79 364 312 86 222 259 363 169 209 85 419 329 187 24 170 101 189 123 349 161 361 240 119 340 200 69 201 384 338 250 165 357 334 78 247 264 295 191 179 285 196 278 206 403 267 23 265 309 345 275 396 205 214 66 124 416 405 284 268 256 386 190 342 303 70 372 216 236 173 61 271 172 73 9 84 207 428 164 97 145 406 341 293 367 221 30 111 281 298 346 350 106 16 188 229 254 226 152 302 366 266 197 243 181 431 323 28 427 244 394 344 12 88 424 413 433 225 115 351 398 208 65 380 262 272 415 378 387 232 397 223 114 140 87 47 93 320 136 177 204 241 160 425 314 371 417 43 426 176 134 370 38 57 317 71 195 313 162 45 46 253 273 283 175 319 120 358 279 18 37 198 421 77 257 322 10 59 178 434 435 407 184 360 282 183 89 242 149 135 270 304 224 110 269 359 132 36 326 151 14 193 194 418 347 35 399 185 167 168 374 13 422 112 301 235 60 280 321 146 150 343 105 383 17 42 316 58 392 251 375 27 233 158 381 155 44 401 98 332 414 94 213 234 55 157 166 68 335 137 143 292 3 83 246 174 2 249 139 118 171 410 227 327 127 156 199 354 212 255 104 432 385 325 287 8 22 100 53 74 33 211 129 153 307 389 210 186 6 353 382 263 402 245 296 333 324 75 21 355 11 54 72 311 228 290 377 404 108 390 19 252 300 429 289 48 107 4 40 328 148 81 182 260 122 299 96 248 32 25 142 238 219 76 408 423 91 15 80 126 102 5 138 277 92 286 388 215 400 49 369 41 274 337 336 391 180 +237 31 220 411 97 82 372 363 427 50 258 147 179 106 315 109 88 146 116 236 334 163 351 331 295 238 103 291 51 322 430 310 348 312 65 256 12 99 64 222 123 380 175 159 205 113 386 79 119 67 247 431 78 384 356 201 204 187 202 61 43 144 93 63 305 89 203 329 100 85 115 165 298 241 86 52 266 130 141 1 208 424 379 209 420 275 250 381 253 90 117 3 227 412 184 425 405 361 409 26 284 244 340 308 359 360 373 224 56 339 402 239 183 185 311 350 131 62 226 365 376 301 309 267 128 230 53 177 7 190 303 139 232 104 259 426 240 69 70 37 354 302 196 191 39 133 154 84 306 173 192 297 362 352 94 413 406 125 364 261 349 14 55 330 318 134 283 341 235 383 161 428 214 217 254 188 378 101 57 393 156 195 176 46 422 223 218 320 288 155 387 233 216 231 346 417 368 169 140 174 28 158 213 66 164 225 95 170 338 335 91 347 343 357 137 166 294 407 229 157 317 279 415 249 272 15 292 71 206 234 257 419 24 414 30 345 2 145 40 135 278 197 314 281 342 207 114 366 264 326 371 325 432 172 321 262 162 20 59 290 124 121 32 374 328 16 5 73 198 282 367 112 287 403 105 397 421 435 199 10 418 136 13 416 299 33 149 127 248 313 142 433 45 344 151 293 396 35 111 285 377 87 58 118 9 72 296 17 77 434 29 200 265 189 194 167 168 273 38 319 150 160 81 370 423 219 243 193 110 186 178 333 36 276 34 260 245 228 21 6 74 327 280 152 408 143 304 268 353 382 255 41 251 404 395 211 394 54 138 60 307 375 132 83 42 242 23 252 171 96 47 120 332 92 210 27 221 289 22 316 181 358 399 148 398 323 271 215 25 337 126 355 129 429 11 108 246 153 212 75 263 44 182 122 98 8 369 277 48 390 389 76 401 68 324 18 270 274 385 300 49 80 388 410 400 336 102 269 180 286 392 4 107 19 391 +220 231 51 310 237 430 395 67 39 393 305 266 256 356 119 165 146 7 179 419 99 86 331 379 109 43 203 82 380 190 64 295 30 154 363 357 352 85 335 12 323 202 208 63 312 427 152 144 130 159 106 140 253 261 313 97 56 411 147 405 201 334 141 291 241 315 224 163 157 131 288 247 311 113 392 72 222 52 206 42 24 196 50 409 320 412 103 372 31 351 230 29 100 321 191 116 90 239 161 362 431 376 177 104 365 415 236 368 350 240 1 192 354 101 301 185 434 349 267 66 20 298 293 26 423 204 235 57 115 348 425 93 175 34 3 416 284 209 318 227 306 167 168 339 5 225 394 285 68 374 142 422 406 33 216 87 112 91 283 9 246 84 329 346 322 137 45 302 164 297 79 124 14 308 54 420 200 366 258 187 123 35 158 218 117 359 120 384 262 338 414 238 381 46 133 78 207 387 95 428 360 403 128 232 65 73 105 367 417 314 255 169 345 250 401 275 32 28 226 53 170 88 55 47 38 260 259 292 432 342 433 173 278 299 174 396 272 111 156 340 378 10 398 418 89 135 280 94 195 435 373 83 303 114 254 197 257 281 70 309 330 317 217 307 150 219 377 426 245 155 213 413 74 176 294 16 6 71 264 121 77 347 370 188 211 233 344 212 125 361 22 184 424 249 166 371 151 214 13 383 408 244 178 421 139 234 61 199 60 229 37 198 18 252 407 59 210 343 102 149 27 385 194 40 404 223 276 134 69 429 353 382 242 386 41 2 287 182 273 36 221 181 228 162 183 62 397 375 172 279 341 364 44 205 243 186 290 248 129 21 325 96 319 118 148 332 296 399 107 265 136 145 11 358 388 132 8 282 304 189 143 193 160 268 49 300 75 58 110 402 25 410 138 108 127 48 171 98 324 289 316 326 333 251 126 23 153 17 15 274 81 390 122 277 327 215 328 4 271 92 270 369 355 389 19 263 76 337 336 391 80 400 286 269 180 +203 202 187 113 220 295 237 31 348 331 56 141 82 50 64 39 18 430 1 67 159 163 253 350 57 51 93 379 27 412 266 258 165 201 164 356 100 352 131 154 431 312 119 147 315 192 207 244 116 250 278 109 247 70 362 94 422 204 52 216 376 26 298 37 401 185 144 411 117 130 240 71 208 231 121 354 310 330 173 291 288 66 107 320 321 63 95 338 380 24 128 221 78 99 103 363 339 161 101 329 190 346 323 257 368 218 61 256 196 239 123 361 334 384 7 9 120 232 259 300 53 175 133 374 241 308 12 169 79 90 420 179 305 301 360 343 318 359 349 124 222 421 309 65 386 114 409 297 106 170 226 294 115 311 111 140 267 373 235 195 85 261 302 230 252 351 403 191 177 424 416 435 209 125 46 42 68 29 284 345 20 341 405 385 387 275 342 344 281 4 156 214 14 227 395 174 167 168 245 370 28 268 264 428 332 149 47 225 254 333 176 137 105 319 276 206 271 378 143 197 62 366 34 415 340 88 112 383 413 303 200 127 377 242 367 265 434 307 293 73 38 347 317 299 178 158 285 287 83 77 262 86 162 425 426 43 388 417 213 272 84 188 44 172 372 155 33 375 249 306 13 199 270 229 145 35 433 72 217 122 45 58 10 134 30 189 407 429 290 22 198 23 414 326 166 408 6 364 150 243 160 381 427 118 283 397 393 16 335 110 357 394 211 233 432 423 223 2 419 365 205 304 277 400 418 193 371 97 248 182 236 151 60 406 194 181 59 396 219 389 410 234 139 48 280 87 126 296 210 102 5 142 49 251 314 17 21 327 263 32 55 353 382 146 148 135 136 313 184 8 369 238 398 96 282 322 273 260 289 41 157 228 75 108 40 98 74 399 358 171 36 292 92 279 402 328 81 19 183 212 25 269 3 153 69 89 224 316 186 104 215 11 325 391 355 336 404 132 392 152 324 337 138 390 80 54 180 91 255 286 76 246 129 15 274 +411 230 50 43 147 179 3 237 14 187 386 224 31 275 63 331 345 334 167 168 365 93 297 78 356 161 123 20 86 294 119 202 409 220 235 136 412 306 146 1 170 184 295 221 183 192 144 64 159 351 169 70 82 280 312 34 116 7 193 203 114 261 348 379 55 343 310 398 417 344 85 253 435 99 133 413 239 113 360 240 349 190 415 373 115 197 94 126 139 201 305 56 272 359 374 363 420 250 291 143 340 9 26 394 61 256 80 314 259 141 97 69 266 79 247 298 258 405 163 90 2 281 164 101 311 383 216 198 418 267 358 155 368 45 95 84 430 254 209 158 323 134 130 173 28 128 393 62 151 414 142 236 341 434 402 399 106 326 76 347 57 387 315 92 21 422 117 231 318 87 138 339 381 135 285 338 36 125 367 346 149 154 273 165 265 279 364 284 140 313 389 308 370 67 362 303 129 427 30 199 131 262 109 217 16 27 366 207 150 121 37 384 426 214 171 103 196 352 10 176 172 189 288 23 174 52 276 252 208 328 71 421 188 73 88 185 206 111 390 6 375 332 330 160 309 257 191 319 301 229 246 77 376 65 178 51 321 307 40 380 407 218 378 232 354 428 255 223 234 406 194 137 432 278 342 177 145 227 327 152 283 395 242 350 424 213 397 264 205 335 105 195 329 317 166 333 302 22 204 304 211 157 287 83 260 200 241 233 175 320 47 12 210 243 296 46 44 33 32 222 325 290 127 431 361 219 215 38 156 238 396 433 293 282 322 153 403 39 89 11 120 132 98 419 118 226 13 17 244 292 425 108 41 58 249 357 24 408 277 181 74 186 251 162 416 248 81 401 100 110 289 429 75 377 385 268 124 53 400 299 66 59 228 225 353 382 274 60 337 5 148 35 18 245 263 29 96 355 404 388 104 423 372 68 270 324 316 72 212 122 271 371 8 112 182 286 42 300 91 410 25 4 369 48 269 102 15 54 49 391 107 180 336 19 392 +231 220 50 237 130 82 113 202 356 78 39 203 31 67 165 159 291 253 187 266 163 411 295 131 70 331 201 352 207 64 306 310 348 95 305 239 52 379 242 51 412 312 63 1 208 56 430 99 147 164 140 141 374 93 368 349 154 334 307 109 431 393 345 409 376 230 44 363 12 250 297 309 196 119 350 42 216 395 178 235 30 422 86 302 116 298 362 167 168 103 124 329 261 7 179 71 308 285 9 26 247 123 420 14 284 375 218 190 397 144 85 340 192 407 101 419 57 90 288 195 133 240 384 301 206 73 294 142 300 177 137 61 115 55 84 275 367 313 185 299 357 339 318 135 360 267 169 94 338 359 365 32 120 383 27 256 321 283 161 170 197 272 370 166 426 74 97 100 62 361 234 33 434 24 346 344 245 258 315 429 416 319 278 36 373 415 20 209 405 37 28 260 421 262 380 366 43 128 68 34 173 347 172 252 198 193 435 117 326 351 248 330 79 150 204 29 162 188 264 335 125 157 106 276 184 364 417 320 413 424 143 332 104 354 158 17 146 191 377 232 304 221 259 75 372 16 199 139 244 217 65 414 378 114 149 111 257 327 386 396 341 77 314 46 381 273 433 6 425 236 214 241 391 38 401 343 428 10 268 151 337 398 387 254 281 280 145 265 293 394 155 408 427 418 403 287 328 156 47 40 2 277 45 246 317 88 69 121 200 18 303 136 127 182 432 342 22 54 388 189 152 249 238 118 251 243 371 385 66 87 194 358 171 212 83 21 271 153 211 324 274 215 282 5 205 400 160 3 129 233 323 175 126 296 406 112 353 382 49 11 226 322 311 270 72 210 59 105 53 96 183 58 404 227 108 174 134 399 289 316 224 107 290 60 132 176 91 23 222 48 35 25 181 355 110 279 81 89 122 402 19 219 223 102 369 76 263 229 80 148 98 325 333 186 423 225 255 8 410 213 41 389 390 92 13 292 392 4 336 269 180 138 228 286 15 +63 237 64 31 306 331 280 184 281 297 82 14 343 101 126 93 235 192 259 211 175 311 174 295 190 356 312 65 342 159 201 240 141 163 173 119 116 351 1 261 210 435 203 85 50 239 431 254 202 262 200 230 373 362 279 161 185 97 310 216 26 308 169 170 86 305 348 267 350 220 94 70 123 365 113 253 39 430 154 256 57 99 128 378 420 43 247 66 73 341 424 189 115 79 56 298 257 22 275 414 294 98 333 334 176 317 346 37 9 290 133 46 222 284 76 380 408 332 177 425 187 61 36 191 147 354 413 156 258 338 109 51 227 162 320 125 7 179 10 278 90 71 78 266 196 321 309 209 95 366 349 360 2 40 384 27 114 411 178 339 28 232 217 12 204 197 412 144 21 117 167 168 359 432 335 291 130 20 315 52 422 313 121 416 30 318 345 158 62 34 352 367 106 264 199 344 198 421 389 304 111 407 45 386 330 379 238 213 434 139 288 145 110 218 188 376 250 272 208 157 323 244 428 108 16 361 368 427 127 84 241 293 105 103 283 296 149 67 383 233 140 245 81 403 226 347 292 131 326 287 120 286 164 374 221 340 155 314 143 364 74 58 77 429 319 371 13 112 100 303 137 405 138 329 225 193 248 415 72 302 423 381 377 252 243 387 69 59 363 32 142 172 136 402 182 194 104 92 234 265 289 6 307 406 183 8 301 328 60 236 207 87 165 166 398 171 195 24 276 260 205 118 160 231 426 206 75 17 134 150 299 229 80 385 148 282 394 369 124 242 5 91 68 55 263 399 146 273 353 382 249 151 38 395 102 370 417 47 29 433 357 219 372 255 325 135 401 358 393 322 33 409 285 268 88 83 214 212 355 3 224 419 375 228 23 327 152 300 44 48 397 181 153 215 388 129 404 418 42 271 25 89 53 251 223 96 41 35 246 277 19 49 390 122 324 132 11 400 18 336 316 270 337 410 269 180 186 54 396 274 4 392 15 107 391 +220 179 163 39 331 203 202 51 154 1 376 43 352 165 224 379 67 237 146 141 82 84 430 338 109 3 190 116 315 310 201 159 52 101 130 26 111 144 64 259 350 362 164 305 119 288 266 359 204 412 50 161 247 187 53 56 7 103 312 298 431 128 31 334 295 360 123 354 361 363 90 411 368 99 258 239 63 253 302 426 340 131 78 77 422 24 301 100 380 185 175 318 378 297 115 405 406 373 46 192 173 250 147 275 339 211 308 216 61 169 62 427 95 356 35 106 409 93 170 230 177 231 414 384 197 309 79 121 232 267 124 210 421 208 284 196 240 117 321 347 113 57 222 351 348 133 433 178 346 345 174 323 114 94 137 293 218 261 29 235 407 366 245 221 262 42 256 397 23 207 303 291 191 241 71 381 415 420 188 156 88 386 332 225 200 383 198 413 233 140 112 226 435 17 9 278 283 70 403 306 157 28 299 317 342 143 367 135 206 195 424 341 16 344 416 244 209 330 364 428 265 395 408 162 272 199 387 419 14 349 60 66 276 6 158 372 423 34 86 176 12 370 229 393 217 125 273 254 425 73 10 292 194 97 214 160 65 294 252 365 167 168 74 257 343 47 281 285 264 181 357 329 236 38 134 307 145 155 282 37 85 249 151 30 432 72 243 40 417 120 325 394 166 20 311 320 32 371 279 374 314 55 58 277 227 69 319 223 268 335 75 136 300 18 89 142 13 213 205 304 289 322 19 401 11 396 219 270 234 290 280 418 313 126 434 83 189 139 102 33 27 271 184 238 59 96 248 353 382 193 183 242 172 45 8 110 326 22 87 182 389 316 150 429 105 68 212 5 149 122 104 287 118 385 186 132 260 377 148 2 171 98 44 153 398 333 41 228 251 36 127 336 358 328 392 21 108 399 388 404 296 375 49 107 410 81 324 215 91 355 400 327 152 4 92 337 269 138 15 54 263 274 76 369 129 390 25 48 402 80 246 180 286 255 391 +203 430 202 220 310 163 231 154 331 31 82 63 141 207 50 338 51 101 237 113 315 197 165 412 305 93 70 116 39 259 56 52 67 159 405 1 198 64 295 356 187 379 144 99 119 350 208 256 201 128 222 109 239 376 95 131 281 362 78 411 227 352 288 348 133 161 253 7 258 323 94 359 53 384 360 103 190 291 26 297 147 130 242 192 409 302 216 393 365 250 422 423 419 124 121 225 380 312 261 223 298 334 86 106 217 169 114 61 170 115 66 330 247 320 363 276 431 318 386 196 272 367 57 179 308 257 377 346 164 293 284 134 349 136 230 97 266 235 226 123 117 340 254 417 241 14 395 151 427 425 218 311 90 267 415 229 342 345 309 189 77 12 85 20 88 100 221 195 112 236 339 428 420 234 265 204 244 184 213 232 79 71 268 140 13 73 9 306 206 173 329 175 414 191 209 357 332 104 35 418 373 378 403 344 28 120 211 435 30 351 292 34 282 275 368 401 29 319 361 137 416 279 200 210 301 294 240 271 354 406 341 155 285 183 84 172 111 278 313 321 228 176 177 343 316 24 166 118 214 366 283 270 174 322 335 156 381 264 68 397 167 168 125 62 372 65 43 370 185 252 307 37 91 178 421 135 143 33 434 374 317 46 152 23 162 238 193 8 146 188 262 74 139 89 245 280 364 260 394 304 408 16 160 385 72 18 87 27 347 75 205 108 10 219 233 181 215 83 36 328 333 387 58 433 5 314 389 69 40 55 158 45 224 273 6 194 398 48 413 303 299 60 371 407 150 277 42 47 105 157 249 3 142 171 325 145 424 17 326 290 375 92 243 186 324 182 199 429 212 426 98 38 110 44 396 126 149 388 127 132 383 248 287 296 2 246 432 358 392 22 300 269 102 59 76 32 402 21 81 129 336 25 399 263 122 410 353 382 138 289 148 54 96 107 251 286 369 255 153 19 404 355 15 11 49 391 337 80 41 390 327 274 4 180 400 +334 86 237 31 351 85 163 1 203 192 147 306 220 411 202 64 205 66 50 164 116 123 70 373 82 93 376 330 14 294 159 113 295 340 379 291 121 298 63 56 261 265 20 165 90 43 45 179 281 28 314 262 65 345 216 206 284 94 44 209 428 16 387 346 150 275 366 253 101 356 115 117 420 331 2 130 349 69 67 318 154 141 128 184 305 175 125 250 386 312 383 189 360 244 267 133 201 430 79 169 431 177 341 119 149 26 424 62 254 105 359 99 170 338 365 9 352 371 402 405 24 363 127 264 188 361 78 344 131 342 174 231 21 52 240 83 36 187 435 422 161 258 413 97 37 412 414 162 87 230 185 283 350 315 297 307 190 317 10 272 143 239 378 362 221 276 48 235 144 110 7 51 84 38 167 168 266 77 145 309 256 292 156 407 12 61 415 310 195 329 200 398 247 197 71 335 325 217 326 39 114 139 47 403 232 409 146 368 138 109 34 100 303 285 308 243 348 311 199 211 136 160 328 354 73 218 288 339 25 210 227 151 381 158 364 172 155 106 384 176 22 30 103 399 393 319 389 427 425 198 60 224 112 111 287 257 301 72 226 249 421 204 313 395 289 95 280 282 302 273 233 46 236 3 53 222 320 140 137 135 397 358 196 333 323 23 96 142 214 148 191 380 357 29 57 251 153 241 322 215 6 124 377 194 17 108 394 183 374 80 343 321 76 245 207 429 296 396 225 290 178 134 252 304 353 382 327 372 40 390 259 401 213 126 193 81 263 434 406 370 55 432 367 293 234 410 181 278 13 238 88 255 426 208 68 166 332 171 59 74 300 32 5 279 8 118 102 417 219 416 120 92 274 11 98 182 132 212 242 299 347 157 186 324 58 248 419 408 122 433 33 404 27 41 152 418 229 375 260 173 104 54 369 223 270 388 75 391 336 228 286 277 42 423 337 355 246 19 400 129 316 49 18 385 35 268 180 15 271 89 91 269 4 392 107 +237 159 163 220 310 70 207 114 141 331 1 56 430 63 95 39 231 294 113 78 31 295 192 288 291 356 67 50 362 203 131 411 305 247 147 253 348 239 128 202 112 352 365 24 197 258 216 86 230 116 315 93 264 61 196 256 259 103 373 115 130 234 393 350 345 422 117 57 134 250 187 208 190 268 66 154 64 9 101 235 198 121 201 99 97 360 82 276 7 240 144 368 51 297 412 265 119 281 284 26 236 384 359 323 161 242 367 363 344 195 349 405 217 267 306 109 169 170 218 189 20 379 334 270 71 435 376 420 222 133 338 167 168 73 106 254 151 85 271 261 312 318 372 325 377 100 68 120 227 94 428 90 321 232 275 225 332 257 339 407 185 342 206 415 136 166 347 123 401 320 272 162 340 200 395 27 111 173 351 152 385 191 140 414 313 204 413 283 292 244 311 79 341 52 12 380 298 370 18 88 16 30 416 421 221 330 178 14 29 251 44 182 431 293 69 346 226 53 300 266 34 47 55 409 214 361 23 324 252 215 425 174 280 209 285 139 279 184 241 137 46 28 179 36 403 343 269 406 322 77 260 10 62 278 87 427 223 165 308 301 172 417 33 158 108 211 307 316 43 143 282 364 177 319 329 176 210 354 228 37 328 188 212 419 424 124 398 74 304 193 386 374 60 366 245 160 45 388 273 262 105 175 213 181 125 75 157 309 433 429 378 434 423 40 394 317 13 38 410 389 89 153 118 299 233 156 65 58 205 229 418 333 326 92 84 375 59 146 336 303 48 302 32 8 381 314 17 142 135 246 183 126 387 357 22 397 296 383 194 224 98 155 432 238 396 145 25 371 2 287 399 164 199 335 72 42 6 80 21 358 290 132 149 76 127 408 277 81 286 83 129 255 353 382 15 243 171 35 150 400 248 186 337 426 274 3 402 138 122 289 249 219 5 404 19 4 355 91 102 263 96 107 392 11 110 49 391 369 327 390 41 104 148 54 180 +312 331 237 214 247 379 82 409 229 203 155 202 314 412 192 136 183 88 64 141 116 31 73 239 411 417 415 302 403 196 190 79 131 362 294 351 161 253 295 39 216 119 384 125 318 363 187 201 258 220 276 285 259 144 305 26 103 387 90 291 433 428 163 95 356 85 204 50 159 164 86 288 343 367 35 256 177 418 208 147 303 284 298 106 113 9 360 297 78 261 414 191 240 97 145 359 420 250 63 185 349 1 321 170 306 334 135 61 350 315 130 197 169 207 123 267 430 193 99 46 354 292 346 435 290 114 154 133 244 348 230 59 157 105 340 205 275 173 140 217 43 413 432 100 117 70 165 243 93 365 279 427 69 209 366 174 293 341 422 57 364 56 266 352 194 179 206 236 23 139 380 426 424 373 378 200 262 223 110 52 184 232 304 198 156 178 160 175 278 132 218 434 121 281 62 280 84 112 249 166 317 283 296 319 235 370 195 421 28 151 431 386 109 333 115 65 252 128 20 313 111 338 251 71 361 381 143 181 310 101 32 372 126 342 289 287 16 14 167 168 60 330 55 254 264 282 301 397 241 137 74 308 40 257 222 320 221 83 242 345 273 368 10 6 162 120 329 158 339 58 75 211 149 118 213 238 353 382 405 53 234 316 188 416 210 127 344 268 142 407 89 30 227 51 325 134 323 335 311 94 129 271 67 233 260 77 248 37 332 66 34 272 371 307 124 176 396 404 199 245 138 45 24 425 47 309 42 225 226 150 423 36 171 33 68 270 72 153 2 87 322 374 7 265 358 148 219 81 21 13 41 231 38 398 189 22 377 385 186 408 402 376 299 394 383 326 172 324 27 146 3 224 5 255 395 98 399 419 389 228 212 327 108 429 300 96 76 12 406 8 328 337 92 355 277 347 44 17 182 269 25 357 11 215 375 393 401 80 410 102 48 390 122 29 369 152 388 104 274 180 286 336 246 391 263 400 15 91 49 18 54 19 392 107 4 +202 203 82 379 409 302 412 312 67 285 136 135 220 163 159 109 237 305 183 331 63 39 165 144 173 363 430 141 51 50 415 417 1 154 35 190 294 338 352 155 229 119 214 88 201 113 164 418 99 267 207 23 130 56 64 95 123 291 362 147 103 192 259 348 231 131 24 29 128 266 240 315 52 101 230 368 178 314 411 345 151 310 31 187 106 295 256 78 20 288 376 90 116 216 247 356 208 268 334 297 308 179 405 258 26 61 43 346 342 253 177 351 86 93 161 395 7 170 169 329 413 365 278 349 133 70 77 79 57 298 204 261 264 420 293 97 121 380 46 416 84 427 111 9 344 330 175 236 218 196 431 350 275 28 206 71 340 189 85 309 318 37 114 239 281 100 250 174 393 301 320 284 223 378 386 364 16 53 69 47 339 115 384 323 62 422 433 271 222 254 137 361 73 403 426 68 34 120 185 66 279 366 272 367 374 197 372 176 98 117 6 157 146 283 307 419 232 125 311 94 112 172 276 191 241 235 321 325 371 44 195 217 244 60 211 306 10 357 373 200 300 87 105 210 42 359 396 143 434 360 124 414 262 425 33 89 332 313 381 227 30 140 158 354 407 149 424 188 326 234 226 198 387 347 139 303 65 423 265 194 270 209 162 370 243 257 282 219 72 397 251 406 40 394 205 435 153 233 408 193 134 171 341 224 156 385 145 252 160 199 428 287 225 290 335 421 343 12 96 45 221 14 322 213 3 249 328 38 245 260 167 168 429 432 273 102 181 55 317 17 129 383 142 242 75 280 32 152 212 74 377 13 83 248 184 353 382 41 150 304 5 292 316 104 238 22 401 410 148 358 269 108 375 333 299 398 324 27 126 11 118 107 2 127 58 228 296 110 289 277 182 337 166 36 399 263 319 286 400 215 18 132 388 81 336 21 59 404 138 186 122 8 91 76 54 255 355 389 327 92 48 402 25 49 80 180 274 19 392 15 390 246 369 391 4 +101 52 154 338 430 203 202 331 163 93 310 1 222 113 50 315 237 82 231 63 412 220 187 70 141 405 165 159 376 295 242 78 305 31 144 116 297 227 291 94 340 64 130 259 384 208 124 225 119 239 53 359 207 95 379 56 169 360 170 197 348 51 99 131 311 356 226 190 254 201 334 425 309 352 198 26 386 161 409 380 106 261 253 308 258 288 250 281 12 213 411 284 114 66 195 115 86 272 133 241 318 192 365 128 357 67 367 257 312 103 13 345 218 276 136 73 123 362 97 302 423 306 294 393 351 320 216 109 234 350 256 9 235 363 349 35 415 90 71 322 265 20 164 172 361 7 373 431 57 179 183 339 342 368 346 323 228 39 206 104 378 419 247 5 422 74 223 204 229 266 427 344 260 341 428 75 267 77 236 62 417 275 79 143 408 395 414 184 120 147 193 330 298 24 137 279 435 326 88 151 366 85 244 191 240 117 406 321 134 230 211 264 217 313 100 343 420 175 61 283 210 91 238 14 319 118 245 268 84 189 282 30 397 166 377 173 262 418 196 381 188 10 329 364 374 219 121 278 290 200 125 403 332 16 232 178 139 233 270 34 68 23 271 413 155 28 37 171 177 140 307 280 317 335 389 407 89 181 347 111 40 293 185 424 273 433 33 27 162 354 401 396 221 416 146 372 135 167 168 421 46 304 375 69 18 43 152 301 58 92 299 285 249 150 156 29 112 224 174 186 194 3 209 205 158 47 8 83 214 65 17 55 6 387 333 303 38 149 212 252 145 287 87 371 81 108 160 314 292 434 277 60 385 370 199 98 105 432 394 243 45 42 182 398 127 324 176 336 142 44 215 157 15 248 383 327 72 36 316 429 325 76 22 54 426 126 246 392 255 353 382 328 110 132 296 48 2 19 263 129 300 25 404 59 96 21 358 4 11 138 369 269 289 32 153 122 337 107 388 399 102 148 41 251 274 400 286 355 49 391 402 180 80 410 390 +247 141 95 39 208 367 103 318 50 203 362 319 237 288 196 239 370 433 207 258 64 31 331 121 166 192 403 256 1 191 163 411 220 232 334 114 51 193 90 161 202 273 315 297 384 416 204 79 352 26 190 294 379 61 154 159 28 386 117 34 201 308 430 112 378 366 144 113 317 424 206 209 100 350 132 380 230 330 128 59 56 119 365 147 218 131 432 291 363 376 338 303 354 125 431 43 46 187 78 341 170 426 253 169 387 179 106 261 85 217 304 244 295 167 168 413 115 194 53 216 57 52 301 58 111 428 266 298 123 177 340 312 262 412 124 116 343 309 278 240 162 199 181 310 7 305 397 259 351 130 427 109 346 339 84 145 241 221 242 82 86 20 62 63 99 60 77 292 67 287 276 381 329 371 110 222 105 275 47 188 420 349 93 361 321 249 120 347 186 173 38 71 229 73 245 83 368 140 296 178 364 195 373 342 267 101 133 264 233 174 306 175 293 235 139 32 65 409 383 75 14 10 185 252 8 307 197 398 345 414 214 33 16 156 421 158 94 396 24 394 74 137 213 142 333 332 41 148 344 250 6 172 406 211 335 285 243 42 284 268 171 200 353 382 434 419 40 282 37 358 325 356 236 323 223 395 2 3 155 399 372 271 320 393 45 149 70 422 157 21 435 118 359 280 127 224 316 205 9 160 360 415 257 55 407 348 13 289 326 226 35 69 176 210 165 150 151 146 98 225 184 30 408 88 290 164 231 23 97 143 272 313 198 405 254 87 299 72 283 22 404 248 126 265 423 302 269 219 227 89 324 212 281 357 68 153 279 270 11 314 138 251 81 234 44 389 374 401 129 102 311 48 108 183 134 417 12 390 152 96 66 122 300 402 29 189 228 328 260 385 425 255 327 135 5 25 104 238 274 429 17 277 337 27 136 418 377 410 92 263 36 182 322 336 215 355 18 388 107 369 246 91 76 180 80 392 286 19 49 375 54 391 15 400 4 +163 50 237 114 216 151 294 234 159 230 116 413 260 113 61 1 202 215 331 78 82 218 28 70 346 93 203 272 291 348 412 147 101 56 115 220 77 295 411 259 64 239 381 414 123 131 95 26 293 208 63 258 428 338 197 40 170 192 277 407 378 120 52 187 169 154 178 334 345 141 31 351 109 242 379 326 198 308 94 430 207 34 86 332 352 121 339 128 190 275 99 350 305 360 173 362 66 90 73 359 103 130 9 321 344 177 431 374 231 424 65 67 309 420 179 57 284 195 43 373 33 377 267 415 106 143 340 288 247 137 167 168 408 144 253 375 10 298 6 361 386 261 250 235 204 297 134 156 312 363 278 356 44 55 376 79 256 75 24 384 119 367 307 300 85 182 201 125 422 301 380 185 100 276 232 118 254 315 236 435 318 71 74 354 290 368 191 161 133 257 365 84 51 302 111 20 97 283 149 162 227 370 166 92 60 240 343 140 285 245 317 39 405 287 304 349 341 41 311 210 189 211 139 310 199 425 194 244 330 16 409 127 145 3 336 421 38 172 146 406 282 104 303 158 433 313 264 241 388 403 200 329 243 432 46 196 214 160 383 175 292 281 164 105 58 319 124 296 337 224 150 27 222 333 171 323 273 372 206 47 429 397 193 42 248 306 8 37 22 268 81 347 328 226 366 174 32 7 426 427 5 262 126 252 12 289 91 62 49 217 371 45 212 265 188 251 316 299 209 223 30 266 327 2 434 325 108 335 279 53 135 385 229 83 280 153 136 68 14 233 417 320 213 353 382 238 387 165 225 13 176 249 219 184 342 142 401 221 181 423 155 314 398 357 72 29 324 88 400 410 355 69 110 205 393 98 322 271 395 102 89 17 11 364 148 416 228 418 76 21 419 117 48 270 255 157 35 87 122 152 59 369 186 138 25 183 96 23 132 112 396 180 394 80 36 358 402 389 399 269 129 404 263 19 18 391 246 274 54 107 390 4 15 286 392 +237 159 338 376 309 116 52 340 77 346 1 352 308 154 26 379 272 349 115 259 130 365 103 351 245 202 345 99 414 101 267 412 82 50 336 20 312 334 128 31 64 203 192 144 218 295 63 95 33 378 310 275 170 368 169 363 339 163 172 253 28 188 293 190 61 66 257 131 208 294 10 362 56 71 178 420 90 147 134 354 329 265 113 366 291 133 278 78 67 260 231 39 206 191 220 360 16 344 301 149 359 141 361 298 250 331 120 151 46 195 234 247 161 230 51 261 422 413 106 341 348 318 34 40 79 326 350 430 38 409 258 287 197 266 93 302 156 109 264 204 57 356 179 216 158 305 411 347 198 14 290 73 332 177 62 403 374 239 323 289 367 288 256 297 70 164 276 8 377 233 86 150 427 426 185 328 373 327 285 364 416 6 45 304 232 419 87 431 268 60 415 321 407 171 139 7 380 381 433 43 24 2 243 335 9 240 123 119 65 42 353 382 435 125 194 393 127 292 384 421 124 100 94 165 84 273 160 236 282 146 145 111 88 201 53 196 175 207 22 215 330 386 303 320 121 97 396 241 140 229 85 209 214 58 315 313 424 105 199 74 92 173 83 296 30 317 221 342 98 314 432 370 262 117 200 21 306 355 155 316 394 383 137 405 395 148 59 222 434 252 372 271 428 162 398 307 114 174 152 333 387 325 270 47 358 37 279 425 183 211 181 397 187 277 249 217 311 69 132 375 96 254 284 75 251 210 225 112 399 108 167 168 166 319 263 89 157 299 402 110 417 406 269 223 129 142 283 226 404 153 248 244 118 219 357 235 23 418 32 343 72 41 255 429 281 213 408 122 224 55 35 280 135 189 126 11 242 3 246 29 212 48 17 13 322 102 81 184 392 36 205 193 68 385 143 300 423 228 390 5 176 369 104 138 238 324 227 25 136 80 371 12 27 91 274 389 391 19 186 44 337 182 401 18 54 76 388 49 410 286 400 15 180 4 107 +207 208 331 163 78 203 367 95 103 239 237 247 242 64 82 202 193 430 216 166 1 304 113 431 318 350 308 31 220 52 412 131 141 101 273 169 112 352 206 159 93 258 376 338 170 253 384 256 190 114 154 99 339 428 295 305 192 50 63 361 57 128 309 244 348 130 201 162 204 379 106 123 124 26 196 424 94 199 51 368 20 347 187 90 144 362 66 173 340 415 315 323 411 161 177 284 294 86 119 310 165 73 370 261 100 319 420 61 115 278 116 365 433 378 298 195 354 297 250 85 70 311 71 373 218 307 164 7 320 185 405 423 56 288 67 330 312 109 329 291 227 306 409 413 363 125 232 427 172 249 238 380 408 333 407 110 133 359 346 343 360 272 9 132 262 79 65 62 403 37 267 334 386 158 301 40 8 260 34 275 120 171 254 426 75 84 197 282 252 60 184 38 394 105 422 341 303 302 194 276 53 240 416 245 45 358 317 351 235 223 111 59 313 145 356 178 179 97 231 140 366 74 10 167 168 213 191 43 160 243 230 248 399 266 209 188 156 22 41 21 39 198 349 435 6 321 46 33 259 118 233 2 397 222 283 285 211 147 234 175 98 14 241 58 425 157 383 287 226 374 137 229 432 219 200 28 335 16 225 381 417 210 143 353 382 257 292 387 293 87 414 290 121 342 421 236 77 81 44 35 280 149 277 327 406 332 27 47 345 377 72 13 126 69 314 371 117 344 205 5 221 135 89 42 12 418 263 186 364 255 369 155 398 372 419 83 299 30 300 212 146 270 375 326 264 32 174 271 357 289 142 281 402 139 36 429 48 68 29 215 153 434 322 401 385 23 393 396 24 92 279 181 148 151 104 127 268 390 88 182 96 325 55 296 18 3 134 316 265 91 355 217 228 189 214 389 176 80 102 328 224 25 150 136 138 11 395 122 108 274 251 337 183 404 324 76 49 17 410 388 129 180 269 391 152 54 246 107 392 336 286 400 4 19 15 +318 367 132 208 239 247 103 370 193 95 319 50 166 163 207 273 237 31 196 79 433 331 297 90 78 201 340 161 1 304 191 64 386 363 334 113 303 366 39 187 112 411 242 7 397 347 181 190 376 261 232 59 430 220 84 194 199 426 262 294 403 315 365 310 378 291 192 159 56 170 203 123 384 34 62 43 28 301 240 206 16 99 131 144 119 387 256 169 154 115 51 306 218 330 230 317 428 412 285 52 128 424 121 352 258 249 26 308 47 86 130 266 20 361 364 409 82 413 243 244 245 432 431 338 111 427 313 63 235 73 354 236 259 177 298 46 197 141 106 157 305 32 282 295 343 195 184 147 120 202 379 100 214 109 284 380 312 97 61 117 216 253 124 101 167 168 139 373 179 162 209 10 221 419 356 126 85 125 267 264 350 415 118 74 283 420 60 229 116 250 348 349 332 30 241 281 360 398 359 93 186 372 204 142 278 362 9 188 353 382 393 110 114 351 421 155 321 75 42 57 381 58 280 205 275 341 368 287 407 405 223 417 276 324 254 88 198 14 231 346 342 371 422 3 416 6 137 174 213 176 70 339 226 296 178 251 145 395 133 309 292 69 140 89 233 67 222 289 94 323 65 211 55 77 210 257 326 394 279 175 38 358 156 189 158 268 345 406 13 252 71 404 40 271 272 217 41 396 383 171 238 173 172 21 24 129 35 418 374 105 138 316 288 408 434 153 333 127 149 12 2 401 248 212 150 143 329 399 98 325 302 414 22 185 225 81 146 200 148 219 293 53 11 68 327 48 37 435 164 25 335 160 246 87 344 299 320 314 152 307 45 8 96 357 224 265 44 290 23 136 92 29 425 423 227 83 270 234 183 277 274 260 328 5 385 134 165 389 269 122 104 151 33 36 311 182 135 390 102 27 108 18 255 322 375 388 377 355 410 228 76 429 17 72 402 337 180 80 263 215 369 286 107 66 19 300 391 49 91 54 336 4 15 392 400 +220 356 237 201 113 239 291 350 429 295 119 187 345 31 431 368 349 64 308 99 309 331 12 159 140 67 141 26 39 422 192 344 179 82 51 203 253 120 130 352 362 430 284 310 196 348 178 169 185 131 18 71 193 109 354 173 247 66 307 170 412 202 320 256 434 190 421 298 240 191 63 305 106 42 117 367 363 207 9 78 163 393 7 407 283 409 231 95 208 258 57 177 321 16 435 128 235 32 315 360 85 330 22 312 359 204 426 221 70 411 334 103 318 47 374 90 59 300 24 167 168 153 250 56 86 326 61 30 419 161 43 164 380 424 27 427 146 313 50 370 29 142 301 406 172 288 165 303 217 386 420 218 339 157 123 68 37 226 46 1 254 144 294 416 79 351 395 112 297 373 379 341 206 21 147 166 225 266 375 304 340 317 346 329 97 241 116 171 72 232 62 10 224 195 261 263 347 48 88 335 100 323 296 93 216 287 401 14 2 413 275 290 251 25 135 343 372 199 28 405 273 327 366 248 243 365 425 20 230 23 408 383 102 415 122 110 127 118 328 333 252 160 376 378 236 267 200 121 149 353 382 162 115 244 137 403 156 433 3 83 234 38 262 158 299 214 87 361 94 111 125 242 124 154 58 129 33 219 414 384 249 257 381 73 52 388 265 428 13 410 272 74 133 84 306 227 319 105 98 311 181 278 69 222 264 188 289 276 209 281 55 155 229 213 145 197 332 394 233 268 77 45 139 150 134 184 316 75 302 114 417 5 387 81 398 342 357 44 285 238 205 41 65 175 152 260 385 148 432 101 364 246 89 132 369 280 4 314 245 338 60 392 6 271 391 198 337 186 228 418 34 423 223 397 17 104 40 399 255 355 107 96 35 194 182 126 176 402 404 371 11 358 396 180 270 259 174 277 80 108 325 377 269 215 136 49 189 183 53 400 8 282 279 92 212 292 389 36 324 91 143 322 19 54 293 211 210 76 390 151 274 15 138 336 286 +375 50 348 237 374 113 61 56 63 202 203 352 345 379 70 159 272 116 339 82 220 295 216 67 346 293 115 141 130 307 291 78 260 95 34 163 344 131 33 231 151 109 218 376 31 288 308 178 208 57 362 187 259 71 114 207 338 147 412 24 52 331 197 154 294 266 93 1 253 198 329 350 133 44 77 351 377 312 356 326 420 101 349 64 234 368 192 65 268 309 27 164 9 430 230 26 172 407 360 363 359 305 120 278 66 123 261 321 411 334 388 413 275 28 310 297 51 144 409 239 327 190 169 285 103 182 170 165 284 201 298 428 250 267 99 300 240 68 429 20 40 281 340 195 94 150 323 179 242 302 38 258 431 414 86 173 244 380 149 39 328 247 316 7 85 49 90 393 137 422 337 14 271 385 42 384 373 410 119 378 215 100 128 47 381 73 167 168 277 280 161 43 121 435 62 364 156 139 342 211 106 332 257 354 283 245 140 84 143 370 191 108 18 279 366 189 365 251 210 400 29 424 74 75 347 301 204 276 30 92 196 318 185 343 235 415 105 221 315 287 330 386 367 10 6 391 395 270 372 292 158 193 88 98 16 79 166 177 134 387 135 361 419 22 306 111 256 171 184 117 432 236 175 341 209 263 313 125 46 97 421 401 17 241 214 146 252 403 72 320 311 206 87 124 416 232 217 383 434 152 290 248 37 200 127 145 405 254 55 262 194 426 397 417 314 155 199 335 188 81 299 8 142 433 396 136 48 408 160 265 45 126 222 2 264 336 224 153 227 269 296 102 83 333 21 324 69 107 174 425 303 205 122 325 273 162 118 229 60 23 53 176 304 183 243 319 427 12 25 418 246 282 212 398 233 58 423 353 382 104 226 157 317 357 249 289 138 3 219 223 406 371 225 32 36 213 355 255 35 129 13 369 59 41 91 89 112 322 5 148 19 80 238 389 11 76 4 358 180 394 110 181 132 96 228 404 402 399 274 392 286 186 390 15 54 +56 308 50 309 329 203 202 65 170 175 376 169 159 63 293 113 237 171 163 172 231 154 379 211 64 250 210 348 115 431 253 70 46 82 359 345 360 1 239 116 248 20 266 305 291 190 39 103 178 295 57 141 422 220 338 414 430 93 98 362 130 263 144 334 78 411 352 201 147 189 71 51 192 392 426 351 123 331 339 26 275 131 109 230 346 310 258 344 14 101 412 259 52 278 267 121 86 197 138 174 208 133 340 67 34 120 31 261 298 428 218 61 312 294 297 247 173 284 161 272 119 363 198 386 216 90 342 164 95 378 356 158 301 330 354 350 326 374 100 177 73 9 85 416 114 424 421 87 94 191 420 196 349 204 323 292 99 66 413 283 129 288 244 434 387 207 193 395 137 366 307 149 240 150 117 281 321 106 341 28 62 194 384 409 318 74 84 377 79 10 315 77 124 33 16 24 302 209 419 306 165 368 380 97 299 403 140 128 53 262 276 313 232 179 176 75 279 217 195 415 167 168 142 393 40 206 187 125 252 7 335 245 234 282 268 235 370 260 285 256 188 45 361 264 68 432 435 105 185 429 55 156 381 287 43 118 364 433 257 367 249 398 385 44 60 233 81 139 427 365 332 134 151 375 358 371 37 148 328 280 42 394 112 153 373 372 200 146 303 152 88 205 145 337 111 83 92 108 319 166 58 241 327 47 38 221 157 180 22 320 160 199 17 243 143 317 212 59 405 6 347 32 30 399 236 222 343 265 407 242 155 316 357 389 397 184 271 325 290 410 270 215 369 110 383 72 219 162 311 2 254 127 8 102 353 382 396 214 21 273 401 333 76 417 314 296 96 135 227 89 36 408 304 27 324 29 289 423 251 181 126 246 418 229 35 238 18 5 122 69 402 136 41 336 223 225 277 425 355 400 132 390 104 48 269 80 406 23 300 322 183 224 213 226 255 11 91 3 182 54 274 25 49 286 13 12 404 228 388 186 19 391 107 4 15 +407 237 95 207 244 324 360 397 359 74 31 75 141 203 350 159 64 331 163 362 239 349 39 195 291 9 334 212 352 208 71 216 295 202 253 131 137 247 288 192 220 345 1 190 63 116 218 170 114 169 113 412 178 67 103 305 57 78 312 367 308 422 368 46 16 297 201 28 130 294 309 330 26 354 376 24 196 70 384 161 411 344 431 197 346 153 164 261 318 123 61 90 298 187 266 268 191 420 374 430 133 413 82 250 119 115 240 338 144 379 166 221 93 415 50 120 73 154 109 370 278 121 258 351 140 321 198 51 177 373 52 386 264 97 267 421 272 20 165 99 293 429 340 100 66 79 124 306 56 77 365 34 414 395 435 68 86 271 230 231 310 275 242 284 256 60 211 175 299 316 307 348 40 281 252 188 162 433 101 47 210 378 326 301 428 43 232 398 260 416 6 44 276 356 375 106 329 280 259 363 173 7 65 245 128 112 193 292 185 319 59 385 233 234 270 323 287 85 118 206 45 172 117 147 149 248 189 381 304 184 235 328 257 171 62 167 168 361 320 214 434 209 353 382 427 134 341 251 111 408 424 55 296 383 33 139 343 366 179 38 254 199 262 84 37 194 377 405 303 142 17 69 339 72 182 283 87 347 432 10 151 53 29 426 388 150 249 127 337 317 236 263 371 22 98 204 285 217 380 222 403 273 102 160 313 332 94 155 156 14 290 42 215 174 126 409 83 279 36 335 333 315 30 243 205 282 387 200 158 342 394 401 225 125 145 19 2 32 311 265 300 419 105 129 393 325 241 314 108 213 11 21 148 364 27 146 8 88 417 49 122 219 372 132 238 336 327 226 23 41 357 13 76 322 358 229 302 425 157 176 110 399 224 89 143 35 135 152 5 223 269 48 58 136 410 418 274 181 355 183 289 396 389 228 400 81 423 80 12 92 406 96 227 180 402 277 25 3 404 369 390 138 186 255 391 18 107 15 4 54 104 392 246 286 91 +331 315 430 203 165 154 202 163 141 39 379 52 51 220 259 101 187 82 412 222 310 50 338 237 144 63 1 113 93 161 295 128 384 119 159 352 64 99 103 67 130 231 386 190 116 297 258 305 376 31 227 405 380 318 26 169 247 334 192 226 201 56 170 312 423 95 225 409 239 204 35 90 223 288 256 261 53 419 362 393 291 94 117 164 298 359 254 197 124 106 123 216 109 131 179 242 250 133 360 425 7 208 363 411 115 62 361 397 241 147 339 365 213 340 350 367 121 302 13 257 61 218 272 343 84 78 320 342 348 378 79 276 341 20 267 207 57 253 230 311 373 70 198 427 349 191 244 293 366 329 403 114 322 195 275 265 368 308 229 278 217 236 177 281 266 73 346 188 196 206 323 351 86 356 125 415 357 34 232 332 184 381 235 431 406 88 433 364 181 435 284 111 413 219 28 317 85 387 395 306 262 12 97 414 43 345 23 155 156 137 183 321 112 417 408 5 428 221 233 301 294 100 151 416 309 175 24 211 330 8 347 422 200 354 396 389 77 136 264 209 134 245 58 370 166 238 319 313 9 240 210 214 424 279 60 249 282 173 270 46 118 74 146 228 178 304 344 394 372 30 194 271 193 333 199 421 273 432 104 162 268 420 139 401 303 75 89 418 426 205 280 69 186 299 143 290 234 71 14 371 29 120 66 10 185 292 42 374 174 145 243 189 160 150 126 33 224 16 324 285 140 316 105 314 158 326 283 377 47 260 132 27 37 176 110 152 358 3 172 6 59 40 55 277 167 168 157 287 171 325 398 87 252 149 335 296 65 22 399 38 45 17 72 135 127 248 407 142 18 212 434 108 98 68 83 289 92 32 251 328 91 255 81 383 48 96 269 122 2 353 382 327 36 375 15 148 307 21 385 300 215 246 19 41 429 182 54 102 336 25 153 286 138 107 404 11 390 129 76 4 44 355 369 410 274 392 402 337 263 388 400 180 80 391 49 +70 31 63 50 116 237 197 1 101 334 242 365 113 198 411 78 259 163 291 207 93 348 338 281 147 202 239 82 203 360 95 115 66 359 220 331 123 187 56 130 298 310 64 235 154 230 386 430 295 151 340 349 131 231 250 20 139 217 144 133 61 14 405 377 297 282 234 52 268 121 356 261 39 189 161 272 368 312 347 412 374 256 184 345 332 257 253 367 373 376 279 407 208 159 218 10 346 94 318 90 28 114 201 141 363 361 306 108 62 364 16 350 266 79 305 47 192 339 383 375 293 384 167 168 326 341 195 26 422 276 260 244 280 169 301 9 71 73 190 343 193 351 196 170 166 278 162 97 191 352 128 311 77 308 37 416 7 393 398 254 127 240 323 200 290 99 313 57 117 258 425 344 6 100 30 409 103 267 421 152 222 271 172 209 12 216 227 126 362 86 264 292 65 435 119 53 296 270 420 221 199 304 183 138 206 69 134 232 34 414 315 176 2 40 215 48 381 330 275 288 92 247 309 179 182 241 185 109 24 389 333 380 43 424 294 174 124 27 379 395 413 284 3 431 307 387 432 67 265 21 303 149 156 417 111 428 175 118 415 319 136 85 155 287 406 366 45 51 122 178 262 378 236 158 87 321 342 226 125 372 402 22 38 388 13 329 205 370 327 213 397 105 194 150 143 233 358 273 145 55 84 44 269 137 317 252 403 88 225 243 181 418 434 142 214 110 188 322 427 106 224 46 33 302 314 164 316 59 353 382 98 68 385 177 371 324 25 401 277 249 146 426 36 135 285 419 399 42 153 357 140 112 325 204 60 263 211 96 76 433 289 11 328 132 223 210 160 212 283 245 354 49 148 120 83 74 320 58 229 165 410 173 23 8 335 32 394 228 5 299 246 29 355 251 396 186 17 238 390 404 255 75 171 4 129 286 336 429 91 80 408 18 157 248 104 337 107 369 81 89 391 15 102 274 219 72 392 35 400 19 423 300 54 41 180 +308 203 163 113 141 315 165 202 39 356 376 309 159 253 350 331 411 31 178 64 220 1 237 422 164 169 170 82 362 187 295 431 421 192 128 67 291 250 63 329 207 95 78 288 284 239 56 50 297 130 305 412 348 51 275 93 62 258 374 201 154 120 121 334 116 429 172 266 99 352 26 94 261 131 119 300 379 328 310 339 375 103 123 283 302 430 179 409 109 144 307 71 204 435 428 294 52 70 252 424 265 14 133 190 344 147 185 298 420 341 173 244 364 61 259 111 230 312 158 247 23 345 262 106 330 66 101 240 57 117 318 363 264 218 161 177 24 208 7 17 46 84 346 90 366 306 426 386 9 88 299 216 85 34 434 86 323 16 115 145 124 65 125 79 42 378 342 114 209 427 171 276 278 373 343 338 153 419 231 263 140 320 285 349 196 257 317 351 354 361 272 214 393 197 365 167 168 235 73 326 112 403 236 380 416 206 222 184 251 367 321 340 256 280 371 97 229 360 28 359 413 383 267 397 195 29 191 395 200 188 77 43 175 368 337 205 102 401 38 55 98 18 233 35 135 58 151 53 223 162 37 245 12 407 281 60 27 301 20 198 226 433 314 384 30 225 243 48 242 33 81 293 75 193 217 19 211 387 268 415 372 425 183 47 25 134 156 248 146 414 232 69 249 370 22 410 155 181 221 304 160 8 150 174 271 105 74 417 100 287 210 303 381 385 241 194 149 355 254 157 40 313 282 137 408 139 136 127 176 110 126 189 347 319 432 142 405 166 227 13 389 423 215 279 311 296 273 72 327 10 89 333 182 213 388 143 199 418 270 83 396 36 59 44 289 129 108 325 118 292 369 219 68 357 180 32 377 87 21 238 224 92 353 382 234 322 406 394 316 3 186 269 2 260 290 391 332 122 80 45 49 6 152 277 76 335 324 358 11 228 132 399 392 5 398 96 246 148 104 138 404 400 212 336 41 15 402 255 107 274 286 4 54 390 91 +231 220 237 39 411 266 51 356 50 310 109 253 159 67 100 230 163 64 301 208 78 31 93 63 140 82 147 1 348 131 250 306 103 331 362 201 130 56 295 154 395 247 144 113 352 114 95 196 167 168 297 430 42 203 133 379 294 202 291 339 239 7 363 393 318 384 412 275 376 190 368 305 207 141 115 90 261 433 52 235 55 422 256 216 413 192 70 169 403 209 20 177 298 116 334 170 431 372 416 330 26 112 94 123 57 86 419 359 319 232 367 360 14 158 166 161 288 347 267 242 179 99 36 34 349 278 420 79 124 62 308 257 142 185 32 73 206 312 377 268 119 234 24 351 260 365 340 434 197 258 191 29 217 435 71 97 374 125 43 128 332 111 366 386 338 30 47 394 354 326 187 165 10 33 262 85 313 397 46 432 53 218 358 361 373 84 370 364 321 421 61 252 345 137 293 120 303 117 346 240 414 151 380 172 204 315 265 199 272 74 9 83 398 415 101 371 281 428 132 276 87 6 383 164 152 198 329 106 399 175 350 221 200 195 45 259 12 38 264 309 233 75 381 285 378 66 341 245 157 299 344 194 211 16 316 271 405 426 342 284 121 145 396 323 37 162 28 178 105 280 77 146 424 249 387 65 292 409 184 427 287 2 59 68 40 407 139 8 236 210 317 188 273 193 320 343 307 304 173 156 41 417 243 174 282 241 251 58 283 375 302 171 21 244 325 357 22 327 212 186 215 134 189 176 279 3 69 118 143 148 135 72 214 60 149 205 248 270 127 404 160 335 406 44 254 385 181 150 126 290 296 353 382 401 418 96 108 425 224 390 155 27 269 110 277 17 102 423 324 246 429 92 182 98 138 311 402 238 88 18 222 328 333 122 226 314 337 408 89 81 104 129 389 153 255 289 5 300 219 107 11 388 227 263 336 136 35 80 213 48 49 76 410 355 225 183 322 229 91 392 13 274 23 25 223 54 369 391 19 4 400 286 228 180 15 +310 231 67 237 411 7 51 113 356 220 109 393 395 29 20 230 256 294 93 39 266 306 159 235 291 82 31 30 275 253 419 64 412 50 295 152 301 70 331 201 63 348 413 313 250 119 365 130 420 422 116 144 334 99 12 374 140 190 360 415 123 257 359 78 147 312 94 297 383 352 185 74 339 45 246 430 97 169 14 55 197 158 87 167 168 142 86 384 203 216 170 417 320 239 240 202 32 9 379 36 372 66 179 363 281 284 1 198 326 120 154 265 362 71 208 305 2 165 261 75 192 434 90 418 380 288 260 100 368 196 10 349 43 37 128 351 40 394 85 262 21 234 373 421 114 34 431 163 267 115 435 347 377 345 311 323 375 272 6 398 42 103 207 195 106 161 315 141 232 298 101 283 177 52 321 318 133 62 206 16 56 47 187 233 146 399 175 247 72 26 414 137 95 131 407 236 308 416 327 24 41 386 111 358 278 354 340 65 184 335 259 84 162 376 279 129 299 427 364 112 157 329 191 366 409 242 254 367 209 344 361 280 241 397 293 117 405 57 381 79 164 173 342 378 343 174 178 217 38 290 245 22 426 135 73 346 424 46 428 341 332 124 204 156 68 433 402 28 302 249 18 292 193 429 166 105 226 350 432 317 258 264 77 194 92 27 151 33 252 188 199 268 214 248 225 307 255 212 149 309 287 61 215 224 125 155 218 17 172 276 319 98 96 136 69 139 251 282 425 333 176 221 238 385 371 390 59 76 406 222 58 408 127 387 143 330 80 338 3 145 303 153 8 244 314 150 134 108 44 219 11 183 121 189 271 243 357 227 396 211 328 370 5 296 89 324 83 401 205 171 285 223 213 53 210 304 423 126 13 273 270 200 102 353 382 316 186 122 403 148 337 181 81 322 60 88 132 277 4 300 392 389 118 289 35 229 410 182 138 325 48 355 110 160 25 263 286 269 404 107 228 23 388 19 391 369 274 104 400 336 54 49 15 91 180 +203 202 237 82 154 331 39 50 379 220 113 207 163 31 165 1 63 144 52 315 310 430 67 411 64 116 101 141 409 259 412 312 159 26 208 93 187 231 78 393 147 295 302 128 352 51 239 130 294 305 419 376 201 338 133 250 123 349 95 70 179 192 164 99 103 109 363 247 291 119 356 258 256 318 94 334 257 253 348 20 121 362 229 384 329 275 340 216 364 161 124 351 56 197 306 190 261 293 346 62 84 266 53 297 136 90 214 7 417 386 361 368 106 230 288 285 367 342 268 244 206 298 79 169 204 131 308 88 218 170 240 191 195 339 431 114 330 198 66 61 236 30 420 403 242 378 155 97 350 86 232 85 77 415 117 284 69 428 125 115 366 372 267 223 301 196 427 146 360 222 271 43 413 418 57 111 100 395 359 278 162 265 272 151 422 397 365 183 281 112 373 14 35 343 188 193 235 319 73 332 433 313 200 46 209 317 37 303 405 262 254 380 156 34 276 28 264 194 314 341 23 224 414 273 245 105 185 233 177 178 184 345 381 221 374 426 65 234 270 406 309 282 357 60 205 354 199 167 168 29 421 158 181 145 323 333 347 58 416 435 279 217 134 320 241 225 283 344 135 394 249 377 152 9 243 280 396 10 175 74 89 387 71 120 172 24 40 371 160 321 227 42 326 166 425 16 140 189 226 110 260 424 139 292 3 370 36 33 72 75 304 299 118 398 38 137 127 307 432 213 157 358 290 55 407 87 6 173 375 174 47 104 44 27 211 389 289 68 2 32 269 252 399 423 17 150 401 246 12 45 149 287 186 316 434 21 132 8 296 251 335 210 238 143 59 311 142 353 382 325 219 171 176 324 322 92 83 13 383 48 96 277 408 410 98 22 182 215 429 248 108 212 18 327 81 129 402 91 328 25 126 385 355 404 300 228 388 255 107 122 153 5 41 390 148 337 274 138 49 286 392 11 76 263 102 369 19 336 54 15 391 400 80 180 4 +259 133 331 237 187 334 116 159 346 1 340 349 40 70 85 290 163 10 82 154 250 378 93 414 123 350 247 332 192 359 360 244 351 298 64 216 183 333 77 428 86 354 295 312 63 113 61 275 101 281 31 203 130 79 191 115 169 202 174 170 279 294 201 317 338 190 156 297 99 430 73 293 376 94 65 90 348 380 261 175 306 161 412 308 197 52 239 28 342 258 39 267 141 240 232 413 411 301 256 220 131 291 305 83 78 95 125 289 386 352 330 14 189 272 208 309 379 292 329 304 198 16 432 9 343 266 345 128 119 100 387 241 207 288 335 164 200 103 253 303 257 326 214 46 204 57 60 373 67 361 311 127 282 195 403 384 366 284 53 365 245 318 147 194 56 199 26 20 431 51 381 176 104 315 233 145 424 262 425 296 420 179 50 165 177 188 302 117 38 243 185 254 62 138 45 235 71 230 178 283 356 231 66 106 139 377 344 196 314 278 5 218 146 149 134 59 363 433 92 37 327 184 88 339 357 118 422 287 171 96 367 105 236 321 341 319 407 58 209 353 382 234 43 276 222 402 172 426 173 140 151 205 144 84 260 398 347 435 415 32 362 121 401 427 87 98 126 371 97 22 206 2 112 227 181 249 150 114 223 110 12 374 307 280 320 364 268 310 368 27 41 36 155 6 313 109 13 81 124 120 336 42 226 405 322 21 358 108 370 30 47 69 242 157 229 393 372 34 273 72 211 263 213 167 168 48 7 137 399 316 419 277 76 264 148 416 74 33 160 225 286 238 228 210 166 162 270 409 3 423 355 24 421 271 219 255 132 300 375 328 91 221 429 406 248 299 394 252 323 68 285 158 397 111 89 25 215 135 75 417 136 408 224 389 193 390 153 383 217 404 8 186 396 143 400 269 265 142 54 122 388 11 369 152 434 55 418 18 395 29 182 102 180 251 324 80 23 325 212 35 385 410 44 337 17 129 49 391 246 392 107 15 19 4 274 +67 163 203 63 231 202 50 294 159 109 113 1 82 393 412 128 305 379 103 207 409 136 338 348 310 70 430 237 192 297 220 411 29 419 24 130 131 362 363 291 154 285 51 147 144 20 230 93 376 141 133 56 39 95 78 352 384 395 302 365 86 315 415 101 345 7 349 398 331 295 256 31 356 197 265 261 189 417 190 114 276 253 208 9 278 69 134 324 240 152 312 52 334 123 195 99 173 250 26 165 281 267 330 214 247 371 368 264 275 64 121 259 119 313 235 198 397 373 151 187 34 266 282 318 97 57 420 135 73 218 279 431 418 242 401 196 30 251 201 90 178 367 257 351 85 413 258 164 428 416 329 268 87 116 306 344 342 161 301 386 293 359 288 284 360 94 234 44 62 272 155 75 346 339 188 422 239 410 236 74 79 206 16 216 347 406 340 217 205 112 137 115 71 364 308 106 53 394 377 45 117 341 176 111 372 68 100 169 61 170 10 396 43 140 191 23 193 14 407 124 414 405 18 370 84 55 183 314 321 77 366 118 98 323 361 66 37 46 319 229 174 8 298 232 307 271 283 325 88 184 378 326 215 162 125 358 374 350 421 177 262 120 332 246 209 60 433 200 76 221 244 212 403 166 143 427 435 48 158 328 292 260 399 28 434 83 167 168 280 105 424 387 223 181 254 6 309 252 160 243 172 204 129 194 47 175 27 245 33 35 199 211 375 385 179 65 210 426 2 408 186 303 182 248 300 156 354 38 132 81 107 320 21 380 311 357 336 273 157 12 42 222 96 25 286 145 343 139 304 89 429 17 146 400 270 72 241 224 277 233 389 335 390 92 383 225 36 269 40 59 381 142 322 317 299 255 11 227 353 382 226 423 355 274 22 333 425 432 149 58 80 108 404 148 388 185 249 153 287 150 402 219 13 171 3 32 238 289 213 110 4 392 138 327 126 316 290 369 102 122 296 127 41 228 49 337 263 180 5 104 391 15 91 19 54 +141 159 362 147 294 67 352 31 203 192 237 50 202 288 63 266 379 374 220 24 253 26 7 178 78 82 345 163 230 61 103 39 114 368 44 64 207 365 383 411 109 330 325 51 95 312 334 34 416 247 56 164 205 350 20 285 375 261 356 305 151 297 329 420 412 308 212 413 1 167 168 268 153 346 123 154 116 218 231 14 121 6 111 319 393 331 190 161 291 435 165 430 137 409 201 363 17 347 130 410 84 309 267 158 429 295 169 16 28 170 57 338 131 344 66 77 119 216 200 83 177 9 239 99 29 422 310 113 299 407 144 366 351 195 90 71 43 221 376 252 258 217 419 208 313 408 140 431 244 70 128 52 397 328 373 415 386 324 11 271 434 293 240 341 272 133 101 162 2 259 250 117 38 160 298 370 85 86 316 315 280 421 47 22 342 55 426 65 275 179 209 251 115 214 45 302 62 172 191 79 348 93 87 10 381 306 173 187 395 384 354 106 349 199 33 196 30 340 284 256 318 364 188 371 235 372 403 204 405 248 339 414 135 303 278 75 197 232 155 42 74 100 60 152 367 145 300 139 307 185 274 323 19 206 224 143 394 23 260 385 102 283 73 21 125 424 175 105 401 326 276 360 257 270 301 359 46 264 183 378 432 176 146 97 69 193 433 290 321 174 361 428 166 317 399 27 262 37 88 150 189 265 134 149 427 18 236 281 41 273 112 120 314 333 229 398 337 198 3 36 215 94 68 53 402 380 234 171 35 343 245 327 8 80 358 377 124 292 156 417 387 320 98 269 184 279 242 142 211 233 136 304 277 194 118 332 406 255 129 210 254 122 287 335 223 72 246 58 59 222 48 400 132 311 388 110 355 243 89 157 225 396 390 40 263 353 382 107 25 226 12 357 418 336 108 282 32 4 182 249 296 126 181 138 289 241 322 127 227 425 81 96 389 76 186 148 219 13 49 423 228 92 213 104 238 369 5 404 391 54 392 91 286 180 15 +310 51 356 67 220 231 39 109 419 430 291 119 331 395 237 165 253 393 12 7 201 315 99 190 29 256 113 64 185 130 411 321 131 30 187 97 295 434 427 284 159 247 306 305 235 313 141 1 117 222 298 192 164 354 147 203 82 116 57 20 363 157 421 179 405 42 144 297 266 106 47 163 283 152 380 334 350 86 9 236 240 202 169 161 352 362 239 318 177 170 312 288 52 374 246 359 68 140 360 204 372 422 307 323 26 379 216 90 428 196 142 191 311 387 320 115 88 120 345 104 218 357 261 423 24 258 367 301 208 78 72 79 56 376 252 230 348 401 31 344 73 154 414 209 409 425 34 233 339 102 85 433 241 420 308 95 223 264 124 43 368 35 89 232 93 197 128 156 285 65 125 406 225 63 173 431 158 226 375 178 146 254 221 238 361 335 349 257 71 114 18 28 94 198 27 38 322 249 206 413 381 378 45 275 32 44 243 384 50 217 429 412 332 61 195 309 103 84 62 259 182 227 33 385 343 250 55 276 365 133 101 245 394 87 408 342 46 265 111 91 181 407 112 123 302 175 403 366 143 262 346 329 100 340 373 347 278 74 213 383 150 267 127 364 392 426 5 207 66 59 294 296 435 107 417 14 105 370 69 341 304 234 219 273 193 415 272 244 54 351 110 303 432 330 22 10 70 416 49 398 289 167 168 300 194 36 135 280 139 299 108 317 214 145 268 75 200 37 174 326 386 424 13 418 371 271 287 121 293 397 172 199 188 410 149 137 58 136 53 60 151 242 2 211 16 176 171 122 338 388 377 126 21 260 282 319 129 270 40 255 118 25 224 166 358 153 314 155 162 290 210 396 389 316 399 229 337 353 382 251 212 228 160 77 184 41 17 148 333 324 281 355 328 8 81 11 3 292 83 48 327 6 183 23 189 248 205 134 404 186 132 277 4 15 279 96 19 98 400 215 138 269 402 390 92 391 369 263 180 325 76 80 274 336 286 +419 393 246 152 67 310 236 51 313 97 30 99 109 7 106 86 427 305 202 119 203 430 323 50 129 220 141 363 231 63 294 190 29 159 230 315 147 395 362 165 89 256 365 288 291 103 144 1 43 311 20 223 34 356 113 285 237 345 154 85 192 240 82 52 247 331 163 415 412 115 128 178 84 70 297 405 253 379 39 266 338 284 409 179 283 411 434 157 250 187 64 95 78 44 376 235 218 204 123 413 35 90 93 136 255 173 170 275 334 267 161 9 278 87 423 225 201 208 254 169 164 264 420 158 320 322 176 222 295 207 386 191 272 344 366 258 308 380 352 177 259 130 346 28 238 351 88 342 279 318 301 135 417 134 133 212 131 261 367 378 216 56 71 77 312 330 120 62 354 206 174 348 224 306 188 26 101 79 307 347 364 57 339 302 381 61 309 94 142 410 298 112 268 116 234 418 398 406 414 401 228 24 374 227 46 83 137 195 292 429 371 196 12 72 172 394 349 210 276 329 368 239 370 140 121 426 335 45 74 384 102 211 214 151 143 408 328 73 340 75 226 10 372 431 407 357 47 293 422 16 265 319 193 55 271 282 252 124 146 324 416 321 15 98 32 233 281 183 114 189 241 421 232 197 397 433 243 435 153 341 65 194 213 350 273 257 18 14 92 31 139 199 104 117 219 209 33 13 182 244 262 69 245 25 105 60 111 155 396 403 175 6 359 260 58 229 387 332 424 280 171 5 428 3 360 48 373 36 358 68 217 326 185 251 40 242 91 432 167 168 198 353 382 303 41 186 375 42 100 126 22 248 38 316 149 200 125 317 53 160 17 118 361 37 399 156 150 221 81 181 314 145 66 138 270 343 2 425 132 205 289 8 148 274 299 392 21 59 215 249 287 269 76 23 388 96 80 108 290 184 27 385 11 383 54 304 162 286 377 263 333 389 391 390 300 327 110 49 296 166 337 127 277 325 180 404 355 402 4 400 107 336 122 19 369 +407 207 397 360 324 359 31 95 239 244 291 349 237 163 74 75 159 9 212 295 71 195 131 331 334 64 253 141 137 216 352 203 412 197 350 78 170 294 113 169 362 190 220 103 202 208 63 247 422 187 367 192 1 16 218 116 431 221 67 376 368 250 198 114 415 297 39 338 26 28 345 318 411 133 90 161 57 413 201 196 305 130 70 268 370 374 154 308 46 52 20 191 115 430 120 261 166 288 242 385 97 284 309 340 231 61 93 330 260 178 119 266 293 123 326 306 82 101 24 316 346 73 384 144 240 386 259 267 420 375 312 164 258 398 348 276 298 230 356 234 121 193 354 319 421 321 344 248 264 278 99 365 323 395 310 271 124 40 50 351 281 252 329 140 34 56 378 7 43 153 77 373 177 232 79 45 379 435 128 272 270 299 109 189 256 100 172 210 328 68 51 65 301 165 405 236 235 211 433 112 245 414 106 55 206 233 6 117 147 118 254 175 283 47 275 66 287 434 304 361 353 382 87 59 381 188 36 426 185 149 199 428 251 86 429 173 408 62 194 209 214 347 363 139 383 171 142 303 427 60 292 320 29 280 424 263 84 162 184 332 366 388 282 14 10 377 160 262 44 394 134 273 182 296 341 307 313 315 257 243 249 126 343 111 33 285 217 279 27 403 17 401 167 168 417 387 416 150 21 94 132 151 339 393 409 127 2 358 222 156 342 69 72 22 83 179 98 37 290 419 215 327 30 371 158 42 265 155 204 108 372 8 225 205 148 200 174 432 85 380 11 53 317 399 333 418 238 129 88 145 122 337 143 38 322 357 125 219 241 300 19 335 105 110 226 35 213 89 76 176 102 32 325 311 396 146 269 277 81 80 23 314 13 400 181 223 18 364 48 425 49 12 157 41 135 224 336 96 180 423 227 138 410 406 402 274 389 355 5 302 229 183 289 228 390 369 58 136 3 404 152 92 186 255 4 107 25 392 246 391 54 104 286 91 15 +82 379 203 237 312 202 409 331 67 220 302 154 231 51 109 412 419 63 50 165 315 305 430 144 39 259 256 310 99 101 136 52 31 119 163 229 201 128 417 116 64 1 113 352 363 187 393 356 295 285 159 130 179 338 133 26 141 214 349 411 155 147 88 103 164 415 418 86 190 346 7 70 97 318 183 192 85 351 362 208 314 239 267 123 197 247 240 261 30 106 236 342 35 161 253 78 29 266 250 131 216 79 135 340 365 306 207 329 291 384 90 313 293 258 275 84 53 69 372 348 223 297 93 403 20 124 294 198 196 301 206 427 364 254 218 244 284 257 235 95 169 380 395 146 151 366 230 288 222 170 334 121 191 56 115 62 298 73 281 373 204 376 117 378 125 431 368 428 361 152 360 420 43 386 100 359 66 405 61 276 112 241 339 323 367 234 177 111 232 433 422 46 272 12 308 350 320 37 77 23 209 268 425 175 181 114 242 34 200 157 14 156 28 162 184 89 94 303 140 283 105 387 185 317 226 278 24 354 243 227 245 224 414 225 262 330 397 377 282 265 343 345 357 381 233 195 158 65 421 413 271 264 9 189 173 321 47 16 292 279 426 42 221 205 120 72 57 341 347 374 178 194 213 322 174 68 311 280 74 145 137 188 370 193 344 249 167 168 142 217 435 238 416 423 319 199 273 299 396 434 10 32 104 270 333 332 3 60 172 139 134 38 36 127 309 424 335 58 325 246 33 260 176 132 40 143 75 432 110 324 252 290 304 71 407 394 219 13 149 251 59 186 150 6 371 55 406 326 166 307 160 296 289 211 87 287 118 129 45 389 398 210 316 83 277 126 212 27 2 383 17 5 22 385 255 248 408 96 358 21 171 353 382 375 269 228 44 98 108 404 8 429 399 91 81 401 300 355 18 215 41 327 402 328 182 148 54 102 153 76 15 107 122 48 11 92 25 369 410 286 274 138 337 336 388 390 263 80 19 392 49 400 4 391 180 +329 56 65 203 220 64 431 308 237 266 202 63 309 376 113 295 39 379 159 50 424 141 31 312 291 392 350 82 103 293 175 26 362 352 422 348 57 67 147 253 284 411 230 420 239 185 305 116 374 119 164 315 261 250 130 71 192 163 310 363 99 346 131 356 169 170 178 409 331 240 190 172 283 426 275 14 1 144 430 154 208 231 207 149 78 416 20 354 345 173 70 201 51 395 120 267 161 24 109 158 85 294 349 248 323 121 174 46 412 7 191 368 421 165 18 262 247 330 339 211 61 9 93 95 298 288 150 66 334 101 285 258 117 216 259 106 188 344 86 307 176 123 306 115 375 90 351 302 256 434 365 366 171 179 210 43 72 177 112 414 278 30 45 209 218 111 393 321 280 27 128 52 167 168 187 157 16 204 340 140 403 94 297 244 97 133 134 263 189 206 88 34 84 73 196 299 318 138 87 385 338 200 383 217 221 394 77 380 413 314 125 81 287 55 37 313 22 301 197 42 272 378 406 419 428 292 79 300 427 28 410 33 156 160 235 369 401 335 360 343 342 373 320 47 184 98 232 364 429 381 152 2 146 328 407 359 100 194 180 139 260 10 276 398 198 62 38 264 162 155 249 341 137 68 303 372 214 252 124 102 135 105 435 361 415 205 281 384 367 36 23 370 145 193 29 371 118 432 245 60 142 83 377 417 17 114 143 357 199 386 224 332 405 387 44 347 233 243 257 402 21 241 6 353 382 279 358 108 290 304 40 399 183 127 251 122 229 195 53 69 153 166 129 148 296 234 319 433 151 265 317 110 222 418 246 242 327 236 268 311 326 136 92 273 282 48 59 96 74 76 3 58 212 289 400 355 4 25 397 32 333 225 12 126 89 325 107 35 254 54 227 238 8 316 396 80 423 390 75 182 11 104 226 215 223 41 425 277 219 337 389 181 322 132 271 408 255 388 91 19 49 336 270 13 213 5 404 391 324 228 286 186 269 274 15 +388 49 113 182 56 47 50 57 291 38 307 429 178 391 385 295 120 9 31 68 374 203 44 42 34 331 207 24 237 410 64 321 352 95 337 187 164 239 163 78 141 220 422 201 411 375 334 185 348 1 153 48 247 253 159 192 368 39 363 102 266 161 339 131 122 67 362 202 150 356 421 149 22 90 278 123 354 350 218 430 345 373 294 216 128 27 111 177 33 165 61 190 298 318 240 99 407 121 344 383 16 18 315 71 401 117 130 376 119 25 305 393 7 93 379 300 346 288 261 26 310 139 46 208 367 268 287 51 115 88 169 349 387 82 85 262 409 63 170 301 330 147 70 196 370 230 221 167 168 17 107 114 30 412 79 144 271 127 94 20 306 109 397 258 419 162 125 252 420 312 308 86 37 323 329 133 14 28 413 297 6 244 285 250 341 435 251 259 264 270 309 154 206 256 188 195 431 73 242 52 11 77 106 116 319 108 204 272 267 66 137 386 325 304 320 214 103 84 427 231 428 424 209 145 403 434 166 232 343 217 158 105 276 257 97 112 303 191 100 366 361 10 235 365 273 296 193 236 140 176 243 60 194 384 281 280 327 74 65 340 432 189 265 199 175 200 197 157 378 364 205 233 313 426 101 333 299 290 62 29 433 269 377 326 75 395 293 380 124 317 148 245 347 342 275 328 69 324 394 360 415 126 284 316 143 179 173 45 43 181 381 414 155 151 359 248 416 234 223 249 59 118 372 55 198 8 353 382 172 338 171 396 2 212 274 398 110 53 152 226 23 142 215 289 260 241 358 96 12 174 229 184 32 87 417 225 58 83 156 132 389 351 302 21 314 408 357 222 254 283 399 160 371 36 129 238 425 211 332 135 263 41 89 210 418 405 183 219 72 400 277 13 402 40 92 279 246 282 35 4 136 227 404 186 311 335 292 80 355 213 423 138 19 76 390 81 369 255 146 134 3 322 228 336 406 5 180 98 54 104 224 392 286 91 15 +50 70 63 259 147 197 237 1 31 78 198 139 411 272 116 386 349 346 113 93 193 61 134 133 334 338 159 365 101 239 202 291 221 351 242 294 281 187 340 360 377 151 95 131 77 203 14 359 345 64 108 123 163 298 56 130 230 103 412 297 82 253 348 207 34 376 356 141 150 405 170 217 409 234 128 430 288 367 261 308 374 7 220 169 310 154 172 393 282 114 414 9 109 313 20 201 247 295 331 218 309 293 52 28 144 79 94 368 115 149 352 420 26 306 161 379 383 362 192 363 136 196 384 231 90 279 167 168 184 138 73 417 422 33 235 301 329 350 208 318 16 267 117 413 62 121 344 339 30 99 179 305 92 258 312 152 232 315 260 375 407 381 190 67 275 10 276 51 370 6 43 86 354 65 428 361 284 55 415 347 326 434 236 194 189 280 246 66 343 304 84 332 250 292 387 119 39 398 126 328 176 373 183 57 364 419 199 224 278 421 191 205 426 302 164 366 287 188 327 69 277 97 71 431 166 240 273 266 178 424 314 27 174 143 256 125 378 418 268 330 3 195 171 118 402 140 100 155 341 385 142 40 215 206 185 227 307 209 175 156 216 111 2 44 88 87 252 323 46 316 435 158 204 127 45 135 264 355 397 211 254 146 76 358 85 290 262 303 395 283 233 319 177 333 406 47 342 353 382 165 285 214 321 162 265 210 296 105 223 229 311 22 38 160 403 317 120 243 21 433 270 124 106 12 11 245 432 325 244 212 271 255 410 24 145 36 401 132 425 429 336 399 289 372 80 8 257 181 153 122 263 17 37 137 416 222 200 394 98 427 53 96 32 396 186 249 58 68 226 173 60 357 59 18 251 23 225 324 83 182 29 104 380 129 48 81 110 148 42 248 388 269 274 112 322 389 390 335 157 74 337 320 408 400 13 241 299 25 213 75 89 371 238 102 91 228 72 404 391 41 5 286 219 19 49 35 369 4 107 300 392 54 423 15 180 +308 50 428 116 309 272 386 56 376 123 93 346 359 360 170 169 348 340 198 282 197 1 345 94 293 133 70 178 163 82 294 237 172 334 203 211 202 46 378 171 175 411 210 354 63 159 113 190 120 253 115 275 331 344 352 263 65 128 77 351 414 422 92 295 62 98 248 329 230 20 114 239 430 158 78 14 247 339 338 258 147 201 192 151 194 431 64 86 218 278 349 134 413 103 154 141 305 297 426 28 161 33 356 40 328 139 379 90 387 291 31 350 424 412 421 138 130 341 100 232 429 332 250 144 261 99 220 259 362 358 34 121 318 298 61 149 268 288 119 150 310 57 95 266 16 374 85 355 131 101 167 168 279 337 71 177 315 215 45 302 26 9 216 87 317 245 420 106 353 382 79 244 189 187 330 196 252 361 10 398 240 264 39 377 271 301 235 38 44 156 73 204 262 370 434 364 102 323 419 321 394 399 316 366 52 312 231 173 284 84 381 193 125 435 126 407 368 111 409 217 140 58 199 307 267 51 363 313 109 287 208 433 335 55 292 243 43 74 105 234 195 233 7 403 371 174 191 179 129 280 24 118 117 176 327 393 257 108 343 83 137 265 236 75 333 304 60 373 145 427 285 180 185 66 367 319 270 281 67 47 88 256 397 306 283 21 162 72 246 97 188 207 59 30 432 395 269 375 110 303 416 402 390 206 41 389 184 273 127 209 124 153 42 276 22 342 372 214 410 2 164 290 326 221 357 81 166 76 142 415 96 223 249 104 408 53 6 37 299 148 296 251 347 48 380 336 289 205 254 183 383 396 160 25 200 181 222 229 311 155 152 32 260 388 80 132 365 320 227 392 405 89 385 68 277 384 146 242 165 143 241 5 11 182 91 69 136 314 423 325 219 417 135 8 3 369 49 157 35 228 406 186 425 122 401 112 255 404 224 238 17 36 324 418 212 213 27 226 274 23 225 300 29 13 322 12 54 19 400 391 18 286 4 15 107 +431 424 284 103 315 329 283 237 81 64 203 144 31 180 159 308 331 239 170 141 291 56 294 169 295 173 113 247 258 1 376 192 50 426 369 202 20 411 115 349 309 275 250 26 116 39 368 352 293 78 413 248 90 128 161 412 340 216 163 207 208 65 334 82 70 318 154 298 193 350 123 149 354 367 164 57 101 220 338 194 63 95 71 190 362 379 394 61 363 253 9 99 297 240 430 130 46 346 119 131 272 178 34 261 256 351 51 312 358 67 93 117 150 378 414 73 232 397 204 230 79 267 345 187 370 121 16 301 288 201 171 147 287 52 366 175 7 120 264 10 420 165 106 172 409 305 218 199 347 167 168 422 139 206 244 415 133 196 356 177 399 197 374 28 211 306 259 243 398 109 416 321 348 360 386 191 47 266 310 45 262 22 188 179 265 38 407 162 60 40 339 278 359 330 371 66 342 433 97 166 285 37 273 292 94 343 125 304 114 24 210 198 214 55 432 77 421 174 58 156 317 195 205 341 373 314 427 158 111 151 100 263 307 365 142 209 127 296 200 14 145 62 387 189 235 326 260 380 381 185 282 332 428 233 403 249 217 42 33 48 344 137 124 86 383 108 393 302 27 118 319 112 257 160 384 43 419 361 138 88 59 84 303 333 2 364 385 176 85 69 323 289 417 390 74 276 313 234 236 245 327 153 300 328 32 36 241 290 372 21 377 157 105 221 320 353 382 87 140 400 75 254 6 396 252 242 134 375 299 434 110 418 435 23 126 146 268 281 132 402 102 30 148 155 212 181 25 429 401 405 18 44 80 98 136 53 280 335 223 311 316 231 219 222 182 184 423 229 357 89 271 355 152 225 279 135 8 72 251 35 4 425 388 29 122 410 92 68 129 324 226 183 41 143 395 96 238 224 406 49 83 270 227 213 277 3 12 408 255 215 389 17 13 186 404 336 76 5 392 246 322 104 11 107 269 325 337 228 54 19 391 274 286 91 15 +147 259 51 310 256 220 67 63 7 202 109 99 203 141 430 365 323 291 159 363 409 315 163 50 151 82 305 85 356 39 237 128 405 86 331 288 113 119 1 334 106 393 223 411 103 267 133 64 30 362 56 293 230 258 190 312 61 298 434 192 130 176 31 165 412 20 154 97 187 231 295 320 235 346 161 419 222 253 216 297 131 247 164 170 308 236 379 29 311 169 266 261 294 66 350 178 177 427 214 332 70 302 43 218 284 78 380 352 12 282 105 34 254 144 338 207 135 90 115 225 205 227 276 246 367 381 376 185 139 95 123 101 52 351 188 239 394 226 240 313 415 179 174 406 111 201 116 136 386 88 374 152 307 378 77 281 204 140 28 93 26 373 285 120 134 372 57 309 191 395 279 272 422 137 318 417 424 173 79 9 117 84 368 366 420 345 209 69 330 361 158 421 283 407 183 175 14 196 157 89 349 197 278 206 348 241 224 121 252 397 264 329 358 172 16 217 46 104 341 328 387 416 114 2 399 94 211 398 167 168 73 210 384 13 403 213 45 229 3 423 344 342 138 268 232 72 357 435 335 265 6 221 301 306 413 347 408 143 250 125 316 255 385 155 198 145 243 339 314 418 303 62 33 194 91 208 425 260 238 322 280 234 262 142 402 426 149 200 273 156 212 162 153 428 71 87 317 60 24 340 47 370 390 10 150 244 304 184 32 433 271 290 321 354 83 360 102 195 228 22 431 319 189 359 59 364 65 27 21 108 193 375 160 146 270 333 129 275 171 432 48 124 40 38 5 98 343 292 58 377 410 324 100 414 112 371 251 215 11 325 37 219 429 74 289 401 166 132 55 245 383 299 92 249 35 296 23 42 353 382 287 199 25 242 8 76 110 148 233 68 396 75 257 182 126 355 181 248 388 127 44 18 186 81 36 17 53 300 54 122 277 336 269 15 263 326 118 96 404 389 80 41 4 392 49 327 337 286 274 107 400 19 180 391 369 +375 374 113 71 348 50 291 203 202 345 95 78 326 295 159 207 56 61 237 63 70 130 31 163 344 352 82 307 120 294 412 67 220 327 57 178 141 115 429 253 379 93 368 131 64 376 339 356 116 1 309 312 114 9 208 331 109 24 182 308 44 310 164 187 201 218 216 172 362 27 34 334 388 266 411 278 321 230 169 430 231 101 337 350 422 26 239 338 154 250 42 288 52 170 328 391 413 420 165 123 409 242 329 407 49 190 94 192 260 261 297 272 305 33 161 300 363 39 346 66 51 14 197 68 268 281 147 144 99 119 377 47 195 7 151 133 86 240 349 360 267 431 234 137 359 259 17 22 185 284 280 173 198 351 323 285 85 90 435 257 65 149 383 29 340 100 171 354 263 410 271 16 6 302 330 385 20 143 77 247 153 73 256 384 395 298 74 235 167 168 75 121 393 421 287 28 184 103 189 380 38 158 244 301 88 221 275 18 306 97 175 142 320 215 386 135 30 434 139 373 8 106 365 364 98 432 251 414 150 367 102 193 424 315 361 128 342 140 62 397 252 417 105 264 177 293 108 381 415 318 10 155 179 283 43 55 400 206 258 37 419 84 276 370 325 127 117 401 372 428 316 290 265 136 341 48 211 408 79 347 378 166 46 174 111 204 196 183 333 254 191 152 262 313 366 210 416 241 311 217 343 23 332 214 405 418 270 299 107 248 229 145 296 222 69 124 92 2 236 232 314 425 53 226 403 122 12 427 176 162 40 279 227 205 277 433 87 387 188 200 125 25 324 21 398 209 19 160 72 45 212 126 426 245 194 32 304 134 225 335 199 11 118 238 13 269 156 213 129 357 60 36 41 246 303 219 146 83 35 371 273 319 157 223 292 243 233 249 396 81 423 394 112 369 58 282 5 224 3 76 89 317 59 355 389 402 353 382 181 406 148 138 255 322 289 274 358 104 80 336 228 4 404 399 110 180 96 132 286 91 186 392 390 54 15 +71 326 98 327 376 375 120 113 308 159 291 374 294 172 348 309 169 170 171 263 328 331 339 173 237 203 345 334 1 95 428 63 202 190 164 412 323 115 163 253 329 413 103 344 61 130 284 70 295 422 178 78 51 57 129 128 50 278 40 424 352 90 67 82 192 187 34 141 426 420 123 65 218 272 240 283 93 264 193 208 9 350 99 165 362 197 64 431 62 378 119 20 131 109 75 386 201 86 56 421 175 310 204 28 259 258 133 351 379 106 315 261 144 73 198 411 354 145 312 161 46 211 340 210 363 206 318 275 248 250 247 359 288 239 430 116 142 243 434 427 180 346 301 195 149 194 31 94 16 360 298 252 276 79 52 282 41 381 230 207 158 177 74 147 366 409 364 81 236 285 384 233 370 85 154 140 22 267 32 435 137 117 125 356 97 433 196 174 102 387 432 367 305 14 43 321 414 92 87 114 220 265 33 297 231 69 380 365 26 235 338 397 77 216 341 10 262 188 349 84 372 214 304 307 293 320 191 234 153 150 148 415 361 429 101 368 185 105 311 257 42 279 313 38 118 88 232 302 256 157 330 7 189 39 280 121 124 60 58 135 395 398 45 266 273 126 289 47 306 416 290 55 314 8 358 287 134 396 215 249 139 317 423 419 59 417 333 260 179 407 219 184 223 37 222 30 403 27 393 254 183 335 156 166 100 281 347 176 268 29 343 394 418 209 213 342 241 303 89 251 408 242 152 373 316 245 292 205 246 35 155 132 271 24 138 25 143 238 23 244 127 181 229 405 66 332 296 72 199 299 355 337 369 353 382 151 225 401 300 160 217 399 5 385 226 13 371 410 167 168 48 112 186 255 227 389 270 21 44 200 357 228 2 221 400 324 392 110 12 336 96 136 146 108 111 83 377 322 277 425 391 76 404 390 269 18 53 80 406 212 182 36 162 319 15 6 402 383 3 104 17 224 286 91 68 388 4 122 54 11 49 325 274 19 107 +268 270 269 271 316 237 267 331 259 190 247 39 114 161 346 233 1 20 239 367 334 16 365 379 430 194 77 159 291 95 46 9 144 170 90 289 362 298 169 276 187 87 141 47 218 378 288 305 38 295 202 254 131 121 191 352 308 103 342 73 203 192 57 309 258 204 128 52 10 278 405 354 243 34 147 301 86 66 177 411 189 420 318 261 163 22 154 425 412 376 230 208 28 130 139 413 279 178 60 351 133 292 40 220 307 106 79 196 323 207 293 384 363 312 64 349 266 415 115 313 137 119 216 117 24 31 234 407 50 71 366 262 26 116 321 188 338 403 156 43 206 310 70 344 99 59 303 151 240 174 172 171 426 294 120 311 145 197 297 56 304 112 232 45 273 102 51 317 153 340 427 285 361 257 78 182 264 236 350 345 410 166 227 6 333 358 201 58 341 63 93 14 235 253 249 214 82 173 343 32 433 179 222 370 113 213 176 339 260 368 348 69 97 129 195 380 290 306 423 181 155 101 62 110 359 215 127 84 256 364 175 332 360 211 381 48 123 210 414 398 280 416 275 142 284 429 61 149 74 150 244 217 199 287 27 157 75 100 53 125 162 212 33 108 134 326 42 394 435 68 335 274 5 44 241 320 373 96 185 136 353 382 198 55 428 255 245 248 282 193 272 124 37 225 387 105 148 152 132 200 431 329 422 399 242 85 111 183 283 385 371 164 94 88 401 424 158 372 315 135 126 252 138 322 209 263 219 421 140 395 228 408 30 186 238 118 67 347 432 389 356 296 25 419 223 41 250 72 357 231 265 434 205 404 337 35 65 336 92 143 226 314 89 229 109 146 13 388 7 281 8 2 393 390 325 98 377 328 80 324 327 21 167 168 302 417 355 165 386 122 397 374 81 409 160 396 383 251 221 224 104 330 76 49 11 91 36 418 277 299 402 17 406 286 83 391 12 184 3 375 15 319 54 246 392 29 300 369 400 19 18 180 4 107 23 +141 159 258 348 50 294 93 114 70 163 131 169 101 170 356 202 295 230 250 144 362 192 56 310 208 207 94 411 64 237 216 220 256 203 319 288 109 26 78 52 218 412 82 350 154 31 413 63 86 113 291 321 308 201 106 253 58 341 435 275 338 297 172 292 239 34 309 1 190 57 210 211 116 204 55 430 420 115 61 95 261 305 331 422 123 100 352 386 167 168 73 222 276 51 384 83 307 99 75 315 67 379 66 140 166 234 339 197 85 187 380 306 158 92 242 198 284 376 171 134 178 111 53 14 259 175 351 97 345 20 103 161 330 431 267 130 279 120 74 318 344 147 365 257 160 225 46 196 340 235 367 39 320 368 359 241 360 281 9 254 119 90 278 334 373 77 247 244 266 415 231 223 128 416 118 124 177 217 151 179 378 272 232 260 408 377 346 133 191 121 215 173 265 137 226 24 262 112 98 389 13 342 236 283 343 317 195 117 374 165 125 312 60 393 185 7 184 397 129 363 421 81 214 36 200 145 29 27 299 10 298 68 427 189 162 428 366 213 84 424 228 370 174 407 361 423 142 209 79 323 432 76 326 285 164 71 273 434 229 414 433 328 349 264 193 287 252 238 375 419 268 245 240 38 333 110 403 282 30 354 233 381 28 271 16 280 194 311 127 248 59 206 429 395 89 33 243 105 302 417 40 219 136 221 336 62 188 88 87 6 409 65 332 227 304 313 43 44 347 143 405 394 325 183 401 156 371 251 72 205 152 387 329 418 270 335 301 126 22 269 186 293 337 80 263 69 182 17 2 300 3 199 41 35 396 8 290 37 47 149 108 181 385 249 399 176 32 224 45 406 372 5 303 425 150 289 23 21 18 324 358 42 398 139 316 314 355 212 426 157 155 322 364 148 153 135 383 353 382 146 12 402 246 296 400 102 96 132 277 388 180 48 357 410 404 274 122 107 255 286 4 369 104 327 11 25 390 91 19 49 15 138 391 392 54 +231 220 67 51 395 109 310 237 39 393 159 203 266 430 29 163 291 7 305 202 201 82 356 99 63 379 50 190 113 294 253 411 103 419 313 93 348 295 331 130 301 100 1 147 20 412 119 230 56 154 30 144 196 165 323 31 208 247 415 90 78 52 86 352 363 64 372 380 114 207 12 152 334 123 431 97 170 169 312 24 362 239 140 128 141 376 235 339 284 192 206 43 394 409 70 256 318 320 9 240 95 293 57 94 216 413 405 161 422 261 131 116 288 285 187 42 283 34 45 106 365 308 357 137 241 374 179 232 368 297 133 87 302 315 278 120 250 26 349 275 268 157 236 428 177 396 267 420 79 46 426 340 85 14 338 197 427 351 55 416 417 234 101 329 434 158 321 298 346 112 142 386 173 117 262 84 199 384 306 272 204 115 347 71 185 28 350 366 397 77 359 361 332 360 401 354 418 258 398 32 378 62 18 345 66 377 33 121 175 218 367 164 41 176 358 252 433 16 124 212 421 257 259 65 335 73 299 370 172 248 146 44 198 265 72 264 10 156 281 309 435 342 174 6 392 260 166 68 105 414 40 373 191 330 167 168 209 74 47 244 399 242 111 271 194 178 371 143 245 189 387 135 375 243 149 423 200 344 246 311 424 193 364 282 37 139 27 217 75 425 96 326 188 233 238 129 317 134 277 251 381 341 195 408 254 125 132 385 2 303 273 150 155 406 35 403 219 343 316 222 60 226 314 61 171 5 287 186 410 319 221 38 162 432 181 151 22 214 249 89 407 280 211 429 98 304 118 205 276 83 270 21 53 107 324 292 404 327 225 279 145 136 353 382 215 88 255 227 390 36 58 224 3 59 69 210 54 322 383 148 102 8 11 127 104 184 213 182 290 300 289 333 92 48 223 183 126 4 388 13 138 153 328 81 91 108 122 160 269 336 296 263 110 325 337 229 402 25 76 307 355 389 49 80 17 228 19 23 369 286 400 274 180 391 15 +346 61 293 147 151 259 50 294 203 202 39 56 141 220 159 237 288 95 103 77 63 1 350 163 272 230 133 352 362 411 28 295 31 116 82 70 308 379 291 351 128 192 374 261 218 266 329 114 334 376 312 121 267 190 258 66 305 154 93 33 349 253 20 64 139 207 216 309 298 338 178 365 131 239 247 316 134 331 381 115 377 113 430 78 130 428 170 412 348 422 169 208 109 161 156 268 195 57 345 26 310 292 413 297 172 407 234 99 51 386 424 85 217 414 279 40 244 378 196 94 205 416 232 366 384 197 363 67 105 111 240 301 354 167 168 71 52 101 315 123 90 43 65 420 79 211 280 144 302 336 187 140 7 344 275 284 120 328 214 409 360 421 235 204 359 191 318 34 150 46 332 245 86 281 119 14 201 62 185 194 323 256 210 340 373 278 149 175 198 368 372 339 250 317 370 285 209 72 200 367 343 276 236 356 106 319 364 330 361 271 117 179 221 341 375 6 260 9 164 231 55 431 10 155 397 262 176 193 137 158 108 270 393 426 282 30 84 125 87 177 174 252 385 38 24 74 265 415 347 47 387 264 383 16 403 277 75 60 188 215 283 45 92 88 342 380 162 112 435 146 184 165 166 290 100 173 98 433 257 299 199 321 307 37 138 353 382 145 287 242 410 248 304 229 83 42 73 8 189 320 254 303 314 326 97 142 313 222 53 432 171 306 22 251 269 233 434 143 358 27 135 212 223 206 417 183 2 69 327 335 333 394 224 395 427 44 406 401 241 324 59 405 81 124 399 249 21 225 296 273 289 58 226 425 263 153 243 402 160 157 118 127 398 322 12 89 136 355 227 126 122 32 408 429 337 311 76 325 419 148 371 13 68 18 423 48 17 132 102 418 3 80 152 213 25 129 255 388 29 11 300 96 23 36 41 181 390 91 369 182 110 228 396 35 19 104 400 246 357 186 219 4 238 180 389 5 286 404 274 49 391 392 107 15 54 +231 220 51 395 67 310 237 203 202 109 39 266 163 356 430 393 82 159 63 7 201 291 99 305 331 295 411 29 419 113 93 379 165 190 64 12 1 31 313 130 97 412 119 154 144 253 147 239 334 50 312 52 30 20 247 116 207 56 86 348 261 78 294 230 103 70 196 376 284 256 301 372 323 208 349 297 415 235 123 431 409 131 187 43 365 133 100 352 363 152 250 90 94 9 26 351 240 380 141 422 318 283 216 161 285 405 101 302 197 85 14 340 308 192 428 206 362 320 332 170 434 338 268 169 140 95 350 262 315 360 106 298 117 346 179 417 359 321 306 368 414 357 275 24 175 232 267 281 366 185 57 79 259 293 272 42 234 46 87 236 377 241 427 120 146 174 384 45 142 339 394 420 115 164 157 288 374 418 329 189 198 62 128 65 66 77 413 177 84 258 173 378 386 114 71 176 124 209 44 68 191 309 28 396 311 72 345 34 218 246 73 299 32 156 426 135 10 342 112 416 367 398 204 242 397 16 387 347 425 55 121 435 278 330 137 271 199 245 257 167 168 260 105 184 361 433 421 354 188 33 371 158 335 143 125 221 47 6 74 238 254 139 40 212 155 375 195 222 200 172 280 149 403 344 244 401 373 370 264 424 111 150 166 35 282 276 252 364 314 358 319 322 205 134 178 194 287 423 243 383 408 217 326 248 226 2 381 343 265 37 151 270 317 341 277 399 61 193 392 233 132 136 18 303 211 21 404 88 410 108 162 69 407 225 127 385 227 249 304 5 75 89 316 27 279 145 214 292 255 432 41 307 273 96 36 210 406 429 219 54 181 22 83 224 353 382 59 53 48 3 38 60 110 183 171 325 104 138 102 118 129 213 215 182 324 251 296 25 289 11 160 290 58 17 8 126 148 122 92 13 327 186 223 98 390 269 300 107 328 229 153 91 402 76 333 263 81 388 355 337 19 336 49 4 286 80 228 23 274 389 391 369 400 15 180 +272 116 93 386 360 359 237 348 198 63 308 123 50 334 197 428 70 113 94 92 163 82 295 345 239 282 346 1 356 202 159 411 234 131 78 64 412 377 31 351 169 309 340 349 133 134 203 331 170 147 130 220 253 291 261 115 250 172 33 275 139 26 344 376 230 312 215 128 150 297 175 190 20 56 341 192 350 141 352 201 114 101 46 281 435 368 207 151 77 374 95 328 178 294 420 298 167 168 108 184 144 66 339 218 9 379 414 259 16 216 265 71 86 293 338 409 258 65 231 189 235 14 247 100 240 85 208 185 373 310 305 103 99 57 264 161 90 288 149 354 422 257 284 381 211 193 52 343 332 424 120 431 187 39 62 266 97 55 318 280 413 28 154 279 256 278 79 362 361 217 73 179 210 260 262 242 317 158 430 378 321 61 177 421 109 119 407 387 106 306 244 363 267 429 10 353 382 156 199 191 375 287 127 367 37 40 301 364 204 307 232 290 358 171 45 329 245 302 194 263 140 76 162 98 111 389 195 315 209 117 221 326 88 268 196 121 311 126 43 87 67 333 125 380 433 105 173 296 323 7 304 426 365 164 434 21 313 415 51 166 222 347 370 38 74 402 2 30 214 243 188 283 233 394 137 405 366 145 416 252 327 383 174 69 248 303 60 205 319 206 176 241 24 417 236 320 138 155 183 254 399 136 75 153 146 83 330 58 84 403 398 34 292 335 200 273 371 276 337 44 110 419 372 6 397 355 432 118 47 129 68 8 124 289 271 285 229 81 395 277 72 384 270 227 249 32 314 142 427 59 342 299 160 393 132 181 165 213 325 22 17 425 418 406 48 42 226 157 3 388 12 122 143 182 53 251 112 27 102 5 238 336 219 316 41 408 396 13 390 269 89 148 357 49 224 104 11 401 23 186 223 369 25 152 385 135 225 80 29 410 36 96 255 324 404 91 322 180 228 423 300 19 35 391 246 4 274 212 400 286 18 54 392 107 15 +101 203 52 202 154 64 331 63 82 430 237 97 310 31 165 113 50 93 187 124 315 144 239 295 51 412 297 411 338 106 94 163 427 220 99 291 141 305 131 159 250 208 261 119 306 356 350 67 78 236 207 130 123 201 70 386 1 348 26 256 39 109 340 242 230 133 179 231 357 318 365 116 192 128 206 379 190 184 169 73 170 419 56 95 275 253 86 409 7 367 103 308 312 222 342 334 349 351 197 247 191 161 384 115 258 363 366 284 302 376 164 14 428 298 294 422 420 259 352 359 393 266 339 218 362 360 431 262 79 117 204 238 62 147 88 90 374 322 85 20 177 195 89 405 240 104 254 125 415 288 111 378 209 227 9 57 345 234 395 403 84 346 114 281 417 198 53 34 309 276 66 217 329 173 272 267 146 257 196 307 244 121 36 225 373 61 414 264 136 319 12 188 120 330 279 223 311 368 166 343 283 397 364 423 323 380 55 320 183 178 118 321 35 235 425 74 341 265 280 434 232 413 421 157 229 278 268 193 65 69 344 433 71 271 46 185 30 200 418 162 313 233 435 16 17 424 172 43 158 285 317 304 354 226 299 139 396 75 241 245 167 168 381 137 145 77 194 216 221 347 54 282 408 58 224 182 301 135 29 383 270 361 214 37 10 416 387 28 151 23 110 140 134 181 335 371 112 303 273 407 213 40 377 375 211 189 426 314 175 87 91 38 205 199 156 160 432 155 3 152 68 42 249 243 326 260 33 47 6 186 372 60 100 210 44 255 171 370 76 287 48 13 83 45 150 394 24 333 15 219 332 252 389 149 388 290 385 228 401 429 325 398 5 127 108 293 92 143 22 142 32 246 353 382 25 49 248 328 174 72 212 2 59 105 21 215 316 406 324 129 132 8 27 358 296 102 404 176 153 81 96 399 327 269 18 126 98 292 300 289 148 41 11 277 263 138 19 286 122 274 391 337 410 80 251 402 355 336 400 369 390 4 392 107 180 +231 220 67 395 51 237 310 109 159 356 39 63 393 7 266 430 163 202 147 203 419 99 82 113 253 201 291 29 50 305 30 379 31 313 154 130 152 103 78 20 411 230 363 348 1 70 52 144 64 312 331 294 93 412 119 86 208 372 190 323 12 56 295 116 165 97 140 352 405 301 376 334 207 250 256 196 349 362 409 141 235 131 123 293 247 85 179 420 26 216 133 431 320 239 308 100 261 329 422 368 90 434 192 206 415 101 158 187 347 95 357 272 338 240 394 318 285 365 380 284 106 298 45 87 413 9 185 169 128 234 339 302 306 267 170 65 346 24 315 345 34 42 43 68 335 278 177 416 281 191 259 297 57 94 288 124 55 236 218 197 275 351 77 377 359 117 398 283 161 360 157 374 350 146 114 204 386 367 175 427 421 112 79 232 311 32 164 28 14 330 392 433 84 209 246 241 361 16 417 258 426 264 262 115 384 44 142 340 260 198 62 321 66 46 33 252 396 71 332 178 199 167 168 173 354 366 244 73 120 10 309 135 268 257 414 242 174 364 105 342 72 370 172 189 137 358 344 428 176 381 212 217 245 401 222 406 378 273 121 6 418 299 373 221 188 265 403 156 2 61 371 435 151 134 193 143 149 399 375 129 194 125 425 37 314 226 139 303 319 254 132 18 40 397 214 111 104 166 150 200 96 36 27 195 205 271 407 47 162 429 387 280 423 238 5 243 282 251 227 385 322 287 69 60 317 326 21 304 53 98 155 279 83 277 424 211 145 54 233 89 136 249 22 408 341 225 215 224 184 74 353 382 35 3 276 432 88 91 58 383 210 127 343 59 255 38 219 181 118 248 107 410 390 171 41 186 289 402 404 223 292 92 316 108 324 307 13 290 160 75 102 213 48 270 300 138 296 148 8 327 328 153 11 333 122 110 336 325 183 182 229 17 76 263 25 269 81 126 4 388 23 337 228 355 19 80 49 389 286 400 369 391 274 15 180 +50 56 410 48 25 113 348 57 102 203 374 159 295 47 375 202 38 9 237 334 329 34 141 376 22 429 291 385 120 391 345 178 331 352 65 95 42 71 307 247 411 388 309 278 363 39 182 187 207 24 44 339 78 308 350 131 1 70 33 261 362 220 64 288 170 93 218 169 321 163 49 266 164 153 192 346 298 379 115 323 344 230 239 354 173 114 272 103 61 150 368 144 430 310 428 130 63 412 216 424 315 268 90 147 88 208 149 190 122 297 94 300 328 67 121 66 422 27 177 258 253 201 285 284 31 294 123 240 299 250 82 52 172 68 116 99 271 204 161 383 119 106 409 431 154 262 312 28 393 18 101 420 165 14 175 248 326 370 351 86 318 386 356 259 137 151 337 293 85 171 366 373 79 7 197 185 387 401 413 426 111 16 327 20 196 117 270 256 77 209 267 305 128 419 51 46 283 98 280 73 367 343 365 84 275 211 263 205 26 198 287 244 133 129 55 188 210 139 316 378 184 338 427 340 264 359 342 432 421 242 37 214 109 206 30 194 92 193 276 260 360 191 145 17 166 403 330 60 179 306 200 148 105 236 414 292 62 384 97 415 325 108 333 195 304 301 6 43 127 215 243 435 320 349 341 174 176 157 407 231 317 313 217 189 10 134 167 168 269 303 416 232 434 100 140 125 245 381 40 279 364 233 234 152 377 302 397 249 162 124 143 58 221 45 433 281 118 265 408 252 87 282 273 380 223 199 361 81 74 314 155 59 23 72 11 156 229 138 53 235 219 400 296 405 126 417 112 372 251 398 75 222 353 382 32 394 89 41 319 335 246 158 289 142 392 257 347 290 181 83 238 225 8 35 395 358 180 36 254 418 2 135 332 132 76 371 241 423 357 69 226 160 146 369 406 21 183 355 212 399 396 277 389 107 425 4 324 29 274 110 227 311 402 224 13 5 322 96 336 80 186 213 136 228 104 255 3 286 390 12 54 404 19 91 15 +308 141 350 309 362 95 352 345 420 178 163 26 239 344 159 31 288 131 253 113 169 203 376 61 368 130 307 202 170 173 172 207 334 218 192 103 78 64 416 237 50 328 330 67 348 71 294 339 331 24 1 217 291 422 82 276 356 39 160 220 435 429 109 63 208 140 412 363 305 190 409 115 171 56 153 258 247 361 206 297 295 300 329 375 117 407 374 341 16 33 99 261 137 284 191 252 120 51 196 221 86 430 177 349 326 434 298 266 337 187 310 147 90 421 267 424 85 428 216 57 263 250 151 272 164 128 325 365 119 413 379 367 346 312 70 431 124 46 162 154 259 9 106 52 62 165 116 73 59 384 318 304 34 381 144 98 231 359 278 251 230 285 338 166 195 145 123 411 167 168 360 209 405 197 204 403 378 283 66 134 133 373 315 275 240 260 7 161 234 158 256 77 214 242 8 264 201 114 393 79 84 20 366 23 198 205 200 386 323 415 110 185 125 293 380 28 303 188 355 406 302 372 306 316 371 135 347 215 351 370 93 101 427 321 193 17 244 273 121 118 83 397 75 354 222 268 88 433 69 142 395 414 364 43 139 60 74 353 382 257 265 232 254 262 243 419 327 29 377 10 340 175 112 179 301 319 282 235 223 194 157 149 156 182 40 100 87 97 38 65 30 426 299 111 236 81 47 211 320 335 176 184 432 333 37 271 19 342 174 210 248 280 150 245 42 425 14 226 6 317 311 212 383 94 55 152 313 296 146 58 270 225 22 227 279 394 324 396 189 287 332 44 241 423 336 343 108 408 2 89 32 143 102 401 274 132 105 80 249 314 399 281 129 277 358 233 13 68 398 21 126 402 357 255 72 180 289 27 229 387 36 290 199 5 41 292 213 45 219 369 388 136 148 417 76 385 228 104 155 181 183 48 224 96 138 127 269 3 49 12 389 92 53 238 246 186 18 25 122 35 404 322 410 91 418 390 15 400 11 392 391 54 4 286 107 +366 376 262 379 334 202 163 203 261 82 63 1 237 159 39 192 295 247 103 211 331 428 267 141 184 210 220 352 384 308 67 64 294 190 56 51 312 362 86 154 144 412 431 93 131 230 416 78 288 253 130 57 280 259 26 109 413 173 306 285 291 169 95 83 208 354 175 315 411 119 170 275 101 73 345 305 85 52 330 70 60 302 174 9 43 350 113 310 363 365 279 46 348 117 346 90 378 172 245 94 240 430 71 351 309 239 414 401 329 191 201 318 112 321 187 24 278 424 136 140 115 232 99 206 165 161 79 217 50 178 28 258 189 116 367 339 177 409 7 338 128 102 77 344 342 34 207 123 196 298 297 204 284 276 16 216 120 368 415 281 356 133 98 272 292 422 233 340 118 20 106 256 266 311 164 121 426 111 61 147 137 234 420 218 419 176 231 31 326 84 195 179 313 171 410 323 250 387 193 319 114 125 197 380 361 40 359 194 432 283 74 100 289 264 370 188 105 134 97 427 360 36 135 200 393 300 62 314 293 68 25 423 332 59 182 257 214 248 185 397 38 18 235 307 183 10 381 265 403 252 65 150 347 149 373 22 55 254 75 155 198 47 377 30 421 209 48 349 151 433 236 14 160 108 139 156 167 168 395 244 396 146 317 287 157 374 301 138 66 41 371 335 417 341 260 243 304 435 166 27 124 37 87 152 268 53 316 153 181 364 263 145 357 58 88 299 320 158 407 42 81 249 221 186 33 353 382 35 148 328 386 282 434 212 290 45 44 69 222 242 224 32 303 162 241 273 129 223 229 343 388 6 126 8 400 271 418 199 92 296 29 110 143 429 49 255 142 227 76 408 127 405 72 96 327 394 270 23 122 383 246 132 89 375 205 358 219 277 399 325 324 398 322 251 17 333 104 337 404 3 5 425 11 21 4 392 355 238 385 225 80 107 180 406 389 372 2 12 228 269 215 391 13 213 286 226 54 369 91 336 390 402 274 15 19 +82 312 379 202 203 412 237 409 302 220 136 183 165 331 123 229 201 417 67 159 415 305 144 135 411 39 155 164 109 163 147 99 214 314 418 116 88 119 259 356 50 285 31 363 23 190 294 179 154 63 51 240 64 113 430 103 352 69 315 26 141 295 267 291 351 247 35 97 413 349 310 258 216 85 266 1 90 372 230 192 86 306 130 250 362 161 100 256 106 297 20 253 56 185 231 79 361 329 70 284 207 380 275 368 342 78 133 24 334 173 239 235 348 364 251 84 131 435 175 292 261 43 170 187 169 346 62 257 151 204 395 125 177 7 318 386 254 128 30 340 301 114 101 236 298 37 208 241 52 431 283 288 426 196 308 262 427 16 373 95 46 393 405 29 281 365 425 66 121 222 313 366 303 158 174 317 433 73 111 420 264 112 345 157 28 12 403 293 422 205 145 93 162 232 378 178 338 341 14 9 414 218 360 146 279 272 105 10 344 226 320 359 197 77 350 61 224 424 233 244 65 209 339 149 387 376 115 200 223 137 142 127 191 330 45 234 311 189 394 321 32 140 243 249 156 421 2 268 265 225 176 367 325 343 309 124 213 199 206 194 3 396 357 278 276 381 89 6 419 333 47 139 57 384 238 143 55 184 407 198 40 354 397 227 406 172 389 432 383 287 34 434 117 273 335 36 370 280 72 181 332 94 150 374 58 193 42 71 290 299 323 60 74 221 428 195 307 167 168 252 110 87 217 322 13 188 371 219 53 248 242 408 260 166 120 296 282 21 300 160 347 416 289 245 358 271 38 326 398 152 423 138 319 399 75 171 304 353 382 126 210 211 17 129 377 132 96 324 153 68 212 404 22 33 5 41 83 402 429 134 59 385 27 108 81 328 270 277 215 98 186 228 104 11 255 76 375 355 286 316 148 263 118 19 269 390 337 274 54 122 327 8 44 401 246 107 182 102 80 15 92 336 388 18 369 400 91 410 49 180 48 25 4 391 392 +206 237 192 64 31 86 131 189 63 175 167 168 56 117 281 431 163 26 174 319 351 82 176 330 141 220 306 85 73 253 191 318 362 373 312 435 140 125 376 420 240 291 185 201 334 119 90 211 1 348 380 200 235 424 239 65 350 113 341 99 308 303 231 256 342 305 9 133 46 366 326 276 250 416 115 210 313 78 128 37 426 209 241 304 159 379 177 335 57 116 118 43 295 315 384 329 310 428 124 430 297 207 259 331 123 422 70 169 321 262 170 158 346 371 190 365 67 30 243 83 258 272 110 106 217 97 378 294 157 52 14 59 161 266 149 339 427 166 349 320 71 79 311 413 103 403 184 285 208 179 112 93 411 196 7 261 356 254 323 12 66 10 114 105 292 38 173 216 278 160 214 164 74 284 298 227 414 197 142 374 234 69 377 198 145 386 273 357 389 51 301 101 249 309 255 244 314 22 288 367 247 248 20 267 172 156 162 360 193 343 147 287 148 345 150 45 130 154 344 127 236 27 16 34 109 327 75 421 203 340 359 263 137 39 195 187 432 62 94 279 415 368 354 120 265 28 139 289 233 165 409 221 202 84 132 387 204 146 144 232 77 48 2 369 252 396 178 188 264 370 111 404 296 251 17 88 393 61 36 405 361 44 98 300 199 363 87 224 222 375 225 121 72 24 171 280 126 290 230 275 286 104 181 385 412 293 8 186 395 408 282 40 50 42 307 302 242 317 47 92 29 32 257 246 218 68 381 394 352 21 33 25 76 152 402 325 383 419 194 80 332 391 397 226 283 299 401 60 5 410 328 182 423 129 433 18 108 138 398 407 358 91 238 100 425 372 353 382 143 219 355 333 399 3 260 13 102 213 58 223 54 41 229 347 429 81 324 434 155 212 364 151 136 228 183 245 338 153 400 23 53 95 89 135 55 277 388 6 134 390 322 35 406 96 122 180 215 316 417 49 268 337 418 271 205 270 11 392 269 4 19 15 274 336 107 +231 39 67 220 31 163 237 395 51 50 203 202 1 82 109 356 310 63 64 430 253 411 331 266 78 393 113 165 159 239 154 147 141 305 26 201 250 130 348 420 376 301 419 295 306 291 52 93 362 352 187 56 7 119 29 70 207 379 208 95 294 99 116 412 275 334 62 30 338 144 363 192 230 361 330 131 196 288 357 431 101 339 312 247 416 190 100 349 384 422 368 308 103 405 256 20 12 179 90 86 164 302 123 235 97 128 117 257 297 318 261 350 315 124 169 298 372 409 161 85 244 221 140 170 185 232 24 285 216 360 206 209 240 284 197 396 359 36 309 79 42 313 84 146 364 44 242 94 268 133 373 121 115 278 191 71 413 34 340 346 259 114 14 403 152 65 435 217 162 386 329 434 377 323 265 218 9 421 234 380 335 374 394 264 267 142 125 198 293 258 371 57 43 66 167 168 354 283 111 252 367 73 28 281 347 341 46 135 200 55 345 6 415 271 406 262 177 414 398 319 321 332 158 236 175 106 397 77 45 381 425 417 53 178 241 427 433 16 272 156 61 260 157 37 378 365 204 137 104 245 366 401 32 351 173 320 407 87 17 428 383 344 172 10 72 160 134 299 195 143 151 222 120 145 303 276 270 188 112 174 68 273 370 254 246 424 375 418 2 166 33 194 189 27 342 105 426 387 358 199 184 69 304 251 326 193 214 233 249 280 277 139 118 314 47 343 155 399 317 432 429 227 74 110 404 136 243 54 307 325 311 176 3 211 300 83 423 40 287 8 150 316 149 226 392 60 181 132 18 21 96 205 212 59 238 91 182 38 282 88 75 322 224 5 210 58 127 19 22 279 215 171 296 353 382 402 255 292 89 289 290 183 23 225 35 108 327 48 388 385 126 355 11 229 269 389 328 324 390 41 107 248 49 410 129 13 148 122 219 213 92 408 223 333 153 337 102 25 186 98 263 81 274 76 336 138 4 80 391 400 369 228 286 15 180 +331 297 411 373 265 187 159 163 237 201 39 128 147 141 203 264 1 111 192 101 421 258 261 121 250 422 31 350 204 299 202 366 50 430 64 343 165 305 216 52 144 253 295 262 164 244 56 62 154 239 94 170 386 362 161 90 190 169 177 363 247 315 318 63 79 125 123 119 412 22 200 130 209 275 178 11 93 433 20 341 365 145 230 95 162 383 298 364 376 82 116 218 28 113 435 378 306 340 291 235 333 131 26 397 359 57 352 334 184 308 360 294 124 133 206 14 354 330 9 338 84 103 368 288 356 428 114 78 99 232 328 220 367 179 379 249 196 51 346 266 403 317 106 55 61 23 53 387 112 185 47 16 304 413 122 240 117 257 75 73 100 120 267 252 115 424 351 181 309 126 310 254 217 374 284 77 414 426 188 259 191 321 425 272 60 384 361 245 233 110 211 349 88 312 46 71 10 109 280 420 303 58 74 381 276 320 222 86 431 2 207 85 329 432 339 195 70 38 407 193 243 7 398 326 394 358 210 319 226 59 194 370 199 380 348 87 139 213 256 44 167 168 399 427 102 156 155 21 66 282 273 248 208 197 13 37 17 344 236 290 48 137 45 227 158 166 289 287 405 285 234 27 127 42 134 25 67 12 34 104 278 76 296 6 173 229 345 302 283 105 409 172 97 279 242 205 415 271 389 149 171 43 241 140 416 150 118 342 429 410 5 268 98 401 323 406 301 69 214 40 36 223 219 153 408 65 292 332 198 357 24 33 347 225 8 186 270 238 251 371 175 293 372 151 434 324 377 423 132 41 307 136 160 417 311 81 281 32 108 157 89 402 176 353 382 183 322 313 142 221 3 314 335 375 419 215 146 269 395 325 231 390 35 337 72 174 300 92 418 228 224 263 189 96 135 393 277 355 396 143 182 148 29 83 212 91 316 18 388 68 327 80 385 30 400 260 129 19 336 369 404 274 107 255 4 138 54 180 49 392 15 391 152 286 246 +239 95 370 318 163 208 166 207 367 247 103 237 319 64 132 291 78 128 331 411 220 230 242 31 193 203 384 1 50 159 113 114 161 39 310 90 365 297 301 192 131 433 190 79 141 216 256 201 56 304 315 294 430 196 363 202 63 295 340 144 362 167 168 232 273 82 366 130 386 352 397 57 112 266 111 170 197 61 51 376 7 169 47 115 119 191 379 305 356 26 334 343 259 20 412 93 70 120 338 195 431 258 101 75 73 74 413 424 97 354 187 99 86 275 403 206 261 154 373 288 387 34 321 292 194 308 240 312 9 28 181 133 175 306 284 426 100 121 415 123 43 351 198 209 147 428 248 298 330 244 71 46 303 347 214 55 211 218 210 378 177 236 52 116 217 262 281 85 282 88 109 106 276 349 361 137 346 350 432 253 199 231 84 313 293 235 341 142 42 348 380 381 243 221 364 267 249 317 409 332 188 419 189 125 250 420 416 32 184 329 179 157 59 407 124 360 118 342 67 383 174 10 324 422 316 60 359 134 285 117 427 140 69 265 374 278 110 268 264 279 345 245 162 62 323 41 421 299 309 53 77 38 156 16 139 358 94 233 14 320 271 417 89 272 435 326 393 222 185 394 212 65 280 105 283 395 200 241 325 8 339 151 368 30 405 204 414 257 66 205 290 372 178 176 6 145 398 287 229 173 155 81 149 22 153 408 172 254 399 171 68 158 289 37 40 35 344 58 98 24 164 270 126 333 44 143 396 434 353 382 160 150 251 45 152 385 146 102 234 418 219 223 327 371 238 83 11 213 87 260 252 33 406 136 302 227 183 186 148 423 335 224 404 401 129 314 127 2 410 274 25 255 36 296 225 328 72 48 311 27 3 226 138 307 377 21 96 277 165 76 389 375 425 269 12 135 92 429 182 29 23 108 17 122 246 355 322 215 390 5 357 337 18 13 80 402 19 388 336 104 228 286 369 263 391 300 180 4 107 91 49 392 54 400 15 +113 93 203 202 295 64 163 94 331 350 141 50 412 82 159 31 291 131 101 56 207 348 70 250 57 237 239 310 130 430 374 356 375 169 1 208 242 71 220 95 63 187 253 338 362 170 52 294 192 114 78 154 315 376 165 308 422 431 124 258 288 39 334 275 330 144 201 9 120 128 26 428 61 164 309 190 178 411 339 359 193 326 133 119 111 360 48 51 298 320 179 420 367 354 435 247 408 173 297 42 102 265 222 352 140 166 321 384 116 386 162 22 257 106 218 284 341 305 344 62 373 307 204 99 123 75 103 345 421 264 272 216 261 319 117 161 227 306 73 109 235 90 230 318 197 172 177 311 115 25 368 67 266 185 66 312 300 363 379 299 74 167 168 137 424 206 86 147 343 121 403 405 340 423 328 278 215 226 427 184 407 225 413 198 125 8 262 259 38 7 256 346 240 34 276 58 85 211 27 171 252 23 365 12 260 281 410 415 79 145 196 16 414 195 47 134 53 401 210 88 397 364 234 434 33 371 191 416 14 182 213 433 43 349 244 118 158 175 24 366 380 271 97 232 429 391 254 323 92 268 378 221 329 327 351 417 302 229 409 35 283 317 304 10 139 105 160 388 217 20 301 223 46 385 151 248 370 432 100 267 377 361 28 273 13 188 333 200 194 83 44 425 122 231 426 37 55 108 84 282 241 383 357 146 280 18 68 303 209 270 285 224 245 112 77 233 249 143 219 17 263 396 142 6 98 389 347 287 59 72 238 199 49 251 418 149 381 236 41 387 214 110 135 313 150 174 406 342 243 153 176 5 290 316 40 29 65 393 395 30 60 156 186 279 36 157 126 127 332 335 394 81 398 3 89 228 76 45 2 21 32 337 400 132 136 296 69 419 183 181 155 212 372 87 189 289 104 358 11 314 399 277 293 205 404 180 148 269 322 91 129 325 152 4 355 353 382 107 369 255 292 96 324 402 19 138 246 390 336 80 54 274 15 392 286 +435 113 93 64 250 411 131 295 70 63 192 230 158 141 341 167 168 31 237 294 50 94 163 266 7 20 78 356 348 147 420 172 109 253 26 55 363 362 308 61 261 14 202 239 291 114 101 330 123 203 412 67 159 305 170 169 309 95 422 307 377 115 103 413 374 275 257 9 310 86 2 272 82 85 242 205 56 133 306 62 247 130 360 315 368 359 234 207 1 125 16 208 178 145 34 97 414 66 116 139 201 187 319 217 235 421 280 33 105 334 288 185 267 161 424 428 45 354 415 144 240 321 90 220 149 193 111 121 10 39 430 297 197 386 209 87 407 92 177 134 218 343 351 365 345 358 399 292 398 151 373 339 216 198 88 73 394 150 99 281 21 350 71 284 431 409 47 164 22 140 376 119 299 265 65 100 106 256 349 189 389 83 344 379 287 166 263 346 318 252 190 329 331 371 375 384 262 251 176 24 260 429 160 372 416 361 137 36 57 221 117 44 38 80 154 352 393 383 325 200 142 276 27 12 402 312 37 175 248 278 285 268 367 29 171 76 244 403 231 215 273 258 110 30 173 128 300 364 108 162 426 6 153 143 313 293 28 259 301 183 17 196 195 405 157 42 74 434 254 279 206 328 427 236 282 395 302 410 204 212 303 298 174 387 417 43 366 136 264 401 52 381 75 283 184 214 419 340 370 296 79 311 191 227 155 165 46 342 182 127 333 396 188 122 223 226 98 120 314 194 271 199 84 211 337 222 138 126 179 320 390 270 8 274 316 322 406 317 232 51 432 156 213 418 48 112 77 246 225 397 378 129 238 41 210 335 81 229 290 13 249 152 135 433 89 357 304 425 385 338 25 59 69 243 23 388 68 60 355 327 347 72 11 118 49 380 124 102 132 408 233 96 404 269 181 326 40 323 3 255 324 353 382 332 53 241 224 18 107 58 186 391 245 148 146 277 336 32 19 104 289 369 219 228 35 423 180 400 91 5 286 4 54 392 15 +203 202 165 154 67 220 82 50 163 159 128 315 39 338 51 379 237 430 144 412 63 331 52 352 141 109 231 101 376 305 207 1 93 164 259 99 103 31 393 302 123 411 258 116 201 409 310 147 64 56 187 295 94 113 363 250 95 386 70 419 130 261 133 26 61 244 288 256 334 312 119 124 192 342 362 190 78 121 266 297 329 318 90 368 267 294 216 253 346 86 53 291 239 366 85 131 275 115 7 265 204 349 208 77 20 365 340 197 350 106 236 356 293 281 161 218 330 179 189 100 230 222 84 170 348 169 254 247 339 34 323 285 29 298 272 232 431 422 264 308 306 351 415 405 79 112 384 223 240 262 114 378 134 117 397 427 428 175 345 403 62 198 257 46 196 14 66 151 206 177 268 234 320 195 125 57 301 276 372 28 242 357 200 191 417 347 380 361 319 373 344 309 176 284 433 278 37 420 88 225 214 188 229 172 226 97 24 69 211 104 271 401 178 413 292 367 71 235 158 282 377 205 279 120 135 30 136 12 137 210 395 381 174 233 394 317 418 416 245 241 209 184 58 425 33 374 38 73 9 140 217 341 359 199 364 221 111 333 167 168 332 162 185 16 43 173 423 421 105 354 360 60 227 10 146 396 299 303 87 424 322 270 145 18 387 370 183 273 89 435 156 35 155 314 321 343 426 313 280 283 194 243 407 83 42 149 166 47 249 181 326 139 414 160 406 36 398 358 23 65 252 224 186 371 45 307 213 132 27 55 260 13 399 96 389 152 311 304 98 127 68 40 287 432 8 72 74 143 335 6 92 193 316 434 150 75 110 22 289 91 215 108 157 219 107 142 251 385 171 2 328 248 300 212 48 325 32 118 324 336 375 3 59 277 269 228 81 182 383 44 290 238 286 353 382 263 41 410 296 402 17 246 102 21 122 76 388 138 408 148 429 5 390 255 126 129 54 15 153 404 327 4 49 25 355 11 19 400 392 369 337 274 80 391 180 +154 53 101 52 237 338 331 220 31 295 82 1 203 208 159 179 116 64 346 340 99 310 430 315 379 100 352 259 144 50 163 51 312 106 202 253 258 165 93 113 63 26 256 363 85 376 103 412 222 373 216 267 275 146 119 257 231 320 86 187 266 37 78 67 351 384 368 24 241 56 115 305 7 43 77 147 380 30 356 191 359 290 360 422 298 128 247 130 141 190 131 3 204 431 39 124 94 301 185 66 427 339 294 109 90 245 308 261 192 361 349 169 123 342 415 61 250 218 260 292 319 95 79 164 105 377 393 20 170 366 348 224 226 175 239 272 201 405 378 293 425 291 197 318 207 365 195 333 28 16 65 407 297 311 213 309 162 121 403 117 161 40 362 2 341 302 10 177 46 6 33 411 12 58 240 232 299 183 334 178 357 254 38 321 347 206 367 335 288 229 303 225 330 13 354 14 133 34 97 428 140 435 111 151 413 235 433 62 70 421 172 414 156 343 317 198 350 265 158 326 386 196 242 313 424 278 432 233 281 408 244 57 234 284 416 409 364 262 306 166 279 155 329 69 264 114 381 145 227 137 426 152 125 21 345 139 45 394 383 173 209 323 287 73 120 83 127 230 71 402 420 217 372 406 112 276 84 199 236 325 268 188 167 168 9 374 273 280 88 47 149 419 417 252 5 283 387 214 282 186 23 344 74 296 87 11 238 104 304 219 150 327 332 59 314 68 322 174 160 397 370 223 285 184 243 249 132 336 271 189 181 29 110 72 395 89 418 289 212 228 423 221 371 398 22 91 194 60 81 375 134 255 277 429 135 353 382 300 205 8 316 396 200 399 27 171 32 122 118 307 35 358 17 96 75 392 157 193 248 369 143 92 15 211 148 270 153 176 42 385 215 136 210 142 251 108 263 434 18 36 55 98 404 328 129 390 324 41 54 107 182 138 246 269 389 126 80 388 337 48 355 44 49 19 401 400 102 4 274 76 25 410 286 391 180 +384 237 31 239 216 141 411 192 113 163 331 291 64 63 349 420 95 50 78 350 258 207 69 334 253 93 365 114 161 201 26 259 275 70 123 159 362 352 147 39 360 247 356 90 295 294 116 167 168 288 340 230 1 131 71 133 359 164 386 130 119 61 188 203 170 28 412 373 368 169 318 306 319 208 413 381 256 397 297 79 9 190 166 242 345 351 235 86 330 367 250 348 187 343 266 60 347 310 430 317 103 304 52 407 257 220 232 85 428 57 398 261 206 421 128 67 20 293 144 202 221 435 276 422 244 137 284 415 305 218 121 160 197 10 240 94 332 217 191 165 344 74 16 82 56 73 273 184 233 312 234 195 374 66 214 301 346 267 125 262 59 370 196 281 268 140 309 45 158 308 75 40 298 278 177 264 431 115 341 376 338 178 194 97 200 315 366 199 99 272 280 198 193 434 185 151 14 189 252 117 378 414 424 55 290 65 231 100 109 43 101 46 120 162 6 383 333 124 209 432 154 84 307 118 179 396 321 251 324 361 204 416 364 34 156 377 379 62 387 380 51 142 37 236 215 271 7 326 363 339 375 44 342 303 106 283 433 405 139 87 287 265 32 329 406 254 175 222 354 111 173 371 292 24 2 279 249 127 126 427 134 260 149 243 145 241 183 282 270 38 181 372 110 136 320 213 58 227 155 92 358 12 403 53 353 382 29 172 395 394 112 77 404 36 335 22 212 426 314 171 21 105 153 296 68 285 210 323 150 311 211 226 425 83 98 157 389 325 47 299 399 174 132 143 409 357 245 17 205 225 27 417 313 289 327 146 248 322 23 328 274 41 33 238 76 316 96 408 13 402 81 385 135 3 182 176 223 108 30 88 393 219 72 255 229 89 148 277 224 138 42 269 418 5 263 8 11 429 337 129 419 390 410 355 401 48 388 228 302 122 35 400 80 19 186 25 369 18 152 286 300 91 423 336 49 104 54 102 15 246 4 107 392 391 180 +166 239 207 208 193 367 318 242 273 95 304 103 216 247 237 319 64 331 163 132 78 370 70 31 356 190 310 131 123 82 192 90 114 50 141 411 258 220 177 79 20 167 168 162 9 363 420 144 159 250 201 97 295 1 284 199 187 315 415 365 206 431 413 99 56 321 175 218 291 412 303 169 334 7 362 222 170 73 113 10 101 213 394 275 125 428 39 45 87 118 347 203 93 384 63 261 61 297 305 137 424 249 147 350 26 173 124 373 294 386 323 197 195 161 368 313 430 320 253 352 196 235 106 22 283 209 24 433 86 57 191 74 185 128 248 354 158 75 243 38 256 288 16 47 111 360 366 343 359 215 262 232 266 112 244 267 205 298 376 37 219 240 338 276 119 234 202 299 115 188 380 204 12 60 397 329 330 226 94 71 414 164 241 42 340 85 426 231 308 435 306 407 398 233 165 225 145 198 68 6 403 140 374 179 292 322 2 149 351 178 230 341 358 421 379 130 34 251 279 399 311 52 301 62 387 194 342 408 422 154 427 383 84 371 254 189 290 43 423 272 287 339 317 381 133 142 346 434 238 41 227 281 28 349 174 361 378 236 100 425 151 183 13 27 65 312 66 69 143 210 117 200 214 40 274 333 285 44 282 314 252 120 264 121 326 223 309 211 416 405 157 245 59 55 176 21 171 260 46 98 110 81 393 156 172 280 348 377 32 5 96 67 327 432 184 257 229 345 217 150 58 409 307 265 88 390 153 278 14 105 268 109 375 139 146 51 259 181 289 324 396 401 48 395 155 92 127 221 402 372 404 212 30 406 417 134 344 353 382 53 11 160 277 89 148 369 116 3 35 186 325 76 418 224 129 364 293 33 385 335 122 80 77 270 355 102 8 357 300 271 389 126 255 23 332 36 25 410 302 228 316 138 135 83 328 182 180 18 419 263 72 136 337 296 429 388 152 17 29 286 108 104 107 391 246 269 336 91 54 4 49 392 15 19 400 +237 187 141 331 362 31 202 192 411 230 247 295 384 239 159 39 236 291 203 163 79 288 318 170 413 26 161 88 379 64 169 117 95 90 258 1 401 113 218 297 119 196 315 82 349 84 370 201 209 204 97 190 131 103 253 387 334 350 250 181 240 356 431 403 63 220 351 256 412 18 221 294 130 62 352 121 191 329 430 312 232 317 144 114 330 214 120 112 216 70 106 195 261 243 366 235 420 116 99 27 78 56 244 306 427 305 259 426 365 284 123 217 206 46 65 61 34 57 378 304 20 179 303 207 308 340 292 93 73 409 342 275 435 60 271 419 386 432 343 7 47 354 321 262 128 323 367 199 316 28 424 397 9 302 268 160 310 43 309 276 345 67 111 126 433 376 229 86 348 109 172 89 361 165 434 364 51 339 341 71 249 223 270 245 254 105 344 164 194 332 110 197 326 183 298 58 50 360 415 69 422 184 52 287 257 55 178 118 248 319 414 359 233 133 59 193 66 177 158 222 417 127 421 147 389 154 14 428 94 416 155 40 125 166 132 35 149 75 42 173 238 74 100 363 16 273 393 208 171 252 167 168 283 264 418 200 280 368 269 145 285 296 313 115 85 301 267 175 307 372 36 380 234 142 353 382 10 140 139 400 346 153 281 32 210 186 266 137 134 157 124 101 211 338 174 373 156 289 198 205 188 185 347 87 135 395 23 77 189 231 25 150 260 151 22 83 407 68 333 299 314 4 242 327 322 136 241 293 406 176 146 290 272 81 381 98 279 148 278 53 324 37 162 182 226 45 107 224 300 143 48 24 44 227 320 33 429 358 21 383 129 282 30 251 265 408 3 17 15 212 399 423 38 108 388 225 228 374 325 246 213 29 337 385 72 219 394 311 410 152 398 138 377 19 425 2 13 405 92 371 263 6 355 41 277 12 396 336 286 335 76 8 96 375 328 215 49 180 274 122 255 102 80 357 392 404 369 390 11 5 391 402 54 104 91 +116 308 428 197 237 198 133 63 50 359 309 360 1 346 282 386 334 123 294 272 159 340 351 115 376 414 163 93 378 348 170 253 354 293 345 247 203 103 259 169 349 331 77 288 64 202 141 134 70 147 412 65 192 130 82 352 350 190 338 113 40 78 128 298 379 258 62 239 420 413 46 175 98 94 218 430 39 61 172 329 278 178 362 109 411 275 34 31 179 20 332 144 28 341 121 156 26 90 230 295 187 279 71 56 250 60 154 194 317 312 204 344 10 79 261 339 297 245 151 92 374 95 131 356 431 161 310 381 201 216 220 305 264 51 120 435 284 234 119 33 16 426 422 266 52 318 86 67 177 99 291 364 173 387 85 140 232 240 231 263 196 14 43 9 371 424 101 353 382 367 57 45 409 267 330 73 149 233 281 256 188 150 158 139 252 84 171 315 326 106 191 117 174 328 138 244 276 167 168 208 87 7 100 125 58 433 403 215 434 205 355 146 366 243 368 257 292 377 301 176 114 302 370 363 235 66 189 97 421 283 285 416 395 206 358 24 335 199 209 321 415 44 398 432 38 410 217 185 419 207 265 211 236 214 164 307 118 361 384 323 137 221 268 126 289 262 145 195 303 290 327 304 260 210 287 193 343 365 313 373 111 59 375 311 407 48 316 372 22 83 427 72 105 380 399 30 108 333 394 3 6 249 273 160 148 200 110 224 397 32 280 127 2 248 342 81 37 47 229 96 319 42 153 271 296 306 393 136 222 405 429 8 347 314 102 25 183 242 41 124 88 53 166 165 336 55 388 155 401 396 383 157 277 417 21 254 325 142 408 69 357 181 406 227 184 223 182 132 402 152 299 89 162 112 270 74 241 143 404 390 389 135 104 269 255 300 425 76 400 75 369 418 186 385 251 320 23 91 225 212 68 17 35 129 13 226 392 49 324 29 213 27 228 423 180 80 219 337 5 238 36 246 122 12 322 11 19 274 18 54 286 391 4 15 107 +147 61 141 288 220 259 50 293 237 346 159 203 258 362 103 379 202 151 39 56 411 67 350 192 109 247 28 352 63 128 163 51 216 295 82 31 133 294 1 312 310 267 169 170 114 308 93 331 116 230 7 204 363 381 374 430 190 261 348 77 253 266 376 218 334 115 291 95 298 305 99 85 351 57 412 366 140 272 66 384 378 231 205 315 365 268 196 113 356 130 40 332 154 393 217 64 24 239 33 26 316 428 34 329 187 121 43 292 156 106 167 168 144 165 178 131 349 413 78 373 209 172 94 297 244 90 323 416 409 79 372 86 214 309 164 208 179 111 345 123 119 20 70 201 339 422 236 232 100 161 386 52 44 207 134 62 105 117 285 380 275 302 256 361 46 245 278 284 338 370 387 414 421 175 424 368 137 177 318 420 410 354 139 234 200 14 340 342 235 271 377 125 120 240 415 317 344 88 341 375 191 223 101 38 197 9 146 343 211 265 30 299 60 195 229 155 280 276 185 427 397 84 319 65 385 330 435 149 55 176 145 279 194 262 174 321 166 359 252 150 360 222 367 328 347 301 264 281 364 283 210 320 173 407 431 158 260 270 221 395 188 184 426 136 314 112 434 6 29 53 10 171 58 198 224 277 241 403 193 303 73 225 287 135 199 254 71 257 306 383 59 72 162 250 419 47 226 313 27 273 22 183 336 206 92 189 143 12 269 248 98 97 401 433 87 282 89 326 37 233 425 45 108 322 69 251 18 23 290 68 432 16 333 13 296 242 227 83 249 417 304 142 81 400 353 382 355 311 394 118 406 213 160 124 263 215 396 289 3 300 212 32 358 388 152 307 399 138 423 42 127 371 48 243 327 25 91 335 157 324 2 74 153 429 102 41 325 337 405 75 182 132 398 80 21 35 402 122 408 148 186 219 246 11 126 418 255 17 4 8 36 104 357 96 110 228 107 181 129 390 404 369 76 238 5 49 389 15 19 274 392 286 180 54 391 +67 34 31 141 362 237 51 63 258 39 217 103 109 288 26 64 192 159 154 310 50 256 231 239 331 220 113 117 203 201 196 144 191 7 167 168 61 131 163 416 350 338 99 230 259 349 294 95 52 29 216 218 330 356 318 253 384 420 101 352 411 393 1 261 202 295 124 368 297 166 206 247 79 112 221 208 147 90 93 430 56 128 250 130 365 133 266 298 123 207 291 276 306 121 342 161 376 346 78 140 339 165 204 363 20 209 334 267 235 315 85 119 82 70 116 403 197 106 66 367 419 395 319 86 386 232 170 177 169 301 413 190 304 329 160 94 370 164 305 347 58 115 173 284 53 125 200 236 257 293 412 240 9 275 142 366 118 137 320 114 341 262 179 351 414 340 242 245 28 10 198 372 77 317 185 73 303 427 14 348 308 84 151 272 158 422 57 281 226 273 97 379 30 187 292 278 47 323 244 188 383 374 157 435 321 433 145 359 360 42 378 65 381 59 225 60 234 385 283 343 38 243 62 212 345 110 33 16 264 397 361 184 12 312 71 309 432 134 100 36 332 111 68 434 37 421 307 45 156 299 32 222 55 431 87 424 265 373 415 195 405 380 354 175 46 178 287 409 69 313 344 428 396 83 6 43 333 89 223 199 364 189 377 149 282 252 152 387 233 398 371 139 181 162 280 132 249 394 290 241 254 279 172 105 148 211 194 24 326 96 205 214 407 357 22 260 193 127 88 426 135 120 40 174 44 210 108 213 176 18 399 2 27 150 13 146 289 255 324 425 358 224 92 74 353 382 375 325 21 296 251 406 143 408 268 171 336 335 401 316 72 277 186 122 215 423 322 302 227 248 229 75 389 98 402 311 8 48 271 23 76 285 80 417 327 246 182 17 328 41 3 228 219 238 183 104 410 300 126 355 35 274 138 263 390 314 418 286 107 404 81 153 4 155 270 54 388 5 129 102 136 91 429 400 15 369 11 25 392 269 391 49 19 337 180 +407 207 163 203 220 291 237 239 31 244 331 159 113 67 295 334 360 95 411 202 78 61 109 57 64 359 50 352 51 82 294 1 131 141 116 9 374 56 178 39 266 312 253 412 363 195 350 397 348 208 24 349 324 308 7 169 422 192 65 297 405 261 258 256 103 368 170 376 190 430 375 420 356 216 267 74 196 75 99 147 247 46 26 185 310 71 114 345 372 28 362 120 187 16 298 259 137 29 379 367 130 413 309 409 240 205 221 123 318 268 88 218 197 288 175 6 321 346 90 77 373 305 79 93 386 230 365 119 201 326 351 383 115 161 191 177 111 431 164 162 68 117 328 212 361 385 153 421 11 85 251 254 144 380 395 63 97 20 47 284 2 330 166 429 167 168 173 43 214 198 325 303 250 434 106 278 424 415 193 232 128 344 70 354 86 151 306 66 264 30 235 340 293 223 165 100 231 172 408 209 184 222 42 301 236 315 285 217 280 155 402 121 134 59 378 320 273 435 333 381 241 433 366 339 37 319 271 12 55 139 179 154 140 69 341 275 283 370 112 101 343 176 282 338 52 299 27 225 226 428 296 206 262 290 34 257 174 189 72 406 204 248 146 41 73 403 45 245 281 426 416 133 337 276 249 384 252 260 329 160 316 313 199 60 302 427 22 393 105 84 234 353 382 21 270 233 211 62 342 94 388 417 229 287 40 242 419 210 188 307 44 17 347 377 3 224 136 398 127 182 279 32 33 304 387 143 332 158 215 132 14 13 125 414 171 142 272 36 183 300 38 10 122 219 98 135 311 149 432 317 89 335 425 145 87 213 314 124 156 35 323 107 102 322 227 200 355 327 243 126 357 394 263 194 19 138 23 371 110 157 8 418 150 148 238 118 410 49 265 364 152 292 401 5 181 18 399 108 289 269 358 53 277 404 228 76 396 58 104 83 400 92 96 336 81 129 48 423 25 91 186 80 390 54 274 389 255 369 4 246 391 180 15 392 286 +133 411 159 203 202 220 352 141 67 163 379 50 63 95 147 1 230 237 288 31 51 154 78 34 39 305 231 297 207 239 128 103 259 362 346 294 308 310 349 430 340 247 56 130 261 192 338 26 82 386 123 258 109 412 376 114 334 309 113 170 169 365 393 161 52 216 291 116 293 218 409 266 368 77 356 268 121 144 99 93 253 187 329 205 64 217 86 61 201 351 370 345 90 331 151 267 256 284 70 315 44 395 172 272 209 119 101 348 190 24 28 7 350 383 164 111 318 366 384 419 271 221 131 236 20 167 168 208 14 332 312 196 165 85 363 179 204 115 106 367 397 373 244 9 66 178 278 285 47 342 431 295 120 302 378 79 420 316 240 100 134 43 189 275 374 84 406 387 410 433 214 57 422 250 265 281 94 270 283 97 413 279 232 317 46 323 117 33 344 29 177 361 197 330 424 195 414 264 42 65 273 421 415 347 306 166 62 188 140 434 60 385 359 23 360 381 319 193 191 71 325 341 416 435 139 298 301 137 269 354 403 262 73 145 252 401 194 105 125 276 112 88 98 183 357 200 6 224 171 153 245 321 427 10 396 158 229 280 234 339 55 426 211 87 199 160 53 417 162 184 17 136 185 282 364 210 198 307 45 343 313 18 173 150 222 428 429 16 155 30 380 135 22 394 326 304 235 48 68 353 382 175 149 303 83 206 254 405 138 432 8 176 132 69 38 223 377 89 108 372 314 27 143 74 3 299 212 102 58 37 407 358 146 75 328 335 242 156 418 36 11 292 392 124 375 399 19 287 174 336 225 35 398 233 40 290 248 152 243 320 251 25 249 355 257 118 92 59 371 104 327 324 241 110 333 263 12 181 215 81 226 260 300 408 322 186 72 296 246 127 402 2 142 182 96 389 274 32 126 388 122 227 91 76 277 148 400 4 107 238 255 289 13 21 213 425 157 423 228 311 337 404 129 390 54 41 219 80 49 5 369 391 286 180 15 +50 56 70 64 411 113 237 202 310 93 412 305 67 63 203 119 86 99 231 31 123 430 51 82 163 97 291 415 254 216 159 295 114 256 230 239 240 315 85 201 374 250 190 147 109 106 395 141 7 356 320 220 207 12 34 255 144 165 297 234 9 357 1 281 348 94 431 131 386 393 120 420 236 284 187 267 116 101 380 331 115 424 345 170 242 241 192 308 294 103 20 227 427 161 37 90 137 283 29 78 334 128 169 330 164 379 405 323 95 414 417 104 362 65 266 22 342 130 154 272 133 61 375 261 338 311 172 322 26 312 258 151 185 189 422 253 121 318 10 175 275 158 44 215 351 117 376 383 346 73 71 288 176 125 210 197 360 298 326 418 373 57 184 306 14 321 66 235 173 359 79 428 339 39 211 319 87 377 425 344 177 309 74 335 208 45 368 62 413 352 278 52 209 381 307 244 259 198 91 55 341 188 340 166 232 247 435 280 68 262 218 222 276 409 47 396 365 149 69 75 28 140 226 238 100 162 363 343 398 77 217 434 282 432 385 225 124 16 264 191 329 371 139 265 419 285 349 174 279 367 287 248 38 421 30 263 350 193 212 313 314 292 293 167 168 33 27 401 403 72 397 410 407 111 13 423 24 43 301 98 303 48 5 302 394 105 182 46 134 145 416 246 221 179 89 384 196 213 388 299 268 127 402 150 387 171 54 378 2 304 194 76 408 92 81 153 138 364 204 84 333 206 290 152 205 273 426 370 195 108 58 143 178 157 156 347 219 389 135 199 243 354 328 200 257 228 136 6 83 332 372 249 155 366 324 214 223 110 260 40 399 233 21 327 36 41 142 96 358 118 59 251 49 148 252 122 126 88 42 429 53 286 271 317 17 80 433 300 296 129 270 23 146 25 160 32 361 102 245 355 406 18 183 404 229 353 382 325 8 391 277 289 400 35 11 181 60 390 186 316 369 3 132 112 224 180 15 269 337 392 336 107 4 274 19 +259 133 63 163 159 202 82 376 203 1 113 331 291 237 71 64 312 334 261 268 281 338 329 365 349 207 39 294 131 348 154 379 293 412 220 230 253 130 197 270 116 95 147 20 61 101 411 189 346 128 271 78 66 70 266 50 151 77 352 310 347 279 272 52 356 267 144 351 422 51 316 326 198 297 141 298 409 239 56 216 90 308 115 367 430 175 284 350 190 345 231 250 295 413 201 31 161 123 188 315 361 192 214 258 26 103 318 431 93 302 191 368 282 174 208 374 386 339 134 109 278 16 84 305 256 362 234 173 169 67 247 218 121 275 170 187 204 301 363 158 34 342 424 407 366 99 119 340 288 262 420 285 276 97 306 205 194 7 364 177 178 73 46 14 360 114 57 183 421 79 359 88 98 260 9 117 283 384 381 206 240 378 217 184 164 185 112 211 380 332 166 309 86 125 111 307 269 155 176 210 373 10 280 415 313 106 304 344 85 62 433 232 139 405 327 426 136 375 28 179 403 94 145 24 33 120 252 229 42 195 383 393 314 47 385 193 358 372 242 69 397 428 35 387 243 235 137 172 199 196 156 417 30 427 65 432 40 105 167 168 200 236 227 328 416 292 398 153 377 395 303 435 406 23 87 60 209 325 43 32 165 108 222 394 289 233 323 320 311 100 55 241 321 354 157 341 290 135 343 396 8 12 434 399 36 414 149 264 317 22 425 254 371 221 59 181 330 212 215 124 370 273 45 251 2 299 333 110 118 257 6 287 249 418 225 162 244 29 152 11 74 102 353 382 319 226 38 132 408 96 75 37 419 248 150 140 138 296 27 58 92 3 146 127 53 223 265 17 213 142 277 224 148 238 160 41 410 89 76 335 245 171 286 126 357 390 13 21 389 143 429 322 324 81 404 423 246 182 300 5 48 402 263 255 336 355 401 72 68 122 83 104 219 337 25 19 228 44 129 392 180 80 91 186 369 18 274 388 54 391 400 15 4 49 107 +308 113 178 159 429 328 374 375 309 163 376 345 297 350 141 237 71 78 169 203 411 153 291 239 170 120 95 422 202 362 334 63 31 412 421 331 352 253 295 326 187 348 172 261 344 130 50 266 250 1 70 192 64 26 230 368 9 16 123 207 435 93 82 312 57 56 305 164 133 220 218 116 22 240 288 329 339 263 39 190 14 373 201 356 386 284 327 280 420 171 330 131 307 7 379 337 62 262 17 94 275 341 119 294 264 409 66 177 90 147 46 272 161 23 184 413 363 48 111 265 158 27 346 128 258 431 318 55 209 366 47 85 252 102 349 144 165 24 299 103 145 204 25 98 424 430 298 383 121 115 61 208 354 300 323 88 173 310 247 149 86 364 200 179 206 117 99 137 185 283 365 248 193 278 428 34 351 73 20 28 235 244 216 10 360 42 359 378 101 370 306 401 84 343 217 321 114 197 43 167 168 19 287 106 33 257 367 426 315 155 65 150 215 340 267 52 196 77 434 325 195 175 229 414 79 388 162 416 154 140 126 76 361 38 410 403 371 125 182 259 37 256 251 276 407 188 191 304 198 347 338 97 415 302 387 127 214 333 242 44 281 205 279 432 221 285 320 296 314 139 74 211 87 176 75 427 122 243 293 317 210 108 166 342 105 268 67 109 134 51 290 194 174 92 417 11 234 395 389 397 49 151 236 231 21 249 59 381 2 189 313 199 18 377 380 433 233 303 80 319 271 355 385 110 384 142 69 232 160 60 30 124 100 157 6 393 254 40 301 135 282 183 391 146 270 8 118 425 129 353 382 58 81 273 156 260 45 418 408 83 41 419 245 332 32 112 335 181 72 289 372 53 269 398 400 138 3 224 394 405 241 226 222 136 402 324 227 68 12 132 225 406 223 316 399 238 148 358 369 5 13 89 311 292 96 180 277 143 219 36 213 35 274 186 29 255 212 423 152 336 4 357 228 390 246 107 392 286 322 396 404 104 91 54 15 +221 209 411 141 39 362 192 237 31 64 297 147 121 117 244 56 230 26 159 288 318 330 253 164 239 50 196 403 203 266 261 191 352 163 331 258 202 350 1 291 79 204 303 420 256 111 298 295 250 383 187 247 133 125 185 356 319 90 306 161 354 387 386 430 113 131 119 379 57 217 200 201 95 128 218 82 130 422 7 373 220 63 363 421 103 190 65 144 341 349 368 179 385 116 123 315 177 259 61 145 165 275 214 366 88 14 397 20 216 351 412 370 55 265 62 409 36 148 28 112 312 416 78 365 308 154 51 346 431 170 47 276 169 9 376 407 207 232 67 240 167 168 304 127 367 321 114 434 345 305 262 243 110 329 309 205 106 413 195 264 317 252 66 71 299 433 364 245 178 426 99 343 334 101 59 342 339 344 249 84 70 310 359 267 323 45 68 120 77 360 23 85 160 235 34 109 2 361 301 280 188 46 427 347 294 158 273 166 105 236 73 126 199 395 401 378 414 206 52 124 229 149 53 287 435 348 16 93 424 193 278 156 271 338 37 257 162 231 432 42 284 268 134 394 44 208 172 86 60 132 173 181 233 419 270 197 22 307 150 87 399 371 326 27 184 21 332 100 115 97 10 43 17 372 293 75 381 38 58 398 406 289 302 33 211 384 140 358 74 333 222 11 155 137 83 408 296 69 6 374 340 153 32 194 285 135 353 382 415 151 251 248 429 380 320 325 324 94 393 428 210 157 314 139 279 269 335 223 357 254 18 118 272 227 175 35 96 405 12 8 224 143 328 171 282 198 402 283 146 389 226 292 241 234 72 410 3 290 417 212 102 142 242 425 89 390 313 108 122 260 316 189 30 98 396 19 176 300 48 136 423 29 281 174 54 322 25 40 225 104 186 327 418 311 238 215 24 76 388 277 183 4 80 375 219 13 377 213 81 138 355 228 263 400 337 49 336 5 182 41 107 255 404 246 152 92 129 369 392 274 180 15 91 391 286 +268 270 269 271 316 237 331 190 267 247 259 161 346 39 1 233 239 114 194 367 77 46 334 16 170 430 169 379 20 47 291 90 187 378 362 289 159 38 9 95 305 295 276 365 308 141 298 254 121 144 352 57 73 288 354 139 22 52 191 203 202 342 28 192 87 309 163 258 208 218 301 278 31 40 351 128 131 318 154 66 230 10 243 292 376 204 103 86 333 323 178 411 60 425 130 338 34 177 321 293 279 106 261 133 412 349 312 384 420 147 220 196 171 137 64 405 363 310 79 413 216 189 119 102 304 156 59 93 70 116 273 340 166 99 266 120 115 14 313 117 297 307 366 24 427 311 232 317 26 71 343 213 240 172 415 262 174 188 361 257 51 58 45 407 344 370 50 206 207 112 101 260 129 43 426 380 264 6 290 332 303 145 235 423 127 280 403 249 350 53 182 82 153 341 151 197 345 179 155 214 373 56 62 63 32 326 348 113 253 227 358 433 175 368 335 241 398 27 234 294 201 150 359 306 339 149 48 222 364 429 410 360 100 162 211 69 287 78 256 110 94 181 210 152 236 199 285 416 123 97 195 275 414 173 284 37 244 394 176 84 74 105 424 245 193 142 185 200 431 282 248 126 125 148 320 108 68 75 381 387 5 217 132 315 124 61 183 30 283 215 219 255 157 336 395 85 44 296 33 92 272 42 41 198 422 25 263 111 435 134 164 421 252 353 382 242 96 225 212 399 209 118 432 158 401 347 55 357 385 238 67 393 265 428 138 408 88 140 65 223 389 404 136 371 231 419 274 337 135 72 186 13 329 228 229 372 250 226 356 2 98 388 434 146 81 314 390 327 89 281 8 122 324 80 322 7 143 386 397 21 355 109 165 302 402 91 374 383 377 328 104 417 396 325 49 35 330 251 205 277 406 167 168 299 76 160 11 221 409 286 184 375 418 224 36 83 3 17 391 369 319 12 54 15 246 29 392 400 300 180 4 19 18 107 23 +244 237 350 141 384 220 103 53 329 159 293 305 128 258 331 147 216 379 203 192 334 50 204 352 78 247 294 95 61 381 52 112 362 288 430 113 165 295 261 267 64 297 130 207 67 202 346 28 275 1 116 154 39 373 308 291 82 163 51 411 133 376 368 31 187 315 99 416 85 121 259 431 253 144 366 195 115 56 7 34 351 239 86 196 208 169 90 312 424 170 119 266 218 179 20 43 164 26 338 123 250 298 66 101 177 343 342 256 161 317 106 105 309 190 356 201 284 354 333 340 422 63 290 38 217 347 365 421 6 339 131 370 330 93 231 111 178 117 378 191 232 374 292 245 167 168 386 301 65 380 426 318 387 397 199 310 205 109 10 60 79 230 158 77 407 11 299 84 428 363 432 14 316 209 146 206 162 188 348 235 319 166 42 45 427 278 302 37 341 57 413 137 94 125 367 185 349 214 419 393 40 173 240 345 200 313 394 268 5 304 236 280 160 361 283 74 9 62 383 224 272 156 412 75 415 172 254 145 212 248 89 16 59 120 155 306 252 46 58 140 262 372 197 114 357 73 41 175 2 44 405 371 425 403 399 194 233 435 222 335 271 249 211 30 420 97 88 22 320 21 47 398 314 360 273 359 433 241 124 234 71 151 87 3 242 344 406 414 210 327 260 385 303 100 364 110 264 226 171 358 409 189 279 322 323 69 83 225 98 8 375 243 181 24 70 104 149 33 270 81 276 324 227 281 12 198 402 229 223 353 382 72 27 55 183 257 265 325 408 289 213 332 377 32 287 228 321 126 148 13 132 336 150 434 184 174 118 401 255 285 221 219 390 282 96 311 91 193 29 139 326 392 369 277 157 263 35 395 127 307 153 429 176 68 186 122 417 135 138 423 296 269 142 238 48 396 134 23 143 410 152 18 36 251 102 300 54 328 92 418 76 80 337 400 136 17 215 274 25 129 355 182 389 107 108 246 4 19 404 180 49 388 286 15 391 +352 31 113 64 130 141 26 368 95 350 131 291 420 345 239 362 237 117 308 329 309 203 374 307 178 376 253 334 56 192 78 330 218 159 202 344 416 375 266 71 50 207 82 39 429 221 288 276 422 339 250 409 169 300 348 1 187 164 34 120 206 170 295 172 163 191 70 153 63 261 67 217 412 297 331 294 61 379 209 103 356 62 90 220 124 421 328 9 57 275 24 363 208 306 115 125 326 304 47 411 318 298 196 123 160 312 173 17 16 147 346 337 327 73 121 431 79 393 149 201 42 177 403 190 258 386 424 230 167 168 214 33 263 66 165 144 349 161 158 38 118 154 278 272 150 303 171 145 262 364 240 195 305 216 99 315 140 435 361 383 20 284 185 48 367 166 7 204 133 22 385 18 370 14 101 128 354 397 341 116 413 259 84 252 137 52 293 231 102 366 182 110 200 247 285 407 111 188 65 243 23 426 51 310 59 85 373 323 109 365 119 388 197 242 430 256 267 86 27 46 28 401 88 287 321 410 244 428 378 162 419 205 302 299 319 265 395 264 106 384 37 340 260 434 198 179 371 25 257 325 49 10 248 280 184 36 360 283 139 30 98 301 359 355 314 43 135 151 8 77 347 19 148 93 232 427 251 342 60 387 194 338 152 415 69 156 249 83 44 233 127 55 432 193 112 381 351 372 122 273 281 108 343 296 157 45 282 212 142 94 114 320 29 433 234 398 245 97 6 313 229 175 87 40 394 58 333 377 74 290 75 235 180 105 391 324 279 414 68 236 268 317 176 316 2 211 143 155 126 181 417 358 81 223 146 183 210 353 382 132 357 399 53 100 199 380 332 32 289 246 174 369 271 21 189 215 400 80 134 396 389 224 408 418 270 274 11 335 406 72 254 392 405 76 129 3 89 222 96 402 138 225 241 425 41 277 226 255 390 92 336 186 107 136 35 219 292 311 269 238 227 423 4 13 104 12 322 54 213 5 286 404 91 228 15 +220 39 237 266 113 356 42 310 202 67 203 109 51 130 291 131 18 82 56 295 159 163 231 348 141 57 379 253 208 207 431 71 401 362 247 331 201 1 27 329 64 31 352 354 95 411 103 120 395 288 430 294 284 350 50 216 63 301 190 376 312 240 78 140 24 374 192 239 256 384 70 185 7 68 321 187 112 119 147 144 218 363 308 230 61 47 9 323 165 114 410 196 375 283 315 305 93 422 339 99 173 278 29 167 168 368 298 102 367 412 107 306 297 116 12 111 257 250 428 128 300 258 169 360 161 154 334 359 170 244 235 318 261 302 86 66 320 345 142 370 373 178 65 26 264 268 420 37 117 33 309 426 164 326 267 416 133 100 413 385 361 421 90 122 372 175 380 424 85 73 259 193 285 365 419 44 4 275 177 79 158 429 435 30 271 97 48 20 94 25 52 209 434 172 393 344 232 22 346 74 330 391 265 252 75 166 211 38 28 204 377 270 351 341 245 32 242 179 105 299 409 46 214 197 55 115 152 414 121 14 125 272 262 210 88 195 407 313 316 123 191 162 349 206 157 403 387 251 327 342 217 72 383 392 174 106 293 340 189 415 248 43 381 176 433 347 200 276 198 366 34 137 135 343 417 307 62 281 234 84 241 145 328 53 400 221 338 155 36 124 432 11 233 236 151 304 364 153 77 87 182 287 222 378 319 136 98 388 10 311 16 8 427 149 45 249 6 280 101 303 146 423 332 59 397 171 292 406 418 139 194 81 150 263 243 269 273 108 184 386 260 335 156 205 314 143 188 40 199 60 226 317 134 337 118 394 212 41 49 405 129 290 2 425 23 183 296 254 127 181 83 69 35 282 17 148 408 279 132 229 58 324 289 238 398 219 5 180 225 160 21 223 357 126 358 322 89 215 110 389 369 353 382 213 355 402 227 333 255 277 399 92 13 186 396 325 96 246 371 404 138 104 19 224 3 80 91 228 76 390 336 54 286 274 15 +294 31 258 237 163 413 331 192 216 259 159 64 128 261 362 141 40 1 376 103 332 340 56 101 203 79 366 61 416 191 196 28 350 202 113 147 381 217 378 118 386 190 90 330 110 166 77 82 230 131 288 210 232 170 290 293 46 169 411 384 379 348 51 326 211 267 167 168 361 144 346 365 26 343 291 318 220 124 334 34 244 100 117 295 412 397 253 125 121 352 60 262 187 306 199 304 201 424 239 161 363 20 112 305 301 339 341 370 177 123 247 351 99 154 137 39 415 175 275 260 303 151 248 204 194 308 312 420 206 52 208 426 218 115 235 430 156 197 231 57 195 73 178 214 207 333 130 266 58 114 106 276 160 319 338 278 245 297 95 422 41 298 344 329 209 285 367 67 7 243 284 373 50 109 38 32 116 421 59 431 432 140 345 315 188 198 184 9 289 189 10 349 111 78 120 292 374 273 280 428 164 233 62 185 407 145 93 342 173 75 63 433 45 16 299 359 200 309 403 279 387 119 427 327 65 307 250 148 360 171 84 272 249 205 176 264 395 70 371 282 252 66 85 321 283 347 317 257 234 277 105 37 172 212 86 43 36 356 313 158 240 256 364 53 6 358 399 394 133 74 174 409 2 328 316 81 372 242 398 310 89 380 302 179 354 193 71 142 281 353 382 435 268 83 236 221 22 324 254 55 162 132 181 47 139 97 134 149 135 88 42 320 287 408 383 94 429 335 393 87 183 68 8 186 165 33 271 385 219 368 434 44 153 375 143 265 126 355 21 127 241 263 223 14 29 24 425 405 389 296 300 146 414 337 157 402 419 270 98 150 104 91 336 152 30 215 314 357 417 155 96 229 182 377 390 251 69 76 255 396 423 11 180 213 401 406 102 226 222 35 80 13 23 323 108 3 311 227 136 5 238 225 418 27 269 224 410 122 369 72 12 138 54 92 322 18 388 49 129 325 286 228 404 274 246 392 17 48 19 25 4 400 107 15 391 +50 163 272 101 202 203 159 377 1 237 231 154 56 376 260 220 234 331 113 338 197 63 70 93 128 259 31 379 78 411 346 198 116 82 151 95 293 412 348 33 207 115 133 131 295 64 134 147 52 109 334 67 61 351 208 230 374 352 94 277 291 130 141 386 294 114 77 265 332 261 144 430 409 310 349 340 373 51 187 218 266 216 375 66 253 242 360 100 39 26 359 363 20 192 329 345 362 111 123 350 44 250 7 34 297 393 312 189 57 258 103 292 190 239 367 256 365 150 285 65 305 282 356 397 385 368 264 302 14 139 278 339 170 215 328 318 9 235 161 298 308 211 323 281 321 201 267 99 108 275 301 169 315 247 90 178 167 168 149 422 92 419 164 210 326 288 413 86 378 414 306 268 121 40 53 28 24 172 120 195 344 79 165 420 415 287 8 276 407 417 431 175 319 47 381 221 309 62 184 387 403 240 383 279 347 55 405 73 343 191 10 361 137 200 370 155 119 6 342 68 106 71 428 85 209 42 262 88 162 341 366 87 166 280 185 204 380 354 193 364 179 97 245 236 29 38 23 196 435 424 398 384 290 257 127 152 271 426 307 410 136 69 156 433 358 143 313 232 320 30 194 325 248 394 284 214 336 296 330 183 98 125 43 124 316 395 406 177 418 105 188 421 84 2 37 48 217 16 140 244 27 199 206 229 327 299 314 270 11 46 17 401 117 324 399 372 304 252 427 396 74 22 432 205 176 45 36 174 303 145 122 241 18 75 273 112 173 254 416 402 158 21 233 434 283 102 333 335 243 132 60 408 429 182 224 148 118 83 388 138 246 212 153 3 317 58 76 181 171 146 249 353 382 222 223 251 135 126 225 35 269 142 160 357 72 289 25 89 110 32 81 425 355 12 186 227 91 219 104 389 255 41 371 226 311 390 13 59 404 322 263 96 129 19 157 49 80 337 213 300 369 392 391 238 274 286 4 400 5 423 228 107 180 54 15 +237 64 374 422 253 31 63 164 158 432 421 312 375 119 185 334 364 192 230 295 82 435 14 420 350 305 307 356 126 411 62 306 383 331 161 116 22 362 141 201 16 190 147 203 373 294 187 308 184 280 330 9 84 169 113 412 130 252 159 298 38 165 85 202 345 309 170 30 17 429 275 140 235 26 86 178 239 177 131 43 99 313 344 50 240 216 343 220 352 261 34 266 368 10 380 365 413 39 2 90 218 97 288 250 66 23 69 65 428 348 363 123 24 162 296 121 71 57 93 314 407 197 78 117 297 1 278 424 434 339 145 155 167 168 425 73 128 260 55 157 341 284 149 109 291 115 354 56 67 21 379 200 51 251 163 333 142 242 321 139 127 388 371 20 206 111 60 133 299 179 430 12 7 156 83 303 328 360 256 79 381 110 198 36 125 106 315 120 27 326 52 264 72 318 311 94 276 144 346 37 431 359 247 355 172 209 229 150 287 188 416 403 28 8 98 409 191 153 243 310 349 272 74 304 265 182 376 70 137 61 262 351 393 87 241 378 95 80 114 415 231 226 427 45 129 214 193 47 290 75 258 300 317 398 204 255 361 135 238 254 33 222 236 101 386 372 160 283 244 285 257 29 267 325 196 208 327 225 152 171 414 154 329 42 320 387 323 217 227 13 195 273 340 143 233 176 40 205 384 103 88 402 419 289 367 46 102 199 401 302 319 335 395 44 207 211 76 166 405 151 124 183 234 259 249 246 406 134 397 146 213 3 394 301 186 232 210 282 6 377 105 59 41 108 274 32 245 426 58 389 224 399 366 433 92 417 353 382 118 136 96 77 48 248 81 194 347 174 25 263 215 181 173 324 112 292 408 19 279 281 49 342 357 293 100 391 404 410 369 358 228 370 89 322 221 418 332 212 122 337 104 11 277 5 223 175 219 53 68 18 338 390 385 396 423 148 91 35 132 400 316 138 4 180 189 15 54 336 270 271 268 107 269 286 392 +237 331 163 50 64 159 131 31 82 93 70 295 187 184 239 202 203 140 242 334 63 359 258 109 360 298 412 1 220 78 208 114 348 253 275 386 115 101 356 52 141 350 411 430 116 57 351 431 179 192 250 267 297 113 130 56 420 207 340 79 190 261 362 175 281 216 201 247 338 330 123 222 154 118 384 103 197 256 422 73 133 94 77 308 169 310 144 321 311 319 291 51 339 124 61 147 170 166 349 343 266 26 106 196 326 198 257 193 95 413 125 346 204 344 318 177 345 134 259 234 162 372 312 408 435 217 373 6 303 260 14 227 65 403 294 276 428 367 354 305 333 224 407 90 232 218 352 414 254 380 374 226 119 3 365 368 191 332 209 306 83 206 173 185 363 10 264 205 315 117 86 84 167 168 341 377 376 67 288 195 309 100 230 405 241 128 99 39 43 378 221 416 379 213 62 2 211 13 199 425 161 231 66 71 158 85 97 75 424 415 361 317 111 74 272 235 46 279 225 433 137 174 9 262 282 244 151 120 112 307 186 210 58 27 121 265 37 146 172 28 88 347 421 139 41 160 16 328 313 188 381 240 98 434 229 427 273 20 383 12 145 290 249 178 409 280 370 304 233 432 375 34 366 171 252 238 406 236 320 215 104 22 245 59 68 7 5 55 40 38 156 423 292 293 299 21 278 417 296 223 364 164 426 165 322 110 284 176 316 105 126 138 397 329 228 143 24 212 301 69 127 91 387 36 302 371 89 45 248 389 32 200 23 268 194 33 243 53 402 219 398 142 136 155 132 148 92 325 287 44 342 30 418 8 285 300 87 323 76 271 35 108 81 401 314 182 385 335 149 270 358 395 47 29 353 382 399 60 388 289 327 429 189 214 96 419 277 283 394 251 393 150 255 263 72 357 122 17 355 153 183 157 337 369 404 396 102 400 11 181 135 42 107 152 129 324 48 410 269 18 336 390 49 25 80 15 19 4 274 246 391 54 180 286 392 +50 203 56 202 163 237 159 348 375 113 374 1 331 410 151 220 63 31 295 346 93 272 57 131 141 379 70 207 64 48 260 187 363 197 411 34 116 82 154 147 216 67 101 61 339 376 412 114 259 231 44 362 278 198 218 377 100 109 373 266 9 352 261 351 7 128 338 52 38 33 39 293 95 385 334 102 230 288 350 430 78 239 47 294 298 25 321 66 310 192 51 247 190 312 111 409 42 94 291 103 393 130 323 22 242 208 332 77 368 388 365 256 27 253 297 170 169 30 234 285 65 419 28 178 99 258 24 383 277 133 122 161 345 240 340 386 144 329 26 305 90 182 428 349 268 150 359 307 360 164 282 387 343 123 315 14 201 356 267 121 308 139 6 79 378 200 215 328 149 167 168 292 367 20 420 422 120 115 318 301 18 162 313 73 250 397 119 391 401 415 302 134 361 341 414 354 184 175 281 276 40 344 204 173 370 165 407 319 299 413 209 106 137 49 366 424 265 431 37 62 152 108 435 309 84 306 92 185 71 381 176 196 214 88 264 177 271 280 143 403 235 16 326 8 85 384 364 330 172 189 105 262 432 86 195 275 211 284 244 417 426 68 257 43 193 270 97 408 347 155 117 194 405 10 245 46 232 342 179 380 166 205 316 156 29 140 55 206 333 191 429 11 406 125 252 145 188 421 210 287 248 199 303 304 433 416 4 279 174 74 327 124 217 236 320 427 290 300 98 325 23 53 283 314 2 153 229 296 221 83 372 127 60 17 223 418 241 118 246 129 75 335 395 371 394 434 126 358 87 317 76 398 251 171 243 32 273 396 72 45 269 402 148 69 35 324 58 59 212 112 226 157 249 132 254 399 289 3 142 225 355 21 183 336 158 135 224 389 160 89 353 382 425 222 36 13 146 357 181 12 104 400 81 233 404 213 311 337 263 186 219 136 238 255 110 138 107 41 227 423 390 96 322 5 369 91 80 286 274 180 228 19 392 54 15 +350 141 288 95 362 39 218 187 31 237 203 307 331 334 50 247 344 61 159 345 298 244 64 207 295 202 130 192 220 121 352 309 374 131 239 113 291 71 116 208 161 56 216 85 253 420 308 78 26 57 258 376 1 67 375 343 430 163 169 147 170 115 329 99 411 119 428 120 266 330 201 103 348 370 339 196 190 178 86 90 328 28 346 165 52 368 422 413 305 354 261 310 164 140 117 191 250 304 294 259 106 185 407 166 320 172 204 381 426 65 318 9 367 312 82 435 431 149 297 93 109 70 34 380 179 33 276 321 416 62 242 341 84 272 188 230 195 156 421 173 145 333 315 123 262 197 79 221 114 432 154 363 360 38 268 412 359 278 217 429 24 222 127 349 378 267 177 22 63 51 43 137 48 401 424 337 397 59 124 275 144 198 317 271 160 300 77 256 14 205 379 245 356 73 209 193 158 361 171 384 414 240 287 280 409 293 46 10 366 94 365 232 72 264 133 427 125 425 20 323 47 25 235 289 252 434 299 44 184 316 243 340 233 16 273 150 296 351 157 303 433 74 214 241 260 42 364 7 162 139 249 285 403 58 263 105 75 88 128 206 60 100 338 248 167 168 134 335 405 410 231 388 199 257 284 290 151 270 302 254 194 101 126 110 226 111 386 236 122 40 27 200 37 53 227 353 382 66 372 357 153 45 223 211 13 306 393 373 118 213 12 225 68 2 142 87 311 98 210 395 112 319 355 146 408 155 135 332 6 21 97 182 5 102 181 314 55 30 175 387 415 398 419 423 148 283 229 342 238 32 69 406 292 234 279 251 219 228 347 277 301 265 96 29 49 92 108 269 176 143 18 104 89 383 313 326 394 402 23 83 385 322 358 399 174 129 282 41 3 91 327 183 389 132 377 224 212 391 19 138 180 215 396 186 281 324 17 371 417 35 54 81 36 369 392 336 152 80 8 418 390 76 189 400 107 136 404 325 255 274 11 15 246 286 4 +128 265 1 163 95 192 207 159 264 411 56 430 70 276 50 147 20 141 133 285 305 310 365 203 93 202 376 121 63 8 230 367 193 268 338 294 341 237 161 398 31 78 129 412 362 253 356 114 271 86 349 291 195 235 313 71 98 87 116 340 113 318 363 334 247 323 358 189 435 315 373 44 190 239 24 405 297 75 393 115 220 348 64 345 240 278 136 282 9 208 201 394 130 231 94 131 252 123 57 330 28 197 428 103 82 399 152 422 351 34 45 347 39 308 270 281 352 346 295 26 386 319 379 134 258 415 73 344 332 397 151 216 119 144 221 259 370 406 187 90 331 194 378 218 293 284 417 251 273 170 101 272 257 409 14 413 69 173 246 154 126 169 419 360 196 62 368 139 79 431 269 214 77 359 326 301 288 198 311 424 256 421 390 389 167 168 99 420 43 217 242 410 74 67 236 309 312 350 176 21 374 418 324 387 188 23 364 206 254 385 304 125 298 7 434 97 211 433 140 353 382 316 85 210 199 250 283 227 232 10 120 55 384 47 381 166 46 145 160 30 403 191 51 407 100 178 38 143 234 106 414 243 2 37 52 92 279 306 408 83 320 222 328 321 209 112 137 80 105 132 61 16 155 416 361 223 343 172 66 174 215 108 303 432 117 48 200 366 228 118 183 371 109 275 375 76 59 266 158 60 339 401 25 164 124 181 261 383 153 307 396 244 81 111 395 402 302 267 233 263 377 179 292 429 40 229 162 248 280 186 53 204 142 355 212 335 262 427 22 342 171 177 88 135 354 317 404 333 29 35 149 185 68 329 287 150 182 423 27 426 325 58 180 425 84 400 175 5 165 156 388 300 213 219 110 33 32 42 299 255 327 184 127 249 6 89 289 314 260 296 13 290 380 224 36 96 138 157 372 245 238 3 72 286 102 41 225 91 369 241 274 357 226 277 148 205 17 12 336 146 391 104 122 337 65 11 322 392 18 15 49 19 4 107 54 +82 285 113 220 202 203 356 312 409 163 131 412 239 97 119 379 310 159 314 305 155 64 237 302 395 207 183 99 136 70 216 311 417 23 380 373 231 144 109 31 67 256 141 348 88 430 241 85 106 261 291 294 229 222 418 190 193 320 334 78 208 51 345 267 50 415 295 166 253 173 86 35 411 362 125 405 179 120 420 5 137 135 1 247 128 7 427 187 26 147 165 298 374 130 133 162 240 56 12 413 123 167 168 214 315 236 192 90 331 308 351 93 140 251 318 175 434 143 189 338 177 367 321 30 326 360 376 213 201 73 185 258 68 63 227 359 169 276 164 111 386 116 363 71 170 145 306 393 313 230 37 157 69 431 62 288 361 262 396 9 297 265 266 209 329 158 344 365 341 238 235 349 95 335 347 24 375 273 29 248 79 346 103 435 43 100 424 322 300 45 151 339 423 259 13 149 252 290 20 44 403 114 39 278 264 319 250 384 254 343 242 414 280 61 57 387 428 226 425 293 184 260 204 350 394 65 275 115 206 178 211 352 161 197 281 210 124 408 284 188 27 272 366 94 299 218 105 368 87 225 221 174 381 377 354 72 3 364 421 301 219 309 303 172 257 139 342 154 55 404 357 198 150 74 32 47 199 304 205 426 10 287 340 6 406 101 41 196 152 323 419 46 243 402 134 398 89 75 383 2 283 244 224 307 249 146 327 279 228 191 422 429 325 33 84 28 433 127 66 215 372 194 14 77 397 370 11 385 328 223 42 217 255 432 234 121 142 399 16 358 132 156 98 22 176 246 401 52 233 232 34 171 317 332 292 182 40 160 282 378 126 21 36 355 8 333 296 200 416 153 353 382 122 104 268 92 148 96 407 38 117 277 186 289 181 110 337 400 369 18 324 112 212 108 83 274 59 91 390 195 271 371 17 389 60 391 388 138 245 129 410 76 286 54 102 263 392 25 330 270 118 48 80 58 107 269 81 15 53 316 336 19 49 4 180 +220 70 163 113 31 237 159 50 93 230 131 82 116 360 295 356 359 351 348 266 431 64 175 363 412 63 203 78 308 320 216 61 256 120 239 334 312 291 7 202 275 374 119 250 123 56 2 99 94 365 368 364 37 10 305 137 201 100 281 130 1 166 380 65 375 413 253 411 149 346 115 20 101 197 45 339 310 231 379 386 114 161 345 198 340 309 67 185 267 373 315 329 321 97 272 331 297 128 24 405 6 428 147 51 106 71 241 30 109 282 290 21 127 85 134 144 424 366 208 14 133 176 287 22 235 261 430 376 187 333 402 240 39 298 16 66 407 254 156 26 361 319 349 284 257 90 242 422 9 193 158 414 226 192 174 190 179 12 95 343 207 140 276 260 79 299 367 87 43 27 248 278 265 62 395 117 354 173 225 294 406 155 425 229 139 318 13 3 195 177 247 313 258 280 306 332 362 227 344 92 52 73 141 125 154 218 189 121 188 415 427 335 103 352 342 403 293 57 381 377 326 72 209 29 262 283 393 279 347 88 145 341 394 303 211 301 383 350 77 150 122 232 408 86 435 432 162 328 169 409 314 327 178 429 28 83 146 41 398 205 378 170 338 199 105 204 426 151 191 222 296 292 244 46 210 433 330 233 33 399 124 385 184 143 264 372 48 215 238 370 234 307 420 167 168 213 42 311 421 236 302 224 76 172 69 259 288 358 416 53 251 47 249 152 252 219 384 111 68 74 142 38 317 138 194 84 387 419 55 417 268 18 223 214 196 434 323 289 5 96 164 34 183 89 388 285 217 357 206 273 355 369 325 32 58 23 81 245 304 108 243 157 277 221 8 186 397 200 153 182 75 132 322 423 40 390 118 181 418 44 126 212 300 135 410 110 11 112 136 17 59 129 228 25 389 336 165 160 353 382 371 324 104 36 271 246 148 401 60 404 19 337 98 80 35 171 91 255 286 316 269 270 107 263 49 4 396 180 392 102 400 54 274 391 15 +50 56 237 147 151 203 114 202 141 220 1 346 163 338 288 31 66 61 331 159 154 348 64 362 77 63 113 39 216 411 82 116 121 231 294 293 278 28 218 131 52 430 70 93 100 376 352 334 101 305 33 253 190 295 377 363 261 272 78 345 230 207 103 67 247 350 109 414 239 308 307 34 354 339 57 379 298 413 187 24 356 244 291 192 374 130 245 301 144 42 332 260 267 323 65 169 51 378 201 178 297 128 170 341 266 208 120 99 40 86 26 258 167 168 412 420 44 259 79 38 90 115 232 309 349 123 85 330 95 310 340 344 388 73 9 428 372 386 196 182 250 359 94 177 119 351 360 321 140 256 234 422 200 211 318 302 209 179 20 215 49 284 197 47 268 315 156 210 431 172 329 204 285 14 393 191 257 43 312 111 217 424 106 361 161 366 300 71 403 275 381 194 134 53 435 343 235 125 60 419 102 133 240 173 30 46 429 55 368 395 124 306 84 319 198 97 370 434 264 105 206 380 195 283 7 137 416 407 185 317 365 271 373 37 10 276 142 242 62 409 262 277 415 117 83 150 68 375 165 139 164 118 6 299 383 387 48 384 432 280 104 236 145 146 433 75 74 22 304 410 313 421 158 252 149 290 199 282 8 316 426 326 336 335 222 32 303 72 16 175 108 347 45 287 328 162 333 143 367 391 171 27 248 337 152 254 405 265 188 364 193 401 241 184 249 385 176 357 427 166 270 2 12 342 221 397 296 25 353 382 281 371 205 127 214 181 110 243 233 112 87 58 408 425 320 189 292 279 126 81 227 122 135 59 174 311 406 327 157 289 92 91 423 355 273 88 398 41 155 322 417 29 11 325 402 246 160 21 225 358 36 263 269 148 314 3 186 212 226 394 138 98 224 251 18 5 76 17 396 13 89 219 153 238 399 136 324 223 132 418 213 96 229 35 255 369 389 129 80 404 400 54 107 180 23 228 69 183 392 4 390 274 19 286 15 +50 56 203 113 163 202 78 44 385 220 374 266 141 57 159 207 388 376 34 356 295 95 31 68 67 411 120 253 1 291 47 307 49 410 288 178 362 85 182 348 63 9 237 64 93 247 51 7 70 345 383 346 239 310 99 309 82 308 33 61 409 331 111 261 379 375 218 422 131 350 18 352 429 334 86 321 208 102 150 109 103 187 14 164 221 430 38 230 185 165 30 149 256 434 119 272 323 133 393 294 298 94 278 192 401 201 363 176 48 139 354 231 344 24 128 305 312 190 373 114 39 147 367 167 168 412 319 297 315 140 123 175 339 161 205 407 106 143 116 27 6 77 328 370 240 42 329 368 431 65 252 318 25 196 421 122 169 258 22 66 285 144 71 170 121 428 420 330 153 117 302 90 130 26 88 193 28 151 105 419 172 338 108 259 365 424 280 216 11 267 300 262 387 115 43 351 211 154 391 188 177 284 395 377 173 134 162 386 217 426 16 281 97 210 416 320 414 73 100 427 244 313 197 138 341 306 174 79 166 209 293 158 46 435 287 29 12 125 397 250 337 52 236 37 214 366 248 380 242 191 283 361 264 101 198 145 360 10 349 340 204 155 359 179 84 403 232 304 347 137 189 268 92 273 184 20 265 343 417 327 342 405 74 301 17 152 171 275 378 223 415 235 408 299 277 194 276 127 432 246 199 135 83 413 279 325 195 148 326 303 55 229 72 75 206 263 62 245 107 200 225 381 314 332 222 241 215 271 311 317 183 372 126 226 355 129 335 157 45 282 23 433 357 418 234 260 98 257 60 2 270 4 132 251 89 112 353 382 118 296 384 8 243 254 87 333 212 290 3 316 156 394 336 255 292 402 13 136 371 124 69 238 224 53 364 227 110 59 36 249 142 406 76 233 160 32 146 35 58 80 398 41 324 40 423 400 219 19 21 396 186 213 96 81 425 181 358 274 289 104 389 399 228 180 54 322 269 5 369 404 392 390 286 91 15 +237 39 50 403 318 64 220 331 1 239 141 163 154 179 133 433 411 349 191 203 303 297 26 187 386 116 196 192 202 117 306 31 63 115 131 258 90 247 310 159 261 103 319 78 298 367 379 101 147 305 123 43 113 295 52 413 430 209 128 201 109 7 119 79 294 266 20 376 256 250 51 412 190 61 204 82 121 144 315 111 275 95 84 362 301 426 114 93 224 132 432 340 253 56 338 351 208 352 218 161 130 231 240 366 62 195 409 334 230 308 216 146 232 170 431 3 169 67 221 288 207 181 359 356 276 125 346 106 53 360 86 363 100 244 342 193 268 378 166 167 168 34 312 259 329 281 177 381 419 420 380 243 85 94 343 99 341 65 365 370 235 350 339 124 291 348 236 70 262 330 46 397 206 267 59 373 257 387 197 222 384 321 172 217 249 242 271 278 424 414 353 382 393 184 416 317 427 194 140 364 234 347 292 254 186 176 162 42 14 199 110 189 233 421 273 47 422 372 157 73 241 344 326 345 10 405 158 270 137 272 406 316 374 71 165 264 112 361 97 395 77 332 32 287 358 16 407 309 185 399 21 200 354 368 284 435 178 282 126 28 57 127 307 120 151 415 58 428 175 142 160 2 304 394 35 145 293 69 260 139 105 88 279 87 36 74 198 8 229 377 335 296 269 9 280 398 55 252 83 12 37 265 164 188 383 33 66 174 211 156 357 45 38 302 434 401 118 417 283 75 72 210 30 89 24 323 104 313 408 98 149 214 245 285 223 325 205 227 23 173 148 134 248 226 29 6 96 40 155 425 333 60 171 396 299 290 68 150 41 311 389 418 314 213 215 27 108 22 17 324 289 320 251 212 371 138 153 385 135 81 143 183 225 13 423 136 375 219 92 402 122 328 404 238 129 44 390 5 327 277 182 152 11 322 263 429 76 102 246 228 410 18 255 336 337 388 91 19 355 286 49 274 107 300 48 25 54 369 80 400 4 15 392 180 391 +220 51 231 67 237 39 266 395 109 310 100 64 163 203 82 31 202 7 331 430 393 29 113 411 159 379 356 312 1 301 372 154 12 295 130 431 348 376 63 208 352 165 291 253 363 380 256 196 42 99 147 334 116 419 50 230 78 144 179 190 119 93 52 201 103 43 30 247 412 305 85 416 351 350 141 207 86 261 294 422 131 32 167 168 368 26 120 24 117 192 65 239 175 306 326 298 275 362 258 152 185 267 240 235 308 140 71 146 90 123 349 56 340 315 57 115 241 339 346 97 409 95 46 415 374 250 365 318 232 216 209 77 101 79 330 313 169 284 161 6 366 338 321 177 297 359 278 360 170 20 332 377 164 187 288 70 354 195 434 433 378 204 191 428 14 111 257 384 283 320 133 345 347 357 268 106 94 61 142 259 45 128 424 302 421 420 386 311 112 33 373 72 262 173 413 206 426 197 124 405 383 84 157 62 335 397 281 66 290 125 158 9 319 329 245 174 361 414 323 114 272 285 417 218 309 47 293 55 200 155 37 432 403 10 427 41 156 344 435 396 83 367 394 341 2 135 375 299 162 105 199 3 407 16 40 364 178 172 381 280 371 28 34 176 342 18 59 121 224 222 327 198 418 139 87 370 287 137 74 184 68 188 73 254 236 44 260 166 38 244 387 149 398 406 264 233 303 226 150 221 36 252 21 189 317 151 282 408 8 314 425 307 292 194 127 234 214 217 265 143 343 88 11 212 271 249 273 404 193 205 296 399 145 358 22 69 35 75 160 27 132 276 238 107 246 248 401 4 211 58 429 181 225 353 382 385 392 60 243 304 53 89 289 242 325 300 213 96 322 277 148 210 81 110 219 17 171 5 153 270 122 102 402 279 333 229 13 182 316 54 108 255 183 227 134 423 98 126 186 263 223 138 118 104 129 410 324 215 136 251 388 25 49 92 390 328 48 369 269 337 19 91 389 23 355 80 400 336 228 76 391 286 274 15 180 +409 82 412 379 203 136 202 237 312 67 417 144 314 229 415 418 51 164 31 109 220 155 50 183 165 302 310 23 123 430 7 116 135 393 214 99 331 79 141 373 179 119 411 1 29 64 351 362 35 97 291 159 258 315 113 131 305 147 103 190 240 69 301 356 86 363 348 125 303 173 285 349 20 88 43 201 30 365 426 90 128 294 284 295 239 73 192 231 37 261 360 63 117 306 431 247 213 197 405 420 427 235 56 318 154 208 207 384 106 12 313 359 26 386 311 340 161 323 250 395 297 85 320 209 276 170 101 222 265 62 241 169 256 216 254 413 264 39 275 233 198 187 140 175 78 368 243 380 339 200 414 196 130 9 124 84 121 283 372 236 70 10 47 278 433 346 65 227 352 288 267 114 186 3 298 111 16 403 251 333 206 185 423 152 364 57 145 419 224 259 329 143 282 2 163 330 71 425 149 226 361 334 253 394 321 435 162 383 66 177 45 397 193 34 127 191 408 345 232 338 46 100 230 292 151 266 225 24 317 184 387 52 146 167 168 238 343 341 424 13 257 357 398 342 407 219 77 367 326 105 93 249 133 428 374 347 28 95 319 61 422 218 221 272 280 370 156 115 139 366 150 53 217 120 204 242 350 199 344 58 188 262 358 40 38 273 223 308 293 14 195 281 194 21 304 322 332 178 296 176 396 44 174 181 402 399 378 268 157 59 6 22 205 248 137 287 189 434 385 244 32 335 421 27 55 406 324 432 87 89 129 74 118 166 132 234 255 36 354 289 327 246 158 375 160 212 142 112 110 416 290 68 60 75 81 389 171 172 33 72 148 94 307 376 153 5 271 83 279 300 325 390 377 309 404 353 382 369 381 245 80 42 400 96 429 126 299 260 371 252 18 270 410 277 228 211 134 210 25 328 316 41 102 17 11 48 182 274 355 54 108 401 269 122 8 15 107 138 263 215 104 388 49 76 98 4 391 92 286 180 91 336 337 392 19 +237 192 103 261 331 61 247 258 334 39 141 63 259 294 288 67 147 85 428 159 267 109 220 204 60 203 202 379 366 7 163 362 1 205 196 117 46 82 86 346 244 217 411 329 133 31 315 201 298 352 230 430 50 169 130 253 79 170 317 365 232 342 378 350 413 310 384 161 245 256 349 51 363 308 262 90 28 187 112 121 189 218 174 154 312 295 356 113 64 190 128 20 291 99 144 330 351 280 297 123 26 177 235 302 431 106 58 179 77 209 119 52 176 380 56 214 284 318 34 376 354 381 116 426 240 424 84 216 188 305 57 348 339 372 191 412 134 250 184 151 281 131 231 175 306 65 340 211 293 266 78 206 167 168 40 275 43 178 289 370 268 292 173 156 387 114 279 93 278 309 199 254 172 420 361 140 24 115 422 239 14 125 222 158 367 111 194 185 409 9 197 88 101 416 138 414 421 105 210 100 200 135 223 236 97 241 386 338 415 165 401 403 332 62 16 136 66 433 208 432 283 271 94 10 304 157 181 95 395 341 164 343 59 368 226 272 233 195 70 359 333 427 227 360 321 285 38 434 32 345 73 83 319 87 225 393 229 373 160 316 252 301 353 382 243 323 335 12 326 71 171 273 270 425 146 249 320 145 30 29 435 37 303 264 419 344 198 183 311 110 276 18 374 120 27 33 357 364 36 13 69 396 314 139 397 118 287 42 55 260 193 142 282 45 300 124 358 149 405 347 322 22 234 313 371 137 257 224 207 269 290 155 166 89 377 47 399 213 407 3 221 2 81 53 423 44 6 263 143 98 394 406 325 96 296 408 299 21 410 127 248 68 150 328 148 398 132 417 228 162 72 186 383 402 307 35 25 355 242 74 48 336 277 251 108 41 104 238 327 54 75 126 4 219 23 153 418 404 212 92 76 429 215 129 265 152 255 182 400 390 286 324 17 385 8 5 102 388 15 389 122 107 375 91 11 80 337 369 246 180 49 392 391 19 274 diff --git a/test-B/pictures/00a65da32053a633e024b77fc9f9ba3e.png b/test-B/pictures/00a65da32053a633e024b77fc9f9ba3e.png new file mode 100644 index 0000000..4ae0845 Binary files /dev/null and b/test-B/pictures/00a65da32053a633e024b77fc9f9ba3e.png differ diff --git a/test-B/pictures/01f63b76c8e4e5b6b54a49befc3b7455.png b/test-B/pictures/01f63b76c8e4e5b6b54a49befc3b7455.png new file mode 100644 index 0000000..ec2479b Binary files /dev/null and b/test-B/pictures/01f63b76c8e4e5b6b54a49befc3b7455.png differ diff --git a/test-B/pictures/0217b6c670578dd3ca2c885123899e41.png b/test-B/pictures/0217b6c670578dd3ca2c885123899e41.png new file mode 100644 index 0000000..0f3f9a1 Binary files /dev/null and b/test-B/pictures/0217b6c670578dd3ca2c885123899e41.png differ diff --git a/test-B/pictures/021cbb34f51086168f1310373162bc49.png b/test-B/pictures/021cbb34f51086168f1310373162bc49.png new file mode 100644 index 0000000..e2b5a11 Binary files /dev/null and b/test-B/pictures/021cbb34f51086168f1310373162bc49.png differ diff --git a/test-B/pictures/0251d8459ff30bd6f072ec95d0056570.png b/test-B/pictures/0251d8459ff30bd6f072ec95d0056570.png new file mode 100644 index 0000000..e93e9af Binary files /dev/null and b/test-B/pictures/0251d8459ff30bd6f072ec95d0056570.png differ diff --git a/test-B/pictures/0255d85136815f8b0246d599315a21ec.png b/test-B/pictures/0255d85136815f8b0246d599315a21ec.png new file mode 100644 index 0000000..a5a7436 Binary files /dev/null and b/test-B/pictures/0255d85136815f8b0246d599315a21ec.png differ diff --git a/test-B/pictures/02924174a1d5201f022b002531c1d0fa.png b/test-B/pictures/02924174a1d5201f022b002531c1d0fa.png new file mode 100644 index 0000000..da8d252 Binary files /dev/null and b/test-B/pictures/02924174a1d5201f022b002531c1d0fa.png differ diff --git a/test-B/pictures/02ea529c8b325fb87daa71ad83f05c3a.png b/test-B/pictures/02ea529c8b325fb87daa71ad83f05c3a.png new file mode 100644 index 0000000..0605a0c Binary files /dev/null and b/test-B/pictures/02ea529c8b325fb87daa71ad83f05c3a.png differ diff --git a/test-B/pictures/03aab9837854ac1a457802c6c7c2aad5.png b/test-B/pictures/03aab9837854ac1a457802c6c7c2aad5.png new file mode 100644 index 0000000..6063c42 Binary files /dev/null and b/test-B/pictures/03aab9837854ac1a457802c6c7c2aad5.png differ diff --git a/test-B/pictures/0452e3fc8c7111fd9db7963f2ca814a6.png b/test-B/pictures/0452e3fc8c7111fd9db7963f2ca814a6.png new file mode 100644 index 0000000..4db15b0 Binary files /dev/null and b/test-B/pictures/0452e3fc8c7111fd9db7963f2ca814a6.png differ diff --git a/test-B/pictures/052bfca1602bd9a30c5543a810653573.png b/test-B/pictures/052bfca1602bd9a30c5543a810653573.png new file mode 100644 index 0000000..e8e765a Binary files /dev/null and b/test-B/pictures/052bfca1602bd9a30c5543a810653573.png differ diff --git a/test-B/pictures/0537c0a10766fcb26e89b200f6fd24fe.png b/test-B/pictures/0537c0a10766fcb26e89b200f6fd24fe.png new file mode 100644 index 0000000..19207e2 Binary files /dev/null and b/test-B/pictures/0537c0a10766fcb26e89b200f6fd24fe.png differ diff --git a/test-B/pictures/0572b8ec5b814618a8aa38483d22edc0.png b/test-B/pictures/0572b8ec5b814618a8aa38483d22edc0.png new file mode 100644 index 0000000..3352e38 Binary files /dev/null and b/test-B/pictures/0572b8ec5b814618a8aa38483d22edc0.png differ diff --git a/test-B/pictures/080b05b0deff0a04015e226c6b487577.png b/test-B/pictures/080b05b0deff0a04015e226c6b487577.png new file mode 100644 index 0000000..cf386ad Binary files /dev/null and b/test-B/pictures/080b05b0deff0a04015e226c6b487577.png differ diff --git a/test-B/pictures/0887f7aaa4cc9e4ba6f2ad124edff293.png b/test-B/pictures/0887f7aaa4cc9e4ba6f2ad124edff293.png new file mode 100644 index 0000000..2eec4ec Binary files /dev/null and b/test-B/pictures/0887f7aaa4cc9e4ba6f2ad124edff293.png differ diff --git a/test-B/pictures/09008967926f856bde158f8029e47713.png b/test-B/pictures/09008967926f856bde158f8029e47713.png new file mode 100644 index 0000000..b013e4d Binary files /dev/null and b/test-B/pictures/09008967926f856bde158f8029e47713.png differ diff --git a/test-B/pictures/0a64cf9ef23b4ac03d6b0c7881ecafab.png b/test-B/pictures/0a64cf9ef23b4ac03d6b0c7881ecafab.png new file mode 100644 index 0000000..5da8422 Binary files /dev/null and b/test-B/pictures/0a64cf9ef23b4ac03d6b0c7881ecafab.png differ diff --git a/test-B/pictures/0aceb9893188c7dabd6131d081583acd.png b/test-B/pictures/0aceb9893188c7dabd6131d081583acd.png new file mode 100644 index 0000000..948c15f Binary files /dev/null and b/test-B/pictures/0aceb9893188c7dabd6131d081583acd.png differ diff --git a/test-B/pictures/0b8575c4f1877db3d45ca3a8eb7542c8.png b/test-B/pictures/0b8575c4f1877db3d45ca3a8eb7542c8.png new file mode 100644 index 0000000..c7eebe8 Binary files /dev/null and b/test-B/pictures/0b8575c4f1877db3d45ca3a8eb7542c8.png differ diff --git a/test-B/pictures/0c9dfffaefa6d2f01f55849a0e7e03b6.png b/test-B/pictures/0c9dfffaefa6d2f01f55849a0e7e03b6.png new file mode 100644 index 0000000..f182656 Binary files /dev/null and b/test-B/pictures/0c9dfffaefa6d2f01f55849a0e7e03b6.png differ diff --git a/test-B/pictures/0d7407a2157cc726fdeb490f6a4cc963.png b/test-B/pictures/0d7407a2157cc726fdeb490f6a4cc963.png new file mode 100644 index 0000000..503791e Binary files /dev/null and b/test-B/pictures/0d7407a2157cc726fdeb490f6a4cc963.png differ diff --git a/test-B/pictures/0db6561affe97f1b5cea32176f95498f.png b/test-B/pictures/0db6561affe97f1b5cea32176f95498f.png new file mode 100644 index 0000000..74b7f3b Binary files /dev/null and b/test-B/pictures/0db6561affe97f1b5cea32176f95498f.png differ diff --git a/test-B/pictures/0f25bfa1500de4149aff84a0884c8484.png b/test-B/pictures/0f25bfa1500de4149aff84a0884c8484.png new file mode 100644 index 0000000..cb066bd Binary files /dev/null and b/test-B/pictures/0f25bfa1500de4149aff84a0884c8484.png differ diff --git a/test-B/pictures/10179be6842dceec3eb219bcda465430.png b/test-B/pictures/10179be6842dceec3eb219bcda465430.png new file mode 100644 index 0000000..c5ea519 Binary files /dev/null and b/test-B/pictures/10179be6842dceec3eb219bcda465430.png differ diff --git a/test-B/pictures/113036c48f89725f7f2a769bd5a1727c.png b/test-B/pictures/113036c48f89725f7f2a769bd5a1727c.png new file mode 100644 index 0000000..e9d7848 Binary files /dev/null and b/test-B/pictures/113036c48f89725f7f2a769bd5a1727c.png differ diff --git a/test-B/pictures/11b429e533dffc610f14078b4332a4fc.png b/test-B/pictures/11b429e533dffc610f14078b4332a4fc.png new file mode 100644 index 0000000..b945d62 Binary files /dev/null and b/test-B/pictures/11b429e533dffc610f14078b4332a4fc.png differ diff --git a/test-B/pictures/129a2ea58cea52676a25f100f21e8682.png b/test-B/pictures/129a2ea58cea52676a25f100f21e8682.png new file mode 100644 index 0000000..6d3214f Binary files /dev/null and b/test-B/pictures/129a2ea58cea52676a25f100f21e8682.png differ diff --git a/test-B/pictures/137d18c0783de593acb64e0e6cdd8182.png b/test-B/pictures/137d18c0783de593acb64e0e6cdd8182.png new file mode 100644 index 0000000..b130b3f Binary files /dev/null and b/test-B/pictures/137d18c0783de593acb64e0e6cdd8182.png differ diff --git a/test-B/pictures/13837d40f662da07d9939fa25994527f.png b/test-B/pictures/13837d40f662da07d9939fa25994527f.png new file mode 100644 index 0000000..d801b7e Binary files /dev/null and b/test-B/pictures/13837d40f662da07d9939fa25994527f.png differ diff --git a/test-B/pictures/15228d4ca4fa96a3cc20db8010292531.png b/test-B/pictures/15228d4ca4fa96a3cc20db8010292531.png new file mode 100644 index 0000000..813e4ae Binary files /dev/null and b/test-B/pictures/15228d4ca4fa96a3cc20db8010292531.png differ diff --git a/test-B/pictures/15d874572a781832f3c1e525cb5230a0.png b/test-B/pictures/15d874572a781832f3c1e525cb5230a0.png new file mode 100644 index 0000000..d0bca6f Binary files /dev/null and b/test-B/pictures/15d874572a781832f3c1e525cb5230a0.png differ diff --git a/test-B/pictures/165ac96100f90505cc9d8badc191a9c2.png b/test-B/pictures/165ac96100f90505cc9d8badc191a9c2.png new file mode 100644 index 0000000..66f3c40 Binary files /dev/null and b/test-B/pictures/165ac96100f90505cc9d8badc191a9c2.png differ diff --git a/test-B/pictures/168bdfed4f1cf4358527facc7b2f57c1.png b/test-B/pictures/168bdfed4f1cf4358527facc7b2f57c1.png new file mode 100644 index 0000000..02ef4ce Binary files /dev/null and b/test-B/pictures/168bdfed4f1cf4358527facc7b2f57c1.png differ diff --git a/test-B/pictures/1703b1af05218328721828b28c95a0b4.png b/test-B/pictures/1703b1af05218328721828b28c95a0b4.png new file mode 100644 index 0000000..4174c58 Binary files /dev/null and b/test-B/pictures/1703b1af05218328721828b28c95a0b4.png differ diff --git a/test-B/pictures/18703991fef6ed72a43c4280b71dc27f.png b/test-B/pictures/18703991fef6ed72a43c4280b71dc27f.png new file mode 100644 index 0000000..888c569 Binary files /dev/null and b/test-B/pictures/18703991fef6ed72a43c4280b71dc27f.png differ diff --git a/test-B/pictures/18e712a764035838eed17253141cd231.png b/test-B/pictures/18e712a764035838eed17253141cd231.png new file mode 100644 index 0000000..4374ed8 Binary files /dev/null and b/test-B/pictures/18e712a764035838eed17253141cd231.png differ diff --git a/test-B/pictures/197e48ed650e462efccc660ca5bc6124.png b/test-B/pictures/197e48ed650e462efccc660ca5bc6124.png new file mode 100644 index 0000000..e5b6c13 Binary files /dev/null and b/test-B/pictures/197e48ed650e462efccc660ca5bc6124.png differ diff --git a/test-B/pictures/19a627677f41c709440d4f983c3fbadc.png b/test-B/pictures/19a627677f41c709440d4f983c3fbadc.png new file mode 100644 index 0000000..f687f83 Binary files /dev/null and b/test-B/pictures/19a627677f41c709440d4f983c3fbadc.png differ diff --git a/test-B/pictures/1a152816afe0351ae8f65681ae93bafa.png b/test-B/pictures/1a152816afe0351ae8f65681ae93bafa.png new file mode 100644 index 0000000..e71c5c6 Binary files /dev/null and b/test-B/pictures/1a152816afe0351ae8f65681ae93bafa.png differ diff --git a/test-B/pictures/1ac5da1aef5ef9315dbb290805175092.png b/test-B/pictures/1ac5da1aef5ef9315dbb290805175092.png new file mode 100644 index 0000000..e9712eb Binary files /dev/null and b/test-B/pictures/1ac5da1aef5ef9315dbb290805175092.png differ diff --git a/test-B/pictures/1bf3966274ceea873e3b569bae9308a9.png b/test-B/pictures/1bf3966274ceea873e3b569bae9308a9.png new file mode 100644 index 0000000..c15134c Binary files /dev/null and b/test-B/pictures/1bf3966274ceea873e3b569bae9308a9.png differ diff --git a/test-B/pictures/1bffc282140c893888ae474f69ce1e1f.png b/test-B/pictures/1bffc282140c893888ae474f69ce1e1f.png new file mode 100644 index 0000000..aed239b Binary files /dev/null and b/test-B/pictures/1bffc282140c893888ae474f69ce1e1f.png differ diff --git a/test-B/pictures/1c5633592756a6f1f3f0e4edf3a0ecdf.png b/test-B/pictures/1c5633592756a6f1f3f0e4edf3a0ecdf.png new file mode 100644 index 0000000..1288e3d Binary files /dev/null and b/test-B/pictures/1c5633592756a6f1f3f0e4edf3a0ecdf.png differ diff --git a/test-B/pictures/1cf8bac93d7a1fea15332b30f5f5fd97.png b/test-B/pictures/1cf8bac93d7a1fea15332b30f5f5fd97.png new file mode 100644 index 0000000..cda8560 Binary files /dev/null and b/test-B/pictures/1cf8bac93d7a1fea15332b30f5f5fd97.png differ diff --git a/test-B/pictures/1d37df97fdd0f6b5d00e987e4daa430a.png b/test-B/pictures/1d37df97fdd0f6b5d00e987e4daa430a.png new file mode 100644 index 0000000..b551f7f Binary files /dev/null and b/test-B/pictures/1d37df97fdd0f6b5d00e987e4daa430a.png differ diff --git a/test-B/pictures/1d78d21604bf3543512496005cad02d8.png b/test-B/pictures/1d78d21604bf3543512496005cad02d8.png new file mode 100644 index 0000000..d4238ce Binary files /dev/null and b/test-B/pictures/1d78d21604bf3543512496005cad02d8.png differ diff --git a/test-B/pictures/1da723647e1c1c16b181547fec9f6d23.png b/test-B/pictures/1da723647e1c1c16b181547fec9f6d23.png new file mode 100644 index 0000000..08b15de Binary files /dev/null and b/test-B/pictures/1da723647e1c1c16b181547fec9f6d23.png differ diff --git a/test-B/pictures/1de3f01ed84858e7c6a75c6a32bfaaee.png b/test-B/pictures/1de3f01ed84858e7c6a75c6a32bfaaee.png new file mode 100644 index 0000000..cf1e202 Binary files /dev/null and b/test-B/pictures/1de3f01ed84858e7c6a75c6a32bfaaee.png differ diff --git a/test-B/pictures/1eea5461c06cbfee613487f446a06f8e.png b/test-B/pictures/1eea5461c06cbfee613487f446a06f8e.png new file mode 100644 index 0000000..92faa0a Binary files /dev/null and b/test-B/pictures/1eea5461c06cbfee613487f446a06f8e.png differ diff --git a/test-B/pictures/1f3589b72e8140f5c9e9b7757c871506.png b/test-B/pictures/1f3589b72e8140f5c9e9b7757c871506.png new file mode 100644 index 0000000..a3560fa Binary files /dev/null and b/test-B/pictures/1f3589b72e8140f5c9e9b7757c871506.png differ diff --git a/test-B/pictures/20d00f5b434aa6ee1121902c006f05c3.png b/test-B/pictures/20d00f5b434aa6ee1121902c006f05c3.png new file mode 100644 index 0000000..961091f Binary files /dev/null and b/test-B/pictures/20d00f5b434aa6ee1121902c006f05c3.png differ diff --git a/test-B/pictures/20f9c15952f3334448216340dd90a091.png b/test-B/pictures/20f9c15952f3334448216340dd90a091.png new file mode 100644 index 0000000..f5286f5 Binary files /dev/null and b/test-B/pictures/20f9c15952f3334448216340dd90a091.png differ diff --git a/test-B/pictures/21e4ff945d2ddfbcce46255fb61d8640.png b/test-B/pictures/21e4ff945d2ddfbcce46255fb61d8640.png new file mode 100644 index 0000000..4d1b550 Binary files /dev/null and b/test-B/pictures/21e4ff945d2ddfbcce46255fb61d8640.png differ diff --git a/test-B/pictures/2246477631acfe4a717f1d2b277cbf49.png b/test-B/pictures/2246477631acfe4a717f1d2b277cbf49.png new file mode 100644 index 0000000..b5c4736 Binary files /dev/null and b/test-B/pictures/2246477631acfe4a717f1d2b277cbf49.png differ diff --git a/test-B/pictures/2272729d1edf5e59ae3678e1b01a3414.png b/test-B/pictures/2272729d1edf5e59ae3678e1b01a3414.png new file mode 100644 index 0000000..4a5fa3f Binary files /dev/null and b/test-B/pictures/2272729d1edf5e59ae3678e1b01a3414.png differ diff --git a/test-B/pictures/233d6f643fa4e223add5a3cf771c888c.png b/test-B/pictures/233d6f643fa4e223add5a3cf771c888c.png new file mode 100644 index 0000000..0376172 Binary files /dev/null and b/test-B/pictures/233d6f643fa4e223add5a3cf771c888c.png differ diff --git a/test-B/pictures/23f0a2bf0e9073a5600cf61bd1b1b322.png b/test-B/pictures/23f0a2bf0e9073a5600cf61bd1b1b322.png new file mode 100644 index 0000000..a907cc2 Binary files /dev/null and b/test-B/pictures/23f0a2bf0e9073a5600cf61bd1b1b322.png differ diff --git a/test-B/pictures/24c4a804f92a24090435e593ebd4b368.png b/test-B/pictures/24c4a804f92a24090435e593ebd4b368.png new file mode 100644 index 0000000..925fb68 Binary files /dev/null and b/test-B/pictures/24c4a804f92a24090435e593ebd4b368.png differ diff --git a/test-B/pictures/25167d7504a8816e86a41b0095d54d4d.png b/test-B/pictures/25167d7504a8816e86a41b0095d54d4d.png new file mode 100644 index 0000000..68bf022 Binary files /dev/null and b/test-B/pictures/25167d7504a8816e86a41b0095d54d4d.png differ diff --git a/test-B/pictures/25264e1f07e2ce01aa668a2d40e2fd7c.png b/test-B/pictures/25264e1f07e2ce01aa668a2d40e2fd7c.png new file mode 100644 index 0000000..5a1c49d Binary files /dev/null and b/test-B/pictures/25264e1f07e2ce01aa668a2d40e2fd7c.png differ diff --git a/test-B/pictures/254dd2cd4faeb84e4b3f01d6ee208573.png b/test-B/pictures/254dd2cd4faeb84e4b3f01d6ee208573.png new file mode 100644 index 0000000..b08847d Binary files /dev/null and b/test-B/pictures/254dd2cd4faeb84e4b3f01d6ee208573.png differ diff --git a/test-B/pictures/25b8df7c08473af767c43a740b4edbb7.png b/test-B/pictures/25b8df7c08473af767c43a740b4edbb7.png new file mode 100644 index 0000000..8195c59 Binary files /dev/null and b/test-B/pictures/25b8df7c08473af767c43a740b4edbb7.png differ diff --git a/test-B/pictures/26d78fa55d64ed2e73d56416743339a1.png b/test-B/pictures/26d78fa55d64ed2e73d56416743339a1.png new file mode 100644 index 0000000..0b86b7a Binary files /dev/null and b/test-B/pictures/26d78fa55d64ed2e73d56416743339a1.png differ diff --git a/test-B/pictures/27b3acd979055bd052452d3168dcdc88.png b/test-B/pictures/27b3acd979055bd052452d3168dcdc88.png new file mode 100644 index 0000000..f28286d Binary files /dev/null and b/test-B/pictures/27b3acd979055bd052452d3168dcdc88.png differ diff --git a/test-B/pictures/29cc8dc8429c8d9f7ff04db3a7f78c3e.png b/test-B/pictures/29cc8dc8429c8d9f7ff04db3a7f78c3e.png new file mode 100644 index 0000000..9180e99 Binary files /dev/null and b/test-B/pictures/29cc8dc8429c8d9f7ff04db3a7f78c3e.png differ diff --git a/test-B/pictures/2a5017348c7f2556e4ba9d4512e00c2e.png b/test-B/pictures/2a5017348c7f2556e4ba9d4512e00c2e.png new file mode 100644 index 0000000..12ac403 Binary files /dev/null and b/test-B/pictures/2a5017348c7f2556e4ba9d4512e00c2e.png differ diff --git a/test-B/pictures/2a6cacbcd86560ec6093c66410a77285.png b/test-B/pictures/2a6cacbcd86560ec6093c66410a77285.png new file mode 100644 index 0000000..0c02cf9 Binary files /dev/null and b/test-B/pictures/2a6cacbcd86560ec6093c66410a77285.png differ diff --git a/test-B/pictures/2ac07c6b5f9a4fc0d410129aa0ad4bda.png b/test-B/pictures/2ac07c6b5f9a4fc0d410129aa0ad4bda.png new file mode 100644 index 0000000..053144c Binary files /dev/null and b/test-B/pictures/2ac07c6b5f9a4fc0d410129aa0ad4bda.png differ diff --git a/test-B/pictures/2b042109343033693e5af152552c4321.png b/test-B/pictures/2b042109343033693e5af152552c4321.png new file mode 100644 index 0000000..fb489ea Binary files /dev/null and b/test-B/pictures/2b042109343033693e5af152552c4321.png differ diff --git a/test-B/pictures/2b7171f7c470e142c0f903636956a278.png b/test-B/pictures/2b7171f7c470e142c0f903636956a278.png new file mode 100644 index 0000000..3cf63b0 Binary files /dev/null and b/test-B/pictures/2b7171f7c470e142c0f903636956a278.png differ diff --git a/test-B/pictures/2bac90d5b2c443e02ac0aae6ff78ce7e.png b/test-B/pictures/2bac90d5b2c443e02ac0aae6ff78ce7e.png new file mode 100644 index 0000000..0c146c6 Binary files /dev/null and b/test-B/pictures/2bac90d5b2c443e02ac0aae6ff78ce7e.png differ diff --git a/test-B/pictures/2bcd11abf8f6af88611798ee77ed14fd.png b/test-B/pictures/2bcd11abf8f6af88611798ee77ed14fd.png new file mode 100644 index 0000000..4158847 Binary files /dev/null and b/test-B/pictures/2bcd11abf8f6af88611798ee77ed14fd.png differ diff --git a/test-B/pictures/2cf93fa226d1d71776700c69831315ab.png b/test-B/pictures/2cf93fa226d1d71776700c69831315ab.png new file mode 100644 index 0000000..c0d228e Binary files /dev/null and b/test-B/pictures/2cf93fa226d1d71776700c69831315ab.png differ diff --git a/test-B/pictures/2d4f80e71de0edfb16778bd66316ee39.png b/test-B/pictures/2d4f80e71de0edfb16778bd66316ee39.png new file mode 100644 index 0000000..dc14e73 Binary files /dev/null and b/test-B/pictures/2d4f80e71de0edfb16778bd66316ee39.png differ diff --git a/test-B/pictures/2e35ba91ff0e43c5d08c8c55e6be5095.png b/test-B/pictures/2e35ba91ff0e43c5d08c8c55e6be5095.png new file mode 100644 index 0000000..af8f02f Binary files /dev/null and b/test-B/pictures/2e35ba91ff0e43c5d08c8c55e6be5095.png differ diff --git a/test-B/pictures/2f43cc28e19be9e125633b10737455ef.png b/test-B/pictures/2f43cc28e19be9e125633b10737455ef.png new file mode 100644 index 0000000..f819e2a Binary files /dev/null and b/test-B/pictures/2f43cc28e19be9e125633b10737455ef.png differ diff --git a/test-B/pictures/2f6253f352d6db84664e632289ef7c93.png b/test-B/pictures/2f6253f352d6db84664e632289ef7c93.png new file mode 100644 index 0000000..b8e8142 Binary files /dev/null and b/test-B/pictures/2f6253f352d6db84664e632289ef7c93.png differ diff --git a/test-B/pictures/2f7b2c44b2883b783e4291cfde4132c0.png b/test-B/pictures/2f7b2c44b2883b783e4291cfde4132c0.png new file mode 100644 index 0000000..b977110 Binary files /dev/null and b/test-B/pictures/2f7b2c44b2883b783e4291cfde4132c0.png differ diff --git a/test-B/pictures/2fb5a032e57566107112eae35587c08e.png b/test-B/pictures/2fb5a032e57566107112eae35587c08e.png new file mode 100644 index 0000000..d8bb447 Binary files /dev/null and b/test-B/pictures/2fb5a032e57566107112eae35587c08e.png differ diff --git a/test-B/pictures/2fe554b859213446614e2552688a8573.png b/test-B/pictures/2fe554b859213446614e2552688a8573.png new file mode 100644 index 0000000..9c143bf Binary files /dev/null and b/test-B/pictures/2fe554b859213446614e2552688a8573.png differ diff --git a/test-B/pictures/314d9033f5d1df169f4523b5020bf8f0.png b/test-B/pictures/314d9033f5d1df169f4523b5020bf8f0.png new file mode 100644 index 0000000..4a33533 Binary files /dev/null and b/test-B/pictures/314d9033f5d1df169f4523b5020bf8f0.png differ diff --git a/test-B/pictures/31a3ba9e49b2316a44804f9b11841a74.png b/test-B/pictures/31a3ba9e49b2316a44804f9b11841a74.png new file mode 100644 index 0000000..16b2f11 Binary files /dev/null and b/test-B/pictures/31a3ba9e49b2316a44804f9b11841a74.png differ diff --git a/test-B/pictures/3264a67ec295cf65e369e6befbee03e8.png b/test-B/pictures/3264a67ec295cf65e369e6befbee03e8.png new file mode 100644 index 0000000..ee0d5ee Binary files /dev/null and b/test-B/pictures/3264a67ec295cf65e369e6befbee03e8.png differ diff --git a/test-B/pictures/33c0f615857f9c89878892da4bb5e5c5.png b/test-B/pictures/33c0f615857f9c89878892da4bb5e5c5.png new file mode 100644 index 0000000..b7a054b Binary files /dev/null and b/test-B/pictures/33c0f615857f9c89878892da4bb5e5c5.png differ diff --git a/test-B/pictures/33da9fa1862afb173452276fa9477f4d.png b/test-B/pictures/33da9fa1862afb173452276fa9477f4d.png new file mode 100644 index 0000000..72dfc1a Binary files /dev/null and b/test-B/pictures/33da9fa1862afb173452276fa9477f4d.png differ diff --git a/test-B/pictures/343a027d70f356bc08918467abf5ad5b.png b/test-B/pictures/343a027d70f356bc08918467abf5ad5b.png new file mode 100644 index 0000000..1046f3b Binary files /dev/null and b/test-B/pictures/343a027d70f356bc08918467abf5ad5b.png differ diff --git a/test-B/pictures/349b075a14a3e9e241434f53f2cd1d3a.png b/test-B/pictures/349b075a14a3e9e241434f53f2cd1d3a.png new file mode 100644 index 0000000..5f36b77 Binary files /dev/null and b/test-B/pictures/349b075a14a3e9e241434f53f2cd1d3a.png differ diff --git a/test-B/pictures/3591e09e43d8141cb084920edf9e7b33.png b/test-B/pictures/3591e09e43d8141cb084920edf9e7b33.png new file mode 100644 index 0000000..37e27fc Binary files /dev/null and b/test-B/pictures/3591e09e43d8141cb084920edf9e7b33.png differ diff --git a/test-B/pictures/35ed452eefa905b7ffdd3269675899b3.png b/test-B/pictures/35ed452eefa905b7ffdd3269675899b3.png new file mode 100644 index 0000000..1a19ec2 Binary files /dev/null and b/test-B/pictures/35ed452eefa905b7ffdd3269675899b3.png differ diff --git a/test-B/pictures/368c103bad1e2528668fd9763e4671a3.png b/test-B/pictures/368c103bad1e2528668fd9763e4671a3.png new file mode 100644 index 0000000..e08d6de Binary files /dev/null and b/test-B/pictures/368c103bad1e2528668fd9763e4671a3.png differ diff --git a/test-B/pictures/385a87885afcef7e0c6255078f82bc2f.png b/test-B/pictures/385a87885afcef7e0c6255078f82bc2f.png new file mode 100644 index 0000000..4c43b3e Binary files /dev/null and b/test-B/pictures/385a87885afcef7e0c6255078f82bc2f.png differ diff --git a/test-B/pictures/393624b2c3994c85d154fd8d1afd2443.png b/test-B/pictures/393624b2c3994c85d154fd8d1afd2443.png new file mode 100644 index 0000000..ec731bc Binary files /dev/null and b/test-B/pictures/393624b2c3994c85d154fd8d1afd2443.png differ diff --git a/test-B/pictures/39a06ca05fe20996dbe910879ea263e3.png b/test-B/pictures/39a06ca05fe20996dbe910879ea263e3.png new file mode 100644 index 0000000..907490d Binary files /dev/null and b/test-B/pictures/39a06ca05fe20996dbe910879ea263e3.png differ diff --git a/test-B/pictures/39a13c73cd71a632e8cbd950dbafc49d.png b/test-B/pictures/39a13c73cd71a632e8cbd950dbafc49d.png new file mode 100644 index 0000000..1dc5a90 Binary files /dev/null and b/test-B/pictures/39a13c73cd71a632e8cbd950dbafc49d.png differ diff --git a/test-B/pictures/3a284704b6917e66742c25f2b7177c52.png b/test-B/pictures/3a284704b6917e66742c25f2b7177c52.png new file mode 100644 index 0000000..ef8004c Binary files /dev/null and b/test-B/pictures/3a284704b6917e66742c25f2b7177c52.png differ diff --git a/test-B/pictures/3a80b2743e147138eeff6f7086a4164c.png b/test-B/pictures/3a80b2743e147138eeff6f7086a4164c.png new file mode 100644 index 0000000..df3a734 Binary files /dev/null and b/test-B/pictures/3a80b2743e147138eeff6f7086a4164c.png differ diff --git a/test-B/pictures/3ae0966a716d2e0d7cb53da36b30887e.png b/test-B/pictures/3ae0966a716d2e0d7cb53da36b30887e.png new file mode 100644 index 0000000..64a376e Binary files /dev/null and b/test-B/pictures/3ae0966a716d2e0d7cb53da36b30887e.png differ diff --git a/test-B/pictures/3bb5d18becff7eedbfc0bb2be4d9f37c.png b/test-B/pictures/3bb5d18becff7eedbfc0bb2be4d9f37c.png new file mode 100644 index 0000000..0d31c50 Binary files /dev/null and b/test-B/pictures/3bb5d18becff7eedbfc0bb2be4d9f37c.png differ diff --git a/test-B/pictures/3bbab19bb50308459e59e0613cf113e2.png b/test-B/pictures/3bbab19bb50308459e59e0613cf113e2.png new file mode 100644 index 0000000..d844dac Binary files /dev/null and b/test-B/pictures/3bbab19bb50308459e59e0613cf113e2.png differ diff --git a/test-B/pictures/3bccacb55e3e30bc79a75868ce2a76ef.png b/test-B/pictures/3bccacb55e3e30bc79a75868ce2a76ef.png new file mode 100644 index 0000000..251b61c Binary files /dev/null and b/test-B/pictures/3bccacb55e3e30bc79a75868ce2a76ef.png differ diff --git a/test-B/pictures/3c8cc31567c5f23200e5a94e1ef8475e.png b/test-B/pictures/3c8cc31567c5f23200e5a94e1ef8475e.png new file mode 100644 index 0000000..e1958ec Binary files /dev/null and b/test-B/pictures/3c8cc31567c5f23200e5a94e1ef8475e.png differ diff --git a/test-B/pictures/3cf4a89eeaa4fdb6be80adc4b3de5156.png b/test-B/pictures/3cf4a89eeaa4fdb6be80adc4b3de5156.png new file mode 100644 index 0000000..cbdb662 Binary files /dev/null and b/test-B/pictures/3cf4a89eeaa4fdb6be80adc4b3de5156.png differ diff --git a/test-B/pictures/3d21edffd3c542abedc43479093b51fb.png b/test-B/pictures/3d21edffd3c542abedc43479093b51fb.png new file mode 100644 index 0000000..3cea3d9 Binary files /dev/null and b/test-B/pictures/3d21edffd3c542abedc43479093b51fb.png differ diff --git a/test-B/pictures/3e417eeb0c6184d80d1056c44e6eff05.png b/test-B/pictures/3e417eeb0c6184d80d1056c44e6eff05.png new file mode 100644 index 0000000..f100075 Binary files /dev/null and b/test-B/pictures/3e417eeb0c6184d80d1056c44e6eff05.png differ diff --git a/test-B/pictures/3e4a5499ecb52c160cf0dfb43104d27d.png b/test-B/pictures/3e4a5499ecb52c160cf0dfb43104d27d.png new file mode 100644 index 0000000..cd07e71 Binary files /dev/null and b/test-B/pictures/3e4a5499ecb52c160cf0dfb43104d27d.png differ diff --git a/test-B/pictures/42715fb2879592c74749a9df3caf7bbe.png b/test-B/pictures/42715fb2879592c74749a9df3caf7bbe.png new file mode 100644 index 0000000..3e79e1b Binary files /dev/null and b/test-B/pictures/42715fb2879592c74749a9df3caf7bbe.png differ diff --git a/test-B/pictures/4394a34ebb982e70196982da27336a24.png b/test-B/pictures/4394a34ebb982e70196982da27336a24.png new file mode 100644 index 0000000..2441ad1 Binary files /dev/null and b/test-B/pictures/4394a34ebb982e70196982da27336a24.png differ diff --git a/test-B/pictures/4496d873988165e25190e80b47cf684c.png b/test-B/pictures/4496d873988165e25190e80b47cf684c.png new file mode 100644 index 0000000..b5280f8 Binary files /dev/null and b/test-B/pictures/4496d873988165e25190e80b47cf684c.png differ diff --git a/test-B/pictures/450945cd72c6170a102e93aad3ab8bc0.png b/test-B/pictures/450945cd72c6170a102e93aad3ab8bc0.png new file mode 100644 index 0000000..f9cfad8 Binary files /dev/null and b/test-B/pictures/450945cd72c6170a102e93aad3ab8bc0.png differ diff --git a/test-B/pictures/45c28d487625ff85cc791ba3daf8acb0.png b/test-B/pictures/45c28d487625ff85cc791ba3daf8acb0.png new file mode 100644 index 0000000..f95baa8 Binary files /dev/null and b/test-B/pictures/45c28d487625ff85cc791ba3daf8acb0.png differ diff --git a/test-B/pictures/46df9b464452f398569087d346969b02.png b/test-B/pictures/46df9b464452f398569087d346969b02.png new file mode 100644 index 0000000..59c8be2 Binary files /dev/null and b/test-B/pictures/46df9b464452f398569087d346969b02.png differ diff --git a/test-B/pictures/47e6745c77c4464ad5b38253f80695c5.png b/test-B/pictures/47e6745c77c4464ad5b38253f80695c5.png new file mode 100644 index 0000000..5374e16 Binary files /dev/null and b/test-B/pictures/47e6745c77c4464ad5b38253f80695c5.png differ diff --git a/test-B/pictures/488ccd27b10c2bfe7753814d629903d5.png b/test-B/pictures/488ccd27b10c2bfe7753814d629903d5.png new file mode 100644 index 0000000..ea1d525 Binary files /dev/null and b/test-B/pictures/488ccd27b10c2bfe7753814d629903d5.png differ diff --git a/test-B/pictures/4a69fdcb96c1077446953461939447fe.png b/test-B/pictures/4a69fdcb96c1077446953461939447fe.png new file mode 100644 index 0000000..3b21186 Binary files /dev/null and b/test-B/pictures/4a69fdcb96c1077446953461939447fe.png differ diff --git a/test-B/pictures/4a713d9ea03c62c242c77decbaa2eac3.png b/test-B/pictures/4a713d9ea03c62c242c77decbaa2eac3.png new file mode 100644 index 0000000..f9042f6 Binary files /dev/null and b/test-B/pictures/4a713d9ea03c62c242c77decbaa2eac3.png differ diff --git a/test-B/pictures/4abe4e6f75d17a8eeebd31b178000e6e.png b/test-B/pictures/4abe4e6f75d17a8eeebd31b178000e6e.png new file mode 100644 index 0000000..af4daf8 Binary files /dev/null and b/test-B/pictures/4abe4e6f75d17a8eeebd31b178000e6e.png differ diff --git a/test-B/pictures/4accd29030e988f299b7631d7c53e014.png b/test-B/pictures/4accd29030e988f299b7631d7c53e014.png new file mode 100644 index 0000000..5120c9e Binary files /dev/null and b/test-B/pictures/4accd29030e988f299b7631d7c53e014.png differ diff --git a/test-B/pictures/4aec5167313427c5077c0fad0ae434c1.png b/test-B/pictures/4aec5167313427c5077c0fad0ae434c1.png new file mode 100644 index 0000000..7a41940 Binary files /dev/null and b/test-B/pictures/4aec5167313427c5077c0fad0ae434c1.png differ diff --git a/test-B/pictures/4bd940c4681586d534e376f41ab744df.png b/test-B/pictures/4bd940c4681586d534e376f41ab744df.png new file mode 100644 index 0000000..24273dc Binary files /dev/null and b/test-B/pictures/4bd940c4681586d534e376f41ab744df.png differ diff --git a/test-B/pictures/4e36a65a2c5ed39862f92c1cfd17e739.png b/test-B/pictures/4e36a65a2c5ed39862f92c1cfd17e739.png new file mode 100644 index 0000000..c5d94de Binary files /dev/null and b/test-B/pictures/4e36a65a2c5ed39862f92c1cfd17e739.png differ diff --git a/test-B/pictures/4ea420973e68996cd47f6a2c966cd6b7.png b/test-B/pictures/4ea420973e68996cd47f6a2c966cd6b7.png new file mode 100644 index 0000000..a74fc70 Binary files /dev/null and b/test-B/pictures/4ea420973e68996cd47f6a2c966cd6b7.png differ diff --git a/test-B/pictures/4eb84fd9056650499cc11d753f167a3d.png b/test-B/pictures/4eb84fd9056650499cc11d753f167a3d.png new file mode 100644 index 0000000..7230e67 Binary files /dev/null and b/test-B/pictures/4eb84fd9056650499cc11d753f167a3d.png differ diff --git a/test-B/pictures/4f61d9f068e65db2f4e80cf5c3876450.png b/test-B/pictures/4f61d9f068e65db2f4e80cf5c3876450.png new file mode 100644 index 0000000..c06faba Binary files /dev/null and b/test-B/pictures/4f61d9f068e65db2f4e80cf5c3876450.png differ diff --git a/test-B/pictures/4f7cc6eb714531ff2ea4bec0ba2fc609.png b/test-B/pictures/4f7cc6eb714531ff2ea4bec0ba2fc609.png new file mode 100644 index 0000000..69c988e Binary files /dev/null and b/test-B/pictures/4f7cc6eb714531ff2ea4bec0ba2fc609.png differ diff --git a/test-B/pictures/4fad76c757749d96cb13c3349c82d914.png b/test-B/pictures/4fad76c757749d96cb13c3349c82d914.png new file mode 100644 index 0000000..336483a Binary files /dev/null and b/test-B/pictures/4fad76c757749d96cb13c3349c82d914.png differ diff --git a/test-B/pictures/501945962095922e3ec2c06c2897dc44.png b/test-B/pictures/501945962095922e3ec2c06c2897dc44.png new file mode 100644 index 0000000..46393a8 Binary files /dev/null and b/test-B/pictures/501945962095922e3ec2c06c2897dc44.png differ diff --git a/test-B/pictures/508c5584ac5d297e2ee69d1040e3833d.png b/test-B/pictures/508c5584ac5d297e2ee69d1040e3833d.png new file mode 100644 index 0000000..2689430 Binary files /dev/null and b/test-B/pictures/508c5584ac5d297e2ee69d1040e3833d.png differ diff --git a/test-B/pictures/50e46ef8b2a2e95b22c4e286e1c49cf1.png b/test-B/pictures/50e46ef8b2a2e95b22c4e286e1c49cf1.png new file mode 100644 index 0000000..4578e05 Binary files /dev/null and b/test-B/pictures/50e46ef8b2a2e95b22c4e286e1c49cf1.png differ diff --git a/test-B/pictures/519da046e8a8d76e509c1f25b198baa0.png b/test-B/pictures/519da046e8a8d76e509c1f25b198baa0.png new file mode 100644 index 0000000..64196c5 Binary files /dev/null and b/test-B/pictures/519da046e8a8d76e509c1f25b198baa0.png differ diff --git a/test-B/pictures/51e7a95a8caa1ca8868c1b7489dd588c.png b/test-B/pictures/51e7a95a8caa1ca8868c1b7489dd588c.png new file mode 100644 index 0000000..ed148b4 Binary files /dev/null and b/test-B/pictures/51e7a95a8caa1ca8868c1b7489dd588c.png differ diff --git a/test-B/pictures/522ab240b886ec23c5e40f9cd7e5dafb.png b/test-B/pictures/522ab240b886ec23c5e40f9cd7e5dafb.png new file mode 100644 index 0000000..ccf36bf Binary files /dev/null and b/test-B/pictures/522ab240b886ec23c5e40f9cd7e5dafb.png differ diff --git a/test-B/pictures/528944e833711342c8e34baf56b9b8ba.png b/test-B/pictures/528944e833711342c8e34baf56b9b8ba.png new file mode 100644 index 0000000..a81ee92 Binary files /dev/null and b/test-B/pictures/528944e833711342c8e34baf56b9b8ba.png differ diff --git a/test-B/pictures/531153628c8f80eb43a648f418702801.png b/test-B/pictures/531153628c8f80eb43a648f418702801.png new file mode 100644 index 0000000..b454e14 Binary files /dev/null and b/test-B/pictures/531153628c8f80eb43a648f418702801.png differ diff --git a/test-B/pictures/53762e23af9ef775bfd841224ff86fee.png b/test-B/pictures/53762e23af9ef775bfd841224ff86fee.png new file mode 100644 index 0000000..b1193ca Binary files /dev/null and b/test-B/pictures/53762e23af9ef775bfd841224ff86fee.png differ diff --git a/test-B/pictures/542142e9224ad295112a0082811598de.png b/test-B/pictures/542142e9224ad295112a0082811598de.png new file mode 100644 index 0000000..106d0b7 Binary files /dev/null and b/test-B/pictures/542142e9224ad295112a0082811598de.png differ diff --git a/test-B/pictures/558e02d21a1cd8927008665e09cc8f7c.png b/test-B/pictures/558e02d21a1cd8927008665e09cc8f7c.png new file mode 100644 index 0000000..3096c2d Binary files /dev/null and b/test-B/pictures/558e02d21a1cd8927008665e09cc8f7c.png differ diff --git a/test-B/pictures/571bf7671fa0e963e26d3497f1dadfb6.png b/test-B/pictures/571bf7671fa0e963e26d3497f1dadfb6.png new file mode 100644 index 0000000..6b44cf6 Binary files /dev/null and b/test-B/pictures/571bf7671fa0e963e26d3497f1dadfb6.png differ diff --git a/test-B/pictures/5723b46bf94d3fb0df880837d5bc0450.png b/test-B/pictures/5723b46bf94d3fb0df880837d5bc0450.png new file mode 100644 index 0000000..501588a Binary files /dev/null and b/test-B/pictures/5723b46bf94d3fb0df880837d5bc0450.png differ diff --git a/test-B/pictures/57638a35fd70113cba549de4f20e9ff4.png b/test-B/pictures/57638a35fd70113cba549de4f20e9ff4.png new file mode 100644 index 0000000..ad143ba Binary files /dev/null and b/test-B/pictures/57638a35fd70113cba549de4f20e9ff4.png differ diff --git a/test-B/pictures/57e83531289b2f5aa2e2b3abf4b827f5.png b/test-B/pictures/57e83531289b2f5aa2e2b3abf4b827f5.png new file mode 100644 index 0000000..a6a23bf Binary files /dev/null and b/test-B/pictures/57e83531289b2f5aa2e2b3abf4b827f5.png differ diff --git a/test-B/pictures/57f0cf8327745a9a4e2fee229a0a247e.png b/test-B/pictures/57f0cf8327745a9a4e2fee229a0a247e.png new file mode 100644 index 0000000..b309f7f Binary files /dev/null and b/test-B/pictures/57f0cf8327745a9a4e2fee229a0a247e.png differ diff --git a/test-B/pictures/5a2a21067fd13cab354557bb7aac0889.png b/test-B/pictures/5a2a21067fd13cab354557bb7aac0889.png new file mode 100644 index 0000000..3d310eb Binary files /dev/null and b/test-B/pictures/5a2a21067fd13cab354557bb7aac0889.png differ diff --git a/test-B/pictures/5a43cd9f3f5d72bdfcd44e348dcf105b.png b/test-B/pictures/5a43cd9f3f5d72bdfcd44e348dcf105b.png new file mode 100644 index 0000000..e225494 Binary files /dev/null and b/test-B/pictures/5a43cd9f3f5d72bdfcd44e348dcf105b.png differ diff --git a/test-B/pictures/5ae5ada143d5e81d38b7bde4de71cabd.png b/test-B/pictures/5ae5ada143d5e81d38b7bde4de71cabd.png new file mode 100644 index 0000000..1b99b3f Binary files /dev/null and b/test-B/pictures/5ae5ada143d5e81d38b7bde4de71cabd.png differ diff --git a/test-B/pictures/5bead8776428072aa2c9342eee0ee037.png b/test-B/pictures/5bead8776428072aa2c9342eee0ee037.png new file mode 100644 index 0000000..1a08c4d Binary files /dev/null and b/test-B/pictures/5bead8776428072aa2c9342eee0ee037.png differ diff --git a/test-B/pictures/5c286586a1efe669eb37b36c13c832a5.png b/test-B/pictures/5c286586a1efe669eb37b36c13c832a5.png new file mode 100644 index 0000000..505d4be Binary files /dev/null and b/test-B/pictures/5c286586a1efe669eb37b36c13c832a5.png differ diff --git a/test-B/pictures/5c2993aa52c121be4c6e6918948b2163.png b/test-B/pictures/5c2993aa52c121be4c6e6918948b2163.png new file mode 100644 index 0000000..23613f5 Binary files /dev/null and b/test-B/pictures/5c2993aa52c121be4c6e6918948b2163.png differ diff --git a/test-B/pictures/5d2039fba4f44fad53654a27d52068c5.png b/test-B/pictures/5d2039fba4f44fad53654a27d52068c5.png new file mode 100644 index 0000000..6bc019e Binary files /dev/null and b/test-B/pictures/5d2039fba4f44fad53654a27d52068c5.png differ diff --git a/test-B/pictures/5de7aae5fed8243472962f904ff5cb27.png b/test-B/pictures/5de7aae5fed8243472962f904ff5cb27.png new file mode 100644 index 0000000..c7016d4 Binary files /dev/null and b/test-B/pictures/5de7aae5fed8243472962f904ff5cb27.png differ diff --git a/test-B/pictures/5e44ab1451f94de3e864ce05607f029e.png b/test-B/pictures/5e44ab1451f94de3e864ce05607f029e.png new file mode 100644 index 0000000..1e9fb5d Binary files /dev/null and b/test-B/pictures/5e44ab1451f94de3e864ce05607f029e.png differ diff --git a/test-B/pictures/5f3f6363d692ac4dd2f584c1a254066a.png b/test-B/pictures/5f3f6363d692ac4dd2f584c1a254066a.png new file mode 100644 index 0000000..f964080 Binary files /dev/null and b/test-B/pictures/5f3f6363d692ac4dd2f584c1a254066a.png differ diff --git a/test-B/pictures/5fd8f5edf58d68925a7bfbb12e5749f7.png b/test-B/pictures/5fd8f5edf58d68925a7bfbb12e5749f7.png new file mode 100644 index 0000000..322221d Binary files /dev/null and b/test-B/pictures/5fd8f5edf58d68925a7bfbb12e5749f7.png differ diff --git a/test-B/pictures/6134662fb25f5fed8c5b19a2e70ffa7f.png b/test-B/pictures/6134662fb25f5fed8c5b19a2e70ffa7f.png new file mode 100644 index 0000000..5ab940c Binary files /dev/null and b/test-B/pictures/6134662fb25f5fed8c5b19a2e70ffa7f.png differ diff --git a/test-B/pictures/614e94ae4621135b795f1b85caa48079.png b/test-B/pictures/614e94ae4621135b795f1b85caa48079.png new file mode 100644 index 0000000..085d3c8 Binary files /dev/null and b/test-B/pictures/614e94ae4621135b795f1b85caa48079.png differ diff --git a/test-B/pictures/6156a05cc8f4cb3f5a48343e67394784.png b/test-B/pictures/6156a05cc8f4cb3f5a48343e67394784.png new file mode 100644 index 0000000..cf7c273 Binary files /dev/null and b/test-B/pictures/6156a05cc8f4cb3f5a48343e67394784.png differ diff --git a/test-B/pictures/6457a1568f39360c93a119cf9741d3c6.png b/test-B/pictures/6457a1568f39360c93a119cf9741d3c6.png new file mode 100644 index 0000000..e4de83f Binary files /dev/null and b/test-B/pictures/6457a1568f39360c93a119cf9741d3c6.png differ diff --git a/test-B/pictures/6489e369e29210cbcf5c1ab7b1ea06ac.png b/test-B/pictures/6489e369e29210cbcf5c1ab7b1ea06ac.png new file mode 100644 index 0000000..c5a4861 Binary files /dev/null and b/test-B/pictures/6489e369e29210cbcf5c1ab7b1ea06ac.png differ diff --git a/test-B/pictures/65d756de17aad523e4f04de5af5b5563.png b/test-B/pictures/65d756de17aad523e4f04de5af5b5563.png new file mode 100644 index 0000000..b3734fc Binary files /dev/null and b/test-B/pictures/65d756de17aad523e4f04de5af5b5563.png differ diff --git a/test-B/pictures/66637566887cd8f106fdac8b7d26e7e5.png b/test-B/pictures/66637566887cd8f106fdac8b7d26e7e5.png new file mode 100644 index 0000000..8619b24 Binary files /dev/null and b/test-B/pictures/66637566887cd8f106fdac8b7d26e7e5.png differ diff --git a/test-B/pictures/66ba76eb9c450e14f350ceb8ef880520.png b/test-B/pictures/66ba76eb9c450e14f350ceb8ef880520.png new file mode 100644 index 0000000..8ffa98b Binary files /dev/null and b/test-B/pictures/66ba76eb9c450e14f350ceb8ef880520.png differ diff --git a/test-B/pictures/66c2c2cc60e8691039f7fdeb231a5daf.png b/test-B/pictures/66c2c2cc60e8691039f7fdeb231a5daf.png new file mode 100644 index 0000000..04beb3f Binary files /dev/null and b/test-B/pictures/66c2c2cc60e8691039f7fdeb231a5daf.png differ diff --git a/test-B/pictures/6737ec13c7379c27cad194b7844284d3.png b/test-B/pictures/6737ec13c7379c27cad194b7844284d3.png new file mode 100644 index 0000000..e5fee87 Binary files /dev/null and b/test-B/pictures/6737ec13c7379c27cad194b7844284d3.png differ diff --git a/test-B/pictures/673d8c2f7e56691638ab9e5b2ae75ce0.png b/test-B/pictures/673d8c2f7e56691638ab9e5b2ae75ce0.png new file mode 100644 index 0000000..69771b9 Binary files /dev/null and b/test-B/pictures/673d8c2f7e56691638ab9e5b2ae75ce0.png differ diff --git a/test-B/pictures/67e3b5e8a8c4b1062a16a87068fae52c.png b/test-B/pictures/67e3b5e8a8c4b1062a16a87068fae52c.png new file mode 100644 index 0000000..c5bae14 Binary files /dev/null and b/test-B/pictures/67e3b5e8a8c4b1062a16a87068fae52c.png differ diff --git a/test-B/pictures/6838965bd95e56846ece5718bdcdcd87.png b/test-B/pictures/6838965bd95e56846ece5718bdcdcd87.png new file mode 100644 index 0000000..788e5ef Binary files /dev/null and b/test-B/pictures/6838965bd95e56846ece5718bdcdcd87.png differ diff --git a/test-B/pictures/68a1cb233615ba5b15483950c8a0b98f.png b/test-B/pictures/68a1cb233615ba5b15483950c8a0b98f.png new file mode 100644 index 0000000..b5cb8d6 Binary files /dev/null and b/test-B/pictures/68a1cb233615ba5b15483950c8a0b98f.png differ diff --git a/test-B/pictures/692427b1be53350a84350f9db99521cb.png b/test-B/pictures/692427b1be53350a84350f9db99521cb.png new file mode 100644 index 0000000..9615dd8 Binary files /dev/null and b/test-B/pictures/692427b1be53350a84350f9db99521cb.png differ diff --git a/test-B/pictures/6bd303a9232d3971836863d9f52950c1.png b/test-B/pictures/6bd303a9232d3971836863d9f52950c1.png new file mode 100644 index 0000000..d42b510 Binary files /dev/null and b/test-B/pictures/6bd303a9232d3971836863d9f52950c1.png differ diff --git a/test-B/pictures/6be0610d18b151bbfd8ba7cd4f96fbc1.png b/test-B/pictures/6be0610d18b151bbfd8ba7cd4f96fbc1.png new file mode 100644 index 0000000..e4a49a8 Binary files /dev/null and b/test-B/pictures/6be0610d18b151bbfd8ba7cd4f96fbc1.png differ diff --git a/test-B/pictures/6ce46c0962343efd39ccf2b6a46fb3d2.png b/test-B/pictures/6ce46c0962343efd39ccf2b6a46fb3d2.png new file mode 100644 index 0000000..813c61d Binary files /dev/null and b/test-B/pictures/6ce46c0962343efd39ccf2b6a46fb3d2.png differ diff --git a/test-B/pictures/6d05962a218bc6d64a019b627f8ac196.png b/test-B/pictures/6d05962a218bc6d64a019b627f8ac196.png new file mode 100644 index 0000000..7eb5896 Binary files /dev/null and b/test-B/pictures/6d05962a218bc6d64a019b627f8ac196.png differ diff --git a/test-B/pictures/6d0d62977efb11c1e1c09d8154a9b014.png b/test-B/pictures/6d0d62977efb11c1e1c09d8154a9b014.png new file mode 100644 index 0000000..1d8d150 Binary files /dev/null and b/test-B/pictures/6d0d62977efb11c1e1c09d8154a9b014.png differ diff --git a/test-B/pictures/6d505402b486908f93cf29dc6b9f9ef5.png b/test-B/pictures/6d505402b486908f93cf29dc6b9f9ef5.png new file mode 100644 index 0000000..75f3512 Binary files /dev/null and b/test-B/pictures/6d505402b486908f93cf29dc6b9f9ef5.png differ diff --git a/test-B/pictures/6e92a5a6a125561adbfcd58b14ac556b.png b/test-B/pictures/6e92a5a6a125561adbfcd58b14ac556b.png new file mode 100644 index 0000000..79c8888 Binary files /dev/null and b/test-B/pictures/6e92a5a6a125561adbfcd58b14ac556b.png differ diff --git a/test-B/pictures/6edf846a2588e4774f819274ae35854f.png b/test-B/pictures/6edf846a2588e4774f819274ae35854f.png new file mode 100644 index 0000000..d048c71 Binary files /dev/null and b/test-B/pictures/6edf846a2588e4774f819274ae35854f.png differ diff --git a/test-B/pictures/6ef367912b330c8d387ac96fbae745c2.png b/test-B/pictures/6ef367912b330c8d387ac96fbae745c2.png new file mode 100644 index 0000000..177af02 Binary files /dev/null and b/test-B/pictures/6ef367912b330c8d387ac96fbae745c2.png differ diff --git a/test-B/pictures/70542147ab39d1fd1c2a1ccd0c5eee1d.png b/test-B/pictures/70542147ab39d1fd1c2a1ccd0c5eee1d.png new file mode 100644 index 0000000..9fb7108 Binary files /dev/null and b/test-B/pictures/70542147ab39d1fd1c2a1ccd0c5eee1d.png differ diff --git a/test-B/pictures/705ecf822edc534ec42dbb5150dd2166.png b/test-B/pictures/705ecf822edc534ec42dbb5150dd2166.png new file mode 100644 index 0000000..89744bb Binary files /dev/null and b/test-B/pictures/705ecf822edc534ec42dbb5150dd2166.png differ diff --git a/test-B/pictures/70f16599efcb176c5b5711f4d338c5f6.png b/test-B/pictures/70f16599efcb176c5b5711f4d338c5f6.png new file mode 100644 index 0000000..9546cc7 Binary files /dev/null and b/test-B/pictures/70f16599efcb176c5b5711f4d338c5f6.png differ diff --git a/test-B/pictures/7135732212937d07d8067eddae240a77.png b/test-B/pictures/7135732212937d07d8067eddae240a77.png new file mode 100644 index 0000000..6b5c8f4 Binary files /dev/null and b/test-B/pictures/7135732212937d07d8067eddae240a77.png differ diff --git a/test-B/pictures/7263a64f2fb7467fa50be8e834283d9a.png b/test-B/pictures/7263a64f2fb7467fa50be8e834283d9a.png new file mode 100644 index 0000000..18472d1 Binary files /dev/null and b/test-B/pictures/7263a64f2fb7467fa50be8e834283d9a.png differ diff --git a/test-B/pictures/7316b0a124f022ad26685d9f1047a66f.png b/test-B/pictures/7316b0a124f022ad26685d9f1047a66f.png new file mode 100644 index 0000000..d51963c Binary files /dev/null and b/test-B/pictures/7316b0a124f022ad26685d9f1047a66f.png differ diff --git a/test-B/pictures/737236d2293f7b7e26253300f54f1d1c.png b/test-B/pictures/737236d2293f7b7e26253300f54f1d1c.png new file mode 100644 index 0000000..0141803 Binary files /dev/null and b/test-B/pictures/737236d2293f7b7e26253300f54f1d1c.png differ diff --git a/test-B/pictures/738af3c5c00338a03145f4fd2435c916.png b/test-B/pictures/738af3c5c00338a03145f4fd2435c916.png new file mode 100644 index 0000000..dc3076a Binary files /dev/null and b/test-B/pictures/738af3c5c00338a03145f4fd2435c916.png differ diff --git a/test-B/pictures/7429cc7fbfb636ebb06c956279eff707.png b/test-B/pictures/7429cc7fbfb636ebb06c956279eff707.png new file mode 100644 index 0000000..19db526 Binary files /dev/null and b/test-B/pictures/7429cc7fbfb636ebb06c956279eff707.png differ diff --git a/test-B/pictures/749bdc44d138d99e18969fd748c8cb78.png b/test-B/pictures/749bdc44d138d99e18969fd748c8cb78.png new file mode 100644 index 0000000..02d8b16 Binary files /dev/null and b/test-B/pictures/749bdc44d138d99e18969fd748c8cb78.png differ diff --git a/test-B/pictures/763a84b63d483c26c22e19bf7e39db6f.png b/test-B/pictures/763a84b63d483c26c22e19bf7e39db6f.png new file mode 100644 index 0000000..536dff2 Binary files /dev/null and b/test-B/pictures/763a84b63d483c26c22e19bf7e39db6f.png differ diff --git a/test-B/pictures/769913838d55ce53c6a622ff90e43a19.png b/test-B/pictures/769913838d55ce53c6a622ff90e43a19.png new file mode 100644 index 0000000..7416caa Binary files /dev/null and b/test-B/pictures/769913838d55ce53c6a622ff90e43a19.png differ diff --git a/test-B/pictures/77a6d465a779c2668304b65b8f9ab776.png b/test-B/pictures/77a6d465a779c2668304b65b8f9ab776.png new file mode 100644 index 0000000..1a79950 Binary files /dev/null and b/test-B/pictures/77a6d465a779c2668304b65b8f9ab776.png differ diff --git a/test-B/pictures/796670f42cd249bc4dfb3d5af67d5637.png b/test-B/pictures/796670f42cd249bc4dfb3d5af67d5637.png new file mode 100644 index 0000000..2087b62 Binary files /dev/null and b/test-B/pictures/796670f42cd249bc4dfb3d5af67d5637.png differ diff --git a/test-B/pictures/7a08b888b34e6ae17931cdcb446c1c08.png b/test-B/pictures/7a08b888b34e6ae17931cdcb446c1c08.png new file mode 100644 index 0000000..bdce71f Binary files /dev/null and b/test-B/pictures/7a08b888b34e6ae17931cdcb446c1c08.png differ diff --git a/test-B/pictures/7a11814cecd9737e4560c8c183431629.png b/test-B/pictures/7a11814cecd9737e4560c8c183431629.png new file mode 100644 index 0000000..5d60b02 Binary files /dev/null and b/test-B/pictures/7a11814cecd9737e4560c8c183431629.png differ diff --git a/test-B/pictures/7a2f8ddd3d78ecc8472c0ab4c10829d4.png b/test-B/pictures/7a2f8ddd3d78ecc8472c0ab4c10829d4.png new file mode 100644 index 0000000..efce2c1 Binary files /dev/null and b/test-B/pictures/7a2f8ddd3d78ecc8472c0ab4c10829d4.png differ diff --git a/test-B/pictures/7cb7e42e045450f830a90a65b6bccd04.png b/test-B/pictures/7cb7e42e045450f830a90a65b6bccd04.png new file mode 100644 index 0000000..a0fbbdd Binary files /dev/null and b/test-B/pictures/7cb7e42e045450f830a90a65b6bccd04.png differ diff --git a/test-B/pictures/7e60af61cf7ae2c343b7ecd62267f05f.png b/test-B/pictures/7e60af61cf7ae2c343b7ecd62267f05f.png new file mode 100644 index 0000000..a3575d9 Binary files /dev/null and b/test-B/pictures/7e60af61cf7ae2c343b7ecd62267f05f.png differ diff --git a/test-B/pictures/7e748f5c5950c76469b0c45bfc6033d8.png b/test-B/pictures/7e748f5c5950c76469b0c45bfc6033d8.png new file mode 100644 index 0000000..35d157a Binary files /dev/null and b/test-B/pictures/7e748f5c5950c76469b0c45bfc6033d8.png differ diff --git a/test-B/pictures/7f519b39eece6485b50b0569d3659289.png b/test-B/pictures/7f519b39eece6485b50b0569d3659289.png new file mode 100644 index 0000000..0f94175 Binary files /dev/null and b/test-B/pictures/7f519b39eece6485b50b0569d3659289.png differ diff --git a/test-B/pictures/812ad583544ff2703baf5d5b07af0798.png b/test-B/pictures/812ad583544ff2703baf5d5b07af0798.png new file mode 100644 index 0000000..c0112ee Binary files /dev/null and b/test-B/pictures/812ad583544ff2703baf5d5b07af0798.png differ diff --git a/test-B/pictures/8137ae5c705b279866f431f85dc44f7e.png b/test-B/pictures/8137ae5c705b279866f431f85dc44f7e.png new file mode 100644 index 0000000..36af2e4 Binary files /dev/null and b/test-B/pictures/8137ae5c705b279866f431f85dc44f7e.png differ diff --git a/test-B/pictures/8247e11b209121d9b0bfaa2648d03df7.png b/test-B/pictures/8247e11b209121d9b0bfaa2648d03df7.png new file mode 100644 index 0000000..96d0fca Binary files /dev/null and b/test-B/pictures/8247e11b209121d9b0bfaa2648d03df7.png differ diff --git a/test-B/pictures/8291856becbac8c2d3f88d7e8ee67479.png b/test-B/pictures/8291856becbac8c2d3f88d7e8ee67479.png new file mode 100644 index 0000000..9a7b748 Binary files /dev/null and b/test-B/pictures/8291856becbac8c2d3f88d7e8ee67479.png differ diff --git a/test-B/pictures/82a92fbb7150843c4afd173983ca8d16.png b/test-B/pictures/82a92fbb7150843c4afd173983ca8d16.png new file mode 100644 index 0000000..e53bc0a Binary files /dev/null and b/test-B/pictures/82a92fbb7150843c4afd173983ca8d16.png differ diff --git a/test-B/pictures/82c9a7b42201f16ae0dee4bbcfd14be5.png b/test-B/pictures/82c9a7b42201f16ae0dee4bbcfd14be5.png new file mode 100644 index 0000000..f730e06 Binary files /dev/null and b/test-B/pictures/82c9a7b42201f16ae0dee4bbcfd14be5.png differ diff --git a/test-B/pictures/84ab7d404a8af63772c29d0ef9815cec.png b/test-B/pictures/84ab7d404a8af63772c29d0ef9815cec.png new file mode 100644 index 0000000..e03aebe Binary files /dev/null and b/test-B/pictures/84ab7d404a8af63772c29d0ef9815cec.png differ diff --git a/test-B/pictures/84cd965e7d9f7e0da2613ab86239815e.png b/test-B/pictures/84cd965e7d9f7e0da2613ab86239815e.png new file mode 100644 index 0000000..f5950dd Binary files /dev/null and b/test-B/pictures/84cd965e7d9f7e0da2613ab86239815e.png differ diff --git a/test-B/pictures/84cf0c3ee6db057ff990bf1835e8cc77.png b/test-B/pictures/84cf0c3ee6db057ff990bf1835e8cc77.png new file mode 100644 index 0000000..151c6ac Binary files /dev/null and b/test-B/pictures/84cf0c3ee6db057ff990bf1835e8cc77.png differ diff --git a/test-B/pictures/853effc65a6655d179f5cf1d756df1f2.png b/test-B/pictures/853effc65a6655d179f5cf1d756df1f2.png new file mode 100644 index 0000000..d19720e Binary files /dev/null and b/test-B/pictures/853effc65a6655d179f5cf1d756df1f2.png differ diff --git a/test-B/pictures/8782c53091a46e0b7f0dbb5dc421636c.png b/test-B/pictures/8782c53091a46e0b7f0dbb5dc421636c.png new file mode 100644 index 0000000..c6d186b Binary files /dev/null and b/test-B/pictures/8782c53091a46e0b7f0dbb5dc421636c.png differ diff --git a/test-B/pictures/882b7e3ec1d881e45687e6a26b82eca2.png b/test-B/pictures/882b7e3ec1d881e45687e6a26b82eca2.png new file mode 100644 index 0000000..6715aa5 Binary files /dev/null and b/test-B/pictures/882b7e3ec1d881e45687e6a26b82eca2.png differ diff --git a/test-B/pictures/89ffea5b2fe2e30e8c0a63275091d1cd.png b/test-B/pictures/89ffea5b2fe2e30e8c0a63275091d1cd.png new file mode 100644 index 0000000..353bd66 Binary files /dev/null and b/test-B/pictures/89ffea5b2fe2e30e8c0a63275091d1cd.png differ diff --git a/test-B/pictures/8af376429a0a45323a63a92f603e310d.png b/test-B/pictures/8af376429a0a45323a63a92f603e310d.png new file mode 100644 index 0000000..77aaefa Binary files /dev/null and b/test-B/pictures/8af376429a0a45323a63a92f603e310d.png differ diff --git a/test-B/pictures/8b90199590d872c140c5eae24ae3f03e.png b/test-B/pictures/8b90199590d872c140c5eae24ae3f03e.png new file mode 100644 index 0000000..0e21417 Binary files /dev/null and b/test-B/pictures/8b90199590d872c140c5eae24ae3f03e.png differ diff --git a/test-B/pictures/8c263411d571e075088e2933b709dfd3.png b/test-B/pictures/8c263411d571e075088e2933b709dfd3.png new file mode 100644 index 0000000..9e1977c Binary files /dev/null and b/test-B/pictures/8c263411d571e075088e2933b709dfd3.png differ diff --git a/test-B/pictures/8c67029983460f0e8a8b09de976f7e2b.png b/test-B/pictures/8c67029983460f0e8a8b09de976f7e2b.png new file mode 100644 index 0000000..11f7513 Binary files /dev/null and b/test-B/pictures/8c67029983460f0e8a8b09de976f7e2b.png differ diff --git a/test-B/pictures/8d6c6f73520188feba16e5136100c1df.png b/test-B/pictures/8d6c6f73520188feba16e5136100c1df.png new file mode 100644 index 0000000..fa86691 Binary files /dev/null and b/test-B/pictures/8d6c6f73520188feba16e5136100c1df.png differ diff --git a/test-B/pictures/8d80cbbd971e92466022c9998de91751.png b/test-B/pictures/8d80cbbd971e92466022c9998de91751.png new file mode 100644 index 0000000..13e1961 Binary files /dev/null and b/test-B/pictures/8d80cbbd971e92466022c9998de91751.png differ diff --git a/test-B/pictures/8f1a1834b335432fcb041e9ed0d1f1a8.png b/test-B/pictures/8f1a1834b335432fcb041e9ed0d1f1a8.png new file mode 100644 index 0000000..ce9cc1f Binary files /dev/null and b/test-B/pictures/8f1a1834b335432fcb041e9ed0d1f1a8.png differ diff --git a/test-B/pictures/90dcc18f53ffa76cc5760212c84af9b9.png b/test-B/pictures/90dcc18f53ffa76cc5760212c84af9b9.png new file mode 100644 index 0000000..d812961 Binary files /dev/null and b/test-B/pictures/90dcc18f53ffa76cc5760212c84af9b9.png differ diff --git a/test-B/pictures/91189f6b1170e18f42f742c51c5616d5.png b/test-B/pictures/91189f6b1170e18f42f742c51c5616d5.png new file mode 100644 index 0000000..8ebd488 Binary files /dev/null and b/test-B/pictures/91189f6b1170e18f42f742c51c5616d5.png differ diff --git a/test-B/pictures/919c6cd4cf3421c3c5b6b615d8b4f2b5.png b/test-B/pictures/919c6cd4cf3421c3c5b6b615d8b4f2b5.png new file mode 100644 index 0000000..707130c Binary files /dev/null and b/test-B/pictures/919c6cd4cf3421c3c5b6b615d8b4f2b5.png differ diff --git a/test-B/pictures/923eef7f20329e6dae05b5a00085d0db.png b/test-B/pictures/923eef7f20329e6dae05b5a00085d0db.png new file mode 100644 index 0000000..d092789 Binary files /dev/null and b/test-B/pictures/923eef7f20329e6dae05b5a00085d0db.png differ diff --git a/test-B/pictures/934c40c9eccefea9eca35d9d1a99b2ac.png b/test-B/pictures/934c40c9eccefea9eca35d9d1a99b2ac.png new file mode 100644 index 0000000..786fc6a Binary files /dev/null and b/test-B/pictures/934c40c9eccefea9eca35d9d1a99b2ac.png differ diff --git a/test-B/pictures/935ae9ca11090bce520e82a9764a9ec7.png b/test-B/pictures/935ae9ca11090bce520e82a9764a9ec7.png new file mode 100644 index 0000000..91319b0 Binary files /dev/null and b/test-B/pictures/935ae9ca11090bce520e82a9764a9ec7.png differ diff --git a/test-B/pictures/9363872be79179977df64fc99bc5d924.png b/test-B/pictures/9363872be79179977df64fc99bc5d924.png new file mode 100644 index 0000000..873c956 Binary files /dev/null and b/test-B/pictures/9363872be79179977df64fc99bc5d924.png differ diff --git a/test-B/pictures/93a1ec7a8dc8c4e25939df781700c260.png b/test-B/pictures/93a1ec7a8dc8c4e25939df781700c260.png new file mode 100644 index 0000000..d562ac8 Binary files /dev/null and b/test-B/pictures/93a1ec7a8dc8c4e25939df781700c260.png differ diff --git a/test-B/pictures/9451a98439c18c202afd7cdb9aef6d08.png b/test-B/pictures/9451a98439c18c202afd7cdb9aef6d08.png new file mode 100644 index 0000000..e7e8749 Binary files /dev/null and b/test-B/pictures/9451a98439c18c202afd7cdb9aef6d08.png differ diff --git a/test-B/pictures/949a753d6ea7b9873535154483718529.png b/test-B/pictures/949a753d6ea7b9873535154483718529.png new file mode 100644 index 0000000..1564b2b Binary files /dev/null and b/test-B/pictures/949a753d6ea7b9873535154483718529.png differ diff --git a/test-B/pictures/94b2f0e1da1bd8209ca638c14dfdabca.png b/test-B/pictures/94b2f0e1da1bd8209ca638c14dfdabca.png new file mode 100644 index 0000000..06109c0 Binary files /dev/null and b/test-B/pictures/94b2f0e1da1bd8209ca638c14dfdabca.png differ diff --git a/test-B/pictures/95711c79c29eeb808bdd78a9ef9341d0.png b/test-B/pictures/95711c79c29eeb808bdd78a9ef9341d0.png new file mode 100644 index 0000000..ddab142 Binary files /dev/null and b/test-B/pictures/95711c79c29eeb808bdd78a9ef9341d0.png differ diff --git a/test-B/pictures/95de766a9bb6714ae6fe4aab7f7875fe.png b/test-B/pictures/95de766a9bb6714ae6fe4aab7f7875fe.png new file mode 100644 index 0000000..9fb7c9d Binary files /dev/null and b/test-B/pictures/95de766a9bb6714ae6fe4aab7f7875fe.png differ diff --git a/test-B/pictures/965613a122d90210a96cdd98e60e8e55.png b/test-B/pictures/965613a122d90210a96cdd98e60e8e55.png new file mode 100644 index 0000000..87dd152 Binary files /dev/null and b/test-B/pictures/965613a122d90210a96cdd98e60e8e55.png differ diff --git a/test-B/pictures/96de06f5d928385df87d31069a36ff36.png b/test-B/pictures/96de06f5d928385df87d31069a36ff36.png new file mode 100644 index 0000000..38c707e Binary files /dev/null and b/test-B/pictures/96de06f5d928385df87d31069a36ff36.png differ diff --git a/test-B/pictures/99a62f52fbbf8645b032f82c0cd0de67.png b/test-B/pictures/99a62f52fbbf8645b032f82c0cd0de67.png new file mode 100644 index 0000000..6cfde80 Binary files /dev/null and b/test-B/pictures/99a62f52fbbf8645b032f82c0cd0de67.png differ diff --git a/test-B/pictures/99b3c41ac88f420705507064dd607c6a.png b/test-B/pictures/99b3c41ac88f420705507064dd607c6a.png new file mode 100644 index 0000000..ce98934 Binary files /dev/null and b/test-B/pictures/99b3c41ac88f420705507064dd607c6a.png differ diff --git a/test-B/pictures/9a7ea2ab4e4dccb14455eec810bd8a6d.png b/test-B/pictures/9a7ea2ab4e4dccb14455eec810bd8a6d.png new file mode 100644 index 0000000..c282769 Binary files /dev/null and b/test-B/pictures/9a7ea2ab4e4dccb14455eec810bd8a6d.png differ diff --git a/test-B/pictures/9a9665edd3e5d2e0b569afed24fc179e.png b/test-B/pictures/9a9665edd3e5d2e0b569afed24fc179e.png new file mode 100644 index 0000000..ecf0538 Binary files /dev/null and b/test-B/pictures/9a9665edd3e5d2e0b569afed24fc179e.png differ diff --git a/test-B/pictures/9b0a7f3806d117ea501cbf4f6926633e.png b/test-B/pictures/9b0a7f3806d117ea501cbf4f6926633e.png new file mode 100644 index 0000000..e132927 Binary files /dev/null and b/test-B/pictures/9b0a7f3806d117ea501cbf4f6926633e.png differ diff --git a/test-B/pictures/9b38bcd65fdb591982a0ec2964f8c2e0.png b/test-B/pictures/9b38bcd65fdb591982a0ec2964f8c2e0.png new file mode 100644 index 0000000..9ac8499 Binary files /dev/null and b/test-B/pictures/9b38bcd65fdb591982a0ec2964f8c2e0.png differ diff --git a/test-B/pictures/9c631af461150731c43bdf0704b8f963.png b/test-B/pictures/9c631af461150731c43bdf0704b8f963.png new file mode 100644 index 0000000..1cc39dd Binary files /dev/null and b/test-B/pictures/9c631af461150731c43bdf0704b8f963.png differ diff --git a/test-B/pictures/9c896c9ec6b5d09aae1918c28f31308d.png b/test-B/pictures/9c896c9ec6b5d09aae1918c28f31308d.png new file mode 100644 index 0000000..a165b18 Binary files /dev/null and b/test-B/pictures/9c896c9ec6b5d09aae1918c28f31308d.png differ diff --git a/test-B/pictures/9cb5fc74055261a3784079928bf9c8fc.png b/test-B/pictures/9cb5fc74055261a3784079928bf9c8fc.png new file mode 100644 index 0000000..5dd0774 Binary files /dev/null and b/test-B/pictures/9cb5fc74055261a3784079928bf9c8fc.png differ diff --git a/test-B/pictures/9d0e5779d2f50d6b504875f2eb29d986.png b/test-B/pictures/9d0e5779d2f50d6b504875f2eb29d986.png new file mode 100644 index 0000000..82798d8 Binary files /dev/null and b/test-B/pictures/9d0e5779d2f50d6b504875f2eb29d986.png differ diff --git a/test-B/pictures/9d2c66fadbd8ccf495ac12c4d9a5c303.png b/test-B/pictures/9d2c66fadbd8ccf495ac12c4d9a5c303.png new file mode 100644 index 0000000..20e6f30 Binary files /dev/null and b/test-B/pictures/9d2c66fadbd8ccf495ac12c4d9a5c303.png differ diff --git a/test-B/pictures/9d550e94ad6c73f00e09ec923599fc37.png b/test-B/pictures/9d550e94ad6c73f00e09ec923599fc37.png new file mode 100644 index 0000000..616b67a Binary files /dev/null and b/test-B/pictures/9d550e94ad6c73f00e09ec923599fc37.png differ diff --git a/test-B/pictures/9d7af128e35d9009ad3f7034bb93a0ba.png b/test-B/pictures/9d7af128e35d9009ad3f7034bb93a0ba.png new file mode 100644 index 0000000..e3acf97 Binary files /dev/null and b/test-B/pictures/9d7af128e35d9009ad3f7034bb93a0ba.png differ diff --git a/test-B/pictures/9e5f458a7924a1a6751c19ab28884d42.png b/test-B/pictures/9e5f458a7924a1a6751c19ab28884d42.png new file mode 100644 index 0000000..6f711af Binary files /dev/null and b/test-B/pictures/9e5f458a7924a1a6751c19ab28884d42.png differ diff --git a/test-B/pictures/9e7749b9e5af10dc24c43d7f5a52028a.png b/test-B/pictures/9e7749b9e5af10dc24c43d7f5a52028a.png new file mode 100644 index 0000000..2a4a85c Binary files /dev/null and b/test-B/pictures/9e7749b9e5af10dc24c43d7f5a52028a.png differ diff --git a/test-B/pictures/9e955b9ab75ae63456aa2b59c6700131.png b/test-B/pictures/9e955b9ab75ae63456aa2b59c6700131.png new file mode 100644 index 0000000..4d520a1 Binary files /dev/null and b/test-B/pictures/9e955b9ab75ae63456aa2b59c6700131.png differ diff --git a/test-B/pictures/9f55867d59b33e7cf97d5ac0fe6998d3.png b/test-B/pictures/9f55867d59b33e7cf97d5ac0fe6998d3.png new file mode 100644 index 0000000..b1793f5 Binary files /dev/null and b/test-B/pictures/9f55867d59b33e7cf97d5ac0fe6998d3.png differ diff --git a/test-B/pictures/9fc58c0ccbfe3b53f8c71fe97e8241a6.png b/test-B/pictures/9fc58c0ccbfe3b53f8c71fe97e8241a6.png new file mode 100644 index 0000000..9038eeb Binary files /dev/null and b/test-B/pictures/9fc58c0ccbfe3b53f8c71fe97e8241a6.png differ diff --git a/test-B/pictures/a14e187cf6c49cfc8a52a4ca27e213fb.png b/test-B/pictures/a14e187cf6c49cfc8a52a4ca27e213fb.png new file mode 100644 index 0000000..e470a4d Binary files /dev/null and b/test-B/pictures/a14e187cf6c49cfc8a52a4ca27e213fb.png differ diff --git a/test-B/pictures/a164932312b404f57c13a87474974196.png b/test-B/pictures/a164932312b404f57c13a87474974196.png new file mode 100644 index 0000000..f636e4b Binary files /dev/null and b/test-B/pictures/a164932312b404f57c13a87474974196.png differ diff --git a/test-B/pictures/a1fd65ae0fe1f305102f4ef9d84f83d4.png b/test-B/pictures/a1fd65ae0fe1f305102f4ef9d84f83d4.png new file mode 100644 index 0000000..c7cfae9 Binary files /dev/null and b/test-B/pictures/a1fd65ae0fe1f305102f4ef9d84f83d4.png differ diff --git a/test-B/pictures/a35a81ad8bb6c65c2426f789480e110b.png b/test-B/pictures/a35a81ad8bb6c65c2426f789480e110b.png new file mode 100644 index 0000000..3795980 Binary files /dev/null and b/test-B/pictures/a35a81ad8bb6c65c2426f789480e110b.png differ diff --git a/test-B/pictures/a4c544c5e21b2cd860d7f1e0f555420c.png b/test-B/pictures/a4c544c5e21b2cd860d7f1e0f555420c.png new file mode 100644 index 0000000..0b1bc83 Binary files /dev/null and b/test-B/pictures/a4c544c5e21b2cd860d7f1e0f555420c.png differ diff --git a/test-B/pictures/a56ab3878dd523cd80fb76f8e8c0f580.png b/test-B/pictures/a56ab3878dd523cd80fb76f8e8c0f580.png new file mode 100644 index 0000000..ab18523 Binary files /dev/null and b/test-B/pictures/a56ab3878dd523cd80fb76f8e8c0f580.png differ diff --git a/test-B/pictures/a60afa238f4ba6ec31bf116b054f42c1.png b/test-B/pictures/a60afa238f4ba6ec31bf116b054f42c1.png new file mode 100644 index 0000000..8654fd7 Binary files /dev/null and b/test-B/pictures/a60afa238f4ba6ec31bf116b054f42c1.png differ diff --git a/test-B/pictures/a6a955728123defb03447a0d770b9b03.png b/test-B/pictures/a6a955728123defb03447a0d770b9b03.png new file mode 100644 index 0000000..43ea33c Binary files /dev/null and b/test-B/pictures/a6a955728123defb03447a0d770b9b03.png differ diff --git a/test-B/pictures/a83b0ce55dcdf684f9299d3c7cd04111.png b/test-B/pictures/a83b0ce55dcdf684f9299d3c7cd04111.png new file mode 100644 index 0000000..92d79d2 Binary files /dev/null and b/test-B/pictures/a83b0ce55dcdf684f9299d3c7cd04111.png differ diff --git a/test-B/pictures/a921f2e4edbae72af0673658f0b41a42.png b/test-B/pictures/a921f2e4edbae72af0673658f0b41a42.png new file mode 100644 index 0000000..d02ccc6 Binary files /dev/null and b/test-B/pictures/a921f2e4edbae72af0673658f0b41a42.png differ diff --git a/test-B/pictures/a94b0bddb18be52da05b502b740155b1.png b/test-B/pictures/a94b0bddb18be52da05b502b740155b1.png new file mode 100644 index 0000000..4afc785 Binary files /dev/null and b/test-B/pictures/a94b0bddb18be52da05b502b740155b1.png differ diff --git a/test-B/pictures/aa00221d562acb3ac04c02b00d8bd60f.png b/test-B/pictures/aa00221d562acb3ac04c02b00d8bd60f.png new file mode 100644 index 0000000..973255e Binary files /dev/null and b/test-B/pictures/aa00221d562acb3ac04c02b00d8bd60f.png differ diff --git a/test-B/pictures/aab4d6e9d63c80b05565321dba9bf077.png b/test-B/pictures/aab4d6e9d63c80b05565321dba9bf077.png new file mode 100644 index 0000000..2159bfa Binary files /dev/null and b/test-B/pictures/aab4d6e9d63c80b05565321dba9bf077.png differ diff --git a/test-B/pictures/aac0e2a8e52b732336874aa12ac5c9f7.png b/test-B/pictures/aac0e2a8e52b732336874aa12ac5c9f7.png new file mode 100644 index 0000000..e4d7fbf Binary files /dev/null and b/test-B/pictures/aac0e2a8e52b732336874aa12ac5c9f7.png differ diff --git a/test-B/pictures/ab25f0ed6eb76b7ac4363a22e1f8899a.png b/test-B/pictures/ab25f0ed6eb76b7ac4363a22e1f8899a.png new file mode 100644 index 0000000..1ba9ba5 Binary files /dev/null and b/test-B/pictures/ab25f0ed6eb76b7ac4363a22e1f8899a.png differ diff --git a/test-B/pictures/aba19f647c30788fe72595145b56f6da.png b/test-B/pictures/aba19f647c30788fe72595145b56f6da.png new file mode 100644 index 0000000..66d2be8 Binary files /dev/null and b/test-B/pictures/aba19f647c30788fe72595145b56f6da.png differ diff --git a/test-B/pictures/ac26c34c331d11041ec0323d8934a0f9.png b/test-B/pictures/ac26c34c331d11041ec0323d8934a0f9.png new file mode 100644 index 0000000..1340e54 Binary files /dev/null and b/test-B/pictures/ac26c34c331d11041ec0323d8934a0f9.png differ diff --git a/test-B/pictures/adf5b835d0c714440e3149c2231ec4c7.png b/test-B/pictures/adf5b835d0c714440e3149c2231ec4c7.png new file mode 100644 index 0000000..cf8b9b2 Binary files /dev/null and b/test-B/pictures/adf5b835d0c714440e3149c2231ec4c7.png differ diff --git a/test-B/pictures/ae34c3e054d4e6b2772ee80ca619efc7.png b/test-B/pictures/ae34c3e054d4e6b2772ee80ca619efc7.png new file mode 100644 index 0000000..5fe5239 Binary files /dev/null and b/test-B/pictures/ae34c3e054d4e6b2772ee80ca619efc7.png differ diff --git a/test-B/pictures/af3559387e6eecbd0ecfa7586f949e73.png b/test-B/pictures/af3559387e6eecbd0ecfa7586f949e73.png new file mode 100644 index 0000000..c8043ab Binary files /dev/null and b/test-B/pictures/af3559387e6eecbd0ecfa7586f949e73.png differ diff --git a/test-B/pictures/af44c8f2737b7ff7fa0c8495d7cd5d15.png b/test-B/pictures/af44c8f2737b7ff7fa0c8495d7cd5d15.png new file mode 100644 index 0000000..5c174eb Binary files /dev/null and b/test-B/pictures/af44c8f2737b7ff7fa0c8495d7cd5d15.png differ diff --git a/test-B/pictures/afa82592ecb903853a5167800410e077.png b/test-B/pictures/afa82592ecb903853a5167800410e077.png new file mode 100644 index 0000000..cd44dee Binary files /dev/null and b/test-B/pictures/afa82592ecb903853a5167800410e077.png differ diff --git a/test-B/pictures/afac327e177195b9ab5a221a11f10541.png b/test-B/pictures/afac327e177195b9ab5a221a11f10541.png new file mode 100644 index 0000000..b406bd5 Binary files /dev/null and b/test-B/pictures/afac327e177195b9ab5a221a11f10541.png differ diff --git a/test-B/pictures/b05780252c674d2bba41debd6285abd0.png b/test-B/pictures/b05780252c674d2bba41debd6285abd0.png new file mode 100644 index 0000000..6ef6949 Binary files /dev/null and b/test-B/pictures/b05780252c674d2bba41debd6285abd0.png differ diff --git a/test-B/pictures/b08f502588fe796fe0628e372a750926.png b/test-B/pictures/b08f502588fe796fe0628e372a750926.png new file mode 100644 index 0000000..36234b3 Binary files /dev/null and b/test-B/pictures/b08f502588fe796fe0628e372a750926.png differ diff --git a/test-B/pictures/b09de8189fd5a6825d36dbbd1d8f9259.png b/test-B/pictures/b09de8189fd5a6825d36dbbd1d8f9259.png new file mode 100644 index 0000000..9f23c61 Binary files /dev/null and b/test-B/pictures/b09de8189fd5a6825d36dbbd1d8f9259.png differ diff --git a/test-B/pictures/b0abc66a6d08c1daf5261e269c40b83f.png b/test-B/pictures/b0abc66a6d08c1daf5261e269c40b83f.png new file mode 100644 index 0000000..a1f1a7f Binary files /dev/null and b/test-B/pictures/b0abc66a6d08c1daf5261e269c40b83f.png differ diff --git a/test-B/pictures/b0b63def428d88471c235dc8411b09e1.png b/test-B/pictures/b0b63def428d88471c235dc8411b09e1.png new file mode 100644 index 0000000..b9decf6 Binary files /dev/null and b/test-B/pictures/b0b63def428d88471c235dc8411b09e1.png differ diff --git a/test-B/pictures/b0e420fdf22f6a2d59ba53d209455bea.png b/test-B/pictures/b0e420fdf22f6a2d59ba53d209455bea.png new file mode 100644 index 0000000..6e2ac20 Binary files /dev/null and b/test-B/pictures/b0e420fdf22f6a2d59ba53d209455bea.png differ diff --git a/test-B/pictures/b16b5785eac2bf8c0ac8b6f8ba577a84.png b/test-B/pictures/b16b5785eac2bf8c0ac8b6f8ba577a84.png new file mode 100644 index 0000000..5eeb9aa Binary files /dev/null and b/test-B/pictures/b16b5785eac2bf8c0ac8b6f8ba577a84.png differ diff --git a/test-B/pictures/b177b854b7b30e2eda41043c42399496.png b/test-B/pictures/b177b854b7b30e2eda41043c42399496.png new file mode 100644 index 0000000..9344fa1 Binary files /dev/null and b/test-B/pictures/b177b854b7b30e2eda41043c42399496.png differ diff --git a/test-B/pictures/b1e4abdfcb3c130cced4398f256f54d5.png b/test-B/pictures/b1e4abdfcb3c130cced4398f256f54d5.png new file mode 100644 index 0000000..f66fc31 Binary files /dev/null and b/test-B/pictures/b1e4abdfcb3c130cced4398f256f54d5.png differ diff --git a/test-B/pictures/b21b4f5cbeeef717830109f40b6e6462.png b/test-B/pictures/b21b4f5cbeeef717830109f40b6e6462.png new file mode 100644 index 0000000..3a41aff Binary files /dev/null and b/test-B/pictures/b21b4f5cbeeef717830109f40b6e6462.png differ diff --git a/test-B/pictures/b22b03e4c2e5c8d620893acd4e8b666a.png b/test-B/pictures/b22b03e4c2e5c8d620893acd4e8b666a.png new file mode 100644 index 0000000..a9611ef Binary files /dev/null and b/test-B/pictures/b22b03e4c2e5c8d620893acd4e8b666a.png differ diff --git a/test-B/pictures/b2925fd5dc6d14fad465d05f7e0d7368.png b/test-B/pictures/b2925fd5dc6d14fad465d05f7e0d7368.png new file mode 100644 index 0000000..78dc5d2 Binary files /dev/null and b/test-B/pictures/b2925fd5dc6d14fad465d05f7e0d7368.png differ diff --git a/test-B/pictures/b2cce1c47618493eb1a573789e579b98.png b/test-B/pictures/b2cce1c47618493eb1a573789e579b98.png new file mode 100644 index 0000000..bacbc90 Binary files /dev/null and b/test-B/pictures/b2cce1c47618493eb1a573789e579b98.png differ diff --git a/test-B/pictures/b43282bb4dd9b4fac699174e28d9e80f.png b/test-B/pictures/b43282bb4dd9b4fac699174e28d9e80f.png new file mode 100644 index 0000000..69d3cb4 Binary files /dev/null and b/test-B/pictures/b43282bb4dd9b4fac699174e28d9e80f.png differ diff --git a/test-B/pictures/b5b468f886ddf181d418f17998bffa8c.png b/test-B/pictures/b5b468f886ddf181d418f17998bffa8c.png new file mode 100644 index 0000000..b9b9ae7 Binary files /dev/null and b/test-B/pictures/b5b468f886ddf181d418f17998bffa8c.png differ diff --git a/test-B/pictures/b769f1c3990b41fb722260cba75475a7.png b/test-B/pictures/b769f1c3990b41fb722260cba75475a7.png new file mode 100644 index 0000000..4450f7b Binary files /dev/null and b/test-B/pictures/b769f1c3990b41fb722260cba75475a7.png differ diff --git a/test-B/pictures/b78c4faed309d882caf3961cd45131ef.png b/test-B/pictures/b78c4faed309d882caf3961cd45131ef.png new file mode 100644 index 0000000..a0b02ad Binary files /dev/null and b/test-B/pictures/b78c4faed309d882caf3961cd45131ef.png differ diff --git a/test-B/pictures/b7cd733071743391a4ee5d953e6facbc.png b/test-B/pictures/b7cd733071743391a4ee5d953e6facbc.png new file mode 100644 index 0000000..834fb46 Binary files /dev/null and b/test-B/pictures/b7cd733071743391a4ee5d953e6facbc.png differ diff --git a/test-B/pictures/b88c68e36b1df1b788fad6efa9b8f665.png b/test-B/pictures/b88c68e36b1df1b788fad6efa9b8f665.png new file mode 100644 index 0000000..1d83bf7 Binary files /dev/null and b/test-B/pictures/b88c68e36b1df1b788fad6efa9b8f665.png differ diff --git a/test-B/pictures/b8c1779a44039d7e1e92c47bba0cc0cd.png b/test-B/pictures/b8c1779a44039d7e1e92c47bba0cc0cd.png new file mode 100644 index 0000000..bf3e25c Binary files /dev/null and b/test-B/pictures/b8c1779a44039d7e1e92c47bba0cc0cd.png differ diff --git a/test-B/pictures/b93de082690dae7115c3be9bb5917326.png b/test-B/pictures/b93de082690dae7115c3be9bb5917326.png new file mode 100644 index 0000000..8cc6816 Binary files /dev/null and b/test-B/pictures/b93de082690dae7115c3be9bb5917326.png differ diff --git a/test-B/pictures/b9e6d696be11336c5ba15287f9ee7d9e.png b/test-B/pictures/b9e6d696be11336c5ba15287f9ee7d9e.png new file mode 100644 index 0000000..d9333ea Binary files /dev/null and b/test-B/pictures/b9e6d696be11336c5ba15287f9ee7d9e.png differ diff --git a/test-B/pictures/ba53ecbb741ab9402aa4911c0d7e5fd8.png b/test-B/pictures/ba53ecbb741ab9402aa4911c0d7e5fd8.png new file mode 100644 index 0000000..a277e5e Binary files /dev/null and b/test-B/pictures/ba53ecbb741ab9402aa4911c0d7e5fd8.png differ diff --git a/test-B/pictures/ba7d63ee0daaded7383fd47dc6ecd01d.png b/test-B/pictures/ba7d63ee0daaded7383fd47dc6ecd01d.png new file mode 100644 index 0000000..63c163f Binary files /dev/null and b/test-B/pictures/ba7d63ee0daaded7383fd47dc6ecd01d.png differ diff --git a/test-B/pictures/ba8e076b173cbb6882da2a12da987dbe.png b/test-B/pictures/ba8e076b173cbb6882da2a12da987dbe.png new file mode 100644 index 0000000..eb716b1 Binary files /dev/null and b/test-B/pictures/ba8e076b173cbb6882da2a12da987dbe.png differ diff --git a/test-B/pictures/bc50aec007dc06a2a519b945ead87c20.png b/test-B/pictures/bc50aec007dc06a2a519b945ead87c20.png new file mode 100644 index 0000000..7385929 Binary files /dev/null and b/test-B/pictures/bc50aec007dc06a2a519b945ead87c20.png differ diff --git a/test-B/pictures/bc69840e45fae12fab971b46cc09bd25.png b/test-B/pictures/bc69840e45fae12fab971b46cc09bd25.png new file mode 100644 index 0000000..0e62611 Binary files /dev/null and b/test-B/pictures/bc69840e45fae12fab971b46cc09bd25.png differ diff --git a/test-B/pictures/bc768feaceaa5b4cc7719682a0e9f371.png b/test-B/pictures/bc768feaceaa5b4cc7719682a0e9f371.png new file mode 100644 index 0000000..f108b3b Binary files /dev/null and b/test-B/pictures/bc768feaceaa5b4cc7719682a0e9f371.png differ diff --git a/test-B/pictures/bd1ad168e93ad07f0e58957445ef202f.png b/test-B/pictures/bd1ad168e93ad07f0e58957445ef202f.png new file mode 100644 index 0000000..bc64a21 Binary files /dev/null and b/test-B/pictures/bd1ad168e93ad07f0e58957445ef202f.png differ diff --git a/test-B/pictures/bd95ea508140c63d38788c72b1d8f159.png b/test-B/pictures/bd95ea508140c63d38788c72b1d8f159.png new file mode 100644 index 0000000..f496eaf Binary files /dev/null and b/test-B/pictures/bd95ea508140c63d38788c72b1d8f159.png differ diff --git a/test-B/pictures/bdb5d817ce4d4220738db9370e18c31a.png b/test-B/pictures/bdb5d817ce4d4220738db9370e18c31a.png new file mode 100644 index 0000000..e6ad4fb Binary files /dev/null and b/test-B/pictures/bdb5d817ce4d4220738db9370e18c31a.png differ diff --git a/test-B/pictures/bdd276554b7383aef5a63ea4a552d1d1.png b/test-B/pictures/bdd276554b7383aef5a63ea4a552d1d1.png new file mode 100644 index 0000000..cd88d34 Binary files /dev/null and b/test-B/pictures/bdd276554b7383aef5a63ea4a552d1d1.png differ diff --git a/test-B/pictures/bdf6c8a7d81583300eb1c0ce826ee70b.png b/test-B/pictures/bdf6c8a7d81583300eb1c0ce826ee70b.png new file mode 100644 index 0000000..af8a08a Binary files /dev/null and b/test-B/pictures/bdf6c8a7d81583300eb1c0ce826ee70b.png differ diff --git a/test-B/pictures/bdf9c18e17921231a87d1f1c2191b2eb.png b/test-B/pictures/bdf9c18e17921231a87d1f1c2191b2eb.png new file mode 100644 index 0000000..f224928 Binary files /dev/null and b/test-B/pictures/bdf9c18e17921231a87d1f1c2191b2eb.png differ diff --git a/test-B/pictures/be27d839a85a41db8f9afb87550109f9.png b/test-B/pictures/be27d839a85a41db8f9afb87550109f9.png new file mode 100644 index 0000000..b4bd731 Binary files /dev/null and b/test-B/pictures/be27d839a85a41db8f9afb87550109f9.png differ diff --git a/test-B/pictures/beffbd615561fe7932ba0b1d0061a4e8.png b/test-B/pictures/beffbd615561fe7932ba0b1d0061a4e8.png new file mode 100644 index 0000000..f5fc3b9 Binary files /dev/null and b/test-B/pictures/beffbd615561fe7932ba0b1d0061a4e8.png differ diff --git a/test-B/pictures/bfb52adb3be16520bd23ddedce6f8093.png b/test-B/pictures/bfb52adb3be16520bd23ddedce6f8093.png new file mode 100644 index 0000000..ca1c43b Binary files /dev/null and b/test-B/pictures/bfb52adb3be16520bd23ddedce6f8093.png differ diff --git a/test-B/pictures/bfc60ff6ea9a5e4a67c65821d19801b2.png b/test-B/pictures/bfc60ff6ea9a5e4a67c65821d19801b2.png new file mode 100644 index 0000000..9e61862 Binary files /dev/null and b/test-B/pictures/bfc60ff6ea9a5e4a67c65821d19801b2.png differ diff --git a/test-B/pictures/bfd98926e83d354a9128d61e4f41ded1.png b/test-B/pictures/bfd98926e83d354a9128d61e4f41ded1.png new file mode 100644 index 0000000..ac55f0d Binary files /dev/null and b/test-B/pictures/bfd98926e83d354a9128d61e4f41ded1.png differ diff --git a/test-B/pictures/bff268b6d024353f4f8cbf98e43edbc2.png b/test-B/pictures/bff268b6d024353f4f8cbf98e43edbc2.png new file mode 100644 index 0000000..b6f515a Binary files /dev/null and b/test-B/pictures/bff268b6d024353f4f8cbf98e43edbc2.png differ diff --git a/test-B/pictures/c033f9b4121c8819a6958fb087e290d0.png b/test-B/pictures/c033f9b4121c8819a6958fb087e290d0.png new file mode 100644 index 0000000..e0513d5 Binary files /dev/null and b/test-B/pictures/c033f9b4121c8819a6958fb087e290d0.png differ diff --git a/test-B/pictures/c0fa195ba6d55152bbf9a257fc29ca43.png b/test-B/pictures/c0fa195ba6d55152bbf9a257fc29ca43.png new file mode 100644 index 0000000..cd07b0a Binary files /dev/null and b/test-B/pictures/c0fa195ba6d55152bbf9a257fc29ca43.png differ diff --git a/test-B/pictures/c136732576d54a125554e0ec38caab00.png b/test-B/pictures/c136732576d54a125554e0ec38caab00.png new file mode 100644 index 0000000..1c78247 Binary files /dev/null and b/test-B/pictures/c136732576d54a125554e0ec38caab00.png differ diff --git a/test-B/pictures/c1648d2b66bf0529362d3f3bf867b49b.png b/test-B/pictures/c1648d2b66bf0529362d3f3bf867b49b.png new file mode 100644 index 0000000..9b69f7a Binary files /dev/null and b/test-B/pictures/c1648d2b66bf0529362d3f3bf867b49b.png differ diff --git a/test-B/pictures/c20c08a00109ef4ffec4ee436924fbc2.png b/test-B/pictures/c20c08a00109ef4ffec4ee436924fbc2.png new file mode 100644 index 0000000..069fd9c Binary files /dev/null and b/test-B/pictures/c20c08a00109ef4ffec4ee436924fbc2.png differ diff --git a/test-B/pictures/c224e86320349ac3e6a3a032963e5752.png b/test-B/pictures/c224e86320349ac3e6a3a032963e5752.png new file mode 100644 index 0000000..aae412a Binary files /dev/null and b/test-B/pictures/c224e86320349ac3e6a3a032963e5752.png differ diff --git a/test-B/pictures/c2a95fd2de08c1b7a3d0800efba46fac.png b/test-B/pictures/c2a95fd2de08c1b7a3d0800efba46fac.png new file mode 100644 index 0000000..1c8552e Binary files /dev/null and b/test-B/pictures/c2a95fd2de08c1b7a3d0800efba46fac.png differ diff --git a/test-B/pictures/c443512e4126605265aa035100b59881.png b/test-B/pictures/c443512e4126605265aa035100b59881.png new file mode 100644 index 0000000..fd4bdc5 Binary files /dev/null and b/test-B/pictures/c443512e4126605265aa035100b59881.png differ diff --git a/test-B/pictures/c45fd7ca39385e6d3fcda6fcf9fba536.png b/test-B/pictures/c45fd7ca39385e6d3fcda6fcf9fba536.png new file mode 100644 index 0000000..2dbdecd Binary files /dev/null and b/test-B/pictures/c45fd7ca39385e6d3fcda6fcf9fba536.png differ diff --git a/test-B/pictures/c496d91b95d3588f96bc79d4cbe1ecf8.png b/test-B/pictures/c496d91b95d3588f96bc79d4cbe1ecf8.png new file mode 100644 index 0000000..40ae6d0 Binary files /dev/null and b/test-B/pictures/c496d91b95d3588f96bc79d4cbe1ecf8.png differ diff --git a/test-B/pictures/c4cf6f8198e9f4b27a521286400690fb.png b/test-B/pictures/c4cf6f8198e9f4b27a521286400690fb.png new file mode 100644 index 0000000..5a65e11 Binary files /dev/null and b/test-B/pictures/c4cf6f8198e9f4b27a521286400690fb.png differ diff --git a/test-B/pictures/c55a8c01c57851eea1630e95751d26ea.png b/test-B/pictures/c55a8c01c57851eea1630e95751d26ea.png new file mode 100644 index 0000000..636a216 Binary files /dev/null and b/test-B/pictures/c55a8c01c57851eea1630e95751d26ea.png differ diff --git a/test-B/pictures/c699655122d529831ce5ad9b7439370a.png b/test-B/pictures/c699655122d529831ce5ad9b7439370a.png new file mode 100644 index 0000000..73d6a7a Binary files /dev/null and b/test-B/pictures/c699655122d529831ce5ad9b7439370a.png differ diff --git a/test-B/pictures/c6a62e492c59ddb2c8facf99d54cce55.png b/test-B/pictures/c6a62e492c59ddb2c8facf99d54cce55.png new file mode 100644 index 0000000..ffe4e82 Binary files /dev/null and b/test-B/pictures/c6a62e492c59ddb2c8facf99d54cce55.png differ diff --git a/test-B/pictures/c7533dfde1cc599918b59fb982574da4.png b/test-B/pictures/c7533dfde1cc599918b59fb982574da4.png new file mode 100644 index 0000000..4a06bc9 Binary files /dev/null and b/test-B/pictures/c7533dfde1cc599918b59fb982574da4.png differ diff --git a/test-B/pictures/c77a41f35d1a39cc3b0c4fed366b4564.png b/test-B/pictures/c77a41f35d1a39cc3b0c4fed366b4564.png new file mode 100644 index 0000000..31f2303 Binary files /dev/null and b/test-B/pictures/c77a41f35d1a39cc3b0c4fed366b4564.png differ diff --git a/test-B/pictures/c8ce0b99701a3dfbbffabef5ca9ed20d.png b/test-B/pictures/c8ce0b99701a3dfbbffabef5ca9ed20d.png new file mode 100644 index 0000000..d810c0f Binary files /dev/null and b/test-B/pictures/c8ce0b99701a3dfbbffabef5ca9ed20d.png differ diff --git a/test-B/pictures/c93d567e6201611b1d14ca52cd7d2d53.png b/test-B/pictures/c93d567e6201611b1d14ca52cd7d2d53.png new file mode 100644 index 0000000..9a4063d Binary files /dev/null and b/test-B/pictures/c93d567e6201611b1d14ca52cd7d2d53.png differ diff --git a/test-B/pictures/c946a846052de913988c53aa2036b4a2.png b/test-B/pictures/c946a846052de913988c53aa2036b4a2.png new file mode 100644 index 0000000..c9997e1 Binary files /dev/null and b/test-B/pictures/c946a846052de913988c53aa2036b4a2.png differ diff --git a/test-B/pictures/cb15042cf0dc5d1a5ef81988351d6f56.png b/test-B/pictures/cb15042cf0dc5d1a5ef81988351d6f56.png new file mode 100644 index 0000000..4065e0f Binary files /dev/null and b/test-B/pictures/cb15042cf0dc5d1a5ef81988351d6f56.png differ diff --git a/test-B/pictures/cb5b03d0b79d6a6f74afa15a0e25c287.png b/test-B/pictures/cb5b03d0b79d6a6f74afa15a0e25c287.png new file mode 100644 index 0000000..353857a Binary files /dev/null and b/test-B/pictures/cb5b03d0b79d6a6f74afa15a0e25c287.png differ diff --git a/test-B/pictures/cb8243079cee2b1d088e136c7449c07e.png b/test-B/pictures/cb8243079cee2b1d088e136c7449c07e.png new file mode 100644 index 0000000..65d0439 Binary files /dev/null and b/test-B/pictures/cb8243079cee2b1d088e136c7449c07e.png differ diff --git a/test-B/pictures/cb84588ca383505cd8875f3802478902.png b/test-B/pictures/cb84588ca383505cd8875f3802478902.png new file mode 100644 index 0000000..1494bb2 Binary files /dev/null and b/test-B/pictures/cb84588ca383505cd8875f3802478902.png differ diff --git a/test-B/pictures/cc1744d43a7b2a0a0869f9004a0685da.png b/test-B/pictures/cc1744d43a7b2a0a0869f9004a0685da.png new file mode 100644 index 0000000..6cf6c32 Binary files /dev/null and b/test-B/pictures/cc1744d43a7b2a0a0869f9004a0685da.png differ diff --git a/test-B/pictures/cc58ad42e60a6fcc8933cac0b0f8c520.png b/test-B/pictures/cc58ad42e60a6fcc8933cac0b0f8c520.png new file mode 100644 index 0000000..b987044 Binary files /dev/null and b/test-B/pictures/cc58ad42e60a6fcc8933cac0b0f8c520.png differ diff --git a/test-B/pictures/cc8c8c553602378b3bbf559c8c6de326.png b/test-B/pictures/cc8c8c553602378b3bbf559c8c6de326.png new file mode 100644 index 0000000..6dd49e6 Binary files /dev/null and b/test-B/pictures/cc8c8c553602378b3bbf559c8c6de326.png differ diff --git a/test-B/pictures/ccba5885cc15d2ebdd27f4975f4ed32d.png b/test-B/pictures/ccba5885cc15d2ebdd27f4975f4ed32d.png new file mode 100644 index 0000000..8b5982f Binary files /dev/null and b/test-B/pictures/ccba5885cc15d2ebdd27f4975f4ed32d.png differ diff --git a/test-B/pictures/cce7b7ae2587bb5fb4237f3cdc112f27.png b/test-B/pictures/cce7b7ae2587bb5fb4237f3cdc112f27.png new file mode 100644 index 0000000..d7a7079 Binary files /dev/null and b/test-B/pictures/cce7b7ae2587bb5fb4237f3cdc112f27.png differ diff --git a/test-B/pictures/ce43c9eeef5412ff83b969c9b4707722.png b/test-B/pictures/ce43c9eeef5412ff83b969c9b4707722.png new file mode 100644 index 0000000..70ec233 Binary files /dev/null and b/test-B/pictures/ce43c9eeef5412ff83b969c9b4707722.png differ diff --git a/test-B/pictures/cedac606706e4aa9a6eaf7f547851a77.png b/test-B/pictures/cedac606706e4aa9a6eaf7f547851a77.png new file mode 100644 index 0000000..b9299f3 Binary files /dev/null and b/test-B/pictures/cedac606706e4aa9a6eaf7f547851a77.png differ diff --git a/test-B/pictures/cf70801486e517b3823ae3bd2d210e1b.png b/test-B/pictures/cf70801486e517b3823ae3bd2d210e1b.png new file mode 100644 index 0000000..1d50b89 Binary files /dev/null and b/test-B/pictures/cf70801486e517b3823ae3bd2d210e1b.png differ diff --git a/test-B/pictures/cfac68c4d0415900bbed13b070b55c21.png b/test-B/pictures/cfac68c4d0415900bbed13b070b55c21.png new file mode 100644 index 0000000..e6f1c58 Binary files /dev/null and b/test-B/pictures/cfac68c4d0415900bbed13b070b55c21.png differ diff --git a/test-B/pictures/cfca3f858a393902f6f6d4936c122d7d.png b/test-B/pictures/cfca3f858a393902f6f6d4936c122d7d.png new file mode 100644 index 0000000..62f8c29 Binary files /dev/null and b/test-B/pictures/cfca3f858a393902f6f6d4936c122d7d.png differ diff --git a/test-B/pictures/d0492ae6c78148a730c4566d6ab3c279.png b/test-B/pictures/d0492ae6c78148a730c4566d6ab3c279.png new file mode 100644 index 0000000..4434537 Binary files /dev/null and b/test-B/pictures/d0492ae6c78148a730c4566d6ab3c279.png differ diff --git a/test-B/pictures/d05f103d98829af1029f8eaf2773c1a5.png b/test-B/pictures/d05f103d98829af1029f8eaf2773c1a5.png new file mode 100644 index 0000000..396c3b6 Binary files /dev/null and b/test-B/pictures/d05f103d98829af1029f8eaf2773c1a5.png differ diff --git a/test-B/pictures/d18f2832e2e660f62e45465d01e084d0.png b/test-B/pictures/d18f2832e2e660f62e45465d01e084d0.png new file mode 100644 index 0000000..2b54a21 Binary files /dev/null and b/test-B/pictures/d18f2832e2e660f62e45465d01e084d0.png differ diff --git a/test-B/pictures/d2a0f47008619c1b6fa30266bb9ca5d6.png b/test-B/pictures/d2a0f47008619c1b6fa30266bb9ca5d6.png new file mode 100644 index 0000000..2f8e501 Binary files /dev/null and b/test-B/pictures/d2a0f47008619c1b6fa30266bb9ca5d6.png differ diff --git a/test-B/pictures/d30c4914ccc4c71ef3ed8f9ec31ef3eb.png b/test-B/pictures/d30c4914ccc4c71ef3ed8f9ec31ef3eb.png new file mode 100644 index 0000000..5eb3061 Binary files /dev/null and b/test-B/pictures/d30c4914ccc4c71ef3ed8f9ec31ef3eb.png differ diff --git a/test-B/pictures/d330b4dc8f9c39933674af9db3d7a16f.png b/test-B/pictures/d330b4dc8f9c39933674af9db3d7a16f.png new file mode 100644 index 0000000..8209438 Binary files /dev/null and b/test-B/pictures/d330b4dc8f9c39933674af9db3d7a16f.png differ diff --git a/test-B/pictures/d33b7b2afb64b84f89acf0cc2563d65e.png b/test-B/pictures/d33b7b2afb64b84f89acf0cc2563d65e.png new file mode 100644 index 0000000..9db3bcd Binary files /dev/null and b/test-B/pictures/d33b7b2afb64b84f89acf0cc2563d65e.png differ diff --git a/test-B/pictures/d3fe93cce9370e5b18d0b8a49a446633.png b/test-B/pictures/d3fe93cce9370e5b18d0b8a49a446633.png new file mode 100644 index 0000000..c8e93a4 Binary files /dev/null and b/test-B/pictures/d3fe93cce9370e5b18d0b8a49a446633.png differ diff --git a/test-B/pictures/d4f278621d7adf4376abb7fa19a8f423.png b/test-B/pictures/d4f278621d7adf4376abb7fa19a8f423.png new file mode 100644 index 0000000..9ea57c1 Binary files /dev/null and b/test-B/pictures/d4f278621d7adf4376abb7fa19a8f423.png differ diff --git a/test-B/pictures/d4f97334a33c92f6a729c6d5e96c017e.png b/test-B/pictures/d4f97334a33c92f6a729c6d5e96c017e.png new file mode 100644 index 0000000..795025f Binary files /dev/null and b/test-B/pictures/d4f97334a33c92f6a729c6d5e96c017e.png differ diff --git a/test-B/pictures/d607481ff682d9f3b428228c67c0d6c7.png b/test-B/pictures/d607481ff682d9f3b428228c67c0d6c7.png new file mode 100644 index 0000000..1a4036d Binary files /dev/null and b/test-B/pictures/d607481ff682d9f3b428228c67c0d6c7.png differ diff --git a/test-B/pictures/d652ea72f5873f89ca398b7555921688.png b/test-B/pictures/d652ea72f5873f89ca398b7555921688.png new file mode 100644 index 0000000..b4b3263 Binary files /dev/null and b/test-B/pictures/d652ea72f5873f89ca398b7555921688.png differ diff --git a/test-B/pictures/d6b107bc71ec96ed18014e6204df3dec.png b/test-B/pictures/d6b107bc71ec96ed18014e6204df3dec.png new file mode 100644 index 0000000..1134a8a Binary files /dev/null and b/test-B/pictures/d6b107bc71ec96ed18014e6204df3dec.png differ diff --git a/test-B/pictures/d7a0b4c59a9473bd3fcbd9e086d87352.png b/test-B/pictures/d7a0b4c59a9473bd3fcbd9e086d87352.png new file mode 100644 index 0000000..9a7d5e0 Binary files /dev/null and b/test-B/pictures/d7a0b4c59a9473bd3fcbd9e086d87352.png differ diff --git a/test-B/pictures/d7c18b04b6bd107be40b01b394f1165f.png b/test-B/pictures/d7c18b04b6bd107be40b01b394f1165f.png new file mode 100644 index 0000000..e56e4bb Binary files /dev/null and b/test-B/pictures/d7c18b04b6bd107be40b01b394f1165f.png differ diff --git a/test-B/pictures/d820d62e9fd81caced6506787c928289.png b/test-B/pictures/d820d62e9fd81caced6506787c928289.png new file mode 100644 index 0000000..c3de0a2 Binary files /dev/null and b/test-B/pictures/d820d62e9fd81caced6506787c928289.png differ diff --git a/test-B/pictures/d8598552c76eaa93867f043bbd6ba68d.png b/test-B/pictures/d8598552c76eaa93867f043bbd6ba68d.png new file mode 100644 index 0000000..6762909 Binary files /dev/null and b/test-B/pictures/d8598552c76eaa93867f043bbd6ba68d.png differ diff --git a/test-B/pictures/d91a952ddb220202ef7b2d6d8bc8941b.png b/test-B/pictures/d91a952ddb220202ef7b2d6d8bc8941b.png new file mode 100644 index 0000000..ca7014b Binary files /dev/null and b/test-B/pictures/d91a952ddb220202ef7b2d6d8bc8941b.png differ diff --git a/test-B/pictures/d9ed7e9b1a186adc83b1d77b34ab2d64.png b/test-B/pictures/d9ed7e9b1a186adc83b1d77b34ab2d64.png new file mode 100644 index 0000000..2e25996 Binary files /dev/null and b/test-B/pictures/d9ed7e9b1a186adc83b1d77b34ab2d64.png differ diff --git a/test-B/pictures/d9f48fff556f23315575c716b804b9f9.png b/test-B/pictures/d9f48fff556f23315575c716b804b9f9.png new file mode 100644 index 0000000..1f91b31 Binary files /dev/null and b/test-B/pictures/d9f48fff556f23315575c716b804b9f9.png differ diff --git a/test-B/pictures/da53b6c79f2e5ae5975244bf97bae298.png b/test-B/pictures/da53b6c79f2e5ae5975244bf97bae298.png new file mode 100644 index 0000000..e118683 Binary files /dev/null and b/test-B/pictures/da53b6c79f2e5ae5975244bf97bae298.png differ diff --git a/test-B/pictures/dbdd0f085a15564756ef9f4e56188b80.png b/test-B/pictures/dbdd0f085a15564756ef9f4e56188b80.png new file mode 100644 index 0000000..cda7fa3 Binary files /dev/null and b/test-B/pictures/dbdd0f085a15564756ef9f4e56188b80.png differ diff --git a/test-B/pictures/dc38f159733883d161ab9d3852ecba00.png b/test-B/pictures/dc38f159733883d161ab9d3852ecba00.png new file mode 100644 index 0000000..db6d2fe Binary files /dev/null and b/test-B/pictures/dc38f159733883d161ab9d3852ecba00.png differ diff --git a/test-B/pictures/dd4f9c59ffb5cc0961e35b731890edcd.png b/test-B/pictures/dd4f9c59ffb5cc0961e35b731890edcd.png new file mode 100644 index 0000000..61a5f3f Binary files /dev/null and b/test-B/pictures/dd4f9c59ffb5cc0961e35b731890edcd.png differ diff --git a/test-B/pictures/dda59bea34642c719379d4a62b0a7829.png b/test-B/pictures/dda59bea34642c719379d4a62b0a7829.png new file mode 100644 index 0000000..efdebb2 Binary files /dev/null and b/test-B/pictures/dda59bea34642c719379d4a62b0a7829.png differ diff --git a/test-B/pictures/de2a6dc3bab2da8a9e2114a626780b8f.png b/test-B/pictures/de2a6dc3bab2da8a9e2114a626780b8f.png new file mode 100644 index 0000000..fa5467d Binary files /dev/null and b/test-B/pictures/de2a6dc3bab2da8a9e2114a626780b8f.png differ diff --git a/test-B/pictures/de486f5ddf6696447ff5956e4dd50c8c.png b/test-B/pictures/de486f5ddf6696447ff5956e4dd50c8c.png new file mode 100644 index 0000000..2ed4540 Binary files /dev/null and b/test-B/pictures/de486f5ddf6696447ff5956e4dd50c8c.png differ diff --git a/test-B/pictures/df404998d533300d7132bf1bf2a4df19.png b/test-B/pictures/df404998d533300d7132bf1bf2a4df19.png new file mode 100644 index 0000000..5e1cd58 Binary files /dev/null and b/test-B/pictures/df404998d533300d7132bf1bf2a4df19.png differ diff --git a/test-B/pictures/dfd7332b07818cca73f08cdeba942c49.png b/test-B/pictures/dfd7332b07818cca73f08cdeba942c49.png new file mode 100644 index 0000000..f7d68ea Binary files /dev/null and b/test-B/pictures/dfd7332b07818cca73f08cdeba942c49.png differ diff --git a/test-B/pictures/e0c83dbec67476b54c4f1c8e0adde360.png b/test-B/pictures/e0c83dbec67476b54c4f1c8e0adde360.png new file mode 100644 index 0000000..4202a81 Binary files /dev/null and b/test-B/pictures/e0c83dbec67476b54c4f1c8e0adde360.png differ diff --git a/test-B/pictures/e0f946dc39b898feff2306bafa106429.png b/test-B/pictures/e0f946dc39b898feff2306bafa106429.png new file mode 100644 index 0000000..0d0d14c Binary files /dev/null and b/test-B/pictures/e0f946dc39b898feff2306bafa106429.png differ diff --git a/test-B/pictures/e1d2ec59373c95cfc58108671a7b4d0c.png b/test-B/pictures/e1d2ec59373c95cfc58108671a7b4d0c.png new file mode 100644 index 0000000..dfd84ec Binary files /dev/null and b/test-B/pictures/e1d2ec59373c95cfc58108671a7b4d0c.png differ diff --git a/test-B/pictures/e2cb91bcf31117c3956bb08501f5c2b2.png b/test-B/pictures/e2cb91bcf31117c3956bb08501f5c2b2.png new file mode 100644 index 0000000..aabbcaa Binary files /dev/null and b/test-B/pictures/e2cb91bcf31117c3956bb08501f5c2b2.png differ diff --git a/test-B/pictures/e3b59bf5956482bf2123110e2c5ed637.png b/test-B/pictures/e3b59bf5956482bf2123110e2c5ed637.png new file mode 100644 index 0000000..f497740 Binary files /dev/null and b/test-B/pictures/e3b59bf5956482bf2123110e2c5ed637.png differ diff --git a/test-B/pictures/e4dbd203c4ece7a3826221a754f903b7.png b/test-B/pictures/e4dbd203c4ece7a3826221a754f903b7.png new file mode 100644 index 0000000..6fdf545 Binary files /dev/null and b/test-B/pictures/e4dbd203c4ece7a3826221a754f903b7.png differ diff --git a/test-B/pictures/e560203e5025af11e57d0966d49d6938.png b/test-B/pictures/e560203e5025af11e57d0966d49d6938.png new file mode 100644 index 0000000..a194aff Binary files /dev/null and b/test-B/pictures/e560203e5025af11e57d0966d49d6938.png differ diff --git a/test-B/pictures/e59b75ddc30f768359d8c46ad73d8262.png b/test-B/pictures/e59b75ddc30f768359d8c46ad73d8262.png new file mode 100644 index 0000000..c1552df Binary files /dev/null and b/test-B/pictures/e59b75ddc30f768359d8c46ad73d8262.png differ diff --git a/test-B/pictures/e68f89e6ce981e3f343c8ad38adbbb90.png b/test-B/pictures/e68f89e6ce981e3f343c8ad38adbbb90.png new file mode 100644 index 0000000..18aef3c Binary files /dev/null and b/test-B/pictures/e68f89e6ce981e3f343c8ad38adbbb90.png differ diff --git a/test-B/pictures/e6fe9d1eb0408975c6675986c0f3cf09.png b/test-B/pictures/e6fe9d1eb0408975c6675986c0f3cf09.png new file mode 100644 index 0000000..6bd4804 Binary files /dev/null and b/test-B/pictures/e6fe9d1eb0408975c6675986c0f3cf09.png differ diff --git a/test-B/pictures/e77d7bf57c0d32042387b30917b43d08.png b/test-B/pictures/e77d7bf57c0d32042387b30917b43d08.png new file mode 100644 index 0000000..d85a81e Binary files /dev/null and b/test-B/pictures/e77d7bf57c0d32042387b30917b43d08.png differ diff --git a/test-B/pictures/e84cf231a10e16545d693a1b75e96f04.png b/test-B/pictures/e84cf231a10e16545d693a1b75e96f04.png new file mode 100644 index 0000000..c44c03c Binary files /dev/null and b/test-B/pictures/e84cf231a10e16545d693a1b75e96f04.png differ diff --git a/test-B/pictures/e87aa166c4ce6759f0e6f37d9fb725c7.png b/test-B/pictures/e87aa166c4ce6759f0e6f37d9fb725c7.png new file mode 100644 index 0000000..4be5f93 Binary files /dev/null and b/test-B/pictures/e87aa166c4ce6759f0e6f37d9fb725c7.png differ diff --git a/test-B/pictures/e95f2edf1ac8bf4f3a473c5013e8b2fd.png b/test-B/pictures/e95f2edf1ac8bf4f3a473c5013e8b2fd.png new file mode 100644 index 0000000..213865c Binary files /dev/null and b/test-B/pictures/e95f2edf1ac8bf4f3a473c5013e8b2fd.png differ diff --git a/test-B/pictures/ea20a1902839bae33ebda3c67dec89f7.png b/test-B/pictures/ea20a1902839bae33ebda3c67dec89f7.png new file mode 100644 index 0000000..626054b Binary files /dev/null and b/test-B/pictures/ea20a1902839bae33ebda3c67dec89f7.png differ diff --git a/test-B/pictures/ea3c4978d94dbd08e933be5446d15199.png b/test-B/pictures/ea3c4978d94dbd08e933be5446d15199.png new file mode 100644 index 0000000..389cde1 Binary files /dev/null and b/test-B/pictures/ea3c4978d94dbd08e933be5446d15199.png differ diff --git a/test-B/pictures/ea57aa58becee38032b314904f550c05.png b/test-B/pictures/ea57aa58becee38032b314904f550c05.png new file mode 100644 index 0000000..c3e1ab1 Binary files /dev/null and b/test-B/pictures/ea57aa58becee38032b314904f550c05.png differ diff --git a/test-B/pictures/eaee88456ca9377e9f8995428a0a6e3a.png b/test-B/pictures/eaee88456ca9377e9f8995428a0a6e3a.png new file mode 100644 index 0000000..54f6e8d Binary files /dev/null and b/test-B/pictures/eaee88456ca9377e9f8995428a0a6e3a.png differ diff --git a/test-B/pictures/eb2bf822c74445cf1332daddfd20490a.png b/test-B/pictures/eb2bf822c74445cf1332daddfd20490a.png new file mode 100644 index 0000000..8172f93 Binary files /dev/null and b/test-B/pictures/eb2bf822c74445cf1332daddfd20490a.png differ diff --git a/test-B/pictures/eb94f81953a5de87df2f7cec0ee68b17.png b/test-B/pictures/eb94f81953a5de87df2f7cec0ee68b17.png new file mode 100644 index 0000000..c4f364b Binary files /dev/null and b/test-B/pictures/eb94f81953a5de87df2f7cec0ee68b17.png differ diff --git a/test-B/pictures/ebc68edb123db33f1a5d71efca2f5566.png b/test-B/pictures/ebc68edb123db33f1a5d71efca2f5566.png new file mode 100644 index 0000000..af8e34e Binary files /dev/null and b/test-B/pictures/ebc68edb123db33f1a5d71efca2f5566.png differ diff --git a/test-B/pictures/ebcd278e389bf5774b28685d316c0491.png b/test-B/pictures/ebcd278e389bf5774b28685d316c0491.png new file mode 100644 index 0000000..65d160a Binary files /dev/null and b/test-B/pictures/ebcd278e389bf5774b28685d316c0491.png differ diff --git a/test-B/pictures/ec278c79680099db88874835fa61b06d.png b/test-B/pictures/ec278c79680099db88874835fa61b06d.png new file mode 100644 index 0000000..d69ed75 Binary files /dev/null and b/test-B/pictures/ec278c79680099db88874835fa61b06d.png differ diff --git a/test-B/pictures/ec53511067b5cec597ead7ab93a3cc91.png b/test-B/pictures/ec53511067b5cec597ead7ab93a3cc91.png new file mode 100644 index 0000000..556c2f4 Binary files /dev/null and b/test-B/pictures/ec53511067b5cec597ead7ab93a3cc91.png differ diff --git a/test-B/pictures/ed405e9589a609e0c04a3ae3dba92de6.png b/test-B/pictures/ed405e9589a609e0c04a3ae3dba92de6.png new file mode 100644 index 0000000..e40168f Binary files /dev/null and b/test-B/pictures/ed405e9589a609e0c04a3ae3dba92de6.png differ diff --git a/test-B/pictures/ed410d9e936304c3ca22ed9e492405bb.png b/test-B/pictures/ed410d9e936304c3ca22ed9e492405bb.png new file mode 100644 index 0000000..4bda025 Binary files /dev/null and b/test-B/pictures/ed410d9e936304c3ca22ed9e492405bb.png differ diff --git a/test-B/pictures/edc747a64afaec7001a6ea1b31edd4fb.png b/test-B/pictures/edc747a64afaec7001a6ea1b31edd4fb.png new file mode 100644 index 0000000..1bc5e3b Binary files /dev/null and b/test-B/pictures/edc747a64afaec7001a6ea1b31edd4fb.png differ diff --git a/test-B/pictures/ee19068b87a6753abe8e981237416c01.png b/test-B/pictures/ee19068b87a6753abe8e981237416c01.png new file mode 100644 index 0000000..1b68862 Binary files /dev/null and b/test-B/pictures/ee19068b87a6753abe8e981237416c01.png differ diff --git a/test-B/pictures/eea4c2aa99bc1b84ef215e188f261a76.png b/test-B/pictures/eea4c2aa99bc1b84ef215e188f261a76.png new file mode 100644 index 0000000..83dc9c1 Binary files /dev/null and b/test-B/pictures/eea4c2aa99bc1b84ef215e188f261a76.png differ diff --git a/test-B/pictures/efd2991f335d702849acff79e6091c43.png b/test-B/pictures/efd2991f335d702849acff79e6091c43.png new file mode 100644 index 0000000..503cb49 Binary files /dev/null and b/test-B/pictures/efd2991f335d702849acff79e6091c43.png differ diff --git a/test-B/pictures/f18b34ef90e4d6813604105c6ece3233.png b/test-B/pictures/f18b34ef90e4d6813604105c6ece3233.png new file mode 100644 index 0000000..f6ccb2d Binary files /dev/null and b/test-B/pictures/f18b34ef90e4d6813604105c6ece3233.png differ diff --git a/test-B/pictures/f2ef3e7a046b06bd83a4a6623cab0655.png b/test-B/pictures/f2ef3e7a046b06bd83a4a6623cab0655.png new file mode 100644 index 0000000..1be24a8 Binary files /dev/null and b/test-B/pictures/f2ef3e7a046b06bd83a4a6623cab0655.png differ diff --git a/test-B/pictures/f3000a13a94a2ea003c7d7ff5f5ee594.png b/test-B/pictures/f3000a13a94a2ea003c7d7ff5f5ee594.png new file mode 100644 index 0000000..ecaa47d Binary files /dev/null and b/test-B/pictures/f3000a13a94a2ea003c7d7ff5f5ee594.png differ diff --git a/test-B/pictures/f3cadbc38d64c15060955c770c03231f.png b/test-B/pictures/f3cadbc38d64c15060955c770c03231f.png new file mode 100644 index 0000000..05577e9 Binary files /dev/null and b/test-B/pictures/f3cadbc38d64c15060955c770c03231f.png differ diff --git a/test-B/pictures/f4afc42167edf88ebcd244e24e042000.png b/test-B/pictures/f4afc42167edf88ebcd244e24e042000.png new file mode 100644 index 0000000..6d03a63 Binary files /dev/null and b/test-B/pictures/f4afc42167edf88ebcd244e24e042000.png differ diff --git a/test-B/pictures/f4ff6b875efc5cb418aaed5844adaefa.png b/test-B/pictures/f4ff6b875efc5cb418aaed5844adaefa.png new file mode 100644 index 0000000..941a88a Binary files /dev/null and b/test-B/pictures/f4ff6b875efc5cb418aaed5844adaefa.png differ diff --git a/test-B/pictures/f5a3244a2763e913edfcd90ca6b846e5.png b/test-B/pictures/f5a3244a2763e913edfcd90ca6b846e5.png new file mode 100644 index 0000000..67af530 Binary files /dev/null and b/test-B/pictures/f5a3244a2763e913edfcd90ca6b846e5.png differ diff --git a/test-B/pictures/f70033ce0adaa20735724dee93cc0d2a.png b/test-B/pictures/f70033ce0adaa20735724dee93cc0d2a.png new file mode 100644 index 0000000..dd98dcc Binary files /dev/null and b/test-B/pictures/f70033ce0adaa20735724dee93cc0d2a.png differ diff --git a/test-B/pictures/f7e50748b237e5a0f32124be659369a7.png b/test-B/pictures/f7e50748b237e5a0f32124be659369a7.png new file mode 100644 index 0000000..114cc84 Binary files /dev/null and b/test-B/pictures/f7e50748b237e5a0f32124be659369a7.png differ diff --git a/test-B/pictures/f898b9d1360e527a3d012bf3974dc985.png b/test-B/pictures/f898b9d1360e527a3d012bf3974dc985.png new file mode 100644 index 0000000..0d11a63 Binary files /dev/null and b/test-B/pictures/f898b9d1360e527a3d012bf3974dc985.png differ diff --git a/test-B/pictures/f8dfc0229d942beb8d4a6ebcd2c8128b.png b/test-B/pictures/f8dfc0229d942beb8d4a6ebcd2c8128b.png new file mode 100644 index 0000000..a3041e0 Binary files /dev/null and b/test-B/pictures/f8dfc0229d942beb8d4a6ebcd2c8128b.png differ diff --git a/test-B/pictures/f9697bffeeeb29d74cf50c06ab1e2de8.png b/test-B/pictures/f9697bffeeeb29d74cf50c06ab1e2de8.png new file mode 100644 index 0000000..a434593 Binary files /dev/null and b/test-B/pictures/f9697bffeeeb29d74cf50c06ab1e2de8.png differ diff --git a/test-B/pictures/f96d671cd07ccd8ba24b28b88ebf55c3.png b/test-B/pictures/f96d671cd07ccd8ba24b28b88ebf55c3.png new file mode 100644 index 0000000..1ef3b5e Binary files /dev/null and b/test-B/pictures/f96d671cd07ccd8ba24b28b88ebf55c3.png differ diff --git a/test-B/pictures/fa90cfd468a50761dc368556b32fd595.png b/test-B/pictures/fa90cfd468a50761dc368556b32fd595.png new file mode 100644 index 0000000..81e855b Binary files /dev/null and b/test-B/pictures/fa90cfd468a50761dc368556b32fd595.png differ diff --git a/test-B/pictures/fb32b49af67a347fc2c1dbeb6f2c3d1a.png b/test-B/pictures/fb32b49af67a347fc2c1dbeb6f2c3d1a.png new file mode 100644 index 0000000..9ff5100 Binary files /dev/null and b/test-B/pictures/fb32b49af67a347fc2c1dbeb6f2c3d1a.png differ diff --git a/test-B/pictures/fb686e78f2d350c46842fa56861eca4d.png b/test-B/pictures/fb686e78f2d350c46842fa56861eca4d.png new file mode 100644 index 0000000..de3a688 Binary files /dev/null and b/test-B/pictures/fb686e78f2d350c46842fa56861eca4d.png differ diff --git a/test-B/pictures/fb6df9f81bbe674d193b2045ea4378a2.png b/test-B/pictures/fb6df9f81bbe674d193b2045ea4378a2.png new file mode 100644 index 0000000..91db378 Binary files /dev/null and b/test-B/pictures/fb6df9f81bbe674d193b2045ea4378a2.png differ diff --git a/test-B/pictures/fba53fb9d02bfbbd76247cf20f99fc9e.png b/test-B/pictures/fba53fb9d02bfbbd76247cf20f99fc9e.png new file mode 100644 index 0000000..4791cbb Binary files /dev/null and b/test-B/pictures/fba53fb9d02bfbbd76247cf20f99fc9e.png differ diff --git a/test-B/pictures/fbd95c3373233168aa4b10f9278ae150.png b/test-B/pictures/fbd95c3373233168aa4b10f9278ae150.png new file mode 100644 index 0000000..ed9598d Binary files /dev/null and b/test-B/pictures/fbd95c3373233168aa4b10f9278ae150.png differ diff --git a/test-B/pictures/fc047d9b296ae3e21b89896dd47a4e4d.png b/test-B/pictures/fc047d9b296ae3e21b89896dd47a4e4d.png new file mode 100644 index 0000000..0fc101b Binary files /dev/null and b/test-B/pictures/fc047d9b296ae3e21b89896dd47a4e4d.png differ diff --git a/test-B/pictures/fc569135cade6391b8cdf212c31a1264.png b/test-B/pictures/fc569135cade6391b8cdf212c31a1264.png new file mode 100644 index 0000000..b705c64 Binary files /dev/null and b/test-B/pictures/fc569135cade6391b8cdf212c31a1264.png differ diff --git a/test-B/pictures/fc6e1194675bf2181b991fb262b37962.png b/test-B/pictures/fc6e1194675bf2181b991fb262b37962.png new file mode 100644 index 0000000..80e0386 Binary files /dev/null and b/test-B/pictures/fc6e1194675bf2181b991fb262b37962.png differ diff --git a/test-B/pictures/fd60a3d039cca0b7709cbd530aba21f4.png b/test-B/pictures/fd60a3d039cca0b7709cbd530aba21f4.png new file mode 100644 index 0000000..d6c5e27 Binary files /dev/null and b/test-B/pictures/fd60a3d039cca0b7709cbd530aba21f4.png differ diff --git a/test-B/pictures/fd8f8ec4a5a2b66a639951f5cd910f1d.png b/test-B/pictures/fd8f8ec4a5a2b66a639951f5cd910f1d.png new file mode 100644 index 0000000..1462ce1 Binary files /dev/null and b/test-B/pictures/fd8f8ec4a5a2b66a639951f5cd910f1d.png differ diff --git a/test-B/pictures/fed873f7be65f1e428eb98c1d89e9e61.png b/test-B/pictures/fed873f7be65f1e428eb98c1d89e9e61.png new file mode 100644 index 0000000..21b14f6 Binary files /dev/null and b/test-B/pictures/fed873f7be65f1e428eb98c1d89e9e61.png differ diff --git a/test-B/pictures/feec5d0935d9cf4c0a3ec6332f953d49.png b/test-B/pictures/feec5d0935d9cf4c0a3ec6332f953d49.png new file mode 100644 index 0000000..ea1a023 Binary files /dev/null and b/test-B/pictures/feec5d0935d9cf4c0a3ec6332f953d49.png differ diff --git a/test-B/pictures/fefef30376e48a90ee2ce702c7bf6ed1.png b/test-B/pictures/fefef30376e48a90ee2ce702c7bf6ed1.png new file mode 100644 index 0000000..6af2978 Binary files /dev/null and b/test-B/pictures/fefef30376e48a90ee2ce702c7bf6ed1.png differ diff --git a/test-B/pictures/ff81688eea88aebaa88aae48a1aeb69c.png b/test-B/pictures/ff81688eea88aebaa88aae48a1aeb69c.png new file mode 100644 index 0000000..74202bf Binary files /dev/null and b/test-B/pictures/ff81688eea88aebaa88aae48a1aeb69c.png differ diff --git a/test-B/pictures/ffda1424b9fac9688e4ad3edf38ecafa.png b/test-B/pictures/ffda1424b9fac9688e4ad3edf38ecafa.png new file mode 100644 index 0000000..983099f Binary files /dev/null and b/test-B/pictures/ffda1424b9fac9688e4ad3edf38ecafa.png differ diff --git a/test-B/pictures/ffe729001d670017712e73d584cf3aa7.png b/test-B/pictures/ffe729001d670017712e73d584cf3aa7.png new file mode 100644 index 0000000..ea270a0 Binary files /dev/null and b/test-B/pictures/ffe729001d670017712e73d584cf3aa7.png differ diff --git a/train/captions.tsv b/train/captions.tsv new file mode 100644 index 0000000..ed33ba9 --- /dev/null +++ b/train/captions.tsv @@ -0,0 +1,675 @@ +1 "A WOMAN TO WOMEN." +2 "ARTISTIC"\naccurately describes our frames and the\nmanner in which we select them for the\npicture and put them together. +3 "Call a \nTaxi" +4 "Cured\nNeuralgia\nPain" +5 "HUTCH" SEEMS TO BE STILL UP TO HIS OLD TRICKS +6 "I swear to cut our cigartes,"\nSaid Youthful Arthur Stringbean\nBetts:\n"I think I'm ripe\nTo smoke a pipe;\nI give up eight with no regrets." +7 "NIAGARA" MAID SILK GLOVES +8 "Open Your Mouth\nAnd Shut Your Eyes."\nThat's a good rule in some drug stores\nbut in others you have to keep your\neyes wide open. +9 "SAXON SIX" +10 "SUNSET ROUTE."\n(THE TRUE SOUTHERN PACIFIC.)\nGalveston, Harrisburg and San\nAntonio Railway,\nTHE ONLY ALL-RAIL LINE\nTO\nSAN ANTONIO. +11 "THE\nBABY\nPHOTOGRAPHER" +12 "THEN IT HAPPENED" +13 "TWAS THE NIGHT BEFORE CHRISTMAS."\nA few suggestions on the thoughts that filled the minds of children. +14 "There was a frog who lived in a spring,\nHe caught such a cold he could but sing" +15 "This is a great secret, dear girl. Guard it as you would your life!" +16 "WAIT FOR THE WAGON!"\nTHE FORTY HORSE WAGON!\nLOOK OUT FOR THE GREAT ASCENSION! +17 "WHO KILLED BILL\nMORRISON?" +18 "Who Would Have Thought That Men's\nOvercoats Would Be So Handsome +19 $1.00 RAZOR! +20 $1.50\nDining\nChairs\nFor 79cts. +21 $10! ONLY $10!\nWe offer for the NEXT THIRTY DAYS the no. 7 ECLIPSE COOK\nSTOVE for the small sum of $10. +22 (The Spanish Cruiser Cristobal Colon,\nto be Raised, Repaired and Re-\nchristened "The Maine" -\nHip, Hip, Hoorah!) +23 -:MANUFACTURERS OF:-\nPLOWS, - PLOW - CASTINGS - AND - BALING - PRESSES. +24 -Manufacturer of-\nTIN, COPPER AND SHEET IRON WARES,\n-AND DEALER IN-\nCOOKING, HEATING, OFFICE AND PARLOR STOVES. +25 A 14-inch projectile, weighing 1070 pounds, and a charge of 325 pounds of smokeless powder. +26 A BASEBALL WAR LOOKS FAR, FAR AWAY. +27 A Cold Bottle of\nPrimo Beer\n\nGoes well at any time, but \nis tastes best when taken\nwith the evening meal. +28 A DIPLOMATIC ARRANGEMENT. +29 A Hurry Call by Telephone\nor mail will be responded to quickly by\nus when you are brightening up your\ndining room, parlor and guest room for\nThanksgiving or the holiday season. +30 A LITTLE DANDERINE WILL\nMAKE YOUR HAIR LUSTROUS,\nSOFT, FLUFFY, ABUNDANT +31 A Little of Everything +32 A MERRY CHRISTMAS +33 A MODEL BATH ROOM +34 A MUSIC GENERAL\nEmil Oberhoffer, Conductor of the\nMinneapolis Symphony Orchestra that\nPlayed Here Last Night +35 A Marked Man. +36 A Meet of the Meadowbrook Hunt\nTHIS CLUB HAS MANY CRACK WOMEN RIDERS +37 A New\nARROW\nNotch COLLAR +38 A New Era in Sport +39 A PERFECT HEALTH BREAD\nBAKED FROM\nPurina Health Flour +40 A POSITIVE CURE\nFOR\nCATARRH\nHAY-FEVER +41 A Pulverized\nCoffee of\nQuality +42 A SAFE INVESTMENT +43 A Saving in Shaving +44 A Sensible Woman\nShe' putting the washboard\nwhere it'll do some good. +45 A Special Drive In Pianos +46 A Succesful Baking\nalways folows the use of the Freder-\nicksburg Milling Co.'s Flour. +47 A TIDAL WAVE OF SUCCCESS\nIs Sweeping Over the Land,\nand Carrying Munyon's\nCures Into Every Home +48 A TRIP TO CALIFORNIA\nin regal splendor, can be made\non "THE OVERLAND LIMITED",\nthe celebrated Union Pacific train. +49 A member of the family has been stricken \nwith sudden illness, or an accident has occured.\nEvery Minute's delay reduces the chances of\nrecovery:\nIt is then that the Bell Telephone is "worth its weight in gold" to the anxious farmer. +50 A word in private to\nSuffering\nWomen. +51 AIN'T IT A GRAND AND GLORIOUS FEELIN'? +52 ALAS, WE KNEW HER WELL\nThe vaudeville syndicate has put a ban on mother-in-law jokes. +53 ALL IN FAVOR SAY "AYE!" +54 ALL-WOOL\nSUITS\nHAND-TAILORED SITS\nFor Men and Young Men +55 ALLEN'S TRANSFER.\nBus, Baggage, Dray Line. +56 AN EYE TONIC THAT CURES +57 ANNOUNCEMENT\nOF REAL INTEREST TO MEN\nWE MAKE YOUR SUIT OR\nOVERCOAT TO ORDER FOR $15 +58 ARE YOU\nON TIME? +59 ASK your stenographer what it means to change a type-\nwriter ribbon three times in getting out a day's work.\nThe New Tri-Chrome\nSmith Premier Typewriter +60 ASPIRIN\nName "Bayer" on Genuine\nDoesn't hurt a bit! +61 ATHENA\nKnit Underwear\nSloping Shoulders and\nSleebes\nPerfect Shoulder-\nStay\nCurved Armhole +62 AUTOS REPAIRED.\nQUICK WORK. MODERATE PRICES +63 AUTUMN SALE OF\nHANAN'S FINE SHOES +64 Above picture is on every carton contain-\ning a 75c bottle of Drake's Palmetto Wine. +65 Admiring Her Pretty\nTeeth +66 Adolf is\na Very\nAggravating\nCustomer\nat Osgar's\nLittle Store. +67 Agents Wanted for our Now Book. +68 American Jr.\nCamera\nWith Double\nPlate Holder\n$1.60 +69 American Watches. +70 An Ample Supply of China-\nware here. +71 An Ideal Dentifrice\nFor All the Family +72 As it used to be in the old, old days. You see more parents than Johnnies around the stage door nowadays. +73 Auburn Prices NOW Lowest in History of Beauty-Six\nModels. Quality Better Than Ever - Value Unsurpassed +74 Ayer's\nHair Vigor,\nFOR RESTORING GRAY HAIR TO ITS\nNATURAL VITALITY AND COLOR. +75 Ayer's\nHair Vigor,\nFor restoring Gray Hair to\nIts natural Vitality and Color. +76 BAD STOMACH?\nONE DOSE OF\nMary's Wonderful Stomach Rem-\nedy Should Convince You that\nYour Suffering Is Unnecessary. +77 BALL'S\nCORSETS +78 BALOON IN WHICH ANDREE SAILED FOR THE POLE. +79 BECKER BROS. CO.\nDealers in Choice Meats\nManu-\nfacturers of\nall Kinds\nof\nSau-\nsages +80 BELIEVES THAT THIS BOY\nHAS BEEN SPIRITED AWAY. +81 BEN\nFRANKLIN\nSAID +82 BEST DOUBLE-BARRELED SHOTGUN\nIN\nTHE WORLD FOR THE MONEY. +83 BEST LINE OF SHOES IN TOWN\nTHE "RED FRONT" +84 BETTER THAN PEBBLES!\nTHE MOST BRILLIANT AND PERFECT LENSE IN USE +85 BOOTS & SHOES\nTHE\nVERY BEST\nAnd Latest Styles of Men's La-\ndies and Childens' Shoes. +86 BOYS OF PUBLIC SCHOOL. 44 DRESSED AS UNCLE SAM. +87 BRASS BAND +88 BUBBLE PARTIES +89 BUCK'S JUNIOR RANGE\nCOUPON CLIPPING CONTEST\nNAME +90 BUCKEYE ROUTE\nTHE COLUMBUS\nHOCKING VALLEY +91 BURNS BETTER\nMORE WARMTH\nLESS WASTE +92 BUT WHAT OF\nTHE WOMAN? +93 Babcock & Wilcox\nThe largest and most success-\nful makers of Steam Boilers in\nthe world. +94 Baby's\nVoice +95 Baseball World Tour\nBook Coupon +96 Bath-room\ncomfort +97 Beverly Bungalows\nNew Homes Back to Normal Prices\n$5500 Up - Small Amount Cash +98 Bishop\nScott\nAcademy +99 Boy's School Suits $3.75 +100 Boy's Short Pants Suits. +101 But come and have a talk with us\nabout your teeth. NO NEED TO SUF-\nFER. You can have good dental work\ndone without the allightest pain. You\nwill find our charges very reasonable.\nPhiladelphia Dental Rooms. +102 By injecting M. & W. quick-repair cement through the puncture into this inner tube +103 CALIFORNIA\nWEATOSE +104 CALIFORNIA FRUIT SALT +105 CALIFORNIA STABLES +106 CALL IN AND SEE OUR GASOLINE ENGINES\nReceived in car lots. Full guarantee on each. +107 CALL and SEE\nThat Beautiful One Price\n$375\nPLAYER PIANO\n2 DOZEN ROLLS, BENCH AND SCARF +108 CAN YOU TELL WHAT AILS\nTHIS MAN? +109 CANOPY TOPS +110 CARTS and BABY CARRIAGES +111 CASTORIA\nFor Infants and Children\nThe Kind Tou Have\nAlways Bought +112 CATARRH\nSANDFOR'S RADICAL CURE. +113 CATARRH! +114 CEDAR MOUNTAIN +115 CHAMBER OF COMMERCE VICTOR +116 CHASE CO. LAND & LIVE STOCK CO.\nHorses branded on left hip or left shoulders +117 CHICAGO'S LIVE STOCK EXHIBITION\nHOLDS WORLDS RECORD +118 CHILDREN AND HOME OF SLAIN MAN +119 CHILDREN'S SHOES +120 CHINA BOY'S\nWLOS\nWLO\nIN\nAMELICA\nIf losse tlemper, alight, den\nhlang on to tongue. +121 CHOCOLATES\nand\nCOCOAS +122 CHRISTMAS PRESENTS. +123 CLOCKS, WATCHES, JEWEL-\nRY, SILVERWARE, FANCY\nGOODS AND NOTIONS. +124 COLLINS AXES. +125 CREAM SEPARATORS. +126 CROWDS ON OLIVE AND SEVENTH STREETS WATCHING THE REPUBLIC'S BULLETINS OF THE YACHT RACE +127 CRUISERS OF THE PACIFIC FLEET NOW IN PORT. +128 Can You Grasp It?\nWould you like to own\nyour own HOME, the only\ncertain "independence" in\nthe world? +129 Carbo Magnetic\nRazor. +130 Cash or Credit\n20 Per Cent\nDiscount\nSpecial Sale\nA splendid chance for\na good investment in\ngenuine Diamond\nRings, Studs Brooch-\nes, Earrings, Lockets,\nEtc., on easy pay-\nments. +131 Celebrated Whitney Baby Carriages +132 Champion Hog Ringer,\nRings and Holder. +133 Chicago\nGlee\nClub\nHigh\nSchool\nAuditorium\nMONDAY\nEVENING\nJULY 13\n8:30 O'CLOCK\nTrombone Quartet\nHooster\nImpersonations +134 Children \nalways \nEnjoy It. \nSCOTT'S \nEMULSION \nof pure Ced Liver Oil with Hypo-\nphosphites of Lime and Soda is\nalmost as pelatable as milk. +135 China Dinner Sets. +136 City Butcher! +137 City Meat Market. +138 Cold Facts\n-ABOUT THE-\nLeonard Cleanable Refrigerators +139 Coles Hot Blast Range +140 Commercial\nGas Engines\nand Hoists +141 Complete Line of Caskets\nand Burial Robes +142 Complete line of Caskets\nand Burial Robes. +143 Complexion Preserved\nDR. HEDRA'S\nVIOLA CREAM +144 Cures Without Drugs +145 DAN STUART.\nThe Pugilistic Impresario, Who Has His\nEyes on Missouri +146 DENTISTRY +147 DESKS +148 DESKS AND OFFICE FURNITURE. +149 DID YOU KNOW\nthat there is no extra charge for the extra ma-\nterial and extra workmanship that goes into the\nSterling Bicycle which makes it the strongest\nWheel in the world. +150 DISEASES of MEN CALL OR WRITE +151 DISTRICT\nMessenger\nSERVICE +152 DOES YOUR WATCH,\nCLOCK OR JEWELERY\nNEED REPAIRING? +153 DOMINION HOTEL - Finest Hostlery in the Southwest - 80 Rooms - All\nModern Conveniences and the Best of Service +154 DOMINION HOTEL - Finest Hostlery in the Southwest - 80 rooms - All\nModern Conveniences and the Best of Service +155 DON'T LET\nYour Automobile\nFreeze This Winter\nGet Some THERMITE\nGuaranteed Efficient and Harmless +156 DOUBLE VISION GLASSES +157 DRINK PURE WATER +158 DRY\nGOODS +159 Dainty\nChops\nFrom \nPoor Lamb +160 Defective Eyesight +161 Democratic Meetings. +162 Deposit a Dollar +163 Despair and Despodency +164 Dexter's\nNorfolk Steam\nLaundry. +165 Diplomat Who\nMust Leave\nthe U.S. +166 Do Not Wear Glasses +167 Do You Feel This Way?\nDo you feel all tired out? +168 Do You Want A\nBICYCLE?\nBicycles and\nBicycle Sundries +169 Doings of the Duff's\nThe Visitor Unconsciously Gives Helen a Tip +170 Doings of the Duffs A Faint Pocketbook Never Won a Fair Heart. By Allman +171 Don't \nForget +172 Don't Buy a Doped Horse\nand don't let yourself be swindled by a\ncrooked horse dealer on any of the score\nof tricks he has up his sleeve. +173 Don't Heat\nthe Kitchen\nNEW PERFECTION\nWick Blue Flame Oil Cook-Stove +174 Don't Wait Any Longer For\nThat Easter Suit +175 Dr. Meyer's Staff of Physicians. +176 Dress Shirt's\nto order a specialty. +177 EDUCATIONAL +178 ELECTRO \nDENTAL \nPARLORS +179 ELLIS ISLAND, LANDING PALACE OF IMMIGRANTS. +180 ENCYCLOPAEDIA BRITANNICA +181 ENGAGEMENT ANNOUNCED-\n"SELMA HALL" HOUSE PARTY\nMISS ROSALIE DILLEXBERG,\nWhose engagement to Leslie Liever is announed. +182 ENGLISH NOBLEMAN WHO SENDS\nGOOD WISHES TO DEPARTMENT +183 ENLIGHTENMENT +184 Edgar Allan Poe +185 Electric Heating Pads\n-A Home Necessity +186 Enigines, THRESHERS,\nTanks, STACKERS,\nSaw Mills, HORSE POWERS. +187 Every Ship of the Atlantic Fleet\nhad on board a Pianola or a Pianola-Piano. This was one\nof the greatest evidences of its up-to-date equipment.\nOn land or sea the PIANOLA is the world's greatest\nentertainer. +188 Exceptionally Good is the Trade in Akron\n"Air Blast" Furnaces This Year.\nAKRON AIR BLAST FURNACE. +189 Exercise is as necessary\nto the feet, as to the arms,\nCoward ARCH EXER-\nCISER Shpe (flexible\nshank) developers the\nfoot naturally, giving\nstrenght, elasticity and\nendurance to the muscles\nof the arch and ankle. +190 Extra Special \nBargain Prices\nOn All Dining Room Furn-\niture During Our Great\nJanuary Clearance Sale +191 FANCY CHINA. +192 FATHER GOES AFTER A "MASHER" +193 FAVORITE FOR GOLF TITLE HERE. +194 FINDS PAINTING OF LORD BYRON. +195 FIVE FRENCH DANCING HORSES! +196 FOR CUTLERY\nSTANDARD BRANDS, GREAT VARIETY AT LOW PRICES,\ncall on THE NYE HARDWARE COMPANY. +197 FOR SALE\nPure-bred Jersey Bull +198 FOR SALE - AUTOS +199 FORBES\nIII5 CHESTNUT ST.\n(OPPOSITE KEITH'S)\nSale of Furs +200 FORCES SALE OF\nSTYLISH APPAREL FOR WOMEN AND GIRLS +201 FOUR GENERATIONS OF ST. LOUIS\nFAMILY HOLD INTERESTING REUNION +202 FOUTZ'S\nHORSE AND CATTLE POWDERS +203 FRUIT STORAGE CELLAR.\nA System That Protects Against Freezing\nand Gives Perfect Ventilation +204 Fair weather now, but it will be colder by and by!\nGet one of our Heaters!\nWe handle the World-famous\nBeckweth Round Oak +205 Farming Tools\nSeeds, +206 Fatima cigarettes\n- mild, delightful\nTurkish-blend.\nThe richest of\nleaf - always pure\nand wholesome -\nalways satisfac-\ntory. +207 Final Reduction! Men's Clothing!\n$15 +208 Fine Shoes\nAND\nSlippers +209 For\nSale\nOne 5 room house,\nOne 4 room house,\nOne 6 room house.\nThese houses are\nnew and will be\nsold on easy pay-\nments. +210 For Children's Sake\nTest this new teeth-cleaning method +211 Furnishing Goods.\nHats and Cape. +212 GAS BILLS\nREDUCED\n15 to 40 per cent +213 GASOLINE ALLEY Nothing Like Knowing Where to Get Cash When You Need It By KING +214 GATLING'S FAMOUS DESTROYER, NOW BEING CAST AT CLEVELAND. +215 GEN. SANTOS ZELAYA, PRESIDENT OF\nNICARAGUA +216 GET A MOVE ON! +217 GET WELL +218 GIRLS' TUCKED DRESS.\n6, 8, 10 and 12 years. +219 GOLDEN EAGLE HOTEL +220 GOOD FORM HINTS\nBY CYNTHIA GREY +221 GRANT\nA standard car in every respect with features not found on cars\nselling for twice as much - and best of all - a car that is in reach\nof a class of people who can appreciate the pleasure derived from\nan automobile, but have deferred purchasing one thinking it\nbeyond their means. +222 GRANTED REPRIEVE. John Mc-\nHenry, sentenced to hang for double\nmurder, in cell at Washington prison. +223 GREAT OAKS FROM\nLITTLE ACORNS GROW\nGREAT FORTUNES ARE\nMADE BY THE DOLLARS\nTHAT WERE DEPOSITED\nIN THE BANK +224 GROGAN'S\nInstallment House! +225 GUESTS FOR THE OLD HOTELS +226 Gents' Furnishing Goods!\nShirts,\nMade to order,\nAnd a\nPERFECT FIT\nAlso,\nReady-Made +227 Get a Guarantee\nwith your boys next suit +228 Get right up there where Spur\nCigarettes are galloping in the lead. +229 Getting Over It\nColds are easy to take\nbut hard to cure. +230 Give Your Child the Greatest\nof all Christmas Gifts-One\nThat Brings a Life-time of Joy +231 Gold Seal\nThe Best Rub-\nber Made. +232 Good Tools Always Please. +233 Good old\nGUCKENHEIMER\nWhiskey\nis\nPURE\nWhiskey +234 Granite and Bronze Monuments\nAt Prices To Suit.\nHawaiian Iron Fence and Monuments Works, Ltd\n176-180 KING STREET. +235 Great\ngunS! +236 Green Seal\nMustard Relish +237 Grewsome Battle Memorial. +238 Guaranteed\nPURE.\nLEAD AND ZINC PAINTS.\n"Made in BALTIMORE" +239 Guardian Savings Bank! +240 HAIR ON THE FACE, NECK, ARMS OR ANY PART OF THE PERSON\nQUICKLY DISSOLVED AND REMOVED WITH THE NEW SOLUTION +241 HARNESS +242 HATS\n-FOR-\nSPRING. +243 HATS AND CAPS.\nWholesale & Retail\nHats, Caps, Umbrellas, Gloves and\nSTRAW GOODS +244 HATS! HATS! +245 HAVE YOU SEEN THEM?\nMAGIC AIR-TIGHT\nWOOD AIR-TIGHT HEATER +246 HELP! +247 HERCULES GAS ENIGNE WORKS +248 HERE'S the Shirt hit of the\nseason +249 HIGH ART SUITS\nand OVERCOATS +250 HOLMAN ADJUSTABLE BABY CARRIAGE +251 HONEY +252 HOTEL CUMBERLAND +253 HOW SENATOR SCOTT'S PARTY ASSOCIATES RECEIVED HIS VIEWS.\n"I believe in trusts. They are a great benefit to the country. If it were not for the Standard Oil company the present prosperity would not be with\nSenator Nathan B. Scott of West Virginia, at Roosevelt dinner. +254 HOW THE MONEY FAMILY GETS THE MONEY +255 HOW WOULD MISS TACOMA SCHOOL\nMA'RM LIKE TO FACE THIS CLASS +256 HUMPHREYS'\nHomeopathic Veterinary\nSpecifics for\nHORSES, CATTLE, SHEEP,\nDOGS, POULTRY +257 Harness and\nSaddles!\nBuggy Tops!\nCushions!\nLazy Backs!\nDash Fenders etc! +258 Has never been known to fail, to make a permanent\ncare in aby case of Blood Poison when it has been taken\nbefore any of the vital organs had become so impaired as\nto render a cure impossible. +259 Hats, Caps, Umbrellas, Gloves and \nFURS. +260 Have You\nFilled Up Your\nCOAL BIN? +261 Have You Trumped Your\nHeart?\nMy Valentine\nMessage +262 Hawaiian Trust\nCompany, Ltd. +263 Headquarters for automobile with\na splendidly equipped fireproof garage.\nVON HAMM-YOUNG COMPANY, Ltd. +264 Healthfulness\nof the bath depends largely on cleanliness\nof the bath tub. Court health and shun\nsickness by using\nGOLD DUST\nWASHING POWDER +265 Henry Vogelman Will be a Candidate\nHENRY VOGELMAN +266 Hercules Hoisting Engines +267 His Best Laugh in Years +268 Hold up the traffic! Stop the crowd!\nEverybody listen! +269 Hot water\nin a hurry\n\nWe set these Wonder Heat-\ners up on payments of $1,00\nmonthly. Price, complete,\n$10,00 +270 How Much Money\nwas there in your safe last night? +271 I am FATIMA, the cigarette of the nation. +272 I. WOLFSON\nImporter and Tailor to Women\nDesigner of Suits, Habits, Dresses, and Gowns. +273 IN THE RACE!\nFOR\nTRADE AND CASH! +274 INDIA TEA\nGreen or Black\nAs\nServed\nat\nthe\nWORLD'S FAIR +275 IRON BEDS +276 IT MAY COME TO THIS +277 IT'S EASY TO CALL US UP\n\nand order your dessert, and "Frozen \nGold" is the most refreshing, whole-\nsome dessert you can serve. The Gov-\nernment recommends its use. Please\nget your order in early. +278 ITCHY FINGERS! +279 Ice 10 and 12 1-2c Per Cwt.\nICE SAVERS\nHAGAN & SCHAD +280 If You Will Try\nShredded\nWheat\nYou Will Eat No Other Cereal Food +281 If your skin\nitches just use\nResinol +282 In the Breaking up of Winter.\nTry U-tahn-a\nThe Great Nerve Tonic\nand Blood Builder. +283 International Harvester\nFarm Wagons +284 Is That\nCoal Bin\nEmpty?\nLet us fill it up\nwith pure, rich\ncoal that lasts +285 Is This Your Graduation Gown? +286 Is that\nWinter\nCoal In? +287 Isn't This Your Ideal\nFor a\nSTOCKING +288 It Makes Him Feel Good\nTHE GEO. J. RENNER\nBREWING COMPANY +289 It gives a strong, diffused light that is remarkably easy to the eyes. +290 It is a Pleasure to Sell Stoves\nWhen We Have\nThe MAJESTIC, Monarch of all.\nThe QUICK MEAL, for a quick meal.\nThe COMFORT, Amarille's Favourite.\nThe ECONOMY, Best for the Price. +291 J. Sanderson & Co.,\nGinger Ale, Soda and other\nMineral Waters +292 JAPS IN WINTER UNIFORM +293 JAPS THOUGHT THE RAILWAY PORTERS WERE GENERALS +294 JIM GREEN IS TALKING ABOUT FURNITURE-\nPLEASE LISTEN TO HIM. +295 JOHN BREUNER,\nFURNITURE AND BEDDING +296 JOHN E. RAUCH.\nBOOTS & SHOES\nTHE\nVery Best +297 JOIN\nTHE RED CROSS\nNOW +298 JUST HATS - THE NEW STYLES FOR SPRING +299 John Nott,\nImporters and Dealers in\nSteel and Iron Ranges,\nSTOVES, AGATEWARE,\nDIMOND BLOCK. +300 Join the American Fighting \nForces Abroad. The U.S.\nMARINES Are Calling for\nAll True Americans.\nThis Means YOU. +301 Judge us by our "HIGH\nART" suits for spring. They're\nas distinguished looking as a \nWest Pointer on parade. Our\nclothes lend the poise correct\nand the air aristocratic. They \nare cut with a flowing grace far \nremoved from angular fashion\nplates. +302 KIDNEY PAINS +303 Keep Out the Wet\nSAWYER'S\nEXCELSIOR\nBRAND\nSCLICKERS +304 Keep Your Clothes in Perfect Condition\nProtect them against dust, dirt, soot, moisture and moths,\nNot wear, but lack of care spoils clothes. +305 Keystone-Elgin\nWATCHES\nDurable and Accurate +306 King of Bottled Beers +307 Kodak Department Open All Day Sunday\nFor 10c a Day!\nYou can rent one of\nFastman's best KO-\nDAKS for 10 cents a\nday. +308 LADIES SKIRTS IN ALPACCA, VOILE, SERGE, ETAMINE: BLACK,\nWHITE, BLUE, GREY AND FANCY MIXED. +309 LEADERSHIP IN CURTAINS!\nAS IN ALL OTHER LINES. +310 LINE OF EARTH VIBRATIONS SAN FRANCISCO TO WASHINGTON. +311 LOUIS ROSENBERG, ALIAS "LEFTY\nLOUIE" +312 LUCKY STRIKE - it's toastea.\nOur advertising gives you\na definite fact about Lucky\nStrike - a reason for buying this\ncigarette. Surely you like reasons. +313 Ladies' Pocket-Book. +314 Ladies' Suits\nAND\nReady-made Skirts. +315 Ladies' and\nMen's Oxfords +316 Large English Berkshires.\nAbove is the Picture of The Famous Show and Breeding Boar\nBROAD TOP +317 Livery Stable +318 Look at this Elegant Garment and them \nat our Prices. +319 M. O'NEIL & CO.\nFurniture\nAND...\nCarpets\nWe are now showing one of the\nmost complete lines of\nParlor\nand\nLibrary\nTables +320 MADAM\nYOUR FEET....\nRepairing\nNeatly Done.\nJ. F. GRANSCHOW,\nTHE OLD RELIABLE\nFEET FITTER\nMcCOOK, NEBRASKA. +321 MAIN ST. LOOKING SOUTH +322 MANICURING\nHAIRDRESSING\nSHAMPOOING +323 MANUFACTURER\nOFFERS\nNew Equipped Factory\nREADY FOR OCCUPANCY\nIN\nNEWARK, N. J.\nCROSS & BROWN\nCOMPANY +324 MASONIC TEMPLE\nWEEKLY CALENDAR +325 MASONIC TEMPLE\nWEEKLY CALENDAR. +326 MAYOR GAYNOR ON THE STAND\nTestifying before the Curran aldermanic committee +327 MEADOWBROOK\nSCHOOL\nCountry\nDay School For Boys\nMeadowbrook, Pa. +328 MEMBERS OF THE PHI KAPPA PSI FRATERNITY\nWHEN ROSWELL M. FIELD WAS A STUDENT HERE +329 MEN +330 MEN'S BLUE SERGE SUITS\n$12.50 Values - Friday Only - $8.75 +331 METAL TOP\nLAMP CHIMNEY,\nTHAT WILL NOT BREAK\nBY HEAT. +332 MICHELIN \nInner Tubes\nFor Michelin and all other Envelopes +333 MILITARY EQUIPMENT,\nTRUNK, AND HARNESS\nMANUFACTORY. +334 MILK\nCREAM\nBUTTER \nEGGS\nICE CREAM\nTHE SIGN OF QUALITY +335 MOLLE\nFor Shaving +336 MRS. BROWN AND HER CHOIR\nBOYS\nThese boys are real boys, but they\ncan sing and play divinely +337 MRS. DONALD M'LLAN AND THE "RPIZE BABY" +338 MRS. J. BRECKENRIDGE BAYNE\nWhose wedding yesterday in Washington\nwas a brilliant affair. +339 MUNYON'S\nONE DOLLAR\nINHALER! +340 MUSIC.\nPIANOS! PIANOS! +341 Madison Hall, Washington, D.C.\nSelect School for Young Ladies and Girls. +342 Make the Fall Months\nYour Busy Months\nINSTALL AN ELECTRIC SIGN NOW +343 Making an\nIMPRESSION +344 Masquerading\nIn business doesn't pay for long - the mask has a tendency to\ncome off. +345 Memorial Hall For Cincinnati. +346 Men Who Located North and South Poles\nAdmiral Robert E. Peary (at left, discoverer of the North Pole) and\nCaptain Roald Amundsen (discovorer of the South Pole) +347 Men's Stylish Suits\nWe have thrown down the gauntlet and challenge competition to offer\ngreater inducement on good worthy clothing for men, young men and boys. +348 Men's Work Shirts at 42c +349 Millions Wanted for Next Census +350 Mineral Water +351 Modern and Humane Treatment. +352 Monuments Safes,\nIron Fence +353 Monuments and Grave Stones\nin Marble and Grunite +354 More stylish in their extra size - more resilient in their\nextra rubber - they give your Ford car a smarter dress and\ngreater comfort in smoother riding that thrice cancel their\nslightly higher first cost. +355 Most Food for the Least Money\nA cut of roast beef or sirloin steak brings joy to the palate of\na real man with a real appetite, but you should eat it with a\ncarbohydrate food like\nShredded Wheat\nWith HOT Milk +356 Mothers, Guard\nYour Children's\nTeeth +357 Mr. Skygack\nDeftly\nUses the\n"Poison\nNeedle" on\nAdolph. +358 Mrs. Goldbrick (who has detected\nflour on her husband's coat collar)-\nHow do you like the new pastry cook,\nmy love? - Truth +359 Mrs. Laura S. Webb +360 NATURAL GAS\nOil and Gasoline Stoves For 1899\nSEE THE\nPURITAN\nWickless Oil Stove +361 NATURE AND THE ARTS COMBINE TO LEND\nBEAUTY TO THE PORTLAND EXPOSITION +362 NECKWEAR +363 NERVE WORN KIDNEYS. +364 NEW INVENTION IN LACING.\nW.S.A CORSET +365 NEW LONG ISLAND RAILROAD STATION BUILDING AT GUILFORD\nSTREET, JAMAICA. +366 NEW METHOD OF REDUCING FAT +367 NEW MODEL\nREMINGTON STANDARD\nTypewriter. +368 NEW SKYSCRAPER FOR QUEENS\nTo be erected on the north side of the Long Island City Plaza of the Queens-\nboro Bridge and to cost $1,200,00 Thompson & Frehlin, architects. +369 NEW SMALLER SIZE\nDE LAVAL\nCREAM SEPARATORS\nFor Family Use +370 NEW STYLES\nFOR SPRING IN MEN'S,\nYOUNG MEN'S and BOYS'\nSUITS, HATS, SHIRTS\nAND FURNISHINGS\nAWAIT YOUR INSPECTION +371 NO PRESERVATIVE,\nThis CREAM is\nNOT a MAKESHIFT\nNOR a SUBSTITUTE\nBUT the REAL\nGENUINE\nARTICLE +372 NOW is the time to enjoy\nagain those happy days\nspent in field shooting. You\ncan be sure of getting your\nshare of the birds if you\nuse one of the reliable loads\nsuch as\nInfallible Ballistic\nSchultze +373 National Republican +374 Neatness, Skill and Thorough\nExperience\nEhenberg's Wall Paper & Paint Co. +375 New Spring Footwear!\nstockwell & Biningers'\nRed Front Shoe Store\nBert Stedem, Mg'r. Logan, Ohio +376 Newsboy's Own Story\nOf His Ride In W. K.\nVanderbilt's Auto. +377 Nice Doggie! +378 No "freaks" to be found\nat Ferro Clothes.\nStyles are smart, but\nin good taste. +379 No Mother\nNEED CARRY THE BABY +380 Novel Variety Act Featured on\nSunday's New Bill at Regent +381 O'MERA & CO.'S $35 GUN +382 OLD CROW\nRYE\nThe Standard of RYE Whiskey +383 OPTICS +384 ORGANS. ORGANS.\nTHE BRIDGEPORT ORGANS so widely known\nfor their durability and sweetness of tone are here on\nsale in Oak or Walnut, and too, your credit is good; pay\na little cash down and a small weekly or monthly pay-\nment made to suit your convenience. +385 OUR GUARANTEE\nIF YOU ARE NOT SATISFIED\nTHAT THE CONTENTS OF THIS\nCAN IS OF THE HIGHEST POSSIBLE\nQUALITY, YOUR DEALER WILL\nREFUND THE PURCHASE PRICE. +386 OUR HIGH ARM\nSEWING MACHINE,\nWITH AUTOMATIC BOBBIN WINDER,\nONLY $22,\nIncluding One Year's Subscsription to\nThe National Tribube. +387 OUR TENTH ANNIVERSARY SOUVENIR. +388 OUTBURST OF EVERETT TRUE +389 Ogling the fair ones in Regent street\non a sunny day. +390 One Price Shoe Store +391 One Price Shoe Store. +392 One of the $400 Upright Pianos from Joseph Hall\nChase Piano Co., 1307 G Street, on Exhibition at Contenst\nHeadquarters, 714 Thirteenth Street Northwest +393 Only One More Day of This Cloth-\ning Sale Still There's Good Choosing +394 Only One in Five\nIs Safe +395 Opening the Enlarged\nFranklin Simon Shops for Men +396 Orozco Fomenting Discord Among Revolutionists;\nEffect of the Cannonading on Jurez Buildings +397 Osgar Wins\nPraise for\nNot Hitting\na Drowning\nMan In\nthe Jaw. +398 Osgar and\nAdolf,\nCountry\nHotel\nKeepers,\nStrike\nHard Luck. +399 Our $65\nWHITE BRONZE\nMONUMENTS +400 Our Big Sale CLOSES SATURDAY, NOV. 4th\nThe German Heater at $25 and $28 +401 Outbursts of Everett True\nBY CONDO +402 Over 6,000,000 PEOPLE USE\nFERRY'S SEEDS +403 PALACE MEAT MARKET! +404 PARIS MILLINERY\nfrom every Parisian modiste,\nof note - embracing every\nstyle tendency of the fall\nand winter season\nand\nGOWNS COATS WRAPS\nTAILORED SUITS AND\nDRESSES +405 PIANO BARGAINS GALORE +406 PIANO FORTES +407 PIANO TUNING\nAND\nREPAIRING +408 PIANOS AND ORGANS! +409 PIANOS ORGANS +410 PLUMBERS,\nGas and Steam Fitters\nPUMPS\nSEWER PIPE\nRUBBER HOSE\nSteam Fitters' Supplies. +411 PORTABLE \nGASOLINE ENGINES +412 PRACTICAL\nUNDERTAKERS,\nFUNERAL DIRECTORS,\nAND\nEMBALMERS +413 PREPARE\nFOR THE\nHolidays\nSUITS and OVERCOATS\n(men youth and boys)\nCLOAKS, FURS and SKIRTS\n(ladies and misses) +414 PUNCTUALITY +415 Pacific Wheel & Carriage Works. +416 Paul's Inks.\nNo Spilling, No Evaporation.\nBEST IN THE WORLD +417 Paynes' AUTOMATIC Engines.\n2 to 100 Horse Power. +418 Philosophic. +419 Pianos.\nSTEINWAY & SONS'\nGRAND,\nSQUARE,\nAND\nUPRIGHT\nPIANO FORTES! +420 Pimples, blotches, blackheads,\nred, rough and oily skin, prevented\nby Cuticura Soap, the most effect-\nive skin purifying and beautifying\nsoap in the world, as well as pur-\nest and sweetest for toilet and nur-\nsery. +421 Play Combinola. +422 Polo Teams Ready for First\nClash at Meadow Brook To-day +423 Poor Little Grand Dutchess +424 Preparing to ship a gigantic Italian siege gun, slightly less powerful than the terrific 42-centime-\nter German howitzers, but of the type which the British call the "Basy Berthas." +425 Presenting the Newest Fashions in\nSUITS, COATS,\nDRESSES, WAISTS,\nSKIRTS, MILLINERY +426 Protect American Shipping. +427 Pure Bred Poultry\nFOR THE FARM +428 Pure Ice-Cream +429 RAT EXTERMINATOR. +430 READING THE SENATE INVESTIGATION OF THE U. S. NAVY +431 READY FOR ROLLA! +432 REAL BATTLE WITH VILLA NEAR\nON THE TRAIL OF VILLA IN THE HILLS OF MEXICO! +433 REAL ESTATE AUCTION +434 REDUCED PRICES\nNEw Sailors\nDress Hats\nChildren's Hats +435 RENSSELAER BICYCLES\nGIVE SATISFACTION +436 REPAIRS.\nThere is no better time than now to\nhave your wheel repaired and refinished\nbefore the riding season opens. +437 ROLL TOP DESKS\nOffice Furniture\nin great variety\nof style and price\nT. G. SELLEW +438 ROYAL\nBAKING\nPOWDER\nAbsolutely Pure +439 ROYAL\nBAKING\nPOWDER\nAbsolutely Pure. +440 Ready made Panama and\nMohair Skirts ranging in price\nfrom $1.65 to $4.25\nThese are real bargain +441 Real values in these\nPRINTZESS Sport\nJackets at $15 +442 Remarkable Values Today in\nWomen's New Foulard Fresses\nat $18.50 +443 S\nT\nO\nV\nE\nS +444 SADDLES AND HARNESS +445 SAMMY, "GREAT CHOP SUEY! I THOUGHT YOU FELLOWS SAID THAT THIS DRAGON WAS\nDEAD." +446 SAMUEL GOMPERS +447 SAVE YOUR TEETH +448 SAYING NOTHING\nBUT\nDRILLING WELLS.\nThat's our business - well boring. +449 SCOTT'S\nEMULSION\nof Cod-Liver Oil with Hypo-\nphosphites. +450 SEMI-BITUMINOUS COAL\nThe Best\nSteam and\nDomestic Fuel\nMined.\nThe Standard\nCoal of the\nUnitet States\nNavy +451 SEWING\nMACHINES\nREPAIRED AND FOR SALE +452 SHE HITS THE BULL'S EYE. +453 SHELBYVILLE, Ind., Dec. 30 - The firm of McBride and Groom has opened shop here to sell hair\nbrushes, toilet articles, atc. +454 SHOE\nSALE\nWe find among our Shoe Stock a good\nassortment of Low Shoes, suitable for\nHouse Shoes, Outing Shoes and even\nDress Shoes. +455 SICK HEADACHE +456 SINGLE AND DOUBLE SPY \nGLASSES. +457 SMART FALL SUITS +458 SMASHING OF RECORDS\nFlying Jib Paces a Mile in\n1:558 1-4 at Chillicothe,\nHITCHED WITH A RUNNING MATE +459 SOUVENIR CHINA. +460 SPECIAL CAP FOR CHILDREN. +461 SPECIAL VALUES\nIN\nLADIES'\nJACKETS +462 SPRAY\nand\nPRUNE\nYour fruit and shde\ntrees and bushes now,\nthey will yield better\nnext year. +463 STEAM AND\nGASOLINE\nENGINES. +464 STICK TOGETHER AND PLAY CRACK THE WHIP WITH HIM! +465 STOREY & ROGERS\nMEAT MARKET,\nSAN MARCOS, TEXAS +466 STOVES +467 STOVES!\nNew Stove Store\nAT THE\nNEW\nHardware Store +468 STOVES, TIN, HARD WARE\nAND\nAGRICULTURAL IMPLEMENTS. +469 STOVES.\nAlso Heaters.\nAND\nAll Sorts of\nTINWARE AND\nQUEENSWARE. +470 STREAMER IN AL LAND CANAL. +471 SUFFRAGETTES INVADING CONEY ISLAND\nFrom left to right - Miss Rose Winslow, Miss Margaret McLauchlan, Mrs. A. M. Beasannt, Miss Mabel\nSchofield and Miss Lillian Walker. +472 SUGGESTION FOR A TABLET IN THE HALL OF FAME. +473 SUMMER LIFE-SAVING\nHow to Rescue Persons who are in Danger\nof Drowning +474 SWEATERS\nMEN'S +475 Save Your Plants\n"BUG DEATH" +476 Seldom Equaled\nNever Excelled\nSUPPLEE\nICE CREAM\n"notice the flavor" +477 Short Horn Cattle +478 Short-Sighted\nthe woman who\ndoesn't use Pearl-\nine; the woman who fails to\nhave her servants use Pearline. +479 Sick Headache\nDr. Caldwell's Syrup Pepsin +480 Soda Days +481 Solid\nSterling\nSilver\nThimble +482 Some Easter\nSunday shoe\ntalk ---- Read it +483 Some people wear "Gordon" Hats a year or \ntwo or three, other a month or two or three,\nthe one for service, the other for style, and both\ngot their money's worth. +484 Something That\nWill Linger... +485 Something in Footwear\nFor Winter Needs +486 Special January Sale.\n70 different styles of dining tables in\nthe sale at $5, $4, $8, $12, $14, $15, $20, $23,\n$30 and $40 - all at greatly reduced prices. +487 Spring Clothing\nIn the latest styles, Immense Stock, just received\nNew and handsome line of\nshirts in all the latest stripes,\nchecks and mixtures. +488 StaRite Gasoline Engines\nTHE FARMER'S BEST HAND\nSimplest, Strongest Engine in Use +489 State Dining Room, White House, to\nBe Scene of Many Brilliant Dinners. +490 Stoddard-Dayton\n1908 Models +491 Stoves\nCook\nHeating\nNatural\nGas\nOil\nGasoline\nLargest line.\nSee styles and get\nprices.\nSole agents for\nBorn Steel Ranges. +492 Strained\nEyes +493 Street and Business Skirts +494 Style\nAs snapped by a great\ndesigner....... +495 Success Clothing\nis but another name for\nSchloss Clothing.\nTHAT'S the kind we handle. It is the "kind\nthat helps you on in the world" and is ever\n"considerate of your pocketbook." +496 Suitings and Coats and Pants\nTHE STRONGES LINE WE HAVE EVER SHOWN +497 TENNIS\nIs one of summer's splendid\nsports. +498 TESTED FOR TWENTY YEARS\nThe Foos High-Grade\nGasoline Engines +499 THANKSGIVING IN THE SOUTHLAND.\nThe gold is on the pumpkin, and the gay nasturtium vine\nIs aglow with yellow glory in the sunny southern clime +500 THE\nDENSMORE\nHOTEL\nKansas City +501 THE\nHOME RULE +502 THE\nKola Plant\nCURES\nASTHMA\nAND\nHAY-FEVER +503 THE ARIZONA CATTLE CO.,\nRange, San Francisco Mts +504 THE BEST PLACE\nFor Spectacles and Eye-Glasses. +505 THE BEST REMEDY EVER KNOWN +506 THE BEST SPY IN THE WORLD:\nIT'S THE POWERFUL DICTOGRAPH +507 THE BIG ANNUAL\nAUGUST FUR SALE\nContinues the Balance of the Week\n25% to 33 1/3 %\nREDUCTIONS ON CHOICE\nFurs and Fur Coats +508 THE BLACKSTONE SCHOOL FOR GIRLS +509 THE CENTURY DICTIONARY\nAND CYCLOPEDIA +510 THE CHESS GAME BY WIRELESS\nHONOLULU vs. HILO +511 THE DEVIL WAGON FORGOT ITS CUE +512 THE DUPLEX \nCORSET \nADJUSTABLE\nOVER THE HIP\nAND WILL\nFIT ANY FORM\ninstantly, giving\nPerfect Ease and Contour. +513 THE EAST ROOM, WHITE HOUSE +514 THE EXPERT DENTISTS +515 THE GRAFTERS - Great sport, but rotten for business. +516 THE GREAT NEW ENGLAND REMEDY!\nDR. J. W. POLAND'S\nWHITE PINE COMPOUND +517 THE HARVEST MOON SHONE O'ER THE\nCASTLE TOWERS +518 THE IMAGINARY WAR POET. +519 THE LARGEST BALLOON IN THE WORLD. +520 THE LARGEST PIECE OF\nGOOD TOBACCO EVER SOLD FOR\n10 CENTS. +521 THE LETTER IN THE GLASS +522 THE LOCOMOBILE has been \nmanufactured for eleven years. It\nhas been developed to its present per-\nfection through eleven years specializ-\ning in the Locomobile plant. +523 THE MONUMENT WHEN COMPLETED. +524 THE NEW COLLOSUS OF ROADS +525 THE NEW DEPARTURE DRUMS +526 THE NEW POSTOFFICE BUILDING. +527 THE NEW SHOE\nFOR WOMEN +528 THE NEW concrete Columbia bridge of the Philadelphia and Reading Railway Co. in Fairmount Park. The old \niron bridge, in use for thirty-two years, is being taken away, while the finishing touches are being put to the new \nstructure. +529 THE Newlyweds and their kid\nand everybody else eat\nNadja Caramel Chocolates\nand Pin Money Gum Drops +530 THE OBJECT OF A SUFFRAGETTE PLOT.\nLLoyd George, the British Chancellor of the Exchequer, and Mrs.\nLloyd George +531 THE ONLY WAY... +532 THE POLYANNA\nCHOCOLATE SHOP +533 THE SEED BUSINESS\nNow is booming. How is your stock? Write for our special catalogue for the trade. +534 THE SETTING SUN +535 THE SINGER\nSEWING MACHINE +536 THE SPRING MARATHON. +537 THE SUCCESS COMPANY\nUNIVERSITY BUILDING, NEW YORK CITY\nTEN CENTS A COPY\nONE DOLLAR A YEAR +538 THE WEATHER REPORT. +539 THE WINNING SMILE +540 THE best things in life are the\ncommonest. Thar's plenty of\nfriendships - plenty of sunshine - \nplenty of landscape-an' yo' can get\nVELVET at any\ntobacco store. +541 THEIR NEW ROTARY HOOK LOCK-STITCH SEWING MACHINES +542 THINK THIS OVER\nWho gets the Money\nyou earn? +543 THIS TRIO WILL DISAPPEAR. +544 THIS WILL INTEREST\nYOU\nIf You Like Plants In\nYour House\nWe Took\na Chance\nAnd purchased an entire klin of fancy Jardinieres\nbefore ot was opened, and to say that we are giving\nyou a bargain is putting it mildly. +545 THOROUGHBRED\nShort-horned Cattle and Poland-Chine Hogs of all ages\nand both sexes for sale at low prices, to reduce stock. +546 THOSE IN NEED OF\nGood Work Horses\nWILL DO WELL TO CALL +547 TIME\nWill not seem to\ndrag, but will speed by\nif you read an interesting\nbit of CO-OP fiction. +548 TIME TABLE. +549 TOMB STONES.\nMARBLE WORKS. +550 TOYS! +551 TROUSERS +552 Teeth Extracted Absolutely Without Pain. +553 Th' O. K. Pianner Store is\nservin' coffee with its rolls.\nA Christmas the seldom binds. +554 That Lame Back Means\nKidney Disease +555 That Light is Wonderful +556 The\nBoxers\nIn China will find out that per-\nhaps the foreign powers are well\nup in boxing too. +557 The\nCoward\nShoe +558 The\nPackard\nPiano +559 The "Majestic" - \nwith electric starter and lights; full \nelliptic springs and 10-inch upholstery \n\nUtmost convenience and riding ease +560 The American Popular Dictionary +561 The BROWN PIVOT AXLE RIDING Cultivator +562 The Best and Cheapest Horse and Cattle\nMedicine in the World! +563 The Coal Miner\nCan Tell At Once +564 The Comfort in Reading on the\nPorch these Warm Evenings +565 The Daily Movie Magazine\nTHE DAYS OF CHIVALRY ARE BACK ON THE SCREEN +566 The Drug Shop\nThe Home of the Kodak in Columbia +567 The Fine Solid Gold\nWatch for $28. +568 The Golf Girl +569 The Graduation Season is Approaching +570 The Locomobile\nAmerica's Top-Notch Car +571 The Moths and the Flame! +572 The Nerves of a Nation\nWestern Union wires serve the country as\nthe nerves do the human body. These\nwires are the nervous system of the coun-\ntry's business.\nWESTERN UNION\nService +573 The Ohio Valley Wagon Co. +574 The Only Exclusive Wholesale\nPoultry Dealer in Seattle +575 The Perfected Oxygenor King +576 The Queen of the Kitchen +577 The Radium Shoulder Brace +578 The Rugged Child\nis largely an\n"outdoor"\nproduct. +579 The Spring Hars Are Here.\nNot to have a New Hat, is to\nbe hopelessly behind the times. +580 The Studebaker\nWAGON\nmakes pleased customers\nwherever it goes +581 The Taft Steam Roller Has Just Passed +582 The Tribune\nBuilding +583 The Wonderful Growth\nof\nCalumet\nBaking\nPowder\nis due to its\nPerfect Quality\nand\nModerate Price\nUsed in Millions\nof Homes +584 The best concentrator table on the market. +585 The latest and best. Cleans \nthe hair and leaves it soft as\nsilk. +586 The most joyful\nof all the year, is\nnot, cannot, and\nwill not be com-\nplete unless you\nare a reader of \nEl Paso's leading\nDaily papier:::::\nTHE HERALD +587 The most snappy and dressy OXFORDS both in tan and black are to be found in\nthe largest variety at out store. +588 The nationally advertised Duntley Vacuum Sweeper. +589 The quality of the beef has much to\ndo with the success of the athlete.\nGet the right kind and victory is sure.\nGet it from us and failure is impos-\nsible. +590 There is Nothing More\nAppropriate than a.....\nMusical\nInstrument. +591 This Looks\nDangerous +592 This Picturesque Stucco Residence Overlooks\nthe Ocean at Neponsit, L. I., and is for Sale\nat Terms to Suit. All Improvements +593 This is the Top of the GENUINE\nPearl Top Lamp Chimney +594 This is the statue of Abraham Lincoln, erected in the courthouse square at Hodgenville, Ky...\nwhere a great Lincoln memorial has been erected. +595 This superb trotting stallion is a son\nof Domain P. +596 Times "Want Ads" for Business Opportunities +597 Times First to Print the New Plans of Automobile Race Course\nThe New Track Gives Public a View of Entire Race From Stand +598 To Let Large and Small\nOFFICES\nSingle or en Suite\nAPPLY FOR TERMS TO THE RENTING AGENT\nROOM 610 +599 To cure Biliousness, Sick Headache, Consti-\npation, Malaria, Liver Complaints, take\nthe safe and certain remedy,\nSMITH'S\nBILE BEANS +600 Transfer AND City Bus Line. +601 Turkey Trotters and Tango Dancers +602 Type-Writers. +603 Undertakers and Embalmers +604 United States Gun Boat Mohawk. +605 Unlaundered Shirts! +606 VEGETABLES AND FRUITS\nSHOULD BE CANNED NOW +607 VERMIN EXTERMINATOR +608 VERMIN EXTERMINATOR. +609 VICTOR TABLE +610 VIEW BOMBING TESTS. The photograph shows deck of the\nU. S. S. Henderson and a navy blimp during the sinking of\nGerman submarines by bombs off the Virginia capes +611 VISIT THE\nPAN-AMERICAN EXPOSITION\nAND THE BUFFALO EAST\nLake Shore & Michigan Southern Ry. +612 VISITING FARMERS\nTake Home\na\nUniversity\nof\nMissouri\nCalendar +613 Vacation Footwear\nHere are the prices:\nJone's Special $1.00\nJone's Special $1.50\nJone's Special $2.00\nJone's Special $2.50\nJone's Special $3.00\nJone's Special $3.50\nJone's Special $5.00 +614 Victor Talking\nMachines\nFor Christmas +615 Vision Examined.\nFlasses Properly\nFitted and Adjusted. +616 Vivian Marshall, above, taken in the act of leaping into the water. +617 WAIT FOR THE ORIGINAL AND ONLY 5 AND\nBLACKBIRDS. +618 WALKOVERS +619 WATERPROOF BOOTS\nBEAUTIFULLY\nPOLISHED\nWITHOUT LABOR.\nWOLFF'S ACME BLACKING +620 WAYS AND THINGS.\nIt's never too late to mend, they say.\nWhich is most always true.\nSometimes it's best to throw away.\nHovever, and buy new. +621 WE LEAD IN...\nTRIMMED HATS.\nANOTHER GREAT....\nSALE....... +622 WEST POINT CADETS DRILLING HARD\nIN PREPARATION FOR GRADUATION WEEK +623 WHAT YOUR\nTHUMB TELLS. +624 WHERE CZECHO-SLOVAKS CLAIM RIGHT OF INDEPENDENT GOVERNMENT +625 WHERE THE "MOVIE" PANIC TOOK PLACE.\nExterior of the theatre +626 WHITNER & SACREY\nUndertakers and Embalmers +627 WHY DON'T YOU HAVE IT COVERED WITH HAIT?\nIT CAN BE DONE.\nCranitonic Hair and Scalp Food\nWILL DO IT. +628 WHY NOT HAVE MUSIC\nWHEN YOU CAN BUY\nThe Latest Edison Phonograph For\n&7.50 +629 WHY YOU SHOULD CARRY AN ACCOUNT WITH\nThe Globe National Bank +630 WILL buy this natty pair of\nstrop sandals. This is one\nof the new patterns that is making\na hit. Black or tan with cranenete\ntop short vamp and two inch heel. +631 WILLIAM R. GRAHAM,\nDemocratic Candidate for State Senate From\nTazewell, Russell, Buchanan and\nDickenson Counties. +632 WILLS GRIFFIN,\nPractical Undertaker\nAND\nFuneral Director,\nMT. VERNON, KY. +633 WINCHESTER\nGolders' Headquarters\nFor Every Golfer +634 WISE HUNTERS +635 WOMAN'S\nDEVOTION \nTO HOME +636 WOMAN'S RELIEF +637 WOMEN OF FOOD\nCANNERIES AND\nWAGES OF DESPAIR\nWOMEN OF THE CAN FACTORIES WHO TOIL LONG HOURS\nFOR PITIFUL PAY. +638 WOOD'S PATENT SWING CHURN.\nNot a Step, But a Leap in Advance of All Other Churns. +639 WORKMEN REMOVING the torch of Liberty from the statue on South Penn Square. +640 WRECKED S-5 AND RESCUE SHIP +641 WRIGHT'S CELERY\nTEA will give you a\nhealthy appetite, good\ndigestion and strong\nnerves. +642 WRIGLEY'S\n5c a package Beore the War\n5c a package During the War\nand\n5c a package NOW!\nThe Flavor Lasts\nSo Does the Price! +643 Wall\nBracket\nLamp,\nwith\nreflector,\n25c +644 Wall Street 1799\nBank of the Manhattan Company\nWall Street 1920\nEffective Today - the Consolidation of\nthe Bank of the Manhattan Company and the Merchants' Bank +645 Watches, Clocks, and Jewelry +646 Watson's Groceries\nare\nFamous for Quality +647 We Clean and Dye\nLADIES' AND GENTLEMEN'S CLOTHING. +648 We are offering an EXTRA PAIT OF PANTS FREE\nwith every suit purchased. +649 We hear your\nstenographer\ngot married\nAnd she was such a good girl, too!\nBut there are others - skilled, intelligent, experienced\ngirls - not out of a job through inefficiency, but solely because\nof business conditions. +650 Western North Dakota's\nLeading Photographer. +651 What Was This\nWoman? +652 What a \nHart Schaffner & Marx\novercoat gives you\n\nThe best style, long wear,\nall-wool quality, greatest\neconomy, satisfaction - \nor money back +653 What's become of the prejudice\nagainst automobiles because\nthey frightened the horses +654 When Others Fail\nDR. H. J. WHITTIER\nCURES\nNERVOUS DEBILITY,\nLOST MANHOOD,\nVARICOCELE,\nQUICKNESS,\nEMISSIONS,\nSTUNTED PARTS. +655 When the\nchildren\ncome home\nfrom\nschool +656 When you want GOOD SHOES\nfor any purpose - for men, women \nor children - come and see us.\nOur prices always loss. Best\nstandard makes. +657 White Duck\nSchool Shoes +658 Why Newspaper Advertising\nIs Particulary Valuable +659 Will you sign this cablegram?\nTo the american army in France!\n"Everything is all right" +660 Willie\nOttegary's\nFriend +661 Women's and Misses'\nSample Suit and Coat Shop +662 Wood-working\nMACHINERY +663 Woodbury's Facial Soap +664 World's Biggest Gun That Guard N. Y. +665 YOU\nMEN\nwho have trouble in get-\nting just what you want\nin shoes, this store of-\nfers superior shoes, in-\ntelligent service and ex-\npert advice. +666 YOU HAVE NO CAUSE FOR WORRY\nIf you are well insured and your house\nburns down. +667 YOU can now secure The Velvet Kind \nPure Ice Cream - the kind that has\ncaptured the fancy of the people\nin the South and East. This is the\nice cream more delicious - more wholesome\nthan any that ever tickled your plate. +668 You Can Afford\nElectric Light\nWith Mazda Lamps the Cost Is\nCut in Half.\nUse electric light and\nyour wall and ceiling dec-\norations will last longer. +669 You Can Now Buy Wanamaker\nFurniture for Any Room in the House\nat Half Price +670 You Should Select\n\nCountry\nClub\n\nThe Beer \nof Recognized\nQuality +671 You'll Hit It Right +672 ZOOLOGICAL PARK APES AT A TABLE EATING A CHRISTMAS DINNER AS GUESTS OF THE SOCIETY.\nDISPLAYING FOR THE MOST PART EXCELLENT MANNERS. +673 the Lamp Oil that\nSaves Eyes +674 the ONLY PER-\nFECT REMEDY to act gently yet\npromptly on the\nKIDNEYS, LIVER AND BOWELS\nAnd To\nCleanse the System Effectually +675 the Smith\npremier\ntypewriter diff --git a/train/expected.tsv b/train/expected.tsv new file mode 100644 index 0000000..a9cac2b --- /dev/null +++ b/train/expected.tsv @@ -0,0 +1,675 @@ +475 +185 +403 +394 +470 +8 +104 +169 +24 +309 +165 +162 +295 +152 +576 +565 +273 +498 +306 +127 +448 +598 +331 +214 +556 +320 +554 +339 +366 +526 +653 +544 +393 +329 +586 +412 +557 +360 +257 +131 +521 +97 +62 +95 +289 +582 +219 +111 +235 +107 +1 +390 +619 +54 +499 +284 +422 +364 +65 +57 +189 +230 +126 +318 +188 +255 +384 +618 +202 +414 +180 +117 +535 +495 +566 +124 +279 +355 +258 +30 +626 +125 +457 +451 +464 +654 +530 +434 +519 +204 +356 +383 +149 +455 +109 +505 +155 +359 +569 +140 +441 +231 +405 +25 +326 +504 +558 +122 +139 +500 +299 +655 +73 +674 +531 +644 +601 +460 +199 +90 +305 +225 +75 +186 +432 +132 +406 +507 +659 +529 +458 +437 +372 +3 +224 +536 +291 +92 +354 +454 +187 +209 +375 +176 +656 +612 +250 +401 +38 +672 +611 +308 +349 +542 +648 +490 +389 +411 +459 +168 +377 +274 +10 +468 +138 +78 +148 +241 +91 +344 +361 +128 +5 +157 +34 +589 +427 +275 +363 +294 +430 +6 +563 +14 +47 +218 +652 +662 +508 +444 +537 +82 +617 +60 +293 +574 +179 +33 +631 +341 +9 +550 +21 +48 +369 +211 +316 +342 +110 +347 +578 +203 +46 +277 +522 +287 +45 +292 +428 +351 +146 +193 +327 +462 +123 +156 +533 +129 +407 +509 +74 +182 +496 +87 +353 +41 +575 +641 +80 +262 +115 +543 +376 +221 +268 +172 +190 +271 +50 +622 +12 +551 +581 +84 +170 +474 +350 +540 +534 +387 +143 +385 +254 +233 +634 +227 +238 +417 +546 +37 +236 +408 +539 +270 +614 +517 +116 +304 +98 +594 +584 +52 +69 +636 +449 +373 +340 +482 +325 +642 +322 +282 +643 +134 +480 +453 +205 +223 +592 +571 +106 +194 +89 +613 +398 +396 +528 +229 +607 +346 +343 +560 +605 +365 +610 +248 +404 +118 +31 +313 +633 +478 +638 +311 +178 +237 +159 +136 +251 +442 +646 +381 +19 +141 +240 +501 +36 +66 +280 +549 +198 +261 +547 +668 +595 +288 +357 +330 +447 +637 +472 +154 +484 +625 +26 +272 +191 +564 +147 +362 +609 +541 +265 +40 +315 +516 +520 +647 +562 +485 +88 +161 +252 +99 +246 +492 +100 +276 +527 +56 +538 +524 +436 +153 +332 +415 +328 +263 +579 +210 +317 +391 +239 +173 +573 +358 +319 +242 +630 +130 +473 +184 +512 +59 +438 +628 +43 +600 +624 +629 +388 +552 +420 +413 +27 +567 +419 +113 +215 +445 +597 +494 +667 +553 +58 +421 +200 +70 +114 +640 +382 +670 +400 +197 +632 +307 +593 +285 +166 +120 +348 +673 +627 +324 +29 +42 +671 +208 +334 +585 +2 +548 +623 +345 +314 +290 +399 +440 +352 +477 +497 +312 +409 +267 +335 +76 +658 +425 +525 +144 +13 +608 +664 +386 +515 +171 +603 +561 +443 +591 +85 +483 +7 +49 +226 +28 +489 +615 +195 +22 +55 +296 +368 +523 +466 +220 +281 +68 +102 +18 +232 +568 +446 +650 +253 +39 +192 +338 +243 +510 +450 +665 +260 +397 +599 +96 +481 +196 +264 +380 +177 +669 +44 +645 +456 +244 +135 +439 +418 +234 +164 +142 +532 +395 +657 +572 +491 +467 +216 +555 +81 +378 +61 +298 +79 +23 +503 +301 +518 +452 +433 +588 +666 +402 +112 +93 +602 +35 +72 +32 +64 +310 +297 +465 +463 +283 +374 +371 +181 +4 +150 +431 +266 +207 +620 +590 +16 +559 +108 +51 +663 +86 +303 +583 +506 +661 +278 +649 +83 +15 +67 +101 +410 +639 +651 +269 +133 +228 +675 +333 +471 +487 +502 +606 +163 +20 +513 +217 +63 +596 +660 +545 +416 +621 +17 +77 +423 +469 +259 +121 +570 +580 +175 +493 +119 +286 +206 +435 +461 +302 +336 +103 +367 +426 +323 +577 +300 +587 +11 +249 +370 +379 +222 +514 +256 +145 +392 +71 +424 +151 +337 +479 +137 +321 +213 +476 +183 +105 +486 +174 +511 +245 +604 +160 +616 +247 +212 +167 +158 +429 +201 +53 +94 +635 +488 diff --git a/train/in.tsv b/train/in.tsv new file mode 100644 index 0000000..6976737 --- /dev/null +++ b/train/in.tsv @@ -0,0 +1,675 @@ +cf11add65c893f1667fea395ae8a3c99.png 1910-07-16 +87b5ecbc9b60a1b75db51e1a5c31a8b9.png 1921-09-10 +65dcee0905ef49da2146dbabf14b3906.png 1886-10-25 +4d21245528fad1999f2a35a4cce96b85.png 1922-04-13 +d4cee2c147a7b8b3a81f76cfb7cedbde.png 1904-01-22 +25e6125c1b4fb4c99f0963f81526e0fd.png 1897-11-22 +5166ad5856fdd3622fe9e581395ad94e.png 1884-05-29 +d04dbe52dcabbf6ad006931900f4cab0.png 1917-01-11 +35fcacd183a05c2f28edb37e68211a2c.png 1878-11-30 +075d409c5c5e76c6a02408ef6456eb01.png 1899-04-08 +c0924a673309ca6c0b1e3785d72b7d08.png 1915-09-10 +53d6359a8d4192ad04fd92c7e6542b79.png 1905-06-08 +6e828caca1cb8607f795424e60d3c1cd.png 1887-11-23 +41883568aef683a2ce79dbb141142792.png 1918-04-04 +b5d1cb3a6d44d63e4d4faae98fea3cd6.png 1911-03-01 +93a67306f1d4a10205b279ccd772d847.png 1922-05-25 +90cef7fd42b357d6009bddf34e5e64a3.png 1889-09-19 +d20edd0c6b8bc7c15493b51a65258418.png 1908-10-17 +2bfe283ec1bacac7cf7c534f7382d324.png 1905-06-22 +8d4afec8dc6e19b6280ee5bb269a57e4.png 1910-02-01 +d34cd9a8c4f5e9ac760e1a19763bf2c3.png 1898-03-18 +4aa8827c81cb46f47c50976864de72ca.png 1912-06-24 +c31ea0d754485faffed9495313abfe56.png 1866-10-05 +9501d875b97356bafcce0991f4fbc9a6.png 1897-10-17 +65b2e193ffe3da7e1d14fd3e60c80011.png 1900-06-12 +298efbed5483c54a359af23dbe3c8485.png 1896-05-29 +77d18fa197a5019d1470a82424170705.png 1910-03-16 +9df9c824e20aaad5e6a7197e4a940cfc.png 1905-03-21 +f1d955e33abaaf46ba6dac80b8edf0fb.png 1913-12-05 +63bc4d9b508f591785af0f39c4164034.png 1898-12-22 +e094d7b17bad0ff2a30e588d0c8e69e7.png 1920-06-02 +c82e60c8da38573995ed8b0129016b64.png 1902-10-17 +29cf9da70478e2a86c09b02640855a65.png 1909-03-05 +e2f77ddeb4e79004fd185c9722036115.png 1917-04-21 +1ab2a2fec4d6d7f6ff24b9b9cdb1757e.png 1897-12-24 +aaba2edbc14aad7cb44f6f76739d6ce7.png 1910-06-17 +1c154e76d961d6f68286a162bb68bd84.png 1914-04-09 +b8728a78031ee9ec0e8c77de8b356302.png 1899-08-02 +a96495745f6d107ece57785b79de1ebb.png 1897-08-13 +528ce99f1732386b38f6ca2417cfead2.png 1899-10-05 +7bec0574969f302d7da88a84e1472712.png 1906-01-18 +be6a041545309742f38a299b4f28b1cb.png 1921-05-21 +f7e1327ecff54c23565a8b4edc5e08d4.png 1907-09-27 +9b30ec1fc5f3911b60f407e06996919f.png 1914-05-11 +2ddd865df04bcb4e316fbcc9dabd0dfc.png 1911-12-21 +84da7955c949ae9e3dc9e94a1c3a9b1e.png 1918-02-13 +610af7afcd1992c5a388706d1a9bedc1.png 1890-01-07 +62812b00ee8b3c9630f6f50ad8bc5d95.png 1906-08-30 +d93a38981d64b8a0fc89881c5803ed8e.png 1891-09-03 +c284cf2508662855108585806e59b509.png 1917-01-27 +274e8dd85abdd7a0d88f60748fe5722a.png 1898-04-27 +752d9e9e0990bd38b8d5ac25bb1ab46b.png 1883-03-01 +71694a9ae0e645cc6227e745d36b9140.png 1888-02-29 +61763bcbab85c341643111f41a051ecd.png 1916-02-05 +47404e966698155b935579de55af0d25.png 1909-11-25 +a1704dc3de4eb0a15ca6783005feba1b.png 1909-10-02 +9eb9b444a2d31f3dea060787a64b1161.png 1914-06-13 +123c4b5015c5522a8b678d4a130f5c78.png 1888-05-12 +ecef08a3227f46e4b60c760bd2c83df3.png 1902-07-10 +18f32ab0672866cf0844699d32ad2d61.png 1917-03-20 +3077b6394cbc1eb409e21e18ad37b32a.png 1914-10-26 +9931d73b847b8573f312cd6c9a746d57.png 1921-11-29 +8abab606169e031021d1786b4ad2a6b2.png 1901-10-02 +3e724dbcca13a2492c1b975607c14d59.png 1883-05-12 +12aebc41279e3211e1bae8aed436c73b.png 1899-07-12 +8ac062d4da068d7ecabb476a7c42da54.png 1911-01-25 +5e79b590252582002bc27a0d5aac1bac.png 1903-07-18 +8cf2507c1211bbcea6fd5ae1eab047b0.png 1906-08-24 +78a0efd294730294070b7707dfd248e2.png 1884-04-17 +02eeb1d01ecfb8a018259044a31565e8.png 1913-01-09 +7940ae3438785163fb3852e5e31dbdac.png 1902-04-07 +4b7e32bdbbdcfe16e8973b158f1729cf.png 1910-01-06 +c682ba839027903dc2d19f1b1e53fce0.png 1878-03-23 +ad9ef6ee9151171e2a892d888c84166c.png 1904-05-19 +5d3149bbed6316d4e1fc2ec63f3ae7cd.png 1914-06-11 +c1f5133213f70c171c42c5a556df07d0.png 1881-09-29 +2b0f7b306ac4a65f1852e0fde6e117fa.png 1901-06-04 +b50c0899f9170516a33ee877771a4bf4.png 1922-01-19 +2f0c70324a661f6ae014136422625adb.png 1890-01-08 +5d53dcf5bf461fd38d95b232859c5438.png 1912-01-17 +ea7eaeaa02b3b47f38c40310c9d38051.png 1903-08-01 +5b829d2f23718fc4afb005a59d942d4e.png 1898-05-21 +07e9497a638084e7a6c02d09ab464591.png 1907-11-28 +cd0a66e25ffa433b158dd2b337e6dab1.png 1910-06-06 +89550e76c7554cd97dc79cb8358b5cfd.png 1907-12-04 +41bf5b04fc8fc65d0cdf775f3539eb59.png 1898-06-10 +3149efad0ce3fef1b555ae200cfc3340.png 1913-03-17 +2fad1ceb59b3953ae85da5a805e6aca7.png 1911-05-25 +e61530535c89aba46485c052ec410e93.png 1898-05-18 +fcee93603303d728542aa07dc0085239.png 1906-11-01 +b22a1c9312addcbe4f45e96ac8a9dd5c.png 1916-08-15 +4d340bbf21cd112209cd1cbb3d320d28.png 1866-06-29 +354225177825c34b1d92a577bce2d22a.png 1899-06-07 +680d202dc367a0bec08608c1876b8125.png 1889-04-25 +7dfd478cdb332d1ca4bb51700ce73d16.png 1887-08-09 +13726f7adf6ae8f07f23d8072d0cc62a.png 1853-10-08 +9844af0deea0e114f96e1adf643506b1.png 1913-12-04 +094652cb6f72421a2711289441c84900.png 1904-01-06 +e067a174b1db5f7c9ec599fcbcf83a0a.png 1904-05-21 +22ce7500aac0a91e6343f890366a06ad.png 1909-03-26 +b48d8dc1b0b36d687f30ca680f5432ad.png 1921-05-21 +16ad2db73365b69addbe1ffd0545f857.png 1911-01-07 +51ccb8059f327147f2b044ea834d2e17.png 1906-03-02 +4d56ee1aa03c5e7db7107736e20140e8.png 1918-04-23 +78320352db07081ea71e60adbe435a88.png 1912-09-11 +db8ffc49e999a826128c6bea7ede5c1b.png 1900-11-26 +b79951c714b59a08205f11a3e1d5d041.png 1898-11-18 +18e9140e476a33cd51a1d80640ad4c10.png 1910-12-22 +8f4d51e234af01c971646fa17cbe0d15.png 1916-09-08 +cf7baac53369fcc197b50e3ae19e2d9e.png 1908-12-07 +2875050ca2db58982a7a27865a5e60ae.png 1898-07-29 +ea54c3719c0cf53a9971ae20ffa27b55.png 1907-03-07 +96f8d3b45db8f6c8d5419d09d22af6c9.png 1922-05-03 +a4abb2991f5c117cf522e5ce7eb694ec.png 1889-08-10 +cae06ff89fa0c86e7b5d520216d233ae.png 1909-11-03 +2d6c27e1d5779da6d918521fe7b722c4.png 1920-03-29 +30a221e776af51449ff791334d3ecad2.png 1913-04-24 +643ac50e0826326c4efc368b7bfff856.png 1897-10-21 +2cfe68eef69de6b963ff2ab06e2df894.png 1919-08-25 +5c1f6ea927adcf9513016d81fbba0fd1.png 1898-06-03 +4fabe8fa06883f28286efdb2092e4a8e.png 1903-10-20 +23a251275dbeacd0803b2908b8e73c41.png 1913-04-19 +66557d1072a5e3673725923184756094.png 1879-11-22 +274ec7017fc817476039b31c3eec3c74.png 1898-05-07 +c91752718c686a71ad5c3f9189849f35.png 1916-03-16 +29d86f4c724559cb45cfbc163012000f.png 1885-05-07 +cf2ca2290ffb590d4236f40d37463838.png 1862-06-02 +4064de1577544a1fd5158e912efe085e.png 1922-08-19 +34185f47636b156e93974e537b265fc7.png 1918-05-04 +e5265551b31c1967ed13bf3effb36085.png 1908-12-14 +01a64ac039b4bf581e73c1e444b9df3c.png 1894-10-06 +d455c82ce39b168c8303824855b094c0.png 1914-08-25 +3425c99242fd5ffc6d694b44c1a9c5d0.png 1912-08-31 +93683e95769918b895767d4631471fb6.png 1914-03-10 +e2c85ea63b0d71da553cc49030d0ac5c.png 1884-04-08 +b1fd2226e26ffdbe5f05da9d3d849e85.png 1911-05-26 +d0fa5e5698ecf71719f5091ea9406d9d.png 1887-09-10 +8d16999076387a8083853e5639613cdb.png 1915-12-30 +9c3743b41e7a990c7db78642443f1d23.png 1917-06-02 +e3b8bbcc76f4cc6a2f236a8fb512804c.png 1907-03-29 +a5407f4a9418cf058e2a2f9d9e608236.png 1908-09-02 +2bc60070faaf4af537ebd4178cba4c74.png 1901-10-17 +19eeb1e5c8a73fb6334c85566dca5fc4.png 1898-05-12 +5d918eec4ccc25433bedf720036f3b57.png 1884-12-11 +b5c5c7bb66eaed682e5092a44a697bc6.png 1910-06-15 +49223299bf1d8c61cbced0a3cbcda136.png 1916-01-06 +e0bbc298f4007185703b4d8e4c2b4498.png 1887-07-20 +8f5c0327476739b843b01ddfb321833a.png 1918-06-13 +43bd32815ca5c260f9ebff9676a95863.png 1911-01-03 +9223dad6a34d2e2aafef85546f622d61.png 1911-12-26 +8ecc67db330a87a86f2ae858338bda5c.png 1901-06-14 +8006b60a184ecec0c0c8d5ce8d929ab4.png 1909-11-06 +54bfc6f21155cd203cc202973e6b8071.png 1908-01-25 +203bd2e2c5f8c7568fbf634e389bd77c.png 1913-05-29 +21bb3a2d9c503568ba17a0d056f76d2f.png 1920-05-05 +56f7e1d6394b495ec092f29dba8201db.png 1908-04-07 +f0d4624eab209ee75c7e9657be805303.png 1903-04-08 +c3d87583a30c37b10a20b9be827599ef.png 1904-07-20 +5ec3e3b160119873e6848570dd0afb3d.png 1893-05-11 +d66aba178c62de373cba1f6bd25df192.png 1899-05-06 +c3e3cd0769d3c5f5041143e5ba70bc92.png 1918-08-12 +d33096fa4569bf2a4d33c542f01c682c.png 1904-08-09 +f0bb26a3c2313bbf29daced97e3fad96.png 1880-11-13 +6d9057725c81bc7262464e15843b2941.png 1856-05-23 +266d7064a29559d45dffd6a50795755d.png 1908-05-07 +dfdbfeab665bb3e9a384dd6e2b7ea3cc.png 1897-09-30 +0b17335510ffd23d92b4088cfe1c5ae4.png 1913-02-12 +ac7960c2509132b798dbc9a90da35b67.png 1905-03-23 +df138edd16e7d5865f556cb94aafb401.png 1901-01-22 +f29dccb4a9056a5433ede5e23ec40af6.png 1895-06-25 +da9da8f77a1396d318fbb0baed362b3c.png 1905-06-02 +64aaf6315f9c5bcaad885b5bc473ce34.png 1911-03-12 +3e9f1577f5c0c0b04d680ed30abefa8d.png 1922-10-23 +7d792eaa96eda211a5a47eb963655a85.png 1900-09-20 +d2c8857b7a41df0e772b2d58e3cda30d.png 1917-05-02 +100c1c33289224e80e5474806ecf7b41.png 1907-09-26 +1cdb8a301601a450cb82a53d0bcf344d.png 1899-08-31 +c002f3aae07d57afa6b397594b906264.png 1902-04-03 +1cb5620bf4a9b16730c3d44833b54dfe.png 1903-07-18 +e5cc19af0f867c3bf0db3150007b99f9.png 1912-07-09 +867eed7ce762742a0647dfdfa834cf64.png 1920-04-03 +5e2faaf8153a44b7bae2ad48442c9e0b.png 1909-01-01 +a75873e5a35aec8daa8389e6351cbb67.png 1911-01-21 +f283681de6da272f6403630ab0dcb963.png 1889-09-26 +6efeb06143ba666e4d85f8e73c8b75be.png 1897-10-08 +dbfa3fc5410088999d1e2455e57374b2.png 1904-07-16 +16d8f71c22040ddd41f68b57671f3e51.png 1921-11-02 +2892b4538b83075aa588c26ca56d1904.png 1890-01-29 +139c2404f3df2c3afbe33b66fde27521.png 1910-07-29 +91d45301145e70924fd0099816a9b9ca.png 1884-03-21 +338e9df09212be4fd2bbaa8246d9c74b.png 1903-03-31 +7bf8a6de9cb367a3359dc76ac8889cc3.png 1892-06-02 +592b5f629227d70deefc91bd63d6ad0a.png 1885-01-01 +1ff3a940b7ac5cb8b8ac76c42c522b69.png 1921-06-14 +5b1983afcf26270f73e9b7a5cc302404.png 1904-07-21 +32ad122addcf0e8110fa6f324c33bc22.png 1901-12-19 +e325cae0ac48a9f847b1f6d28f5fbaab.png 1907-05-02 +0425c1ff04d095061ecab3a18706f082.png 1904-05-10 +3c7a358848b946f4b2e084369dcfae37.png 1905-10-06 +f31db695246026a9d69a8bc65106c26f.png 1910-06-30 +0deae5fef3816daa5ef7e1a77803d021.png 1917-04-26 +c5a847c9102b2822822c462342da9a46.png 1905-12-13 +72bc33fdb757a578efa2f8b512aa74e4.png 1887-11-17 +424103a9dbf1695f256e7dc3be63052b.png 1901-03-01 +d3f04b385f0a51f23205b2e7f859c571.png 1908-11-19 +ceb07961612dc51b718ca3841f598a36.png 1872-03-14 +45fea39610b215ddac86d3b1bcea256f.png 1900-06-21 +edcfe7c645f7c6dc8b87dbd45fcb32ba.png 1913-09-23 +23e51415c19a1957485b4d83f3566319.png 1906-03-20 +e0977ed4e7a41c8a8c39f5d1c112c0d5.png 1910-07-21 +101918a28d0489a68a70bcb876d81c66.png 1893-12-25 +e9132dca5ae3f172112611706efb673d.png 1898-02-26 +0964b76c54e59ea29cc35edcf807c8e8.png 1904-06-09 +8c7ebddde0d2773b776e2d5b1f52fd73.png 1918-06-29 +c5827552c7579deb28b67f3aaab4a5e5.png 1910-02-22 +43c3124cbd1b4cc8e03f35f89c91677e.png 1906-07-24 +bc2e479bd4c4f15f93f7cfa1e63d1fa2.png 1899-01-04 +5331701a73154ba1ded74d6f4321b3f0.png 1904-03-16 +2a56ae4ca660d09d023f193c7d1dc7fc.png 1892-06-18 +3c317a2a1d798e78db26830e5d9cbeef.png 1898-07-02 +3eab4d590421f6016fd0e090349ba8b6.png 1871-05-06 +345a0f8cb79c6a3023e730360c8dc1be.png 1911-09-11 +853b222a6af6ef4c3b89c5b4b5770ffb.png 1920-08-24 +7dfc47c86f0ff21a13149b83978bf353.png 1920-01-20 +dd0d473f47cd3065e60e6bea354913ff.png 1884-06-05 +9da4e95e55a811832d64906a2e4b7724.png 1905-08-03 +564d9cc9651d918f85125ff41cf9626f.png 1901-01-31 +2054085d4ce44f665c5d829e1dcdfb71.png 1910-06-08 +c057929aa206396c2f936de3fdeeaee5.png 1884-08-18 +dd652b99cab0ec4df3b23eb6256d917c.png 1897-10-12 +79850dbddeea0c10fd43b0571f32dda8.png 1880-11-06 +bef4613f147c9f5e63e8c3652a36ff6e.png 1908-09-17 +2f79089135feeddf73b711115e40d7ce.png 1905-04-06 +0f376e8e7aa9e62a96a58af3866e01c5.png 1897-12-23 +dc92e099d259b0acc45da21ef5876d69.png 1912-08-29 +6fb96e52aa21bacc75060acf9a966905.png 1909-02-17 +488f679a2060f9629db7c03d89f51ac3.png 1903-11-27 +28ed04608e70e2de362b5c4070f6df01.png 1901-08-06 +834799cf7243470f502ed5e1ed11eb99.png 1900-12-03 +9df154abe4b52682b2cc5f61c456a75b.png 1909-06-01 +dcc5d840bdb883af39e6f4a558e98114.png 1909-08-03 +f977918d7e3e2070c55d8477cf670042.png 1901-10-23 +dea70be53cc1479dbfbbc1fa092be7ba.png 1901-12-14 +97ed628b7d9ab0468580ea6a7e16fe2a.png 1914-03-07 +8cafd7c0e8c1c67add2e60dbd2cfb2ff.png 1913-01-22 +05a4701217078f7098864c9254eca18b.png 1910-06-24 +b1f1a3fc6026407682f702842e02dc28.png 1912-01-03 +3225ab9f9a86ad23e7f7f1c8b5209f5c.png 1913-04-23 +1aea214045284add9fde9e5de58f7faf.png 1899-04-28 +a51ab3770ee85d1a3bc0bdbb5c31d866.png 1909-06-30 +5b57c9f02a3f1c7a571d24659a0649cf.png 1910-05-11 +f86b79d1f849b3f135f87da9f1f96535.png 1902-09-11 +1803d4d82218e8bfb143a92d3d3f2fe1.png 1912-06-12 +5a706d4f7d14eeffa8763cf5dcb8c1c1.png 1884-05-01 +d4ccebb48b9a854df397e0cc5e72a997.png 1917-03-26 +fc6b2a72b3e4680223478554dd18b76b.png 1897-05-29 +915179dba7da5c88629ebdcb8a51bc61.png 1922-03-20 +3efcb457c544d9755683e14ed0268afa.png 1917-03-30 +4e97ae684a3aa347e04e51f0a1495071.png 1897-02-13 +b9ce27aee31f96d2bdcab92ad36bf220.png 1897-03-28 +89300fb9655867c24ea271c4ad7b3764.png 1896-03-05 +c8fb0494b39ae2271233f635afd7ecc2.png 1919-03-07 +925f79bfc4dc7d81bfda17ac65fb6fa5.png 1909-12-29 +6af627bf3af96aab1ed28b90922a53f5.png 1905-02-03 +2ca9391ee242f0d474149d688eb837ca.png 1896-12-03 +63c913cb511866b4cfd161b6c2218a74.png 1907-03-15 +0c8cc190ae0abe09bb42d6f9e21cda28.png 1907-06-27 +4fbddb921d192889e57dae24bc09abc5.png 1883-05-31 +b3c05fc4c1cfcdde4a0a390e834ca1b3.png 1893-10-28 +ba82cfc597e7570e678b4a4be6a7ac56.png 1912-01-17 +aaa927e37fbad63e7094642e6ee3824c.png 1911-04-14 +f43969963543299a9e1d725bf5ade394.png 1884-08-09 +b57d958a742c085b51c314847fe95809.png 1922-04-17 +a29e806ed5eb9e8130fa7a130ff2b3dd.png 1922-05-09 +2083db67c82e5e666fdc5de0bbbb8b35.png 1903-12-08 +58b94f10a97f9b49464718ff10e1968f.png 1889-09-12 +8b3522514da45e724c6138220e699090.png 1892-09-02 +08ccec1e6d453be85fdf5dda9e6c016d.png 1913-04-27 +48233ddd9da3b47596b36995c51a9b3c.png 1901-10-24 +a70c70a0e58e9655ae26b020cb9e1b6f.png 1917-02-12 +b0312a18093c21b49d48e7294e062f1b.png 1899-10-07 +a08b497efcb73b50243163a6b35d4687.png 1909-06-11 +d537af839a137743b0bf406da44728b1.png 1863-10-10 +dd6052657c382fac06ae12c58661e072.png 1901-10-17 +e3a36cd4e9951623e220173611b168d9.png 1899-01-05 +3cbcf8f9f5db4e6435445042320bea17.png 1864-08-10 +75687c1d8dd66d79f3e4f5875da1d15f.png 1862-03-12 +d4e2eb267622a822c0b10ac098db75c4.png 1916-04-16 +045ddc95ace1a0cb47bbdae7ce0dd478.png 1903-01-09 +733b4a15eed9eac2a3ca24786e006d90.png 1920-09-29 +bea118df8dfa03b2df93af3b90b034ef.png 1917-11-16 +11d7a351cbc5aeea5c7adc25261763da.png 1903-03-05 +8e0e5527a110bd693afb7bec8b66ceb3.png 1908-08-27 +eece395b368e40a6654a0083249e01aa.png 1891-02-07 +2f7129a198927dbb701d191fc622168b.png 1897-09-03 +fc985531a228d144d5b363b77576c87a.png 1915-12-31 +46e34fbea900e7cd0ce9acf3cc68bf55.png 1905-04-06 +48d0f06752f9ab8d205131a516792202.png 1909-04-14 +b0b1259ea2d37acaa9b458a864e9ec6e.png 1913-01-26 +2a378b9e3492f3a9807afe16f219dd0c.png 1917-02-27 +afd7f9b833bdecb27eae057f31c53c64.png 1900-01-17 +23a9ee759ab5e2654e6e0adfc81ffdf9.png 1911-12-27 +eb23b72091fb37a0482433a5cad6d129.png 1900-08-28 +101e97de76c122f83186b4527fbb84f9.png 1914-07-28 +e0e47f3172e6088c79155968ef2e7a73.png 1913-07-01 +1a7fdc9f4d5f909e8d1efbdce042e0ed.png 1911-06-01 +e9f9e8a4f1f413ef2b4a02928347b678.png 1920-05-12 +fa548d039884fbd42abd7d08533fccc8.png 1899-11-10 +9682891875a82305587f15c9d7850202.png 1865-09-16 +01271fecd20209d5392b79a7e61c19cd.png 1913-01-26 +bf729825a78c517d827e0a3be306791b.png 1898-05-21 +7f1c8e860224644f6b336a6487b23313.png 1882-05-04 +bbafff3bae4c95a2ee44affd2074a013.png 1884-05-27 +d9bb5a724ddde5d00c24acddd7d0f0cd.png 1913-04-06 +532b22485ee580fb834848b05004b722.png 1921-06-25 +0ae371a6a3d31f211b4980803ac669cf.png 1911-08-17 +e2606ca914616d7447a30ea09e464866.png 1918-09-26 +254e3215da24112c25ddaf4f11d5e9ad.png 1920-11-23 +6755718c87df41c0fe55fb5f8044949b.png 1900-08-10 +14ecd2ec1d81757bcf1ee2309b57e12b.png 1900-05-10 +0a2581fea002bff7a67efa590186d72d.png 1922-04-10 +716c649314184f6680b7be831650563d.png 1892-06-14 +7f76371e3f681f60725cfb14edda1224.png 1898-05-14 +d3dd52b7f6a9409e28df5efd2411586b.png 1912-07-25 +a7a20fa1b30aaf1ad2a9eefeb1fcebfa.png 1909-02-18 +c0f19883d02ea7153f872c92b4731405.png 1912-02-19 +c168e0e9d881ea6c7ff1ff074290ec6c.png 1904-06-03 +8baa2fee7e26a4d2cb767e0d70e3b44d.png 1889-02-09 +13b84dd9b7a34d0de4d430964936afe5.png 1922-04-06 +f03460b0430027347085aa8ecbe26661.png 1917-06-16 +3967dab5ddb635fdb6b34aae6ae276df.png 1900-09-25 +379fd09490a2a6a4b6cf62173b1a8172.png 1882-10-07 +fccf85f84ea84bb34e68be9e16c27028.png 1882-02-20 +1df61c406f3c2b3dee821e1a45cb7d4d.png 1901-07-13 +12179eddc1a05c2c699b9a9bf9d3103e.png 1891-10-18 +26932666ec66470bf826659559c28132.png 1889-06-08 +f51fd0805fce41c20a7e269a9650b7a7.png 1910-03-26 +0991de5b2c1a0bbab121533de702a341.png 1912-07-25 +2a5b1c0c12d3cf17b5bdd894f56263f8.png 1907-04-28 +14a34a86cb991f931651132d9bc48cb0.png 1863-05-28 +8d7c91aa08152e09adae0f57e4a98b1c.png 1916-09-28 +b73f9305ce9ca7900c2a70168d6749c9.png 1915-02-09 +1d59e5d0cf3e17d3aeac5867c1da914a.png 1920-02-06 +7c67c597a392fe99f74009382a92c3cd.png 1913-01-21 +bd774a918e040bdc0c0cd03800d8be3d.png 1906-05-04 +d6e44b08472dd7e30d5429d315ffe97d.png 1901-05-25 +f25d8d7ed63712c7ff9ee47a8cc96dc4.png 1914-01-23 +9972f656160762b7bdc3ffe7fc1ba0b6.png 1903-06-19 +71916087fdc6a27560b13a4efcce1a05.png 1910-03-08 +5adb6f8c5e47df8070073c96999a3b40.png 1912-11-23 +8922ee9421924dcee823bb33187bbe81.png 1900-12-02 +e96c73be763820331a9ae200bd500060.png 1907-07-10 +30690138091ea3ea5b44a8976bfe4b4d.png 1899-09-23 +cfc0fceb67e1339c30da2eaf9fe367a2.png 1913-02-03 +14bb068519e8268bc92f65a7b3e1b26a.png 1911-09-03 +872ad6655497b13fc4d4da6a55a35791.png 1920-03-10 +b90286c0349e921d32a2782a5b9bdc4e.png 1900-11-28 +df7e86d9c8873c2f0ce697fcc0c69e4e.png 1913-08-02 +b31a7c49d475ebe648aebfe2c48ee0e6.png 1905-01-06 +526c970c798a15b9e3d3ac040445c4ca.png 1907-12-13 +a522553d47f3e02d477010b303285539.png 1908-02-21 +3cef7af00e039be681a9d7fa009bc74b.png 1877-10-27 +f52d49102a48d6eff1233c7f7d74acec.png 1915-06-12 +9e8becfe20b9d96bd0d059a8c6b9a268.png 1883-01-29 +39d80739db1a18295d393b02e7f6866a.png 1909-06-08 +ab3e14bf2bf1b35dab62a0c4b5bbb82b.png 1868-05-08 +05af3f0cec1047a9f72573c977d64342.png 1895-10-26 +f795e1d309628de98a3f907900b4edb7.png 1902-06-10 +f5bdb7aeb7659f0b7c55ad8a2b0c7772.png 1867-01-25 +a1e8987680460b408d0ee24fe595e22f.png 1904-01-11 +529766cb26f678aaf25cfb41b88926b4.png 1887-08-19 +28618ebadac321cb234113d4af481c0b.png 1897-10-15 +9615731bca04c5cbeab1fce874351345.png 1913-04-24 +db59ddd9ca660a9b38c82cb82336e993.png 1916-08-17 +a7d107cbac0bc9d1d999ba51a24e581a.png 1908-10-12 +bc4fc766e3a67256541ac5750f34a9ec.png 1899-07-29 +f4db79d01831a5438c7cabd1282a2319.png 1898-05-07 +a11796365b70b9bf6e5714422685faa9.png 1909-03-08 +c70ce2947bed24a385fe2ec96395263b.png 1898-04-13 +853d1f0649afc87717b39f734c001806.png 1904-06-18 +3e9deea8e326e2e462e9a4f488d93447.png 1912-09-24 +f601567beee3b1ff479f6de008a13730.png 1900-01-26 +a9fa5bb3620c0f7ba7efc7c4f903a879.png 1901-02-24 +a2d747523fdc84c191357b6bd4fe430c.png 1907-06-18 +0ab64f42835901d3ac6d6b1697ef0661.png 1911-06-13 +7bb3de4e888a4042ade7318a916f2326.png 1886-05-21 +ef07354dad10f2af165f17ba341524d3.png 1909-02-19 +7c4f7321767c9f24aff3a0df535d033a.png 1905-10-20 +dd51e206549e1c41395f5b706fec7663.png 1898-04-02 +7b1a69062c32eb75ac3f49539dfb99d9.png 1920-04-13 +ee0300f8d564dd4ef5044f914e74a923.png 1861-03-23 +a357624204085dbb3b1fadb8ebe9ba76.png 1882-09-13 +59da7640a6c9fc5a33f36373fecad2b6.png 1901-02-02 +2868dd43a7f3b4880c4b9d69fc223fe6.png 1909-04-15 +4e3c0916c3aeb061c5c2add0c58314cc.png 1901-04-09 +de105fa3bdb7d957d65ac31c6c9324be.png 1896-03-25 +0beee15988f100696b99795e299cffb8.png 1902-10-16 +4e4af0d6757f1b7b5e06adf92bec5470.png 1899-03-22 +268307ccc249205e73c1f0dccfa95e53.png 1910-04-08 +d61a560f5d9c5dde07dd63272fb1b509.png 1909-02-02 +38730716bc23b35c90de528e638972ac.png 1893-06-15 +0d4de8ccfd43a0f233f395a1dfb88484.png 1909-01-19 +fb52b09e13bde9a5cbaf550f0bda13d7.png 1893-07-08 +694e3c859066ca3b6a6536a7973bf0a5.png 1907-12-20 +f660304daafdc22dd1b35437b9de7ff5.png 1897-06-17 +9e21c4dad5c825b7c530c0be0b20ad0e.png 1899-05-18 +356c8bf70e8e5288c67a6fbe9bab92da.png 1909-09-30 +a749be6d2191eba8e1a917846bb144fe.png 1888-10-05 +65523a91b5ec395e0f01e090fac08e84.png 1918-08-24 +c9d2b164d89e3107b200b630e30efbc3.png 1909-12-28 +c037a1be201317aa4da8e96c97fc4be1.png 1915-01-12 +0f3b8908bd726c5659cf22ecaf34ed5c.png 1899-01-21 +a7ebb98e7dde891edde617f3cea95e1c.png 1895-06-29 +c876a3be8854088cab83efbb2252c0c1.png 1905-12-16 +35f9d32e0eead4b88b0cafdec66df8c4.png 1908-12-30 +2c52d06b7c9c91e55964a6fcd33403e5.png 1904-08-15 +a8f18feacc94971b411c1aeb1b7bc196.png 1865-09-01 +b6e63dfad8552a89d510916a782290c1.png 1885-02-26 +e91f30e5697ca404ab96a1a64a2174c8.png 1898-02-09 +9c06e8bbfed3ac947ef67dc4508d9fcc.png 1900-06-26 +b3f9468c599178aeb15c47ef47bae0e9.png 1913-05-21 +b035e63d46e2b615e558657434af7663.png 1917-03-27 +b167c5536dc9fdc34daab5aedd2e737a.png 1912-06-13 +27b770f076a9675d592519a7b369846d.png 1913-02-11 +cea274e593b082de6d210201457134ca.png 1916-06-21 +86b4fa1d46810c30d5bcb4af6de35a3c.png 1900-10-25 +09dfff3829b71985e0dd0bcd5b1c8c3b.png 1905-10-21 +518e3b22fba44066ffc6c43fdc6c57c9.png 1900-06-07 +e4c35156832227d130573e2cca73f191.png 1893-09-07 +d6827ec8d0c8053e66ffe155db15a6b7.png 1920-09-04 +713297abdc6a9f1aef76f7202e72af7d.png 1911-10-11 +cfefcd30e65d5cf07ecf9ebb83e90ad4.png 1916-09-23 +317694e0616feae716fe506a52ded544.png 1911-11-02 +259b9ac236d1b17e24e9a37202587731.png 1900-09-13 +6d648400cc742215ec059898ce2dd6d8.png 1900-01-12 +32024f784424536c02980fb27c1aaec5.png 1919-08-09 +66d3738456f32cd5eaf17e4b457f1d9e.png 1889-06-18 +76151226a6cc8bfe590d6b81855f9f14.png 1912-04-30 +194390076b79a5a1a7e838ccd9e1aa89.png 1894-09-29 +b9d22f44f35dbd5c96611754da3b800a.png 1915-09-21 +2b6300ea20e5e4fcaebb23e0002de34a.png 1914-08-14 +b1f7169fcc8876f1fe10c4d69f2fcd29.png 1913-01-03 +edfa1b87d9a20e8f66944ae69416c60a.png 1903-06-08 +d158c77d350097dba9ec36eb39252f92.png 1907-09-17 +4f313d3498b80c9d695aa508682db882.png 1899-12-16 +b194c8dd77adbe47d1e459460935a359.png 1907-09-03 +8a20154ed78453df148451de856a0e33.png 1898-07-29 +5ae96f520dbf16f324f608bf00fba81a.png 1891-01-23 +e8aafd489ed2d70b45ca0b53f62eb618.png 1902-05-12 +1e6ee20e54b97626957905899cabd761.png 1898-12-05 +d7b365b6b270461d794bec3262f8fcfe.png 1905-04-19 +5d664206148208baa7ac4a69015bfeee.png 1891-02-13 +f811b1e7010fdac00ba7c449a7f56ffb.png 1895-04-11 +fd1f74b92e57d1da92646127c47b3cd2.png 1904-11-03 +29eacd8a767af65a49b544a850da14a6.png 1897-05-13 +59ecdca63c6f31a0d02324d10278774e.png 1911-12-06 +494403a796127c106ade43dc13d31d6f.png 1905-01-11 +2c484dd9278722ab9ecc17b36190d8f5.png 1910-06-16 +05c006fd8da22f36f9d172b4fc3de09e.png 1909-06-14 +6ca32d393f0f96f5cae3c1b1804966f5.png 1887-04-02 +64fd182d20140684f0d4ff6a1ae0e1d5.png 1903-07-22 +a93c0171889396d9540a1f558564d28d.png 1920-06-10 +2e72dda3c2f56198c7e37a94d09022c7.png 1882-04-12 +74056ad71aae3c8601fd71541940b815.png 1913-10-25 +b826f64b08fc1329c796542c85b5766d.png 1919-07-22 +4c985b99734533afe64442eaaee15de3.png 1913-11-04 +8b8f91e8b914220620a6187b019e60ab.png 1916-05-23 +2c93a1db9244cb9600ce9c95aa8b4e57.png 1918-03-08 +ca18a8014f478ea54a4a184bc85450d4.png 1887-03-23 +95f39bf9cd4d721e2a9bb548cc72fe15.png 1914-08-29 +50e005f9bf4095fe7f5ac7d3561bdfb9.png 1911-12-25 +3b422c67a441e9c17c599616b6e67529.png 1862-09-13 +3dbc667c76cb99f268939d08b1224bcf.png 1917-04-21 +504a34bcdcde2f4b6ed346fe2969148a.png 1892-07-07 +84eb8978883009b868f50b7b0435b538.png 1913-08-02 +a7f1acb07e2b2241e8056c68ff946bbb.png 1897-03-11 +4012669ef1d79756740b2bf22560b695.png 1905-09-30 +a87509577570596266b17b7bcc06e60d.png 1906-05-19 +8387e2fbc10b12f947a1f9e1f7e6d662.png 1884-06-19 +327482125a4a4c09a4a5837a112e6568.png 1903-09-09 +63363871a90084e65e44a6c33f20e0c8.png 1885-10-08 +c8bad47a3479983b1f840ae7e273ba1b.png 1915-04-08 +3c6cf016cb828accc63630395ba99b6a.png 1911-07-20 +ab6979b34bfdd7fdf854f1f348993d98.png 1911-09-14 +ba191964ad0d7d2419abc7f4a5b5b36a.png 1863-07-28 +ad3e5ef89c14a9e17c07f0d2608dd0ae.png 1898-06-24 +b7a76b333b8cb0ffd695630b30a37bfc.png 1911-01-05 +7d98407204bc5923124ee4b75e654f57.png 1910-01-20 +a98b230b7de5bcf8e2031dd72d065619.png 1865-10-10 +9e0c0e8d4d238c15001b85ae046d76bf.png 1898-07-07 +66d1e256c391340699d3e5237f8345ab.png 1890-12-12 +250ec063169dbf9e1c6b04297c58402b.png 1891-02-12 +baca5a8850ec1b22d0fb441586fa9051.png 1911-09-17 +7d5d2dc0c1f036b042dd4de381d087e5.png 1889-08-31 +07386a4980687b9792f0ae26100823ee.png 1907-03-09 +4459982606f31b0f0c5bdd9c71dbee6b.png 1917-03-12 +ef2b627c933733694ce809f2b3d0a3fd.png 1917-09-10 +322bedb965ef4f6716598c14feaa029d.png 1904-11-25 +7911316499c201e05b1046fe6d8ef7e1.png 1897-06-26 +f0436070eca99d67e9a0d03f6e0847fa.png 1921-09-21 +d9771aae14a930989c5704b94300ebe0.png 1903-01-01 +3f080eef3922cc5ab219aa9a78053d24.png 1900-12-13 +abb24b9bcd319f5e4baad70e0ac9c0ee.png 1905-12-22 +c278782c6919a75e715af0d2ce968310.png 1904-02-10 +e6df254f93dad7783ce4aea0df6e07c3.png 1900-11-01 +f7f371382f9806e3d798f63a98e8901f.png 1900-02-09 +baa70b830839a267ead61ad0ad4e5aad.png 1912-11-11 +9f6785b775b4a36603cbf1648bbab76c.png 1911-11-16 +7d49708c903c6595fa9d5716337d642d.png 1864-07-06 +402e8b69f6ce4e1f861217396c22d26b.png 1904-08-03 +a6c2e0a36342461c9d480d74d2ed1046.png 1900-03-30 +ac1acef1cb270e5f41c967597ea03b74.png 1911-10-20 +8d60487bebd8d973f70c13a9971d0fbf.png 1909-08-12 +ba4f301c4a3465a54c621e50c9b7baea.png 1913-07-07 +4a172106db47f8cf929175c477778d38.png 1891-07-24 +90bab7f2031a11e998d4808b6f0eda60.png 1908-03-18 +62113ddd8d44585bfca39750d1cd8184.png 1901-06-27 +71264eebd9a95be5203d9dc6461d9f34.png 1899-02-08 +5dce79c1b56e6fe0b7406a13d930035f.png 1898-09-11 +b09eea715d89bf712436457e9a1cd821.png 1916-12-16 +9a2410450b7fb852b207a41afa3e33da.png 1918-09-13 +6467a7d9ffaeb37135f46180387055d5.png 1920-11-25 +91c0fb23ee8e69bb2af93be919c16ae7.png 1892-02-04 +bd8de0321024c58da65a62615b7d9a2d.png 1903-03-14 +be9ec05cfbfd6fd378f7115e04c0dca1.png 1862-02-10 +fb34de73e110471c5a980fd94e48d2a5.png 1887-09-26 +220423cdb9ecaa00a3959ed761c69914.png 1901-09-22 +fe1b8728ab935304cdf5e78176279247.png 1897-07-05 +4de6a4885128b0ef82366441b7965e7d.png 1900-04-23 +b7b06711a81fbbb117dfc9accd73861e.png 1904-09-21 +1a761a0bf69d3635f4c5b1f2d9ee1484.png 1899-05-04 +4fe14938bf199ab7b3bdc4cc785edcc8.png 1900-04-21 +104612bd29c1c3f8847e4548338a98e3.png 1920-06-17 +2b2868319e2f9d1f499eda303dbadb5a.png 1921-09-14 +8a5bab8fc77c9bf8823313bfd7d61bc2.png 1912-05-10 +89a8c1588e5b55f6ad998758944b3dcc.png 1917-02-27 +8681255cb6d987583a176409ff879f8d.png 1899-12-12 +912d944d67971b1fb34d711012cae565.png 1862-01-10 +07a334e603df64ace70b4f94331ff335.png 1909-03-04 +7b0a12e1026ff1fb28dcd0938963973e.png 1902-08-19 +ce7bf8e57c70e3d7078f010807035f59.png 1913-03-22 +3c6d80c5dec09258ff0fc5072f2041df.png 1920-06-17 +fb1fb05fea28a2958754b16f25506607.png 1915-10-23 +abaaa955cb4c094069e11c7a3257223a.png 1916-01-27 +c3fe05e61ea202ddfda6419048c009d8.png 1916-08-19 +f130b1ddb6ffc8e6adbc0a197419c1ec.png 1898-07-02 +1a0cd3ce9afbd5ce89156338820d4b4b.png 1889-08-24 +60006a45b127342185886917d25cbb66.png 1910-04-15 +e386569dec9dd59ee9f7fa4515463c1a.png 1898-05-02 +5bb3d590f50d174b894028501cf36008.png 1900-06-14 +68c3ddefa287ff42e92209b3ab19b201.png 1905-06-07 +ab1675fc1bb93a388967ee32815df10e.png 1914-03-31 +7b1a6c102461556b751c4fc43e1dda7a.png 1920-08-17 +2a2936236c88ab220ce617a1650fdf52.png 1887-02-12 +a72863beefb06d921f5082e37156f973.png 1885-01-12 +c3e5ef4fabc6621841c87b96d14de36f.png 1921-03-29 +fb18d985b07fec402a6cbeeaadafc715.png 1885-01-27 +8b7fbd6966c6425db0b3fe8c7fc96b4f.png 1900-09-04 +d359661f1132cf6b3ee2350ce1de4985.png 1922-02-19 +2f91f1dd92ac80484ffdac543929ed4f.png 1903-12-31 +cce0357fa278e2227cddde15c53d30da.png 1904-06-28 +ac2cf7bfb5293c7846c4d2e8806ba687.png 1906-04-23 +9d20a466cdc965596f9f1fe9c286e728.png 1917-12-16 +c202b7783f790114dc31dcd217144e79.png 1887-06-09 +b07b6d01c61a23c318185125fb84d7a4.png 1896-02-22 +108deeb72f26219e77420515ddc1efa8.png 1914-04-28 +f868147979205f0d3afade115ecadda4.png 1899-05-26 +5b036519e77dbde5f95200fa31ee4542.png 1905-06-24 +cd2c3c1012af4914304d5d45055d75a4.png 1900-12-11 +3ecb60658b7be094e6a77ebda409fc2a.png 1911-03-23 +4d67cddb3c2f581d2db23cbb425bd232.png 1905-02-18 +365e97eb1afcb27ce0c2d63ae647fe0f.png 1908-10-08 +b33a1e0954636d8c45fc36e2a4841cac.png 1897-08-20 +5682efc115b3cc51ea05245d8951809e.png 1921-02-11 +ecab5c372b51414f0697bf42aa93aa98.png 1911-04-08 +3302f97e5acf24901bd1f6806bbbbff3.png 1901-01-04 +41952e6b073aff5f16baf49ef1a8580e.png 1857-07-24 +32eba886bd229621f04cc17221f20e7b.png 1913-06-28 +92eea4943555e53e7a4b857a4a01b5b6.png 1906-01-30 +5229a14d4a2ba6ee913b277b7b930ec9.png 1917-05-29 +82ac58b20870027cd6f0c11f59756f23.png 1901-05-02 +2ada32b270ac105a1689d3bd9c9f48a2.png 1913-06-21 +f847cf82949789c24fdc4c1b949c5eef.png 1902-04-11 +32be66297d20eb202caa92e7505556ce.png 1905-04-27 +7ecb1fa96e3384f2f3f0d6b95b1ff615.png 1914-10-12 +2df37afc9264a2ab078363204382cefd.png 1911-12-12 +65d93089c2bac20dcc42d07425c080d9.png 1912-11-18 +a20bf4f2a3e48077fe7e56c4726d7f92.png 1921-12-09 +566930584cd40f7aa6aeb95d1a025778.png 1896-11-05 +f629cba52a869b8efed7230dbf7f2e0a.png 1914-08-16 +550d6a900aecffb00322f0700cfed78b.png 1885-12-17 +c18e3c6b93048a11c2fc3730c4db3135.png 1902-11-10 +2b241ce728e2024e404d4c3a087c77e6.png 1887-04-20 +e53db0df4ad1432d65d2411daca0fa17.png 1919-03-20 +dbe1b9273ecd0d4e2f74a3d96ed31fb2.png 1912-05-25 +122f9ffa9ea9da9cefc3074bff36318e.png 1904-09-21 +7aa7fe11e71b49102afdc9910f3cef5d.png 1908-07-10 +a1136fc54f9077b8031b99c61443fa01.png 1920-03-12 +c3ba4d4ea7ab317015b5c3f946e7ad15.png 1900-08-23 +a538a960b312ecc1fe1b0faa4dc94fca.png 1862-12-19 +6f29f68464622720bd091f85c1c274c9.png 1913-06-27 +84b6545bde98e54049c1f3bf92cd82ea.png 1897-07-09 +21349c758868076d86c2404c6047d3ad.png 1898-08-04 +4a992354db2774e5d37e0cd589e7eda8.png 1919-08-19 +36d652608c29b3cec5cfc3aa9366b3ee.png 1911-06-06 +408639fcde1face8689635786c68e5ca.png 1908-12-08 +bc9228d231789cc0d316a5e604643906.png 1897-08-05 +c1634bf4ef5dca50ead8d85ec9f2c6f3.png 1899-02-15 +3e665581abd7fe72467592d1832051ca.png 1900-10-26 +034f5957b3f42e6b8662413feb918ed0.png 1912-12-31 +4c1cf6ef20d89f0afd586a53de2a56f3.png 1917-03-03 +e49c3a78b74c57c922a2d4b8a9f30be9.png 1887-03-05 +3cc17e640090c53b46bd22299ed1b018.png 1899-04-07 +f60b0e6e11a2ab5dde477735d2bb95b5.png 1899-05-25 +ff996d5b49918396f42369af7ae901b9.png 1886-11-18 +585ca37ca840bbd91618f18d8e16c837.png 1886-08-03 +f5099b1b5f47da16c861322ceb1da096.png 1916-02-05 +184f06325cdf29237362f3684009fb16.png 1886-06-03 +a98dcbf05b96ab64e45490c048c0f1fd.png 1864-03-11 +5fb63eb178da7daf4fa9279534390c9c.png 1907-11-30 +1ff780ee71458ee0de2c1920ff87f451.png 1909-02-06 +567e27d473738b3a43079178fe5e57c4.png 1903-07-16 +d8b883b95865d7c4a9822b0e3fc7d8d3.png 1904-03-24 +8572fa4f9c692a4d7424ed64ab5cf2b9.png 1915-11-18 +04625256b56e594fb3d62829efd998b2.png 1916-09-11 +90e46e6878be28e9e40d43a4daced1c3.png 1909-09-04 +ccf95cf99f4b576ba97820a8f1ceb116.png 1913-01-04 +4f55c86b92ed28b076d21b925a1e59b9.png 1897-03-12 +1ff3faff16f5488af546106f7500444b.png 1897-11-01 +a9c110c2cdd37b68d21569c20df49b6f.png 1886-04-22 +0d232b0ebf80adebba8a7d90a2bde668.png 1910-06-09 +8f6e8b57edcf8a2f1202e3f518019fe1.png 1906-03-23 +12f3be88f58e28597d39ab5591a558b6.png 1898-03-10 +69c79549cfe6212ec8a13ffac935cf6c.png 1897-07-30 +7d38c36636ecb4018344da827d26efab.png 1921-02-17 +5c19f3e7155a6d9a83101ba6defa1d2f.png 1908-07-30 +4059a949a4930e5e4734f543e51157d0.png 1918-06-15 +1914c1f6eb2b61b50070f61d539cac4f.png 1904-06-02 +601d4ae5c709d3f351519ca4cbeee6b9.png 1904-04-13 +cb9bc7db84df38f8977ebd2df92b4abd.png 1908-12-24 +57f2147451fdd1d1aef2d45eacdd0d2f.png 1909-03-18 +bc4ef90d7edf1ed44af48ae8be0b3101.png 1889-07-25 +4db59e672b2798363b0625cd0623e655.png 1922-03-14 +92205fc4b6aa0019c56e8c3e437b73f2.png 1904-06-10 +b518e6ed41c5a58824890214c0fd98c5.png 1886-05-26 +d3263f25716f09fff640618ffe9547ea.png 1897-09-04 +5b8dd8403c5bc9d83c9576b3fb9cb267.png 1913-02-02 +f52caaddb9cd25e9bd9298e30f27b153.png 1919-02-17 +3b4e51f46c5fcbd35ca8898becad77bc.png 1915-05-21 +0e555f076655f0b231135b79f2420671.png 1888-07-27 +0d99f9cdcf04fc4a1c70865db1dbbee1.png 1896-01-27 +e04330701976438ec350d129c3e4aecb.png 1903-09-24 +e49fc0b623e0f58f6776c6bcbe88e540.png 1890-06-21 +8bdaebbcf0ef0fc507b4c89c9b929831.png 1914-06-07 +25630e3171cd62f5dbfdf9426289bd8e.png 1920-12-28 +b5f93cbc6dad1acc4534caac0a5e7f54.png 1922-09-07 +cfafe37f65dde72d900b720ef4344982.png 1894-07-05 +b6de472022d37d281adaf633f88a69f6.png 1900-02-22 +0607c3b78500d46345986c162c17df3b.png 1897-01-19 +937b204db11c493fa54afbdf56466dc9.png 1913-03-21 +6324c6e8c857753c03c128dcf7a7605f.png 1904-09-09 +447f59107c98d554c353efc965f9ce3e.png 1902-01-18 +f8b671a454c3f0146fa86e01a5581b8e.png 1898-04-01 +723040f7a2615f71a4e556e790f0a1bb.png 1917-05-12 +61d6be8d4a40e88264f573f9acfe1b3f.png 1913-02-07 +d2f27a5585bbd84985a20f4191e1abd6.png 1897-09-24 +515ef78a38691dc05036b349fd5f95d3.png 1886-07-02 +07dc5b499191b057fb34f2e14601f2de.png 1909-11-25 +448f7f99aad5d01e2f590452d4df384d.png 1869-10-23 +e7c1cb0530ef7d3b1469c3991d01bec3.png 1862-10-15 +50e26816670d20e8507c0b932e06ed6e.png 1905-07-08 +a1c58041d6ebaeef392acf883bb4d888.png 1917-06-30 +49311a0e431eed098a2c86fcabec5075.png 1912-05-18 +b7b0bf2076d504cf7b10dfb2cfdb0a94.png 1899-09-21 +2820b06bf97782fbd78aa348501d8478.png 1910-12-07 diff --git a/train/pictures/01271fecd20209d5392b79a7e61c19cd.png b/train/pictures/01271fecd20209d5392b79a7e61c19cd.png new file mode 100644 index 0000000..e13039e Binary files /dev/null and b/train/pictures/01271fecd20209d5392b79a7e61c19cd.png differ diff --git a/train/pictures/01a64ac039b4bf581e73c1e444b9df3c.png b/train/pictures/01a64ac039b4bf581e73c1e444b9df3c.png new file mode 100644 index 0000000..b9f379f Binary files /dev/null and b/train/pictures/01a64ac039b4bf581e73c1e444b9df3c.png differ diff --git a/train/pictures/02eeb1d01ecfb8a018259044a31565e8.png b/train/pictures/02eeb1d01ecfb8a018259044a31565e8.png new file mode 100644 index 0000000..ab1095c Binary files /dev/null and b/train/pictures/02eeb1d01ecfb8a018259044a31565e8.png differ diff --git a/train/pictures/034f5957b3f42e6b8662413feb918ed0.png b/train/pictures/034f5957b3f42e6b8662413feb918ed0.png new file mode 100644 index 0000000..d367ac4 Binary files /dev/null and b/train/pictures/034f5957b3f42e6b8662413feb918ed0.png differ diff --git a/train/pictures/0425c1ff04d095061ecab3a18706f082.png b/train/pictures/0425c1ff04d095061ecab3a18706f082.png new file mode 100644 index 0000000..40775f3 Binary files /dev/null and b/train/pictures/0425c1ff04d095061ecab3a18706f082.png differ diff --git a/train/pictures/045ddc95ace1a0cb47bbdae7ce0dd478.png b/train/pictures/045ddc95ace1a0cb47bbdae7ce0dd478.png new file mode 100644 index 0000000..57c4333 Binary files /dev/null and b/train/pictures/045ddc95ace1a0cb47bbdae7ce0dd478.png differ diff --git a/train/pictures/04625256b56e594fb3d62829efd998b2.png b/train/pictures/04625256b56e594fb3d62829efd998b2.png new file mode 100644 index 0000000..0dc7dcd Binary files /dev/null and b/train/pictures/04625256b56e594fb3d62829efd998b2.png differ diff --git a/train/pictures/05a4701217078f7098864c9254eca18b.png b/train/pictures/05a4701217078f7098864c9254eca18b.png new file mode 100644 index 0000000..8f51c6e Binary files /dev/null and b/train/pictures/05a4701217078f7098864c9254eca18b.png differ diff --git a/train/pictures/05af3f0cec1047a9f72573c977d64342.png b/train/pictures/05af3f0cec1047a9f72573c977d64342.png new file mode 100644 index 0000000..077c339 Binary files /dev/null and b/train/pictures/05af3f0cec1047a9f72573c977d64342.png differ diff --git a/train/pictures/05c006fd8da22f36f9d172b4fc3de09e.png b/train/pictures/05c006fd8da22f36f9d172b4fc3de09e.png new file mode 100644 index 0000000..0864c63 Binary files /dev/null and b/train/pictures/05c006fd8da22f36f9d172b4fc3de09e.png differ diff --git a/train/pictures/0607c3b78500d46345986c162c17df3b.png b/train/pictures/0607c3b78500d46345986c162c17df3b.png new file mode 100644 index 0000000..81070c9 Binary files /dev/null and b/train/pictures/0607c3b78500d46345986c162c17df3b.png differ diff --git a/train/pictures/07386a4980687b9792f0ae26100823ee.png b/train/pictures/07386a4980687b9792f0ae26100823ee.png new file mode 100644 index 0000000..b70f297 Binary files /dev/null and b/train/pictures/07386a4980687b9792f0ae26100823ee.png differ diff --git a/train/pictures/075d409c5c5e76c6a02408ef6456eb01.png b/train/pictures/075d409c5c5e76c6a02408ef6456eb01.png new file mode 100644 index 0000000..0ab9a74 Binary files /dev/null and b/train/pictures/075d409c5c5e76c6a02408ef6456eb01.png differ diff --git a/train/pictures/07a334e603df64ace70b4f94331ff335.png b/train/pictures/07a334e603df64ace70b4f94331ff335.png new file mode 100644 index 0000000..1c2e2f9 Binary files /dev/null and b/train/pictures/07a334e603df64ace70b4f94331ff335.png differ diff --git a/train/pictures/07dc5b499191b057fb34f2e14601f2de.png b/train/pictures/07dc5b499191b057fb34f2e14601f2de.png new file mode 100644 index 0000000..9846d31 Binary files /dev/null and b/train/pictures/07dc5b499191b057fb34f2e14601f2de.png differ diff --git a/train/pictures/07e9497a638084e7a6c02d09ab464591.png b/train/pictures/07e9497a638084e7a6c02d09ab464591.png new file mode 100644 index 0000000..61d51b6 Binary files /dev/null and b/train/pictures/07e9497a638084e7a6c02d09ab464591.png differ diff --git a/train/pictures/08ccec1e6d453be85fdf5dda9e6c016d.png b/train/pictures/08ccec1e6d453be85fdf5dda9e6c016d.png new file mode 100644 index 0000000..c1c750e Binary files /dev/null and b/train/pictures/08ccec1e6d453be85fdf5dda9e6c016d.png differ diff --git a/train/pictures/094652cb6f72421a2711289441c84900.png b/train/pictures/094652cb6f72421a2711289441c84900.png new file mode 100644 index 0000000..437496e Binary files /dev/null and b/train/pictures/094652cb6f72421a2711289441c84900.png differ diff --git a/train/pictures/0964b76c54e59ea29cc35edcf807c8e8.png b/train/pictures/0964b76c54e59ea29cc35edcf807c8e8.png new file mode 100644 index 0000000..d23141a Binary files /dev/null and b/train/pictures/0964b76c54e59ea29cc35edcf807c8e8.png differ diff --git a/train/pictures/0991de5b2c1a0bbab121533de702a341.png b/train/pictures/0991de5b2c1a0bbab121533de702a341.png new file mode 100644 index 0000000..6ea8910 Binary files /dev/null and b/train/pictures/0991de5b2c1a0bbab121533de702a341.png differ diff --git a/train/pictures/09dfff3829b71985e0dd0bcd5b1c8c3b.png b/train/pictures/09dfff3829b71985e0dd0bcd5b1c8c3b.png new file mode 100644 index 0000000..87ea668 Binary files /dev/null and b/train/pictures/09dfff3829b71985e0dd0bcd5b1c8c3b.png differ diff --git a/train/pictures/0a2581fea002bff7a67efa590186d72d.png b/train/pictures/0a2581fea002bff7a67efa590186d72d.png new file mode 100644 index 0000000..3b16c9c Binary files /dev/null and b/train/pictures/0a2581fea002bff7a67efa590186d72d.png differ diff --git a/train/pictures/0ab64f42835901d3ac6d6b1697ef0661.png b/train/pictures/0ab64f42835901d3ac6d6b1697ef0661.png new file mode 100644 index 0000000..d4e647f Binary files /dev/null and b/train/pictures/0ab64f42835901d3ac6d6b1697ef0661.png differ diff --git a/train/pictures/0ae371a6a3d31f211b4980803ac669cf.png b/train/pictures/0ae371a6a3d31f211b4980803ac669cf.png new file mode 100644 index 0000000..61abed8 Binary files /dev/null and b/train/pictures/0ae371a6a3d31f211b4980803ac669cf.png differ diff --git a/train/pictures/0b17335510ffd23d92b4088cfe1c5ae4.png b/train/pictures/0b17335510ffd23d92b4088cfe1c5ae4.png new file mode 100644 index 0000000..03099a8 Binary files /dev/null and b/train/pictures/0b17335510ffd23d92b4088cfe1c5ae4.png differ diff --git a/train/pictures/0beee15988f100696b99795e299cffb8.png b/train/pictures/0beee15988f100696b99795e299cffb8.png new file mode 100644 index 0000000..e815bfd Binary files /dev/null and b/train/pictures/0beee15988f100696b99795e299cffb8.png differ diff --git a/train/pictures/0c8cc190ae0abe09bb42d6f9e21cda28.png b/train/pictures/0c8cc190ae0abe09bb42d6f9e21cda28.png new file mode 100644 index 0000000..946515c Binary files /dev/null and b/train/pictures/0c8cc190ae0abe09bb42d6f9e21cda28.png differ diff --git a/train/pictures/0d232b0ebf80adebba8a7d90a2bde668.png b/train/pictures/0d232b0ebf80adebba8a7d90a2bde668.png new file mode 100644 index 0000000..fc1a6a1 Binary files /dev/null and b/train/pictures/0d232b0ebf80adebba8a7d90a2bde668.png differ diff --git a/train/pictures/0d4de8ccfd43a0f233f395a1dfb88484.png b/train/pictures/0d4de8ccfd43a0f233f395a1dfb88484.png new file mode 100644 index 0000000..31751fa Binary files /dev/null and b/train/pictures/0d4de8ccfd43a0f233f395a1dfb88484.png differ diff --git a/train/pictures/0d99f9cdcf04fc4a1c70865db1dbbee1.png b/train/pictures/0d99f9cdcf04fc4a1c70865db1dbbee1.png new file mode 100644 index 0000000..79af056 Binary files /dev/null and b/train/pictures/0d99f9cdcf04fc4a1c70865db1dbbee1.png differ diff --git a/train/pictures/0deae5fef3816daa5ef7e1a77803d021.png b/train/pictures/0deae5fef3816daa5ef7e1a77803d021.png new file mode 100644 index 0000000..ba801eb Binary files /dev/null and b/train/pictures/0deae5fef3816daa5ef7e1a77803d021.png differ diff --git a/train/pictures/0e555f076655f0b231135b79f2420671.png b/train/pictures/0e555f076655f0b231135b79f2420671.png new file mode 100644 index 0000000..1c87672 Binary files /dev/null and b/train/pictures/0e555f076655f0b231135b79f2420671.png differ diff --git a/train/pictures/0f376e8e7aa9e62a96a58af3866e01c5.png b/train/pictures/0f376e8e7aa9e62a96a58af3866e01c5.png new file mode 100644 index 0000000..4e57479 Binary files /dev/null and b/train/pictures/0f376e8e7aa9e62a96a58af3866e01c5.png differ diff --git a/train/pictures/0f3b8908bd726c5659cf22ecaf34ed5c.png b/train/pictures/0f3b8908bd726c5659cf22ecaf34ed5c.png new file mode 100644 index 0000000..cecc1af Binary files /dev/null and b/train/pictures/0f3b8908bd726c5659cf22ecaf34ed5c.png differ diff --git a/train/pictures/100c1c33289224e80e5474806ecf7b41.png b/train/pictures/100c1c33289224e80e5474806ecf7b41.png new file mode 100644 index 0000000..12ec43f Binary files /dev/null and b/train/pictures/100c1c33289224e80e5474806ecf7b41.png differ diff --git a/train/pictures/101918a28d0489a68a70bcb876d81c66.png b/train/pictures/101918a28d0489a68a70bcb876d81c66.png new file mode 100644 index 0000000..97e0a8b Binary files /dev/null and b/train/pictures/101918a28d0489a68a70bcb876d81c66.png differ diff --git a/train/pictures/101e97de76c122f83186b4527fbb84f9.png b/train/pictures/101e97de76c122f83186b4527fbb84f9.png new file mode 100644 index 0000000..a01f6c7 Binary files /dev/null and b/train/pictures/101e97de76c122f83186b4527fbb84f9.png differ diff --git a/train/pictures/104612bd29c1c3f8847e4548338a98e3.png b/train/pictures/104612bd29c1c3f8847e4548338a98e3.png new file mode 100644 index 0000000..5d7af74 Binary files /dev/null and b/train/pictures/104612bd29c1c3f8847e4548338a98e3.png differ diff --git a/train/pictures/108deeb72f26219e77420515ddc1efa8.png b/train/pictures/108deeb72f26219e77420515ddc1efa8.png new file mode 100644 index 0000000..b565898 Binary files /dev/null and b/train/pictures/108deeb72f26219e77420515ddc1efa8.png differ diff --git a/train/pictures/11d7a351cbc5aeea5c7adc25261763da.png b/train/pictures/11d7a351cbc5aeea5c7adc25261763da.png new file mode 100644 index 0000000..f514d1d Binary files /dev/null and b/train/pictures/11d7a351cbc5aeea5c7adc25261763da.png differ diff --git a/train/pictures/12179eddc1a05c2c699b9a9bf9d3103e.png b/train/pictures/12179eddc1a05c2c699b9a9bf9d3103e.png new file mode 100644 index 0000000..2bbfce1 Binary files /dev/null and b/train/pictures/12179eddc1a05c2c699b9a9bf9d3103e.png differ diff --git a/train/pictures/122f9ffa9ea9da9cefc3074bff36318e.png b/train/pictures/122f9ffa9ea9da9cefc3074bff36318e.png new file mode 100644 index 0000000..74a019c Binary files /dev/null and b/train/pictures/122f9ffa9ea9da9cefc3074bff36318e.png differ diff --git a/train/pictures/123c4b5015c5522a8b678d4a130f5c78.png b/train/pictures/123c4b5015c5522a8b678d4a130f5c78.png new file mode 100644 index 0000000..7e83464 Binary files /dev/null and b/train/pictures/123c4b5015c5522a8b678d4a130f5c78.png differ diff --git a/train/pictures/12aebc41279e3211e1bae8aed436c73b.png b/train/pictures/12aebc41279e3211e1bae8aed436c73b.png new file mode 100644 index 0000000..d12ab1e Binary files /dev/null and b/train/pictures/12aebc41279e3211e1bae8aed436c73b.png differ diff --git a/train/pictures/12f3be88f58e28597d39ab5591a558b6.png b/train/pictures/12f3be88f58e28597d39ab5591a558b6.png new file mode 100644 index 0000000..1e7d97a Binary files /dev/null and b/train/pictures/12f3be88f58e28597d39ab5591a558b6.png differ diff --git a/train/pictures/13726f7adf6ae8f07f23d8072d0cc62a.png b/train/pictures/13726f7adf6ae8f07f23d8072d0cc62a.png new file mode 100644 index 0000000..4c2b430 Binary files /dev/null and b/train/pictures/13726f7adf6ae8f07f23d8072d0cc62a.png differ diff --git a/train/pictures/139c2404f3df2c3afbe33b66fde27521.png b/train/pictures/139c2404f3df2c3afbe33b66fde27521.png new file mode 100644 index 0000000..314ce43 Binary files /dev/null and b/train/pictures/139c2404f3df2c3afbe33b66fde27521.png differ diff --git a/train/pictures/13b84dd9b7a34d0de4d430964936afe5.png b/train/pictures/13b84dd9b7a34d0de4d430964936afe5.png new file mode 100644 index 0000000..1dfe3ed Binary files /dev/null and b/train/pictures/13b84dd9b7a34d0de4d430964936afe5.png differ diff --git a/train/pictures/14a34a86cb991f931651132d9bc48cb0.png b/train/pictures/14a34a86cb991f931651132d9bc48cb0.png new file mode 100644 index 0000000..5eaa474 Binary files /dev/null and b/train/pictures/14a34a86cb991f931651132d9bc48cb0.png differ diff --git a/train/pictures/14bb068519e8268bc92f65a7b3e1b26a.png b/train/pictures/14bb068519e8268bc92f65a7b3e1b26a.png new file mode 100644 index 0000000..09981de Binary files /dev/null and b/train/pictures/14bb068519e8268bc92f65a7b3e1b26a.png differ diff --git a/train/pictures/14ecd2ec1d81757bcf1ee2309b57e12b.png b/train/pictures/14ecd2ec1d81757bcf1ee2309b57e12b.png new file mode 100644 index 0000000..dd00c48 Binary files /dev/null and b/train/pictures/14ecd2ec1d81757bcf1ee2309b57e12b.png differ diff --git a/train/pictures/16ad2db73365b69addbe1ffd0545f857.png b/train/pictures/16ad2db73365b69addbe1ffd0545f857.png new file mode 100644 index 0000000..594fa3c Binary files /dev/null and b/train/pictures/16ad2db73365b69addbe1ffd0545f857.png differ diff --git a/train/pictures/16d8f71c22040ddd41f68b57671f3e51.png b/train/pictures/16d8f71c22040ddd41f68b57671f3e51.png new file mode 100644 index 0000000..59a3834 Binary files /dev/null and b/train/pictures/16d8f71c22040ddd41f68b57671f3e51.png differ diff --git a/train/pictures/1803d4d82218e8bfb143a92d3d3f2fe1.png b/train/pictures/1803d4d82218e8bfb143a92d3d3f2fe1.png new file mode 100644 index 0000000..1369763 Binary files /dev/null and b/train/pictures/1803d4d82218e8bfb143a92d3d3f2fe1.png differ diff --git a/train/pictures/184f06325cdf29237362f3684009fb16.png b/train/pictures/184f06325cdf29237362f3684009fb16.png new file mode 100644 index 0000000..b9232c0 Binary files /dev/null and b/train/pictures/184f06325cdf29237362f3684009fb16.png differ diff --git a/train/pictures/18e9140e476a33cd51a1d80640ad4c10.png b/train/pictures/18e9140e476a33cd51a1d80640ad4c10.png new file mode 100644 index 0000000..9f449d7 Binary files /dev/null and b/train/pictures/18e9140e476a33cd51a1d80640ad4c10.png differ diff --git a/train/pictures/18f32ab0672866cf0844699d32ad2d61.png b/train/pictures/18f32ab0672866cf0844699d32ad2d61.png new file mode 100644 index 0000000..9c20baf Binary files /dev/null and b/train/pictures/18f32ab0672866cf0844699d32ad2d61.png differ diff --git a/train/pictures/1914c1f6eb2b61b50070f61d539cac4f.png b/train/pictures/1914c1f6eb2b61b50070f61d539cac4f.png new file mode 100644 index 0000000..5e6062f Binary files /dev/null and b/train/pictures/1914c1f6eb2b61b50070f61d539cac4f.png differ diff --git a/train/pictures/194390076b79a5a1a7e838ccd9e1aa89.png b/train/pictures/194390076b79a5a1a7e838ccd9e1aa89.png new file mode 100644 index 0000000..e1c1392 Binary files /dev/null and b/train/pictures/194390076b79a5a1a7e838ccd9e1aa89.png differ diff --git a/train/pictures/19eeb1e5c8a73fb6334c85566dca5fc4.png b/train/pictures/19eeb1e5c8a73fb6334c85566dca5fc4.png new file mode 100644 index 0000000..5f4b1cf Binary files /dev/null and b/train/pictures/19eeb1e5c8a73fb6334c85566dca5fc4.png differ diff --git a/train/pictures/1a0cd3ce9afbd5ce89156338820d4b4b.png b/train/pictures/1a0cd3ce9afbd5ce89156338820d4b4b.png new file mode 100644 index 0000000..000cdaa Binary files /dev/null and b/train/pictures/1a0cd3ce9afbd5ce89156338820d4b4b.png differ diff --git a/train/pictures/1a761a0bf69d3635f4c5b1f2d9ee1484.png b/train/pictures/1a761a0bf69d3635f4c5b1f2d9ee1484.png new file mode 100644 index 0000000..e75c1ba Binary files /dev/null and b/train/pictures/1a761a0bf69d3635f4c5b1f2d9ee1484.png differ diff --git a/train/pictures/1a7fdc9f4d5f909e8d1efbdce042e0ed.png b/train/pictures/1a7fdc9f4d5f909e8d1efbdce042e0ed.png new file mode 100644 index 0000000..48ed08b Binary files /dev/null and b/train/pictures/1a7fdc9f4d5f909e8d1efbdce042e0ed.png differ diff --git a/train/pictures/1ab2a2fec4d6d7f6ff24b9b9cdb1757e.png b/train/pictures/1ab2a2fec4d6d7f6ff24b9b9cdb1757e.png new file mode 100644 index 0000000..33d376b Binary files /dev/null and b/train/pictures/1ab2a2fec4d6d7f6ff24b9b9cdb1757e.png differ diff --git a/train/pictures/1aea214045284add9fde9e5de58f7faf.png b/train/pictures/1aea214045284add9fde9e5de58f7faf.png new file mode 100644 index 0000000..6b5bc1b Binary files /dev/null and b/train/pictures/1aea214045284add9fde9e5de58f7faf.png differ diff --git a/train/pictures/1c154e76d961d6f68286a162bb68bd84.png b/train/pictures/1c154e76d961d6f68286a162bb68bd84.png new file mode 100644 index 0000000..6a235fd Binary files /dev/null and b/train/pictures/1c154e76d961d6f68286a162bb68bd84.png differ diff --git a/train/pictures/1cb5620bf4a9b16730c3d44833b54dfe.png b/train/pictures/1cb5620bf4a9b16730c3d44833b54dfe.png new file mode 100644 index 0000000..4742cfc Binary files /dev/null and b/train/pictures/1cb5620bf4a9b16730c3d44833b54dfe.png differ diff --git a/train/pictures/1cdb8a301601a450cb82a53d0bcf344d.png b/train/pictures/1cdb8a301601a450cb82a53d0bcf344d.png new file mode 100644 index 0000000..0bf459c Binary files /dev/null and b/train/pictures/1cdb8a301601a450cb82a53d0bcf344d.png differ diff --git a/train/pictures/1d59e5d0cf3e17d3aeac5867c1da914a.png b/train/pictures/1d59e5d0cf3e17d3aeac5867c1da914a.png new file mode 100644 index 0000000..904ce68 Binary files /dev/null and b/train/pictures/1d59e5d0cf3e17d3aeac5867c1da914a.png differ diff --git a/train/pictures/1df61c406f3c2b3dee821e1a45cb7d4d.png b/train/pictures/1df61c406f3c2b3dee821e1a45cb7d4d.png new file mode 100644 index 0000000..c010689 Binary files /dev/null and b/train/pictures/1df61c406f3c2b3dee821e1a45cb7d4d.png differ diff --git a/train/pictures/1e6ee20e54b97626957905899cabd761.png b/train/pictures/1e6ee20e54b97626957905899cabd761.png new file mode 100644 index 0000000..6b14948 Binary files /dev/null and b/train/pictures/1e6ee20e54b97626957905899cabd761.png differ diff --git a/train/pictures/1ff3a940b7ac5cb8b8ac76c42c522b69.png b/train/pictures/1ff3a940b7ac5cb8b8ac76c42c522b69.png new file mode 100644 index 0000000..01e6629 Binary files /dev/null and b/train/pictures/1ff3a940b7ac5cb8b8ac76c42c522b69.png differ diff --git a/train/pictures/1ff3faff16f5488af546106f7500444b.png b/train/pictures/1ff3faff16f5488af546106f7500444b.png new file mode 100644 index 0000000..8e07b29 Binary files /dev/null and b/train/pictures/1ff3faff16f5488af546106f7500444b.png differ diff --git a/train/pictures/1ff780ee71458ee0de2c1920ff87f451.png b/train/pictures/1ff780ee71458ee0de2c1920ff87f451.png new file mode 100644 index 0000000..1b2f099 Binary files /dev/null and b/train/pictures/1ff780ee71458ee0de2c1920ff87f451.png differ diff --git a/train/pictures/203bd2e2c5f8c7568fbf634e389bd77c.png b/train/pictures/203bd2e2c5f8c7568fbf634e389bd77c.png new file mode 100644 index 0000000..20e5c8b Binary files /dev/null and b/train/pictures/203bd2e2c5f8c7568fbf634e389bd77c.png differ diff --git a/train/pictures/2054085d4ce44f665c5d829e1dcdfb71.png b/train/pictures/2054085d4ce44f665c5d829e1dcdfb71.png new file mode 100644 index 0000000..2216f51 Binary files /dev/null and b/train/pictures/2054085d4ce44f665c5d829e1dcdfb71.png differ diff --git a/train/pictures/2083db67c82e5e666fdc5de0bbbb8b35.png b/train/pictures/2083db67c82e5e666fdc5de0bbbb8b35.png new file mode 100644 index 0000000..098987a Binary files /dev/null and b/train/pictures/2083db67c82e5e666fdc5de0bbbb8b35.png differ diff --git a/train/pictures/21349c758868076d86c2404c6047d3ad.png b/train/pictures/21349c758868076d86c2404c6047d3ad.png new file mode 100644 index 0000000..089ec3f Binary files /dev/null and b/train/pictures/21349c758868076d86c2404c6047d3ad.png differ diff --git a/train/pictures/21bb3a2d9c503568ba17a0d056f76d2f.png b/train/pictures/21bb3a2d9c503568ba17a0d056f76d2f.png new file mode 100644 index 0000000..ac6f929 Binary files /dev/null and b/train/pictures/21bb3a2d9c503568ba17a0d056f76d2f.png differ diff --git a/train/pictures/220423cdb9ecaa00a3959ed761c69914.png b/train/pictures/220423cdb9ecaa00a3959ed761c69914.png new file mode 100644 index 0000000..001cf64 Binary files /dev/null and b/train/pictures/220423cdb9ecaa00a3959ed761c69914.png differ diff --git a/train/pictures/22ce7500aac0a91e6343f890366a06ad.png b/train/pictures/22ce7500aac0a91e6343f890366a06ad.png new file mode 100644 index 0000000..9edd959 Binary files /dev/null and b/train/pictures/22ce7500aac0a91e6343f890366a06ad.png differ diff --git a/train/pictures/23a251275dbeacd0803b2908b8e73c41.png b/train/pictures/23a251275dbeacd0803b2908b8e73c41.png new file mode 100644 index 0000000..d1f484e Binary files /dev/null and b/train/pictures/23a251275dbeacd0803b2908b8e73c41.png differ diff --git a/train/pictures/23a9ee759ab5e2654e6e0adfc81ffdf9.png b/train/pictures/23a9ee759ab5e2654e6e0adfc81ffdf9.png new file mode 100644 index 0000000..12ccbe9 Binary files /dev/null and b/train/pictures/23a9ee759ab5e2654e6e0adfc81ffdf9.png differ diff --git a/train/pictures/23e51415c19a1957485b4d83f3566319.png b/train/pictures/23e51415c19a1957485b4d83f3566319.png new file mode 100644 index 0000000..940ad04 Binary files /dev/null and b/train/pictures/23e51415c19a1957485b4d83f3566319.png differ diff --git a/train/pictures/250ec063169dbf9e1c6b04297c58402b.png b/train/pictures/250ec063169dbf9e1c6b04297c58402b.png new file mode 100644 index 0000000..7e9a45a Binary files /dev/null and b/train/pictures/250ec063169dbf9e1c6b04297c58402b.png differ diff --git a/train/pictures/254e3215da24112c25ddaf4f11d5e9ad.png b/train/pictures/254e3215da24112c25ddaf4f11d5e9ad.png new file mode 100644 index 0000000..4ef2706 Binary files /dev/null and b/train/pictures/254e3215da24112c25ddaf4f11d5e9ad.png differ diff --git a/train/pictures/25630e3171cd62f5dbfdf9426289bd8e.png b/train/pictures/25630e3171cd62f5dbfdf9426289bd8e.png new file mode 100644 index 0000000..cf0b1bb Binary files /dev/null and b/train/pictures/25630e3171cd62f5dbfdf9426289bd8e.png differ diff --git a/train/pictures/259b9ac236d1b17e24e9a37202587731.png b/train/pictures/259b9ac236d1b17e24e9a37202587731.png new file mode 100644 index 0000000..f030c99 Binary files /dev/null and b/train/pictures/259b9ac236d1b17e24e9a37202587731.png differ diff --git a/train/pictures/25e6125c1b4fb4c99f0963f81526e0fd.png b/train/pictures/25e6125c1b4fb4c99f0963f81526e0fd.png new file mode 100644 index 0000000..0ef16ea Binary files /dev/null and b/train/pictures/25e6125c1b4fb4c99f0963f81526e0fd.png differ diff --git a/train/pictures/266d7064a29559d45dffd6a50795755d.png b/train/pictures/266d7064a29559d45dffd6a50795755d.png new file mode 100644 index 0000000..f3f76bf Binary files /dev/null and b/train/pictures/266d7064a29559d45dffd6a50795755d.png differ diff --git a/train/pictures/268307ccc249205e73c1f0dccfa95e53.png b/train/pictures/268307ccc249205e73c1f0dccfa95e53.png new file mode 100644 index 0000000..67660a2 Binary files /dev/null and b/train/pictures/268307ccc249205e73c1f0dccfa95e53.png differ diff --git a/train/pictures/26932666ec66470bf826659559c28132.png b/train/pictures/26932666ec66470bf826659559c28132.png new file mode 100644 index 0000000..dce111d Binary files /dev/null and b/train/pictures/26932666ec66470bf826659559c28132.png differ diff --git a/train/pictures/274e8dd85abdd7a0d88f60748fe5722a.png b/train/pictures/274e8dd85abdd7a0d88f60748fe5722a.png new file mode 100644 index 0000000..aa821ba Binary files /dev/null and b/train/pictures/274e8dd85abdd7a0d88f60748fe5722a.png differ diff --git a/train/pictures/274ec7017fc817476039b31c3eec3c74.png b/train/pictures/274ec7017fc817476039b31c3eec3c74.png new file mode 100644 index 0000000..a5850ff Binary files /dev/null and b/train/pictures/274ec7017fc817476039b31c3eec3c74.png differ diff --git a/train/pictures/27b770f076a9675d592519a7b369846d.png b/train/pictures/27b770f076a9675d592519a7b369846d.png new file mode 100644 index 0000000..4e57b77 Binary files /dev/null and b/train/pictures/27b770f076a9675d592519a7b369846d.png differ diff --git a/train/pictures/2820b06bf97782fbd78aa348501d8478.png b/train/pictures/2820b06bf97782fbd78aa348501d8478.png new file mode 100644 index 0000000..ccd39db Binary files /dev/null and b/train/pictures/2820b06bf97782fbd78aa348501d8478.png differ diff --git a/train/pictures/28618ebadac321cb234113d4af481c0b.png b/train/pictures/28618ebadac321cb234113d4af481c0b.png new file mode 100644 index 0000000..2f7e360 Binary files /dev/null and b/train/pictures/28618ebadac321cb234113d4af481c0b.png differ diff --git a/train/pictures/2868dd43a7f3b4880c4b9d69fc223fe6.png b/train/pictures/2868dd43a7f3b4880c4b9d69fc223fe6.png new file mode 100644 index 0000000..1b420ee Binary files /dev/null and b/train/pictures/2868dd43a7f3b4880c4b9d69fc223fe6.png differ diff --git a/train/pictures/2875050ca2db58982a7a27865a5e60ae.png b/train/pictures/2875050ca2db58982a7a27865a5e60ae.png new file mode 100644 index 0000000..83e6731 Binary files /dev/null and b/train/pictures/2875050ca2db58982a7a27865a5e60ae.png differ diff --git a/train/pictures/2892b4538b83075aa588c26ca56d1904.png b/train/pictures/2892b4538b83075aa588c26ca56d1904.png new file mode 100644 index 0000000..b3bf89a Binary files /dev/null and b/train/pictures/2892b4538b83075aa588c26ca56d1904.png differ diff --git a/train/pictures/28ed04608e70e2de362b5c4070f6df01.png b/train/pictures/28ed04608e70e2de362b5c4070f6df01.png new file mode 100644 index 0000000..d03d666 Binary files /dev/null and b/train/pictures/28ed04608e70e2de362b5c4070f6df01.png differ diff --git a/train/pictures/298efbed5483c54a359af23dbe3c8485.png b/train/pictures/298efbed5483c54a359af23dbe3c8485.png new file mode 100644 index 0000000..5e0b0c0 Binary files /dev/null and b/train/pictures/298efbed5483c54a359af23dbe3c8485.png differ diff --git a/train/pictures/29cf9da70478e2a86c09b02640855a65.png b/train/pictures/29cf9da70478e2a86c09b02640855a65.png new file mode 100644 index 0000000..0814cd3 Binary files /dev/null and b/train/pictures/29cf9da70478e2a86c09b02640855a65.png differ diff --git a/train/pictures/29d86f4c724559cb45cfbc163012000f.png b/train/pictures/29d86f4c724559cb45cfbc163012000f.png new file mode 100644 index 0000000..a4a407e Binary files /dev/null and b/train/pictures/29d86f4c724559cb45cfbc163012000f.png differ diff --git a/train/pictures/29eacd8a767af65a49b544a850da14a6.png b/train/pictures/29eacd8a767af65a49b544a850da14a6.png new file mode 100644 index 0000000..a50515c Binary files /dev/null and b/train/pictures/29eacd8a767af65a49b544a850da14a6.png differ diff --git a/train/pictures/2a2936236c88ab220ce617a1650fdf52.png b/train/pictures/2a2936236c88ab220ce617a1650fdf52.png new file mode 100644 index 0000000..ab56a3e Binary files /dev/null and b/train/pictures/2a2936236c88ab220ce617a1650fdf52.png differ diff --git a/train/pictures/2a378b9e3492f3a9807afe16f219dd0c.png b/train/pictures/2a378b9e3492f3a9807afe16f219dd0c.png new file mode 100644 index 0000000..3afe026 Binary files /dev/null and b/train/pictures/2a378b9e3492f3a9807afe16f219dd0c.png differ diff --git a/train/pictures/2a56ae4ca660d09d023f193c7d1dc7fc.png b/train/pictures/2a56ae4ca660d09d023f193c7d1dc7fc.png new file mode 100644 index 0000000..14914c8 Binary files /dev/null and b/train/pictures/2a56ae4ca660d09d023f193c7d1dc7fc.png differ diff --git a/train/pictures/2a5b1c0c12d3cf17b5bdd894f56263f8.png b/train/pictures/2a5b1c0c12d3cf17b5bdd894f56263f8.png new file mode 100644 index 0000000..a890de1 Binary files /dev/null and b/train/pictures/2a5b1c0c12d3cf17b5bdd894f56263f8.png differ diff --git a/train/pictures/2ada32b270ac105a1689d3bd9c9f48a2.png b/train/pictures/2ada32b270ac105a1689d3bd9c9f48a2.png new file mode 100644 index 0000000..a14deba Binary files /dev/null and b/train/pictures/2ada32b270ac105a1689d3bd9c9f48a2.png differ diff --git a/train/pictures/2b0f7b306ac4a65f1852e0fde6e117fa.png b/train/pictures/2b0f7b306ac4a65f1852e0fde6e117fa.png new file mode 100644 index 0000000..52452e1 Binary files /dev/null and b/train/pictures/2b0f7b306ac4a65f1852e0fde6e117fa.png differ diff --git a/train/pictures/2b241ce728e2024e404d4c3a087c77e6.png b/train/pictures/2b241ce728e2024e404d4c3a087c77e6.png new file mode 100644 index 0000000..1ff54ec Binary files /dev/null and b/train/pictures/2b241ce728e2024e404d4c3a087c77e6.png differ diff --git a/train/pictures/2b2868319e2f9d1f499eda303dbadb5a.png b/train/pictures/2b2868319e2f9d1f499eda303dbadb5a.png new file mode 100644 index 0000000..87ea69a Binary files /dev/null and b/train/pictures/2b2868319e2f9d1f499eda303dbadb5a.png differ diff --git a/train/pictures/2b6300ea20e5e4fcaebb23e0002de34a.png b/train/pictures/2b6300ea20e5e4fcaebb23e0002de34a.png new file mode 100644 index 0000000..3c4f11a Binary files /dev/null and b/train/pictures/2b6300ea20e5e4fcaebb23e0002de34a.png differ diff --git a/train/pictures/2bc60070faaf4af537ebd4178cba4c74.png b/train/pictures/2bc60070faaf4af537ebd4178cba4c74.png new file mode 100644 index 0000000..3fb31f9 Binary files /dev/null and b/train/pictures/2bc60070faaf4af537ebd4178cba4c74.png differ diff --git a/train/pictures/2bfe283ec1bacac7cf7c534f7382d324.png b/train/pictures/2bfe283ec1bacac7cf7c534f7382d324.png new file mode 100644 index 0000000..68094d3 Binary files /dev/null and b/train/pictures/2bfe283ec1bacac7cf7c534f7382d324.png differ diff --git a/train/pictures/2c484dd9278722ab9ecc17b36190d8f5.png b/train/pictures/2c484dd9278722ab9ecc17b36190d8f5.png new file mode 100644 index 0000000..18de9ea Binary files /dev/null and b/train/pictures/2c484dd9278722ab9ecc17b36190d8f5.png differ diff --git a/train/pictures/2c52d06b7c9c91e55964a6fcd33403e5.png b/train/pictures/2c52d06b7c9c91e55964a6fcd33403e5.png new file mode 100644 index 0000000..1eb61af Binary files /dev/null and b/train/pictures/2c52d06b7c9c91e55964a6fcd33403e5.png differ diff --git a/train/pictures/2c93a1db9244cb9600ce9c95aa8b4e57.png b/train/pictures/2c93a1db9244cb9600ce9c95aa8b4e57.png new file mode 100644 index 0000000..eaea041 Binary files /dev/null and b/train/pictures/2c93a1db9244cb9600ce9c95aa8b4e57.png differ diff --git a/train/pictures/2ca9391ee242f0d474149d688eb837ca.png b/train/pictures/2ca9391ee242f0d474149d688eb837ca.png new file mode 100644 index 0000000..f661234 Binary files /dev/null and b/train/pictures/2ca9391ee242f0d474149d688eb837ca.png differ diff --git a/train/pictures/2cfe68eef69de6b963ff2ab06e2df894.png b/train/pictures/2cfe68eef69de6b963ff2ab06e2df894.png new file mode 100644 index 0000000..fc40b5a Binary files /dev/null and b/train/pictures/2cfe68eef69de6b963ff2ab06e2df894.png differ diff --git a/train/pictures/2d6c27e1d5779da6d918521fe7b722c4.png b/train/pictures/2d6c27e1d5779da6d918521fe7b722c4.png new file mode 100644 index 0000000..ea845c0 Binary files /dev/null and b/train/pictures/2d6c27e1d5779da6d918521fe7b722c4.png differ diff --git a/train/pictures/2ddd865df04bcb4e316fbcc9dabd0dfc.png b/train/pictures/2ddd865df04bcb4e316fbcc9dabd0dfc.png new file mode 100644 index 0000000..8902328 Binary files /dev/null and b/train/pictures/2ddd865df04bcb4e316fbcc9dabd0dfc.png differ diff --git a/train/pictures/2df37afc9264a2ab078363204382cefd.png b/train/pictures/2df37afc9264a2ab078363204382cefd.png new file mode 100644 index 0000000..22d83ad Binary files /dev/null and b/train/pictures/2df37afc9264a2ab078363204382cefd.png differ diff --git a/train/pictures/2e72dda3c2f56198c7e37a94d09022c7.png b/train/pictures/2e72dda3c2f56198c7e37a94d09022c7.png new file mode 100644 index 0000000..323c2cb Binary files /dev/null and b/train/pictures/2e72dda3c2f56198c7e37a94d09022c7.png differ diff --git a/train/pictures/2f0c70324a661f6ae014136422625adb.png b/train/pictures/2f0c70324a661f6ae014136422625adb.png new file mode 100644 index 0000000..131e4ad Binary files /dev/null and b/train/pictures/2f0c70324a661f6ae014136422625adb.png differ diff --git a/train/pictures/2f7129a198927dbb701d191fc622168b.png b/train/pictures/2f7129a198927dbb701d191fc622168b.png new file mode 100644 index 0000000..d0104ae Binary files /dev/null and b/train/pictures/2f7129a198927dbb701d191fc622168b.png differ diff --git a/train/pictures/2f79089135feeddf73b711115e40d7ce.png b/train/pictures/2f79089135feeddf73b711115e40d7ce.png new file mode 100644 index 0000000..39518b2 Binary files /dev/null and b/train/pictures/2f79089135feeddf73b711115e40d7ce.png differ diff --git a/train/pictures/2f91f1dd92ac80484ffdac543929ed4f.png b/train/pictures/2f91f1dd92ac80484ffdac543929ed4f.png new file mode 100644 index 0000000..fd5b3f3 Binary files /dev/null and b/train/pictures/2f91f1dd92ac80484ffdac543929ed4f.png differ diff --git a/train/pictures/2fad1ceb59b3953ae85da5a805e6aca7.png b/train/pictures/2fad1ceb59b3953ae85da5a805e6aca7.png new file mode 100644 index 0000000..dd6f037 Binary files /dev/null and b/train/pictures/2fad1ceb59b3953ae85da5a805e6aca7.png differ diff --git a/train/pictures/30690138091ea3ea5b44a8976bfe4b4d.png b/train/pictures/30690138091ea3ea5b44a8976bfe4b4d.png new file mode 100644 index 0000000..6e80f65 Binary files /dev/null and b/train/pictures/30690138091ea3ea5b44a8976bfe4b4d.png differ diff --git a/train/pictures/3077b6394cbc1eb409e21e18ad37b32a.png b/train/pictures/3077b6394cbc1eb409e21e18ad37b32a.png new file mode 100644 index 0000000..448ebf2 Binary files /dev/null and b/train/pictures/3077b6394cbc1eb409e21e18ad37b32a.png differ diff --git a/train/pictures/30a221e776af51449ff791334d3ecad2.png b/train/pictures/30a221e776af51449ff791334d3ecad2.png new file mode 100644 index 0000000..84f750f Binary files /dev/null and b/train/pictures/30a221e776af51449ff791334d3ecad2.png differ diff --git a/train/pictures/3149efad0ce3fef1b555ae200cfc3340.png b/train/pictures/3149efad0ce3fef1b555ae200cfc3340.png new file mode 100644 index 0000000..43a7949 Binary files /dev/null and b/train/pictures/3149efad0ce3fef1b555ae200cfc3340.png differ diff --git a/train/pictures/317694e0616feae716fe506a52ded544.png b/train/pictures/317694e0616feae716fe506a52ded544.png new file mode 100644 index 0000000..c66df4c Binary files /dev/null and b/train/pictures/317694e0616feae716fe506a52ded544.png differ diff --git a/train/pictures/32024f784424536c02980fb27c1aaec5.png b/train/pictures/32024f784424536c02980fb27c1aaec5.png new file mode 100644 index 0000000..34a0172 Binary files /dev/null and b/train/pictures/32024f784424536c02980fb27c1aaec5.png differ diff --git a/train/pictures/3225ab9f9a86ad23e7f7f1c8b5209f5c.png b/train/pictures/3225ab9f9a86ad23e7f7f1c8b5209f5c.png new file mode 100644 index 0000000..682d9a5 Binary files /dev/null and b/train/pictures/3225ab9f9a86ad23e7f7f1c8b5209f5c.png differ diff --git a/train/pictures/322bedb965ef4f6716598c14feaa029d.png b/train/pictures/322bedb965ef4f6716598c14feaa029d.png new file mode 100644 index 0000000..a0f070f Binary files /dev/null and b/train/pictures/322bedb965ef4f6716598c14feaa029d.png differ diff --git a/train/pictures/327482125a4a4c09a4a5837a112e6568.png b/train/pictures/327482125a4a4c09a4a5837a112e6568.png new file mode 100644 index 0000000..c45552b Binary files /dev/null and b/train/pictures/327482125a4a4c09a4a5837a112e6568.png differ diff --git a/train/pictures/32ad122addcf0e8110fa6f324c33bc22.png b/train/pictures/32ad122addcf0e8110fa6f324c33bc22.png new file mode 100644 index 0000000..c8bf807 Binary files /dev/null and b/train/pictures/32ad122addcf0e8110fa6f324c33bc22.png differ diff --git a/train/pictures/32be66297d20eb202caa92e7505556ce.png b/train/pictures/32be66297d20eb202caa92e7505556ce.png new file mode 100644 index 0000000..ae7b788 Binary files /dev/null and b/train/pictures/32be66297d20eb202caa92e7505556ce.png differ diff --git a/train/pictures/32eba886bd229621f04cc17221f20e7b.png b/train/pictures/32eba886bd229621f04cc17221f20e7b.png new file mode 100644 index 0000000..6ef8115 Binary files /dev/null and b/train/pictures/32eba886bd229621f04cc17221f20e7b.png differ diff --git a/train/pictures/3302f97e5acf24901bd1f6806bbbbff3.png b/train/pictures/3302f97e5acf24901bd1f6806bbbbff3.png new file mode 100644 index 0000000..ce7f0be Binary files /dev/null and b/train/pictures/3302f97e5acf24901bd1f6806bbbbff3.png differ diff --git a/train/pictures/338e9df09212be4fd2bbaa8246d9c74b.png b/train/pictures/338e9df09212be4fd2bbaa8246d9c74b.png new file mode 100644 index 0000000..80fa795 Binary files /dev/null and b/train/pictures/338e9df09212be4fd2bbaa8246d9c74b.png differ diff --git a/train/pictures/34185f47636b156e93974e537b265fc7.png b/train/pictures/34185f47636b156e93974e537b265fc7.png new file mode 100644 index 0000000..2bcaa67 Binary files /dev/null and b/train/pictures/34185f47636b156e93974e537b265fc7.png differ diff --git a/train/pictures/3425c99242fd5ffc6d694b44c1a9c5d0.png b/train/pictures/3425c99242fd5ffc6d694b44c1a9c5d0.png new file mode 100644 index 0000000..9418472 Binary files /dev/null and b/train/pictures/3425c99242fd5ffc6d694b44c1a9c5d0.png differ diff --git a/train/pictures/345a0f8cb79c6a3023e730360c8dc1be.png b/train/pictures/345a0f8cb79c6a3023e730360c8dc1be.png new file mode 100644 index 0000000..b24949a Binary files /dev/null and b/train/pictures/345a0f8cb79c6a3023e730360c8dc1be.png differ diff --git a/train/pictures/354225177825c34b1d92a577bce2d22a.png b/train/pictures/354225177825c34b1d92a577bce2d22a.png new file mode 100644 index 0000000..8583c55 Binary files /dev/null and b/train/pictures/354225177825c34b1d92a577bce2d22a.png differ diff --git a/train/pictures/356c8bf70e8e5288c67a6fbe9bab92da.png b/train/pictures/356c8bf70e8e5288c67a6fbe9bab92da.png new file mode 100644 index 0000000..e0821d4 Binary files /dev/null and b/train/pictures/356c8bf70e8e5288c67a6fbe9bab92da.png differ diff --git a/train/pictures/35f9d32e0eead4b88b0cafdec66df8c4.png b/train/pictures/35f9d32e0eead4b88b0cafdec66df8c4.png new file mode 100644 index 0000000..1de913c Binary files /dev/null and b/train/pictures/35f9d32e0eead4b88b0cafdec66df8c4.png differ diff --git a/train/pictures/35fcacd183a05c2f28edb37e68211a2c.png b/train/pictures/35fcacd183a05c2f28edb37e68211a2c.png new file mode 100644 index 0000000..9f49807 Binary files /dev/null and b/train/pictures/35fcacd183a05c2f28edb37e68211a2c.png differ diff --git a/train/pictures/365e97eb1afcb27ce0c2d63ae647fe0f.png b/train/pictures/365e97eb1afcb27ce0c2d63ae647fe0f.png new file mode 100644 index 0000000..9016cc2 Binary files /dev/null and b/train/pictures/365e97eb1afcb27ce0c2d63ae647fe0f.png differ diff --git a/train/pictures/36d652608c29b3cec5cfc3aa9366b3ee.png b/train/pictures/36d652608c29b3cec5cfc3aa9366b3ee.png new file mode 100644 index 0000000..1afae3b Binary files /dev/null and b/train/pictures/36d652608c29b3cec5cfc3aa9366b3ee.png differ diff --git a/train/pictures/379fd09490a2a6a4b6cf62173b1a8172.png b/train/pictures/379fd09490a2a6a4b6cf62173b1a8172.png new file mode 100644 index 0000000..9215a3f Binary files /dev/null and b/train/pictures/379fd09490a2a6a4b6cf62173b1a8172.png differ diff --git a/train/pictures/38730716bc23b35c90de528e638972ac.png b/train/pictures/38730716bc23b35c90de528e638972ac.png new file mode 100644 index 0000000..3c6e31a Binary files /dev/null and b/train/pictures/38730716bc23b35c90de528e638972ac.png differ diff --git a/train/pictures/3967dab5ddb635fdb6b34aae6ae276df.png b/train/pictures/3967dab5ddb635fdb6b34aae6ae276df.png new file mode 100644 index 0000000..9455827 Binary files /dev/null and b/train/pictures/3967dab5ddb635fdb6b34aae6ae276df.png differ diff --git a/train/pictures/39d80739db1a18295d393b02e7f6866a.png b/train/pictures/39d80739db1a18295d393b02e7f6866a.png new file mode 100644 index 0000000..effbf0c Binary files /dev/null and b/train/pictures/39d80739db1a18295d393b02e7f6866a.png differ diff --git a/train/pictures/3b422c67a441e9c17c599616b6e67529.png b/train/pictures/3b422c67a441e9c17c599616b6e67529.png new file mode 100644 index 0000000..68356cf Binary files /dev/null and b/train/pictures/3b422c67a441e9c17c599616b6e67529.png differ diff --git a/train/pictures/3b4e51f46c5fcbd35ca8898becad77bc.png b/train/pictures/3b4e51f46c5fcbd35ca8898becad77bc.png new file mode 100644 index 0000000..6539329 Binary files /dev/null and b/train/pictures/3b4e51f46c5fcbd35ca8898becad77bc.png differ diff --git a/train/pictures/3c317a2a1d798e78db26830e5d9cbeef.png b/train/pictures/3c317a2a1d798e78db26830e5d9cbeef.png new file mode 100644 index 0000000..1cf0e38 Binary files /dev/null and b/train/pictures/3c317a2a1d798e78db26830e5d9cbeef.png differ diff --git a/train/pictures/3c6cf016cb828accc63630395ba99b6a.png b/train/pictures/3c6cf016cb828accc63630395ba99b6a.png new file mode 100644 index 0000000..fb6137c Binary files /dev/null and b/train/pictures/3c6cf016cb828accc63630395ba99b6a.png differ diff --git a/train/pictures/3c6d80c5dec09258ff0fc5072f2041df.png b/train/pictures/3c6d80c5dec09258ff0fc5072f2041df.png new file mode 100644 index 0000000..c598c3a Binary files /dev/null and b/train/pictures/3c6d80c5dec09258ff0fc5072f2041df.png differ diff --git a/train/pictures/3c7a358848b946f4b2e084369dcfae37.png b/train/pictures/3c7a358848b946f4b2e084369dcfae37.png new file mode 100644 index 0000000..e0476a7 Binary files /dev/null and b/train/pictures/3c7a358848b946f4b2e084369dcfae37.png differ diff --git a/train/pictures/3cbcf8f9f5db4e6435445042320bea17.png b/train/pictures/3cbcf8f9f5db4e6435445042320bea17.png new file mode 100644 index 0000000..d21c1d2 Binary files /dev/null and b/train/pictures/3cbcf8f9f5db4e6435445042320bea17.png differ diff --git a/train/pictures/3cc17e640090c53b46bd22299ed1b018.png b/train/pictures/3cc17e640090c53b46bd22299ed1b018.png new file mode 100644 index 0000000..6e91941 Binary files /dev/null and b/train/pictures/3cc17e640090c53b46bd22299ed1b018.png differ diff --git a/train/pictures/3cef7af00e039be681a9d7fa009bc74b.png b/train/pictures/3cef7af00e039be681a9d7fa009bc74b.png new file mode 100644 index 0000000..c04f088 Binary files /dev/null and b/train/pictures/3cef7af00e039be681a9d7fa009bc74b.png differ diff --git a/train/pictures/3dbc667c76cb99f268939d08b1224bcf.png b/train/pictures/3dbc667c76cb99f268939d08b1224bcf.png new file mode 100644 index 0000000..32e2e7b Binary files /dev/null and b/train/pictures/3dbc667c76cb99f268939d08b1224bcf.png differ diff --git a/train/pictures/3e665581abd7fe72467592d1832051ca.png b/train/pictures/3e665581abd7fe72467592d1832051ca.png new file mode 100644 index 0000000..8bb8b38 Binary files /dev/null and b/train/pictures/3e665581abd7fe72467592d1832051ca.png differ diff --git a/train/pictures/3e724dbcca13a2492c1b975607c14d59.png b/train/pictures/3e724dbcca13a2492c1b975607c14d59.png new file mode 100644 index 0000000..a4812c6 Binary files /dev/null and b/train/pictures/3e724dbcca13a2492c1b975607c14d59.png differ diff --git a/train/pictures/3e9deea8e326e2e462e9a4f488d93447.png b/train/pictures/3e9deea8e326e2e462e9a4f488d93447.png new file mode 100644 index 0000000..4c20e10 Binary files /dev/null and b/train/pictures/3e9deea8e326e2e462e9a4f488d93447.png differ diff --git a/train/pictures/3e9f1577f5c0c0b04d680ed30abefa8d.png b/train/pictures/3e9f1577f5c0c0b04d680ed30abefa8d.png new file mode 100644 index 0000000..622b1bb Binary files /dev/null and b/train/pictures/3e9f1577f5c0c0b04d680ed30abefa8d.png differ diff --git a/train/pictures/3eab4d590421f6016fd0e090349ba8b6.png b/train/pictures/3eab4d590421f6016fd0e090349ba8b6.png new file mode 100644 index 0000000..e5a369c Binary files /dev/null and b/train/pictures/3eab4d590421f6016fd0e090349ba8b6.png differ diff --git a/train/pictures/3ecb60658b7be094e6a77ebda409fc2a.png b/train/pictures/3ecb60658b7be094e6a77ebda409fc2a.png new file mode 100644 index 0000000..e901f27 Binary files /dev/null and b/train/pictures/3ecb60658b7be094e6a77ebda409fc2a.png differ diff --git a/train/pictures/3efcb457c544d9755683e14ed0268afa.png b/train/pictures/3efcb457c544d9755683e14ed0268afa.png new file mode 100644 index 0000000..3e6d1f7 Binary files /dev/null and b/train/pictures/3efcb457c544d9755683e14ed0268afa.png differ diff --git a/train/pictures/3f080eef3922cc5ab219aa9a78053d24.png b/train/pictures/3f080eef3922cc5ab219aa9a78053d24.png new file mode 100644 index 0000000..6d1cd93 Binary files /dev/null and b/train/pictures/3f080eef3922cc5ab219aa9a78053d24.png differ diff --git a/train/pictures/4012669ef1d79756740b2bf22560b695.png b/train/pictures/4012669ef1d79756740b2bf22560b695.png new file mode 100644 index 0000000..1f23d10 Binary files /dev/null and b/train/pictures/4012669ef1d79756740b2bf22560b695.png differ diff --git a/train/pictures/402e8b69f6ce4e1f861217396c22d26b.png b/train/pictures/402e8b69f6ce4e1f861217396c22d26b.png new file mode 100644 index 0000000..e22e081 Binary files /dev/null and b/train/pictures/402e8b69f6ce4e1f861217396c22d26b.png differ diff --git a/train/pictures/4059a949a4930e5e4734f543e51157d0.png b/train/pictures/4059a949a4930e5e4734f543e51157d0.png new file mode 100644 index 0000000..bed8051 Binary files /dev/null and b/train/pictures/4059a949a4930e5e4734f543e51157d0.png differ diff --git a/train/pictures/4064de1577544a1fd5158e912efe085e.png b/train/pictures/4064de1577544a1fd5158e912efe085e.png new file mode 100644 index 0000000..9181c02 Binary files /dev/null and b/train/pictures/4064de1577544a1fd5158e912efe085e.png differ diff --git a/train/pictures/408639fcde1face8689635786c68e5ca.png b/train/pictures/408639fcde1face8689635786c68e5ca.png new file mode 100644 index 0000000..39106b3 Binary files /dev/null and b/train/pictures/408639fcde1face8689635786c68e5ca.png differ diff --git a/train/pictures/41883568aef683a2ce79dbb141142792.png b/train/pictures/41883568aef683a2ce79dbb141142792.png new file mode 100644 index 0000000..95b5a43 Binary files /dev/null and b/train/pictures/41883568aef683a2ce79dbb141142792.png differ diff --git a/train/pictures/41952e6b073aff5f16baf49ef1a8580e.png b/train/pictures/41952e6b073aff5f16baf49ef1a8580e.png new file mode 100644 index 0000000..ef9cb1c Binary files /dev/null and b/train/pictures/41952e6b073aff5f16baf49ef1a8580e.png differ diff --git a/train/pictures/41bf5b04fc8fc65d0cdf775f3539eb59.png b/train/pictures/41bf5b04fc8fc65d0cdf775f3539eb59.png new file mode 100644 index 0000000..2fcf8c1 Binary files /dev/null and b/train/pictures/41bf5b04fc8fc65d0cdf775f3539eb59.png differ diff --git a/train/pictures/424103a9dbf1695f256e7dc3be63052b.png b/train/pictures/424103a9dbf1695f256e7dc3be63052b.png new file mode 100644 index 0000000..2980356 Binary files /dev/null and b/train/pictures/424103a9dbf1695f256e7dc3be63052b.png differ diff --git a/train/pictures/43bd32815ca5c260f9ebff9676a95863.png b/train/pictures/43bd32815ca5c260f9ebff9676a95863.png new file mode 100644 index 0000000..f710ba4 Binary files /dev/null and b/train/pictures/43bd32815ca5c260f9ebff9676a95863.png differ diff --git a/train/pictures/43c3124cbd1b4cc8e03f35f89c91677e.png b/train/pictures/43c3124cbd1b4cc8e03f35f89c91677e.png new file mode 100644 index 0000000..fc7214c Binary files /dev/null and b/train/pictures/43c3124cbd1b4cc8e03f35f89c91677e.png differ diff --git a/train/pictures/4459982606f31b0f0c5bdd9c71dbee6b.png b/train/pictures/4459982606f31b0f0c5bdd9c71dbee6b.png new file mode 100644 index 0000000..97a2c88 Binary files /dev/null and b/train/pictures/4459982606f31b0f0c5bdd9c71dbee6b.png differ diff --git a/train/pictures/447f59107c98d554c353efc965f9ce3e.png b/train/pictures/447f59107c98d554c353efc965f9ce3e.png new file mode 100644 index 0000000..be83cf4 Binary files /dev/null and b/train/pictures/447f59107c98d554c353efc965f9ce3e.png differ diff --git a/train/pictures/448f7f99aad5d01e2f590452d4df384d.png b/train/pictures/448f7f99aad5d01e2f590452d4df384d.png new file mode 100644 index 0000000..7e12ea4 Binary files /dev/null and b/train/pictures/448f7f99aad5d01e2f590452d4df384d.png differ diff --git a/train/pictures/45fea39610b215ddac86d3b1bcea256f.png b/train/pictures/45fea39610b215ddac86d3b1bcea256f.png new file mode 100644 index 0000000..287d3c3 Binary files /dev/null and b/train/pictures/45fea39610b215ddac86d3b1bcea256f.png differ diff --git a/train/pictures/46e34fbea900e7cd0ce9acf3cc68bf55.png b/train/pictures/46e34fbea900e7cd0ce9acf3cc68bf55.png new file mode 100644 index 0000000..c5ec939 Binary files /dev/null and b/train/pictures/46e34fbea900e7cd0ce9acf3cc68bf55.png differ diff --git a/train/pictures/47404e966698155b935579de55af0d25.png b/train/pictures/47404e966698155b935579de55af0d25.png new file mode 100644 index 0000000..ec65a48 Binary files /dev/null and b/train/pictures/47404e966698155b935579de55af0d25.png differ diff --git a/train/pictures/48233ddd9da3b47596b36995c51a9b3c.png b/train/pictures/48233ddd9da3b47596b36995c51a9b3c.png new file mode 100644 index 0000000..1817f75 Binary files /dev/null and b/train/pictures/48233ddd9da3b47596b36995c51a9b3c.png differ diff --git a/train/pictures/488f679a2060f9629db7c03d89f51ac3.png b/train/pictures/488f679a2060f9629db7c03d89f51ac3.png new file mode 100644 index 0000000..5cdcb4f Binary files /dev/null and b/train/pictures/488f679a2060f9629db7c03d89f51ac3.png differ diff --git a/train/pictures/48d0f06752f9ab8d205131a516792202.png b/train/pictures/48d0f06752f9ab8d205131a516792202.png new file mode 100644 index 0000000..d896f49 Binary files /dev/null and b/train/pictures/48d0f06752f9ab8d205131a516792202.png differ diff --git a/train/pictures/49223299bf1d8c61cbced0a3cbcda136.png b/train/pictures/49223299bf1d8c61cbced0a3cbcda136.png new file mode 100644 index 0000000..ef4beef Binary files /dev/null and b/train/pictures/49223299bf1d8c61cbced0a3cbcda136.png differ diff --git a/train/pictures/49311a0e431eed098a2c86fcabec5075.png b/train/pictures/49311a0e431eed098a2c86fcabec5075.png new file mode 100644 index 0000000..d9b2fde Binary files /dev/null and b/train/pictures/49311a0e431eed098a2c86fcabec5075.png differ diff --git a/train/pictures/494403a796127c106ade43dc13d31d6f.png b/train/pictures/494403a796127c106ade43dc13d31d6f.png new file mode 100644 index 0000000..cd67d91 Binary files /dev/null and b/train/pictures/494403a796127c106ade43dc13d31d6f.png differ diff --git a/train/pictures/4a172106db47f8cf929175c477778d38.png b/train/pictures/4a172106db47f8cf929175c477778d38.png new file mode 100644 index 0000000..943f57a Binary files /dev/null and b/train/pictures/4a172106db47f8cf929175c477778d38.png differ diff --git a/train/pictures/4a992354db2774e5d37e0cd589e7eda8.png b/train/pictures/4a992354db2774e5d37e0cd589e7eda8.png new file mode 100644 index 0000000..fab2401 Binary files /dev/null and b/train/pictures/4a992354db2774e5d37e0cd589e7eda8.png differ diff --git a/train/pictures/4aa8827c81cb46f47c50976864de72ca.png b/train/pictures/4aa8827c81cb46f47c50976864de72ca.png new file mode 100644 index 0000000..53e5258 Binary files /dev/null and b/train/pictures/4aa8827c81cb46f47c50976864de72ca.png differ diff --git a/train/pictures/4b7e32bdbbdcfe16e8973b158f1729cf.png b/train/pictures/4b7e32bdbbdcfe16e8973b158f1729cf.png new file mode 100644 index 0000000..f1adf4b Binary files /dev/null and b/train/pictures/4b7e32bdbbdcfe16e8973b158f1729cf.png differ diff --git a/train/pictures/4c1cf6ef20d89f0afd586a53de2a56f3.png b/train/pictures/4c1cf6ef20d89f0afd586a53de2a56f3.png new file mode 100644 index 0000000..420b324 Binary files /dev/null and b/train/pictures/4c1cf6ef20d89f0afd586a53de2a56f3.png differ diff --git a/train/pictures/4c985b99734533afe64442eaaee15de3.png b/train/pictures/4c985b99734533afe64442eaaee15de3.png new file mode 100644 index 0000000..9237090 Binary files /dev/null and b/train/pictures/4c985b99734533afe64442eaaee15de3.png differ diff --git a/train/pictures/4d21245528fad1999f2a35a4cce96b85.png b/train/pictures/4d21245528fad1999f2a35a4cce96b85.png new file mode 100644 index 0000000..b4d0dda Binary files /dev/null and b/train/pictures/4d21245528fad1999f2a35a4cce96b85.png differ diff --git a/train/pictures/4d340bbf21cd112209cd1cbb3d320d28.png b/train/pictures/4d340bbf21cd112209cd1cbb3d320d28.png new file mode 100644 index 0000000..2a269a1 Binary files /dev/null and b/train/pictures/4d340bbf21cd112209cd1cbb3d320d28.png differ diff --git a/train/pictures/4d56ee1aa03c5e7db7107736e20140e8.png b/train/pictures/4d56ee1aa03c5e7db7107736e20140e8.png new file mode 100644 index 0000000..1310fd6 Binary files /dev/null and b/train/pictures/4d56ee1aa03c5e7db7107736e20140e8.png differ diff --git a/train/pictures/4d67cddb3c2f581d2db23cbb425bd232.png b/train/pictures/4d67cddb3c2f581d2db23cbb425bd232.png new file mode 100644 index 0000000..cad03f7 Binary files /dev/null and b/train/pictures/4d67cddb3c2f581d2db23cbb425bd232.png differ diff --git a/train/pictures/4db59e672b2798363b0625cd0623e655.png b/train/pictures/4db59e672b2798363b0625cd0623e655.png new file mode 100644 index 0000000..f245e1a Binary files /dev/null and b/train/pictures/4db59e672b2798363b0625cd0623e655.png differ diff --git a/train/pictures/4de6a4885128b0ef82366441b7965e7d.png b/train/pictures/4de6a4885128b0ef82366441b7965e7d.png new file mode 100644 index 0000000..f0b7c7a Binary files /dev/null and b/train/pictures/4de6a4885128b0ef82366441b7965e7d.png differ diff --git a/train/pictures/4e3c0916c3aeb061c5c2add0c58314cc.png b/train/pictures/4e3c0916c3aeb061c5c2add0c58314cc.png new file mode 100644 index 0000000..de4744a Binary files /dev/null and b/train/pictures/4e3c0916c3aeb061c5c2add0c58314cc.png differ diff --git a/train/pictures/4e4af0d6757f1b7b5e06adf92bec5470.png b/train/pictures/4e4af0d6757f1b7b5e06adf92bec5470.png new file mode 100644 index 0000000..81f72d5 Binary files /dev/null and b/train/pictures/4e4af0d6757f1b7b5e06adf92bec5470.png differ diff --git a/train/pictures/4e97ae684a3aa347e04e51f0a1495071.png b/train/pictures/4e97ae684a3aa347e04e51f0a1495071.png new file mode 100644 index 0000000..c379518 Binary files /dev/null and b/train/pictures/4e97ae684a3aa347e04e51f0a1495071.png differ diff --git a/train/pictures/4f313d3498b80c9d695aa508682db882.png b/train/pictures/4f313d3498b80c9d695aa508682db882.png new file mode 100644 index 0000000..2649c75 Binary files /dev/null and b/train/pictures/4f313d3498b80c9d695aa508682db882.png differ diff --git a/train/pictures/4f55c86b92ed28b076d21b925a1e59b9.png b/train/pictures/4f55c86b92ed28b076d21b925a1e59b9.png new file mode 100644 index 0000000..58c3e4a Binary files /dev/null and b/train/pictures/4f55c86b92ed28b076d21b925a1e59b9.png differ diff --git a/train/pictures/4fabe8fa06883f28286efdb2092e4a8e.png b/train/pictures/4fabe8fa06883f28286efdb2092e4a8e.png new file mode 100644 index 0000000..eeb89db Binary files /dev/null and b/train/pictures/4fabe8fa06883f28286efdb2092e4a8e.png differ diff --git a/train/pictures/4fbddb921d192889e57dae24bc09abc5.png b/train/pictures/4fbddb921d192889e57dae24bc09abc5.png new file mode 100644 index 0000000..33e0fad Binary files /dev/null and b/train/pictures/4fbddb921d192889e57dae24bc09abc5.png differ diff --git a/train/pictures/4fe14938bf199ab7b3bdc4cc785edcc8.png b/train/pictures/4fe14938bf199ab7b3bdc4cc785edcc8.png new file mode 100644 index 0000000..27e0f28 Binary files /dev/null and b/train/pictures/4fe14938bf199ab7b3bdc4cc785edcc8.png differ diff --git a/train/pictures/504a34bcdcde2f4b6ed346fe2969148a.png b/train/pictures/504a34bcdcde2f4b6ed346fe2969148a.png new file mode 100644 index 0000000..540ee0c Binary files /dev/null and b/train/pictures/504a34bcdcde2f4b6ed346fe2969148a.png differ diff --git a/train/pictures/50e005f9bf4095fe7f5ac7d3561bdfb9.png b/train/pictures/50e005f9bf4095fe7f5ac7d3561bdfb9.png new file mode 100644 index 0000000..c283f62 Binary files /dev/null and b/train/pictures/50e005f9bf4095fe7f5ac7d3561bdfb9.png differ diff --git a/train/pictures/50e26816670d20e8507c0b932e06ed6e.png b/train/pictures/50e26816670d20e8507c0b932e06ed6e.png new file mode 100644 index 0000000..a0abdfc Binary files /dev/null and b/train/pictures/50e26816670d20e8507c0b932e06ed6e.png differ diff --git a/train/pictures/515ef78a38691dc05036b349fd5f95d3.png b/train/pictures/515ef78a38691dc05036b349fd5f95d3.png new file mode 100644 index 0000000..c3c56cc Binary files /dev/null and b/train/pictures/515ef78a38691dc05036b349fd5f95d3.png differ diff --git a/train/pictures/5166ad5856fdd3622fe9e581395ad94e.png b/train/pictures/5166ad5856fdd3622fe9e581395ad94e.png new file mode 100644 index 0000000..27216d8 Binary files /dev/null and b/train/pictures/5166ad5856fdd3622fe9e581395ad94e.png differ diff --git a/train/pictures/518e3b22fba44066ffc6c43fdc6c57c9.png b/train/pictures/518e3b22fba44066ffc6c43fdc6c57c9.png new file mode 100644 index 0000000..76f05c2 Binary files /dev/null and b/train/pictures/518e3b22fba44066ffc6c43fdc6c57c9.png differ diff --git a/train/pictures/51ccb8059f327147f2b044ea834d2e17.png b/train/pictures/51ccb8059f327147f2b044ea834d2e17.png new file mode 100644 index 0000000..47e47b5 Binary files /dev/null and b/train/pictures/51ccb8059f327147f2b044ea834d2e17.png differ diff --git a/train/pictures/5229a14d4a2ba6ee913b277b7b930ec9.png b/train/pictures/5229a14d4a2ba6ee913b277b7b930ec9.png new file mode 100644 index 0000000..b547d8e Binary files /dev/null and b/train/pictures/5229a14d4a2ba6ee913b277b7b930ec9.png differ diff --git a/train/pictures/526c970c798a15b9e3d3ac040445c4ca.png b/train/pictures/526c970c798a15b9e3d3ac040445c4ca.png new file mode 100644 index 0000000..a546dcb Binary files /dev/null and b/train/pictures/526c970c798a15b9e3d3ac040445c4ca.png differ diff --git a/train/pictures/528ce99f1732386b38f6ca2417cfead2.png b/train/pictures/528ce99f1732386b38f6ca2417cfead2.png new file mode 100644 index 0000000..61e54ed Binary files /dev/null and b/train/pictures/528ce99f1732386b38f6ca2417cfead2.png differ diff --git a/train/pictures/529766cb26f678aaf25cfb41b88926b4.png b/train/pictures/529766cb26f678aaf25cfb41b88926b4.png new file mode 100644 index 0000000..296cf0e Binary files /dev/null and b/train/pictures/529766cb26f678aaf25cfb41b88926b4.png differ diff --git a/train/pictures/532b22485ee580fb834848b05004b722.png b/train/pictures/532b22485ee580fb834848b05004b722.png new file mode 100644 index 0000000..b5fa001 Binary files /dev/null and b/train/pictures/532b22485ee580fb834848b05004b722.png differ diff --git a/train/pictures/5331701a73154ba1ded74d6f4321b3f0.png b/train/pictures/5331701a73154ba1ded74d6f4321b3f0.png new file mode 100644 index 0000000..9dbb326 Binary files /dev/null and b/train/pictures/5331701a73154ba1ded74d6f4321b3f0.png differ diff --git a/train/pictures/53d6359a8d4192ad04fd92c7e6542b79.png b/train/pictures/53d6359a8d4192ad04fd92c7e6542b79.png new file mode 100644 index 0000000..dd47cdd Binary files /dev/null and b/train/pictures/53d6359a8d4192ad04fd92c7e6542b79.png differ diff --git a/train/pictures/54bfc6f21155cd203cc202973e6b8071.png b/train/pictures/54bfc6f21155cd203cc202973e6b8071.png new file mode 100644 index 0000000..627b0f4 Binary files /dev/null and b/train/pictures/54bfc6f21155cd203cc202973e6b8071.png differ diff --git a/train/pictures/550d6a900aecffb00322f0700cfed78b.png b/train/pictures/550d6a900aecffb00322f0700cfed78b.png new file mode 100644 index 0000000..c00d5ee Binary files /dev/null and b/train/pictures/550d6a900aecffb00322f0700cfed78b.png differ diff --git a/train/pictures/564d9cc9651d918f85125ff41cf9626f.png b/train/pictures/564d9cc9651d918f85125ff41cf9626f.png new file mode 100644 index 0000000..59fafb0 Binary files /dev/null and b/train/pictures/564d9cc9651d918f85125ff41cf9626f.png differ diff --git a/train/pictures/566930584cd40f7aa6aeb95d1a025778.png b/train/pictures/566930584cd40f7aa6aeb95d1a025778.png new file mode 100644 index 0000000..bff0a4f Binary files /dev/null and b/train/pictures/566930584cd40f7aa6aeb95d1a025778.png differ diff --git a/train/pictures/567e27d473738b3a43079178fe5e57c4.png b/train/pictures/567e27d473738b3a43079178fe5e57c4.png new file mode 100644 index 0000000..4283b34 Binary files /dev/null and b/train/pictures/567e27d473738b3a43079178fe5e57c4.png differ diff --git a/train/pictures/5682efc115b3cc51ea05245d8951809e.png b/train/pictures/5682efc115b3cc51ea05245d8951809e.png new file mode 100644 index 0000000..79afe12 Binary files /dev/null and b/train/pictures/5682efc115b3cc51ea05245d8951809e.png differ diff --git a/train/pictures/56f7e1d6394b495ec092f29dba8201db.png b/train/pictures/56f7e1d6394b495ec092f29dba8201db.png new file mode 100644 index 0000000..7868fee Binary files /dev/null and b/train/pictures/56f7e1d6394b495ec092f29dba8201db.png differ diff --git a/train/pictures/57f2147451fdd1d1aef2d45eacdd0d2f.png b/train/pictures/57f2147451fdd1d1aef2d45eacdd0d2f.png new file mode 100644 index 0000000..5591092 Binary files /dev/null and b/train/pictures/57f2147451fdd1d1aef2d45eacdd0d2f.png differ diff --git a/train/pictures/585ca37ca840bbd91618f18d8e16c837.png b/train/pictures/585ca37ca840bbd91618f18d8e16c837.png new file mode 100644 index 0000000..827817d Binary files /dev/null and b/train/pictures/585ca37ca840bbd91618f18d8e16c837.png differ diff --git a/train/pictures/58b94f10a97f9b49464718ff10e1968f.png b/train/pictures/58b94f10a97f9b49464718ff10e1968f.png new file mode 100644 index 0000000..820a79b Binary files /dev/null and b/train/pictures/58b94f10a97f9b49464718ff10e1968f.png differ diff --git a/train/pictures/592b5f629227d70deefc91bd63d6ad0a.png b/train/pictures/592b5f629227d70deefc91bd63d6ad0a.png new file mode 100644 index 0000000..373d6f2 Binary files /dev/null and b/train/pictures/592b5f629227d70deefc91bd63d6ad0a.png differ diff --git a/train/pictures/59da7640a6c9fc5a33f36373fecad2b6.png b/train/pictures/59da7640a6c9fc5a33f36373fecad2b6.png new file mode 100644 index 0000000..e7a1b9b Binary files /dev/null and b/train/pictures/59da7640a6c9fc5a33f36373fecad2b6.png differ diff --git a/train/pictures/59ecdca63c6f31a0d02324d10278774e.png b/train/pictures/59ecdca63c6f31a0d02324d10278774e.png new file mode 100644 index 0000000..b28ad5f Binary files /dev/null and b/train/pictures/59ecdca63c6f31a0d02324d10278774e.png differ diff --git a/train/pictures/5a706d4f7d14eeffa8763cf5dcb8c1c1.png b/train/pictures/5a706d4f7d14eeffa8763cf5dcb8c1c1.png new file mode 100644 index 0000000..787cab5 Binary files /dev/null and b/train/pictures/5a706d4f7d14eeffa8763cf5dcb8c1c1.png differ diff --git a/train/pictures/5adb6f8c5e47df8070073c96999a3b40.png b/train/pictures/5adb6f8c5e47df8070073c96999a3b40.png new file mode 100644 index 0000000..61e1ee5 Binary files /dev/null and b/train/pictures/5adb6f8c5e47df8070073c96999a3b40.png differ diff --git a/train/pictures/5ae96f520dbf16f324f608bf00fba81a.png b/train/pictures/5ae96f520dbf16f324f608bf00fba81a.png new file mode 100644 index 0000000..03dd822 Binary files /dev/null and b/train/pictures/5ae96f520dbf16f324f608bf00fba81a.png differ diff --git a/train/pictures/5b036519e77dbde5f95200fa31ee4542.png b/train/pictures/5b036519e77dbde5f95200fa31ee4542.png new file mode 100644 index 0000000..e1ae54a Binary files /dev/null and b/train/pictures/5b036519e77dbde5f95200fa31ee4542.png differ diff --git a/train/pictures/5b1983afcf26270f73e9b7a5cc302404.png b/train/pictures/5b1983afcf26270f73e9b7a5cc302404.png new file mode 100644 index 0000000..561bd44 Binary files /dev/null and b/train/pictures/5b1983afcf26270f73e9b7a5cc302404.png differ diff --git a/train/pictures/5b57c9f02a3f1c7a571d24659a0649cf.png b/train/pictures/5b57c9f02a3f1c7a571d24659a0649cf.png new file mode 100644 index 0000000..a380f62 Binary files /dev/null and b/train/pictures/5b57c9f02a3f1c7a571d24659a0649cf.png differ diff --git a/train/pictures/5b829d2f23718fc4afb005a59d942d4e.png b/train/pictures/5b829d2f23718fc4afb005a59d942d4e.png new file mode 100644 index 0000000..c24a067 Binary files /dev/null and b/train/pictures/5b829d2f23718fc4afb005a59d942d4e.png differ diff --git a/train/pictures/5b8dd8403c5bc9d83c9576b3fb9cb267.png b/train/pictures/5b8dd8403c5bc9d83c9576b3fb9cb267.png new file mode 100644 index 0000000..b013d27 Binary files /dev/null and b/train/pictures/5b8dd8403c5bc9d83c9576b3fb9cb267.png differ diff --git a/train/pictures/5bb3d590f50d174b894028501cf36008.png b/train/pictures/5bb3d590f50d174b894028501cf36008.png new file mode 100644 index 0000000..73284f6 Binary files /dev/null and b/train/pictures/5bb3d590f50d174b894028501cf36008.png differ diff --git a/train/pictures/5c19f3e7155a6d9a83101ba6defa1d2f.png b/train/pictures/5c19f3e7155a6d9a83101ba6defa1d2f.png new file mode 100644 index 0000000..cdc9a31 Binary files /dev/null and b/train/pictures/5c19f3e7155a6d9a83101ba6defa1d2f.png differ diff --git a/train/pictures/5c1f6ea927adcf9513016d81fbba0fd1.png b/train/pictures/5c1f6ea927adcf9513016d81fbba0fd1.png new file mode 100644 index 0000000..c95489a Binary files /dev/null and b/train/pictures/5c1f6ea927adcf9513016d81fbba0fd1.png differ diff --git a/train/pictures/5d3149bbed6316d4e1fc2ec63f3ae7cd.png b/train/pictures/5d3149bbed6316d4e1fc2ec63f3ae7cd.png new file mode 100644 index 0000000..12767e4 Binary files /dev/null and b/train/pictures/5d3149bbed6316d4e1fc2ec63f3ae7cd.png differ diff --git a/train/pictures/5d53dcf5bf461fd38d95b232859c5438.png b/train/pictures/5d53dcf5bf461fd38d95b232859c5438.png new file mode 100644 index 0000000..f028874 Binary files /dev/null and b/train/pictures/5d53dcf5bf461fd38d95b232859c5438.png differ diff --git a/train/pictures/5d664206148208baa7ac4a69015bfeee.png b/train/pictures/5d664206148208baa7ac4a69015bfeee.png new file mode 100644 index 0000000..24d4165 Binary files /dev/null and b/train/pictures/5d664206148208baa7ac4a69015bfeee.png differ diff --git a/train/pictures/5d918eec4ccc25433bedf720036f3b57.png b/train/pictures/5d918eec4ccc25433bedf720036f3b57.png new file mode 100644 index 0000000..053a4d3 Binary files /dev/null and b/train/pictures/5d918eec4ccc25433bedf720036f3b57.png differ diff --git a/train/pictures/5dce79c1b56e6fe0b7406a13d930035f.png b/train/pictures/5dce79c1b56e6fe0b7406a13d930035f.png new file mode 100644 index 0000000..abb247a Binary files /dev/null and b/train/pictures/5dce79c1b56e6fe0b7406a13d930035f.png differ diff --git a/train/pictures/5e2faaf8153a44b7bae2ad48442c9e0b.png b/train/pictures/5e2faaf8153a44b7bae2ad48442c9e0b.png new file mode 100644 index 0000000..94cee7d Binary files /dev/null and b/train/pictures/5e2faaf8153a44b7bae2ad48442c9e0b.png differ diff --git a/train/pictures/5e79b590252582002bc27a0d5aac1bac.png b/train/pictures/5e79b590252582002bc27a0d5aac1bac.png new file mode 100644 index 0000000..0f4948f Binary files /dev/null and b/train/pictures/5e79b590252582002bc27a0d5aac1bac.png differ diff --git a/train/pictures/5ec3e3b160119873e6848570dd0afb3d.png b/train/pictures/5ec3e3b160119873e6848570dd0afb3d.png new file mode 100644 index 0000000..2fa8a81 Binary files /dev/null and b/train/pictures/5ec3e3b160119873e6848570dd0afb3d.png differ diff --git a/train/pictures/5fb63eb178da7daf4fa9279534390c9c.png b/train/pictures/5fb63eb178da7daf4fa9279534390c9c.png new file mode 100644 index 0000000..3b25378 Binary files /dev/null and b/train/pictures/5fb63eb178da7daf4fa9279534390c9c.png differ diff --git a/train/pictures/60006a45b127342185886917d25cbb66.png b/train/pictures/60006a45b127342185886917d25cbb66.png new file mode 100644 index 0000000..62d9f89 Binary files /dev/null and b/train/pictures/60006a45b127342185886917d25cbb66.png differ diff --git a/train/pictures/601d4ae5c709d3f351519ca4cbeee6b9.png b/train/pictures/601d4ae5c709d3f351519ca4cbeee6b9.png new file mode 100644 index 0000000..b8948ea Binary files /dev/null and b/train/pictures/601d4ae5c709d3f351519ca4cbeee6b9.png differ diff --git a/train/pictures/610af7afcd1992c5a388706d1a9bedc1.png b/train/pictures/610af7afcd1992c5a388706d1a9bedc1.png new file mode 100644 index 0000000..9a11da2 Binary files /dev/null and b/train/pictures/610af7afcd1992c5a388706d1a9bedc1.png differ diff --git a/train/pictures/61763bcbab85c341643111f41a051ecd.png b/train/pictures/61763bcbab85c341643111f41a051ecd.png new file mode 100644 index 0000000..09bdc5b Binary files /dev/null and b/train/pictures/61763bcbab85c341643111f41a051ecd.png differ diff --git a/train/pictures/61d6be8d4a40e88264f573f9acfe1b3f.png b/train/pictures/61d6be8d4a40e88264f573f9acfe1b3f.png new file mode 100644 index 0000000..d7a03c2 Binary files /dev/null and b/train/pictures/61d6be8d4a40e88264f573f9acfe1b3f.png differ diff --git a/train/pictures/62113ddd8d44585bfca39750d1cd8184.png b/train/pictures/62113ddd8d44585bfca39750d1cd8184.png new file mode 100644 index 0000000..476d2a5 Binary files /dev/null and b/train/pictures/62113ddd8d44585bfca39750d1cd8184.png differ diff --git a/train/pictures/62812b00ee8b3c9630f6f50ad8bc5d95.png b/train/pictures/62812b00ee8b3c9630f6f50ad8bc5d95.png new file mode 100644 index 0000000..2b77a01 Binary files /dev/null and b/train/pictures/62812b00ee8b3c9630f6f50ad8bc5d95.png differ diff --git a/train/pictures/6324c6e8c857753c03c128dcf7a7605f.png b/train/pictures/6324c6e8c857753c03c128dcf7a7605f.png new file mode 100644 index 0000000..89cc6fd Binary files /dev/null and b/train/pictures/6324c6e8c857753c03c128dcf7a7605f.png differ diff --git a/train/pictures/63363871a90084e65e44a6c33f20e0c8.png b/train/pictures/63363871a90084e65e44a6c33f20e0c8.png new file mode 100644 index 0000000..2d5c0ea Binary files /dev/null and b/train/pictures/63363871a90084e65e44a6c33f20e0c8.png differ diff --git a/train/pictures/63bc4d9b508f591785af0f39c4164034.png b/train/pictures/63bc4d9b508f591785af0f39c4164034.png new file mode 100644 index 0000000..b4c4780 Binary files /dev/null and b/train/pictures/63bc4d9b508f591785af0f39c4164034.png differ diff --git a/train/pictures/63c913cb511866b4cfd161b6c2218a74.png b/train/pictures/63c913cb511866b4cfd161b6c2218a74.png new file mode 100644 index 0000000..f62ad74 Binary files /dev/null and b/train/pictures/63c913cb511866b4cfd161b6c2218a74.png differ diff --git a/train/pictures/643ac50e0826326c4efc368b7bfff856.png b/train/pictures/643ac50e0826326c4efc368b7bfff856.png new file mode 100644 index 0000000..2761e7e Binary files /dev/null and b/train/pictures/643ac50e0826326c4efc368b7bfff856.png differ diff --git a/train/pictures/6467a7d9ffaeb37135f46180387055d5.png b/train/pictures/6467a7d9ffaeb37135f46180387055d5.png new file mode 100644 index 0000000..9336f79 Binary files /dev/null and b/train/pictures/6467a7d9ffaeb37135f46180387055d5.png differ diff --git a/train/pictures/64aaf6315f9c5bcaad885b5bc473ce34.png b/train/pictures/64aaf6315f9c5bcaad885b5bc473ce34.png new file mode 100644 index 0000000..2c26378 Binary files /dev/null and b/train/pictures/64aaf6315f9c5bcaad885b5bc473ce34.png differ diff --git a/train/pictures/64fd182d20140684f0d4ff6a1ae0e1d5.png b/train/pictures/64fd182d20140684f0d4ff6a1ae0e1d5.png new file mode 100644 index 0000000..6c10f34 Binary files /dev/null and b/train/pictures/64fd182d20140684f0d4ff6a1ae0e1d5.png differ diff --git a/train/pictures/65523a91b5ec395e0f01e090fac08e84.png b/train/pictures/65523a91b5ec395e0f01e090fac08e84.png new file mode 100644 index 0000000..4032413 Binary files /dev/null and b/train/pictures/65523a91b5ec395e0f01e090fac08e84.png differ diff --git a/train/pictures/65b2e193ffe3da7e1d14fd3e60c80011.png b/train/pictures/65b2e193ffe3da7e1d14fd3e60c80011.png new file mode 100644 index 0000000..14bbc56 Binary files /dev/null and b/train/pictures/65b2e193ffe3da7e1d14fd3e60c80011.png differ diff --git a/train/pictures/65d93089c2bac20dcc42d07425c080d9.png b/train/pictures/65d93089c2bac20dcc42d07425c080d9.png new file mode 100644 index 0000000..f03207d Binary files /dev/null and b/train/pictures/65d93089c2bac20dcc42d07425c080d9.png differ diff --git a/train/pictures/65dcee0905ef49da2146dbabf14b3906.png b/train/pictures/65dcee0905ef49da2146dbabf14b3906.png new file mode 100644 index 0000000..57bb358 Binary files /dev/null and b/train/pictures/65dcee0905ef49da2146dbabf14b3906.png differ diff --git a/train/pictures/66557d1072a5e3673725923184756094.png b/train/pictures/66557d1072a5e3673725923184756094.png new file mode 100644 index 0000000..7dc3b7a Binary files /dev/null and b/train/pictures/66557d1072a5e3673725923184756094.png differ diff --git a/train/pictures/66d1e256c391340699d3e5237f8345ab.png b/train/pictures/66d1e256c391340699d3e5237f8345ab.png new file mode 100644 index 0000000..e36a780 Binary files /dev/null and b/train/pictures/66d1e256c391340699d3e5237f8345ab.png differ diff --git a/train/pictures/66d3738456f32cd5eaf17e4b457f1d9e.png b/train/pictures/66d3738456f32cd5eaf17e4b457f1d9e.png new file mode 100644 index 0000000..50cb3ee Binary files /dev/null and b/train/pictures/66d3738456f32cd5eaf17e4b457f1d9e.png differ diff --git a/train/pictures/6755718c87df41c0fe55fb5f8044949b.png b/train/pictures/6755718c87df41c0fe55fb5f8044949b.png new file mode 100644 index 0000000..100f4d2 Binary files /dev/null and b/train/pictures/6755718c87df41c0fe55fb5f8044949b.png differ diff --git a/train/pictures/680d202dc367a0bec08608c1876b8125.png b/train/pictures/680d202dc367a0bec08608c1876b8125.png new file mode 100644 index 0000000..10c1a97 Binary files /dev/null and b/train/pictures/680d202dc367a0bec08608c1876b8125.png differ diff --git a/train/pictures/68c3ddefa287ff42e92209b3ab19b201.png b/train/pictures/68c3ddefa287ff42e92209b3ab19b201.png new file mode 100644 index 0000000..29e599f Binary files /dev/null and b/train/pictures/68c3ddefa287ff42e92209b3ab19b201.png differ diff --git a/train/pictures/694e3c859066ca3b6a6536a7973bf0a5.png b/train/pictures/694e3c859066ca3b6a6536a7973bf0a5.png new file mode 100644 index 0000000..26fc783 Binary files /dev/null and b/train/pictures/694e3c859066ca3b6a6536a7973bf0a5.png differ diff --git a/train/pictures/69c79549cfe6212ec8a13ffac935cf6c.png b/train/pictures/69c79549cfe6212ec8a13ffac935cf6c.png new file mode 100644 index 0000000..30216af Binary files /dev/null and b/train/pictures/69c79549cfe6212ec8a13ffac935cf6c.png differ diff --git a/train/pictures/6af627bf3af96aab1ed28b90922a53f5.png b/train/pictures/6af627bf3af96aab1ed28b90922a53f5.png new file mode 100644 index 0000000..77eb2af Binary files /dev/null and b/train/pictures/6af627bf3af96aab1ed28b90922a53f5.png differ diff --git a/train/pictures/6ca32d393f0f96f5cae3c1b1804966f5.png b/train/pictures/6ca32d393f0f96f5cae3c1b1804966f5.png new file mode 100644 index 0000000..57c9858 Binary files /dev/null and b/train/pictures/6ca32d393f0f96f5cae3c1b1804966f5.png differ diff --git a/train/pictures/6d648400cc742215ec059898ce2dd6d8.png b/train/pictures/6d648400cc742215ec059898ce2dd6d8.png new file mode 100644 index 0000000..f480b88 Binary files /dev/null and b/train/pictures/6d648400cc742215ec059898ce2dd6d8.png differ diff --git a/train/pictures/6d9057725c81bc7262464e15843b2941.png b/train/pictures/6d9057725c81bc7262464e15843b2941.png new file mode 100644 index 0000000..f71c51a Binary files /dev/null and b/train/pictures/6d9057725c81bc7262464e15843b2941.png differ diff --git a/train/pictures/6e828caca1cb8607f795424e60d3c1cd.png b/train/pictures/6e828caca1cb8607f795424e60d3c1cd.png new file mode 100644 index 0000000..691262b Binary files /dev/null and b/train/pictures/6e828caca1cb8607f795424e60d3c1cd.png differ diff --git a/train/pictures/6efeb06143ba666e4d85f8e73c8b75be.png b/train/pictures/6efeb06143ba666e4d85f8e73c8b75be.png new file mode 100644 index 0000000..ff41603 Binary files /dev/null and b/train/pictures/6efeb06143ba666e4d85f8e73c8b75be.png differ diff --git a/train/pictures/6f29f68464622720bd091f85c1c274c9.png b/train/pictures/6f29f68464622720bd091f85c1c274c9.png new file mode 100644 index 0000000..12febb3 Binary files /dev/null and b/train/pictures/6f29f68464622720bd091f85c1c274c9.png differ diff --git a/train/pictures/6fb96e52aa21bacc75060acf9a966905.png b/train/pictures/6fb96e52aa21bacc75060acf9a966905.png new file mode 100644 index 0000000..27a986a Binary files /dev/null and b/train/pictures/6fb96e52aa21bacc75060acf9a966905.png differ diff --git a/train/pictures/71264eebd9a95be5203d9dc6461d9f34.png b/train/pictures/71264eebd9a95be5203d9dc6461d9f34.png new file mode 100644 index 0000000..c79a2cb Binary files /dev/null and b/train/pictures/71264eebd9a95be5203d9dc6461d9f34.png differ diff --git a/train/pictures/713297abdc6a9f1aef76f7202e72af7d.png b/train/pictures/713297abdc6a9f1aef76f7202e72af7d.png new file mode 100644 index 0000000..9959cd3 Binary files /dev/null and b/train/pictures/713297abdc6a9f1aef76f7202e72af7d.png differ diff --git a/train/pictures/71694a9ae0e645cc6227e745d36b9140.png b/train/pictures/71694a9ae0e645cc6227e745d36b9140.png new file mode 100644 index 0000000..8bfc050 Binary files /dev/null and b/train/pictures/71694a9ae0e645cc6227e745d36b9140.png differ diff --git a/train/pictures/716c649314184f6680b7be831650563d.png b/train/pictures/716c649314184f6680b7be831650563d.png new file mode 100644 index 0000000..de8b3f0 Binary files /dev/null and b/train/pictures/716c649314184f6680b7be831650563d.png differ diff --git a/train/pictures/71916087fdc6a27560b13a4efcce1a05.png b/train/pictures/71916087fdc6a27560b13a4efcce1a05.png new file mode 100644 index 0000000..10db0c4 Binary files /dev/null and b/train/pictures/71916087fdc6a27560b13a4efcce1a05.png differ diff --git a/train/pictures/723040f7a2615f71a4e556e790f0a1bb.png b/train/pictures/723040f7a2615f71a4e556e790f0a1bb.png new file mode 100644 index 0000000..dfaa85a Binary files /dev/null and b/train/pictures/723040f7a2615f71a4e556e790f0a1bb.png differ diff --git a/train/pictures/72bc33fdb757a578efa2f8b512aa74e4.png b/train/pictures/72bc33fdb757a578efa2f8b512aa74e4.png new file mode 100644 index 0000000..2136258 Binary files /dev/null and b/train/pictures/72bc33fdb757a578efa2f8b512aa74e4.png differ diff --git a/train/pictures/733b4a15eed9eac2a3ca24786e006d90.png b/train/pictures/733b4a15eed9eac2a3ca24786e006d90.png new file mode 100644 index 0000000..e215780 Binary files /dev/null and b/train/pictures/733b4a15eed9eac2a3ca24786e006d90.png differ diff --git a/train/pictures/74056ad71aae3c8601fd71541940b815.png b/train/pictures/74056ad71aae3c8601fd71541940b815.png new file mode 100644 index 0000000..10b3202 Binary files /dev/null and b/train/pictures/74056ad71aae3c8601fd71541940b815.png differ diff --git a/train/pictures/752d9e9e0990bd38b8d5ac25bb1ab46b.png b/train/pictures/752d9e9e0990bd38b8d5ac25bb1ab46b.png new file mode 100644 index 0000000..c936c87 Binary files /dev/null and b/train/pictures/752d9e9e0990bd38b8d5ac25bb1ab46b.png differ diff --git a/train/pictures/75687c1d8dd66d79f3e4f5875da1d15f.png b/train/pictures/75687c1d8dd66d79f3e4f5875da1d15f.png new file mode 100644 index 0000000..4ed57dd Binary files /dev/null and b/train/pictures/75687c1d8dd66d79f3e4f5875da1d15f.png differ diff --git a/train/pictures/76151226a6cc8bfe590d6b81855f9f14.png b/train/pictures/76151226a6cc8bfe590d6b81855f9f14.png new file mode 100644 index 0000000..97757df Binary files /dev/null and b/train/pictures/76151226a6cc8bfe590d6b81855f9f14.png differ diff --git a/train/pictures/77d18fa197a5019d1470a82424170705.png b/train/pictures/77d18fa197a5019d1470a82424170705.png new file mode 100644 index 0000000..d5ccf1f Binary files /dev/null and b/train/pictures/77d18fa197a5019d1470a82424170705.png differ diff --git a/train/pictures/78320352db07081ea71e60adbe435a88.png b/train/pictures/78320352db07081ea71e60adbe435a88.png new file mode 100644 index 0000000..2f8ad5b Binary files /dev/null and b/train/pictures/78320352db07081ea71e60adbe435a88.png differ diff --git a/train/pictures/78a0efd294730294070b7707dfd248e2.png b/train/pictures/78a0efd294730294070b7707dfd248e2.png new file mode 100644 index 0000000..1352ddb Binary files /dev/null and b/train/pictures/78a0efd294730294070b7707dfd248e2.png differ diff --git a/train/pictures/7911316499c201e05b1046fe6d8ef7e1.png b/train/pictures/7911316499c201e05b1046fe6d8ef7e1.png new file mode 100644 index 0000000..5d98127 Binary files /dev/null and b/train/pictures/7911316499c201e05b1046fe6d8ef7e1.png differ diff --git a/train/pictures/7940ae3438785163fb3852e5e31dbdac.png b/train/pictures/7940ae3438785163fb3852e5e31dbdac.png new file mode 100644 index 0000000..124b242 Binary files /dev/null and b/train/pictures/7940ae3438785163fb3852e5e31dbdac.png differ diff --git a/train/pictures/79850dbddeea0c10fd43b0571f32dda8.png b/train/pictures/79850dbddeea0c10fd43b0571f32dda8.png new file mode 100644 index 0000000..918200e Binary files /dev/null and b/train/pictures/79850dbddeea0c10fd43b0571f32dda8.png differ diff --git a/train/pictures/7aa7fe11e71b49102afdc9910f3cef5d.png b/train/pictures/7aa7fe11e71b49102afdc9910f3cef5d.png new file mode 100644 index 0000000..176c3a2 Binary files /dev/null and b/train/pictures/7aa7fe11e71b49102afdc9910f3cef5d.png differ diff --git a/train/pictures/7b0a12e1026ff1fb28dcd0938963973e.png b/train/pictures/7b0a12e1026ff1fb28dcd0938963973e.png new file mode 100644 index 0000000..4696905 Binary files /dev/null and b/train/pictures/7b0a12e1026ff1fb28dcd0938963973e.png differ diff --git a/train/pictures/7b1a69062c32eb75ac3f49539dfb99d9.png b/train/pictures/7b1a69062c32eb75ac3f49539dfb99d9.png new file mode 100644 index 0000000..7d80cd9 Binary files /dev/null and b/train/pictures/7b1a69062c32eb75ac3f49539dfb99d9.png differ diff --git a/train/pictures/7b1a6c102461556b751c4fc43e1dda7a.png b/train/pictures/7b1a6c102461556b751c4fc43e1dda7a.png new file mode 100644 index 0000000..8e52409 Binary files /dev/null and b/train/pictures/7b1a6c102461556b751c4fc43e1dda7a.png differ diff --git a/train/pictures/7bb3de4e888a4042ade7318a916f2326.png b/train/pictures/7bb3de4e888a4042ade7318a916f2326.png new file mode 100644 index 0000000..56dd539 Binary files /dev/null and b/train/pictures/7bb3de4e888a4042ade7318a916f2326.png differ diff --git a/train/pictures/7bec0574969f302d7da88a84e1472712.png b/train/pictures/7bec0574969f302d7da88a84e1472712.png new file mode 100644 index 0000000..3cdf936 Binary files /dev/null and b/train/pictures/7bec0574969f302d7da88a84e1472712.png differ diff --git a/train/pictures/7bf8a6de9cb367a3359dc76ac8889cc3.png b/train/pictures/7bf8a6de9cb367a3359dc76ac8889cc3.png new file mode 100644 index 0000000..c72d017 Binary files /dev/null and b/train/pictures/7bf8a6de9cb367a3359dc76ac8889cc3.png differ diff --git a/train/pictures/7c4f7321767c9f24aff3a0df535d033a.png b/train/pictures/7c4f7321767c9f24aff3a0df535d033a.png new file mode 100644 index 0000000..16adb66 Binary files /dev/null and b/train/pictures/7c4f7321767c9f24aff3a0df535d033a.png differ diff --git a/train/pictures/7c67c597a392fe99f74009382a92c3cd.png b/train/pictures/7c67c597a392fe99f74009382a92c3cd.png new file mode 100644 index 0000000..3c5dd48 Binary files /dev/null and b/train/pictures/7c67c597a392fe99f74009382a92c3cd.png differ diff --git a/train/pictures/7d38c36636ecb4018344da827d26efab.png b/train/pictures/7d38c36636ecb4018344da827d26efab.png new file mode 100644 index 0000000..9710dd2 Binary files /dev/null and b/train/pictures/7d38c36636ecb4018344da827d26efab.png differ diff --git a/train/pictures/7d49708c903c6595fa9d5716337d642d.png b/train/pictures/7d49708c903c6595fa9d5716337d642d.png new file mode 100644 index 0000000..46f2801 Binary files /dev/null and b/train/pictures/7d49708c903c6595fa9d5716337d642d.png differ diff --git a/train/pictures/7d5d2dc0c1f036b042dd4de381d087e5.png b/train/pictures/7d5d2dc0c1f036b042dd4de381d087e5.png new file mode 100644 index 0000000..4496262 Binary files /dev/null and b/train/pictures/7d5d2dc0c1f036b042dd4de381d087e5.png differ diff --git a/train/pictures/7d792eaa96eda211a5a47eb963655a85.png b/train/pictures/7d792eaa96eda211a5a47eb963655a85.png new file mode 100644 index 0000000..c8abda3 Binary files /dev/null and b/train/pictures/7d792eaa96eda211a5a47eb963655a85.png differ diff --git a/train/pictures/7d98407204bc5923124ee4b75e654f57.png b/train/pictures/7d98407204bc5923124ee4b75e654f57.png new file mode 100644 index 0000000..fafd231 Binary files /dev/null and b/train/pictures/7d98407204bc5923124ee4b75e654f57.png differ diff --git a/train/pictures/7dfc47c86f0ff21a13149b83978bf353.png b/train/pictures/7dfc47c86f0ff21a13149b83978bf353.png new file mode 100644 index 0000000..fef0a5f Binary files /dev/null and b/train/pictures/7dfc47c86f0ff21a13149b83978bf353.png differ diff --git a/train/pictures/7dfd478cdb332d1ca4bb51700ce73d16.png b/train/pictures/7dfd478cdb332d1ca4bb51700ce73d16.png new file mode 100644 index 0000000..fe0df66 Binary files /dev/null and b/train/pictures/7dfd478cdb332d1ca4bb51700ce73d16.png differ diff --git a/train/pictures/7ecb1fa96e3384f2f3f0d6b95b1ff615.png b/train/pictures/7ecb1fa96e3384f2f3f0d6b95b1ff615.png new file mode 100644 index 0000000..62796e5 Binary files /dev/null and b/train/pictures/7ecb1fa96e3384f2f3f0d6b95b1ff615.png differ diff --git a/train/pictures/7f1c8e860224644f6b336a6487b23313.png b/train/pictures/7f1c8e860224644f6b336a6487b23313.png new file mode 100644 index 0000000..b6dc499 Binary files /dev/null and b/train/pictures/7f1c8e860224644f6b336a6487b23313.png differ diff --git a/train/pictures/7f76371e3f681f60725cfb14edda1224.png b/train/pictures/7f76371e3f681f60725cfb14edda1224.png new file mode 100644 index 0000000..057452c Binary files /dev/null and b/train/pictures/7f76371e3f681f60725cfb14edda1224.png differ diff --git a/train/pictures/8006b60a184ecec0c0c8d5ce8d929ab4.png b/train/pictures/8006b60a184ecec0c0c8d5ce8d929ab4.png new file mode 100644 index 0000000..e716f94 Binary files /dev/null and b/train/pictures/8006b60a184ecec0c0c8d5ce8d929ab4.png differ diff --git a/train/pictures/82ac58b20870027cd6f0c11f59756f23.png b/train/pictures/82ac58b20870027cd6f0c11f59756f23.png new file mode 100644 index 0000000..ea9a22b Binary files /dev/null and b/train/pictures/82ac58b20870027cd6f0c11f59756f23.png differ diff --git a/train/pictures/834799cf7243470f502ed5e1ed11eb99.png b/train/pictures/834799cf7243470f502ed5e1ed11eb99.png new file mode 100644 index 0000000..17a9b01 Binary files /dev/null and b/train/pictures/834799cf7243470f502ed5e1ed11eb99.png differ diff --git a/train/pictures/8387e2fbc10b12f947a1f9e1f7e6d662.png b/train/pictures/8387e2fbc10b12f947a1f9e1f7e6d662.png new file mode 100644 index 0000000..82dd389 Binary files /dev/null and b/train/pictures/8387e2fbc10b12f947a1f9e1f7e6d662.png differ diff --git a/train/pictures/84b6545bde98e54049c1f3bf92cd82ea.png b/train/pictures/84b6545bde98e54049c1f3bf92cd82ea.png new file mode 100644 index 0000000..b31dd99 Binary files /dev/null and b/train/pictures/84b6545bde98e54049c1f3bf92cd82ea.png differ diff --git a/train/pictures/84da7955c949ae9e3dc9e94a1c3a9b1e.png b/train/pictures/84da7955c949ae9e3dc9e94a1c3a9b1e.png new file mode 100644 index 0000000..0b6df54 Binary files /dev/null and b/train/pictures/84da7955c949ae9e3dc9e94a1c3a9b1e.png differ diff --git a/train/pictures/84eb8978883009b868f50b7b0435b538.png b/train/pictures/84eb8978883009b868f50b7b0435b538.png new file mode 100644 index 0000000..e5fddea Binary files /dev/null and b/train/pictures/84eb8978883009b868f50b7b0435b538.png differ diff --git a/train/pictures/853b222a6af6ef4c3b89c5b4b5770ffb.png b/train/pictures/853b222a6af6ef4c3b89c5b4b5770ffb.png new file mode 100644 index 0000000..2583157 Binary files /dev/null and b/train/pictures/853b222a6af6ef4c3b89c5b4b5770ffb.png differ diff --git a/train/pictures/853d1f0649afc87717b39f734c001806.png b/train/pictures/853d1f0649afc87717b39f734c001806.png new file mode 100644 index 0000000..60bdc41 Binary files /dev/null and b/train/pictures/853d1f0649afc87717b39f734c001806.png differ diff --git a/train/pictures/8572fa4f9c692a4d7424ed64ab5cf2b9.png b/train/pictures/8572fa4f9c692a4d7424ed64ab5cf2b9.png new file mode 100644 index 0000000..ee13912 Binary files /dev/null and b/train/pictures/8572fa4f9c692a4d7424ed64ab5cf2b9.png differ diff --git a/train/pictures/867eed7ce762742a0647dfdfa834cf64.png b/train/pictures/867eed7ce762742a0647dfdfa834cf64.png new file mode 100644 index 0000000..d1462c7 Binary files /dev/null and b/train/pictures/867eed7ce762742a0647dfdfa834cf64.png differ diff --git a/train/pictures/8681255cb6d987583a176409ff879f8d.png b/train/pictures/8681255cb6d987583a176409ff879f8d.png new file mode 100644 index 0000000..24a5705 Binary files /dev/null and b/train/pictures/8681255cb6d987583a176409ff879f8d.png differ diff --git a/train/pictures/86b4fa1d46810c30d5bcb4af6de35a3c.png b/train/pictures/86b4fa1d46810c30d5bcb4af6de35a3c.png new file mode 100644 index 0000000..42ae1bd Binary files /dev/null and b/train/pictures/86b4fa1d46810c30d5bcb4af6de35a3c.png differ diff --git a/train/pictures/872ad6655497b13fc4d4da6a55a35791.png b/train/pictures/872ad6655497b13fc4d4da6a55a35791.png new file mode 100644 index 0000000..81e0051 Binary files /dev/null and b/train/pictures/872ad6655497b13fc4d4da6a55a35791.png differ diff --git a/train/pictures/87b5ecbc9b60a1b75db51e1a5c31a8b9.png b/train/pictures/87b5ecbc9b60a1b75db51e1a5c31a8b9.png new file mode 100644 index 0000000..8b26d2c Binary files /dev/null and b/train/pictures/87b5ecbc9b60a1b75db51e1a5c31a8b9.png differ diff --git a/train/pictures/8922ee9421924dcee823bb33187bbe81.png b/train/pictures/8922ee9421924dcee823bb33187bbe81.png new file mode 100644 index 0000000..c96baa3 Binary files /dev/null and b/train/pictures/8922ee9421924dcee823bb33187bbe81.png differ diff --git a/train/pictures/89300fb9655867c24ea271c4ad7b3764.png b/train/pictures/89300fb9655867c24ea271c4ad7b3764.png new file mode 100644 index 0000000..1de7bb6 Binary files /dev/null and b/train/pictures/89300fb9655867c24ea271c4ad7b3764.png differ diff --git a/train/pictures/89550e76c7554cd97dc79cb8358b5cfd.png b/train/pictures/89550e76c7554cd97dc79cb8358b5cfd.png new file mode 100644 index 0000000..8f22530 Binary files /dev/null and b/train/pictures/89550e76c7554cd97dc79cb8358b5cfd.png differ diff --git a/train/pictures/89a8c1588e5b55f6ad998758944b3dcc.png b/train/pictures/89a8c1588e5b55f6ad998758944b3dcc.png new file mode 100644 index 0000000..3ba8fc5 Binary files /dev/null and b/train/pictures/89a8c1588e5b55f6ad998758944b3dcc.png differ diff --git a/train/pictures/8a20154ed78453df148451de856a0e33.png b/train/pictures/8a20154ed78453df148451de856a0e33.png new file mode 100644 index 0000000..dbb568d Binary files /dev/null and b/train/pictures/8a20154ed78453df148451de856a0e33.png differ diff --git a/train/pictures/8a5bab8fc77c9bf8823313bfd7d61bc2.png b/train/pictures/8a5bab8fc77c9bf8823313bfd7d61bc2.png new file mode 100644 index 0000000..3a334b0 Binary files /dev/null and b/train/pictures/8a5bab8fc77c9bf8823313bfd7d61bc2.png differ diff --git a/train/pictures/8abab606169e031021d1786b4ad2a6b2.png b/train/pictures/8abab606169e031021d1786b4ad2a6b2.png new file mode 100644 index 0000000..815a60e Binary files /dev/null and b/train/pictures/8abab606169e031021d1786b4ad2a6b2.png differ diff --git a/train/pictures/8ac062d4da068d7ecabb476a7c42da54.png b/train/pictures/8ac062d4da068d7ecabb476a7c42da54.png new file mode 100644 index 0000000..eb12c30 Binary files /dev/null and b/train/pictures/8ac062d4da068d7ecabb476a7c42da54.png differ diff --git a/train/pictures/8b3522514da45e724c6138220e699090.png b/train/pictures/8b3522514da45e724c6138220e699090.png new file mode 100644 index 0000000..4165804 Binary files /dev/null and b/train/pictures/8b3522514da45e724c6138220e699090.png differ diff --git a/train/pictures/8b7fbd6966c6425db0b3fe8c7fc96b4f.png b/train/pictures/8b7fbd6966c6425db0b3fe8c7fc96b4f.png new file mode 100644 index 0000000..ce2e423 Binary files /dev/null and b/train/pictures/8b7fbd6966c6425db0b3fe8c7fc96b4f.png differ diff --git a/train/pictures/8b8f91e8b914220620a6187b019e60ab.png b/train/pictures/8b8f91e8b914220620a6187b019e60ab.png new file mode 100644 index 0000000..808d3f8 Binary files /dev/null and b/train/pictures/8b8f91e8b914220620a6187b019e60ab.png differ diff --git a/train/pictures/8baa2fee7e26a4d2cb767e0d70e3b44d.png b/train/pictures/8baa2fee7e26a4d2cb767e0d70e3b44d.png new file mode 100644 index 0000000..d22f8b2 Binary files /dev/null and b/train/pictures/8baa2fee7e26a4d2cb767e0d70e3b44d.png differ diff --git a/train/pictures/8bdaebbcf0ef0fc507b4c89c9b929831.png b/train/pictures/8bdaebbcf0ef0fc507b4c89c9b929831.png new file mode 100644 index 0000000..f2483a4 Binary files /dev/null and b/train/pictures/8bdaebbcf0ef0fc507b4c89c9b929831.png differ diff --git a/train/pictures/8c7ebddde0d2773b776e2d5b1f52fd73.png b/train/pictures/8c7ebddde0d2773b776e2d5b1f52fd73.png new file mode 100644 index 0000000..f762abf Binary files /dev/null and b/train/pictures/8c7ebddde0d2773b776e2d5b1f52fd73.png differ diff --git a/train/pictures/8cafd7c0e8c1c67add2e60dbd2cfb2ff.png b/train/pictures/8cafd7c0e8c1c67add2e60dbd2cfb2ff.png new file mode 100644 index 0000000..bb142f3 Binary files /dev/null and b/train/pictures/8cafd7c0e8c1c67add2e60dbd2cfb2ff.png differ diff --git a/train/pictures/8cf2507c1211bbcea6fd5ae1eab047b0.png b/train/pictures/8cf2507c1211bbcea6fd5ae1eab047b0.png new file mode 100644 index 0000000..8bc9464 Binary files /dev/null and b/train/pictures/8cf2507c1211bbcea6fd5ae1eab047b0.png differ diff --git a/train/pictures/8d16999076387a8083853e5639613cdb.png b/train/pictures/8d16999076387a8083853e5639613cdb.png new file mode 100644 index 0000000..548bb10 Binary files /dev/null and b/train/pictures/8d16999076387a8083853e5639613cdb.png differ diff --git a/train/pictures/8d4afec8dc6e19b6280ee5bb269a57e4.png b/train/pictures/8d4afec8dc6e19b6280ee5bb269a57e4.png new file mode 100644 index 0000000..9ab21a4 Binary files /dev/null and b/train/pictures/8d4afec8dc6e19b6280ee5bb269a57e4.png differ diff --git a/train/pictures/8d60487bebd8d973f70c13a9971d0fbf.png b/train/pictures/8d60487bebd8d973f70c13a9971d0fbf.png new file mode 100644 index 0000000..9e71cbd Binary files /dev/null and b/train/pictures/8d60487bebd8d973f70c13a9971d0fbf.png differ diff --git a/train/pictures/8d7c91aa08152e09adae0f57e4a98b1c.png b/train/pictures/8d7c91aa08152e09adae0f57e4a98b1c.png new file mode 100644 index 0000000..839f094 Binary files /dev/null and b/train/pictures/8d7c91aa08152e09adae0f57e4a98b1c.png differ diff --git a/train/pictures/8e0e5527a110bd693afb7bec8b66ceb3.png b/train/pictures/8e0e5527a110bd693afb7bec8b66ceb3.png new file mode 100644 index 0000000..0024bc2 Binary files /dev/null and b/train/pictures/8e0e5527a110bd693afb7bec8b66ceb3.png differ diff --git a/train/pictures/8ecc67db330a87a86f2ae858338bda5c.png b/train/pictures/8ecc67db330a87a86f2ae858338bda5c.png new file mode 100644 index 0000000..b52af28 Binary files /dev/null and b/train/pictures/8ecc67db330a87a86f2ae858338bda5c.png differ diff --git a/train/pictures/8f4d51e234af01c971646fa17cbe0d15.png b/train/pictures/8f4d51e234af01c971646fa17cbe0d15.png new file mode 100644 index 0000000..2138456 Binary files /dev/null and b/train/pictures/8f4d51e234af01c971646fa17cbe0d15.png differ diff --git a/train/pictures/8f5c0327476739b843b01ddfb321833a.png b/train/pictures/8f5c0327476739b843b01ddfb321833a.png new file mode 100644 index 0000000..324e8e9 Binary files /dev/null and b/train/pictures/8f5c0327476739b843b01ddfb321833a.png differ diff --git a/train/pictures/8f6e8b57edcf8a2f1202e3f518019fe1.png b/train/pictures/8f6e8b57edcf8a2f1202e3f518019fe1.png new file mode 100644 index 0000000..55e4e9d Binary files /dev/null and b/train/pictures/8f6e8b57edcf8a2f1202e3f518019fe1.png differ diff --git a/train/pictures/90bab7f2031a11e998d4808b6f0eda60.png b/train/pictures/90bab7f2031a11e998d4808b6f0eda60.png new file mode 100644 index 0000000..2518f6d Binary files /dev/null and b/train/pictures/90bab7f2031a11e998d4808b6f0eda60.png differ diff --git a/train/pictures/90cef7fd42b357d6009bddf34e5e64a3.png b/train/pictures/90cef7fd42b357d6009bddf34e5e64a3.png new file mode 100644 index 0000000..b79db8f Binary files /dev/null and b/train/pictures/90cef7fd42b357d6009bddf34e5e64a3.png differ diff --git a/train/pictures/90e46e6878be28e9e40d43a4daced1c3.png b/train/pictures/90e46e6878be28e9e40d43a4daced1c3.png new file mode 100644 index 0000000..f694c99 Binary files /dev/null and b/train/pictures/90e46e6878be28e9e40d43a4daced1c3.png differ diff --git a/train/pictures/912d944d67971b1fb34d711012cae565.png b/train/pictures/912d944d67971b1fb34d711012cae565.png new file mode 100644 index 0000000..bcf1727 Binary files /dev/null and b/train/pictures/912d944d67971b1fb34d711012cae565.png differ diff --git a/train/pictures/915179dba7da5c88629ebdcb8a51bc61.png b/train/pictures/915179dba7da5c88629ebdcb8a51bc61.png new file mode 100644 index 0000000..6447730 Binary files /dev/null and b/train/pictures/915179dba7da5c88629ebdcb8a51bc61.png differ diff --git a/train/pictures/91c0fb23ee8e69bb2af93be919c16ae7.png b/train/pictures/91c0fb23ee8e69bb2af93be919c16ae7.png new file mode 100644 index 0000000..1b28d65 Binary files /dev/null and b/train/pictures/91c0fb23ee8e69bb2af93be919c16ae7.png differ diff --git a/train/pictures/91d45301145e70924fd0099816a9b9ca.png b/train/pictures/91d45301145e70924fd0099816a9b9ca.png new file mode 100644 index 0000000..36ff153 Binary files /dev/null and b/train/pictures/91d45301145e70924fd0099816a9b9ca.png differ diff --git a/train/pictures/92205fc4b6aa0019c56e8c3e437b73f2.png b/train/pictures/92205fc4b6aa0019c56e8c3e437b73f2.png new file mode 100644 index 0000000..45fca7f Binary files /dev/null and b/train/pictures/92205fc4b6aa0019c56e8c3e437b73f2.png differ diff --git a/train/pictures/9223dad6a34d2e2aafef85546f622d61.png b/train/pictures/9223dad6a34d2e2aafef85546f622d61.png new file mode 100644 index 0000000..47cff30 Binary files /dev/null and b/train/pictures/9223dad6a34d2e2aafef85546f622d61.png differ diff --git a/train/pictures/925f79bfc4dc7d81bfda17ac65fb6fa5.png b/train/pictures/925f79bfc4dc7d81bfda17ac65fb6fa5.png new file mode 100644 index 0000000..9b9e42e Binary files /dev/null and b/train/pictures/925f79bfc4dc7d81bfda17ac65fb6fa5.png differ diff --git a/train/pictures/92eea4943555e53e7a4b857a4a01b5b6.png b/train/pictures/92eea4943555e53e7a4b857a4a01b5b6.png new file mode 100644 index 0000000..2980989 Binary files /dev/null and b/train/pictures/92eea4943555e53e7a4b857a4a01b5b6.png differ diff --git a/train/pictures/93683e95769918b895767d4631471fb6.png b/train/pictures/93683e95769918b895767d4631471fb6.png new file mode 100644 index 0000000..e4aae70 Binary files /dev/null and b/train/pictures/93683e95769918b895767d4631471fb6.png differ diff --git a/train/pictures/937b204db11c493fa54afbdf56466dc9.png b/train/pictures/937b204db11c493fa54afbdf56466dc9.png new file mode 100644 index 0000000..9212243 Binary files /dev/null and b/train/pictures/937b204db11c493fa54afbdf56466dc9.png differ diff --git a/train/pictures/93a67306f1d4a10205b279ccd772d847.png b/train/pictures/93a67306f1d4a10205b279ccd772d847.png new file mode 100644 index 0000000..7dcb0be Binary files /dev/null and b/train/pictures/93a67306f1d4a10205b279ccd772d847.png differ diff --git a/train/pictures/9501d875b97356bafcce0991f4fbc9a6.png b/train/pictures/9501d875b97356bafcce0991f4fbc9a6.png new file mode 100644 index 0000000..c54a321 Binary files /dev/null and b/train/pictures/9501d875b97356bafcce0991f4fbc9a6.png differ diff --git a/train/pictures/95f39bf9cd4d721e2a9bb548cc72fe15.png b/train/pictures/95f39bf9cd4d721e2a9bb548cc72fe15.png new file mode 100644 index 0000000..21d1632 Binary files /dev/null and b/train/pictures/95f39bf9cd4d721e2a9bb548cc72fe15.png differ diff --git a/train/pictures/9615731bca04c5cbeab1fce874351345.png b/train/pictures/9615731bca04c5cbeab1fce874351345.png new file mode 100644 index 0000000..a476e4b Binary files /dev/null and b/train/pictures/9615731bca04c5cbeab1fce874351345.png differ diff --git a/train/pictures/9682891875a82305587f15c9d7850202.png b/train/pictures/9682891875a82305587f15c9d7850202.png new file mode 100644 index 0000000..9e75bf9 Binary files /dev/null and b/train/pictures/9682891875a82305587f15c9d7850202.png differ diff --git a/train/pictures/96f8d3b45db8f6c8d5419d09d22af6c9.png b/train/pictures/96f8d3b45db8f6c8d5419d09d22af6c9.png new file mode 100644 index 0000000..0c08d58 Binary files /dev/null and b/train/pictures/96f8d3b45db8f6c8d5419d09d22af6c9.png differ diff --git a/train/pictures/97ed628b7d9ab0468580ea6a7e16fe2a.png b/train/pictures/97ed628b7d9ab0468580ea6a7e16fe2a.png new file mode 100644 index 0000000..0ed357b Binary files /dev/null and b/train/pictures/97ed628b7d9ab0468580ea6a7e16fe2a.png differ diff --git a/train/pictures/9844af0deea0e114f96e1adf643506b1.png b/train/pictures/9844af0deea0e114f96e1adf643506b1.png new file mode 100644 index 0000000..1013603 Binary files /dev/null and b/train/pictures/9844af0deea0e114f96e1adf643506b1.png differ diff --git a/train/pictures/9931d73b847b8573f312cd6c9a746d57.png b/train/pictures/9931d73b847b8573f312cd6c9a746d57.png new file mode 100644 index 0000000..f282fb1 Binary files /dev/null and b/train/pictures/9931d73b847b8573f312cd6c9a746d57.png differ diff --git a/train/pictures/9972f656160762b7bdc3ffe7fc1ba0b6.png b/train/pictures/9972f656160762b7bdc3ffe7fc1ba0b6.png new file mode 100644 index 0000000..2e208b6 Binary files /dev/null and b/train/pictures/9972f656160762b7bdc3ffe7fc1ba0b6.png differ diff --git a/train/pictures/9a2410450b7fb852b207a41afa3e33da.png b/train/pictures/9a2410450b7fb852b207a41afa3e33da.png new file mode 100644 index 0000000..1f680a3 Binary files /dev/null and b/train/pictures/9a2410450b7fb852b207a41afa3e33da.png differ diff --git a/train/pictures/9b30ec1fc5f3911b60f407e06996919f.png b/train/pictures/9b30ec1fc5f3911b60f407e06996919f.png new file mode 100644 index 0000000..c1e0f73 Binary files /dev/null and b/train/pictures/9b30ec1fc5f3911b60f407e06996919f.png differ diff --git a/train/pictures/9c06e8bbfed3ac947ef67dc4508d9fcc.png b/train/pictures/9c06e8bbfed3ac947ef67dc4508d9fcc.png new file mode 100644 index 0000000..a6f92b0 Binary files /dev/null and b/train/pictures/9c06e8bbfed3ac947ef67dc4508d9fcc.png differ diff --git a/train/pictures/9c3743b41e7a990c7db78642443f1d23.png b/train/pictures/9c3743b41e7a990c7db78642443f1d23.png new file mode 100644 index 0000000..054d720 Binary files /dev/null and b/train/pictures/9c3743b41e7a990c7db78642443f1d23.png differ diff --git a/train/pictures/9d20a466cdc965596f9f1fe9c286e728.png b/train/pictures/9d20a466cdc965596f9f1fe9c286e728.png new file mode 100644 index 0000000..421914e Binary files /dev/null and b/train/pictures/9d20a466cdc965596f9f1fe9c286e728.png differ diff --git a/train/pictures/9da4e95e55a811832d64906a2e4b7724.png b/train/pictures/9da4e95e55a811832d64906a2e4b7724.png new file mode 100644 index 0000000..a86a585 Binary files /dev/null and b/train/pictures/9da4e95e55a811832d64906a2e4b7724.png differ diff --git a/train/pictures/9df154abe4b52682b2cc5f61c456a75b.png b/train/pictures/9df154abe4b52682b2cc5f61c456a75b.png new file mode 100644 index 0000000..b29d177 Binary files /dev/null and b/train/pictures/9df154abe4b52682b2cc5f61c456a75b.png differ diff --git a/train/pictures/9df9c824e20aaad5e6a7197e4a940cfc.png b/train/pictures/9df9c824e20aaad5e6a7197e4a940cfc.png new file mode 100644 index 0000000..5858aea Binary files /dev/null and b/train/pictures/9df9c824e20aaad5e6a7197e4a940cfc.png differ diff --git a/train/pictures/9e0c0e8d4d238c15001b85ae046d76bf.png b/train/pictures/9e0c0e8d4d238c15001b85ae046d76bf.png new file mode 100644 index 0000000..013682b Binary files /dev/null and b/train/pictures/9e0c0e8d4d238c15001b85ae046d76bf.png differ diff --git a/train/pictures/9e21c4dad5c825b7c530c0be0b20ad0e.png b/train/pictures/9e21c4dad5c825b7c530c0be0b20ad0e.png new file mode 100644 index 0000000..ab25589 Binary files /dev/null and b/train/pictures/9e21c4dad5c825b7c530c0be0b20ad0e.png differ diff --git a/train/pictures/9e8becfe20b9d96bd0d059a8c6b9a268.png b/train/pictures/9e8becfe20b9d96bd0d059a8c6b9a268.png new file mode 100644 index 0000000..d18f8e5 Binary files /dev/null and b/train/pictures/9e8becfe20b9d96bd0d059a8c6b9a268.png differ diff --git a/train/pictures/9eb9b444a2d31f3dea060787a64b1161.png b/train/pictures/9eb9b444a2d31f3dea060787a64b1161.png new file mode 100644 index 0000000..b9c1a11 Binary files /dev/null and b/train/pictures/9eb9b444a2d31f3dea060787a64b1161.png differ diff --git a/train/pictures/9f6785b775b4a36603cbf1648bbab76c.png b/train/pictures/9f6785b775b4a36603cbf1648bbab76c.png new file mode 100644 index 0000000..fffaae6 Binary files /dev/null and b/train/pictures/9f6785b775b4a36603cbf1648bbab76c.png differ diff --git a/train/pictures/a08b497efcb73b50243163a6b35d4687.png b/train/pictures/a08b497efcb73b50243163a6b35d4687.png new file mode 100644 index 0000000..1abb7dd Binary files /dev/null and b/train/pictures/a08b497efcb73b50243163a6b35d4687.png differ diff --git a/train/pictures/a1136fc54f9077b8031b99c61443fa01.png b/train/pictures/a1136fc54f9077b8031b99c61443fa01.png new file mode 100644 index 0000000..3e449a4 Binary files /dev/null and b/train/pictures/a1136fc54f9077b8031b99c61443fa01.png differ diff --git a/train/pictures/a11796365b70b9bf6e5714422685faa9.png b/train/pictures/a11796365b70b9bf6e5714422685faa9.png new file mode 100644 index 0000000..9df04cf Binary files /dev/null and b/train/pictures/a11796365b70b9bf6e5714422685faa9.png differ diff --git a/train/pictures/a1704dc3de4eb0a15ca6783005feba1b.png b/train/pictures/a1704dc3de4eb0a15ca6783005feba1b.png new file mode 100644 index 0000000..2e7981c Binary files /dev/null and b/train/pictures/a1704dc3de4eb0a15ca6783005feba1b.png differ diff --git a/train/pictures/a1c58041d6ebaeef392acf883bb4d888.png b/train/pictures/a1c58041d6ebaeef392acf883bb4d888.png new file mode 100644 index 0000000..d207866 Binary files /dev/null and b/train/pictures/a1c58041d6ebaeef392acf883bb4d888.png differ diff --git a/train/pictures/a1e8987680460b408d0ee24fe595e22f.png b/train/pictures/a1e8987680460b408d0ee24fe595e22f.png new file mode 100644 index 0000000..46d04ef Binary files /dev/null and b/train/pictures/a1e8987680460b408d0ee24fe595e22f.png differ diff --git a/train/pictures/a20bf4f2a3e48077fe7e56c4726d7f92.png b/train/pictures/a20bf4f2a3e48077fe7e56c4726d7f92.png new file mode 100644 index 0000000..7872edf Binary files /dev/null and b/train/pictures/a20bf4f2a3e48077fe7e56c4726d7f92.png differ diff --git a/train/pictures/a29e806ed5eb9e8130fa7a130ff2b3dd.png b/train/pictures/a29e806ed5eb9e8130fa7a130ff2b3dd.png new file mode 100644 index 0000000..3df3174 Binary files /dev/null and b/train/pictures/a29e806ed5eb9e8130fa7a130ff2b3dd.png differ diff --git a/train/pictures/a2d747523fdc84c191357b6bd4fe430c.png b/train/pictures/a2d747523fdc84c191357b6bd4fe430c.png new file mode 100644 index 0000000..1094e86 Binary files /dev/null and b/train/pictures/a2d747523fdc84c191357b6bd4fe430c.png differ diff --git a/train/pictures/a357624204085dbb3b1fadb8ebe9ba76.png b/train/pictures/a357624204085dbb3b1fadb8ebe9ba76.png new file mode 100644 index 0000000..92ed338 Binary files /dev/null and b/train/pictures/a357624204085dbb3b1fadb8ebe9ba76.png differ diff --git a/train/pictures/a4abb2991f5c117cf522e5ce7eb694ec.png b/train/pictures/a4abb2991f5c117cf522e5ce7eb694ec.png new file mode 100644 index 0000000..ee9273a Binary files /dev/null and b/train/pictures/a4abb2991f5c117cf522e5ce7eb694ec.png differ diff --git a/train/pictures/a51ab3770ee85d1a3bc0bdbb5c31d866.png b/train/pictures/a51ab3770ee85d1a3bc0bdbb5c31d866.png new file mode 100644 index 0000000..60ac1b0 Binary files /dev/null and b/train/pictures/a51ab3770ee85d1a3bc0bdbb5c31d866.png differ diff --git a/train/pictures/a522553d47f3e02d477010b303285539.png b/train/pictures/a522553d47f3e02d477010b303285539.png new file mode 100644 index 0000000..64e74c5 Binary files /dev/null and b/train/pictures/a522553d47f3e02d477010b303285539.png differ diff --git a/train/pictures/a538a960b312ecc1fe1b0faa4dc94fca.png b/train/pictures/a538a960b312ecc1fe1b0faa4dc94fca.png new file mode 100644 index 0000000..e9d7bf9 Binary files /dev/null and b/train/pictures/a538a960b312ecc1fe1b0faa4dc94fca.png differ diff --git a/train/pictures/a5407f4a9418cf058e2a2f9d9e608236.png b/train/pictures/a5407f4a9418cf058e2a2f9d9e608236.png new file mode 100644 index 0000000..ae3ae24 Binary files /dev/null and b/train/pictures/a5407f4a9418cf058e2a2f9d9e608236.png differ diff --git a/train/pictures/a6c2e0a36342461c9d480d74d2ed1046.png b/train/pictures/a6c2e0a36342461c9d480d74d2ed1046.png new file mode 100644 index 0000000..ace5bee Binary files /dev/null and b/train/pictures/a6c2e0a36342461c9d480d74d2ed1046.png differ diff --git a/train/pictures/a70c70a0e58e9655ae26b020cb9e1b6f.png b/train/pictures/a70c70a0e58e9655ae26b020cb9e1b6f.png new file mode 100644 index 0000000..bf5192b Binary files /dev/null and b/train/pictures/a70c70a0e58e9655ae26b020cb9e1b6f.png differ diff --git a/train/pictures/a72863beefb06d921f5082e37156f973.png b/train/pictures/a72863beefb06d921f5082e37156f973.png new file mode 100644 index 0000000..dd20f47 Binary files /dev/null and b/train/pictures/a72863beefb06d921f5082e37156f973.png differ diff --git a/train/pictures/a749be6d2191eba8e1a917846bb144fe.png b/train/pictures/a749be6d2191eba8e1a917846bb144fe.png new file mode 100644 index 0000000..0357bf2 Binary files /dev/null and b/train/pictures/a749be6d2191eba8e1a917846bb144fe.png differ diff --git a/train/pictures/a75873e5a35aec8daa8389e6351cbb67.png b/train/pictures/a75873e5a35aec8daa8389e6351cbb67.png new file mode 100644 index 0000000..b1c7e54 Binary files /dev/null and b/train/pictures/a75873e5a35aec8daa8389e6351cbb67.png differ diff --git a/train/pictures/a7a20fa1b30aaf1ad2a9eefeb1fcebfa.png b/train/pictures/a7a20fa1b30aaf1ad2a9eefeb1fcebfa.png new file mode 100644 index 0000000..32c6fd6 Binary files /dev/null and b/train/pictures/a7a20fa1b30aaf1ad2a9eefeb1fcebfa.png differ diff --git a/train/pictures/a7d107cbac0bc9d1d999ba51a24e581a.png b/train/pictures/a7d107cbac0bc9d1d999ba51a24e581a.png new file mode 100644 index 0000000..3579bf1 Binary files /dev/null and b/train/pictures/a7d107cbac0bc9d1d999ba51a24e581a.png differ diff --git a/train/pictures/a7ebb98e7dde891edde617f3cea95e1c.png b/train/pictures/a7ebb98e7dde891edde617f3cea95e1c.png new file mode 100644 index 0000000..8d5c3ef Binary files /dev/null and b/train/pictures/a7ebb98e7dde891edde617f3cea95e1c.png differ diff --git a/train/pictures/a7f1acb07e2b2241e8056c68ff946bbb.png b/train/pictures/a7f1acb07e2b2241e8056c68ff946bbb.png new file mode 100644 index 0000000..fd828d7 Binary files /dev/null and b/train/pictures/a7f1acb07e2b2241e8056c68ff946bbb.png differ diff --git a/train/pictures/a87509577570596266b17b7bcc06e60d.png b/train/pictures/a87509577570596266b17b7bcc06e60d.png new file mode 100644 index 0000000..68bed5b Binary files /dev/null and b/train/pictures/a87509577570596266b17b7bcc06e60d.png differ diff --git a/train/pictures/a8f18feacc94971b411c1aeb1b7bc196.png b/train/pictures/a8f18feacc94971b411c1aeb1b7bc196.png new file mode 100644 index 0000000..65156c0 Binary files /dev/null and b/train/pictures/a8f18feacc94971b411c1aeb1b7bc196.png differ diff --git a/train/pictures/a93c0171889396d9540a1f558564d28d.png b/train/pictures/a93c0171889396d9540a1f558564d28d.png new file mode 100644 index 0000000..435719c Binary files /dev/null and b/train/pictures/a93c0171889396d9540a1f558564d28d.png differ diff --git a/train/pictures/a96495745f6d107ece57785b79de1ebb.png b/train/pictures/a96495745f6d107ece57785b79de1ebb.png new file mode 100644 index 0000000..32e6971 Binary files /dev/null and b/train/pictures/a96495745f6d107ece57785b79de1ebb.png differ diff --git a/train/pictures/a98b230b7de5bcf8e2031dd72d065619.png b/train/pictures/a98b230b7de5bcf8e2031dd72d065619.png new file mode 100644 index 0000000..2f601fc Binary files /dev/null and b/train/pictures/a98b230b7de5bcf8e2031dd72d065619.png differ diff --git a/train/pictures/a98dcbf05b96ab64e45490c048c0f1fd.png b/train/pictures/a98dcbf05b96ab64e45490c048c0f1fd.png new file mode 100644 index 0000000..4bfc713 Binary files /dev/null and b/train/pictures/a98dcbf05b96ab64e45490c048c0f1fd.png differ diff --git a/train/pictures/a9c110c2cdd37b68d21569c20df49b6f.png b/train/pictures/a9c110c2cdd37b68d21569c20df49b6f.png new file mode 100644 index 0000000..e613fd0 Binary files /dev/null and b/train/pictures/a9c110c2cdd37b68d21569c20df49b6f.png differ diff --git a/train/pictures/a9fa5bb3620c0f7ba7efc7c4f903a879.png b/train/pictures/a9fa5bb3620c0f7ba7efc7c4f903a879.png new file mode 100644 index 0000000..da5dcca Binary files /dev/null and b/train/pictures/a9fa5bb3620c0f7ba7efc7c4f903a879.png differ diff --git a/train/pictures/aaa927e37fbad63e7094642e6ee3824c.png b/train/pictures/aaa927e37fbad63e7094642e6ee3824c.png new file mode 100644 index 0000000..0c96a27 Binary files /dev/null and b/train/pictures/aaa927e37fbad63e7094642e6ee3824c.png differ diff --git a/train/pictures/aaba2edbc14aad7cb44f6f76739d6ce7.png b/train/pictures/aaba2edbc14aad7cb44f6f76739d6ce7.png new file mode 100644 index 0000000..26dda3d Binary files /dev/null and b/train/pictures/aaba2edbc14aad7cb44f6f76739d6ce7.png differ diff --git a/train/pictures/ab1675fc1bb93a388967ee32815df10e.png b/train/pictures/ab1675fc1bb93a388967ee32815df10e.png new file mode 100644 index 0000000..c2f49c9 Binary files /dev/null and b/train/pictures/ab1675fc1bb93a388967ee32815df10e.png differ diff --git a/train/pictures/ab3e14bf2bf1b35dab62a0c4b5bbb82b.png b/train/pictures/ab3e14bf2bf1b35dab62a0c4b5bbb82b.png new file mode 100644 index 0000000..e5cb65d Binary files /dev/null and b/train/pictures/ab3e14bf2bf1b35dab62a0c4b5bbb82b.png differ diff --git a/train/pictures/ab6979b34bfdd7fdf854f1f348993d98.png b/train/pictures/ab6979b34bfdd7fdf854f1f348993d98.png new file mode 100644 index 0000000..07b22c8 Binary files /dev/null and b/train/pictures/ab6979b34bfdd7fdf854f1f348993d98.png differ diff --git a/train/pictures/abaaa955cb4c094069e11c7a3257223a.png b/train/pictures/abaaa955cb4c094069e11c7a3257223a.png new file mode 100644 index 0000000..3c8de84 Binary files /dev/null and b/train/pictures/abaaa955cb4c094069e11c7a3257223a.png differ diff --git a/train/pictures/abb24b9bcd319f5e4baad70e0ac9c0ee.png b/train/pictures/abb24b9bcd319f5e4baad70e0ac9c0ee.png new file mode 100644 index 0000000..216384a Binary files /dev/null and b/train/pictures/abb24b9bcd319f5e4baad70e0ac9c0ee.png differ diff --git a/train/pictures/ac1acef1cb270e5f41c967597ea03b74.png b/train/pictures/ac1acef1cb270e5f41c967597ea03b74.png new file mode 100644 index 0000000..db4ebd6 Binary files /dev/null and b/train/pictures/ac1acef1cb270e5f41c967597ea03b74.png differ diff --git a/train/pictures/ac2cf7bfb5293c7846c4d2e8806ba687.png b/train/pictures/ac2cf7bfb5293c7846c4d2e8806ba687.png new file mode 100644 index 0000000..5e3c78f Binary files /dev/null and b/train/pictures/ac2cf7bfb5293c7846c4d2e8806ba687.png differ diff --git a/train/pictures/ac7960c2509132b798dbc9a90da35b67.png b/train/pictures/ac7960c2509132b798dbc9a90da35b67.png new file mode 100644 index 0000000..647ece7 Binary files /dev/null and b/train/pictures/ac7960c2509132b798dbc9a90da35b67.png differ diff --git a/train/pictures/ad3e5ef89c14a9e17c07f0d2608dd0ae.png b/train/pictures/ad3e5ef89c14a9e17c07f0d2608dd0ae.png new file mode 100644 index 0000000..2db3068 Binary files /dev/null and b/train/pictures/ad3e5ef89c14a9e17c07f0d2608dd0ae.png differ diff --git a/train/pictures/ad9ef6ee9151171e2a892d888c84166c.png b/train/pictures/ad9ef6ee9151171e2a892d888c84166c.png new file mode 100644 index 0000000..9ab7491 Binary files /dev/null and b/train/pictures/ad9ef6ee9151171e2a892d888c84166c.png differ diff --git a/train/pictures/afd7f9b833bdecb27eae057f31c53c64.png b/train/pictures/afd7f9b833bdecb27eae057f31c53c64.png new file mode 100644 index 0000000..ce7a8d2 Binary files /dev/null and b/train/pictures/afd7f9b833bdecb27eae057f31c53c64.png differ diff --git a/train/pictures/b0312a18093c21b49d48e7294e062f1b.png b/train/pictures/b0312a18093c21b49d48e7294e062f1b.png new file mode 100644 index 0000000..25489d6 Binary files /dev/null and b/train/pictures/b0312a18093c21b49d48e7294e062f1b.png differ diff --git a/train/pictures/b035e63d46e2b615e558657434af7663.png b/train/pictures/b035e63d46e2b615e558657434af7663.png new file mode 100644 index 0000000..494ced3 Binary files /dev/null and b/train/pictures/b035e63d46e2b615e558657434af7663.png differ diff --git a/train/pictures/b07b6d01c61a23c318185125fb84d7a4.png b/train/pictures/b07b6d01c61a23c318185125fb84d7a4.png new file mode 100644 index 0000000..5e6e712 Binary files /dev/null and b/train/pictures/b07b6d01c61a23c318185125fb84d7a4.png differ diff --git a/train/pictures/b09eea715d89bf712436457e9a1cd821.png b/train/pictures/b09eea715d89bf712436457e9a1cd821.png new file mode 100644 index 0000000..05bc0d1 Binary files /dev/null and b/train/pictures/b09eea715d89bf712436457e9a1cd821.png differ diff --git a/train/pictures/b0b1259ea2d37acaa9b458a864e9ec6e.png b/train/pictures/b0b1259ea2d37acaa9b458a864e9ec6e.png new file mode 100644 index 0000000..fd82fda Binary files /dev/null and b/train/pictures/b0b1259ea2d37acaa9b458a864e9ec6e.png differ diff --git a/train/pictures/b167c5536dc9fdc34daab5aedd2e737a.png b/train/pictures/b167c5536dc9fdc34daab5aedd2e737a.png new file mode 100644 index 0000000..7615086 Binary files /dev/null and b/train/pictures/b167c5536dc9fdc34daab5aedd2e737a.png differ diff --git a/train/pictures/b194c8dd77adbe47d1e459460935a359.png b/train/pictures/b194c8dd77adbe47d1e459460935a359.png new file mode 100644 index 0000000..de98a56 Binary files /dev/null and b/train/pictures/b194c8dd77adbe47d1e459460935a359.png differ diff --git a/train/pictures/b1f1a3fc6026407682f702842e02dc28.png b/train/pictures/b1f1a3fc6026407682f702842e02dc28.png new file mode 100644 index 0000000..1853f29 Binary files /dev/null and b/train/pictures/b1f1a3fc6026407682f702842e02dc28.png differ diff --git a/train/pictures/b1f7169fcc8876f1fe10c4d69f2fcd29.png b/train/pictures/b1f7169fcc8876f1fe10c4d69f2fcd29.png new file mode 100644 index 0000000..22a6ae6 Binary files /dev/null and b/train/pictures/b1f7169fcc8876f1fe10c4d69f2fcd29.png differ diff --git a/train/pictures/b1fd2226e26ffdbe5f05da9d3d849e85.png b/train/pictures/b1fd2226e26ffdbe5f05da9d3d849e85.png new file mode 100644 index 0000000..b5caf12 Binary files /dev/null and b/train/pictures/b1fd2226e26ffdbe5f05da9d3d849e85.png differ diff --git a/train/pictures/b22a1c9312addcbe4f45e96ac8a9dd5c.png b/train/pictures/b22a1c9312addcbe4f45e96ac8a9dd5c.png new file mode 100644 index 0000000..6789a50 Binary files /dev/null and b/train/pictures/b22a1c9312addcbe4f45e96ac8a9dd5c.png differ diff --git a/train/pictures/b31a7c49d475ebe648aebfe2c48ee0e6.png b/train/pictures/b31a7c49d475ebe648aebfe2c48ee0e6.png new file mode 100644 index 0000000..d038f80 Binary files /dev/null and b/train/pictures/b31a7c49d475ebe648aebfe2c48ee0e6.png differ diff --git a/train/pictures/b33a1e0954636d8c45fc36e2a4841cac.png b/train/pictures/b33a1e0954636d8c45fc36e2a4841cac.png new file mode 100644 index 0000000..2c2a1ce Binary files /dev/null and b/train/pictures/b33a1e0954636d8c45fc36e2a4841cac.png differ diff --git a/train/pictures/b3c05fc4c1cfcdde4a0a390e834ca1b3.png b/train/pictures/b3c05fc4c1cfcdde4a0a390e834ca1b3.png new file mode 100644 index 0000000..c84e823 Binary files /dev/null and b/train/pictures/b3c05fc4c1cfcdde4a0a390e834ca1b3.png differ diff --git a/train/pictures/b3f9468c599178aeb15c47ef47bae0e9.png b/train/pictures/b3f9468c599178aeb15c47ef47bae0e9.png new file mode 100644 index 0000000..e42dcf9 Binary files /dev/null and b/train/pictures/b3f9468c599178aeb15c47ef47bae0e9.png differ diff --git a/train/pictures/b48d8dc1b0b36d687f30ca680f5432ad.png b/train/pictures/b48d8dc1b0b36d687f30ca680f5432ad.png new file mode 100644 index 0000000..828270d Binary files /dev/null and b/train/pictures/b48d8dc1b0b36d687f30ca680f5432ad.png differ diff --git a/train/pictures/b50c0899f9170516a33ee877771a4bf4.png b/train/pictures/b50c0899f9170516a33ee877771a4bf4.png new file mode 100644 index 0000000..5d434e9 Binary files /dev/null and b/train/pictures/b50c0899f9170516a33ee877771a4bf4.png differ diff --git a/train/pictures/b518e6ed41c5a58824890214c0fd98c5.png b/train/pictures/b518e6ed41c5a58824890214c0fd98c5.png new file mode 100644 index 0000000..1e26007 Binary files /dev/null and b/train/pictures/b518e6ed41c5a58824890214c0fd98c5.png differ diff --git a/train/pictures/b57d958a742c085b51c314847fe95809.png b/train/pictures/b57d958a742c085b51c314847fe95809.png new file mode 100644 index 0000000..9448e5c Binary files /dev/null and b/train/pictures/b57d958a742c085b51c314847fe95809.png differ diff --git a/train/pictures/b5c5c7bb66eaed682e5092a44a697bc6.png b/train/pictures/b5c5c7bb66eaed682e5092a44a697bc6.png new file mode 100644 index 0000000..785bfb5 Binary files /dev/null and b/train/pictures/b5c5c7bb66eaed682e5092a44a697bc6.png differ diff --git a/train/pictures/b5d1cb3a6d44d63e4d4faae98fea3cd6.png b/train/pictures/b5d1cb3a6d44d63e4d4faae98fea3cd6.png new file mode 100644 index 0000000..270b454 Binary files /dev/null and b/train/pictures/b5d1cb3a6d44d63e4d4faae98fea3cd6.png differ diff --git a/train/pictures/b5f93cbc6dad1acc4534caac0a5e7f54.png b/train/pictures/b5f93cbc6dad1acc4534caac0a5e7f54.png new file mode 100644 index 0000000..bc9bff2 Binary files /dev/null and b/train/pictures/b5f93cbc6dad1acc4534caac0a5e7f54.png differ diff --git a/train/pictures/b6de472022d37d281adaf633f88a69f6.png b/train/pictures/b6de472022d37d281adaf633f88a69f6.png new file mode 100644 index 0000000..b1e2f83 Binary files /dev/null and b/train/pictures/b6de472022d37d281adaf633f88a69f6.png differ diff --git a/train/pictures/b6e63dfad8552a89d510916a782290c1.png b/train/pictures/b6e63dfad8552a89d510916a782290c1.png new file mode 100644 index 0000000..ae68cff Binary files /dev/null and b/train/pictures/b6e63dfad8552a89d510916a782290c1.png differ diff --git a/train/pictures/b73f9305ce9ca7900c2a70168d6749c9.png b/train/pictures/b73f9305ce9ca7900c2a70168d6749c9.png new file mode 100644 index 0000000..74ef506 Binary files /dev/null and b/train/pictures/b73f9305ce9ca7900c2a70168d6749c9.png differ diff --git a/train/pictures/b79951c714b59a08205f11a3e1d5d041.png b/train/pictures/b79951c714b59a08205f11a3e1d5d041.png new file mode 100644 index 0000000..42fc0c9 Binary files /dev/null and b/train/pictures/b79951c714b59a08205f11a3e1d5d041.png differ diff --git a/train/pictures/b7a76b333b8cb0ffd695630b30a37bfc.png b/train/pictures/b7a76b333b8cb0ffd695630b30a37bfc.png new file mode 100644 index 0000000..82e6900 Binary files /dev/null and b/train/pictures/b7a76b333b8cb0ffd695630b30a37bfc.png differ diff --git a/train/pictures/b7b06711a81fbbb117dfc9accd73861e.png b/train/pictures/b7b06711a81fbbb117dfc9accd73861e.png new file mode 100644 index 0000000..c3a08da Binary files /dev/null and b/train/pictures/b7b06711a81fbbb117dfc9accd73861e.png differ diff --git a/train/pictures/b7b0bf2076d504cf7b10dfb2cfdb0a94.png b/train/pictures/b7b0bf2076d504cf7b10dfb2cfdb0a94.png new file mode 100644 index 0000000..0e88883 Binary files /dev/null and b/train/pictures/b7b0bf2076d504cf7b10dfb2cfdb0a94.png differ diff --git a/train/pictures/b826f64b08fc1329c796542c85b5766d.png b/train/pictures/b826f64b08fc1329c796542c85b5766d.png new file mode 100644 index 0000000..3e16803 Binary files /dev/null and b/train/pictures/b826f64b08fc1329c796542c85b5766d.png differ diff --git a/train/pictures/b8728a78031ee9ec0e8c77de8b356302.png b/train/pictures/b8728a78031ee9ec0e8c77de8b356302.png new file mode 100644 index 0000000..776cd3a Binary files /dev/null and b/train/pictures/b8728a78031ee9ec0e8c77de8b356302.png differ diff --git a/train/pictures/b90286c0349e921d32a2782a5b9bdc4e.png b/train/pictures/b90286c0349e921d32a2782a5b9bdc4e.png new file mode 100644 index 0000000..dcb7bd2 Binary files /dev/null and b/train/pictures/b90286c0349e921d32a2782a5b9bdc4e.png differ diff --git a/train/pictures/b9ce27aee31f96d2bdcab92ad36bf220.png b/train/pictures/b9ce27aee31f96d2bdcab92ad36bf220.png new file mode 100644 index 0000000..0ad7d1c Binary files /dev/null and b/train/pictures/b9ce27aee31f96d2bdcab92ad36bf220.png differ diff --git a/train/pictures/b9d22f44f35dbd5c96611754da3b800a.png b/train/pictures/b9d22f44f35dbd5c96611754da3b800a.png new file mode 100644 index 0000000..92c94b7 Binary files /dev/null and b/train/pictures/b9d22f44f35dbd5c96611754da3b800a.png differ diff --git a/train/pictures/ba191964ad0d7d2419abc7f4a5b5b36a.png b/train/pictures/ba191964ad0d7d2419abc7f4a5b5b36a.png new file mode 100644 index 0000000..ed254e1 Binary files /dev/null and b/train/pictures/ba191964ad0d7d2419abc7f4a5b5b36a.png differ diff --git a/train/pictures/ba4f301c4a3465a54c621e50c9b7baea.png b/train/pictures/ba4f301c4a3465a54c621e50c9b7baea.png new file mode 100644 index 0000000..d52fa52 Binary files /dev/null and b/train/pictures/ba4f301c4a3465a54c621e50c9b7baea.png differ diff --git a/train/pictures/ba82cfc597e7570e678b4a4be6a7ac56.png b/train/pictures/ba82cfc597e7570e678b4a4be6a7ac56.png new file mode 100644 index 0000000..c3f3892 Binary files /dev/null and b/train/pictures/ba82cfc597e7570e678b4a4be6a7ac56.png differ diff --git a/train/pictures/baa70b830839a267ead61ad0ad4e5aad.png b/train/pictures/baa70b830839a267ead61ad0ad4e5aad.png new file mode 100644 index 0000000..1a93e91 Binary files /dev/null and b/train/pictures/baa70b830839a267ead61ad0ad4e5aad.png differ diff --git a/train/pictures/baca5a8850ec1b22d0fb441586fa9051.png b/train/pictures/baca5a8850ec1b22d0fb441586fa9051.png new file mode 100644 index 0000000..148cb6f Binary files /dev/null and b/train/pictures/baca5a8850ec1b22d0fb441586fa9051.png differ diff --git a/train/pictures/bbafff3bae4c95a2ee44affd2074a013.png b/train/pictures/bbafff3bae4c95a2ee44affd2074a013.png new file mode 100644 index 0000000..851ecf2 Binary files /dev/null and b/train/pictures/bbafff3bae4c95a2ee44affd2074a013.png differ diff --git a/train/pictures/bc2e479bd4c4f15f93f7cfa1e63d1fa2.png b/train/pictures/bc2e479bd4c4f15f93f7cfa1e63d1fa2.png new file mode 100644 index 0000000..6d4c718 Binary files /dev/null and b/train/pictures/bc2e479bd4c4f15f93f7cfa1e63d1fa2.png differ diff --git a/train/pictures/bc4ef90d7edf1ed44af48ae8be0b3101.png b/train/pictures/bc4ef90d7edf1ed44af48ae8be0b3101.png new file mode 100644 index 0000000..675eb2c Binary files /dev/null and b/train/pictures/bc4ef90d7edf1ed44af48ae8be0b3101.png differ diff --git a/train/pictures/bc4fc766e3a67256541ac5750f34a9ec.png b/train/pictures/bc4fc766e3a67256541ac5750f34a9ec.png new file mode 100644 index 0000000..dd340bb Binary files /dev/null and b/train/pictures/bc4fc766e3a67256541ac5750f34a9ec.png differ diff --git a/train/pictures/bc9228d231789cc0d316a5e604643906.png b/train/pictures/bc9228d231789cc0d316a5e604643906.png new file mode 100644 index 0000000..461eb7b Binary files /dev/null and b/train/pictures/bc9228d231789cc0d316a5e604643906.png differ diff --git a/train/pictures/bd774a918e040bdc0c0cd03800d8be3d.png b/train/pictures/bd774a918e040bdc0c0cd03800d8be3d.png new file mode 100644 index 0000000..671b460 Binary files /dev/null and b/train/pictures/bd774a918e040bdc0c0cd03800d8be3d.png differ diff --git a/train/pictures/bd8de0321024c58da65a62615b7d9a2d.png b/train/pictures/bd8de0321024c58da65a62615b7d9a2d.png new file mode 100644 index 0000000..871b5a1 Binary files /dev/null and b/train/pictures/bd8de0321024c58da65a62615b7d9a2d.png differ diff --git a/train/pictures/be6a041545309742f38a299b4f28b1cb.png b/train/pictures/be6a041545309742f38a299b4f28b1cb.png new file mode 100644 index 0000000..c5f7a4f Binary files /dev/null and b/train/pictures/be6a041545309742f38a299b4f28b1cb.png differ diff --git a/train/pictures/be9ec05cfbfd6fd378f7115e04c0dca1.png b/train/pictures/be9ec05cfbfd6fd378f7115e04c0dca1.png new file mode 100644 index 0000000..eaa055e Binary files /dev/null and b/train/pictures/be9ec05cfbfd6fd378f7115e04c0dca1.png differ diff --git a/train/pictures/bea118df8dfa03b2df93af3b90b034ef.png b/train/pictures/bea118df8dfa03b2df93af3b90b034ef.png new file mode 100644 index 0000000..f9013bc Binary files /dev/null and b/train/pictures/bea118df8dfa03b2df93af3b90b034ef.png differ diff --git a/train/pictures/bef4613f147c9f5e63e8c3652a36ff6e.png b/train/pictures/bef4613f147c9f5e63e8c3652a36ff6e.png new file mode 100644 index 0000000..1428fcb Binary files /dev/null and b/train/pictures/bef4613f147c9f5e63e8c3652a36ff6e.png differ diff --git a/train/pictures/bf729825a78c517d827e0a3be306791b.png b/train/pictures/bf729825a78c517d827e0a3be306791b.png new file mode 100644 index 0000000..432b65c Binary files /dev/null and b/train/pictures/bf729825a78c517d827e0a3be306791b.png differ diff --git a/train/pictures/c002f3aae07d57afa6b397594b906264.png b/train/pictures/c002f3aae07d57afa6b397594b906264.png new file mode 100644 index 0000000..da8860d Binary files /dev/null and b/train/pictures/c002f3aae07d57afa6b397594b906264.png differ diff --git a/train/pictures/c037a1be201317aa4da8e96c97fc4be1.png b/train/pictures/c037a1be201317aa4da8e96c97fc4be1.png new file mode 100644 index 0000000..6c3a190 Binary files /dev/null and b/train/pictures/c037a1be201317aa4da8e96c97fc4be1.png differ diff --git a/train/pictures/c057929aa206396c2f936de3fdeeaee5.png b/train/pictures/c057929aa206396c2f936de3fdeeaee5.png new file mode 100644 index 0000000..56631a8 Binary files /dev/null and b/train/pictures/c057929aa206396c2f936de3fdeeaee5.png differ diff --git a/train/pictures/c0924a673309ca6c0b1e3785d72b7d08.png b/train/pictures/c0924a673309ca6c0b1e3785d72b7d08.png new file mode 100644 index 0000000..4996ff3 Binary files /dev/null and b/train/pictures/c0924a673309ca6c0b1e3785d72b7d08.png differ diff --git a/train/pictures/c0f19883d02ea7153f872c92b4731405.png b/train/pictures/c0f19883d02ea7153f872c92b4731405.png new file mode 100644 index 0000000..7084775 Binary files /dev/null and b/train/pictures/c0f19883d02ea7153f872c92b4731405.png differ diff --git a/train/pictures/c1634bf4ef5dca50ead8d85ec9f2c6f3.png b/train/pictures/c1634bf4ef5dca50ead8d85ec9f2c6f3.png new file mode 100644 index 0000000..a732c5d Binary files /dev/null and b/train/pictures/c1634bf4ef5dca50ead8d85ec9f2c6f3.png differ diff --git a/train/pictures/c168e0e9d881ea6c7ff1ff074290ec6c.png b/train/pictures/c168e0e9d881ea6c7ff1ff074290ec6c.png new file mode 100644 index 0000000..fa3be24 Binary files /dev/null and b/train/pictures/c168e0e9d881ea6c7ff1ff074290ec6c.png differ diff --git a/train/pictures/c18e3c6b93048a11c2fc3730c4db3135.png b/train/pictures/c18e3c6b93048a11c2fc3730c4db3135.png new file mode 100644 index 0000000..058988b Binary files /dev/null and b/train/pictures/c18e3c6b93048a11c2fc3730c4db3135.png differ diff --git a/train/pictures/c1f5133213f70c171c42c5a556df07d0.png b/train/pictures/c1f5133213f70c171c42c5a556df07d0.png new file mode 100644 index 0000000..1662327 Binary files /dev/null and b/train/pictures/c1f5133213f70c171c42c5a556df07d0.png differ diff --git a/train/pictures/c202b7783f790114dc31dcd217144e79.png b/train/pictures/c202b7783f790114dc31dcd217144e79.png new file mode 100644 index 0000000..71d0835 Binary files /dev/null and b/train/pictures/c202b7783f790114dc31dcd217144e79.png differ diff --git a/train/pictures/c278782c6919a75e715af0d2ce968310.png b/train/pictures/c278782c6919a75e715af0d2ce968310.png new file mode 100644 index 0000000..2b78e0e Binary files /dev/null and b/train/pictures/c278782c6919a75e715af0d2ce968310.png differ diff --git a/train/pictures/c284cf2508662855108585806e59b509.png b/train/pictures/c284cf2508662855108585806e59b509.png new file mode 100644 index 0000000..70a42eb Binary files /dev/null and b/train/pictures/c284cf2508662855108585806e59b509.png differ diff --git a/train/pictures/c31ea0d754485faffed9495313abfe56.png b/train/pictures/c31ea0d754485faffed9495313abfe56.png new file mode 100644 index 0000000..5cd639e Binary files /dev/null and b/train/pictures/c31ea0d754485faffed9495313abfe56.png differ diff --git a/train/pictures/c3ba4d4ea7ab317015b5c3f946e7ad15.png b/train/pictures/c3ba4d4ea7ab317015b5c3f946e7ad15.png new file mode 100644 index 0000000..7b9dedc Binary files /dev/null and b/train/pictures/c3ba4d4ea7ab317015b5c3f946e7ad15.png differ diff --git a/train/pictures/c3d87583a30c37b10a20b9be827599ef.png b/train/pictures/c3d87583a30c37b10a20b9be827599ef.png new file mode 100644 index 0000000..9069d96 Binary files /dev/null and b/train/pictures/c3d87583a30c37b10a20b9be827599ef.png differ diff --git a/train/pictures/c3e3cd0769d3c5f5041143e5ba70bc92.png b/train/pictures/c3e3cd0769d3c5f5041143e5ba70bc92.png new file mode 100644 index 0000000..7582211 Binary files /dev/null and b/train/pictures/c3e3cd0769d3c5f5041143e5ba70bc92.png differ diff --git a/train/pictures/c3e5ef4fabc6621841c87b96d14de36f.png b/train/pictures/c3e5ef4fabc6621841c87b96d14de36f.png new file mode 100644 index 0000000..ac8519b Binary files /dev/null and b/train/pictures/c3e5ef4fabc6621841c87b96d14de36f.png differ diff --git a/train/pictures/c3fe05e61ea202ddfda6419048c009d8.png b/train/pictures/c3fe05e61ea202ddfda6419048c009d8.png new file mode 100644 index 0000000..c3c477a Binary files /dev/null and b/train/pictures/c3fe05e61ea202ddfda6419048c009d8.png differ diff --git a/train/pictures/c5827552c7579deb28b67f3aaab4a5e5.png b/train/pictures/c5827552c7579deb28b67f3aaab4a5e5.png new file mode 100644 index 0000000..8a28e4e Binary files /dev/null and b/train/pictures/c5827552c7579deb28b67f3aaab4a5e5.png differ diff --git a/train/pictures/c5a847c9102b2822822c462342da9a46.png b/train/pictures/c5a847c9102b2822822c462342da9a46.png new file mode 100644 index 0000000..7f4b1a5 Binary files /dev/null and b/train/pictures/c5a847c9102b2822822c462342da9a46.png differ diff --git a/train/pictures/c682ba839027903dc2d19f1b1e53fce0.png b/train/pictures/c682ba839027903dc2d19f1b1e53fce0.png new file mode 100644 index 0000000..e54fe3d Binary files /dev/null and b/train/pictures/c682ba839027903dc2d19f1b1e53fce0.png differ diff --git a/train/pictures/c70ce2947bed24a385fe2ec96395263b.png b/train/pictures/c70ce2947bed24a385fe2ec96395263b.png new file mode 100644 index 0000000..37948d5 Binary files /dev/null and b/train/pictures/c70ce2947bed24a385fe2ec96395263b.png differ diff --git a/train/pictures/c82e60c8da38573995ed8b0129016b64.png b/train/pictures/c82e60c8da38573995ed8b0129016b64.png new file mode 100644 index 0000000..19dc3b7 Binary files /dev/null and b/train/pictures/c82e60c8da38573995ed8b0129016b64.png differ diff --git a/train/pictures/c876a3be8854088cab83efbb2252c0c1.png b/train/pictures/c876a3be8854088cab83efbb2252c0c1.png new file mode 100644 index 0000000..eb2a97e Binary files /dev/null and b/train/pictures/c876a3be8854088cab83efbb2252c0c1.png differ diff --git a/train/pictures/c8bad47a3479983b1f840ae7e273ba1b.png b/train/pictures/c8bad47a3479983b1f840ae7e273ba1b.png new file mode 100644 index 0000000..b4379c9 Binary files /dev/null and b/train/pictures/c8bad47a3479983b1f840ae7e273ba1b.png differ diff --git a/train/pictures/c8fb0494b39ae2271233f635afd7ecc2.png b/train/pictures/c8fb0494b39ae2271233f635afd7ecc2.png new file mode 100644 index 0000000..4581628 Binary files /dev/null and b/train/pictures/c8fb0494b39ae2271233f635afd7ecc2.png differ diff --git a/train/pictures/c91752718c686a71ad5c3f9189849f35.png b/train/pictures/c91752718c686a71ad5c3f9189849f35.png new file mode 100644 index 0000000..19cedf9 Binary files /dev/null and b/train/pictures/c91752718c686a71ad5c3f9189849f35.png differ diff --git a/train/pictures/c9d2b164d89e3107b200b630e30efbc3.png b/train/pictures/c9d2b164d89e3107b200b630e30efbc3.png new file mode 100644 index 0000000..ce249e4 Binary files /dev/null and b/train/pictures/c9d2b164d89e3107b200b630e30efbc3.png differ diff --git a/train/pictures/ca18a8014f478ea54a4a184bc85450d4.png b/train/pictures/ca18a8014f478ea54a4a184bc85450d4.png new file mode 100644 index 0000000..31e9a72 Binary files /dev/null and b/train/pictures/ca18a8014f478ea54a4a184bc85450d4.png differ diff --git a/train/pictures/cae06ff89fa0c86e7b5d520216d233ae.png b/train/pictures/cae06ff89fa0c86e7b5d520216d233ae.png new file mode 100644 index 0000000..c2c3054 Binary files /dev/null and b/train/pictures/cae06ff89fa0c86e7b5d520216d233ae.png differ diff --git a/train/pictures/cb9bc7db84df38f8977ebd2df92b4abd.png b/train/pictures/cb9bc7db84df38f8977ebd2df92b4abd.png new file mode 100644 index 0000000..e13c903 Binary files /dev/null and b/train/pictures/cb9bc7db84df38f8977ebd2df92b4abd.png differ diff --git a/train/pictures/cce0357fa278e2227cddde15c53d30da.png b/train/pictures/cce0357fa278e2227cddde15c53d30da.png new file mode 100644 index 0000000..7f05d01 Binary files /dev/null and b/train/pictures/cce0357fa278e2227cddde15c53d30da.png differ diff --git a/train/pictures/ccf95cf99f4b576ba97820a8f1ceb116.png b/train/pictures/ccf95cf99f4b576ba97820a8f1ceb116.png new file mode 100644 index 0000000..f79a2ec Binary files /dev/null and b/train/pictures/ccf95cf99f4b576ba97820a8f1ceb116.png differ diff --git a/train/pictures/cd0a66e25ffa433b158dd2b337e6dab1.png b/train/pictures/cd0a66e25ffa433b158dd2b337e6dab1.png new file mode 100644 index 0000000..832b37b Binary files /dev/null and b/train/pictures/cd0a66e25ffa433b158dd2b337e6dab1.png differ diff --git a/train/pictures/cd2c3c1012af4914304d5d45055d75a4.png b/train/pictures/cd2c3c1012af4914304d5d45055d75a4.png new file mode 100644 index 0000000..76592e8 Binary files /dev/null and b/train/pictures/cd2c3c1012af4914304d5d45055d75a4.png differ diff --git a/train/pictures/ce7bf8e57c70e3d7078f010807035f59.png b/train/pictures/ce7bf8e57c70e3d7078f010807035f59.png new file mode 100644 index 0000000..c364682 Binary files /dev/null and b/train/pictures/ce7bf8e57c70e3d7078f010807035f59.png differ diff --git a/train/pictures/cea274e593b082de6d210201457134ca.png b/train/pictures/cea274e593b082de6d210201457134ca.png new file mode 100644 index 0000000..ca9ce55 Binary files /dev/null and b/train/pictures/cea274e593b082de6d210201457134ca.png differ diff --git a/train/pictures/ceb07961612dc51b718ca3841f598a36.png b/train/pictures/ceb07961612dc51b718ca3841f598a36.png new file mode 100644 index 0000000..5f0e0bc Binary files /dev/null and b/train/pictures/ceb07961612dc51b718ca3841f598a36.png differ diff --git a/train/pictures/cf11add65c893f1667fea395ae8a3c99.png b/train/pictures/cf11add65c893f1667fea395ae8a3c99.png new file mode 100644 index 0000000..c88cb4e Binary files /dev/null and b/train/pictures/cf11add65c893f1667fea395ae8a3c99.png differ diff --git a/train/pictures/cf2ca2290ffb590d4236f40d37463838.png b/train/pictures/cf2ca2290ffb590d4236f40d37463838.png new file mode 100644 index 0000000..45414ae Binary files /dev/null and b/train/pictures/cf2ca2290ffb590d4236f40d37463838.png differ diff --git a/train/pictures/cf7baac53369fcc197b50e3ae19e2d9e.png b/train/pictures/cf7baac53369fcc197b50e3ae19e2d9e.png new file mode 100644 index 0000000..36a1238 Binary files /dev/null and b/train/pictures/cf7baac53369fcc197b50e3ae19e2d9e.png differ diff --git a/train/pictures/cfafe37f65dde72d900b720ef4344982.png b/train/pictures/cfafe37f65dde72d900b720ef4344982.png new file mode 100644 index 0000000..dc75a44 Binary files /dev/null and b/train/pictures/cfafe37f65dde72d900b720ef4344982.png differ diff --git a/train/pictures/cfc0fceb67e1339c30da2eaf9fe367a2.png b/train/pictures/cfc0fceb67e1339c30da2eaf9fe367a2.png new file mode 100644 index 0000000..c908ef1 Binary files /dev/null and b/train/pictures/cfc0fceb67e1339c30da2eaf9fe367a2.png differ diff --git a/train/pictures/cfefcd30e65d5cf07ecf9ebb83e90ad4.png b/train/pictures/cfefcd30e65d5cf07ecf9ebb83e90ad4.png new file mode 100644 index 0000000..d32944a Binary files /dev/null and b/train/pictures/cfefcd30e65d5cf07ecf9ebb83e90ad4.png differ diff --git a/train/pictures/d04dbe52dcabbf6ad006931900f4cab0.png b/train/pictures/d04dbe52dcabbf6ad006931900f4cab0.png new file mode 100644 index 0000000..96ddb43 Binary files /dev/null and b/train/pictures/d04dbe52dcabbf6ad006931900f4cab0.png differ diff --git a/train/pictures/d0fa5e5698ecf71719f5091ea9406d9d.png b/train/pictures/d0fa5e5698ecf71719f5091ea9406d9d.png new file mode 100644 index 0000000..5f6f834 Binary files /dev/null and b/train/pictures/d0fa5e5698ecf71719f5091ea9406d9d.png differ diff --git a/train/pictures/d158c77d350097dba9ec36eb39252f92.png b/train/pictures/d158c77d350097dba9ec36eb39252f92.png new file mode 100644 index 0000000..57ad1db Binary files /dev/null and b/train/pictures/d158c77d350097dba9ec36eb39252f92.png differ diff --git a/train/pictures/d20edd0c6b8bc7c15493b51a65258418.png b/train/pictures/d20edd0c6b8bc7c15493b51a65258418.png new file mode 100644 index 0000000..a64b08b Binary files /dev/null and b/train/pictures/d20edd0c6b8bc7c15493b51a65258418.png differ diff --git a/train/pictures/d2c8857b7a41df0e772b2d58e3cda30d.png b/train/pictures/d2c8857b7a41df0e772b2d58e3cda30d.png new file mode 100644 index 0000000..3b1ecc4 Binary files /dev/null and b/train/pictures/d2c8857b7a41df0e772b2d58e3cda30d.png differ diff --git a/train/pictures/d2f27a5585bbd84985a20f4191e1abd6.png b/train/pictures/d2f27a5585bbd84985a20f4191e1abd6.png new file mode 100644 index 0000000..d5b2793 Binary files /dev/null and b/train/pictures/d2f27a5585bbd84985a20f4191e1abd6.png differ diff --git a/train/pictures/d3263f25716f09fff640618ffe9547ea.png b/train/pictures/d3263f25716f09fff640618ffe9547ea.png new file mode 100644 index 0000000..f94a0fa Binary files /dev/null and b/train/pictures/d3263f25716f09fff640618ffe9547ea.png differ diff --git a/train/pictures/d33096fa4569bf2a4d33c542f01c682c.png b/train/pictures/d33096fa4569bf2a4d33c542f01c682c.png new file mode 100644 index 0000000..3f72aa7 Binary files /dev/null and b/train/pictures/d33096fa4569bf2a4d33c542f01c682c.png differ diff --git a/train/pictures/d34cd9a8c4f5e9ac760e1a19763bf2c3.png b/train/pictures/d34cd9a8c4f5e9ac760e1a19763bf2c3.png new file mode 100644 index 0000000..bb6b8e5 Binary files /dev/null and b/train/pictures/d34cd9a8c4f5e9ac760e1a19763bf2c3.png differ diff --git a/train/pictures/d359661f1132cf6b3ee2350ce1de4985.png b/train/pictures/d359661f1132cf6b3ee2350ce1de4985.png new file mode 100644 index 0000000..0d610ee Binary files /dev/null and b/train/pictures/d359661f1132cf6b3ee2350ce1de4985.png differ diff --git a/train/pictures/d3dd52b7f6a9409e28df5efd2411586b.png b/train/pictures/d3dd52b7f6a9409e28df5efd2411586b.png new file mode 100644 index 0000000..9728a95 Binary files /dev/null and b/train/pictures/d3dd52b7f6a9409e28df5efd2411586b.png differ diff --git a/train/pictures/d3f04b385f0a51f23205b2e7f859c571.png b/train/pictures/d3f04b385f0a51f23205b2e7f859c571.png new file mode 100644 index 0000000..4cd41c8 Binary files /dev/null and b/train/pictures/d3f04b385f0a51f23205b2e7f859c571.png differ diff --git a/train/pictures/d455c82ce39b168c8303824855b094c0.png b/train/pictures/d455c82ce39b168c8303824855b094c0.png new file mode 100644 index 0000000..8e2d4d4 Binary files /dev/null and b/train/pictures/d455c82ce39b168c8303824855b094c0.png differ diff --git a/train/pictures/d4ccebb48b9a854df397e0cc5e72a997.png b/train/pictures/d4ccebb48b9a854df397e0cc5e72a997.png new file mode 100644 index 0000000..79fa6cc Binary files /dev/null and b/train/pictures/d4ccebb48b9a854df397e0cc5e72a997.png differ diff --git a/train/pictures/d4cee2c147a7b8b3a81f76cfb7cedbde.png b/train/pictures/d4cee2c147a7b8b3a81f76cfb7cedbde.png new file mode 100644 index 0000000..223d8af Binary files /dev/null and b/train/pictures/d4cee2c147a7b8b3a81f76cfb7cedbde.png differ diff --git a/train/pictures/d4e2eb267622a822c0b10ac098db75c4.png b/train/pictures/d4e2eb267622a822c0b10ac098db75c4.png new file mode 100644 index 0000000..273f530 Binary files /dev/null and b/train/pictures/d4e2eb267622a822c0b10ac098db75c4.png differ diff --git a/train/pictures/d537af839a137743b0bf406da44728b1.png b/train/pictures/d537af839a137743b0bf406da44728b1.png new file mode 100644 index 0000000..3ea1853 Binary files /dev/null and b/train/pictures/d537af839a137743b0bf406da44728b1.png differ diff --git a/train/pictures/d61a560f5d9c5dde07dd63272fb1b509.png b/train/pictures/d61a560f5d9c5dde07dd63272fb1b509.png new file mode 100644 index 0000000..8749da9 Binary files /dev/null and b/train/pictures/d61a560f5d9c5dde07dd63272fb1b509.png differ diff --git a/train/pictures/d66aba178c62de373cba1f6bd25df192.png b/train/pictures/d66aba178c62de373cba1f6bd25df192.png new file mode 100644 index 0000000..5eccc50 Binary files /dev/null and b/train/pictures/d66aba178c62de373cba1f6bd25df192.png differ diff --git a/train/pictures/d6827ec8d0c8053e66ffe155db15a6b7.png b/train/pictures/d6827ec8d0c8053e66ffe155db15a6b7.png new file mode 100644 index 0000000..49640e8 Binary files /dev/null and b/train/pictures/d6827ec8d0c8053e66ffe155db15a6b7.png differ diff --git a/train/pictures/d6e44b08472dd7e30d5429d315ffe97d.png b/train/pictures/d6e44b08472dd7e30d5429d315ffe97d.png new file mode 100644 index 0000000..5eb16d1 Binary files /dev/null and b/train/pictures/d6e44b08472dd7e30d5429d315ffe97d.png differ diff --git a/train/pictures/d7b365b6b270461d794bec3262f8fcfe.png b/train/pictures/d7b365b6b270461d794bec3262f8fcfe.png new file mode 100644 index 0000000..5158cd7 Binary files /dev/null and b/train/pictures/d7b365b6b270461d794bec3262f8fcfe.png differ diff --git a/train/pictures/d8b883b95865d7c4a9822b0e3fc7d8d3.png b/train/pictures/d8b883b95865d7c4a9822b0e3fc7d8d3.png new file mode 100644 index 0000000..c978f35 Binary files /dev/null and b/train/pictures/d8b883b95865d7c4a9822b0e3fc7d8d3.png differ diff --git a/train/pictures/d93a38981d64b8a0fc89881c5803ed8e.png b/train/pictures/d93a38981d64b8a0fc89881c5803ed8e.png new file mode 100644 index 0000000..ccf148b Binary files /dev/null and b/train/pictures/d93a38981d64b8a0fc89881c5803ed8e.png differ diff --git a/train/pictures/d9771aae14a930989c5704b94300ebe0.png b/train/pictures/d9771aae14a930989c5704b94300ebe0.png new file mode 100644 index 0000000..45b42e9 Binary files /dev/null and b/train/pictures/d9771aae14a930989c5704b94300ebe0.png differ diff --git a/train/pictures/d9bb5a724ddde5d00c24acddd7d0f0cd.png b/train/pictures/d9bb5a724ddde5d00c24acddd7d0f0cd.png new file mode 100644 index 0000000..eaaf1ac Binary files /dev/null and b/train/pictures/d9bb5a724ddde5d00c24acddd7d0f0cd.png differ diff --git a/train/pictures/da9da8f77a1396d318fbb0baed362b3c.png b/train/pictures/da9da8f77a1396d318fbb0baed362b3c.png new file mode 100644 index 0000000..3f1310d Binary files /dev/null and b/train/pictures/da9da8f77a1396d318fbb0baed362b3c.png differ diff --git a/train/pictures/db59ddd9ca660a9b38c82cb82336e993.png b/train/pictures/db59ddd9ca660a9b38c82cb82336e993.png new file mode 100644 index 0000000..6458fe2 Binary files /dev/null and b/train/pictures/db59ddd9ca660a9b38c82cb82336e993.png differ diff --git a/train/pictures/db8ffc49e999a826128c6bea7ede5c1b.png b/train/pictures/db8ffc49e999a826128c6bea7ede5c1b.png new file mode 100644 index 0000000..a01a136 Binary files /dev/null and b/train/pictures/db8ffc49e999a826128c6bea7ede5c1b.png differ diff --git a/train/pictures/dbe1b9273ecd0d4e2f74a3d96ed31fb2.png b/train/pictures/dbe1b9273ecd0d4e2f74a3d96ed31fb2.png new file mode 100644 index 0000000..5ec70bf Binary files /dev/null and b/train/pictures/dbe1b9273ecd0d4e2f74a3d96ed31fb2.png differ diff --git a/train/pictures/dbfa3fc5410088999d1e2455e57374b2.png b/train/pictures/dbfa3fc5410088999d1e2455e57374b2.png new file mode 100644 index 0000000..c8e2ba1 Binary files /dev/null and b/train/pictures/dbfa3fc5410088999d1e2455e57374b2.png differ diff --git a/train/pictures/dc92e099d259b0acc45da21ef5876d69.png b/train/pictures/dc92e099d259b0acc45da21ef5876d69.png new file mode 100644 index 0000000..c0868c0 Binary files /dev/null and b/train/pictures/dc92e099d259b0acc45da21ef5876d69.png differ diff --git a/train/pictures/dcc5d840bdb883af39e6f4a558e98114.png b/train/pictures/dcc5d840bdb883af39e6f4a558e98114.png new file mode 100644 index 0000000..a36d42a Binary files /dev/null and b/train/pictures/dcc5d840bdb883af39e6f4a558e98114.png differ diff --git a/train/pictures/dd0d473f47cd3065e60e6bea354913ff.png b/train/pictures/dd0d473f47cd3065e60e6bea354913ff.png new file mode 100644 index 0000000..504d077 Binary files /dev/null and b/train/pictures/dd0d473f47cd3065e60e6bea354913ff.png differ diff --git a/train/pictures/dd51e206549e1c41395f5b706fec7663.png b/train/pictures/dd51e206549e1c41395f5b706fec7663.png new file mode 100644 index 0000000..ce554e2 Binary files /dev/null and b/train/pictures/dd51e206549e1c41395f5b706fec7663.png differ diff --git a/train/pictures/dd6052657c382fac06ae12c58661e072.png b/train/pictures/dd6052657c382fac06ae12c58661e072.png new file mode 100644 index 0000000..3655bd0 Binary files /dev/null and b/train/pictures/dd6052657c382fac06ae12c58661e072.png differ diff --git a/train/pictures/dd652b99cab0ec4df3b23eb6256d917c.png b/train/pictures/dd652b99cab0ec4df3b23eb6256d917c.png new file mode 100644 index 0000000..2dcc21c Binary files /dev/null and b/train/pictures/dd652b99cab0ec4df3b23eb6256d917c.png differ diff --git a/train/pictures/de105fa3bdb7d957d65ac31c6c9324be.png b/train/pictures/de105fa3bdb7d957d65ac31c6c9324be.png new file mode 100644 index 0000000..96dd676 Binary files /dev/null and b/train/pictures/de105fa3bdb7d957d65ac31c6c9324be.png differ diff --git a/train/pictures/dea70be53cc1479dbfbbc1fa092be7ba.png b/train/pictures/dea70be53cc1479dbfbbc1fa092be7ba.png new file mode 100644 index 0000000..21539af Binary files /dev/null and b/train/pictures/dea70be53cc1479dbfbbc1fa092be7ba.png differ diff --git a/train/pictures/df138edd16e7d5865f556cb94aafb401.png b/train/pictures/df138edd16e7d5865f556cb94aafb401.png new file mode 100644 index 0000000..78402d5 Binary files /dev/null and b/train/pictures/df138edd16e7d5865f556cb94aafb401.png differ diff --git a/train/pictures/df7e86d9c8873c2f0ce697fcc0c69e4e.png b/train/pictures/df7e86d9c8873c2f0ce697fcc0c69e4e.png new file mode 100644 index 0000000..ad6330c Binary files /dev/null and b/train/pictures/df7e86d9c8873c2f0ce697fcc0c69e4e.png differ diff --git a/train/pictures/dfdbfeab665bb3e9a384dd6e2b7ea3cc.png b/train/pictures/dfdbfeab665bb3e9a384dd6e2b7ea3cc.png new file mode 100644 index 0000000..afbf087 Binary files /dev/null and b/train/pictures/dfdbfeab665bb3e9a384dd6e2b7ea3cc.png differ diff --git a/train/pictures/e04330701976438ec350d129c3e4aecb.png b/train/pictures/e04330701976438ec350d129c3e4aecb.png new file mode 100644 index 0000000..4e98b04 Binary files /dev/null and b/train/pictures/e04330701976438ec350d129c3e4aecb.png differ diff --git a/train/pictures/e067a174b1db5f7c9ec599fcbcf83a0a.png b/train/pictures/e067a174b1db5f7c9ec599fcbcf83a0a.png new file mode 100644 index 0000000..6d57bbb Binary files /dev/null and b/train/pictures/e067a174b1db5f7c9ec599fcbcf83a0a.png differ diff --git a/train/pictures/e094d7b17bad0ff2a30e588d0c8e69e7.png b/train/pictures/e094d7b17bad0ff2a30e588d0c8e69e7.png new file mode 100644 index 0000000..15181c4 Binary files /dev/null and b/train/pictures/e094d7b17bad0ff2a30e588d0c8e69e7.png differ diff --git a/train/pictures/e0977ed4e7a41c8a8c39f5d1c112c0d5.png b/train/pictures/e0977ed4e7a41c8a8c39f5d1c112c0d5.png new file mode 100644 index 0000000..a5d4ff3 Binary files /dev/null and b/train/pictures/e0977ed4e7a41c8a8c39f5d1c112c0d5.png differ diff --git a/train/pictures/e0bbc298f4007185703b4d8e4c2b4498.png b/train/pictures/e0bbc298f4007185703b4d8e4c2b4498.png new file mode 100644 index 0000000..c725b91 Binary files /dev/null and b/train/pictures/e0bbc298f4007185703b4d8e4c2b4498.png differ diff --git a/train/pictures/e0e47f3172e6088c79155968ef2e7a73.png b/train/pictures/e0e47f3172e6088c79155968ef2e7a73.png new file mode 100644 index 0000000..d34a71f Binary files /dev/null and b/train/pictures/e0e47f3172e6088c79155968ef2e7a73.png differ diff --git a/train/pictures/e2606ca914616d7447a30ea09e464866.png b/train/pictures/e2606ca914616d7447a30ea09e464866.png new file mode 100644 index 0000000..0f26bf5 Binary files /dev/null and b/train/pictures/e2606ca914616d7447a30ea09e464866.png differ diff --git a/train/pictures/e2c85ea63b0d71da553cc49030d0ac5c.png b/train/pictures/e2c85ea63b0d71da553cc49030d0ac5c.png new file mode 100644 index 0000000..980b714 Binary files /dev/null and b/train/pictures/e2c85ea63b0d71da553cc49030d0ac5c.png differ diff --git a/train/pictures/e2f77ddeb4e79004fd185c9722036115.png b/train/pictures/e2f77ddeb4e79004fd185c9722036115.png new file mode 100644 index 0000000..9fdf3d1 Binary files /dev/null and b/train/pictures/e2f77ddeb4e79004fd185c9722036115.png differ diff --git a/train/pictures/e325cae0ac48a9f847b1f6d28f5fbaab.png b/train/pictures/e325cae0ac48a9f847b1f6d28f5fbaab.png new file mode 100644 index 0000000..2a86126 Binary files /dev/null and b/train/pictures/e325cae0ac48a9f847b1f6d28f5fbaab.png differ diff --git a/train/pictures/e386569dec9dd59ee9f7fa4515463c1a.png b/train/pictures/e386569dec9dd59ee9f7fa4515463c1a.png new file mode 100644 index 0000000..1263638 Binary files /dev/null and b/train/pictures/e386569dec9dd59ee9f7fa4515463c1a.png differ diff --git a/train/pictures/e3a36cd4e9951623e220173611b168d9.png b/train/pictures/e3a36cd4e9951623e220173611b168d9.png new file mode 100644 index 0000000..f152101 Binary files /dev/null and b/train/pictures/e3a36cd4e9951623e220173611b168d9.png differ diff --git a/train/pictures/e3b8bbcc76f4cc6a2f236a8fb512804c.png b/train/pictures/e3b8bbcc76f4cc6a2f236a8fb512804c.png new file mode 100644 index 0000000..e5e6bde Binary files /dev/null and b/train/pictures/e3b8bbcc76f4cc6a2f236a8fb512804c.png differ diff --git a/train/pictures/e49c3a78b74c57c922a2d4b8a9f30be9.png b/train/pictures/e49c3a78b74c57c922a2d4b8a9f30be9.png new file mode 100644 index 0000000..42382ba Binary files /dev/null and b/train/pictures/e49c3a78b74c57c922a2d4b8a9f30be9.png differ diff --git a/train/pictures/e49fc0b623e0f58f6776c6bcbe88e540.png b/train/pictures/e49fc0b623e0f58f6776c6bcbe88e540.png new file mode 100644 index 0000000..2a81604 Binary files /dev/null and b/train/pictures/e49fc0b623e0f58f6776c6bcbe88e540.png differ diff --git a/train/pictures/e4c35156832227d130573e2cca73f191.png b/train/pictures/e4c35156832227d130573e2cca73f191.png new file mode 100644 index 0000000..40a955a Binary files /dev/null and b/train/pictures/e4c35156832227d130573e2cca73f191.png differ diff --git a/train/pictures/e5265551b31c1967ed13bf3effb36085.png b/train/pictures/e5265551b31c1967ed13bf3effb36085.png new file mode 100644 index 0000000..2623fc4 Binary files /dev/null and b/train/pictures/e5265551b31c1967ed13bf3effb36085.png differ diff --git a/train/pictures/e53db0df4ad1432d65d2411daca0fa17.png b/train/pictures/e53db0df4ad1432d65d2411daca0fa17.png new file mode 100644 index 0000000..eb686cd Binary files /dev/null and b/train/pictures/e53db0df4ad1432d65d2411daca0fa17.png differ diff --git a/train/pictures/e5cc19af0f867c3bf0db3150007b99f9.png b/train/pictures/e5cc19af0f867c3bf0db3150007b99f9.png new file mode 100644 index 0000000..931ba9c Binary files /dev/null and b/train/pictures/e5cc19af0f867c3bf0db3150007b99f9.png differ diff --git a/train/pictures/e61530535c89aba46485c052ec410e93.png b/train/pictures/e61530535c89aba46485c052ec410e93.png new file mode 100644 index 0000000..baacf36 Binary files /dev/null and b/train/pictures/e61530535c89aba46485c052ec410e93.png differ diff --git a/train/pictures/e6df254f93dad7783ce4aea0df6e07c3.png b/train/pictures/e6df254f93dad7783ce4aea0df6e07c3.png new file mode 100644 index 0000000..8fb5654 Binary files /dev/null and b/train/pictures/e6df254f93dad7783ce4aea0df6e07c3.png differ diff --git a/train/pictures/e7c1cb0530ef7d3b1469c3991d01bec3.png b/train/pictures/e7c1cb0530ef7d3b1469c3991d01bec3.png new file mode 100644 index 0000000..c262f9d Binary files /dev/null and b/train/pictures/e7c1cb0530ef7d3b1469c3991d01bec3.png differ diff --git a/train/pictures/e8aafd489ed2d70b45ca0b53f62eb618.png b/train/pictures/e8aafd489ed2d70b45ca0b53f62eb618.png new file mode 100644 index 0000000..f7ed3d6 Binary files /dev/null and b/train/pictures/e8aafd489ed2d70b45ca0b53f62eb618.png differ diff --git a/train/pictures/e9132dca5ae3f172112611706efb673d.png b/train/pictures/e9132dca5ae3f172112611706efb673d.png new file mode 100644 index 0000000..758bb4c Binary files /dev/null and b/train/pictures/e9132dca5ae3f172112611706efb673d.png differ diff --git a/train/pictures/e91f30e5697ca404ab96a1a64a2174c8.png b/train/pictures/e91f30e5697ca404ab96a1a64a2174c8.png new file mode 100644 index 0000000..07621ac Binary files /dev/null and b/train/pictures/e91f30e5697ca404ab96a1a64a2174c8.png differ diff --git a/train/pictures/e96c73be763820331a9ae200bd500060.png b/train/pictures/e96c73be763820331a9ae200bd500060.png new file mode 100644 index 0000000..188b58b Binary files /dev/null and b/train/pictures/e96c73be763820331a9ae200bd500060.png differ diff --git a/train/pictures/e9f9e8a4f1f413ef2b4a02928347b678.png b/train/pictures/e9f9e8a4f1f413ef2b4a02928347b678.png new file mode 100644 index 0000000..ce76e2d Binary files /dev/null and b/train/pictures/e9f9e8a4f1f413ef2b4a02928347b678.png differ diff --git a/train/pictures/ea54c3719c0cf53a9971ae20ffa27b55.png b/train/pictures/ea54c3719c0cf53a9971ae20ffa27b55.png new file mode 100644 index 0000000..3b5c7e4 Binary files /dev/null and b/train/pictures/ea54c3719c0cf53a9971ae20ffa27b55.png differ diff --git a/train/pictures/ea7eaeaa02b3b47f38c40310c9d38051.png b/train/pictures/ea7eaeaa02b3b47f38c40310c9d38051.png new file mode 100644 index 0000000..368a95e Binary files /dev/null and b/train/pictures/ea7eaeaa02b3b47f38c40310c9d38051.png differ diff --git a/train/pictures/eb23b72091fb37a0482433a5cad6d129.png b/train/pictures/eb23b72091fb37a0482433a5cad6d129.png new file mode 100644 index 0000000..0555c71 Binary files /dev/null and b/train/pictures/eb23b72091fb37a0482433a5cad6d129.png differ diff --git a/train/pictures/ecab5c372b51414f0697bf42aa93aa98.png b/train/pictures/ecab5c372b51414f0697bf42aa93aa98.png new file mode 100644 index 0000000..33a7401 Binary files /dev/null and b/train/pictures/ecab5c372b51414f0697bf42aa93aa98.png differ diff --git a/train/pictures/ecef08a3227f46e4b60c760bd2c83df3.png b/train/pictures/ecef08a3227f46e4b60c760bd2c83df3.png new file mode 100644 index 0000000..da0e34a Binary files /dev/null and b/train/pictures/ecef08a3227f46e4b60c760bd2c83df3.png differ diff --git a/train/pictures/edcfe7c645f7c6dc8b87dbd45fcb32ba.png b/train/pictures/edcfe7c645f7c6dc8b87dbd45fcb32ba.png new file mode 100644 index 0000000..6750eba Binary files /dev/null and b/train/pictures/edcfe7c645f7c6dc8b87dbd45fcb32ba.png differ diff --git a/train/pictures/edfa1b87d9a20e8f66944ae69416c60a.png b/train/pictures/edfa1b87d9a20e8f66944ae69416c60a.png new file mode 100644 index 0000000..a234a76 Binary files /dev/null and b/train/pictures/edfa1b87d9a20e8f66944ae69416c60a.png differ diff --git a/train/pictures/ee0300f8d564dd4ef5044f914e74a923.png b/train/pictures/ee0300f8d564dd4ef5044f914e74a923.png new file mode 100644 index 0000000..06dd295 Binary files /dev/null and b/train/pictures/ee0300f8d564dd4ef5044f914e74a923.png differ diff --git a/train/pictures/eece395b368e40a6654a0083249e01aa.png b/train/pictures/eece395b368e40a6654a0083249e01aa.png new file mode 100644 index 0000000..041c45a Binary files /dev/null and b/train/pictures/eece395b368e40a6654a0083249e01aa.png differ diff --git a/train/pictures/ef07354dad10f2af165f17ba341524d3.png b/train/pictures/ef07354dad10f2af165f17ba341524d3.png new file mode 100644 index 0000000..af41dbb Binary files /dev/null and b/train/pictures/ef07354dad10f2af165f17ba341524d3.png differ diff --git a/train/pictures/ef2b627c933733694ce809f2b3d0a3fd.png b/train/pictures/ef2b627c933733694ce809f2b3d0a3fd.png new file mode 100644 index 0000000..52fb48b Binary files /dev/null and b/train/pictures/ef2b627c933733694ce809f2b3d0a3fd.png differ diff --git a/train/pictures/f03460b0430027347085aa8ecbe26661.png b/train/pictures/f03460b0430027347085aa8ecbe26661.png new file mode 100644 index 0000000..0ac8ed7 Binary files /dev/null and b/train/pictures/f03460b0430027347085aa8ecbe26661.png differ diff --git a/train/pictures/f0436070eca99d67e9a0d03f6e0847fa.png b/train/pictures/f0436070eca99d67e9a0d03f6e0847fa.png new file mode 100644 index 0000000..2bc4d45 Binary files /dev/null and b/train/pictures/f0436070eca99d67e9a0d03f6e0847fa.png differ diff --git a/train/pictures/f0bb26a3c2313bbf29daced97e3fad96.png b/train/pictures/f0bb26a3c2313bbf29daced97e3fad96.png new file mode 100644 index 0000000..045c4d1 Binary files /dev/null and b/train/pictures/f0bb26a3c2313bbf29daced97e3fad96.png differ diff --git a/train/pictures/f0d4624eab209ee75c7e9657be805303.png b/train/pictures/f0d4624eab209ee75c7e9657be805303.png new file mode 100644 index 0000000..44873ce Binary files /dev/null and b/train/pictures/f0d4624eab209ee75c7e9657be805303.png differ diff --git a/train/pictures/f130b1ddb6ffc8e6adbc0a197419c1ec.png b/train/pictures/f130b1ddb6ffc8e6adbc0a197419c1ec.png new file mode 100644 index 0000000..94516ee Binary files /dev/null and b/train/pictures/f130b1ddb6ffc8e6adbc0a197419c1ec.png differ diff --git a/train/pictures/f1d955e33abaaf46ba6dac80b8edf0fb.png b/train/pictures/f1d955e33abaaf46ba6dac80b8edf0fb.png new file mode 100644 index 0000000..f24356a Binary files /dev/null and b/train/pictures/f1d955e33abaaf46ba6dac80b8edf0fb.png differ diff --git a/train/pictures/f25d8d7ed63712c7ff9ee47a8cc96dc4.png b/train/pictures/f25d8d7ed63712c7ff9ee47a8cc96dc4.png new file mode 100644 index 0000000..55124df Binary files /dev/null and b/train/pictures/f25d8d7ed63712c7ff9ee47a8cc96dc4.png differ diff --git a/train/pictures/f283681de6da272f6403630ab0dcb963.png b/train/pictures/f283681de6da272f6403630ab0dcb963.png new file mode 100644 index 0000000..701d5bc Binary files /dev/null and b/train/pictures/f283681de6da272f6403630ab0dcb963.png differ diff --git a/train/pictures/f29dccb4a9056a5433ede5e23ec40af6.png b/train/pictures/f29dccb4a9056a5433ede5e23ec40af6.png new file mode 100644 index 0000000..924d1d8 Binary files /dev/null and b/train/pictures/f29dccb4a9056a5433ede5e23ec40af6.png differ diff --git a/train/pictures/f31db695246026a9d69a8bc65106c26f.png b/train/pictures/f31db695246026a9d69a8bc65106c26f.png new file mode 100644 index 0000000..664b056 Binary files /dev/null and b/train/pictures/f31db695246026a9d69a8bc65106c26f.png differ diff --git a/train/pictures/f43969963543299a9e1d725bf5ade394.png b/train/pictures/f43969963543299a9e1d725bf5ade394.png new file mode 100644 index 0000000..03a794a Binary files /dev/null and b/train/pictures/f43969963543299a9e1d725bf5ade394.png differ diff --git a/train/pictures/f4db79d01831a5438c7cabd1282a2319.png b/train/pictures/f4db79d01831a5438c7cabd1282a2319.png new file mode 100644 index 0000000..e4f3435 Binary files /dev/null and b/train/pictures/f4db79d01831a5438c7cabd1282a2319.png differ diff --git a/train/pictures/f5099b1b5f47da16c861322ceb1da096.png b/train/pictures/f5099b1b5f47da16c861322ceb1da096.png new file mode 100644 index 0000000..06cde9a Binary files /dev/null and b/train/pictures/f5099b1b5f47da16c861322ceb1da096.png differ diff --git a/train/pictures/f51fd0805fce41c20a7e269a9650b7a7.png b/train/pictures/f51fd0805fce41c20a7e269a9650b7a7.png new file mode 100644 index 0000000..1bb377f Binary files /dev/null and b/train/pictures/f51fd0805fce41c20a7e269a9650b7a7.png differ diff --git a/train/pictures/f52caaddb9cd25e9bd9298e30f27b153.png b/train/pictures/f52caaddb9cd25e9bd9298e30f27b153.png new file mode 100644 index 0000000..5238578 Binary files /dev/null and b/train/pictures/f52caaddb9cd25e9bd9298e30f27b153.png differ diff --git a/train/pictures/f52d49102a48d6eff1233c7f7d74acec.png b/train/pictures/f52d49102a48d6eff1233c7f7d74acec.png new file mode 100644 index 0000000..42ebafd Binary files /dev/null and b/train/pictures/f52d49102a48d6eff1233c7f7d74acec.png differ diff --git a/train/pictures/f5bdb7aeb7659f0b7c55ad8a2b0c7772.png b/train/pictures/f5bdb7aeb7659f0b7c55ad8a2b0c7772.png new file mode 100644 index 0000000..f77aa09 Binary files /dev/null and b/train/pictures/f5bdb7aeb7659f0b7c55ad8a2b0c7772.png differ diff --git a/train/pictures/f601567beee3b1ff479f6de008a13730.png b/train/pictures/f601567beee3b1ff479f6de008a13730.png new file mode 100644 index 0000000..6cd3b26 Binary files /dev/null and b/train/pictures/f601567beee3b1ff479f6de008a13730.png differ diff --git a/train/pictures/f60b0e6e11a2ab5dde477735d2bb95b5.png b/train/pictures/f60b0e6e11a2ab5dde477735d2bb95b5.png new file mode 100644 index 0000000..4267cd9 Binary files /dev/null and b/train/pictures/f60b0e6e11a2ab5dde477735d2bb95b5.png differ diff --git a/train/pictures/f629cba52a869b8efed7230dbf7f2e0a.png b/train/pictures/f629cba52a869b8efed7230dbf7f2e0a.png new file mode 100644 index 0000000..9767c0d Binary files /dev/null and b/train/pictures/f629cba52a869b8efed7230dbf7f2e0a.png differ diff --git a/train/pictures/f660304daafdc22dd1b35437b9de7ff5.png b/train/pictures/f660304daafdc22dd1b35437b9de7ff5.png new file mode 100644 index 0000000..46a2d3e Binary files /dev/null and b/train/pictures/f660304daafdc22dd1b35437b9de7ff5.png differ diff --git a/train/pictures/f795e1d309628de98a3f907900b4edb7.png b/train/pictures/f795e1d309628de98a3f907900b4edb7.png new file mode 100644 index 0000000..343cb3c Binary files /dev/null and b/train/pictures/f795e1d309628de98a3f907900b4edb7.png differ diff --git a/train/pictures/f7e1327ecff54c23565a8b4edc5e08d4.png b/train/pictures/f7e1327ecff54c23565a8b4edc5e08d4.png new file mode 100644 index 0000000..7601dbd Binary files /dev/null and b/train/pictures/f7e1327ecff54c23565a8b4edc5e08d4.png differ diff --git a/train/pictures/f7f371382f9806e3d798f63a98e8901f.png b/train/pictures/f7f371382f9806e3d798f63a98e8901f.png new file mode 100644 index 0000000..1c857e3 Binary files /dev/null and b/train/pictures/f7f371382f9806e3d798f63a98e8901f.png differ diff --git a/train/pictures/f811b1e7010fdac00ba7c449a7f56ffb.png b/train/pictures/f811b1e7010fdac00ba7c449a7f56ffb.png new file mode 100644 index 0000000..00df739 Binary files /dev/null and b/train/pictures/f811b1e7010fdac00ba7c449a7f56ffb.png differ diff --git a/train/pictures/f847cf82949789c24fdc4c1b949c5eef.png b/train/pictures/f847cf82949789c24fdc4c1b949c5eef.png new file mode 100644 index 0000000..1fde7de Binary files /dev/null and b/train/pictures/f847cf82949789c24fdc4c1b949c5eef.png differ diff --git a/train/pictures/f868147979205f0d3afade115ecadda4.png b/train/pictures/f868147979205f0d3afade115ecadda4.png new file mode 100644 index 0000000..3f493a7 Binary files /dev/null and b/train/pictures/f868147979205f0d3afade115ecadda4.png differ diff --git a/train/pictures/f86b79d1f849b3f135f87da9f1f96535.png b/train/pictures/f86b79d1f849b3f135f87da9f1f96535.png new file mode 100644 index 0000000..0d3635b Binary files /dev/null and b/train/pictures/f86b79d1f849b3f135f87da9f1f96535.png differ diff --git a/train/pictures/f8b671a454c3f0146fa86e01a5581b8e.png b/train/pictures/f8b671a454c3f0146fa86e01a5581b8e.png new file mode 100644 index 0000000..c020c4f Binary files /dev/null and b/train/pictures/f8b671a454c3f0146fa86e01a5581b8e.png differ diff --git a/train/pictures/f977918d7e3e2070c55d8477cf670042.png b/train/pictures/f977918d7e3e2070c55d8477cf670042.png new file mode 100644 index 0000000..2826ec6 Binary files /dev/null and b/train/pictures/f977918d7e3e2070c55d8477cf670042.png differ diff --git a/train/pictures/fa548d039884fbd42abd7d08533fccc8.png b/train/pictures/fa548d039884fbd42abd7d08533fccc8.png new file mode 100644 index 0000000..a7ace74 Binary files /dev/null and b/train/pictures/fa548d039884fbd42abd7d08533fccc8.png differ diff --git a/train/pictures/fb18d985b07fec402a6cbeeaadafc715.png b/train/pictures/fb18d985b07fec402a6cbeeaadafc715.png new file mode 100644 index 0000000..2cd4d23 Binary files /dev/null and b/train/pictures/fb18d985b07fec402a6cbeeaadafc715.png differ diff --git a/train/pictures/fb1fb05fea28a2958754b16f25506607.png b/train/pictures/fb1fb05fea28a2958754b16f25506607.png new file mode 100644 index 0000000..75bdfbe Binary files /dev/null and b/train/pictures/fb1fb05fea28a2958754b16f25506607.png differ diff --git a/train/pictures/fb34de73e110471c5a980fd94e48d2a5.png b/train/pictures/fb34de73e110471c5a980fd94e48d2a5.png new file mode 100644 index 0000000..ac0c1ec Binary files /dev/null and b/train/pictures/fb34de73e110471c5a980fd94e48d2a5.png differ diff --git a/train/pictures/fb52b09e13bde9a5cbaf550f0bda13d7.png b/train/pictures/fb52b09e13bde9a5cbaf550f0bda13d7.png new file mode 100644 index 0000000..a091967 Binary files /dev/null and b/train/pictures/fb52b09e13bde9a5cbaf550f0bda13d7.png differ diff --git a/train/pictures/fc6b2a72b3e4680223478554dd18b76b.png b/train/pictures/fc6b2a72b3e4680223478554dd18b76b.png new file mode 100644 index 0000000..d107757 Binary files /dev/null and b/train/pictures/fc6b2a72b3e4680223478554dd18b76b.png differ diff --git a/train/pictures/fc985531a228d144d5b363b77576c87a.png b/train/pictures/fc985531a228d144d5b363b77576c87a.png new file mode 100644 index 0000000..cb8ded9 Binary files /dev/null and b/train/pictures/fc985531a228d144d5b363b77576c87a.png differ diff --git a/train/pictures/fccf85f84ea84bb34e68be9e16c27028.png b/train/pictures/fccf85f84ea84bb34e68be9e16c27028.png new file mode 100644 index 0000000..ca2227b Binary files /dev/null and b/train/pictures/fccf85f84ea84bb34e68be9e16c27028.png differ diff --git a/train/pictures/fcee93603303d728542aa07dc0085239.png b/train/pictures/fcee93603303d728542aa07dc0085239.png new file mode 100644 index 0000000..dd2817d Binary files /dev/null and b/train/pictures/fcee93603303d728542aa07dc0085239.png differ diff --git a/train/pictures/fd1f74b92e57d1da92646127c47b3cd2.png b/train/pictures/fd1f74b92e57d1da92646127c47b3cd2.png new file mode 100644 index 0000000..9b04864 Binary files /dev/null and b/train/pictures/fd1f74b92e57d1da92646127c47b3cd2.png differ diff --git a/train/pictures/fe1b8728ab935304cdf5e78176279247.png b/train/pictures/fe1b8728ab935304cdf5e78176279247.png new file mode 100644 index 0000000..4a5f7d0 Binary files /dev/null and b/train/pictures/fe1b8728ab935304cdf5e78176279247.png differ diff --git a/train/pictures/ff996d5b49918396f42369af7ae901b9.png b/train/pictures/ff996d5b49918396f42369af7ae901b9.png new file mode 100644 index 0000000..6d42e94 Binary files /dev/null and b/train/pictures/ff996d5b49918396f42369af7ae901b9.png differ diff --git a/train2/captions.tsv b/train2/captions.tsv new file mode 100644 index 0000000..31138c5 --- /dev/null +++ b/train2/captions.tsv @@ -0,0 +1,2054 @@ +1 "1900" Ball Bearing Family Washer\nFREE TRIAL +2 "A BOOK ABOUT\nTHE ZOO." +3 "A HAT AS IS A HAT"\nCan Be Found Here.\nMAKE A FEW SPECIAL PRICES.\nBROWNING, KING & CO., +4 "A Shoot Between the Eyes Put an End to Hem." +5 "ALPHA-DE LAVAL"\nCREAM SEPARATORS.\nTHE DE LAVAL SEPARATOR CO. +6 "AMERICAN BOY"\nPLAY SUITS FOR 27c +7 "Airway’s” – Routes Fixed\nfor Airship Travel +8 "Another\nglass\nplease" +9 "BONING" BY CANDLE LIGHT.\nA poor combination—examinations, primitive candles and electric light so-\nurce, but no current. +10 "Bottle Babies." +11 "CAP" STUBBS—Cap Couldn’t See the Joke By Edwina +12 "CHANTILLY"\nSterling Silver\nSON-BON SPOON $1.00 +13 "Cheer up, old man, Wier’s Lemon Seltzer will\ncure that headache," +14 "Don’t Throw It Away"\nSave leather so that\nthe boys in the\ntrenches may be shod\nFine Shoe Repairing\nof All Kinds at\nParson’s\n7 S. 9th St +15 "FINALLY WALLACE CRACKED THE OLD LION’S KNEES WITH HIS WHIP." +16 "Firestone"\nDOMINATES\nAT AUTO SHOW\nThe Firestone Tire and Rubber Co. of New York\nThe Firestone Tire and Rubber Co., Akron, Ohio +17 "For Every Little\nFamily Ailment”\nVaseline +18 "Free, our new catalogue, containing the choruses of 100 popular sons" +19 "GOOD FOR WHAT AILS YOU!” +20 "HANDS ACROSS THE SEA" +21 "HIS MASTER’S VOICE"\nVICTOR\nFor Every Purse\nRECORDS REDUCED\n12 in. Victor Records $1.\n10 in. Victor Records 60c.\n7 in. Victor Records 35c.\nBERGSTORM MUSIC CO., Ltd. +22 "HOORAY FOR THE STARS\nAND STRIPES!" +23 "Housework is hard work without Gold Dust" +24 "IT’S KNOBBY, Y’KNOW!"\nBILL NYE’S CYCLONE. +25 "It’s for Your Sake That I Leave You Free." She Said. +26 "I’ll wear it in my buttonhole — this dainty souvenir\nOf how we’ve won the Cup, b’gosh, night unto fifty year!" +27 "JAPANNED."\nThe peaceful invasion of China is quietly going on while the war is being\npressed aggainst Russia. —Minneapolis Journal +28 "LONDON" TROUSER STRETCHER. +29 "LOVABLE EYES” +30 "MILLARDS"\nExtraordinary\nSale\nHOT-WEATHER\nFROCKS +31 "NAME ON EVERY PIECE."\nLOWNEY’S\nChocolate Bonbons. +32 "Nobby Tread" "Chain Tread"\nOur Challenge Anti-Skid Tires +33 "OWNEY." THE DOG TRAMP. +34 "Old Sol" on a tear—the antidote is ready. Cool\nyour equator with a cool glass of Primo Lager.\nSOLD EVERYWHERE. LIKED EVERYWHERE.\nEVERYBODY DRINKS.\nPrimo Lager. +35 "Open Your Mouth\nAnd Shut Your Eyes.” +36 "Orange Whistle Ice Cream"\nAsk the\nFountain Man +37 "Ponto, the Pup" +38 "SAVE-THE-HORSE"\nSPAVIN CURE\nThe ..\nProofs Of\nIts Power +39 "SCOOP," The Cub Reporter The Joke is ON the Boss. By "Hop" +40 "SO DE CANNON CARRY BACK DE SHELL." +41 "STOP, LOOK, LISTEN!" +42 "SUCCESS" WOOD HEATER.\nW. A. BELL & BRO. Sole Agents. +43 "Setting the Bread to Rise” +44 "Shave your Soap" +45 "Standard" "Cadmus" bath +46 "Sweet Bells Jangled\nOut of Tune and Harsh." +47 "THE SPIDER AND THE FLIES" +48 "THERE, THAT’S DONE!" +49 "Tell Your Master That I Shall Come\nin Ten Minutes." +50 "That;s the sixth Studebaker we’ve\npassed—the only kind to invest in" +51 "The Best Man Wins”\nBIG FOUR CYCLE CO.,\n119 Front Street. +52 "The Man With the Hoe”\nShould Sow\nMORSE SEEDS\nAlways Reliable\nSeeds, Plants and Trees\nC. C. MORSE & CO. +53 "This is a real\nmilk service +54 "UP AGAINST IT." +55 "Using Rouge is Not a Matter of\nMorality, But One of Taste" +56 "YES, I REMEMBER YOUR NAME.” +57 "YOU CAN LEAD A HORSE TO 'WATER,'\nBUT YOU CAN’T MAKE HIM DRINK." +58 $1.00\nTHE CELTRIC\nModel 2\nFOUNTAIN PEN\n$1.00\nSENT PREPAID\nORDER TODAY +59 $1.50 A 6 piece Cham-\nber Set +60 $1.60. A GOOD BOOK AND A GOOD PAPER $1.60\nTHE WEEKLY INTER OCEAN\nAND\nNATIONAL STANDARD ENCYCLOPEDIA. +61 $12.00 Brans Bed $8.00 +62 $15.00 Couch\nfor $8.75 +63 $198–Louis XV. Walnut 4-Piece Suite +64 $20\nIs Worth Saving,\nNo\nHeat,\nNo\nSmell.\nYour kitchen always cool, and\n$2 per month saved in your fuel\nby using a JEWELL GASO–\nLINE STOVE. We sell them on\nmonthly installments. The JEW–\nELL is ABSOLUTELY SAFE\nand a child can use it. Sole\nagentsL\nL. L. LEWIS & CO.,\n502 and 504 J St., Sacramento. +65 $20 Belt for $5, +66 $3.00\nBaby Doll\nWith strap; patent and\ngun metal +67 $30 WRITING DESK $22.50 +68 $50,000.00\nCASH GIVEN AWAY to Users of\nLION COFFE\nIn Addition to the Regular Free Premiums\nHow\nWould\nYou\nLike a Check Like This?\nPresidential Vote Contest +69 'A heart-picture\ntriumph'\nNo Woman Knows +70 'Nut' Artist With Big Teams\nHERE’S GENE AHERN, CREATOR OF "SQUIRREL FOOD"\nAND AUTHOR OF "AIN’T NATURE WONDERFUL.” +71 'TIS EASY TO LEARN FRENCH FREE\nAND COURTESY AT FENCING BOUTS +72 10 Years Old\nHoffschlaeger Co., +73 1000 DOLLS FREE TO THE LITTLE GIRLS\nLittle Boys May Also Win Dolls\nBetween the Ages of 6 and 12 Years +74 1040—LADIES’ SHIRRED SHIRT WAIST. +75 11,000 Demonstration Farms in 215 Counties\nIn Texas Industrial Congress Contest +76 1400 Pairs Women’s\nNovelty Bots +77 15 Jeweled Watch\nGOLD FILLED CASE\nGUARANTED 10 YEARS\n$8 +78 171 of\nthe cars exhibited at\nthe Automobile Show are equipped\nwith\nBOYCE\nMOTO METER +79 1776 1922\nA Patriotic Souvenir\nFacsimile of the "Declaration of Independence" +80 1899. THE FAIR. 1899\nThe Thirteen Annual Fair\nOF THE\nR. V. A & M. SOCIETY +81 18c a package\nCamel\nCigarettes +82 2, 3 OR 4 PASSENGER ROADSTER (INTERCHANGEABLE) +83 20 DOLLARS\nWILL BUY\nTHE FAVORITE\nSINGER\nSTYLE\nSewing Machine +84 25 States Pay Mother’s Pensions +85 250 MEN AND HORSES!\nIn the Three Great Circuses,\nBARE BACK HORSES! +86 3.00 Queen Quality\nShoes 1.85\n1.85 +87 30 DAYS FREE TRIAL\nON ANY OF OUR\nPHONOGRAPHS\nMYERS F. HALL Inc. +88 33 Years in\nExport Banking\nBRANCHES\nArgentina Chile\nPeru Uruguay\nAFFILIATIONS\nBrazil Equador\nColombia Venezuela\nOTHER BRANCHES\nBradford Paris\nMenchester Spain\nMexico\nHead Office, London\nANGLO–SOUTH AMERICAN\nBANK LIMITED\nNew York Agency, 49 Broadway +89 4,800 Pairs of\nLong Silk Gloves\n$1.45 and $1.65 +90 50 CENTS.\nUmbrella\nS. R. TURNER & CO. +91 50 good cigarettes\nfor 10c from\none sack of\nGENUINE\n"BULL"\nDURHAM\nTOBACCO +92 500 STOVES\nAt Old Prices\nDirect From Factory.\nFurniture, China, Carpets\nE. C. NINDE\nFredericksbourg, Va. +93 600 RELIABLE HEATING STOVES IN\nUSE IN MARIETTA.\n250 RELIABLE COOK STOVES IN USE\nMARIETTA.\nHAGAN & SCHAD, +94 8196—MISSES’ DRESSING SACQUE.\n12, 14 and 16 years. +95 ? Of Teeth…\nPhiladelphia Dental Rooms, +96 A\nNew One\nOn that SMILE last,\nmade of White\nBuckskin, and only\n$5.00, for men of\ntaste.\nManufacturers’\nShoe Co., Ltd., +97 A\nParasol\nFor the Girl in\nSummer School +98 A\nStylish Party +99 A "PERFECT 36" SHOWS US ALL\nHOW WOMAN IN OVERALLS LOOKS +100 A BAD BREAK\nand a lot of water running\nto waste is what must be\nguarded against. If we\ndid the plumbing, such a\nthing would not have hap-\npened.\nBut We Can Fix It\nif you will send\nfor us, and then\nwe will guaran-\ntee it. High grade\nwork at low prices\nAXEL ERICSON\nPlumbing and Tinsmithing\nKingman, - - Arizona +101 A BOAST OF BEEF.\nH. W. MOUNCE & CO. +102 A BOY IN FALLTIME.\nLittle brother visits the school.\n—Chicago Record-Herald. +103 A BROWN HAND CLOSED OVER HER SLEN-\nDER FINGERS. +104 A Big Advance\nIn The Quality\nIsland orders solicited\nManufacturers Shoe Co., Ltd. +105 A Big Bunch of Ties\nMarked Very Cheap\n35c +106 A CALCULATION. +107 A CHAGE OF HEART\nJEWELRY\nW. H. REIGHART +108 A Call for Men\nMcLoughlin\nBOOTS AND SHOES\nSHOES FOR ALL THE FAMILY +109 A Christmas Blaze +110 A Convenient Record\nof Your Investments\nHALSEY, STUART & CO. +111 A Cool Player\nHALFBACK PORTER +112 A DEALER\nWEED\nSEWING\nMACHINES +113 A DOG WITH A HINGE IN HIM. +114 A FEW EXTREME GOOD VALUES IN SHOES\nAT\nO’BRIEN’S, 607 J STREET. +115 A Fine Collection of\nBABY CARRIAGES +116 A Football Game\nis likely to attract a lot of\nwell-dresed men that wear\nHart Schaffner & Marx\nclothes. Whether you go to\nthe game or not, you ought to\nhave one of these new fall\nstyles, ready to wear the dat\nyou come in. +117 A GOOD WAGON\n"STUDEBAKER."\nDECKER & ALRICH. +118 A GREAT MAIL ORDER PROPOSITION\nSEND US YOUR ORDER\nA $21.50 Man’s Outfit Complete for $12.95 +119 A Generation Ago\nCoffe could only be bought\nin bulk. The 20th Century\nway is the\nLion Coffe\nway–sealed packages, al-\nways correct in weight,\nclean, fresh, uniform and\nretaining its rich flavor. +120 A Glance at the…\nFarmers’ Favorite Grain Drill\nFertilizer Distributor on Our Drill\nDecker & Alrich. +121 A Good Judge of Holiday Candies +122 A Good Thing\nSHOULD NOT BE WITHHELD\nFROM THE PUBLIC\nOLIVER\nVISIBLE WRITING.\nWALL, NICHOLS CO., Ltd.\nAgents. +123 A HIGH–CASTE WOM-\nAN. +124 A HIGH–GRADE RANGE\nPocono Keystone\nMRS. J. W. MARKS +125 A HOLY TERROR +126 A HORSE WHO CAN TALK! +127 A Hurry Call By Telephone\nEHRENBERG\nPaint and Wall Paper Co. +128 A JAPANESE NAVAL FUNERAL. +129 A LEADER\nTHAT LEADS\nTHAT’S THE\nEverett Piano.\nTHE STEVENS ORGAN AND PIANO CO. +130 A LIONESS WATCHFUL OF HER CUBS +131 A LOT OF\nSample Couches\nThousands of yards of Mattings to close out cheap.\nIron and Brass Beds\nE. C. NINDE,\nFREDERICKSBURG, VIRGINIA. +132 A Ledger Built for Service\nThe Right Book to Write In\nNATIONAL\nLoose Leaf and Bound Books +133 A Little Help +134 A Little Of Everything, +135 A MAMMOTH SALE OF\n34,00 REGULATION U. S. ARMY\nRAINCOATS $3.00 EACH\nDirect From U. S. Quartermaster +136 A MAN LOSES HIS TEMPER +137 A Merry\nGame of\nQuestions +138 A NEW THING\nIN FREMONT, O.\nHATS and CAPS\nHATS. +139 A NOVELIST SAYS THAT AMERICAN WIVES SPEND THEIR\nLIVES IN IDLENESS +140 A ONE HUNDRED DOLLAR\nORGAN\nTo be GIVEN AWAY. It is now\ndisplayed in our window, and to\nthe lucky guesser it goes. +141 A PEACEMAKER. +142 A PERUVIAN BLOW-GUN. +143 A PRACTICAL GIFT\nStamped Doilies\nand\nCenter Pieces\nFancy\nEmbroidery\nWork +144 A PRIZE WINNER\nOUR HOME COMFORT CAMP\nSIDNEY STEVENS IMPLEMENT CO.\nUTAH AND IDAHO +145 A Perfect Collar\nWILDWOOD\nThe new\nRED-MAN\nEARL & WILSON +146 A Popular Grocery\nPRICE BROS.\nGROCERS. +147 A REGULAR BASKET\nSTRETCHER!\nIs our big Bargain of\n25lbs of sugar for\n$1.00\nJ. B. Watson, +148 A ROYAL ARTILLERYMAN. +149 A RUN ON SPRING SUITS +150 A Remedy for Short Help—\nThe Dictaphone +151 A Roller Mill for Barley, Oats, Wheat or any other Grain\nHere is Just What You Have Been Looking For +152 A SERVICABLE HOE. +153 A SKIRMISH LINE. +154 A STRIKE +155 A SUIT OF DARK BLUE SERGE WITH A RED AND WHITE\nSTRIPED WAISTCOAT WORN WITH A PANAMA SAILOR. +156 A SUMMER CITY BUILT OF TENTS. +157 A Sale of 800 New Coats All at Special\nPrices, Beginning at $14.25 +158 A Shoe for\nthe Times\nManufacturers’ Shoe Co., +159 A Silent Salesman +160 A Skin of Beauty is a Joy Forever +161 A Skin of Beauty is a Joy Forever\nDR. T. FELIX GOURAUD’S ORIENTAL\nCREAM OR MAGICAL BEAUTIFIER +162 A Special Drive In Pianos\nISRAEL, THE PIANO MAN, +163 A St. Paul Clothing House Exclusively Owned\nand Controlled by St. Paul Men.\nCOLORED SHIRTS.\nBOSTON\nONE PRICE CLOTHING HOUSE!\nTHIRD STREET, CORNER OF ROOBER,\nST. PAUL +164 A Storekeeper Says:\nNew Perfection\nWICK BLUE FLAME\nOil Cook-stove\nStandard Oil Company +165 A Successful Baking +166 A Summer Vacation\nin Your Kitchen\nNEW PERFECTION\nWick Blue Flame Oil Cook-Stove\nRayo Lamp +167 A TRIAL\nWILL CONVINCE YOU.\n There are thousands of persons to-day en-\njoying good health simply because they were\npersuaded to try HOSTETTER’S STOM-\nACH BITTERS when their stomachs were\nweak and their livers and kidneys disordered.\nThen there is no logical reason why you should\nremain sickly and delicate. Get a Bottle\nof the Bitters to-day from your Druggist\nand give it a chance to demonstrate its power\nto cure DIZZINESS, INDIGESTION,\nDYSPEPSIA, CONSTIPATION, BIL-\nIOUSNESS, KIDNEY COMPLAINTS,\nRHEUMATISM OR MALARIA. It won’t\ndisappoint you. Aged people who require a\ntonic will also find the Bitters invaluable.\nDoctors recomment it. Here’s proof:\nTHE GENUINE IS SOLDY ONLY IN BOTTLES, NEVER IN BULK. +168 A TYPEWRITER FOR\n$50.00 +169 A VERY FESTIVE BIRD. +170 A Venerable Lady. +171 A WOMAN’S BODY.\nWhat Its Neglect Leads to. Mrs. Chas\nKing’s Experience. +172 A Winter Cruise to\nCalifornia and Hawaii\n"where it’s Summer always"\nMATSON NAVIGATION CO. +173 A handsome\nBedroom Set\nFor $30.00\nThe PORTER FURNITURE CO., +174 A nerve Tonic never Equaled\nThis shaped box–no other +175 A. N. SANFORD,\nOPTICIAN +176 A. SAKS & CO.\n"WATERPROOFS." +177 A. SAKS & CO.\n* FIXING * +178 ADAMS\nPure Cheming Gum\na Stick a day\nkeeps\nthe\n"Dark Brown\nTaste" away\nBLACK JACK +179 ADMIRAL BARON YAMAMOTO. +180 ADVANCE ON THE YALU\nJAPANESE MOUNTAIN ARTILLERY IN ACTION NEAR PING–YAO. +181 ADVERTISEMENT.\nGood Medicines.\nSTABLER’S\nDIARRHOEA CORDIAL +182 AERMOTOR\nWINDMILLS\nAND\nPUMPS\nare now for sale by\nTHE PACIFIC HARDWARE COMPANY, Ltd., +183 AETNA INSURANCE COMPANY,\nAETNA BUILDING,\nINDIANAPOLIS.\nErected 1859–Owned by the Co.\nCash Capital and Surplus +184 AFTER SHAVING\nPOND’S\nEXTRACT +185 AFTER TURRET OF THE BATTLESHIP OREGON. +186 AFTERNOON\nFOOTWEAR +187 AGE emphasizes qualities\ngood or bad – VELVET’S\ntwo years’ agein’ makes the\nbest tobacco better. +188 AGENTS WANTED.\nJOHNSON REVOLVING BOOK CASE.\nAN ELEGANT PRESENT. +189 AINSWORTH’S\nASSAY BALANCES. +190 ALASKA IN SUFFRAGE PARADE. +191 ALL DOUGH. +192 ALL PHILADELPHIA STIRRED BY PATRIOTIC RESPONSE OF ITS MANY YOUNG MEN ON REGISTRATION DAY +193 ALL ROADS ARE ALIKE A MONARCH.\nPerfection is the result of our long\nexperience.\nMONARCH AND DEFIANCE BICYCLES\nare the product of mechanical ingenuity. +194 AMERICAN HOT AIR\nCOOKING STOVE. +195 AMERICAN TENNIS PLAYERS PICKED TO WIN\nIN TOURNAMENT WITH THE AUSTRALIANS +196 AMERICANS ABROAD +197 AMUSEMENTS.\nHIPPOOLYMPIAD.\nWILLIAM LAKE MANAGER\nINDIANAPOLIS. +198 AN ARTISTIC CARRIAGE WRAP.\nThis Elaborate Russian Blouse of Dark Red Velvet is Trimmed With Applique of Jew-\neled Satin and Linen With White Satin. +199 AN AWFUL JOLT! +200 AN ELECTRIC FAN\nVISIT FAN DISPLAY\nUNION ELECTRIC\nLIGHT & POWER CO. +201 AN EXTRAORDINARY OFFER\nTHIS VALUABLE CYCLOPEDIA FREE!\nWORLD’S CYCLOPEDIA\nIS GIVEN FREE +202 AN HONEST DRUGGIST, +203 AN INTERNATIONAL TOUCH! +204 AN OLD FABLE REVISED---II. +205 AN UNEQUALED OFFER\nThe Waterbury Watch\nGIVEN AWAY!\nA Thoroughly Reliable Watch Free! +206 AN UNPRECEDENTED OFFERING OF WRAPS FOR MISSES, CHIL-\nDREN, AND INFANTS, AND OF MANY OTHER THINGS AT MEYERS. +207 AND NOW the BRUNSWICK RECORD\nA Refined and Finished Product of the\nBrunswick Method of Reproduction +208 AND THOSE WHO RUN MAY READ THEREBY\nTHE CHAFFING DISH +209 ANIMALS YOU DON’T KNOW +210 ANITA STEWART, FIANCÉE OF PRINCE MIGUEL OF PORTUGAL,\nAND HER HOME IN LONDON. +211 ANOTHER SURPRISE IN THE CHADWICK CASE. +212 ANY HAT\nIN THE HOUSE\n$3.95\nWEDNESDAY ONLY\nMrs. Barry’s\nFIVE DOLLAR HAT SHOP +213 ANYTHING YOU WANT!\nPioneer Meat Co. +214 ARCH AT WEST NEWTON AND WASHINGTON\nSTREETS. +215 ARE\nYOU\nDEAF?\nANY\nHEAD\nNOISES?\nDEAFNESS OR HARD HEARING\nARE NOW CURABLE.\nHEAD NOISES CEASE IMMEDIATELY. +216 ARE YOU DEAF? +217 ARE YOU SATISFIED\nNew York Dentists +218 ARITHMETIC\n"FIT EASY"\nMcINERNY SHOE STORE +219 ARROW\nCOLLAR +220 ARROW\nCOLLARS +221 ARROW\nand you follow the style in\nCOLLARS +222 ARTISTIC\nMONUMENTS\nAND\nGRAVESTONES\nSTATUARY +223 ASLEEP ON THE TRACK. +224 AT COST\nNO ODORS\n21 SAMPLES LEONARD\nREFRIGERATORS\nNO MIXING\nOF FOOD\nFLAVORS +225 AT THE DOOR OF THE POLICE. +226 ATTENTION,\nFarmers and Stockmen!\nOnly Hog and Cattle Fence Made. +227 AUCKLAND HARBOR, WHERE PRESENCE OF FLEET RENEWS TALK OF ANGLO-AMERICAN ALLIANCE +228 AUTO BUILDING FOR THE BOYS\nConstruction of Spring and Frame +229 AUTOMATIC PENCIL SHARPENER\nSIMPLICITY and\nECONOMY COMBINED +230 AUTOMOBILE WORLD HAILS NEW KING\nEARL KISER. +231 AUTOMOBILES THAT SATISFY\nOAKLAND\nTHE SENSIBLE SIX +232 AUTUMN MEETING\nWASHINGTON JOCKEY CLUB,\nBENNING’S COURSE. +233 Abdominal\nBand\nEHLERS +234 About Everybody Reads the Times +235 Adventures of\nJohnny Mouse +236 Aetna Bicycles.\nWHOLESALE DEPOT.\nEL PASO CYCLE CO. +237 Agents for the Angle Lamp.\nWM. P. BELL & CO., +238 Akron Woodworking Co.\nHard Wood Floors\nCabinet Work\nSpecial Furniture\nWindow Screens\nGrill Work\nWood Specialties\nVenetian Blinds\nFurniture Refinishing +239 Alabaster Sphinx of Egypt +240 All Trimmed\nMillinery Just\nHalf Price.\nAll Flowers\nat Half Price. +241 All you lovers of\nblood-stirring\nWestern advent-\nure, of mystery in\na lawless wilder-\nness, of the great\nout-of-doors and the\nuntamed creatures\nof the open, read\nThe\nUntamed\nBy MAX BRAND +242 An Ample Supply of China-\nware here.\nCREIGHTON & NEPTUNE, 105 and 107 Greene Street. +243 An Appeal to Those Suffering\nWith Rheumatism\nNoah’s Liniment +244 An Extraordinary Sale of\nSilk Coats and Suits at\n$19.95\nFriday and Saturday Only +245 An ex–Rebel’s\nWar Recollections.\nHow They Drilled in the Home–\nGuards---Storehouses Thrown Open. +246 Ancient Religion of\nBuddhism May Perish +247 And This is the Oldest Swimmer +248 And the Ass said unto\nBryan: "YOU'RE A QUACK." +249 Announcing New\nThings, +250 Annual Sale of "P–B" Odd Trousers +251 Another Big Purchase\nOF\nBlankets and\nComforts\nAt Savings of\n1/4 to 1/3 +252 Another Car-load Here! +253 Another Car–load Here! +254 Appearance of the Queen of Night at Weimer\nAfter an aquarel by Goethe 1794 +255 Are "you" giving\nyour feet a square\ndeal? You ought to,\nyou work them\nhard enough--- +256 Are You A Man\nWho Cares? +257 Are You Going\nDEAF?\nNew Mears 8-Tone Ear Phone +258 Are You Sending Money\nAbroad This Christmas? +259 Are Your Eyes Weak?\nDR. E. DAWKINS\nST. LOUIS JEWELRY & OPTICAL\nCOMPANY +260 Art\nand\nArtists +261 Ask For Catalog\nCar Load of\nRefrigerators\nDIRECT FROM FACTORY\nE. C. NINDE +262 At the Boarding House. +263 Ayer’s\nHair Vigor. +264 Ayer’s Hair Vigor\nIs a Hair Food. +265 Ayer’s Hair Vigor\nWhat does\nit do?\nIt prevents and\nIt cures baldness. +266 BABY DEAR GETS ITS BOTTLE\nA juvenile inmate at the Zoo receiving particular attention\nfrom Keeper Manley. +267 BACK TO COLLEGE.\nPROF. WILSON’S PRESENT OPPORTUNITY TO LEARN SOMETHING\nABOUT THE TARIFF. +268 BACTRIAN CAMEL. +269 BAKER & HAMILTON,\nAgricultural Implements, Wagons, Hardware,\nIRON AND STEEL! +270 BAKER AND HIS BIG BAT BEAT\nGIANTS IN WORLD’S SERIES CLASH\nTHE CAUSE OF IT ALL—J. FRANKLIN BAKER. +271 BALL’S\nCORSETS +272 BARRY’S\nTricopherous\nFOR THE\nHAIR & SKIN +273 BASS SEASON OPEN\nThis Will\nCatch Them\nWe Can Tell You Where To Get Them\nTHE KIMBALL GUN STORE, Inc. +274 BE CPNVONCED\nOur Meals Are Superior\nEat This Luncheon\nTomorrow\n30c\nCHOICE OF\nPrime Roast of Beek Au Jus\nRoset Pork Apple Sauce\nChicken Croquette Cram Sauce\nSnowflake Pototose, Succolash\nApple Pie\nCoffe Tea Milk\nHARRIS\n"Where Quality Reigns" +275 BE YOUR OWN LANDLORD +276 BEAT MY BREAD +277 BEAUTIFUL DOE INVADES MAN’S HAUNTS AND DIES, IMPALED\nON A FENCE WITHIN 32 MILES OF GREAT METROPOLIS.\nTHE DOE THAT DIED OF CURIOSITY. +278 BECKER BROS. CO.\nDealers\nin\nChoice\nMeats\nManu-\nfacturers of\nall Kinds\nof\nSau-sages +279 BEFORE AND AFTER\nMANHOOD RESTORED\n"CUPIDENE" +280 BEFORE GEN. BEAUREGARD’S TENT. +281 BERGER’S\nGreat Western Furniture Emprorium. +282 BERKSHIRE AND ESSEX PIGS. +283 BERRYVILLE\nFURNITURE\nSTORE. +284 BEST\nTEETH\n$8. +285 BETTER\nThan Olive Oil for Salads\nThan Butter for Shortening\nThan Other Fats for Frying\nDouglas Oil +286 BETWEEN LIFE AND DEATH\nJohnston & Pearson\nPrescription Pharmacy. +287 BIG\nReduction in Flash Lights\nNUNN ELECTRIC CO. +288 BIG BILL TAFT’S POLITICAL CIRCUS!! +289 BIG FUR SCARF, BEAUTIFUL RING & HAND BAG FREE +290 BIG RED TAG SALE\nChina, Glassware, Lamps, Etc.\nAT EXTREMELY CUT PRICES\nThe Ideal Cash Store +291 BILLY BOUNCE INTERRUPTS A SERENADE +292 BLACK FAILLE WRAP WITH QUILLED EDGE PUFFING, WIDENING AROUND THE BOTTOM OF THE\nGARMENT. THE SHAWL–LIKE REVERS ARE SHIRRED OVER THE SHOULDERS AND EDGED WITH\nTHE PUFFING. THE COLLAR AND CUFFS ARE OF A CONTRASTING COLOR, OR OF VELVET. BLACK\nMALINE HAT WITH IMITATION AIGRETTES.\nACCORDION PLEATED SKIRT OF LINON, CHIFFON OR VOILE, WITH COATEE OR CRETONNE OR PRINTED\nLINEN, BOUND WITH PIPING OF THE PLAIN MATERIAL. +293 BLACK WOLF! +294 BLUE MOUNTAIN HOUSE,\nTHE QUEEN RESORT OF THE BLUE RIDGE MOUNTAINS\nON THE MAIN LINE OF THE\nWESTERN MARYLAND RAILROAD. +295 BLUES\nThat’s\nNerve Exhaustion\nThat’s AYER’S +296 BOOK BINDER! +297 BOOTS & SHOES! +298 BOOTS AND SHOES.\nBOOT AND SHOEMAKER, +299 BOOTS AND SHOES.\nBOOT AND SHOEMAKERS,\nDalton & Strickland,\nFINE SHOES. +300 BORDEN’S\nCOUNTRY-BOTTLED\nMILK +301 BOSTONIANS\nthe ideal shoe for men. Only a few pair\nof the new shapes left. Get them now. +302 BOTTLED UP AT LAST. +303 BOWSER TAKES A TUMBLE. +304 BOYLES BUSINESS COLLEGE, OMAHA\nFALL TERM OPENS SEPTEMBER 4 +305 BRICKS!\nTHE HYDRAULIC\nPRESS BRICK CO.\nRed Front Pressed Brick, +306 BRING THEM TO US\nHOME SHOE\nREPAIR CO. +307 BROWN & LINDSEY,\nLIVERY.\nNEAR DEPOT SAN MARCOS, TEN. +308 BROWN, NUTRIA & PEARL\nWOOL, FUR AND CLOTH COVERED\nPLUG HATS +309 BROWN’S FERTILIZER DISTRIBUTOR ! +310 BROWN’S FERTILIZER DISTRIBUTOR!\nPATENTED AUGUST 1. 1876. +311 BROWN’S FOR EQUAL RIGHTS +312 BUCKEYE BOOGY CO.,\nCOLUMBUS, OHIO,\nBUGGIES, PHAETONS, SURRIES,\nFirst-Class Work Manufactured.\n"THE BEST IS THE CHEAPEST." +313 BUFFALO\nLITHIA WATER\n"A Veritable Antidote to Albuminuria in Bright’s Dis-\nease," Etc., Et. A Powerful and the Only\nKnown Solvent of Renal Calculi and\nStone in the Bladder. +314 BUGGIES THAT ARE GOOD\nMade to suit our rough country roads, and price to suit\nthe people.\nSold under a guarantee for twelve months.\nWe buy in Car–Loads.\nGive us an opportunity to show you our prices are\nright.\nWe also carry a large line of Harness, and will make\nyou a very low price on this line.\nPEERY & ST. CLAIR +315 BUSINESS – SUITS.\n$16 to $27.50\nFOR SALE ONLY BY\nThe Kash Company.\nLIMITED AGENTS. +316 BUTTER BUTTER\nWhite Cow Butter Store +317 BUY YOUR BOOTS AND SHOES\nNolan Bros. Shoe Co. +318 BUY YOUR TRUNKS AND HARNESS\nAT\nKNEESSI’S, +319 BUY YOUR TRUNKS AND HARNESS\nKNEESSI’S, +320 BY THE SAD SEA WAVES +321 Back goes the\nBOLD\nCigar to +322 Baking Day\nIS A PLEASURE +323 Bank of\nPocahontas. +324 Barnett Lithia Hotel,\nCHASE CITY, VA.,\nW. S. BARNETT,\nOWNER AND PROPRIETOR. +325 Batchelor’s Celebrated Hair Dye +326 Batchelor’s Celebrated Hair Dys. +327 Bedroom\nSuits!\nBedroom\nSuits!\nSuit with French Plate Mirror\nE. E. Horn +328 Behind Bolted Doors in the Haunted House—\nYet Assailed by the Unseen Creature of Mystery! +329 Belmaison\nReproductions\nA Bookcase\nand Chair +330 Benjamin\nClothes\nThe Kash Co., Ltd.,\nCorner of Fort and Hotel Sts. +331 Best Imported\nFercheron, Belgian,\nEnglish Shire,\nSuffolk-Punch and\nGerman Coach\nStallions, $1,00 ca. +332 Beverly Bungalows\nNew Homes Back to Normal Prices\n$5500 Up - Small Amount Cash +333 Beware of Fakers\nWho Copy Our Advertisements\nDanger! Warning to the Public\nCITY OPTICIANS +334 Bi-Focal Lenses\nA. N. Sanford,\nOptician, Boston Building. +335 Big Butter Special for 3 Days\n"Louella" Butter\n53c lb\nRichland Butter lb 48c +336 Big Combination\nPiano Sale\nA Roaring Success\nDon't Miss It Don't Miss It +337 Big Dipper in the Sky is\nGoing to Leak Pretty Soon +338 Big Values in Metal Beds +339 Birthday or\nWedding Gifts\nShipyard Workers\nBURNETT\nBROTHERS\nLeading Jewelers and Diamond Merchants +340 Blatz\nStands Up Under\nthe Most Searching\nInvestigation. +341 Blue and Black\nWorsted, Cheviot\nand Serge Suits…..\nThe Golden Eagle Clothing House. +342 Bob LaFollette His Wife and Daughter +343 Boys and Girls 15 Years of Age or Under Read This\nCOLE’S JUNIOR CONTEST +344 Boy’s All-Wool Fancy\nCassimere Vestee Suits +345 Bracelets For Ankles, Too,\nIs a New Fashion Wrinkle +346 Brer Rabbit +347 Budweiser\nANHEUSER-BUSH, INC. ST. LOUIS +348 Bug Talk on Circulation +349 Buy A\nCHRISTMAS KODAK\nFor Those You Love\nNo. 3 A Folding Pocket Kodak\nPRICE $20.00\nHONOLULU PHOTO SUPPLY CO.\nFort Street +350 Buy One\nLike This\nLeonard Cleanable\nRefrigerator +351 Buy that Sewing\nMachine now as\na present, and\nplease your wife\nWatch our\nShow\nWindows! +352 Buy the Christmas\nCoat Now at\nHALF PRICE +353 Buying Drugs in\nLarge Quantities\nCORNER DRUG STORE,\nH. FRED CURTIS, Prop., +354 CADILLAC\nNEEL-CADILLAC COMPANY +355 CAFE AU CAPRICE\nBROADWAY AT SIXTIETH\nGENERAL APPLAUSE\nTABLE D’HOTE DINNER +356 CALIFORNIA STABLES +357 CALL and SEE\nThat Beautiful One Price\n$375\nPLAYER PIANO\n2 DOZEN ROLLS, BENCH AND SCARF\nHarris Music Co. +358 CALUMET\nBaking Powder +359 CAMPAIGN POSTERS AT CONEY ISLAND SLASHED. +360 CANOPY TOPS +361 CAN’T CATCH IT! +362 CAPITOL HOTEL, +363 CARPET and RUG\nHeadquarters! +364 CARRYING one’s clothes\nwith an easy grace is as\nlargely mental as physical. +365 CARTS and BABY CARRIAGES\nAN IMMENSE STOCK\nSEE OUR LINE OF LEATHER COUCHES and CHAIRS\nNew Line Matting\nE. C. NINDE +366 CASE ENGINES and THRESHERS +367 CASE ENGINES and THRESHERS\nSold by C. K. SOWERS Berryville, Virginia +368 CASE ENGINES and THRESRERS\nSold by C. K. COWERS Berryville, Virginia +369 CASE ENGINES and THRESRERS\nSold by C. K. SOWERS Berryville, Virginia +370 CASTNER, CURRAN & BULLITT;\nSole Agents for the\nCelebrated\nPocahontas\nSmokeless\nSemi-Bituminous\nCOAL, +371 CASTORIA\nFor Infants and Children.\nThe Kind You Have\nAlways Bought.\nIn\nUse\nFor Over\nThirty Years\nCASTORIA +372 CATARRH OF THE STOMACH +373 CATCH ON\nWHILE YOU CAN.\nTHIS IS THE LAST WEEK OF OUR SPECIAL\nSUIT AND OVERCOAT SALE\n$11.80 +374 CELEBRATED\nPOCAHONTAS SMOKELESS\nSEMI BITUMINOUS COAL\nThe Best\nSteam and\nDomestic Fuel\nMined\nThe Standard\nCoal of the\nUnited States\nNavy +375 CEMENT PAINT.\nTHE GREAT PRESERVER OF THE AGE\nThe Oldest and Best Preserving Wear\ning Paint in the United States,\nALEXANDER’S\nFour Ace Cement Paint. +376 CENTENNIAL LAURELS\nA TRIPLE CROWN\nFOR\nWHEELER & WILSON.\nTHREE MEDALS AND THREE DIPLOMAS!!!\nFROM THE OFFICIAL REPORT +377 CHAIRS\nof all kinds--- +378 CHANDLER SIX\nFamous For Its Marvelous Motor\nThe Right Car at the Right Price;\nChandler Is the First Choice\nKIMBALL AUTO CO. +379 CHARGE ON THE STONE WALL. +380 CHARGING FORT MCALLISTER. +381 CHARLES BLUME\nTHE JEWELER: +382 CHASE CO. LAND & LIVE STOCK CO. +383 CHERRY PECTORAL\nFor the rapid Cure of\nCOUGHS, COLDS, HOARSENESS,\nBRONCHITIS, WHOOPING-COUGH,\nCROUP, ASTHMA AND\nCONSUMPTION. +384 CHICKEN HAWK. +385 CHILDREN HAVE A PART IN WORLD WAR +386 CHILDREN’S\nSCHOOL\nSHOES\nGOT THE SHOES TO DO IT.\nBoys’ Velours Calf School Shoes\nBoys’ and Girls’ Security School Shoes\nMANUFACTURERS’ SHOE CO., Ltd., +387 CHILDREN’S CARRIAGES !\nOf all styles and prices, at the\n99 CENT STORE. 8 W. MAIN. +388 CHILDREN’S CARRIAGES. +389 CHINA CLOSETS +390 CHINA GIVES US FASHIONS! +391 CHINESE\nHerbal Remedies +392 CHRISTIAN COLLEGE, COLUMBIA, MO.\nTHE OLDEST AND BEST COLLEGE EXCLUSIVELY FOR WOMEN IN THE MIDDLE WEST. +393 CHRISTMAS +394 CHRISTMAS PRESENTS.\nCOLD SPECTACLES AND EYE-GLASSES. +395 CHRONIC\nAND\nLINGERING\nDISEASES\nYIELD\nQUICKLY\nTO OUR\nNEW TREATMENT. +396 CLAREMONT COLLEGE,\nFor Girls and\nYoung Women\nHICKORY, N. C. +397 CLEANLINESS\nOnancock Gas Co., Onancock, Va. +398 CLOCKS. +399 CLOTHING\nPrices Lower Than Ever +400 CLOTHING.\nBENJAMIN COLWELL, +401 CLOTHING.\nI Show this Suit in 20 Different\nPatterns, Price $10 to $20.\nGEORGE SPRANSY, +402 COAST LINE TO MACKINAC +403 COAST LINE TO MACKINAC +404 COL. PLUMER AND ARMORED TRAIN IN ADVANCE ON MAFEKING. +405 COLD TIMES +406 COLLARED PECCARY. +407 COLONEL GROSS, STAFF AND GUESTS—CAMP STEPHENS. +408 COLORADO STRIKERS HAND OVER THEIR\nARMS WHEN UNCLE SAM’S SOLDIERS COME +409 COLUMBIAN\nWOOLEN MILLS +410 COME IN AND LOOK OVER THIS DRILL\nM. PULLIAM & SON\nBERRYVILLE, VA. +411 COME, I’LL SHOW YOU OUT. +412 COMING! COMING!\nTHE GREAT PAN\nAMERICAN SHOWS\n3 RING CIRCUS 3\n5 CONTINENT MENAGERIE 5\nROMAN AND GRECIAN HIPPODROME\nWORLD’S GRATEST RIDERS\n40 FUNNY CLOWNS 40\nGRAND FREE HORSE FAIR\nTwo Performances Daily — Rain or Shine\nColumbia on MAY 17 +413 COMPLETELY SURROUNDED WITH WATER AND HOMES DESERTE +414 CONDITIONS\nin GERMANY +415 CONSUMPTION\nSO PRONOUNCED\nBy the Physicians\nSEVERE\nCOUGH\nAt Night\nSpitting Blood\nGiven Over by the Doctors!\nLIFE SAVED BY\nAYER’S CHERRY PECTORAL +416 CONTESTANTS IN THE STATE POOL CHAMPIONSHIP TOURNEY +417 CONTRACTORS AND BUILDERS\nContractors and Builders,\nSteam Planing and Saw Mill\nSash, Doors, Blinds, Mantles Plasteing Lath,\nGrist Mill and Corn Crusher.\nTHOMPSON & OGDEN +418 COOLER\nDRINKS\nAT\nLOWER\nPRICES\nThe Best Lunches and\nCandies in Town\nUNIVERSITY ICE CREAM\nAND CANDY PARLOR +419 CORRECT CHAPE\nGOOD MATERIAL,\nAT RIGHT PRICE. +420 CORRIDOR AT 1920 PHILADELPHIA AUTOMOBILE SHOW +421 CORSETS MUST FIT\nGrady’s\nCorset Shop\nLa Corsella\nCorsets +422 CORTRIGHT\nMETAL\nSHINGLES\nLAID RIGHT\nOVER OLD WOOD\nSHINGLES +423 COTRELL & LEONARD\nCaps, Gowns and Hoods +424 Caldwell Undertaking Co,\n305 S. El Paso Street\nThe Leading Undertakers,\nPhones 197 and 92.\nCALLS ANSWERED DAY OR NIGHT\nE. J. SMITH, Manager. +425 Caldwell Undertaking Co.\nThe Leading Undertakers,\nCALLS ANSWERED DAY OR NIGHT +426 California\nSpecial Tourist Fares\nSouthern Pacific\nSUNSET ROUTE +427 Call at 1057 Fort St.\nAND SEE\nDr. N. S. Fairweather\nNEW YORK DENTAL PARLORS +428 Campaign\nSENTINEL. +429 Candy\nfor\nyour\nValentine +430 Canopy-top Road Wagons, $90 Up. +431 Can’t Catch Up\nJohn Breuner +432 Careless\nWith Money +433 Carnation\nMilk\nHenry May & Co., Ltd., Distributors Phone 22 +434 Carriages, Road Carts, and Harness.\nCARRIAGE, ROAD CARTS AND HARNESS,\nGeo. W. Covington, +435 Cartright & Davis\nMANUFACTURERS\nAND DEALERS IN\nGranite, Marble & Statuary\nMONUMENTS\nTOMBSTONES & CURBING\nOFFICE & WORKS\nFREDERICKSBURG, VA. +436 Cearnal Implement Co.\nJOHN DEERE PLOWS +437 Celebrate the 4th of July\nDon’t be Afraid to\nAsk for Credit\nDress in Our Stylish Suits\nCredit Terms Made\nStill Easier\nPrices Cut Still Lower +438 Center Table +439 Certain-teed\nRoofing +440 Challenge Wind Mill.\nThousands Erected During 12\nON THIRTY DAYS TRIAL, +441 Chamois Vests\nWe have a full line of\nCHAMOIS VESTS\nand LUNG\nPROTECTORS +442 Chancellor & Rawlings,\nFARMERS’ SUPPLY STORE.\nCOMMERCE STREET\nClear the Track.\nWe are Coming.\nIn fact we are here! With the\nMcCormick, McCormick, McCormick,\nHARVESTERS and MOWERS for the season of 1899. +443 Chase & Sanborn’s Seal Brand Coffe.\nGEORGE H. FITTS.\nTHE Grocer. +444 Chase & Sanborn’s Seal Brand Coffee. +445 Chase & Sanborn’s Seal Brand Coffee.\nGEORGE K. FITTS,\nTHE Grocer. +446 Chase Co. Land and Live Stock Co. +447 Children’s Furs +448 Chinese Girl. +449 Christmas Cut Price Sale\nCLOTHING ABSOLUTELY DISCONTINUED\nMENS SUITS\nLadies, Mens and Childrens Shoes\nDress Goods\nLadies and Misses Coats\nArt Squares, Rugs\nLittle Things +450 Christmas Greeting. +451 Christmas Slippers +452 Circle Front Livery Stable\nD. E. Eikenberry, Prop.\nThe Best Equipment in the Republican Valley. +453 City Meat Market.\nGeo Heine, Prop. +454 Classrom Uniform Downs\nSnobbery of School Girls +455 Clearance Sale\nOF\nMid-Winter\nPattern Hats\nRisch & McCoy\nThe Largest Millinery Establishment In Akron. +456 Clearance Sale of… Rent Pianos!\nBARGAIN PRICES\nW. G. WALZ COMPANY +457 Clinch Valley Roller Mills…\nPure Wheat +458 Coats, Suits, Wraps and Fine Furs +459 Coca-Cola\nSold Everywhere +460 Cold Meats for Hot Weather\nPioneer Meat Market +461 Columbus, Hocking Valley & Toledo\nRAILWAY, +462 Columbus, Hocking Valley and Toledo\nRAILWAY.\nTIME CARD,\nTaking Effect Nov. 25 1888 +463 Come Right In\nand\nSee Us First +464 Come!\nand\nsee the\nBeautiful\nDisplay\nof\nHats +465 Commercial\nGas Engines\nand Hoists\nJohn Wog +466 Commodore Perry\nTennis Blouses +467 Contennial’s\nBest Flour\nHenry May & Co., +468 Cool Shoes\nFOR\nHot Days +469 Copper Clad The Best that money will buy Price $70.00\nClark Jewel Gas Ranges\nIDEAL FIRELESS COOKERS +470 Corner West Tuscarawas and\nCleveland Avenue\nVitalized Air for Extracting +471 Correct Clothes for Men\nThe newest New York Fashions—both "conservative" and\n"extreme" are beautifully portrayed in BENJAMIN\nCLOTHES\nThe Clarion +472 Correct Footwear\nFor Men\nOur $3.50\n"Walk-Over"\nE. C. WILDES +473 Corsets +474 Covington & Bro.,\nUndertakers,\nNEW CHURCH, VA. +475 Credit Freely Extended On Any Purchase, Large or Small\nComfortable Turkish Rockers\nStandard House Furnishing Co +476 Crystal Fountain Retreat. +477 Custom–Tailor\nFit, Ready–to–\nwear Price\nM. J. HANKINS\nTHE STORE THAT SATISFIES\nTAZEWELL, VA. +478 Cuticura\nthe great\nSKIN CURE\nInstantly Relieves\nTORTURING\nSkin Diseases +479 D. C. MARSH\nThe Butcher\nPhone 12. +480 DAILY FASHION HINT.\nMisses’ and Small Women’s Dress. +481 DAIRY PRODUCTS\nMILK\nBUTTER\nICE-CREAM\nCHEESE\nNo Substitute for Dairy Products\nState Dairy Council +482 DAIRYMEN, ATTENTION To our exclusive manufactory of\nDairy chop\nSEATTLE CEREAL COMPANY +483 DANCING\nMODERN DANCES\nREMEY +484 DANGER POINTS ALONG THE COAST OF ASIA\nJapan’s Ultimatum to Germany Demands the Evacuation of Kiao-Chou and the Withdrrawal of All German Warships From Far Eastern Waters. +485 DANNIE OWENS\nUNDERTAKER\nCaskets, Coffins, Robes Etc. +486 DARK GIRLS CAN\nWEAR PEACOCK\nFEATHERS +487 DEADLY WORK OF AIRSHIP RAID ON ENGLAND SHOWN IN\nFIRST PHOTOGRAPH +488 DEAFNESS +489 DECKER &\nALRICH\nAGENTS FOR THE\nJOHNSON\nCHAIN DRIVE MOWER,\nCALL and SEE a\nSAMPLE MACHINE. +490 DEERING JUNIOR STEEL BINDER. +491 DEFECTIVE EYESIGHT +492 DEFFECTIVE EYESIGHT\nDR. S. GALESKI. +493 DEMOREST’S\nFAMILY MAGAZINE\nFOR\n$1.00 A YEAR +494 DENTISTRY\nElectre-Dental\nParlors +495 DENTISTRY\nElectro-Dental\nParlors +496 DENTISTRY!\nDr. Z. V. BANEY,\nLOGAN. +497 DENTISTRY.\nNEW YORK DENTAL ROOM.\nLeading Dentists. +498 DENVER AUDITORIUM, SCENE OF THE DEMOCRATIC NA-\nTIONAL CONVENTION, JULY 7. +499 DESIGN FOR MAINE MEMORIAL TO BE ERECTED AT ANNAPO-\nLIS, MARYLAND. +500 DESKS AND OFFICE FURNITURE\nROLL TOP DESKS\nOffice Furniture\nT. G. SELLEW +501 DIAMONDS\nFRANK C. HART\nWATCHES\nJEWELRY\n950 PAC. AVE,\nTACOMA +502 DIAMONDS\nON CREDIT\nLOFTIS\nBROS & CO. +503 DIANA DILLPICKLES IN GARMENTS OF MANY COLORS A 4-REEL "SCREECHER" FILM +504 DIANA DILLPICKLES IN MOVIELAND +505 DIP\nSHEEP\nFOR MONEY, +506 DIRECT ACTION GAS RANGE +507 DISTILLERS’ GOODS\nAT\nDISTILLERS’ PRICES. +508 DISTRICT\nMessenger\nSERVICE.\nTelephone 150. +509 DISTRICT 140-POUND CHAMPIONS.\nNATIONAL ATHLETIC CLUB FOOTBALL TEAM. +510 DIXON’S\nThe Common Sense\nLUBRICANT\nIn A Class\nBy Themselves\nDIXON'S\nAutomobile\nLUBRICANTS +511 DO VEILS MAKE YOU SQUINT?\nSome Doctors Say Yes; Alsto That They are Germ\nCatchers; But Oh, the New Veils Are So\nPretty and Becoming! +512 DO YOU GET UP\nWITH A LAME BACK?\nKidney Trouble Makes You Miserable +513 DODGE BROTHERS\nBUSINESS CAR\nBlair Motor Go +514 DOES YOUR WATCH,\nCLOCK OR JEWELRY\nNEED REPAIRING?\nHENNINGER’S\n813 BROADWAY. +515 DOES YOUR WATCH,\nCLOCK OR JEWELRY\nNEED REPAIRING?\nHENNINGER’S\n913 BROADWAY. +516 DOINGS OF THE DUFFS (Looks Like Tom Is Unlucky, That’s All!) By Allman +517 DOINGS OF THE DUFFS HELEN TAKES AN EVENING OUT. BY ALLMAN +518 DOINGS OF THE DUFFS They Were Almost Too Much for Danny. By Allman +519 DOMINION HOTEL — Finest Hostlery In the Southwest — 80 Rooms — All\nModern Conveniences and the Best of Service +520 DON’T BE A SLAVE TO THE WEATHER\nYou Can Keep Cool and Laugh at the Heat if\nYou’ll Drop in at\nTHE PALMS\nFor one of our cool refreshing Drinks While\nYou Are Having That Few Minutes Talk.\nJUST OPPOSITE ACADEMIC HALL +521 DON’T BE CARELESS\nTHERE IS A SAFE AND CAREFUL WAY TO DO\nEVERYTHING: DO IT THAT WAY +522 DON’T FAIL TO SEE\nThe New Edison Models. +523 DON’T GO OUT +524 DOROTHY GISH\nand 20 of the Fine Arts Kiddies\n"The Little School Ma’am" +525 DOWIE FASHIONS NEW AMERICAN FLAG +526 DOWNSBROUGH HOUSES IN LOGAN\nAT SIXTEENTH STREET AND DUNCANNON AVENUE\nAND SYDENHAM STREET—5200 NORTH +527 DR A. V. K. DEEKENS.\nSURGEON-DENTIST.\nOffices 2nd floor Pen. Bank B’l’d’g.\nClosed Thursdays. +528 DR. A. V. K. DEEKENS,\nSURGEON-DENTIST +529 DR. A. V. K. DEEKENS,\nSURGEON-DENTIST.\nOffices 2nd floor Pen. Bank B’l’d’g.\nClosed Thursdays. +530 DR. COOK'S OWN STORY OF\nHARDSHIPS IN GRIM ARCTIC\nHOW AN ARCTIC EXPEDITION CARRIES ITS FOOD AND CAMP EQUIPMENT. AT TOP, A TYP-\nICAL ESKING SLEDGE DOG. +531 DR. DROMGOOLE’S\nENGLISH\nFemale Bitters +532 DR. SEELYE’S\nLIQUID\nCATARRH\nREMEDY. +533 DR. VIRGIL BLAKEMORE\nPost Graduate\nin Optometry.\nSpecialist on\nspectacle mak-\ning. 302 Ex-\nchange Bank\nBldg. +534 DR> PIERCE'S\nGolden Medical Discovery\nMEETS\nTHE APPROVAL\nOF\nGENERATIONS\nA True\nTEMPERANCE\nMEDICINE, +535 DRESS\nMAKERS\nFIND The\nlatest styles\nIN\nL’Art De La Mode. +536 DRESS SKIRTS +537 DRS. J. H. AND J. W. COMBS,\nDENTISTS.\nDENTISTS. +538 DRUDGERY\nMonotonous Work That Wears the\nLife Away.\nDr. Greene’s Nervura is a Blessing to\nthe Toiling Masses. +539 DUNN’S\nBaltimore, Md\nA COMPLETE LINE OF "EVERYTHING IN LEATHER"\nAt Prices to Suit Every Purse. +540 Daisy Coal Heater +541 Dawgone Funny, Ain’t It, Scoop--Yes?--No! +542 De Laval\nCREAM SEPARATORS +543 Deposed Sultan +544 Diamonds and Jewelry\nCONFIDENTIAL CREDIT PLAN\nA. Simon & Sons +545 Did You, Too\nGet A Cash\nDividend\nOn Your\nAutomobile\nInsurance\nThis Year? +546 Diners de Luxe\nYour watch is your time table\nto\nPhiladelphia\non the\nNew Jersey Central +547 Do You Get Up\nWith a Lame Back?\nKidney Trouble Makes You Miserable. +548 Do You See?\nLoewenson & Kaufman +549 Do you have your own\nBathing Suit and\nCap +550 Doctors and Midwives Recommend\n"Mother’s Friend" +551 Doings of the Duffs Willbur Looks as Though He Earned It. By Allman +552 Domestic Gasoline Engines\nThe Farmer’s Best Hand\nOne In Use at My Shop\nPHIL R. PULHAM\nCONTRACTOR & BUILDER +553 Don’t Blame the Cook +554 Don’t Endure Chilly Hours While\nWaiting for the Coal Fire to Heat +555 Don’t Move\nYour\nOld Piano\nExchange\nCertificate\nSTEINWAY\nBollman Bros. Piano Co., +556 Don’t Pull Out\nThose Gray Hairs +557 Don’t Wait,\nOrder Now!\nDaily Bros.\nare your tailors.\nVirginia Bldg. Phone 736 +558 Don’t forget the old man\nwith the fish on his back. +559 Dorn-Cloney Laundry\nand Dry Cleaning Co. +560 Down With High Prices!\nCHICAGO SCALE COMPANY. +561 Dr. Ensign\nDENTIST +562 Dr. J. H. Combs\nRESIDENT DENTIST, +563 Dr. M. Ramser,\nEYE,\nEAR….\nNOSE…..\nTHROAT. +564 Dr. R. Goldstein,\nPhysician and Practical Optician\nWILL BE AT THE\nMiller Hotel\nWEDNESDAY NOVEMBER 12,\n(One Day Only.) +565 Dr. SCOTT’S GENUINE\nELASTIC TRUSSES +566 Dr. Scott's Electric Corsets. +567 Dr. T. F. Sam\nTHE FAMOUS\nChinese\nPhysician\nAND\nSurgeon. +568 Dress\nShoes\nManufacturers’ Shoe Co., Ltd., +569 Dressed and Undressed Lumber\nPORSTMOUTH RETAIL LUMBER CORPORATION. +570 Dressed and Undressed Lumber\nPORTSMOUTH RETAIL LUMBER CORPORATION +571 Dressed and Undressed Lumbet\nPORTSMOUTH RETAIL LUMBER ORPORATION. +572 Dresser (like cut) $8.75 +573 Dry Goods,\nBoots,\nShoes\nHats,\nand Caps. +574 Dutchess Trousers.\nWARRANTY.\nThe Star Clothing House. +575 E. C. NINDE.\nBaby Carriages AND Go-Carts\nMatting,\nMatting,\nMatting. +576 E. F. SCHMIDT.\nDRUGGIST\nAND\nAPOTHECARY. +577 E. J. Delorey\nHORSE SHOER, +578 E. K. WHEELER\nFUNERAL DIRECTOR and EMBALMER,\nOpen Night and Day +579 E. POWER,\nMANUFACTURER OF\nGalvanized Iron Cornicas, Window Hoods, &c,\nTIN, SHELT IRON AND COPPER WORK.\nDEALER IN THE CELEBRATED\nCOLUMBIAN COOK STOVE. +580 EAGLE WORKS\nMANUFACTURING COMPANY.\nSteam Eagles Bellers +581 EAS\nINGROWING NAILS.\nCURE GUARANTED. +582 EASTER IS SO\nEARLY THIS YEAR\nArizona Fuel & Feed Co. +583 EAT\nQUAKER\nOATS\n10c.\nPACKAGE\nW. L. BURRUSS +584 ECZEMA +585 ECZEMA.\nITCHING\nHUMORS +586 EDUCATIONAL\nTHE UNIVERSITY OF NOTRE DAME,\nNOTRE DAME, INDIANA. +587 EL PASO\nMine. Mill. and Smelter Supply House.\nSTORE AND WAREHOUS: EL PASO, TEXAS. +588 EL PASO SADDLERY CO.\nSaddles Harness, Wagons Firearms and Ammunition.\nWHOLESALE AND RETAIL. +589 EL PRODUCTO\nfor\nreal\nenjoyment\nLET’S talk sense about\ncigars. +590 ELECTION, NOVEMBER 6, 1860\nFOR PRESIDENT.\nABRAHAM LINCOLN,\nOF ILLINOIS.\nFOR VICE PRESIDENT,\nANDREW JOHNSON,\nOF TENNESSEE. +591 ELECTRIC\nCOFFEE POT +592 ELECTRO\nDENTAL\nPARLOR\nDental Work +593 ELEGANT AND USEFUL\nFOR THE OFFICE\nSTUDY OR LIBRARY.\nTHE JOHNSON REVOLVING BOOK CASE. +594 ELLS OPTICAL CO.\n910s BROADWAY. +595 EMERSON & BERRIEN,\nUndertakers, +596 EMPEROR FRANCIS JOSEPH. +597 ENCHANTING\nTEA\nROOMS\nof New York +598 ENGINES and BOULERS,\nByran’s Roller\nQUARTZ MILL, +599 ENGLISH HOSPITAL TRAINS WELL EQUIPPED +600 ENTERING THE GATES. +601 ESTEY PIANOS\nGrand, Upright and Player\nGEORGE VENABLE\nElviris Building +602 EUGENE TEUTSCH\nARCHITECT\nContractor and Builder +603 EUREKA CARRIAGE FACTORY.\nGREAT REDUCTION IN PRICES +604 EVERY NIGHT SOME-\nONE’S SAFE IS ROBBED\nREPUBLIC\nTRUST COMPANY +605 EVERYTHING IN MEN’S FURNISHINGS AT PRICES THAT ARE RIGHT.\nED. HEINEMANN +606 EVOLUTION\nTHE NEW CENTURY\nTYPEWRITER +607 EXTRAORDINARY\nBARGAINS IN\nPIANOS +608 EYE AND EAR INFIRMARY.\nEYE AND EAR\nDR. F. A. CALOWELL, +609 EYES! Eyes Tell Whole\nStory of War Aims, Says\nNoted Character Expert +610 Eagle Clothing Store. +611 Easy Washing in 6 Minutes +612 Eat and Get Thin +613 Edison Phonographs\n3000 RECORDS\n35 Each\nPAUL V. McCOY & CO. +614 Even with the\nBest of Luck\nYou’ll need plenty\nof exercise and good\nfood to reach the top.\nGrape Nuts +615 Evening Dress\nSuits\nAND\nTuxedos +616 Everybody\nLoves a Winner\nUNDERWOOD\nTypewriter +617 Excursion Rate\n….VIA….\nSOUTHERN PACIFIC,\nSUNSET ROUTE\nUnited Presbyterian General Assembly, +618 F. C. CORSETS\nMAKE\nAmerican Beauties.\nLatest\nModels.\nKALAMAZOO CORSET CO. +619 F. C. Corsets\nMAKE\nAmerican Beauties +620 FACTORY AGENTS FOR THE\nLeonard Cleanable Refrigerators.\nE. C. NINDE, +621 FACTORY AGENTS FOR THE\nLeonard Cleanable Refrigerators.\nE. C. NINDE,\nFREDERICKSBURG, Va. +622 FAIRBANKS\nSCALES +623 FAIRBANKS’\nSCALES +624 FAIRBANKS’\nStandard\nSCALES.\nOF ALLL KINDS +625 FARMERS’ FAVORITE\nDISC DRILLS.\nDECKER & ALRICH. +626 FARTHEST NORTH!\nThree Years of Arctic Service. +627 FATIMA TURKISH BLEND\nCIGARETTES\n20 for 15 cts. +628 FERRY’S SEEDS +629 FIGHTING AT THE CRATER. +630 FINE FOOTWEAR\nEver brought to this city. +631 FINE TIALORING\nAT PRICES\nNever Before Equaled.\nJESUS TERAN,\n110 S. Oregon St. +632 FIRST ANNIVERSARY SALE\n$1.00\nCHAS. REILLY OPTICAL CO., 619 Locust St. +633 FIRST CAPITAL PRIZE\n$1800 JACKSON TOURING CAR\nOn Exhibition at the JACKSON AUTO CO., 1212 So. Tacoma av. +634 FIRST FLOOR PLAN +635 FIRST PIECE OF STATUARY\nIN PLACE ON EXPOSITION AVENUE. +636 FIRST PRIZE, $400 PIANO +637 FIT AND WEAR BEST\nUnicorn Popular Shirts.\nCOCHRANE&Co +638 FIVE TONS OF BABIES ARRIVE\nIN TACOMA IN 1910 +639 FOOD VERSUS THE TIGHT REIN +640 FOOT AND LIMB\nTROUBLES +641 FOR A DELICIOUS\nAND\nSATISFYING\nBREAKFAST\nWARNER’S SAFE\nYEAST,\n10 CENTS A BOX,\n10 Cakes in a box. +642 FOR ALL CREATION\nNOAH’S\nLINIMENT\nIT PENETRATES +643 FOR BOY AND GIRL +644 FOR COUGHS, CROUP\nAND\nCONSUMPTION USE\nTAYLOR’S\nCHEROKEE\nREMEDY\nOF SWEET GUM AND\nMULLEIN. +645 FOR CUTLERY\nSTANDARD BDANRS, GREAT VARIETY, AT LOW PRICES\nTHE NYE HARDWARE COMPANY, +646 FOR EVERTHING IN\nStationery, Wall Paper, Paints,\nOild, Ammunition, Guns, Cutlery,\nNotions, etc., go to\nG. S. Van Wagenen. +647 FOR FINE TAILORING.\nJ. H. HEITMAN,\nTHE TAILOR, +648 FOR GOLF RASH +649 FOR KANSAS CITY\nand… …the SOUTHWEST.\n"Are the privileges of your 'Century Club' available\nfor those living outside of Kansas City?"\nWHAT\nIT\nCONTAINS +650 FOR RENT\nIN THE\nBelber\nBuilding\n22d and Arch Sts.\nA Limited Amount\nof Floor Space\nReasonable Terms\nLight, Airy Space\nBest Facilities\nFor full information apply\nTHE BELBER TRUNK\n& BAG CO. +651 FOR SALE!\nPleasanly Located Lots\nOn King St., near Waikiki Road\nWITH\nDouble-walled, Well-build\nModern Cottafes.\nGEAR, LANSING & CO.\n210 King Street. +652 FOR SALE.\nTHOROUGHBRED JERSEY COWS. +653 FOR SALE—AUTOS +654 FORTUNE TELLER,\nAstrologer and Clairvoyant.\nREADING OF THE\nPast, Present, Future. +655 FOURTH OF JULY FEET +656 FOUTZ’S\nCELEBRATED\nHorse and Cattle Powders. +657 FOXY GRAN’PA—He Is There at the Finish +658 FRANK&SEDER\nEleventh&Market Streets\nLike "A World’s Series"\nThis Sale is Drawing Crowds\nMEN GET 2 GARMENTS\nfor the Price of One\n2 Suits or 2 Overcoats\nor a Suit & an Overcoat +659 FREDERICKSBURG MILLING CO.,\nFREDERICKSBURG, VA.\nA GOOD MILLER +660 FREE PANTS +661 FREE PIANO!\nFINE PIANO FREE\nThe Plan is Simple: +662 FREE!\nChicago Dentists, Inc +663 FREMONT\nHAT AND CAP\nMANUFACTORY. +664 FRENCH NOVELTIES IN SUNSHADES. +665 FRESH PURE MILK\nCENTRAL DAIRY +666 FRIDAY!\nS. H. BARRETT’S\nRAILROAD SHOWS\nA CONSOLIDATED COLOSSAL CREATION\nMOST MAGNIFICENT FEATURES\nOF THE SHOW WORLD. +667 FROCK FOR LITTLE GIRL. +668 FURNITURE WARE-ROOMS,\nJ. W. STEVENSON,\nParlor, Dining Room and Kitchen\nFURNITURE. +669 FURNITURE!\nWONDERFUL DISPLAY!\nAT THE\nGreat Western Furniture Emporium.\n"We Always Lead, but Never Follow!” +670 FURS\nAND CLOAKS\nINFORMAL OPENING +671 FURS! FURS! +672 Fairy Dreams\nof Appetite +673 Fall Displays Now Complete in Beautiful\nWhittall Rugs +674 Famous Allen Natural Gas Burners\nAND THE\nCalorific Grate Burner +675 Fancy Vest +676 Farm for Sale. +677 Farmers and\nMerchants Bank\nJASPER, MISSOURI\nCapital Stock $10,000.00\nSurplus and profits 3,500.00 +678 Farmers and Merchants National Bank,\nONLEY, VA.\nWe Pay Interest on Time Deposits. +679 Federal\nCrystal Radio\nReceiving Ser\nFEDERAL TELEPHONE & TEL-\nEGRAPH CO.\nBuffalo, N. Y. +680 Figures on Our\nFurniture\nAre Doubtful\nH. W. Myers & Co.\nDEALERS IN HARDWARE AND FURNITURE. +681 Fike. Smith & Co.,\nCarraige Shop!\nSpring Street, Logan, Ohio. +682 Fike. Smith & Co.,\nCarriage SHop!\nSpring Street, Logan, Ohio. +683 Filth Brings\nPoultry Diseases\nZENOLEUM\nE. O. Hall & Son\nLtd., Agents +684 Fine Chickens, and Eggs\nfor Hatching — Incubators +685 Fine PIANOS,\nAlso ORGANS +686 Fine White and\nPerfect\nDIAMONDS\nHENNINGER'S +687 Flood Refuges Picking Their Way to Dry Land\nThis picture shows how survivors of Austin dam disaster trailed disconsolately away from ruined homes, in search of a dry spot on which to rest. +688 Folger’s\nGolden\nGate\nCoffee +689 Foot\nVigor +690 For\nFine Laces\nand Linenes\nPearline\nSaves Wear and Tear +691 For Comfort and Economy\nUSE 1903\nPerfection Oil Stoves\nSold Wherever Stoves are Sold.\nSTANDARD OIL COMPANY +692 For Milady’s Toilet +693 For Sale\nNotice !\nA. D. AL XANDER\nHAMILTON BLOOK +694 For Sale or\nTraders\nA. D. Alexander\nHamilton Block +695 For a Quick Meal\nThe best thing yet discovered is\nHeinz Baked Beans.\nBe sure it's Heinz.\nH. Hackfeld & Co., +696 For the Golfer\nJACOB\nREED’S\nSONS +697 For the Spring of 1908 there are\nto be found in popular\nDOLLY MADISON\nSHOES\nNEW AND ORIGINAL DESIGNS\nWE CREATE– NOT IMITATE +698 For the Toilet Table +699 For the Toilet Table\nFRED SCHAEFFER,\nTHE DRUGGIST. +700 For your lips alone-\nLILY\nCUPersonal +701 Force and Lift\nHAND AND POWER PUMPS.\nMyers Stayon\nDoor Hangers.\nWRITE FOR PRICES\nJohn C. Willis & Son. +702 Founded by Merchants and\nManned by Merchants +703 Fourteen Sev-\nenty-Five\nFor Ladies New Fall\nTAILOR\nSUITS. +704 Franlkin Simon & Co.\nFor Madame\nCUSTOM TAILORED\nSUITS MADE TO\nINDIVIDUAL ORDER\nCopying\nor adapting\noriginal models\nimported from the\nlatest Paris openings. +705 Fredericksburg’s Fine School Building, Where Summer Institute Will Be Held. +706 Free Connections\nTHE BELL COMPANY\nCONNECTS WITH THE\nFrederick and Clarke Telephone Company +707 Free Dictionary +708 Freezing Ice Cream\nWithout Labor. +709 French brides arriving in America +710 Frisco Road to Chicago\n"The Modern Line to Chicago" +711 G. A. K. PARADE PASSING GRAND TRIUMPHAL ARCH IN CINCINNATI. +712 G. B. TILGHMAN, Opt. D., +713 G. G. Davis Dairy Farm +714 GARDEN SEEDS THAT WILL\nGROW +715 GAS BILLS\nREDUCED +716 GASOLINE ALLEY—Where’s Another Doctor By KING +717 GATEWAY AT TIAGUANUCO—OLD PERUVIAN\nBURIAL PLACES. +718 GENTSCH BAKERY +719 GERMAN CAPTIVES IN ENGLAND +720 GET THE BEST\nWEBSTER’S\nINTERNATIONAL\nDICTIONARY +721 GET THE BEST\nWEBSTER’S\nUnabridged Dictionary,\nNEW ILLUSTRATED EDITION, +722 GET THE BEST.\nWEBSTER’S UNABRIDGED,\n"DO IT NOW."\nTHE NEW EDITION +723 GETTING THE VOTE IN LINE +724 GIF. 110a, "POMONA" SPRAY PUMP\nAs mounted on end of barrel; with 10 ft. discharge\nhose and vermorel nozzle, no barrrel. Price $15. +725 GIGANTIC SALE\nTAN SHOES.\nTHIS WEEK. +726 GIRLS\nLet us shampoo and curl your hair\nbefore you go home for the holidays.\nLook your best for mother and dad\nand especially for "him."\nPARSON SISTERS\nPhone 795 +727 GLOBE HARDWARE CO.\nHeating Stoves, Cook Stoves,\nBRIDGEBEACH & COS\n"MOHAWK"\nSheet Iron\nHeaters\nTHE BEST STOVES AT\nTHE LOWEST PRICES +728 GOLD AND WATCHES GIVEN FREE! +729 GOLD DUST\nWASHING\nPOWDER. +730 GOLDEN EAGLE HOTEL. +731 GOOD\nCLOTHES\nTHE KASH CO.,\nLimited,\nCor. Fort and Hotel +732 GOOD HEAVENS! AND HE’S ALREADY SWALLOWED IT! +733 GOOD LUCK Baking Powdre +734 GOOD MEAT AND\nFIRST–CLASS SERVICE\nGEORGE W. SMITH\nPHONE 168 +735 GORDON DYE HOSIERY. +736 GORDON–2 1/4 in.\nan ARROW\nform-fit\nCOLLAR +737 GOWN OF FAWN CLOTH. +738 GRAIN CRADLE!\nMYER’S PATENT +739 GRAND REVIEW OF SHERMAN’S ARMY ON PENNSYLVANIA AVENUE, WASHINGTON, D.C., MAY 21, 1865. +740 GRANGE RANGE. +741 GRASSHOPPERS\nGoods\nSold at\n"Grasshopper\nPrices"\nfor the\nNext\nFew\nWeeks.\n"Never Sleeps."\nHONEST JOHN +742 GREAT KOKIN-MIGNONETTE JAP CIRCUS.\nTHE ONLY TRAINED ALASKA SEA LIONS AND SEALS +743 GREAT OAKS FROM\nLITTLE ACORNS GROW\nGREAT FORTUNES ARE\nMADE BY THE DOLLARS\nTHAT WERE DEPOSITED\nIN THE BANK\nFIRST NATIONAL BANK\nGLOBE, ARIZONA +744 GREEK STYLES FOR EVENING\nDRESS LATEST FROM PARIS +745 GROGAN'S\nInstallment House! +746 GROGAN’S\nInstallment House! +747 GRUE’S PREHISTORIC GROTESQUES\nTHE GOOGLYGO. +748 GUILTY! +749 GUY OWENS\nELECTRICAL CONSTRUCTION CO.,\nLTD. +750 Gasoline Engines\nBatteries and Supplies\nHardware and Tools.\nFrank K. Tyler, +751 Gasoline Lamps\nFor Sale.\nTHE LATEST IMPROVED +752 Gentlemen’s Clothes\n$35, $40, $45 & $50 +753 Gents’ Furnishing Goods!\nShirts,\nCollars\nNECK\nTIES,\nUNDER\nSHIRTS,\nAND\nDRAWERS\nAnd Ladies’ and Gents’ Furnishing\nGoods, at +754 Genuine Holland\nWindow Shades +755 George Washington\nSaid:\n"Economy makes happy\nhomes and sound nations;\ninstill it deep.”\nThatcher Bros. Banking Co.\nLogan, Utah. +756 Georgette Crepe Blouses +757 German Shopping Baskets, +758 Get Chance to Size Up\nBilly Papke Tonight +759 Get Married\nAnd WHEN you get\nmarried let us print\nyour wedding invi-\ntations\nThere’s Nothing Like It\nWe Simply Dote on Help-\ning Along the Good\nCause\n"NAME THE DAY"\nand call on us +760 Get the\nREYNOLDS\nCOTTON PRESS +761 Give her time, +762 Give him a pair of\nautomobile gloves\nor gauntlets for\nChristmas. They will\nkeep his hans warm\nin the coldest weath-\ner.\n$5 to $7\nWilliam H.\nWanamaker +763 Go-Cart and Carriage Sale,\nGo-Carts and Baby Carriages\nAT REDUCED PRICES +764 Go-Carts. +765 Goatherd Unearths Fortune Hidden by Default-\ning Cashier. +766 Gold Medal\nAt Pan–American Exposition\nUnlike Any Other!\nThe full flavor, the delicious\nquality, the absolute Purity\nof Lowney’s Breakfast Cocoa\ndistinguish it from all others. +767 Gold Seal\nThe Best Rub-\nber Made.\nPAIR $5.\nBrown &\nCrismond's +768 Golden Gate\nFlour\nHas been the standard of\nexcellence for over a\nquarter of a century.\nAll reliable grocers sell it.\nH. Hackfeld & Co., Ltd.,\nAgents. +769 Good News For Husekeepers +770 Grangers’ Co-operative Business Association\nAGRICULTURAL IMPLEMENTS, +771 Granite and Bronze Monuments\nAt Prices To Suit.\nHawaiian Iron Fence and Monument Works, Ltd\n176-180 KING STREET. +772 Great Story of the Kentucky Blue Grass\n"BLISTER JONES"\nWill Be the Next Novel a Week In the Times Starting Monday July 27th.\nSTARTS MONDAY - - - ENDS SATURDAY\nDon’t Miss This Thrilling\nPicture of Race Track +773 Greatest\nBattle Between Man and Horse\nProf. O. R. GLEASON,\nMAN-FIGHTING STALLION +774 Groceries\nMeat and\nVegetables\nAT THE\nPUBLIC MARKET +775 Gronoco Whiskey\nSterling Whiskey\nPendleton Whiskey\nCORN WHISKEY\nVIRGINIA APPLE BRANDY\nCASE GOODS +776 Grove’s Tasteless\nChill Tonic\nFOR CHILLS, MALARIA\n&BILIOUSNESS.\nAs pleasant as Lemon Syrup.\nNO CURE, NO PAY.\nREMEMBER +777 H. C. DAVIS\nGeneral Electrician\nHouse Wiring and\nRepair Work.\n107 on the VIADUCT\nR. F. Nailler\nAgent\nAkron, O. +778 H. H. HEMPER,\nMECHANICAL\nOPTICIAN. +779 H. KINDERMANN,\nDeSIARD STREET, MONROE, LA.,\nDEALER IN CHOICE\nFamily Groceries, Wines, Liquors,\nTOBACCO, CIGARS,\nCrockery, Shelf-Hardware, Notions, Etc. +780 H. O. EARL’S\nFourth Annual PUBLIC SALE of good young\nMules and Horses\nThursday, February 1, 1912\n25 head Mules +781 H. P. BUCKLEY\n8 Camp St., New Orleans,\nWATCHMAKER,\nFine Watches,\nJEWELRY\nSilver Ware and Spectacles, +782 H. W. MOESTA’S.\nPure Ice-Cream\nAND\nWater-Ices,\nBAKERY AND CONFECTIONERY. +783 HAIR GOODS\nWIGS\nBRAIDS, FRONT PIECES +784 HALETT AND DAVIS,\nWILCOX AND WHITE\nORGAN,\nD. O. MYERS,\nI. G. HAMILTON & CO., +785 HALLETT AND DAVIS,\nWILCOX AND WHITE.\nORGAN,\nN. G. HAMILTON & CO., +786 HALL’S\nVEGETABLE\nSICILIAN\nHAIR\nRENEWER +787 HAPPY SCHOOL DAYS +788 HARDWARE\nAnd\nFarming\nImplements\nof All Kinds.\nHAMBLEN BROS. +789 HAS SEPARATE GUIMPE. +790 HAT CONFORMING MACHINE. +791 HATS AND CAPS.\nISAAC DAVIS\nWholesale & Retail\nDEALER IN\nHats, Caps, Umbrellas, Gloves and\nSTRAW GOODS.\nHas just received his Spring Stock +792 HATS! HATS! +793 HAWAIIAN STOCK YARDS CO., Ltd\nLIVERY AND BOARDING STABLE +794 HAWAIIAN STOCK YARDS CO., Ltd\nLIVERY AND BOARDING STABLE. +795 HAYES OPTICAL CO.\nExclusive Scientific\nOPHTHALMOLOGIST, +796 HAYES OPTICAL CO.\nExclusive Scientific\nOPTHALMOLOGIST. +797 HE DIDN’T DINE ALONE. +798 HE-NO\nWHAT IS IT? +799 HEADACHE +800 HEADQUARTERS FOR\nCOMMON SENSE SLEIGHS +801 HEINZ\nOVEN BAKED\nBEANS\nWEEK +802 HELD BY THE ENEMY. +803 HELP WANTED +804 HENRY ECKHARDT, GUNSMITH, +805 HERE IT IS!\nTHE\nColumbia Chainless\nTO BE SEEN AT\nOUR STORE. +806 HERE’S BRICKLEY’S RUNNER–UP\nON THE STRONG HARVARD TEAM +807 HERRICK\nREFRIGERATOR\nWE HAVE THE\nMAJESTIC,\nSUPERIOR and\nST. CLAIR\nSTEEL RANGES…\nTanner-Pennebaker Hardware Co. +808 HIGH\nGRADE\nLOW\nPRICE\nLemon 10c\nVanilia 15c\nSOUDERS\nELEGANT\nFLAVORING\nEXTRACTS +809 HIGH UP ABOVE EVERYTHING +810 HIGH UP AS YOU WISH +811 HIS PLAYING WON\nFAVOR AT CONCERT +812 HIS ROYAL HIGHNESS PRINCE TSAI T’AO ARRIVING AT THE CAP-\nITOL THIS MORNING WITH HIS STAFF. +813 HIS RUBBER BOOTS.\nDisky, having tried his new rubber boots, finds that he waded in too +814 HISTORY REPEATED. +815 HOFBRAU BOTTLING DEPARTMENT\nTIVOLI BREWERY +816 HOME\nSWEET\nHOME +817 HOME OF THE RICHMOND ASSOCIATION. +818 HOMRE\nCORDIAL\nPURIFIES THE BLOOD.\nERADICATES MALARIAL POISON +819 HORSE BOOTS, COLLARS,\nSWEAT PADS, COOLERS,\nHOUSINGS, HALTERS,\nMATS, BRUSHES,\nLAP ROBES,\nTIE ROPES, LAMPS,\nSPONGES, GREASE, WHIPS,\nDRESSING, CHAMOIS, Etc., Etc.\nSchuman Carriage Co., +820 HORSES +821 HORSES, CARRIAGE\nBUGGIES, CARTS & WAGONS +822 HOT COFFEE FOR A BRACER. F. L. Supplee, member\nof the New Jersey Bridge Commission, after watching\n"Sand Hogs" toil +823 HOTEL MAUREL\nNorth Globe +824 HOUSEHOLD\nNEED\nHunter\nBaltimore\nRye +825 HOW ARE YOUR EYES!\nGOLD SPECTACLES AND EYE–GLASSES,\nGOLD HOOKS AND CRAINS +826 HOW CHAMPION AND CHALLENGER COMPARE +827 HOW EUROPE IS SPLIT BY TWO ALLIANCES\nTHE THEATER OF EUROPE’S GREAT CRISIS. +828 HOW TO DANCE THE\n"CONSUELO.” +829 HOW TOO RAZE FANCY CHICKENS.\nBY ME SIMON. +830 HUDSON\nSee the Latest Hudson at\nthe Brooklyn Auto Show +831 HUMPHREYS’\nVeterinary Specifics +832 HUMPHREY’S\nHOMEOPATHIC\nVeterinary Specifics\nCure Disease of\nHorses, Cattle, Sheep, Dogs, Hegs, Poultry.\nUsed by U. S. Government. +833 HURRY IN WITH YOUR\nSOLDIER VALENTINES\nBESSIE LOVE FITTED TO A SOLDIER’S HEART. +834 HYDRAULIC IRON WORKS! +835 HYDRAULIC IRON WORKS.\nPERRYSBURG, OHIO. +836 Half A MILLION Dollars\nTo be Given Away in Articles of Real Value to the Users of\nMail Pouch\nTOBACCO +837 Half-Battery Plan. +838 Hammocks $3.00 +839 Hand-work Distinguishes\nNew Models in Hats\nat $10, $12 and $15 +840 Happy New Year!\nHARD-WARE!\nSTOVES!\nAND\nIRON! +841 Harness Bargains\nFine Dependable\nTEAM HARNESS\nFREE CATALOG\nANISER MERC. COMPANY +842 Hats With Style for the\nParticular Man\nSYKES & BROADHEAD\nCLOTHING CO. +843 Have Your\nPICTURE\nDavis Gallery, +844 Have an Erect Figure\nThe Radium\nShoulder Brace +845 Have your Teeth Fixed by our PAINLESS METHOD.\nTHE EXPERT DENTISTS, +846 Hawaiian Iron Fence & Monumet Works. Ltd.\nH. E. HENDRICK, 176-180 KING STREET, PHONE MAIN 287 +847 Hawaiian Trust Co., Ltd. +848 He "Surprises" the\nMaid of All Work. +849 He came eagerly toward me. +850 He had buried his face in his hands as\nshe went on. +851 He knelt before her, for in no other way could he exhibit what his heart prompted +852 He saw the\nAwful\nNumber of\nLife\nNOW ON SALE\nEVERYWHERE\nTEN CENTS +853 Head of the\nGerman Army +854 Heaters Make Good Gifts,\nEspecially Good Heaters\nStandard Furniture Company +855 Her Christmas gift—\nA Box of Jimmie’s Chocolates\nJimmie’s College Inn\n916 Broadway\nLIBERTY CANDY KITCHEN\n9th and Bdwy. +856 Here Are Some of the Prices.\nMEN’S SHOES +857 Here Is Proof, Undeniable Proof, That Many Operations\nMay Be Avoided. +858 Here's\nA POINTER.... +859 Hidden Beauty\nBradfield’s\nFemale Regulator +860 High Art\nClothing +861 High Chair $1.85 +862 High Grade Service\nPENNSYLVANIA RAILROAD +863 High Indian Birth Rate Gives Hope\nof Rejuvenating "Vanishing” Race\n"LITTLE CHIEF NATIONWIDE" +864 High Standard Clothes\nMens Suits\nfor Spring +865 Hogs Pay Big\nAmerican Fence\nMcCook Hardware Co.\nPhone 31 McCook, Nebr. +866 Hollenbeck Hotel\nAnd Cafe\nLos Angeles JNO. S. MITCHELL, Prop\nKingman Headquarters\nMODERATE PRICES. EXCELLENT SERVICE.\nLadies and Children Welcome. +867 Holsman\nAutomobiles\nMcCook Automobile Co. +868 Home Made Tent For the\nAutumn Huuter Is Best +869 Home in a Barrel—\nJust Like Bad Boys +870 Horse Clothing +871 Horse Clothing\nEl Paso Saddlery Co. +872 Horses -:- Mules. +873 Hosiery Department. +874 Hot Weather\nis just the time to test the wonderful, labor-eaving,\nand economical qualities of\nPyle’s Pearline. +875 How Great War Zone May Extend Over Whole World +876 How to Dress Well and\nEconomically! +877 How to Prepare Appetizing Things to Eat for\nYour Beach Party—By Mrs. E. Riesenberg +878 Hudson River\nby Daylight +879 Hunt\nWith\nA\nKodak\nKodaks and Supplies\nTHE NYAL STORE\nDR. J. K. SCHOOLER +880 Hunting the Grat American Tiger!\nBy Dan J. Singer +881 Huntington, Hopkins & Co.,\nHARDWARE, BLACKSMITH AND RAILWAY SUPPLIES.\n"NEW MODEL” LAWN MOWER! +882 Huntington, Hopkins & Co.,\nHARDWATE, BLACKSMITH AND RAILWAY SUPPLIES.\n"NEW MODEL" LAWN MOWER! +883 I AM\nA MOTHER +884 I HAVE SHAVED MYSELF\nGENUINE YANKEE\nSOAP.\nJ. B. WILLIAMS CO. +885 I made good with over a thous-\nand men last year making their\nsuits;\nLARSEN the Tailor +886 I. Mayer Bros.’ label in neckband\n—guarantees dependable clothes\nvalue. +887 I. N. L. Pocket Knives, English\nCarvers Razors, Shears and a\nfull line of Toilet Articles. +888 IF LOW PRICES WILL DO IT, HERE YOU ARE:\nWOMENS SUITS +889 IF YOU LIKE\nHart, Schaffner &\nMarx\n"THE HOME OF GOOD CLOTHES"\nSILVA’S TOGGERY, +890 IF YOU WANT GOOD\nBREAD AND CAKE…\nC. B. Travis +891 IMMUNIZE.\nGreat Danger — Hog Cholera. +892 IMMUNIZE.\nGreat Danger—Hog Cholera. +893 IMPROVED COTTON GIN\nbut PRICE REDUCED +894 IN MEMORY OF NATION’S DEAD +895 INDIA TEA\nGreen or Black\nAS SERVED AT THE\nWORLD’S\nFAIR +896 INDIAN SUMMER DRIVES AWAY WINTER. +897 INSURANCE.\nAETNA BUILDING,\nINDIANAPOLIS.\nTHE BEST\nis\nTHE CHEAPEST!\nOLD RELIABLE\nAETA,\nOF HARTFORD CONN. +898 INTERIOR ADORNMENTS,\nPAPER HANGINGS, +899 INTERIOR ADORNMENTS.\nPAPER HANGINGS +900 INTERIOR ADORNMENTS.\nPAPER HANGINGS, +901 INTERIOR ADORNMENTS.\nPAPER HANGINGS. +902 IRON FENCE CHEAPER THAN WOOD +903 ISLAND HOME STOOK FARM. +904 IT IS HEALTHFUL\nShredded\nWheat\nBiscuit\nAT YOUR GROCERS +905 IT LOOKS AS IF HE WERE GOING TO TRY THE BUMP. +906 IT WAS ONLY ONE OF THE MANY\nTRAGEDIES OF THE PRIZE RING\nWHEN KID KNOCKED OUT RIVERS\nCALLAHAN A MERE BOY KNOCKED OUT RIVERS IN TWO ROUNDS +907 IT WOULDN’T TAKE LONG IF WE’D ALL FORM A BUCKET BRIGADE +908 IT is THE\nNewmarket Overcoat +909 IT’S A HARD LIFE! +910 Ice Cream Freezers\nAT\nHAMBLEN BROTHERS.\nBig Stone Cap. Va. +911 If You Havn’t Been Wearing\nHart, Schaffner & Max Clothes\nHANKINS & SON THE ECONOMY STORE. +912 If You Think All Nemos Are\nFor Stout Figures See No. 303 +913 If Your\nWatch is\nAiling +914 If you have a carpet that looks dingy and\nyou wish to restore it to its original freshness,\nmake a stiff lather of Ivory Soap and warm\nwater and scrub it, width by width, with the\nlather. Wipe with a clean damp sponge. Do\nnot apply more water than necessary. +915 If you want a wach that you\ncan be proud of—carry a\nWaltham Watch +916 Improved Little Giant,\nCorn, Cob and Hominy Mill.\nCANFIELD & BROTHER’S +917 In An Emergency — Telephone +918 In Our Store\nEverything Is Done\nfor the Convenience\nand Satisfaction of\nOur Customers.\nFor Instance:\nTrying on.\nAlterations.\nFitting on Kid Gloves.\nMaking Up to\nMeasure.\nFitting Cor-\nsets.\nAdvising\nCustomers.\nIn Short.\nThe Thompson Dry Goods Co. +919 In every town\nand village\nmay be had,\nthe\nMica\nAxle\nGrease\nthat makes your\nhorses glad. +920 Independent Assay Office. +921 Into this hall\na huge spout\ndischarges\na baby every\neight seconds +922 Iron Beds\nWe are the leaders\nand Prices the low-\nest. Sizes, 3 ft. to\n5 ft. 6 in. wide.\nWholesale and retail. +923 Iroquois Bicycles $15\nIROQUOIS CYCLE WORKS FAILES\nDESCRIPTION\nSEND ONE DOLLAR\nWE HAVE BICYCLES +924 Iroquois Bicycles $16:75\nSEND ONE DOLLAR\nWE HAVE BICYCLES +925 It Saves You Grain.\nIt Gives You More Hay +926 It's a pleasure to shave with Mohr’s\nBest Razor. +927 Its Work\nTells\nRemington\nTypewriter +928 It’s Hard to Get a Cup of Real Java Coffee in Java,\nBut Times Tourists See the Ruins of a Great Temple\nTHIS TEMPLE OF BORO SOEDOER, IN JAVA, IS THE LARGEST BUDDIST PLACE OF WO RSHIP IN THE ORIENT. +929 It’s In The Negative. +930 It’s President’s Daughter;\nShe’s Carrying a Cane! +931 It’s Texas\nthis Winter\nWinter Tourist Fares +932 It’s so simple\nTETLEY’S TEA +933 J&T\nCOUSINS\nNEW YORK\nSHOES +934 J. B. SICKLES SADDLERY CO.\nWashington Ave. and Twenty-First St.\nUP-TO-DATE\nHARNESS,\nSurrey,\nTrap\nand\nRunabout.\nEVERY QUALITY, STYLE AND PRICE. +935 J. C. RAUB,\nREPAIRS AND RENTS\nBICYCLES +936 J. C. RAUB, \nMain St., above\nPalace Stables\nREPAIRS AND RENTS\nBICYCLES +937 J. C. ROSS & CO.,\nTHE FIRST-CLASS UNDERTAKERS.\n401 - - S. El Paso St.\nPhonesL Office, 211. Res. 183.\nCalls answered any hour. Terms Reasonable +938 J. C. ROSS & CO.,\nTHE FIRST-CLASS UNDERTAKERS.\nCalls answered any hour. Terms Reasonable +939 J. E. MORRIS,\nGENERAL\nBlacksmith AND Woodshop,\nFARMING IMPLEMENTS, &C\nHORSESHOEING A SPECIALTY.\nThe Wood Work Department +940 J. E. PETERS,\nFURNITURE, SASH AND DOORS, WINDOW, SHADES,\nChildrens’ Carriages, Wagons and Velocipedes.\nEMBALMER\nAND DEALER IN\nCoffins, Coffin Trimmings and Metalic Burial Cases. +941 J. LEUTY’S SONS\nPalace Meat Market +942 J. R. Shaw, D. V. S.\nOffice and Infirmary, - - 863 King St.\nTELEPHONE 796.\nModern and Humane Treatment. +943 J. W. Dysle & Co.,\nDrugs, Paints and Wall\nPaper. +944 J. W. TWYMAN,\nDEALER IN\nStoves and Grates,\nCASTINGS AND TINWARE +945 JAMES AFTERBURN AND WIFE\nCELEBRATE GOLDEN WEDDING. +946 JENKS’ DREAM. +947 JOHN BREUNER,\nFURNITURE AND BEDDING, +948 JOHN BROWN’S GRAVE IN THE ADIRONDACKS. +949 JOHN F. WOOSTER,\nWholesale and Retail Druggist.\nFREMONT, OHIO, +950 JOHN ROBINSON’S\n10 BIG SHOWS 10\nCOMBINED.\nZola Rides a Bicycle on 3-4 inch\nwire 100 Feet High. +951 JOHN YOUNKMAN,\nDEALER IN\nForeign and American Marble! +952 JOHN YOUNKMAN,\nForeign and American Marble!\nMONUMENTS, MANTLEPIECES, +953 JONN E. RAUCH.\nBOOTS & SHOES\nVery Best\nHeavy and Strong\nBoots and Shoes +954 JOS. B. WOLFE & CO.,\nCOTTON FACTORS\n"REVOLVING HEAD"\nCOTTON GIN. +955 JUMBO\n29 Trained Elephants +956 JUNIOR JAUNTINESS.\nYour Boy is good enough\nfor the best\nClothing +957 JUST ARRIVED.\nOUR DRUGS DEPARTMENT\nA. McMillen,\nDrugs and Stationery.\nSANTA CLAUS’ HEADQUARTERS. +958 JUST THINK!\nA PAIR OF GOLD EYE GLASSES, +959 Japan’s New Ambassador and Wife +960 Jas. T. Lyaton & Son\nClothiers and Hatters. +961 Jewelry\nRepair Work\na Specialty.\nJ. W. Whitley +962 Jewery\nRepair Work\na Specialty\nJ. W. Whitley\nNorth Tazewell, Va. +963 John E. Rauch\nBOOTS & SHOES\nTHE\nVery Best +964 John E. Rauch,\nBOOTS & SHOES\nTHE\nVery Best\nHeavy and Strong\nBoots and Shoes +965 John E. Raueh\nBOOTS & SHOES\nTHE\nVery Best\nHeavy and Strong\nBoots and Shoes\nREPAIRING\nCUSTOM WORK. +966 John H. Rauch\nBOOTS & SHOES\nTHE\nVery Best\nHeavy and Strong\nBoots and Shoes +967 John Nott,\nImporter and Dealer In\nSteel and Iron Ranges,\nSTOVES, AGATEWARE.\nDIMOND BLOCK. +968 John Nott,\nImporter and Dealer in\nSteel and Iron Ranges,\nSTOVES, AGATEWARE\nDIMOND BLOCK. +969 John Nott,\nSteel and Iron Ranges,\nSTOVES, AGATEWARE.\nDIMOND BLOCK. +970 June Is Here The Month of\nBewitching Brides +971 Just Arrived\nPanama and\nStraw Hats\nThe White\nHouse +972 Just Arrived.\nNEW TENNIS BALLS\nand\nRACKETS +973 K. C. Cherry Pudding +974 KALSTEDT, THE LEADING TAILOR, +975 KC BAKING POWDER\nCOMPLIES WITH ALL\nPURE FOOD LAWS\nMakes the\nBaking Sweeter, Lighter\nAlways works right\nNO FAILURES\nCosts YOU Less\nNO TRUST PRICES\n25 Ounces for 25 Cents\nBEST AT ANY PRICE\nor your money back +976 KENTUCKY\nMILITARY\nINSTITUTE. +977 KING MANUEL\nRuler of Portugal\nReported Captured\nBy Revolutionists. +978 KINGSBURY PIANO. +979 KINGSLEY SCHOOL FOOTBALL SQUAD, WHICH HAS WON MOST OF ITS GAMES\nTHIS YEAR IN A MOST CONVINCING WAY. +980 KIRBY’S\nAMERICAN HARVESTER!\nTHE BEST COMBINED\nMOWER & REAPER!\nIN THE WORLD!\nIt is an Iron Machine, +981 KIRK’S\nWHITE\nRUSSIAN\nSOAP. +982 KLEEKAMP BROS. PIANO CO. +983 KOMFORT\nPEW & SON, The Shoe Dealers. +984 KOREA PART OF THE PRIZE\nFOR WHICH RUSSIA STRIVES. +985 Keep Out the Wet\nSAWYER’S\nEXCELSIOR\nBRAND\nSLICKERS +986 Kelly-Springfield\nBIG–STURDY–OVERSIZED\nCORD TIRES +987 L. VOUNGMAN,\nClothing Store,\nSt. Clair’s Block\nReady Made Clothing,\nFor MEN’S and BOYS’ WEAR.\nCloths and Cassimeres,\nHATS, CAPS, TRUNKS +988 LA FLEUR’S EXCRETER,\nTHE BEST TONIC KNOWN +989 LABOR DAY PARADE MOVING DOWN FIFTH AVENUE. +990 LACTATED\nFOOD\nFOR INFANTS and INVALIDS +991 LADIES' BRASS BAND OF OREGON WHOSE PLAYING IS FAMOUS. +992 LADIES’\nBELT….\nBUCKLES… +993 LARGEST STOCK OF\nGOOD SHOES\nEVER SHOWN HERE.\nWalk-Overs for Men +994 LATEST CURVES IN FISH TALES +995 LATEST PREMIER MODEL. +996 LEADERSHIP---Positive, Unquestioned!\nDRESS GOODS\nS. R. TURNER & CO. +997 LEATHER NECKS CHAMPIONS OF HAITI +998 LEAVES ITS MARK +999 LEAVING THE WINTER CAMP. +1000 LEND ME YOUR\nEARS!\nI've Caught Your\nEYE.\nAnd Who But\nNOSE? +1001 LET US ADVISE YOU +1002 LIBERTY MUTUAL +1003 LIFE’S MISERIES.\nDOAN’S KIDNEY PILLS\nST. LOUIS PROOF: +1004 LIGHT AND HEAVY HARNESS\nRepairing a Specialty.\nSHOE SHOP IN CONNECTION\nLAURIS LARSON. +1005 LIGHT UP +1006 LIKE A CURSE REMOVED +1007 LINCOLN IN CAMP. +1008 LION COFFEE\nUsed in Millions of Homes!\nBest Coffee for the Money!\nSTRENGTH, PURITY AND FLAVOR +1009 LITTLE\nGIANT SEPARATOR +1010 LITTLE BOY WITH MANY MILLIONS\nAND A VERY PIOUS HEREDITY\nMILLIONAIRE RODMAN WA NAMAKER AND HIS MAMMA +1011 LITTLE GIANT, JR., CIDER MILL\nPrice $8.50 +1012 LITTLE POINTS FROM TAFT’S MESSAGE +1013 LIVERY\n& AMBULANCE +1014 LIVERY\nSTABLE!\nLIVERY, FEED\n& EXCHANGE +1015 LIVERY BARN\nWALCOTT & LUDWIG, Props\nLIVERY, FEED AND SALE STABLE. +1016 LOCAL BOY A COLLEGE STAR. +1017 LOK AT THIS.\nTAYLOR & HUFFY\nSELL THESE\nFUR SETS\nSealskin Muff and Cape\nFOR EIGHT DOLLARS!\nRussian Hare Cape and Muff\nFOR FIVE DOLLARS! +1018 LOOK BEYOND THE TEETH +1019 LOOK FOR THE STAR\nTHE SIGN OF QUALITY\nON YOUR FISHING SUIT\nCARTER’S\nWATERPROOF\nOILED CLOTHING +1020 LOOKING UP MONTGOMERY STREET FROM\nMARKET STREET +1021 LOVE AND TOBACCO. +1022 LOWNEY’S\nChocolate Bonbons. +1023 LUMBER & TIMBER\nOF ALL KINDS\nMOULDINGS, CASINGS\nDOORS, SASH & BLINDS. +1024 LUMBER.\nDoors, Sash,\nBlinds, Cyprese Shingles\nN. C. Flooring and\nCeiling,\nO. D. FOSTER +1025 LUMBER.\nDoors, Sash,\nBlinds, Cypress Shinglee\nN. C. Flooring and\nCeiling. +1026 La France\nSHOE FOR WOMEN\nIn All Styles +1027 Ladies’\nSlippers\nTwelve New Lines of\nHOW’S\n$3.00 to $5.50\nManufacturers' Shoe Company +1028 Ladies’ Cloaks AND Capes +1029 Ladies’ Suits\nAND\nReady-made Skirts.\nJENVEY & ALLEN. +1030 Ladies’ and Misses’\nSUITS +1031 Ladies’Tan\nOxford\nCuban Heels\n$3.50\nManufacturers’ Shoe Company,\nLimited\n1051 FORT STREET +1032 Large Stock Paralsal’s or Hood’s\nGo–Carts\nFROM——$4.50——UP. +1033 Leaders of Men\nrecognize the value of stylish\nbecoming clothes.\nSCHLOSS BROS. & CO. +1034 Learning To Ride +1035 Leghorn Poultry Yards,\nPARKSLEY, VA. +1036 Let the Boys Have Their Fun.\nTHE MISFIT STORE +1037 Let us do your Printing\nusing\nEagle Linen +1038 Letters From a Gentleman\nto His Wife in the Country\nBY FRED SCHAEFER. +1039 Letters From a Gentleman\nto His Wife in the Country\nBY FRED SCHAFFER. +1040 Lift off Corns!\nDoesn’t hurt a bit and Freezone\ncosts only a few cents. +1041 Light\nand Soft\nKid Shoes,\nStockwell & Beck\nMurphy Block, Logan Ohio.\nA. G. STEINMAN Manager +1042 Lightning Freezers\nWE SELL THEM AT\n$1.40. +1043 Like Finding a Pair of\nShoes if You Come\nto Our\nGreat Sale To-morrow +1044 Lincoln Sanitarium\nSulpho-Sahne Springs\nNatural Mineral Water\nBATHS\nRheumatism +1045 Lingerie and Linenz\nCatalogue on Request\nWALPOLE BROS. +1046 Lion-head on every package.\nSave those Lion-heads for valuable premiums. +1047 Little Girls’ Corduroy Coats, $3.85 +1048 Lively Chicks +1049 Long Sleeves Distinguish\nBrown Taffeta Dress +1050 Look\nWhite Bros.,\nWine and Whiskey Merchants, +1051 Look Here!\nCline Bros.’ Machine Works,\nCline Bros.’\nMachine Works, +1052 Loth’s Delight Steel Ranges +1053 Lots of Good Tobacco +1054 Lots of Good Tobacco\nPutnam\nStreet\nDrugstore. +1055 M. McCORD\nContractor and Builder\nEARLINGTON, KY. +1056 M. O’NEIL & CO.\nCloaks\nAND\n…Furs\nJust Placed on Sale +1057 MACEE’S\nBOSTON HEATER. +1058 MADAME GRISWOLD’S\nCORSETS +1059 MAGEE’S\nBOSTON HEATER.\nHumphreys\n& Raymond, +1060 MAKE THE\nCHICKENS LAY\nBUY A\nGREEN\nBONE\nCUTTER +1061 MAP OF ALASKA.\n(Showing Klondyke and Other Gold Fields.) +1062 MARCHING TO DEFENSE OF ADRIANOPLE. +1063 MARINE ENGINEERS’\nBENEFICIAL ASSOCIATION. +1064 MARK HANNA: "OH, WELL, A BIRD IN THE HAND IS WOTH TWO ON THE BUSH." +1065 MARMON\n34\nNew York Automobile Show\nSpace 16, Madison Square Garden +1066 MARSHALL & CO.,\nPROPRIETORS.\nHOME TOWEL SUPPLY CO. +1067 MARTIN HINZIE,\nWHOLESALE AND RETAIL\nGROCER,\nSTOVES,\nTinware and\nHardware\nSAN MARCOS, TEXAS. +1068 MARTIN HINZIE,\nWholesale and Retail\nGROCER,\nDealer in\nSTOVES\nHARDWARE\nTINWARE\nEtc.\nSAN MARCOS, - - - TEXAS +1069 MARVELOUS FEATS IN WIRELESS TELEGRAPHY---\nMESSAGES EXCHANGED BY VESSELS 170 MILES APART. +1070 MARY BEATON\nSCHOOL OF\nSWIMMING +1071 MARY PICKFORD in "The Love Light" +1072 MASONIC TEMPLE\nWEEKLY CALENDAR. +1073 MEAT AND MILK\nHow to Help the Supply During the Period of the\nWar +1074 MEDICAL\nROBACK’S BITTERS\nROBACKS ARE BETTER. +1075 MEDICAL.\nAyer’s\nHair Vigor +1076 MEN’S SHOES +1077 MEN’S SOX\nBlue and brown mixed,\nspecial, a pair.......5c +1078 MERSON & BERRIEN,\nUndertakers, +1079 METROPOLITAN\nMEAR MARKET.\nOnly the Best Beef, Mutton\nLamb, Veal and Pork for\nsale here. +1080 METROPOLITAN\nMEAT MARKET.\nOnly the Best Beef, Mutton,\nLamb, Veal and Pork for\nsale here.\nWm. Grant’s Sons +1081 MILITARY\nIDENTIFICATION\nRINGS. $2 to $10\nIRA D. GARMAN +1082 MILK MAKES MONEY\nM. S. CHANCELLOR’S Farmers’ Supply Store. +1083 MINNESOTA & NORTHWESTERN R. R.\nThe Dubuque Route. +1084 MIRACLE CONCRETE BUILDING BLOCK +1085 MIRACLE CONCRETE BUILDING BLOCK\nDOUBLE AIR SPACE\nFIRE PROOF, VERMIN PROOF\nCHAS. W. CONNOR, MINOT, NORTH DAKOTA +1086 MISCELLANEOUS.\nHIPPOLYMPIAD\nWM. LAKE, Manager.\nMost Complete Traveling Exhibition\nEVER ORGANIZED,\nBrilliant Beyond Precedent. +1087 MISSOURI\nSTEAM\nWasher +1088 MISSOURI DAIRY\nFine Milk, Cream, But-\ntermilk, Clabber and\nCottage Cheese +1089 MISSOURI DAIRY\nFine Milk, Cream, But-\ntermilk, Clabber and\nCottage Cheese.\nJ. A. SMITH, Prop. +1090 MISSOURI DAIRY.\nFine Milk, Cream, But-\ntermilk, Clabber and\nCottage Cheese.\nJ. A. SMITH, Prop +1091 MODERN SHOE REPAIRING\nELECTRIC\nShoe Repairing Co. +1092 MONROE AND TRENTON\nSTEAM PACKET\nELFIE, +1093 MORE LIGHT LESS HEAT\nHawaiian Electric Co., Ltd. +1094 MORE STOVE HEAT FOR LESS MONEY\nBayne’s Hardware +1095 MORRO CASTLE. +1096 MOSCOW STRIKERS TURN TO PILLAGING;\nMUTINEERS HEMMED IN AT SEVASTOPOL;\nBLOODY REVOLT BY VLADIVOSTOCK TROOPS +1097 MOTHERHOOD\nWINE OF CARDUI +1098 MOTORBOAT THAT SANK A DREADNOUGHT +1099 MOVIE OF TRAVELING SALESMAN SEWING ON BUTTON +1100 MR. COUDEST ADVANCED HIS IDEA. +1101 MR. LINCOLN SAT IN THE STERN\nOF THE BOAT. +1102 MT. VERNON CASKET CO.\nPRACTICAL\nUNDERTAKERS.\nFUNERAL DIRECTORS\nAND\nEMBALMERS\nCOUCH METALIC CASKETS\nCoffins and Robes +1103 MUSIC.\nPIANOS! PIANOS! +1104 MUSIC.\nSUPERIOR PIANO FORTES!\nChickering & Sons,\nSteinway & Sons,\nAT THE\nIndiana Music Store, +1105 MY SAMPLE SHOES ARE SUPERIOR SHOES. THEY ARE THE\nPICK AND CREAM OF THE SHOE WORLD.\nWRIGHT’S\nThese Shoes are Regular $3.50 to $6.00 Values. +1106 Making a Hit +1107 Mallory Hats\nYou’ll buy one— +1108 Mammoth Display of Holiday Articles.\nChoosing is a Very Easy Matter at This Store. +1109 Many Fancies in SIGNET\nRINGS. The assortment\nhere varies from $2.00 up.\nEngraved Free. +1110 Many Pretty Styles\nIn New Hairdresses\nBut Ear Must Show +1111 Mapping the great Atlas Mountains. +1112 Mason\nAND\nHamlin\nORGANS\nThe Best in The World.\nJohn F. Ellis & Co +1113 Mason & Hamlin\nORGAN AND PIANO CO. +1114 Masquerade\nCostumes\nfor Rent.\nCHILDREN’S COSTUMES\nA SPECIALTY.\nMRS. H. FISCHER +1115 McDONALD\nSHOE CO. +1116 McDonald Shoe Co.’s\nMid–Winter Sale of\nMen’s, Women’s\nBoys’ & Girls’ Shoes\nLAST WEEK OF THIS SALE +1117 Men in Training +1118 Men’s\nCrawford\nOxfords\n$2.98 +1119 Men’s Clothing +1120 Men’s Fall Suits.\nNEW AND STYLISH\nCOLORS AND DESIGNS. +1121 Men’s Fancy\nShirts +1122 Men’s Good Suits, $35\nSee the whole range +1123 Men’s High Grade Suits +1124 Men’s Serviceable\nSuits at\n$5.00 +1125 Men’s Shoes\nMEN’S FINE PATENTS +1126 Midsummer\nLinen Sale +1127 Milady to Wear Small Hats This Spring, Fashion Arbiters Dictate +1128 Military\nShoes\n$2.50 to $6\nGet them here.\nWe are headquarters\nfor shoes. +1129 Millions of Vegetables. +1130 Misses’ $75 to $95 Fur–Trimmed\nCoats\nand Unique\nCape–Coats\nReduced to $55\n$45 to $55 Coats\nReduced to $30 +1131 Model Slippers\nGent’s and Boys’ Slippers\nLadies’ and Misses’ Slippers\nThe Model Shoe Store +1132 Modest Women +1133 Moerlein's\nBEER\nThe world's Triumph of Masler Brewing\nCrowned by connoisseurs\neverywhere as unconditional-\nly the choicest beer brewed.\nOrder a case! +1134 Monarch Bicycles\nMONARCH ROADSTERS $50\nDEFIANCE ROADSTERS $35\nMONARCH CHAINLESS $75\nMONARCH CYCLE MFG. CO. +1135 Money for the Farmer Who Uses a\nWoodruff Hay Press, +1136 Monroe Clothes\n"New York Styles America Monroe Clothes New York"\nA Suit For Every Figure at a Figure That Suits +1137 Monroe Clothes\nWashington Arch commemo-\nrates our country’s liberator,\nMonroe Clothes stands for\nfreedom from high clothing\nbills. +1138 Monuments and Grave Stones\nin Marble and Granite\nLAWSON & NEWTON +1139 Monuments,\nSafes,\nIron Fence\nHawaiian Iron Fence and Monument Works +1140 Moving\nFast…\nHENRY RAUCH, +1141 Mrs. W. H. Braithwaite,\nFurnishing Undertaker,\nComplete Line of Caskets\nand Burial Robes. +1142 Musical\nInterest\nKimball\nPlayer Piano +1143 My Stallion,\nBARON B., +1144 Myar’s Opera House.\nMonday, Feb 4.\nTHE Leonora Jackson\nConcert Company. +1145 M’LEAN WITHDRAWS AS A SENATORIAL CANDIDATE! +1146 NATIONAL\nBUSINESS COLLEGE\nINCREASE YOUR EARNING CAPACITY. +1147 NATURE'S LOOKS ALWAYS BALANCE, DON'T Y'KNOW +1148 NAVAL ACADEMY. +1149 NEGRO QUARTETTE\nWILL SING HERE\nPolk Miller to Bring Them\nWith Him for His\nEnternainment. +1150 NERVE SEEDS\nMAKE THE\nWEAK STRONG +1151 NERVOUS WRECKS\nDr. McLaughlin’s\nElectric Belt\nDR. M. N. McLAUGHLIN, +1152 NEW\nFURNITURE WARE-ROOMS\nFURNITURE\nALL KINDS OF FURNITURE +1153 NEW EXCELSIOR\nOIL STOVE! +1154 NEW FIRM, FREMONT MACHINE SHOP\nJUNE & GELPIN,\nSTEAM ENGINES,\nCAST IRON COLUMNS< WINDOW CAPS AND SILLS,\nPlows and Plow Castings of the most Approved Patterns. +1155 NEW FOUNTAIN INN\nDIRECTLY ON MARBLEBEAD HARBOUR +1156 NEW HAT THAT WILL AFFORD SHELTER FROM SUMMER SUNSHINE +1157 NEW INVOICE OF FELT HATS\nALL COLORS AND STYLES\nJUST RECEIVED\nStreet and Dress Hats\nCORD TRIMMINGS\nMrs. J. P. Nies +1158 NEW MANHOOD +1159 NEW MUSLIN UNDERWEAR\nBridal Sets\nNew Lines of\nWash Skirts and Suits\nA. BLOOM, Model Blk. Fort Street +1160 NEW SADDLE AND HARNESS SHOP +1161 NEW SCARFS WITH THE DOLLAR LOOK-65c +1162 NEW SPRING\nLOW SHOES\nCOMING IN EVERY DAY. +1163 NEW SPRING HATS!\nHYPES, +1164 NEW YORK POLICE PLANE LANDS AT BELMONT +1165 NEXT SAILING to LONDON, PARIS, HAMBURG\n"KAISERIN AUG. VICTORIA" April 9, 9 A. M.\nHAMBURG–AMERICAN LINE +1166 NIC TENGG,\nBookseller & Stationer,\nSAN ANTONIO, TEX. +1167 NINETEEN-TWENTY BROUGHT US THREE SUPER-CHAMPIONS +1168 NO CURE, NO PAY.\nWEAK MEN\nFREE YOURSELF\nFROM THE CHAINS THAT HOLD YOU DOWN!\nDr. McLaughlin’s Electric Belt\nPAY WHEN CURED.\nDR. M. D. MCLAUGHLIN, +1169 NO EXCUSE FOR NOT BEING A MUSICIAN +1170 NO ODORS\n21 Samples Leonard\nREFRIGERATORS +1171 NO SIR, I CAN'T\nGET APPEND\nI Eat All I Want to Now. No more\nGas on the Stomach or Sour Stomach,\nNo More Heavy Feeling After\nMeals or Constipation. +1172 NO SIR, I CAN’T\nGET APPENDICITIS\nI Eat All I Want to Now. No More\nGas on the Stomach or Sour Stomach.\nNo More Heavy Feeling After\nMeals or Constipation. +1173 NORFOLK CAPS. +1174 NOTABLE GOLF MATCH FOR BENEFIT OF THE RED CROSS–P. O. S. OF A. AT NATIONAL CAMP\nJ. M. BARNES MAKING A PRETTY APPROACH DURING YESTERDAY’S GOLF MATCH AT THE WHITEMARSH VALLEY COUNTRY CLUB FOR BENEFIT OF THE RED CROSS +1175 NOTES ABOUT BOOKS AND MAGAZINES\n"The Little Brown Jug at\nKildare" Full of\nFrolic. +1176 NOTICE!\nMen’s\nWhite Canvas\nOxfords and Bals\nManufacturers Shoe Co., Ltd. +1177 NOW IS THE CHANCE\nTO GET\nThe New Werner Edition of\nENCYCLOPEDIA BRITANNICA +1178 Nasal\nCATARRH\nEly’s Cream Balm +1179 Nash Four–Passenger Sport at Auto Show +1180 Natural Syrup\nWhite Swan\nCane Syrup +1181 Nature’s Fountains\nat Your Door\nCosts You Only\n3c a Day\n\nARE YOU SICK?\nSeven Springs\nIron Alum Mass +1182 Need a New Floor? +1183 Nervous Sufferers. A Modern Disease.\nThe Result of the Wear and Tear of\nOur "End of the Century"\nWay of Living.\nConsultation and Examination Free\nTHE RAMSEY MEDICAL INSTITUTE +1184 New Clothes\nNew Hats\nNew Furnishings\nMen’s Suits\nMcCormack Bros. +1185 New Fall Hats For Ladies, Misses and Children +1186 New Loose-Fitting Spring Over-\ncoats; New Raglans; New Form-\nFitting Models; and especially\n—Brand New Fabrics, Tones,\nColors and Iridescent Linings\nthat are an Eye-ful of Beauty! +1187 New Shoe Shop,\nIN FREMONT. +1188 New and Second-Hand\nBICYCLES\nRanging in Prices\n$10.00 AND UPWARD.\nMachines Sold on\nEasy Payments.\nBig Four Cycle Co., +1189 New. Process. Oil. Stoves\nWELCH’S +1190 No More Tire Trouble If You Use\nStandard Tire Protectors +1191 Not A Tak — Not A Nal.\nBilliken Shoes +1192 Not Every Indian +1193 Notice\nWhite Bros.\nWine and Whiskey Merchants +1194 Novel Suits\nfor Summer Wear\nModels exclusive in design made of\nCrash and Linen eponge in new\nspring shades with trimmings of taffe-\nta and oriental silks which always\ninsure a crispy freshness to the suit.\nThese suits are extremely jaunty with their\nshort coat and uniquely conservative effects\nfor spring and summer wear.\nPrices $13.95 to $20.00\nCrepe de chine silk blouses\nAll the latest style sleeves, and newest col-\nlar effects. White, Maize, Tango and\nOcean Blue. And many other wash silks\nand voile blouses.\nThe morning is the best time to shop\nThe Will E. Smith, Dry Goods Co.\nBroadway at Hitt +1195 Now That the Furry Little\nSkunk Is So Very Much\nin Fashion +1196 Now is Your Time\nTo get a good Agricoul-\ntural Paper Cheap. +1197 Now is the Time\nto get one of our cool light weight peg top trousers that will make you\nforget the heat of summer. We have just received a number of the\nbest colors and styles that have been shown this season. Let us\nshow you.\nACME BRAND.\nROZELL and SONS\nExclusive Clothiers and Furnishers +1198 Nymat S. Sacrey\nUndertaker and Embalmer +1199 OCTOBER\nBig Four Cycle Co., +1200 ODD DRESSERS +1201 OHIO DENTAL CO.\nCROWN AND BRIDGE WORK A SPECIALTY.\nTeeth Extracted Absolutely Without Pain\nNO CHARGE for Painless Extracting when Plates are Ordered +1202 OHIO DENTAL CO.\nOver First National Bank, Marietta, Ohio.\nCROWN AND BRIDGE WORK A SPECIALTY.\nTeeth Extracted Absolutely Without Pain.\nNO CHARGE for Painless Extracting when Plates are Ordered. +1203 OLD PARLOR SUITS\nMADE EQUAL TO NEW +1204 OLYMPIA WHEELED UP TO THE HOUSE. +1205 ON A WOODEN HORSE +1206 ON THE BATTLE FIELD. +1207 ONE OF KINGTON’S GIGANTIC ENTERPRISES.\nPlant of Hises Brother’s Lomber Co. +1208 ONE-CENT POSTAGE STAMP WORTH $15,00\nIN EXHIBIT AT COLLECTORS’ CONVENTION +1209 OPEN BOAT CARRIES TWO MEN\nTWO THOUSAND MILES TO THE FAIR +1210 OPEN EVENINGS\nPIANOS\nNew and Used Player Pianos +1211 OPENING OF THE DEMOCRATIC NATIONAL CONVENTION IN KANSAS CITY. +1212 OPENING OF THE REPUBLICAN NATIONAL CONVENTION IN PHILADELPHIA. +1213 OPTICS. +1214 OUACHITA LIVERY STABLE, +1215 OUR\n$7 Covert\nTop Coat\nHAS MADE\n"The Hit of the Season." +1216 OUR\nCOUNTRY CLUB\nA Handsome Shoe.\nA Money Saver Too.\nPrice This Week $3.50\nManufacturers’ Shoe Co., Ltd +1217 OUR CITY’S WORKERS AND WHAT THEY DO +1218 OUR G. A. R. WATCH +1219 OUR GRAND OFFER\nSIBERIAN.\nCOSSACK.\nKLONDIKE.\nDo You Want Cheap Wheels?\nWheels Slightly Used, Modern Types,\nThe J. L. Mead Cycle Co., - Chicago +1220 OUR HIGH GRADE UNIVERSAL COOK STOVE +1221 OUT FOR A RIDE. +1222 OUTBURSTS OF EVERETT TRUE +1223 OUTBURSTS OF EVERETT TRUE.\nStorm Warnings of Ev. True +1224 OUTDOOR SKETCH IN OILS BY A STUDENT +1225 OVARIAN TROUBLES. +1226 OYSTER COCKTAILS\nJ. W. MOSS +1227 Odd Dressers. +1228 Office\nBuildings +1229 Offices\n10,00 sq. ft.\navailable at once.\nAlso small offices.\nThe Tribune\nBuilding +1230 Oh! My Back! +1231 Oh, Man! By BRIGGS +1232 Okapi Captured at Last\nTHE OKAPI, AS IT APPEAR S IN ITS NATIVE HAUNTS. +1233 Old Hickory Wagons. +1234 Old Mayor Hubbard.\nWent to the cupboard.\nTo get a poor dog a bone.\nBut the cupboard was bare.\nFor the gang had been there.\nAnd so the poor pup got none. +1235 Olympic Competitions Will Continue\nUntil the Close of the Present Year\nAmericans who are scoring in the international contest: J. C. Garella (upper left), M. F.\nHorr (center), Ralph Rose (right), and Martin Sheridan (lower left). +1236 On the\nWaiting List?\nManufacturers’ Shoe Co., Ltd. +1237 On the wing to-day!\n11,400 pairs of pure silk\nsocks. +1238 One For You\nCOOK TRUNK CO. +1239 One Premier\nELECTRIC CLEANER\nTerms can be arranged to meet all\nbuyers. Call us for a demonstration.\nCache Valley Electric Co. +1240 One Price Shoe Store.\nA. L. HAZELTON, +1241 One of hundred electric\nspecialties we have in stock.\nCall and see us.\nB. S. Sprague,\nElectric and blasting supplies,\nPhone 399, No. 101 1-2 Put-\nnam, street. +1242 One teaspoonful of Perry\nDaves’\nPAIN\nKILLER +1243 Only $10----LOOK!----$10 Only.\n$10 WILL BUY A NO. 7 BUCK'S CLIPPER COOK STOVE.\nTHE ABOVE IS A PERFECT PICTURE OF THE BUCK'S CLIPPER.\nTHINK OF IT: ONLY $10! +1244 Only $4,750\nPositively Worth $6,000\n$15 Month Pays\nCarrying Expense\n$300 DOWN\nOTTO SINGER, Builder +1245 Only 8 More\nShopping Days\nBuy From These Firms +1246 Only Police Woman is a Busy Cop +1247 Open Air Swimming Pool at Kensington +1248 Opening\nSpring Line\nBaby Carriages\nFruit Jars! Fruit Jars!\nW. A. BELL & BRO. +1249 Opening\nSpring Line\nBaby Carriages\nNew Spring Mattings Just Received +1250 Opens\nHere\nToday\nThink of 42nd Street and Madison +1251 Oscar\nHungers\nFor Art, Not\nPicture\nPostcards. +1252 Our\nBear\nSkin\nCoats +1253 Our Blank Books\nAre the Best\nWALL NICHOLS CO., LTD. +1254 Our Girls\nScores of Our Girls +1255 Our Semi = Annual Clearance\nSale All the Week!\nSuits and Overcoats up-to-the-minute in style, at\nprices which can’t be beaten in\nColumbia. They are fashiona-\nb;e in every little detail. Many\nwill do for spring wear. +1256 Our Unparalleled\nRemington Typewriter\nRental Offer +1257 Outbursts of Everett True\nBY CONDO. +1258 Oxfords! Oxfords!\nLadies’ and\nMen’s Oxfords\nBROWN & CRISMOND +1259 Oxfords! Oxfords!\nLadies’ and\nMen’s Oxfords\nWhenn in need of GOOD SHOES see\nBROWN & CRISMOND +1260 O’MEARA & CO.’S $35 GUN +1261 O’MEARA’S\nFISH\nJ. U. O’MEARA & CO.,\nGLUE. +1262 PALS. Inseparable are these two\npets of a Chicago woman—Nameloe\nJack, a prize champion cocker span-\niel, and Frits, a white rat—pictured here in the most unconvenitonal\npose. The former acts as guardian and saddle pony for the latter, and\ntho’ death on cats is gentle toward\nhis rodent pals. +1263 PARADERS CELEBRATE BATTLE OF THE BOYNE +1264 PARIS SAYS FROCK,\nCAPE, SKIRT COSTUME +1265 PARKER'S\nHAIR BALSAM\nCONSUMPTIVE +1266 PARKER’S COAT OF ARMS. +1267 PATCHES AND DISPATCHES. +1268 PEERY’S\nDEAD SHOT\nVERMIFUGE\nWILL ERADICATE WORMS\nFROM THE HUMAN BODY\nPRICE 25cts PER VIAL +1269 PENNSYLVANIA\nCOLLEGE FOR WOMEN, +1270 PERCHERON HORSES! +1271 PERFECT ASHLAR LODGE No. 12, +1272 PERFECT CONTENT\nTROY STEAM LAUNDRY +1273 PERFECTION\nOil Heater\nRayo Lamp +1274 PERSISTS IN FOLLOWING HIM +1275 PETEY – It’s a Good Thing She Doesn’t Have to Put on a Hat +1276 PEW & SON\nSOLE AGENTS FOR\nHanan & Sons’ Shoes\nThe Best on Earth +1277 PIANO LAMPS\nARE THE\nCraze for This Season,\nMOST USEFUL PIECE OF THE FURNITURE +1278 PIANO TUNING\nAND\nREPAIRING.\nJ. F. LUCAS, +1279 PIANOS ORGANS\nOHAUNCEY J. REED, +1280 PIANOS AND ORGANS! — EASY TERMS! +1281 PIANOS.\nKnabe & Co's, Bradbury's,\nFIRST CLASS PIANOS +1282 PIANOS.\nSTEINWAY & SONS’\nGRAND,\nSQUARE,\nAND\nUPRIGHT\nPIANO FORTES!\nA. M. BENHAM & CO., +1283 PICTURES PRESIDENT SENT TO CONGRESS\nIN PLEA FOR FOREST PRESERVATION +1284 PIMPLY\nFACES\nCURES +1285 POCKET KODAKS +1286 POINTER\n"THE" Maryland Rye Whiskey. +1287 POINTER\n8-PIECE DINING SUITE $84.50 +1288 POINTS OF WEAKNESS. +1289 POLICE OFFICERS DRILL WITH RIOT GUNS\nAND PREPARE FOR PUBLIC INSPECTION.\nCAPTAIN JOYCE AND COMPANY A, "PORT ARMS." +1290 POMONA\nWHISKEY\n4 FULL QUARTS $3.15 +1291 POPE LEO XIII. +1292 POPE PIUS X IS DEAD +1293 PORK PACKERS\nAND CURERS OF THE\nChampion Brand\nSUGAR CURED HAMS.\nSHOULDER and BACON.\nPURE LEAF LARD !\nW. Grants’ Sons +1294 PORK PACKERS\nChampion Brand\nSUGAR CURED HAMS,\nSHOULDER and BACON.\nPURE LEAF LARD!\nW. Grands’ Sons +1295 PORTABLE\nGASOLINE ENGINES +1296 POWER\nFOR\nPUMPING +1297 PRESERVE YOUR SIGHT. +1298 PRIESTLY DUTY. +1299 PROFESSIONAL MEN, +1300 PROFILE\nScarf slide space\nand lock front\nLion Collars +1301 PROUD OF IT\nRemoval Sale\nEhrenberg’s Wall Paper & Paint Co, +1302 PURE WATER FOR LAKE CITIES\nCOSTS COUNTLESS HUMAN LIVES +1303 PURE WHISKEY\nDIRECT FROM DISTILLER\nTO CONSUMER.\n$3.20\nRAYNER DISTILLING CO., +1304 PUT YOUR MONEY IN A SAFE PLACE !\nOUR BANK IS A SAFE PLACE +1305 Pacific Wheel & Carriage Works. +1306 Pacific Wheel & Carriage Works.\nJ. F. HILL, Proprietor. +1307 Paint for\nPorch Floors +1308 Parksley and Pocomoke\nMARBLE WORKS.\nManufacturer of\nMarble and Granite Monu-\nments, Headstones, Tab-\nlets, &c.\nEdward H. Howard, Proprietor.\nPARKSLEY, VA. +1309 Pa’s Son–in–Law\nBy Wellington +1310 Per S. S. Alameda\n1905 Alfred Benjamin Styles\nSuitings and Coats and Pants\nTHE STRONGEST LINE WE HAVE EVER SHOWN\nTHE KASH COMPANY, Ltd. +1311 Perfect Contentment +1312 Perfection Blue Flame\nOIL STOVES +1313 Peter Shrader,\nCity Butcher ! +1314 Phone In\nYour\nWant Ads +1315 Pianos\nAND\nORGANS,\nFinest Grade\nand Quality.\nWILSON & YOUNG, +1316 Pianos\nAND\nOrgans,\nFinest Grade\nand Quality.\nWILSON & YOUNG,\nSt. Clair Building, Marietta, O. +1317 Pipeless Heaters\nSave 30%\nof Coal\nOTTO STEINACKER +1318 Planeteer\nBAY STALLION. +1319 Pocomoke Marble Works. +1320 Pocomoke Marble Works.\nManufacturers of\nMarble and Granite Monu\nments, Headstones,\nTablets, &c.\nJ. HENRY YOUNG\nProprietor,\nPocomoke City Md. +1321 Post Office Fixtures\nAre Made in St. Joseph, Mo.\nSend us your plan and let us quote you our price +1322 Post Office Fixtures\nAre Made in St. Joseph, Mo.\nSend us your plan and let us quote you our price\nWe will sell the lock boxes separ- ately if so desired\nJust tell us what you need and we will do the rest\nThe fixture Makers St. Joseph, Mo. +1323 Potash. +1324 Poultry, Eggs &c. +1325 Power on the hills\nassures you full speed on the level\nSUN COMPANY\nSUNOCO\nMOTOR OIL +1326 Pretty\nChildren\nMOTHER'S\nFRIEND +1327 Pretty $10\nGo-Cart\n$13 Folding\nGo-Carts +1328 Printing Safeguards\nYour Money +1329 Prize–winning Shorthorn at Washington State Fair--Owned by W. O. Minor, Heppner, Or. +1330 Prominent Patrons of the Pianola Piano in America.\nBut One Pianola\nLEYHE PIANO COMPANY +1331 Prompt Deliveries\nGroceries +1332 Pullman\nSleeper\nSOMETHING NEW IN\nBaby Carriages\nAND\nGo-Carts +1333 Pure and\nSweet\nIs the Skin, Scalp, Hair and\nHands Preserved, Purified\nand Beautified by\nCuticura\nSOAP +1334 Pure-bred Berk-\nshire and Poland\nChina Swine +1335 Putnam\nStreet\nDrugstore. +1336 QUADRIGA FOR UNITED STATES GOVERNMENT\nBUILDING. +1337 QUALITY–High PRICE–Low\nSTRENGTH–Double FLAVOR–Fine\nLuzianne Coffe\nTHE REILY-TAYLOR CO.\nNEW ORLEANS, U.S.A. +1338 QUEEN QUALITY\nShoes are the Leaders.\n"Queen Quality"\nHOWARD & LAWRENCE, +1339 QUIT\nUSING THAT\nRUBBERSTAMP +1340 R. D. Herod’s Three-year-old Prune and Apple Orchard, Sunnyside District, Yakima Valley, Washington. +1341 R. H. BOSHER’S SONS.\nCARRIAGE MANUFACTURERS +1342 R. P. WILLIS\n& SON,\nPLUMBERS,\nGAS AND\nSTEAM FITTERS,\nLimestone St. +1343 RACCON COAL.\nA. MICHIE & CO.\nRACCOON COAL. +1344 RAIL ROAD NOTICE +1345 RAILROAD AND BOAT REFLECTING DEVICE +1346 RAILROAD TIME TABLES +1347 RANDOLPH-MACON ACADEMY. BEDFORD.\nValue of Plant, $100,000\nGrowth [Continous]\nRecord 1908 +1348 RAPID BATH HEATERS +1349 READ EVERY WORD\nSpring & Summer\nStyles for 1899.\nTHE STAR SHOE HOUSE,\nWINCHESTER, VA.\nL. E. Ricamore +1350 READ THIS!\nHARRIS’\nSADDLE AND HARNESS PRICE LIST\n—TO CASH PURCHASERS.—\nGRAND STREET, – – – – MONROE, LA. +1351 READ WHAT YOUR "UNCLE SAM"\nSAYS ABOUT\nSTARBRAND SHOES +1352 READY-MADE SKIRTS,\nWe have just opened a line of\nStylish, Ready-Made\nDress Skirts,\nand you will find upon examination they are priced\nin a way that will accord with your purse.\nCome and See These. +1353 REAL ROUGH RIDERS.\nBufallo Bill to Have many of Roose-\nvelt’s Regiment in His Exhibition. +1354 REASONS FOR USING\nWalter Baker & Co.’s\nBreakfast Cocoa. +1355 RECEIVED A PAIR OF HUNTING\nTROUSERS. +1356 REDUCTION IN THE PRICE\nOF\nJERSEYS.\nA New Lot of Fine French Jer-\nseys, represented in this cut,\nHave Just been Ordered to Sell\nat $5.50. +1357 REFINED—\nNOT REVISED\nPIERCE\nARROW\nDUAL VALVE SIX +1358 REFRIGERATORS\nAT COST.\n$6.50\nL. L. LEWIS & CO., +1359 REGULAR\nKENTUCKY RIVER PACKET.\nFANNIE FREESE! +1360 RELATIVE POSITIONS OF BRITISH AND RUSSIAN FLEETS. +1361 REPAIRS.\nThe Big Four Cycle Co., +1362 RESIDENCE OF CHIEF BOG-AH-MA-GE-SHIG AT BEAR LAKE. +1363 REVERSIBLE IRON. +1364 RIGHT OVER WOOD SHINGLES\nCORTRIGHT METAL SHINGLES +1365 RIPANS\nNo matter what the matter is, one will do you\ngood, and you can get ten for five cents. +1366 ROBACK’S BITTERS.\nROBACKS ARE BETTER. +1367 ROBBERS!\nLOWEST PRICES!\nEarly Ohio Seed Potatoes.\nDAVENPORT & THACHER\nGeneral Merchants +1368 ROBERT WARWICK\n( IN PERSON )\nIN THE DRAMATIC SPECTACLE\n"IN THE NIGHT WATCH +1369 ROLLER AND MARKER. +1370 ROLLER SKATING\nAs\nDreamland Rink +1371 ROUGH AND READY’S\nNew Ambrotype Gallery. +1372 ROUTE.\nGreat Ghro’ Route\nBetween the\nEAST & WEST\nNORTH AND SOUTH. +1373 ROYAL\nBAKING\nPOWDER\nAbsolutely Pure. +1374 ROYAL\nBaking Powder\nThe only Baking Powder made\nwith Royal Grape Cream of Tartar\n–made from grapes–\nInsures healthful and\ndelicious food for every\nhome–every day +1375 RUGBY---A Man’s Oxford\nPrice $4.50\nMcInerny Shoe Store +1376 RUGBY—A Man’s Oxford\nMcInerny Shoe Store +1377 RUNNING FROM THE FIRE. +1378 RUSSIAN ARMORED CRUISER BAYAN +1379 Rambler\nIf in need of a good bicycle\nbuy the Rambler. I sell them\nand any part you may need to\none. Give me a call.\nL. C. GORDY,\nParkaley, Va. +1380 Read!\nReflect!\nResolve!\nWHILE WAITING\nTo Save a Large Amount\nWith Which To\nSTART A BANK ACCOUNT +1381 Ready For You. +1382 Real Bargains\nBring the Boys here. We can fit them from Head\nto Foot, at RIGHT PRICES. +1383 Red Cross\n…Remedies…\nRed Cross Drug Co. +1384 Red Cross Blood Elixid\nRed Cross\nLiver Pills\nRed Cross\nPile Cure\nRED CROSS DRUG CO.\nBufallo, N. Y. +1385 Reglan Overcoats\n$18 to $30.\nHumphrey’s +1386 Reliable Gas +1387 Relief\nFor Weak\nWomen\nMy’ne Company, +1388 Relief for the Gentler Sex +1389 Remington Typewriter?\n236 are REMINGTONS. +1390 Removal Notice!\nThe City Furniture Store\n……AND……\nUndertaking Parlors\nA FULL\nASSORTMENT.\nLATEST STYLES.\nREASONABLE PRICES +1391 Resinol\nwill clear your skin +1392 Resinol Soap is\na real baby soap +1393 Rheumatism\nYields to\nMILAM\nRead The Proof:\nFormer U. S. Postmaster\nRecommends Miliam.\nSpent $3,00 on Rheu-\nmatism.\nRheumatism Entirely\nGone. +1394 Roberts & Sheldon!\nSTOVES, TIN, HARD-WARE\nAND\nAGRICULTURAL IMPLEMENTS,\nAT\nWHOLESALE and RETAIL! +1395 Roberts & Sheldon!\nSTOVES, TIN, HARDWARE,\nAND\nAGRICULTURE IMPLEMENTS,\nAT\nWHOLESALE and RETAIL +1396 Robes\n$6\nTO\n$30 +1397 Robinson’s Adjustable Bed +1398 Roller Skating\nAt DREAMLAND\nTonight Tonight +1399 Roman Stripes Hold\nFashion’s Favor. +1400 Running Water in Your House and Barn\nEvery Day in the Year\nKewanee System of Water Supply +1401 S. W. SLATER,\nBook-Blinder and Blank Book\nManufacturer.\nNo. 23 No. 23\nCOMMERCIAL PLACE,\nNEW ORLEANS. +1402 SACRAMENTO PLANING MILL +1403 SADDLES AND HARNESS, +1404 SADDLES,\nHARNESS,\nBridles,\nCOLLARS,\nWHIPS,\nLEGGINS\nAND BLANKETS\nOF\nEvery Description +1405 SAFES\nAT COST\nSAFES +1406 SAN IUAN SALOON\nChoicest Wines, Brandies, Whiskies, Cordinis\nAND CIGARS. +1407 SAN IUAY SALOON.\nRAILROAD AVE, FLAGSTAFF.\nChoicest Wines, Brandies, Whiskies, Cordials\nAND CIGARS. +1408 SANITARY STEEL\nDAVENPORTS AND FOLDING BEDS\nTry a Sanitary Couch or Davenport +1409 SANTA CLAUS\nCOULD NOT SUGGEST A\nBETTER GIFT\nPLANTERS NATIONAL\nBANK, +1410 SATISFACTION\nAND\nNOURISHMENT\nIN EVERY\nFOOD\nMADE\nWITH\nBARKLEY’S\nBEN-HUR\nSTRICTLY\nPURE\nBAKING\nPOWDER +1411 SAVE BIG MONEY\nBOSTON SOTRE, +1412 SAVE YOUR EYES\nD. C. Bowman’s Drug Store\nEyes Examined Free +1413 SCANTILY FURNISHED CELL OCCUPIED\nBY MRS. CHADWICK IN CLEVELAND JAIL +1414 SCENE AT THE GREAT DYNAMITE TRIAL IN INDIANAPOLIS, ESPECIALLY SKETCHED\nFOR THE TIMES BY ARTIST VALENTINE +1415 SCHOOL\nOPENS NEXT WEEK, +1416 SCHOOL SUITS For Tacoma Boys’ And Young Men +1417 SEASONABLE BARGAINS.\n10 Single Cloth Capes at 39c.\nW. S. Dickinson & Son,\nPOCOMOKE CITY, MD. +1418 SECURE YOUR\nSTOVES\nand Stove Pipe\nHigh Grade Furniture +1419 SECURE YOUR\nSTOVES\nand Stove Pipe\nHigh Grade Furniture\nE. C. NINDE, +1420 SERGE BLAZER SUITS\nAT\nKaufmann & Co.’s +1421 SETTING UP WHEAT HARVESTERS. +1422 SEVERE EXPOSURE +1423 SEW HOME\nSewing\nMachine +1424 SHADELAND FARM COLLIES\nC. D. NAIRN, Ballston, Ore., Prop. +1425 SHE WAS BLIND. +1426 SHEAFFER’S\nSELF FILLING PEN\nTHE PEN THAT MAKES WRITING A PLEASURE +1427 SHEETS and PILLOW\nCASES, ready for use, and\ncosting you but very little more than the muslin. +1428 SHEOPSHIRE BUCKS FOR SALE. +1429 SHIRTS TO ORDER\nHYPES. +1430 SHIRTS! +1431 SHIRTS.\nShirts! Shirts!\nWell Made\nLOW PRICES\nLADIES AND\nGENT’S\nGOODS, +1432 SHOE SALE\nSATURDAY +1433 SHOES\nFor Ladies +1434 SHOES\nFor Ladies. +1435 SINGLE AND DOUBLE\nCider Mills\nPrices Low\nAll kinds Improved\nAgricultural\nImplements\nBuggies, Wagons,\nPlows, Wire.\nThe Implement Co. +1436 SINGLE AND DOUBLE\nCider Mills\nPrices Low. +1437 SKATES\nKlipper\nKlub\nMcCOOK HARDWARE COMPANY +1438 SKETCHES FROM LIFE AT THE BULL RING IN JUAREZ YESTERDAY. +1439 SKILLED SHOE MAKERS +1440 SKIRMISHES CONTINUE BETWEEN\nRUSSIAN AND JAPANESE SCOUTS\nSEOUL. March 29. —The outposts of the Japanese and Russian forces near the Yalu, clashed again today. Fight–\ning by sharpshooters is of almost daily occurence. The skirmishes are occasionally enlivened by dairing rushes on the\npart of the Japs, who seem to delight in feasts of dare-deviltry. +1441 SLOAN'S LINIMENT\nFor Your Family and Your Horse\nTRY IT FOR\nRheumatism, Strains,\nSprains, Swellings\nand Enlargements. +1442 SLOAN’S\nHorse & Cattle Medicine. +1443 SMARTEST DRESSES\nFOR STREET, AFTERNOON AND SPORT +1444 SMITH ACADEMY’S CRACK BASEBALL NINE FOR 1900. +1445 SNEEZE! SNEEZE! +1446 SOME DAWGS! +1447 SOME TIMES\nClocks\nBIG STONE GAP JEWELRY CORPORATION, +1448 SOUDER’S\nELEGANT\nFLAVORING\nEXTRACTS.\nBest Made for the Money. +1449 SOUTH CAROLINA TEA PLANT. +1450 SPECIAL\n$15.50\nWaltham and Elgin\nSplendid 17-Jewel guaranteed\nmovement in a handsome 20-year\ngold filled case. The best and\nmost dependable time keeper\nmade.\nIt has back of it two strong\nguarantees.\nMindlin Jewelry Co. +1451 SPECIAL FOR XMAS\nA Merry Xmas to All +1452 SPECIAL SALE\nOF\nMen’s Tan Shoes\n$2.50\nE. C. WILDES +1453 SPECIAL SATURDAY, 16th\nWE WILL SELL\nFreezers at . . $1.75\nRefrigerators at $5.00\nWHOLESALE PRICES FOR SATURDAY\nThe Herrick & Sons Co. +1454 SPECTACLES, &C.\nTo Officers of the Army,\nSINGLE AND DOUBLE SPY\nGLASSES.\nSPECTACLES, EYE GLASSES, &C., +1455 SPEER’S\nGRAPE WINES.\nSPEER’S PORT GRAPE WINE\nNINE YEARS OLD. +1456 SPREADING MANURE ON UNIVERSITY FARM. +1457 SPRING AND SUMMER 1919\nOUR STORE IS FILLED WITH\nTHE SPIRIT\nOF\nSPRING\nOur samples denote\nthe latest and best fab-\nrics, made in all colors\nand shades–fit for the\nvery best for\n$20 to $ 45\nWe make a suit to\nyour individual fit and\ntaste.\nWe have just receiv-\ned a beautiful assort-\nment of Men’s Caps\nand Neckwear. +1458 SPRING LAMB\nThe Pioneer Market +1459 SPRING SUITS FOR HORSES. +1460 SQUIRREL\nBRAND\nMILK +1461 SQUIRREL FOOD Benny Makes a Great Discovery. BY AHERN +1462 ST. PETER’S AT ROME. +1463 STAND FOR THE OLD FLAG. +1464 STANDISH\nA New\nARROW\nCOLLAR\nSmartly expresses the best\nin collar styles. 2 for 25c. +1465 STATE FAIR\nSEPT. 4TH TO 8TH 1911\nLINCOLN\nTHE STATE;S PEST PRODUCTS\nTWO AEROPLANES IN DAILY FLIGHTS\nLIBERATI MILITARY BAND AND\nGRAND OPERA COMPANY OF 61 PEOPLE\nGREAT RACES PATTERSON SHOWS.\nFIREWORKS, NIGHT RACES, VAUDEVILLE. +1466 STATE NORMAL SCHOOL\nFredericksburg Va. +1467 STEAMSHIP CITY OF ST. LOUIS +1468 STOCKWELL AND BININGER;S\nLEADER\nWOMEN ARE\nDELIGHTED WITH\nTRIONFA\nLADIES’ SHOE +1469 STOCKYARDS STABLES.\nFOR MOONLIGHT DRIVING PARTIES ORDER OUR\nSIX HORSE TALLYHO. +1470 STOP DRUGGING. +1471 STOP! You have run up against a Good Thing.\nBattleAx\nPLUG +1472 STOPS PAIN\nWINE of CARDUI +1473 STOVES\nAT FACTORY PRICES. +1474 STOVES\nDIRECT FROM FOUNDRY\n500 Heaters in Stock\nE. C. NINDE +1475 STOVES AND TIN WARE. +1476 STRENGTH, VITALITY,\nENERGY\nare imparted by\nMOERLEIN’S\nBEER +1477 STRIKING GARNITURES\nARE PLUMED SHAPED +1478 STUBBED HIS TOE AND\nTURNED UP GOLD ORE +1479 STYLES that\nradiate beau-\nty and present a \ntrue conception of\nthe correct in\nfashion.\nGUITAR SHOE CO. +1480 SUMMER FROCKS For GIRLS +1481 SUMMER SUITS\nTHE KASH CO., LTD. +1482 SWAT THE FLY! +1483 SWEDEN’S HEAVY-WEIGHT WRESTLER.\nHJALMAN LUNDIN. +1484 SWEET RESTORERS.\nSLEEP cannot be imitated except in\nappearance, neither can Ivory Soap.\nThere are other white soaps that\nlook like Ivory Soap, this is a penalty which\nit pays for its great success. But you are\nnot deceived, there is only one Ivory, the\nothers are imitations of its perfection. +1485 SWEETWATER DAM. +1486 SYRUP of FIGS\nKIDNEYS, LIVER AND BOWELS\nClense the System Effectually, +1487 SYRUP of FIGS\nONE ENJOYS +1488 Sacred White Elephant +1489 Safety\nMOTHER’S\nFRIEND +1490 Sale Men’s Shoes\nSavings $1.50 to $3.25 per Pair\nZimmerman’s\nMEN’S SHOES +1491 Save $10.00 On Your\nNew Fall Suit\nAnd Have It Tailored\nTo Your Measure\n$15 +1492 Save Enough on Your Suit\nto Buy You a Hat!\nThe Brighton Sack\nFine Clothing +1493 Save Your Plants\n1000 Tons of\n"BUG DEATH" +1494 Save Your Shoes\nand Save Money\nHOME SHOE REPAIR CO. +1495 Sawing Made Easy.\nMONARCH LIGHTNING SAWING MACHINE +1496 Say Plainly to Your Grocer\nThat you want LION COFFE always, and he,\nbeing a squeare mas, will not try to sell you any-\nthing else. You may not care for our opinion, but\nWhat About the United Judgement of Millions\nof housekeepers who have used LION COFFEE\nfor over a quarter of a century?\nIs there any stronger proof of merit, that the\nConfidence of the People\nLion-head on every package.\nSave these Lion-heads for valuable premiums.\nSOLD BY GROCERS EVERYWHERE +1497 School\nDays\nmean SCHOOl\nCLOTHES. The\nfinest assortment\nof little men’s\nclothing in the\ncity at\nThe\nKash Co., Ltd.\nFort and Hotel St.\nROYAL BRAND +1498 School Days Are at Hand\nand need for the Sewing Machine is great\nThe Free\n$35.00\nLowest Cash Price +1499 Secret of Good Teeth\nMeade & Baker’s\nCarbolic\nMouth Wash +1500 Seneca\nHAND\nBOOK\nA Valuable\nPhotographic\nBook +1501 Shapely Feet Depend\non Proper Footwear +1502 Sharp Re-Pricing on\nWomen’s White Cotton Blouses +1503 Sharp Reductions\nIN PRICES OF\nTailor-Made Suits and Dress Skirts\nPrices of CLOAKS and FURS.\nare Marked Down too.\nCome and take them. +1504 She Just Can’t Help Those Goo-Goo Eyes +1505 Shirts! Shirts! +1506 Shoes That\nMeet the\nApproval\nof the\nCritical Man +1507 Shop for Men!\nShop for Boys!\nat "The Toggery Shop”—First Floor +1508 Short Horn Cattle +1509 Showing the Newest Fall Fashions in\nTrustworthy Clothing\nFor Boys +1510 Sick Nervous\nAND Neuralgic\nHeadaches\nQUICKLY CURED BY\nBROMO\nSELTZER\nSOLD EVERYWHERE 10¢ +1511 Silk and Satin Ribbons FREE!\nLADIES, THIS IS FOR YOU +1512 Silk-Lined\nBlack and\nOxford\nOvercoats\nAt $35 +1513 Sir Knight\nMan-winning foot-\ngear, built by men\nwho know what they\nare about, in a model\nfactory where it is\nnot "how many" but\n"how good”, that\nraises the wages. +1514 Six Leaders From the Great\nSale of\nWomen’s Skirts +1515 Six Men Guard Port of San Francisco Against\nThree Rich Organized Rings of Opium Smugglers +1516 Sleep on Felt\nSoft, Comfortable, Hygienic,\nServiceable Mattresses,\nThe Moses Prime Felt Mattress, $13.50\n—a larger mattress—a better mattress—a\ncleaner felt than is used in other mattresses\ncosting more money. +1517 Smart New\nSummer\nSmocks at\n$1.98 +1518 Smart Street and Home Dresses +1519 Smoke Up!\nPrices Are Down +1520 Some New Arrivals\nTHE HERALD\nTAILORING CO. +1521 Some People\nHave Corns, and\nsome have not. Most of us\nhave. If you are troubled\nwith corns, hard or soft, drop\nin and buy a box of our\nCHINESE CORN CURE.\nIt will give you relief, much\nmore satisfactory relief than\nyou can obtain by the use of\na razor.\nPutnam\nStreet\nDrugstore +1522 Special Offering of\nCostume Blouses & Overblouses\n12.50\nRegularly 15.00–25.00 +1523 Special! Special!\nColumbia\nGrafonola\nThatcher Music Co. +1524 Spectacles and Eye Glasses +1525 Spike Tooth Spring Tooth HARROWS +1526 Spring\nClothing\nFOR\nMen, Boys\nand Children +1527 Spring Afternoon Frock of Taffeta +1528 Squirrel Food If We Handled Women the Way Cabaret Dancers Do By Ahern +1529 StaRite Gasoline Engines\nTHE FARMER’S BEST HAND\nM. B. PULLIAM & BRO.\nControctors & Builders +1530 Standard Gas Ranges\nand\nGas Water Heaters\nGas Savers\nLabor Savers\nTime Savers\nTHE UNITED GAS IMPROVEMENT CO. +1531 Start the New Year Right\nStart It With\nthe New\nLeader\nGrafonola\n"Just Press the Button—and Out Comes\nthe Record." +1532 Stock Tanks\nWillborn Bros. +1533 Stops\nNeuralgia\nPains +1534 Storm-tossed—\nlike a frail bark on an angry sea +1535 Straightened\nCircumstances\nArizona Steam Laundry +1536 Strong–Speedy–Roomy–Stylish\nSome High Grade Features of this 1910 Model +1537 Structural Steel\nFOR ALL BUILDING\nPURPOSES +1538 Style\nand\nService\nPanama, Chifon, Panama, Mohair,\nSicilian, etc., with Gun Metal Grey\nas the favorite color. +1539 Style Plus Suits\n&17\nSuits and Overcoats +1540 Suggestion For a Blouse\nblouse of blue foulard, trimmed\nwith tucks and closing in the\nback. The neck may be finished\nin V-shaped, square or round out-\nline. +1541 Suits to Suit a Suitor\nAttractive Nobby Up-t-date\nTailoring the Finest\nAT PRICES EASY TO PAY +1542 Suits: $10 to $25.\nHarrisson & Sillespie Bros\nThe Big Store +1543 Sunny Women. +1544 Swat the Fly! +1545 Sweat-Groan-Growl.\nWolff’s ACME Blacking\nREQUIRES NO BRUSH. +1546 Swing Comfort Chair.\nW. S. DICKINSON & SON,\nPOCOMOKE, MD. +1547 TABLEWARE\nVery Best Makes,\nIn large variety, at\nCharles-Blume,\nPutnam Street. +1548 TAKE T EASY\nHickman Ice & Coal Co.\nIncorporated.\nJOHN DILLON, Jr., Manager. +1549 TALES of the TURKISH TROPHIES +1550 TALK ABOUT\nMR. GLANCY\nAND\nTHE MARQOUETTE HOTEL\nST LOUIS +1551 TALKING HOME +1552 TAZEWELL LODGE, +1553 TAZEWELL LODGE,\nNO. 62 A. F. & A. M.\nMeets the 3rd Monday in each\nmonth. +1554 TEACHES MUSIC TO\nSUPPORT SICK DADDY +1555 TEKK’S CHIEF AND HIS WIFE. +1556 TELEPHONE\nYOUR WANTS\nTO THE TIMES\nMAIN 12\nIf You Want to\nBuy, Sell or Ex-\nchange Anything\nAnywhere, a Times\nWant Ad Will Do It,\nThe Cost Is Small.\nthe Times Reaches the\nHomes, Phone Main 12\nNow +1557 TENNIS\nBALLS\n1917 Championship 40c\n1916 Championship 25c +1558 THANKSGIVING DINNERS\nWELL SUPPLIED HERE +1559 THAT MILE A MINUTE SHOW\nFrank Rich Company\nThe Original Eastern Company +1560 THAW STANDING IN THE DOORWAY AT REGISTRY OFFICE\nIN SHERBROOKE. +1561 THE\n" HUMMING BIRD "\nBICYCLES\nHIGHEST GRADE,\nEASY RUNNING,\nSERVICEABLE\nBEAUTIFUL BICYCLE.\nEvery Wheel Guaranteed\nBettys & Mabbett Co., +1562 THE\nDevereux Players\nIn Three Classic Plays +1563 THE\nHARE AND TORTOISE +1564 THE\nHEAD\nQUARTERS\nFOR\nDRY GOODS\nIN THE\nSTATE of INDIANA\nTHE\nNEW YORK STORE\nGLENN'S BLOCK. +1565 THE\nMonumental Bronze Co., +1566 THE\nMonumental Bronze Co.,\nBridgeport, Conn, +1567 THE\nREGAL\n$350 +1568 THE\nS. Galeski\nOPTICAL CO. +1569 THE AMERICAN GIRL, WHO IS HERSELF” A CAUSE FOR THANKSGIVING AS DRAWN BY PROMINENT ARTIST DURING THE PAST YEAR +1570 THE BACHELOR’S RETREAT +1571 THE BATTLESHIP TEXAS. +1572 THE BEAUTY CORNER +1573 THE BEAUTY CORNER\nMISS ELIZABETH H. BREY\nHighland Park, Pa. +1574 THE BIGGEST DROP OF ALL +1575 THE BIGGEST YOU EVER SAW\nBattle Ax\nPLUG\nThe largest piece of good\ntobacco ever sold for 10 cents\nand\nThe 5 cent piece is nearly as\nlarge as you get of other\nhigh grades for 10 cents +1576 THE BLACKSTONE SCHOOL FOR GIRLS +1577 THE CASKET AND CANOPY. +1578 THE COAT DRESS\nIS "IN" AGAIN +1579 THE DAILY PARIS FASHION DESIGN +1580 THE DANCE ARTIST. +1581 THE DIGGER EQUIPPED. +1582 THE DOO–DADS—Roly Is No Longer Stuck on Mules By Arch Dale +1583 THE DUPLEX\nCORSED\nADJUSTABLE\nOVER THE HIP\nAND WILL\nFIT ANY FORM +1584 THE DUPLEX\nCorset\nADJUSTABLE\nOVER THE HIP\nAND WILL\nFIT ANY FORM +1585 THE ENGAGEMENT RING\nA. MIEROW +1586 THE FAMILY LIQUOR STORE\nThe Man Who Knows a Good\nThing\nNewport News Wine & Liquor Co. +1587 THE FAMILY LIQUOR STORE.\nThe Man Who Knows a Good\nThing.\nNeport News Wine & Liquor Co.\nMail Orders Filled. +1588 THE FAMOUS DOUGLAS\nspeaks for itself\nbut is not noisy\nE. R. BATH, THE PLUMBER. +1589 THE FEATHERWEIGHTS.\nTHE THICKNESS OF THE SOLE\nMEN’S $5.00 CALF SHOES\nBICKLEY BROS., +1590 THE FIGHTING AROUND THE DUNKER CHURCH. +1591 THE FLAG TO GO UP! +1592 THE FRAME. +1593 THE GEM\nLESS POWER REQUIRED\nTO PROPEL.\nNEW MOVEMENT.\nGREAT SPEED. +1594 THE GLOBE BUILDING\nBEST OFFICE ROOMS IN THE CITY.\nSteam heat, all modern conveniences.\nBest location in the city for offices.\nRENTS TO SUIT THE TIMES. +1595 THE GLOBE WANT COLUMNS.\nTHE POSTAL SERVICE CO-OPERATING WITH THE GLOBE'S WANT\nCOLUMNS. +1596 THE GOOD JUDGE CONGRATULATES THE ENGINEER +1597 THE GRADUATION SEASON.\nThe World: "Have I get to go through all that again?"\n—Pittsburg Press. +1598 THE GRANT SIX\nLogan Garage & Supply Company\nC. M. HARRIS, Manager North Main Street, LOGAN, UTAH +1599 THE GRAPE CURE,\nSAL–MUSCATELLE,\nA NATURAL\nSick Headache and\nDyspepsia Cure\nIN AMERICA, +1600 THE GREAT LOG RAFT. +1601 THE GREATEST\nSHIRT\nSALE +1602 THE GUILTEST FEELING +1603 THE HEALTH OF YOUNG WOMEN. +1604 THE HOME OF THE BIBLE.\nBy Marion Harland. +1605 THE HORN FLY IN ITS VARIOUS TRANSFOR-\nMATIONS—MAGNIFIED. +1606 THE HOUSEWIFE\nHousehold\nArticles\nHardware\nH. W. MYERS & CO. +1607 THE INTERMONT,\nBIG STONE GAP, VA.\nFirst Class Accommodations.\nRATES — $2.00 Per Day. Reduced\nRates on Sunday. +1608 THE JAP LAST\nfor men\nPrice $5.00\nMANUFACTURERS’ SHOE CO.\n1051 Fort Street. +1609 THE JOHNSON REVOLVING BOOK-CASE. +1610 THE JONES TRUSSES AND\nSupporters are the Easiest\nSafest and Best.\nDR. F. M. MUMFORD,\nDRUGGIST AND CHEMIST, +1611 THE KENTUCKY DRILL\nMr. Farmer….\nThe Kentucky\nCearnal Implement Co. +1612 THE LARGEST STOCK OF\nGOOD SHOES\nEVER SHOWN HERE\nWalk-Overs\nFor Men.\nQueen Quality\nFor Women. +1613 THE LARGEST STOCK OF\nGOOD SHOES\nEVER SHOWN HERE\nWalk-Overs\nFor Men.\nQueen Quality\nFor Women.\nTry Us For Shoes and You'll Be Satisfied\nBROWN & CRISMOND +1614 THE LAST DAY IN PANTS\n$1.98\n$1.98\nA SNAP IN FINE\nNEGLIGEE\nSHIRTS\n74c\n74c +1615 THE LICK KILLING MACHINE. +1616 THE LIVING MONSTER\nHIPPOPOTAMUS\nIS COMING.\nG. F. BAILEY & CO’S +1617 THE MAMMOTH\nHARD-WARE\nSTORE\nOF\nCONFIELD & BROTHER,\nHARDWARE! +1618 THE MILKMAN TELEPHONES +1619 THE MYSTERY OF THE LUSTY CHEESE; OR\nWHAT BECAME OF THE WORLD’S FAIR PRIDE. +1620 THE NATIONAL CAPITAL. +1621 THE NATIVE DANCE. +1622 THE NEW HAMMETT BUILDING, CORNER E. OVERLAND AND S. OREGON STREETS. +1623 THE NEW PAVILION AT RAND’S GROVE. +1624 THE NEW SHOE\nFOR WOMEN...\n"Sorosis."\nCork between Inner and\nOuter Soles.\nPEW & SON,\nAGENTS,\nEl Paso, Tex. +1625 THE NEW SPRING SHOES +1626 THE NEW WILSON\nOscillating Shuttle\nSEWING MACHINE +1627 THE Newlyweds and their kid\nand everybody else eat\nNadja Caramel Chocolates\nand Pin Money Gum Drops\nMade by the\nBlanke–Wenneker Co.\nTHE CO–OP. +1628 THE OLD FOLKS AT HOME\nAre Never Without Peruna in the House\nfor Catarrh, Coughs and Colds.\nMR. AND MRS. PETER HOFFMAN, KULERTOWN, PA. +1629 THE OLDEST MAN IN AMERICA\nTells How He Escaped the Terrors of Many Winters\nby Using Pe-ru-na. +1630 THE ONE WAY YOU\nCAN BEAT OUR RUGS +1631 THE OPENING CHORUS, MARCH 21\nDID YOU NOTICE THAT SPRING CAME IN AT 4:08 THIS MORNING? +1632 THE PASSING OF THE PEDESTRIAN +1633 THE QUARANTINGE PICKET.\nA Poor Mosquitoe.\nA Poor Picket. +1634 THE RECALL +1635 THE RED CROSS IN JAPAN\nJapanese Women Making Lint and Bandages. +1636 THE REMINGTON\nStandard Typewriter,\nMERCHANT & MANNING,\nM. I. McKELLIGON. +1637 THE REMINGTON\nStandard Typewriter.\nMERCHANT & MANNING. +1638 THE RIDE TO THE RESCUE +1639 THE RISING TIDE +1640 THE ROYAL PAGEANT PASSING THROUGH THE HORSE GUARDS AND COMING DOWN\nWHITEHALL. +1641 THE RUBAIYAT OF\nOMAR\nCIGARETTES +1642 THE SANTIAGO TRAP.\nBAY OF SANTIAGO DE CUBA. +1643 THE SCHUYLKILL COUNTY COURTHOUSE\nLocated on North Third street, this building is one of the "show places" of\nthe city. +1644 THE SEASO N’S CHANGE.\nThe Last of the Good Old Summer Time.\nFrom the Minneapolis Tribune. +1645 THE SINGER\nSEWING MACHINE\nAcknowledged by all to be\nTHE BEST +1646 THE SINGER\nSEWING MACHINE,\nTHE BEST. +1647 THE SONG THAT REACHED HER HEART\nCable Piano Company, +1648 THE STANDARD CARRIAGE WORKS\nOF THE PACIFIC COAST. +1649 THE STAR OF HOPE. +1650 THE STEVENS COMBINATION REED PIPE ORGAN\nStevens Organ Co. Marietta, Ohio. +1651 THE STUDEBAKER WAGON\nThe Unapproachable Wagon +1652 THE TIMES’ TOW LINE FAILED TO LAND THE BONDS. +1653 THE TIRE PROBLEM +1654 THE TOWN THAT\nPUSH BUILT\nIII — The Wide Awake Butcher +1655 THE TOY SEASON. +1656 THE VALLEY MEAT MARKET. +1657 THE W. K. Kellogg National\nCorn Trophy +1658 THE WAR IN THE TRANSVAAL. +1659 THE WEATHER REPORT. +1660 THE WELCOME SUNSHINE +1661 THE WORLD WAR, HOW ITS IRON GRASP CLUTCHES MANKIND, AS SEEN BY NOTED CARTOONISTS +1662 THE annual automobile show at Madison\nSquare Garden is held to give the pub-\nlic an opportunity to inspect all the cars\nand to make contracts with visiting dealers.\nWe were, probably, the only concern exhibiting\nthat did not have one bit of territory to allot. We\ncould not write one single contract. We were forced\nto turn away more dealers than most manufactureres\ncould sign up.\nThe Willys-Overland Company, Toledo, Ohio +1663 THEIR ROMANCE WAS BRIEF +1664 THERE’S MONEY IN IT. +1665 THERE’S NOTHING\nMORE DE\nLICIOUS\nTHAN\nBARKLEY’S\nBEN-HUR\nCOFFE. +1666 THERE’S THE DEVIL TO PAY\nIn our Printing Office and we\nWant Him to Earn it by Plenty of\nWork. You see we Believe in\nGIVING THE DEVIL HIS DUE. +1667 THESE\nLADIES\nHAVE NEVER\nTried the great\nsystem regulator\nPRICKLY ASH\nBITTERS. +1668 THESE COLD DAYS +1669 THEY GOTTA STOP KICKIN’ HIS DAWGS AROUN’. +1670 THIRD MUTUAL\nCHAPLIN FILM\nHERE SUNDAY +1671 THIS CAP ONLY $1.25. +1672 THIS FINE PIANO\nStevens Organ AND Piano Co.\nDactory and Office, Gilman Ave. +1673 THIS PLANT FOR SALE\nTHE PROSPECT BREWING COMPANY.\nFIFTH, OXFORD AND MARVINE STREETS, PHILADELPIA, PA. +1674 THOMAS HOWE\nDEALER IN\nFURNITURE\nAND\nBEDDING. +1675 THOMAS,\nSHOER & HATTER\nTalks! +1676 THOUSANDS HAVE KIDNEY\nTROUBLE AND DON’T KNOW IT +1677 THROUGH BRED HORSE,\nVERMONT HERO. +1678 TIGER\nCLEANERS +1679 TIME TABLE. +1680 TIPS ON TENNIS—IF YOU SERVE\nPROPERLY YOU CAN WIN GAMES +1681 TO MAKE\nA DELICIOUS BISCUIT\nASK YOUR GROCER FOR\nDWIGHT’S "COW BRAND" SODA\nAND TAKE NO OTHER. +1682 TO PUT ON +1683 TO STOP THE PROGRESS +1684 TODAY, TOMORROW AND FRIDAY\nTHREE NOTABLE DAYS FOR WOMEN!\nWanamaker & Brown\nWOMAN’S SHOP +1685 TOLEDO FOILS CORRUPT CAR CO.\nBY USING JITNEY BUSSES\nThe picture above shows the type of jitney bus that is flading\nfavor in Toledo. +1686 TOMB STONES.\nMARBLE WORKS. +1687 TOO BIG FOR SWADDLING CLOTHES +1688 TOO INTERESTED EVEN TO REMEMBER THE TASTE +1689 TOP COATS +1690 TOP PRICES PAID for\nHIDES FURS PELTS\nSt. Joseph Hide and Fur Company +1691 TOWER’S\nFISH BRAND\nSLICKER\nAND KEEP DRY! +1692 TRAFFIC SCHEME TO SAVE LIVES MAKES MOTOR DRIVERS PEEV-\nISH, BUT IT’S LIKELY TO AVOID KILLINGS. +1693 TRAVEL +1694 TRAVEL\nM. M’Inerny, Ltd., Fort and Merchant Sts. +1695 TRY THE\nPERFECTION COFFEE POT! +1696 TWO CAR LOADS OF\nSTOVES +1697 Tacoma\nTrading\nCompany +1698 Tacoma’s Bridge the First Vertical Lift Structure In West +1699 Tedious Pastime — Waiting for Friend Wife in a Department Store – By BRIGGS +1700 Telegram\nHere is the car\nThe von Hamm-Young Co., Ltd. +1701 Territory Covered By The\nMorning News +1702 Tether the Horse. +1703 That\nTickling\nDR. BELL’S\nPine-Tar-Honey +1704 That Light is\nWonderful +1705 The\nClothing House\nStar +1706 The\nCoward\nShoe\nChildren’s Ankles\nWill Not Turn\nWhen This Coward\nShoe Is Worn — +1707 The\nCowart\nShoe\nIf you arch is los-\ning its grip, let the\nCoward Arch Sup-\nport Shoe restore\nits hold. +1708 The\nDensmore\nHotel\nKANSAS CITY +1709 The\nGirard\nCigar\nNever gets on your nerves +1710 The\nGun Goes Off +1711 The\nMcPhail\nPiano.\nFIRST-CLASS, STRICTLY. +1712 The\nchewing\ntobacco\nwith a\nconscience\nbehind it. +1713 The "Greenbrier”\nSports Shoe for\nWomen +1714 The "Tailor Made" Man\nIs Always a Sure Winner +1715 The 28th Semi-Annual\nRed Figure Sale at "THE\nBOSTON," ST. PAUL, Gives\nyou WINTER CLOTHING\nand OVERCOATS, at about\none-half their value. Big\nBargains TO DAY, and\nthe balance of the week.\nBOSTON\nONE-PRICE CLOTHING HOUSE +1716 The Aermoter\nThe best known and the best made mill in the West.\nWhen you want a mill that will run easy and last long, buy an\nAermoter.\nMills and parts carried in stock and for sale by\nE. O. HALL & SON, Ltd. +1717 The April Shoe Sale\nWomen’s Pumps\nand Oxfords +1718 The Aultman & Taylor\nMachinery Co.\nBuilders of\n"Aultman-Taylor"\nThreshers,\nClover Hullers, Horse\nPowers, Traction and\nFarm Engines, Stationary\nEngines and Boilers,\nSaw Mills, Etc., Etc.\nD. C. Munroe, Agt. +1719 The Beautiful Lobby in the New Postoffice Building. +1720 The Best\nBeverage\nunder the\nSun–\nDrink\nCoca-Cola\nDelicious\nRefreshing\nThirst-Quenching\nTHE COCA-COLA COMPANY, ATLANTA, CA. +1721 The Best\nCough Drops\nAre Drops\nof Ayer’s\nCherry Pectoral. +1722 The Best\nExercise\nA man can take is running.\nManufacturer’s Shoe Co., Ltd., +1723 The Best in Modern Clothes\nfor\nMen,\nBoys\nand\nChildren +1724 The Blackstone School for Girls +1725 The COLUMBUS\nHOCKING VALLEY +1726 The Cause Of Disease\nIs Pressure on Nerves\nThere must be a cause\nfor every effect. The\nChiropractor locates the\ncause, adjusts it and\nNature cures you\nREMEMBER THE ARROW +1727 The Chicago House Furnishing Co.\nGRAHAM, VA. +1728 The Children’s Friend—Santa Claus. +1729 The Cloak\nand Suit Store. +1730 The Cloak Season Is Opened.\nS. R. TURNER & CO. +1731 The Composite Masterpiece\nof 48 Leading Engineers +1732 The Correct New\nHats for Fall +1733 The Crowning Triumph\nTHE NEW ODELS\nof the\nRemington\nStandard Typewriter. +1734 The Darling Line\nOF\nCook Stoves! +1735 The Doctors Disagreed. +1736 The Drug Shop\nPhone 302\nYou Provide Every\nCare for Your Sick. +1737 The Drug and Medicine\nDEPARTMENT,\nIS ALWAYS FULL AND COMPLETE,\nEvery thing in this line +1738 The ELDEREDGE Sewing Machine +1739 The ELDEREDGE Sewing Machine\nB. OPPENHEIMER, +1740 The Easiest Running Mill on Earth,\nTHE AERMOTOR\nCHARLES L. MOORE +1741 The Eminent Kidney\nand Bladder Specialist. +1742 The Fall Styles\nH. A. BORK, FASHIONABLE TAILOR and DRAPER, +1743 The Famous Rayo\nIs the Lamp of Real Beauty\nOnce a Rayo User, Always One.\nStandard Oil Company +1744 The Farmers’ New Position on Silver. +1745 The Finest Pianos in\nAll the World +1746 The Free Lance +1747 The Genuine\nRound Oak\nIS BUILT FOR THE\nBUSINESS OF HEATING +1748 The Globe National Bank +1749 The Globe National Bank\nSOME THINGS WE CAN DO FOR YOU +1750 The Grat August Furniture Sale\nOriginated by Wanamaker’s\nMeets this Year a Great Desire\nToday––Second Day of Courtesy +1751 The Great\nWhite Frost\nRefrigerator +1752 The Great American Home! +1753 The Guardian\nSavings Bank +1754 The HALL SAFE is BEST\nH. HACKFELD & CO., Ltd., Agents +1755 The HERBST\nSUIT +1756 The Heywood Shoe\nFor Men\nPrice $4.50\nManufacturer’s Shoe\nCo., Ltd. +1757 The Horrors of Nervousness.\nJohnston’s\nSarsaparilla +1758 The Irish\nWarehouse. +1759 The Iron Age\nCultivator +1760 The Kanfaroo Figure or Straight Front–The Latest\nFreak of Fashion.\nR. & G.\n"The Corset that\ndoes not stretch,”\nfrom\n50 cts. up.\nAmerican Lady and\nC. B. Corsets\nin all sizes.\nNursing Corsets in\nDrab and White.\nBAUGHMAN’S +1761 The Key to the Situation +1762 The Kremlin Place. +1763 The Largest Clothing Establishment in\nCentral Ohio.\nNOW OPEN AT COLUMBUS.\n6 FLOORS, OUR BOYS’\nTHE UNION +1764 The Largest House Furnishing Store\non the Peninsula. +1765 The Largest, Boat–Equipped and Cleanest Flat Plug\nTobacco Manufacturing Plant In the World +1766 The Last Suit\nStein-Bloch Make +1767 The Latest in\nLadie’s Neckwear +1768 The Leading Maryland Mutual!\nThe Great Eastern Mutual Life Insurance Co.\n54 Lexington St. Baltimore City, Md.\nFirst-Class Solicitors Wanted. +1769 The Leading Truss of the World +1770 The Meyer Store\nThousands of Yards of Fine Percales\nSeparate\nSkirts. +1771 The Morse Electric Belt, Nature’s Vitaliser, builds up and strengthens, relieves\nand cures Rheumatism, paralysis, Liver, Kidney, Lame Back, Constripation,\nStomach and all Nerbous Diseases.\nThree sizes, $3.00, $5.00, $7.00. As good as the best—none better.\nA. J. RICHARDS, PHARMACIS.\nOpposite Bellevue Hotel, Front street. +1772 The National Tribune\nSewing Machine +1773 The Natural Fruit Acid of the\nGrape Retained in the\nRed Cross\nPort Wine +1774 The Necktie Marks +1775 The Nethersole Ribbon Corset. +1776 The New Domestic\nSewing Machine\nTHE DOMESTIC\nJOHN C. WILLIS, +1777 The New Spring Styles for Men’s\nYoung Men’s and Boy’s Clothes\nAre Here\nThe 1909\nHard, Schaffner &\nMarx Clothes +1778 The New Tri-Chrome\nSmith Premier Typewriter +1779 The New U. S. Cattle Ranche Co. Limited. +1780 The Noontime\nGolf Tournament\nAt WANAMAKER’S\nTODAY AT 11.30 +1781 The Ohio Valley Wagon Co. +1782 The Oliver\nTwo Way\nThe only real successful "Two Way" Plow\nSidney Stevens Implement Co. +1783 The Original & Genuine\n(WORCESTERSHIRE)\nLEA&PERRINS\nSAUCE\nBEWARE OF IMITATIONS. +1784 The Outbursts of\nEverett True. +1785 The O’Rielly Burner\nEconomy\nEfficiency\nDurability +1786 The POWER of BRITANNICA\nThe Twentieth Century Edition\nIts 31 Massive Volumes Mean\nYou Cannot Afford\nSend Inquiry Coupon NOW.\nWhat Is Said of It.\n31 MASSIVE VOLUMES.\nWeight Over 200 Pounds. +1787 The Papa Dolly +1788 The Parting Caused\nThem Pain +1789 The Peerless Extension Table. +1790 The Peoples Store Co.\nannounce for Fall and Winter\nexquisite new Millinery and a\nsmart selection of women’s outer\napparel, including Coats and Suits\nof the latest design. +1791 The Progression of\nDelivering Messages\nLONG DISTANCE PHONE.\nColumbia Telephone Co +1792 The Refinement of the\nBrewer’s Art is Ex-\npressed in\nMoerlein’s\nBEER\nThe world’s Triumph of Master Brewing\nPure - Delightful - Healthful +1793 The Shakespeare Celebration. +1794 The Sherwin-Williams Co.\nMAKE\nPAINT\nFOR +1795 The Shoe Without\nButtons or Laces.\nA real shoe—Not a slipper +1796 The Smith\nPremier\nTypewriter +1797 The St. Lovis Republic\nComic Section\nST. LOUIS, SUNDAY, AUGUST 21, 1904.\nJIMMY—HE HASTENS TO DELIVER A NOTE +1798 The Standard Cash Register\nC. N. BRISCO & CO., Western Managers, +1799 The Standard Cash Register.\nC. N. BRISCO & CO., Western Managers, +1800 The Strictly\nTailored Girl\nStill Here +1801 The Taste of Bread +1802 The Test of Typewriter Efficiency\nHas Been Made For You\nIn Open Competition The\nUNDERWOOD\nEvery Year in Every Class\nFor Speed—Accuracu—Stability\nHas Established All the International Records\nUNDERWOOD +1803 The Time Comes\nMcELREE’S\nWine of Cardui +1804 The Very Latest Arrivals in Men’s\nWINTER SUITS and OVERCOATS\nThe Store for Men and Young Men of All Classes!!\nBirmingham’s\nINC.\n950 Pacific Ave\nMen’s Furnishings of a Higher Grade for Less Money!\nThe Greatest Exposition of Men’s Wear-\ning Apparel Ever Brought to This City +1805 The W. B.\nCorsetS\nchange in shape as\nthe styles change. +1806 The Works of A\nPerfect Watch +1807 The Wrong Size +1808 The Young Lady Across the Way +1809 The above cut represents this wonderful Range. We have them\ncomplete, with ware, from $28 upward. Our Catalogue now\nready and sent FREE upon application. +1810 The first page of the initial issue of the Missouri Intelligencer and\nBoon’s Lick Advertiser, April 23, 1812. +1811 The fresh sea wind and the bright sunshine. +1812 The fuel required for one\nordinary grate fire or\nstove is suffficient to\nwarm an entire house by\nHSV WATER circula-tion. +1813 The right Hat for\nEvery Customer\nand for\nEvery Occasion\nMrs. Metty's\nIvory Millinery Parlors\nThilio Building Broadway and Hitt Entrance on Hitt +1814 The tidal wave of prosperity will wipe it out in November. +1815 The whiskered one: "He thinks he has me buried." +1816 There Are Many Ways\nTo Pay for Clothing,\nBut Our Way Is Con-\nvinient For You\n$1.00 DOWN +1817 There Can Be No Exaggerating\nthe Importance of Eyeglasses.\nMERMOD & JACCARD’s\nBROADWAY AND LOCUST ST. +1818 These High School Stars Were in the Forefront at the Clinton-Commerce Clash +1819 These fighting men, who look more like comic opera soldiers or ballet\ndancers, are looked upon as the most efficient men in the Grecian army.\nThese men are now at the front in the war of the allied Balkan States\nagainst Turkey. +1820 This\n1/4-Pound Box Free\nNobility\nChocolates +1821 This\nis the\nvery best\nSmoking\nTobacco\nmade.\nBlackwell’s Genuine\nBULL DURHAM +1822 This $675 Schubert\nPlayer Piano +1823 This Is the Country Home You\nAre Looking for at\nthe Right Price +1824 This Memorial Day Finds American Graves Over There +1825 This Sign +1826 This Sign\nApplies to our "MERIT" brand of\nBUTTER +1827 This Store is Brimful\nof Christmas Gifts +1828 This Tremendously\nPopular and Strikingly\n$195 Sealine Coat\nA Big Feature Value\nThursday at\n$145.00 +1829 This is the Top of the Genuine\nPearl Top Lamp Chimney. +1830 This is to egg you on to\nbuying your Easter cut-\naway early in the week—\nso much pleasanter than\nlast minute rushing. +1831 Thor\nElectric Vacuum Cleaner\nPhone or Call NOW! +1832 Those Old Casings\nCrane Tire Shop +1833 Thousands Killed.\nEVERY SHIFT\nDutcher's Fly Killer +1834 Three Chair Barber Shop. +1835 Time Curtain Rises To-day\nAFTERNOON +1836 Time Curtain Rises Today\nAFTERNOON. +1837 To Let Large and Small\nOFFICES\nSingle or en Suite\nIN THE TRIBUNE\nBUILDING\nAPPLY FOR TERMS TO THE RENTING AGENT\nROOM 610 +1838 To Let Offices\nTRIBUNE BUILDING +1839 Toothsome\nToast\nSHREDDED\nWHEAT\nBISCUIT\nButter each\nbite +1840 Touring Car— $2,000\nSTUTZ MOTOR CAR CO. +1841 Training +1842 Tricolette Silk Sweaters\nNow 7.95\nRegular Value 12.50 +1843 Try A Bottle\nToday\nWhite Eagle Dairy +1844 Try Our New Cane Knife\nTHE BRACED. +1845 Turn\nthe Wick\nPERFECTION\nOil Heater +1846 Two Amreican League Club Mangers\nEach "Stung” in Baseball Deals +1847 Two of the Paris Shirt Waists. +1848 Two type-\nwriters in one!\nCORONA\nThe Personal Writing Machine +1849 Type-Writers.\nFULLY WARRANTED.\nMachines Rented.\nSOLE AGENTS, +1850 UKRAINIANS AND GERMANS SIGNING PEACE PACT +1851 UNCLE SAM WILL THINK ABOUT IT.\nCHINA—Here Uncle, hold this for me, will you, while I put it out. +1852 UNCLE SAM’S PARTNER +1853 UNDERTAKING!\nW. A. GROSS & CO. +1854 UNDERTAKING!\nW. A. GROSS & CO., +1855 UNDERTAKING. +1856 UNION ARCADE. +1857 UNITED STATES CRUISER MAINE. +1858 UNIVERSALISTS’ GRANDEST CHURCH. +1859 USED MOTORCYCLES\nUsed Motorcycle\nBargains +1860 USED UNIVERSALLY\nCORTRIGHT METAL SHINGLES. +1861 USEFUL ARTICLES\nThe Clothes\nWringer Sold for\n$1.50 and Up\nHenry Mohr Hardware Co. +1862 Uncle Sam’s Educational Chart. +1863 Under the Mistletoe. +1864 Undertaking.\nUndertaking Business, +1865 University Men’s Fashions +1866 University Women---\nSolve the High\nCost of Living by\nsaving on shoes.\n$2.50 +1867 Unnatural History +1868 Using Taft’s Old Disguise +1869 V. BERBERICH,\nMerchant Tailot,\nST. CLAIR STREET,\nBETWEEN\nMAIN and BROADWAY +1870 VACATION JOYS OF THE JOY FAMILY +1871 VAST CHANGES WILL ATTEND TURBINE +1872 VELIE\nThe Hit of the Show\nThe Car That Makes\nMotordom Wonder\nGuaranteed for One Year\nGARLAND AUTOMOBILE CO., +1873 VENUS\n10c PENCIL +1874 VERMIN EXTERMINATOR. +1875 VESSELS AND MEN WHO PARTICIPATED IN THE CARDENAS FIGHT. +1876 VICINITY OF PT. ARTHUR WHERE ARMIES ARE STRUGGLING +1877 VIEW FROM LOUDOUN HIGHTS (ON THE RIGHT) OF THE UNION CAMP AND MAY-\nLAND HIGHTS. +1878 VIGORINE\nMakes Men Manly !\nMost Wonderful Remedy For\nLOST VITALITY. +1879 VIGOROUS OLD AGE +1880 Velvet\nTHE\nSMOOTHEST\nTOBACCO +1881 Victor\nRecords\nFOR JUNE\nNow On Sale at\nSherman, Clay & Co. +1882 Vudor\nPorch Shades\nMake Your Home a\nSummer Home. +1883 W. B.\nCorset +1884 W. H. ROBBINS,\nWATCHMAKER,\nJeweler and Optician +1885 W. H. ROBBINS,\nWatchmaker,\nJEWELER\nAND\nOPTICIAN. +1886 W. H. ROBBINS,\nWatchmaker, Jeweler\nOPTICIAN. +1887 W. H. ROBBINS, WATCHMAKER &\nJEWELER. Dealer in\nFINE JEWELRY, SILVERWARE ETC.\nAGENT FOR\nGILBERTS CLOCKS.\nEVERY CLOCK WARRANTED\nTO RUN WELL! WEAR WELL! AND KEEP GOOD TIME! +1888 W. L. DOUGLAS\n$3, $3.50 & $4 SHOES\nBOYS’ SHOES +1889 W. S. GRAY,\nManufacturer of\nCalifornia and\nTexas Saddles,\nSide Saddles,\nHarness, Collars\nWhips, Chapara-\njoes And all kinds\nof Leather Goods.\nDEALER IN\nCalifornia and Mexican Bits and Spurs. +1890 W.B.\nFormu\nBRASSIERES +1891 W.K.KELLOGG\n$1000.00\nNATIONAL CORN TROPHY\nMADE BY TIFEANY +1892 WALL PAPER\nOF EVERY DESCRIPTION\nPURE LEAD PAINT\nWOOLCOTT & CO., +1893 WALL PAPER\nOF EVERY DESCRIPTION\nand beautiful designs, from\nthe common to the finest.\nPURE LEAD PAINT\nis the only kind sold by\nWOOLCOTT & CO. +1894 WALRUS ROOFING\nFrank K. Tyler +1895 WALTER L. MAIN’S\nENORMOUS\nRAILROAD SHOWS!\n3 BIG CIRCUSES! 3 BIG RINGS! +1896 WANTED.\n2,000 HORSES\nWanted Immidiately, +1897 WANTED—A RIDER AGENT +1898 WANTS CITY HOME FOOR STRAY DOGS;\nSAYS LITTLE OURS ARE HARMLESS\nMRS. MARY ALDRICH-CANFIELD, HER HOME AND SOME OF\nHER PETS. +1899 WAR BULLETINS +1900 WAR WITH SPAIN\nReliable War News\nIN THE GREAT\nNATIONAL\nFAMILY\nNEWSPAPER\nThe New York Weekly Tribune +1901 WARD LINE\nHAVANA\nMEXICO +1902 WARM AIR\nFURNACES\nMANUFACTURED BY\nFULLER&\nWARREN CO +1903 WARREN H. RISSLER & CO.\nFuneral Directors\nand Embalmers +1904 WATCHES\nALMOST FREE.\nTo National Tribune\nSubscribers Only. +1905 WATCHES.\nAmerican Watches +1906 WATCHES.\nAmerican Watches. +1907 WATER ELEVATOR FOR WINDMILLS. +1908 WE ARE SOLE AGENTS FOR\nVERONICA WATER!\nA NATURAL MEDICAL SPRING WATER +1909 WE DO IT RIGHT--New York Dentists\nArtificial Teeth\nCrown and Bridge Work\n$5\nNew York Dental Parlors +1910 WE GREET YOU! +1911 WE OFFER THE FOLLOWING\nBARGAINS IN BICYCLES!\nBICYCLES\nBICYCLES\nL. F. OLDS & BRO., +1912 WEAKNESS\nLIEBIG COMPANY’S\nEXTRACT of BEEF. +1913 WEATHER FORECAST +1914 WEBER\nGASOLINE\nHOISTING ENGINE +1915 WEED\nSEWING\nMACHINES. +1916 WEIR’S "LEMON SELTZER" cures\nHeadache, Indigestion, Dyspepsia, Ner-\nvousness, &c. All druggists, +1917 WELL, WHAT’S A WOMAN GOING TO DO NOW? +1918 WEST TEXAS SADDLERY CO.\n5/A BIAS GIRTH\nBLANKET +1919 WEST TEXAS SADDLERY CO.\nCor. Oregon and Overland Sis.\nEL PASO TEXAS. +1920 WESTERN HOTEL +1921 WESTERN HOTEL. +1922 WE’RE WORKING OVERTIME +1923 WE’VE KEPT COOL\nJohn Breuner +1924 WHAT HAPPENED WHEN 2000 WORKERS\nSTRUCK ON BIGGEST HOP RANCH IN WEST +1925 WHEN A MAN’S MARRIED +1926 WHEN IT RAINS DOLLARS +1927 WHERE BOYS MEET AT CAMP BUTT +1928 WHERE EIGHT LOST LIVES IN FIRE\nGirl Tries to Rescue\nBoys from Fire; 8 Die +1929 WHERE REV. DR. MOSES D. HODE WILL BE BURIED. +1930 WHITE HOUSE\nTea and\nCoffe\nIS\nTHE BEST +1931 WHITE PLAGUE KILLS INDIANS\nIN THE LAND OF HIAWATHA +1932 WHITE SHOE\nCLEAN UP\nAll $4 and $5\nWhite Shoes\n$2.95\nAll $6 and $7\nWhite Shoes\n$3.95\nYes, We Have Your Size +1933 WHITE SOX HARD TO BEAT\nIF WALSH IS STILL RIGHT +1934 WHITNER & SACRBY\nUndertakers and Embalmers +1935 WHITNER & SACREY\nUndertakers and Embalmers +1936 WHOLESALE DEPOT,\nAETNA AND MONARCH Bicycles. +1937 WHY NOT MEMORIAL GATEWAYS? +1938 WHY YOU SHOULD SELECT THE\nINDIAN.\nOf the numerous excellend makes of\nmotorcycles on the market to-day the\nINDIAN stands out as the recognized lead-\ner. Its officially recorded performances\nand its supreme popularity entitles us to\nmake this statement. Every contest of\nimportance during the past 10 years has\nfallen to the INDIAN. Not for racing\nalone, but for Reliability. Hill-climbing,\nTouring Efficiencym Endurance and Econ-\nomy of Operation.\nWITTEN’S MILLS SUPPLY COMPANY\nAGENTS\nWITTEN’S MILLS, VIRGINIA +1939 WIGHTMAN’S\nMUSIC STORE +1940 WILHELM CARRIES\nAROUND WAR MAP +1941 WILLIS\n& SON,\nPLUBERS,\nGAS AND\nSTEAM FITTERS,\nPUMPS, SEWER PIPE\nRUBBER HOSE, SEAM FITTERS’ SUPPLIES, &c.\nNo. 26 SOUTH LIMESTONE ST. +1942 WILLIS & SON\nPLUMBERS,\nGas and Steam Fitters\nPUMPS\nSEWER PIPE\nRUBBER HOSE\nSteam Fitters Supplies &c. +1943 WILLIS GRIFFIN,\nPractical Undertaker\nAND\nFuneral Director.\nMT. VERNON, KY. +1944 WINDOW SUPPORTERS.\nImportant to Builders\nAND\nOwners of Dwellings\nNEW\nWINDOW SUPPORTER +1945 WINE OF CARDUI\nFOR ALL WOMEN +1946 WINTRY TOGS.\nA Warm Coat Built Just\nLike a Soldier Boy’s.\nOFF FOR THE BORDER. +1947 WM. E. REED & CO.\nDeering BINDERS MOWERS BAKES Binder Twine Are The Best. +1948 WOMAN AND FASHION\nMADE OF FIGURED MUSLIN. +1949 WOMAN’S RELIEF\nWINE OF CARDUI +1950 WOMEN’S SMART SHOES\n$2.50\nPair +1951 WOODSIDE SHROPSHIRES +1952 WOODSIDE SHROPSHIRES\nOldest and Largest Pure Bred Flock in\nWisconsin.\nOrders now being booked for\nCHOICE RAMS, to head flocks fall of\n1899;\nSHOW STOCK, either sex;\nFOUNDATION FLOCKS of toung,\nthrifty ewes.\nA. O. Fox, Woodside Farm,\nOregon Dane Co., Wis. +1953 WORK AND THE POLICE MORTAL FOES OF THE I. W. W.\nINDUSTRIAL WORKERS OF THE WORLD IN SESSION +1954 WORKINGMEN\nMERCHANTS\nMOTHERS\nEVERYBODY\nTHE LONDON CLOTHING COMPANY, +1955 WORKMEN REMOVING the torch of Liberty from the statue on South Penn Square. +1956 WORLD’S BEST CATCHING RECORD\nHELD BY THESE BATTERED HANDS +1957 WOUNDED AMERICANS COME BACK SMILING +1958 WRIGHT’S CELERY\nTEA will give you a\nhealthy appetite, good\ndigestion and strong\nnerves. +1959 WROUGHT\nIRON\nPIPE\nAND\nFITTINGS, +1960 Wagon and Carriage Maker.\nHorseshoeing & Blacksmith-\ning of all kinds.\nG. ROUY, +1961 Waists.\nAll Ready to Put On. +1962 Waiting to be Asked. +1963 Walter Baker\n& Co.’s\nCHOCOLATES\nand COCOAS +1964 Walter Baker & Co.’s\nBreakfast\nCocoa +1965 War Orders Rushed +1966 War Revolves About Castro +1967 Warm Weather Clothes\nTHE KASH CO, LTD. +1968 Warner’s Rust–Proof\nCorsets +1969 Washburn Oxfords $7 +1970 Watches,\nClocks,\nand Jewelry +1971 We Carry Prime Meats\nPRIME ROAST, LAMP, MUT\nTON, VEAL OR PORK.\nDAVIS & HANNAFORD MINOT, N. D. +1972 We Carry Trunks. +1973 We Cover the Feet\nWith Footwear That Will Wear.\nBRULLE & TIMBERLAKE +1974 We Sell The Earth\nAND\nLoan Money on It +1975 We Stand at the Top.\nSTUDEBAKER BROS. VEHICLES have never failed to uphold their\nREPUTATION for GOOD STYLE, QUALITY and FNIISH. +1976 Weak\nGirls\nDr. Williams’ Pink Pills\nfor Pale People +1977 Webster’s\nInternational\nDictionary\nTHE BEST FOR EVERYBODY +1978 Wednesday We Shall Hold a Sale of\nMisses’ and Children’s Shoes +1979 Well, here we are again,\nwith a larger and more com-\nplete assortment of Holiday\nGoods than ever. The prices\nare right for the quality of\nthe Goods. Come and see\nfor yourselves.\nW. A. IRVIN & CO. +1980 We’ll Be Pleased to Give to\nEvery Baby Born During\nBaby Welfare Week\nJUNE 2 TO 8\nITS FIRST PAIR OF SHOES +1981 What Are We Here For?\nTHE FUN OR THE MON?\nWE ARE HERE FOR BOTH. +1982 What Better Christmas Present\nTHAN A\nFINE SET OF HARNESS?\nFROM\nThe Manufacturing Harness Co. +1983 What Is Beauty?\nIt’s the Complexion\nSEND FOR FREE TRIAL\nPACKAGE. +1984 What Temperance Means.\n"Diamond" and "Munich" Beers +1985 What do you\nrequire of a\nTypewriter? +1986 When Visitors Come and There’s "Not a Thing\nin the House” +1987 When We Say BEECH-NUT Brand\nSliced Beef\nTHE SEELIG COMPANY, Inc.\nWholesale and Retail Grocers +1988 When You\nFell Like\nThis\nYou need to commence drink-\ning at meal times a glass of\nPRIMO LAGER\nSOLD BY ALL DEALERS. +1989 When You Paint\nJ. W. DYSLE & CO., +1990 When You Travel\nInsure Your Baggage\nCosts but a few dollars a year\nInsurance Company of North America +1991 When in need of Spectacles,\nGO TO\nREBER & CO,\nDRUGGISTS, +1992 Where the Music Comes From\nISRAEL, THE PIANO MAN, +1993 Where’s Your Sporting Blod, Scoop? By "Hop." +1994 White Shoes\n$3.95\nTwo Days Only Tomorrow AND Saturday +1995 White Shoes\nThe Craze of the Hour +1996 Who Does the Livery Business?\nOpen All Night.\nBarnett & Arnold. +1997 Why Do They Persist In Wearing Hats That Do Not Suit Their Peculiar Styles of Beauty? +1998 Why not everybody quit work and one–half of the world do nothing but write scenarios to sell to the movie\nactors at a million dollats apiece. One scenario from each person ought to be enough, and thus\nleave plenty of time for recreation. +1999 Will You Accept This\nWith my Compliments?\nWESTOVER\n"Best the world ever." +2000 Willis Griffin\nPRACTICAL UNDERTAKER.\nAND\nFUNERAL DIRECTOR +2001 Wine of Cardui\nFOR WOMAN’S\nPECULIAR\nWEAKNESSES, +2002 Winnie the Wonder Child Meets a Shower +2003 Winter Coats\n$50 to $59 +2004 Wirthmor Waists $1\nThese Four New Styles On Sale Tomorrow +2005 With London Millions at\nNight During a Zep Raid\n"Enough high explosives could be carried by one such Zeppe-\nlis to blow all London into dust." +2006 With a\nFew Quick,\nSharp\nOrders\nOsgar\nShows\nWho Is\nthe Boss. +2007 Within Reach.\nBecause of its low price Ivory Soap is\nwithin the reach og all. Besides its\nlow cost it has the advantage that it\nwill do the work of a half a dozen kinds\nof soap each intended for a special\npurpose. Its purity fits it for use\nwhere the ordinary soaps are unsafe. +2008 Wm. HARRIS,\nDEALER IN AND\nMANUFACTURER\nSADDLERY AND HARNESS\nAND\nSaddlery Hardware,\nGrand Street, Monroe, La. +2009 Wm. HARRIS,\nManufacturer of Saddlery, Ktc.,\nGRAND ST., MONROE, LA. +2010 Wolff’s ACME Blacking\nHARNESS DRESSING +2011 Women Who Run Their Own Cars Should\nUnderstand Oil Stains +2012 Women as Well as Men\nAre Made Miserable by\nKidney Trouble. +2013 Women's Suits\nSilk Dresses\nDress Skirts +2014 Women’s Low Cuts\nat Ten Dollars\nNO WAR TAX +2015 Women’s Suits Reduced\nGREAT\nMARK-\nDOWN\nSALE +2016 Women’s and Misses’\nNew Fall Suits and Coats\nIn the New Swagger Styles. +2017 Wood-working\nMACHINERY +2018 World’s Best Typewriter\nThe Smith Premier\nTypewriter Company +2019 X-traordinary!\nA chance to get a Suit of Clothes\nAT\nDAILY BROS.\nFOR A\nReasonable Price.\nDAILY BROS. +2020 YES, Indeed; we have plenty of Straw\nHats in all sizes, including 7 1/3,\n7 1/4 and 7 2/3, which we understand are\nvery scarce in the general market.\nCorrect Braids and Shapes—\n$3 to $6\nJACOB REED’S SONS +2021 YOU CANNOT OBTAIN THESE GOODS.\nPLYMOUTH ROCK $3 PANTS. +2022 YOU HAVE NO CAUSE FOR WORRY +2023 YOUNG CHILDREN\nAYER’S\nCherry Pectoral\nAyer’s Cherry Pectoral, +2024 YOUR BOY!\nBuy Him a Kodak.\nIt will\nKeep Him Off the Street.\nBUSHONG & FELDMAN,\nPhotographic Supplies. +2025 YOUR FUTURE\nIS IN YOUR OWN HAND. +2026 YOU]WILL\nALWAYS\nFIND\nTHAT OUR WAGONS\nTHEMSELVES PROVE\nEVERY CLAIM WE MAKE. +2027 Yankee Doodle, He Brings Home the Bacon +2028 Yee Sing Tie\nLarge\nWicket\nChairs\nof the\nLatest\nStyles\nAND\nDurniture\nOf all kinds.\nFort Street, opp. Club Stables. +2029 Yee Sing Tie\nLarge\nWicket\nChairs\nof the\nLatest\nStyles\nAND\nFurniture\nOf all kinds. +2030 Yesterday’s dispatches say there is a feeling of admiations amonh the British for the courage of the Boers, and the Boers pay high tribute to the fight-\ning qualities of the British. +2031 You Can Easily Operate\nThis Typewriter Yourself\nThe\nOLIVER\nTypewriter +2032 You Can’t Find\nOut All the Good\nPoints About These\nClothes\nUntil You See Them\nYourself +2033 You Should\nLook at +2034 You Would\nEnjoy\nNEW YORK DENTISTS +2035 You will tone up your\nsystem and feel better for\ntaking, in the morning., glass of\nHunyadi\nJanos\nWater\nNATURAL LAXATIVE\nBest Remedy for\nCONSTIPATION +2036 Young College Men\nYou must look your best tomorrow. The high school\nstudents wil be looking up to you in matters of dress. +2037 Young Men’s Clothes\nEderheimer, Stein & Co. – Makers +2038 Young Women +2039 Young Women’s\nBetter-Than-Usual Coats\nat $35 and $42.50 +2040 Young’s Hats\nNONE BETTER MADE +2041 Your\nFall Suit +2042 Your Auto Will Show Your\nFavorite Color This Year +2043 Your Best Interests\nwill urge you to buy the\nGenuine Oliver Steel Beam\nPlow. They give satisfac-\ntion everywhere.\nAll the leading sizes kept\nin stock by\nDecker & Alrich. +2044 Your Eyes\nA. N. SANFORD.\nMANUFACTURING\nOPTICIAN +2045 Your Grocer will deliver\nBevo\nA BEVERAGE +2046 Your Soul’s in Your Hand +2047 Your house can be made\nto look like cut by buying\nyour Furniture at\nKratz’s Furniture Store\n148 S. Howard St.\nCash or Credit. +2048 You’ll Be\nPleased\nIde Silver\nCollars\nGlobe Clothing Company +2049 ZIEGLER BROS.\nFINE\nSLIPPERS\nFOR LADIES +2050 new folding go–carts—\nTHE\nONE–MOTION\nCOLLAPSIBLE\nGO–CART\nFOLDS WITH\nONE MOTION,\nNO FUSS‚\nNO FOOLING\nNEAT,\nCOMFORTABLE\nAND\nCONVENIENT— +2051 primo lager +2052 —follow\nthe foot-\nprint. +2053 „B. Ontime" Goes Mile in 2:13 1/2, Which is Best Time Made on Tazewell Race Tracj,\nWeather Good and Large Crowds Each Day — Fine Pultry Exhibit. +2054 …Lowanda’s Eight Brazilian Riders… diff --git a/train2/expected.tsv b/train2/expected.tsv new file mode 100644 index 0000000..d401e99 --- /dev/null +++ b/train2/expected.tsv @@ -0,0 +1,2054 @@ +845 +1231 +1271 +1057 +1389 +660 +511 +1719 +545 +908 +39 +321 +975 +31 +1746 +1256 +133 +1724 +822 +15 +496 +270 +417 +305 +967 +1106 +583 +493 +929 +1763 +10 +1380 +1751 +1718 +1486 +776 +65 +994 +439 +981 +943 +1432 +350 +1708 +384 +1112 +488 +1278 +1990 +510 +274 +1575 +1215 +1118 +1134 +1347 +371 +1732 +147 +665 +2019 +85 +1640 +1283 +1262 +1989 +744 +526 +602 +1442 +119 +1375 +1958 +2003 +1072 +1577 +808 +891 +848 +1448 +1540 +331 +1548 +12 +921 +1236 +560 +1488 +1985 +101 +315 +1026 +1137 +530 +1042 +1582 +122 +1384 +139 +71 +196 +456 +167 +1606 +52 +1062 +1147 +361 +623 +314 +1457 +1046 +1767 +96 +670 +1694 +799 +2014 +1414 +1532 +1875 +100 +917 +4 +198 +1777 +313 +719 +1011 +1426 +1002 +852 +295 +1976 +491 +576 +164 +632 +279 +2046 +532 +704 +608 +1260 +13 +503 +556 +178 +1263 +1392 +98 +595 +232 +1233 +830 +1356 +1129 +570 +1810 +1393 +300 +1353 +498 +409 +547 +1884 +563 +606 +255 +1714 +1327 +258 +1049 +1168 +1506 +1166 +1935 +1901 +1858 +1312 +226 +1301 +44 +1988 +1686 +1 +378 +1187 +554 +1581 +2031 +1598 +1495 +925 +1750 +1374 +839 +1817 +774 +399 +1464 +1876 +1655 +326 +1954 +1293 +1902 +642 +1748 +265 +549 +1101 +80 +875 +833 +1920 +1720 +1619 +1534 +1123 +1019 +1028 +389 +192 +1893 +256 +1722 +1580 +1160 +1813 +687 +1315 +306 +2041 +189 +410 +1762 +1025 +1391 +942 +866 +634 +225 +695 +1420 +1804 +368 +1496 +1368 +95 +1594 +1092 +186 +737 +1306 +40 +160 +1470 +862 +1449 +2042 +1942 +294 +1831 +1887 +45 +743 +557 +1264 +814 +1089 +1830 +907 +1600 +1363 +1284 +759 +1471 +1434 +961 +1696 +247 +1314 +1252 +939 +1501 +1625 +454 +1148 +1834 +1421 +448 +1084 +67 +426 +227 +1181 +325 +1141 +688 +114 +157 +641 +1590 +289 +307 +446 +941 +175 +475 +1597 +1917 +492 +764 +838 +1706 +1952 +1322 +293 +48 +730 +1159 +841 +1687 +339 +705 +1962 +1116 +1644 +1960 +1078 +298 +599 +870 +858 +53 +502 +853 +26 +2008 +1537 +1000 +720 +1538 +1461 +1195 +1367 +1905 +784 +1031 +710 +1944 +472 +902 +1611 +953 +594 +23 +416 +1088 +528 +626 +763 +711 +266 +696 +1336 +806 +1654 +476 +818 +1058 +1318 +1788 +865 +1350 +369 +1435 +1957 +542 +1186 +1602 +1310 +1294 +195 +797 +1821 +1668 +788 +46 +187 +1618 +1377 +1402 +1898 +679 +664 +648 +649 +667 +183 +1039 +1105 +919 +379 +240 +330 +505 +931 +425 +1833 +262 +1201 +1111 +786 +1576 +2006 +199 +1453 +575 +968 +284 +636 +1246 +1713 +1899 +565 +302 +43 +800 +1381 +1556 +1305 +395 +1307 +1212 +742 +193 +1128 +1808 +779 +372 +522 +864 +678 +1828 +1733 +1948 +1569 +158 +282 +1766 +1279 +580 +661 +707 +795 +1330 +182 +527 +1513 +17 +616 +714 +403 +1873 +1840 +1973 +440 +1883 +1411 +962 +952 +14 +478 +215 +1104 +832 +987 +1227 +692 +1559 +524 +1527 +1302 +2029 +480 +1665 +1269 +631 +1333 +290 +2011 +1866 +876 +1928 +1216 +470 +1511 +1699 +615 +466 +1712 +1688 +671 +348 +1371 +2048 +584 +1214 +412 +1971 +1759 +1151 +918 +469 +438 +828 +1562 +933 +761 +1909 +2034 +612 +30 +383 +1180 +1341 +1296 +1609 +376 +889 +1248 +1439 +1982 +51 +718 +1543 +1276 +197 +1209 +473 +1578 +1131 +1702 +268 +1520 +309 +1801 +963 +750 +1179 +285 +1932 +905 +1182 +1273 +318 +601 +1489 +1910 +373 +1064 +1010 +1773 +108 +1523 +1536 +1753 +1519 +1752 +587 +420 +1769 +1103 +622 +211 +423 +1641 +537 +1076 +1683 +1156 +1776 +253 +1424 +334 +1872 +1626 +716 +1316 +1398 +1365 +1178 +1820 +618 +1117 +1620 +1081 +462 +1862 +135 +1567 +703 +487 +2024 +449 +1775 +435 +1121 +464 +675 +471 +1452 +1700 +568 +914 +1309 +203 +1288 +792 +1239 +685 +769 +726 +753 +1091 +1265 +1344 +515 +444 +1299 +1888 +1345 +1691 +1650 +393 +791 +59 +1682 +1529 +796 +2005 +144 +910 +1376 +1503 +1738 +75 +1636 +364 +335 +1591 +436 +1542 +19 +1361 +810 +1685 +1638 +653 +176 +926 +1857 +474 +972 +234 +1162 +765 +966 +897 +2045 +184 +630 +2051 +940 +1115 +357 +1907 +1956 +68 +1947 +1232 +717 +1015 +699 +1517 +397 +497 +1282 +254 +483 +635 +1043 +1756 +173 +1615 +1445 +1242 +1158 +597 +815 +181 +1274 +1925 +1245 +684 +912 +2054 +1565 +581 +809 +1608 +1851 +2021 +1549 +366 +504 +811 +151 +1997 +807 +1642 +1455 +1868 +1953 +1311 +1463 +1133 +593 +1617 +1469 +146 +465 +244 +610 +982 +654 +572 +1871 +1681 +1853 +588 +995 +1614 +1994 +422 +1970 +458 +165 +1048 +564 +110 +1561 +406 +451 +359 +1764 +721 +1454 +567 +1491 +22 +121 +1675 +1008 +1892 +1328 +1525 +1992 +347 +1122 +25 +388 +1073 +1832 +271 +1006 +1001 +1339 +1068 +1710 +999 +1908 +1027 +1760 +394 +329 +691 +855 +1407 +319 +523 +5 +1657 +437 +1251 +1545 +708 +1560 +633 +380 +275 +893 +740 +1731 +1859 +650 +1656 +1241 +1977 +1473 +1515 +2049 +222 +958 +1317 +1003 +1404 +150 +525 +90 +1211 +1044 +686 +1514 +2022 +666 +2052 +1586 +950 +506 +1530 +1033 +1555 +1164 +499 +659 +1758 +728 +1056 +482 +235 +770 +1551 +2026 +1385 +748 +1508 +1408 +712 +91 +1202 +1484 +657 +1765 +1413 +930 +1778 +1004 +1705 +1999 +143 +317 +1291 +700 +1075 +916 +1410 +1721 +877 +1041 +1298 +1153 +1806 +1323 +951 +261 +1067 +984 +856 +452 +1568 +836 +1139 +322 +2053 +1012 +1507 +64 +1823 +974 +842 +964 +1052 +1861 +323 +1281 +1258 +47 +1093 +34 +1403 +849 +328 +1552 +1829 +477 +831 +1458 +1827 +1852 +1346 +1822 +781 +1934 +8 +1690 +1230 +1349 +351 +1285 +1429 +308 +177 +1237 +813 +333 +1729 +651 +27 +1422 +56 +1240 +509 +161 +1475 +817 +1451 +884 +604 +1800 +391 +54 +629 +166 +879 +801 +1154 +1120 +297 +638 +1221 +802 +920 +1789 +1574 +1627 +431 +2002 +1900 +736 +1940 +1734 +1063 +529 +1645 +1843 +1109 +1013 +296 +1967 +771 +640 +2025 +245 +1366 +668 +179 +1889 +816 +72 +1175 +663 +1494 +185 +1386 +1267 +880 +1903 +1639 +1051 +1198 +890 +201 +507 +1074 +356 +1570 +1802 +944 +61 +1521 +1659 +120 +316 +1624 +1938 +979 +467 +1564 +1207 +624 +1936 +1631 +1217 +205 +936 +1290 +1192 +569 +1933 +6 +1558 +621 +1761 +2016 +50 +1433 +1803 +722 +218 +188 +1467 +1102 +1628 +153 +909 +531 +1097 +162 +190 +1842 +358 +1588 +159 +677 +1779 +2020 +1856 +690 +1912 +1993 +1268 +1114 +973 +1440 +263 +1295 +1704 +1677 +1894 +971 +2012 +1741 +1130 +985 +1680 +1205 +2004 +1770 +1824 +342 +1157 +844 +946 +1206 +170 +658 +1086 +1891 +485 +996 +1819 +1126 +210 +536 +1023 +1370 +1796 +1465 +204 +1257 +443 +873 +1373 +755 +778 +2039 +1308 +1510 +1095 +269 +7 +1728 +89 +1009 +1261 +1287 +1755 +1874 +1472 +450 +1110 +988 +825 +1065 +104 +1191 +1412 +1197 +238 +745 +213 +1979 +208 +1747 +2018 +236 +1364 +673 +1662 +1474 +88 +1238 +1292 +219 +1482 +1975 +543 +1083 +117 +1539 +1698 +1300 +1815 +1357 +1951 +1119 +1726 +1937 +346 +278 +401 +301 +1343 +1512 +1995 +1020 +986 +1791 +276 +2037 +1669 +1740 +1222 +775 +1338 +591 +138 +878 +2015 +264 +481 +643 +1394 +405 +611 +957 +303 +1651 +1563 +1226 +1918 +1331 +260 +1998 +579 +1437 +1210 +1387 +36 +1138 +756 +111 +1497 +1184 +123 +741 +1459 +1945 +277 +1585 +459 +559 +1522 +517 +1228 +723 +1882 +1697 +847 +899 +2032 +777 +548 +2035 +455 +1188 +1446 +574 +386 +1544 +1199 +874 +935 +1950 +1743 +1991 +1774 +1423 +1161 +1878 +78 +149 +1794 +922 +1450 +62 +168 +400 +367 +1177 +516 +1203 +63 +267 +66 +1870 +980 +752 +1272 +1332 +571 +1881 +1913 +639 +251 +1880 +281 +646 +1603 +820 +1235 +20 +709 +2028 +1481 +863 +1716 +1036 +762 +2013 +1703 +93 +927 +1735 +1174 +860 +1189 +292 +252 +142 +609 +38 +655 +137 +1169 +824 +1623 +546 +1676 +1427 +715 +1648 +727 +460 +1053 +174 +1906 +794 +257 +1176 +231 +1040 +519 +627 +1904 +132 +1799 +1071 +1340 +662 +1860 +512 +113 +578 +35 +577 +116 +1667 +1978 +1684 +1399 +1914 +766 +424 +1583 +1372 +1589 +900 +1418 +370 +1173 +445 +1066 +1219 +1780 +948 +997 +1396 +1897 +1931 +989 +283 +1926 +1275 +1798 +1017 +645 +224 +1249 +273 +411 +2027 +1546 +1185 +1476 +2009 +1635 +2033 +681 +541 +1923 +607 +751 +230 +1400 +1673 +1355 +1379 +566 +209 +434 +937 +1924 +970 +155 +1342 +983 +1518 +1981 +1838 +1200 +550 +490 +911 +674 +457 +365 +223 +1929 +895 +87 +854 +1224 +656 +468 +1113 +518 +1170 +562 +1754 +998 +32 +163 +1277 +1035 +1383 +1863 +362 +991 +1524 +1816 +1516 +246 +327 +194 +859 +1809 +220 +886 +928 +280 +1895 +1395 +1483 +729 +1069 +1304 +1436 +349 +130 +872 +1142 +1658 +37 +1152 +1855 +1286 +783 +353 +932 +758 +494 +18 +892 +1243 +1745 +1634 +901 +1919 +680 +148 +1846 +1425 +1771 +408 +521 +1946 +1622 +1986 +702 +1107 +1749 +706 +1528 +1965 +1070 +1730 +1792 +102 +804 +1814 +69 +1987 +1145 +1550 +169 +1326 +1723 +1557 +107 +1085 +1108 +787 +592 +767 +544 +1725 +533 +915 +392 +500 +993 +105 +1553 +58 +539 +453 +1916 +1739 +103 +1005 +1930 +489 +1196 +1509 +1717 +76 +1358 +1869 +514 +1406 +840 +644 +1613 +74 +1689 +1100 +415 +21 +1359 +57 +125 +829 +768 +834 +1477 +1886 +495 +1493 +1360 +1826 +134 +1836 +172 +617 +131 +1974 +390 +1604 +1601 +1811 +447 +1793 +1165 +1362 +310 +827 +883 +1244 +754 +1864 +1378 +1795 +1059 +731 +336 +206 +573 +1587 +200 +413 +1382 +1259 +1255 +1254 +1014 +1077 +1167 +1351 +1416 +1037 +1736 +1405 +1847 +398 +1490 +1653 +1266 +9 +2040 +1055 +1060 +129 +747 +1324 +1438 +1462 +697 +693 +1584 +1616 +1911 +1966 +259 +1632 +1671 +1487 +1500 +1692 +1572 +442 +1984 +1388 +1505 +1247 +1621 +1605 +112 +1807 +345 +924 +1541 +913 +2036 +419 +1125 +1208 +888 +590 +1480 +428 +1297 +1447 +732 +947 +92 +1016 +1744 +1443 +1223 +614 +1566 +1456 +1915 +882 +1354 +1136 +1415 +1596 +1885 +1674 +789 +1921 +1850 +586 +1941 +1964 +1643 +33 +2000 +1334 +1229 +698 +363 +1498 +145 +374 +652 +1963 +969 +1649 +1693 +1054 +191 +2017 +344 +83 +1835 +1390 +598 +207 +819 +1768 +1022 +381 +1786 +676 +906 +1961 +2023 +84 +1172 +1927 +1647 +1781 +1030 +1441 +1612 +86 +338 +867 +1466 +1034 +1877 +1849 +1163 +312 +1672 +479 +42 +1757 +1996 +812 +1193 +1679 +404 +1428 +1150 +41 +739 +955 +60 +1171 +733 +1502 +154 +1533 +385 +1579 +287 +1818 +11 +1335 +1155 +1633 +1225 +126 +128 +152 +868 +1660 +861 +427 +1319 +1127 +1149 +1021 +959 +97 +2043 +725 +99 +1090 +79 +1666 +1444 +1204 +1479 +73 +1183 +954 +2010 +118 +1190 +894 +600 +430 +16 +1369 +109 +1253 +1709 +823 +1531 +923 +1715 +1790 +377 +589 +538 +582 +249 +124 +354 +978 +553 +887 +311 +1535 +585 +2044 +82 +212 +885 +2007 +228 +1844 +1968 +1468 +757 +233 +1194 +647 +1841 +1787 +992 +1742 +1797 +1972 +49 +1547 +613 +1595 +540 +28 +1321 +555 +790 +237 +1630 +1348 +1848 +956 +1050 +1922 +1701 +229 +561 +242 +945 +934 +1571 +1061 +898 +977 +1695 +508 +1772 +960 +320 +1038 +1661 +850 +1607 +360 +780 +429 +1234 +1845 +299 +1146 +871 +1593 +396 +1554 +1865 +1784 +551 +1969 +387 +1270 +837 +2050 +772 +1397 +1890 +1825 +1652 +70 +1785 +1218 +127 +596 +793 +402 +846 +734 +288 +782 +250 +239 +1805 +291 +272 +355 +324 +1352 +535 +1124 +694 +1213 +461 +1492 +990 +1783 +1943 +1707 +29 +1592 +1325 +857 +1727 +1737 +1329 +605 +337 +340 +1939 +821 +2030 +418 +773 +1711 +552 +534 +1409 +3 +949 +1220 +785 +760 +1867 +1401 +24 +1079 +625 +341 +1955 +904 +304 +1430 +1959 +1132 +214 +1664 +637 +375 +286 +683 +1024 +171 +2001 +1980 +140 +620 +343 +1289 +1313 +1573 +1839 +407 +1045 +1417 +221 +798 +1646 +1419 +881 +738 +382 +486 +1096 +669 +136 +1337 +903 +115 +735 +202 +558 +1140 +1320 +1629 +241 +1280 +94 +1678 +1504 +1478 +826 +1670 +1094 +1526 +414 +2047 +1029 +432 +1018 +843 +1896 +1663 +352 +803 +965 +2 +463 +484 +749 +1599 +1812 +248 +106 +1460 +1983 +1250 +628 +81 +77 +1499 +1143 +938 +1007 +1949 +1782 +672 +1485 +513 +1637 +976 +835 +1080 +501 +156 +1854 +2038 +869 +180 +520 +433 +701 +1087 +1303 +1135 +1837 +1879 +332 +216 +421 +1144 +619 +746 +1431 +1099 +141 +1098 +1610 +851 +1047 +55 +1082 +682 +724 +805 +713 +441 +1032 +689 +217 +243 +896 +603 diff --git a/train2/in.tsv b/train2/in.tsv new file mode 100644 index 0000000..c54053c --- /dev/null +++ b/train2/in.tsv @@ -0,0 +1,2054 @@ +7a3c5fd3195adb308ee709aa0177daa1.png 1903-12-16 +36a1bc183dd3798833b28b4f3976e45b.png 1918-12-19 +809d6c063cd1689cbe19541183f45097.png 1900-11-06 +e9f62bc711bdfb04c2a944d2f73d6335.png 1887-10-18 +b4b2fed55fe3234085d5f3849688ea66.png 1900-11-22 +d63d8eee3ff2d664436b49e8f46f8c90.png 1914-02-06 +193f0ebb926eb68c34d38e481520f8f7.png 1913-08-12 +9cba140c4e5ee10ba30aecf3a0e3f51b.png 1911-01-21 +a13ba1da837cf715c40543d21a28b7a4.png 1920-05-24 +0b9b1986f708bcd161a5a64e7d7b1965.png 1884-11-25 +e4c59a549ffefcc22d389cd5e708fe41.png 1914-08-09 +3fae0b7cb03610217eb22a709e92c464.png 1921-02-07 +3ccf59e85f4b4a2d3332010512fbc67e.png 1910-01-12 +c729343202775c6d9905c36ee6475534.png 1898-08-04 +6da0fb97f00f6453940db9698ccaaa0f.png 1903-04-16 +16ebb778376520a52e3446d0d000e5a2.png 1911-11-30 +f203f905ae6106907392d325c623b9cd.png 1898-02-25 +ef5a34b9eeff3e3cedc50d37859c8cd5.png 1908-07-25 +2f5ee6c3c71782002b07d35a1ca390a1.png 1922-09-14 +7fa3dfda150da821c4b82a70c00b33e5.png 1904-08-27 +06d682862976d80031afd5757f294228.png 1895-04-04 +4a03c1ea0ba17c3aeb955897d9874328.png 1913-10-08 +bebc89ae92923f1a00cff85a909271ef.png 1899-12-20 +7a63941f24763a08b585391765727005.png 1885-01-29 +251eb97a14d889fd8b0ad679d16c14eb.png 1897-11-08 +f7bd1d5aadaf00c41e259f550d006704.png 1901-06-13 +77ddb143557645241caaa6ff5209d08c.png 1902-06-03 +45e755a0ce61fcf306a6e7eab4ec9f18.png 1899-01-06 +9a4d370aaebd70fd3e0c9a9344fb1a2d.png 1897-10-18 +ab182d36d8d5fbc2bf7488701aed85d6.png 1895-05-09 +5a0790723f6a4063aa2ce17e59163aa9.png 1902-07-31 +5ff697a4c6cd090266d8e74ab717eeaa.png 1912-06-20 +0560f879aa5cc8b8f1291ab69a6a71c5.png 1909-05-05 +b3e40e51b6461f7da35372725ee38541.png 1897-08-05 +3908b2c79fe3431fd1a890f255b72fee.png 1889-11-13 +f1048a02412c599d5c64300dfa52ec04.png 1892-09-10 +97621c0d21d40444aed42674aa8ff4b7.png 1903-05-04 +5cf8f8b298bc4a97024bfeb83288ae1f.png 1917-08-03 +f6e9039ce7a88f96f711b4ebb61abf3b.png 1917-11-01 +fe5162af02d46aec90e711a6edf7f136.png 1887-10-15 +5eb166b62484bd62e34504c9362e2a0c.png 1898-06-22 +09fc36e2bc09ac74d21670746dbee3ab.png 1912-07-05 +3c2c15218cb342597caa43db92c86f49.png 1911-05-04 +d318ba9fa778a42c9161969ff91dd412.png 1910-05-23 +2bc7fe1f516f39a636db025186affad1.png 1908-05-27 +a973e350b7bcb70f6d587d3d1a486dfe.png 1884-12-01 +6d3215df014ce06aeb42e5fbdc05f4c3.png 1896-12-03 +f81a1d2485373cf8f0fb72e6e0b2e9e6.png 1882-12-09 +fdb777a2837d3e3bbe88e7e0c608e310.png 1920-06-16 +94eea7a9bae1d70c3fc87498e6168487.png 1918-04-26 +520c024ec2d9dfacc0662ddf5685c76f.png 1917-02-28 +3385c248c58136b6f1217763e2f5455c.png 1896-05-18 +490e5e8a298a8754f4722c2e7ede84c0.png 1897-10-24 +9a01d9d1e59cb8da30ec5f7ad113a9b8.png 1908-07-14 +343e58751a0d8312b69300ececefafc8.png 1899-07-28 +d0c350900009345d136cbb7f0838fec0.png 1908-08-28 +948c2b0a348d5daa836201e1a381eb54.png 1910-07-06 +c6e157875601114179b25e5a869c8336.png 1908-09-18 +dc6dfd576970a9e0625ed04ecba80f52.png 1897-01-19 +5f4248388ce3703a67d3955fe8ddbe43.png 1920-08-06 +6c11739322376ed4ec90f33d44a0d3d2.png 1911-02-21 +bd09dd5330b206497ecad8fe4314d15e.png 1865-05-05 +8f6ab62d8576743c07b4de11c69e4b91.png 1911-06-23 +8766b9e3808ffb432579abe17a20e093.png 1909-01-14 +a502d411cef3aa61c1d7e6154a3c74ee.png 1922-04-23 +0224bee1a1dac8c590889e3d7e9dff4f.png 1896-06-26 +f956ee58535e13b794b47be4181c6eaa.png 1913-05-14 +3386803e36186a44ff264bc39145b5b8.png 1920-12-04 +2b5ae3b693e8311b8316ed3c2db41b71.png 1904-02-17 +c956b0d965cf3b2e01805bc30dfce62f.png 1853-02-05 +fa9afb31cc7fe72bf9adbbea6bdeecbe.png 1902-06-13 +9c5db3a037fff5776e7d9e12c1318a0f.png 1908-05-06 +5cfe5174dc8e3661dd7c44c485758f76.png 1901-09-21 +16e9c8c8b127875eeb46f8872d92bef6.png 1921-01-22 +505f02ab5b045426720b4961edaed238.png 1905-11-11 +97a159478525fe5f24bb76003a97d2d8.png 1885-08-09 +c910d8bc212a70dfdaf8c4e154a67f39.png 1895-11-23 +562002634291df9bc03c9aed65756388.png 1902-11-01 +5c521c1f3b0ec57a0de20ba62d82b4de.png 1888-08-02 +a1b8b57243052bbe75382d213c3b0aba.png 1895-10-12 +81381d08252fa3373bde869757147d4c.png 1917-02-22 +8b048cd1d7500a8290cec3fb4bb0ab3b.png 1911-01-12 +41d7d5b68c7d4c8c385a262f1aaaa76d.png 1912-06-13 +b0fc7431e57c518317973a26c35212e4.png 1908-11-19 +22df21c82d2c3e2bc2a7c72541151f1b.png 1919-05-21 +cc3e054ffab9d763071322aaeccec15a.png 1909-11-26 +a906858cccd39c2e0887d9b90f637543.png 1879-07-05 +fd8baa9bde481ef51fa976f8f02232ee.png 1884-04-28 +6c05c538bb6d67ca5e796af0d2063acd.png 1900-03-24 +18d24c5c514120c9259b4c18b1d331e1.png 1909-03-18 +b0df8743a1a0bd6b10002aa562d3b378.png 1905-06-23 +25b526ea769a399aed267be20fdb3cd7.png 1908-10-20 +9f9fa792a69e5b53d557b28f061fd437.png 1917-02-02 +28bb8ee24ff13942cbeeb6746bd0135b.png 1909-09-08 +f00de88832ef7e5193f4c77e4eca64eb.png 1895-03-19 +61661c41a64f9db44dc73feb5e6b0a3a.png 1922-04-18 +019549ab815981759264faf8e60062e8.png 1905-03-06 +ea042feb1a18008e2c8a10f60511589e.png 1901-02-06 +2c6154c59131ab05f7031291b45c40c9.png 1910-10-13 +bb3294fd9d12a6873ebe72f49b319f5b.png 1906-04-10 +2997a60940adb055625efaa069c9d840.png 1922-11-01 +d8c870bc7159e976be52fb85eb25ed83.png 1900-06-08 +b4745249d6e473509cb4de626531d82f.png 1904-08-07 +013e1ec2c6d527c789735b13511f1a42.png 1904-08-01 +61afa103f1ddab161c7635309cbdc4cf.png 1909-03-25 +228f93931f39a4586d70e96d10c5bcd2.png 1912-10-26 +9564cb3a5f6b5d3cdb8d5109f91a3234.png 1914-07-21 +2260561deded3a75b5483239237cc129.png 1917-03-28 +e1d77dcc23e791d534f6dc17fcf13bad.png 1865-04-28 +2370b5f2844e8f3eaa6f6c3c0dfc6dfa.png 1904-11-03 +45f480d1a5cf6f25fe417bf7d11d4ffc.png 1919-03-18 +915cc3f1ed1b48e4c0918f9d57e1d1fd.png 1905-08-09 +70aed9eda0dec1557df4aca94cd944b8.png 1910-05-19 +9d852a01392d8c7d2bfd9db153813a3c.png 1909-08-03 +87b4b1bb59b8f3dde1cd8d7db0b73d84.png 1886-11-30 +a783e32f0c2cb657631858fc67ece375.png 1908-05-29 +3b87881945386518b2457aac0727d2a8.png 1901-10-11 +a4f521d24234ea835a7788d52c4497c8.png 1919-05-31 +d6a942ecb2550af2b2e6c43c59c3adf5.png 1912-03-19 +a6f51c7ff22942d3b1d276f619c12527.png 1913-03-07 +337869aa7c6618e3a54da9fe54883bd5.png 1898-05-19 +30b9174640398bb48adb3cb33b612baf.png 1913-05-31 +847aa19d0522ed66bcd607613733c428.png 1913-06-11 +f10c633f4df9e39c96c6708af4919bc4.png 1898-06-02 +26980b4ee096801a99caeaa058542b7c.png 1897-10-03 +edd2f411119eaf3aed63cc6220975fa3.png 1909-02-14 +efd57873d40ac22653e97a586c6a9786.png 1898-02-09 +84a137e728405ab155b72e8f78d18168.png 1914-08-27 +a81378b7884ee173f328d3b7d255e2f4.png 1897-10-07 +0f00e27cf9e67a92314a0c72e2fc26f4.png 1917-09-26 +1017af0a8cef80380717ae372f340cf6.png 1921-08-15 +68037780f002da1b698089decdaed025.png 1913-03-28 +04bb9b97732ac92d41708e8362fbf0ba.png 1900-04-19 +e9f73b060a8d8df3894f560e90e85004.png 1901-05-15 +1bc56045e708fabbb2a6d3fa5746208d.png 1890-09-25 +c5d3d26f0c2eea0879af4de5d2f6fa9e.png 1861-01-30 +d57bb3d4bfea5f92d780767efefe0e44.png 1910-06-17 +28b24497cd437c476decd814a3a01ee2.png 1904-06-11 +4db98cf9c14355ceceba47b20f53fa82.png 1897-01-21 +90f4c85d7c890fb8912052ef634b71f1.png 1920-09-02 +3c062173f161a262e078ac2409959804.png 1864-12-23 +9008fbf75e402f4023e5a3b6d6d0b4fa.png 1922-03-13 +3cf1c3096736e614f378786754fa0e61.png 1862-01-14 +ac7a28ea981c0452869ca73c50386030.png 1882-10-19 +0e7f2e223857ccf6b533dfaba42d7406.png 1899-04-07 +81d15759b8b0780b20fcdc0014a80119.png 1914-04-17 +5e1d98faaa4d523ce0b5713b23400b95.png 1911-09-08 +9edf22b0155bc363074ededee0d1c75f.png 1918-02-07 +a82643c325d77c40f39ba3f84d080923.png 1918-07-13 +752e7de188b9951e97ede5c29e18ba04.png 1912-09-12 +1b530d33bd2c0790a93c75c4f9b00d52.png 1895-03-14 +3e38febc61b15edafc7ed551edeaa630.png 1896-12-11 +19d66e17a846bfa9b4e01343e7500c3a.png 1890-10-17 +8c538a98a0413af2371ddc7c90cbfc06.png 1903-07-17 +90ec65805f9af4ddd4bc7ce098f9ad9f.png 1921-03-08 +cebd20016761e39cddfba9a12302f22f.png 1883-06-04 +712c79a819988831fb93dda77262a42e.png 1905-02-24 +e42ff681454f167bb3c8289feb1ae629.png 1909-09-23 +e34b991ef429fe9f060dc874a4e3e5e0.png 1919-05-09 +a23e0763435e088a4405233a21db5c5c.png 1911-08-17 +91a83e873e87828ab12ea5c2151e78f5.png 1911-08-21 +5ee190c2d5a03ad0b1438e3c3802620d.png 1899-07-24 +6575e81a859c2422cb6a9f1141c63d0f.png 1908-06-05 +2c2f427ef25c0c26f7a78ab5cd58f059.png 1897-04-03 +1e459578b5e7969b4dd43084e1ae3d48.png 1909-07-01 +aca431fb617d3519a039fb3fc235e980.png 1889-08-08 +77712f4089edeb144590b3a4e544983d.png 1898-06-21 +0b739eeb588a698006cf6b2cd2449408.png 1902-07-04 +a7c0d097de6ee660261386e629cc5cb7.png 1911-10-09 +49f783e17119b3edd2e87df07e4514f7.png 1913-05-15 +69e1475301d84c90c306356a9fe853d3.png 1906-05-03 +e56c8cb3ef4a923af2625e95fe615a79.png 1921-12-02 +5ee54cb9b652c2bf859fd14a12e89e32.png 1922-08-28 +51709171a2a564beddc795bd42008ef6.png 1900-12-30 +9f395c5268c4710ed12a5f889a46e120.png 1917-03-07 +e7f760f5eea45beb71e2e6f977c61df6.png 1884-02-07 +b39c5c2fffa97783b32230249ce85cff.png 1909-03-18 +3df06dbb000051c9355647c1b882bd1d.png 1918-02-10 +9c97b05111b38d8621c721d6281be0d6.png 1897-12-23 +c60ab501a8350b0cdb553713ae0a490b.png 1904-03-12 +42413353d7b174a256f4b97d40c1b218.png 1897-10-02 +a2628812996e51cb87e6c84acb725fd5.png 1899-09-09 +ce4aac5e4b37e395745dee2c9a368f19.png 1893-03-25 +b689fcd70f58c3f5d3e1fd59c4a9e420.png 1904-07-19 +7fb13205fd21fc4eeeaf978d47b7ed59.png 1864-03-01 +642fd660b96eb64d0cfd2a76868fe3f9.png 1904-06-19 +61ada79d7fbc7c1b57b3b729c4fcbc5d.png 1920-08-26 +26f1011111d1c36a0123d493ff7d958b.png 1854-12-01 +40d3d78a1c97e3ca888521e9c6d2ea38.png 1914-10-01 +6b0ab79b8ee5dc6f98e8a1b693a467eb.png 1909-05-21 +05742bcc87190fb7adfda8023f4949e0.png 1907-08-21 +58be308482bce5be4c3e8c1c3ddd1c83.png 1917-03-31 +c4463e04c263cd20a365ea6db01087ae.png 1884-11-27 +ac514e69607d55790ecc3dacd87532aa.png 1903-06-24 +be92ff8667a8d9f294e40edd28d3b03e.png 1921-07-27 +626ccd61d4373ff505d8bec4d935bc10.png 1908-02-21 +b19c4303d6d4ee520ecb0176aed2a6c5.png 1919-07-21 +af14e06bb18e42dc0186e625410c027c.png 1904-09-01 +597a7f1c33f285eec25bb82a9ad20022.png 1909-08-10 +336f0ad46f393525a0d2c7a9844c251b.png 1901-09-26 +1bf4e280029059d75a4398a6229495cf.png 1914-04-06 +ac638d42b4f06e40b55d1378e8fdb970.png 1904-08-17 +ae42f9d860139652d5340981589f34e6.png 1889-12-02 +44931f08f1020532375cd707add26c83.png 1886-09-30 +5ea9f52c5025cce1e7b1513125f7f0ed.png 1887-04-06 +da0347aaaba4dacc2b7945bf2cd8cbc5.png 1886-01-20 +52163acaa8333e08635e417233b33bee.png 1885-10-16 +3baa4969482e27367d6a83443d6dae94.png 1909-07-22 +75ebf78f4d715a10ea63da9c7a6511f8.png 1909-10-02 +7cdc16c87eef8afe16dc08742712c5b9.png 1898-06-20 +bf48e1691e25f41d02afa71179ef88e0.png 1904-08-01 +e9ebbb31ff1a2facac46db1f464a84f0.png 1899-02-10 +3831f60bfd07e7cef3e7e306eec4598f.png 1899-09-12 +282090d653cb34afa4b294e9e391a194.png 1917-02-03 +cdf26e93e1097d9a9393a1e88251ccfb.png 1918-02-11 +3975d3e198c2ddae212d505fefd6e347.png 1895-01-07 +f3d65ecf3a20a8095efdab1ec8151f18.png 1913-07-08 +60d67602fbe18ce241ea85ada9325237.png 1904-07-28 +7faac50b8c0f64d6d6e014546a9312cf.png 1921-10-08 +c5d551abd7126028244c85557f2978e1.png 1900-04-13 +9a33a7648de4898724a19605fc6979ba.png 1908-06-18 +d135fa76eec6f07fd20cd948a8271ae7.png 1897-12-11 +2ed844dfa17b461fc9568cf1cebe55f3.png 1908-02-04 +b533434f5e16ded18264c77e58dbf70b.png 1917-06-05 +1faf37eccbc8a70288fef3479f2bbf3b.png 1904-04-21 +4769330863e1f521d82bb100ffd44fcd.png 1920-05-20 +241c19c585ce13ab400e87d0e984daf6.png 1909-09-24 +1a89ffc23e75b230ebd7aa9ed1aa8ec7.png 1887-10-23 +16ff9085beaa38da311c94f51b36bd11.png 1884-10-23 +ae9dcd0b1ba324c5aeeb4b9e1e4ab400.png 1917-02-22 +a720f32235ff5b55a949e2f0b42e82a6.png 1911-10-06 +d17ab38f2133b2e6bf8aabe19d841d38.png 1901-02-26 +ef6962a579323395e50aac58b5a9229f.png 1912-09-02 +6a7cd3578f32a719ab2ccda66abdeb01.png 1911-08-31 +a346c6393c26787f744b145c3acddd2e.png 1900-09-05 +7c3156537dadd443ca3272d4194467c4.png 1910-10-12 +d44d36d8578408ff3f8e67158f753950.png 1892-10-13 +2f6b2d0bccea68cff417e621ab080eaf.png 1899-06-01 +52b633f3e7abb696107ffa66cdd490d1.png 1918-05-20 +0a443d8705aff4f65709f0f175acfab6.png 1898-04-07 +b4e104b22b0c064321b4cd6ade1fbf72.png 1913-05-17 +27fd3ceab8cc80d67f6c9b1786998ebe.png 1922-06-25 +f75e34aec62a06a025ff9b1532b844ee.png 1912-07-19 +a21c4925e90d424f2c09a7554da882bf.png 1904-11-16 +49e4d0e6a6bcc26a17bcd109942fa795.png 1892-06-26 +0aee6ad8a3bc822eae49a909f2b6e803.png 1915-11-26 +37082f6c7e94faeaa14e45e11dfbad8d.png 1905-09-06 +2a15f0cadd3d33534e7a53eaab88d339.png 1905-10-19 +d3a90d6c896b2e626112bf9b799c9ae3.png 1921-10-29 +aaa8ba5e0c53c69717852c9daa20b441.png 1899-05-22 +6fd781bee2f8376eb785d7c5d32cd8a2.png 1894-12-31 +7cc49e916e64566d5431a54d4f40d4d9.png 1875-03-26 +958d639ba03414dfb00ce818cf3fffd1.png 1919-05-25 +11cce0944be110872ac88f92129929d0.png 1905-02-23 +2f1326d68ae185fadd5cf0a8e7b5e53f.png 1886-06-24 +aa62da06929b8a54b33349a00e36585b.png 1898-07-26 +abab2f0302588322701b33366091211a.png 1909-10-12 +b33fa46c851ac1e2c0ce9f21c35678e5.png 1909-01-08 +521f0460330e997238b85c2a7b7ed1f0.png 1912-09-13 +61e02995acaa6eaba8be7f9604f762f5.png 1899-08-04 +c486eda0ce37ddc9ff69d5595bb5b9c0.png 1912-03-14 +dc00459b988554bec2291af76bffc71d.png 1887-04-26 +c6ba398298bc88e056322101f419584d.png 1898-05-26 +ff954519c504eb6a9059d239c661dda4.png 1919-11-13 +50de1e96ccb7b39fa88872a90b01b4d5.png 1881-11-24 +6cfa09636d07b42323272bb36b306f98.png 1914-06-06 +e8a53adb1f7d6e807b9ca3ffd03c1ae4.png 1909-04-24 +bc83cbdbd3824b2c793f45eac670b3ee.png 1917-03-27 +0c71dc7dd1c4bf4a22915232d19a5d26.png 1921-06-20 +eaa332f36789dd4ed635b8d08c4bf121.png 1882-11-02 +ed14f17da527aab4d937b8bb160ad5a5.png 1897-01-08 +61d7164709394fba256d144f1bda0837.png 1921-03-22 +c6006c27236ff1e8a04d0681e69c12a3.png 1918-03-21 +7644687f09fa48bd51e47086ca341d84.png 1906-02-09 +eea7504b757a3278f45d64d057e90a9e.png 1904-10-01 +01872a898443812550c5413b0158ea7d.png 1901-01-18 +634d2bd0fb5ae2cba6fd4adbe4bf77af.png 1909-08-26 +fc9b0b1eebecd1314754f6e3e0c9a5ad.png 1896-08-14 +d1b3040371f00f3cee0942aafd1179e4.png 1906-11-15 +cd3570b460a490f35a32fcb8b172ddbf.png 1909-11-19 +204a003ec222be9729d1fd3ba260ab7e.png 1907-02-16 +da917382ccf24da3e9cda3428fecada5.png 1911-08-14 +9a483e6f63b32dbe646f67cd3cd7656f.png 1914-04-21 +85d0b4995d83777226706c1d89f0166e.png 1906-11-09 +e9ccc706efdbd130389b800f22a32764.png 1882-01-05 +59c0c0a4504128ab4ab684998527b5ca.png 1918-12-18 +69b44d0bf6c7ba7f7a18f39d840f932a.png 1917-03-16 +f8f84f995bff42f5f53b2d7d2756d0a7.png 1915-11-02 +ad5867fa24eef69bd0c563d3db9f05ee.png 1890-01-23 +25fccf6e5d79385b1d1d91021aa58f0a.png 1888-09-29 +e716a1ee35480866bf1553561c05613f.png 1901-05-19 +d16b27fa2bec3f95cbc6c706761cdd41.png 1913-02-26 +27a157203e64e580ee4e843942770acd.png 1907-02-21 +cd1d8271d383845d6d3cf0617a833853.png 1916-01-20 +05ecdda325a91cfd59f6f2320401101a.png 1913-06-26 +ba450f1d3a5ca2d66aa30c1cc0a25d75.png 1908-09-08 +08f84ef17732f7409e03b684c68dc4c2.png 1907-06-15 +8b9238d7b5c3afeba2ac0db7ac42e32a.png 1887-09-12 +50584987f97bcad5db5ed54ed1441bf3.png 1901-02-23 +999f1bb2b377a3e106ba9c3b79c878b0.png 1908-05-31 +4fae92b40dfa4ec30b187cabab7a2e6c.png 1893-11-11 +7d37cacb51eda0fa45bd614c0664c5d5.png 1918-10-28 +1237f794f4aa3df2523990e38e8fd56f.png 1886-03-06 +877d48f65d4819c2a6a55a429cd744da.png 1898-09-22 +d0206d4144d6347fcfdcd6a496d98ddb.png 1906-01-20 +b3266fbc0c603e0597da294145a3b939.png 1885-12-31 +2aa6cc10b02d4518989a260c940d3518.png 1895-02-08 +187f49fed4f7b0628162c19a0e580ead.png 1887-03-16 +03e284ddfa10bd39454e1f1e9c7ba824.png 1908-01-13 +250cd6b9ec7fd1204c74fddf5f5d3aa1.png 1913-07-30 +09065e43353273126c40866a814c9cb6.png 1904-06-23 +16dddf9beab4f3de2ab3e87283c9f497.png 1909-04-12 +de8684b6520307385d5a5870be670b4c.png 1890-09-16 +91661c0754bb7dd24ab4bc6b7d957e66.png 1902-06-15 +97dd435b94f091b70795390a44ea6959.png 1905-07-17 +c8d60bafd56e0ab43b49f4570321bb98.png 1911-10-26 +99feaf75630cef2acc90697aedb27941.png 1899-05-04 +ad594f551763295f92b4315e12615e30.png 1920-06-19 +f9e41c97bf03068e23f5fefa7e8d58f5.png 1887-03-01 +25ac9d97ac6f1f25c67be4b25b9d0393.png 1921-05-04 +6427a70913fe731f92ecdf9cbdaca003.png 1895-07-29 +41ce7178a9daf2045586d649a2e98fe5.png 1908-03-17 +6d67d9cfa7a402a90935faaf9660b557.png 1922-03-18 +90b0e64aad288936e63b534f434dd0ae.png 1917-08-11 +989979ecf42a18a2502602ad217c44c9.png 1918-06-14 +6f175c77b52f1aee93442aaffe20e602.png 1910-05-14 +8e0d97eca425bb4220e90427d8f9fa63.png 1902-11-22 +926d19940da1697bbea6d5b67ab9b196.png 1918-03-01 +1afa9c25383b76b8f5c5a830707705ae.png 1903-10-09 +1322b508ef9cc91e2db385c9ca27bd90.png 1899-04-26 +dbac4820fade01dbcffaf68fc2cbdda0.png 1897-12-27 +cfcbbbbf6a6030a9d89f55fc5b077e00.png 1884-09-29 +efc39eba46092660c562ba11cd492356.png 1914-12-08 +7dce514f49e8788aac170cd5dd76046d.png 1900-02-17 +39740482dd156c4a5db86565539d78cb.png 1898-07-21 +dd51fd0fc00f0127860a32c1cb6c811f.png 1920-11-12 +d3614ee2202b95aaed1e2558ebbcf620.png 1905-05-02 +d7239bcb090821b7518252b2df0c44f1.png 1914-08-07 +9c5747f4617bb9b22dc40557f914c7b8.png 1899-10-22 +2a5ed1f503cb17ec9594883bc6b7e4c9.png 1883-06-09 +3a088fe2ee6871f67c3f2683d7b3539b.png 1919-05-13 +b40c97a1bf1283729f1b3bbfb9babdd0.png 1891-01-09 +0ebdb73a3416903f9a7b161b86e94a05.png 1905-12-28 +297d1c0684c447eeb74c0fb5273199c9.png 1906-04-27 +d995cc6e9d1a9cee0d761303e60e2272.png 1918-05-29 +de3ea1ae4e71fceeffafb8b6a02b39ee.png 1919-10-30 +1d6f52c729271ce5cf92fced8ebc5166.png 1900-05-03 +843e5897d13d2434572d48b6a31ea968.png 1865-01-07 +ec37e099defb05cd823853f91c6c37f8.png 1886-09-08 +41b21dee4242b695048d00ed47b769d5.png 1905-06-30 +7f07b6438ef4c18bad60e9adbabeb5fb.png 1905-09-30 +3aac01225d02d2000f2517616482b7d5.png 1863-07-10 +3db1d95be1e0a5e36bce31e837aa7c2e.png 1900-04-07 +aabaaef5c47526849bcdf5a082aaed2d.png 1905-11-18 +402a1da9942d7aebc4f0f7189f5a2c09.png 1914-09-10 +a724797437ef2e1edd5de1d6ead2e88c.png 1891-12-17 +c15141374700a4476a4b9dad4a42131f.png 1911-01-23 +0269adc064b8706efff2deef048a9ee5.png 1900-02-22 +f7e347be4630d55092f755ad8be0c0cd.png 1905-12-19 +79d12dc28b49a4e0910d8614aae3e48f.png 1897-03-29 +715d3161cb718b32b5f7cfe258b6b2b0.png 1899-07-01 +618bc4ec402bac080a2aa48e0ee51a6d.png 1886-11-19 +b5e2f77c551435d5e395152bcca2b42e.png 1900-02-15 +cd7a251d982a658f05be2d21a2b2367b.png 1898-09-15 +e3b70b006049d379d603b4dd9c9ecf3b.png 1917-10-20 +b1c9f6bcda7c38ed3f2fa51ae5ac78d5.png 1919-12-05 +03269698ace4bff7fac129033e52a40f.png 1901-02-15 +a6738be647cfc4c5eadea6193b1fb7dd.png 1914-10-22 +4226601d9f23cc8f7b0f5f7e1b93cf6b.png 1909-06-30 +59393591d7abc1d05925f362398decdc.png 1855-06-22 +5c05b5db7333ea3e94f1a51ba312e9ac.png 1880-05-15 +331a92c751dfb3cdf4687222f887fa06.png 1881-04-14 +1845793731a75fda62c506832839b450.png 1897-07-09 +9c9a3c3ad475a5619e095eba133bc59c.png 1912-09-19 +1c64d11ed407a7dbd6e1602b7da53cba.png 1912-03-21 +ee740776ed8a07af796e3e1d879d94ff.png 1887-11-26 +da8329ca5afd73bd6771c3feb4bfebfe.png 1905-07-26 +87a735de9ca09d7fb0f5fc4120de461e.png 1903-08-13 +aa1bd3bacdcbc64aa0a4d687a6cb66be.png 1918-03-12 +1f22fc7db9375898afacc184f07677c6.png 1905-08-12 +6d050e6cb35d9297347a58506466b29b.png 1918-03-06 +0bbccf0aa8d38c25e630f20a8228da73.png 1922-01-26 +8653bd74b4147033838c46bad9a457bb.png 1905-04-10 +b1a8e765cd29c34207908d54b8bfce87.png 1886-02-01 +79ea2622a04f8e924a0aacd88a37857d.png 1913-06-06 +a3aaac6b2643326861d2c0ce5b1291f9.png 1892-11-19 +632d4ac34d0533e8d0575ddab8d969b0.png 1897-01-06 +594b45fabde7160c6b17036663c9e237.png 1909-12-27 +c5622ce71af0ef1642c60a6818342509.png 1906-04-26 +7a831798a2d1079613afcc12fd9618f1.png 1901-03-08 +e489fb5473568eaad4d3a4b3f521d379.png 1915-06-18 +d31d2b3c6b24fc897d31048c906e6564.png 1911-07-04 +214b33251f34295248268cc4aa3b4f73.png 1892-01-30 +d6e1d312d0536d8c9d5cb9268b93697e.png 1886-05-15 +5670198749fcc92acc453cb630a2cfa8.png 1909-01-14 +d05152e0345e1dfb6bc70c9aebb3c49a.png 1922-06-17 +688b41496c7b20695135696f8ac894cd.png 1911-08-05 +c4c2c2002057b2349327af6465731d9c.png 1899-04-29 +faa0d2b75d0387970c1aa71a18c18527.png 1897-10-14 +13c8e35445aac1ae2e0a9bffe4f61502.png 1904-07-01 +b602d20c79dcd4595e1a910b31cb68f4.png 1864-10-19 +90edb21a091081b83e8b9324bf8646b9.png 1910-07-29 +ea16831bdd77611fbc72babe2ed7d5ae.png 1909-06-25 +72e3521a75449f80aee8febf4c36f8db.png 1900-08-24 +3430ee0c7894d58da77d4352bc6f2cb6.png 1889-12-19 +0073212566d947842afe0ce4f588ac0f.png 1910-07-14 +fd96c081e84b7d2023b5ca7562a7eaec.png 1909-01-04 +ca74004fdee65cc1ceb3d767044a1fdd.png 1909-05-20 +0eebc9b18bf362bbfea4fc040f22f3ef.png 1913-03-07 +293d76ddc2f16febce27ac2298050a23.png 1897-11-12 +7bf23156f30549262539ac140912b92d.png 1899-06-09 +a9ffbf89ad8b9ba1fb0fd3bb579d2fda.png 1902-11-15 +f6e0f9f9bbe4e8ea15fec9b306ba7abe.png 1899-05-16 +29e2eae53ced1306c7d9503788025348.png 1918-01-27 +a63aadefc55d2a90170ca410e71f969a.png 1875-07-30 +6cd1e91e73274382c59d1a475d1278c7.png 1909-07-30 +6b94f979f70a0671f8bd7e749d220ab6.png 1913-08-22 +e7a00d4ffb885bb44f70a3ff454b0054.png 1922-12-09 +768ca7f41e14b34c3a0c8bceaa1ae36b.png 1900-06-13 +936a37963964d59ff990a499b704468d.png 1900-04-10 +bb4f37d78690196220faec6fcbc2f1ec.png 1897-09-14 +1601b03e0a2265636c6d1d89b9eeb54f.png 1884-04-02 +96dd29ff9e7b79ccf3a2aaccde8b6e36.png 1912-08-15 +fb6482f32720618a9a6b1ef04da688dd.png 1912-12-04 +bcd601ec836d75ff9c681b6af7f25df4.png 1921-05-05 +11541685712318c933066da9e737f7c3.png 1914-08-05 +35dcd7a0b8c2a7c51b23bbea78ddc7b9.png 1887-04-28 +ef0254f9b73333989da631ce8c1a2a1b.png 1904-06-16 +67acca57cd938a3cfa60b4a97bb24c90.png 1909-04-28 +cabd52d34bd403f6b3216fe6a3f860b8.png 1911-12-30 +4cd5403be8478cb4572909c270cfd725.png 1897-11-12 +eeec54ba330b91f2aea77d2c52b1c70d.png 1916-03-31 +175ef1b5af56d43553601222eb68fce0.png 1887-11-28 +0c95390afa8e4eedaa2cd3612396aa28.png 1900-05-05 +1d4550ab169c7b42bfd96325b4c2a3bd.png 1904-01-01 +70c7d5c32c59d03a7b4532bda454bc11.png 1900-06-28 +bedee5f1f3c3daccc9659690003cc543.png 1898-04-14 +7fc12d6cf814d3fd0a78ca28de450ef5.png 1898-06-24 +3bdc599a928b2aba248b664844406492.png 1914-09-20 +0bab7d67919c78924558a31b5b471308.png 1917-08-02 +94795af9d394a51f46881eedc273eaf2.png 1879-06-13 +214e37873a7e70e4a5e05cca5962d1dc.png 1899-11-23 +de97f79168ad5ba9a4bbc238e6816ead.png 1905-10-22 +1e31c0eb4bb0ae93c38ea0d8a82d37a4.png 1902-04-04 +a1ba36944196236e3cf4431765b390ed.png 1907-09-21 +7423ca02492491c89d83a54fbaaca9d2.png 1922-10-25 +d4bd6171337a76541844422a0b0f9e6c.png 1900-10-24 +f00337160ce36b32a03324dbae083e30.png 1901-08-10 +2e4f74dff1a85fb020fb2efb81698127.png 1898-04-19 +310659a8d857fac012fd1566d89772be.png 1909-01-12 +39ff27c5d002048af318545e8a2c034a.png 1878-04-05 +a58f7190a99378eff6b52c1ce4d23203.png 1908-08-04 +51b418a6a72236714d31751e67fb9976.png 1882-04-18 +7dbc3c436cd8374ba13f5f46b1f9ae42.png 1865-01-23 +876dd000ba2b0e7b4b5f27eb2b679131.png 1906-06-15 +369dae7369263b2ce26b0a3ea98273df.png 1907-01-15 +d71ba189c462c99d17e004c54519b0c0.png 1904-06-18 +c08451af1179550e7c01633912e1f2d2.png 1912-07-28 +87cbecc78054714da5d580406fe3e88f.png 1905-10-17 +0ffda9906d26890691abdf55481d46f4.png 1902-07-19 +1e9e4fbf46cf3f6655b7d05a70a971b0.png 1910-08-18 +55a8b0940a2b2dfb5b2413cf2efe1752.png 1912-05-02 +4e84eb59cf83d14179f18365cf53a46c.png 1912-04-25 +9bb5c9a582e3aa5db77080e9baba1004.png 1910-03-12 +dafdef5764d1e227ce32a91beb8b280b.png 1900-06-26 +00736f6211708950fb244ec597e101c4.png 1918-01-02 +cc988b2203b8cfe02cb8089eecc0d7ca.png 1912-02-09 +fc6ca9dd5d2847387cea4f3e4eb61ff8.png 1904-07-30 +c9770dfeb791f6c8328b0f739ed22483.png 1886-09-30 +ddae64a1a6105efb5acab2be50c12990.png 1901-07-24 +2a6d1801ee914c89d02ce6d4777c6c4d.png 1899-07-07 +f09eb9ed8351b4736ff7477621948952.png 1910-04-08 +699f5895390805419ed1bc6da4a6728f.png 1862-08-15 +b98ee9af9a58f128f6711448dbb6a1ca.png 1917-11-07 +1fd219b9a01df6ff34e75d051ff27e1f.png 1895-08-01 +fa606fb3931f2787da0122c39ea44200.png 1902-07-09 +b9cf8ac298916fe0196bb2e4d45ee6d9.png 1862-10-17 +99b39a1d083afa63e3c7572b04a51e27.png 1886-04-01 +4c609ba34a3cc8131e18de3983be8e60.png 1865-07-14 +4a78a9b477ecd5842b730669cf5a47b1.png 1901-10-13 +ec74e99397cc36d4e7dfaa0131ab8ac7.png 1913-08-09 +fbabecd2cb2a051fa3122abbb09133ad.png 1914-02-21 +23fc4e261e436bbdd9322410f4d968db.png 1916-08-10 +3a0d195ae000f88667a64f4fd136f5e7.png 1918-03-23 +6e670bc4c55a03e215f54bf8ef2ae033.png 1909-01-26 +eae18ab4bd090f55a2d08095e781e9a3.png 1898-02-07 +fc3bd8141fd4ea5e90450eb6b61d7ec6.png 1912-09-23 +b779d073c9909fc9c9620d03066b30f0.png 1908-08-06 +8fd9cebf6d781a1af00f9a284b12db48.png 1900-08-30 +182607cf56f8e480119d9bb841cdd8a0.png 1897-09-21 +c332913090033d734942c608145a78b4.png 1899-04-09 +1bc849bd715482891258710f55959957.png 1909-01-29 +d6ac619a1fa4e47a8efcaa244e23dfc4.png 1917-02-18 +db624182f16ee20a7521186f69d35b85.png 1913-11-18 +b1c3a06964f62973c8971876b840333f.png 1896-07-15 +9f07f82811f13c7b3cb9f06811cb7fa9.png 1919-01-20 +b3327aafa3c4a9448ceecab7a28e83ba.png 1903-03-23 +f575099f1b08c89dd244981ed19a66dc.png 1910-01-27 +fbc8e867b9835a9c671acf5e33d27c15.png 1888-06-09 +cfb421ceb00fd789d50c5cb1bbf3896e.png 1921-10-20 +905b61cacf68b0c5c9d1174b90494cfe.png 1905-01-06 +b69907efdae28f5fe46c3fd458c21cb1.png 1914-04-24 +e71b4fc38e770e7d90f6d21f6c726ea5.png 1901-02-28 +29a80bd56f9beb45b91c52cf31ef7961.png 1918-09-03 +b70cbe04b0a0c857f5c12783fc3738c7.png 1888-01-23 +a89e7a76557bfca9386ccf4724b1b0a4.png 1910-07-14 +2a469297d1d17bb4ccc7f141f0893d8a.png 1862-02-28 +bbd33a7516dc04b59fa4fdab5dfc8b2b.png 1914-01-06 +ff83c7389327a5b6068c5658ebe897ca.png 1913-04-13 +30b7fe92f40eab393c74eab7da986e9e.png 1880-09-17 +2d6936f86ab591d6c0b68cb39a790ea6.png 1909-05-14 +6c97e11b2567769569c168132f48d052.png 1909-08-05 +c87080f086145a80232f89b00f376402.png 1907-05-14 +615c0991c54e878b5d56adc98fe2ead3.png 1902-09-16 +13a6b1003ab9d46de4c82a1f5bd4e885.png 1900-04-20 +cc8f2da3dea11f895f3f8d68cce81488.png 1917-01-12 +0b19f7c01cb6c8b5a1364bb681dc830f.png 1910-02-18 +a4b5e6bc45182a485f3dc898f6c2ed83.png 1897-07-22 +ee49a921f1a574978f7e31b75a2d9347.png 1919-06-23 +00a729b1639d1a0572fe344c80d8c31b.png 1887-07-05 +7e60bd849dd1f51e777a628bf96b22a2.png 1898-01-15 +49f74ae34900e618f39ce0b511b1b728.png 1899-07-18 +b18e08f460db09cd3c5e5986fa692a7e.png 1902-09-15 +c98acd05d3addeb39898c6638b31f015.png 1913-02-14 +69809c09c70ebcaefa7d7be452952d80.png 1922-07-27 +6bb5042905f3cdd65dc8c5fe99d17ead.png 1853-09-17 +e37ff298d50619ee4e955c17cb1eff18.png 1912-04-02 +d131cfbbc1a749ef4730f6691a6f71ad.png 1892-05-04 +e28e95df5e4ff5270734a790ab59af91.png 1897-09-06 +7b60f0934d64ba2454030c3cb80887b8.png 1879-12-20 +28b8dfe5928d329e8cd289951cf3ff33.png 1877-07-07 +3da6a8ff78a6f5edc8ceaf15c70eecbd.png 1908-08-26 +72f91b4f2488fc60e9360b35406e09a0.png 1910-03-29 +89792bc85aa34ac51713b13dd89f043e.png 1920-01-23 +0a5ad450d302a9b5a92d1b8121364ca3.png 1897-12-18 +6b6e9de72ca43a0ef2a2d2c6521d11e3.png 1897-07-14 +e35fc5690731e9f079a3fb5f8c9d0060.png 1920-08-19 +ac148a2004612b256247e5463f06ab30.png 1900-08-09 +2b426dc5d38b8b302c14c8d999878965.png 1900-01-05 +ac896a4d637620a455ceae81cea15813.png 1865-05-27 +1a1c3a701b982c3bf439890cc1e492d8.png 1904-08-04 +ee484c1a69c8d7900bf388fc5ca163ae.png 1920-06-24 +ac2e8e7848e2e6f1132a26bcd6add5de.png 1921-02-22 +8b63810f9996985bc285b6994047eb34.png 1903-05-15 +786f50b840232f22ae9ca1dc46bdd97e.png 1907-11-28 +4b42c4282fcf45d4619f200f0af08143.png 1890-02-13 +16a4e4b3cd9083fb00c8c0df7dfe438c.png 1913-07-11 +6e64f995a7b40e5b95c5dd5dda640a05.png 1881-10-14 +ce653a7c3e132a5f48a5a7a387309a22.png 1920-01-26 +e3b9c308895d76a85d3a30c05be742f5.png 1888-09-06 +cefee0f2f28b7d2a356b409d0533e452.png 1911-06-20 +50a43b77bd4969d3bb71ef24bb78912c.png 1922-01-09 +391ca7b6cebc9a2d4ef9c75d7b383f36.png 1919-02-06 +62c055999733c81fe29fd3418d7a85e9.png 1917-08-02 +957a614ad8e882371ecf46f88834fa65.png 1911-01-22 +7f4700761f86a2df3925c1d6a7b18c67.png 1920-09-28 +9691e0fcbc17acfa39653ed7cb35f0fe.png 1906-11-22 +4a8e4460acd126ada56bca20be795d87.png 1890-08-15 +67ab396bc2ca2ba42d8b729ae30480ca.png 1919-10-16 +7282200b1a12d97776b531355a6fec16.png 1899-09-26 +a4a9bb30d589b05dd420cddc5829a013.png 1891-10-23 +4d1885da605926bb4aeb47d946261263.png 1892-01-17 +42dc1348589a294685e8e4febb3f2e15.png 1904-01-13 +31ec0e6ee82fc973618ec45075855006.png 1909-11-10 +1c8151c83456a9c28dc69ddbd590bb61.png 1902-04-10 +b34d12840a9be1c42ef448433444964a.png 1913-11-09 +d71ac9f62b9abb12a8621f199a38d69c.png 1920-05-01 +591bb88ae6cc881f934d9e048669a95e.png 1909-07-22 +e599d70b08c759d6949cc6e50df61e3b.png 1900-11-24 +7dbcd73f94192a4ca49971040e41f072.png 1919-06-02 +ce81a7a07b95d1b203c2b8d8922a7d2a.png 1918-05-17 +f9c7fa7ea7f99d8c69c7e61a5d143af9.png 1900-10-31 +3921d00958d72c23a14e776b6ea75448.png 1920-01-14 +1faf673b67f47edf1820e23c424f2f5f.png 1907-04-16 +8b396317e48fc95320cae0c048c21c68.png 1862-09-15 +dafd973642c00e1d008c5b91936975f0.png 1865-02-03 +2d9eb9ebfa98022944f5cfdee1a34fc2.png 1904-12-15 +3ce7a4f7331d0805285041aebfb7df5a.png 1914-05-22 +d8137e7906087ffa85f66295e9cf6c06.png 1913-01-16 +e6f46b0d8867e10ba6e47edd677c9e5f.png 1889-07-04 +34f20284b4bc784582c68c83eebc7b14.png 1914-02-09 +68ac26ee06c3e240a0d72d20ef83fc4c.png 1893-06-17 +c7f208cc96ba258e74841b287cb87d8f.png 1911-05-22 +70b3d3f1f3fd4aa53d1cac258028e24a.png 1902-04-29 +5b16ba6ee0039b7e5adc383dbbf0baec.png 1886-06-14 +06b52d67a5baa2dcfc4385ae040e51f1.png 1902-08-21 +0d5e408931ff824f7d935062ba0e9be9.png 1908-10-22 +dbd0930ba09bdcd531e5be200655a01b.png 1911-01-04 +6a03a6f3955b8e827ed084ab69a967a1.png 1880-08-07 +5994efa73babeb756b9c4f9cba05269e.png 1920-02-02 +f20218667dcbce08e1a05ea791e2b710.png 1900-09-25 +e680e6fb148cf5e25ba24dc4af8cbe00.png 1908-06-11 +55aeac4ca0a69b9b5d85b57eaaa2bfb3.png 1901-03-14 +503c196a8533c504a74a796aad9c1594.png 1902-04-23 +d26215e3dc9b6e4e476143a9ac6534f7.png 1913-03-23 +022d42f280278c804f835dfc90e63dc0.png 1899-11-25 +2d6dd8a84945f1d37da31bdaa24af3a5.png 1917-11-01 +2e554868e0c90da7b285a25e73c477f5.png 1892-07-14 +93afb4a10550e713631db1b9dfae875e.png 1917-11-19 +0b57313da955d0659c45b347a714a33c.png 1889-02-23 +446390d9915158794eda8deb38d09d0d.png 1899-01-20 +671c92db63ae6acd3b34537e4a83d5ba.png 1919-10-10 +c3e4d4cb76c3c173bc824a1c9e6a1547.png 1900-10-30 +7f16c42027ea873b40e9dddd3a80f857.png 1900-09-27 +8573681cca2c6902b5c4c040a344728f.png 1915-02-06 +c44e8ecfcfaae919801aae2e100c3a4c.png 1900-12-05 +0dbbf3080aa038568d662535b1da4c87.png 1910-12-08 +c4753f08820a63ce23bef0a2966c8019.png 1900-04-13 +a1eda1097eebafa368893af819cfb138.png 1902-01-07 +3e3c0ed206c0bf6059201e5c53c06ca5.png 1911-12-14 +3630b4b275737bd0e4b931f5ebf43c53.png 1909-09-16 +d03996ca1400c5d8b69e3d8be3ed3750.png 1914-01-09 +aa387eb9e8a8304c437ea85632635401.png 1910-06-14 +781bf82a2c036cf287c8995fa1f43684.png 1899-07-27 +234abf033138a90e1ab6d3fb63ad04ef.png 1908-04-23 +619c863b97b31f97b5f0e9bc05728033.png 1909-10-26 +e899302225b2d63a4cc82f44cea2d1e6.png 1898-12-17 +cf5bb699688a4baecd2da3748436011b.png 1921-03-06 +0c5d3ea140692205e49ef519b017058d.png 1915-09-20 +c13b3587d4da9bc5f7726032d24601ca.png 1899-10-10 +99928f4f0cdb7279a1251c40b09b15d4.png 1887-09-29 +f9d378b6bbd2de2ffd0b5d80149265d8.png 1920-12-02 +21d0e5d798bc8295150503e7562b7c56.png 1903-02-28 +2dc664f82e5f84d7e0e0047f6bb4dcbd.png 1904-08-08 +1e866cd77cf868bf39d583ec5acde454.png 1919-12-12 +3827ed545812ee82b66b135dabf1363a.png 1864-06-17 +8e795f913163d872cf372ff08af77256.png 1911-05-18 +16a63b5a848bbf41b4549ccd5823eab8.png 1891-08-05 +d5674e9ef8ace2ce6b1af5bab5881728.png 1878-11-09 +f4a2d92e2621b0532c6952cf4bebbfda.png 1915-02-16 +23d2bf9efc5e5f49167eb343474df1e7.png 1896-08-29 +7ffe97b28129a27ed7b69347af55fd99.png 1889-10-16 +aadbfdbc4a2326d80d08e834ec48724f.png 1910-02-02 +dc09b961d8a86cb60aa051738c6b6e7d.png 1891-03-28 +f5e30e5d1efa1be1212889b0229e0dc8.png 1904-11-18 +25f9971f34a2526e8d53e90fa3d50631.png 1898-02-12 +67556af1327850decab5751cd72ade25.png 1903-12-22 +6100f81b2165a41b6f9c83d515822f54.png 1864-06-10 +d89c679bd625c3bd73fa7e8f35b47008.png 1899-07-15 +8b07f7a9a45f08a26b96874f4789fc8f.png 1894-10-26 +e79c286b8c3bccc3c36df3eb3fde1e9b.png 1910-05-04 +ec1bb3b1318350544cf0aa82c14c3670.png 1904-07-15 +a2362c576344b7f9b9318d8575334045.png 1915-06-23 +e9d6346bd958b623aabe18e713966e22.png 1911-03-02 +dd91d11274697b23bc1bac61a2afc9da.png 1902-08-07 +3d860ebd3226f368341feb898f588459.png 1908-05-11 +745dc06709d905cb154048b35c242f6e.png 1899-12-31 +360f1dc46836dc31487537e955d8db7f.png 1882-05-19 +19151cd7c7c089565a7c00333cb438b5.png 1913-05-01 +d385b8dbbd3c3777643f92819585b487.png 1898-09-01 +aeb40b1c376931c494bd226cdcf6f122.png 1919-06-05 +6ff40a3bdbdded070a1dd7e8121b9312.png 1918-07-29 +a4b23271f377123b92556ce185de1cca.png 1898-08-11 +fa0a4dd6e01fed6638b3465e5a7d20c6.png 1914-07-30 +2611234dff9e2855d96ef21a8b8ec7e6.png 1906-05-18 +4147ff7ad03590857b15f03710bbde27.png 1922-04-10 +f6ef9ac60893f5150d39d5bbbb27588c.png 1901-03-08 +b855ed51e436c9496c6bfc9e185a7420.png 1907-11-16 +7687f9ee11cdca037536e01fe1e3cd1c.png 1915-04-12 +5ac759ff77f280cf4ffc49802ac07f7c.png 1899-01-21 +a7988ff70534676e2e28ba67e91d8436.png 1916-04-21 +8d8552d3098136dc90d91e359cbc91c6.png 1892-03-16 +6a8ae2984048807143094aa7018d944e.png 1903-12-23 +082e476da541f54d1574ae41c7f5a7fc.png 1898-02-24 +d60aceab9c16ee5866abd67a49b8f105.png 1903-10-17 +849e0baf921293c2b18bdf4c1ad5296c.png 1904-01-15 +c00672dbcc97e67bb0c6921c4f2cab3d.png 1912-11-01 +4b0e6f4ce8d22a8a38f839dddab9cb43.png 1898-05-13 +7521238e7b5f8aa47848192a83a42a22.png 1900-05-27 +3571511db8665236cce1d70f920ebeeb.png 1890-08-14 +0790f6a6a99bfa4472bd9828bc9a06d2.png 1865-10-31 +8775b389355974d134a0f10aeaeeace2.png 1916-11-29 +a1f9257199f3cca371a15e408b6764c2.png 1901-09-06 +0a331ace330993746bc30b496f966d76.png 1888-05-23 +6aa7bd4eb7e9b9a42fe4e7e763eeb39c.png 1903-07-31 +2610fcc226514029cd43ce8e36b32ccb.png 1888-11-03 +755dac69818530d7c293430d55d05ddc.png 1909-02-08 +c9e6f3120a2bfc3437575bfe302519d4.png 1917-02-01 +6604d7fa0c646d7b53a8e8194374107e.png 1908-11-12 +c80e7a6b924b72121d2538bf7f7d4016.png 1909-09-22 +b93198ab17a144b00e8c08ae63285605.png 1904-09-29 +45064320d2ddfef59f7cc4ffcf488820.png 1899-10-11 +992eb07e06e145b22b12cc7eb228de3f.png 1911-01-18 +3c965351269b0bc79da2e2fae9cd5d7a.png 1909-08-12 +bf25a1c3bd67e4f667eed31e17fedc8a.png 1900-10-18 +2fca16fb7a914477597b78f46cc826dd.png 1901-02-14 +ca3fb1641cc31b6a4ff32fbe10916f6e.png 1919-07-26 +a81381d071d84bce5e260023ca981ae8.png 1905-09-30 +54640132a868dbd30361bcaf2536d1d9.png 1904-12-27 +a51a22890b81a29bda2be921c430070b.png 1865-08-17 +11ab817307d85d1645ac995e0fbc1a0e.png 1912-12-01 +750f3c27e40e6ac3e21e8760930f6296.png 1917-05-02 +296ccb254cad97fcddb57678ccc2089a.png 1903-08-18 +7c106edce58b03b2335757c047b5bf3f.png 1898-07-31 +c6a48f7c3efeff4d409f2637b5c73dae.png 1908-02-20 +bab45bfe0c53417191bd00bc432654dc.png 1903-07-06 +c015e59ccddedd4e59923b1b13230420.png 1909-07-07 +c241573a2c446259311dbda4e31019fd.png 1886-01-16 +833f8e9bef72da631d9fc4b7f254751a.png 1891-08-30 +c4dd639a20745045f123cebda3e81089.png 1913-02-18 +9732639b44d9b933ba7c19863bfa2ecf.png 1919-05-10 +f16b1839ddba64a8e0db9c2aba16605e.png 1904-07-02 +95c147df424a1e81ea537bf1d18ab5c0.png 1854-01-14 +949cf5ffaa17abbc1179ecf198b36703.png 1920-04-06 +3f7ed2928c1e7510ebb709e07b4fd598.png 1914-12-23 +403350c84061ea66546fb2d57855cdf1.png 1917-12-15 +918648397dc3394e9128f26ff3c44c36.png 1912-02-22 +8c8b03b176c272ce28fab52e7530d933.png 1914-05-10 +8a5d96c318d881d83399718e64670650.png 1910-08-23 +fc6f214735c71e4fcab1e9c79dfa089e.png 1904-10-01 +4060608c4d23590e8a8e1bf4785d04f5.png 1890-12-16 +4995fc1b1b0cecdc0124caf58e769c07.png 1900-04-21 +992ef11c08ef9d1f82a4357927d9aa87.png 1905-02-09 +dd2925f2a976252435e311789890d5dd.png 1900-07-28 +81377014e05e7ec5c09209bcd7708acb.png 1888-09-20 +4995adcc49557b66ac62276dc08374c7.png 1912-07-16 +8d556f5bc81de7a2c27ebee1118a5008.png 1906-01-31 +b3c4a23a8d216afe18e0e8e6311a7fb4.png 1915-06-04 +fe6d0b2042fb59e72b17c032550be08b.png 1909-02-02 +f6d15c63f418fab4bca60eeb7a3ca720.png 1899-11-09 +d49407b2e263b8ee1da65bd4ec2b8435.png 1904-07-14 +055dd6c808d904e2568d29876ddbb24d.png 1900-04-05 +f05b0b3a0616e9af846fea5b3519db3a.png 1898-06-03 +207e1f404c63363d84b5de00c6232fb3.png 1901-09-25 +5d7da145eabb352ace1f5ab3242a91c2.png 1916-10-24 +55a7ce31156923a474cf7b9cbf6c001c.png 1914-04-12 +6167c56bcaa71fc12a312066aa0340fd.png 1900-07-09 +12a4a5ad8c15c3f0552aba98b9dbd2cd.png 1900-07-06 +eaa591e111fff000a03538ff42cf4210.png 1900-01-17 +79c705696cb4804b3db76e1fc4c677a4.png 1888-03-29 +383c0cbc5bc097dd1cdf9d9ccbea584e.png 1858-07-02 +6816c756f145aeb53e56b96c02fdbd7e.png 1904-09-08 +9df429389feacafbda3f58768ad2516f.png 1899-03-20 +bc04d79eb59858f747730507b3a1aee7.png 1907-09-26 +c66a0adb81219d95e6923470c4c826fb.png 1920-05-13 +59d2f6922d47fb5956a0c2f5eca1e123.png 1854-04-28 +1b146d14b9bcce48934a5912680f2e23.png 1904-12-20 +3052fe6e568375ba4dfad4db66a56db1.png 1887-11-09 +eeb72079952f48cb542756788b7a186d.png 1910-08-23 +15b5a383e19d8b5015a4806753def3c6.png 1904-02-10 +b55257d2bd63ddddd6b07631c88cc97a.png 1888-09-01 +e4cde46f29ed7bdbe672adcf1743b314.png 1886-09-22 +384d9a737658bd9ae4dc43eb7c741ab6.png 1898-05-20 +cf128dbb147990dbcca4b3bc5fa5ab04.png 1911-04-02 +e80886124cbad55142bb17117eec10de.png 1897-08-27 +7ecc66eff8cb86858b3ae90246fde2b0.png 1916-03-30 +ce2b497807ccd27bab66dd09b76da391.png 1912-03-28 +b2c3d57a2ae2ba91c2be2695af98672a.png 1904-04-30 +e488f5e51497b8bf85f95fe49328d956.png 1905-02-01 +145ab8d85c7aac4e91c1d1b97390fe1e.png 1904-04-30 +876f13be0d83cc76200b0d8f1c4d7db8.png 1914-04-17 +714bf74b959cf3f9bd88280cf1510a21.png 1902-11-14 +2f8f7f9eb747d8a2a50dd5f60ab6a3c7.png 1921-07-18 +0e52ccb3176b8efd07b90dcef372b7b6.png 1897-01-15 +8ceb8f2ef7d390923cbc25e4036232ad.png 1890-02-20 +45a45c745a94075f0e8e996b6f03804b.png 1907-12-07 +5f178f82dff1a9d10b596db052a52561.png 1913-10-31 +3bf9500fbb8727b76e15198d053d241c.png 1901-11-09 +0f956126d501153f68d216c13e6812a5.png 1865-07-25 +d27adb0504b635cd6dbb5892eca40905.png 1862-10-10 +41707a5190cd4656450daacd5649f3c0.png 1899-11-04 +353a7c81573e92182edff868cdc1b0c6.png 1912-09-27 +308e520a8989ffeaab068e8dc7a5f0b7.png 1909-02-10 +57286ca9dd1f47197fe7a7135f88e559.png 1900-01-08 +bcb3345096207a3149cdc165ea848e1e.png 1908-09-10 +7bfd23f20624a7ca61264b2242207c82.png 1900-01-09 +cb91efa8b8c6e8e5ab1faea804c5d31f.png 1904-07-12 +53b6860e68e7fd4920fdbffc132b500a.png 1920-03-18 +b658fae322b35a4c07ac4f8562974755.png 1899-04-15 +171fcf2211f6dc09fe9e8af459709549.png 1899-05-31 +cc53c78223b6bfcf5e1dcc8555252c54.png 1920-04-10 +39d2ad1c1d8f9cacc2a6d061ab1e5e76.png 1921-05-21 +f012b78583149f2e6c5f188c534e0f51.png 1911-11-19 +661d798ca718c8f486a09bc96ca3fdc3.png 1885-03-01 +a4ca7911ddb8b10944dc918217c4c79a.png 1918-02-23 +83fba10098a1c8400142e4eb91b4485b.png 1920-05-19 +a2425ae29b7473025b345e918079579d.png 1885-07-23 +ad9526e698639009de0c02cf2de42334.png 1903-07-09 +fbc14dcabac4a87844ab31c5ac98e528.png 1905-04-17 +699f15d787d0fef52f71890c9e0192cf.png 1909-12-24 +dbede6da8dd5148399ce1ea84a5b84f8.png 1885-11-12 +29393161479dfb9d8b71ce28b8da4b13.png 1897-09-24 +1a617f424d03fc73ad658fcd4f6d8b1f.png 1894-01-11 +70d75dc8b9a6b7adce68854074ca8325.png 1898-07-25 +1555ed37768145dd41c8465283c2a8a1.png 1903-02-03 +6db4329f06e6cc699ff80fcceeed6e9b.png 1900-11-21 +4dacec9b9992b4a1f467f9a46fd728d1.png 1889-12-18 +dd236debab134d30727823893a6e59e8.png 1921-05-31 +937a0214b5c00c2903158a3dcca543c9.png 1903-05-14 +ccc5d2211f51abe22d2b7f078e610e05.png 1919-12-05 +0e4e793299754b21e9488130e569c844.png 1889-03-09 +dcf45e454217019017d3aac3b5bcdfbb.png 1890-10-28 +f6a3894046c527321804b300cf76bd88.png 1920-04-23 +7bf5eb5c789a41b5c5263e3b0c7ea303.png 1898-12-15 +9f12c9826172a385461a29448658c31e.png 1911-04-20 +299de528b2adfc0a371311e96fa3e143.png 1901-07-02 +bea95b18b35a64dab4ec2b11a13a03be.png 1914-10-19 +01127bca6c498e8be8873ba9e829f9e4.png 1888-03-08 +ea77a94fe07d66ce3876a0f74e00ed65.png 1901-06-27 +9ef184e59be6e5661390c95890d5a0d9.png 1913-08-21 +19ca46c7d80f5de5b2430823572ed9a4.png 1913-07-10 +55d15f4fc85b38ac93fc07907916230e.png 1897-06-10 +06ec470501fa315bc2493fbb79921cc9.png 1900-11-26 +442b49e37ec484527ef4ff2960f2f875.png 1875-03-12 +b4b86d955125b764cb41bbd93a5c8138.png 1889-11-26 +571272ca1dcf4ed1bb0319336f669644.png 1912-11-05 +eeed8dd4cf39f17f0b0123f71502fd7c.png 1917-12-19 +db3e702f3bfd18dab947ba0a7219b65a.png 1922-09-20 +ed41cf052dd0651d8b20d5d42c3f1184.png 1906-09-20 +7999816ae3d1232195144ec62ee6d3ef.png 1901-06-23 +a76c0068a4b07ad1bc44e5ffbd7fb5ab.png 1897-05-27 +1849e561a103218e8f434e77d666e10e.png 1899-03-07 +0aba4c11933e4dac637dcf7d807bce0e.png 1911-08-11 +76754854d1f192a040df90165ace5eba.png 1912-03-21 +14c6cc565437edac61ed7ddc6b635e26.png 1906-08-16 +978edf8a12c7e92193ab482e7fb943c5.png 1891-12-24 +5094f5e6d840dd61c6bb31c18687a238.png 1919-01-11 +5a05aa4f6cc062eb831251f8eea02977.png 1902-01-15 +265bb9555f38325fc24fe28528524d89.png 1881-07-21 +043997d181a1b4be9b2489ec06f4d7f9.png 1918-03-05 +4ea63eb58d117ae392130675b31356db.png 1903-08-21 +51564722df537d8e96f645f80f3ff6ee.png 1897-04-02 +87c2a02ba4f8c9c01ae541503bf4402d.png 1900-07-12 +0231c0bf5ce81d4d5b7a11a221561d50.png 1910-11-10 +79abcbee1df6fa1f9f1553caf1cf6c36.png 1917-04-16 +17deeb1f6ba6bb75ca7be482b6309fab.png 1912-04-23 +6b008dd22340493b5ea48536a5cacb6a.png 1920-07-21 +d5f15ed4aa937b61f1bf105d9595539f.png 1885-10-01 +9c37728b45e489217540f7546d9b005d.png 1914-09-14 +8912f1adcb3d0899dd6eab7746667f2d.png 1904-08-27 +44cbb857ee9c0b59b7be6b87286110f7.png 1884-05-01 +91d2a2340d7f1c3feff0459229824a28.png 1909-03-26 +5bf20166957041c06698c5142665baca.png 1922-09-15 +d7c1d0f05400b80dbbccf762d5662af1.png 1910-03-31 +abd54c3d3ff239aaf4730eea038275a6.png 1891-03-05 +f329e7b45ed4f6bc832389e8ff9e5564.png 1919-04-30 +cdff2d04af0cbe18058394700f536bbe.png 1898-12-22 +87a5a427048cb6fd1f22a0d574d69f7f.png 1902-09-27 +c73a8b1664c1c01e13dc7dc576a8effa.png 1911-09-13 +10f5f90bb7a29c6cdd007c58318fb642.png 1885-11-05 +d3f1cd0287929d866aa48a24ee618a2c.png 1902-10-10 +9483ae370a6f18dce3cc5607ddfa6324.png 1901-08-22 +a705f8d9bb6902c1d1a9fce98f1b5f3b.png 1915-04-15 +8d6dfffcc2a19558265076c143b84515.png 1884-03-01 +9a43efcb64ffee34e181c8b24a58f1ae.png 1911-08-29 +e7a538a9aa29725bdd2547bef150d069.png 1903-06-17 +b66ace992c8ea84c422833be311e12a2.png 1900-11-28 +4959f2488ce02ad917ae60db11bae121.png 1914-11-13 +f32f9f647207f0725e426c1003f67b27.png 1887-05-28 +24b65ce939315d743c4d5872d296033e.png 1912-06-06 +af8d0e34d39d1e4cb6195b2f57826ef4.png 1904-09-03 +8869919146244b7621c55d00734df203.png 1921-02-22 +3f1379d9e4cd6f8eec3c26b3da56da03.png 1898-11-19 +9bfc1a821beef0b52011a508d0ea9584.png 1901-07-03 +376978712f68bf5516e2d73c9240ccd0.png 1918-07-09 +eafff0a7e65c03774e7c459b9e4b5b77.png 1907-08-08 +430f6ce3167c33a0d1e40a40932d0d21.png 1904-12-16 +f680cb80f00401e703ea9d9d3f6d8c13.png 1915-11-15 +76b35b9acb4341af01f3720f22aeef4b.png 1907-11-29 +43a7e16edea4be2c5ef19269afdd057a.png 1906-05-05 +ab8635b9d90ad7c7eac518b291b0b143.png 1897-03-20 +54b819e13033bdf6a1540e18c114560d.png 1906-07-17 +1d73feab7ae0980490f08ffdfa920bdb.png 1909-12-18 +76bd88b21bb36c25e4751da4068ece87.png 1893-11-18 +15cda9757ba0b48f53394ee770a995d0.png 1903-07-23 +532f5cab6a515199dc0c387e2334ba86.png 1921-06-14 +747482b6e1202c33e38db26f6cf1100f.png 1876-02-25 +cd571181aab72d625e4771e40f8aebb1.png 1857-04-24 +33cdff3f89ace03347d9965d1c5e1638.png 1908-08-19 +6ef59186da3bb4dbdc2ab22e0ce2d7a8.png 1907-09-25 +d1a8b9aff2efdb50ffcbdb65d0e4c4fd.png 1913-08-18 +f29c1dc6894c46146b2abf503ac290ec.png 1895-06-22 +db58714db864082d2a09a1011303af17.png 1888-01-17 +dae0aea813408596a07b72894aacb25b.png 1878-06-22 +89dc7a3eb4ac32ff77a41c2afcf20cd6.png 1912-07-11 +05c379fad2622dabd4aa767c9faf7ca4.png 1902-07-31 +66366a9c41bd7c58c6c10f832627fc22.png 1864-05-13 +c77fa5971b7bdb318f1681d1ba17c1bd.png 1909-07-17 +322b138f657aedd721a1bba2d58a9e24.png 1883-03-15 +4b6786330270d0e224239c06e7dfe596.png 1903-12-22 +2e6b22dcfd2c6d2f71df1d4791e375b4.png 1909-01-14 +3d4f00f07674ad763804fdfae6f670ea.png 1890-11-14 +88f6e7ef78c48353f2564e42a361dbd2.png 1898-01-21 +4e32723d52f92d5565d1910c6ce592fb.png 1896-11-03 +7baef5f51cfabf7d971058e429a9a671.png 1907-10-03 +3790fce9e408890b41e6984f5ca1ac7f.png 1899-02-20 +a748c02b5dfada09ddcd5203c476d224.png 1908-09-18 +1a257ed4f62eefb583db6840060bb431.png 1909-12-22 +d9efafed245ba2177fa5c7fbdd8dfac1.png 1919-12-06 +26e319b070839ce2520b17c71c968942.png 1895-06-07 +a77ba7b27fd923120f91e0d853885087.png 1917-04-25 +752f28c84527d2b54077805e929c2870.png 1892-12-09 +bdb05e3024e8e4d75e6fc896f36de138.png 1908-11-19 +237ce58641a914efd647ccb0e6005e3d.png 1886-02-11 +509efc0444790659c3cb63b161ba7667.png 1909-06-23 +eefe7d034b8d0ccfaf39ef24d55336aa.png 1903-12-30 +74f3e8102a4271cebc42a935b70d3008.png 1910-10-07 +303f1dd56849e2f1c622376f3325c178.png 1864-06-30 +a4f69bed7c6a0e02c465480de6dbcd4a.png 1910-02-10 +a4512afc7c3eec74cb772ac85a47bf5c.png 1920-07-08 +efd5abc3e09a1b886d7ad253b94fb563.png 1903-10-03 +27792558b619c2cf56fd99246fe6e853.png 1903-10-09 +76766f8be03258b8f990b57bdfea4b52.png 1884-03-05 +bd995d8526f6a6880db6726d497f5439.png 1903-10-07 +222f4859ad26e6ad1ed7372ec61fe27c.png 1919-04-24 +3de359ffa814b85d26b0c56a16350996.png 1907-02-28 +e7a9ab74f8ffc8103e8e1e421bafe07a.png 1888-02-07 +05548162ab4aead6ef942edddaff5094.png 1912-11-21 +2c0c7dc9e8e072fc9f29c58ca47d4e83.png 1886-08-05 +d70a6c4296fbc2623cbc938ba83be4db.png 1908-06-05 +7642c732ebd56b70900d1513008e4c8a.png 1914-12-10 +e73883c4e7e91e2fd1c5d59d0edf684b.png 1918-08-16 +adfba4225059c42642935621393dde68.png 1901-10-22 +22195e0dcc31638df8783b4d15a6c1d9.png 1913-01-31 +9292087c0d28a62ed58d7b2a8258ef2f.png 1873-12-19 +56d7f51ba6344b90a1f41ce1272ee074.png 1903-10-13 +757d021da54915ea4ccb54eac6f5faa8.png 1913-06-24 +0508e25af90edb21748e512259596f7f.png 1921-01-29 +28b4acf3cc8f1a010e5357531df7975b.png 1913-03-11 +e386a02f37bf1196f20dd07f037ef6d3.png 1899-05-31 +fbb1cf598f6b34ff506ebfb12f1dfd12.png 1911-12-21 +4eea17d01a6888e3ec5d71ec1da33d86.png 1900-08-06 +fcb7abf005a514de9e3d3483d0e06452.png 1888-05-08 +b20f551ce7079367f2fe85df57bfa100.png 1888-06-22 +7ebb114cb7f0cdbccc074a0e9068285f.png 1892-03-11 +653e93ecc683577da279944f64912c2f.png 1913-01-14 +80347a2cd2207986aa377a47dcdae3be.png 1908-06-09 +e53af1f99fdea65ab964a7f768416d30.png 1915-07-14 +1d135bd2f640bdc50b82a2eb125805ba.png 1904-11-03 +b6ffbddf7c6c79b1189cd019c58c30fa.png 1898-02-24 +f34fe7b95ee23b2bbcb0fcea72e23b3c.png 1905-05-12 +71a3dfa9cdb7c06160d913885edae377.png 1894-04-19 +8c958a2d495c5256e67c5c7741e8d2a7.png 1893-02-11 +108e008aae7c27491b2034fb089fe3a8.png 1882-01-13 +8595129e5d29c6b1a38506da7550df33.png 1912-12-15 +441e6521a0316f866ca6be875dafab28.png 1909-09-11 +0ffefa1716c92f89bf3de3083930fe59.png 1853-11-19 +f16d8e5496d36ff5ded214ee432813e2.png 1898-01-02 +1999e92c38ef530992bab47dd4bf4543.png 1907-12-24 +adabac46b1755c4f1ba5ae3a442af1c4.png 1886-07-01 +ee4fea134aa3c751f0274a9a4cddb878.png 1922-05-02 +15e070527297f3e9725b6457a66bc207.png 1913-04-05 +8712ab9817043db7d3a62632d5d9dc7f.png 1900-04-02 +5c4cc648fc06353bdfa4c8259ac54855.png 1897-10-25 +bbecf0719a4767d327f955167958b851.png 1896-05-21 +30fea0d8fc6cca66f8820104363b2ca9.png 1907-05-24 +227973560710b0cac72fdfaf0ff6604d.png 1914-10-15 +492dea5fd4f358d7bd628187153f6e7c.png 1920-03-23 +6d748c3ff0af35e6d940d8b5f182663b.png 1857-11-27 +b3c9e1f597cb7902acb3592ca978511b.png 1891-09-27 +9cfea817de800415fea03c99de8dca62.png 1859-04-29 +c17a8c103630b7e76e7e35312fbfa117.png 1910-10-26 +aaff764bfd67b0115d68db7778a7da80.png 1922-09-28 +9f8fa13a00054443a302fa9f2513d58c.png 1904-05-11 +7050205a6b1cb39ec79d4b5fe31849d6.png 1898-05-19 +4a1c3691e573e7c765f5e3d74f4d1a06.png 1887-09-13 +956998e738e4cefd90427b5506a2ec0e.png 1892-06-24 +07d7ab62e738526fb530650a3ef77e1b.png 1909-03-10 +324d249a46ef49ceb01a559b4ac41668.png 1895-07-06 +7d5835c1270b6312a19ed3b8e33df754.png 1919-05-04 +021a3b64e69566e3c9b466a2fa729cbe.png 1898-08-04 +d54e034d44add4f61c67e34a1919c35b.png 1917-04-27 +71f527abc14d0c7e7cd191ba8313dcd5.png 1918-03-27 +a3d4e731464b86e8d2f0b180372cd8fe.png 1910-11-24 +50769cc8b5d5436a5f3e8f1aa19a51d2.png 1910-06-18 +a4bfbce26243102da4ab4df493b8dac0.png 1900-06-23 +d3e646e0f22c8cfc93fb6c26cba3fd61.png 1878-07-06 +19d9baa2659edec18eb71a793bbbe26e.png 1920-02-16 +1ae3db13ecd0d7f951c4374cda322715.png 1904-12-20 +eb156c74495fd59ce824f4f9a466ee3c.png 1907-09-03 +75d5f314a082f272381ac1001783bbb7.png 1865-05-19 +d51e13ba89203f75debf7df74f80f847.png 1903-09-12 +189be7dc15176f336163e2d260100f63.png 1904-08-13 +19a6651929e8cf4ae57649cb99dcb942.png 1918-08-26 +7524d79fe56f48bc58755ade4b80e832.png 1894-04-21 +b35e26cf4b40a3884f113d23c6a6cc0c.png 1892-05-19 +598fcd8e1c9122284b84323f2c9d70a9.png 1864-05-25 +f3960fa216fb920b7b21e9fd69c53880.png 1863-09-25 +47a26d9573b293f22aeea08931551797.png 1907-08-16 +06c7fd8b4b2d6038b56d3d6eb1f97bc7.png 1887-04-16 +4e6a7c10d294a058bfa0af3a6ab07072.png 1920-07-15 +2e181165abe57b94e218521add87be02.png 1907-09-03 +223de41189d98908f0f1f7dd88ff20bc.png 1908-11-06 +4e9486d1afa42dc0aec6fda29bd24db9.png 1857-11-20 +54489bb4cba8bb8c83f33f30b81230a3.png 1913-03-29 +74bd21e471fef762c3e38c991f4f6a92.png 1898-06-11 +ebb5cdb6dbe4b09b79d7264d7f0ec5c6.png 1896-09-23 +cd970dcfa56588816067f0e102f4bad5.png 1888-12-20 +0eb4a8c43c8b5e3c7f92f58d89d8e07b.png 1913-10-27 +b01ae9373c1782d4c4037822d5c9dd2c.png 1904-12-14 +42e46de012bf5d6ea3918a4400d9c221.png 1922-11-24 +47a70115667103a74b43c9afbc1ead9b.png 1896-02-01 +f837e235ac72c8bef95963456ae1745f.png 1910-09-17 +62a3d780b50cd4bd98ceca075cd327b0.png 1911-04-27 +802fc2e8d8a595c1c4510d03dd89cfd0.png 1884-12-11 +38e02fd4afcf2f1e901c0b286dab32e4.png 1909-12-04 +d37da9c66689a8575ead0b49f0779bae.png 1865-02-17 +9531c1eebba71da6db7084dfadd22aee.png 1900-08-16 +f28c35709088907e7ec5b3b400785c67.png 1910-04-14 +403b95210b5916efdbf6cf5775a7e5ae.png 1913-09-24 +ec8939f43b602b9d90c64b88b1313f13.png 1899-06-01 +d348fed5b5e4249721071c8c688bea9c.png 1915-01-19 +9f58da62ed9bb686ab1ea5d1387672ad.png 1897-02-22 +b3270b3a2c3dcfc7b7a51a9c053d8bf2.png 1913-09-11 +13e4f4fc99d73e0c7daa615823f32443.png 1905-10-19 +5890d9073da2afb2755b1505608c31a8.png 1901-11-15 +c560a9a1c4a6f19a9f36009b4cf6cd44.png 1898-04-12 +b19bff2d7bff448518d0cc4d251d9b1b.png 1912-06-06 +e0b4960440fe4d4cdeeed53a9a595300.png 1913-11-30 +7e967d6bc949a0f6d291c13926309eee.png 1908-05-01 +903945227eb3bb74a20b8813537979a7.png 1864-05-06 +bf3566a936af39b1f5ab326341ed122c.png 1912-10-03 +9d0c0cd3ec30a5cba5ece9152b3e2d7c.png 1863-10-16 +a6bce5133f0639e7b50f88f68d1ccb26.png 1898-05-31 +35f157589cd0b456c413a187d6be13e2.png 1910-03-21 +70a320ed4adee88e46d295053026a667.png 1921-01-25 +b6de69c2de31e1118290f4bb72ab3938.png 1887-01-27 +fabe45d3d8cc91aa25e2a4973a83b91e.png 1900-12-08 +fb9dd63cc6f15a1c93407305c38b40fa.png 1906-09-19 +2e535a935a5a873568c444dd4f4793b2.png 1897-09-30 +cbf6ee22f091d8037418103db026b21b.png 1909-11-04 +0a7a5242337a293a1d9c09714bf06bda.png 1913-04-21 +f9cb0790b4ff3d0d18bc127e774aeccd.png 1914-08-02 +f557e041a8392011de2c6e8fecd3fbf7.png 1905-11-22 +f6b43a54997e9bb6ad675539f2b42d4e.png 1903-05-12 +6ff598141a5abef61f70c4d2ccbfb26b.png 1894-12-30 +a3ebe144befe1457a584692f156a3fce.png 1916-10-25 +b4bb86ace9aa340fa61a9f9563df9f67.png 1913-05-29 +cff85ede1f32b39f2f9085b97a3cca22.png 1906-12-13 +5428dfd2a1bc2cf4e60b8a77e899d403.png 1899-09-13 +acb11cf7a3515258f2ac9437dc6a2570.png 1885-08-08 +76a9d201d897bcb1ea6ee9f4e6606509.png 1903-04-22 +e321134439af5924b418d9bf01904f10.png 1882-09-14 +5089a4e906b33a7c51a401ffabd83287.png 1910-04-02 +ed561481dd209e6b572ed93dfdfb8fc8.png 1910-02-18 +56efd3683e6f0423170791349cbe16c3.png 1902-04-09 +65aef865db38ce8b72a19ac6479da737.png 1897-04-29 +5e44e8bce353297dfdeac12f8ce2160e.png 1922-03-11 +49c978c5b3186e2b65c486c4e253fbb6.png 1889-08-29 +3a1ff65dde5808bf4fd091281cc4bde3.png 1901-10-25 +8f01b2e15d5bcf5a8abb837bf8e5f325.png 1899-01-14 +28741b0e40097d1b175466e6c77f1f12.png 1913-04-22 +7ad07afd6d9455c656a14dd103a19daa.png 1921-08-19 +c4b49758b995e26c3f01a247667f34b2.png 1909-05-28 +cdfb1ee26a74f9261f1a53886d2be4ce.png 1904-10-25 +dea5c4f77c92b5ef81bb341d1f7e5c09.png 1907-11-02 +63cbfcaf4da732a33ce4060a3246fef9.png 1913-10-16 +22bf5251caba2a97e8aa5f40a11cfd9b.png 1884-10-23 +02ecf9aca193170b5b08fd66d0bac28f.png 1919-07-08 +f87894f8358924a6167350ecf6904d8c.png 1895-04-25 +e58bc462700a37f96b311804ccbefaaf.png 1912-05-15 +b15a062ab213c35e54f00d9a693cc150.png 1898-01-11 +9a7af221adf72b7c48dffc5544c293c1.png 1913-05-02 +128f9abe1703c4c57dc7e1d7bbf0b68e.png 1891-02-28 +726ad38fa299d221c716d8136dde364e.png 1901-03-12 +8b2bd58ea7fed007f7aaffee8bca69a1.png 1913-08-15 +5207ce1f2e629d24232e3b7780b369f1.png 1904-03-29 +3ed0c303b8bb8a70ae85e863a0b9413a.png 1897-09-06 +5c6a5287da0e45a1b36645dab4ac9521.png 1905-02-15 +e576cd99fb5050aefea5406820e764a8.png 1902-08-26 +edc56aedf7edf7525fd8743330359a3c.png 1861-05-03 +9114f8737c673ebf2ebdcd2b5728a68b.png 1908-09-08 +bed15e67d938327285947588bd3b239e.png 1904-04-15 +8215127f78514b98d8d47149cc53bf73.png 1901-05-11 +6a1211b2ea48880d1f332a732ef3ee4f.png 1899-11-18 +63e915177f06e1c7f93a1fd3271834b2.png 1921-12-30 +e0ecb64f3baa254b8f41f55bf848ae6a.png 1902-11-14 +360c87daeda412ac43962a50bce47ce6.png 1915-07-05 +03be0461cdfd2cde2dca8cf892a61f10.png 1901-01-28 +525f265464c8f02703c87823a568205a.png 1916-06-23 +c9a85ad84fa6bb1ce811ba6cdd9805ee.png 1898-04-13 +adbde62e41dffff77bafeb38b4121b86.png 1918-05-28 +00569dfa3d012e179cdef228185402b2.png 1912-04-13 +1dc2a206a9d531a06c915b12a61ed729.png 1911-09-18 +37dbe150265b8e5eab99c3e5367921e8.png 1906-04-05 +c8b7781b98e54c521db8270460a31635.png 1890-01-02 +0cad33eb5900be3e9932a40a2dd0c13e.png 1897-02-25 +31874a348a2c866af807c9d2aef66213.png 1888-05-19 +5750184ee935c56b0b016656ce33c25d.png 1922-10-06 +c6007559ec026855bd06032796e587bc.png 1865-04-26 +b2057b2db0ab062fc395c1e5be4aff49.png 1912-02-15 +13b7828f7e6589caf23977a4c414f0b6.png 1901-11-15 +77f1435557d3567160c56d10ccaeceb3.png 1896-10-03 +dbabd563a45efe72eabec736f064816d.png 1912-11-21 +6e0d85689a93e58fbd343225b5a75aae.png 1904-07-22 +ae5389e01b189940c66d3bcc743718ed.png 1909-08-01 +7fcf37854f8949243b19e8e17f7c6ed0.png 1900-07-22 +32cb003a73d362e5b6a6c1fc2fe0f976.png 1899-08-12 +116dd7a9134ea35b78f9f5b32c6e6c28.png 1908-04-28 +9f69d5119d0a80e6474fb1efa873b3b5.png 1900-09-04 +edf67a9440f478841685300827a41481.png 1911-08-01 +ed19c5222eebe7ee050bb388b6d755b7.png 1889-11-21 +190ac1bc86d0ac990ca84bc4b7976015.png 1918-02-06 +2921a51c4868b346a0fbd0055b8c89b5.png 1897-08-26 +9012f5cdbf10425fda67fb1106d30459.png 1899-04-19 +b707bf75cd88e903e190e83c9dc669d3.png 1897-06-22 +640f765e2798a7b32c279057ea4fbc19.png 1917-04-19 +cbee55cfd8bbc9723e5a6a185b0724fb.png 1872-03-21 +5e192f0256fe1b25caa66a4d6c0c9838.png 1921-11-08 +3993c70c97dc6916f9a556119e602727.png 1907-03-16 +aa1137e98c0fd4cb9abe9322c16f37eb.png 1903-02-26 +aabd10c986b8fc954c44432ba8cffe5c.png 1898-02-21 +a6b3a8463fc18ee66c20b238882c893a.png 1886-07-01 +e17ee0313141f88d454a2927d75a42c0.png 1909-07-19 +c1346d75aec75fddfda84d6d6eeedfeb.png 1907-12-24 +055ddc60b5bf59b04fb6937f8880c391.png 1922-05-01 +4c8315cbd51f9b8a72e74b18e7fb5578.png 1898-10-20 +9f709cbeec1b53871cc7db65f25279c3.png 1883-01-08 +7e6af78b6b4047c49e5b0433a6eb9121.png 1917-11-20 +a4fc4ae609f75bf53b355eeb811423d7.png 1917-10-26 +d1fbd07ad126b4ac610e2e48c48c9eb5.png 1863-07-09 +16364c7b4914cfa5d7ed6f69c320c378.png 1902-07-24 +5ff39372d9f1b78b5ef4623693b1466a.png 1904-12-23 +0db42a63ff637bf461ce71ce31c4e112.png 1914-06-20 +94421a245ee34d8aa1564eb7f1c6e855.png 1882-04-29 +681c67187105e50904ed3e46cfdc0ff7.png 1890-02-02 +57adba7d026ec382d1b4bf2f871f0579.png 1919-02-01 +6a5500392666ab2b5220da3fcd581a97.png 1905-12-05 +4e271dbb4bf439e71b9bd3981f2dc9a6.png 1920-08-28 +016a20e7abb7270574a0d42400687ac8.png 1902-06-12 +867e9bb25fde40a491242824a85ffcb0.png 1910-07-21 +564c1a9450db175a90831d6ed4e101b5.png 1901-06-24 +c2985b55a6a4f5b9e374e5fd8583c27c.png 1884-05-28 +8e820867ada47ebec8dae0d0390a5f4b.png 1907-04-14 +c36f21cdbcaa12d44bd5aaa07e7147e1.png 1896-12-22 +32d73bcf6ce2d15fdf26d39e3f9b3cd5.png 1919-04-05 +dd9849534c20aae31d3103703373aa1c.png 1913-09-25 +2bb77bd15b856bb8fba598152055468b.png 1904-10-07 +d438d0e17d228b86064d95f33af0faa3.png 1898-03-07 +ff6dbbf2b7ca00a0e7b1314d8f326732.png 1910-09-21 +3344467b699d9d9a819795598ffee860.png 1916-09-19 +1d9160acc9112cb7e3cf41f69958c827.png 1913-01-28 +4f2790f610f4fbdb42499ce8d34a1382.png 1905-12-28 +c00c3f52729f9d51d2dc1f80d2a0ea57.png 1922-01-16 +c14b26ab7d6e84d7b63a40f7f3249e08.png 1913-03-19 +bf0e554ef69ca85b6beafac73e1a3dde.png 1914-08-19 +9cfa1f6f5f68b7eda9486abd2658d8d3.png 1915-02-19 +2b86fbe8e60e0db50c14451facd3e20c.png 1921-04-06 +fbfaccb6f747edec5bd2bd55a2f91459.png 1903-04-30 +9c5b6a831e36a7240204ba3734917ba1.png 1910-01-13 +082440d6664d9ccd36fbe9c6ed506719.png 1887-09-12 +046f4a26181ca2c940391dc18220ac25.png 1905-07-25 +83ada83c9623f466910a5e4b6bfe4b1d.png 1915-09-24 +fb96e5dbac461a3c96420ee441d7441e.png 1912-12-12 +863faf631d735339eca2d9188548f2f4.png 1914-05-21 +ebff084ce3fd132eb6765b8b42ce3abc.png 1904-04-25 +d23b361b5e93f52280b32aaad6774504.png 1920-03-22 +743b60647a2a03b1ecbc986042cba9e6.png 1899-09-14 +7919c7f5f3f6636a886764e4da93ad69.png 1910-03-11 +80c091f9e14af753b9354aaefe9df43f.png 1917-07-31 +3387a3b1ee67768b7167a81db52f85d0.png 1914-04-20 +992c46091e39cb4f8d5f1c21cf159be2.png 1919-10-14 +c8f8ce6bf0bb51e2e3875eaf0478ff73.png 1916-04-22 +c3ca0f6273e17a7ccbfd28bbdf7919bf.png 1883-04-12 +fc48e18fa90fa62698b94b107c900e91.png 1910-07-13 +e7c7d9468072eeeb5de4ed1840a54350.png 1887-12-15 +3e5bc1142fff7e8d2efe570c8177fd72.png 1911-01-27 +d62f9ccf4009f7a578cb770a0c360a4f.png 1916-03-05 +1943cc92cb3b4c91a57e40eb18abe465.png 1906-04-19 +fef80a4d2baf8f15dd9eae8cdf5c06ca.png 1918-04-16 +674734c05967d087dca85aa50f9ed1b1.png 1915-06-23 +e9567601856e09533dff1d333a178e14.png 1920-06-29 +3456906dbcdfe2c275c52b592b7fb2d7.png 1908-05-22 +44b63313bd9f814d50fea903e04993cd.png 1912-02-28 +86a09943548ff5ce0210f5c67f6df65b.png 1909-11-11 +f804a1e9f8db3c86fce06b618422c190.png 1916-08-14 +152cd3feed766ca9c8704b5cdb99f3e5.png 1910-01-05 +1b28f4cce8062bf92437920f4e72c0bd.png 1904-12-02 +cdc9eed302a833da927825622431c8d2.png 1917-12-22 +6e6fab05184e2d478ed5f847f34b9af7.png 1865-06-09 +88efc056d65d8ffbf6cace8f1ce7bb71.png 1914-09-07 +2da9e6b0829d5058d5914b12b6f0b1a7.png 1915-12-11 +b354ec358736c9399f301ef957199862.png 1905-06-28 +8be4b9b428e340fe74e313d802f2f626.png 1920-07-31 +8d20a362b21e9c0a7567319104cbaf91.png 1904-01-01 +914b9790186529b53ae5ec1431070ded.png 1856-02-29 +ea1715c87520e25676a2c8d9f89c2ea2.png 1918-11-15 +d8b1b2891c7c8fc4c64f5e8f8d98353d.png 1907-07-16 +7bc2e5bbdaa9b1109b377a5325f691c9.png 1910-12-08 +a46fab2405d5d1e5ce747efd454b0d5c.png 1900-09-08 +e3fa96aa34f101559d722d3d5b6dafb8.png 1906-06-02 +03a84095dc6226ebf5c7993f8b3f93b8.png 1906-03-03 +efc6809cbc4d331f1b2c718f5805e333.png 1910-10-27 +a7d09fedbb484f1a7aa834b18bdadb88.png 1898-10-27 +a861bf53677391b4d4ccb411459fa263.png 1910-04-14 +c8d84b043791a61c4951e24707d0603a.png 1917-01-31 +1dc0e9e26d20b835459d9169e01f5283.png 1920-04-22 +0aa46d653d6bdcb72b76427e30400e32.png 1884-08-16 +943cd3a56971c3896270bc860ff59c00.png 1909-01-22 +fbf1da16beb6ae4ed9e2b74e6c9df53f.png 1919-01-19 +c0d8d2471d2c74e5a7479c4596fa04a9.png 1913-02-27 +5a26d3372a2f3ae93e84176ef180d931.png 1916-07-21 +0299fb555394e046c65be69d37ec1067.png 1911-07-13 +2e8552cb990d596119421fcb18a0e55b.png 1920-04-19 +755bc9bd453086a86b0a899641a3b94a.png 1921-09-26 +bc169ab29423a48a132570e6411b5843.png 1909-09-01 +bf8f4247475b53d5833e0d01b4040d8b.png 1904-09-16 +c797ffc581ca5d5e0423c1c969b4e03b.png 1889-06-06 +515a15bdec7e90951a64841e8ce8bd13.png 1900-09-14 +315b7b8f08b22123bb835f5daa9d1d62.png 1884-04-18 +b6a5854c0eb6acba7e8793961625c485.png 1899-01-13 +b0002e620e3e1ccf34f79e82ea3ffc2a.png 1912-10-25 +7b0f924707590ef021056eb397d7ee58.png 1917-10-27 +d874ebbf3afbf71e0bb5f4198fd313d7.png 1919-05-20 +e91b76119998626c4597181002f5b458.png 1920-08-30 +ce60fbda3827a0e36cb2bbdad6347010.png 1921-10-27 +784d350992891293fab7981e8e8aa88c.png 1918-05-08 +f6a6288bb8c1e777e93bb26bfa0c7948.png 1921-06-24 +347bac1fd1eba908199eaebc4ecab324.png 1922-10-07 +4bc985c1240a2b490f7f29751a02d909.png 1905-06-29 +76506372bd37ddde6c970b909bd46512.png 1904-01-07 +1adbc66f78e1538dffbf19dd47fa4035.png 1910-04-14 +fd54b2f68dbe511ca21227a980efba82.png 1862-12-27 +83f0c8205698e92012e261d1064c7f8f.png 1913-04-01 +e6aeb075b9a42bd5aeacbd2a2ed3904c.png 1902-03-25 +d67118a894981b183ed011c0fa3012da.png 1905-03-04 +a6883fcd4674129d67bf236bf8b136f3.png 1912-03-21 +9b28abeb6c053437179ba4e286079079.png 1902-02-11 +d2f9ebb4b76fc0e75fb2629758f44159.png 1899-05-18 +5a204732105f01e06bb8861bc1bafd4a.png 1915-04-07 +f8064ddbf61c0b8d48f32325525533da.png 1900-03-31 +969ba4faec7e6f655fbb62b5bd01ae09.png 1902-09-10 +76c7de5042af82ea03e206106690f4fa.png 1917-05-01 +00b6eff5f60a60664f96bd2d16b467c5.png 1899-11-01 +b6ab54732226c94277665a48daa9b754.png 1888-08-11 +7f3a4be949be957b3acab7c958e7d583.png 1900-11-17 +2390278598c3aea630d7a46178cacbe4.png 1916-11-03 +c9e94a2c5f2b60625a9960e3bd85a32d.png 1910-10-13 +66c2487e892b48567d4a896e8134af7b.png 1889-10-05 +6b0026e16550fa9ca1b428a221c7ec30.png 1898-06-15 +cd75755c2d77187ed196a02fb8d2933f.png 1885-12-10 +4e69541ca5c80b0c69add7d24f22a976.png 1916-10-22 +d32bc39055a0756d10eef10f3895b4a0.png 1901-03-13 +2a7b65a9c0803a5fdb0c62b460d1dd33.png 1920-01-05 +7e4ec67e6ddb5fa7e30efa0f09c66569.png 1891-03-13 +cc7b4759caec0a05fdc63423d632780e.png 1899-06-28 +b183a3046d93f8db4a40a1d4b312b238.png 1909-08-30 +ba3ac056409bb28c2c9455f7b6d95ef0.png 1910-04-30 +395710c10bef8096e2984ead1ed23d39.png 1910-12-05 +5af28af69a7931852a3c6fc850f55fca.png 1911-05-11 +e0e88fd6c37ee671420608772a4252d0.png 1861-04-12 +613404e7649166541df57187f0856c18.png 1906-09-05 +45868d0797a403ef1c283bd4718b8b34.png 1899-06-01 +99521cf144e4eb43ae74d126228716cb.png 1915-11-30 +22196c5c43d0343f929ea51dd25debc3.png 1922-04-25 +638fd54ee47aabc67a9889827a1e9487.png 1921-10-02 +c0dad39b388d38fbd3ba0ec5467033e8.png 1897-09-17 +0ac47d3a9b0b1012914702ab9f83b64d.png 1914-03-18 +eb0931e5603114c388ba007a0156b447.png 1911-07-28 +1c1814c998ee8d3b466217237625a9bb.png 1863-05-08 +830cef302ea6dc59cef1d4436548730b.png 1917-06-28 +16c994991ff41e67e049ba66154be2bd.png 1899-08-11 +a1de6265386525c14b21bd1476a53336.png 1903-04-15 +d4224535c87fea61b22da84b5213da66.png 1909-02-25 +6111e4e4a565479b4391791262578d53.png 1911-05-31 +e5f13023f9cf8260937a38db14cb42ce.png 1918-05-02 +62b2985b6827b2df3825aab6d7690b70.png 1918-02-15 +f6b0a25e9dd0ff6c7db8db6471b39cda.png 1915-11-13 +610abc9bca54c144b3ca4a8c136d7a9e.png 1913-12-15 +d8bdf0c0f38346f1f1c007f6aaa9d3c8.png 1885-01-22 +417de796bd3c1b3558c485ddba22bf81.png 1907-01-12 +09a1e100ea5e6c6866b0e21e43323ccc.png 1900-08-02 +4428c5c2c7484468614a74ef3b1f5ee4.png 1905-03-18 +9636077dd440b122d0f68c8c04cb757c.png 1908-07-17 +e98886f677e9ac440c9266780c92416e.png 1917-12-01 +aace13fd28c13c24441afc9fc9653c10.png 1922-08-15 +bc0df8cc4247f7f8a9183813480c9651.png 1898-01-05 +42756fa15e9886733f95cffc8fe32d4d.png 1903-07-01 +2b2e4ef450eb8793f3588fde891f4590.png 1919-12-27 +bd325c578bb4d958fbb29dbca8203c60.png 1909-12-07 +b3ef313d44d4bf061dda876078f3274e.png 1884-10-24 +b98b630e146007c3ec0ed9c405503a69.png 1918-12-12 +ca74762c9327546a05cea10a8e751307.png 1919-05-24 +8c38a9f2a2309dada2e5087ccfb0c291.png 1897-11-18 +af84a0dd72a7662c8e76e01acc28c643.png 1898-10-16 +38c0ae85e4e04fc5a7bc84a63a8d252f.png 1900-12-04 +15b9fc4bd79abb577fc97313b09b23a6.png 1898-10-28 +be4342db7de92ba3cf5ff64e4071f05c.png 1917-10-15 +a50d892de8b7b69919195c4786afe6ee.png 1897-11-11 +0b309a9db0973d4ce773791db68769f3.png 1898-12-02 +b637a855a84f033ef60fa9778fd59c25.png 1912-07-21 +ea8e1215e65ee33f7f7bbc601e4d5572.png 1886-06-16 +e32b92fe8cd89a68ec3ddbbb46e5ba4e.png 1892-04-28 +dcb397d2d138761c6bdbaee95e62502f.png 1917-07-16 +b49496f9cf6695c913d7dd592b2a7501.png 1905-08-02 +d39ed305e8125223d0a7f60f8fab354e.png 1922-07-03 +7c1e854330e0c89ba908860ea6494af6.png 1914-12-07 +20e29be60846789ad56266d97f1d76e1.png 1899-12-14 +7d9d0936073be44fc42f90d33deb8ea6.png 1900-12-08 +b3695aae38ffaf7c2d366d061606a1e7.png 1898-05-11 +32b78d33452ed0e3445441e139bf0390.png 1913-07-19 +00bb7dd6d4edd291baf2429a668c1c5b.png 1905-04-26 +d480e2b9b8d6b188e4101aa08039508c.png 1897-03-16 +14f98407c7c156661158ca1c655ca6ff.png 1886-06-28 +f665cf84c80f34f896798052d5cf19d2.png 1884-05-31 +ace6fca1e0c25e95afa6b53f6db79c56.png 1907-12-17 +e26295a10962d025609a2ddbcbd82e0b.png 1907-07-30 +cfca139b7e6823fa40e5129e7376a35a.png 1899-08-23 +00abae50fe64134a975f59e6bd59d516.png 1902-02-28 +8f827bc4b95f38afa4ad10e05ce4e31e.png 1865-03-14 +89c0f1809a9cb330380dbb221f16140c.png 1903-06-01 +2886c7d8127602ff5f655d7db93dfe0d.png 1914-09-27 +10e0f3a1ae8a11c33a020603cd8ebb2f.png 1908-10-08 +4a90f1874863b0fbdf140ac9958bceae.png 1917-04-12 +b416a1439ff97a0706df05369ec3547d.png 1920-10-05 +b54fa537f44796be8ddadc7fb6f8b5a0.png 1907-05-17 +e96d74a78c14c91931ea9764930f89cf.png 1910-03-18 +d7a634978a38825b47c7d99633b19f51.png 1891-10-01 +41cedef35d281d53b89f4ff8cc663268.png 1922-03-30 +320607837eaf21f69cd16e77fefee2bc.png 1892-10-20 +d64da0c0885cea329b9389fc1b5723e9.png 1921-10-25 +61b5739021e4099537c02a4290188b15.png 1898-10-06 +0df0277898ee4a299e3510310d9df125.png 1911-09-28 +7ab6c23025759e3be012b97c8e89a39f.png 1910-07-20 +691ab3d8315c6800f89acfeb7f78c4ad.png 1901-10-12 +6633beb9c8165fc295f621c77f6418db.png 1886-02-25 +710baea0b9bcd205d6053dbee441f93b.png 1903-04-02 +30938f984ea21254dc1f36535b441156.png 1897-11-04 +56a4392219294f5b23cd8f5ec2d01b6e.png 1899-02-18 +ffc8f6f6b1e5648d577b489f51e18607.png 1912-11-30 +790f7556578b9d7424f28ba981eb2d73.png 1899-08-16 +b0088a1f1ca6e46e18184e6bb79f2080.png 1921-02-02 +f853808210d9ceadba7580faa615ebd3.png 1919-09-17 +d44432dc90a623a1a474301762a0323e.png 1914-08-21 +2a191ddab071fef0f0a4e6bee38d2939.png 1897-09-01 +b76890d1b980eca13e126cc4dfdde273.png 1903-03-14 +ec8f7f0d4da5a43f3d7b069254a33f49.png 1897-04-10 +f18abfc384ba8242c9e44308edde9c91.png 1893-04-08 +3f077a7eff76c58156cd129d9215ac54.png 1887-03-03 +392ad205ae2107d85182337c384d83f6.png 1903-08-13 +cb929d6941867c2aea2fda3bcf7c9941.png 1864-01-06 +d7610d0e24377987db672b2a9d1d5ccd.png 1904-01-07 +f6ff0b897911d4612116be5688237a64.png 1900-05-17 +ad325ada07df5df296fc63934148c272.png 1900-04-01 +5f9134e6d114b3c7c110b735637cf8f0.png 1896-07-25 +a22e0b3c22c7ae10babe68636c65ab8f.png 1887-09-09 +0166f4dd53d9ad3f4b478ddda4459fa0.png 1898-12-15 +17071bca1c496ff4235855c17f12e513.png 1917-02-07 +7e94717f94de905b261a70aeefb683a6.png 1902-09-05 +93c001aa36210326c58ffc121c978cff.png 1919-05-19 +8a16fb576d0336a5393246c2764afa99.png 1906-01-22 +a32198376587e3ef5d7e068db988e991.png 1909-05-14 +c42830c72d5e2540bc1be778ff60de67.png 1909-06-29 +c495c6129b391088ba94421aef6fce54.png 1912-09-03 +9768e9d30c51c5a8902207701933da4d.png 1900-04-25 +5f7feadc12cea254a8c03e64dbb3174b.png 1901-03-20 +ee76289cac212502768c87a350640875.png 1917-08-20 +be27177032daf16145ee80c28a49d062.png 1892-11-17 +1a74ca5de74d468f9936a23559ae6688.png 1882-12-20 +eda8752a01b05280a6392d468a782d70.png 1899-06-23 +431e7710ff01d8be9c116a6eddeaf68a.png 1910-09-15 +8c6813b6a8250de52f6003458f12a66c.png 1910-03-15 +bdd33625feef91c0cbca63da6651a5d7.png 1909-07-02 +08dcbf5711d66f77be8d643b3cec4460.png 1898-02-03 +6da6a095e4e485fe79025a0de4f80347.png 1912-07-24 +8afe8d6c01e896b4ac23e07be6e1d4d6.png 1904-07-30 +5f703ceaa33c7c610e74bbd2a630b245.png 1908-09-25 +e4a28e7319e68992aa0ef676e6ee50c1.png 1900-08-22 +3077a8099206b5c21c72fc23a48dfdc8.png 1880-07-30 +435fff2e3fbb27f0c66e9b3895290c7a.png 1904-04-12 +1fc8d59f919bb8f99e712dde71af10d1.png 1913-03-20 +3ce916f3cae06738b42a335835c938da.png 1884-07-31 +8899d98270f7326434de5766fea1fe2c.png 1912-07-20 +e66bd64c773ce9b916f2e07ade17cd3b.png 1895-07-02 +0996944a7e5dd490d2c6e058234a040d.png 1901-11-28 +eadfb95a06fa9e0dd3f444800d3ff016.png 1903-08-24 +c9539cdc675db253d3bcde7411ff6884.png 1904-08-31 +f812571f1dd891762b5b8f401876d2df.png 1910-09-15 +1a15d6eba6b1b6019956fd117bfbdf69.png 1921-12-01 +b73d0b6e6c1c4eac1da58e8c6c637258.png 1899-12-22 +7604a3f048fbd7e56f2b4ed033c6dad3.png 1904-08-13 +693d7581f310883f7813d49a8f1edcf2.png 1898-01-27 +8e578aa7540b108240006e0c8b89fe0b.png 1914-05-22 +2b239224823bb9bb9598fa1b45815c06.png 1905-09-09 +ebfd5d3d680173485b6afe0aa0ea318a.png 1897-04-16 +a4a03d4b2cc1d4d507a2543e6e1af6de.png 1913-08-12 +1610085891235744a14c760c64b68e5e.png 1912-06-01 +221d9525e5c38fbb6b91355c6ea4fe78.png 1914-05-22 +4f3bd61ef99084df980c8e069da77210.png 1886-06-13 +74a938c6530926a72bc7ba724872fabc.png 1898-01-05 +475d19c2d4015c3d8b30bb4d7e6cd424.png 1916-03-30 +4dac8bd640f92519db0cee50c0ad237c.png 1897-07-09 +d8dc73e0be0b2acb25d4e7097c4611eb.png 1911-09-19 +fa5ef05f52390b378e19b241ea836571.png 1901-06-14 +6f38e07fa70c1f1e9d432bc91216ecf9.png 1901-06-08 +36165509b4d816f5f248a2c268f76f41.png 1890-02-27 +6e01d107a4493f577fa5b002496ea267.png 1907-11-15 +139e60a43bffd7c5c28f107877de87e8.png 1899-12-27 +4e164a3a2088383a308a272a1847715a.png 1900-01-18 +59c2dc7515367caccd3e81c13e52db1b.png 1906-03-17 +5090867c479a6f30078cec22200e6fa8.png 1889-08-09 +072dcaa4a588acf19148f78ab511eec9.png 1899-01-08 +9dbbb8d1478448ed6a7dceb13e6bef9e.png 1904-10-14 +98dce933d48bed5b22e3b8ecce01a4e4.png 1921-09-30 +49baa104939d04885f3ca6c71172ac82.png 1902-12-19 +6134a85c7d05371b4ad2a37b3f229db3.png 1915-01-05 +5a7f2ccbf899de67a7900d5e0947fc8b.png 1866-11-02 +1897997b2b7e8dba3043743b58947fce.png 1899-05-02 +743bea80f3e09540e9b4ad94cd13e49a.png 1886-09-24 +ba48a3e8c5d1578484d914627a23c49d.png 1918-01-02 +bce0c32e086fa525f5a2f7f07955e399.png 1910-08-09 +fbe41d8c38693fa0aced783d1d93dd67.png 1882-11-23 +c7561f9ef8dc899ad004b2bc97c85878.png 1909-11-16 +61c8de57a4982877161a0898b0749846.png 1895-04-13 +09d8eec379e6dd149a11f0cc0125dc44.png 1914-11-21 +34357b04b616340bde9d8bf55ff20539.png 1888-06-12 +8ff2253f1643a2b65bc1972f110b0bca.png 1890-12-04 +be98079e32c6811a590ec14c378be8a7.png 1902-04-12 +5b88ed2d4dbf052299e4a3b4858f1f03.png 1900-03-19 +ad0dcfa635d4e2059201ef05eafda135.png 1888-12-27 +b03b35937c54eda6949d79d13106d33e.png 1889-08-07 +fb055ae5d4d09c1c9d1f7f4462ca33b9.png 1897-11-11 +4611009c2ad3eca00edfca482e77eb70.png 1900-06-16 +42a160ee28fff10b36f7cd048dbed76e.png 1911-07-14 +9f79e77cb51f0a42183a3e02666c877a.png 1906-04-29 +2f1e88c3bca4f8ab6d34d8f5a777c902.png 1917-08-22 +8758f977b3281fb1b7112d69d95257ab.png 1900-09-12 +54e0e4b02693037a3aad3f7eb80d5cf4.png 1865-02-10 +be8679c212e0ddd8f2ca23335c9c73a1.png 1898-12-23 +40768f1a1509db3ce23beec1947eb275.png 1887-11-10 +b714ea842f17038a28a9c169b4a42863.png 1916-09-18 +86b940834cc8be7574ebde8abf7fd571.png 1921-09-24 +61013c692c1e5656651b67613203b3d7.png 1911-01-11 +e8b2bddd98c4e283b8cd737a3cbedefd.png 1887-11-24 +c0c63bac0d235a294cdc1bfbd216357f.png 1892-09-23 +2500bc069c64275ddccd8bdc4bfd1a8b.png 1856-04-18 +95b80a31d070eb0e1d380f347cae4a88.png 1913-02-24 +8021467c1c0f946038fd2935fb069d86.png 1895-05-27 +5e2c9ddc9a60f14430664e6e7fe4b9c3.png 1901-10-30 +56d16ebb6fd4d3e4c8d6824eeb642f27.png 1909-01-20 +d37d9b930339b4c33d27aa60453da083.png 1903-08-04 +7ae9e6f5b6bce18449f2804e759075c2.png 1905-12-12 +88c505a9af7b921d4e347d2a6e5196d0.png 1919-05-02 +241769c509797f2b534a2ecdd65237b1.png 1905-01-14 +58db2729d40aa198861a147dc79130fa.png 1912-05-06 +4f2af05047fd2ae23bcbd4c6aa4b9298.png 1900-02-03 +5201343cd951ff2f105c5e9d924cc9e2.png 1914-10-26 +2f9d56a25f4001753e52bffa7b29455e.png 1863-06-24 +9f9788be21520bd718e8786212e5823e.png 1905-10-28 +a855241c3f07ad79e5d155459fd145c1.png 1904-12-29 +5eafeae8b5a805c353b9a88994491d29.png 1887-04-05 +58b0c84cf3ba4fd810ddc9334a16cbcf.png 1901-06-27 +c950494ac67317c5a2149ef42c48a837.png 1920-03-15 +c439321c3d3963b0843e37063ce36b24.png 1911-08-08 +a0829b594e7e17b0458faef7ba6cf147.png 1909-07-28 +eba621f823d798ad8eb168b56a4cd2a8.png 1914-06-14 +31d6094e053459595b253a3a1fe0d457.png 1903-01-17 +88f56412da451a2ac6f91f99c12b870a.png 1889-11-21 +08d499adc21ee148e8c0a7daa70d0488.png 1919-03-05 +5716b68c3c5b2bf9711bd576192d9701.png 1912-08-05 +ff393d8444ea5e343d10d4ca50cf8cb9.png 1864-02-10 +354d3ad1b0470d83f5f75c1bd20915b0.png 1898-01-11 +c7d1172dbd7132b4afa83e36ac63be27.png 1904-01-11 +bbbfeaa3508a1d4a676ef319efe26a13.png 1911-09-05 +e68c13cb31bae8708328f18ee676a7ae.png 1913-08-09 +e128b4c9a6bbd81f4e87911a66174d18.png 1899-10-06 +b5c034eb08ad1e982a90dd1e30c5c398.png 1901-04-19 +6bd4c5dae0889c7945fc03445b515336.png 1914-05-25 +8d90ce06c3dd0b504e551d05893a6114.png 1917-08-14 +2b5f78261ed336e3719768f397dd17fb.png 1917-01-06 +783155d3422b36b6072f357ddce53c75.png 1897-09-02 +e45feb6fce5a3bc56c68c60db6c4e9e0.png 1911-08-31 +e1d2b76c2dc344b090e59aa94ae61001.png 1919-05-22 +ebdfaedd922c7e8e5b3cece7d7401b77.png 1920-03-31 +a317f1667f0aeb90e0aec266aee83d8c.png 1909-10-26 +e9ea1a2cf35602801e53c81aa2e81310.png 1907-01-09 +8533a4295622cb1f3441beb8ac41f81b.png 1917-04-17 +b15802d13c656c6674ea5b17c6080f01.png 1917-07-26 +702ac98f59ddb87f81f7d104902b0e9c.png 1921-08-07 +3689bc2ab74c75bc7c481679661f319d.png 1897-09-29 +e2d79d75234f13c0cb9e912260fa9d8e.png 1900-06-06 +922ef4a99830602b99868ef7fc91b6a3.png 1902-12-05 +2d20ce5c0db6fcb66be4542460940ef3.png 1890-01-28 +4740e35dd4a53b718d413a9be8cd381c.png 1900-10-02 +ce309dd88ced6c9d19698cf1be9c2442.png 1921-09-06 +694e9bff66539e7d5a05c1db0e98d517.png 1909-07-18 +38f146f0b5f41281a48b69395976435f.png 1897-10-12 +946bda1a74e0039eb6b0a291265e545f.png 1916-03-20 +bd24c32a9c0014da9d32351a9d9ecfd5.png 1891-11-25 +c122d6b4b4f2c0be4ce913c0cf1316b3.png 1899-06-22 +605b4437f8c6f5c064b77e4f2f102cd6.png 1904-12-07 +ea47980549d11107a18aa57fdb39aef0.png 1917-06-19 +b5d6bfdb54eaf03703378bbb1d98b32f.png 1903-10-14 +f94bc7d208704486e2e96b501968aa5e.png 1905-12-27 +91a490513e4bdde28e5c3724a41ead14.png 1905-12-14 +bbcc6cc00a9918c9b98aac737252a89e.png 1898-02-16 +f2c8b90fedad1a7343706bdc28332e00.png 1911-06-24 +8a924bb2c55e66de6236edddf5b242c2.png 1911-01-26 +d103855c4fe3b9385f2759da053fddb9.png 1922-05-12 +1d107161eda9522e850d45e32c7cd51a.png 1898-01-14 +2db92e4c64c2cbd92e72c20af43247ef.png 1919-09-24 +d71fc6e9b41fd3c7e8f084acd61f8516.png 1911-09-16 +9f0a72882149993692681a869b2e2fb2.png 1911-01-10 +399463f37eca8df45d37cce703f5bd5a.png 1918-01-19 +f9f197971bd3995241b7018edb019eca.png 1905-09-19 +981f9585ed4db47c22de4133e206c627.png 1917-07-12 +2bb7eefb5197133d6bee56ea884830ac.png 1903-09-24 +504237d3cf60d72cb9f0c13a4efffad4.png 1905-02-01 +496418d0b5d2f9e440b4c1cc55e71f1b.png 1906-11-03 +eddef4f9966a8cf8019385f7da8896d9.png 1890-05-31 +ccc2ad1d6480a377b0723f725a2870c1.png 1898-12-14 +79e34ca80d791d8d8e8e69c7e20fc952.png 1882-05-20 +ea6b13775e85e57e2bfac2922e1731fb.png 1908-03-22 +772568feed3a8e81552da7cc89ab3d38.png 1913-05-08 +fcbfc552f169c1d33e752e5aa5d8aa78.png 1908-07-24 +dab3079db1f131a76addfaf0ed47657c.png 1901-05-16 +95817a0b0f5d0f104b775708bf12fe12.png 1883-12-20 +c147dc37b86c5012981ddb1290380ed2.png 1907-10-08 +81e4a2d15363f163c366dc49a52314d7.png 1920-04-10 +ab86242127722edc0dbec4e62bf06a52.png 1918-01-26 +6244ebc4ef81d72f50890d7dfa1a9937.png 1895-05-25 +7ea60ebe878255ba8f5c7cd730598745.png 1882-10-21 +e935f70194d5d0846569b41f01a06b01.png 1919-01-29 +f808d67206757644acb76a0baf608fcb.png 1888-10-20 +41351da6ee8b3a61c57bf36fbb701f78.png 1857-03-06 +2cacac5a7a68478c7702b52d920ba9f8.png 1885-12-27 +c955d735807973862eb374a57147eb2c.png 1907-01-15 +de78875fd4db036624340ae69be8f888.png 1904-12-18 +643f078a2efbe34821b20e5cde9db889.png 1899-12-08 +bda80923033dd684a56bd98870b113d8.png 1896-07-08 +e4ddb6f264d77290002f4671886c7ac2.png 1896-01-31 +016f5f6eef8326d72a7b2becffb35008.png 1905-12-18 +b843f04337d754f88b28b02449302582.png 1883-10-20 +f711f06db9d7af1049346541f7542d35.png 1907-05-23 +663c2aaa8a08bb8ac7beddbecd76f99f.png 1911-07-21 +5a925eb9c6e5d796c0d4cb5d695122ba.png 1904-03-05 +c47e49a52715e22eaf5e902648c6a44e.png 1905-01-14 +35e714a8ad94f210ccbf4ce7cc63d0ca.png 1862-07-30 +f55dbb58d53d60ffbc0b06ff485bceab.png 1909-01-12 +5829cce4bad11e4ed336cec4b82403ea.png 1888-08-30 +bec5b5117e08323c353265f438a3ec71.png 1909-12-03 +365d3e397009dd25c2e22bcc8bb1fba8.png 1910-05-07 +2e6d501b0c0cf559fc53ab91749f02ff.png 1904-10-25 +4a08c440cbae92db9887b43f2ce7da92.png 1898-01-25 +b7c437af1dac4a7c238647502b4f19d1.png 1900-08-06 +80b20b546c41b39ecda9f454e89bbcc4.png 1914-11-23 +244c03f555acf128e4d32f98b38ff025.png 1921-12-06 +c345341697830010ab2a608f168a18a6.png 1898-07-01 +9355fdf2a4ff562aa031ad66e01ec751.png 1911-07-22 +a76989a02ad648e79978688190295bec.png 1911-01-17 +b4c224d8d57713408f29aba9ecaf23fc.png 1916-05-29 +83584d5fcf5b5b482b76c6c1c270c3fe.png 1897-09-02 +0b23810eec02a7e67d4da77bab73ca63.png 1916-07-12 +053ffc80a6f41b18297f631b142be2f2.png 1903-03-06 +ac06f6056149cd11154cd8acf944e431.png 1907-12-21 +49cdfc1578728f76e20b5eae08beeafc.png 1916-04-27 +351797e23e6063ca347e7ac995f17a6a.png 1914-04-01 +7c602cc85934af882f13c0cb8b450de0.png 1898-10-13 +8d372465130d1e072f556d33a14084b9.png 1879-09-05 +7cbfd53da03c14f224e6f346e2d074a6.png 1914-08-01 +1a9d3aa39e0fa702fc1ffc7659f2fabf.png 1908-07-16 +ca30c6f44e6438322e2c3e2bb2af5009.png 1911-05-30 +7dbe0a2ba1621bea1e575a158a9397e4.png 1911-05-04 +96d888552864d4c9d14b5631e55019fa.png 1908-09-05 +8dcfbadf27b59bb6a0e883b551af07b1.png 1904-01-25 +10fa4cc3afc4e6211d7ce93424561027.png 1905-03-09 +f484f0983b5eaa342ee87b39e6b0c7de.png 1887-11-07 +3514e27c9de71aa940075a8c144f93bd.png 1907-11-19 +bc63da48738621434c77866a6238e399.png 1909-12-25 +7c9917a9088a693bd2cc1a7f4c355804.png 1891-10-21 +da7bf26c9043a967f1c0daeba755046d.png 1860-10-06 +fdd248fd8a50f8cd2372ec3726bb0be1.png 1905-06-03 +9b09302e4cac512bac4fbffd9fad0fb5.png 1905-04-12 +a55ce36632ff628d89465dcac4e7fd2e.png 1903-03-26 +1fd894c65a24a640f747e9cfe9fe8302.png 1903-12-09 +ff8907069cadd3e41b3bf0c3683895a4.png 1909-09-04 +83b393b98916cc3ae5329314d6613586.png 1914-01-14 +7b62f1181cfaabb395352a4b6662b52c.png 1895-11-16 +3270b878b0d8c0b25540d7c50c972f75.png 1900-05-31 +78db218663dfda4e6d06e6f97a6008a3.png 1913-08-29 +95ccf8d13a79f6f3916b1b3a71a2a66b.png 1920-10-07 +46c154fa21cffecb401d56fc95d1a2f9.png 1911-02-24 +23bbd2fa3eb282428d9e8086d4a0a50e.png 1910-09-13 +83e38f243eacb6ab2bbf7e06fd89c2e2.png 1905-07-20 +ca159068c425f4e3b1ca8e008db8f794.png 1919-02-26 +b50155296c53636bde48a4bb2c40896d.png 1902-09-22 +589ee79addfbc50667d71b993f9d21a1.png 1899-05-03 +54b357319c7096d1c8f7722dca3dd7c3.png 1863-05-27 +b5ba4ffff38ac9d613f6a2bcfe9dac84.png 1922-01-12 +591f4c34e2bc6ef62cc99e2d1c797dea.png 1901-07-11 +b9c8a7d882b6bc4f06f513bf9bef6b1b.png 1904-09-06 +9f825f81d101144bbd37f57d1d8476aa.png 1910-01-21 +d57986ff1729bfc754178b02f2beb116.png 1919-05-23 +061d5bec4ac257ebc309e96c79f7296c.png 1899-01-19 +d9a28af95147dc8cc69417ed5576c6c7.png 1900-02-21 +da6fedb3ac3ebdc4db27eeffa97a808e.png 1900-12-11 +47a7d963c1a2854344498c46c6d46dac.png 1909-05-18 +6026dfdef49dfdfa946cff1ebd5de718.png 1911-04-20 +314484998640abe65fea45aed895cf29.png 1897-01-11 +795e57f034e1b84a59fa8e240bf19a07.png 1911-01-29 +af86624b5b744f221dd88d2168a0f334.png 1908-07-09 +f540095778e5edaf61cd221ebd710dfb.png 1901-02-15 +9fe2f9924231aa0a9eb8bfdb42eb2f8f.png 1894-07-14 +b5542463702f5e70433cd3a62ccaf030.png 1864-07-28 +57545a8b40b241d065d93a4cddf29a31.png 1887-08-25 +51cb1bc28a93942d0c94e657bfa4112c.png 1903-01-10 +f7e49f98a7c8e65babb6d34873deb5a8.png 1909-12-21 +432f25793b2db50b14c5829fc473c3a8.png 1910-07-19 +a7e7deacf064e2c16a907a1f58703b4f.png 1891-04-09 +c963d6c9b87f64980b814e7a6e84c22c.png 1891-02-06 +c8f17de796e10310f0b1221ab0a7e64d.png 1913-11-29 +c8c92331065082bd2a3a65387975cb92.png 1912-03-21 +083000a07778ce66ef67609f41c4fdb9.png 1920-01-01 +bccce8da4f3d92f8d204a480a83c7f1f.png 1899-04-27 +395cb9cd5ef658394de32b13fa0deee6.png 1911-03-25 +256791520a68445d347668ee90cbd3f6.png 1901-05-02 +8218f41876135374f464630ba4356f02.png 1863-01-12 +d9832563464185d7873095d1eae102fd.png 1914-07-26 +3d124a0711827d5ac804b88ac810799a.png 1891-06-25 +f9753f0542784ab8811f8bba9cc712f4.png 1892-09-24 +fce894367b628a1eea16177d8dfafa19.png 1878-03-16 +a7b927e74deea73d7e106124aee9f889.png 1900-05-03 +0fb4357de098d8da7bdbf48c37e03907.png 1915-06-07 +e452c655bb43f5777f17b23f5085e99b.png 1899-04-22 +f163ca1b27fce2f455aef7bf03b73bf7.png 1912-04-20 +2c48c4c4df329c2482d3b394d789d154.png 1903-02-20 +66ff28545781f4051b5e4b2219edc9c2.png 1914-05-01 +c3f2566b062045e8f0fb95ea8ca7e72d.png 1899-12-07 +da30c3ae0d8f3d31d45f1b7fec43259b.png 1907-10-17 +60e22ada6e4fe7178e3223edda972521.png 1911-08-30 +0fa301897ebff522878902e67e1ccee7.png 1911-11-01 +b10270b3329bdae18f14a22f95f5e08d.png 1864-08-27 +8bd36e317f92cad3ccd6bf5c43063cd4.png 1917-06-15 +b18553ec1f49e7ac45f7a24ba85a3557.png 1884-05-15 +dd09475bbfdd8f512040d6bd50d3b9bd.png 1891-05-28 +2b7449f99a9d8211e73548d760cf55f8.png 1904-06-09 +35321fe8fadbafdefe592157247407e4.png 1920-03-13 +8f1877ff0d0936819d8bdfca0eb09c52.png 1887-11-14 +12c4ff24266fd4b2b8c2bc0ebce8708a.png 1904-12-08 +cc1b421165d34e0ffb20a1d741bb240f.png 1911-04-07 +93163c5e2dfaa0cb9ead50ddf5ddc9e5.png 1897-09-15 +0e435e76d2ffc351e2d4a34f3f54aa44.png 1917-02-16 +889c873e868083734ef58259bfc9a8fe.png 1912-04-24 +b05e26ee9069c26b163469b2d443fcbb.png 1921-04-26 +e4e4fcf456c03a3375543a85a2a4dabe.png 1904-07-09 +b1ed9db25162498386cefb54a2eea72e.png 1912-01-04 +e32f247233993450e00866cddd6e2e07.png 1877-06-30 +3c3702e2b21ebcc82e88bc82a791eb4e.png 1886-05-06 +4bd9a36ccc25f925b42d723c11013c9a.png 1897-05-28 +381d2b75c448a05002af7317fe3ede09.png 1920-04-30 +724a86702e646ef6fae360facac6c6de.png 1887-08-31 +e7db08058c60149ce1f8c5b539f6e707.png 1915-04-24 +178020cfa86a9494f95e9e3a7861e1e4.png 1881-08-04 +f34bd192c3d4e5db61ded993179fcc79.png 1888-04-28 +4ed4d9d2e130edaf42b3fab7f75b9b53.png 1912-10-02 +97c3740fb03cb1714696268747702dbb.png 1889-08-09 +80145ef0d9c733104a05af44ed962426.png 1918-03-29 +d1715e48140139c6b0d4dd8e7c231cc2.png 1899-08-11 +718ce62e220405f8369c9876d22de058.png 1886-08-18 +d45a4736801a6536521f33a598e88363.png 1898-11-24 +a5aeba7398e3da41b0532070f41cff08.png 1917-03-28 +ebe4dfbe3e4af775573efecb31578a30.png 1897-04-20 +71422cf49d886a21192dd38954728e5b.png 1907-10-18 +5d561d01a03d92659a2241bb995dca1c.png 1900-11-22 +27a826a803d8534dfdb3b23da53c47b4.png 1917-04-30 +f8706511e7d6031dfe7e809acff2ea13.png 1901-02-15 +726d9082d6cfc562063280bfa4deb43f.png 1904-03-03 +75ccd2b790bf81d804d25c7b7b6d6628.png 1913-09-11 +2e7083dea85c7cb773727b545e646619.png 1911-09-21 +a1f258a3194333a43a7afabbc67df1a0.png 1899-05-26 +2756d4d7e01f464da28d9f0d33aff845.png 1884-05-24 +c907172d262998e57dbd685ae059cb72.png 1908-10-31 +9e371fc537477f09d1293cde5539024a.png 1898-06-24 +6f5c7b3c659b414c2f969c44d65ed42f.png 1896-04-23 +ec02c133fdf6477ed22eb1d0fc850ec7.png 1908-06-02 +202cd002650b2c8a65d6903a56717ff7.png 1899-07-21 +873c99f293c4b1d4fe415441f373559f.png 1899-11-07 +5e5d35a0f56ac0afcede62a22d765afe.png 1889-08-31 +f06ceb349b1ad7c0c3fe188fd2a0d679.png 1900-05-04 +8548bb2888f8928db2f7298b60a0478d.png 1883-11-01 +8888a1d648e2ab89f8d210b97973d54e.png 1914-10-10 +f476f30dd4cb7891f813cf5acfcf6ea8.png 1897-10-28 +4eb1ec5b9bab06cba5d10072d40657b5.png 1889-09-20 +7152e784f8a6c6f0b3e400499b7612af.png 1920-01-31 +d023116aa39c31ad21fad8f6da9f8654.png 1903-05-23 +3fe3b4b4bcc25c0dd9ce04f3a8a1e3b8.png 1884-10-30 +f25f720da0ef7538d2bb5a14137fc964.png 1899-11-09 +17a3498a2ce9484711cb90fa55890b85.png 1896-05-19 +39e13116cc408cb6b48615bb1e6c7f18.png 1903-03-29 +7e9609459aceef339d13d4f952d2919a.png 1854-09-08 +8835dcb445f40675969106ffe585fabd.png 1915-01-26 +e88d651c0bebfc04f15bf8ef2ff5f1a2.png 1909-09-30 +716d7528b25f80061a76e51e992f8ae3.png 1889-07-27 +909f4c3deb805ec5752d5958926a617b.png 1915-05-08 +212df4410faa74ee0cbfb7dbde5a7f76.png 1913-04-05 +aaa1f0ac964f0fd3a3cc582dfc61aa5f.png 1914-07-06 +48ee78d09d61efaa3d8c0545420ad2df.png 1898-10-06 +26bdd53585558a415f3801f31b9a4672.png 1900-12-28 +66c088a69c49b9b5786b2fd73c84350a.png 1912-01-05 +16492cea234187c266ba0e08d1fed7c5.png 1905-10-21 +a2ab6bb93cac2a3f68a4d9967759131f.png 1907-04-09 +8c2dc509c66a864003c656b95ce2b9af.png 1904-06-12 +9ec5898a54070770a0ee6849ba9d8611.png 1913-01-28 +77656c6b4b1eb5c2812216392639d2fd.png 1907-03-22 +aa38a8054f220da3d40ef7669508708b.png 1912-08-01 +a059b424d225cae65508f8a1217c90b9.png 1897-06-17 +eebdf0ce8537ed77c3d14a353e58224f.png 1893-10-05 +135ce8680c273756952cdf94d9221e86.png 1885-03-12 +df6552af2ad316843f7b44bb3b58f749.png 1888-05-05 +0562ff67dc6df30c8e5942ca9b6f9399.png 1884-02-28 +5da0674b1b2aafb19720e2a3da04f0ad.png 1901-02-01 +e54118354c8a582dae3d6d626184ca26.png 1908-06-12 +110d724e24aa1d702fbb05290cd82116.png 1900-10-27 +bf916e7150eed155a95564edb3fc58ba.png 1898-06-09 +7d3403363a7a0348fd5169d2b41e4495.png 1899-03-16 +f4c8891fc3db7460652aa4297f836641.png 1910-04-16 +c2db4fd6097adc9c06fc93c766094328.png 1907-05-16 +939d44e78df39103c9938154e976e493.png 1894-11-23 +feac47a00ffd5e3c3e6d1e1177884262.png 1900-03-22 +e9c2654fac8227ecd1e474180bb20809.png 1897-07-23 +362d0f9fd4854007cf678ae81c8db277.png 1897-01-18 +e9e591d2f973acef6c1475f2e9c41eb9.png 1919-10-29 +0786981339e41d5670dc6eaed29e067f.png 1896-03-26 +032f886d7d8db00df292006f08d7a0a2.png 1883-05-03 +14d74ff38f9584ead69337ae1ff62373.png 1884-12-18 +d8f94cfa2015eb540b1b49f4cfcee431.png 1913-10-11 +3afc62644e25fc7db55414f8fdf8093e.png 1905-06-22 +3fde0d21af96abdc6c679b896acb76c2.png 1921-08-26 +40bb2cfde2d2ed2651f2b2b4dab7a4a0.png 1904-03-04 +8039544c4df8c778f9b42e4ea02b01eb.png 1910-04-05 +83be339f139ba065aa6141b4d7caaf29.png 1916-07-05 +6194209367d09b5824bbba59841aeb3d.png 1914-04-02 +8870ce50c4759ce62736fc0af791e4a2.png 1912-02-28 +9c2997f1c8197890ff51e6e2cb778c74.png 1916-12-03 +53f3a057ba7413e10a104e07c433c98e.png 1920-08-02 +7fe6c44eab5cc9821a069e531d954d82.png 1898-08-26 +1b24d74e3db76060f7c2d4307db2a101.png 1922-06-14 +970e1b6fe928c6867439cca0603c7b07.png 1878-09-13 +11eb2dcc7bc59dac957f613192db74cd.png 1900-07-19 +0ee490e2609c21f33b77af52016fb511.png 1890-05-22 +8542830b3c133091250ffce1fbb21793.png 1906-02-15 +de68504d3b5aa9536e025ca774d653b3.png 1891-11-21 +f7592efd5f602da5df886e3a8bf43a1c.png 1912-10-12 +81dab0ed5db1223545452090ff5cf379.png 1921-05-09 +f49ec8bc3715f2e2aa9ce7cabe19a01c.png 1913-08-02 +aeff2d7269d74ccab45b0e0cb8967d47.png 1905-03-17 +45982f1f86dd6e7e6c39a998b0b09df4.png 1902-03-08 +6cf944102f7b97ae50748d5472a9971e.png 1918-02-04 +b9ab18cb116629329be88cfdaab7cb29.png 1908-11-10 +2572e57c05322413720a9917f2969c49.png 1891-05-16 +b41df83be949803a3423c0c98d86404d.png 1912-02-20 +f44d3fa8dca83a4344e2e2c8fde30f68.png 1918-06-26 +61b7b23249564dbc71ff25a5126d2049.png 1900-03-15 +97faaedc1803f602fba472790b98769f.png 1895-05-22 +135730739d154b7897e6fa4a4cf5e025.png 1916-08-19 +de5477c6d9c9419a2a184fea0441067a.png 1897-04-14 +3a650ebfc7a03af237673ef3e74672c5.png 1922-07-01 +8e84e7d4bc291006da0a3a281056d538.png 1899-08-26 +4fb6d3c4b4a79996894e73169f89562e.png 1900-05-13 +f96b2fd517d3a8eb93e5f6dd5f796639.png 1897-04-01 +d94d8afd3e03407a5f7641208679eadd.png 1919-04-18 +e8eab660e2872d88470f37d043d5fc6a.png 1913-12-13 +624bbb9053ee881750fd7162379e191b.png 1899-11-16 +02e5def01eaa9c020106b0aa6ae6bcab.png 1878-08-10 +76d2a9a8e12092e8e16a940a4eb9a1bc.png 1888-05-14 +e5d90d17945793c99645fef201d93136.png 1905-10-06 +949035e063c61175bdfaa8204ccff730.png 1909-03-22 +9c88cd26c87c09cef1a5e56345c09a51.png 1910-05-30 +3ac3a486d0ef5c71e9a4db0a843267e0.png 1905-07-27 +f5c71bf9668a0fc6d3fa0a72c7df9f34.png 1898-03-19 +c1b5c3e28feafe860b4fd9343a3b0ee6.png 1913-01-16 +a955e9cc17c34501280c89a03cb66aad.png 1894-05-29 +065b40c2a39f24de69d74db042ff9fb0.png 1907-12-10 +2adf741ab9d3f7e1ba66a00046b72376.png 1904-01-06 +98fbac394c14008968914348fbcd245d.png 1917-06-29 +25dbfac9bc57c80294592a9592953cb0.png 1907-09-20 +9150b893cf52de1e12f06524724b9fde.png 1914-12-31 +695461ead6795fde956e2387cb93e47c.png 1899-05-18 +cbd6d25e333c8d9e61ecd5dfb2b44c78.png 1885-01-14 +253e016f70eb85b274a870daec88a086.png 1913-09-13 +b453551d159292de8f76ccd05ab3731d.png 1908-05-21 +09e105504a97f3d049d9475fa349e128.png 1922-04-22 +01b9b0b4d05cb11038f366fe12b2220f.png 1898-10-22 +4b41fbbae1f81e1f62ea16880b7d3dc7.png 1910-04-01 +e97fb23b9ef665d84df0445a8c49d6ef.png 1897-04-28 +f2c80c49ab5f665cd4ba176e67a9ba68.png 1910-10-05 +0e132bfbf6445bff948262fd6f842db7.png 1920-03-20 +7cbd8469e5a3e6bf830dc062710167ee.png 1898-02-06 +8e7e1b64d3aef16f0de2813ba61da574.png 1908-07-25 +470004c666301592303feb97462c26cf.png 1894-11-07 +b083dfc25f4bea34a555a8d2d9bc14a1.png 1913-01-24 +1b61fad06d1f4e219b9b34e5dc6c79dc.png 1909-11-14 +f9329331c01a25386288a05c1e2d703c.png 1900-06-27 +736e2a7384adef87a60940bd6261ac58.png 1903-08-11 +2146f2fee44b9b3e3e2ff45219641d36.png 1909-06-28 +15cf1574bba60ad55e4ec6ac743314bb.png 1916-05-30 +5b8b27be8d3cde99957e3b6e0b2a1cba.png 1912-03-22 +361e5f7191cbaa6732de41f34169ee55.png 1904-02-03 +d9ed7a5bf8d487df000693a6d4dec220.png 1914-08-01 +d07110a61979e29c6573bff327e8dd2c.png 1898-01-22 +beda504163dd2adf11644f102bdae300.png 1909-02-09 +a7204a9e5cadf0081e0a01feb29008a5.png 1899-06-01 +effa324b4bd64cead9c0287681bb6b08.png 1909-06-18 +c5e74117db714968dc4fdf81183b2715.png 1909-09-09 +263783bf00f2169c80c175fd27186f34.png 1914-04-15 +ba31c3f1ec037ba91e346fe61ad8f3ea.png 1895-08-15 +667ea546a10a271045c17b3df964e127.png 1901-10-15 +5a85328a652c84ba425bdea3244fd921.png 1910-10-08 +ff299938195a76e2468b5469e7aa7cdf.png 1899-05-23 +d027e4cbba6bc488e2ddc6f850c7ae0b.png 1902-10-11 +858cd26cf768a8416855ce1f4a21302e.png 1904-08-21 +98cef1df5e7e0398f728c00151c0d2c2.png 1912-06-27 +0824939f8fed2b175096ff8a765efa20.png 1920-01-17 +06aa1492de64879056de87630eff575b.png 1896-05-04 +212a1f8f40e61df5f53aef50a781c701.png 1908-02-20 +386cd78bdb2d060c93accb154ff3ad5d.png 1885-07-23 +fd239ceb83e8000d2a098fcb1bd5e641.png 1908-10-20 +21284cb5915e82f46d649676f2ae4665.png 1886-09-13 +1d1f0c1bb9a22c568de5ad41ee5e5304.png 1922-01-07 +1e2d4a5b6ba7c5e7ef3a95ab2d317c12.png 1905-05-07 +7076fe0396ff0ee96cb03788812c0da4.png 1891-11-05 +e3ff77bf4ea65d18e331f44bb3b2aed2.png 1904-10-15 +b0a99aaae4460e8dc4bf1529e52eb3b6.png 1913-06-14 +ac871b85d75b8fd6bac9274857c5c46d.png 1905-07-08 +327ded3839ddd4d7eaad897c8682ebe2.png 1921-04-18 +f7e4661f346eebfad78f81ca984a99b5.png 1900-06-14 +bae0a16b04ae1802bdbe24ee9f5ffc0b.png 1905-06-15 +9e6f014d36d729031d3a4b0884d17127.png 1892-05-24 +16798997e5ced5728d50c22c046d6dc6.png 1907-05-07 +55ca43876663cdf8d4248a5b888afb79.png 1908-03-21 +a9a13d6543360bd21252513d21272b4d.png 1914-08-13 +ba15dd8eaf5bdcde05378da977feba69.png 1900-06-08 +826162c196ab3dd5a84a4beffbcd3ce6.png 1902-01-28 +b838c54a7c691cd7fb144a40f2c6a8d0.png 1901-05-01 +887dba36ed1c9337bea27d6826956097.png 1898-06-02 +20c9b094d869c1f1d9f8225346062245.png 1897-07-24 +db3b5c64642083d0671dc87bc9a83ec0.png 1864-02-12 +1214ed99fbe81472fa26b631ce3d7888.png 1910-10-06 +38d77a04f9291a85fb48e86420621e8a.png 1887-06-02 +1463e13a9135fb9be19178c1710a3039.png 1888-07-14 +358061a36c21ed124e254ae195add0ca.png 1886-04-08 +c030144d56574da9a71d9fd89ff2fcf1.png 1908-12-17 +924bd64403508f666d40eb21581659a7.png 1919-01-20 +11ecb16638bfc8c7693f8e790ca684d8.png 1910-08-03 +b586af50f0ed7fa0e1348dfb32bf505b.png 1918-03-30 +fc2c9d9723e93e47a0559601ccfe465a.png 1900-05-19 +8b46ef077e84349431654e73d86a754d.png 1900-01-18 +15dfa9875a8ef54d545ae21a9542798a.png 1887-07-14 +e42c3ac8f44aa840dc90fdd06944aa89.png 1912-01-18 +ada922663cad0b6e57f549aaa101d812.png 1916-02-10 +78c9cb5fa57d2db0e7b0846a09dce9f4.png 1900-01-27 +b24faa53d862a4454ae8fa2515645a13.png 1908-10-15 +4c98b94ad0307b76aa8d1978d3c0ad0e.png 1884-11-05 +6050468a2fc95a1813af616bfc4e1ad3.png 1906-07-26 +3b0290f4e6ede99d33746718cef149db.png 1900-02-20 +7f4b3118f7568b7340b43bf29bbbd0fc.png 1887-07-28 +b93b2000900d7ab350f4981d035a2053.png 1903-08-29 +905e966ef6053c54006400aea608aee2.png 1913-06-24 +035a761eac3084b711ef705e806e5b79.png 1914-09-13 +6ee9c09fe8235c3367b7a3f7ecf34fc2.png 1916-11-30 +8335e31cfc02b42cce1d66e10984b0ed.png 1917-05-29 +a38bf7051e88c642377217c283c100b6.png 1921-06-04 +6bfef13a6e7cccef9b46c9071a9b3f12.png 1887-02-19 +fd7d2f202ab3611b589475a35238fa7c.png 1889-02-16 +5c3929719519ddcfcab1aa893400d00a.png 1889-10-17 +1128d43a29fee619fb4a83acbeebd377.png 1909-04-14 +e49db72cffeaee27192e837651037724.png 1914-07-21 +ae1ef335b783015610c379d8f17bbbeb.png 1915-05-01 +029f1e951910f7427ed608646670f992.png 1919-04-28 +d8dc240e4555461e06e5a0aead97cdd8.png 1898-01-17 +4c373d482567acc09c76a3e4700baa41.png 1897-12-08 +3cf6188fa7b7ad68677e66a23cb42340.png 1916-10-03 +7cc05eb7a9da32e7d59e8b2072fe0a78.png 1899-05-25 +7907ab4cad7eabda51fb6f75a8ac967e.png 1885-12-10 +75f335ab33a72e009620ce8975440205.png 1899-12-19 +0d719a900283bb7515c6eb83c2877cfb.png 1905-12-29 +2df97f5a75c8f564c31e8521ddb51a96.png 1903-05-28 +1a497ea9d34c7525d39d1765e85d6e26.png 1900-08-10 +fa031631ccc22ceb9d48d8a65e5be599.png 1905-05-23 +215cd008beedb6d05ca4e4f7a4f0b27c.png 1914-10-22 +3b216f89780c8cd99a4ddc469ff9ee6b.png 1912-05-11 +2b9fa999fcfe377d542b340f1ccf9f75.png 1890-07-31 +7ce90b776b112d87ec6a94727e063d0a.png 1912-08-15 +1d7f625c68241f7c809c28510381da5f.png 1912-09-04 +2c1a8a8810b602a0312582a6d1a7de2b.png 1906-10-25 +c90a9609d61a140c0c2028873d43f3aa.png 1904-04-23 +a2896a3f73dfc88313473ee67849245e.png 1890-04-10 +3bbb70a97cafb1b567deb60686286c49.png 1917-02-16 +d1f3cababc9957da2fd6185bb2a2d326.png 1898-10-11 +55b21722c60a12d9f38ce80474d0cefe.png 1900-10-13 +3710203a1c9e190acc1cdd4f739bf9ec.png 1887-09-17 +24c19a9d8d094eaf394c2584028c9e5e.png 1901-06-28 +9f4bcf72bdeb9c9582310d19bcf4bdf3.png 1901-09-07 +275ac8f2cd55d408db7ae20fc69c8704.png 1864-08-12 +165c4c6acb5d1219b8c5ac8268fffdf9.png 1886-10-21 +71e91212f71bade2e8fe2a3b37c930da.png 1903-11-19 +0b29b8392d43d887a68d8e9e1ea15119.png 1888-07-12 +41e7e872a15e583f510f527fc2f8b8ad.png 1895-04-13 +e193a62bd22abecd22a3d4b17f6eec90.png 1899-11-24 +9ff249b05893e0f6d2a44571048feab3.png 1914-04-27 +9b15fe9c936a422a32d71e8929b2d131.png 1922-07-28 +5198a80d348c7d387f27044792305abd.png 1897-08-25 +c751962411f3eca60e601a42a1d7b55b.png 1920-11-16 +b68d72687ea77d2b3589b16ce74b0b08.png 1901-11-16 +792c6459b12ae7d63b0e8a36e3f408d2.png 1903-10-30 +d6fbbcee5ecf1095476c2cadc0a9b916.png 1858-06-25 +9e568bd17653cd7a2e4af0e5119460d3.png 1901-03-07 +5278e402b280c1c3274aa8d79e5c84be.png 1910-02-23 +b2f64a849310d43cf00020a590da7246.png 1909-02-11 +eb86ba820d9a9633ca4affb2e585badf.png 1920-05-15 +862b0332dbba653c2864a2b68024b0c9.png 1909-05-19 +6a1c4665a102a95b9733965c6358f280.png 1860-07-18 +a1e2d67cbf9a5603ad0236914942884c.png 1899-11-10 +060a0b2e073954911aa33e2e602437ab.png 1919-07-29 +2468c80edd996df1020ad6edf552cbcf.png 1902-07-23 +cd847c29400b1cf2a12b159ffeecaf5b.png 1900-06-30 +b2208db4c5f012995b5d604df63b5568.png 1909-10-13 +a346c158b5a1c084930207069ab22784.png 1900-02-16 +d3333f7518e90aefda98d89828da9d0c.png 1907-12-19 +8c27b657888b68398cc838738664fd0a.png 1896-10-31 +357456a194a2fb8792c7b304aeebedc2.png 1855-05-25 +3c19d47f50ab72b71cf471041285a13e.png 1903-09-09 +efe39629034252a2d38160ea7669c9c0.png 1885-11-17 +6ded05acfc369fab8769e2a4b66c6b60.png 1875-12-31 +439110f4a136f0a78a186f2f624b51ef.png 1915-01-15 +dc520ad05a921e6411f3dfad066ac9bc.png 1860-09-01 +7272d2a9cd6a5e04beb2f06891b1e7cf.png 1888-02-11 +2de90a9e775c6a3b48dd223770dadda8.png 1887-10-13 +5682ec7c1829253b8b3e028c9d79dbe2.png 1900-10-09 +cf0c3892a07b04c062e3b7397f35e7c8.png 1898-05-30 +e53db0df4ad1432d65d2411daca0fa17.png 1919-03-20 +ad21566a537bab70d19eaa0dbcefe7bb.png 1908-03-08 +e1c5d4a465c3539a1a1e02cacf73a2eb.png 1905-10-27 +0e4187ab76d5d87842499e95ad784a57.png 1887-07-22 +5781724268bef3a74b0c793ce11fc623.png 1885-02-23 +cf6c6358eba07707b86a05bf9cca1e8d.png 1899-05-20 +cd56e441076e8f2d0dc1c1bd242f5739.png 1890-08-21 +a19610ed3dc9657e2b7d645d7931698c.png 1906-07-05 +f6da6f8abc7704c31ac7f3b1adab8693.png 1883-03-19 +02b1943fac73f4e4e7f226587d251c1b.png 1863-11-06 +455646066237aa4e5f3f96dc5fbaffff.png 1911-06-17 +84c4437a068202cc062765ebffa1cec4.png 1909-01-01 +6b6e3a26d914214171372445a5b71072.png 1899-05-11 +17cbd1709c0b7e8e94930e4a4f1e6de3.png 1897-02-27 +c90057fb7b9407bdb31fcada179230ed.png 1898-08-25 +7ce1d6281d05e85700e951d2a0c45d91.png 1918-06-04 +f9dfc3d06daee9513c46de15f3ff12bf.png 1891-10-29 +2c7dd5c3fd04ef1c0dff4a106d0571ee.png 1903-05-02 +d910286ec41f098afcb826c7f3492790.png 1911-07-29 +b04531e04e97c742357463faa90c1ae0.png 1901-09-16 +e9ed7a56698cd203960373cd93c19820.png 1888-10-27 +e2ec032a15f6457db952c490c62b7aa0.png 1920-12-18 +a919e34d8ebb66a106ceeddbbca9b41b.png 1902-10-25 +6251fc35e846cd1bd5b6d4761d9c3cfd.png 1898-05-23 +673bba899da8bac3a791be2fd74ab14c.png 1921-10-04 +911de965fcba3f622aef2b13c82e798b.png 1901-01-26 +8d4eaa342956124798c34c92b28b4fe7.png 1920-04-30 +03be6fcae800a6f4aedfc62d1fa5950d.png 1889-10-17 +88bf482ccac4127dfeac7cad59c502a0.png 1878-07-20 +90f90d99d9bcab61b6bddb56e796a422.png 1904-01-30 +44b50f3b5e7ccf46186e6b8740e3e0bf.png 1886-06-29 +8ae3e862e5f54fbe2636be0d9a2e4312.png 1864-06-29 +c58a997fb8d9b3ff9a64397ea2e7b47c.png 1892-11-18 +73d8ef4892bb08fe5b59efccc7b756e1.png 1914-01-21 +acb5974ef9b53c45df6e4bebf0a06129.png 1905-11-27 +0b08a3a6d5c9566940eb4202c10aef30.png 1885-12-03 +f6fb46c44c8b9a397300681798b5c079.png 1900-09-13 +63134f19bc0035b7b40a641d1066c81d.png 1909-10-14 +7bb9d007d30fb11e5414553b7fb31300.png 1887-11-19 +cb96995e9d82971193891a76d24ae042.png 1920-05-01 +d17c57f90aa747c1828fbdb668a1e01f.png 1897-10-30 +9254478f68608c4ec3b5b02097c4b4ab.png 1889-04-11 +07765f9542bc05b246c286b65d4cdd0e.png 1902-11-13 +9d4add2922012cb8df651abcdfff67e1.png 1897-11-25 +24335190dd46ae62011f4a3878619feb.png 1900-11-24 +6e7c3099c0ed76ab3366274822a10183.png 1904-11-19 +1afa31b2a6cdd96c285d1d0b1afd29c9.png 1919-04-12 +1d7e95855f67df6fdacc02d2bc28359a.png 1884-11-01 +6807dcac964776ee37a2f63bf6a0d32b.png 1901-01-18 +a05afcfb5913a542a5a91aa4effd03b8.png 1918-01-25 +11f3e21c97ef6562128e4e809a53696f.png 1911-04-24 +3d0633cf31302bef65ccb91728311dad.png 1904-08-11 +5be49d4466244c43f8979b02937d126a.png 1915-04-03 +09a348c8f86de0be4725540e4ab4368b.png 1916-07-22 +8d1f0395ec7f7876cbbf6b710a440f68.png 1912-09-26 +fa428c3e7f1c7140338e267136c479e5.png 1906-04-21 +60e9a45874f9cc8c21e9f36ec206cd92.png 1918-03-12 +23364131c620ed8dc16a1a28b7644448.png 1900-06-27 +38120033d66c3ca49a3007b003af60bf.png 1897-04-23 +f725d29a9c7c9dc010cdc327c1ba472b.png 1920-01-10 +40e8a2e832b942879cc888fc3cd8832a.png 1920-05-11 +3cd1670c749006c2ff23394b84b1c870.png 1903-04-04 +9b79352250d079b953e96bf4ba405c07.png 1863-02-11 +9e98a0928fd4739129a4e10253121220.png 1922-08-11 +38628155f919adb261c54d47dcf7a4c5.png 1917-12-03 +cde816b97d7defa2008fa0ca15551e8b.png 1897-05-06 +d7f3398715287b660c51761c5ca27c3b.png 1889-04-04 +c23b9d919ca046719fffa9c2335e5872.png 1893-07-22 +4732b4d058f5f74736b21241ad31025e.png 1912-06-01 +3ceb6a100c9ddfbf3dc77bf6e3038159.png 1914-08-17 +6264ed4802c80332665a92d2c7703aaa.png 1905-03-23 +0375c5044235527ff151a26f64a7eebb.png 1886-05-17 +55317524f5a32fb697fc36d534c5cf3f.png 1903-12-25 +38554a6b9fdd1335fe35fecd65c0dfa6.png 1899-11-08 +189f95173afaffb41a14b1a69fbe90c0.png 1901-04-30 +f65482c7ff82f6f8d3e3fcb0fec89a62.png 1900-11-03 +e4b46abc485b44cd04ec104c8aa25d8b.png 1918-02-22 +dae43839951a0d77fd56c561d2e55d9e.png 1921-08-22 +d4fe8ae8d46ca2ab0418dfde9360fdd3.png 1908-06-19 +6ccbe8f5ad42e1686a45502f354c30b4.png 1919-06-04 +106b5b67d8d13e74fef7ae95fd4762fb.png 1919-08-08 +a10c2e9a4c59b68148a6951b763e7ac3.png 1910-02-03 +639f4b2acff7d6b30acf4c8ab0d9454e.png 1908-09-19 +5b22f8e9b8a21314a5ef5c8d62e467dd.png 1897-05-06 +6d21cdad041084d0edb5732ae21ba392.png 1887-04-07 +a7a28f95fc904e9fb020c99eda2cc6c0.png 1902-03-06 +dc1ec92b51b3bfe5bc5e5c382521d979.png 1914-11-07 +017371b06b7aad27687d971445f0ef4a.png 1915-03-24 +45cb302f5b78083974af880bee79a974.png 1900-04-16 +99be70e1b109ac55fb06b33f1095dbde.png 1920-07-17 +2b3b87c6bc72701647e1357b9870f9f2.png 1898-08-31 +b8076ec5a701324d614a50435787d1bc.png 1884-08-21 +671aaf15424c2589a46c587cb0cef003.png 1862-10-29 +11da81ef4686629b2b8ee127c60eed87.png 1887-05-19 +8cc175d775aa4f47dcb9fcb88c608976.png 1909-08-05 +1f444274972bca9f283ded9008cdfa31.png 1903-07-09 +560bb8005bdd3ca247406b7b2bc248fb.png 1886-05-31 +eee72aac86472c7b77c2369c34fd6242.png 1901-03-09 +bf6836b90be7f9cf2acd2bd8ee11b19d.png 1909-07-26 +9160bbda860f8502c29970eba4da1dbd.png 1904-04-11 +55463ef9779866ca2e5a2fb2366e3c59.png 1919-07-31 +d0df3efbed87b90fab150edf9487824b.png 1909-04-12 +ad7de4ec0238af3e338e0be66874676c.png 1907-11-02 +70087cf4ba2c10f6753ceee509d4adf7.png 1885-04-30 +b95a706e4880b1822249f3dce42aa77c.png 1900-05-11 +8a055d1a5b67c97c224525b83ad93424.png 1904-09-10 +1b4ccaa2f31a34f3c9a4853481121efa.png 1913-01-30 +2a47fb32db9051d2d3f67746541a9c3a.png 1899-12-02 +be6a041545309742f38a299b4f28b1cb.png 1921-05-21 +90c8c05da73221956571bea299835933.png 1902-05-21 +f8cf900bdd2d951f245321b8490e2173.png 1915-10-16 +3bc2d45c4517d20b40d4916bb03a1072.png 1901-02-04 +3c02e330702f63c41b8c2f4c7bb28447.png 1901-01-11 +d120cbfc2d0b01bf808c98e2c0155288.png 1884-09-20 +ecd34249bbaa90d5793d97e2cf52bd47.png 1863-03-02 +1afce4a1294674a19bbb5d728631d8c3.png 1917-02-09 +a4c945e3114313e43df414bab1fdc020.png 1905-07-27 +8ca6bf5f2ac2755428c6d924fb734da3.png 1918-06-28 +e7c4123e40b476a3ce7b47c24c29b1e8.png 1880-05-22 +b374e40ac316e271aa669898edd810a6.png 1919-02-15 +e845af8dd6f387f652136c97025848d5.png 1919-02-07 +dddf11b266735b1018718a326bc0b144.png 1914-08-10 +c85dd3269d97208a44734e7fdcbee681.png 1905-07-01 +7f254bf22dff7a6256284101108ba2c9.png 1884-08-28 +2ba7f55906b0c644bd39e3765cf70d80.png 1899-01-12 +96ad1b1eec8deb4a0e69f5147a62298b.png 1897-12-01 +2282a5cb1263a412a5e611672e4c90bc.png 1917-09-13 +797563d31d50ac722a929516e44269e3.png 1898-11-24 +c6b929678c063eae693b35209a9e224c.png 1907-11-22 +07896de5cbe2f17d342645dab8ece96b.png 1920-05-12 +14b7b1aa918e2c941c3f3db3fdcb0534.png 1900-01-05 +25ae2b0f65cea1b76d541343295df922.png 1913-03-13 +debb8c6d71a1cb423c311abbb4f412f1.png 1902-11-27 +98c8c590a6010ff931b2aaf359fac2af.png 1886-05-28 diff --git a/train2/pictures/00569dfa3d012e179cdef228185402b2.png b/train2/pictures/00569dfa3d012e179cdef228185402b2.png new file mode 100644 index 0000000..b49b945 Binary files /dev/null and b/train2/pictures/00569dfa3d012e179cdef228185402b2.png differ diff --git a/train2/pictures/0073212566d947842afe0ce4f588ac0f.png b/train2/pictures/0073212566d947842afe0ce4f588ac0f.png new file mode 100644 index 0000000..d1651f4 Binary files /dev/null and b/train2/pictures/0073212566d947842afe0ce4f588ac0f.png differ diff --git a/train2/pictures/00736f6211708950fb244ec597e101c4.png b/train2/pictures/00736f6211708950fb244ec597e101c4.png new file mode 100644 index 0000000..63dc5c0 Binary files /dev/null and b/train2/pictures/00736f6211708950fb244ec597e101c4.png differ diff --git a/train2/pictures/00a729b1639d1a0572fe344c80d8c31b.png b/train2/pictures/00a729b1639d1a0572fe344c80d8c31b.png new file mode 100644 index 0000000..fc7406a Binary files /dev/null and b/train2/pictures/00a729b1639d1a0572fe344c80d8c31b.png differ diff --git a/train2/pictures/00abae50fe64134a975f59e6bd59d516.png b/train2/pictures/00abae50fe64134a975f59e6bd59d516.png new file mode 100644 index 0000000..9be641a Binary files /dev/null and b/train2/pictures/00abae50fe64134a975f59e6bd59d516.png differ diff --git a/train2/pictures/00b6eff5f60a60664f96bd2d16b467c5.png b/train2/pictures/00b6eff5f60a60664f96bd2d16b467c5.png new file mode 100644 index 0000000..64e6f37 Binary files /dev/null and b/train2/pictures/00b6eff5f60a60664f96bd2d16b467c5.png differ diff --git a/train2/pictures/00bb7dd6d4edd291baf2429a668c1c5b.png b/train2/pictures/00bb7dd6d4edd291baf2429a668c1c5b.png new file mode 100644 index 0000000..f74eef2 Binary files /dev/null and b/train2/pictures/00bb7dd6d4edd291baf2429a668c1c5b.png differ diff --git a/train2/pictures/01127bca6c498e8be8873ba9e829f9e4.png b/train2/pictures/01127bca6c498e8be8873ba9e829f9e4.png new file mode 100644 index 0000000..b269c72 Binary files /dev/null and b/train2/pictures/01127bca6c498e8be8873ba9e829f9e4.png differ diff --git a/train2/pictures/013e1ec2c6d527c789735b13511f1a42.png b/train2/pictures/013e1ec2c6d527c789735b13511f1a42.png new file mode 100644 index 0000000..f60ad80 Binary files /dev/null and b/train2/pictures/013e1ec2c6d527c789735b13511f1a42.png differ diff --git a/train2/pictures/0166f4dd53d9ad3f4b478ddda4459fa0.png b/train2/pictures/0166f4dd53d9ad3f4b478ddda4459fa0.png new file mode 100644 index 0000000..f0e4155 Binary files /dev/null and b/train2/pictures/0166f4dd53d9ad3f4b478ddda4459fa0.png differ diff --git a/train2/pictures/016a20e7abb7270574a0d42400687ac8.png b/train2/pictures/016a20e7abb7270574a0d42400687ac8.png new file mode 100644 index 0000000..dd69057 Binary files /dev/null and b/train2/pictures/016a20e7abb7270574a0d42400687ac8.png differ diff --git a/train2/pictures/016f5f6eef8326d72a7b2becffb35008.png b/train2/pictures/016f5f6eef8326d72a7b2becffb35008.png new file mode 100644 index 0000000..89d3b78 Binary files /dev/null and b/train2/pictures/016f5f6eef8326d72a7b2becffb35008.png differ diff --git a/train2/pictures/017371b06b7aad27687d971445f0ef4a.png b/train2/pictures/017371b06b7aad27687d971445f0ef4a.png new file mode 100644 index 0000000..e56726a Binary files /dev/null and b/train2/pictures/017371b06b7aad27687d971445f0ef4a.png differ diff --git a/train2/pictures/01872a898443812550c5413b0158ea7d.png b/train2/pictures/01872a898443812550c5413b0158ea7d.png new file mode 100644 index 0000000..7e57237 Binary files /dev/null and b/train2/pictures/01872a898443812550c5413b0158ea7d.png differ diff --git a/train2/pictures/019549ab815981759264faf8e60062e8.png b/train2/pictures/019549ab815981759264faf8e60062e8.png new file mode 100644 index 0000000..86caa47 Binary files /dev/null and b/train2/pictures/019549ab815981759264faf8e60062e8.png differ diff --git a/train2/pictures/01b9b0b4d05cb11038f366fe12b2220f.png b/train2/pictures/01b9b0b4d05cb11038f366fe12b2220f.png new file mode 100644 index 0000000..2d484f3 Binary files /dev/null and b/train2/pictures/01b9b0b4d05cb11038f366fe12b2220f.png differ diff --git a/train2/pictures/021a3b64e69566e3c9b466a2fa729cbe.png b/train2/pictures/021a3b64e69566e3c9b466a2fa729cbe.png new file mode 100644 index 0000000..0bf7e84 Binary files /dev/null and b/train2/pictures/021a3b64e69566e3c9b466a2fa729cbe.png differ diff --git a/train2/pictures/0224bee1a1dac8c590889e3d7e9dff4f.png b/train2/pictures/0224bee1a1dac8c590889e3d7e9dff4f.png new file mode 100644 index 0000000..5192aef Binary files /dev/null and b/train2/pictures/0224bee1a1dac8c590889e3d7e9dff4f.png differ diff --git a/train2/pictures/022d42f280278c804f835dfc90e63dc0.png b/train2/pictures/022d42f280278c804f835dfc90e63dc0.png new file mode 100644 index 0000000..eefc7ca Binary files /dev/null and b/train2/pictures/022d42f280278c804f835dfc90e63dc0.png differ diff --git a/train2/pictures/0231c0bf5ce81d4d5b7a11a221561d50.png b/train2/pictures/0231c0bf5ce81d4d5b7a11a221561d50.png new file mode 100644 index 0000000..7ba1fd8 Binary files /dev/null and b/train2/pictures/0231c0bf5ce81d4d5b7a11a221561d50.png differ diff --git a/train2/pictures/0269adc064b8706efff2deef048a9ee5.png b/train2/pictures/0269adc064b8706efff2deef048a9ee5.png new file mode 100644 index 0000000..4376cf6 Binary files /dev/null and b/train2/pictures/0269adc064b8706efff2deef048a9ee5.png differ diff --git a/train2/pictures/0299fb555394e046c65be69d37ec1067.png b/train2/pictures/0299fb555394e046c65be69d37ec1067.png new file mode 100644 index 0000000..a270c3b Binary files /dev/null and b/train2/pictures/0299fb555394e046c65be69d37ec1067.png differ diff --git a/train2/pictures/029f1e951910f7427ed608646670f992.png b/train2/pictures/029f1e951910f7427ed608646670f992.png new file mode 100644 index 0000000..f9e3e43 Binary files /dev/null and b/train2/pictures/029f1e951910f7427ed608646670f992.png differ diff --git a/train2/pictures/02b1943fac73f4e4e7f226587d251c1b.png b/train2/pictures/02b1943fac73f4e4e7f226587d251c1b.png new file mode 100644 index 0000000..4e18621 Binary files /dev/null and b/train2/pictures/02b1943fac73f4e4e7f226587d251c1b.png differ diff --git a/train2/pictures/02e5def01eaa9c020106b0aa6ae6bcab.png b/train2/pictures/02e5def01eaa9c020106b0aa6ae6bcab.png new file mode 100644 index 0000000..c1cfba1 Binary files /dev/null and b/train2/pictures/02e5def01eaa9c020106b0aa6ae6bcab.png differ diff --git a/train2/pictures/02ecf9aca193170b5b08fd66d0bac28f.png b/train2/pictures/02ecf9aca193170b5b08fd66d0bac28f.png new file mode 100644 index 0000000..1d94a8a Binary files /dev/null and b/train2/pictures/02ecf9aca193170b5b08fd66d0bac28f.png differ diff --git a/train2/pictures/03269698ace4bff7fac129033e52a40f.png b/train2/pictures/03269698ace4bff7fac129033e52a40f.png new file mode 100644 index 0000000..478eb51 Binary files /dev/null and b/train2/pictures/03269698ace4bff7fac129033e52a40f.png differ diff --git a/train2/pictures/032f886d7d8db00df292006f08d7a0a2.png b/train2/pictures/032f886d7d8db00df292006f08d7a0a2.png new file mode 100644 index 0000000..4956a88 Binary files /dev/null and b/train2/pictures/032f886d7d8db00df292006f08d7a0a2.png differ diff --git a/train2/pictures/035a761eac3084b711ef705e806e5b79.png b/train2/pictures/035a761eac3084b711ef705e806e5b79.png new file mode 100644 index 0000000..ff622fe Binary files /dev/null and b/train2/pictures/035a761eac3084b711ef705e806e5b79.png differ diff --git a/train2/pictures/0375c5044235527ff151a26f64a7eebb.png b/train2/pictures/0375c5044235527ff151a26f64a7eebb.png new file mode 100644 index 0000000..bd63ef9 Binary files /dev/null and b/train2/pictures/0375c5044235527ff151a26f64a7eebb.png differ diff --git a/train2/pictures/03a84095dc6226ebf5c7993f8b3f93b8.png b/train2/pictures/03a84095dc6226ebf5c7993f8b3f93b8.png new file mode 100644 index 0000000..351b0bc Binary files /dev/null and b/train2/pictures/03a84095dc6226ebf5c7993f8b3f93b8.png differ diff --git a/train2/pictures/03be0461cdfd2cde2dca8cf892a61f10.png b/train2/pictures/03be0461cdfd2cde2dca8cf892a61f10.png new file mode 100644 index 0000000..544e85c Binary files /dev/null and b/train2/pictures/03be0461cdfd2cde2dca8cf892a61f10.png differ diff --git a/train2/pictures/03be6fcae800a6f4aedfc62d1fa5950d.png b/train2/pictures/03be6fcae800a6f4aedfc62d1fa5950d.png new file mode 100644 index 0000000..9f082cd Binary files /dev/null and b/train2/pictures/03be6fcae800a6f4aedfc62d1fa5950d.png differ diff --git a/train2/pictures/03e284ddfa10bd39454e1f1e9c7ba824.png b/train2/pictures/03e284ddfa10bd39454e1f1e9c7ba824.png new file mode 100644 index 0000000..d38b228 Binary files /dev/null and b/train2/pictures/03e284ddfa10bd39454e1f1e9c7ba824.png differ diff --git a/train2/pictures/043997d181a1b4be9b2489ec06f4d7f9.png b/train2/pictures/043997d181a1b4be9b2489ec06f4d7f9.png new file mode 100644 index 0000000..e89ef88 Binary files /dev/null and b/train2/pictures/043997d181a1b4be9b2489ec06f4d7f9.png differ diff --git a/train2/pictures/046f4a26181ca2c940391dc18220ac25.png b/train2/pictures/046f4a26181ca2c940391dc18220ac25.png new file mode 100644 index 0000000..b5911a9 Binary files /dev/null and b/train2/pictures/046f4a26181ca2c940391dc18220ac25.png differ diff --git a/train2/pictures/04bb9b97732ac92d41708e8362fbf0ba.png b/train2/pictures/04bb9b97732ac92d41708e8362fbf0ba.png new file mode 100644 index 0000000..388ad60 Binary files /dev/null and b/train2/pictures/04bb9b97732ac92d41708e8362fbf0ba.png differ diff --git a/train2/pictures/0508e25af90edb21748e512259596f7f.png b/train2/pictures/0508e25af90edb21748e512259596f7f.png new file mode 100644 index 0000000..e0325a8 Binary files /dev/null and b/train2/pictures/0508e25af90edb21748e512259596f7f.png differ diff --git a/train2/pictures/053ffc80a6f41b18297f631b142be2f2.png b/train2/pictures/053ffc80a6f41b18297f631b142be2f2.png new file mode 100644 index 0000000..73430e1 Binary files /dev/null and b/train2/pictures/053ffc80a6f41b18297f631b142be2f2.png differ diff --git a/train2/pictures/05548162ab4aead6ef942edddaff5094.png b/train2/pictures/05548162ab4aead6ef942edddaff5094.png new file mode 100644 index 0000000..8ac7c30 Binary files /dev/null and b/train2/pictures/05548162ab4aead6ef942edddaff5094.png differ diff --git a/train2/pictures/055dd6c808d904e2568d29876ddbb24d.png b/train2/pictures/055dd6c808d904e2568d29876ddbb24d.png new file mode 100644 index 0000000..f0d925e Binary files /dev/null and b/train2/pictures/055dd6c808d904e2568d29876ddbb24d.png differ diff --git a/train2/pictures/055ddc60b5bf59b04fb6937f8880c391.png b/train2/pictures/055ddc60b5bf59b04fb6937f8880c391.png new file mode 100644 index 0000000..256ebdc Binary files /dev/null and b/train2/pictures/055ddc60b5bf59b04fb6937f8880c391.png differ diff --git a/train2/pictures/0560f879aa5cc8b8f1291ab69a6a71c5.png b/train2/pictures/0560f879aa5cc8b8f1291ab69a6a71c5.png new file mode 100644 index 0000000..f487efe Binary files /dev/null and b/train2/pictures/0560f879aa5cc8b8f1291ab69a6a71c5.png differ diff --git a/train2/pictures/0562ff67dc6df30c8e5942ca9b6f9399.png b/train2/pictures/0562ff67dc6df30c8e5942ca9b6f9399.png new file mode 100644 index 0000000..19c5613 Binary files /dev/null and b/train2/pictures/0562ff67dc6df30c8e5942ca9b6f9399.png differ diff --git a/train2/pictures/05742bcc87190fb7adfda8023f4949e0.png b/train2/pictures/05742bcc87190fb7adfda8023f4949e0.png new file mode 100644 index 0000000..414e7e5 Binary files /dev/null and b/train2/pictures/05742bcc87190fb7adfda8023f4949e0.png differ diff --git a/train2/pictures/05c379fad2622dabd4aa767c9faf7ca4.png b/train2/pictures/05c379fad2622dabd4aa767c9faf7ca4.png new file mode 100644 index 0000000..2683009 Binary files /dev/null and b/train2/pictures/05c379fad2622dabd4aa767c9faf7ca4.png differ diff --git a/train2/pictures/05ecdda325a91cfd59f6f2320401101a.png b/train2/pictures/05ecdda325a91cfd59f6f2320401101a.png new file mode 100644 index 0000000..a9d2ef7 Binary files /dev/null and b/train2/pictures/05ecdda325a91cfd59f6f2320401101a.png differ diff --git a/train2/pictures/060a0b2e073954911aa33e2e602437ab.png b/train2/pictures/060a0b2e073954911aa33e2e602437ab.png new file mode 100644 index 0000000..4628ef1 Binary files /dev/null and b/train2/pictures/060a0b2e073954911aa33e2e602437ab.png differ diff --git a/train2/pictures/061d5bec4ac257ebc309e96c79f7296c.png b/train2/pictures/061d5bec4ac257ebc309e96c79f7296c.png new file mode 100644 index 0000000..91280a9 Binary files /dev/null and b/train2/pictures/061d5bec4ac257ebc309e96c79f7296c.png differ diff --git a/train2/pictures/065b40c2a39f24de69d74db042ff9fb0.png b/train2/pictures/065b40c2a39f24de69d74db042ff9fb0.png new file mode 100644 index 0000000..8eed36f Binary files /dev/null and b/train2/pictures/065b40c2a39f24de69d74db042ff9fb0.png differ diff --git a/train2/pictures/06aa1492de64879056de87630eff575b.png b/train2/pictures/06aa1492de64879056de87630eff575b.png new file mode 100644 index 0000000..6beca68 Binary files /dev/null and b/train2/pictures/06aa1492de64879056de87630eff575b.png differ diff --git a/train2/pictures/06b52d67a5baa2dcfc4385ae040e51f1.png b/train2/pictures/06b52d67a5baa2dcfc4385ae040e51f1.png new file mode 100644 index 0000000..5e75144 Binary files /dev/null and b/train2/pictures/06b52d67a5baa2dcfc4385ae040e51f1.png differ diff --git a/train2/pictures/06c7fd8b4b2d6038b56d3d6eb1f97bc7.png b/train2/pictures/06c7fd8b4b2d6038b56d3d6eb1f97bc7.png new file mode 100644 index 0000000..01ff039 Binary files /dev/null and b/train2/pictures/06c7fd8b4b2d6038b56d3d6eb1f97bc7.png differ diff --git a/train2/pictures/06d682862976d80031afd5757f294228.png b/train2/pictures/06d682862976d80031afd5757f294228.png new file mode 100644 index 0000000..b9932fd Binary files /dev/null and b/train2/pictures/06d682862976d80031afd5757f294228.png differ diff --git a/train2/pictures/06ec470501fa315bc2493fbb79921cc9.png b/train2/pictures/06ec470501fa315bc2493fbb79921cc9.png new file mode 100644 index 0000000..e9c38cd Binary files /dev/null and b/train2/pictures/06ec470501fa315bc2493fbb79921cc9.png differ diff --git a/train2/pictures/072dcaa4a588acf19148f78ab511eec9.png b/train2/pictures/072dcaa4a588acf19148f78ab511eec9.png new file mode 100644 index 0000000..8341c92 Binary files /dev/null and b/train2/pictures/072dcaa4a588acf19148f78ab511eec9.png differ diff --git a/train2/pictures/07765f9542bc05b246c286b65d4cdd0e.png b/train2/pictures/07765f9542bc05b246c286b65d4cdd0e.png new file mode 100644 index 0000000..d373edc Binary files /dev/null and b/train2/pictures/07765f9542bc05b246c286b65d4cdd0e.png differ diff --git a/train2/pictures/0786981339e41d5670dc6eaed29e067f.png b/train2/pictures/0786981339e41d5670dc6eaed29e067f.png new file mode 100644 index 0000000..c8fb4cd Binary files /dev/null and b/train2/pictures/0786981339e41d5670dc6eaed29e067f.png differ diff --git a/train2/pictures/07896de5cbe2f17d342645dab8ece96b.png b/train2/pictures/07896de5cbe2f17d342645dab8ece96b.png new file mode 100644 index 0000000..937cd6d Binary files /dev/null and b/train2/pictures/07896de5cbe2f17d342645dab8ece96b.png differ diff --git a/train2/pictures/0790f6a6a99bfa4472bd9828bc9a06d2.png b/train2/pictures/0790f6a6a99bfa4472bd9828bc9a06d2.png new file mode 100644 index 0000000..a9dc36e Binary files /dev/null and b/train2/pictures/0790f6a6a99bfa4472bd9828bc9a06d2.png differ diff --git a/train2/pictures/07d7ab62e738526fb530650a3ef77e1b.png b/train2/pictures/07d7ab62e738526fb530650a3ef77e1b.png new file mode 100644 index 0000000..12a2ae9 Binary files /dev/null and b/train2/pictures/07d7ab62e738526fb530650a3ef77e1b.png differ diff --git a/train2/pictures/082440d6664d9ccd36fbe9c6ed506719.png b/train2/pictures/082440d6664d9ccd36fbe9c6ed506719.png new file mode 100644 index 0000000..8b67a27 Binary files /dev/null and b/train2/pictures/082440d6664d9ccd36fbe9c6ed506719.png differ diff --git a/train2/pictures/0824939f8fed2b175096ff8a765efa20.png b/train2/pictures/0824939f8fed2b175096ff8a765efa20.png new file mode 100644 index 0000000..fffd88b Binary files /dev/null and b/train2/pictures/0824939f8fed2b175096ff8a765efa20.png differ diff --git a/train2/pictures/082e476da541f54d1574ae41c7f5a7fc.png b/train2/pictures/082e476da541f54d1574ae41c7f5a7fc.png new file mode 100644 index 0000000..1463108 Binary files /dev/null and b/train2/pictures/082e476da541f54d1574ae41c7f5a7fc.png differ diff --git a/train2/pictures/083000a07778ce66ef67609f41c4fdb9.png b/train2/pictures/083000a07778ce66ef67609f41c4fdb9.png new file mode 100644 index 0000000..99f5c3f Binary files /dev/null and b/train2/pictures/083000a07778ce66ef67609f41c4fdb9.png differ diff --git a/train2/pictures/08d499adc21ee148e8c0a7daa70d0488.png b/train2/pictures/08d499adc21ee148e8c0a7daa70d0488.png new file mode 100644 index 0000000..bf6790f Binary files /dev/null and b/train2/pictures/08d499adc21ee148e8c0a7daa70d0488.png differ diff --git a/train2/pictures/08dcbf5711d66f77be8d643b3cec4460.png b/train2/pictures/08dcbf5711d66f77be8d643b3cec4460.png new file mode 100644 index 0000000..deb49e2 Binary files /dev/null and b/train2/pictures/08dcbf5711d66f77be8d643b3cec4460.png differ diff --git a/train2/pictures/08f84ef17732f7409e03b684c68dc4c2.png b/train2/pictures/08f84ef17732f7409e03b684c68dc4c2.png new file mode 100644 index 0000000..6876984 Binary files /dev/null and b/train2/pictures/08f84ef17732f7409e03b684c68dc4c2.png differ diff --git a/train2/pictures/09065e43353273126c40866a814c9cb6.png b/train2/pictures/09065e43353273126c40866a814c9cb6.png new file mode 100644 index 0000000..f9c4bf0 Binary files /dev/null and b/train2/pictures/09065e43353273126c40866a814c9cb6.png differ diff --git a/train2/pictures/0996944a7e5dd490d2c6e058234a040d.png b/train2/pictures/0996944a7e5dd490d2c6e058234a040d.png new file mode 100644 index 0000000..09f274b Binary files /dev/null and b/train2/pictures/0996944a7e5dd490d2c6e058234a040d.png differ diff --git a/train2/pictures/09a1e100ea5e6c6866b0e21e43323ccc.png b/train2/pictures/09a1e100ea5e6c6866b0e21e43323ccc.png new file mode 100644 index 0000000..c79bb68 Binary files /dev/null and b/train2/pictures/09a1e100ea5e6c6866b0e21e43323ccc.png differ diff --git a/train2/pictures/09a348c8f86de0be4725540e4ab4368b.png b/train2/pictures/09a348c8f86de0be4725540e4ab4368b.png new file mode 100644 index 0000000..01d5fde Binary files /dev/null and b/train2/pictures/09a348c8f86de0be4725540e4ab4368b.png differ diff --git a/train2/pictures/09d8eec379e6dd149a11f0cc0125dc44.png b/train2/pictures/09d8eec379e6dd149a11f0cc0125dc44.png new file mode 100644 index 0000000..9b01ee5 Binary files /dev/null and b/train2/pictures/09d8eec379e6dd149a11f0cc0125dc44.png differ diff --git a/train2/pictures/09e105504a97f3d049d9475fa349e128.png b/train2/pictures/09e105504a97f3d049d9475fa349e128.png new file mode 100644 index 0000000..4b2f0e2 Binary files /dev/null and b/train2/pictures/09e105504a97f3d049d9475fa349e128.png differ diff --git a/train2/pictures/09fc36e2bc09ac74d21670746dbee3ab.png b/train2/pictures/09fc36e2bc09ac74d21670746dbee3ab.png new file mode 100644 index 0000000..2b3ec3b Binary files /dev/null and b/train2/pictures/09fc36e2bc09ac74d21670746dbee3ab.png differ diff --git a/train2/pictures/0a331ace330993746bc30b496f966d76.png b/train2/pictures/0a331ace330993746bc30b496f966d76.png new file mode 100644 index 0000000..9c238ad Binary files /dev/null and b/train2/pictures/0a331ace330993746bc30b496f966d76.png differ diff --git a/train2/pictures/0a443d8705aff4f65709f0f175acfab6.png b/train2/pictures/0a443d8705aff4f65709f0f175acfab6.png new file mode 100644 index 0000000..7d762a5 Binary files /dev/null and b/train2/pictures/0a443d8705aff4f65709f0f175acfab6.png differ diff --git a/train2/pictures/0a5ad450d302a9b5a92d1b8121364ca3.png b/train2/pictures/0a5ad450d302a9b5a92d1b8121364ca3.png new file mode 100644 index 0000000..67114f1 Binary files /dev/null and b/train2/pictures/0a5ad450d302a9b5a92d1b8121364ca3.png differ diff --git a/train2/pictures/0a7a5242337a293a1d9c09714bf06bda.png b/train2/pictures/0a7a5242337a293a1d9c09714bf06bda.png new file mode 100644 index 0000000..9f87cbb Binary files /dev/null and b/train2/pictures/0a7a5242337a293a1d9c09714bf06bda.png differ diff --git a/train2/pictures/0aa46d653d6bdcb72b76427e30400e32.png b/train2/pictures/0aa46d653d6bdcb72b76427e30400e32.png new file mode 100644 index 0000000..d2ea0ef Binary files /dev/null and b/train2/pictures/0aa46d653d6bdcb72b76427e30400e32.png differ diff --git a/train2/pictures/0aba4c11933e4dac637dcf7d807bce0e.png b/train2/pictures/0aba4c11933e4dac637dcf7d807bce0e.png new file mode 100644 index 0000000..efe7141 Binary files /dev/null and b/train2/pictures/0aba4c11933e4dac637dcf7d807bce0e.png differ diff --git a/train2/pictures/0ac47d3a9b0b1012914702ab9f83b64d.png b/train2/pictures/0ac47d3a9b0b1012914702ab9f83b64d.png new file mode 100644 index 0000000..cedc565 Binary files /dev/null and b/train2/pictures/0ac47d3a9b0b1012914702ab9f83b64d.png differ diff --git a/train2/pictures/0aee6ad8a3bc822eae49a909f2b6e803.png b/train2/pictures/0aee6ad8a3bc822eae49a909f2b6e803.png new file mode 100644 index 0000000..b4ea35b Binary files /dev/null and b/train2/pictures/0aee6ad8a3bc822eae49a909f2b6e803.png differ diff --git a/train2/pictures/0b08a3a6d5c9566940eb4202c10aef30.png b/train2/pictures/0b08a3a6d5c9566940eb4202c10aef30.png new file mode 100644 index 0000000..3d149c7 Binary files /dev/null and b/train2/pictures/0b08a3a6d5c9566940eb4202c10aef30.png differ diff --git a/train2/pictures/0b19f7c01cb6c8b5a1364bb681dc830f.png b/train2/pictures/0b19f7c01cb6c8b5a1364bb681dc830f.png new file mode 100644 index 0000000..00f8610 Binary files /dev/null and b/train2/pictures/0b19f7c01cb6c8b5a1364bb681dc830f.png differ diff --git a/train2/pictures/0b23810eec02a7e67d4da77bab73ca63.png b/train2/pictures/0b23810eec02a7e67d4da77bab73ca63.png new file mode 100644 index 0000000..7a9f9e1 Binary files /dev/null and b/train2/pictures/0b23810eec02a7e67d4da77bab73ca63.png differ diff --git a/train2/pictures/0b29b8392d43d887a68d8e9e1ea15119.png b/train2/pictures/0b29b8392d43d887a68d8e9e1ea15119.png new file mode 100644 index 0000000..45c36d2 Binary files /dev/null and b/train2/pictures/0b29b8392d43d887a68d8e9e1ea15119.png differ diff --git a/train2/pictures/0b309a9db0973d4ce773791db68769f3.png b/train2/pictures/0b309a9db0973d4ce773791db68769f3.png new file mode 100644 index 0000000..aabcac4 Binary files /dev/null and b/train2/pictures/0b309a9db0973d4ce773791db68769f3.png differ diff --git a/train2/pictures/0b57313da955d0659c45b347a714a33c.png b/train2/pictures/0b57313da955d0659c45b347a714a33c.png new file mode 100644 index 0000000..f010642 Binary files /dev/null and b/train2/pictures/0b57313da955d0659c45b347a714a33c.png differ diff --git a/train2/pictures/0b739eeb588a698006cf6b2cd2449408.png b/train2/pictures/0b739eeb588a698006cf6b2cd2449408.png new file mode 100644 index 0000000..6a4150e Binary files /dev/null and b/train2/pictures/0b739eeb588a698006cf6b2cd2449408.png differ diff --git a/train2/pictures/0b9b1986f708bcd161a5a64e7d7b1965.png b/train2/pictures/0b9b1986f708bcd161a5a64e7d7b1965.png new file mode 100644 index 0000000..4a97f11 Binary files /dev/null and b/train2/pictures/0b9b1986f708bcd161a5a64e7d7b1965.png differ diff --git a/train2/pictures/0bab7d67919c78924558a31b5b471308.png b/train2/pictures/0bab7d67919c78924558a31b5b471308.png new file mode 100644 index 0000000..0f9d3df Binary files /dev/null and b/train2/pictures/0bab7d67919c78924558a31b5b471308.png differ diff --git a/train2/pictures/0bbccf0aa8d38c25e630f20a8228da73.png b/train2/pictures/0bbccf0aa8d38c25e630f20a8228da73.png new file mode 100644 index 0000000..5379f3b Binary files /dev/null and b/train2/pictures/0bbccf0aa8d38c25e630f20a8228da73.png differ diff --git a/train2/pictures/0c5d3ea140692205e49ef519b017058d.png b/train2/pictures/0c5d3ea140692205e49ef519b017058d.png new file mode 100644 index 0000000..b8b9e50 Binary files /dev/null and b/train2/pictures/0c5d3ea140692205e49ef519b017058d.png differ diff --git a/train2/pictures/0c71dc7dd1c4bf4a22915232d19a5d26.png b/train2/pictures/0c71dc7dd1c4bf4a22915232d19a5d26.png new file mode 100644 index 0000000..e677fb6 Binary files /dev/null and b/train2/pictures/0c71dc7dd1c4bf4a22915232d19a5d26.png differ diff --git a/train2/pictures/0c95390afa8e4eedaa2cd3612396aa28.png b/train2/pictures/0c95390afa8e4eedaa2cd3612396aa28.png new file mode 100644 index 0000000..d39ad25 Binary files /dev/null and b/train2/pictures/0c95390afa8e4eedaa2cd3612396aa28.png differ diff --git a/train2/pictures/0cad33eb5900be3e9932a40a2dd0c13e.png b/train2/pictures/0cad33eb5900be3e9932a40a2dd0c13e.png new file mode 100644 index 0000000..991f0f5 Binary files /dev/null and b/train2/pictures/0cad33eb5900be3e9932a40a2dd0c13e.png differ diff --git a/train2/pictures/0d5e408931ff824f7d935062ba0e9be9.png b/train2/pictures/0d5e408931ff824f7d935062ba0e9be9.png new file mode 100644 index 0000000..5117cb9 Binary files /dev/null and b/train2/pictures/0d5e408931ff824f7d935062ba0e9be9.png differ diff --git a/train2/pictures/0d719a900283bb7515c6eb83c2877cfb.png b/train2/pictures/0d719a900283bb7515c6eb83c2877cfb.png new file mode 100644 index 0000000..17de3eb Binary files /dev/null and b/train2/pictures/0d719a900283bb7515c6eb83c2877cfb.png differ diff --git a/train2/pictures/0db42a63ff637bf461ce71ce31c4e112.png b/train2/pictures/0db42a63ff637bf461ce71ce31c4e112.png new file mode 100644 index 0000000..0402fae Binary files /dev/null and b/train2/pictures/0db42a63ff637bf461ce71ce31c4e112.png differ diff --git a/train2/pictures/0dbbf3080aa038568d662535b1da4c87.png b/train2/pictures/0dbbf3080aa038568d662535b1da4c87.png new file mode 100644 index 0000000..d616468 Binary files /dev/null and b/train2/pictures/0dbbf3080aa038568d662535b1da4c87.png differ diff --git a/train2/pictures/0df0277898ee4a299e3510310d9df125.png b/train2/pictures/0df0277898ee4a299e3510310d9df125.png new file mode 100644 index 0000000..fb4a7ff Binary files /dev/null and b/train2/pictures/0df0277898ee4a299e3510310d9df125.png differ diff --git a/train2/pictures/0e132bfbf6445bff948262fd6f842db7.png b/train2/pictures/0e132bfbf6445bff948262fd6f842db7.png new file mode 100644 index 0000000..b80fe88 Binary files /dev/null and b/train2/pictures/0e132bfbf6445bff948262fd6f842db7.png differ diff --git a/train2/pictures/0e4187ab76d5d87842499e95ad784a57.png b/train2/pictures/0e4187ab76d5d87842499e95ad784a57.png new file mode 100644 index 0000000..1144e73 Binary files /dev/null and b/train2/pictures/0e4187ab76d5d87842499e95ad784a57.png differ diff --git a/train2/pictures/0e435e76d2ffc351e2d4a34f3f54aa44.png b/train2/pictures/0e435e76d2ffc351e2d4a34f3f54aa44.png new file mode 100644 index 0000000..7c8fb3a Binary files /dev/null and b/train2/pictures/0e435e76d2ffc351e2d4a34f3f54aa44.png differ diff --git a/train2/pictures/0e4e793299754b21e9488130e569c844.png b/train2/pictures/0e4e793299754b21e9488130e569c844.png new file mode 100644 index 0000000..a88bade Binary files /dev/null and b/train2/pictures/0e4e793299754b21e9488130e569c844.png differ diff --git a/train2/pictures/0e52ccb3176b8efd07b90dcef372b7b6.png b/train2/pictures/0e52ccb3176b8efd07b90dcef372b7b6.png new file mode 100644 index 0000000..07ff25f Binary files /dev/null and b/train2/pictures/0e52ccb3176b8efd07b90dcef372b7b6.png differ diff --git a/train2/pictures/0e7f2e223857ccf6b533dfaba42d7406.png b/train2/pictures/0e7f2e223857ccf6b533dfaba42d7406.png new file mode 100644 index 0000000..4b64de5 Binary files /dev/null and b/train2/pictures/0e7f2e223857ccf6b533dfaba42d7406.png differ diff --git a/train2/pictures/0eb4a8c43c8b5e3c7f92f58d89d8e07b.png b/train2/pictures/0eb4a8c43c8b5e3c7f92f58d89d8e07b.png new file mode 100644 index 0000000..1d8aad0 Binary files /dev/null and b/train2/pictures/0eb4a8c43c8b5e3c7f92f58d89d8e07b.png differ diff --git a/train2/pictures/0ebdb73a3416903f9a7b161b86e94a05.png b/train2/pictures/0ebdb73a3416903f9a7b161b86e94a05.png new file mode 100644 index 0000000..77b8e81 Binary files /dev/null and b/train2/pictures/0ebdb73a3416903f9a7b161b86e94a05.png differ diff --git a/train2/pictures/0ee490e2609c21f33b77af52016fb511.png b/train2/pictures/0ee490e2609c21f33b77af52016fb511.png new file mode 100644 index 0000000..a0cce5c Binary files /dev/null and b/train2/pictures/0ee490e2609c21f33b77af52016fb511.png differ diff --git a/train2/pictures/0eebc9b18bf362bbfea4fc040f22f3ef.png b/train2/pictures/0eebc9b18bf362bbfea4fc040f22f3ef.png new file mode 100644 index 0000000..acded1d Binary files /dev/null and b/train2/pictures/0eebc9b18bf362bbfea4fc040f22f3ef.png differ diff --git a/train2/pictures/0f00e27cf9e67a92314a0c72e2fc26f4.png b/train2/pictures/0f00e27cf9e67a92314a0c72e2fc26f4.png new file mode 100644 index 0000000..7d1d40d Binary files /dev/null and b/train2/pictures/0f00e27cf9e67a92314a0c72e2fc26f4.png differ diff --git a/train2/pictures/0f956126d501153f68d216c13e6812a5.png b/train2/pictures/0f956126d501153f68d216c13e6812a5.png new file mode 100644 index 0000000..356928e Binary files /dev/null and b/train2/pictures/0f956126d501153f68d216c13e6812a5.png differ diff --git a/train2/pictures/0fa301897ebff522878902e67e1ccee7.png b/train2/pictures/0fa301897ebff522878902e67e1ccee7.png new file mode 100644 index 0000000..8eb6bec Binary files /dev/null and b/train2/pictures/0fa301897ebff522878902e67e1ccee7.png differ diff --git a/train2/pictures/0fb4357de098d8da7bdbf48c37e03907.png b/train2/pictures/0fb4357de098d8da7bdbf48c37e03907.png new file mode 100644 index 0000000..5d0f382 Binary files /dev/null and b/train2/pictures/0fb4357de098d8da7bdbf48c37e03907.png differ diff --git a/train2/pictures/0ffda9906d26890691abdf55481d46f4.png b/train2/pictures/0ffda9906d26890691abdf55481d46f4.png new file mode 100644 index 0000000..3802870 Binary files /dev/null and b/train2/pictures/0ffda9906d26890691abdf55481d46f4.png differ diff --git a/train2/pictures/0ffefa1716c92f89bf3de3083930fe59.png b/train2/pictures/0ffefa1716c92f89bf3de3083930fe59.png new file mode 100644 index 0000000..327a672 Binary files /dev/null and b/train2/pictures/0ffefa1716c92f89bf3de3083930fe59.png differ diff --git a/train2/pictures/1017af0a8cef80380717ae372f340cf6.png b/train2/pictures/1017af0a8cef80380717ae372f340cf6.png new file mode 100644 index 0000000..238e7fc Binary files /dev/null and b/train2/pictures/1017af0a8cef80380717ae372f340cf6.png differ diff --git a/train2/pictures/106b5b67d8d13e74fef7ae95fd4762fb.png b/train2/pictures/106b5b67d8d13e74fef7ae95fd4762fb.png new file mode 100644 index 0000000..0eb2275 Binary files /dev/null and b/train2/pictures/106b5b67d8d13e74fef7ae95fd4762fb.png differ diff --git a/train2/pictures/108e008aae7c27491b2034fb089fe3a8.png b/train2/pictures/108e008aae7c27491b2034fb089fe3a8.png new file mode 100644 index 0000000..35e7f7a Binary files /dev/null and b/train2/pictures/108e008aae7c27491b2034fb089fe3a8.png differ diff --git a/train2/pictures/10e0f3a1ae8a11c33a020603cd8ebb2f.png b/train2/pictures/10e0f3a1ae8a11c33a020603cd8ebb2f.png new file mode 100644 index 0000000..4f05fe4 Binary files /dev/null and b/train2/pictures/10e0f3a1ae8a11c33a020603cd8ebb2f.png differ diff --git a/train2/pictures/10f5f90bb7a29c6cdd007c58318fb642.png b/train2/pictures/10f5f90bb7a29c6cdd007c58318fb642.png new file mode 100644 index 0000000..a0dab11 Binary files /dev/null and b/train2/pictures/10f5f90bb7a29c6cdd007c58318fb642.png differ diff --git a/train2/pictures/10fa4cc3afc4e6211d7ce93424561027.png b/train2/pictures/10fa4cc3afc4e6211d7ce93424561027.png new file mode 100644 index 0000000..60075a7 Binary files /dev/null and b/train2/pictures/10fa4cc3afc4e6211d7ce93424561027.png differ diff --git a/train2/pictures/110d724e24aa1d702fbb05290cd82116.png b/train2/pictures/110d724e24aa1d702fbb05290cd82116.png new file mode 100644 index 0000000..64e10f9 Binary files /dev/null and b/train2/pictures/110d724e24aa1d702fbb05290cd82116.png differ diff --git a/train2/pictures/1128d43a29fee619fb4a83acbeebd377.png b/train2/pictures/1128d43a29fee619fb4a83acbeebd377.png new file mode 100644 index 0000000..9a5b031 Binary files /dev/null and b/train2/pictures/1128d43a29fee619fb4a83acbeebd377.png differ diff --git a/train2/pictures/11541685712318c933066da9e737f7c3.png b/train2/pictures/11541685712318c933066da9e737f7c3.png new file mode 100644 index 0000000..5af470a Binary files /dev/null and b/train2/pictures/11541685712318c933066da9e737f7c3.png differ diff --git a/train2/pictures/116dd7a9134ea35b78f9f5b32c6e6c28.png b/train2/pictures/116dd7a9134ea35b78f9f5b32c6e6c28.png new file mode 100644 index 0000000..b0e660c Binary files /dev/null and b/train2/pictures/116dd7a9134ea35b78f9f5b32c6e6c28.png differ diff --git a/train2/pictures/11ab817307d85d1645ac995e0fbc1a0e.png b/train2/pictures/11ab817307d85d1645ac995e0fbc1a0e.png new file mode 100644 index 0000000..44eb649 Binary files /dev/null and b/train2/pictures/11ab817307d85d1645ac995e0fbc1a0e.png differ diff --git a/train2/pictures/11cce0944be110872ac88f92129929d0.png b/train2/pictures/11cce0944be110872ac88f92129929d0.png new file mode 100644 index 0000000..3a1292b Binary files /dev/null and b/train2/pictures/11cce0944be110872ac88f92129929d0.png differ diff --git a/train2/pictures/11da81ef4686629b2b8ee127c60eed87.png b/train2/pictures/11da81ef4686629b2b8ee127c60eed87.png new file mode 100644 index 0000000..300a037 Binary files /dev/null and b/train2/pictures/11da81ef4686629b2b8ee127c60eed87.png differ diff --git a/train2/pictures/11eb2dcc7bc59dac957f613192db74cd.png b/train2/pictures/11eb2dcc7bc59dac957f613192db74cd.png new file mode 100644 index 0000000..e93c999 Binary files /dev/null and b/train2/pictures/11eb2dcc7bc59dac957f613192db74cd.png differ diff --git a/train2/pictures/11ecb16638bfc8c7693f8e790ca684d8.png b/train2/pictures/11ecb16638bfc8c7693f8e790ca684d8.png new file mode 100644 index 0000000..147a67b Binary files /dev/null and b/train2/pictures/11ecb16638bfc8c7693f8e790ca684d8.png differ diff --git a/train2/pictures/11f3e21c97ef6562128e4e809a53696f.png b/train2/pictures/11f3e21c97ef6562128e4e809a53696f.png new file mode 100644 index 0000000..fb2265d Binary files /dev/null and b/train2/pictures/11f3e21c97ef6562128e4e809a53696f.png differ diff --git a/train2/pictures/1214ed99fbe81472fa26b631ce3d7888.png b/train2/pictures/1214ed99fbe81472fa26b631ce3d7888.png new file mode 100644 index 0000000..c0d649d Binary files /dev/null and b/train2/pictures/1214ed99fbe81472fa26b631ce3d7888.png differ diff --git a/train2/pictures/1237f794f4aa3df2523990e38e8fd56f.png b/train2/pictures/1237f794f4aa3df2523990e38e8fd56f.png new file mode 100644 index 0000000..f77ec37 Binary files /dev/null and b/train2/pictures/1237f794f4aa3df2523990e38e8fd56f.png differ diff --git a/train2/pictures/128f9abe1703c4c57dc7e1d7bbf0b68e.png b/train2/pictures/128f9abe1703c4c57dc7e1d7bbf0b68e.png new file mode 100644 index 0000000..34ba082 Binary files /dev/null and b/train2/pictures/128f9abe1703c4c57dc7e1d7bbf0b68e.png differ diff --git a/train2/pictures/12a4a5ad8c15c3f0552aba98b9dbd2cd.png b/train2/pictures/12a4a5ad8c15c3f0552aba98b9dbd2cd.png new file mode 100644 index 0000000..6f9ae50 Binary files /dev/null and b/train2/pictures/12a4a5ad8c15c3f0552aba98b9dbd2cd.png differ diff --git a/train2/pictures/12c4ff24266fd4b2b8c2bc0ebce8708a.png b/train2/pictures/12c4ff24266fd4b2b8c2bc0ebce8708a.png new file mode 100644 index 0000000..72ac4a7 Binary files /dev/null and b/train2/pictures/12c4ff24266fd4b2b8c2bc0ebce8708a.png differ diff --git a/train2/pictures/1322b508ef9cc91e2db385c9ca27bd90.png b/train2/pictures/1322b508ef9cc91e2db385c9ca27bd90.png new file mode 100644 index 0000000..d80df75 Binary files /dev/null and b/train2/pictures/1322b508ef9cc91e2db385c9ca27bd90.png differ diff --git a/train2/pictures/135730739d154b7897e6fa4a4cf5e025.png b/train2/pictures/135730739d154b7897e6fa4a4cf5e025.png new file mode 100644 index 0000000..e4d2c7f Binary files /dev/null and b/train2/pictures/135730739d154b7897e6fa4a4cf5e025.png differ diff --git a/train2/pictures/135ce8680c273756952cdf94d9221e86.png b/train2/pictures/135ce8680c273756952cdf94d9221e86.png new file mode 100644 index 0000000..15eede2 Binary files /dev/null and b/train2/pictures/135ce8680c273756952cdf94d9221e86.png differ diff --git a/train2/pictures/139e60a43bffd7c5c28f107877de87e8.png b/train2/pictures/139e60a43bffd7c5c28f107877de87e8.png new file mode 100644 index 0000000..0c7280d Binary files /dev/null and b/train2/pictures/139e60a43bffd7c5c28f107877de87e8.png differ diff --git a/train2/pictures/13a6b1003ab9d46de4c82a1f5bd4e885.png b/train2/pictures/13a6b1003ab9d46de4c82a1f5bd4e885.png new file mode 100644 index 0000000..5016b84 Binary files /dev/null and b/train2/pictures/13a6b1003ab9d46de4c82a1f5bd4e885.png differ diff --git a/train2/pictures/13b7828f7e6589caf23977a4c414f0b6.png b/train2/pictures/13b7828f7e6589caf23977a4c414f0b6.png new file mode 100644 index 0000000..b26c180 Binary files /dev/null and b/train2/pictures/13b7828f7e6589caf23977a4c414f0b6.png differ diff --git a/train2/pictures/13c8e35445aac1ae2e0a9bffe4f61502.png b/train2/pictures/13c8e35445aac1ae2e0a9bffe4f61502.png new file mode 100644 index 0000000..15169e5 Binary files /dev/null and b/train2/pictures/13c8e35445aac1ae2e0a9bffe4f61502.png differ diff --git a/train2/pictures/13e4f4fc99d73e0c7daa615823f32443.png b/train2/pictures/13e4f4fc99d73e0c7daa615823f32443.png new file mode 100644 index 0000000..66805ec Binary files /dev/null and b/train2/pictures/13e4f4fc99d73e0c7daa615823f32443.png differ diff --git a/train2/pictures/145ab8d85c7aac4e91c1d1b97390fe1e.png b/train2/pictures/145ab8d85c7aac4e91c1d1b97390fe1e.png new file mode 100644 index 0000000..5dda9a5 Binary files /dev/null and b/train2/pictures/145ab8d85c7aac4e91c1d1b97390fe1e.png differ diff --git a/train2/pictures/1463e13a9135fb9be19178c1710a3039.png b/train2/pictures/1463e13a9135fb9be19178c1710a3039.png new file mode 100644 index 0000000..fe5d2f6 Binary files /dev/null and b/train2/pictures/1463e13a9135fb9be19178c1710a3039.png differ diff --git a/train2/pictures/14b7b1aa918e2c941c3f3db3fdcb0534.png b/train2/pictures/14b7b1aa918e2c941c3f3db3fdcb0534.png new file mode 100644 index 0000000..1a46d7d Binary files /dev/null and b/train2/pictures/14b7b1aa918e2c941c3f3db3fdcb0534.png differ diff --git a/train2/pictures/14c6cc565437edac61ed7ddc6b635e26.png b/train2/pictures/14c6cc565437edac61ed7ddc6b635e26.png new file mode 100644 index 0000000..db4bf38 Binary files /dev/null and b/train2/pictures/14c6cc565437edac61ed7ddc6b635e26.png differ diff --git a/train2/pictures/14d74ff38f9584ead69337ae1ff62373.png b/train2/pictures/14d74ff38f9584ead69337ae1ff62373.png new file mode 100644 index 0000000..afad3f8 Binary files /dev/null and b/train2/pictures/14d74ff38f9584ead69337ae1ff62373.png differ diff --git a/train2/pictures/14f98407c7c156661158ca1c655ca6ff.png b/train2/pictures/14f98407c7c156661158ca1c655ca6ff.png new file mode 100644 index 0000000..5c3a0b5 Binary files /dev/null and b/train2/pictures/14f98407c7c156661158ca1c655ca6ff.png differ diff --git a/train2/pictures/152cd3feed766ca9c8704b5cdb99f3e5.png b/train2/pictures/152cd3feed766ca9c8704b5cdb99f3e5.png new file mode 100644 index 0000000..8f0be7f Binary files /dev/null and b/train2/pictures/152cd3feed766ca9c8704b5cdb99f3e5.png differ diff --git a/train2/pictures/1555ed37768145dd41c8465283c2a8a1.png b/train2/pictures/1555ed37768145dd41c8465283c2a8a1.png new file mode 100644 index 0000000..e0a3d3f Binary files /dev/null and b/train2/pictures/1555ed37768145dd41c8465283c2a8a1.png differ diff --git a/train2/pictures/15b5a383e19d8b5015a4806753def3c6.png b/train2/pictures/15b5a383e19d8b5015a4806753def3c6.png new file mode 100644 index 0000000..1e46bb5 Binary files /dev/null and b/train2/pictures/15b5a383e19d8b5015a4806753def3c6.png differ diff --git a/train2/pictures/15b9fc4bd79abb577fc97313b09b23a6.png b/train2/pictures/15b9fc4bd79abb577fc97313b09b23a6.png new file mode 100644 index 0000000..7b6af8b Binary files /dev/null and b/train2/pictures/15b9fc4bd79abb577fc97313b09b23a6.png differ diff --git a/train2/pictures/15cda9757ba0b48f53394ee770a995d0.png b/train2/pictures/15cda9757ba0b48f53394ee770a995d0.png new file mode 100644 index 0000000..51e070d Binary files /dev/null and b/train2/pictures/15cda9757ba0b48f53394ee770a995d0.png differ diff --git a/train2/pictures/15cf1574bba60ad55e4ec6ac743314bb.png b/train2/pictures/15cf1574bba60ad55e4ec6ac743314bb.png new file mode 100644 index 0000000..934125d Binary files /dev/null and b/train2/pictures/15cf1574bba60ad55e4ec6ac743314bb.png differ diff --git a/train2/pictures/15dfa9875a8ef54d545ae21a9542798a.png b/train2/pictures/15dfa9875a8ef54d545ae21a9542798a.png new file mode 100644 index 0000000..87cf707 Binary files /dev/null and b/train2/pictures/15dfa9875a8ef54d545ae21a9542798a.png differ diff --git a/train2/pictures/15e070527297f3e9725b6457a66bc207.png b/train2/pictures/15e070527297f3e9725b6457a66bc207.png new file mode 100644 index 0000000..7a0c79e Binary files /dev/null and b/train2/pictures/15e070527297f3e9725b6457a66bc207.png differ diff --git a/train2/pictures/1601b03e0a2265636c6d1d89b9eeb54f.png b/train2/pictures/1601b03e0a2265636c6d1d89b9eeb54f.png new file mode 100644 index 0000000..072a4ce Binary files /dev/null and b/train2/pictures/1601b03e0a2265636c6d1d89b9eeb54f.png differ diff --git a/train2/pictures/1610085891235744a14c760c64b68e5e.png b/train2/pictures/1610085891235744a14c760c64b68e5e.png new file mode 100644 index 0000000..75c4616 Binary files /dev/null and b/train2/pictures/1610085891235744a14c760c64b68e5e.png differ diff --git a/train2/pictures/16364c7b4914cfa5d7ed6f69c320c378.png b/train2/pictures/16364c7b4914cfa5d7ed6f69c320c378.png new file mode 100644 index 0000000..b37469e Binary files /dev/null and b/train2/pictures/16364c7b4914cfa5d7ed6f69c320c378.png differ diff --git a/train2/pictures/16492cea234187c266ba0e08d1fed7c5.png b/train2/pictures/16492cea234187c266ba0e08d1fed7c5.png new file mode 100644 index 0000000..8af4384 Binary files /dev/null and b/train2/pictures/16492cea234187c266ba0e08d1fed7c5.png differ diff --git a/train2/pictures/165c4c6acb5d1219b8c5ac8268fffdf9.png b/train2/pictures/165c4c6acb5d1219b8c5ac8268fffdf9.png new file mode 100644 index 0000000..2529cad Binary files /dev/null and b/train2/pictures/165c4c6acb5d1219b8c5ac8268fffdf9.png differ diff --git a/train2/pictures/16798997e5ced5728d50c22c046d6dc6.png b/train2/pictures/16798997e5ced5728d50c22c046d6dc6.png new file mode 100644 index 0000000..6dfb07c Binary files /dev/null and b/train2/pictures/16798997e5ced5728d50c22c046d6dc6.png differ diff --git a/train2/pictures/16a4e4b3cd9083fb00c8c0df7dfe438c.png b/train2/pictures/16a4e4b3cd9083fb00c8c0df7dfe438c.png new file mode 100644 index 0000000..60bd59f Binary files /dev/null and b/train2/pictures/16a4e4b3cd9083fb00c8c0df7dfe438c.png differ diff --git a/train2/pictures/16a63b5a848bbf41b4549ccd5823eab8.png b/train2/pictures/16a63b5a848bbf41b4549ccd5823eab8.png new file mode 100644 index 0000000..4a61244 Binary files /dev/null and b/train2/pictures/16a63b5a848bbf41b4549ccd5823eab8.png differ diff --git a/train2/pictures/16c994991ff41e67e049ba66154be2bd.png b/train2/pictures/16c994991ff41e67e049ba66154be2bd.png new file mode 100644 index 0000000..bd89444 Binary files /dev/null and b/train2/pictures/16c994991ff41e67e049ba66154be2bd.png differ diff --git a/train2/pictures/16dddf9beab4f3de2ab3e87283c9f497.png b/train2/pictures/16dddf9beab4f3de2ab3e87283c9f497.png new file mode 100644 index 0000000..18d8175 Binary files /dev/null and b/train2/pictures/16dddf9beab4f3de2ab3e87283c9f497.png differ diff --git a/train2/pictures/16e9c8c8b127875eeb46f8872d92bef6.png b/train2/pictures/16e9c8c8b127875eeb46f8872d92bef6.png new file mode 100644 index 0000000..49eda8b Binary files /dev/null and b/train2/pictures/16e9c8c8b127875eeb46f8872d92bef6.png differ diff --git a/train2/pictures/16ebb778376520a52e3446d0d000e5a2.png b/train2/pictures/16ebb778376520a52e3446d0d000e5a2.png new file mode 100644 index 0000000..196df77 Binary files /dev/null and b/train2/pictures/16ebb778376520a52e3446d0d000e5a2.png differ diff --git a/train2/pictures/16ff9085beaa38da311c94f51b36bd11.png b/train2/pictures/16ff9085beaa38da311c94f51b36bd11.png new file mode 100644 index 0000000..114a030 Binary files /dev/null and b/train2/pictures/16ff9085beaa38da311c94f51b36bd11.png differ diff --git a/train2/pictures/17071bca1c496ff4235855c17f12e513.png b/train2/pictures/17071bca1c496ff4235855c17f12e513.png new file mode 100644 index 0000000..246f774 Binary files /dev/null and b/train2/pictures/17071bca1c496ff4235855c17f12e513.png differ diff --git a/train2/pictures/171fcf2211f6dc09fe9e8af459709549.png b/train2/pictures/171fcf2211f6dc09fe9e8af459709549.png new file mode 100644 index 0000000..533f439 Binary files /dev/null and b/train2/pictures/171fcf2211f6dc09fe9e8af459709549.png differ diff --git a/train2/pictures/175ef1b5af56d43553601222eb68fce0.png b/train2/pictures/175ef1b5af56d43553601222eb68fce0.png new file mode 100644 index 0000000..a931ce3 Binary files /dev/null and b/train2/pictures/175ef1b5af56d43553601222eb68fce0.png differ diff --git a/train2/pictures/178020cfa86a9494f95e9e3a7861e1e4.png b/train2/pictures/178020cfa86a9494f95e9e3a7861e1e4.png new file mode 100644 index 0000000..49f660d Binary files /dev/null and b/train2/pictures/178020cfa86a9494f95e9e3a7861e1e4.png differ diff --git a/train2/pictures/17a3498a2ce9484711cb90fa55890b85.png b/train2/pictures/17a3498a2ce9484711cb90fa55890b85.png new file mode 100644 index 0000000..ea45544 Binary files /dev/null and b/train2/pictures/17a3498a2ce9484711cb90fa55890b85.png differ diff --git a/train2/pictures/17cbd1709c0b7e8e94930e4a4f1e6de3.png b/train2/pictures/17cbd1709c0b7e8e94930e4a4f1e6de3.png new file mode 100644 index 0000000..77a912e Binary files /dev/null and b/train2/pictures/17cbd1709c0b7e8e94930e4a4f1e6de3.png differ diff --git a/train2/pictures/17deeb1f6ba6bb75ca7be482b6309fab.png b/train2/pictures/17deeb1f6ba6bb75ca7be482b6309fab.png new file mode 100644 index 0000000..4f3d5d1 Binary files /dev/null and b/train2/pictures/17deeb1f6ba6bb75ca7be482b6309fab.png differ diff --git a/train2/pictures/182607cf56f8e480119d9bb841cdd8a0.png b/train2/pictures/182607cf56f8e480119d9bb841cdd8a0.png new file mode 100644 index 0000000..68a9b50 Binary files /dev/null and b/train2/pictures/182607cf56f8e480119d9bb841cdd8a0.png differ diff --git a/train2/pictures/1845793731a75fda62c506832839b450.png b/train2/pictures/1845793731a75fda62c506832839b450.png new file mode 100644 index 0000000..ddc0c65 Binary files /dev/null and b/train2/pictures/1845793731a75fda62c506832839b450.png differ diff --git a/train2/pictures/1849e561a103218e8f434e77d666e10e.png b/train2/pictures/1849e561a103218e8f434e77d666e10e.png new file mode 100644 index 0000000..1481da0 Binary files /dev/null and b/train2/pictures/1849e561a103218e8f434e77d666e10e.png differ diff --git a/train2/pictures/187f49fed4f7b0628162c19a0e580ead.png b/train2/pictures/187f49fed4f7b0628162c19a0e580ead.png new file mode 100644 index 0000000..0632e46 Binary files /dev/null and b/train2/pictures/187f49fed4f7b0628162c19a0e580ead.png differ diff --git a/train2/pictures/1897997b2b7e8dba3043743b58947fce.png b/train2/pictures/1897997b2b7e8dba3043743b58947fce.png new file mode 100644 index 0000000..e5bc422 Binary files /dev/null and b/train2/pictures/1897997b2b7e8dba3043743b58947fce.png differ diff --git a/train2/pictures/189be7dc15176f336163e2d260100f63.png b/train2/pictures/189be7dc15176f336163e2d260100f63.png new file mode 100644 index 0000000..81ee4a3 Binary files /dev/null and b/train2/pictures/189be7dc15176f336163e2d260100f63.png differ diff --git a/train2/pictures/189f95173afaffb41a14b1a69fbe90c0.png b/train2/pictures/189f95173afaffb41a14b1a69fbe90c0.png new file mode 100644 index 0000000..11c88bf Binary files /dev/null and b/train2/pictures/189f95173afaffb41a14b1a69fbe90c0.png differ diff --git a/train2/pictures/18d24c5c514120c9259b4c18b1d331e1.png b/train2/pictures/18d24c5c514120c9259b4c18b1d331e1.png new file mode 100644 index 0000000..d18f2e0 Binary files /dev/null and b/train2/pictures/18d24c5c514120c9259b4c18b1d331e1.png differ diff --git a/train2/pictures/190ac1bc86d0ac990ca84bc4b7976015.png b/train2/pictures/190ac1bc86d0ac990ca84bc4b7976015.png new file mode 100644 index 0000000..0a901e1 Binary files /dev/null and b/train2/pictures/190ac1bc86d0ac990ca84bc4b7976015.png differ diff --git a/train2/pictures/19151cd7c7c089565a7c00333cb438b5.png b/train2/pictures/19151cd7c7c089565a7c00333cb438b5.png new file mode 100644 index 0000000..8623fb9 Binary files /dev/null and b/train2/pictures/19151cd7c7c089565a7c00333cb438b5.png differ diff --git a/train2/pictures/193f0ebb926eb68c34d38e481520f8f7.png b/train2/pictures/193f0ebb926eb68c34d38e481520f8f7.png new file mode 100644 index 0000000..0ee6128 Binary files /dev/null and b/train2/pictures/193f0ebb926eb68c34d38e481520f8f7.png differ diff --git a/train2/pictures/1943cc92cb3b4c91a57e40eb18abe465.png b/train2/pictures/1943cc92cb3b4c91a57e40eb18abe465.png new file mode 100644 index 0000000..9e8873c Binary files /dev/null and b/train2/pictures/1943cc92cb3b4c91a57e40eb18abe465.png differ diff --git a/train2/pictures/1999e92c38ef530992bab47dd4bf4543.png b/train2/pictures/1999e92c38ef530992bab47dd4bf4543.png new file mode 100644 index 0000000..b5cb7fa Binary files /dev/null and b/train2/pictures/1999e92c38ef530992bab47dd4bf4543.png differ diff --git a/train2/pictures/19a6651929e8cf4ae57649cb99dcb942.png b/train2/pictures/19a6651929e8cf4ae57649cb99dcb942.png new file mode 100644 index 0000000..b68da47 Binary files /dev/null and b/train2/pictures/19a6651929e8cf4ae57649cb99dcb942.png differ diff --git a/train2/pictures/19ca46c7d80f5de5b2430823572ed9a4.png b/train2/pictures/19ca46c7d80f5de5b2430823572ed9a4.png new file mode 100644 index 0000000..f8eeb47 Binary files /dev/null and b/train2/pictures/19ca46c7d80f5de5b2430823572ed9a4.png differ diff --git a/train2/pictures/19d66e17a846bfa9b4e01343e7500c3a.png b/train2/pictures/19d66e17a846bfa9b4e01343e7500c3a.png new file mode 100644 index 0000000..c55ef3b Binary files /dev/null and b/train2/pictures/19d66e17a846bfa9b4e01343e7500c3a.png differ diff --git a/train2/pictures/19d9baa2659edec18eb71a793bbbe26e.png b/train2/pictures/19d9baa2659edec18eb71a793bbbe26e.png new file mode 100644 index 0000000..56737a3 Binary files /dev/null and b/train2/pictures/19d9baa2659edec18eb71a793bbbe26e.png differ diff --git a/train2/pictures/1a15d6eba6b1b6019956fd117bfbdf69.png b/train2/pictures/1a15d6eba6b1b6019956fd117bfbdf69.png new file mode 100644 index 0000000..56da16a Binary files /dev/null and b/train2/pictures/1a15d6eba6b1b6019956fd117bfbdf69.png differ diff --git a/train2/pictures/1a1c3a701b982c3bf439890cc1e492d8.png b/train2/pictures/1a1c3a701b982c3bf439890cc1e492d8.png new file mode 100644 index 0000000..5f85488 Binary files /dev/null and b/train2/pictures/1a1c3a701b982c3bf439890cc1e492d8.png differ diff --git a/train2/pictures/1a257ed4f62eefb583db6840060bb431.png b/train2/pictures/1a257ed4f62eefb583db6840060bb431.png new file mode 100644 index 0000000..42f526b Binary files /dev/null and b/train2/pictures/1a257ed4f62eefb583db6840060bb431.png differ diff --git a/train2/pictures/1a497ea9d34c7525d39d1765e85d6e26.png b/train2/pictures/1a497ea9d34c7525d39d1765e85d6e26.png new file mode 100644 index 0000000..c65969a Binary files /dev/null and b/train2/pictures/1a497ea9d34c7525d39d1765e85d6e26.png differ diff --git a/train2/pictures/1a617f424d03fc73ad658fcd4f6d8b1f.png b/train2/pictures/1a617f424d03fc73ad658fcd4f6d8b1f.png new file mode 100644 index 0000000..c818ade Binary files /dev/null and b/train2/pictures/1a617f424d03fc73ad658fcd4f6d8b1f.png differ diff --git a/train2/pictures/1a74ca5de74d468f9936a23559ae6688.png b/train2/pictures/1a74ca5de74d468f9936a23559ae6688.png new file mode 100644 index 0000000..3d2ee60 Binary files /dev/null and b/train2/pictures/1a74ca5de74d468f9936a23559ae6688.png differ diff --git a/train2/pictures/1a89ffc23e75b230ebd7aa9ed1aa8ec7.png b/train2/pictures/1a89ffc23e75b230ebd7aa9ed1aa8ec7.png new file mode 100644 index 0000000..a3da483 Binary files /dev/null and b/train2/pictures/1a89ffc23e75b230ebd7aa9ed1aa8ec7.png differ diff --git a/train2/pictures/1a9d3aa39e0fa702fc1ffc7659f2fabf.png b/train2/pictures/1a9d3aa39e0fa702fc1ffc7659f2fabf.png new file mode 100644 index 0000000..ed38dcf Binary files /dev/null and b/train2/pictures/1a9d3aa39e0fa702fc1ffc7659f2fabf.png differ diff --git a/train2/pictures/1adbc66f78e1538dffbf19dd47fa4035.png b/train2/pictures/1adbc66f78e1538dffbf19dd47fa4035.png new file mode 100644 index 0000000..9b24d0d Binary files /dev/null and b/train2/pictures/1adbc66f78e1538dffbf19dd47fa4035.png differ diff --git a/train2/pictures/1ae3db13ecd0d7f951c4374cda322715.png b/train2/pictures/1ae3db13ecd0d7f951c4374cda322715.png new file mode 100644 index 0000000..b9746fd Binary files /dev/null and b/train2/pictures/1ae3db13ecd0d7f951c4374cda322715.png differ diff --git a/train2/pictures/1afa31b2a6cdd96c285d1d0b1afd29c9.png b/train2/pictures/1afa31b2a6cdd96c285d1d0b1afd29c9.png new file mode 100644 index 0000000..9df468e Binary files /dev/null and b/train2/pictures/1afa31b2a6cdd96c285d1d0b1afd29c9.png differ diff --git a/train2/pictures/1afa9c25383b76b8f5c5a830707705ae.png b/train2/pictures/1afa9c25383b76b8f5c5a830707705ae.png new file mode 100644 index 0000000..5964936 Binary files /dev/null and b/train2/pictures/1afa9c25383b76b8f5c5a830707705ae.png differ diff --git a/train2/pictures/1afce4a1294674a19bbb5d728631d8c3.png b/train2/pictures/1afce4a1294674a19bbb5d728631d8c3.png new file mode 100644 index 0000000..c24a531 Binary files /dev/null and b/train2/pictures/1afce4a1294674a19bbb5d728631d8c3.png differ diff --git a/train2/pictures/1b146d14b9bcce48934a5912680f2e23.png b/train2/pictures/1b146d14b9bcce48934a5912680f2e23.png new file mode 100644 index 0000000..f447007 Binary files /dev/null and b/train2/pictures/1b146d14b9bcce48934a5912680f2e23.png differ diff --git a/train2/pictures/1b24d74e3db76060f7c2d4307db2a101.png b/train2/pictures/1b24d74e3db76060f7c2d4307db2a101.png new file mode 100644 index 0000000..d875ca4 Binary files /dev/null and b/train2/pictures/1b24d74e3db76060f7c2d4307db2a101.png differ diff --git a/train2/pictures/1b28f4cce8062bf92437920f4e72c0bd.png b/train2/pictures/1b28f4cce8062bf92437920f4e72c0bd.png new file mode 100644 index 0000000..3bc2bf9 Binary files /dev/null and b/train2/pictures/1b28f4cce8062bf92437920f4e72c0bd.png differ diff --git a/train2/pictures/1b4ccaa2f31a34f3c9a4853481121efa.png b/train2/pictures/1b4ccaa2f31a34f3c9a4853481121efa.png new file mode 100644 index 0000000..c00ef76 Binary files /dev/null and b/train2/pictures/1b4ccaa2f31a34f3c9a4853481121efa.png differ diff --git a/train2/pictures/1b530d33bd2c0790a93c75c4f9b00d52.png b/train2/pictures/1b530d33bd2c0790a93c75c4f9b00d52.png new file mode 100644 index 0000000..cb876d3 Binary files /dev/null and b/train2/pictures/1b530d33bd2c0790a93c75c4f9b00d52.png differ diff --git a/train2/pictures/1b61fad06d1f4e219b9b34e5dc6c79dc.png b/train2/pictures/1b61fad06d1f4e219b9b34e5dc6c79dc.png new file mode 100644 index 0000000..e157f0b Binary files /dev/null and b/train2/pictures/1b61fad06d1f4e219b9b34e5dc6c79dc.png differ diff --git a/train2/pictures/1bc56045e708fabbb2a6d3fa5746208d.png b/train2/pictures/1bc56045e708fabbb2a6d3fa5746208d.png new file mode 100644 index 0000000..70e17c1 Binary files /dev/null and b/train2/pictures/1bc56045e708fabbb2a6d3fa5746208d.png differ diff --git a/train2/pictures/1bc849bd715482891258710f55959957.png b/train2/pictures/1bc849bd715482891258710f55959957.png new file mode 100644 index 0000000..d7f0cb8 Binary files /dev/null and b/train2/pictures/1bc849bd715482891258710f55959957.png differ diff --git a/train2/pictures/1bf4e280029059d75a4398a6229495cf.png b/train2/pictures/1bf4e280029059d75a4398a6229495cf.png new file mode 100644 index 0000000..91d8226 Binary files /dev/null and b/train2/pictures/1bf4e280029059d75a4398a6229495cf.png differ diff --git a/train2/pictures/1c1814c998ee8d3b466217237625a9bb.png b/train2/pictures/1c1814c998ee8d3b466217237625a9bb.png new file mode 100644 index 0000000..bba6fd6 Binary files /dev/null and b/train2/pictures/1c1814c998ee8d3b466217237625a9bb.png differ diff --git a/train2/pictures/1c64d11ed407a7dbd6e1602b7da53cba.png b/train2/pictures/1c64d11ed407a7dbd6e1602b7da53cba.png new file mode 100644 index 0000000..b0be873 Binary files /dev/null and b/train2/pictures/1c64d11ed407a7dbd6e1602b7da53cba.png differ diff --git a/train2/pictures/1c8151c83456a9c28dc69ddbd590bb61.png b/train2/pictures/1c8151c83456a9c28dc69ddbd590bb61.png new file mode 100644 index 0000000..1b6401f Binary files /dev/null and b/train2/pictures/1c8151c83456a9c28dc69ddbd590bb61.png differ diff --git a/train2/pictures/1d107161eda9522e850d45e32c7cd51a.png b/train2/pictures/1d107161eda9522e850d45e32c7cd51a.png new file mode 100644 index 0000000..ec93180 Binary files /dev/null and b/train2/pictures/1d107161eda9522e850d45e32c7cd51a.png differ diff --git a/train2/pictures/1d135bd2f640bdc50b82a2eb125805ba.png b/train2/pictures/1d135bd2f640bdc50b82a2eb125805ba.png new file mode 100644 index 0000000..5311a7c Binary files /dev/null and b/train2/pictures/1d135bd2f640bdc50b82a2eb125805ba.png differ diff --git a/train2/pictures/1d1f0c1bb9a22c568de5ad41ee5e5304.png b/train2/pictures/1d1f0c1bb9a22c568de5ad41ee5e5304.png new file mode 100644 index 0000000..5b3b580 Binary files /dev/null and b/train2/pictures/1d1f0c1bb9a22c568de5ad41ee5e5304.png differ diff --git a/train2/pictures/1d4550ab169c7b42bfd96325b4c2a3bd.png b/train2/pictures/1d4550ab169c7b42bfd96325b4c2a3bd.png new file mode 100644 index 0000000..27fab29 Binary files /dev/null and b/train2/pictures/1d4550ab169c7b42bfd96325b4c2a3bd.png differ diff --git a/train2/pictures/1d6f52c729271ce5cf92fced8ebc5166.png b/train2/pictures/1d6f52c729271ce5cf92fced8ebc5166.png new file mode 100644 index 0000000..20d8b9f Binary files /dev/null and b/train2/pictures/1d6f52c729271ce5cf92fced8ebc5166.png differ diff --git a/train2/pictures/1d73feab7ae0980490f08ffdfa920bdb.png b/train2/pictures/1d73feab7ae0980490f08ffdfa920bdb.png new file mode 100644 index 0000000..cde9ffc Binary files /dev/null and b/train2/pictures/1d73feab7ae0980490f08ffdfa920bdb.png differ diff --git a/train2/pictures/1d7e95855f67df6fdacc02d2bc28359a.png b/train2/pictures/1d7e95855f67df6fdacc02d2bc28359a.png new file mode 100644 index 0000000..444ddc0 Binary files /dev/null and b/train2/pictures/1d7e95855f67df6fdacc02d2bc28359a.png differ diff --git a/train2/pictures/1d7f625c68241f7c809c28510381da5f.png b/train2/pictures/1d7f625c68241f7c809c28510381da5f.png new file mode 100644 index 0000000..e7a1f5c Binary files /dev/null and b/train2/pictures/1d7f625c68241f7c809c28510381da5f.png differ diff --git a/train2/pictures/1d9160acc9112cb7e3cf41f69958c827.png b/train2/pictures/1d9160acc9112cb7e3cf41f69958c827.png new file mode 100644 index 0000000..f78b712 Binary files /dev/null and b/train2/pictures/1d9160acc9112cb7e3cf41f69958c827.png differ diff --git a/train2/pictures/1dc0e9e26d20b835459d9169e01f5283.png b/train2/pictures/1dc0e9e26d20b835459d9169e01f5283.png new file mode 100644 index 0000000..753fd4a Binary files /dev/null and b/train2/pictures/1dc0e9e26d20b835459d9169e01f5283.png differ diff --git a/train2/pictures/1dc2a206a9d531a06c915b12a61ed729.png b/train2/pictures/1dc2a206a9d531a06c915b12a61ed729.png new file mode 100644 index 0000000..b6feaf7 Binary files /dev/null and b/train2/pictures/1dc2a206a9d531a06c915b12a61ed729.png differ diff --git a/train2/pictures/1e2d4a5b6ba7c5e7ef3a95ab2d317c12.png b/train2/pictures/1e2d4a5b6ba7c5e7ef3a95ab2d317c12.png new file mode 100644 index 0000000..3ac5513 Binary files /dev/null and b/train2/pictures/1e2d4a5b6ba7c5e7ef3a95ab2d317c12.png differ diff --git a/train2/pictures/1e31c0eb4bb0ae93c38ea0d8a82d37a4.png b/train2/pictures/1e31c0eb4bb0ae93c38ea0d8a82d37a4.png new file mode 100644 index 0000000..87d0275 Binary files /dev/null and b/train2/pictures/1e31c0eb4bb0ae93c38ea0d8a82d37a4.png differ diff --git a/train2/pictures/1e459578b5e7969b4dd43084e1ae3d48.png b/train2/pictures/1e459578b5e7969b4dd43084e1ae3d48.png new file mode 100644 index 0000000..6238377 Binary files /dev/null and b/train2/pictures/1e459578b5e7969b4dd43084e1ae3d48.png differ diff --git a/train2/pictures/1e866cd77cf868bf39d583ec5acde454.png b/train2/pictures/1e866cd77cf868bf39d583ec5acde454.png new file mode 100644 index 0000000..a664b4f Binary files /dev/null and b/train2/pictures/1e866cd77cf868bf39d583ec5acde454.png differ diff --git a/train2/pictures/1e9e4fbf46cf3f6655b7d05a70a971b0.png b/train2/pictures/1e9e4fbf46cf3f6655b7d05a70a971b0.png new file mode 100644 index 0000000..348ec0a Binary files /dev/null and b/train2/pictures/1e9e4fbf46cf3f6655b7d05a70a971b0.png differ diff --git a/train2/pictures/1f22fc7db9375898afacc184f07677c6.png b/train2/pictures/1f22fc7db9375898afacc184f07677c6.png new file mode 100644 index 0000000..4366fe8 Binary files /dev/null and b/train2/pictures/1f22fc7db9375898afacc184f07677c6.png differ diff --git a/train2/pictures/1f444274972bca9f283ded9008cdfa31.png b/train2/pictures/1f444274972bca9f283ded9008cdfa31.png new file mode 100644 index 0000000..709fb06 Binary files /dev/null and b/train2/pictures/1f444274972bca9f283ded9008cdfa31.png differ diff --git a/train2/pictures/1faf37eccbc8a70288fef3479f2bbf3b.png b/train2/pictures/1faf37eccbc8a70288fef3479f2bbf3b.png new file mode 100644 index 0000000..50611c8 Binary files /dev/null and b/train2/pictures/1faf37eccbc8a70288fef3479f2bbf3b.png differ diff --git a/train2/pictures/1faf673b67f47edf1820e23c424f2f5f.png b/train2/pictures/1faf673b67f47edf1820e23c424f2f5f.png new file mode 100644 index 0000000..74b3819 Binary files /dev/null and b/train2/pictures/1faf673b67f47edf1820e23c424f2f5f.png differ diff --git a/train2/pictures/1fc8d59f919bb8f99e712dde71af10d1.png b/train2/pictures/1fc8d59f919bb8f99e712dde71af10d1.png new file mode 100644 index 0000000..9a73e39 Binary files /dev/null and b/train2/pictures/1fc8d59f919bb8f99e712dde71af10d1.png differ diff --git a/train2/pictures/1fd219b9a01df6ff34e75d051ff27e1f.png b/train2/pictures/1fd219b9a01df6ff34e75d051ff27e1f.png new file mode 100644 index 0000000..f293635 Binary files /dev/null and b/train2/pictures/1fd219b9a01df6ff34e75d051ff27e1f.png differ diff --git a/train2/pictures/1fd894c65a24a640f747e9cfe9fe8302.png b/train2/pictures/1fd894c65a24a640f747e9cfe9fe8302.png new file mode 100644 index 0000000..b1885fb Binary files /dev/null and b/train2/pictures/1fd894c65a24a640f747e9cfe9fe8302.png differ diff --git a/train2/pictures/202cd002650b2c8a65d6903a56717ff7.png b/train2/pictures/202cd002650b2c8a65d6903a56717ff7.png new file mode 100644 index 0000000..f13391d Binary files /dev/null and b/train2/pictures/202cd002650b2c8a65d6903a56717ff7.png differ diff --git a/train2/pictures/204a003ec222be9729d1fd3ba260ab7e.png b/train2/pictures/204a003ec222be9729d1fd3ba260ab7e.png new file mode 100644 index 0000000..269964e Binary files /dev/null and b/train2/pictures/204a003ec222be9729d1fd3ba260ab7e.png differ diff --git a/train2/pictures/207e1f404c63363d84b5de00c6232fb3.png b/train2/pictures/207e1f404c63363d84b5de00c6232fb3.png new file mode 100644 index 0000000..3cf6cfc Binary files /dev/null and b/train2/pictures/207e1f404c63363d84b5de00c6232fb3.png differ diff --git a/train2/pictures/20c9b094d869c1f1d9f8225346062245.png b/train2/pictures/20c9b094d869c1f1d9f8225346062245.png new file mode 100644 index 0000000..2ac000c Binary files /dev/null and b/train2/pictures/20c9b094d869c1f1d9f8225346062245.png differ diff --git a/train2/pictures/20e29be60846789ad56266d97f1d76e1.png b/train2/pictures/20e29be60846789ad56266d97f1d76e1.png new file mode 100644 index 0000000..661ee4f Binary files /dev/null and b/train2/pictures/20e29be60846789ad56266d97f1d76e1.png differ diff --git a/train2/pictures/21284cb5915e82f46d649676f2ae4665.png b/train2/pictures/21284cb5915e82f46d649676f2ae4665.png new file mode 100644 index 0000000..9303d9c Binary files /dev/null and b/train2/pictures/21284cb5915e82f46d649676f2ae4665.png differ diff --git a/train2/pictures/212a1f8f40e61df5f53aef50a781c701.png b/train2/pictures/212a1f8f40e61df5f53aef50a781c701.png new file mode 100644 index 0000000..756c307 Binary files /dev/null and b/train2/pictures/212a1f8f40e61df5f53aef50a781c701.png differ diff --git a/train2/pictures/212df4410faa74ee0cbfb7dbde5a7f76.png b/train2/pictures/212df4410faa74ee0cbfb7dbde5a7f76.png new file mode 100644 index 0000000..9c7e13a Binary files /dev/null and b/train2/pictures/212df4410faa74ee0cbfb7dbde5a7f76.png differ diff --git a/train2/pictures/2146f2fee44b9b3e3e2ff45219641d36.png b/train2/pictures/2146f2fee44b9b3e3e2ff45219641d36.png new file mode 100644 index 0000000..f5c37bf Binary files /dev/null and b/train2/pictures/2146f2fee44b9b3e3e2ff45219641d36.png differ diff --git a/train2/pictures/214b33251f34295248268cc4aa3b4f73.png b/train2/pictures/214b33251f34295248268cc4aa3b4f73.png new file mode 100644 index 0000000..a7d9476 Binary files /dev/null and b/train2/pictures/214b33251f34295248268cc4aa3b4f73.png differ diff --git a/train2/pictures/214e37873a7e70e4a5e05cca5962d1dc.png b/train2/pictures/214e37873a7e70e4a5e05cca5962d1dc.png new file mode 100644 index 0000000..98f00e9 Binary files /dev/null and b/train2/pictures/214e37873a7e70e4a5e05cca5962d1dc.png differ diff --git a/train2/pictures/215cd008beedb6d05ca4e4f7a4f0b27c.png b/train2/pictures/215cd008beedb6d05ca4e4f7a4f0b27c.png new file mode 100644 index 0000000..4abf0c1 Binary files /dev/null and b/train2/pictures/215cd008beedb6d05ca4e4f7a4f0b27c.png differ diff --git a/train2/pictures/21d0e5d798bc8295150503e7562b7c56.png b/train2/pictures/21d0e5d798bc8295150503e7562b7c56.png new file mode 100644 index 0000000..ddb165e Binary files /dev/null and b/train2/pictures/21d0e5d798bc8295150503e7562b7c56.png differ diff --git a/train2/pictures/22195e0dcc31638df8783b4d15a6c1d9.png b/train2/pictures/22195e0dcc31638df8783b4d15a6c1d9.png new file mode 100644 index 0000000..aa1c963 Binary files /dev/null and b/train2/pictures/22195e0dcc31638df8783b4d15a6c1d9.png differ diff --git a/train2/pictures/22196c5c43d0343f929ea51dd25debc3.png b/train2/pictures/22196c5c43d0343f929ea51dd25debc3.png new file mode 100644 index 0000000..72b59a1 Binary files /dev/null and b/train2/pictures/22196c5c43d0343f929ea51dd25debc3.png differ diff --git a/train2/pictures/221d9525e5c38fbb6b91355c6ea4fe78.png b/train2/pictures/221d9525e5c38fbb6b91355c6ea4fe78.png new file mode 100644 index 0000000..0903fd7 Binary files /dev/null and b/train2/pictures/221d9525e5c38fbb6b91355c6ea4fe78.png differ diff --git a/train2/pictures/222f4859ad26e6ad1ed7372ec61fe27c.png b/train2/pictures/222f4859ad26e6ad1ed7372ec61fe27c.png new file mode 100644 index 0000000..40bb746 Binary files /dev/null and b/train2/pictures/222f4859ad26e6ad1ed7372ec61fe27c.png differ diff --git a/train2/pictures/223de41189d98908f0f1f7dd88ff20bc.png b/train2/pictures/223de41189d98908f0f1f7dd88ff20bc.png new file mode 100644 index 0000000..687e868 Binary files /dev/null and b/train2/pictures/223de41189d98908f0f1f7dd88ff20bc.png differ diff --git a/train2/pictures/2260561deded3a75b5483239237cc129.png b/train2/pictures/2260561deded3a75b5483239237cc129.png new file mode 100644 index 0000000..89461e3 Binary files /dev/null and b/train2/pictures/2260561deded3a75b5483239237cc129.png differ diff --git a/train2/pictures/227973560710b0cac72fdfaf0ff6604d.png b/train2/pictures/227973560710b0cac72fdfaf0ff6604d.png new file mode 100644 index 0000000..3ecc8e1 Binary files /dev/null and b/train2/pictures/227973560710b0cac72fdfaf0ff6604d.png differ diff --git a/train2/pictures/2282a5cb1263a412a5e611672e4c90bc.png b/train2/pictures/2282a5cb1263a412a5e611672e4c90bc.png new file mode 100644 index 0000000..b2194d7 Binary files /dev/null and b/train2/pictures/2282a5cb1263a412a5e611672e4c90bc.png differ diff --git a/train2/pictures/228f93931f39a4586d70e96d10c5bcd2.png b/train2/pictures/228f93931f39a4586d70e96d10c5bcd2.png new file mode 100644 index 0000000..15e0448 Binary files /dev/null and b/train2/pictures/228f93931f39a4586d70e96d10c5bcd2.png differ diff --git a/train2/pictures/22bf5251caba2a97e8aa5f40a11cfd9b.png b/train2/pictures/22bf5251caba2a97e8aa5f40a11cfd9b.png new file mode 100644 index 0000000..d48e0ff Binary files /dev/null and b/train2/pictures/22bf5251caba2a97e8aa5f40a11cfd9b.png differ diff --git a/train2/pictures/22df21c82d2c3e2bc2a7c72541151f1b.png b/train2/pictures/22df21c82d2c3e2bc2a7c72541151f1b.png new file mode 100644 index 0000000..4642a0b Binary files /dev/null and b/train2/pictures/22df21c82d2c3e2bc2a7c72541151f1b.png differ diff --git a/train2/pictures/23364131c620ed8dc16a1a28b7644448.png b/train2/pictures/23364131c620ed8dc16a1a28b7644448.png new file mode 100644 index 0000000..feeb6fe Binary files /dev/null and b/train2/pictures/23364131c620ed8dc16a1a28b7644448.png differ diff --git a/train2/pictures/234abf033138a90e1ab6d3fb63ad04ef.png b/train2/pictures/234abf033138a90e1ab6d3fb63ad04ef.png new file mode 100644 index 0000000..35cfcc7 Binary files /dev/null and b/train2/pictures/234abf033138a90e1ab6d3fb63ad04ef.png differ diff --git a/train2/pictures/2370b5f2844e8f3eaa6f6c3c0dfc6dfa.png b/train2/pictures/2370b5f2844e8f3eaa6f6c3c0dfc6dfa.png new file mode 100644 index 0000000..28200b2 Binary files /dev/null and b/train2/pictures/2370b5f2844e8f3eaa6f6c3c0dfc6dfa.png differ diff --git a/train2/pictures/237ce58641a914efd647ccb0e6005e3d.png b/train2/pictures/237ce58641a914efd647ccb0e6005e3d.png new file mode 100644 index 0000000..b741057 Binary files /dev/null and b/train2/pictures/237ce58641a914efd647ccb0e6005e3d.png differ diff --git a/train2/pictures/2390278598c3aea630d7a46178cacbe4.png b/train2/pictures/2390278598c3aea630d7a46178cacbe4.png new file mode 100644 index 0000000..620cbd6 Binary files /dev/null and b/train2/pictures/2390278598c3aea630d7a46178cacbe4.png differ diff --git a/train2/pictures/23bbd2fa3eb282428d9e8086d4a0a50e.png b/train2/pictures/23bbd2fa3eb282428d9e8086d4a0a50e.png new file mode 100644 index 0000000..cc28498 Binary files /dev/null and b/train2/pictures/23bbd2fa3eb282428d9e8086d4a0a50e.png differ diff --git a/train2/pictures/23d2bf9efc5e5f49167eb343474df1e7.png b/train2/pictures/23d2bf9efc5e5f49167eb343474df1e7.png new file mode 100644 index 0000000..b0df982 Binary files /dev/null and b/train2/pictures/23d2bf9efc5e5f49167eb343474df1e7.png differ diff --git a/train2/pictures/23fc4e261e436bbdd9322410f4d968db.png b/train2/pictures/23fc4e261e436bbdd9322410f4d968db.png new file mode 100644 index 0000000..4e349c2 Binary files /dev/null and b/train2/pictures/23fc4e261e436bbdd9322410f4d968db.png differ diff --git a/train2/pictures/241769c509797f2b534a2ecdd65237b1.png b/train2/pictures/241769c509797f2b534a2ecdd65237b1.png new file mode 100644 index 0000000..3eb33fc Binary files /dev/null and b/train2/pictures/241769c509797f2b534a2ecdd65237b1.png differ diff --git a/train2/pictures/241c19c585ce13ab400e87d0e984daf6.png b/train2/pictures/241c19c585ce13ab400e87d0e984daf6.png new file mode 100644 index 0000000..30cf6b1 Binary files /dev/null and b/train2/pictures/241c19c585ce13ab400e87d0e984daf6.png differ diff --git a/train2/pictures/24335190dd46ae62011f4a3878619feb.png b/train2/pictures/24335190dd46ae62011f4a3878619feb.png new file mode 100644 index 0000000..5c1a320 Binary files /dev/null and b/train2/pictures/24335190dd46ae62011f4a3878619feb.png differ diff --git a/train2/pictures/244c03f555acf128e4d32f98b38ff025.png b/train2/pictures/244c03f555acf128e4d32f98b38ff025.png new file mode 100644 index 0000000..1614f80 Binary files /dev/null and b/train2/pictures/244c03f555acf128e4d32f98b38ff025.png differ diff --git a/train2/pictures/2468c80edd996df1020ad6edf552cbcf.png b/train2/pictures/2468c80edd996df1020ad6edf552cbcf.png new file mode 100644 index 0000000..b474da6 Binary files /dev/null and b/train2/pictures/2468c80edd996df1020ad6edf552cbcf.png differ diff --git a/train2/pictures/24b65ce939315d743c4d5872d296033e.png b/train2/pictures/24b65ce939315d743c4d5872d296033e.png new file mode 100644 index 0000000..1b6ac2f Binary files /dev/null and b/train2/pictures/24b65ce939315d743c4d5872d296033e.png differ diff --git a/train2/pictures/24c19a9d8d094eaf394c2584028c9e5e.png b/train2/pictures/24c19a9d8d094eaf394c2584028c9e5e.png new file mode 100644 index 0000000..2225e7c Binary files /dev/null and b/train2/pictures/24c19a9d8d094eaf394c2584028c9e5e.png differ diff --git a/train2/pictures/2500bc069c64275ddccd8bdc4bfd1a8b.png b/train2/pictures/2500bc069c64275ddccd8bdc4bfd1a8b.png new file mode 100644 index 0000000..b24e536 Binary files /dev/null and b/train2/pictures/2500bc069c64275ddccd8bdc4bfd1a8b.png differ diff --git a/train2/pictures/250cd6b9ec7fd1204c74fddf5f5d3aa1.png b/train2/pictures/250cd6b9ec7fd1204c74fddf5f5d3aa1.png new file mode 100644 index 0000000..88b7c09 Binary files /dev/null and b/train2/pictures/250cd6b9ec7fd1204c74fddf5f5d3aa1.png differ diff --git a/train2/pictures/251eb97a14d889fd8b0ad679d16c14eb.png b/train2/pictures/251eb97a14d889fd8b0ad679d16c14eb.png new file mode 100644 index 0000000..2e64c33 Binary files /dev/null and b/train2/pictures/251eb97a14d889fd8b0ad679d16c14eb.png differ diff --git a/train2/pictures/253e016f70eb85b274a870daec88a086.png b/train2/pictures/253e016f70eb85b274a870daec88a086.png new file mode 100644 index 0000000..d59c4da Binary files /dev/null and b/train2/pictures/253e016f70eb85b274a870daec88a086.png differ diff --git a/train2/pictures/256791520a68445d347668ee90cbd3f6.png b/train2/pictures/256791520a68445d347668ee90cbd3f6.png new file mode 100644 index 0000000..7d61a01 Binary files /dev/null and b/train2/pictures/256791520a68445d347668ee90cbd3f6.png differ diff --git a/train2/pictures/2572e57c05322413720a9917f2969c49.png b/train2/pictures/2572e57c05322413720a9917f2969c49.png new file mode 100644 index 0000000..c7957fe Binary files /dev/null and b/train2/pictures/2572e57c05322413720a9917f2969c49.png differ diff --git a/train2/pictures/25ac9d97ac6f1f25c67be4b25b9d0393.png b/train2/pictures/25ac9d97ac6f1f25c67be4b25b9d0393.png new file mode 100644 index 0000000..8546e3a Binary files /dev/null and b/train2/pictures/25ac9d97ac6f1f25c67be4b25b9d0393.png differ diff --git a/train2/pictures/25ae2b0f65cea1b76d541343295df922.png b/train2/pictures/25ae2b0f65cea1b76d541343295df922.png new file mode 100644 index 0000000..d410743 Binary files /dev/null and b/train2/pictures/25ae2b0f65cea1b76d541343295df922.png differ diff --git a/train2/pictures/25b526ea769a399aed267be20fdb3cd7.png b/train2/pictures/25b526ea769a399aed267be20fdb3cd7.png new file mode 100644 index 0000000..d86258b Binary files /dev/null and b/train2/pictures/25b526ea769a399aed267be20fdb3cd7.png differ diff --git a/train2/pictures/25dbfac9bc57c80294592a9592953cb0.png b/train2/pictures/25dbfac9bc57c80294592a9592953cb0.png new file mode 100644 index 0000000..ab710a5 Binary files /dev/null and b/train2/pictures/25dbfac9bc57c80294592a9592953cb0.png differ diff --git a/train2/pictures/25f9971f34a2526e8d53e90fa3d50631.png b/train2/pictures/25f9971f34a2526e8d53e90fa3d50631.png new file mode 100644 index 0000000..bca1bf0 Binary files /dev/null and b/train2/pictures/25f9971f34a2526e8d53e90fa3d50631.png differ diff --git a/train2/pictures/25fccf6e5d79385b1d1d91021aa58f0a.png b/train2/pictures/25fccf6e5d79385b1d1d91021aa58f0a.png new file mode 100644 index 0000000..ce61ef2 Binary files /dev/null and b/train2/pictures/25fccf6e5d79385b1d1d91021aa58f0a.png differ diff --git a/train2/pictures/2610fcc226514029cd43ce8e36b32ccb.png b/train2/pictures/2610fcc226514029cd43ce8e36b32ccb.png new file mode 100644 index 0000000..ae15758 Binary files /dev/null and b/train2/pictures/2610fcc226514029cd43ce8e36b32ccb.png differ diff --git a/train2/pictures/2611234dff9e2855d96ef21a8b8ec7e6.png b/train2/pictures/2611234dff9e2855d96ef21a8b8ec7e6.png new file mode 100644 index 0000000..ae29b2a Binary files /dev/null and b/train2/pictures/2611234dff9e2855d96ef21a8b8ec7e6.png differ diff --git a/train2/pictures/263783bf00f2169c80c175fd27186f34.png b/train2/pictures/263783bf00f2169c80c175fd27186f34.png new file mode 100644 index 0000000..98cd94a Binary files /dev/null and b/train2/pictures/263783bf00f2169c80c175fd27186f34.png differ diff --git a/train2/pictures/265bb9555f38325fc24fe28528524d89.png b/train2/pictures/265bb9555f38325fc24fe28528524d89.png new file mode 100644 index 0000000..9dff55a Binary files /dev/null and b/train2/pictures/265bb9555f38325fc24fe28528524d89.png differ diff --git a/train2/pictures/26980b4ee096801a99caeaa058542b7c.png b/train2/pictures/26980b4ee096801a99caeaa058542b7c.png new file mode 100644 index 0000000..090c55a Binary files /dev/null and b/train2/pictures/26980b4ee096801a99caeaa058542b7c.png differ diff --git a/train2/pictures/26bdd53585558a415f3801f31b9a4672.png b/train2/pictures/26bdd53585558a415f3801f31b9a4672.png new file mode 100644 index 0000000..d75f626 Binary files /dev/null and b/train2/pictures/26bdd53585558a415f3801f31b9a4672.png differ diff --git a/train2/pictures/26e319b070839ce2520b17c71c968942.png b/train2/pictures/26e319b070839ce2520b17c71c968942.png new file mode 100644 index 0000000..d222ad0 Binary files /dev/null and b/train2/pictures/26e319b070839ce2520b17c71c968942.png differ diff --git a/train2/pictures/26f1011111d1c36a0123d493ff7d958b.png b/train2/pictures/26f1011111d1c36a0123d493ff7d958b.png new file mode 100644 index 0000000..d447018 Binary files /dev/null and b/train2/pictures/26f1011111d1c36a0123d493ff7d958b.png differ diff --git a/train2/pictures/2756d4d7e01f464da28d9f0d33aff845.png b/train2/pictures/2756d4d7e01f464da28d9f0d33aff845.png new file mode 100644 index 0000000..4c9a80b Binary files /dev/null and b/train2/pictures/2756d4d7e01f464da28d9f0d33aff845.png differ diff --git a/train2/pictures/275ac8f2cd55d408db7ae20fc69c8704.png b/train2/pictures/275ac8f2cd55d408db7ae20fc69c8704.png new file mode 100644 index 0000000..5c9983c Binary files /dev/null and b/train2/pictures/275ac8f2cd55d408db7ae20fc69c8704.png differ diff --git a/train2/pictures/27792558b619c2cf56fd99246fe6e853.png b/train2/pictures/27792558b619c2cf56fd99246fe6e853.png new file mode 100644 index 0000000..61346a9 Binary files /dev/null and b/train2/pictures/27792558b619c2cf56fd99246fe6e853.png differ diff --git a/train2/pictures/27a157203e64e580ee4e843942770acd.png b/train2/pictures/27a157203e64e580ee4e843942770acd.png new file mode 100644 index 0000000..d2ef42e Binary files /dev/null and b/train2/pictures/27a157203e64e580ee4e843942770acd.png differ diff --git a/train2/pictures/27a826a803d8534dfdb3b23da53c47b4.png b/train2/pictures/27a826a803d8534dfdb3b23da53c47b4.png new file mode 100644 index 0000000..aca49ab Binary files /dev/null and b/train2/pictures/27a826a803d8534dfdb3b23da53c47b4.png differ diff --git a/train2/pictures/27fd3ceab8cc80d67f6c9b1786998ebe.png b/train2/pictures/27fd3ceab8cc80d67f6c9b1786998ebe.png new file mode 100644 index 0000000..65544c0 Binary files /dev/null and b/train2/pictures/27fd3ceab8cc80d67f6c9b1786998ebe.png differ diff --git a/train2/pictures/282090d653cb34afa4b294e9e391a194.png b/train2/pictures/282090d653cb34afa4b294e9e391a194.png new file mode 100644 index 0000000..61e9442 Binary files /dev/null and b/train2/pictures/282090d653cb34afa4b294e9e391a194.png differ diff --git a/train2/pictures/28741b0e40097d1b175466e6c77f1f12.png b/train2/pictures/28741b0e40097d1b175466e6c77f1f12.png new file mode 100644 index 0000000..e3dc01a Binary files /dev/null and b/train2/pictures/28741b0e40097d1b175466e6c77f1f12.png differ diff --git a/train2/pictures/2886c7d8127602ff5f655d7db93dfe0d.png b/train2/pictures/2886c7d8127602ff5f655d7db93dfe0d.png new file mode 100644 index 0000000..b6ef18a Binary files /dev/null and b/train2/pictures/2886c7d8127602ff5f655d7db93dfe0d.png differ diff --git a/train2/pictures/28b24497cd437c476decd814a3a01ee2.png b/train2/pictures/28b24497cd437c476decd814a3a01ee2.png new file mode 100644 index 0000000..bc93f44 Binary files /dev/null and b/train2/pictures/28b24497cd437c476decd814a3a01ee2.png differ diff --git a/train2/pictures/28b4acf3cc8f1a010e5357531df7975b.png b/train2/pictures/28b4acf3cc8f1a010e5357531df7975b.png new file mode 100644 index 0000000..3a40c86 Binary files /dev/null and b/train2/pictures/28b4acf3cc8f1a010e5357531df7975b.png differ diff --git a/train2/pictures/28b8dfe5928d329e8cd289951cf3ff33.png b/train2/pictures/28b8dfe5928d329e8cd289951cf3ff33.png new file mode 100644 index 0000000..4131036 Binary files /dev/null and b/train2/pictures/28b8dfe5928d329e8cd289951cf3ff33.png differ diff --git a/train2/pictures/28bb8ee24ff13942cbeeb6746bd0135b.png b/train2/pictures/28bb8ee24ff13942cbeeb6746bd0135b.png new file mode 100644 index 0000000..26d7ab9 Binary files /dev/null and b/train2/pictures/28bb8ee24ff13942cbeeb6746bd0135b.png differ diff --git a/train2/pictures/2921a51c4868b346a0fbd0055b8c89b5.png b/train2/pictures/2921a51c4868b346a0fbd0055b8c89b5.png new file mode 100644 index 0000000..da00eb8 Binary files /dev/null and b/train2/pictures/2921a51c4868b346a0fbd0055b8c89b5.png differ diff --git a/train2/pictures/29393161479dfb9d8b71ce28b8da4b13.png b/train2/pictures/29393161479dfb9d8b71ce28b8da4b13.png new file mode 100644 index 0000000..3d182cd Binary files /dev/null and b/train2/pictures/29393161479dfb9d8b71ce28b8da4b13.png differ diff --git a/train2/pictures/293d76ddc2f16febce27ac2298050a23.png b/train2/pictures/293d76ddc2f16febce27ac2298050a23.png new file mode 100644 index 0000000..6dc9de4 Binary files /dev/null and b/train2/pictures/293d76ddc2f16febce27ac2298050a23.png differ diff --git a/train2/pictures/296ccb254cad97fcddb57678ccc2089a.png b/train2/pictures/296ccb254cad97fcddb57678ccc2089a.png new file mode 100644 index 0000000..9fdf062 Binary files /dev/null and b/train2/pictures/296ccb254cad97fcddb57678ccc2089a.png differ diff --git a/train2/pictures/297d1c0684c447eeb74c0fb5273199c9.png b/train2/pictures/297d1c0684c447eeb74c0fb5273199c9.png new file mode 100644 index 0000000..ed303b1 Binary files /dev/null and b/train2/pictures/297d1c0684c447eeb74c0fb5273199c9.png differ diff --git a/train2/pictures/2997a60940adb055625efaa069c9d840.png b/train2/pictures/2997a60940adb055625efaa069c9d840.png new file mode 100644 index 0000000..c7b5534 Binary files /dev/null and b/train2/pictures/2997a60940adb055625efaa069c9d840.png differ diff --git a/train2/pictures/299de528b2adfc0a371311e96fa3e143.png b/train2/pictures/299de528b2adfc0a371311e96fa3e143.png new file mode 100644 index 0000000..1690dec Binary files /dev/null and b/train2/pictures/299de528b2adfc0a371311e96fa3e143.png differ diff --git a/train2/pictures/29a80bd56f9beb45b91c52cf31ef7961.png b/train2/pictures/29a80bd56f9beb45b91c52cf31ef7961.png new file mode 100644 index 0000000..78c3838 Binary files /dev/null and b/train2/pictures/29a80bd56f9beb45b91c52cf31ef7961.png differ diff --git a/train2/pictures/29e2eae53ced1306c7d9503788025348.png b/train2/pictures/29e2eae53ced1306c7d9503788025348.png new file mode 100644 index 0000000..64ff20d Binary files /dev/null and b/train2/pictures/29e2eae53ced1306c7d9503788025348.png differ diff --git a/train2/pictures/2a15f0cadd3d33534e7a53eaab88d339.png b/train2/pictures/2a15f0cadd3d33534e7a53eaab88d339.png new file mode 100644 index 0000000..573838f Binary files /dev/null and b/train2/pictures/2a15f0cadd3d33534e7a53eaab88d339.png differ diff --git a/train2/pictures/2a191ddab071fef0f0a4e6bee38d2939.png b/train2/pictures/2a191ddab071fef0f0a4e6bee38d2939.png new file mode 100644 index 0000000..82e2f03 Binary files /dev/null and b/train2/pictures/2a191ddab071fef0f0a4e6bee38d2939.png differ diff --git a/train2/pictures/2a469297d1d17bb4ccc7f141f0893d8a.png b/train2/pictures/2a469297d1d17bb4ccc7f141f0893d8a.png new file mode 100644 index 0000000..95506ae Binary files /dev/null and b/train2/pictures/2a469297d1d17bb4ccc7f141f0893d8a.png differ diff --git a/train2/pictures/2a47fb32db9051d2d3f67746541a9c3a.png b/train2/pictures/2a47fb32db9051d2d3f67746541a9c3a.png new file mode 100644 index 0000000..ae3b1c8 Binary files /dev/null and b/train2/pictures/2a47fb32db9051d2d3f67746541a9c3a.png differ diff --git a/train2/pictures/2a5ed1f503cb17ec9594883bc6b7e4c9.png b/train2/pictures/2a5ed1f503cb17ec9594883bc6b7e4c9.png new file mode 100644 index 0000000..ef7cd7a Binary files /dev/null and b/train2/pictures/2a5ed1f503cb17ec9594883bc6b7e4c9.png differ diff --git a/train2/pictures/2a6d1801ee914c89d02ce6d4777c6c4d.png b/train2/pictures/2a6d1801ee914c89d02ce6d4777c6c4d.png new file mode 100644 index 0000000..5580fa8 Binary files /dev/null and b/train2/pictures/2a6d1801ee914c89d02ce6d4777c6c4d.png differ diff --git a/train2/pictures/2a7b65a9c0803a5fdb0c62b460d1dd33.png b/train2/pictures/2a7b65a9c0803a5fdb0c62b460d1dd33.png new file mode 100644 index 0000000..142df88 Binary files /dev/null and b/train2/pictures/2a7b65a9c0803a5fdb0c62b460d1dd33.png differ diff --git a/train2/pictures/2aa6cc10b02d4518989a260c940d3518.png b/train2/pictures/2aa6cc10b02d4518989a260c940d3518.png new file mode 100644 index 0000000..1f21707 Binary files /dev/null and b/train2/pictures/2aa6cc10b02d4518989a260c940d3518.png differ diff --git a/train2/pictures/2adf741ab9d3f7e1ba66a00046b72376.png b/train2/pictures/2adf741ab9d3f7e1ba66a00046b72376.png new file mode 100644 index 0000000..3bd02af Binary files /dev/null and b/train2/pictures/2adf741ab9d3f7e1ba66a00046b72376.png differ diff --git a/train2/pictures/2b239224823bb9bb9598fa1b45815c06.png b/train2/pictures/2b239224823bb9bb9598fa1b45815c06.png new file mode 100644 index 0000000..25f8d73 Binary files /dev/null and b/train2/pictures/2b239224823bb9bb9598fa1b45815c06.png differ diff --git a/train2/pictures/2b2e4ef450eb8793f3588fde891f4590.png b/train2/pictures/2b2e4ef450eb8793f3588fde891f4590.png new file mode 100644 index 0000000..8f9c09f Binary files /dev/null and b/train2/pictures/2b2e4ef450eb8793f3588fde891f4590.png differ diff --git a/train2/pictures/2b3b87c6bc72701647e1357b9870f9f2.png b/train2/pictures/2b3b87c6bc72701647e1357b9870f9f2.png new file mode 100644 index 0000000..61321f4 Binary files /dev/null and b/train2/pictures/2b3b87c6bc72701647e1357b9870f9f2.png differ diff --git a/train2/pictures/2b426dc5d38b8b302c14c8d999878965.png b/train2/pictures/2b426dc5d38b8b302c14c8d999878965.png new file mode 100644 index 0000000..85078d7 Binary files /dev/null and b/train2/pictures/2b426dc5d38b8b302c14c8d999878965.png differ diff --git a/train2/pictures/2b5ae3b693e8311b8316ed3c2db41b71.png b/train2/pictures/2b5ae3b693e8311b8316ed3c2db41b71.png new file mode 100644 index 0000000..ade789e Binary files /dev/null and b/train2/pictures/2b5ae3b693e8311b8316ed3c2db41b71.png differ diff --git a/train2/pictures/2b5f78261ed336e3719768f397dd17fb.png b/train2/pictures/2b5f78261ed336e3719768f397dd17fb.png new file mode 100644 index 0000000..aa1d4f8 Binary files /dev/null and b/train2/pictures/2b5f78261ed336e3719768f397dd17fb.png differ diff --git a/train2/pictures/2b7449f99a9d8211e73548d760cf55f8.png b/train2/pictures/2b7449f99a9d8211e73548d760cf55f8.png new file mode 100644 index 0000000..4db253b Binary files /dev/null and b/train2/pictures/2b7449f99a9d8211e73548d760cf55f8.png differ diff --git a/train2/pictures/2b86fbe8e60e0db50c14451facd3e20c.png b/train2/pictures/2b86fbe8e60e0db50c14451facd3e20c.png new file mode 100644 index 0000000..613ef57 Binary files /dev/null and b/train2/pictures/2b86fbe8e60e0db50c14451facd3e20c.png differ diff --git a/train2/pictures/2b9fa999fcfe377d542b340f1ccf9f75.png b/train2/pictures/2b9fa999fcfe377d542b340f1ccf9f75.png new file mode 100644 index 0000000..61da318 Binary files /dev/null and b/train2/pictures/2b9fa999fcfe377d542b340f1ccf9f75.png differ diff --git a/train2/pictures/2ba7f55906b0c644bd39e3765cf70d80.png b/train2/pictures/2ba7f55906b0c644bd39e3765cf70d80.png new file mode 100644 index 0000000..49dd78e Binary files /dev/null and b/train2/pictures/2ba7f55906b0c644bd39e3765cf70d80.png differ diff --git a/train2/pictures/2bb77bd15b856bb8fba598152055468b.png b/train2/pictures/2bb77bd15b856bb8fba598152055468b.png new file mode 100644 index 0000000..7a17553 Binary files /dev/null and b/train2/pictures/2bb77bd15b856bb8fba598152055468b.png differ diff --git a/train2/pictures/2bb7eefb5197133d6bee56ea884830ac.png b/train2/pictures/2bb7eefb5197133d6bee56ea884830ac.png new file mode 100644 index 0000000..afc1604 Binary files /dev/null and b/train2/pictures/2bb7eefb5197133d6bee56ea884830ac.png differ diff --git a/train2/pictures/2bc7fe1f516f39a636db025186affad1.png b/train2/pictures/2bc7fe1f516f39a636db025186affad1.png new file mode 100644 index 0000000..c7c55cd Binary files /dev/null and b/train2/pictures/2bc7fe1f516f39a636db025186affad1.png differ diff --git a/train2/pictures/2c0c7dc9e8e072fc9f29c58ca47d4e83.png b/train2/pictures/2c0c7dc9e8e072fc9f29c58ca47d4e83.png new file mode 100644 index 0000000..d07d0d1 Binary files /dev/null and b/train2/pictures/2c0c7dc9e8e072fc9f29c58ca47d4e83.png differ diff --git a/train2/pictures/2c1a8a8810b602a0312582a6d1a7de2b.png b/train2/pictures/2c1a8a8810b602a0312582a6d1a7de2b.png new file mode 100644 index 0000000..11284b7 Binary files /dev/null and b/train2/pictures/2c1a8a8810b602a0312582a6d1a7de2b.png differ diff --git a/train2/pictures/2c2f427ef25c0c26f7a78ab5cd58f059.png b/train2/pictures/2c2f427ef25c0c26f7a78ab5cd58f059.png new file mode 100644 index 0000000..a181b51 Binary files /dev/null and b/train2/pictures/2c2f427ef25c0c26f7a78ab5cd58f059.png differ diff --git a/train2/pictures/2c48c4c4df329c2482d3b394d789d154.png b/train2/pictures/2c48c4c4df329c2482d3b394d789d154.png new file mode 100644 index 0000000..37010cb Binary files /dev/null and b/train2/pictures/2c48c4c4df329c2482d3b394d789d154.png differ diff --git a/train2/pictures/2c6154c59131ab05f7031291b45c40c9.png b/train2/pictures/2c6154c59131ab05f7031291b45c40c9.png new file mode 100644 index 0000000..2fd4ef4 Binary files /dev/null and b/train2/pictures/2c6154c59131ab05f7031291b45c40c9.png differ diff --git a/train2/pictures/2c7dd5c3fd04ef1c0dff4a106d0571ee.png b/train2/pictures/2c7dd5c3fd04ef1c0dff4a106d0571ee.png new file mode 100644 index 0000000..96416fa Binary files /dev/null and b/train2/pictures/2c7dd5c3fd04ef1c0dff4a106d0571ee.png differ diff --git a/train2/pictures/2cacac5a7a68478c7702b52d920ba9f8.png b/train2/pictures/2cacac5a7a68478c7702b52d920ba9f8.png new file mode 100644 index 0000000..5c2b060 Binary files /dev/null and b/train2/pictures/2cacac5a7a68478c7702b52d920ba9f8.png differ diff --git a/train2/pictures/2d20ce5c0db6fcb66be4542460940ef3.png b/train2/pictures/2d20ce5c0db6fcb66be4542460940ef3.png new file mode 100644 index 0000000..48a14e6 Binary files /dev/null and b/train2/pictures/2d20ce5c0db6fcb66be4542460940ef3.png differ diff --git a/train2/pictures/2d6936f86ab591d6c0b68cb39a790ea6.png b/train2/pictures/2d6936f86ab591d6c0b68cb39a790ea6.png new file mode 100644 index 0000000..f96292d Binary files /dev/null and b/train2/pictures/2d6936f86ab591d6c0b68cb39a790ea6.png differ diff --git a/train2/pictures/2d6dd8a84945f1d37da31bdaa24af3a5.png b/train2/pictures/2d6dd8a84945f1d37da31bdaa24af3a5.png new file mode 100644 index 0000000..4467b5e Binary files /dev/null and b/train2/pictures/2d6dd8a84945f1d37da31bdaa24af3a5.png differ diff --git a/train2/pictures/2d9eb9ebfa98022944f5cfdee1a34fc2.png b/train2/pictures/2d9eb9ebfa98022944f5cfdee1a34fc2.png new file mode 100644 index 0000000..b59f2b3 Binary files /dev/null and b/train2/pictures/2d9eb9ebfa98022944f5cfdee1a34fc2.png differ diff --git a/train2/pictures/2da9e6b0829d5058d5914b12b6f0b1a7.png b/train2/pictures/2da9e6b0829d5058d5914b12b6f0b1a7.png new file mode 100644 index 0000000..53b817c Binary files /dev/null and b/train2/pictures/2da9e6b0829d5058d5914b12b6f0b1a7.png differ diff --git a/train2/pictures/2db92e4c64c2cbd92e72c20af43247ef.png b/train2/pictures/2db92e4c64c2cbd92e72c20af43247ef.png new file mode 100644 index 0000000..919d497 Binary files /dev/null and b/train2/pictures/2db92e4c64c2cbd92e72c20af43247ef.png differ diff --git a/train2/pictures/2dc664f82e5f84d7e0e0047f6bb4dcbd.png b/train2/pictures/2dc664f82e5f84d7e0e0047f6bb4dcbd.png new file mode 100644 index 0000000..e9b3545 Binary files /dev/null and b/train2/pictures/2dc664f82e5f84d7e0e0047f6bb4dcbd.png differ diff --git a/train2/pictures/2de90a9e775c6a3b48dd223770dadda8.png b/train2/pictures/2de90a9e775c6a3b48dd223770dadda8.png new file mode 100644 index 0000000..c19191a Binary files /dev/null and b/train2/pictures/2de90a9e775c6a3b48dd223770dadda8.png differ diff --git a/train2/pictures/2df97f5a75c8f564c31e8521ddb51a96.png b/train2/pictures/2df97f5a75c8f564c31e8521ddb51a96.png new file mode 100644 index 0000000..bd2180d Binary files /dev/null and b/train2/pictures/2df97f5a75c8f564c31e8521ddb51a96.png differ diff --git a/train2/pictures/2e181165abe57b94e218521add87be02.png b/train2/pictures/2e181165abe57b94e218521add87be02.png new file mode 100644 index 0000000..6805de0 Binary files /dev/null and b/train2/pictures/2e181165abe57b94e218521add87be02.png differ diff --git a/train2/pictures/2e4f74dff1a85fb020fb2efb81698127.png b/train2/pictures/2e4f74dff1a85fb020fb2efb81698127.png new file mode 100644 index 0000000..0267dca Binary files /dev/null and b/train2/pictures/2e4f74dff1a85fb020fb2efb81698127.png differ diff --git a/train2/pictures/2e535a935a5a873568c444dd4f4793b2.png b/train2/pictures/2e535a935a5a873568c444dd4f4793b2.png new file mode 100644 index 0000000..aa69cd0 Binary files /dev/null and b/train2/pictures/2e535a935a5a873568c444dd4f4793b2.png differ diff --git a/train2/pictures/2e554868e0c90da7b285a25e73c477f5.png b/train2/pictures/2e554868e0c90da7b285a25e73c477f5.png new file mode 100644 index 0000000..94826ae Binary files /dev/null and b/train2/pictures/2e554868e0c90da7b285a25e73c477f5.png differ diff --git a/train2/pictures/2e6b22dcfd2c6d2f71df1d4791e375b4.png b/train2/pictures/2e6b22dcfd2c6d2f71df1d4791e375b4.png new file mode 100644 index 0000000..47d9659 Binary files /dev/null and b/train2/pictures/2e6b22dcfd2c6d2f71df1d4791e375b4.png differ diff --git a/train2/pictures/2e6d501b0c0cf559fc53ab91749f02ff.png b/train2/pictures/2e6d501b0c0cf559fc53ab91749f02ff.png new file mode 100644 index 0000000..4a24eee Binary files /dev/null and b/train2/pictures/2e6d501b0c0cf559fc53ab91749f02ff.png differ diff --git a/train2/pictures/2e7083dea85c7cb773727b545e646619.png b/train2/pictures/2e7083dea85c7cb773727b545e646619.png new file mode 100644 index 0000000..56262c2 Binary files /dev/null and b/train2/pictures/2e7083dea85c7cb773727b545e646619.png differ diff --git a/train2/pictures/2e8552cb990d596119421fcb18a0e55b.png b/train2/pictures/2e8552cb990d596119421fcb18a0e55b.png new file mode 100644 index 0000000..a8ee702 Binary files /dev/null and b/train2/pictures/2e8552cb990d596119421fcb18a0e55b.png differ diff --git a/train2/pictures/2ed844dfa17b461fc9568cf1cebe55f3.png b/train2/pictures/2ed844dfa17b461fc9568cf1cebe55f3.png new file mode 100644 index 0000000..df9b2c3 Binary files /dev/null and b/train2/pictures/2ed844dfa17b461fc9568cf1cebe55f3.png differ diff --git a/train2/pictures/2f1326d68ae185fadd5cf0a8e7b5e53f.png b/train2/pictures/2f1326d68ae185fadd5cf0a8e7b5e53f.png new file mode 100644 index 0000000..6e3731e Binary files /dev/null and b/train2/pictures/2f1326d68ae185fadd5cf0a8e7b5e53f.png differ diff --git a/train2/pictures/2f1e88c3bca4f8ab6d34d8f5a777c902.png b/train2/pictures/2f1e88c3bca4f8ab6d34d8f5a777c902.png new file mode 100644 index 0000000..16b63bc Binary files /dev/null and b/train2/pictures/2f1e88c3bca4f8ab6d34d8f5a777c902.png differ diff --git a/train2/pictures/2f5ee6c3c71782002b07d35a1ca390a1.png b/train2/pictures/2f5ee6c3c71782002b07d35a1ca390a1.png new file mode 100644 index 0000000..fffa936 Binary files /dev/null and b/train2/pictures/2f5ee6c3c71782002b07d35a1ca390a1.png differ diff --git a/train2/pictures/2f6b2d0bccea68cff417e621ab080eaf.png b/train2/pictures/2f6b2d0bccea68cff417e621ab080eaf.png new file mode 100644 index 0000000..20f3e50 Binary files /dev/null and b/train2/pictures/2f6b2d0bccea68cff417e621ab080eaf.png differ diff --git a/train2/pictures/2f8f7f9eb747d8a2a50dd5f60ab6a3c7.png b/train2/pictures/2f8f7f9eb747d8a2a50dd5f60ab6a3c7.png new file mode 100644 index 0000000..c1a25ed Binary files /dev/null and b/train2/pictures/2f8f7f9eb747d8a2a50dd5f60ab6a3c7.png differ diff --git a/train2/pictures/2f9d56a25f4001753e52bffa7b29455e.png b/train2/pictures/2f9d56a25f4001753e52bffa7b29455e.png new file mode 100644 index 0000000..6a72dd4 Binary files /dev/null and b/train2/pictures/2f9d56a25f4001753e52bffa7b29455e.png differ diff --git a/train2/pictures/2fca16fb7a914477597b78f46cc826dd.png b/train2/pictures/2fca16fb7a914477597b78f46cc826dd.png new file mode 100644 index 0000000..7f4816c Binary files /dev/null and b/train2/pictures/2fca16fb7a914477597b78f46cc826dd.png differ diff --git a/train2/pictures/303f1dd56849e2f1c622376f3325c178.png b/train2/pictures/303f1dd56849e2f1c622376f3325c178.png new file mode 100644 index 0000000..e2e450e Binary files /dev/null and b/train2/pictures/303f1dd56849e2f1c622376f3325c178.png differ diff --git a/train2/pictures/3052fe6e568375ba4dfad4db66a56db1.png b/train2/pictures/3052fe6e568375ba4dfad4db66a56db1.png new file mode 100644 index 0000000..6b6a60e Binary files /dev/null and b/train2/pictures/3052fe6e568375ba4dfad4db66a56db1.png differ diff --git a/train2/pictures/3077a8099206b5c21c72fc23a48dfdc8.png b/train2/pictures/3077a8099206b5c21c72fc23a48dfdc8.png new file mode 100644 index 0000000..6c6eb26 Binary files /dev/null and b/train2/pictures/3077a8099206b5c21c72fc23a48dfdc8.png differ diff --git a/train2/pictures/308e520a8989ffeaab068e8dc7a5f0b7.png b/train2/pictures/308e520a8989ffeaab068e8dc7a5f0b7.png new file mode 100644 index 0000000..b641283 Binary files /dev/null and b/train2/pictures/308e520a8989ffeaab068e8dc7a5f0b7.png differ diff --git a/train2/pictures/30938f984ea21254dc1f36535b441156.png b/train2/pictures/30938f984ea21254dc1f36535b441156.png new file mode 100644 index 0000000..b920797 Binary files /dev/null and b/train2/pictures/30938f984ea21254dc1f36535b441156.png differ diff --git a/train2/pictures/30b7fe92f40eab393c74eab7da986e9e.png b/train2/pictures/30b7fe92f40eab393c74eab7da986e9e.png new file mode 100644 index 0000000..fb09be6 Binary files /dev/null and b/train2/pictures/30b7fe92f40eab393c74eab7da986e9e.png differ diff --git a/train2/pictures/30b9174640398bb48adb3cb33b612baf.png b/train2/pictures/30b9174640398bb48adb3cb33b612baf.png new file mode 100644 index 0000000..c8407a4 Binary files /dev/null and b/train2/pictures/30b9174640398bb48adb3cb33b612baf.png differ diff --git a/train2/pictures/30fea0d8fc6cca66f8820104363b2ca9.png b/train2/pictures/30fea0d8fc6cca66f8820104363b2ca9.png new file mode 100644 index 0000000..eea7ecd Binary files /dev/null and b/train2/pictures/30fea0d8fc6cca66f8820104363b2ca9.png differ diff --git a/train2/pictures/310659a8d857fac012fd1566d89772be.png b/train2/pictures/310659a8d857fac012fd1566d89772be.png new file mode 100644 index 0000000..65f7306 Binary files /dev/null and b/train2/pictures/310659a8d857fac012fd1566d89772be.png differ diff --git a/train2/pictures/314484998640abe65fea45aed895cf29.png b/train2/pictures/314484998640abe65fea45aed895cf29.png new file mode 100644 index 0000000..4483fec Binary files /dev/null and b/train2/pictures/314484998640abe65fea45aed895cf29.png differ diff --git a/train2/pictures/315b7b8f08b22123bb835f5daa9d1d62.png b/train2/pictures/315b7b8f08b22123bb835f5daa9d1d62.png new file mode 100644 index 0000000..4211528 Binary files /dev/null and b/train2/pictures/315b7b8f08b22123bb835f5daa9d1d62.png differ diff --git a/train2/pictures/31874a348a2c866af807c9d2aef66213.png b/train2/pictures/31874a348a2c866af807c9d2aef66213.png new file mode 100644 index 0000000..f20f771 Binary files /dev/null and b/train2/pictures/31874a348a2c866af807c9d2aef66213.png differ diff --git a/train2/pictures/31d6094e053459595b253a3a1fe0d457.png b/train2/pictures/31d6094e053459595b253a3a1fe0d457.png new file mode 100644 index 0000000..057d309 Binary files /dev/null and b/train2/pictures/31d6094e053459595b253a3a1fe0d457.png differ diff --git a/train2/pictures/31ec0e6ee82fc973618ec45075855006.png b/train2/pictures/31ec0e6ee82fc973618ec45075855006.png new file mode 100644 index 0000000..97cd82d Binary files /dev/null and b/train2/pictures/31ec0e6ee82fc973618ec45075855006.png differ diff --git a/train2/pictures/320607837eaf21f69cd16e77fefee2bc.png b/train2/pictures/320607837eaf21f69cd16e77fefee2bc.png new file mode 100644 index 0000000..e14a2f5 Binary files /dev/null and b/train2/pictures/320607837eaf21f69cd16e77fefee2bc.png differ diff --git a/train2/pictures/322b138f657aedd721a1bba2d58a9e24.png b/train2/pictures/322b138f657aedd721a1bba2d58a9e24.png new file mode 100644 index 0000000..730359c Binary files /dev/null and b/train2/pictures/322b138f657aedd721a1bba2d58a9e24.png differ diff --git a/train2/pictures/324d249a46ef49ceb01a559b4ac41668.png b/train2/pictures/324d249a46ef49ceb01a559b4ac41668.png new file mode 100644 index 0000000..a7dcdd4 Binary files /dev/null and b/train2/pictures/324d249a46ef49ceb01a559b4ac41668.png differ diff --git a/train2/pictures/3270b878b0d8c0b25540d7c50c972f75.png b/train2/pictures/3270b878b0d8c0b25540d7c50c972f75.png new file mode 100644 index 0000000..5fce54d Binary files /dev/null and b/train2/pictures/3270b878b0d8c0b25540d7c50c972f75.png differ diff --git a/train2/pictures/327ded3839ddd4d7eaad897c8682ebe2.png b/train2/pictures/327ded3839ddd4d7eaad897c8682ebe2.png new file mode 100644 index 0000000..e251b51 Binary files /dev/null and b/train2/pictures/327ded3839ddd4d7eaad897c8682ebe2.png differ diff --git a/train2/pictures/32b78d33452ed0e3445441e139bf0390.png b/train2/pictures/32b78d33452ed0e3445441e139bf0390.png new file mode 100644 index 0000000..1e5c75f Binary files /dev/null and b/train2/pictures/32b78d33452ed0e3445441e139bf0390.png differ diff --git a/train2/pictures/32cb003a73d362e5b6a6c1fc2fe0f976.png b/train2/pictures/32cb003a73d362e5b6a6c1fc2fe0f976.png new file mode 100644 index 0000000..a8898de Binary files /dev/null and b/train2/pictures/32cb003a73d362e5b6a6c1fc2fe0f976.png differ diff --git a/train2/pictures/32d73bcf6ce2d15fdf26d39e3f9b3cd5.png b/train2/pictures/32d73bcf6ce2d15fdf26d39e3f9b3cd5.png new file mode 100644 index 0000000..0005d02 Binary files /dev/null and b/train2/pictures/32d73bcf6ce2d15fdf26d39e3f9b3cd5.png differ diff --git a/train2/pictures/331a92c751dfb3cdf4687222f887fa06.png b/train2/pictures/331a92c751dfb3cdf4687222f887fa06.png new file mode 100644 index 0000000..dcd1ffb Binary files /dev/null and b/train2/pictures/331a92c751dfb3cdf4687222f887fa06.png differ diff --git a/train2/pictures/3344467b699d9d9a819795598ffee860.png b/train2/pictures/3344467b699d9d9a819795598ffee860.png new file mode 100644 index 0000000..d663a4d Binary files /dev/null and b/train2/pictures/3344467b699d9d9a819795598ffee860.png differ diff --git a/train2/pictures/336f0ad46f393525a0d2c7a9844c251b.png b/train2/pictures/336f0ad46f393525a0d2c7a9844c251b.png new file mode 100644 index 0000000..156eebe Binary files /dev/null and b/train2/pictures/336f0ad46f393525a0d2c7a9844c251b.png differ diff --git a/train2/pictures/337869aa7c6618e3a54da9fe54883bd5.png b/train2/pictures/337869aa7c6618e3a54da9fe54883bd5.png new file mode 100644 index 0000000..b90f72a Binary files /dev/null and b/train2/pictures/337869aa7c6618e3a54da9fe54883bd5.png differ diff --git a/train2/pictures/3385c248c58136b6f1217763e2f5455c.png b/train2/pictures/3385c248c58136b6f1217763e2f5455c.png new file mode 100644 index 0000000..7af75c7 Binary files /dev/null and b/train2/pictures/3385c248c58136b6f1217763e2f5455c.png differ diff --git a/train2/pictures/3386803e36186a44ff264bc39145b5b8.png b/train2/pictures/3386803e36186a44ff264bc39145b5b8.png new file mode 100644 index 0000000..bfd2187 Binary files /dev/null and b/train2/pictures/3386803e36186a44ff264bc39145b5b8.png differ diff --git a/train2/pictures/3387a3b1ee67768b7167a81db52f85d0.png b/train2/pictures/3387a3b1ee67768b7167a81db52f85d0.png new file mode 100644 index 0000000..7f5d873 Binary files /dev/null and b/train2/pictures/3387a3b1ee67768b7167a81db52f85d0.png differ diff --git a/train2/pictures/33cdff3f89ace03347d9965d1c5e1638.png b/train2/pictures/33cdff3f89ace03347d9965d1c5e1638.png new file mode 100644 index 0000000..8161df7 Binary files /dev/null and b/train2/pictures/33cdff3f89ace03347d9965d1c5e1638.png differ diff --git a/train2/pictures/3430ee0c7894d58da77d4352bc6f2cb6.png b/train2/pictures/3430ee0c7894d58da77d4352bc6f2cb6.png new file mode 100644 index 0000000..909ef31 Binary files /dev/null and b/train2/pictures/3430ee0c7894d58da77d4352bc6f2cb6.png differ diff --git a/train2/pictures/34357b04b616340bde9d8bf55ff20539.png b/train2/pictures/34357b04b616340bde9d8bf55ff20539.png new file mode 100644 index 0000000..21a0efb Binary files /dev/null and b/train2/pictures/34357b04b616340bde9d8bf55ff20539.png differ diff --git a/train2/pictures/343e58751a0d8312b69300ececefafc8.png b/train2/pictures/343e58751a0d8312b69300ececefafc8.png new file mode 100644 index 0000000..ecc15dd Binary files /dev/null and b/train2/pictures/343e58751a0d8312b69300ececefafc8.png differ diff --git a/train2/pictures/3456906dbcdfe2c275c52b592b7fb2d7.png b/train2/pictures/3456906dbcdfe2c275c52b592b7fb2d7.png new file mode 100644 index 0000000..9c5d850 Binary files /dev/null and b/train2/pictures/3456906dbcdfe2c275c52b592b7fb2d7.png differ diff --git a/train2/pictures/347bac1fd1eba908199eaebc4ecab324.png b/train2/pictures/347bac1fd1eba908199eaebc4ecab324.png new file mode 100644 index 0000000..32f17b4 Binary files /dev/null and b/train2/pictures/347bac1fd1eba908199eaebc4ecab324.png differ diff --git a/train2/pictures/34f20284b4bc784582c68c83eebc7b14.png b/train2/pictures/34f20284b4bc784582c68c83eebc7b14.png new file mode 100644 index 0000000..35e5093 Binary files /dev/null and b/train2/pictures/34f20284b4bc784582c68c83eebc7b14.png differ diff --git a/train2/pictures/3514e27c9de71aa940075a8c144f93bd.png b/train2/pictures/3514e27c9de71aa940075a8c144f93bd.png new file mode 100644 index 0000000..f353ded Binary files /dev/null and b/train2/pictures/3514e27c9de71aa940075a8c144f93bd.png differ diff --git a/train2/pictures/351797e23e6063ca347e7ac995f17a6a.png b/train2/pictures/351797e23e6063ca347e7ac995f17a6a.png new file mode 100644 index 0000000..edbf8ec Binary files /dev/null and b/train2/pictures/351797e23e6063ca347e7ac995f17a6a.png differ diff --git a/train2/pictures/35321fe8fadbafdefe592157247407e4.png b/train2/pictures/35321fe8fadbafdefe592157247407e4.png new file mode 100644 index 0000000..7c33440 Binary files /dev/null and b/train2/pictures/35321fe8fadbafdefe592157247407e4.png differ diff --git a/train2/pictures/353a7c81573e92182edff868cdc1b0c6.png b/train2/pictures/353a7c81573e92182edff868cdc1b0c6.png new file mode 100644 index 0000000..3200f54 Binary files /dev/null and b/train2/pictures/353a7c81573e92182edff868cdc1b0c6.png differ diff --git a/train2/pictures/354d3ad1b0470d83f5f75c1bd20915b0.png b/train2/pictures/354d3ad1b0470d83f5f75c1bd20915b0.png new file mode 100644 index 0000000..66a96fe Binary files /dev/null and b/train2/pictures/354d3ad1b0470d83f5f75c1bd20915b0.png differ diff --git a/train2/pictures/3571511db8665236cce1d70f920ebeeb.png b/train2/pictures/3571511db8665236cce1d70f920ebeeb.png new file mode 100644 index 0000000..c336307 Binary files /dev/null and b/train2/pictures/3571511db8665236cce1d70f920ebeeb.png differ diff --git a/train2/pictures/357456a194a2fb8792c7b304aeebedc2.png b/train2/pictures/357456a194a2fb8792c7b304aeebedc2.png new file mode 100644 index 0000000..859bc6c Binary files /dev/null and b/train2/pictures/357456a194a2fb8792c7b304aeebedc2.png differ diff --git a/train2/pictures/358061a36c21ed124e254ae195add0ca.png b/train2/pictures/358061a36c21ed124e254ae195add0ca.png new file mode 100644 index 0000000..3224964 Binary files /dev/null and b/train2/pictures/358061a36c21ed124e254ae195add0ca.png differ diff --git a/train2/pictures/35dcd7a0b8c2a7c51b23bbea78ddc7b9.png b/train2/pictures/35dcd7a0b8c2a7c51b23bbea78ddc7b9.png new file mode 100644 index 0000000..78d3170 Binary files /dev/null and b/train2/pictures/35dcd7a0b8c2a7c51b23bbea78ddc7b9.png differ diff --git a/train2/pictures/35e714a8ad94f210ccbf4ce7cc63d0ca.png b/train2/pictures/35e714a8ad94f210ccbf4ce7cc63d0ca.png new file mode 100644 index 0000000..205573c Binary files /dev/null and b/train2/pictures/35e714a8ad94f210ccbf4ce7cc63d0ca.png differ diff --git a/train2/pictures/35f157589cd0b456c413a187d6be13e2.png b/train2/pictures/35f157589cd0b456c413a187d6be13e2.png new file mode 100644 index 0000000..e151286 Binary files /dev/null and b/train2/pictures/35f157589cd0b456c413a187d6be13e2.png differ diff --git a/train2/pictures/360c87daeda412ac43962a50bce47ce6.png b/train2/pictures/360c87daeda412ac43962a50bce47ce6.png new file mode 100644 index 0000000..5fbcc44 Binary files /dev/null and b/train2/pictures/360c87daeda412ac43962a50bce47ce6.png differ diff --git a/train2/pictures/360f1dc46836dc31487537e955d8db7f.png b/train2/pictures/360f1dc46836dc31487537e955d8db7f.png new file mode 100644 index 0000000..44bec87 Binary files /dev/null and b/train2/pictures/360f1dc46836dc31487537e955d8db7f.png differ diff --git a/train2/pictures/36165509b4d816f5f248a2c268f76f41.png b/train2/pictures/36165509b4d816f5f248a2c268f76f41.png new file mode 100644 index 0000000..fa6f199 Binary files /dev/null and b/train2/pictures/36165509b4d816f5f248a2c268f76f41.png differ diff --git a/train2/pictures/361e5f7191cbaa6732de41f34169ee55.png b/train2/pictures/361e5f7191cbaa6732de41f34169ee55.png new file mode 100644 index 0000000..b5f1594 Binary files /dev/null and b/train2/pictures/361e5f7191cbaa6732de41f34169ee55.png differ diff --git a/train2/pictures/362d0f9fd4854007cf678ae81c8db277.png b/train2/pictures/362d0f9fd4854007cf678ae81c8db277.png new file mode 100644 index 0000000..da49c71 Binary files /dev/null and b/train2/pictures/362d0f9fd4854007cf678ae81c8db277.png differ diff --git a/train2/pictures/3630b4b275737bd0e4b931f5ebf43c53.png b/train2/pictures/3630b4b275737bd0e4b931f5ebf43c53.png new file mode 100644 index 0000000..ed3bfb8 Binary files /dev/null and b/train2/pictures/3630b4b275737bd0e4b931f5ebf43c53.png differ diff --git a/train2/pictures/365d3e397009dd25c2e22bcc8bb1fba8.png b/train2/pictures/365d3e397009dd25c2e22bcc8bb1fba8.png new file mode 100644 index 0000000..a0c66bf Binary files /dev/null and b/train2/pictures/365d3e397009dd25c2e22bcc8bb1fba8.png differ diff --git a/train2/pictures/3689bc2ab74c75bc7c481679661f319d.png b/train2/pictures/3689bc2ab74c75bc7c481679661f319d.png new file mode 100644 index 0000000..47bef8e Binary files /dev/null and b/train2/pictures/3689bc2ab74c75bc7c481679661f319d.png differ diff --git a/train2/pictures/369dae7369263b2ce26b0a3ea98273df.png b/train2/pictures/369dae7369263b2ce26b0a3ea98273df.png new file mode 100644 index 0000000..d24980f Binary files /dev/null and b/train2/pictures/369dae7369263b2ce26b0a3ea98273df.png differ diff --git a/train2/pictures/36a1bc183dd3798833b28b4f3976e45b.png b/train2/pictures/36a1bc183dd3798833b28b4f3976e45b.png new file mode 100644 index 0000000..9d3662b Binary files /dev/null and b/train2/pictures/36a1bc183dd3798833b28b4f3976e45b.png differ diff --git a/train2/pictures/37082f6c7e94faeaa14e45e11dfbad8d.png b/train2/pictures/37082f6c7e94faeaa14e45e11dfbad8d.png new file mode 100644 index 0000000..2526749 Binary files /dev/null and b/train2/pictures/37082f6c7e94faeaa14e45e11dfbad8d.png differ diff --git a/train2/pictures/3710203a1c9e190acc1cdd4f739bf9ec.png b/train2/pictures/3710203a1c9e190acc1cdd4f739bf9ec.png new file mode 100644 index 0000000..76da6ea Binary files /dev/null and b/train2/pictures/3710203a1c9e190acc1cdd4f739bf9ec.png differ diff --git a/train2/pictures/376978712f68bf5516e2d73c9240ccd0.png b/train2/pictures/376978712f68bf5516e2d73c9240ccd0.png new file mode 100644 index 0000000..7f5acec Binary files /dev/null and b/train2/pictures/376978712f68bf5516e2d73c9240ccd0.png differ diff --git a/train2/pictures/3790fce9e408890b41e6984f5ca1ac7f.png b/train2/pictures/3790fce9e408890b41e6984f5ca1ac7f.png new file mode 100644 index 0000000..d51300c Binary files /dev/null and b/train2/pictures/3790fce9e408890b41e6984f5ca1ac7f.png differ diff --git a/train2/pictures/37dbe150265b8e5eab99c3e5367921e8.png b/train2/pictures/37dbe150265b8e5eab99c3e5367921e8.png new file mode 100644 index 0000000..a76d8c7 Binary files /dev/null and b/train2/pictures/37dbe150265b8e5eab99c3e5367921e8.png differ diff --git a/train2/pictures/38120033d66c3ca49a3007b003af60bf.png b/train2/pictures/38120033d66c3ca49a3007b003af60bf.png new file mode 100644 index 0000000..058bf74 Binary files /dev/null and b/train2/pictures/38120033d66c3ca49a3007b003af60bf.png differ diff --git a/train2/pictures/381d2b75c448a05002af7317fe3ede09.png b/train2/pictures/381d2b75c448a05002af7317fe3ede09.png new file mode 100644 index 0000000..d91a6be Binary files /dev/null and b/train2/pictures/381d2b75c448a05002af7317fe3ede09.png differ diff --git a/train2/pictures/3827ed545812ee82b66b135dabf1363a.png b/train2/pictures/3827ed545812ee82b66b135dabf1363a.png new file mode 100644 index 0000000..3566764 Binary files /dev/null and b/train2/pictures/3827ed545812ee82b66b135dabf1363a.png differ diff --git a/train2/pictures/3831f60bfd07e7cef3e7e306eec4598f.png b/train2/pictures/3831f60bfd07e7cef3e7e306eec4598f.png new file mode 100644 index 0000000..5a877bb Binary files /dev/null and b/train2/pictures/3831f60bfd07e7cef3e7e306eec4598f.png differ diff --git a/train2/pictures/383c0cbc5bc097dd1cdf9d9ccbea584e.png b/train2/pictures/383c0cbc5bc097dd1cdf9d9ccbea584e.png new file mode 100644 index 0000000..6ddced6 Binary files /dev/null and b/train2/pictures/383c0cbc5bc097dd1cdf9d9ccbea584e.png differ diff --git a/train2/pictures/384d9a737658bd9ae4dc43eb7c741ab6.png b/train2/pictures/384d9a737658bd9ae4dc43eb7c741ab6.png new file mode 100644 index 0000000..9286e0f Binary files /dev/null and b/train2/pictures/384d9a737658bd9ae4dc43eb7c741ab6.png differ diff --git a/train2/pictures/38554a6b9fdd1335fe35fecd65c0dfa6.png b/train2/pictures/38554a6b9fdd1335fe35fecd65c0dfa6.png new file mode 100644 index 0000000..131afb9 Binary files /dev/null and b/train2/pictures/38554a6b9fdd1335fe35fecd65c0dfa6.png differ diff --git a/train2/pictures/38628155f919adb261c54d47dcf7a4c5.png b/train2/pictures/38628155f919adb261c54d47dcf7a4c5.png new file mode 100644 index 0000000..6a0c911 Binary files /dev/null and b/train2/pictures/38628155f919adb261c54d47dcf7a4c5.png differ diff --git a/train2/pictures/386cd78bdb2d060c93accb154ff3ad5d.png b/train2/pictures/386cd78bdb2d060c93accb154ff3ad5d.png new file mode 100644 index 0000000..e2ca83f Binary files /dev/null and b/train2/pictures/386cd78bdb2d060c93accb154ff3ad5d.png differ diff --git a/train2/pictures/38c0ae85e4e04fc5a7bc84a63a8d252f.png b/train2/pictures/38c0ae85e4e04fc5a7bc84a63a8d252f.png new file mode 100644 index 0000000..0581b03 Binary files /dev/null and b/train2/pictures/38c0ae85e4e04fc5a7bc84a63a8d252f.png differ diff --git a/train2/pictures/38d77a04f9291a85fb48e86420621e8a.png b/train2/pictures/38d77a04f9291a85fb48e86420621e8a.png new file mode 100644 index 0000000..cf1e723 Binary files /dev/null and b/train2/pictures/38d77a04f9291a85fb48e86420621e8a.png differ diff --git a/train2/pictures/38e02fd4afcf2f1e901c0b286dab32e4.png b/train2/pictures/38e02fd4afcf2f1e901c0b286dab32e4.png new file mode 100644 index 0000000..77ee2bf Binary files /dev/null and b/train2/pictures/38e02fd4afcf2f1e901c0b286dab32e4.png differ diff --git a/train2/pictures/38f146f0b5f41281a48b69395976435f.png b/train2/pictures/38f146f0b5f41281a48b69395976435f.png new file mode 100644 index 0000000..0664a68 Binary files /dev/null and b/train2/pictures/38f146f0b5f41281a48b69395976435f.png differ diff --git a/train2/pictures/3908b2c79fe3431fd1a890f255b72fee.png b/train2/pictures/3908b2c79fe3431fd1a890f255b72fee.png new file mode 100644 index 0000000..c95839e Binary files /dev/null and b/train2/pictures/3908b2c79fe3431fd1a890f255b72fee.png differ diff --git a/train2/pictures/391ca7b6cebc9a2d4ef9c75d7b383f36.png b/train2/pictures/391ca7b6cebc9a2d4ef9c75d7b383f36.png new file mode 100644 index 0000000..1cd6692 Binary files /dev/null and b/train2/pictures/391ca7b6cebc9a2d4ef9c75d7b383f36.png differ diff --git a/train2/pictures/3921d00958d72c23a14e776b6ea75448.png b/train2/pictures/3921d00958d72c23a14e776b6ea75448.png new file mode 100644 index 0000000..ce496d4 Binary files /dev/null and b/train2/pictures/3921d00958d72c23a14e776b6ea75448.png differ diff --git a/train2/pictures/392ad205ae2107d85182337c384d83f6.png b/train2/pictures/392ad205ae2107d85182337c384d83f6.png new file mode 100644 index 0000000..c827a68 Binary files /dev/null and b/train2/pictures/392ad205ae2107d85182337c384d83f6.png differ diff --git a/train2/pictures/395710c10bef8096e2984ead1ed23d39.png b/train2/pictures/395710c10bef8096e2984ead1ed23d39.png new file mode 100644 index 0000000..7afafde Binary files /dev/null and b/train2/pictures/395710c10bef8096e2984ead1ed23d39.png differ diff --git a/train2/pictures/395cb9cd5ef658394de32b13fa0deee6.png b/train2/pictures/395cb9cd5ef658394de32b13fa0deee6.png new file mode 100644 index 0000000..c98f16c Binary files /dev/null and b/train2/pictures/395cb9cd5ef658394de32b13fa0deee6.png differ diff --git a/train2/pictures/39740482dd156c4a5db86565539d78cb.png b/train2/pictures/39740482dd156c4a5db86565539d78cb.png new file mode 100644 index 0000000..1a30376 Binary files /dev/null and b/train2/pictures/39740482dd156c4a5db86565539d78cb.png differ diff --git a/train2/pictures/3975d3e198c2ddae212d505fefd6e347.png b/train2/pictures/3975d3e198c2ddae212d505fefd6e347.png new file mode 100644 index 0000000..c65d2e7 Binary files /dev/null and b/train2/pictures/3975d3e198c2ddae212d505fefd6e347.png differ diff --git a/train2/pictures/3993c70c97dc6916f9a556119e602727.png b/train2/pictures/3993c70c97dc6916f9a556119e602727.png new file mode 100644 index 0000000..cdfdc4b Binary files /dev/null and b/train2/pictures/3993c70c97dc6916f9a556119e602727.png differ diff --git a/train2/pictures/399463f37eca8df45d37cce703f5bd5a.png b/train2/pictures/399463f37eca8df45d37cce703f5bd5a.png new file mode 100644 index 0000000..350a7ac Binary files /dev/null and b/train2/pictures/399463f37eca8df45d37cce703f5bd5a.png differ diff --git a/train2/pictures/39d2ad1c1d8f9cacc2a6d061ab1e5e76.png b/train2/pictures/39d2ad1c1d8f9cacc2a6d061ab1e5e76.png new file mode 100644 index 0000000..a4ab8e0 Binary files /dev/null and b/train2/pictures/39d2ad1c1d8f9cacc2a6d061ab1e5e76.png differ diff --git a/train2/pictures/39e13116cc408cb6b48615bb1e6c7f18.png b/train2/pictures/39e13116cc408cb6b48615bb1e6c7f18.png new file mode 100644 index 0000000..838d7db Binary files /dev/null and b/train2/pictures/39e13116cc408cb6b48615bb1e6c7f18.png differ diff --git a/train2/pictures/39ff27c5d002048af318545e8a2c034a.png b/train2/pictures/39ff27c5d002048af318545e8a2c034a.png new file mode 100644 index 0000000..7a5dbda Binary files /dev/null and b/train2/pictures/39ff27c5d002048af318545e8a2c034a.png differ diff --git a/train2/pictures/3a088fe2ee6871f67c3f2683d7b3539b.png b/train2/pictures/3a088fe2ee6871f67c3f2683d7b3539b.png new file mode 100644 index 0000000..975f41e Binary files /dev/null and b/train2/pictures/3a088fe2ee6871f67c3f2683d7b3539b.png differ diff --git a/train2/pictures/3a0d195ae000f88667a64f4fd136f5e7.png b/train2/pictures/3a0d195ae000f88667a64f4fd136f5e7.png new file mode 100644 index 0000000..71d873a Binary files /dev/null and b/train2/pictures/3a0d195ae000f88667a64f4fd136f5e7.png differ diff --git a/train2/pictures/3a1ff65dde5808bf4fd091281cc4bde3.png b/train2/pictures/3a1ff65dde5808bf4fd091281cc4bde3.png new file mode 100644 index 0000000..475b749 Binary files /dev/null and b/train2/pictures/3a1ff65dde5808bf4fd091281cc4bde3.png differ diff --git a/train2/pictures/3a650ebfc7a03af237673ef3e74672c5.png b/train2/pictures/3a650ebfc7a03af237673ef3e74672c5.png new file mode 100644 index 0000000..0f21779 Binary files /dev/null and b/train2/pictures/3a650ebfc7a03af237673ef3e74672c5.png differ diff --git a/train2/pictures/3aac01225d02d2000f2517616482b7d5.png b/train2/pictures/3aac01225d02d2000f2517616482b7d5.png new file mode 100644 index 0000000..b253afd Binary files /dev/null and b/train2/pictures/3aac01225d02d2000f2517616482b7d5.png differ diff --git a/train2/pictures/3ac3a486d0ef5c71e9a4db0a843267e0.png b/train2/pictures/3ac3a486d0ef5c71e9a4db0a843267e0.png new file mode 100644 index 0000000..9662baa Binary files /dev/null and b/train2/pictures/3ac3a486d0ef5c71e9a4db0a843267e0.png differ diff --git a/train2/pictures/3afc62644e25fc7db55414f8fdf8093e.png b/train2/pictures/3afc62644e25fc7db55414f8fdf8093e.png new file mode 100644 index 0000000..5bbb46d Binary files /dev/null and b/train2/pictures/3afc62644e25fc7db55414f8fdf8093e.png differ diff --git a/train2/pictures/3b0290f4e6ede99d33746718cef149db.png b/train2/pictures/3b0290f4e6ede99d33746718cef149db.png new file mode 100644 index 0000000..5ecd03f Binary files /dev/null and b/train2/pictures/3b0290f4e6ede99d33746718cef149db.png differ diff --git a/train2/pictures/3b216f89780c8cd99a4ddc469ff9ee6b.png b/train2/pictures/3b216f89780c8cd99a4ddc469ff9ee6b.png new file mode 100644 index 0000000..c0c28b1 Binary files /dev/null and b/train2/pictures/3b216f89780c8cd99a4ddc469ff9ee6b.png differ diff --git a/train2/pictures/3b87881945386518b2457aac0727d2a8.png b/train2/pictures/3b87881945386518b2457aac0727d2a8.png new file mode 100644 index 0000000..8dd98ba Binary files /dev/null and b/train2/pictures/3b87881945386518b2457aac0727d2a8.png differ diff --git a/train2/pictures/3baa4969482e27367d6a83443d6dae94.png b/train2/pictures/3baa4969482e27367d6a83443d6dae94.png new file mode 100644 index 0000000..3ca6246 Binary files /dev/null and b/train2/pictures/3baa4969482e27367d6a83443d6dae94.png differ diff --git a/train2/pictures/3bbb70a97cafb1b567deb60686286c49.png b/train2/pictures/3bbb70a97cafb1b567deb60686286c49.png new file mode 100644 index 0000000..833f14c Binary files /dev/null and b/train2/pictures/3bbb70a97cafb1b567deb60686286c49.png differ diff --git a/train2/pictures/3bc2d45c4517d20b40d4916bb03a1072.png b/train2/pictures/3bc2d45c4517d20b40d4916bb03a1072.png new file mode 100644 index 0000000..e64993f Binary files /dev/null and b/train2/pictures/3bc2d45c4517d20b40d4916bb03a1072.png differ diff --git a/train2/pictures/3bdc599a928b2aba248b664844406492.png b/train2/pictures/3bdc599a928b2aba248b664844406492.png new file mode 100644 index 0000000..89efc54 Binary files /dev/null and b/train2/pictures/3bdc599a928b2aba248b664844406492.png differ diff --git a/train2/pictures/3bf9500fbb8727b76e15198d053d241c.png b/train2/pictures/3bf9500fbb8727b76e15198d053d241c.png new file mode 100644 index 0000000..a119470 Binary files /dev/null and b/train2/pictures/3bf9500fbb8727b76e15198d053d241c.png differ diff --git a/train2/pictures/3c02e330702f63c41b8c2f4c7bb28447.png b/train2/pictures/3c02e330702f63c41b8c2f4c7bb28447.png new file mode 100644 index 0000000..2d57318 Binary files /dev/null and b/train2/pictures/3c02e330702f63c41b8c2f4c7bb28447.png differ diff --git a/train2/pictures/3c062173f161a262e078ac2409959804.png b/train2/pictures/3c062173f161a262e078ac2409959804.png new file mode 100644 index 0000000..19d3928 Binary files /dev/null and b/train2/pictures/3c062173f161a262e078ac2409959804.png differ diff --git a/train2/pictures/3c19d47f50ab72b71cf471041285a13e.png b/train2/pictures/3c19d47f50ab72b71cf471041285a13e.png new file mode 100644 index 0000000..7a5cf95 Binary files /dev/null and b/train2/pictures/3c19d47f50ab72b71cf471041285a13e.png differ diff --git a/train2/pictures/3c2c15218cb342597caa43db92c86f49.png b/train2/pictures/3c2c15218cb342597caa43db92c86f49.png new file mode 100644 index 0000000..95685a6 Binary files /dev/null and b/train2/pictures/3c2c15218cb342597caa43db92c86f49.png differ diff --git a/train2/pictures/3c3702e2b21ebcc82e88bc82a791eb4e.png b/train2/pictures/3c3702e2b21ebcc82e88bc82a791eb4e.png new file mode 100644 index 0000000..b9084a6 Binary files /dev/null and b/train2/pictures/3c3702e2b21ebcc82e88bc82a791eb4e.png differ diff --git a/train2/pictures/3c965351269b0bc79da2e2fae9cd5d7a.png b/train2/pictures/3c965351269b0bc79da2e2fae9cd5d7a.png new file mode 100644 index 0000000..0fdc522 Binary files /dev/null and b/train2/pictures/3c965351269b0bc79da2e2fae9cd5d7a.png differ diff --git a/train2/pictures/3ccf59e85f4b4a2d3332010512fbc67e.png b/train2/pictures/3ccf59e85f4b4a2d3332010512fbc67e.png new file mode 100644 index 0000000..d21a613 Binary files /dev/null and b/train2/pictures/3ccf59e85f4b4a2d3332010512fbc67e.png differ diff --git a/train2/pictures/3cd1670c749006c2ff23394b84b1c870.png b/train2/pictures/3cd1670c749006c2ff23394b84b1c870.png new file mode 100644 index 0000000..07ed526 Binary files /dev/null and b/train2/pictures/3cd1670c749006c2ff23394b84b1c870.png differ diff --git a/train2/pictures/3ce7a4f7331d0805285041aebfb7df5a.png b/train2/pictures/3ce7a4f7331d0805285041aebfb7df5a.png new file mode 100644 index 0000000..0721edd Binary files /dev/null and b/train2/pictures/3ce7a4f7331d0805285041aebfb7df5a.png differ diff --git a/train2/pictures/3ce916f3cae06738b42a335835c938da.png b/train2/pictures/3ce916f3cae06738b42a335835c938da.png new file mode 100644 index 0000000..41f76fa Binary files /dev/null and b/train2/pictures/3ce916f3cae06738b42a335835c938da.png differ diff --git a/train2/pictures/3ceb6a100c9ddfbf3dc77bf6e3038159.png b/train2/pictures/3ceb6a100c9ddfbf3dc77bf6e3038159.png new file mode 100644 index 0000000..2486984 Binary files /dev/null and b/train2/pictures/3ceb6a100c9ddfbf3dc77bf6e3038159.png differ diff --git a/train2/pictures/3cf1c3096736e614f378786754fa0e61.png b/train2/pictures/3cf1c3096736e614f378786754fa0e61.png new file mode 100644 index 0000000..46cdd6c Binary files /dev/null and b/train2/pictures/3cf1c3096736e614f378786754fa0e61.png differ diff --git a/train2/pictures/3cf6188fa7b7ad68677e66a23cb42340.png b/train2/pictures/3cf6188fa7b7ad68677e66a23cb42340.png new file mode 100644 index 0000000..02eb2e8 Binary files /dev/null and b/train2/pictures/3cf6188fa7b7ad68677e66a23cb42340.png differ diff --git a/train2/pictures/3d0633cf31302bef65ccb91728311dad.png b/train2/pictures/3d0633cf31302bef65ccb91728311dad.png new file mode 100644 index 0000000..ad2b8d7 Binary files /dev/null and b/train2/pictures/3d0633cf31302bef65ccb91728311dad.png differ diff --git a/train2/pictures/3d124a0711827d5ac804b88ac810799a.png b/train2/pictures/3d124a0711827d5ac804b88ac810799a.png new file mode 100644 index 0000000..fe28122 Binary files /dev/null and b/train2/pictures/3d124a0711827d5ac804b88ac810799a.png differ diff --git a/train2/pictures/3d4f00f07674ad763804fdfae6f670ea.png b/train2/pictures/3d4f00f07674ad763804fdfae6f670ea.png new file mode 100644 index 0000000..049c1ba Binary files /dev/null and b/train2/pictures/3d4f00f07674ad763804fdfae6f670ea.png differ diff --git a/train2/pictures/3d860ebd3226f368341feb898f588459.png b/train2/pictures/3d860ebd3226f368341feb898f588459.png new file mode 100644 index 0000000..e32eb63 Binary files /dev/null and b/train2/pictures/3d860ebd3226f368341feb898f588459.png differ diff --git a/train2/pictures/3da6a8ff78a6f5edc8ceaf15c70eecbd.png b/train2/pictures/3da6a8ff78a6f5edc8ceaf15c70eecbd.png new file mode 100644 index 0000000..db32e62 Binary files /dev/null and b/train2/pictures/3da6a8ff78a6f5edc8ceaf15c70eecbd.png differ diff --git a/train2/pictures/3db1d95be1e0a5e36bce31e837aa7c2e.png b/train2/pictures/3db1d95be1e0a5e36bce31e837aa7c2e.png new file mode 100644 index 0000000..e745c29 Binary files /dev/null and b/train2/pictures/3db1d95be1e0a5e36bce31e837aa7c2e.png differ diff --git a/train2/pictures/3de359ffa814b85d26b0c56a16350996.png b/train2/pictures/3de359ffa814b85d26b0c56a16350996.png new file mode 100644 index 0000000..912f757 Binary files /dev/null and b/train2/pictures/3de359ffa814b85d26b0c56a16350996.png differ diff --git a/train2/pictures/3df06dbb000051c9355647c1b882bd1d.png b/train2/pictures/3df06dbb000051c9355647c1b882bd1d.png new file mode 100644 index 0000000..004c646 Binary files /dev/null and b/train2/pictures/3df06dbb000051c9355647c1b882bd1d.png differ diff --git a/train2/pictures/3e38febc61b15edafc7ed551edeaa630.png b/train2/pictures/3e38febc61b15edafc7ed551edeaa630.png new file mode 100644 index 0000000..2d105fc Binary files /dev/null and b/train2/pictures/3e38febc61b15edafc7ed551edeaa630.png differ diff --git a/train2/pictures/3e3c0ed206c0bf6059201e5c53c06ca5.png b/train2/pictures/3e3c0ed206c0bf6059201e5c53c06ca5.png new file mode 100644 index 0000000..ef01f3e Binary files /dev/null and b/train2/pictures/3e3c0ed206c0bf6059201e5c53c06ca5.png differ diff --git a/train2/pictures/3e5bc1142fff7e8d2efe570c8177fd72.png b/train2/pictures/3e5bc1142fff7e8d2efe570c8177fd72.png new file mode 100644 index 0000000..3254d84 Binary files /dev/null and b/train2/pictures/3e5bc1142fff7e8d2efe570c8177fd72.png differ diff --git a/train2/pictures/3ed0c303b8bb8a70ae85e863a0b9413a.png b/train2/pictures/3ed0c303b8bb8a70ae85e863a0b9413a.png new file mode 100644 index 0000000..9f4ddba Binary files /dev/null and b/train2/pictures/3ed0c303b8bb8a70ae85e863a0b9413a.png differ diff --git a/train2/pictures/3f077a7eff76c58156cd129d9215ac54.png b/train2/pictures/3f077a7eff76c58156cd129d9215ac54.png new file mode 100644 index 0000000..b67bf8a Binary files /dev/null and b/train2/pictures/3f077a7eff76c58156cd129d9215ac54.png differ diff --git a/train2/pictures/3f1379d9e4cd6f8eec3c26b3da56da03.png b/train2/pictures/3f1379d9e4cd6f8eec3c26b3da56da03.png new file mode 100644 index 0000000..bd286ef Binary files /dev/null and b/train2/pictures/3f1379d9e4cd6f8eec3c26b3da56da03.png differ diff --git a/train2/pictures/3f7ed2928c1e7510ebb709e07b4fd598.png b/train2/pictures/3f7ed2928c1e7510ebb709e07b4fd598.png new file mode 100644 index 0000000..e70aa9c Binary files /dev/null and b/train2/pictures/3f7ed2928c1e7510ebb709e07b4fd598.png differ diff --git a/train2/pictures/3fae0b7cb03610217eb22a709e92c464.png b/train2/pictures/3fae0b7cb03610217eb22a709e92c464.png new file mode 100644 index 0000000..0e82b99 Binary files /dev/null and b/train2/pictures/3fae0b7cb03610217eb22a709e92c464.png differ diff --git a/train2/pictures/3fde0d21af96abdc6c679b896acb76c2.png b/train2/pictures/3fde0d21af96abdc6c679b896acb76c2.png new file mode 100644 index 0000000..bb86b5c Binary files /dev/null and b/train2/pictures/3fde0d21af96abdc6c679b896acb76c2.png differ diff --git a/train2/pictures/3fe3b4b4bcc25c0dd9ce04f3a8a1e3b8.png b/train2/pictures/3fe3b4b4bcc25c0dd9ce04f3a8a1e3b8.png new file mode 100644 index 0000000..eac8f07 Binary files /dev/null and b/train2/pictures/3fe3b4b4bcc25c0dd9ce04f3a8a1e3b8.png differ diff --git a/train2/pictures/402a1da9942d7aebc4f0f7189f5a2c09.png b/train2/pictures/402a1da9942d7aebc4f0f7189f5a2c09.png new file mode 100644 index 0000000..0d72cf4 Binary files /dev/null and b/train2/pictures/402a1da9942d7aebc4f0f7189f5a2c09.png differ diff --git a/train2/pictures/403350c84061ea66546fb2d57855cdf1.png b/train2/pictures/403350c84061ea66546fb2d57855cdf1.png new file mode 100644 index 0000000..4a11ca8 Binary files /dev/null and b/train2/pictures/403350c84061ea66546fb2d57855cdf1.png differ diff --git a/train2/pictures/403b95210b5916efdbf6cf5775a7e5ae.png b/train2/pictures/403b95210b5916efdbf6cf5775a7e5ae.png new file mode 100644 index 0000000..5455bdf Binary files /dev/null and b/train2/pictures/403b95210b5916efdbf6cf5775a7e5ae.png differ diff --git a/train2/pictures/4060608c4d23590e8a8e1bf4785d04f5.png b/train2/pictures/4060608c4d23590e8a8e1bf4785d04f5.png new file mode 100644 index 0000000..0ab4c2f Binary files /dev/null and b/train2/pictures/4060608c4d23590e8a8e1bf4785d04f5.png differ diff --git a/train2/pictures/40768f1a1509db3ce23beec1947eb275.png b/train2/pictures/40768f1a1509db3ce23beec1947eb275.png new file mode 100644 index 0000000..1e012fe Binary files /dev/null and b/train2/pictures/40768f1a1509db3ce23beec1947eb275.png differ diff --git a/train2/pictures/40bb2cfde2d2ed2651f2b2b4dab7a4a0.png b/train2/pictures/40bb2cfde2d2ed2651f2b2b4dab7a4a0.png new file mode 100644 index 0000000..b8639f3 Binary files /dev/null and b/train2/pictures/40bb2cfde2d2ed2651f2b2b4dab7a4a0.png differ diff --git a/train2/pictures/40d3d78a1c97e3ca888521e9c6d2ea38.png b/train2/pictures/40d3d78a1c97e3ca888521e9c6d2ea38.png new file mode 100644 index 0000000..2eddfc0 Binary files /dev/null and b/train2/pictures/40d3d78a1c97e3ca888521e9c6d2ea38.png differ diff --git a/train2/pictures/40e8a2e832b942879cc888fc3cd8832a.png b/train2/pictures/40e8a2e832b942879cc888fc3cd8832a.png new file mode 100644 index 0000000..4a3afcd Binary files /dev/null and b/train2/pictures/40e8a2e832b942879cc888fc3cd8832a.png differ diff --git a/train2/pictures/41351da6ee8b3a61c57bf36fbb701f78.png b/train2/pictures/41351da6ee8b3a61c57bf36fbb701f78.png new file mode 100644 index 0000000..557cca6 Binary files /dev/null and b/train2/pictures/41351da6ee8b3a61c57bf36fbb701f78.png differ diff --git a/train2/pictures/4147ff7ad03590857b15f03710bbde27.png b/train2/pictures/4147ff7ad03590857b15f03710bbde27.png new file mode 100644 index 0000000..6c9fdda Binary files /dev/null and b/train2/pictures/4147ff7ad03590857b15f03710bbde27.png differ diff --git a/train2/pictures/41707a5190cd4656450daacd5649f3c0.png b/train2/pictures/41707a5190cd4656450daacd5649f3c0.png new file mode 100644 index 0000000..b348c69 Binary files /dev/null and b/train2/pictures/41707a5190cd4656450daacd5649f3c0.png differ diff --git a/train2/pictures/417de796bd3c1b3558c485ddba22bf81.png b/train2/pictures/417de796bd3c1b3558c485ddba22bf81.png new file mode 100644 index 0000000..1b79296 Binary files /dev/null and b/train2/pictures/417de796bd3c1b3558c485ddba22bf81.png differ diff --git a/train2/pictures/41b21dee4242b695048d00ed47b769d5.png b/train2/pictures/41b21dee4242b695048d00ed47b769d5.png new file mode 100644 index 0000000..fdd1166 Binary files /dev/null and b/train2/pictures/41b21dee4242b695048d00ed47b769d5.png differ diff --git a/train2/pictures/41ce7178a9daf2045586d649a2e98fe5.png b/train2/pictures/41ce7178a9daf2045586d649a2e98fe5.png new file mode 100644 index 0000000..5105a6e Binary files /dev/null and b/train2/pictures/41ce7178a9daf2045586d649a2e98fe5.png differ diff --git a/train2/pictures/41cedef35d281d53b89f4ff8cc663268.png b/train2/pictures/41cedef35d281d53b89f4ff8cc663268.png new file mode 100644 index 0000000..4476342 Binary files /dev/null and b/train2/pictures/41cedef35d281d53b89f4ff8cc663268.png differ diff --git a/train2/pictures/41d7d5b68c7d4c8c385a262f1aaaa76d.png b/train2/pictures/41d7d5b68c7d4c8c385a262f1aaaa76d.png new file mode 100644 index 0000000..c4a6780 Binary files /dev/null and b/train2/pictures/41d7d5b68c7d4c8c385a262f1aaaa76d.png differ diff --git a/train2/pictures/41e7e872a15e583f510f527fc2f8b8ad.png b/train2/pictures/41e7e872a15e583f510f527fc2f8b8ad.png new file mode 100644 index 0000000..1b83947 Binary files /dev/null and b/train2/pictures/41e7e872a15e583f510f527fc2f8b8ad.png differ diff --git a/train2/pictures/4226601d9f23cc8f7b0f5f7e1b93cf6b.png b/train2/pictures/4226601d9f23cc8f7b0f5f7e1b93cf6b.png new file mode 100644 index 0000000..25f394e Binary files /dev/null and b/train2/pictures/4226601d9f23cc8f7b0f5f7e1b93cf6b.png differ diff --git a/train2/pictures/42413353d7b174a256f4b97d40c1b218.png b/train2/pictures/42413353d7b174a256f4b97d40c1b218.png new file mode 100644 index 0000000..11ee743 Binary files /dev/null and b/train2/pictures/42413353d7b174a256f4b97d40c1b218.png differ diff --git a/train2/pictures/42756fa15e9886733f95cffc8fe32d4d.png b/train2/pictures/42756fa15e9886733f95cffc8fe32d4d.png new file mode 100644 index 0000000..1c1f7b9 Binary files /dev/null and b/train2/pictures/42756fa15e9886733f95cffc8fe32d4d.png differ diff --git a/train2/pictures/42a160ee28fff10b36f7cd048dbed76e.png b/train2/pictures/42a160ee28fff10b36f7cd048dbed76e.png new file mode 100644 index 0000000..200ec30 Binary files /dev/null and b/train2/pictures/42a160ee28fff10b36f7cd048dbed76e.png differ diff --git a/train2/pictures/42dc1348589a294685e8e4febb3f2e15.png b/train2/pictures/42dc1348589a294685e8e4febb3f2e15.png new file mode 100644 index 0000000..75ebc01 Binary files /dev/null and b/train2/pictures/42dc1348589a294685e8e4febb3f2e15.png differ diff --git a/train2/pictures/42e46de012bf5d6ea3918a4400d9c221.png b/train2/pictures/42e46de012bf5d6ea3918a4400d9c221.png new file mode 100644 index 0000000..e111b91 Binary files /dev/null and b/train2/pictures/42e46de012bf5d6ea3918a4400d9c221.png differ diff --git a/train2/pictures/430f6ce3167c33a0d1e40a40932d0d21.png b/train2/pictures/430f6ce3167c33a0d1e40a40932d0d21.png new file mode 100644 index 0000000..e0ee857 Binary files /dev/null and b/train2/pictures/430f6ce3167c33a0d1e40a40932d0d21.png differ diff --git a/train2/pictures/431e7710ff01d8be9c116a6eddeaf68a.png b/train2/pictures/431e7710ff01d8be9c116a6eddeaf68a.png new file mode 100644 index 0000000..b7f1f72 Binary files /dev/null and b/train2/pictures/431e7710ff01d8be9c116a6eddeaf68a.png differ diff --git a/train2/pictures/432f25793b2db50b14c5829fc473c3a8.png b/train2/pictures/432f25793b2db50b14c5829fc473c3a8.png new file mode 100644 index 0000000..10ff310 Binary files /dev/null and b/train2/pictures/432f25793b2db50b14c5829fc473c3a8.png differ diff --git a/train2/pictures/435fff2e3fbb27f0c66e9b3895290c7a.png b/train2/pictures/435fff2e3fbb27f0c66e9b3895290c7a.png new file mode 100644 index 0000000..6670341 Binary files /dev/null and b/train2/pictures/435fff2e3fbb27f0c66e9b3895290c7a.png differ diff --git a/train2/pictures/439110f4a136f0a78a186f2f624b51ef.png b/train2/pictures/439110f4a136f0a78a186f2f624b51ef.png new file mode 100644 index 0000000..6f2c69f Binary files /dev/null and b/train2/pictures/439110f4a136f0a78a186f2f624b51ef.png differ diff --git a/train2/pictures/43a7e16edea4be2c5ef19269afdd057a.png b/train2/pictures/43a7e16edea4be2c5ef19269afdd057a.png new file mode 100644 index 0000000..18e6227 Binary files /dev/null and b/train2/pictures/43a7e16edea4be2c5ef19269afdd057a.png differ diff --git a/train2/pictures/441e6521a0316f866ca6be875dafab28.png b/train2/pictures/441e6521a0316f866ca6be875dafab28.png new file mode 100644 index 0000000..6a2f91b Binary files /dev/null and b/train2/pictures/441e6521a0316f866ca6be875dafab28.png differ diff --git a/train2/pictures/4428c5c2c7484468614a74ef3b1f5ee4.png b/train2/pictures/4428c5c2c7484468614a74ef3b1f5ee4.png new file mode 100644 index 0000000..e25cd77 Binary files /dev/null and b/train2/pictures/4428c5c2c7484468614a74ef3b1f5ee4.png differ diff --git a/train2/pictures/442b49e37ec484527ef4ff2960f2f875.png b/train2/pictures/442b49e37ec484527ef4ff2960f2f875.png new file mode 100644 index 0000000..09e7a34 Binary files /dev/null and b/train2/pictures/442b49e37ec484527ef4ff2960f2f875.png differ diff --git a/train2/pictures/446390d9915158794eda8deb38d09d0d.png b/train2/pictures/446390d9915158794eda8deb38d09d0d.png new file mode 100644 index 0000000..1e9a6b9 Binary files /dev/null and b/train2/pictures/446390d9915158794eda8deb38d09d0d.png differ diff --git a/train2/pictures/44931f08f1020532375cd707add26c83.png b/train2/pictures/44931f08f1020532375cd707add26c83.png new file mode 100644 index 0000000..75c6064 Binary files /dev/null and b/train2/pictures/44931f08f1020532375cd707add26c83.png differ diff --git a/train2/pictures/44b50f3b5e7ccf46186e6b8740e3e0bf.png b/train2/pictures/44b50f3b5e7ccf46186e6b8740e3e0bf.png new file mode 100644 index 0000000..c6f2de8 Binary files /dev/null and b/train2/pictures/44b50f3b5e7ccf46186e6b8740e3e0bf.png differ diff --git a/train2/pictures/44b63313bd9f814d50fea903e04993cd.png b/train2/pictures/44b63313bd9f814d50fea903e04993cd.png new file mode 100644 index 0000000..123fb9a Binary files /dev/null and b/train2/pictures/44b63313bd9f814d50fea903e04993cd.png differ diff --git a/train2/pictures/44cbb857ee9c0b59b7be6b87286110f7.png b/train2/pictures/44cbb857ee9c0b59b7be6b87286110f7.png new file mode 100644 index 0000000..acca638 Binary files /dev/null and b/train2/pictures/44cbb857ee9c0b59b7be6b87286110f7.png differ diff --git a/train2/pictures/45064320d2ddfef59f7cc4ffcf488820.png b/train2/pictures/45064320d2ddfef59f7cc4ffcf488820.png new file mode 100644 index 0000000..275532b Binary files /dev/null and b/train2/pictures/45064320d2ddfef59f7cc4ffcf488820.png differ diff --git a/train2/pictures/455646066237aa4e5f3f96dc5fbaffff.png b/train2/pictures/455646066237aa4e5f3f96dc5fbaffff.png new file mode 100644 index 0000000..a506057 Binary files /dev/null and b/train2/pictures/455646066237aa4e5f3f96dc5fbaffff.png differ diff --git a/train2/pictures/45868d0797a403ef1c283bd4718b8b34.png b/train2/pictures/45868d0797a403ef1c283bd4718b8b34.png new file mode 100644 index 0000000..1237a69 Binary files /dev/null and b/train2/pictures/45868d0797a403ef1c283bd4718b8b34.png differ diff --git a/train2/pictures/45982f1f86dd6e7e6c39a998b0b09df4.png b/train2/pictures/45982f1f86dd6e7e6c39a998b0b09df4.png new file mode 100644 index 0000000..8896eae Binary files /dev/null and b/train2/pictures/45982f1f86dd6e7e6c39a998b0b09df4.png differ diff --git a/train2/pictures/45a45c745a94075f0e8e996b6f03804b.png b/train2/pictures/45a45c745a94075f0e8e996b6f03804b.png new file mode 100644 index 0000000..4ba1228 Binary files /dev/null and b/train2/pictures/45a45c745a94075f0e8e996b6f03804b.png differ diff --git a/train2/pictures/45cb302f5b78083974af880bee79a974.png b/train2/pictures/45cb302f5b78083974af880bee79a974.png new file mode 100644 index 0000000..46c123b Binary files /dev/null and b/train2/pictures/45cb302f5b78083974af880bee79a974.png differ diff --git a/train2/pictures/45e755a0ce61fcf306a6e7eab4ec9f18.png b/train2/pictures/45e755a0ce61fcf306a6e7eab4ec9f18.png new file mode 100644 index 0000000..865a60a Binary files /dev/null and b/train2/pictures/45e755a0ce61fcf306a6e7eab4ec9f18.png differ diff --git a/train2/pictures/45f480d1a5cf6f25fe417bf7d11d4ffc.png b/train2/pictures/45f480d1a5cf6f25fe417bf7d11d4ffc.png new file mode 100644 index 0000000..2bb05fa Binary files /dev/null and b/train2/pictures/45f480d1a5cf6f25fe417bf7d11d4ffc.png differ diff --git a/train2/pictures/4611009c2ad3eca00edfca482e77eb70.png b/train2/pictures/4611009c2ad3eca00edfca482e77eb70.png new file mode 100644 index 0000000..79d4795 Binary files /dev/null and b/train2/pictures/4611009c2ad3eca00edfca482e77eb70.png differ diff --git a/train2/pictures/46c154fa21cffecb401d56fc95d1a2f9.png b/train2/pictures/46c154fa21cffecb401d56fc95d1a2f9.png new file mode 100644 index 0000000..7890aca Binary files /dev/null and b/train2/pictures/46c154fa21cffecb401d56fc95d1a2f9.png differ diff --git a/train2/pictures/470004c666301592303feb97462c26cf.png b/train2/pictures/470004c666301592303feb97462c26cf.png new file mode 100644 index 0000000..1ff1695 Binary files /dev/null and b/train2/pictures/470004c666301592303feb97462c26cf.png differ diff --git a/train2/pictures/4732b4d058f5f74736b21241ad31025e.png b/train2/pictures/4732b4d058f5f74736b21241ad31025e.png new file mode 100644 index 0000000..3f1d46a Binary files /dev/null and b/train2/pictures/4732b4d058f5f74736b21241ad31025e.png differ diff --git a/train2/pictures/4740e35dd4a53b718d413a9be8cd381c.png b/train2/pictures/4740e35dd4a53b718d413a9be8cd381c.png new file mode 100644 index 0000000..6c7912d Binary files /dev/null and b/train2/pictures/4740e35dd4a53b718d413a9be8cd381c.png differ diff --git a/train2/pictures/475d19c2d4015c3d8b30bb4d7e6cd424.png b/train2/pictures/475d19c2d4015c3d8b30bb4d7e6cd424.png new file mode 100644 index 0000000..fd3a38a Binary files /dev/null and b/train2/pictures/475d19c2d4015c3d8b30bb4d7e6cd424.png differ diff --git a/train2/pictures/4769330863e1f521d82bb100ffd44fcd.png b/train2/pictures/4769330863e1f521d82bb100ffd44fcd.png new file mode 100644 index 0000000..faff616 Binary files /dev/null and b/train2/pictures/4769330863e1f521d82bb100ffd44fcd.png differ diff --git a/train2/pictures/47a26d9573b293f22aeea08931551797.png b/train2/pictures/47a26d9573b293f22aeea08931551797.png new file mode 100644 index 0000000..3944c2b Binary files /dev/null and b/train2/pictures/47a26d9573b293f22aeea08931551797.png differ diff --git a/train2/pictures/47a70115667103a74b43c9afbc1ead9b.png b/train2/pictures/47a70115667103a74b43c9afbc1ead9b.png new file mode 100644 index 0000000..13547cf Binary files /dev/null and b/train2/pictures/47a70115667103a74b43c9afbc1ead9b.png differ diff --git a/train2/pictures/47a7d963c1a2854344498c46c6d46dac.png b/train2/pictures/47a7d963c1a2854344498c46c6d46dac.png new file mode 100644 index 0000000..9bb3b62 Binary files /dev/null and b/train2/pictures/47a7d963c1a2854344498c46c6d46dac.png differ diff --git a/train2/pictures/48ee78d09d61efaa3d8c0545420ad2df.png b/train2/pictures/48ee78d09d61efaa3d8c0545420ad2df.png new file mode 100644 index 0000000..a36efdf Binary files /dev/null and b/train2/pictures/48ee78d09d61efaa3d8c0545420ad2df.png differ diff --git a/train2/pictures/490e5e8a298a8754f4722c2e7ede84c0.png b/train2/pictures/490e5e8a298a8754f4722c2e7ede84c0.png new file mode 100644 index 0000000..b06396a Binary files /dev/null and b/train2/pictures/490e5e8a298a8754f4722c2e7ede84c0.png differ diff --git a/train2/pictures/492dea5fd4f358d7bd628187153f6e7c.png b/train2/pictures/492dea5fd4f358d7bd628187153f6e7c.png new file mode 100644 index 0000000..bbac350 Binary files /dev/null and b/train2/pictures/492dea5fd4f358d7bd628187153f6e7c.png differ diff --git a/train2/pictures/4959f2488ce02ad917ae60db11bae121.png b/train2/pictures/4959f2488ce02ad917ae60db11bae121.png new file mode 100644 index 0000000..403087a Binary files /dev/null and b/train2/pictures/4959f2488ce02ad917ae60db11bae121.png differ diff --git a/train2/pictures/496418d0b5d2f9e440b4c1cc55e71f1b.png b/train2/pictures/496418d0b5d2f9e440b4c1cc55e71f1b.png new file mode 100644 index 0000000..b690109 Binary files /dev/null and b/train2/pictures/496418d0b5d2f9e440b4c1cc55e71f1b.png differ diff --git a/train2/pictures/4995adcc49557b66ac62276dc08374c7.png b/train2/pictures/4995adcc49557b66ac62276dc08374c7.png new file mode 100644 index 0000000..72df80b Binary files /dev/null and b/train2/pictures/4995adcc49557b66ac62276dc08374c7.png differ diff --git a/train2/pictures/4995fc1b1b0cecdc0124caf58e769c07.png b/train2/pictures/4995fc1b1b0cecdc0124caf58e769c07.png new file mode 100644 index 0000000..3652e4d Binary files /dev/null and b/train2/pictures/4995fc1b1b0cecdc0124caf58e769c07.png differ diff --git a/train2/pictures/49baa104939d04885f3ca6c71172ac82.png b/train2/pictures/49baa104939d04885f3ca6c71172ac82.png new file mode 100644 index 0000000..6927a2f Binary files /dev/null and b/train2/pictures/49baa104939d04885f3ca6c71172ac82.png differ diff --git a/train2/pictures/49c978c5b3186e2b65c486c4e253fbb6.png b/train2/pictures/49c978c5b3186e2b65c486c4e253fbb6.png new file mode 100644 index 0000000..c75040b Binary files /dev/null and b/train2/pictures/49c978c5b3186e2b65c486c4e253fbb6.png differ diff --git a/train2/pictures/49cdfc1578728f76e20b5eae08beeafc.png b/train2/pictures/49cdfc1578728f76e20b5eae08beeafc.png new file mode 100644 index 0000000..70c6ee3 Binary files /dev/null and b/train2/pictures/49cdfc1578728f76e20b5eae08beeafc.png differ diff --git a/train2/pictures/49e4d0e6a6bcc26a17bcd109942fa795.png b/train2/pictures/49e4d0e6a6bcc26a17bcd109942fa795.png new file mode 100644 index 0000000..6c2b767 Binary files /dev/null and b/train2/pictures/49e4d0e6a6bcc26a17bcd109942fa795.png differ diff --git a/train2/pictures/49f74ae34900e618f39ce0b511b1b728.png b/train2/pictures/49f74ae34900e618f39ce0b511b1b728.png new file mode 100644 index 0000000..10c2b16 Binary files /dev/null and b/train2/pictures/49f74ae34900e618f39ce0b511b1b728.png differ diff --git a/train2/pictures/49f783e17119b3edd2e87df07e4514f7.png b/train2/pictures/49f783e17119b3edd2e87df07e4514f7.png new file mode 100644 index 0000000..765b017 Binary files /dev/null and b/train2/pictures/49f783e17119b3edd2e87df07e4514f7.png differ diff --git a/train2/pictures/4a03c1ea0ba17c3aeb955897d9874328.png b/train2/pictures/4a03c1ea0ba17c3aeb955897d9874328.png new file mode 100644 index 0000000..35a577c Binary files /dev/null and b/train2/pictures/4a03c1ea0ba17c3aeb955897d9874328.png differ diff --git a/train2/pictures/4a08c440cbae92db9887b43f2ce7da92.png b/train2/pictures/4a08c440cbae92db9887b43f2ce7da92.png new file mode 100644 index 0000000..7f2963b Binary files /dev/null and b/train2/pictures/4a08c440cbae92db9887b43f2ce7da92.png differ diff --git a/train2/pictures/4a1c3691e573e7c765f5e3d74f4d1a06.png b/train2/pictures/4a1c3691e573e7c765f5e3d74f4d1a06.png new file mode 100644 index 0000000..296840a Binary files /dev/null and b/train2/pictures/4a1c3691e573e7c765f5e3d74f4d1a06.png differ diff --git a/train2/pictures/4a78a9b477ecd5842b730669cf5a47b1.png b/train2/pictures/4a78a9b477ecd5842b730669cf5a47b1.png new file mode 100644 index 0000000..712bb3d Binary files /dev/null and b/train2/pictures/4a78a9b477ecd5842b730669cf5a47b1.png differ diff --git a/train2/pictures/4a8e4460acd126ada56bca20be795d87.png b/train2/pictures/4a8e4460acd126ada56bca20be795d87.png new file mode 100644 index 0000000..dbf0a2e Binary files /dev/null and b/train2/pictures/4a8e4460acd126ada56bca20be795d87.png differ diff --git a/train2/pictures/4a90f1874863b0fbdf140ac9958bceae.png b/train2/pictures/4a90f1874863b0fbdf140ac9958bceae.png new file mode 100644 index 0000000..0b23b29 Binary files /dev/null and b/train2/pictures/4a90f1874863b0fbdf140ac9958bceae.png differ diff --git a/train2/pictures/4b0e6f4ce8d22a8a38f839dddab9cb43.png b/train2/pictures/4b0e6f4ce8d22a8a38f839dddab9cb43.png new file mode 100644 index 0000000..83ea954 Binary files /dev/null and b/train2/pictures/4b0e6f4ce8d22a8a38f839dddab9cb43.png differ diff --git a/train2/pictures/4b41fbbae1f81e1f62ea16880b7d3dc7.png b/train2/pictures/4b41fbbae1f81e1f62ea16880b7d3dc7.png new file mode 100644 index 0000000..ba2a0b4 Binary files /dev/null and b/train2/pictures/4b41fbbae1f81e1f62ea16880b7d3dc7.png differ diff --git a/train2/pictures/4b42c4282fcf45d4619f200f0af08143.png b/train2/pictures/4b42c4282fcf45d4619f200f0af08143.png new file mode 100644 index 0000000..f465a33 Binary files /dev/null and b/train2/pictures/4b42c4282fcf45d4619f200f0af08143.png differ diff --git a/train2/pictures/4b6786330270d0e224239c06e7dfe596.png b/train2/pictures/4b6786330270d0e224239c06e7dfe596.png new file mode 100644 index 0000000..36a41d7 Binary files /dev/null and b/train2/pictures/4b6786330270d0e224239c06e7dfe596.png differ diff --git a/train2/pictures/4bc985c1240a2b490f7f29751a02d909.png b/train2/pictures/4bc985c1240a2b490f7f29751a02d909.png new file mode 100644 index 0000000..b2c7108 Binary files /dev/null and b/train2/pictures/4bc985c1240a2b490f7f29751a02d909.png differ diff --git a/train2/pictures/4bd9a36ccc25f925b42d723c11013c9a.png b/train2/pictures/4bd9a36ccc25f925b42d723c11013c9a.png new file mode 100644 index 0000000..35fba0b Binary files /dev/null and b/train2/pictures/4bd9a36ccc25f925b42d723c11013c9a.png differ diff --git a/train2/pictures/4c373d482567acc09c76a3e4700baa41.png b/train2/pictures/4c373d482567acc09c76a3e4700baa41.png new file mode 100644 index 0000000..42104a8 Binary files /dev/null and b/train2/pictures/4c373d482567acc09c76a3e4700baa41.png differ diff --git a/train2/pictures/4c609ba34a3cc8131e18de3983be8e60.png b/train2/pictures/4c609ba34a3cc8131e18de3983be8e60.png new file mode 100644 index 0000000..1719070 Binary files /dev/null and b/train2/pictures/4c609ba34a3cc8131e18de3983be8e60.png differ diff --git a/train2/pictures/4c8315cbd51f9b8a72e74b18e7fb5578.png b/train2/pictures/4c8315cbd51f9b8a72e74b18e7fb5578.png new file mode 100644 index 0000000..1ab22d0 Binary files /dev/null and b/train2/pictures/4c8315cbd51f9b8a72e74b18e7fb5578.png differ diff --git a/train2/pictures/4c98b94ad0307b76aa8d1978d3c0ad0e.png b/train2/pictures/4c98b94ad0307b76aa8d1978d3c0ad0e.png new file mode 100644 index 0000000..df14c94 Binary files /dev/null and b/train2/pictures/4c98b94ad0307b76aa8d1978d3c0ad0e.png differ diff --git a/train2/pictures/4cd5403be8478cb4572909c270cfd725.png b/train2/pictures/4cd5403be8478cb4572909c270cfd725.png new file mode 100644 index 0000000..59b025c Binary files /dev/null and b/train2/pictures/4cd5403be8478cb4572909c270cfd725.png differ diff --git a/train2/pictures/4d1885da605926bb4aeb47d946261263.png b/train2/pictures/4d1885da605926bb4aeb47d946261263.png new file mode 100644 index 0000000..09247f4 Binary files /dev/null and b/train2/pictures/4d1885da605926bb4aeb47d946261263.png differ diff --git a/train2/pictures/4dac8bd640f92519db0cee50c0ad237c.png b/train2/pictures/4dac8bd640f92519db0cee50c0ad237c.png new file mode 100644 index 0000000..7736b19 Binary files /dev/null and b/train2/pictures/4dac8bd640f92519db0cee50c0ad237c.png differ diff --git a/train2/pictures/4dacec9b9992b4a1f467f9a46fd728d1.png b/train2/pictures/4dacec9b9992b4a1f467f9a46fd728d1.png new file mode 100644 index 0000000..0235e32 Binary files /dev/null and b/train2/pictures/4dacec9b9992b4a1f467f9a46fd728d1.png differ diff --git a/train2/pictures/4db98cf9c14355ceceba47b20f53fa82.png b/train2/pictures/4db98cf9c14355ceceba47b20f53fa82.png new file mode 100644 index 0000000..524af14 Binary files /dev/null and b/train2/pictures/4db98cf9c14355ceceba47b20f53fa82.png differ diff --git a/train2/pictures/4e164a3a2088383a308a272a1847715a.png b/train2/pictures/4e164a3a2088383a308a272a1847715a.png new file mode 100644 index 0000000..25ade36 Binary files /dev/null and b/train2/pictures/4e164a3a2088383a308a272a1847715a.png differ diff --git a/train2/pictures/4e271dbb4bf439e71b9bd3981f2dc9a6.png b/train2/pictures/4e271dbb4bf439e71b9bd3981f2dc9a6.png new file mode 100644 index 0000000..dc498db Binary files /dev/null and b/train2/pictures/4e271dbb4bf439e71b9bd3981f2dc9a6.png differ diff --git a/train2/pictures/4e32723d52f92d5565d1910c6ce592fb.png b/train2/pictures/4e32723d52f92d5565d1910c6ce592fb.png new file mode 100644 index 0000000..fc9427f Binary files /dev/null and b/train2/pictures/4e32723d52f92d5565d1910c6ce592fb.png differ diff --git a/train2/pictures/4e69541ca5c80b0c69add7d24f22a976.png b/train2/pictures/4e69541ca5c80b0c69add7d24f22a976.png new file mode 100644 index 0000000..0c8bb1d Binary files /dev/null and b/train2/pictures/4e69541ca5c80b0c69add7d24f22a976.png differ diff --git a/train2/pictures/4e6a7c10d294a058bfa0af3a6ab07072.png b/train2/pictures/4e6a7c10d294a058bfa0af3a6ab07072.png new file mode 100644 index 0000000..3869a37 Binary files /dev/null and b/train2/pictures/4e6a7c10d294a058bfa0af3a6ab07072.png differ diff --git a/train2/pictures/4e84eb59cf83d14179f18365cf53a46c.png b/train2/pictures/4e84eb59cf83d14179f18365cf53a46c.png new file mode 100644 index 0000000..946ebf4 Binary files /dev/null and b/train2/pictures/4e84eb59cf83d14179f18365cf53a46c.png differ diff --git a/train2/pictures/4e9486d1afa42dc0aec6fda29bd24db9.png b/train2/pictures/4e9486d1afa42dc0aec6fda29bd24db9.png new file mode 100644 index 0000000..776f3a5 Binary files /dev/null and b/train2/pictures/4e9486d1afa42dc0aec6fda29bd24db9.png differ diff --git a/train2/pictures/4ea63eb58d117ae392130675b31356db.png b/train2/pictures/4ea63eb58d117ae392130675b31356db.png new file mode 100644 index 0000000..71b12ae Binary files /dev/null and b/train2/pictures/4ea63eb58d117ae392130675b31356db.png differ diff --git a/train2/pictures/4eb1ec5b9bab06cba5d10072d40657b5.png b/train2/pictures/4eb1ec5b9bab06cba5d10072d40657b5.png new file mode 100644 index 0000000..038600e Binary files /dev/null and b/train2/pictures/4eb1ec5b9bab06cba5d10072d40657b5.png differ diff --git a/train2/pictures/4ed4d9d2e130edaf42b3fab7f75b9b53.png b/train2/pictures/4ed4d9d2e130edaf42b3fab7f75b9b53.png new file mode 100644 index 0000000..c066ee7 Binary files /dev/null and b/train2/pictures/4ed4d9d2e130edaf42b3fab7f75b9b53.png differ diff --git a/train2/pictures/4eea17d01a6888e3ec5d71ec1da33d86.png b/train2/pictures/4eea17d01a6888e3ec5d71ec1da33d86.png new file mode 100644 index 0000000..0efb002 Binary files /dev/null and b/train2/pictures/4eea17d01a6888e3ec5d71ec1da33d86.png differ diff --git a/train2/pictures/4f2790f610f4fbdb42499ce8d34a1382.png b/train2/pictures/4f2790f610f4fbdb42499ce8d34a1382.png new file mode 100644 index 0000000..cf96889 Binary files /dev/null and b/train2/pictures/4f2790f610f4fbdb42499ce8d34a1382.png differ diff --git a/train2/pictures/4f2af05047fd2ae23bcbd4c6aa4b9298.png b/train2/pictures/4f2af05047fd2ae23bcbd4c6aa4b9298.png new file mode 100644 index 0000000..daa602e Binary files /dev/null and b/train2/pictures/4f2af05047fd2ae23bcbd4c6aa4b9298.png differ diff --git a/train2/pictures/4f3bd61ef99084df980c8e069da77210.png b/train2/pictures/4f3bd61ef99084df980c8e069da77210.png new file mode 100644 index 0000000..b95a6e2 Binary files /dev/null and b/train2/pictures/4f3bd61ef99084df980c8e069da77210.png differ diff --git a/train2/pictures/4fae92b40dfa4ec30b187cabab7a2e6c.png b/train2/pictures/4fae92b40dfa4ec30b187cabab7a2e6c.png new file mode 100644 index 0000000..a330374 Binary files /dev/null and b/train2/pictures/4fae92b40dfa4ec30b187cabab7a2e6c.png differ diff --git a/train2/pictures/4fb6d3c4b4a79996894e73169f89562e.png b/train2/pictures/4fb6d3c4b4a79996894e73169f89562e.png new file mode 100644 index 0000000..4c5ed9f Binary files /dev/null and b/train2/pictures/4fb6d3c4b4a79996894e73169f89562e.png differ diff --git a/train2/pictures/503c196a8533c504a74a796aad9c1594.png b/train2/pictures/503c196a8533c504a74a796aad9c1594.png new file mode 100644 index 0000000..22d7129 Binary files /dev/null and b/train2/pictures/503c196a8533c504a74a796aad9c1594.png differ diff --git a/train2/pictures/504237d3cf60d72cb9f0c13a4efffad4.png b/train2/pictures/504237d3cf60d72cb9f0c13a4efffad4.png new file mode 100644 index 0000000..30b8445 Binary files /dev/null and b/train2/pictures/504237d3cf60d72cb9f0c13a4efffad4.png differ diff --git a/train2/pictures/50584987f97bcad5db5ed54ed1441bf3.png b/train2/pictures/50584987f97bcad5db5ed54ed1441bf3.png new file mode 100644 index 0000000..38d449b Binary files /dev/null and b/train2/pictures/50584987f97bcad5db5ed54ed1441bf3.png differ diff --git a/train2/pictures/505f02ab5b045426720b4961edaed238.png b/train2/pictures/505f02ab5b045426720b4961edaed238.png new file mode 100644 index 0000000..d37eb03 Binary files /dev/null and b/train2/pictures/505f02ab5b045426720b4961edaed238.png differ diff --git a/train2/pictures/50769cc8b5d5436a5f3e8f1aa19a51d2.png b/train2/pictures/50769cc8b5d5436a5f3e8f1aa19a51d2.png new file mode 100644 index 0000000..431705e Binary files /dev/null and b/train2/pictures/50769cc8b5d5436a5f3e8f1aa19a51d2.png differ diff --git a/train2/pictures/5089a4e906b33a7c51a401ffabd83287.png b/train2/pictures/5089a4e906b33a7c51a401ffabd83287.png new file mode 100644 index 0000000..45a9096 Binary files /dev/null and b/train2/pictures/5089a4e906b33a7c51a401ffabd83287.png differ diff --git a/train2/pictures/5090867c479a6f30078cec22200e6fa8.png b/train2/pictures/5090867c479a6f30078cec22200e6fa8.png new file mode 100644 index 0000000..0f4f897 Binary files /dev/null and b/train2/pictures/5090867c479a6f30078cec22200e6fa8.png differ diff --git a/train2/pictures/5094f5e6d840dd61c6bb31c18687a238.png b/train2/pictures/5094f5e6d840dd61c6bb31c18687a238.png new file mode 100644 index 0000000..d9008c8 Binary files /dev/null and b/train2/pictures/5094f5e6d840dd61c6bb31c18687a238.png differ diff --git a/train2/pictures/509efc0444790659c3cb63b161ba7667.png b/train2/pictures/509efc0444790659c3cb63b161ba7667.png new file mode 100644 index 0000000..2d48c5d Binary files /dev/null and b/train2/pictures/509efc0444790659c3cb63b161ba7667.png differ diff --git a/train2/pictures/50a43b77bd4969d3bb71ef24bb78912c.png b/train2/pictures/50a43b77bd4969d3bb71ef24bb78912c.png new file mode 100644 index 0000000..48c238a Binary files /dev/null and b/train2/pictures/50a43b77bd4969d3bb71ef24bb78912c.png differ diff --git a/train2/pictures/50de1e96ccb7b39fa88872a90b01b4d5.png b/train2/pictures/50de1e96ccb7b39fa88872a90b01b4d5.png new file mode 100644 index 0000000..f3b9838 Binary files /dev/null and b/train2/pictures/50de1e96ccb7b39fa88872a90b01b4d5.png differ diff --git a/train2/pictures/51564722df537d8e96f645f80f3ff6ee.png b/train2/pictures/51564722df537d8e96f645f80f3ff6ee.png new file mode 100644 index 0000000..1cb1e26 Binary files /dev/null and b/train2/pictures/51564722df537d8e96f645f80f3ff6ee.png differ diff --git a/train2/pictures/515a15bdec7e90951a64841e8ce8bd13.png b/train2/pictures/515a15bdec7e90951a64841e8ce8bd13.png new file mode 100644 index 0000000..9b12c3a Binary files /dev/null and b/train2/pictures/515a15bdec7e90951a64841e8ce8bd13.png differ diff --git a/train2/pictures/51709171a2a564beddc795bd42008ef6.png b/train2/pictures/51709171a2a564beddc795bd42008ef6.png new file mode 100644 index 0000000..f986e6a Binary files /dev/null and b/train2/pictures/51709171a2a564beddc795bd42008ef6.png differ diff --git a/train2/pictures/5198a80d348c7d387f27044792305abd.png b/train2/pictures/5198a80d348c7d387f27044792305abd.png new file mode 100644 index 0000000..dae579f Binary files /dev/null and b/train2/pictures/5198a80d348c7d387f27044792305abd.png differ diff --git a/train2/pictures/51b418a6a72236714d31751e67fb9976.png b/train2/pictures/51b418a6a72236714d31751e67fb9976.png new file mode 100644 index 0000000..f3a8101 Binary files /dev/null and b/train2/pictures/51b418a6a72236714d31751e67fb9976.png differ diff --git a/train2/pictures/51cb1bc28a93942d0c94e657bfa4112c.png b/train2/pictures/51cb1bc28a93942d0c94e657bfa4112c.png new file mode 100644 index 0000000..25a58bf Binary files /dev/null and b/train2/pictures/51cb1bc28a93942d0c94e657bfa4112c.png differ diff --git a/train2/pictures/5201343cd951ff2f105c5e9d924cc9e2.png b/train2/pictures/5201343cd951ff2f105c5e9d924cc9e2.png new file mode 100644 index 0000000..7728a1e Binary files /dev/null and b/train2/pictures/5201343cd951ff2f105c5e9d924cc9e2.png differ diff --git a/train2/pictures/5207ce1f2e629d24232e3b7780b369f1.png b/train2/pictures/5207ce1f2e629d24232e3b7780b369f1.png new file mode 100644 index 0000000..42645b3 Binary files /dev/null and b/train2/pictures/5207ce1f2e629d24232e3b7780b369f1.png differ diff --git a/train2/pictures/520c024ec2d9dfacc0662ddf5685c76f.png b/train2/pictures/520c024ec2d9dfacc0662ddf5685c76f.png new file mode 100644 index 0000000..920db46 Binary files /dev/null and b/train2/pictures/520c024ec2d9dfacc0662ddf5685c76f.png differ diff --git a/train2/pictures/52163acaa8333e08635e417233b33bee.png b/train2/pictures/52163acaa8333e08635e417233b33bee.png new file mode 100644 index 0000000..c17cc66 Binary files /dev/null and b/train2/pictures/52163acaa8333e08635e417233b33bee.png differ diff --git a/train2/pictures/521f0460330e997238b85c2a7b7ed1f0.png b/train2/pictures/521f0460330e997238b85c2a7b7ed1f0.png new file mode 100644 index 0000000..205e763 Binary files /dev/null and b/train2/pictures/521f0460330e997238b85c2a7b7ed1f0.png differ diff --git a/train2/pictures/525f265464c8f02703c87823a568205a.png b/train2/pictures/525f265464c8f02703c87823a568205a.png new file mode 100644 index 0000000..6810fd1 Binary files /dev/null and b/train2/pictures/525f265464c8f02703c87823a568205a.png differ diff --git a/train2/pictures/5278e402b280c1c3274aa8d79e5c84be.png b/train2/pictures/5278e402b280c1c3274aa8d79e5c84be.png new file mode 100644 index 0000000..36b0b7f Binary files /dev/null and b/train2/pictures/5278e402b280c1c3274aa8d79e5c84be.png differ diff --git a/train2/pictures/52b633f3e7abb696107ffa66cdd490d1.png b/train2/pictures/52b633f3e7abb696107ffa66cdd490d1.png new file mode 100644 index 0000000..ef03c3d Binary files /dev/null and b/train2/pictures/52b633f3e7abb696107ffa66cdd490d1.png differ diff --git a/train2/pictures/532f5cab6a515199dc0c387e2334ba86.png b/train2/pictures/532f5cab6a515199dc0c387e2334ba86.png new file mode 100644 index 0000000..1903970 Binary files /dev/null and b/train2/pictures/532f5cab6a515199dc0c387e2334ba86.png differ diff --git a/train2/pictures/53b6860e68e7fd4920fdbffc132b500a.png b/train2/pictures/53b6860e68e7fd4920fdbffc132b500a.png new file mode 100644 index 0000000..25631db Binary files /dev/null and b/train2/pictures/53b6860e68e7fd4920fdbffc132b500a.png differ diff --git a/train2/pictures/53f3a057ba7413e10a104e07c433c98e.png b/train2/pictures/53f3a057ba7413e10a104e07c433c98e.png new file mode 100644 index 0000000..52aa057 Binary files /dev/null and b/train2/pictures/53f3a057ba7413e10a104e07c433c98e.png differ diff --git a/train2/pictures/5428dfd2a1bc2cf4e60b8a77e899d403.png b/train2/pictures/5428dfd2a1bc2cf4e60b8a77e899d403.png new file mode 100644 index 0000000..5c90388 Binary files /dev/null and b/train2/pictures/5428dfd2a1bc2cf4e60b8a77e899d403.png differ diff --git a/train2/pictures/54489bb4cba8bb8c83f33f30b81230a3.png b/train2/pictures/54489bb4cba8bb8c83f33f30b81230a3.png new file mode 100644 index 0000000..bf07869 Binary files /dev/null and b/train2/pictures/54489bb4cba8bb8c83f33f30b81230a3.png differ diff --git a/train2/pictures/54640132a868dbd30361bcaf2536d1d9.png b/train2/pictures/54640132a868dbd30361bcaf2536d1d9.png new file mode 100644 index 0000000..5d3500f Binary files /dev/null and b/train2/pictures/54640132a868dbd30361bcaf2536d1d9.png differ diff --git a/train2/pictures/54b357319c7096d1c8f7722dca3dd7c3.png b/train2/pictures/54b357319c7096d1c8f7722dca3dd7c3.png new file mode 100644 index 0000000..fcff3b9 Binary files /dev/null and b/train2/pictures/54b357319c7096d1c8f7722dca3dd7c3.png differ diff --git a/train2/pictures/54b819e13033bdf6a1540e18c114560d.png b/train2/pictures/54b819e13033bdf6a1540e18c114560d.png new file mode 100644 index 0000000..2c9c678 Binary files /dev/null and b/train2/pictures/54b819e13033bdf6a1540e18c114560d.png differ diff --git a/train2/pictures/54e0e4b02693037a3aad3f7eb80d5cf4.png b/train2/pictures/54e0e4b02693037a3aad3f7eb80d5cf4.png new file mode 100644 index 0000000..49cbd93 Binary files /dev/null and b/train2/pictures/54e0e4b02693037a3aad3f7eb80d5cf4.png differ diff --git a/train2/pictures/55317524f5a32fb697fc36d534c5cf3f.png b/train2/pictures/55317524f5a32fb697fc36d534c5cf3f.png new file mode 100644 index 0000000..62e7a28 Binary files /dev/null and b/train2/pictures/55317524f5a32fb697fc36d534c5cf3f.png differ diff --git a/train2/pictures/55463ef9779866ca2e5a2fb2366e3c59.png b/train2/pictures/55463ef9779866ca2e5a2fb2366e3c59.png new file mode 100644 index 0000000..1ad78ba Binary files /dev/null and b/train2/pictures/55463ef9779866ca2e5a2fb2366e3c59.png differ diff --git a/train2/pictures/55a7ce31156923a474cf7b9cbf6c001c.png b/train2/pictures/55a7ce31156923a474cf7b9cbf6c001c.png new file mode 100644 index 0000000..b794a6a Binary files /dev/null and b/train2/pictures/55a7ce31156923a474cf7b9cbf6c001c.png differ diff --git a/train2/pictures/55a8b0940a2b2dfb5b2413cf2efe1752.png b/train2/pictures/55a8b0940a2b2dfb5b2413cf2efe1752.png new file mode 100644 index 0000000..558782d Binary files /dev/null and b/train2/pictures/55a8b0940a2b2dfb5b2413cf2efe1752.png differ diff --git a/train2/pictures/55aeac4ca0a69b9b5d85b57eaaa2bfb3.png b/train2/pictures/55aeac4ca0a69b9b5d85b57eaaa2bfb3.png new file mode 100644 index 0000000..af74a91 Binary files /dev/null and b/train2/pictures/55aeac4ca0a69b9b5d85b57eaaa2bfb3.png differ diff --git a/train2/pictures/55b21722c60a12d9f38ce80474d0cefe.png b/train2/pictures/55b21722c60a12d9f38ce80474d0cefe.png new file mode 100644 index 0000000..da808a3 Binary files /dev/null and b/train2/pictures/55b21722c60a12d9f38ce80474d0cefe.png differ diff --git a/train2/pictures/55ca43876663cdf8d4248a5b888afb79.png b/train2/pictures/55ca43876663cdf8d4248a5b888afb79.png new file mode 100644 index 0000000..d9d4314 Binary files /dev/null and b/train2/pictures/55ca43876663cdf8d4248a5b888afb79.png differ diff --git a/train2/pictures/55d15f4fc85b38ac93fc07907916230e.png b/train2/pictures/55d15f4fc85b38ac93fc07907916230e.png new file mode 100644 index 0000000..947911f Binary files /dev/null and b/train2/pictures/55d15f4fc85b38ac93fc07907916230e.png differ diff --git a/train2/pictures/560bb8005bdd3ca247406b7b2bc248fb.png b/train2/pictures/560bb8005bdd3ca247406b7b2bc248fb.png new file mode 100644 index 0000000..c2401ce Binary files /dev/null and b/train2/pictures/560bb8005bdd3ca247406b7b2bc248fb.png differ diff --git a/train2/pictures/562002634291df9bc03c9aed65756388.png b/train2/pictures/562002634291df9bc03c9aed65756388.png new file mode 100644 index 0000000..6da58c1 Binary files /dev/null and b/train2/pictures/562002634291df9bc03c9aed65756388.png differ diff --git a/train2/pictures/564c1a9450db175a90831d6ed4e101b5.png b/train2/pictures/564c1a9450db175a90831d6ed4e101b5.png new file mode 100644 index 0000000..4e641d8 Binary files /dev/null and b/train2/pictures/564c1a9450db175a90831d6ed4e101b5.png differ diff --git a/train2/pictures/5670198749fcc92acc453cb630a2cfa8.png b/train2/pictures/5670198749fcc92acc453cb630a2cfa8.png new file mode 100644 index 0000000..c249cef Binary files /dev/null and b/train2/pictures/5670198749fcc92acc453cb630a2cfa8.png differ diff --git a/train2/pictures/5682ec7c1829253b8b3e028c9d79dbe2.png b/train2/pictures/5682ec7c1829253b8b3e028c9d79dbe2.png new file mode 100644 index 0000000..b8949ee Binary files /dev/null and b/train2/pictures/5682ec7c1829253b8b3e028c9d79dbe2.png differ diff --git a/train2/pictures/56a4392219294f5b23cd8f5ec2d01b6e.png b/train2/pictures/56a4392219294f5b23cd8f5ec2d01b6e.png new file mode 100644 index 0000000..b276494 Binary files /dev/null and b/train2/pictures/56a4392219294f5b23cd8f5ec2d01b6e.png differ diff --git a/train2/pictures/56d16ebb6fd4d3e4c8d6824eeb642f27.png b/train2/pictures/56d16ebb6fd4d3e4c8d6824eeb642f27.png new file mode 100644 index 0000000..a9b96a0 Binary files /dev/null and b/train2/pictures/56d16ebb6fd4d3e4c8d6824eeb642f27.png differ diff --git a/train2/pictures/56d7f51ba6344b90a1f41ce1272ee074.png b/train2/pictures/56d7f51ba6344b90a1f41ce1272ee074.png new file mode 100644 index 0000000..ab20b46 Binary files /dev/null and b/train2/pictures/56d7f51ba6344b90a1f41ce1272ee074.png differ diff --git a/train2/pictures/56efd3683e6f0423170791349cbe16c3.png b/train2/pictures/56efd3683e6f0423170791349cbe16c3.png new file mode 100644 index 0000000..aae955a Binary files /dev/null and b/train2/pictures/56efd3683e6f0423170791349cbe16c3.png differ diff --git a/train2/pictures/571272ca1dcf4ed1bb0319336f669644.png b/train2/pictures/571272ca1dcf4ed1bb0319336f669644.png new file mode 100644 index 0000000..9c79bcb Binary files /dev/null and b/train2/pictures/571272ca1dcf4ed1bb0319336f669644.png differ diff --git a/train2/pictures/5716b68c3c5b2bf9711bd576192d9701.png b/train2/pictures/5716b68c3c5b2bf9711bd576192d9701.png new file mode 100644 index 0000000..280909c Binary files /dev/null and b/train2/pictures/5716b68c3c5b2bf9711bd576192d9701.png differ diff --git a/train2/pictures/57286ca9dd1f47197fe7a7135f88e559.png b/train2/pictures/57286ca9dd1f47197fe7a7135f88e559.png new file mode 100644 index 0000000..e175a45 Binary files /dev/null and b/train2/pictures/57286ca9dd1f47197fe7a7135f88e559.png differ diff --git a/train2/pictures/5750184ee935c56b0b016656ce33c25d.png b/train2/pictures/5750184ee935c56b0b016656ce33c25d.png new file mode 100644 index 0000000..7059b98 Binary files /dev/null and b/train2/pictures/5750184ee935c56b0b016656ce33c25d.png differ diff --git a/train2/pictures/57545a8b40b241d065d93a4cddf29a31.png b/train2/pictures/57545a8b40b241d065d93a4cddf29a31.png new file mode 100644 index 0000000..4b60a2f Binary files /dev/null and b/train2/pictures/57545a8b40b241d065d93a4cddf29a31.png differ diff --git a/train2/pictures/5781724268bef3a74b0c793ce11fc623.png b/train2/pictures/5781724268bef3a74b0c793ce11fc623.png new file mode 100644 index 0000000..d91046c Binary files /dev/null and b/train2/pictures/5781724268bef3a74b0c793ce11fc623.png differ diff --git a/train2/pictures/57adba7d026ec382d1b4bf2f871f0579.png b/train2/pictures/57adba7d026ec382d1b4bf2f871f0579.png new file mode 100644 index 0000000..ecdfde2 Binary files /dev/null and b/train2/pictures/57adba7d026ec382d1b4bf2f871f0579.png differ diff --git a/train2/pictures/5829cce4bad11e4ed336cec4b82403ea.png b/train2/pictures/5829cce4bad11e4ed336cec4b82403ea.png new file mode 100644 index 0000000..e289724 Binary files /dev/null and b/train2/pictures/5829cce4bad11e4ed336cec4b82403ea.png differ diff --git a/train2/pictures/5890d9073da2afb2755b1505608c31a8.png b/train2/pictures/5890d9073da2afb2755b1505608c31a8.png new file mode 100644 index 0000000..e7589d6 Binary files /dev/null and b/train2/pictures/5890d9073da2afb2755b1505608c31a8.png differ diff --git a/train2/pictures/589ee79addfbc50667d71b993f9d21a1.png b/train2/pictures/589ee79addfbc50667d71b993f9d21a1.png new file mode 100644 index 0000000..bdbc6de Binary files /dev/null and b/train2/pictures/589ee79addfbc50667d71b993f9d21a1.png differ diff --git a/train2/pictures/58b0c84cf3ba4fd810ddc9334a16cbcf.png b/train2/pictures/58b0c84cf3ba4fd810ddc9334a16cbcf.png new file mode 100644 index 0000000..5e1ab5b Binary files /dev/null and b/train2/pictures/58b0c84cf3ba4fd810ddc9334a16cbcf.png differ diff --git a/train2/pictures/58be308482bce5be4c3e8c1c3ddd1c83.png b/train2/pictures/58be308482bce5be4c3e8c1c3ddd1c83.png new file mode 100644 index 0000000..264d6e8 Binary files /dev/null and b/train2/pictures/58be308482bce5be4c3e8c1c3ddd1c83.png differ diff --git a/train2/pictures/58db2729d40aa198861a147dc79130fa.png b/train2/pictures/58db2729d40aa198861a147dc79130fa.png new file mode 100644 index 0000000..446cb47 Binary files /dev/null and b/train2/pictures/58db2729d40aa198861a147dc79130fa.png differ diff --git a/train2/pictures/591bb88ae6cc881f934d9e048669a95e.png b/train2/pictures/591bb88ae6cc881f934d9e048669a95e.png new file mode 100644 index 0000000..122058b Binary files /dev/null and b/train2/pictures/591bb88ae6cc881f934d9e048669a95e.png differ diff --git a/train2/pictures/591f4c34e2bc6ef62cc99e2d1c797dea.png b/train2/pictures/591f4c34e2bc6ef62cc99e2d1c797dea.png new file mode 100644 index 0000000..8f7797b Binary files /dev/null and b/train2/pictures/591f4c34e2bc6ef62cc99e2d1c797dea.png differ diff --git a/train2/pictures/59393591d7abc1d05925f362398decdc.png b/train2/pictures/59393591d7abc1d05925f362398decdc.png new file mode 100644 index 0000000..3e2e651 Binary files /dev/null and b/train2/pictures/59393591d7abc1d05925f362398decdc.png differ diff --git a/train2/pictures/594b45fabde7160c6b17036663c9e237.png b/train2/pictures/594b45fabde7160c6b17036663c9e237.png new file mode 100644 index 0000000..7932bc8 Binary files /dev/null and b/train2/pictures/594b45fabde7160c6b17036663c9e237.png differ diff --git a/train2/pictures/597a7f1c33f285eec25bb82a9ad20022.png b/train2/pictures/597a7f1c33f285eec25bb82a9ad20022.png new file mode 100644 index 0000000..a70ab7d Binary files /dev/null and b/train2/pictures/597a7f1c33f285eec25bb82a9ad20022.png differ diff --git a/train2/pictures/598fcd8e1c9122284b84323f2c9d70a9.png b/train2/pictures/598fcd8e1c9122284b84323f2c9d70a9.png new file mode 100644 index 0000000..9bd5b25 Binary files /dev/null and b/train2/pictures/598fcd8e1c9122284b84323f2c9d70a9.png differ diff --git a/train2/pictures/5994efa73babeb756b9c4f9cba05269e.png b/train2/pictures/5994efa73babeb756b9c4f9cba05269e.png new file mode 100644 index 0000000..10ecf5b Binary files /dev/null and b/train2/pictures/5994efa73babeb756b9c4f9cba05269e.png differ diff --git a/train2/pictures/59c0c0a4504128ab4ab684998527b5ca.png b/train2/pictures/59c0c0a4504128ab4ab684998527b5ca.png new file mode 100644 index 0000000..f47da85 Binary files /dev/null and b/train2/pictures/59c0c0a4504128ab4ab684998527b5ca.png differ diff --git a/train2/pictures/59c2dc7515367caccd3e81c13e52db1b.png b/train2/pictures/59c2dc7515367caccd3e81c13e52db1b.png new file mode 100644 index 0000000..58b7097 Binary files /dev/null and b/train2/pictures/59c2dc7515367caccd3e81c13e52db1b.png differ diff --git a/train2/pictures/59d2f6922d47fb5956a0c2f5eca1e123.png b/train2/pictures/59d2f6922d47fb5956a0c2f5eca1e123.png new file mode 100644 index 0000000..ec3b168 Binary files /dev/null and b/train2/pictures/59d2f6922d47fb5956a0c2f5eca1e123.png differ diff --git a/train2/pictures/5a05aa4f6cc062eb831251f8eea02977.png b/train2/pictures/5a05aa4f6cc062eb831251f8eea02977.png new file mode 100644 index 0000000..a07dbc7 Binary files /dev/null and b/train2/pictures/5a05aa4f6cc062eb831251f8eea02977.png differ diff --git a/train2/pictures/5a0790723f6a4063aa2ce17e59163aa9.png b/train2/pictures/5a0790723f6a4063aa2ce17e59163aa9.png new file mode 100644 index 0000000..c7e9061 Binary files /dev/null and b/train2/pictures/5a0790723f6a4063aa2ce17e59163aa9.png differ diff --git a/train2/pictures/5a204732105f01e06bb8861bc1bafd4a.png b/train2/pictures/5a204732105f01e06bb8861bc1bafd4a.png new file mode 100644 index 0000000..d9d653f Binary files /dev/null and b/train2/pictures/5a204732105f01e06bb8861bc1bafd4a.png differ diff --git a/train2/pictures/5a26d3372a2f3ae93e84176ef180d931.png b/train2/pictures/5a26d3372a2f3ae93e84176ef180d931.png new file mode 100644 index 0000000..476832b Binary files /dev/null and b/train2/pictures/5a26d3372a2f3ae93e84176ef180d931.png differ diff --git a/train2/pictures/5a7f2ccbf899de67a7900d5e0947fc8b.png b/train2/pictures/5a7f2ccbf899de67a7900d5e0947fc8b.png new file mode 100644 index 0000000..ddee783 Binary files /dev/null and b/train2/pictures/5a7f2ccbf899de67a7900d5e0947fc8b.png differ diff --git a/train2/pictures/5a85328a652c84ba425bdea3244fd921.png b/train2/pictures/5a85328a652c84ba425bdea3244fd921.png new file mode 100644 index 0000000..9de48b2 Binary files /dev/null and b/train2/pictures/5a85328a652c84ba425bdea3244fd921.png differ diff --git a/train2/pictures/5a925eb9c6e5d796c0d4cb5d695122ba.png b/train2/pictures/5a925eb9c6e5d796c0d4cb5d695122ba.png new file mode 100644 index 0000000..8564434 Binary files /dev/null and b/train2/pictures/5a925eb9c6e5d796c0d4cb5d695122ba.png differ diff --git a/train2/pictures/5ac759ff77f280cf4ffc49802ac07f7c.png b/train2/pictures/5ac759ff77f280cf4ffc49802ac07f7c.png new file mode 100644 index 0000000..11580f5 Binary files /dev/null and b/train2/pictures/5ac759ff77f280cf4ffc49802ac07f7c.png differ diff --git a/train2/pictures/5af28af69a7931852a3c6fc850f55fca.png b/train2/pictures/5af28af69a7931852a3c6fc850f55fca.png new file mode 100644 index 0000000..28036ce Binary files /dev/null and b/train2/pictures/5af28af69a7931852a3c6fc850f55fca.png differ diff --git a/train2/pictures/5b16ba6ee0039b7e5adc383dbbf0baec.png b/train2/pictures/5b16ba6ee0039b7e5adc383dbbf0baec.png new file mode 100644 index 0000000..628b6f2 Binary files /dev/null and b/train2/pictures/5b16ba6ee0039b7e5adc383dbbf0baec.png differ diff --git a/train2/pictures/5b22f8e9b8a21314a5ef5c8d62e467dd.png b/train2/pictures/5b22f8e9b8a21314a5ef5c8d62e467dd.png new file mode 100644 index 0000000..9778ddd Binary files /dev/null and b/train2/pictures/5b22f8e9b8a21314a5ef5c8d62e467dd.png differ diff --git a/train2/pictures/5b88ed2d4dbf052299e4a3b4858f1f03.png b/train2/pictures/5b88ed2d4dbf052299e4a3b4858f1f03.png new file mode 100644 index 0000000..0f6a6c7 Binary files /dev/null and b/train2/pictures/5b88ed2d4dbf052299e4a3b4858f1f03.png differ diff --git a/train2/pictures/5b8b27be8d3cde99957e3b6e0b2a1cba.png b/train2/pictures/5b8b27be8d3cde99957e3b6e0b2a1cba.png new file mode 100644 index 0000000..876a74d Binary files /dev/null and b/train2/pictures/5b8b27be8d3cde99957e3b6e0b2a1cba.png differ diff --git a/train2/pictures/5be49d4466244c43f8979b02937d126a.png b/train2/pictures/5be49d4466244c43f8979b02937d126a.png new file mode 100644 index 0000000..609f86b Binary files /dev/null and b/train2/pictures/5be49d4466244c43f8979b02937d126a.png differ diff --git a/train2/pictures/5bf20166957041c06698c5142665baca.png b/train2/pictures/5bf20166957041c06698c5142665baca.png new file mode 100644 index 0000000..2b436e1 Binary files /dev/null and b/train2/pictures/5bf20166957041c06698c5142665baca.png differ diff --git a/train2/pictures/5c05b5db7333ea3e94f1a51ba312e9ac.png b/train2/pictures/5c05b5db7333ea3e94f1a51ba312e9ac.png new file mode 100644 index 0000000..78300df Binary files /dev/null and b/train2/pictures/5c05b5db7333ea3e94f1a51ba312e9ac.png differ diff --git a/train2/pictures/5c3929719519ddcfcab1aa893400d00a.png b/train2/pictures/5c3929719519ddcfcab1aa893400d00a.png new file mode 100644 index 0000000..57d08c6 Binary files /dev/null and b/train2/pictures/5c3929719519ddcfcab1aa893400d00a.png differ diff --git a/train2/pictures/5c4cc648fc06353bdfa4c8259ac54855.png b/train2/pictures/5c4cc648fc06353bdfa4c8259ac54855.png new file mode 100644 index 0000000..4c4de3e Binary files /dev/null and b/train2/pictures/5c4cc648fc06353bdfa4c8259ac54855.png differ diff --git a/train2/pictures/5c521c1f3b0ec57a0de20ba62d82b4de.png b/train2/pictures/5c521c1f3b0ec57a0de20ba62d82b4de.png new file mode 100644 index 0000000..cee6d90 Binary files /dev/null and b/train2/pictures/5c521c1f3b0ec57a0de20ba62d82b4de.png differ diff --git a/train2/pictures/5c6a5287da0e45a1b36645dab4ac9521.png b/train2/pictures/5c6a5287da0e45a1b36645dab4ac9521.png new file mode 100644 index 0000000..1d4f467 Binary files /dev/null and b/train2/pictures/5c6a5287da0e45a1b36645dab4ac9521.png differ diff --git a/train2/pictures/5cf8f8b298bc4a97024bfeb83288ae1f.png b/train2/pictures/5cf8f8b298bc4a97024bfeb83288ae1f.png new file mode 100644 index 0000000..eddf1d7 Binary files /dev/null and b/train2/pictures/5cf8f8b298bc4a97024bfeb83288ae1f.png differ diff --git a/train2/pictures/5cfe5174dc8e3661dd7c44c485758f76.png b/train2/pictures/5cfe5174dc8e3661dd7c44c485758f76.png new file mode 100644 index 0000000..19b841d Binary files /dev/null and b/train2/pictures/5cfe5174dc8e3661dd7c44c485758f76.png differ diff --git a/train2/pictures/5d561d01a03d92659a2241bb995dca1c.png b/train2/pictures/5d561d01a03d92659a2241bb995dca1c.png new file mode 100644 index 0000000..37b3bd0 Binary files /dev/null and b/train2/pictures/5d561d01a03d92659a2241bb995dca1c.png differ diff --git a/train2/pictures/5d7da145eabb352ace1f5ab3242a91c2.png b/train2/pictures/5d7da145eabb352ace1f5ab3242a91c2.png new file mode 100644 index 0000000..f4d7b2b Binary files /dev/null and b/train2/pictures/5d7da145eabb352ace1f5ab3242a91c2.png differ diff --git a/train2/pictures/5da0674b1b2aafb19720e2a3da04f0ad.png b/train2/pictures/5da0674b1b2aafb19720e2a3da04f0ad.png new file mode 100644 index 0000000..ea088f1 Binary files /dev/null and b/train2/pictures/5da0674b1b2aafb19720e2a3da04f0ad.png differ diff --git a/train2/pictures/5e192f0256fe1b25caa66a4d6c0c9838.png b/train2/pictures/5e192f0256fe1b25caa66a4d6c0c9838.png new file mode 100644 index 0000000..909417c Binary files /dev/null and b/train2/pictures/5e192f0256fe1b25caa66a4d6c0c9838.png differ diff --git a/train2/pictures/5e1d98faaa4d523ce0b5713b23400b95.png b/train2/pictures/5e1d98faaa4d523ce0b5713b23400b95.png new file mode 100644 index 0000000..43e4e7a Binary files /dev/null and b/train2/pictures/5e1d98faaa4d523ce0b5713b23400b95.png differ diff --git a/train2/pictures/5e2c9ddc9a60f14430664e6e7fe4b9c3.png b/train2/pictures/5e2c9ddc9a60f14430664e6e7fe4b9c3.png new file mode 100644 index 0000000..d7e421c Binary files /dev/null and b/train2/pictures/5e2c9ddc9a60f14430664e6e7fe4b9c3.png differ diff --git a/train2/pictures/5e44e8bce353297dfdeac12f8ce2160e.png b/train2/pictures/5e44e8bce353297dfdeac12f8ce2160e.png new file mode 100644 index 0000000..9eac20a Binary files /dev/null and b/train2/pictures/5e44e8bce353297dfdeac12f8ce2160e.png differ diff --git a/train2/pictures/5e5d35a0f56ac0afcede62a22d765afe.png b/train2/pictures/5e5d35a0f56ac0afcede62a22d765afe.png new file mode 100644 index 0000000..de7a73d Binary files /dev/null and b/train2/pictures/5e5d35a0f56ac0afcede62a22d765afe.png differ diff --git a/train2/pictures/5ea9f52c5025cce1e7b1513125f7f0ed.png b/train2/pictures/5ea9f52c5025cce1e7b1513125f7f0ed.png new file mode 100644 index 0000000..e8bf619 Binary files /dev/null and b/train2/pictures/5ea9f52c5025cce1e7b1513125f7f0ed.png differ diff --git a/train2/pictures/5eafeae8b5a805c353b9a88994491d29.png b/train2/pictures/5eafeae8b5a805c353b9a88994491d29.png new file mode 100644 index 0000000..d71bad9 Binary files /dev/null and b/train2/pictures/5eafeae8b5a805c353b9a88994491d29.png differ diff --git a/train2/pictures/5eb166b62484bd62e34504c9362e2a0c.png b/train2/pictures/5eb166b62484bd62e34504c9362e2a0c.png new file mode 100644 index 0000000..2c50cb4 Binary files /dev/null and b/train2/pictures/5eb166b62484bd62e34504c9362e2a0c.png differ diff --git a/train2/pictures/5ee190c2d5a03ad0b1438e3c3802620d.png b/train2/pictures/5ee190c2d5a03ad0b1438e3c3802620d.png new file mode 100644 index 0000000..fafdee6 Binary files /dev/null and b/train2/pictures/5ee190c2d5a03ad0b1438e3c3802620d.png differ diff --git a/train2/pictures/5ee54cb9b652c2bf859fd14a12e89e32.png b/train2/pictures/5ee54cb9b652c2bf859fd14a12e89e32.png new file mode 100644 index 0000000..7182901 Binary files /dev/null and b/train2/pictures/5ee54cb9b652c2bf859fd14a12e89e32.png differ diff --git a/train2/pictures/5f178f82dff1a9d10b596db052a52561.png b/train2/pictures/5f178f82dff1a9d10b596db052a52561.png new file mode 100644 index 0000000..90add95 Binary files /dev/null and b/train2/pictures/5f178f82dff1a9d10b596db052a52561.png differ diff --git a/train2/pictures/5f4248388ce3703a67d3955fe8ddbe43.png b/train2/pictures/5f4248388ce3703a67d3955fe8ddbe43.png new file mode 100644 index 0000000..5b17858 Binary files /dev/null and b/train2/pictures/5f4248388ce3703a67d3955fe8ddbe43.png differ diff --git a/train2/pictures/5f703ceaa33c7c610e74bbd2a630b245.png b/train2/pictures/5f703ceaa33c7c610e74bbd2a630b245.png new file mode 100644 index 0000000..8d4e78f Binary files /dev/null and b/train2/pictures/5f703ceaa33c7c610e74bbd2a630b245.png differ diff --git a/train2/pictures/5f7feadc12cea254a8c03e64dbb3174b.png b/train2/pictures/5f7feadc12cea254a8c03e64dbb3174b.png new file mode 100644 index 0000000..5acf2df Binary files /dev/null and b/train2/pictures/5f7feadc12cea254a8c03e64dbb3174b.png differ diff --git a/train2/pictures/5f9134e6d114b3c7c110b735637cf8f0.png b/train2/pictures/5f9134e6d114b3c7c110b735637cf8f0.png new file mode 100644 index 0000000..0d22366 Binary files /dev/null and b/train2/pictures/5f9134e6d114b3c7c110b735637cf8f0.png differ diff --git a/train2/pictures/5ff39372d9f1b78b5ef4623693b1466a.png b/train2/pictures/5ff39372d9f1b78b5ef4623693b1466a.png new file mode 100644 index 0000000..cc45907 Binary files /dev/null and b/train2/pictures/5ff39372d9f1b78b5ef4623693b1466a.png differ diff --git a/train2/pictures/5ff697a4c6cd090266d8e74ab717eeaa.png b/train2/pictures/5ff697a4c6cd090266d8e74ab717eeaa.png new file mode 100644 index 0000000..04070dd Binary files /dev/null and b/train2/pictures/5ff697a4c6cd090266d8e74ab717eeaa.png differ diff --git a/train2/pictures/6026dfdef49dfdfa946cff1ebd5de718.png b/train2/pictures/6026dfdef49dfdfa946cff1ebd5de718.png new file mode 100644 index 0000000..e4b5b87 Binary files /dev/null and b/train2/pictures/6026dfdef49dfdfa946cff1ebd5de718.png differ diff --git a/train2/pictures/6050468a2fc95a1813af616bfc4e1ad3.png b/train2/pictures/6050468a2fc95a1813af616bfc4e1ad3.png new file mode 100644 index 0000000..3c4fe1f Binary files /dev/null and b/train2/pictures/6050468a2fc95a1813af616bfc4e1ad3.png differ diff --git a/train2/pictures/605b4437f8c6f5c064b77e4f2f102cd6.png b/train2/pictures/605b4437f8c6f5c064b77e4f2f102cd6.png new file mode 100644 index 0000000..9d317fa Binary files /dev/null and b/train2/pictures/605b4437f8c6f5c064b77e4f2f102cd6.png differ diff --git a/train2/pictures/60d67602fbe18ce241ea85ada9325237.png b/train2/pictures/60d67602fbe18ce241ea85ada9325237.png new file mode 100644 index 0000000..336d106 Binary files /dev/null and b/train2/pictures/60d67602fbe18ce241ea85ada9325237.png differ diff --git a/train2/pictures/60e22ada6e4fe7178e3223edda972521.png b/train2/pictures/60e22ada6e4fe7178e3223edda972521.png new file mode 100644 index 0000000..a6a93f5 Binary files /dev/null and b/train2/pictures/60e22ada6e4fe7178e3223edda972521.png differ diff --git a/train2/pictures/60e9a45874f9cc8c21e9f36ec206cd92.png b/train2/pictures/60e9a45874f9cc8c21e9f36ec206cd92.png new file mode 100644 index 0000000..744c107 Binary files /dev/null and b/train2/pictures/60e9a45874f9cc8c21e9f36ec206cd92.png differ diff --git a/train2/pictures/6100f81b2165a41b6f9c83d515822f54.png b/train2/pictures/6100f81b2165a41b6f9c83d515822f54.png new file mode 100644 index 0000000..fdd694b Binary files /dev/null and b/train2/pictures/6100f81b2165a41b6f9c83d515822f54.png differ diff --git a/train2/pictures/61013c692c1e5656651b67613203b3d7.png b/train2/pictures/61013c692c1e5656651b67613203b3d7.png new file mode 100644 index 0000000..f29ef7c Binary files /dev/null and b/train2/pictures/61013c692c1e5656651b67613203b3d7.png differ diff --git a/train2/pictures/610abc9bca54c144b3ca4a8c136d7a9e.png b/train2/pictures/610abc9bca54c144b3ca4a8c136d7a9e.png new file mode 100644 index 0000000..6e3ae56 Binary files /dev/null and b/train2/pictures/610abc9bca54c144b3ca4a8c136d7a9e.png differ diff --git a/train2/pictures/6111e4e4a565479b4391791262578d53.png b/train2/pictures/6111e4e4a565479b4391791262578d53.png new file mode 100644 index 0000000..61f6932 Binary files /dev/null and b/train2/pictures/6111e4e4a565479b4391791262578d53.png differ diff --git a/train2/pictures/613404e7649166541df57187f0856c18.png b/train2/pictures/613404e7649166541df57187f0856c18.png new file mode 100644 index 0000000..2b3a3a6 Binary files /dev/null and b/train2/pictures/613404e7649166541df57187f0856c18.png differ diff --git a/train2/pictures/6134a85c7d05371b4ad2a37b3f229db3.png b/train2/pictures/6134a85c7d05371b4ad2a37b3f229db3.png new file mode 100644 index 0000000..7593b3f Binary files /dev/null and b/train2/pictures/6134a85c7d05371b4ad2a37b3f229db3.png differ diff --git a/train2/pictures/615c0991c54e878b5d56adc98fe2ead3.png b/train2/pictures/615c0991c54e878b5d56adc98fe2ead3.png new file mode 100644 index 0000000..36cdf3b Binary files /dev/null and b/train2/pictures/615c0991c54e878b5d56adc98fe2ead3.png differ diff --git a/train2/pictures/61661c41a64f9db44dc73feb5e6b0a3a.png b/train2/pictures/61661c41a64f9db44dc73feb5e6b0a3a.png new file mode 100644 index 0000000..4f8300d Binary files /dev/null and b/train2/pictures/61661c41a64f9db44dc73feb5e6b0a3a.png differ diff --git a/train2/pictures/6167c56bcaa71fc12a312066aa0340fd.png b/train2/pictures/6167c56bcaa71fc12a312066aa0340fd.png new file mode 100644 index 0000000..cc85323 Binary files /dev/null and b/train2/pictures/6167c56bcaa71fc12a312066aa0340fd.png differ diff --git a/train2/pictures/618bc4ec402bac080a2aa48e0ee51a6d.png b/train2/pictures/618bc4ec402bac080a2aa48e0ee51a6d.png new file mode 100644 index 0000000..d9f8dfb Binary files /dev/null and b/train2/pictures/618bc4ec402bac080a2aa48e0ee51a6d.png differ diff --git a/train2/pictures/6194209367d09b5824bbba59841aeb3d.png b/train2/pictures/6194209367d09b5824bbba59841aeb3d.png new file mode 100644 index 0000000..b2bf491 Binary files /dev/null and b/train2/pictures/6194209367d09b5824bbba59841aeb3d.png differ diff --git a/train2/pictures/619c863b97b31f97b5f0e9bc05728033.png b/train2/pictures/619c863b97b31f97b5f0e9bc05728033.png new file mode 100644 index 0000000..8dd00f7 Binary files /dev/null and b/train2/pictures/619c863b97b31f97b5f0e9bc05728033.png differ diff --git a/train2/pictures/61ada79d7fbc7c1b57b3b729c4fcbc5d.png b/train2/pictures/61ada79d7fbc7c1b57b3b729c4fcbc5d.png new file mode 100644 index 0000000..6bb667b Binary files /dev/null and b/train2/pictures/61ada79d7fbc7c1b57b3b729c4fcbc5d.png differ diff --git a/train2/pictures/61afa103f1ddab161c7635309cbdc4cf.png b/train2/pictures/61afa103f1ddab161c7635309cbdc4cf.png new file mode 100644 index 0000000..30abfeb Binary files /dev/null and b/train2/pictures/61afa103f1ddab161c7635309cbdc4cf.png differ diff --git a/train2/pictures/61b5739021e4099537c02a4290188b15.png b/train2/pictures/61b5739021e4099537c02a4290188b15.png new file mode 100644 index 0000000..d8c7dbd Binary files /dev/null and b/train2/pictures/61b5739021e4099537c02a4290188b15.png differ diff --git a/train2/pictures/61b7b23249564dbc71ff25a5126d2049.png b/train2/pictures/61b7b23249564dbc71ff25a5126d2049.png new file mode 100644 index 0000000..616998a Binary files /dev/null and b/train2/pictures/61b7b23249564dbc71ff25a5126d2049.png differ diff --git a/train2/pictures/61c8de57a4982877161a0898b0749846.png b/train2/pictures/61c8de57a4982877161a0898b0749846.png new file mode 100644 index 0000000..5abbd6c Binary files /dev/null and b/train2/pictures/61c8de57a4982877161a0898b0749846.png differ diff --git a/train2/pictures/61d7164709394fba256d144f1bda0837.png b/train2/pictures/61d7164709394fba256d144f1bda0837.png new file mode 100644 index 0000000..8a27b07 Binary files /dev/null and b/train2/pictures/61d7164709394fba256d144f1bda0837.png differ diff --git a/train2/pictures/61e02995acaa6eaba8be7f9604f762f5.png b/train2/pictures/61e02995acaa6eaba8be7f9604f762f5.png new file mode 100644 index 0000000..6284315 Binary files /dev/null and b/train2/pictures/61e02995acaa6eaba8be7f9604f762f5.png differ diff --git a/train2/pictures/6244ebc4ef81d72f50890d7dfa1a9937.png b/train2/pictures/6244ebc4ef81d72f50890d7dfa1a9937.png new file mode 100644 index 0000000..43e9bc1 Binary files /dev/null and b/train2/pictures/6244ebc4ef81d72f50890d7dfa1a9937.png differ diff --git a/train2/pictures/624bbb9053ee881750fd7162379e191b.png b/train2/pictures/624bbb9053ee881750fd7162379e191b.png new file mode 100644 index 0000000..a69ab3f Binary files /dev/null and b/train2/pictures/624bbb9053ee881750fd7162379e191b.png differ diff --git a/train2/pictures/6251fc35e846cd1bd5b6d4761d9c3cfd.png b/train2/pictures/6251fc35e846cd1bd5b6d4761d9c3cfd.png new file mode 100644 index 0000000..c841512 Binary files /dev/null and b/train2/pictures/6251fc35e846cd1bd5b6d4761d9c3cfd.png differ diff --git a/train2/pictures/6264ed4802c80332665a92d2c7703aaa.png b/train2/pictures/6264ed4802c80332665a92d2c7703aaa.png new file mode 100644 index 0000000..ad7b663 Binary files /dev/null and b/train2/pictures/6264ed4802c80332665a92d2c7703aaa.png differ diff --git a/train2/pictures/626ccd61d4373ff505d8bec4d935bc10.png b/train2/pictures/626ccd61d4373ff505d8bec4d935bc10.png new file mode 100644 index 0000000..0846d2b Binary files /dev/null and b/train2/pictures/626ccd61d4373ff505d8bec4d935bc10.png differ diff --git a/train2/pictures/62a3d780b50cd4bd98ceca075cd327b0.png b/train2/pictures/62a3d780b50cd4bd98ceca075cd327b0.png new file mode 100644 index 0000000..421ada7 Binary files /dev/null and b/train2/pictures/62a3d780b50cd4bd98ceca075cd327b0.png differ diff --git a/train2/pictures/62b2985b6827b2df3825aab6d7690b70.png b/train2/pictures/62b2985b6827b2df3825aab6d7690b70.png new file mode 100644 index 0000000..f3f2b33 Binary files /dev/null and b/train2/pictures/62b2985b6827b2df3825aab6d7690b70.png differ diff --git a/train2/pictures/62c055999733c81fe29fd3418d7a85e9.png b/train2/pictures/62c055999733c81fe29fd3418d7a85e9.png new file mode 100644 index 0000000..7e71825 Binary files /dev/null and b/train2/pictures/62c055999733c81fe29fd3418d7a85e9.png differ diff --git a/train2/pictures/63134f19bc0035b7b40a641d1066c81d.png b/train2/pictures/63134f19bc0035b7b40a641d1066c81d.png new file mode 100644 index 0000000..3c2cd6e Binary files /dev/null and b/train2/pictures/63134f19bc0035b7b40a641d1066c81d.png differ diff --git a/train2/pictures/632d4ac34d0533e8d0575ddab8d969b0.png b/train2/pictures/632d4ac34d0533e8d0575ddab8d969b0.png new file mode 100644 index 0000000..ef72d54 Binary files /dev/null and b/train2/pictures/632d4ac34d0533e8d0575ddab8d969b0.png differ diff --git a/train2/pictures/634d2bd0fb5ae2cba6fd4adbe4bf77af.png b/train2/pictures/634d2bd0fb5ae2cba6fd4adbe4bf77af.png new file mode 100644 index 0000000..122cddb Binary files /dev/null and b/train2/pictures/634d2bd0fb5ae2cba6fd4adbe4bf77af.png differ diff --git a/train2/pictures/638fd54ee47aabc67a9889827a1e9487.png b/train2/pictures/638fd54ee47aabc67a9889827a1e9487.png new file mode 100644 index 0000000..9e8345b Binary files /dev/null and b/train2/pictures/638fd54ee47aabc67a9889827a1e9487.png differ diff --git a/train2/pictures/639f4b2acff7d6b30acf4c8ab0d9454e.png b/train2/pictures/639f4b2acff7d6b30acf4c8ab0d9454e.png new file mode 100644 index 0000000..76956c3 Binary files /dev/null and b/train2/pictures/639f4b2acff7d6b30acf4c8ab0d9454e.png differ diff --git a/train2/pictures/63cbfcaf4da732a33ce4060a3246fef9.png b/train2/pictures/63cbfcaf4da732a33ce4060a3246fef9.png new file mode 100644 index 0000000..0b67f9a Binary files /dev/null and b/train2/pictures/63cbfcaf4da732a33ce4060a3246fef9.png differ diff --git a/train2/pictures/63e915177f06e1c7f93a1fd3271834b2.png b/train2/pictures/63e915177f06e1c7f93a1fd3271834b2.png new file mode 100644 index 0000000..7b9face Binary files /dev/null and b/train2/pictures/63e915177f06e1c7f93a1fd3271834b2.png differ diff --git a/train2/pictures/640f765e2798a7b32c279057ea4fbc19.png b/train2/pictures/640f765e2798a7b32c279057ea4fbc19.png new file mode 100644 index 0000000..46fa722 Binary files /dev/null and b/train2/pictures/640f765e2798a7b32c279057ea4fbc19.png differ diff --git a/train2/pictures/6427a70913fe731f92ecdf9cbdaca003.png b/train2/pictures/6427a70913fe731f92ecdf9cbdaca003.png new file mode 100644 index 0000000..8bb22a3 Binary files /dev/null and b/train2/pictures/6427a70913fe731f92ecdf9cbdaca003.png differ diff --git a/train2/pictures/642fd660b96eb64d0cfd2a76868fe3f9.png b/train2/pictures/642fd660b96eb64d0cfd2a76868fe3f9.png new file mode 100644 index 0000000..9dc0f74 Binary files /dev/null and b/train2/pictures/642fd660b96eb64d0cfd2a76868fe3f9.png differ diff --git a/train2/pictures/643f078a2efbe34821b20e5cde9db889.png b/train2/pictures/643f078a2efbe34821b20e5cde9db889.png new file mode 100644 index 0000000..53d77d3 Binary files /dev/null and b/train2/pictures/643f078a2efbe34821b20e5cde9db889.png differ diff --git a/train2/pictures/653e93ecc683577da279944f64912c2f.png b/train2/pictures/653e93ecc683577da279944f64912c2f.png new file mode 100644 index 0000000..6da6d4d Binary files /dev/null and b/train2/pictures/653e93ecc683577da279944f64912c2f.png differ diff --git a/train2/pictures/6575e81a859c2422cb6a9f1141c63d0f.png b/train2/pictures/6575e81a859c2422cb6a9f1141c63d0f.png new file mode 100644 index 0000000..a5e8628 Binary files /dev/null and b/train2/pictures/6575e81a859c2422cb6a9f1141c63d0f.png differ diff --git a/train2/pictures/65aef865db38ce8b72a19ac6479da737.png b/train2/pictures/65aef865db38ce8b72a19ac6479da737.png new file mode 100644 index 0000000..b140237 Binary files /dev/null and b/train2/pictures/65aef865db38ce8b72a19ac6479da737.png differ diff --git a/train2/pictures/6604d7fa0c646d7b53a8e8194374107e.png b/train2/pictures/6604d7fa0c646d7b53a8e8194374107e.png new file mode 100644 index 0000000..8baca6a Binary files /dev/null and b/train2/pictures/6604d7fa0c646d7b53a8e8194374107e.png differ diff --git a/train2/pictures/661d798ca718c8f486a09bc96ca3fdc3.png b/train2/pictures/661d798ca718c8f486a09bc96ca3fdc3.png new file mode 100644 index 0000000..5ec1433 Binary files /dev/null and b/train2/pictures/661d798ca718c8f486a09bc96ca3fdc3.png differ diff --git a/train2/pictures/6633beb9c8165fc295f621c77f6418db.png b/train2/pictures/6633beb9c8165fc295f621c77f6418db.png new file mode 100644 index 0000000..a6e1809 Binary files /dev/null and b/train2/pictures/6633beb9c8165fc295f621c77f6418db.png differ diff --git a/train2/pictures/66366a9c41bd7c58c6c10f832627fc22.png b/train2/pictures/66366a9c41bd7c58c6c10f832627fc22.png new file mode 100644 index 0000000..457cd92 Binary files /dev/null and b/train2/pictures/66366a9c41bd7c58c6c10f832627fc22.png differ diff --git a/train2/pictures/663c2aaa8a08bb8ac7beddbecd76f99f.png b/train2/pictures/663c2aaa8a08bb8ac7beddbecd76f99f.png new file mode 100644 index 0000000..542fe34 Binary files /dev/null and b/train2/pictures/663c2aaa8a08bb8ac7beddbecd76f99f.png differ diff --git a/train2/pictures/667ea546a10a271045c17b3df964e127.png b/train2/pictures/667ea546a10a271045c17b3df964e127.png new file mode 100644 index 0000000..08a4af6 Binary files /dev/null and b/train2/pictures/667ea546a10a271045c17b3df964e127.png differ diff --git a/train2/pictures/66c088a69c49b9b5786b2fd73c84350a.png b/train2/pictures/66c088a69c49b9b5786b2fd73c84350a.png new file mode 100644 index 0000000..d629b52 Binary files /dev/null and b/train2/pictures/66c088a69c49b9b5786b2fd73c84350a.png differ diff --git a/train2/pictures/66c2487e892b48567d4a896e8134af7b.png b/train2/pictures/66c2487e892b48567d4a896e8134af7b.png new file mode 100644 index 0000000..7b60454 Binary files /dev/null and b/train2/pictures/66c2487e892b48567d4a896e8134af7b.png differ diff --git a/train2/pictures/66ff28545781f4051b5e4b2219edc9c2.png b/train2/pictures/66ff28545781f4051b5e4b2219edc9c2.png new file mode 100644 index 0000000..36c2201 Binary files /dev/null and b/train2/pictures/66ff28545781f4051b5e4b2219edc9c2.png differ diff --git a/train2/pictures/671aaf15424c2589a46c587cb0cef003.png b/train2/pictures/671aaf15424c2589a46c587cb0cef003.png new file mode 100644 index 0000000..7bdf4d5 Binary files /dev/null and b/train2/pictures/671aaf15424c2589a46c587cb0cef003.png differ diff --git a/train2/pictures/671c92db63ae6acd3b34537e4a83d5ba.png b/train2/pictures/671c92db63ae6acd3b34537e4a83d5ba.png new file mode 100644 index 0000000..e30a676 Binary files /dev/null and b/train2/pictures/671c92db63ae6acd3b34537e4a83d5ba.png differ diff --git a/train2/pictures/673bba899da8bac3a791be2fd74ab14c.png b/train2/pictures/673bba899da8bac3a791be2fd74ab14c.png new file mode 100644 index 0000000..a6b057e Binary files /dev/null and b/train2/pictures/673bba899da8bac3a791be2fd74ab14c.png differ diff --git a/train2/pictures/674734c05967d087dca85aa50f9ed1b1.png b/train2/pictures/674734c05967d087dca85aa50f9ed1b1.png new file mode 100644 index 0000000..48b6fd5 Binary files /dev/null and b/train2/pictures/674734c05967d087dca85aa50f9ed1b1.png differ diff --git a/train2/pictures/67556af1327850decab5751cd72ade25.png b/train2/pictures/67556af1327850decab5751cd72ade25.png new file mode 100644 index 0000000..14bd596 Binary files /dev/null and b/train2/pictures/67556af1327850decab5751cd72ade25.png differ diff --git a/train2/pictures/67ab396bc2ca2ba42d8b729ae30480ca.png b/train2/pictures/67ab396bc2ca2ba42d8b729ae30480ca.png new file mode 100644 index 0000000..9454370 Binary files /dev/null and b/train2/pictures/67ab396bc2ca2ba42d8b729ae30480ca.png differ diff --git a/train2/pictures/67acca57cd938a3cfa60b4a97bb24c90.png b/train2/pictures/67acca57cd938a3cfa60b4a97bb24c90.png new file mode 100644 index 0000000..70e0c20 Binary files /dev/null and b/train2/pictures/67acca57cd938a3cfa60b4a97bb24c90.png differ diff --git a/train2/pictures/68037780f002da1b698089decdaed025.png b/train2/pictures/68037780f002da1b698089decdaed025.png new file mode 100644 index 0000000..1b91ed4 Binary files /dev/null and b/train2/pictures/68037780f002da1b698089decdaed025.png differ diff --git a/train2/pictures/6807dcac964776ee37a2f63bf6a0d32b.png b/train2/pictures/6807dcac964776ee37a2f63bf6a0d32b.png new file mode 100644 index 0000000..9754c3a Binary files /dev/null and b/train2/pictures/6807dcac964776ee37a2f63bf6a0d32b.png differ diff --git a/train2/pictures/6816c756f145aeb53e56b96c02fdbd7e.png b/train2/pictures/6816c756f145aeb53e56b96c02fdbd7e.png new file mode 100644 index 0000000..bf124d9 Binary files /dev/null and b/train2/pictures/6816c756f145aeb53e56b96c02fdbd7e.png differ diff --git a/train2/pictures/681c67187105e50904ed3e46cfdc0ff7.png b/train2/pictures/681c67187105e50904ed3e46cfdc0ff7.png new file mode 100644 index 0000000..80e864f Binary files /dev/null and b/train2/pictures/681c67187105e50904ed3e46cfdc0ff7.png differ diff --git a/train2/pictures/688b41496c7b20695135696f8ac894cd.png b/train2/pictures/688b41496c7b20695135696f8ac894cd.png new file mode 100644 index 0000000..3f016bd Binary files /dev/null and b/train2/pictures/688b41496c7b20695135696f8ac894cd.png differ diff --git a/train2/pictures/68ac26ee06c3e240a0d72d20ef83fc4c.png b/train2/pictures/68ac26ee06c3e240a0d72d20ef83fc4c.png new file mode 100644 index 0000000..f891e91 Binary files /dev/null and b/train2/pictures/68ac26ee06c3e240a0d72d20ef83fc4c.png differ diff --git a/train2/pictures/691ab3d8315c6800f89acfeb7f78c4ad.png b/train2/pictures/691ab3d8315c6800f89acfeb7f78c4ad.png new file mode 100644 index 0000000..63682c8 Binary files /dev/null and b/train2/pictures/691ab3d8315c6800f89acfeb7f78c4ad.png differ diff --git a/train2/pictures/693d7581f310883f7813d49a8f1edcf2.png b/train2/pictures/693d7581f310883f7813d49a8f1edcf2.png new file mode 100644 index 0000000..d78b49e Binary files /dev/null and b/train2/pictures/693d7581f310883f7813d49a8f1edcf2.png differ diff --git a/train2/pictures/694e9bff66539e7d5a05c1db0e98d517.png b/train2/pictures/694e9bff66539e7d5a05c1db0e98d517.png new file mode 100644 index 0000000..61f6577 Binary files /dev/null and b/train2/pictures/694e9bff66539e7d5a05c1db0e98d517.png differ diff --git a/train2/pictures/695461ead6795fde956e2387cb93e47c.png b/train2/pictures/695461ead6795fde956e2387cb93e47c.png new file mode 100644 index 0000000..02d0077 Binary files /dev/null and b/train2/pictures/695461ead6795fde956e2387cb93e47c.png differ diff --git a/train2/pictures/69809c09c70ebcaefa7d7be452952d80.png b/train2/pictures/69809c09c70ebcaefa7d7be452952d80.png new file mode 100644 index 0000000..2dbd56d Binary files /dev/null and b/train2/pictures/69809c09c70ebcaefa7d7be452952d80.png differ diff --git a/train2/pictures/699f15d787d0fef52f71890c9e0192cf.png b/train2/pictures/699f15d787d0fef52f71890c9e0192cf.png new file mode 100644 index 0000000..15766a4 Binary files /dev/null and b/train2/pictures/699f15d787d0fef52f71890c9e0192cf.png differ diff --git a/train2/pictures/699f5895390805419ed1bc6da4a6728f.png b/train2/pictures/699f5895390805419ed1bc6da4a6728f.png new file mode 100644 index 0000000..573cb3a Binary files /dev/null and b/train2/pictures/699f5895390805419ed1bc6da4a6728f.png differ diff --git a/train2/pictures/69b44d0bf6c7ba7f7a18f39d840f932a.png b/train2/pictures/69b44d0bf6c7ba7f7a18f39d840f932a.png new file mode 100644 index 0000000..db36209 Binary files /dev/null and b/train2/pictures/69b44d0bf6c7ba7f7a18f39d840f932a.png differ diff --git a/train2/pictures/69e1475301d84c90c306356a9fe853d3.png b/train2/pictures/69e1475301d84c90c306356a9fe853d3.png new file mode 100644 index 0000000..6b73ace Binary files /dev/null and b/train2/pictures/69e1475301d84c90c306356a9fe853d3.png differ diff --git a/train2/pictures/6a03a6f3955b8e827ed084ab69a967a1.png b/train2/pictures/6a03a6f3955b8e827ed084ab69a967a1.png new file mode 100644 index 0000000..3ca9a27 Binary files /dev/null and b/train2/pictures/6a03a6f3955b8e827ed084ab69a967a1.png differ diff --git a/train2/pictures/6a1211b2ea48880d1f332a732ef3ee4f.png b/train2/pictures/6a1211b2ea48880d1f332a732ef3ee4f.png new file mode 100644 index 0000000..619044b Binary files /dev/null and b/train2/pictures/6a1211b2ea48880d1f332a732ef3ee4f.png differ diff --git a/train2/pictures/6a1c4665a102a95b9733965c6358f280.png b/train2/pictures/6a1c4665a102a95b9733965c6358f280.png new file mode 100644 index 0000000..3b0664f Binary files /dev/null and b/train2/pictures/6a1c4665a102a95b9733965c6358f280.png differ diff --git a/train2/pictures/6a5500392666ab2b5220da3fcd581a97.png b/train2/pictures/6a5500392666ab2b5220da3fcd581a97.png new file mode 100644 index 0000000..34eb0a5 Binary files /dev/null and b/train2/pictures/6a5500392666ab2b5220da3fcd581a97.png differ diff --git a/train2/pictures/6a7cd3578f32a719ab2ccda66abdeb01.png b/train2/pictures/6a7cd3578f32a719ab2ccda66abdeb01.png new file mode 100644 index 0000000..6d5c4e6 Binary files /dev/null and b/train2/pictures/6a7cd3578f32a719ab2ccda66abdeb01.png differ diff --git a/train2/pictures/6a8ae2984048807143094aa7018d944e.png b/train2/pictures/6a8ae2984048807143094aa7018d944e.png new file mode 100644 index 0000000..adf2c32 Binary files /dev/null and b/train2/pictures/6a8ae2984048807143094aa7018d944e.png differ diff --git a/train2/pictures/6aa7bd4eb7e9b9a42fe4e7e763eeb39c.png b/train2/pictures/6aa7bd4eb7e9b9a42fe4e7e763eeb39c.png new file mode 100644 index 0000000..fc02e79 Binary files /dev/null and b/train2/pictures/6aa7bd4eb7e9b9a42fe4e7e763eeb39c.png differ diff --git a/train2/pictures/6b0026e16550fa9ca1b428a221c7ec30.png b/train2/pictures/6b0026e16550fa9ca1b428a221c7ec30.png new file mode 100644 index 0000000..579a087 Binary files /dev/null and b/train2/pictures/6b0026e16550fa9ca1b428a221c7ec30.png differ diff --git a/train2/pictures/6b008dd22340493b5ea48536a5cacb6a.png b/train2/pictures/6b008dd22340493b5ea48536a5cacb6a.png new file mode 100644 index 0000000..55b357d Binary files /dev/null and b/train2/pictures/6b008dd22340493b5ea48536a5cacb6a.png differ diff --git a/train2/pictures/6b0ab79b8ee5dc6f98e8a1b693a467eb.png b/train2/pictures/6b0ab79b8ee5dc6f98e8a1b693a467eb.png new file mode 100644 index 0000000..4bf298c Binary files /dev/null and b/train2/pictures/6b0ab79b8ee5dc6f98e8a1b693a467eb.png differ diff --git a/train2/pictures/6b6e3a26d914214171372445a5b71072.png b/train2/pictures/6b6e3a26d914214171372445a5b71072.png new file mode 100644 index 0000000..9d9e207 Binary files /dev/null and b/train2/pictures/6b6e3a26d914214171372445a5b71072.png differ diff --git a/train2/pictures/6b6e9de72ca43a0ef2a2d2c6521d11e3.png b/train2/pictures/6b6e9de72ca43a0ef2a2d2c6521d11e3.png new file mode 100644 index 0000000..e46e3a3 Binary files /dev/null and b/train2/pictures/6b6e9de72ca43a0ef2a2d2c6521d11e3.png differ diff --git a/train2/pictures/6b94f979f70a0671f8bd7e749d220ab6.png b/train2/pictures/6b94f979f70a0671f8bd7e749d220ab6.png new file mode 100644 index 0000000..4d892c0 Binary files /dev/null and b/train2/pictures/6b94f979f70a0671f8bd7e749d220ab6.png differ diff --git a/train2/pictures/6bb5042905f3cdd65dc8c5fe99d17ead.png b/train2/pictures/6bb5042905f3cdd65dc8c5fe99d17ead.png new file mode 100644 index 0000000..de93211 Binary files /dev/null and b/train2/pictures/6bb5042905f3cdd65dc8c5fe99d17ead.png differ diff --git a/train2/pictures/6bd4c5dae0889c7945fc03445b515336.png b/train2/pictures/6bd4c5dae0889c7945fc03445b515336.png new file mode 100644 index 0000000..5b7818c Binary files /dev/null and b/train2/pictures/6bd4c5dae0889c7945fc03445b515336.png differ diff --git a/train2/pictures/6bfef13a6e7cccef9b46c9071a9b3f12.png b/train2/pictures/6bfef13a6e7cccef9b46c9071a9b3f12.png new file mode 100644 index 0000000..a05257f Binary files /dev/null and b/train2/pictures/6bfef13a6e7cccef9b46c9071a9b3f12.png differ diff --git a/train2/pictures/6c05c538bb6d67ca5e796af0d2063acd.png b/train2/pictures/6c05c538bb6d67ca5e796af0d2063acd.png new file mode 100644 index 0000000..abb4f45 Binary files /dev/null and b/train2/pictures/6c05c538bb6d67ca5e796af0d2063acd.png differ diff --git a/train2/pictures/6c11739322376ed4ec90f33d44a0d3d2.png b/train2/pictures/6c11739322376ed4ec90f33d44a0d3d2.png new file mode 100644 index 0000000..68783b9 Binary files /dev/null and b/train2/pictures/6c11739322376ed4ec90f33d44a0d3d2.png differ diff --git a/train2/pictures/6c97e11b2567769569c168132f48d052.png b/train2/pictures/6c97e11b2567769569c168132f48d052.png new file mode 100644 index 0000000..ac88f8d Binary files /dev/null and b/train2/pictures/6c97e11b2567769569c168132f48d052.png differ diff --git a/train2/pictures/6ccbe8f5ad42e1686a45502f354c30b4.png b/train2/pictures/6ccbe8f5ad42e1686a45502f354c30b4.png new file mode 100644 index 0000000..1a3f9fc Binary files /dev/null and b/train2/pictures/6ccbe8f5ad42e1686a45502f354c30b4.png differ diff --git a/train2/pictures/6cd1e91e73274382c59d1a475d1278c7.png b/train2/pictures/6cd1e91e73274382c59d1a475d1278c7.png new file mode 100644 index 0000000..f4f04f3 Binary files /dev/null and b/train2/pictures/6cd1e91e73274382c59d1a475d1278c7.png differ diff --git a/train2/pictures/6cf944102f7b97ae50748d5472a9971e.png b/train2/pictures/6cf944102f7b97ae50748d5472a9971e.png new file mode 100644 index 0000000..4613553 Binary files /dev/null and b/train2/pictures/6cf944102f7b97ae50748d5472a9971e.png differ diff --git a/train2/pictures/6cfa09636d07b42323272bb36b306f98.png b/train2/pictures/6cfa09636d07b42323272bb36b306f98.png new file mode 100644 index 0000000..a464d26 Binary files /dev/null and b/train2/pictures/6cfa09636d07b42323272bb36b306f98.png differ diff --git a/train2/pictures/6d050e6cb35d9297347a58506466b29b.png b/train2/pictures/6d050e6cb35d9297347a58506466b29b.png new file mode 100644 index 0000000..eea172b Binary files /dev/null and b/train2/pictures/6d050e6cb35d9297347a58506466b29b.png differ diff --git a/train2/pictures/6d21cdad041084d0edb5732ae21ba392.png b/train2/pictures/6d21cdad041084d0edb5732ae21ba392.png new file mode 100644 index 0000000..b55cbd1 Binary files /dev/null and b/train2/pictures/6d21cdad041084d0edb5732ae21ba392.png differ diff --git a/train2/pictures/6d3215df014ce06aeb42e5fbdc05f4c3.png b/train2/pictures/6d3215df014ce06aeb42e5fbdc05f4c3.png new file mode 100644 index 0000000..b8080b1 Binary files /dev/null and b/train2/pictures/6d3215df014ce06aeb42e5fbdc05f4c3.png differ diff --git a/train2/pictures/6d67d9cfa7a402a90935faaf9660b557.png b/train2/pictures/6d67d9cfa7a402a90935faaf9660b557.png new file mode 100644 index 0000000..03c2792 Binary files /dev/null and b/train2/pictures/6d67d9cfa7a402a90935faaf9660b557.png differ diff --git a/train2/pictures/6d748c3ff0af35e6d940d8b5f182663b.png b/train2/pictures/6d748c3ff0af35e6d940d8b5f182663b.png new file mode 100644 index 0000000..ea06530 Binary files /dev/null and b/train2/pictures/6d748c3ff0af35e6d940d8b5f182663b.png differ diff --git a/train2/pictures/6da0fb97f00f6453940db9698ccaaa0f.png b/train2/pictures/6da0fb97f00f6453940db9698ccaaa0f.png new file mode 100644 index 0000000..127157b Binary files /dev/null and b/train2/pictures/6da0fb97f00f6453940db9698ccaaa0f.png differ diff --git a/train2/pictures/6da6a095e4e485fe79025a0de4f80347.png b/train2/pictures/6da6a095e4e485fe79025a0de4f80347.png new file mode 100644 index 0000000..0166494 Binary files /dev/null and b/train2/pictures/6da6a095e4e485fe79025a0de4f80347.png differ diff --git a/train2/pictures/6db4329f06e6cc699ff80fcceeed6e9b.png b/train2/pictures/6db4329f06e6cc699ff80fcceeed6e9b.png new file mode 100644 index 0000000..20cba29 Binary files /dev/null and b/train2/pictures/6db4329f06e6cc699ff80fcceeed6e9b.png differ diff --git a/train2/pictures/6ded05acfc369fab8769e2a4b66c6b60.png b/train2/pictures/6ded05acfc369fab8769e2a4b66c6b60.png new file mode 100644 index 0000000..5b30268 Binary files /dev/null and b/train2/pictures/6ded05acfc369fab8769e2a4b66c6b60.png differ diff --git a/train2/pictures/6e01d107a4493f577fa5b002496ea267.png b/train2/pictures/6e01d107a4493f577fa5b002496ea267.png new file mode 100644 index 0000000..4790016 Binary files /dev/null and b/train2/pictures/6e01d107a4493f577fa5b002496ea267.png differ diff --git a/train2/pictures/6e0d85689a93e58fbd343225b5a75aae.png b/train2/pictures/6e0d85689a93e58fbd343225b5a75aae.png new file mode 100644 index 0000000..526c0bc Binary files /dev/null and b/train2/pictures/6e0d85689a93e58fbd343225b5a75aae.png differ diff --git a/train2/pictures/6e64f995a7b40e5b95c5dd5dda640a05.png b/train2/pictures/6e64f995a7b40e5b95c5dd5dda640a05.png new file mode 100644 index 0000000..d00d6da Binary files /dev/null and b/train2/pictures/6e64f995a7b40e5b95c5dd5dda640a05.png differ diff --git a/train2/pictures/6e670bc4c55a03e215f54bf8ef2ae033.png b/train2/pictures/6e670bc4c55a03e215f54bf8ef2ae033.png new file mode 100644 index 0000000..9c5387a Binary files /dev/null and b/train2/pictures/6e670bc4c55a03e215f54bf8ef2ae033.png differ diff --git a/train2/pictures/6e6fab05184e2d478ed5f847f34b9af7.png b/train2/pictures/6e6fab05184e2d478ed5f847f34b9af7.png new file mode 100644 index 0000000..2d29125 Binary files /dev/null and b/train2/pictures/6e6fab05184e2d478ed5f847f34b9af7.png differ diff --git a/train2/pictures/6e7c3099c0ed76ab3366274822a10183.png b/train2/pictures/6e7c3099c0ed76ab3366274822a10183.png new file mode 100644 index 0000000..6bc5104 Binary files /dev/null and b/train2/pictures/6e7c3099c0ed76ab3366274822a10183.png differ diff --git a/train2/pictures/6ee9c09fe8235c3367b7a3f7ecf34fc2.png b/train2/pictures/6ee9c09fe8235c3367b7a3f7ecf34fc2.png new file mode 100644 index 0000000..e613a41 Binary files /dev/null and b/train2/pictures/6ee9c09fe8235c3367b7a3f7ecf34fc2.png differ diff --git a/train2/pictures/6ef59186da3bb4dbdc2ab22e0ce2d7a8.png b/train2/pictures/6ef59186da3bb4dbdc2ab22e0ce2d7a8.png new file mode 100644 index 0000000..9a93c87 Binary files /dev/null and b/train2/pictures/6ef59186da3bb4dbdc2ab22e0ce2d7a8.png differ diff --git a/train2/pictures/6f175c77b52f1aee93442aaffe20e602.png b/train2/pictures/6f175c77b52f1aee93442aaffe20e602.png new file mode 100644 index 0000000..e43206d Binary files /dev/null and b/train2/pictures/6f175c77b52f1aee93442aaffe20e602.png differ diff --git a/train2/pictures/6f38e07fa70c1f1e9d432bc91216ecf9.png b/train2/pictures/6f38e07fa70c1f1e9d432bc91216ecf9.png new file mode 100644 index 0000000..be93dae Binary files /dev/null and b/train2/pictures/6f38e07fa70c1f1e9d432bc91216ecf9.png differ diff --git a/train2/pictures/6f5c7b3c659b414c2f969c44d65ed42f.png b/train2/pictures/6f5c7b3c659b414c2f969c44d65ed42f.png new file mode 100644 index 0000000..b9d6e0a Binary files /dev/null and b/train2/pictures/6f5c7b3c659b414c2f969c44d65ed42f.png differ diff --git a/train2/pictures/6fd781bee2f8376eb785d7c5d32cd8a2.png b/train2/pictures/6fd781bee2f8376eb785d7c5d32cd8a2.png new file mode 100644 index 0000000..8444c1c Binary files /dev/null and b/train2/pictures/6fd781bee2f8376eb785d7c5d32cd8a2.png differ diff --git a/train2/pictures/6ff40a3bdbdded070a1dd7e8121b9312.png b/train2/pictures/6ff40a3bdbdded070a1dd7e8121b9312.png new file mode 100644 index 0000000..2acd584 Binary files /dev/null and b/train2/pictures/6ff40a3bdbdded070a1dd7e8121b9312.png differ diff --git a/train2/pictures/6ff598141a5abef61f70c4d2ccbfb26b.png b/train2/pictures/6ff598141a5abef61f70c4d2ccbfb26b.png new file mode 100644 index 0000000..dd65656 Binary files /dev/null and b/train2/pictures/6ff598141a5abef61f70c4d2ccbfb26b.png differ diff --git a/train2/pictures/70087cf4ba2c10f6753ceee509d4adf7.png b/train2/pictures/70087cf4ba2c10f6753ceee509d4adf7.png new file mode 100644 index 0000000..9a7f710 Binary files /dev/null and b/train2/pictures/70087cf4ba2c10f6753ceee509d4adf7.png differ diff --git a/train2/pictures/702ac98f59ddb87f81f7d104902b0e9c.png b/train2/pictures/702ac98f59ddb87f81f7d104902b0e9c.png new file mode 100644 index 0000000..affa606 Binary files /dev/null and b/train2/pictures/702ac98f59ddb87f81f7d104902b0e9c.png differ diff --git a/train2/pictures/7050205a6b1cb39ec79d4b5fe31849d6.png b/train2/pictures/7050205a6b1cb39ec79d4b5fe31849d6.png new file mode 100644 index 0000000..ff2fcd2 Binary files /dev/null and b/train2/pictures/7050205a6b1cb39ec79d4b5fe31849d6.png differ diff --git a/train2/pictures/7076fe0396ff0ee96cb03788812c0da4.png b/train2/pictures/7076fe0396ff0ee96cb03788812c0da4.png new file mode 100644 index 0000000..d196e5e Binary files /dev/null and b/train2/pictures/7076fe0396ff0ee96cb03788812c0da4.png differ diff --git a/train2/pictures/70a320ed4adee88e46d295053026a667.png b/train2/pictures/70a320ed4adee88e46d295053026a667.png new file mode 100644 index 0000000..5bea110 Binary files /dev/null and b/train2/pictures/70a320ed4adee88e46d295053026a667.png differ diff --git a/train2/pictures/70aed9eda0dec1557df4aca94cd944b8.png b/train2/pictures/70aed9eda0dec1557df4aca94cd944b8.png new file mode 100644 index 0000000..a09b854 Binary files /dev/null and b/train2/pictures/70aed9eda0dec1557df4aca94cd944b8.png differ diff --git a/train2/pictures/70b3d3f1f3fd4aa53d1cac258028e24a.png b/train2/pictures/70b3d3f1f3fd4aa53d1cac258028e24a.png new file mode 100644 index 0000000..8c3306c Binary files /dev/null and b/train2/pictures/70b3d3f1f3fd4aa53d1cac258028e24a.png differ diff --git a/train2/pictures/70c7d5c32c59d03a7b4532bda454bc11.png b/train2/pictures/70c7d5c32c59d03a7b4532bda454bc11.png new file mode 100644 index 0000000..84933af Binary files /dev/null and b/train2/pictures/70c7d5c32c59d03a7b4532bda454bc11.png differ diff --git a/train2/pictures/70d75dc8b9a6b7adce68854074ca8325.png b/train2/pictures/70d75dc8b9a6b7adce68854074ca8325.png new file mode 100644 index 0000000..adf35a9 Binary files /dev/null and b/train2/pictures/70d75dc8b9a6b7adce68854074ca8325.png differ diff --git a/train2/pictures/710baea0b9bcd205d6053dbee441f93b.png b/train2/pictures/710baea0b9bcd205d6053dbee441f93b.png new file mode 100644 index 0000000..37de4ed Binary files /dev/null and b/train2/pictures/710baea0b9bcd205d6053dbee441f93b.png differ diff --git a/train2/pictures/712c79a819988831fb93dda77262a42e.png b/train2/pictures/712c79a819988831fb93dda77262a42e.png new file mode 100644 index 0000000..2f48442 Binary files /dev/null and b/train2/pictures/712c79a819988831fb93dda77262a42e.png differ diff --git a/train2/pictures/71422cf49d886a21192dd38954728e5b.png b/train2/pictures/71422cf49d886a21192dd38954728e5b.png new file mode 100644 index 0000000..c6e4a28 Binary files /dev/null and b/train2/pictures/71422cf49d886a21192dd38954728e5b.png differ diff --git a/train2/pictures/714bf74b959cf3f9bd88280cf1510a21.png b/train2/pictures/714bf74b959cf3f9bd88280cf1510a21.png new file mode 100644 index 0000000..8f834f8 Binary files /dev/null and b/train2/pictures/714bf74b959cf3f9bd88280cf1510a21.png differ diff --git a/train2/pictures/7152e784f8a6c6f0b3e400499b7612af.png b/train2/pictures/7152e784f8a6c6f0b3e400499b7612af.png new file mode 100644 index 0000000..aa6a7bb Binary files /dev/null and b/train2/pictures/7152e784f8a6c6f0b3e400499b7612af.png differ diff --git a/train2/pictures/715d3161cb718b32b5f7cfe258b6b2b0.png b/train2/pictures/715d3161cb718b32b5f7cfe258b6b2b0.png new file mode 100644 index 0000000..9f83bb5 Binary files /dev/null and b/train2/pictures/715d3161cb718b32b5f7cfe258b6b2b0.png differ diff --git a/train2/pictures/716d7528b25f80061a76e51e992f8ae3.png b/train2/pictures/716d7528b25f80061a76e51e992f8ae3.png new file mode 100644 index 0000000..d64c3db Binary files /dev/null and b/train2/pictures/716d7528b25f80061a76e51e992f8ae3.png differ diff --git a/train2/pictures/718ce62e220405f8369c9876d22de058.png b/train2/pictures/718ce62e220405f8369c9876d22de058.png new file mode 100644 index 0000000..7b33489 Binary files /dev/null and b/train2/pictures/718ce62e220405f8369c9876d22de058.png differ diff --git a/train2/pictures/71a3dfa9cdb7c06160d913885edae377.png b/train2/pictures/71a3dfa9cdb7c06160d913885edae377.png new file mode 100644 index 0000000..fb6a87d Binary files /dev/null and b/train2/pictures/71a3dfa9cdb7c06160d913885edae377.png differ diff --git a/train2/pictures/71e91212f71bade2e8fe2a3b37c930da.png b/train2/pictures/71e91212f71bade2e8fe2a3b37c930da.png new file mode 100644 index 0000000..501fc8c Binary files /dev/null and b/train2/pictures/71e91212f71bade2e8fe2a3b37c930da.png differ diff --git a/train2/pictures/71f527abc14d0c7e7cd191ba8313dcd5.png b/train2/pictures/71f527abc14d0c7e7cd191ba8313dcd5.png new file mode 100644 index 0000000..10b7987 Binary files /dev/null and b/train2/pictures/71f527abc14d0c7e7cd191ba8313dcd5.png differ diff --git a/train2/pictures/724a86702e646ef6fae360facac6c6de.png b/train2/pictures/724a86702e646ef6fae360facac6c6de.png new file mode 100644 index 0000000..6304ccd Binary files /dev/null and b/train2/pictures/724a86702e646ef6fae360facac6c6de.png differ diff --git a/train2/pictures/726ad38fa299d221c716d8136dde364e.png b/train2/pictures/726ad38fa299d221c716d8136dde364e.png new file mode 100644 index 0000000..ce69028 Binary files /dev/null and b/train2/pictures/726ad38fa299d221c716d8136dde364e.png differ diff --git a/train2/pictures/726d9082d6cfc562063280bfa4deb43f.png b/train2/pictures/726d9082d6cfc562063280bfa4deb43f.png new file mode 100644 index 0000000..12cc17f Binary files /dev/null and b/train2/pictures/726d9082d6cfc562063280bfa4deb43f.png differ diff --git a/train2/pictures/7272d2a9cd6a5e04beb2f06891b1e7cf.png b/train2/pictures/7272d2a9cd6a5e04beb2f06891b1e7cf.png new file mode 100644 index 0000000..ef94381 Binary files /dev/null and b/train2/pictures/7272d2a9cd6a5e04beb2f06891b1e7cf.png differ diff --git a/train2/pictures/7282200b1a12d97776b531355a6fec16.png b/train2/pictures/7282200b1a12d97776b531355a6fec16.png new file mode 100644 index 0000000..3ce5578 Binary files /dev/null and b/train2/pictures/7282200b1a12d97776b531355a6fec16.png differ diff --git a/train2/pictures/72e3521a75449f80aee8febf4c36f8db.png b/train2/pictures/72e3521a75449f80aee8febf4c36f8db.png new file mode 100644 index 0000000..75d8fc5 Binary files /dev/null and b/train2/pictures/72e3521a75449f80aee8febf4c36f8db.png differ diff --git a/train2/pictures/72f91b4f2488fc60e9360b35406e09a0.png b/train2/pictures/72f91b4f2488fc60e9360b35406e09a0.png new file mode 100644 index 0000000..004d1f5 Binary files /dev/null and b/train2/pictures/72f91b4f2488fc60e9360b35406e09a0.png differ diff --git a/train2/pictures/736e2a7384adef87a60940bd6261ac58.png b/train2/pictures/736e2a7384adef87a60940bd6261ac58.png new file mode 100644 index 0000000..c57077a Binary files /dev/null and b/train2/pictures/736e2a7384adef87a60940bd6261ac58.png differ diff --git a/train2/pictures/73d8ef4892bb08fe5b59efccc7b756e1.png b/train2/pictures/73d8ef4892bb08fe5b59efccc7b756e1.png new file mode 100644 index 0000000..41cf377 Binary files /dev/null and b/train2/pictures/73d8ef4892bb08fe5b59efccc7b756e1.png differ diff --git a/train2/pictures/7423ca02492491c89d83a54fbaaca9d2.png b/train2/pictures/7423ca02492491c89d83a54fbaaca9d2.png new file mode 100644 index 0000000..1cf20b2 Binary files /dev/null and b/train2/pictures/7423ca02492491c89d83a54fbaaca9d2.png differ diff --git a/train2/pictures/743b60647a2a03b1ecbc986042cba9e6.png b/train2/pictures/743b60647a2a03b1ecbc986042cba9e6.png new file mode 100644 index 0000000..fa3d9d3 Binary files /dev/null and b/train2/pictures/743b60647a2a03b1ecbc986042cba9e6.png differ diff --git a/train2/pictures/743bea80f3e09540e9b4ad94cd13e49a.png b/train2/pictures/743bea80f3e09540e9b4ad94cd13e49a.png new file mode 100644 index 0000000..25afbc9 Binary files /dev/null and b/train2/pictures/743bea80f3e09540e9b4ad94cd13e49a.png differ diff --git a/train2/pictures/745dc06709d905cb154048b35c242f6e.png b/train2/pictures/745dc06709d905cb154048b35c242f6e.png new file mode 100644 index 0000000..fc0a785 Binary files /dev/null and b/train2/pictures/745dc06709d905cb154048b35c242f6e.png differ diff --git a/train2/pictures/747482b6e1202c33e38db26f6cf1100f.png b/train2/pictures/747482b6e1202c33e38db26f6cf1100f.png new file mode 100644 index 0000000..9713a54 Binary files /dev/null and b/train2/pictures/747482b6e1202c33e38db26f6cf1100f.png differ diff --git a/train2/pictures/74a938c6530926a72bc7ba724872fabc.png b/train2/pictures/74a938c6530926a72bc7ba724872fabc.png new file mode 100644 index 0000000..de52b02 Binary files /dev/null and b/train2/pictures/74a938c6530926a72bc7ba724872fabc.png differ diff --git a/train2/pictures/74bd21e471fef762c3e38c991f4f6a92.png b/train2/pictures/74bd21e471fef762c3e38c991f4f6a92.png new file mode 100644 index 0000000..b9ac386 Binary files /dev/null and b/train2/pictures/74bd21e471fef762c3e38c991f4f6a92.png differ diff --git a/train2/pictures/74f3e8102a4271cebc42a935b70d3008.png b/train2/pictures/74f3e8102a4271cebc42a935b70d3008.png new file mode 100644 index 0000000..ae993f4 Binary files /dev/null and b/train2/pictures/74f3e8102a4271cebc42a935b70d3008.png differ diff --git a/train2/pictures/750f3c27e40e6ac3e21e8760930f6296.png b/train2/pictures/750f3c27e40e6ac3e21e8760930f6296.png new file mode 100644 index 0000000..fa258cb Binary files /dev/null and b/train2/pictures/750f3c27e40e6ac3e21e8760930f6296.png differ diff --git a/train2/pictures/7521238e7b5f8aa47848192a83a42a22.png b/train2/pictures/7521238e7b5f8aa47848192a83a42a22.png new file mode 100644 index 0000000..13f4679 Binary files /dev/null and b/train2/pictures/7521238e7b5f8aa47848192a83a42a22.png differ diff --git a/train2/pictures/7524d79fe56f48bc58755ade4b80e832.png b/train2/pictures/7524d79fe56f48bc58755ade4b80e832.png new file mode 100644 index 0000000..fd0ba83 Binary files /dev/null and b/train2/pictures/7524d79fe56f48bc58755ade4b80e832.png differ diff --git a/train2/pictures/752e7de188b9951e97ede5c29e18ba04.png b/train2/pictures/752e7de188b9951e97ede5c29e18ba04.png new file mode 100644 index 0000000..d99bd26 Binary files /dev/null and b/train2/pictures/752e7de188b9951e97ede5c29e18ba04.png differ diff --git a/train2/pictures/752f28c84527d2b54077805e929c2870.png b/train2/pictures/752f28c84527d2b54077805e929c2870.png new file mode 100644 index 0000000..bfd231a Binary files /dev/null and b/train2/pictures/752f28c84527d2b54077805e929c2870.png differ diff --git a/train2/pictures/755bc9bd453086a86b0a899641a3b94a.png b/train2/pictures/755bc9bd453086a86b0a899641a3b94a.png new file mode 100644 index 0000000..38d9020 Binary files /dev/null and b/train2/pictures/755bc9bd453086a86b0a899641a3b94a.png differ diff --git a/train2/pictures/755dac69818530d7c293430d55d05ddc.png b/train2/pictures/755dac69818530d7c293430d55d05ddc.png new file mode 100644 index 0000000..6b20dee Binary files /dev/null and b/train2/pictures/755dac69818530d7c293430d55d05ddc.png differ diff --git a/train2/pictures/757d021da54915ea4ccb54eac6f5faa8.png b/train2/pictures/757d021da54915ea4ccb54eac6f5faa8.png new file mode 100644 index 0000000..933ea2c Binary files /dev/null and b/train2/pictures/757d021da54915ea4ccb54eac6f5faa8.png differ diff --git a/train2/pictures/75ccd2b790bf81d804d25c7b7b6d6628.png b/train2/pictures/75ccd2b790bf81d804d25c7b7b6d6628.png new file mode 100644 index 0000000..49bf0c9 Binary files /dev/null and b/train2/pictures/75ccd2b790bf81d804d25c7b7b6d6628.png differ diff --git a/train2/pictures/75d5f314a082f272381ac1001783bbb7.png b/train2/pictures/75d5f314a082f272381ac1001783bbb7.png new file mode 100644 index 0000000..721cd03 Binary files /dev/null and b/train2/pictures/75d5f314a082f272381ac1001783bbb7.png differ diff --git a/train2/pictures/75ebf78f4d715a10ea63da9c7a6511f8.png b/train2/pictures/75ebf78f4d715a10ea63da9c7a6511f8.png new file mode 100644 index 0000000..9bb14a2 Binary files /dev/null and b/train2/pictures/75ebf78f4d715a10ea63da9c7a6511f8.png differ diff --git a/train2/pictures/75f335ab33a72e009620ce8975440205.png b/train2/pictures/75f335ab33a72e009620ce8975440205.png new file mode 100644 index 0000000..6c71fa5 Binary files /dev/null and b/train2/pictures/75f335ab33a72e009620ce8975440205.png differ diff --git a/train2/pictures/7604a3f048fbd7e56f2b4ed033c6dad3.png b/train2/pictures/7604a3f048fbd7e56f2b4ed033c6dad3.png new file mode 100644 index 0000000..028f234 Binary files /dev/null and b/train2/pictures/7604a3f048fbd7e56f2b4ed033c6dad3.png differ diff --git a/train2/pictures/7642c732ebd56b70900d1513008e4c8a.png b/train2/pictures/7642c732ebd56b70900d1513008e4c8a.png new file mode 100644 index 0000000..5403a7d Binary files /dev/null and b/train2/pictures/7642c732ebd56b70900d1513008e4c8a.png differ diff --git a/train2/pictures/7644687f09fa48bd51e47086ca341d84.png b/train2/pictures/7644687f09fa48bd51e47086ca341d84.png new file mode 100644 index 0000000..e9cdb6e Binary files /dev/null and b/train2/pictures/7644687f09fa48bd51e47086ca341d84.png differ diff --git a/train2/pictures/76506372bd37ddde6c970b909bd46512.png b/train2/pictures/76506372bd37ddde6c970b909bd46512.png new file mode 100644 index 0000000..ed41dda Binary files /dev/null and b/train2/pictures/76506372bd37ddde6c970b909bd46512.png differ diff --git a/train2/pictures/76754854d1f192a040df90165ace5eba.png b/train2/pictures/76754854d1f192a040df90165ace5eba.png new file mode 100644 index 0000000..f63e5a2 Binary files /dev/null and b/train2/pictures/76754854d1f192a040df90165ace5eba.png differ diff --git a/train2/pictures/76766f8be03258b8f990b57bdfea4b52.png b/train2/pictures/76766f8be03258b8f990b57bdfea4b52.png new file mode 100644 index 0000000..8843c24 Binary files /dev/null and b/train2/pictures/76766f8be03258b8f990b57bdfea4b52.png differ diff --git a/train2/pictures/7687f9ee11cdca037536e01fe1e3cd1c.png b/train2/pictures/7687f9ee11cdca037536e01fe1e3cd1c.png new file mode 100644 index 0000000..dc9e59f Binary files /dev/null and b/train2/pictures/7687f9ee11cdca037536e01fe1e3cd1c.png differ diff --git a/train2/pictures/768ca7f41e14b34c3a0c8bceaa1ae36b.png b/train2/pictures/768ca7f41e14b34c3a0c8bceaa1ae36b.png new file mode 100644 index 0000000..0a04742 Binary files /dev/null and b/train2/pictures/768ca7f41e14b34c3a0c8bceaa1ae36b.png differ diff --git a/train2/pictures/76a9d201d897bcb1ea6ee9f4e6606509.png b/train2/pictures/76a9d201d897bcb1ea6ee9f4e6606509.png new file mode 100644 index 0000000..93cea8a Binary files /dev/null and b/train2/pictures/76a9d201d897bcb1ea6ee9f4e6606509.png differ diff --git a/train2/pictures/76b35b9acb4341af01f3720f22aeef4b.png b/train2/pictures/76b35b9acb4341af01f3720f22aeef4b.png new file mode 100644 index 0000000..25f4c38 Binary files /dev/null and b/train2/pictures/76b35b9acb4341af01f3720f22aeef4b.png differ diff --git a/train2/pictures/76bd88b21bb36c25e4751da4068ece87.png b/train2/pictures/76bd88b21bb36c25e4751da4068ece87.png new file mode 100644 index 0000000..1741ac8 Binary files /dev/null and b/train2/pictures/76bd88b21bb36c25e4751da4068ece87.png differ diff --git a/train2/pictures/76c7de5042af82ea03e206106690f4fa.png b/train2/pictures/76c7de5042af82ea03e206106690f4fa.png new file mode 100644 index 0000000..4aea92c Binary files /dev/null and b/train2/pictures/76c7de5042af82ea03e206106690f4fa.png differ diff --git a/train2/pictures/76d2a9a8e12092e8e16a940a4eb9a1bc.png b/train2/pictures/76d2a9a8e12092e8e16a940a4eb9a1bc.png new file mode 100644 index 0000000..d4bfca6 Binary files /dev/null and b/train2/pictures/76d2a9a8e12092e8e16a940a4eb9a1bc.png differ diff --git a/train2/pictures/772568feed3a8e81552da7cc89ab3d38.png b/train2/pictures/772568feed3a8e81552da7cc89ab3d38.png new file mode 100644 index 0000000..f32ce6a Binary files /dev/null and b/train2/pictures/772568feed3a8e81552da7cc89ab3d38.png differ diff --git a/train2/pictures/77656c6b4b1eb5c2812216392639d2fd.png b/train2/pictures/77656c6b4b1eb5c2812216392639d2fd.png new file mode 100644 index 0000000..f23f2fe Binary files /dev/null and b/train2/pictures/77656c6b4b1eb5c2812216392639d2fd.png differ diff --git a/train2/pictures/77712f4089edeb144590b3a4e544983d.png b/train2/pictures/77712f4089edeb144590b3a4e544983d.png new file mode 100644 index 0000000..763a0bf Binary files /dev/null and b/train2/pictures/77712f4089edeb144590b3a4e544983d.png differ diff --git a/train2/pictures/77ddb143557645241caaa6ff5209d08c.png b/train2/pictures/77ddb143557645241caaa6ff5209d08c.png new file mode 100644 index 0000000..36601f6 Binary files /dev/null and b/train2/pictures/77ddb143557645241caaa6ff5209d08c.png differ diff --git a/train2/pictures/77f1435557d3567160c56d10ccaeceb3.png b/train2/pictures/77f1435557d3567160c56d10ccaeceb3.png new file mode 100644 index 0000000..b547efc Binary files /dev/null and b/train2/pictures/77f1435557d3567160c56d10ccaeceb3.png differ diff --git a/train2/pictures/781bf82a2c036cf287c8995fa1f43684.png b/train2/pictures/781bf82a2c036cf287c8995fa1f43684.png new file mode 100644 index 0000000..b2b36ee Binary files /dev/null and b/train2/pictures/781bf82a2c036cf287c8995fa1f43684.png differ diff --git a/train2/pictures/783155d3422b36b6072f357ddce53c75.png b/train2/pictures/783155d3422b36b6072f357ddce53c75.png new file mode 100644 index 0000000..6c242e3 Binary files /dev/null and b/train2/pictures/783155d3422b36b6072f357ddce53c75.png differ diff --git a/train2/pictures/784d350992891293fab7981e8e8aa88c.png b/train2/pictures/784d350992891293fab7981e8e8aa88c.png new file mode 100644 index 0000000..05c6393 Binary files /dev/null and b/train2/pictures/784d350992891293fab7981e8e8aa88c.png differ diff --git a/train2/pictures/786f50b840232f22ae9ca1dc46bdd97e.png b/train2/pictures/786f50b840232f22ae9ca1dc46bdd97e.png new file mode 100644 index 0000000..e541df7 Binary files /dev/null and b/train2/pictures/786f50b840232f22ae9ca1dc46bdd97e.png differ diff --git a/train2/pictures/78c9cb5fa57d2db0e7b0846a09dce9f4.png b/train2/pictures/78c9cb5fa57d2db0e7b0846a09dce9f4.png new file mode 100644 index 0000000..0a7f49b Binary files /dev/null and b/train2/pictures/78c9cb5fa57d2db0e7b0846a09dce9f4.png differ diff --git a/train2/pictures/78db218663dfda4e6d06e6f97a6008a3.png b/train2/pictures/78db218663dfda4e6d06e6f97a6008a3.png new file mode 100644 index 0000000..270ea61 Binary files /dev/null and b/train2/pictures/78db218663dfda4e6d06e6f97a6008a3.png differ diff --git a/train2/pictures/7907ab4cad7eabda51fb6f75a8ac967e.png b/train2/pictures/7907ab4cad7eabda51fb6f75a8ac967e.png new file mode 100644 index 0000000..f72de50 Binary files /dev/null and b/train2/pictures/7907ab4cad7eabda51fb6f75a8ac967e.png differ diff --git a/train2/pictures/790f7556578b9d7424f28ba981eb2d73.png b/train2/pictures/790f7556578b9d7424f28ba981eb2d73.png new file mode 100644 index 0000000..86db99c Binary files /dev/null and b/train2/pictures/790f7556578b9d7424f28ba981eb2d73.png differ diff --git a/train2/pictures/7919c7f5f3f6636a886764e4da93ad69.png b/train2/pictures/7919c7f5f3f6636a886764e4da93ad69.png new file mode 100644 index 0000000..50b6adc Binary files /dev/null and b/train2/pictures/7919c7f5f3f6636a886764e4da93ad69.png differ diff --git a/train2/pictures/792c6459b12ae7d63b0e8a36e3f408d2.png b/train2/pictures/792c6459b12ae7d63b0e8a36e3f408d2.png new file mode 100644 index 0000000..75f8bbd Binary files /dev/null and b/train2/pictures/792c6459b12ae7d63b0e8a36e3f408d2.png differ diff --git a/train2/pictures/795e57f034e1b84a59fa8e240bf19a07.png b/train2/pictures/795e57f034e1b84a59fa8e240bf19a07.png new file mode 100644 index 0000000..83ecbc1 Binary files /dev/null and b/train2/pictures/795e57f034e1b84a59fa8e240bf19a07.png differ diff --git a/train2/pictures/797563d31d50ac722a929516e44269e3.png b/train2/pictures/797563d31d50ac722a929516e44269e3.png new file mode 100644 index 0000000..4a073b7 Binary files /dev/null and b/train2/pictures/797563d31d50ac722a929516e44269e3.png differ diff --git a/train2/pictures/7999816ae3d1232195144ec62ee6d3ef.png b/train2/pictures/7999816ae3d1232195144ec62ee6d3ef.png new file mode 100644 index 0000000..db32098 Binary files /dev/null and b/train2/pictures/7999816ae3d1232195144ec62ee6d3ef.png differ diff --git a/train2/pictures/79abcbee1df6fa1f9f1553caf1cf6c36.png b/train2/pictures/79abcbee1df6fa1f9f1553caf1cf6c36.png new file mode 100644 index 0000000..f87aa7d Binary files /dev/null and b/train2/pictures/79abcbee1df6fa1f9f1553caf1cf6c36.png differ diff --git a/train2/pictures/79c705696cb4804b3db76e1fc4c677a4.png b/train2/pictures/79c705696cb4804b3db76e1fc4c677a4.png new file mode 100644 index 0000000..b00d430 Binary files /dev/null and b/train2/pictures/79c705696cb4804b3db76e1fc4c677a4.png differ diff --git a/train2/pictures/79d12dc28b49a4e0910d8614aae3e48f.png b/train2/pictures/79d12dc28b49a4e0910d8614aae3e48f.png new file mode 100644 index 0000000..7b35d84 Binary files /dev/null and b/train2/pictures/79d12dc28b49a4e0910d8614aae3e48f.png differ diff --git a/train2/pictures/79e34ca80d791d8d8e8e69c7e20fc952.png b/train2/pictures/79e34ca80d791d8d8e8e69c7e20fc952.png new file mode 100644 index 0000000..d0051b6 Binary files /dev/null and b/train2/pictures/79e34ca80d791d8d8e8e69c7e20fc952.png differ diff --git a/train2/pictures/79ea2622a04f8e924a0aacd88a37857d.png b/train2/pictures/79ea2622a04f8e924a0aacd88a37857d.png new file mode 100644 index 0000000..bc476b9 Binary files /dev/null and b/train2/pictures/79ea2622a04f8e924a0aacd88a37857d.png differ diff --git a/train2/pictures/7a3c5fd3195adb308ee709aa0177daa1.png b/train2/pictures/7a3c5fd3195adb308ee709aa0177daa1.png new file mode 100644 index 0000000..b4b6291 Binary files /dev/null and b/train2/pictures/7a3c5fd3195adb308ee709aa0177daa1.png differ diff --git a/train2/pictures/7a63941f24763a08b585391765727005.png b/train2/pictures/7a63941f24763a08b585391765727005.png new file mode 100644 index 0000000..ca29d1b Binary files /dev/null and b/train2/pictures/7a63941f24763a08b585391765727005.png differ diff --git a/train2/pictures/7a831798a2d1079613afcc12fd9618f1.png b/train2/pictures/7a831798a2d1079613afcc12fd9618f1.png new file mode 100644 index 0000000..d5ef507 Binary files /dev/null and b/train2/pictures/7a831798a2d1079613afcc12fd9618f1.png differ diff --git a/train2/pictures/7ab6c23025759e3be012b97c8e89a39f.png b/train2/pictures/7ab6c23025759e3be012b97c8e89a39f.png new file mode 100644 index 0000000..dba94c3 Binary files /dev/null and b/train2/pictures/7ab6c23025759e3be012b97c8e89a39f.png differ diff --git a/train2/pictures/7ad07afd6d9455c656a14dd103a19daa.png b/train2/pictures/7ad07afd6d9455c656a14dd103a19daa.png new file mode 100644 index 0000000..e1ad26b Binary files /dev/null and b/train2/pictures/7ad07afd6d9455c656a14dd103a19daa.png differ diff --git a/train2/pictures/7ae9e6f5b6bce18449f2804e759075c2.png b/train2/pictures/7ae9e6f5b6bce18449f2804e759075c2.png new file mode 100644 index 0000000..837356f Binary files /dev/null and b/train2/pictures/7ae9e6f5b6bce18449f2804e759075c2.png differ diff --git a/train2/pictures/7b0f924707590ef021056eb397d7ee58.png b/train2/pictures/7b0f924707590ef021056eb397d7ee58.png new file mode 100644 index 0000000..6258df7 Binary files /dev/null and b/train2/pictures/7b0f924707590ef021056eb397d7ee58.png differ diff --git a/train2/pictures/7b60f0934d64ba2454030c3cb80887b8.png b/train2/pictures/7b60f0934d64ba2454030c3cb80887b8.png new file mode 100644 index 0000000..f4ffebd Binary files /dev/null and b/train2/pictures/7b60f0934d64ba2454030c3cb80887b8.png differ diff --git a/train2/pictures/7b62f1181cfaabb395352a4b6662b52c.png b/train2/pictures/7b62f1181cfaabb395352a4b6662b52c.png new file mode 100644 index 0000000..d424722 Binary files /dev/null and b/train2/pictures/7b62f1181cfaabb395352a4b6662b52c.png differ diff --git a/train2/pictures/7baef5f51cfabf7d971058e429a9a671.png b/train2/pictures/7baef5f51cfabf7d971058e429a9a671.png new file mode 100644 index 0000000..9caeccc Binary files /dev/null and b/train2/pictures/7baef5f51cfabf7d971058e429a9a671.png differ diff --git a/train2/pictures/7bb9d007d30fb11e5414553b7fb31300.png b/train2/pictures/7bb9d007d30fb11e5414553b7fb31300.png new file mode 100644 index 0000000..78dc0f7 Binary files /dev/null and b/train2/pictures/7bb9d007d30fb11e5414553b7fb31300.png differ diff --git a/train2/pictures/7bc2e5bbdaa9b1109b377a5325f691c9.png b/train2/pictures/7bc2e5bbdaa9b1109b377a5325f691c9.png new file mode 100644 index 0000000..ac2aff9 Binary files /dev/null and b/train2/pictures/7bc2e5bbdaa9b1109b377a5325f691c9.png differ diff --git a/train2/pictures/7bf23156f30549262539ac140912b92d.png b/train2/pictures/7bf23156f30549262539ac140912b92d.png new file mode 100644 index 0000000..15c942e Binary files /dev/null and b/train2/pictures/7bf23156f30549262539ac140912b92d.png differ diff --git a/train2/pictures/7bf5eb5c789a41b5c5263e3b0c7ea303.png b/train2/pictures/7bf5eb5c789a41b5c5263e3b0c7ea303.png new file mode 100644 index 0000000..d0cf425 Binary files /dev/null and b/train2/pictures/7bf5eb5c789a41b5c5263e3b0c7ea303.png differ diff --git a/train2/pictures/7bfd23f20624a7ca61264b2242207c82.png b/train2/pictures/7bfd23f20624a7ca61264b2242207c82.png new file mode 100644 index 0000000..4a39571 Binary files /dev/null and b/train2/pictures/7bfd23f20624a7ca61264b2242207c82.png differ diff --git a/train2/pictures/7c106edce58b03b2335757c047b5bf3f.png b/train2/pictures/7c106edce58b03b2335757c047b5bf3f.png new file mode 100644 index 0000000..2e9de3b Binary files /dev/null and b/train2/pictures/7c106edce58b03b2335757c047b5bf3f.png differ diff --git a/train2/pictures/7c1e854330e0c89ba908860ea6494af6.png b/train2/pictures/7c1e854330e0c89ba908860ea6494af6.png new file mode 100644 index 0000000..fe54cb8 Binary files /dev/null and b/train2/pictures/7c1e854330e0c89ba908860ea6494af6.png differ diff --git a/train2/pictures/7c3156537dadd443ca3272d4194467c4.png b/train2/pictures/7c3156537dadd443ca3272d4194467c4.png new file mode 100644 index 0000000..4199050 Binary files /dev/null and b/train2/pictures/7c3156537dadd443ca3272d4194467c4.png differ diff --git a/train2/pictures/7c602cc85934af882f13c0cb8b450de0.png b/train2/pictures/7c602cc85934af882f13c0cb8b450de0.png new file mode 100644 index 0000000..60e3c3e Binary files /dev/null and b/train2/pictures/7c602cc85934af882f13c0cb8b450de0.png differ diff --git a/train2/pictures/7c9917a9088a693bd2cc1a7f4c355804.png b/train2/pictures/7c9917a9088a693bd2cc1a7f4c355804.png new file mode 100644 index 0000000..44eb039 Binary files /dev/null and b/train2/pictures/7c9917a9088a693bd2cc1a7f4c355804.png differ diff --git a/train2/pictures/7cbd8469e5a3e6bf830dc062710167ee.png b/train2/pictures/7cbd8469e5a3e6bf830dc062710167ee.png new file mode 100644 index 0000000..b166079 Binary files /dev/null and b/train2/pictures/7cbd8469e5a3e6bf830dc062710167ee.png differ diff --git a/train2/pictures/7cbfd53da03c14f224e6f346e2d074a6.png b/train2/pictures/7cbfd53da03c14f224e6f346e2d074a6.png new file mode 100644 index 0000000..ee7cdd0 Binary files /dev/null and b/train2/pictures/7cbfd53da03c14f224e6f346e2d074a6.png differ diff --git a/train2/pictures/7cc05eb7a9da32e7d59e8b2072fe0a78.png b/train2/pictures/7cc05eb7a9da32e7d59e8b2072fe0a78.png new file mode 100644 index 0000000..99198fa Binary files /dev/null and b/train2/pictures/7cc05eb7a9da32e7d59e8b2072fe0a78.png differ diff --git a/train2/pictures/7cc49e916e64566d5431a54d4f40d4d9.png b/train2/pictures/7cc49e916e64566d5431a54d4f40d4d9.png new file mode 100644 index 0000000..165964a Binary files /dev/null and b/train2/pictures/7cc49e916e64566d5431a54d4f40d4d9.png differ diff --git a/train2/pictures/7cdc16c87eef8afe16dc08742712c5b9.png b/train2/pictures/7cdc16c87eef8afe16dc08742712c5b9.png new file mode 100644 index 0000000..9164f8f Binary files /dev/null and b/train2/pictures/7cdc16c87eef8afe16dc08742712c5b9.png differ diff --git a/train2/pictures/7ce1d6281d05e85700e951d2a0c45d91.png b/train2/pictures/7ce1d6281d05e85700e951d2a0c45d91.png new file mode 100644 index 0000000..5ab3c1a Binary files /dev/null and b/train2/pictures/7ce1d6281d05e85700e951d2a0c45d91.png differ diff --git a/train2/pictures/7ce90b776b112d87ec6a94727e063d0a.png b/train2/pictures/7ce90b776b112d87ec6a94727e063d0a.png new file mode 100644 index 0000000..7eafedf Binary files /dev/null and b/train2/pictures/7ce90b776b112d87ec6a94727e063d0a.png differ diff --git a/train2/pictures/7d3403363a7a0348fd5169d2b41e4495.png b/train2/pictures/7d3403363a7a0348fd5169d2b41e4495.png new file mode 100644 index 0000000..995ccbc Binary files /dev/null and b/train2/pictures/7d3403363a7a0348fd5169d2b41e4495.png differ diff --git a/train2/pictures/7d37cacb51eda0fa45bd614c0664c5d5.png b/train2/pictures/7d37cacb51eda0fa45bd614c0664c5d5.png new file mode 100644 index 0000000..3710b06 Binary files /dev/null and b/train2/pictures/7d37cacb51eda0fa45bd614c0664c5d5.png differ diff --git a/train2/pictures/7d5835c1270b6312a19ed3b8e33df754.png b/train2/pictures/7d5835c1270b6312a19ed3b8e33df754.png new file mode 100644 index 0000000..f2d6c87 Binary files /dev/null and b/train2/pictures/7d5835c1270b6312a19ed3b8e33df754.png differ diff --git a/train2/pictures/7d9d0936073be44fc42f90d33deb8ea6.png b/train2/pictures/7d9d0936073be44fc42f90d33deb8ea6.png new file mode 100644 index 0000000..3645826 Binary files /dev/null and b/train2/pictures/7d9d0936073be44fc42f90d33deb8ea6.png differ diff --git a/train2/pictures/7dbc3c436cd8374ba13f5f46b1f9ae42.png b/train2/pictures/7dbc3c436cd8374ba13f5f46b1f9ae42.png new file mode 100644 index 0000000..539f4c7 Binary files /dev/null and b/train2/pictures/7dbc3c436cd8374ba13f5f46b1f9ae42.png differ diff --git a/train2/pictures/7dbcd73f94192a4ca49971040e41f072.png b/train2/pictures/7dbcd73f94192a4ca49971040e41f072.png new file mode 100644 index 0000000..c4bfa1c Binary files /dev/null and b/train2/pictures/7dbcd73f94192a4ca49971040e41f072.png differ diff --git a/train2/pictures/7dbe0a2ba1621bea1e575a158a9397e4.png b/train2/pictures/7dbe0a2ba1621bea1e575a158a9397e4.png new file mode 100644 index 0000000..d9c640f Binary files /dev/null and b/train2/pictures/7dbe0a2ba1621bea1e575a158a9397e4.png differ diff --git a/train2/pictures/7dce514f49e8788aac170cd5dd76046d.png b/train2/pictures/7dce514f49e8788aac170cd5dd76046d.png new file mode 100644 index 0000000..eb969da Binary files /dev/null and b/train2/pictures/7dce514f49e8788aac170cd5dd76046d.png differ diff --git a/train2/pictures/7e4ec67e6ddb5fa7e30efa0f09c66569.png b/train2/pictures/7e4ec67e6ddb5fa7e30efa0f09c66569.png new file mode 100644 index 0000000..479ff4f Binary files /dev/null and b/train2/pictures/7e4ec67e6ddb5fa7e30efa0f09c66569.png differ diff --git a/train2/pictures/7e60bd849dd1f51e777a628bf96b22a2.png b/train2/pictures/7e60bd849dd1f51e777a628bf96b22a2.png new file mode 100644 index 0000000..aa5eed1 Binary files /dev/null and b/train2/pictures/7e60bd849dd1f51e777a628bf96b22a2.png differ diff --git a/train2/pictures/7e6af78b6b4047c49e5b0433a6eb9121.png b/train2/pictures/7e6af78b6b4047c49e5b0433a6eb9121.png new file mode 100644 index 0000000..a8f237f Binary files /dev/null and b/train2/pictures/7e6af78b6b4047c49e5b0433a6eb9121.png differ diff --git a/train2/pictures/7e94717f94de905b261a70aeefb683a6.png b/train2/pictures/7e94717f94de905b261a70aeefb683a6.png new file mode 100644 index 0000000..bd050e6 Binary files /dev/null and b/train2/pictures/7e94717f94de905b261a70aeefb683a6.png differ diff --git a/train2/pictures/7e9609459aceef339d13d4f952d2919a.png b/train2/pictures/7e9609459aceef339d13d4f952d2919a.png new file mode 100644 index 0000000..db2830e Binary files /dev/null and b/train2/pictures/7e9609459aceef339d13d4f952d2919a.png differ diff --git a/train2/pictures/7e967d6bc949a0f6d291c13926309eee.png b/train2/pictures/7e967d6bc949a0f6d291c13926309eee.png new file mode 100644 index 0000000..ecafb74 Binary files /dev/null and b/train2/pictures/7e967d6bc949a0f6d291c13926309eee.png differ diff --git a/train2/pictures/7ea60ebe878255ba8f5c7cd730598745.png b/train2/pictures/7ea60ebe878255ba8f5c7cd730598745.png new file mode 100644 index 0000000..280ed04 Binary files /dev/null and b/train2/pictures/7ea60ebe878255ba8f5c7cd730598745.png differ diff --git a/train2/pictures/7ebb114cb7f0cdbccc074a0e9068285f.png b/train2/pictures/7ebb114cb7f0cdbccc074a0e9068285f.png new file mode 100644 index 0000000..78df644 Binary files /dev/null and b/train2/pictures/7ebb114cb7f0cdbccc074a0e9068285f.png differ diff --git a/train2/pictures/7ecc66eff8cb86858b3ae90246fde2b0.png b/train2/pictures/7ecc66eff8cb86858b3ae90246fde2b0.png new file mode 100644 index 0000000..e8d3e98 Binary files /dev/null and b/train2/pictures/7ecc66eff8cb86858b3ae90246fde2b0.png differ diff --git a/train2/pictures/7f07b6438ef4c18bad60e9adbabeb5fb.png b/train2/pictures/7f07b6438ef4c18bad60e9adbabeb5fb.png new file mode 100644 index 0000000..9d5f6fe Binary files /dev/null and b/train2/pictures/7f07b6438ef4c18bad60e9adbabeb5fb.png differ diff --git a/train2/pictures/7f16c42027ea873b40e9dddd3a80f857.png b/train2/pictures/7f16c42027ea873b40e9dddd3a80f857.png new file mode 100644 index 0000000..57a22e4 Binary files /dev/null and b/train2/pictures/7f16c42027ea873b40e9dddd3a80f857.png differ diff --git a/train2/pictures/7f254bf22dff7a6256284101108ba2c9.png b/train2/pictures/7f254bf22dff7a6256284101108ba2c9.png new file mode 100644 index 0000000..01ec5fc Binary files /dev/null and b/train2/pictures/7f254bf22dff7a6256284101108ba2c9.png differ diff --git a/train2/pictures/7f3a4be949be957b3acab7c958e7d583.png b/train2/pictures/7f3a4be949be957b3acab7c958e7d583.png new file mode 100644 index 0000000..d55cb92 Binary files /dev/null and b/train2/pictures/7f3a4be949be957b3acab7c958e7d583.png differ diff --git a/train2/pictures/7f4700761f86a2df3925c1d6a7b18c67.png b/train2/pictures/7f4700761f86a2df3925c1d6a7b18c67.png new file mode 100644 index 0000000..c981a57 Binary files /dev/null and b/train2/pictures/7f4700761f86a2df3925c1d6a7b18c67.png differ diff --git a/train2/pictures/7f4b3118f7568b7340b43bf29bbbd0fc.png b/train2/pictures/7f4b3118f7568b7340b43bf29bbbd0fc.png new file mode 100644 index 0000000..206f593 Binary files /dev/null and b/train2/pictures/7f4b3118f7568b7340b43bf29bbbd0fc.png differ diff --git a/train2/pictures/7fa3dfda150da821c4b82a70c00b33e5.png b/train2/pictures/7fa3dfda150da821c4b82a70c00b33e5.png new file mode 100644 index 0000000..016c327 Binary files /dev/null and b/train2/pictures/7fa3dfda150da821c4b82a70c00b33e5.png differ diff --git a/train2/pictures/7faac50b8c0f64d6d6e014546a9312cf.png b/train2/pictures/7faac50b8c0f64d6d6e014546a9312cf.png new file mode 100644 index 0000000..1727452 Binary files /dev/null and b/train2/pictures/7faac50b8c0f64d6d6e014546a9312cf.png differ diff --git a/train2/pictures/7fb13205fd21fc4eeeaf978d47b7ed59.png b/train2/pictures/7fb13205fd21fc4eeeaf978d47b7ed59.png new file mode 100644 index 0000000..b586543 Binary files /dev/null and b/train2/pictures/7fb13205fd21fc4eeeaf978d47b7ed59.png differ diff --git a/train2/pictures/7fc12d6cf814d3fd0a78ca28de450ef5.png b/train2/pictures/7fc12d6cf814d3fd0a78ca28de450ef5.png new file mode 100644 index 0000000..c1613e5 Binary files /dev/null and b/train2/pictures/7fc12d6cf814d3fd0a78ca28de450ef5.png differ diff --git a/train2/pictures/7fcf37854f8949243b19e8e17f7c6ed0.png b/train2/pictures/7fcf37854f8949243b19e8e17f7c6ed0.png new file mode 100644 index 0000000..2035697 Binary files /dev/null and b/train2/pictures/7fcf37854f8949243b19e8e17f7c6ed0.png differ diff --git a/train2/pictures/7fe6c44eab5cc9821a069e531d954d82.png b/train2/pictures/7fe6c44eab5cc9821a069e531d954d82.png new file mode 100644 index 0000000..df09ed7 Binary files /dev/null and b/train2/pictures/7fe6c44eab5cc9821a069e531d954d82.png differ diff --git a/train2/pictures/7ffe97b28129a27ed7b69347af55fd99.png b/train2/pictures/7ffe97b28129a27ed7b69347af55fd99.png new file mode 100644 index 0000000..6173316 Binary files /dev/null and b/train2/pictures/7ffe97b28129a27ed7b69347af55fd99.png differ diff --git a/train2/pictures/80145ef0d9c733104a05af44ed962426.png b/train2/pictures/80145ef0d9c733104a05af44ed962426.png new file mode 100644 index 0000000..c0be27a Binary files /dev/null and b/train2/pictures/80145ef0d9c733104a05af44ed962426.png differ diff --git a/train2/pictures/8021467c1c0f946038fd2935fb069d86.png b/train2/pictures/8021467c1c0f946038fd2935fb069d86.png new file mode 100644 index 0000000..3b19cb7 Binary files /dev/null and b/train2/pictures/8021467c1c0f946038fd2935fb069d86.png differ diff --git a/train2/pictures/802fc2e8d8a595c1c4510d03dd89cfd0.png b/train2/pictures/802fc2e8d8a595c1c4510d03dd89cfd0.png new file mode 100644 index 0000000..e9af3f1 Binary files /dev/null and b/train2/pictures/802fc2e8d8a595c1c4510d03dd89cfd0.png differ diff --git a/train2/pictures/80347a2cd2207986aa377a47dcdae3be.png b/train2/pictures/80347a2cd2207986aa377a47dcdae3be.png new file mode 100644 index 0000000..ac1609b Binary files /dev/null and b/train2/pictures/80347a2cd2207986aa377a47dcdae3be.png differ diff --git a/train2/pictures/8039544c4df8c778f9b42e4ea02b01eb.png b/train2/pictures/8039544c4df8c778f9b42e4ea02b01eb.png new file mode 100644 index 0000000..c9b3d1c Binary files /dev/null and b/train2/pictures/8039544c4df8c778f9b42e4ea02b01eb.png differ diff --git a/train2/pictures/809d6c063cd1689cbe19541183f45097.png b/train2/pictures/809d6c063cd1689cbe19541183f45097.png new file mode 100644 index 0000000..63ebe17 Binary files /dev/null and b/train2/pictures/809d6c063cd1689cbe19541183f45097.png differ diff --git a/train2/pictures/80b20b546c41b39ecda9f454e89bbcc4.png b/train2/pictures/80b20b546c41b39ecda9f454e89bbcc4.png new file mode 100644 index 0000000..ee6ba12 Binary files /dev/null and b/train2/pictures/80b20b546c41b39ecda9f454e89bbcc4.png differ diff --git a/train2/pictures/80c091f9e14af753b9354aaefe9df43f.png b/train2/pictures/80c091f9e14af753b9354aaefe9df43f.png new file mode 100644 index 0000000..b7720c2 Binary files /dev/null and b/train2/pictures/80c091f9e14af753b9354aaefe9df43f.png differ diff --git a/train2/pictures/81377014e05e7ec5c09209bcd7708acb.png b/train2/pictures/81377014e05e7ec5c09209bcd7708acb.png new file mode 100644 index 0000000..0071468 Binary files /dev/null and b/train2/pictures/81377014e05e7ec5c09209bcd7708acb.png differ diff --git a/train2/pictures/81381d08252fa3373bde869757147d4c.png b/train2/pictures/81381d08252fa3373bde869757147d4c.png new file mode 100644 index 0000000..aa3c576 Binary files /dev/null and b/train2/pictures/81381d08252fa3373bde869757147d4c.png differ diff --git a/train2/pictures/81d15759b8b0780b20fcdc0014a80119.png b/train2/pictures/81d15759b8b0780b20fcdc0014a80119.png new file mode 100644 index 0000000..bffa110 Binary files /dev/null and b/train2/pictures/81d15759b8b0780b20fcdc0014a80119.png differ diff --git a/train2/pictures/81dab0ed5db1223545452090ff5cf379.png b/train2/pictures/81dab0ed5db1223545452090ff5cf379.png new file mode 100644 index 0000000..55bb5d0 Binary files /dev/null and b/train2/pictures/81dab0ed5db1223545452090ff5cf379.png differ diff --git a/train2/pictures/81e4a2d15363f163c366dc49a52314d7.png b/train2/pictures/81e4a2d15363f163c366dc49a52314d7.png new file mode 100644 index 0000000..8eee7e5 Binary files /dev/null and b/train2/pictures/81e4a2d15363f163c366dc49a52314d7.png differ diff --git a/train2/pictures/8215127f78514b98d8d47149cc53bf73.png b/train2/pictures/8215127f78514b98d8d47149cc53bf73.png new file mode 100644 index 0000000..e818890 Binary files /dev/null and b/train2/pictures/8215127f78514b98d8d47149cc53bf73.png differ diff --git a/train2/pictures/8218f41876135374f464630ba4356f02.png b/train2/pictures/8218f41876135374f464630ba4356f02.png new file mode 100644 index 0000000..4bed064 Binary files /dev/null and b/train2/pictures/8218f41876135374f464630ba4356f02.png differ diff --git a/train2/pictures/826162c196ab3dd5a84a4beffbcd3ce6.png b/train2/pictures/826162c196ab3dd5a84a4beffbcd3ce6.png new file mode 100644 index 0000000..f2f5c48 Binary files /dev/null and b/train2/pictures/826162c196ab3dd5a84a4beffbcd3ce6.png differ diff --git a/train2/pictures/830cef302ea6dc59cef1d4436548730b.png b/train2/pictures/830cef302ea6dc59cef1d4436548730b.png new file mode 100644 index 0000000..7377f3d Binary files /dev/null and b/train2/pictures/830cef302ea6dc59cef1d4436548730b.png differ diff --git a/train2/pictures/8335e31cfc02b42cce1d66e10984b0ed.png b/train2/pictures/8335e31cfc02b42cce1d66e10984b0ed.png new file mode 100644 index 0000000..61e2ed3 Binary files /dev/null and b/train2/pictures/8335e31cfc02b42cce1d66e10984b0ed.png differ diff --git a/train2/pictures/833f8e9bef72da631d9fc4b7f254751a.png b/train2/pictures/833f8e9bef72da631d9fc4b7f254751a.png new file mode 100644 index 0000000..baf21fb Binary files /dev/null and b/train2/pictures/833f8e9bef72da631d9fc4b7f254751a.png differ diff --git a/train2/pictures/83584d5fcf5b5b482b76c6c1c270c3fe.png b/train2/pictures/83584d5fcf5b5b482b76c6c1c270c3fe.png new file mode 100644 index 0000000..6b78c09 Binary files /dev/null and b/train2/pictures/83584d5fcf5b5b482b76c6c1c270c3fe.png differ diff --git a/train2/pictures/83ada83c9623f466910a5e4b6bfe4b1d.png b/train2/pictures/83ada83c9623f466910a5e4b6bfe4b1d.png new file mode 100644 index 0000000..1b52d4a Binary files /dev/null and b/train2/pictures/83ada83c9623f466910a5e4b6bfe4b1d.png differ diff --git a/train2/pictures/83b393b98916cc3ae5329314d6613586.png b/train2/pictures/83b393b98916cc3ae5329314d6613586.png new file mode 100644 index 0000000..bb7ca1f Binary files /dev/null and b/train2/pictures/83b393b98916cc3ae5329314d6613586.png differ diff --git a/train2/pictures/83be339f139ba065aa6141b4d7caaf29.png b/train2/pictures/83be339f139ba065aa6141b4d7caaf29.png new file mode 100644 index 0000000..b6934cc Binary files /dev/null and b/train2/pictures/83be339f139ba065aa6141b4d7caaf29.png differ diff --git a/train2/pictures/83e38f243eacb6ab2bbf7e06fd89c2e2.png b/train2/pictures/83e38f243eacb6ab2bbf7e06fd89c2e2.png new file mode 100644 index 0000000..75638a1 Binary files /dev/null and b/train2/pictures/83e38f243eacb6ab2bbf7e06fd89c2e2.png differ diff --git a/train2/pictures/83f0c8205698e92012e261d1064c7f8f.png b/train2/pictures/83f0c8205698e92012e261d1064c7f8f.png new file mode 100644 index 0000000..2073b4d Binary files /dev/null and b/train2/pictures/83f0c8205698e92012e261d1064c7f8f.png differ diff --git a/train2/pictures/83fba10098a1c8400142e4eb91b4485b.png b/train2/pictures/83fba10098a1c8400142e4eb91b4485b.png new file mode 100644 index 0000000..90885d8 Binary files /dev/null and b/train2/pictures/83fba10098a1c8400142e4eb91b4485b.png differ diff --git a/train2/pictures/843e5897d13d2434572d48b6a31ea968.png b/train2/pictures/843e5897d13d2434572d48b6a31ea968.png new file mode 100644 index 0000000..9a5b68b Binary files /dev/null and b/train2/pictures/843e5897d13d2434572d48b6a31ea968.png differ diff --git a/train2/pictures/847aa19d0522ed66bcd607613733c428.png b/train2/pictures/847aa19d0522ed66bcd607613733c428.png new file mode 100644 index 0000000..9e63f36 Binary files /dev/null and b/train2/pictures/847aa19d0522ed66bcd607613733c428.png differ diff --git a/train2/pictures/849e0baf921293c2b18bdf4c1ad5296c.png b/train2/pictures/849e0baf921293c2b18bdf4c1ad5296c.png new file mode 100644 index 0000000..f9645c1 Binary files /dev/null and b/train2/pictures/849e0baf921293c2b18bdf4c1ad5296c.png differ diff --git a/train2/pictures/84a137e728405ab155b72e8f78d18168.png b/train2/pictures/84a137e728405ab155b72e8f78d18168.png new file mode 100644 index 0000000..056d2b0 Binary files /dev/null and b/train2/pictures/84a137e728405ab155b72e8f78d18168.png differ diff --git a/train2/pictures/84c4437a068202cc062765ebffa1cec4.png b/train2/pictures/84c4437a068202cc062765ebffa1cec4.png new file mode 100644 index 0000000..9d14155 Binary files /dev/null and b/train2/pictures/84c4437a068202cc062765ebffa1cec4.png differ diff --git a/train2/pictures/8533a4295622cb1f3441beb8ac41f81b.png b/train2/pictures/8533a4295622cb1f3441beb8ac41f81b.png new file mode 100644 index 0000000..6d4161b Binary files /dev/null and b/train2/pictures/8533a4295622cb1f3441beb8ac41f81b.png differ diff --git a/train2/pictures/8542830b3c133091250ffce1fbb21793.png b/train2/pictures/8542830b3c133091250ffce1fbb21793.png new file mode 100644 index 0000000..f5545b1 Binary files /dev/null and b/train2/pictures/8542830b3c133091250ffce1fbb21793.png differ diff --git a/train2/pictures/8548bb2888f8928db2f7298b60a0478d.png b/train2/pictures/8548bb2888f8928db2f7298b60a0478d.png new file mode 100644 index 0000000..567683b Binary files /dev/null and b/train2/pictures/8548bb2888f8928db2f7298b60a0478d.png differ diff --git a/train2/pictures/8573681cca2c6902b5c4c040a344728f.png b/train2/pictures/8573681cca2c6902b5c4c040a344728f.png new file mode 100644 index 0000000..4358b9e Binary files /dev/null and b/train2/pictures/8573681cca2c6902b5c4c040a344728f.png differ diff --git a/train2/pictures/858cd26cf768a8416855ce1f4a21302e.png b/train2/pictures/858cd26cf768a8416855ce1f4a21302e.png new file mode 100644 index 0000000..f5c7d47 Binary files /dev/null and b/train2/pictures/858cd26cf768a8416855ce1f4a21302e.png differ diff --git a/train2/pictures/8595129e5d29c6b1a38506da7550df33.png b/train2/pictures/8595129e5d29c6b1a38506da7550df33.png new file mode 100644 index 0000000..05f02e4 Binary files /dev/null and b/train2/pictures/8595129e5d29c6b1a38506da7550df33.png differ diff --git a/train2/pictures/85d0b4995d83777226706c1d89f0166e.png b/train2/pictures/85d0b4995d83777226706c1d89f0166e.png new file mode 100644 index 0000000..67aa26f Binary files /dev/null and b/train2/pictures/85d0b4995d83777226706c1d89f0166e.png differ diff --git a/train2/pictures/862b0332dbba653c2864a2b68024b0c9.png b/train2/pictures/862b0332dbba653c2864a2b68024b0c9.png new file mode 100644 index 0000000..98dca4b Binary files /dev/null and b/train2/pictures/862b0332dbba653c2864a2b68024b0c9.png differ diff --git a/train2/pictures/863faf631d735339eca2d9188548f2f4.png b/train2/pictures/863faf631d735339eca2d9188548f2f4.png new file mode 100644 index 0000000..7b8a015 Binary files /dev/null and b/train2/pictures/863faf631d735339eca2d9188548f2f4.png differ diff --git a/train2/pictures/8653bd74b4147033838c46bad9a457bb.png b/train2/pictures/8653bd74b4147033838c46bad9a457bb.png new file mode 100644 index 0000000..832617d Binary files /dev/null and b/train2/pictures/8653bd74b4147033838c46bad9a457bb.png differ diff --git a/train2/pictures/867e9bb25fde40a491242824a85ffcb0.png b/train2/pictures/867e9bb25fde40a491242824a85ffcb0.png new file mode 100644 index 0000000..e2e2113 Binary files /dev/null and b/train2/pictures/867e9bb25fde40a491242824a85ffcb0.png differ diff --git a/train2/pictures/86a09943548ff5ce0210f5c67f6df65b.png b/train2/pictures/86a09943548ff5ce0210f5c67f6df65b.png new file mode 100644 index 0000000..9498f20 Binary files /dev/null and b/train2/pictures/86a09943548ff5ce0210f5c67f6df65b.png differ diff --git a/train2/pictures/86b940834cc8be7574ebde8abf7fd571.png b/train2/pictures/86b940834cc8be7574ebde8abf7fd571.png new file mode 100644 index 0000000..04cb63d Binary files /dev/null and b/train2/pictures/86b940834cc8be7574ebde8abf7fd571.png differ diff --git a/train2/pictures/8712ab9817043db7d3a62632d5d9dc7f.png b/train2/pictures/8712ab9817043db7d3a62632d5d9dc7f.png new file mode 100644 index 0000000..d9d0b68 Binary files /dev/null and b/train2/pictures/8712ab9817043db7d3a62632d5d9dc7f.png differ diff --git a/train2/pictures/873c99f293c4b1d4fe415441f373559f.png b/train2/pictures/873c99f293c4b1d4fe415441f373559f.png new file mode 100644 index 0000000..6246d1d Binary files /dev/null and b/train2/pictures/873c99f293c4b1d4fe415441f373559f.png differ diff --git a/train2/pictures/8758f977b3281fb1b7112d69d95257ab.png b/train2/pictures/8758f977b3281fb1b7112d69d95257ab.png new file mode 100644 index 0000000..ac9c289 Binary files /dev/null and b/train2/pictures/8758f977b3281fb1b7112d69d95257ab.png differ diff --git a/train2/pictures/8766b9e3808ffb432579abe17a20e093.png b/train2/pictures/8766b9e3808ffb432579abe17a20e093.png new file mode 100644 index 0000000..692c60e Binary files /dev/null and b/train2/pictures/8766b9e3808ffb432579abe17a20e093.png differ diff --git a/train2/pictures/876dd000ba2b0e7b4b5f27eb2b679131.png b/train2/pictures/876dd000ba2b0e7b4b5f27eb2b679131.png new file mode 100644 index 0000000..a7acab7 Binary files /dev/null and b/train2/pictures/876dd000ba2b0e7b4b5f27eb2b679131.png differ diff --git a/train2/pictures/876f13be0d83cc76200b0d8f1c4d7db8.png b/train2/pictures/876f13be0d83cc76200b0d8f1c4d7db8.png new file mode 100644 index 0000000..1b7e25c Binary files /dev/null and b/train2/pictures/876f13be0d83cc76200b0d8f1c4d7db8.png differ diff --git a/train2/pictures/8775b389355974d134a0f10aeaeeace2.png b/train2/pictures/8775b389355974d134a0f10aeaeeace2.png new file mode 100644 index 0000000..7bb4c01 Binary files /dev/null and b/train2/pictures/8775b389355974d134a0f10aeaeeace2.png differ diff --git a/train2/pictures/877d48f65d4819c2a6a55a429cd744da.png b/train2/pictures/877d48f65d4819c2a6a55a429cd744da.png new file mode 100644 index 0000000..a5485d1 Binary files /dev/null and b/train2/pictures/877d48f65d4819c2a6a55a429cd744da.png differ diff --git a/train2/pictures/87a5a427048cb6fd1f22a0d574d69f7f.png b/train2/pictures/87a5a427048cb6fd1f22a0d574d69f7f.png new file mode 100644 index 0000000..b444b24 Binary files /dev/null and b/train2/pictures/87a5a427048cb6fd1f22a0d574d69f7f.png differ diff --git a/train2/pictures/87a735de9ca09d7fb0f5fc4120de461e.png b/train2/pictures/87a735de9ca09d7fb0f5fc4120de461e.png new file mode 100644 index 0000000..f626798 Binary files /dev/null and b/train2/pictures/87a735de9ca09d7fb0f5fc4120de461e.png differ diff --git a/train2/pictures/87b4b1bb59b8f3dde1cd8d7db0b73d84.png b/train2/pictures/87b4b1bb59b8f3dde1cd8d7db0b73d84.png new file mode 100644 index 0000000..8cb027c Binary files /dev/null and b/train2/pictures/87b4b1bb59b8f3dde1cd8d7db0b73d84.png differ diff --git a/train2/pictures/87c2a02ba4f8c9c01ae541503bf4402d.png b/train2/pictures/87c2a02ba4f8c9c01ae541503bf4402d.png new file mode 100644 index 0000000..a7454d8 Binary files /dev/null and b/train2/pictures/87c2a02ba4f8c9c01ae541503bf4402d.png differ diff --git a/train2/pictures/87cbecc78054714da5d580406fe3e88f.png b/train2/pictures/87cbecc78054714da5d580406fe3e88f.png new file mode 100644 index 0000000..6cd8de5 Binary files /dev/null and b/train2/pictures/87cbecc78054714da5d580406fe3e88f.png differ diff --git a/train2/pictures/8835dcb445f40675969106ffe585fabd.png b/train2/pictures/8835dcb445f40675969106ffe585fabd.png new file mode 100644 index 0000000..0f0ed32 Binary files /dev/null and b/train2/pictures/8835dcb445f40675969106ffe585fabd.png differ diff --git a/train2/pictures/8869919146244b7621c55d00734df203.png b/train2/pictures/8869919146244b7621c55d00734df203.png new file mode 100644 index 0000000..6162507 Binary files /dev/null and b/train2/pictures/8869919146244b7621c55d00734df203.png differ diff --git a/train2/pictures/8870ce50c4759ce62736fc0af791e4a2.png b/train2/pictures/8870ce50c4759ce62736fc0af791e4a2.png new file mode 100644 index 0000000..d00632d Binary files /dev/null and b/train2/pictures/8870ce50c4759ce62736fc0af791e4a2.png differ diff --git a/train2/pictures/887dba36ed1c9337bea27d6826956097.png b/train2/pictures/887dba36ed1c9337bea27d6826956097.png new file mode 100644 index 0000000..0fb771e Binary files /dev/null and b/train2/pictures/887dba36ed1c9337bea27d6826956097.png differ diff --git a/train2/pictures/8888a1d648e2ab89f8d210b97973d54e.png b/train2/pictures/8888a1d648e2ab89f8d210b97973d54e.png new file mode 100644 index 0000000..3510891 Binary files /dev/null and b/train2/pictures/8888a1d648e2ab89f8d210b97973d54e.png differ diff --git a/train2/pictures/8899d98270f7326434de5766fea1fe2c.png b/train2/pictures/8899d98270f7326434de5766fea1fe2c.png new file mode 100644 index 0000000..87e66de Binary files /dev/null and b/train2/pictures/8899d98270f7326434de5766fea1fe2c.png differ diff --git a/train2/pictures/889c873e868083734ef58259bfc9a8fe.png b/train2/pictures/889c873e868083734ef58259bfc9a8fe.png new file mode 100644 index 0000000..a9635b4 Binary files /dev/null and b/train2/pictures/889c873e868083734ef58259bfc9a8fe.png differ diff --git a/train2/pictures/88bf482ccac4127dfeac7cad59c502a0.png b/train2/pictures/88bf482ccac4127dfeac7cad59c502a0.png new file mode 100644 index 0000000..d37e930 Binary files /dev/null and b/train2/pictures/88bf482ccac4127dfeac7cad59c502a0.png differ diff --git a/train2/pictures/88c505a9af7b921d4e347d2a6e5196d0.png b/train2/pictures/88c505a9af7b921d4e347d2a6e5196d0.png new file mode 100644 index 0000000..6e79838 Binary files /dev/null and b/train2/pictures/88c505a9af7b921d4e347d2a6e5196d0.png differ diff --git a/train2/pictures/88efc056d65d8ffbf6cace8f1ce7bb71.png b/train2/pictures/88efc056d65d8ffbf6cace8f1ce7bb71.png new file mode 100644 index 0000000..12c66d6 Binary files /dev/null and b/train2/pictures/88efc056d65d8ffbf6cace8f1ce7bb71.png differ diff --git a/train2/pictures/88f56412da451a2ac6f91f99c12b870a.png b/train2/pictures/88f56412da451a2ac6f91f99c12b870a.png new file mode 100644 index 0000000..2922a41 Binary files /dev/null and b/train2/pictures/88f56412da451a2ac6f91f99c12b870a.png differ diff --git a/train2/pictures/88f6e7ef78c48353f2564e42a361dbd2.png b/train2/pictures/88f6e7ef78c48353f2564e42a361dbd2.png new file mode 100644 index 0000000..f4b8ce7 Binary files /dev/null and b/train2/pictures/88f6e7ef78c48353f2564e42a361dbd2.png differ diff --git a/train2/pictures/8912f1adcb3d0899dd6eab7746667f2d.png b/train2/pictures/8912f1adcb3d0899dd6eab7746667f2d.png new file mode 100644 index 0000000..a083473 Binary files /dev/null and b/train2/pictures/8912f1adcb3d0899dd6eab7746667f2d.png differ diff --git a/train2/pictures/89792bc85aa34ac51713b13dd89f043e.png b/train2/pictures/89792bc85aa34ac51713b13dd89f043e.png new file mode 100644 index 0000000..605e10f Binary files /dev/null and b/train2/pictures/89792bc85aa34ac51713b13dd89f043e.png differ diff --git a/train2/pictures/89c0f1809a9cb330380dbb221f16140c.png b/train2/pictures/89c0f1809a9cb330380dbb221f16140c.png new file mode 100644 index 0000000..ee580a4 Binary files /dev/null and b/train2/pictures/89c0f1809a9cb330380dbb221f16140c.png differ diff --git a/train2/pictures/89dc7a3eb4ac32ff77a41c2afcf20cd6.png b/train2/pictures/89dc7a3eb4ac32ff77a41c2afcf20cd6.png new file mode 100644 index 0000000..c46d5a8 Binary files /dev/null and b/train2/pictures/89dc7a3eb4ac32ff77a41c2afcf20cd6.png differ diff --git a/train2/pictures/8a055d1a5b67c97c224525b83ad93424.png b/train2/pictures/8a055d1a5b67c97c224525b83ad93424.png new file mode 100644 index 0000000..7d13c9e Binary files /dev/null and b/train2/pictures/8a055d1a5b67c97c224525b83ad93424.png differ diff --git a/train2/pictures/8a16fb576d0336a5393246c2764afa99.png b/train2/pictures/8a16fb576d0336a5393246c2764afa99.png new file mode 100644 index 0000000..991b036 Binary files /dev/null and b/train2/pictures/8a16fb576d0336a5393246c2764afa99.png differ diff --git a/train2/pictures/8a5d96c318d881d83399718e64670650.png b/train2/pictures/8a5d96c318d881d83399718e64670650.png new file mode 100644 index 0000000..9fcf6d5 Binary files /dev/null and b/train2/pictures/8a5d96c318d881d83399718e64670650.png differ diff --git a/train2/pictures/8a924bb2c55e66de6236edddf5b242c2.png b/train2/pictures/8a924bb2c55e66de6236edddf5b242c2.png new file mode 100644 index 0000000..a24d94c Binary files /dev/null and b/train2/pictures/8a924bb2c55e66de6236edddf5b242c2.png differ diff --git a/train2/pictures/8ae3e862e5f54fbe2636be0d9a2e4312.png b/train2/pictures/8ae3e862e5f54fbe2636be0d9a2e4312.png new file mode 100644 index 0000000..a8538ad Binary files /dev/null and b/train2/pictures/8ae3e862e5f54fbe2636be0d9a2e4312.png differ diff --git a/train2/pictures/8afe8d6c01e896b4ac23e07be6e1d4d6.png b/train2/pictures/8afe8d6c01e896b4ac23e07be6e1d4d6.png new file mode 100644 index 0000000..4b7d054 Binary files /dev/null and b/train2/pictures/8afe8d6c01e896b4ac23e07be6e1d4d6.png differ diff --git a/train2/pictures/8b048cd1d7500a8290cec3fb4bb0ab3b.png b/train2/pictures/8b048cd1d7500a8290cec3fb4bb0ab3b.png new file mode 100644 index 0000000..c7ac8f6 Binary files /dev/null and b/train2/pictures/8b048cd1d7500a8290cec3fb4bb0ab3b.png differ diff --git a/train2/pictures/8b07f7a9a45f08a26b96874f4789fc8f.png b/train2/pictures/8b07f7a9a45f08a26b96874f4789fc8f.png new file mode 100644 index 0000000..1aaf85a Binary files /dev/null and b/train2/pictures/8b07f7a9a45f08a26b96874f4789fc8f.png differ diff --git a/train2/pictures/8b2bd58ea7fed007f7aaffee8bca69a1.png b/train2/pictures/8b2bd58ea7fed007f7aaffee8bca69a1.png new file mode 100644 index 0000000..662a22a Binary files /dev/null and b/train2/pictures/8b2bd58ea7fed007f7aaffee8bca69a1.png differ diff --git a/train2/pictures/8b396317e48fc95320cae0c048c21c68.png b/train2/pictures/8b396317e48fc95320cae0c048c21c68.png new file mode 100644 index 0000000..fa14b19 Binary files /dev/null and b/train2/pictures/8b396317e48fc95320cae0c048c21c68.png differ diff --git a/train2/pictures/8b46ef077e84349431654e73d86a754d.png b/train2/pictures/8b46ef077e84349431654e73d86a754d.png new file mode 100644 index 0000000..b19e024 Binary files /dev/null and b/train2/pictures/8b46ef077e84349431654e73d86a754d.png differ diff --git a/train2/pictures/8b63810f9996985bc285b6994047eb34.png b/train2/pictures/8b63810f9996985bc285b6994047eb34.png new file mode 100644 index 0000000..6df89e6 Binary files /dev/null and b/train2/pictures/8b63810f9996985bc285b6994047eb34.png differ diff --git a/train2/pictures/8b9238d7b5c3afeba2ac0db7ac42e32a.png b/train2/pictures/8b9238d7b5c3afeba2ac0db7ac42e32a.png new file mode 100644 index 0000000..462642f Binary files /dev/null and b/train2/pictures/8b9238d7b5c3afeba2ac0db7ac42e32a.png differ diff --git a/train2/pictures/8bd36e317f92cad3ccd6bf5c43063cd4.png b/train2/pictures/8bd36e317f92cad3ccd6bf5c43063cd4.png new file mode 100644 index 0000000..6c53813 Binary files /dev/null and b/train2/pictures/8bd36e317f92cad3ccd6bf5c43063cd4.png differ diff --git a/train2/pictures/8be4b9b428e340fe74e313d802f2f626.png b/train2/pictures/8be4b9b428e340fe74e313d802f2f626.png new file mode 100644 index 0000000..d22e1d6 Binary files /dev/null and b/train2/pictures/8be4b9b428e340fe74e313d802f2f626.png differ diff --git a/train2/pictures/8c27b657888b68398cc838738664fd0a.png b/train2/pictures/8c27b657888b68398cc838738664fd0a.png new file mode 100644 index 0000000..2d9c6f0 Binary files /dev/null and b/train2/pictures/8c27b657888b68398cc838738664fd0a.png differ diff --git a/train2/pictures/8c2dc509c66a864003c656b95ce2b9af.png b/train2/pictures/8c2dc509c66a864003c656b95ce2b9af.png new file mode 100644 index 0000000..5a5a973 Binary files /dev/null and b/train2/pictures/8c2dc509c66a864003c656b95ce2b9af.png differ diff --git a/train2/pictures/8c38a9f2a2309dada2e5087ccfb0c291.png b/train2/pictures/8c38a9f2a2309dada2e5087ccfb0c291.png new file mode 100644 index 0000000..e53e598 Binary files /dev/null and b/train2/pictures/8c38a9f2a2309dada2e5087ccfb0c291.png differ diff --git a/train2/pictures/8c538a98a0413af2371ddc7c90cbfc06.png b/train2/pictures/8c538a98a0413af2371ddc7c90cbfc06.png new file mode 100644 index 0000000..35f4d51 Binary files /dev/null and b/train2/pictures/8c538a98a0413af2371ddc7c90cbfc06.png differ diff --git a/train2/pictures/8c6813b6a8250de52f6003458f12a66c.png b/train2/pictures/8c6813b6a8250de52f6003458f12a66c.png new file mode 100644 index 0000000..924b47c Binary files /dev/null and b/train2/pictures/8c6813b6a8250de52f6003458f12a66c.png differ diff --git a/train2/pictures/8c8b03b176c272ce28fab52e7530d933.png b/train2/pictures/8c8b03b176c272ce28fab52e7530d933.png new file mode 100644 index 0000000..d820d6f Binary files /dev/null and b/train2/pictures/8c8b03b176c272ce28fab52e7530d933.png differ diff --git a/train2/pictures/8c958a2d495c5256e67c5c7741e8d2a7.png b/train2/pictures/8c958a2d495c5256e67c5c7741e8d2a7.png new file mode 100644 index 0000000..112d51c Binary files /dev/null and b/train2/pictures/8c958a2d495c5256e67c5c7741e8d2a7.png differ diff --git a/train2/pictures/8ca6bf5f2ac2755428c6d924fb734da3.png b/train2/pictures/8ca6bf5f2ac2755428c6d924fb734da3.png new file mode 100644 index 0000000..a427888 Binary files /dev/null and b/train2/pictures/8ca6bf5f2ac2755428c6d924fb734da3.png differ diff --git a/train2/pictures/8cc175d775aa4f47dcb9fcb88c608976.png b/train2/pictures/8cc175d775aa4f47dcb9fcb88c608976.png new file mode 100644 index 0000000..47dc7c7 Binary files /dev/null and b/train2/pictures/8cc175d775aa4f47dcb9fcb88c608976.png differ diff --git a/train2/pictures/8ceb8f2ef7d390923cbc25e4036232ad.png b/train2/pictures/8ceb8f2ef7d390923cbc25e4036232ad.png new file mode 100644 index 0000000..5434f64 Binary files /dev/null and b/train2/pictures/8ceb8f2ef7d390923cbc25e4036232ad.png differ diff --git a/train2/pictures/8d1f0395ec7f7876cbbf6b710a440f68.png b/train2/pictures/8d1f0395ec7f7876cbbf6b710a440f68.png new file mode 100644 index 0000000..d7c705b Binary files /dev/null and b/train2/pictures/8d1f0395ec7f7876cbbf6b710a440f68.png differ diff --git a/train2/pictures/8d20a362b21e9c0a7567319104cbaf91.png b/train2/pictures/8d20a362b21e9c0a7567319104cbaf91.png new file mode 100644 index 0000000..023f611 Binary files /dev/null and b/train2/pictures/8d20a362b21e9c0a7567319104cbaf91.png differ diff --git a/train2/pictures/8d372465130d1e072f556d33a14084b9.png b/train2/pictures/8d372465130d1e072f556d33a14084b9.png new file mode 100644 index 0000000..f9ceb99 Binary files /dev/null and b/train2/pictures/8d372465130d1e072f556d33a14084b9.png differ diff --git a/train2/pictures/8d4eaa342956124798c34c92b28b4fe7.png b/train2/pictures/8d4eaa342956124798c34c92b28b4fe7.png new file mode 100644 index 0000000..03900e4 Binary files /dev/null and b/train2/pictures/8d4eaa342956124798c34c92b28b4fe7.png differ diff --git a/train2/pictures/8d556f5bc81de7a2c27ebee1118a5008.png b/train2/pictures/8d556f5bc81de7a2c27ebee1118a5008.png new file mode 100644 index 0000000..5b1475f Binary files /dev/null and b/train2/pictures/8d556f5bc81de7a2c27ebee1118a5008.png differ diff --git a/train2/pictures/8d6dfffcc2a19558265076c143b84515.png b/train2/pictures/8d6dfffcc2a19558265076c143b84515.png new file mode 100644 index 0000000..c4fd4eb Binary files /dev/null and b/train2/pictures/8d6dfffcc2a19558265076c143b84515.png differ diff --git a/train2/pictures/8d8552d3098136dc90d91e359cbc91c6.png b/train2/pictures/8d8552d3098136dc90d91e359cbc91c6.png new file mode 100644 index 0000000..ecb3204 Binary files /dev/null and b/train2/pictures/8d8552d3098136dc90d91e359cbc91c6.png differ diff --git a/train2/pictures/8d90ce06c3dd0b504e551d05893a6114.png b/train2/pictures/8d90ce06c3dd0b504e551d05893a6114.png new file mode 100644 index 0000000..97e78bb Binary files /dev/null and b/train2/pictures/8d90ce06c3dd0b504e551d05893a6114.png differ diff --git a/train2/pictures/8dcfbadf27b59bb6a0e883b551af07b1.png b/train2/pictures/8dcfbadf27b59bb6a0e883b551af07b1.png new file mode 100644 index 0000000..aadae19 Binary files /dev/null and b/train2/pictures/8dcfbadf27b59bb6a0e883b551af07b1.png differ diff --git a/train2/pictures/8e0d97eca425bb4220e90427d8f9fa63.png b/train2/pictures/8e0d97eca425bb4220e90427d8f9fa63.png new file mode 100644 index 0000000..a0c214a Binary files /dev/null and b/train2/pictures/8e0d97eca425bb4220e90427d8f9fa63.png differ diff --git a/train2/pictures/8e578aa7540b108240006e0c8b89fe0b.png b/train2/pictures/8e578aa7540b108240006e0c8b89fe0b.png new file mode 100644 index 0000000..0980194 Binary files /dev/null and b/train2/pictures/8e578aa7540b108240006e0c8b89fe0b.png differ diff --git a/train2/pictures/8e795f913163d872cf372ff08af77256.png b/train2/pictures/8e795f913163d872cf372ff08af77256.png new file mode 100644 index 0000000..260a66d Binary files /dev/null and b/train2/pictures/8e795f913163d872cf372ff08af77256.png differ diff --git a/train2/pictures/8e7e1b64d3aef16f0de2813ba61da574.png b/train2/pictures/8e7e1b64d3aef16f0de2813ba61da574.png new file mode 100644 index 0000000..87cfc40 Binary files /dev/null and b/train2/pictures/8e7e1b64d3aef16f0de2813ba61da574.png differ diff --git a/train2/pictures/8e820867ada47ebec8dae0d0390a5f4b.png b/train2/pictures/8e820867ada47ebec8dae0d0390a5f4b.png new file mode 100644 index 0000000..850bc61 Binary files /dev/null and b/train2/pictures/8e820867ada47ebec8dae0d0390a5f4b.png differ diff --git a/train2/pictures/8e84e7d4bc291006da0a3a281056d538.png b/train2/pictures/8e84e7d4bc291006da0a3a281056d538.png new file mode 100644 index 0000000..48dd625 Binary files /dev/null and b/train2/pictures/8e84e7d4bc291006da0a3a281056d538.png differ diff --git a/train2/pictures/8f01b2e15d5bcf5a8abb837bf8e5f325.png b/train2/pictures/8f01b2e15d5bcf5a8abb837bf8e5f325.png new file mode 100644 index 0000000..421f24a Binary files /dev/null and b/train2/pictures/8f01b2e15d5bcf5a8abb837bf8e5f325.png differ diff --git a/train2/pictures/8f1877ff0d0936819d8bdfca0eb09c52.png b/train2/pictures/8f1877ff0d0936819d8bdfca0eb09c52.png new file mode 100644 index 0000000..88738e5 Binary files /dev/null and b/train2/pictures/8f1877ff0d0936819d8bdfca0eb09c52.png differ diff --git a/train2/pictures/8f6ab62d8576743c07b4de11c69e4b91.png b/train2/pictures/8f6ab62d8576743c07b4de11c69e4b91.png new file mode 100644 index 0000000..176dadc Binary files /dev/null and b/train2/pictures/8f6ab62d8576743c07b4de11c69e4b91.png differ diff --git a/train2/pictures/8f827bc4b95f38afa4ad10e05ce4e31e.png b/train2/pictures/8f827bc4b95f38afa4ad10e05ce4e31e.png new file mode 100644 index 0000000..e9e1e88 Binary files /dev/null and b/train2/pictures/8f827bc4b95f38afa4ad10e05ce4e31e.png differ diff --git a/train2/pictures/8fd9cebf6d781a1af00f9a284b12db48.png b/train2/pictures/8fd9cebf6d781a1af00f9a284b12db48.png new file mode 100644 index 0000000..939541d Binary files /dev/null and b/train2/pictures/8fd9cebf6d781a1af00f9a284b12db48.png differ diff --git a/train2/pictures/8ff2253f1643a2b65bc1972f110b0bca.png b/train2/pictures/8ff2253f1643a2b65bc1972f110b0bca.png new file mode 100644 index 0000000..391865d Binary files /dev/null and b/train2/pictures/8ff2253f1643a2b65bc1972f110b0bca.png differ diff --git a/train2/pictures/9008fbf75e402f4023e5a3b6d6d0b4fa.png b/train2/pictures/9008fbf75e402f4023e5a3b6d6d0b4fa.png new file mode 100644 index 0000000..7c86994 Binary files /dev/null and b/train2/pictures/9008fbf75e402f4023e5a3b6d6d0b4fa.png differ diff --git a/train2/pictures/9012f5cdbf10425fda67fb1106d30459.png b/train2/pictures/9012f5cdbf10425fda67fb1106d30459.png new file mode 100644 index 0000000..a07dfb7 Binary files /dev/null and b/train2/pictures/9012f5cdbf10425fda67fb1106d30459.png differ diff --git a/train2/pictures/903945227eb3bb74a20b8813537979a7.png b/train2/pictures/903945227eb3bb74a20b8813537979a7.png new file mode 100644 index 0000000..283ca77 Binary files /dev/null and b/train2/pictures/903945227eb3bb74a20b8813537979a7.png differ diff --git a/train2/pictures/905b61cacf68b0c5c9d1174b90494cfe.png b/train2/pictures/905b61cacf68b0c5c9d1174b90494cfe.png new file mode 100644 index 0000000..8267785 Binary files /dev/null and b/train2/pictures/905b61cacf68b0c5c9d1174b90494cfe.png differ diff --git a/train2/pictures/905e966ef6053c54006400aea608aee2.png b/train2/pictures/905e966ef6053c54006400aea608aee2.png new file mode 100644 index 0000000..80ec466 Binary files /dev/null and b/train2/pictures/905e966ef6053c54006400aea608aee2.png differ diff --git a/train2/pictures/909f4c3deb805ec5752d5958926a617b.png b/train2/pictures/909f4c3deb805ec5752d5958926a617b.png new file mode 100644 index 0000000..44f28b9 Binary files /dev/null and b/train2/pictures/909f4c3deb805ec5752d5958926a617b.png differ diff --git a/train2/pictures/90b0e64aad288936e63b534f434dd0ae.png b/train2/pictures/90b0e64aad288936e63b534f434dd0ae.png new file mode 100644 index 0000000..620f7e5 Binary files /dev/null and b/train2/pictures/90b0e64aad288936e63b534f434dd0ae.png differ diff --git a/train2/pictures/90c8c05da73221956571bea299835933.png b/train2/pictures/90c8c05da73221956571bea299835933.png new file mode 100644 index 0000000..da507c3 Binary files /dev/null and b/train2/pictures/90c8c05da73221956571bea299835933.png differ diff --git a/train2/pictures/90ec65805f9af4ddd4bc7ce098f9ad9f.png b/train2/pictures/90ec65805f9af4ddd4bc7ce098f9ad9f.png new file mode 100644 index 0000000..de127b4 Binary files /dev/null and b/train2/pictures/90ec65805f9af4ddd4bc7ce098f9ad9f.png differ diff --git a/train2/pictures/90edb21a091081b83e8b9324bf8646b9.png b/train2/pictures/90edb21a091081b83e8b9324bf8646b9.png new file mode 100644 index 0000000..81d0af4 Binary files /dev/null and b/train2/pictures/90edb21a091081b83e8b9324bf8646b9.png differ diff --git a/train2/pictures/90f4c85d7c890fb8912052ef634b71f1.png b/train2/pictures/90f4c85d7c890fb8912052ef634b71f1.png new file mode 100644 index 0000000..5c9a368 Binary files /dev/null and b/train2/pictures/90f4c85d7c890fb8912052ef634b71f1.png differ diff --git a/train2/pictures/90f90d99d9bcab61b6bddb56e796a422.png b/train2/pictures/90f90d99d9bcab61b6bddb56e796a422.png new file mode 100644 index 0000000..36c58e7 Binary files /dev/null and b/train2/pictures/90f90d99d9bcab61b6bddb56e796a422.png differ diff --git a/train2/pictures/9114f8737c673ebf2ebdcd2b5728a68b.png b/train2/pictures/9114f8737c673ebf2ebdcd2b5728a68b.png new file mode 100644 index 0000000..8995116 Binary files /dev/null and b/train2/pictures/9114f8737c673ebf2ebdcd2b5728a68b.png differ diff --git a/train2/pictures/911de965fcba3f622aef2b13c82e798b.png b/train2/pictures/911de965fcba3f622aef2b13c82e798b.png new file mode 100644 index 0000000..7ec3984 Binary files /dev/null and b/train2/pictures/911de965fcba3f622aef2b13c82e798b.png differ diff --git a/train2/pictures/914b9790186529b53ae5ec1431070ded.png b/train2/pictures/914b9790186529b53ae5ec1431070ded.png new file mode 100644 index 0000000..b235fcf Binary files /dev/null and b/train2/pictures/914b9790186529b53ae5ec1431070ded.png differ diff --git a/train2/pictures/9150b893cf52de1e12f06524724b9fde.png b/train2/pictures/9150b893cf52de1e12f06524724b9fde.png new file mode 100644 index 0000000..f281b3e Binary files /dev/null and b/train2/pictures/9150b893cf52de1e12f06524724b9fde.png differ diff --git a/train2/pictures/915cc3f1ed1b48e4c0918f9d57e1d1fd.png b/train2/pictures/915cc3f1ed1b48e4c0918f9d57e1d1fd.png new file mode 100644 index 0000000..bf7f22c Binary files /dev/null and b/train2/pictures/915cc3f1ed1b48e4c0918f9d57e1d1fd.png differ diff --git a/train2/pictures/9160bbda860f8502c29970eba4da1dbd.png b/train2/pictures/9160bbda860f8502c29970eba4da1dbd.png new file mode 100644 index 0000000..628b103 Binary files /dev/null and b/train2/pictures/9160bbda860f8502c29970eba4da1dbd.png differ diff --git a/train2/pictures/91661c0754bb7dd24ab4bc6b7d957e66.png b/train2/pictures/91661c0754bb7dd24ab4bc6b7d957e66.png new file mode 100644 index 0000000..49983a1 Binary files /dev/null and b/train2/pictures/91661c0754bb7dd24ab4bc6b7d957e66.png differ diff --git a/train2/pictures/918648397dc3394e9128f26ff3c44c36.png b/train2/pictures/918648397dc3394e9128f26ff3c44c36.png new file mode 100644 index 0000000..f563fdd Binary files /dev/null and b/train2/pictures/918648397dc3394e9128f26ff3c44c36.png differ diff --git a/train2/pictures/91a490513e4bdde28e5c3724a41ead14.png b/train2/pictures/91a490513e4bdde28e5c3724a41ead14.png new file mode 100644 index 0000000..a1ee7d8 Binary files /dev/null and b/train2/pictures/91a490513e4bdde28e5c3724a41ead14.png differ diff --git a/train2/pictures/91a83e873e87828ab12ea5c2151e78f5.png b/train2/pictures/91a83e873e87828ab12ea5c2151e78f5.png new file mode 100644 index 0000000..ed76a17 Binary files /dev/null and b/train2/pictures/91a83e873e87828ab12ea5c2151e78f5.png differ diff --git a/train2/pictures/91d2a2340d7f1c3feff0459229824a28.png b/train2/pictures/91d2a2340d7f1c3feff0459229824a28.png new file mode 100644 index 0000000..8747232 Binary files /dev/null and b/train2/pictures/91d2a2340d7f1c3feff0459229824a28.png differ diff --git a/train2/pictures/922ef4a99830602b99868ef7fc91b6a3.png b/train2/pictures/922ef4a99830602b99868ef7fc91b6a3.png new file mode 100644 index 0000000..669d53a Binary files /dev/null and b/train2/pictures/922ef4a99830602b99868ef7fc91b6a3.png differ diff --git a/train2/pictures/924bd64403508f666d40eb21581659a7.png b/train2/pictures/924bd64403508f666d40eb21581659a7.png new file mode 100644 index 0000000..adc2a22 Binary files /dev/null and b/train2/pictures/924bd64403508f666d40eb21581659a7.png differ diff --git a/train2/pictures/9254478f68608c4ec3b5b02097c4b4ab.png b/train2/pictures/9254478f68608c4ec3b5b02097c4b4ab.png new file mode 100644 index 0000000..564d1a7 Binary files /dev/null and b/train2/pictures/9254478f68608c4ec3b5b02097c4b4ab.png differ diff --git a/train2/pictures/926d19940da1697bbea6d5b67ab9b196.png b/train2/pictures/926d19940da1697bbea6d5b67ab9b196.png new file mode 100644 index 0000000..89fe5f2 Binary files /dev/null and b/train2/pictures/926d19940da1697bbea6d5b67ab9b196.png differ diff --git a/train2/pictures/9292087c0d28a62ed58d7b2a8258ef2f.png b/train2/pictures/9292087c0d28a62ed58d7b2a8258ef2f.png new file mode 100644 index 0000000..cce3302 Binary files /dev/null and b/train2/pictures/9292087c0d28a62ed58d7b2a8258ef2f.png differ diff --git a/train2/pictures/93163c5e2dfaa0cb9ead50ddf5ddc9e5.png b/train2/pictures/93163c5e2dfaa0cb9ead50ddf5ddc9e5.png new file mode 100644 index 0000000..3b9e5c1 Binary files /dev/null and b/train2/pictures/93163c5e2dfaa0cb9ead50ddf5ddc9e5.png differ diff --git a/train2/pictures/9355fdf2a4ff562aa031ad66e01ec751.png b/train2/pictures/9355fdf2a4ff562aa031ad66e01ec751.png new file mode 100644 index 0000000..65318ee Binary files /dev/null and b/train2/pictures/9355fdf2a4ff562aa031ad66e01ec751.png differ diff --git a/train2/pictures/936a37963964d59ff990a499b704468d.png b/train2/pictures/936a37963964d59ff990a499b704468d.png new file mode 100644 index 0000000..6340f86 Binary files /dev/null and b/train2/pictures/936a37963964d59ff990a499b704468d.png differ diff --git a/train2/pictures/937a0214b5c00c2903158a3dcca543c9.png b/train2/pictures/937a0214b5c00c2903158a3dcca543c9.png new file mode 100644 index 0000000..446fe71 Binary files /dev/null and b/train2/pictures/937a0214b5c00c2903158a3dcca543c9.png differ diff --git a/train2/pictures/939d44e78df39103c9938154e976e493.png b/train2/pictures/939d44e78df39103c9938154e976e493.png new file mode 100644 index 0000000..ce7bcc3 Binary files /dev/null and b/train2/pictures/939d44e78df39103c9938154e976e493.png differ diff --git a/train2/pictures/93afb4a10550e713631db1b9dfae875e.png b/train2/pictures/93afb4a10550e713631db1b9dfae875e.png new file mode 100644 index 0000000..bf625bd Binary files /dev/null and b/train2/pictures/93afb4a10550e713631db1b9dfae875e.png differ diff --git a/train2/pictures/93c001aa36210326c58ffc121c978cff.png b/train2/pictures/93c001aa36210326c58ffc121c978cff.png new file mode 100644 index 0000000..12fc592 Binary files /dev/null and b/train2/pictures/93c001aa36210326c58ffc121c978cff.png differ diff --git a/train2/pictures/943cd3a56971c3896270bc860ff59c00.png b/train2/pictures/943cd3a56971c3896270bc860ff59c00.png new file mode 100644 index 0000000..0d6bd52 Binary files /dev/null and b/train2/pictures/943cd3a56971c3896270bc860ff59c00.png differ diff --git a/train2/pictures/94421a245ee34d8aa1564eb7f1c6e855.png b/train2/pictures/94421a245ee34d8aa1564eb7f1c6e855.png new file mode 100644 index 0000000..e2508bf Binary files /dev/null and b/train2/pictures/94421a245ee34d8aa1564eb7f1c6e855.png differ diff --git a/train2/pictures/946bda1a74e0039eb6b0a291265e545f.png b/train2/pictures/946bda1a74e0039eb6b0a291265e545f.png new file mode 100644 index 0000000..9f7d558 Binary files /dev/null and b/train2/pictures/946bda1a74e0039eb6b0a291265e545f.png differ diff --git a/train2/pictures/94795af9d394a51f46881eedc273eaf2.png b/train2/pictures/94795af9d394a51f46881eedc273eaf2.png new file mode 100644 index 0000000..b434e88 Binary files /dev/null and b/train2/pictures/94795af9d394a51f46881eedc273eaf2.png differ diff --git a/train2/pictures/9483ae370a6f18dce3cc5607ddfa6324.png b/train2/pictures/9483ae370a6f18dce3cc5607ddfa6324.png new file mode 100644 index 0000000..53070f4 Binary files /dev/null and b/train2/pictures/9483ae370a6f18dce3cc5607ddfa6324.png differ diff --git a/train2/pictures/948c2b0a348d5daa836201e1a381eb54.png b/train2/pictures/948c2b0a348d5daa836201e1a381eb54.png new file mode 100644 index 0000000..7589cec Binary files /dev/null and b/train2/pictures/948c2b0a348d5daa836201e1a381eb54.png differ diff --git a/train2/pictures/949035e063c61175bdfaa8204ccff730.png b/train2/pictures/949035e063c61175bdfaa8204ccff730.png new file mode 100644 index 0000000..c87f12a Binary files /dev/null and b/train2/pictures/949035e063c61175bdfaa8204ccff730.png differ diff --git a/train2/pictures/949cf5ffaa17abbc1179ecf198b36703.png b/train2/pictures/949cf5ffaa17abbc1179ecf198b36703.png new file mode 100644 index 0000000..293ad42 Binary files /dev/null and b/train2/pictures/949cf5ffaa17abbc1179ecf198b36703.png differ diff --git a/train2/pictures/94eea7a9bae1d70c3fc87498e6168487.png b/train2/pictures/94eea7a9bae1d70c3fc87498e6168487.png new file mode 100644 index 0000000..f05ad38 Binary files /dev/null and b/train2/pictures/94eea7a9bae1d70c3fc87498e6168487.png differ diff --git a/train2/pictures/9531c1eebba71da6db7084dfadd22aee.png b/train2/pictures/9531c1eebba71da6db7084dfadd22aee.png new file mode 100644 index 0000000..4d4b479 Binary files /dev/null and b/train2/pictures/9531c1eebba71da6db7084dfadd22aee.png differ diff --git a/train2/pictures/9564cb3a5f6b5d3cdb8d5109f91a3234.png b/train2/pictures/9564cb3a5f6b5d3cdb8d5109f91a3234.png new file mode 100644 index 0000000..8d76546 Binary files /dev/null and b/train2/pictures/9564cb3a5f6b5d3cdb8d5109f91a3234.png differ diff --git a/train2/pictures/956998e738e4cefd90427b5506a2ec0e.png b/train2/pictures/956998e738e4cefd90427b5506a2ec0e.png new file mode 100644 index 0000000..e523b86 Binary files /dev/null and b/train2/pictures/956998e738e4cefd90427b5506a2ec0e.png differ diff --git a/train2/pictures/957a614ad8e882371ecf46f88834fa65.png b/train2/pictures/957a614ad8e882371ecf46f88834fa65.png new file mode 100644 index 0000000..8dd092e Binary files /dev/null and b/train2/pictures/957a614ad8e882371ecf46f88834fa65.png differ diff --git a/train2/pictures/95817a0b0f5d0f104b775708bf12fe12.png b/train2/pictures/95817a0b0f5d0f104b775708bf12fe12.png new file mode 100644 index 0000000..04f1087 Binary files /dev/null and b/train2/pictures/95817a0b0f5d0f104b775708bf12fe12.png differ diff --git a/train2/pictures/958d639ba03414dfb00ce818cf3fffd1.png b/train2/pictures/958d639ba03414dfb00ce818cf3fffd1.png new file mode 100644 index 0000000..152ed8b Binary files /dev/null and b/train2/pictures/958d639ba03414dfb00ce818cf3fffd1.png differ diff --git a/train2/pictures/95b80a31d070eb0e1d380f347cae4a88.png b/train2/pictures/95b80a31d070eb0e1d380f347cae4a88.png new file mode 100644 index 0000000..a48b468 Binary files /dev/null and b/train2/pictures/95b80a31d070eb0e1d380f347cae4a88.png differ diff --git a/train2/pictures/95c147df424a1e81ea537bf1d18ab5c0.png b/train2/pictures/95c147df424a1e81ea537bf1d18ab5c0.png new file mode 100644 index 0000000..5e50e9f Binary files /dev/null and b/train2/pictures/95c147df424a1e81ea537bf1d18ab5c0.png differ diff --git a/train2/pictures/95ccf8d13a79f6f3916b1b3a71a2a66b.png b/train2/pictures/95ccf8d13a79f6f3916b1b3a71a2a66b.png new file mode 100644 index 0000000..90c7f05 Binary files /dev/null and b/train2/pictures/95ccf8d13a79f6f3916b1b3a71a2a66b.png differ diff --git a/train2/pictures/9636077dd440b122d0f68c8c04cb757c.png b/train2/pictures/9636077dd440b122d0f68c8c04cb757c.png new file mode 100644 index 0000000..4f8473f Binary files /dev/null and b/train2/pictures/9636077dd440b122d0f68c8c04cb757c.png differ diff --git a/train2/pictures/9691e0fcbc17acfa39653ed7cb35f0fe.png b/train2/pictures/9691e0fcbc17acfa39653ed7cb35f0fe.png new file mode 100644 index 0000000..dc7b2ad Binary files /dev/null and b/train2/pictures/9691e0fcbc17acfa39653ed7cb35f0fe.png differ diff --git a/train2/pictures/969ba4faec7e6f655fbb62b5bd01ae09.png b/train2/pictures/969ba4faec7e6f655fbb62b5bd01ae09.png new file mode 100644 index 0000000..403f046 Binary files /dev/null and b/train2/pictures/969ba4faec7e6f655fbb62b5bd01ae09.png differ diff --git a/train2/pictures/96ad1b1eec8deb4a0e69f5147a62298b.png b/train2/pictures/96ad1b1eec8deb4a0e69f5147a62298b.png new file mode 100644 index 0000000..2afe272 Binary files /dev/null and b/train2/pictures/96ad1b1eec8deb4a0e69f5147a62298b.png differ diff --git a/train2/pictures/96d888552864d4c9d14b5631e55019fa.png b/train2/pictures/96d888552864d4c9d14b5631e55019fa.png new file mode 100644 index 0000000..e550cbf Binary files /dev/null and b/train2/pictures/96d888552864d4c9d14b5631e55019fa.png differ diff --git a/train2/pictures/96dd29ff9e7b79ccf3a2aaccde8b6e36.png b/train2/pictures/96dd29ff9e7b79ccf3a2aaccde8b6e36.png new file mode 100644 index 0000000..aa4063e Binary files /dev/null and b/train2/pictures/96dd29ff9e7b79ccf3a2aaccde8b6e36.png differ diff --git a/train2/pictures/970e1b6fe928c6867439cca0603c7b07.png b/train2/pictures/970e1b6fe928c6867439cca0603c7b07.png new file mode 100644 index 0000000..e4e2d23 Binary files /dev/null and b/train2/pictures/970e1b6fe928c6867439cca0603c7b07.png differ diff --git a/train2/pictures/9732639b44d9b933ba7c19863bfa2ecf.png b/train2/pictures/9732639b44d9b933ba7c19863bfa2ecf.png new file mode 100644 index 0000000..43ae2e6 Binary files /dev/null and b/train2/pictures/9732639b44d9b933ba7c19863bfa2ecf.png differ diff --git a/train2/pictures/97621c0d21d40444aed42674aa8ff4b7.png b/train2/pictures/97621c0d21d40444aed42674aa8ff4b7.png new file mode 100644 index 0000000..05817e1 Binary files /dev/null and b/train2/pictures/97621c0d21d40444aed42674aa8ff4b7.png differ diff --git a/train2/pictures/9768e9d30c51c5a8902207701933da4d.png b/train2/pictures/9768e9d30c51c5a8902207701933da4d.png new file mode 100644 index 0000000..5a1653f Binary files /dev/null and b/train2/pictures/9768e9d30c51c5a8902207701933da4d.png differ diff --git a/train2/pictures/978edf8a12c7e92193ab482e7fb943c5.png b/train2/pictures/978edf8a12c7e92193ab482e7fb943c5.png new file mode 100644 index 0000000..8ec05f4 Binary files /dev/null and b/train2/pictures/978edf8a12c7e92193ab482e7fb943c5.png differ diff --git a/train2/pictures/97a159478525fe5f24bb76003a97d2d8.png b/train2/pictures/97a159478525fe5f24bb76003a97d2d8.png new file mode 100644 index 0000000..371db62 Binary files /dev/null and b/train2/pictures/97a159478525fe5f24bb76003a97d2d8.png differ diff --git a/train2/pictures/97c3740fb03cb1714696268747702dbb.png b/train2/pictures/97c3740fb03cb1714696268747702dbb.png new file mode 100644 index 0000000..fa41b42 Binary files /dev/null and b/train2/pictures/97c3740fb03cb1714696268747702dbb.png differ diff --git a/train2/pictures/97dd435b94f091b70795390a44ea6959.png b/train2/pictures/97dd435b94f091b70795390a44ea6959.png new file mode 100644 index 0000000..4bb32f8 Binary files /dev/null and b/train2/pictures/97dd435b94f091b70795390a44ea6959.png differ diff --git a/train2/pictures/97faaedc1803f602fba472790b98769f.png b/train2/pictures/97faaedc1803f602fba472790b98769f.png new file mode 100644 index 0000000..dae9926 Binary files /dev/null and b/train2/pictures/97faaedc1803f602fba472790b98769f.png differ diff --git a/train2/pictures/981f9585ed4db47c22de4133e206c627.png b/train2/pictures/981f9585ed4db47c22de4133e206c627.png new file mode 100644 index 0000000..b8f609e Binary files /dev/null and b/train2/pictures/981f9585ed4db47c22de4133e206c627.png differ diff --git a/train2/pictures/989979ecf42a18a2502602ad217c44c9.png b/train2/pictures/989979ecf42a18a2502602ad217c44c9.png new file mode 100644 index 0000000..ea31742 Binary files /dev/null and b/train2/pictures/989979ecf42a18a2502602ad217c44c9.png differ diff --git a/train2/pictures/98c8c590a6010ff931b2aaf359fac2af.png b/train2/pictures/98c8c590a6010ff931b2aaf359fac2af.png new file mode 100644 index 0000000..e635bfb Binary files /dev/null and b/train2/pictures/98c8c590a6010ff931b2aaf359fac2af.png differ diff --git a/train2/pictures/98cef1df5e7e0398f728c00151c0d2c2.png b/train2/pictures/98cef1df5e7e0398f728c00151c0d2c2.png new file mode 100644 index 0000000..3dd60f5 Binary files /dev/null and b/train2/pictures/98cef1df5e7e0398f728c00151c0d2c2.png differ diff --git a/train2/pictures/98dce933d48bed5b22e3b8ecce01a4e4.png b/train2/pictures/98dce933d48bed5b22e3b8ecce01a4e4.png new file mode 100644 index 0000000..ada8ae9 Binary files /dev/null and b/train2/pictures/98dce933d48bed5b22e3b8ecce01a4e4.png differ diff --git a/train2/pictures/98fbac394c14008968914348fbcd245d.png b/train2/pictures/98fbac394c14008968914348fbcd245d.png new file mode 100644 index 0000000..5058cc7 Binary files /dev/null and b/train2/pictures/98fbac394c14008968914348fbcd245d.png differ diff --git a/train2/pictures/992c46091e39cb4f8d5f1c21cf159be2.png b/train2/pictures/992c46091e39cb4f8d5f1c21cf159be2.png new file mode 100644 index 0000000..13b99d0 Binary files /dev/null and b/train2/pictures/992c46091e39cb4f8d5f1c21cf159be2.png differ diff --git a/train2/pictures/992eb07e06e145b22b12cc7eb228de3f.png b/train2/pictures/992eb07e06e145b22b12cc7eb228de3f.png new file mode 100644 index 0000000..cef6f2c Binary files /dev/null and b/train2/pictures/992eb07e06e145b22b12cc7eb228de3f.png differ diff --git a/train2/pictures/992ef11c08ef9d1f82a4357927d9aa87.png b/train2/pictures/992ef11c08ef9d1f82a4357927d9aa87.png new file mode 100644 index 0000000..ed8aa5f Binary files /dev/null and b/train2/pictures/992ef11c08ef9d1f82a4357927d9aa87.png differ diff --git a/train2/pictures/99521cf144e4eb43ae74d126228716cb.png b/train2/pictures/99521cf144e4eb43ae74d126228716cb.png new file mode 100644 index 0000000..dcdc45b Binary files /dev/null and b/train2/pictures/99521cf144e4eb43ae74d126228716cb.png differ diff --git a/train2/pictures/99928f4f0cdb7279a1251c40b09b15d4.png b/train2/pictures/99928f4f0cdb7279a1251c40b09b15d4.png new file mode 100644 index 0000000..624fb9d Binary files /dev/null and b/train2/pictures/99928f4f0cdb7279a1251c40b09b15d4.png differ diff --git a/train2/pictures/999f1bb2b377a3e106ba9c3b79c878b0.png b/train2/pictures/999f1bb2b377a3e106ba9c3b79c878b0.png new file mode 100644 index 0000000..88b48ec Binary files /dev/null and b/train2/pictures/999f1bb2b377a3e106ba9c3b79c878b0.png differ diff --git a/train2/pictures/99b39a1d083afa63e3c7572b04a51e27.png b/train2/pictures/99b39a1d083afa63e3c7572b04a51e27.png new file mode 100644 index 0000000..1da437a Binary files /dev/null and b/train2/pictures/99b39a1d083afa63e3c7572b04a51e27.png differ diff --git a/train2/pictures/99be70e1b109ac55fb06b33f1095dbde.png b/train2/pictures/99be70e1b109ac55fb06b33f1095dbde.png new file mode 100644 index 0000000..c1077b8 Binary files /dev/null and b/train2/pictures/99be70e1b109ac55fb06b33f1095dbde.png differ diff --git a/train2/pictures/99feaf75630cef2acc90697aedb27941.png b/train2/pictures/99feaf75630cef2acc90697aedb27941.png new file mode 100644 index 0000000..3a0a9ea Binary files /dev/null and b/train2/pictures/99feaf75630cef2acc90697aedb27941.png differ diff --git a/train2/pictures/9a01d9d1e59cb8da30ec5f7ad113a9b8.png b/train2/pictures/9a01d9d1e59cb8da30ec5f7ad113a9b8.png new file mode 100644 index 0000000..43db986 Binary files /dev/null and b/train2/pictures/9a01d9d1e59cb8da30ec5f7ad113a9b8.png differ diff --git a/train2/pictures/9a33a7648de4898724a19605fc6979ba.png b/train2/pictures/9a33a7648de4898724a19605fc6979ba.png new file mode 100644 index 0000000..b9629c9 Binary files /dev/null and b/train2/pictures/9a33a7648de4898724a19605fc6979ba.png differ diff --git a/train2/pictures/9a43efcb64ffee34e181c8b24a58f1ae.png b/train2/pictures/9a43efcb64ffee34e181c8b24a58f1ae.png new file mode 100644 index 0000000..dc2c6ca Binary files /dev/null and b/train2/pictures/9a43efcb64ffee34e181c8b24a58f1ae.png differ diff --git a/train2/pictures/9a483e6f63b32dbe646f67cd3cd7656f.png b/train2/pictures/9a483e6f63b32dbe646f67cd3cd7656f.png new file mode 100644 index 0000000..ab93dfa Binary files /dev/null and b/train2/pictures/9a483e6f63b32dbe646f67cd3cd7656f.png differ diff --git a/train2/pictures/9a4d370aaebd70fd3e0c9a9344fb1a2d.png b/train2/pictures/9a4d370aaebd70fd3e0c9a9344fb1a2d.png new file mode 100644 index 0000000..f2e6f68 Binary files /dev/null and b/train2/pictures/9a4d370aaebd70fd3e0c9a9344fb1a2d.png differ diff --git a/train2/pictures/9a7af221adf72b7c48dffc5544c293c1.png b/train2/pictures/9a7af221adf72b7c48dffc5544c293c1.png new file mode 100644 index 0000000..fd834a3 Binary files /dev/null and b/train2/pictures/9a7af221adf72b7c48dffc5544c293c1.png differ diff --git a/train2/pictures/9b09302e4cac512bac4fbffd9fad0fb5.png b/train2/pictures/9b09302e4cac512bac4fbffd9fad0fb5.png new file mode 100644 index 0000000..aee5731 Binary files /dev/null and b/train2/pictures/9b09302e4cac512bac4fbffd9fad0fb5.png differ diff --git a/train2/pictures/9b15fe9c936a422a32d71e8929b2d131.png b/train2/pictures/9b15fe9c936a422a32d71e8929b2d131.png new file mode 100644 index 0000000..cd7bb27 Binary files /dev/null and b/train2/pictures/9b15fe9c936a422a32d71e8929b2d131.png differ diff --git a/train2/pictures/9b28abeb6c053437179ba4e286079079.png b/train2/pictures/9b28abeb6c053437179ba4e286079079.png new file mode 100644 index 0000000..66540ea Binary files /dev/null and b/train2/pictures/9b28abeb6c053437179ba4e286079079.png differ diff --git a/train2/pictures/9b79352250d079b953e96bf4ba405c07.png b/train2/pictures/9b79352250d079b953e96bf4ba405c07.png new file mode 100644 index 0000000..a135918 Binary files /dev/null and b/train2/pictures/9b79352250d079b953e96bf4ba405c07.png differ diff --git a/train2/pictures/9bb5c9a582e3aa5db77080e9baba1004.png b/train2/pictures/9bb5c9a582e3aa5db77080e9baba1004.png new file mode 100644 index 0000000..e417788 Binary files /dev/null and b/train2/pictures/9bb5c9a582e3aa5db77080e9baba1004.png differ diff --git a/train2/pictures/9bfc1a821beef0b52011a508d0ea9584.png b/train2/pictures/9bfc1a821beef0b52011a508d0ea9584.png new file mode 100644 index 0000000..055ed2b Binary files /dev/null and b/train2/pictures/9bfc1a821beef0b52011a508d0ea9584.png differ diff --git a/train2/pictures/9c2997f1c8197890ff51e6e2cb778c74.png b/train2/pictures/9c2997f1c8197890ff51e6e2cb778c74.png new file mode 100644 index 0000000..12dd8b1 Binary files /dev/null and b/train2/pictures/9c2997f1c8197890ff51e6e2cb778c74.png differ diff --git a/train2/pictures/9c37728b45e489217540f7546d9b005d.png b/train2/pictures/9c37728b45e489217540f7546d9b005d.png new file mode 100644 index 0000000..b850a22 Binary files /dev/null and b/train2/pictures/9c37728b45e489217540f7546d9b005d.png differ diff --git a/train2/pictures/9c5747f4617bb9b22dc40557f914c7b8.png b/train2/pictures/9c5747f4617bb9b22dc40557f914c7b8.png new file mode 100644 index 0000000..77e6c33 Binary files /dev/null and b/train2/pictures/9c5747f4617bb9b22dc40557f914c7b8.png differ diff --git a/train2/pictures/9c5b6a831e36a7240204ba3734917ba1.png b/train2/pictures/9c5b6a831e36a7240204ba3734917ba1.png new file mode 100644 index 0000000..7272cd8 Binary files /dev/null and b/train2/pictures/9c5b6a831e36a7240204ba3734917ba1.png differ diff --git a/train2/pictures/9c5db3a037fff5776e7d9e12c1318a0f.png b/train2/pictures/9c5db3a037fff5776e7d9e12c1318a0f.png new file mode 100644 index 0000000..3ca0cb8 Binary files /dev/null and b/train2/pictures/9c5db3a037fff5776e7d9e12c1318a0f.png differ diff --git a/train2/pictures/9c88cd26c87c09cef1a5e56345c09a51.png b/train2/pictures/9c88cd26c87c09cef1a5e56345c09a51.png new file mode 100644 index 0000000..da6f14a Binary files /dev/null and b/train2/pictures/9c88cd26c87c09cef1a5e56345c09a51.png differ diff --git a/train2/pictures/9c97b05111b38d8621c721d6281be0d6.png b/train2/pictures/9c97b05111b38d8621c721d6281be0d6.png new file mode 100644 index 0000000..04ad70f Binary files /dev/null and b/train2/pictures/9c97b05111b38d8621c721d6281be0d6.png differ diff --git a/train2/pictures/9c9a3c3ad475a5619e095eba133bc59c.png b/train2/pictures/9c9a3c3ad475a5619e095eba133bc59c.png new file mode 100644 index 0000000..1b20462 Binary files /dev/null and b/train2/pictures/9c9a3c3ad475a5619e095eba133bc59c.png differ diff --git a/train2/pictures/9cba140c4e5ee10ba30aecf3a0e3f51b.png b/train2/pictures/9cba140c4e5ee10ba30aecf3a0e3f51b.png new file mode 100644 index 0000000..54db19a Binary files /dev/null and b/train2/pictures/9cba140c4e5ee10ba30aecf3a0e3f51b.png differ diff --git a/train2/pictures/9cfa1f6f5f68b7eda9486abd2658d8d3.png b/train2/pictures/9cfa1f6f5f68b7eda9486abd2658d8d3.png new file mode 100644 index 0000000..83bb239 Binary files /dev/null and b/train2/pictures/9cfa1f6f5f68b7eda9486abd2658d8d3.png differ diff --git a/train2/pictures/9cfea817de800415fea03c99de8dca62.png b/train2/pictures/9cfea817de800415fea03c99de8dca62.png new file mode 100644 index 0000000..2123684 Binary files /dev/null and b/train2/pictures/9cfea817de800415fea03c99de8dca62.png differ diff --git a/train2/pictures/9d0c0cd3ec30a5cba5ece9152b3e2d7c.png b/train2/pictures/9d0c0cd3ec30a5cba5ece9152b3e2d7c.png new file mode 100644 index 0000000..e5bd073 Binary files /dev/null and b/train2/pictures/9d0c0cd3ec30a5cba5ece9152b3e2d7c.png differ diff --git a/train2/pictures/9d4add2922012cb8df651abcdfff67e1.png b/train2/pictures/9d4add2922012cb8df651abcdfff67e1.png new file mode 100644 index 0000000..b415126 Binary files /dev/null and b/train2/pictures/9d4add2922012cb8df651abcdfff67e1.png differ diff --git a/train2/pictures/9d852a01392d8c7d2bfd9db153813a3c.png b/train2/pictures/9d852a01392d8c7d2bfd9db153813a3c.png new file mode 100644 index 0000000..c7f9659 Binary files /dev/null and b/train2/pictures/9d852a01392d8c7d2bfd9db153813a3c.png differ diff --git a/train2/pictures/9dbbb8d1478448ed6a7dceb13e6bef9e.png b/train2/pictures/9dbbb8d1478448ed6a7dceb13e6bef9e.png new file mode 100644 index 0000000..dbd529b Binary files /dev/null and b/train2/pictures/9dbbb8d1478448ed6a7dceb13e6bef9e.png differ diff --git a/train2/pictures/9df429389feacafbda3f58768ad2516f.png b/train2/pictures/9df429389feacafbda3f58768ad2516f.png new file mode 100644 index 0000000..9702b62 Binary files /dev/null and b/train2/pictures/9df429389feacafbda3f58768ad2516f.png differ diff --git a/train2/pictures/9e371fc537477f09d1293cde5539024a.png b/train2/pictures/9e371fc537477f09d1293cde5539024a.png new file mode 100644 index 0000000..8f61523 Binary files /dev/null and b/train2/pictures/9e371fc537477f09d1293cde5539024a.png differ diff --git a/train2/pictures/9e568bd17653cd7a2e4af0e5119460d3.png b/train2/pictures/9e568bd17653cd7a2e4af0e5119460d3.png new file mode 100644 index 0000000..ecf4697 Binary files /dev/null and b/train2/pictures/9e568bd17653cd7a2e4af0e5119460d3.png differ diff --git a/train2/pictures/9e6f014d36d729031d3a4b0884d17127.png b/train2/pictures/9e6f014d36d729031d3a4b0884d17127.png new file mode 100644 index 0000000..d2d6305 Binary files /dev/null and b/train2/pictures/9e6f014d36d729031d3a4b0884d17127.png differ diff --git a/train2/pictures/9e98a0928fd4739129a4e10253121220.png b/train2/pictures/9e98a0928fd4739129a4e10253121220.png new file mode 100644 index 0000000..6014d4c Binary files /dev/null and b/train2/pictures/9e98a0928fd4739129a4e10253121220.png differ diff --git a/train2/pictures/9ec5898a54070770a0ee6849ba9d8611.png b/train2/pictures/9ec5898a54070770a0ee6849ba9d8611.png new file mode 100644 index 0000000..87d49db Binary files /dev/null and b/train2/pictures/9ec5898a54070770a0ee6849ba9d8611.png differ diff --git a/train2/pictures/9edf22b0155bc363074ededee0d1c75f.png b/train2/pictures/9edf22b0155bc363074ededee0d1c75f.png new file mode 100644 index 0000000..234cb16 Binary files /dev/null and b/train2/pictures/9edf22b0155bc363074ededee0d1c75f.png differ diff --git a/train2/pictures/9ef184e59be6e5661390c95890d5a0d9.png b/train2/pictures/9ef184e59be6e5661390c95890d5a0d9.png new file mode 100644 index 0000000..1132988 Binary files /dev/null and b/train2/pictures/9ef184e59be6e5661390c95890d5a0d9.png differ diff --git a/train2/pictures/9f07f82811f13c7b3cb9f06811cb7fa9.png b/train2/pictures/9f07f82811f13c7b3cb9f06811cb7fa9.png new file mode 100644 index 0000000..f4d7428 Binary files /dev/null and b/train2/pictures/9f07f82811f13c7b3cb9f06811cb7fa9.png differ diff --git a/train2/pictures/9f0a72882149993692681a869b2e2fb2.png b/train2/pictures/9f0a72882149993692681a869b2e2fb2.png new file mode 100644 index 0000000..2c5b9f4 Binary files /dev/null and b/train2/pictures/9f0a72882149993692681a869b2e2fb2.png differ diff --git a/train2/pictures/9f12c9826172a385461a29448658c31e.png b/train2/pictures/9f12c9826172a385461a29448658c31e.png new file mode 100644 index 0000000..32bc9e4 Binary files /dev/null and b/train2/pictures/9f12c9826172a385461a29448658c31e.png differ diff --git a/train2/pictures/9f395c5268c4710ed12a5f889a46e120.png b/train2/pictures/9f395c5268c4710ed12a5f889a46e120.png new file mode 100644 index 0000000..0cdff79 Binary files /dev/null and b/train2/pictures/9f395c5268c4710ed12a5f889a46e120.png differ diff --git a/train2/pictures/9f4bcf72bdeb9c9582310d19bcf4bdf3.png b/train2/pictures/9f4bcf72bdeb9c9582310d19bcf4bdf3.png new file mode 100644 index 0000000..fa4fca0 Binary files /dev/null and b/train2/pictures/9f4bcf72bdeb9c9582310d19bcf4bdf3.png differ diff --git a/train2/pictures/9f58da62ed9bb686ab1ea5d1387672ad.png b/train2/pictures/9f58da62ed9bb686ab1ea5d1387672ad.png new file mode 100644 index 0000000..0bd0db0 Binary files /dev/null and b/train2/pictures/9f58da62ed9bb686ab1ea5d1387672ad.png differ diff --git a/train2/pictures/9f69d5119d0a80e6474fb1efa873b3b5.png b/train2/pictures/9f69d5119d0a80e6474fb1efa873b3b5.png new file mode 100644 index 0000000..800f7ed Binary files /dev/null and b/train2/pictures/9f69d5119d0a80e6474fb1efa873b3b5.png differ diff --git a/train2/pictures/9f709cbeec1b53871cc7db65f25279c3.png b/train2/pictures/9f709cbeec1b53871cc7db65f25279c3.png new file mode 100644 index 0000000..e1416f4 Binary files /dev/null and b/train2/pictures/9f709cbeec1b53871cc7db65f25279c3.png differ diff --git a/train2/pictures/9f79e77cb51f0a42183a3e02666c877a.png b/train2/pictures/9f79e77cb51f0a42183a3e02666c877a.png new file mode 100644 index 0000000..e0bd24a Binary files /dev/null and b/train2/pictures/9f79e77cb51f0a42183a3e02666c877a.png differ diff --git a/train2/pictures/9f825f81d101144bbd37f57d1d8476aa.png b/train2/pictures/9f825f81d101144bbd37f57d1d8476aa.png new file mode 100644 index 0000000..8015e7a Binary files /dev/null and b/train2/pictures/9f825f81d101144bbd37f57d1d8476aa.png differ diff --git a/train2/pictures/9f8fa13a00054443a302fa9f2513d58c.png b/train2/pictures/9f8fa13a00054443a302fa9f2513d58c.png new file mode 100644 index 0000000..0cba58c Binary files /dev/null and b/train2/pictures/9f8fa13a00054443a302fa9f2513d58c.png differ diff --git a/train2/pictures/9f9788be21520bd718e8786212e5823e.png b/train2/pictures/9f9788be21520bd718e8786212e5823e.png new file mode 100644 index 0000000..4d5893c Binary files /dev/null and b/train2/pictures/9f9788be21520bd718e8786212e5823e.png differ diff --git a/train2/pictures/9f9fa792a69e5b53d557b28f061fd437.png b/train2/pictures/9f9fa792a69e5b53d557b28f061fd437.png new file mode 100644 index 0000000..90f2955 Binary files /dev/null and b/train2/pictures/9f9fa792a69e5b53d557b28f061fd437.png differ diff --git a/train2/pictures/9fe2f9924231aa0a9eb8bfdb42eb2f8f.png b/train2/pictures/9fe2f9924231aa0a9eb8bfdb42eb2f8f.png new file mode 100644 index 0000000..ed84a1e Binary files /dev/null and b/train2/pictures/9fe2f9924231aa0a9eb8bfdb42eb2f8f.png differ diff --git a/train2/pictures/9ff249b05893e0f6d2a44571048feab3.png b/train2/pictures/9ff249b05893e0f6d2a44571048feab3.png new file mode 100644 index 0000000..80b545e Binary files /dev/null and b/train2/pictures/9ff249b05893e0f6d2a44571048feab3.png differ diff --git a/train2/pictures/a059b424d225cae65508f8a1217c90b9.png b/train2/pictures/a059b424d225cae65508f8a1217c90b9.png new file mode 100644 index 0000000..e26b462 Binary files /dev/null and b/train2/pictures/a059b424d225cae65508f8a1217c90b9.png differ diff --git a/train2/pictures/a05afcfb5913a542a5a91aa4effd03b8.png b/train2/pictures/a05afcfb5913a542a5a91aa4effd03b8.png new file mode 100644 index 0000000..f349e02 Binary files /dev/null and b/train2/pictures/a05afcfb5913a542a5a91aa4effd03b8.png differ diff --git a/train2/pictures/a0829b594e7e17b0458faef7ba6cf147.png b/train2/pictures/a0829b594e7e17b0458faef7ba6cf147.png new file mode 100644 index 0000000..a325846 Binary files /dev/null and b/train2/pictures/a0829b594e7e17b0458faef7ba6cf147.png differ diff --git a/train2/pictures/a10c2e9a4c59b68148a6951b763e7ac3.png b/train2/pictures/a10c2e9a4c59b68148a6951b763e7ac3.png new file mode 100644 index 0000000..0d28eb2 Binary files /dev/null and b/train2/pictures/a10c2e9a4c59b68148a6951b763e7ac3.png differ diff --git a/train2/pictures/a13ba1da837cf715c40543d21a28b7a4.png b/train2/pictures/a13ba1da837cf715c40543d21a28b7a4.png new file mode 100644 index 0000000..1a45a65 Binary files /dev/null and b/train2/pictures/a13ba1da837cf715c40543d21a28b7a4.png differ diff --git a/train2/pictures/a19610ed3dc9657e2b7d645d7931698c.png b/train2/pictures/a19610ed3dc9657e2b7d645d7931698c.png new file mode 100644 index 0000000..213207b Binary files /dev/null and b/train2/pictures/a19610ed3dc9657e2b7d645d7931698c.png differ diff --git a/train2/pictures/a1b8b57243052bbe75382d213c3b0aba.png b/train2/pictures/a1b8b57243052bbe75382d213c3b0aba.png new file mode 100644 index 0000000..bfc6a8f Binary files /dev/null and b/train2/pictures/a1b8b57243052bbe75382d213c3b0aba.png differ diff --git a/train2/pictures/a1ba36944196236e3cf4431765b390ed.png b/train2/pictures/a1ba36944196236e3cf4431765b390ed.png new file mode 100644 index 0000000..4b16f98 Binary files /dev/null and b/train2/pictures/a1ba36944196236e3cf4431765b390ed.png differ diff --git a/train2/pictures/a1de6265386525c14b21bd1476a53336.png b/train2/pictures/a1de6265386525c14b21bd1476a53336.png new file mode 100644 index 0000000..66b8c64 Binary files /dev/null and b/train2/pictures/a1de6265386525c14b21bd1476a53336.png differ diff --git a/train2/pictures/a1e2d67cbf9a5603ad0236914942884c.png b/train2/pictures/a1e2d67cbf9a5603ad0236914942884c.png new file mode 100644 index 0000000..01ce1e0 Binary files /dev/null and b/train2/pictures/a1e2d67cbf9a5603ad0236914942884c.png differ diff --git a/train2/pictures/a1eda1097eebafa368893af819cfb138.png b/train2/pictures/a1eda1097eebafa368893af819cfb138.png new file mode 100644 index 0000000..a43c309 Binary files /dev/null and b/train2/pictures/a1eda1097eebafa368893af819cfb138.png differ diff --git a/train2/pictures/a1f258a3194333a43a7afabbc67df1a0.png b/train2/pictures/a1f258a3194333a43a7afabbc67df1a0.png new file mode 100644 index 0000000..00f1886 Binary files /dev/null and b/train2/pictures/a1f258a3194333a43a7afabbc67df1a0.png differ diff --git a/train2/pictures/a1f9257199f3cca371a15e408b6764c2.png b/train2/pictures/a1f9257199f3cca371a15e408b6764c2.png new file mode 100644 index 0000000..2fede84 Binary files /dev/null and b/train2/pictures/a1f9257199f3cca371a15e408b6764c2.png differ diff --git a/train2/pictures/a21c4925e90d424f2c09a7554da882bf.png b/train2/pictures/a21c4925e90d424f2c09a7554da882bf.png new file mode 100644 index 0000000..28cd826 Binary files /dev/null and b/train2/pictures/a21c4925e90d424f2c09a7554da882bf.png differ diff --git a/train2/pictures/a22e0b3c22c7ae10babe68636c65ab8f.png b/train2/pictures/a22e0b3c22c7ae10babe68636c65ab8f.png new file mode 100644 index 0000000..1413ec1 Binary files /dev/null and b/train2/pictures/a22e0b3c22c7ae10babe68636c65ab8f.png differ diff --git a/train2/pictures/a2362c576344b7f9b9318d8575334045.png b/train2/pictures/a2362c576344b7f9b9318d8575334045.png new file mode 100644 index 0000000..596d8cc Binary files /dev/null and b/train2/pictures/a2362c576344b7f9b9318d8575334045.png differ diff --git a/train2/pictures/a23e0763435e088a4405233a21db5c5c.png b/train2/pictures/a23e0763435e088a4405233a21db5c5c.png new file mode 100644 index 0000000..c0652c0 Binary files /dev/null and b/train2/pictures/a23e0763435e088a4405233a21db5c5c.png differ diff --git a/train2/pictures/a2425ae29b7473025b345e918079579d.png b/train2/pictures/a2425ae29b7473025b345e918079579d.png new file mode 100644 index 0000000..e0a708e Binary files /dev/null and b/train2/pictures/a2425ae29b7473025b345e918079579d.png differ diff --git a/train2/pictures/a2628812996e51cb87e6c84acb725fd5.png b/train2/pictures/a2628812996e51cb87e6c84acb725fd5.png new file mode 100644 index 0000000..1aed1f9 Binary files /dev/null and b/train2/pictures/a2628812996e51cb87e6c84acb725fd5.png differ diff --git a/train2/pictures/a2896a3f73dfc88313473ee67849245e.png b/train2/pictures/a2896a3f73dfc88313473ee67849245e.png new file mode 100644 index 0000000..73051f3 Binary files /dev/null and b/train2/pictures/a2896a3f73dfc88313473ee67849245e.png differ diff --git a/train2/pictures/a2ab6bb93cac2a3f68a4d9967759131f.png b/train2/pictures/a2ab6bb93cac2a3f68a4d9967759131f.png new file mode 100644 index 0000000..e663840 Binary files /dev/null and b/train2/pictures/a2ab6bb93cac2a3f68a4d9967759131f.png differ diff --git a/train2/pictures/a317f1667f0aeb90e0aec266aee83d8c.png b/train2/pictures/a317f1667f0aeb90e0aec266aee83d8c.png new file mode 100644 index 0000000..098c8e4 Binary files /dev/null and b/train2/pictures/a317f1667f0aeb90e0aec266aee83d8c.png differ diff --git a/train2/pictures/a32198376587e3ef5d7e068db988e991.png b/train2/pictures/a32198376587e3ef5d7e068db988e991.png new file mode 100644 index 0000000..6f8d472 Binary files /dev/null and b/train2/pictures/a32198376587e3ef5d7e068db988e991.png differ diff --git a/train2/pictures/a346c158b5a1c084930207069ab22784.png b/train2/pictures/a346c158b5a1c084930207069ab22784.png new file mode 100644 index 0000000..9983882 Binary files /dev/null and b/train2/pictures/a346c158b5a1c084930207069ab22784.png differ diff --git a/train2/pictures/a346c6393c26787f744b145c3acddd2e.png b/train2/pictures/a346c6393c26787f744b145c3acddd2e.png new file mode 100644 index 0000000..28d782f Binary files /dev/null and b/train2/pictures/a346c6393c26787f744b145c3acddd2e.png differ diff --git a/train2/pictures/a38bf7051e88c642377217c283c100b6.png b/train2/pictures/a38bf7051e88c642377217c283c100b6.png new file mode 100644 index 0000000..6550862 Binary files /dev/null and b/train2/pictures/a38bf7051e88c642377217c283c100b6.png differ diff --git a/train2/pictures/a3aaac6b2643326861d2c0ce5b1291f9.png b/train2/pictures/a3aaac6b2643326861d2c0ce5b1291f9.png new file mode 100644 index 0000000..9109c54 Binary files /dev/null and b/train2/pictures/a3aaac6b2643326861d2c0ce5b1291f9.png differ diff --git a/train2/pictures/a3d4e731464b86e8d2f0b180372cd8fe.png b/train2/pictures/a3d4e731464b86e8d2f0b180372cd8fe.png new file mode 100644 index 0000000..5f22fab Binary files /dev/null and b/train2/pictures/a3d4e731464b86e8d2f0b180372cd8fe.png differ diff --git a/train2/pictures/a3ebe144befe1457a584692f156a3fce.png b/train2/pictures/a3ebe144befe1457a584692f156a3fce.png new file mode 100644 index 0000000..bccadbd Binary files /dev/null and b/train2/pictures/a3ebe144befe1457a584692f156a3fce.png differ diff --git a/train2/pictures/a4512afc7c3eec74cb772ac85a47bf5c.png b/train2/pictures/a4512afc7c3eec74cb772ac85a47bf5c.png new file mode 100644 index 0000000..95039ab Binary files /dev/null and b/train2/pictures/a4512afc7c3eec74cb772ac85a47bf5c.png differ diff --git a/train2/pictures/a46fab2405d5d1e5ce747efd454b0d5c.png b/train2/pictures/a46fab2405d5d1e5ce747efd454b0d5c.png new file mode 100644 index 0000000..d571e8a Binary files /dev/null and b/train2/pictures/a46fab2405d5d1e5ce747efd454b0d5c.png differ diff --git a/train2/pictures/a4a03d4b2cc1d4d507a2543e6e1af6de.png b/train2/pictures/a4a03d4b2cc1d4d507a2543e6e1af6de.png new file mode 100644 index 0000000..78c2af3 Binary files /dev/null and b/train2/pictures/a4a03d4b2cc1d4d507a2543e6e1af6de.png differ diff --git a/train2/pictures/a4a9bb30d589b05dd420cddc5829a013.png b/train2/pictures/a4a9bb30d589b05dd420cddc5829a013.png new file mode 100644 index 0000000..c5b1908 Binary files /dev/null and b/train2/pictures/a4a9bb30d589b05dd420cddc5829a013.png differ diff --git a/train2/pictures/a4b23271f377123b92556ce185de1cca.png b/train2/pictures/a4b23271f377123b92556ce185de1cca.png new file mode 100644 index 0000000..efa0665 Binary files /dev/null and b/train2/pictures/a4b23271f377123b92556ce185de1cca.png differ diff --git a/train2/pictures/a4b5e6bc45182a485f3dc898f6c2ed83.png b/train2/pictures/a4b5e6bc45182a485f3dc898f6c2ed83.png new file mode 100644 index 0000000..c33944f Binary files /dev/null and b/train2/pictures/a4b5e6bc45182a485f3dc898f6c2ed83.png differ diff --git a/train2/pictures/a4bfbce26243102da4ab4df493b8dac0.png b/train2/pictures/a4bfbce26243102da4ab4df493b8dac0.png new file mode 100644 index 0000000..fb96ca6 Binary files /dev/null and b/train2/pictures/a4bfbce26243102da4ab4df493b8dac0.png differ diff --git a/train2/pictures/a4c945e3114313e43df414bab1fdc020.png b/train2/pictures/a4c945e3114313e43df414bab1fdc020.png new file mode 100644 index 0000000..8f0d339 Binary files /dev/null and b/train2/pictures/a4c945e3114313e43df414bab1fdc020.png differ diff --git a/train2/pictures/a4ca7911ddb8b10944dc918217c4c79a.png b/train2/pictures/a4ca7911ddb8b10944dc918217c4c79a.png new file mode 100644 index 0000000..f99d05c Binary files /dev/null and b/train2/pictures/a4ca7911ddb8b10944dc918217c4c79a.png differ diff --git a/train2/pictures/a4f521d24234ea835a7788d52c4497c8.png b/train2/pictures/a4f521d24234ea835a7788d52c4497c8.png new file mode 100644 index 0000000..d3d8936 Binary files /dev/null and b/train2/pictures/a4f521d24234ea835a7788d52c4497c8.png differ diff --git a/train2/pictures/a4f69bed7c6a0e02c465480de6dbcd4a.png b/train2/pictures/a4f69bed7c6a0e02c465480de6dbcd4a.png new file mode 100644 index 0000000..5cae02c Binary files /dev/null and b/train2/pictures/a4f69bed7c6a0e02c465480de6dbcd4a.png differ diff --git a/train2/pictures/a4fc4ae609f75bf53b355eeb811423d7.png b/train2/pictures/a4fc4ae609f75bf53b355eeb811423d7.png new file mode 100644 index 0000000..88e776c Binary files /dev/null and b/train2/pictures/a4fc4ae609f75bf53b355eeb811423d7.png differ diff --git a/train2/pictures/a502d411cef3aa61c1d7e6154a3c74ee.png b/train2/pictures/a502d411cef3aa61c1d7e6154a3c74ee.png new file mode 100644 index 0000000..4927d66 Binary files /dev/null and b/train2/pictures/a502d411cef3aa61c1d7e6154a3c74ee.png differ diff --git a/train2/pictures/a50d892de8b7b69919195c4786afe6ee.png b/train2/pictures/a50d892de8b7b69919195c4786afe6ee.png new file mode 100644 index 0000000..1420142 Binary files /dev/null and b/train2/pictures/a50d892de8b7b69919195c4786afe6ee.png differ diff --git a/train2/pictures/a51a22890b81a29bda2be921c430070b.png b/train2/pictures/a51a22890b81a29bda2be921c430070b.png new file mode 100644 index 0000000..e01864e Binary files /dev/null and b/train2/pictures/a51a22890b81a29bda2be921c430070b.png differ diff --git a/train2/pictures/a55ce36632ff628d89465dcac4e7fd2e.png b/train2/pictures/a55ce36632ff628d89465dcac4e7fd2e.png new file mode 100644 index 0000000..bab930c Binary files /dev/null and b/train2/pictures/a55ce36632ff628d89465dcac4e7fd2e.png differ diff --git a/train2/pictures/a58f7190a99378eff6b52c1ce4d23203.png b/train2/pictures/a58f7190a99378eff6b52c1ce4d23203.png new file mode 100644 index 0000000..3245111 Binary files /dev/null and b/train2/pictures/a58f7190a99378eff6b52c1ce4d23203.png differ diff --git a/train2/pictures/a5aeba7398e3da41b0532070f41cff08.png b/train2/pictures/a5aeba7398e3da41b0532070f41cff08.png new file mode 100644 index 0000000..1544bf2 Binary files /dev/null and b/train2/pictures/a5aeba7398e3da41b0532070f41cff08.png differ diff --git a/train2/pictures/a63aadefc55d2a90170ca410e71f969a.png b/train2/pictures/a63aadefc55d2a90170ca410e71f969a.png new file mode 100644 index 0000000..a1d00a1 Binary files /dev/null and b/train2/pictures/a63aadefc55d2a90170ca410e71f969a.png differ diff --git a/train2/pictures/a6738be647cfc4c5eadea6193b1fb7dd.png b/train2/pictures/a6738be647cfc4c5eadea6193b1fb7dd.png new file mode 100644 index 0000000..53991ff Binary files /dev/null and b/train2/pictures/a6738be647cfc4c5eadea6193b1fb7dd.png differ diff --git a/train2/pictures/a6883fcd4674129d67bf236bf8b136f3.png b/train2/pictures/a6883fcd4674129d67bf236bf8b136f3.png new file mode 100644 index 0000000..978a099 Binary files /dev/null and b/train2/pictures/a6883fcd4674129d67bf236bf8b136f3.png differ diff --git a/train2/pictures/a6b3a8463fc18ee66c20b238882c893a.png b/train2/pictures/a6b3a8463fc18ee66c20b238882c893a.png new file mode 100644 index 0000000..0691a5b Binary files /dev/null and b/train2/pictures/a6b3a8463fc18ee66c20b238882c893a.png differ diff --git a/train2/pictures/a6bce5133f0639e7b50f88f68d1ccb26.png b/train2/pictures/a6bce5133f0639e7b50f88f68d1ccb26.png new file mode 100644 index 0000000..6104ef5 Binary files /dev/null and b/train2/pictures/a6bce5133f0639e7b50f88f68d1ccb26.png differ diff --git a/train2/pictures/a6f51c7ff22942d3b1d276f619c12527.png b/train2/pictures/a6f51c7ff22942d3b1d276f619c12527.png new file mode 100644 index 0000000..59d68a2 Binary files /dev/null and b/train2/pictures/a6f51c7ff22942d3b1d276f619c12527.png differ diff --git a/train2/pictures/a705f8d9bb6902c1d1a9fce98f1b5f3b.png b/train2/pictures/a705f8d9bb6902c1d1a9fce98f1b5f3b.png new file mode 100644 index 0000000..28292dd Binary files /dev/null and b/train2/pictures/a705f8d9bb6902c1d1a9fce98f1b5f3b.png differ diff --git a/train2/pictures/a7204a9e5cadf0081e0a01feb29008a5.png b/train2/pictures/a7204a9e5cadf0081e0a01feb29008a5.png new file mode 100644 index 0000000..c51350c Binary files /dev/null and b/train2/pictures/a7204a9e5cadf0081e0a01feb29008a5.png differ diff --git a/train2/pictures/a720f32235ff5b55a949e2f0b42e82a6.png b/train2/pictures/a720f32235ff5b55a949e2f0b42e82a6.png new file mode 100644 index 0000000..c9681f5 Binary files /dev/null and b/train2/pictures/a720f32235ff5b55a949e2f0b42e82a6.png differ diff --git a/train2/pictures/a724797437ef2e1edd5de1d6ead2e88c.png b/train2/pictures/a724797437ef2e1edd5de1d6ead2e88c.png new file mode 100644 index 0000000..29678de Binary files /dev/null and b/train2/pictures/a724797437ef2e1edd5de1d6ead2e88c.png differ diff --git a/train2/pictures/a748c02b5dfada09ddcd5203c476d224.png b/train2/pictures/a748c02b5dfada09ddcd5203c476d224.png new file mode 100644 index 0000000..5af3798 Binary files /dev/null and b/train2/pictures/a748c02b5dfada09ddcd5203c476d224.png differ diff --git a/train2/pictures/a76989a02ad648e79978688190295bec.png b/train2/pictures/a76989a02ad648e79978688190295bec.png new file mode 100644 index 0000000..ff2b6db Binary files /dev/null and b/train2/pictures/a76989a02ad648e79978688190295bec.png differ diff --git a/train2/pictures/a76c0068a4b07ad1bc44e5ffbd7fb5ab.png b/train2/pictures/a76c0068a4b07ad1bc44e5ffbd7fb5ab.png new file mode 100644 index 0000000..b978cea Binary files /dev/null and b/train2/pictures/a76c0068a4b07ad1bc44e5ffbd7fb5ab.png differ diff --git a/train2/pictures/a77ba7b27fd923120f91e0d853885087.png b/train2/pictures/a77ba7b27fd923120f91e0d853885087.png new file mode 100644 index 0000000..d6dbb21 Binary files /dev/null and b/train2/pictures/a77ba7b27fd923120f91e0d853885087.png differ diff --git a/train2/pictures/a783e32f0c2cb657631858fc67ece375.png b/train2/pictures/a783e32f0c2cb657631858fc67ece375.png new file mode 100644 index 0000000..717e73e Binary files /dev/null and b/train2/pictures/a783e32f0c2cb657631858fc67ece375.png differ diff --git a/train2/pictures/a7988ff70534676e2e28ba67e91d8436.png b/train2/pictures/a7988ff70534676e2e28ba67e91d8436.png new file mode 100644 index 0000000..d2d1746 Binary files /dev/null and b/train2/pictures/a7988ff70534676e2e28ba67e91d8436.png differ diff --git a/train2/pictures/a7a28f95fc904e9fb020c99eda2cc6c0.png b/train2/pictures/a7a28f95fc904e9fb020c99eda2cc6c0.png new file mode 100644 index 0000000..69a01b6 Binary files /dev/null and b/train2/pictures/a7a28f95fc904e9fb020c99eda2cc6c0.png differ diff --git a/train2/pictures/a7b927e74deea73d7e106124aee9f889.png b/train2/pictures/a7b927e74deea73d7e106124aee9f889.png new file mode 100644 index 0000000..d9587ca Binary files /dev/null and b/train2/pictures/a7b927e74deea73d7e106124aee9f889.png differ diff --git a/train2/pictures/a7c0d097de6ee660261386e629cc5cb7.png b/train2/pictures/a7c0d097de6ee660261386e629cc5cb7.png new file mode 100644 index 0000000..cca3445 Binary files /dev/null and b/train2/pictures/a7c0d097de6ee660261386e629cc5cb7.png differ diff --git a/train2/pictures/a7d09fedbb484f1a7aa834b18bdadb88.png b/train2/pictures/a7d09fedbb484f1a7aa834b18bdadb88.png new file mode 100644 index 0000000..ff3ebef Binary files /dev/null and b/train2/pictures/a7d09fedbb484f1a7aa834b18bdadb88.png differ diff --git a/train2/pictures/a7e7deacf064e2c16a907a1f58703b4f.png b/train2/pictures/a7e7deacf064e2c16a907a1f58703b4f.png new file mode 100644 index 0000000..f0f82d8 Binary files /dev/null and b/train2/pictures/a7e7deacf064e2c16a907a1f58703b4f.png differ diff --git a/train2/pictures/a81378b7884ee173f328d3b7d255e2f4.png b/train2/pictures/a81378b7884ee173f328d3b7d255e2f4.png new file mode 100644 index 0000000..2395bf9 Binary files /dev/null and b/train2/pictures/a81378b7884ee173f328d3b7d255e2f4.png differ diff --git a/train2/pictures/a81381d071d84bce5e260023ca981ae8.png b/train2/pictures/a81381d071d84bce5e260023ca981ae8.png new file mode 100644 index 0000000..c586201 Binary files /dev/null and b/train2/pictures/a81381d071d84bce5e260023ca981ae8.png differ diff --git a/train2/pictures/a82643c325d77c40f39ba3f84d080923.png b/train2/pictures/a82643c325d77c40f39ba3f84d080923.png new file mode 100644 index 0000000..4936f71 Binary files /dev/null and b/train2/pictures/a82643c325d77c40f39ba3f84d080923.png differ diff --git a/train2/pictures/a855241c3f07ad79e5d155459fd145c1.png b/train2/pictures/a855241c3f07ad79e5d155459fd145c1.png new file mode 100644 index 0000000..0c4add6 Binary files /dev/null and b/train2/pictures/a855241c3f07ad79e5d155459fd145c1.png differ diff --git a/train2/pictures/a861bf53677391b4d4ccb411459fa263.png b/train2/pictures/a861bf53677391b4d4ccb411459fa263.png new file mode 100644 index 0000000..d4c885d Binary files /dev/null and b/train2/pictures/a861bf53677391b4d4ccb411459fa263.png differ diff --git a/train2/pictures/a89e7a76557bfca9386ccf4724b1b0a4.png b/train2/pictures/a89e7a76557bfca9386ccf4724b1b0a4.png new file mode 100644 index 0000000..0dd36b8 Binary files /dev/null and b/train2/pictures/a89e7a76557bfca9386ccf4724b1b0a4.png differ diff --git a/train2/pictures/a906858cccd39c2e0887d9b90f637543.png b/train2/pictures/a906858cccd39c2e0887d9b90f637543.png new file mode 100644 index 0000000..4d64f90 Binary files /dev/null and b/train2/pictures/a906858cccd39c2e0887d9b90f637543.png differ diff --git a/train2/pictures/a919e34d8ebb66a106ceeddbbca9b41b.png b/train2/pictures/a919e34d8ebb66a106ceeddbbca9b41b.png new file mode 100644 index 0000000..ade9156 Binary files /dev/null and b/train2/pictures/a919e34d8ebb66a106ceeddbbca9b41b.png differ diff --git a/train2/pictures/a955e9cc17c34501280c89a03cb66aad.png b/train2/pictures/a955e9cc17c34501280c89a03cb66aad.png new file mode 100644 index 0000000..c594874 Binary files /dev/null and b/train2/pictures/a955e9cc17c34501280c89a03cb66aad.png differ diff --git a/train2/pictures/a973e350b7bcb70f6d587d3d1a486dfe.png b/train2/pictures/a973e350b7bcb70f6d587d3d1a486dfe.png new file mode 100644 index 0000000..170e11a Binary files /dev/null and b/train2/pictures/a973e350b7bcb70f6d587d3d1a486dfe.png differ diff --git a/train2/pictures/a9a13d6543360bd21252513d21272b4d.png b/train2/pictures/a9a13d6543360bd21252513d21272b4d.png new file mode 100644 index 0000000..6f98f2d Binary files /dev/null and b/train2/pictures/a9a13d6543360bd21252513d21272b4d.png differ diff --git a/train2/pictures/a9ffbf89ad8b9ba1fb0fd3bb579d2fda.png b/train2/pictures/a9ffbf89ad8b9ba1fb0fd3bb579d2fda.png new file mode 100644 index 0000000..4924a5c Binary files /dev/null and b/train2/pictures/a9ffbf89ad8b9ba1fb0fd3bb579d2fda.png differ diff --git a/train2/pictures/aa1137e98c0fd4cb9abe9322c16f37eb.png b/train2/pictures/aa1137e98c0fd4cb9abe9322c16f37eb.png new file mode 100644 index 0000000..451f0f2 Binary files /dev/null and b/train2/pictures/aa1137e98c0fd4cb9abe9322c16f37eb.png differ diff --git a/train2/pictures/aa1bd3bacdcbc64aa0a4d687a6cb66be.png b/train2/pictures/aa1bd3bacdcbc64aa0a4d687a6cb66be.png new file mode 100644 index 0000000..75206b6 Binary files /dev/null and b/train2/pictures/aa1bd3bacdcbc64aa0a4d687a6cb66be.png differ diff --git a/train2/pictures/aa387eb9e8a8304c437ea85632635401.png b/train2/pictures/aa387eb9e8a8304c437ea85632635401.png new file mode 100644 index 0000000..ea94a53 Binary files /dev/null and b/train2/pictures/aa387eb9e8a8304c437ea85632635401.png differ diff --git a/train2/pictures/aa38a8054f220da3d40ef7669508708b.png b/train2/pictures/aa38a8054f220da3d40ef7669508708b.png new file mode 100644 index 0000000..97b0ee3 Binary files /dev/null and b/train2/pictures/aa38a8054f220da3d40ef7669508708b.png differ diff --git a/train2/pictures/aa62da06929b8a54b33349a00e36585b.png b/train2/pictures/aa62da06929b8a54b33349a00e36585b.png new file mode 100644 index 0000000..b903339 Binary files /dev/null and b/train2/pictures/aa62da06929b8a54b33349a00e36585b.png differ diff --git a/train2/pictures/aaa1f0ac964f0fd3a3cc582dfc61aa5f.png b/train2/pictures/aaa1f0ac964f0fd3a3cc582dfc61aa5f.png new file mode 100644 index 0000000..4041276 Binary files /dev/null and b/train2/pictures/aaa1f0ac964f0fd3a3cc582dfc61aa5f.png differ diff --git a/train2/pictures/aaa8ba5e0c53c69717852c9daa20b441.png b/train2/pictures/aaa8ba5e0c53c69717852c9daa20b441.png new file mode 100644 index 0000000..a09b40d Binary files /dev/null and b/train2/pictures/aaa8ba5e0c53c69717852c9daa20b441.png differ diff --git a/train2/pictures/aabaaef5c47526849bcdf5a082aaed2d.png b/train2/pictures/aabaaef5c47526849bcdf5a082aaed2d.png new file mode 100644 index 0000000..8d814a1 Binary files /dev/null and b/train2/pictures/aabaaef5c47526849bcdf5a082aaed2d.png differ diff --git a/train2/pictures/aabd10c986b8fc954c44432ba8cffe5c.png b/train2/pictures/aabd10c986b8fc954c44432ba8cffe5c.png new file mode 100644 index 0000000..158d4cc Binary files /dev/null and b/train2/pictures/aabd10c986b8fc954c44432ba8cffe5c.png differ diff --git a/train2/pictures/aace13fd28c13c24441afc9fc9653c10.png b/train2/pictures/aace13fd28c13c24441afc9fc9653c10.png new file mode 100644 index 0000000..d57a31a Binary files /dev/null and b/train2/pictures/aace13fd28c13c24441afc9fc9653c10.png differ diff --git a/train2/pictures/aadbfdbc4a2326d80d08e834ec48724f.png b/train2/pictures/aadbfdbc4a2326d80d08e834ec48724f.png new file mode 100644 index 0000000..d56e6af Binary files /dev/null and b/train2/pictures/aadbfdbc4a2326d80d08e834ec48724f.png differ diff --git a/train2/pictures/aaff764bfd67b0115d68db7778a7da80.png b/train2/pictures/aaff764bfd67b0115d68db7778a7da80.png new file mode 100644 index 0000000..2032473 Binary files /dev/null and b/train2/pictures/aaff764bfd67b0115d68db7778a7da80.png differ diff --git a/train2/pictures/ab182d36d8d5fbc2bf7488701aed85d6.png b/train2/pictures/ab182d36d8d5fbc2bf7488701aed85d6.png new file mode 100644 index 0000000..b28e16d Binary files /dev/null and b/train2/pictures/ab182d36d8d5fbc2bf7488701aed85d6.png differ diff --git a/train2/pictures/ab86242127722edc0dbec4e62bf06a52.png b/train2/pictures/ab86242127722edc0dbec4e62bf06a52.png new file mode 100644 index 0000000..b373828 Binary files /dev/null and b/train2/pictures/ab86242127722edc0dbec4e62bf06a52.png differ diff --git a/train2/pictures/ab8635b9d90ad7c7eac518b291b0b143.png b/train2/pictures/ab8635b9d90ad7c7eac518b291b0b143.png new file mode 100644 index 0000000..0fe443c Binary files /dev/null and b/train2/pictures/ab8635b9d90ad7c7eac518b291b0b143.png differ diff --git a/train2/pictures/abab2f0302588322701b33366091211a.png b/train2/pictures/abab2f0302588322701b33366091211a.png new file mode 100644 index 0000000..a2925d0 Binary files /dev/null and b/train2/pictures/abab2f0302588322701b33366091211a.png differ diff --git a/train2/pictures/abd54c3d3ff239aaf4730eea038275a6.png b/train2/pictures/abd54c3d3ff239aaf4730eea038275a6.png new file mode 100644 index 0000000..4aa2fe1 Binary files /dev/null and b/train2/pictures/abd54c3d3ff239aaf4730eea038275a6.png differ diff --git a/train2/pictures/ac06f6056149cd11154cd8acf944e431.png b/train2/pictures/ac06f6056149cd11154cd8acf944e431.png new file mode 100644 index 0000000..9eaab33 Binary files /dev/null and b/train2/pictures/ac06f6056149cd11154cd8acf944e431.png differ diff --git a/train2/pictures/ac148a2004612b256247e5463f06ab30.png b/train2/pictures/ac148a2004612b256247e5463f06ab30.png new file mode 100644 index 0000000..cb45a92 Binary files /dev/null and b/train2/pictures/ac148a2004612b256247e5463f06ab30.png differ diff --git a/train2/pictures/ac2e8e7848e2e6f1132a26bcd6add5de.png b/train2/pictures/ac2e8e7848e2e6f1132a26bcd6add5de.png new file mode 100644 index 0000000..9851c51 Binary files /dev/null and b/train2/pictures/ac2e8e7848e2e6f1132a26bcd6add5de.png differ diff --git a/train2/pictures/ac514e69607d55790ecc3dacd87532aa.png b/train2/pictures/ac514e69607d55790ecc3dacd87532aa.png new file mode 100644 index 0000000..0fc311d Binary files /dev/null and b/train2/pictures/ac514e69607d55790ecc3dacd87532aa.png differ diff --git a/train2/pictures/ac638d42b4f06e40b55d1378e8fdb970.png b/train2/pictures/ac638d42b4f06e40b55d1378e8fdb970.png new file mode 100644 index 0000000..991c034 Binary files /dev/null and b/train2/pictures/ac638d42b4f06e40b55d1378e8fdb970.png differ diff --git a/train2/pictures/ac7a28ea981c0452869ca73c50386030.png b/train2/pictures/ac7a28ea981c0452869ca73c50386030.png new file mode 100644 index 0000000..87e81a2 Binary files /dev/null and b/train2/pictures/ac7a28ea981c0452869ca73c50386030.png differ diff --git a/train2/pictures/ac871b85d75b8fd6bac9274857c5c46d.png b/train2/pictures/ac871b85d75b8fd6bac9274857c5c46d.png new file mode 100644 index 0000000..631d923 Binary files /dev/null and b/train2/pictures/ac871b85d75b8fd6bac9274857c5c46d.png differ diff --git a/train2/pictures/ac896a4d637620a455ceae81cea15813.png b/train2/pictures/ac896a4d637620a455ceae81cea15813.png new file mode 100644 index 0000000..c9b0023 Binary files /dev/null and b/train2/pictures/ac896a4d637620a455ceae81cea15813.png differ diff --git a/train2/pictures/aca431fb617d3519a039fb3fc235e980.png b/train2/pictures/aca431fb617d3519a039fb3fc235e980.png new file mode 100644 index 0000000..2376890 Binary files /dev/null and b/train2/pictures/aca431fb617d3519a039fb3fc235e980.png differ diff --git a/train2/pictures/acb11cf7a3515258f2ac9437dc6a2570.png b/train2/pictures/acb11cf7a3515258f2ac9437dc6a2570.png new file mode 100644 index 0000000..00caf4c Binary files /dev/null and b/train2/pictures/acb11cf7a3515258f2ac9437dc6a2570.png differ diff --git a/train2/pictures/acb5974ef9b53c45df6e4bebf0a06129.png b/train2/pictures/acb5974ef9b53c45df6e4bebf0a06129.png new file mode 100644 index 0000000..5345862 Binary files /dev/null and b/train2/pictures/acb5974ef9b53c45df6e4bebf0a06129.png differ diff --git a/train2/pictures/ace6fca1e0c25e95afa6b53f6db79c56.png b/train2/pictures/ace6fca1e0c25e95afa6b53f6db79c56.png new file mode 100644 index 0000000..8b8134d Binary files /dev/null and b/train2/pictures/ace6fca1e0c25e95afa6b53f6db79c56.png differ diff --git a/train2/pictures/ad0dcfa635d4e2059201ef05eafda135.png b/train2/pictures/ad0dcfa635d4e2059201ef05eafda135.png new file mode 100644 index 0000000..0dbb354 Binary files /dev/null and b/train2/pictures/ad0dcfa635d4e2059201ef05eafda135.png differ diff --git a/train2/pictures/ad21566a537bab70d19eaa0dbcefe7bb.png b/train2/pictures/ad21566a537bab70d19eaa0dbcefe7bb.png new file mode 100644 index 0000000..49dce71 Binary files /dev/null and b/train2/pictures/ad21566a537bab70d19eaa0dbcefe7bb.png differ diff --git a/train2/pictures/ad325ada07df5df296fc63934148c272.png b/train2/pictures/ad325ada07df5df296fc63934148c272.png new file mode 100644 index 0000000..0b08385 Binary files /dev/null and b/train2/pictures/ad325ada07df5df296fc63934148c272.png differ diff --git a/train2/pictures/ad5867fa24eef69bd0c563d3db9f05ee.png b/train2/pictures/ad5867fa24eef69bd0c563d3db9f05ee.png new file mode 100644 index 0000000..89c0c1e Binary files /dev/null and b/train2/pictures/ad5867fa24eef69bd0c563d3db9f05ee.png differ diff --git a/train2/pictures/ad594f551763295f92b4315e12615e30.png b/train2/pictures/ad594f551763295f92b4315e12615e30.png new file mode 100644 index 0000000..d506e56 Binary files /dev/null and b/train2/pictures/ad594f551763295f92b4315e12615e30.png differ diff --git a/train2/pictures/ad7de4ec0238af3e338e0be66874676c.png b/train2/pictures/ad7de4ec0238af3e338e0be66874676c.png new file mode 100644 index 0000000..61f62d8 Binary files /dev/null and b/train2/pictures/ad7de4ec0238af3e338e0be66874676c.png differ diff --git a/train2/pictures/ad9526e698639009de0c02cf2de42334.png b/train2/pictures/ad9526e698639009de0c02cf2de42334.png new file mode 100644 index 0000000..ee03432 Binary files /dev/null and b/train2/pictures/ad9526e698639009de0c02cf2de42334.png differ diff --git a/train2/pictures/ada922663cad0b6e57f549aaa101d812.png b/train2/pictures/ada922663cad0b6e57f549aaa101d812.png new file mode 100644 index 0000000..8080507 Binary files /dev/null and b/train2/pictures/ada922663cad0b6e57f549aaa101d812.png differ diff --git a/train2/pictures/adabac46b1755c4f1ba5ae3a442af1c4.png b/train2/pictures/adabac46b1755c4f1ba5ae3a442af1c4.png new file mode 100644 index 0000000..6b5c70d Binary files /dev/null and b/train2/pictures/adabac46b1755c4f1ba5ae3a442af1c4.png differ diff --git a/train2/pictures/adbde62e41dffff77bafeb38b4121b86.png b/train2/pictures/adbde62e41dffff77bafeb38b4121b86.png new file mode 100644 index 0000000..6451889 Binary files /dev/null and b/train2/pictures/adbde62e41dffff77bafeb38b4121b86.png differ diff --git a/train2/pictures/adfba4225059c42642935621393dde68.png b/train2/pictures/adfba4225059c42642935621393dde68.png new file mode 100644 index 0000000..981ca14 Binary files /dev/null and b/train2/pictures/adfba4225059c42642935621393dde68.png differ diff --git a/train2/pictures/ae1ef335b783015610c379d8f17bbbeb.png b/train2/pictures/ae1ef335b783015610c379d8f17bbbeb.png new file mode 100644 index 0000000..da76681 Binary files /dev/null and b/train2/pictures/ae1ef335b783015610c379d8f17bbbeb.png differ diff --git a/train2/pictures/ae42f9d860139652d5340981589f34e6.png b/train2/pictures/ae42f9d860139652d5340981589f34e6.png new file mode 100644 index 0000000..21aa5b7 Binary files /dev/null and b/train2/pictures/ae42f9d860139652d5340981589f34e6.png differ diff --git a/train2/pictures/ae5389e01b189940c66d3bcc743718ed.png b/train2/pictures/ae5389e01b189940c66d3bcc743718ed.png new file mode 100644 index 0000000..afed8e4 Binary files /dev/null and b/train2/pictures/ae5389e01b189940c66d3bcc743718ed.png differ diff --git a/train2/pictures/ae9dcd0b1ba324c5aeeb4b9e1e4ab400.png b/train2/pictures/ae9dcd0b1ba324c5aeeb4b9e1e4ab400.png new file mode 100644 index 0000000..8aaa94f Binary files /dev/null and b/train2/pictures/ae9dcd0b1ba324c5aeeb4b9e1e4ab400.png differ diff --git a/train2/pictures/aeb40b1c376931c494bd226cdcf6f122.png b/train2/pictures/aeb40b1c376931c494bd226cdcf6f122.png new file mode 100644 index 0000000..241785f Binary files /dev/null and b/train2/pictures/aeb40b1c376931c494bd226cdcf6f122.png differ diff --git a/train2/pictures/aeff2d7269d74ccab45b0e0cb8967d47.png b/train2/pictures/aeff2d7269d74ccab45b0e0cb8967d47.png new file mode 100644 index 0000000..2f55907 Binary files /dev/null and b/train2/pictures/aeff2d7269d74ccab45b0e0cb8967d47.png differ diff --git a/train2/pictures/af14e06bb18e42dc0186e625410c027c.png b/train2/pictures/af14e06bb18e42dc0186e625410c027c.png new file mode 100644 index 0000000..16a66f7 Binary files /dev/null and b/train2/pictures/af14e06bb18e42dc0186e625410c027c.png differ diff --git a/train2/pictures/af84a0dd72a7662c8e76e01acc28c643.png b/train2/pictures/af84a0dd72a7662c8e76e01acc28c643.png new file mode 100644 index 0000000..69a8421 Binary files /dev/null and b/train2/pictures/af84a0dd72a7662c8e76e01acc28c643.png differ diff --git a/train2/pictures/af86624b5b744f221dd88d2168a0f334.png b/train2/pictures/af86624b5b744f221dd88d2168a0f334.png new file mode 100644 index 0000000..279ab7f Binary files /dev/null and b/train2/pictures/af86624b5b744f221dd88d2168a0f334.png differ diff --git a/train2/pictures/af8d0e34d39d1e4cb6195b2f57826ef4.png b/train2/pictures/af8d0e34d39d1e4cb6195b2f57826ef4.png new file mode 100644 index 0000000..e238be9 Binary files /dev/null and b/train2/pictures/af8d0e34d39d1e4cb6195b2f57826ef4.png differ diff --git a/train2/pictures/b0002e620e3e1ccf34f79e82ea3ffc2a.png b/train2/pictures/b0002e620e3e1ccf34f79e82ea3ffc2a.png new file mode 100644 index 0000000..c787a5b Binary files /dev/null and b/train2/pictures/b0002e620e3e1ccf34f79e82ea3ffc2a.png differ diff --git a/train2/pictures/b0088a1f1ca6e46e18184e6bb79f2080.png b/train2/pictures/b0088a1f1ca6e46e18184e6bb79f2080.png new file mode 100644 index 0000000..a39d71a Binary files /dev/null and b/train2/pictures/b0088a1f1ca6e46e18184e6bb79f2080.png differ diff --git a/train2/pictures/b01ae9373c1782d4c4037822d5c9dd2c.png b/train2/pictures/b01ae9373c1782d4c4037822d5c9dd2c.png new file mode 100644 index 0000000..8483688 Binary files /dev/null and b/train2/pictures/b01ae9373c1782d4c4037822d5c9dd2c.png differ diff --git a/train2/pictures/b03b35937c54eda6949d79d13106d33e.png b/train2/pictures/b03b35937c54eda6949d79d13106d33e.png new file mode 100644 index 0000000..0d5c35f Binary files /dev/null and b/train2/pictures/b03b35937c54eda6949d79d13106d33e.png differ diff --git a/train2/pictures/b04531e04e97c742357463faa90c1ae0.png b/train2/pictures/b04531e04e97c742357463faa90c1ae0.png new file mode 100644 index 0000000..41fa7be Binary files /dev/null and b/train2/pictures/b04531e04e97c742357463faa90c1ae0.png differ diff --git a/train2/pictures/b05e26ee9069c26b163469b2d443fcbb.png b/train2/pictures/b05e26ee9069c26b163469b2d443fcbb.png new file mode 100644 index 0000000..614d6cb Binary files /dev/null and b/train2/pictures/b05e26ee9069c26b163469b2d443fcbb.png differ diff --git a/train2/pictures/b083dfc25f4bea34a555a8d2d9bc14a1.png b/train2/pictures/b083dfc25f4bea34a555a8d2d9bc14a1.png new file mode 100644 index 0000000..e4df36a Binary files /dev/null and b/train2/pictures/b083dfc25f4bea34a555a8d2d9bc14a1.png differ diff --git a/train2/pictures/b0a99aaae4460e8dc4bf1529e52eb3b6.png b/train2/pictures/b0a99aaae4460e8dc4bf1529e52eb3b6.png new file mode 100644 index 0000000..ee4b31b Binary files /dev/null and b/train2/pictures/b0a99aaae4460e8dc4bf1529e52eb3b6.png differ diff --git a/train2/pictures/b0df8743a1a0bd6b10002aa562d3b378.png b/train2/pictures/b0df8743a1a0bd6b10002aa562d3b378.png new file mode 100644 index 0000000..bfdd43a Binary files /dev/null and b/train2/pictures/b0df8743a1a0bd6b10002aa562d3b378.png differ diff --git a/train2/pictures/b0fc7431e57c518317973a26c35212e4.png b/train2/pictures/b0fc7431e57c518317973a26c35212e4.png new file mode 100644 index 0000000..226915d Binary files /dev/null and b/train2/pictures/b0fc7431e57c518317973a26c35212e4.png differ diff --git a/train2/pictures/b10270b3329bdae18f14a22f95f5e08d.png b/train2/pictures/b10270b3329bdae18f14a22f95f5e08d.png new file mode 100644 index 0000000..d5c1113 Binary files /dev/null and b/train2/pictures/b10270b3329bdae18f14a22f95f5e08d.png differ diff --git a/train2/pictures/b15802d13c656c6674ea5b17c6080f01.png b/train2/pictures/b15802d13c656c6674ea5b17c6080f01.png new file mode 100644 index 0000000..70e147d Binary files /dev/null and b/train2/pictures/b15802d13c656c6674ea5b17c6080f01.png differ diff --git a/train2/pictures/b15a062ab213c35e54f00d9a693cc150.png b/train2/pictures/b15a062ab213c35e54f00d9a693cc150.png new file mode 100644 index 0000000..a3f224c Binary files /dev/null and b/train2/pictures/b15a062ab213c35e54f00d9a693cc150.png differ diff --git a/train2/pictures/b183a3046d93f8db4a40a1d4b312b238.png b/train2/pictures/b183a3046d93f8db4a40a1d4b312b238.png new file mode 100644 index 0000000..b5802ff Binary files /dev/null and b/train2/pictures/b183a3046d93f8db4a40a1d4b312b238.png differ diff --git a/train2/pictures/b18553ec1f49e7ac45f7a24ba85a3557.png b/train2/pictures/b18553ec1f49e7ac45f7a24ba85a3557.png new file mode 100644 index 0000000..588bba2 Binary files /dev/null and b/train2/pictures/b18553ec1f49e7ac45f7a24ba85a3557.png differ diff --git a/train2/pictures/b18e08f460db09cd3c5e5986fa692a7e.png b/train2/pictures/b18e08f460db09cd3c5e5986fa692a7e.png new file mode 100644 index 0000000..335ccd7 Binary files /dev/null and b/train2/pictures/b18e08f460db09cd3c5e5986fa692a7e.png differ diff --git a/train2/pictures/b19bff2d7bff448518d0cc4d251d9b1b.png b/train2/pictures/b19bff2d7bff448518d0cc4d251d9b1b.png new file mode 100644 index 0000000..8a724a1 Binary files /dev/null and b/train2/pictures/b19bff2d7bff448518d0cc4d251d9b1b.png differ diff --git a/train2/pictures/b19c4303d6d4ee520ecb0176aed2a6c5.png b/train2/pictures/b19c4303d6d4ee520ecb0176aed2a6c5.png new file mode 100644 index 0000000..b1c1ee1 Binary files /dev/null and b/train2/pictures/b19c4303d6d4ee520ecb0176aed2a6c5.png differ diff --git a/train2/pictures/b1a8e765cd29c34207908d54b8bfce87.png b/train2/pictures/b1a8e765cd29c34207908d54b8bfce87.png new file mode 100644 index 0000000..b1d633b Binary files /dev/null and b/train2/pictures/b1a8e765cd29c34207908d54b8bfce87.png differ diff --git a/train2/pictures/b1c3a06964f62973c8971876b840333f.png b/train2/pictures/b1c3a06964f62973c8971876b840333f.png new file mode 100644 index 0000000..fca0f62 Binary files /dev/null and b/train2/pictures/b1c3a06964f62973c8971876b840333f.png differ diff --git a/train2/pictures/b1c9f6bcda7c38ed3f2fa51ae5ac78d5.png b/train2/pictures/b1c9f6bcda7c38ed3f2fa51ae5ac78d5.png new file mode 100644 index 0000000..486e8a6 Binary files /dev/null and b/train2/pictures/b1c9f6bcda7c38ed3f2fa51ae5ac78d5.png differ diff --git a/train2/pictures/b1ed9db25162498386cefb54a2eea72e.png b/train2/pictures/b1ed9db25162498386cefb54a2eea72e.png new file mode 100644 index 0000000..1afa2e7 Binary files /dev/null and b/train2/pictures/b1ed9db25162498386cefb54a2eea72e.png differ diff --git a/train2/pictures/b2057b2db0ab062fc395c1e5be4aff49.png b/train2/pictures/b2057b2db0ab062fc395c1e5be4aff49.png new file mode 100644 index 0000000..3831cb9 Binary files /dev/null and b/train2/pictures/b2057b2db0ab062fc395c1e5be4aff49.png differ diff --git a/train2/pictures/b20f551ce7079367f2fe85df57bfa100.png b/train2/pictures/b20f551ce7079367f2fe85df57bfa100.png new file mode 100644 index 0000000..3b38b13 Binary files /dev/null and b/train2/pictures/b20f551ce7079367f2fe85df57bfa100.png differ diff --git a/train2/pictures/b2208db4c5f012995b5d604df63b5568.png b/train2/pictures/b2208db4c5f012995b5d604df63b5568.png new file mode 100644 index 0000000..c676eac Binary files /dev/null and b/train2/pictures/b2208db4c5f012995b5d604df63b5568.png differ diff --git a/train2/pictures/b24faa53d862a4454ae8fa2515645a13.png b/train2/pictures/b24faa53d862a4454ae8fa2515645a13.png new file mode 100644 index 0000000..959c564 Binary files /dev/null and b/train2/pictures/b24faa53d862a4454ae8fa2515645a13.png differ diff --git a/train2/pictures/b2c3d57a2ae2ba91c2be2695af98672a.png b/train2/pictures/b2c3d57a2ae2ba91c2be2695af98672a.png new file mode 100644 index 0000000..ed7111c Binary files /dev/null and b/train2/pictures/b2c3d57a2ae2ba91c2be2695af98672a.png differ diff --git a/train2/pictures/b2f64a849310d43cf00020a590da7246.png b/train2/pictures/b2f64a849310d43cf00020a590da7246.png new file mode 100644 index 0000000..b6d13f2 Binary files /dev/null and b/train2/pictures/b2f64a849310d43cf00020a590da7246.png differ diff --git a/train2/pictures/b3266fbc0c603e0597da294145a3b939.png b/train2/pictures/b3266fbc0c603e0597da294145a3b939.png new file mode 100644 index 0000000..7184095 Binary files /dev/null and b/train2/pictures/b3266fbc0c603e0597da294145a3b939.png differ diff --git a/train2/pictures/b3270b3a2c3dcfc7b7a51a9c053d8bf2.png b/train2/pictures/b3270b3a2c3dcfc7b7a51a9c053d8bf2.png new file mode 100644 index 0000000..8cd4084 Binary files /dev/null and b/train2/pictures/b3270b3a2c3dcfc7b7a51a9c053d8bf2.png differ diff --git a/train2/pictures/b3327aafa3c4a9448ceecab7a28e83ba.png b/train2/pictures/b3327aafa3c4a9448ceecab7a28e83ba.png new file mode 100644 index 0000000..59a2470 Binary files /dev/null and b/train2/pictures/b3327aafa3c4a9448ceecab7a28e83ba.png differ diff --git a/train2/pictures/b33fa46c851ac1e2c0ce9f21c35678e5.png b/train2/pictures/b33fa46c851ac1e2c0ce9f21c35678e5.png new file mode 100644 index 0000000..6e964b4 Binary files /dev/null and b/train2/pictures/b33fa46c851ac1e2c0ce9f21c35678e5.png differ diff --git a/train2/pictures/b34d12840a9be1c42ef448433444964a.png b/train2/pictures/b34d12840a9be1c42ef448433444964a.png new file mode 100644 index 0000000..ca83944 Binary files /dev/null and b/train2/pictures/b34d12840a9be1c42ef448433444964a.png differ diff --git a/train2/pictures/b354ec358736c9399f301ef957199862.png b/train2/pictures/b354ec358736c9399f301ef957199862.png new file mode 100644 index 0000000..ec815e9 Binary files /dev/null and b/train2/pictures/b354ec358736c9399f301ef957199862.png differ diff --git a/train2/pictures/b35e26cf4b40a3884f113d23c6a6cc0c.png b/train2/pictures/b35e26cf4b40a3884f113d23c6a6cc0c.png new file mode 100644 index 0000000..1eb3cf0 Binary files /dev/null and b/train2/pictures/b35e26cf4b40a3884f113d23c6a6cc0c.png differ diff --git a/train2/pictures/b3695aae38ffaf7c2d366d061606a1e7.png b/train2/pictures/b3695aae38ffaf7c2d366d061606a1e7.png new file mode 100644 index 0000000..146ddb5 Binary files /dev/null and b/train2/pictures/b3695aae38ffaf7c2d366d061606a1e7.png differ diff --git a/train2/pictures/b374e40ac316e271aa669898edd810a6.png b/train2/pictures/b374e40ac316e271aa669898edd810a6.png new file mode 100644 index 0000000..9aa2ab3 Binary files /dev/null and b/train2/pictures/b374e40ac316e271aa669898edd810a6.png differ diff --git a/train2/pictures/b39c5c2fffa97783b32230249ce85cff.png b/train2/pictures/b39c5c2fffa97783b32230249ce85cff.png new file mode 100644 index 0000000..beff03a Binary files /dev/null and b/train2/pictures/b39c5c2fffa97783b32230249ce85cff.png differ diff --git a/train2/pictures/b3c4a23a8d216afe18e0e8e6311a7fb4.png b/train2/pictures/b3c4a23a8d216afe18e0e8e6311a7fb4.png new file mode 100644 index 0000000..7e1432c Binary files /dev/null and b/train2/pictures/b3c4a23a8d216afe18e0e8e6311a7fb4.png differ diff --git a/train2/pictures/b3c9e1f597cb7902acb3592ca978511b.png b/train2/pictures/b3c9e1f597cb7902acb3592ca978511b.png new file mode 100644 index 0000000..20bf555 Binary files /dev/null and b/train2/pictures/b3c9e1f597cb7902acb3592ca978511b.png differ diff --git a/train2/pictures/b3e40e51b6461f7da35372725ee38541.png b/train2/pictures/b3e40e51b6461f7da35372725ee38541.png new file mode 100644 index 0000000..16c43f5 Binary files /dev/null and b/train2/pictures/b3e40e51b6461f7da35372725ee38541.png differ diff --git a/train2/pictures/b3ef313d44d4bf061dda876078f3274e.png b/train2/pictures/b3ef313d44d4bf061dda876078f3274e.png new file mode 100644 index 0000000..201015a Binary files /dev/null and b/train2/pictures/b3ef313d44d4bf061dda876078f3274e.png differ diff --git a/train2/pictures/b40c97a1bf1283729f1b3bbfb9babdd0.png b/train2/pictures/b40c97a1bf1283729f1b3bbfb9babdd0.png new file mode 100644 index 0000000..3b6cbd7 Binary files /dev/null and b/train2/pictures/b40c97a1bf1283729f1b3bbfb9babdd0.png differ diff --git a/train2/pictures/b416a1439ff97a0706df05369ec3547d.png b/train2/pictures/b416a1439ff97a0706df05369ec3547d.png new file mode 100644 index 0000000..0b1871b Binary files /dev/null and b/train2/pictures/b416a1439ff97a0706df05369ec3547d.png differ diff --git a/train2/pictures/b41df83be949803a3423c0c98d86404d.png b/train2/pictures/b41df83be949803a3423c0c98d86404d.png new file mode 100644 index 0000000..8d7d955 Binary files /dev/null and b/train2/pictures/b41df83be949803a3423c0c98d86404d.png differ diff --git a/train2/pictures/b453551d159292de8f76ccd05ab3731d.png b/train2/pictures/b453551d159292de8f76ccd05ab3731d.png new file mode 100644 index 0000000..c077f96 Binary files /dev/null and b/train2/pictures/b453551d159292de8f76ccd05ab3731d.png differ diff --git a/train2/pictures/b4745249d6e473509cb4de626531d82f.png b/train2/pictures/b4745249d6e473509cb4de626531d82f.png new file mode 100644 index 0000000..e5f84ce Binary files /dev/null and b/train2/pictures/b4745249d6e473509cb4de626531d82f.png differ diff --git a/train2/pictures/b49496f9cf6695c913d7dd592b2a7501.png b/train2/pictures/b49496f9cf6695c913d7dd592b2a7501.png new file mode 100644 index 0000000..09fc7c2 Binary files /dev/null and b/train2/pictures/b49496f9cf6695c913d7dd592b2a7501.png differ diff --git a/train2/pictures/b4b2fed55fe3234085d5f3849688ea66.png b/train2/pictures/b4b2fed55fe3234085d5f3849688ea66.png new file mode 100644 index 0000000..ac5b2fe Binary files /dev/null and b/train2/pictures/b4b2fed55fe3234085d5f3849688ea66.png differ diff --git a/train2/pictures/b4b86d955125b764cb41bbd93a5c8138.png b/train2/pictures/b4b86d955125b764cb41bbd93a5c8138.png new file mode 100644 index 0000000..9270cd9 Binary files /dev/null and b/train2/pictures/b4b86d955125b764cb41bbd93a5c8138.png differ diff --git a/train2/pictures/b4bb86ace9aa340fa61a9f9563df9f67.png b/train2/pictures/b4bb86ace9aa340fa61a9f9563df9f67.png new file mode 100644 index 0000000..462ee22 Binary files /dev/null and b/train2/pictures/b4bb86ace9aa340fa61a9f9563df9f67.png differ diff --git a/train2/pictures/b4c224d8d57713408f29aba9ecaf23fc.png b/train2/pictures/b4c224d8d57713408f29aba9ecaf23fc.png new file mode 100644 index 0000000..3c4af26 Binary files /dev/null and b/train2/pictures/b4c224d8d57713408f29aba9ecaf23fc.png differ diff --git a/train2/pictures/b4e104b22b0c064321b4cd6ade1fbf72.png b/train2/pictures/b4e104b22b0c064321b4cd6ade1fbf72.png new file mode 100644 index 0000000..ab0c223 Binary files /dev/null and b/train2/pictures/b4e104b22b0c064321b4cd6ade1fbf72.png differ diff --git a/train2/pictures/b50155296c53636bde48a4bb2c40896d.png b/train2/pictures/b50155296c53636bde48a4bb2c40896d.png new file mode 100644 index 0000000..7114021 Binary files /dev/null and b/train2/pictures/b50155296c53636bde48a4bb2c40896d.png differ diff --git a/train2/pictures/b533434f5e16ded18264c77e58dbf70b.png b/train2/pictures/b533434f5e16ded18264c77e58dbf70b.png new file mode 100644 index 0000000..961910f Binary files /dev/null and b/train2/pictures/b533434f5e16ded18264c77e58dbf70b.png differ diff --git a/train2/pictures/b54fa537f44796be8ddadc7fb6f8b5a0.png b/train2/pictures/b54fa537f44796be8ddadc7fb6f8b5a0.png new file mode 100644 index 0000000..e9009bf Binary files /dev/null and b/train2/pictures/b54fa537f44796be8ddadc7fb6f8b5a0.png differ diff --git a/train2/pictures/b55257d2bd63ddddd6b07631c88cc97a.png b/train2/pictures/b55257d2bd63ddddd6b07631c88cc97a.png new file mode 100644 index 0000000..b37a9e5 Binary files /dev/null and b/train2/pictures/b55257d2bd63ddddd6b07631c88cc97a.png differ diff --git a/train2/pictures/b5542463702f5e70433cd3a62ccaf030.png b/train2/pictures/b5542463702f5e70433cd3a62ccaf030.png new file mode 100644 index 0000000..5979002 Binary files /dev/null and b/train2/pictures/b5542463702f5e70433cd3a62ccaf030.png differ diff --git a/train2/pictures/b586af50f0ed7fa0e1348dfb32bf505b.png b/train2/pictures/b586af50f0ed7fa0e1348dfb32bf505b.png new file mode 100644 index 0000000..be8ee0e Binary files /dev/null and b/train2/pictures/b586af50f0ed7fa0e1348dfb32bf505b.png differ diff --git a/train2/pictures/b5ba4ffff38ac9d613f6a2bcfe9dac84.png b/train2/pictures/b5ba4ffff38ac9d613f6a2bcfe9dac84.png new file mode 100644 index 0000000..4a8900c Binary files /dev/null and b/train2/pictures/b5ba4ffff38ac9d613f6a2bcfe9dac84.png differ diff --git a/train2/pictures/b5c034eb08ad1e982a90dd1e30c5c398.png b/train2/pictures/b5c034eb08ad1e982a90dd1e30c5c398.png new file mode 100644 index 0000000..d78d002 Binary files /dev/null and b/train2/pictures/b5c034eb08ad1e982a90dd1e30c5c398.png differ diff --git a/train2/pictures/b5d6bfdb54eaf03703378bbb1d98b32f.png b/train2/pictures/b5d6bfdb54eaf03703378bbb1d98b32f.png new file mode 100644 index 0000000..9ca89e1 Binary files /dev/null and b/train2/pictures/b5d6bfdb54eaf03703378bbb1d98b32f.png differ diff --git a/train2/pictures/b5e2f77c551435d5e395152bcca2b42e.png b/train2/pictures/b5e2f77c551435d5e395152bcca2b42e.png new file mode 100644 index 0000000..bb2e150 Binary files /dev/null and b/train2/pictures/b5e2f77c551435d5e395152bcca2b42e.png differ diff --git a/train2/pictures/b602d20c79dcd4595e1a910b31cb68f4.png b/train2/pictures/b602d20c79dcd4595e1a910b31cb68f4.png new file mode 100644 index 0000000..5811093 Binary files /dev/null and b/train2/pictures/b602d20c79dcd4595e1a910b31cb68f4.png differ diff --git a/train2/pictures/b637a855a84f033ef60fa9778fd59c25.png b/train2/pictures/b637a855a84f033ef60fa9778fd59c25.png new file mode 100644 index 0000000..d2a2970 Binary files /dev/null and b/train2/pictures/b637a855a84f033ef60fa9778fd59c25.png differ diff --git a/train2/pictures/b658fae322b35a4c07ac4f8562974755.png b/train2/pictures/b658fae322b35a4c07ac4f8562974755.png new file mode 100644 index 0000000..51029d1 Binary files /dev/null and b/train2/pictures/b658fae322b35a4c07ac4f8562974755.png differ diff --git a/train2/pictures/b66ace992c8ea84c422833be311e12a2.png b/train2/pictures/b66ace992c8ea84c422833be311e12a2.png new file mode 100644 index 0000000..0364e6a Binary files /dev/null and b/train2/pictures/b66ace992c8ea84c422833be311e12a2.png differ diff --git a/train2/pictures/b689fcd70f58c3f5d3e1fd59c4a9e420.png b/train2/pictures/b689fcd70f58c3f5d3e1fd59c4a9e420.png new file mode 100644 index 0000000..7ce1425 Binary files /dev/null and b/train2/pictures/b689fcd70f58c3f5d3e1fd59c4a9e420.png differ diff --git a/train2/pictures/b68d72687ea77d2b3589b16ce74b0b08.png b/train2/pictures/b68d72687ea77d2b3589b16ce74b0b08.png new file mode 100644 index 0000000..6147853 Binary files /dev/null and b/train2/pictures/b68d72687ea77d2b3589b16ce74b0b08.png differ diff --git a/train2/pictures/b69907efdae28f5fe46c3fd458c21cb1.png b/train2/pictures/b69907efdae28f5fe46c3fd458c21cb1.png new file mode 100644 index 0000000..ac1cd2b Binary files /dev/null and b/train2/pictures/b69907efdae28f5fe46c3fd458c21cb1.png differ diff --git a/train2/pictures/b6a5854c0eb6acba7e8793961625c485.png b/train2/pictures/b6a5854c0eb6acba7e8793961625c485.png new file mode 100644 index 0000000..cfa8328 Binary files /dev/null and b/train2/pictures/b6a5854c0eb6acba7e8793961625c485.png differ diff --git a/train2/pictures/b6ab54732226c94277665a48daa9b754.png b/train2/pictures/b6ab54732226c94277665a48daa9b754.png new file mode 100644 index 0000000..503b689 Binary files /dev/null and b/train2/pictures/b6ab54732226c94277665a48daa9b754.png differ diff --git a/train2/pictures/b6de69c2de31e1118290f4bb72ab3938.png b/train2/pictures/b6de69c2de31e1118290f4bb72ab3938.png new file mode 100644 index 0000000..7e99059 Binary files /dev/null and b/train2/pictures/b6de69c2de31e1118290f4bb72ab3938.png differ diff --git a/train2/pictures/b6ffbddf7c6c79b1189cd019c58c30fa.png b/train2/pictures/b6ffbddf7c6c79b1189cd019c58c30fa.png new file mode 100644 index 0000000..8c0129c Binary files /dev/null and b/train2/pictures/b6ffbddf7c6c79b1189cd019c58c30fa.png differ diff --git a/train2/pictures/b707bf75cd88e903e190e83c9dc669d3.png b/train2/pictures/b707bf75cd88e903e190e83c9dc669d3.png new file mode 100644 index 0000000..a1ec791 Binary files /dev/null and b/train2/pictures/b707bf75cd88e903e190e83c9dc669d3.png differ diff --git a/train2/pictures/b70cbe04b0a0c857f5c12783fc3738c7.png b/train2/pictures/b70cbe04b0a0c857f5c12783fc3738c7.png new file mode 100644 index 0000000..2edb787 Binary files /dev/null and b/train2/pictures/b70cbe04b0a0c857f5c12783fc3738c7.png differ diff --git a/train2/pictures/b714ea842f17038a28a9c169b4a42863.png b/train2/pictures/b714ea842f17038a28a9c169b4a42863.png new file mode 100644 index 0000000..cf8f7f1 Binary files /dev/null and b/train2/pictures/b714ea842f17038a28a9c169b4a42863.png differ diff --git a/train2/pictures/b73d0b6e6c1c4eac1da58e8c6c637258.png b/train2/pictures/b73d0b6e6c1c4eac1da58e8c6c637258.png new file mode 100644 index 0000000..343d83d Binary files /dev/null and b/train2/pictures/b73d0b6e6c1c4eac1da58e8c6c637258.png differ diff --git a/train2/pictures/b76890d1b980eca13e126cc4dfdde273.png b/train2/pictures/b76890d1b980eca13e126cc4dfdde273.png new file mode 100644 index 0000000..7db51e6 Binary files /dev/null and b/train2/pictures/b76890d1b980eca13e126cc4dfdde273.png differ diff --git a/train2/pictures/b779d073c9909fc9c9620d03066b30f0.png b/train2/pictures/b779d073c9909fc9c9620d03066b30f0.png new file mode 100644 index 0000000..6da8670 Binary files /dev/null and b/train2/pictures/b779d073c9909fc9c9620d03066b30f0.png differ diff --git a/train2/pictures/b7c437af1dac4a7c238647502b4f19d1.png b/train2/pictures/b7c437af1dac4a7c238647502b4f19d1.png new file mode 100644 index 0000000..5bb8ea8 Binary files /dev/null and b/train2/pictures/b7c437af1dac4a7c238647502b4f19d1.png differ diff --git a/train2/pictures/b8076ec5a701324d614a50435787d1bc.png b/train2/pictures/b8076ec5a701324d614a50435787d1bc.png new file mode 100644 index 0000000..91ff05e Binary files /dev/null and b/train2/pictures/b8076ec5a701324d614a50435787d1bc.png differ diff --git a/train2/pictures/b838c54a7c691cd7fb144a40f2c6a8d0.png b/train2/pictures/b838c54a7c691cd7fb144a40f2c6a8d0.png new file mode 100644 index 0000000..efe6c89 Binary files /dev/null and b/train2/pictures/b838c54a7c691cd7fb144a40f2c6a8d0.png differ diff --git a/train2/pictures/b843f04337d754f88b28b02449302582.png b/train2/pictures/b843f04337d754f88b28b02449302582.png new file mode 100644 index 0000000..4cdf44e Binary files /dev/null and b/train2/pictures/b843f04337d754f88b28b02449302582.png differ diff --git a/train2/pictures/b855ed51e436c9496c6bfc9e185a7420.png b/train2/pictures/b855ed51e436c9496c6bfc9e185a7420.png new file mode 100644 index 0000000..fdf8bef Binary files /dev/null and b/train2/pictures/b855ed51e436c9496c6bfc9e185a7420.png differ diff --git a/train2/pictures/b93198ab17a144b00e8c08ae63285605.png b/train2/pictures/b93198ab17a144b00e8c08ae63285605.png new file mode 100644 index 0000000..1ec8539 Binary files /dev/null and b/train2/pictures/b93198ab17a144b00e8c08ae63285605.png differ diff --git a/train2/pictures/b93b2000900d7ab350f4981d035a2053.png b/train2/pictures/b93b2000900d7ab350f4981d035a2053.png new file mode 100644 index 0000000..3e365ad Binary files /dev/null and b/train2/pictures/b93b2000900d7ab350f4981d035a2053.png differ diff --git a/train2/pictures/b95a706e4880b1822249f3dce42aa77c.png b/train2/pictures/b95a706e4880b1822249f3dce42aa77c.png new file mode 100644 index 0000000..e77036d Binary files /dev/null and b/train2/pictures/b95a706e4880b1822249f3dce42aa77c.png differ diff --git a/train2/pictures/b98b630e146007c3ec0ed9c405503a69.png b/train2/pictures/b98b630e146007c3ec0ed9c405503a69.png new file mode 100644 index 0000000..c290201 Binary files /dev/null and b/train2/pictures/b98b630e146007c3ec0ed9c405503a69.png differ diff --git a/train2/pictures/b98ee9af9a58f128f6711448dbb6a1ca.png b/train2/pictures/b98ee9af9a58f128f6711448dbb6a1ca.png new file mode 100644 index 0000000..3640ada Binary files /dev/null and b/train2/pictures/b98ee9af9a58f128f6711448dbb6a1ca.png differ diff --git a/train2/pictures/b9ab18cb116629329be88cfdaab7cb29.png b/train2/pictures/b9ab18cb116629329be88cfdaab7cb29.png new file mode 100644 index 0000000..488ba9f Binary files /dev/null and b/train2/pictures/b9ab18cb116629329be88cfdaab7cb29.png differ diff --git a/train2/pictures/b9c8a7d882b6bc4f06f513bf9bef6b1b.png b/train2/pictures/b9c8a7d882b6bc4f06f513bf9bef6b1b.png new file mode 100644 index 0000000..eb1f356 Binary files /dev/null and b/train2/pictures/b9c8a7d882b6bc4f06f513bf9bef6b1b.png differ diff --git a/train2/pictures/b9cf8ac298916fe0196bb2e4d45ee6d9.png b/train2/pictures/b9cf8ac298916fe0196bb2e4d45ee6d9.png new file mode 100644 index 0000000..e027beb Binary files /dev/null and b/train2/pictures/b9cf8ac298916fe0196bb2e4d45ee6d9.png differ diff --git a/train2/pictures/ba15dd8eaf5bdcde05378da977feba69.png b/train2/pictures/ba15dd8eaf5bdcde05378da977feba69.png new file mode 100644 index 0000000..bbab32c Binary files /dev/null and b/train2/pictures/ba15dd8eaf5bdcde05378da977feba69.png differ diff --git a/train2/pictures/ba31c3f1ec037ba91e346fe61ad8f3ea.png b/train2/pictures/ba31c3f1ec037ba91e346fe61ad8f3ea.png new file mode 100644 index 0000000..833dd36 Binary files /dev/null and b/train2/pictures/ba31c3f1ec037ba91e346fe61ad8f3ea.png differ diff --git a/train2/pictures/ba3ac056409bb28c2c9455f7b6d95ef0.png b/train2/pictures/ba3ac056409bb28c2c9455f7b6d95ef0.png new file mode 100644 index 0000000..e1bae34 Binary files /dev/null and b/train2/pictures/ba3ac056409bb28c2c9455f7b6d95ef0.png differ diff --git a/train2/pictures/ba450f1d3a5ca2d66aa30c1cc0a25d75.png b/train2/pictures/ba450f1d3a5ca2d66aa30c1cc0a25d75.png new file mode 100644 index 0000000..9ef388f Binary files /dev/null and b/train2/pictures/ba450f1d3a5ca2d66aa30c1cc0a25d75.png differ diff --git a/train2/pictures/ba48a3e8c5d1578484d914627a23c49d.png b/train2/pictures/ba48a3e8c5d1578484d914627a23c49d.png new file mode 100644 index 0000000..2973c82 Binary files /dev/null and b/train2/pictures/ba48a3e8c5d1578484d914627a23c49d.png differ diff --git a/train2/pictures/bab45bfe0c53417191bd00bc432654dc.png b/train2/pictures/bab45bfe0c53417191bd00bc432654dc.png new file mode 100644 index 0000000..54c5e50 Binary files /dev/null and b/train2/pictures/bab45bfe0c53417191bd00bc432654dc.png differ diff --git a/train2/pictures/bae0a16b04ae1802bdbe24ee9f5ffc0b.png b/train2/pictures/bae0a16b04ae1802bdbe24ee9f5ffc0b.png new file mode 100644 index 0000000..53253a3 Binary files /dev/null and b/train2/pictures/bae0a16b04ae1802bdbe24ee9f5ffc0b.png differ diff --git a/train2/pictures/bb3294fd9d12a6873ebe72f49b319f5b.png b/train2/pictures/bb3294fd9d12a6873ebe72f49b319f5b.png new file mode 100644 index 0000000..e25bb6a Binary files /dev/null and b/train2/pictures/bb3294fd9d12a6873ebe72f49b319f5b.png differ diff --git a/train2/pictures/bb4f37d78690196220faec6fcbc2f1ec.png b/train2/pictures/bb4f37d78690196220faec6fcbc2f1ec.png new file mode 100644 index 0000000..a364f7d Binary files /dev/null and b/train2/pictures/bb4f37d78690196220faec6fcbc2f1ec.png differ diff --git a/train2/pictures/bbbfeaa3508a1d4a676ef319efe26a13.png b/train2/pictures/bbbfeaa3508a1d4a676ef319efe26a13.png new file mode 100644 index 0000000..597bdab Binary files /dev/null and b/train2/pictures/bbbfeaa3508a1d4a676ef319efe26a13.png differ diff --git a/train2/pictures/bbcc6cc00a9918c9b98aac737252a89e.png b/train2/pictures/bbcc6cc00a9918c9b98aac737252a89e.png new file mode 100644 index 0000000..83e29a8 Binary files /dev/null and b/train2/pictures/bbcc6cc00a9918c9b98aac737252a89e.png differ diff --git a/train2/pictures/bbd33a7516dc04b59fa4fdab5dfc8b2b.png b/train2/pictures/bbd33a7516dc04b59fa4fdab5dfc8b2b.png new file mode 100644 index 0000000..ee5afbc Binary files /dev/null and b/train2/pictures/bbd33a7516dc04b59fa4fdab5dfc8b2b.png differ diff --git a/train2/pictures/bbecf0719a4767d327f955167958b851.png b/train2/pictures/bbecf0719a4767d327f955167958b851.png new file mode 100644 index 0000000..5f27034 Binary files /dev/null and b/train2/pictures/bbecf0719a4767d327f955167958b851.png differ diff --git a/train2/pictures/bc04d79eb59858f747730507b3a1aee7.png b/train2/pictures/bc04d79eb59858f747730507b3a1aee7.png new file mode 100644 index 0000000..fea5161 Binary files /dev/null and b/train2/pictures/bc04d79eb59858f747730507b3a1aee7.png differ diff --git a/train2/pictures/bc0df8cc4247f7f8a9183813480c9651.png b/train2/pictures/bc0df8cc4247f7f8a9183813480c9651.png new file mode 100644 index 0000000..5220a5d Binary files /dev/null and b/train2/pictures/bc0df8cc4247f7f8a9183813480c9651.png differ diff --git a/train2/pictures/bc169ab29423a48a132570e6411b5843.png b/train2/pictures/bc169ab29423a48a132570e6411b5843.png new file mode 100644 index 0000000..cef2b3c Binary files /dev/null and b/train2/pictures/bc169ab29423a48a132570e6411b5843.png differ diff --git a/train2/pictures/bc63da48738621434c77866a6238e399.png b/train2/pictures/bc63da48738621434c77866a6238e399.png new file mode 100644 index 0000000..88e50a9 Binary files /dev/null and b/train2/pictures/bc63da48738621434c77866a6238e399.png differ diff --git a/train2/pictures/bc83cbdbd3824b2c793f45eac670b3ee.png b/train2/pictures/bc83cbdbd3824b2c793f45eac670b3ee.png new file mode 100644 index 0000000..b6dc5a6 Binary files /dev/null and b/train2/pictures/bc83cbdbd3824b2c793f45eac670b3ee.png differ diff --git a/train2/pictures/bcb3345096207a3149cdc165ea848e1e.png b/train2/pictures/bcb3345096207a3149cdc165ea848e1e.png new file mode 100644 index 0000000..8c74627 Binary files /dev/null and b/train2/pictures/bcb3345096207a3149cdc165ea848e1e.png differ diff --git a/train2/pictures/bccce8da4f3d92f8d204a480a83c7f1f.png b/train2/pictures/bccce8da4f3d92f8d204a480a83c7f1f.png new file mode 100644 index 0000000..5d86432 Binary files /dev/null and b/train2/pictures/bccce8da4f3d92f8d204a480a83c7f1f.png differ diff --git a/train2/pictures/bcd601ec836d75ff9c681b6af7f25df4.png b/train2/pictures/bcd601ec836d75ff9c681b6af7f25df4.png new file mode 100644 index 0000000..db1f766 Binary files /dev/null and b/train2/pictures/bcd601ec836d75ff9c681b6af7f25df4.png differ diff --git a/train2/pictures/bce0c32e086fa525f5a2f7f07955e399.png b/train2/pictures/bce0c32e086fa525f5a2f7f07955e399.png new file mode 100644 index 0000000..17e7996 Binary files /dev/null and b/train2/pictures/bce0c32e086fa525f5a2f7f07955e399.png differ diff --git a/train2/pictures/bd09dd5330b206497ecad8fe4314d15e.png b/train2/pictures/bd09dd5330b206497ecad8fe4314d15e.png new file mode 100644 index 0000000..4c001ba Binary files /dev/null and b/train2/pictures/bd09dd5330b206497ecad8fe4314d15e.png differ diff --git a/train2/pictures/bd24c32a9c0014da9d32351a9d9ecfd5.png b/train2/pictures/bd24c32a9c0014da9d32351a9d9ecfd5.png new file mode 100644 index 0000000..c5f052a Binary files /dev/null and b/train2/pictures/bd24c32a9c0014da9d32351a9d9ecfd5.png differ diff --git a/train2/pictures/bd325c578bb4d958fbb29dbca8203c60.png b/train2/pictures/bd325c578bb4d958fbb29dbca8203c60.png new file mode 100644 index 0000000..a9d8724 Binary files /dev/null and b/train2/pictures/bd325c578bb4d958fbb29dbca8203c60.png differ diff --git a/train2/pictures/bd995d8526f6a6880db6726d497f5439.png b/train2/pictures/bd995d8526f6a6880db6726d497f5439.png new file mode 100644 index 0000000..c30063d Binary files /dev/null and b/train2/pictures/bd995d8526f6a6880db6726d497f5439.png differ diff --git a/train2/pictures/bda80923033dd684a56bd98870b113d8.png b/train2/pictures/bda80923033dd684a56bd98870b113d8.png new file mode 100644 index 0000000..d6e2459 Binary files /dev/null and b/train2/pictures/bda80923033dd684a56bd98870b113d8.png differ diff --git a/train2/pictures/bdb05e3024e8e4d75e6fc896f36de138.png b/train2/pictures/bdb05e3024e8e4d75e6fc896f36de138.png new file mode 100644 index 0000000..9ef613c Binary files /dev/null and b/train2/pictures/bdb05e3024e8e4d75e6fc896f36de138.png differ diff --git a/train2/pictures/bdd33625feef91c0cbca63da6651a5d7.png b/train2/pictures/bdd33625feef91c0cbca63da6651a5d7.png new file mode 100644 index 0000000..63a8f56 Binary files /dev/null and b/train2/pictures/bdd33625feef91c0cbca63da6651a5d7.png differ diff --git a/train2/pictures/be27177032daf16145ee80c28a49d062.png b/train2/pictures/be27177032daf16145ee80c28a49d062.png new file mode 100644 index 0000000..4fed376 Binary files /dev/null and b/train2/pictures/be27177032daf16145ee80c28a49d062.png differ diff --git a/train2/pictures/be4342db7de92ba3cf5ff64e4071f05c.png b/train2/pictures/be4342db7de92ba3cf5ff64e4071f05c.png new file mode 100644 index 0000000..e78ea19 Binary files /dev/null and b/train2/pictures/be4342db7de92ba3cf5ff64e4071f05c.png differ diff --git a/train2/pictures/be6a041545309742f38a299b4f28b1cb.png b/train2/pictures/be6a041545309742f38a299b4f28b1cb.png new file mode 100644 index 0000000..29eaa5c Binary files /dev/null and b/train2/pictures/be6a041545309742f38a299b4f28b1cb.png differ diff --git a/train2/pictures/be8679c212e0ddd8f2ca23335c9c73a1.png b/train2/pictures/be8679c212e0ddd8f2ca23335c9c73a1.png new file mode 100644 index 0000000..e4dda39 Binary files /dev/null and b/train2/pictures/be8679c212e0ddd8f2ca23335c9c73a1.png differ diff --git a/train2/pictures/be92ff8667a8d9f294e40edd28d3b03e.png b/train2/pictures/be92ff8667a8d9f294e40edd28d3b03e.png new file mode 100644 index 0000000..edcea8f Binary files /dev/null and b/train2/pictures/be92ff8667a8d9f294e40edd28d3b03e.png differ diff --git a/train2/pictures/be98079e32c6811a590ec14c378be8a7.png b/train2/pictures/be98079e32c6811a590ec14c378be8a7.png new file mode 100644 index 0000000..24c2e73 Binary files /dev/null and b/train2/pictures/be98079e32c6811a590ec14c378be8a7.png differ diff --git a/train2/pictures/bea95b18b35a64dab4ec2b11a13a03be.png b/train2/pictures/bea95b18b35a64dab4ec2b11a13a03be.png new file mode 100644 index 0000000..0b40fa8 Binary files /dev/null and b/train2/pictures/bea95b18b35a64dab4ec2b11a13a03be.png differ diff --git a/train2/pictures/bebc89ae92923f1a00cff85a909271ef.png b/train2/pictures/bebc89ae92923f1a00cff85a909271ef.png new file mode 100644 index 0000000..be13cc9 Binary files /dev/null and b/train2/pictures/bebc89ae92923f1a00cff85a909271ef.png differ diff --git a/train2/pictures/bec5b5117e08323c353265f438a3ec71.png b/train2/pictures/bec5b5117e08323c353265f438a3ec71.png new file mode 100644 index 0000000..231ef47 Binary files /dev/null and b/train2/pictures/bec5b5117e08323c353265f438a3ec71.png differ diff --git a/train2/pictures/bed15e67d938327285947588bd3b239e.png b/train2/pictures/bed15e67d938327285947588bd3b239e.png new file mode 100644 index 0000000..56b2393 Binary files /dev/null and b/train2/pictures/bed15e67d938327285947588bd3b239e.png differ diff --git a/train2/pictures/beda504163dd2adf11644f102bdae300.png b/train2/pictures/beda504163dd2adf11644f102bdae300.png new file mode 100644 index 0000000..8ac47d8 Binary files /dev/null and b/train2/pictures/beda504163dd2adf11644f102bdae300.png differ diff --git a/train2/pictures/bedee5f1f3c3daccc9659690003cc543.png b/train2/pictures/bedee5f1f3c3daccc9659690003cc543.png new file mode 100644 index 0000000..fea4b39 Binary files /dev/null and b/train2/pictures/bedee5f1f3c3daccc9659690003cc543.png differ diff --git a/train2/pictures/bf0e554ef69ca85b6beafac73e1a3dde.png b/train2/pictures/bf0e554ef69ca85b6beafac73e1a3dde.png new file mode 100644 index 0000000..bd8eb9c Binary files /dev/null and b/train2/pictures/bf0e554ef69ca85b6beafac73e1a3dde.png differ diff --git a/train2/pictures/bf25a1c3bd67e4f667eed31e17fedc8a.png b/train2/pictures/bf25a1c3bd67e4f667eed31e17fedc8a.png new file mode 100644 index 0000000..0aed436 Binary files /dev/null and b/train2/pictures/bf25a1c3bd67e4f667eed31e17fedc8a.png differ diff --git a/train2/pictures/bf3566a936af39b1f5ab326341ed122c.png b/train2/pictures/bf3566a936af39b1f5ab326341ed122c.png new file mode 100644 index 0000000..a1642e2 Binary files /dev/null and b/train2/pictures/bf3566a936af39b1f5ab326341ed122c.png differ diff --git a/train2/pictures/bf48e1691e25f41d02afa71179ef88e0.png b/train2/pictures/bf48e1691e25f41d02afa71179ef88e0.png new file mode 100644 index 0000000..82a62a8 Binary files /dev/null and b/train2/pictures/bf48e1691e25f41d02afa71179ef88e0.png differ diff --git a/train2/pictures/bf6836b90be7f9cf2acd2bd8ee11b19d.png b/train2/pictures/bf6836b90be7f9cf2acd2bd8ee11b19d.png new file mode 100644 index 0000000..f77631c Binary files /dev/null and b/train2/pictures/bf6836b90be7f9cf2acd2bd8ee11b19d.png differ diff --git a/train2/pictures/bf8f4247475b53d5833e0d01b4040d8b.png b/train2/pictures/bf8f4247475b53d5833e0d01b4040d8b.png new file mode 100644 index 0000000..14bd2dc Binary files /dev/null and b/train2/pictures/bf8f4247475b53d5833e0d01b4040d8b.png differ diff --git a/train2/pictures/bf916e7150eed155a95564edb3fc58ba.png b/train2/pictures/bf916e7150eed155a95564edb3fc58ba.png new file mode 100644 index 0000000..43ff21f Binary files /dev/null and b/train2/pictures/bf916e7150eed155a95564edb3fc58ba.png differ diff --git a/train2/pictures/c00672dbcc97e67bb0c6921c4f2cab3d.png b/train2/pictures/c00672dbcc97e67bb0c6921c4f2cab3d.png new file mode 100644 index 0000000..6ddf3c2 Binary files /dev/null and b/train2/pictures/c00672dbcc97e67bb0c6921c4f2cab3d.png differ diff --git a/train2/pictures/c00c3f52729f9d51d2dc1f80d2a0ea57.png b/train2/pictures/c00c3f52729f9d51d2dc1f80d2a0ea57.png new file mode 100644 index 0000000..5759c07 Binary files /dev/null and b/train2/pictures/c00c3f52729f9d51d2dc1f80d2a0ea57.png differ diff --git a/train2/pictures/c015e59ccddedd4e59923b1b13230420.png b/train2/pictures/c015e59ccddedd4e59923b1b13230420.png new file mode 100644 index 0000000..0c6a2fd Binary files /dev/null and b/train2/pictures/c015e59ccddedd4e59923b1b13230420.png differ diff --git a/train2/pictures/c030144d56574da9a71d9fd89ff2fcf1.png b/train2/pictures/c030144d56574da9a71d9fd89ff2fcf1.png new file mode 100644 index 0000000..7574910 Binary files /dev/null and b/train2/pictures/c030144d56574da9a71d9fd89ff2fcf1.png differ diff --git a/train2/pictures/c08451af1179550e7c01633912e1f2d2.png b/train2/pictures/c08451af1179550e7c01633912e1f2d2.png new file mode 100644 index 0000000..73c8886 Binary files /dev/null and b/train2/pictures/c08451af1179550e7c01633912e1f2d2.png differ diff --git a/train2/pictures/c0c63bac0d235a294cdc1bfbd216357f.png b/train2/pictures/c0c63bac0d235a294cdc1bfbd216357f.png new file mode 100644 index 0000000..c66e2ed Binary files /dev/null and b/train2/pictures/c0c63bac0d235a294cdc1bfbd216357f.png differ diff --git a/train2/pictures/c0d8d2471d2c74e5a7479c4596fa04a9.png b/train2/pictures/c0d8d2471d2c74e5a7479c4596fa04a9.png new file mode 100644 index 0000000..9fb08f3 Binary files /dev/null and b/train2/pictures/c0d8d2471d2c74e5a7479c4596fa04a9.png differ diff --git a/train2/pictures/c0dad39b388d38fbd3ba0ec5467033e8.png b/train2/pictures/c0dad39b388d38fbd3ba0ec5467033e8.png new file mode 100644 index 0000000..c9faa0e Binary files /dev/null and b/train2/pictures/c0dad39b388d38fbd3ba0ec5467033e8.png differ diff --git a/train2/pictures/c122d6b4b4f2c0be4ce913c0cf1316b3.png b/train2/pictures/c122d6b4b4f2c0be4ce913c0cf1316b3.png new file mode 100644 index 0000000..88f9577 Binary files /dev/null and b/train2/pictures/c122d6b4b4f2c0be4ce913c0cf1316b3.png differ diff --git a/train2/pictures/c1346d75aec75fddfda84d6d6eeedfeb.png b/train2/pictures/c1346d75aec75fddfda84d6d6eeedfeb.png new file mode 100644 index 0000000..d320a3d Binary files /dev/null and b/train2/pictures/c1346d75aec75fddfda84d6d6eeedfeb.png differ diff --git a/train2/pictures/c13b3587d4da9bc5f7726032d24601ca.png b/train2/pictures/c13b3587d4da9bc5f7726032d24601ca.png new file mode 100644 index 0000000..a4d328d Binary files /dev/null and b/train2/pictures/c13b3587d4da9bc5f7726032d24601ca.png differ diff --git a/train2/pictures/c147dc37b86c5012981ddb1290380ed2.png b/train2/pictures/c147dc37b86c5012981ddb1290380ed2.png new file mode 100644 index 0000000..436340a Binary files /dev/null and b/train2/pictures/c147dc37b86c5012981ddb1290380ed2.png differ diff --git a/train2/pictures/c14b26ab7d6e84d7b63a40f7f3249e08.png b/train2/pictures/c14b26ab7d6e84d7b63a40f7f3249e08.png new file mode 100644 index 0000000..ead1fe8 Binary files /dev/null and b/train2/pictures/c14b26ab7d6e84d7b63a40f7f3249e08.png differ diff --git a/train2/pictures/c15141374700a4476a4b9dad4a42131f.png b/train2/pictures/c15141374700a4476a4b9dad4a42131f.png new file mode 100644 index 0000000..83c9baf Binary files /dev/null and b/train2/pictures/c15141374700a4476a4b9dad4a42131f.png differ diff --git a/train2/pictures/c17a8c103630b7e76e7e35312fbfa117.png b/train2/pictures/c17a8c103630b7e76e7e35312fbfa117.png new file mode 100644 index 0000000..6b63385 Binary files /dev/null and b/train2/pictures/c17a8c103630b7e76e7e35312fbfa117.png differ diff --git a/train2/pictures/c1b5c3e28feafe860b4fd9343a3b0ee6.png b/train2/pictures/c1b5c3e28feafe860b4fd9343a3b0ee6.png new file mode 100644 index 0000000..f9ff1d4 Binary files /dev/null and b/train2/pictures/c1b5c3e28feafe860b4fd9343a3b0ee6.png differ diff --git a/train2/pictures/c23b9d919ca046719fffa9c2335e5872.png b/train2/pictures/c23b9d919ca046719fffa9c2335e5872.png new file mode 100644 index 0000000..056861e Binary files /dev/null and b/train2/pictures/c23b9d919ca046719fffa9c2335e5872.png differ diff --git a/train2/pictures/c241573a2c446259311dbda4e31019fd.png b/train2/pictures/c241573a2c446259311dbda4e31019fd.png new file mode 100644 index 0000000..c6e953f Binary files /dev/null and b/train2/pictures/c241573a2c446259311dbda4e31019fd.png differ diff --git a/train2/pictures/c2985b55a6a4f5b9e374e5fd8583c27c.png b/train2/pictures/c2985b55a6a4f5b9e374e5fd8583c27c.png new file mode 100644 index 0000000..8426a2a Binary files /dev/null and b/train2/pictures/c2985b55a6a4f5b9e374e5fd8583c27c.png differ diff --git a/train2/pictures/c2db4fd6097adc9c06fc93c766094328.png b/train2/pictures/c2db4fd6097adc9c06fc93c766094328.png new file mode 100644 index 0000000..2a1770b Binary files /dev/null and b/train2/pictures/c2db4fd6097adc9c06fc93c766094328.png differ diff --git a/train2/pictures/c332913090033d734942c608145a78b4.png b/train2/pictures/c332913090033d734942c608145a78b4.png new file mode 100644 index 0000000..c33dfdc Binary files /dev/null and b/train2/pictures/c332913090033d734942c608145a78b4.png differ diff --git a/train2/pictures/c345341697830010ab2a608f168a18a6.png b/train2/pictures/c345341697830010ab2a608f168a18a6.png new file mode 100644 index 0000000..9ab2da0 Binary files /dev/null and b/train2/pictures/c345341697830010ab2a608f168a18a6.png differ diff --git a/train2/pictures/c36f21cdbcaa12d44bd5aaa07e7147e1.png b/train2/pictures/c36f21cdbcaa12d44bd5aaa07e7147e1.png new file mode 100644 index 0000000..63ce37c Binary files /dev/null and b/train2/pictures/c36f21cdbcaa12d44bd5aaa07e7147e1.png differ diff --git a/train2/pictures/c3ca0f6273e17a7ccbfd28bbdf7919bf.png b/train2/pictures/c3ca0f6273e17a7ccbfd28bbdf7919bf.png new file mode 100644 index 0000000..687aa26 Binary files /dev/null and b/train2/pictures/c3ca0f6273e17a7ccbfd28bbdf7919bf.png differ diff --git a/train2/pictures/c3e4d4cb76c3c173bc824a1c9e6a1547.png b/train2/pictures/c3e4d4cb76c3c173bc824a1c9e6a1547.png new file mode 100644 index 0000000..92fdb67 Binary files /dev/null and b/train2/pictures/c3e4d4cb76c3c173bc824a1c9e6a1547.png differ diff --git a/train2/pictures/c3f2566b062045e8f0fb95ea8ca7e72d.png b/train2/pictures/c3f2566b062045e8f0fb95ea8ca7e72d.png new file mode 100644 index 0000000..ba69727 Binary files /dev/null and b/train2/pictures/c3f2566b062045e8f0fb95ea8ca7e72d.png differ diff --git a/train2/pictures/c42830c72d5e2540bc1be778ff60de67.png b/train2/pictures/c42830c72d5e2540bc1be778ff60de67.png new file mode 100644 index 0000000..248beab Binary files /dev/null and b/train2/pictures/c42830c72d5e2540bc1be778ff60de67.png differ diff --git a/train2/pictures/c439321c3d3963b0843e37063ce36b24.png b/train2/pictures/c439321c3d3963b0843e37063ce36b24.png new file mode 100644 index 0000000..4ff7a06 Binary files /dev/null and b/train2/pictures/c439321c3d3963b0843e37063ce36b24.png differ diff --git a/train2/pictures/c4463e04c263cd20a365ea6db01087ae.png b/train2/pictures/c4463e04c263cd20a365ea6db01087ae.png new file mode 100644 index 0000000..02af6fc Binary files /dev/null and b/train2/pictures/c4463e04c263cd20a365ea6db01087ae.png differ diff --git a/train2/pictures/c44e8ecfcfaae919801aae2e100c3a4c.png b/train2/pictures/c44e8ecfcfaae919801aae2e100c3a4c.png new file mode 100644 index 0000000..d253855 Binary files /dev/null and b/train2/pictures/c44e8ecfcfaae919801aae2e100c3a4c.png differ diff --git a/train2/pictures/c4753f08820a63ce23bef0a2966c8019.png b/train2/pictures/c4753f08820a63ce23bef0a2966c8019.png new file mode 100644 index 0000000..67d5bb5 Binary files /dev/null and b/train2/pictures/c4753f08820a63ce23bef0a2966c8019.png differ diff --git a/train2/pictures/c47e49a52715e22eaf5e902648c6a44e.png b/train2/pictures/c47e49a52715e22eaf5e902648c6a44e.png new file mode 100644 index 0000000..f46af67 Binary files /dev/null and b/train2/pictures/c47e49a52715e22eaf5e902648c6a44e.png differ diff --git a/train2/pictures/c486eda0ce37ddc9ff69d5595bb5b9c0.png b/train2/pictures/c486eda0ce37ddc9ff69d5595bb5b9c0.png new file mode 100644 index 0000000..1e50fd2 Binary files /dev/null and b/train2/pictures/c486eda0ce37ddc9ff69d5595bb5b9c0.png differ diff --git a/train2/pictures/c495c6129b391088ba94421aef6fce54.png b/train2/pictures/c495c6129b391088ba94421aef6fce54.png new file mode 100644 index 0000000..14e34af Binary files /dev/null and b/train2/pictures/c495c6129b391088ba94421aef6fce54.png differ diff --git a/train2/pictures/c4b49758b995e26c3f01a247667f34b2.png b/train2/pictures/c4b49758b995e26c3f01a247667f34b2.png new file mode 100644 index 0000000..2afe841 Binary files /dev/null and b/train2/pictures/c4b49758b995e26c3f01a247667f34b2.png differ diff --git a/train2/pictures/c4c2c2002057b2349327af6465731d9c.png b/train2/pictures/c4c2c2002057b2349327af6465731d9c.png new file mode 100644 index 0000000..4749092 Binary files /dev/null and b/train2/pictures/c4c2c2002057b2349327af6465731d9c.png differ diff --git a/train2/pictures/c4dd639a20745045f123cebda3e81089.png b/train2/pictures/c4dd639a20745045f123cebda3e81089.png new file mode 100644 index 0000000..4cb391e Binary files /dev/null and b/train2/pictures/c4dd639a20745045f123cebda3e81089.png differ diff --git a/train2/pictures/c560a9a1c4a6f19a9f36009b4cf6cd44.png b/train2/pictures/c560a9a1c4a6f19a9f36009b4cf6cd44.png new file mode 100644 index 0000000..e5f9ecf Binary files /dev/null and b/train2/pictures/c560a9a1c4a6f19a9f36009b4cf6cd44.png differ diff --git a/train2/pictures/c5622ce71af0ef1642c60a6818342509.png b/train2/pictures/c5622ce71af0ef1642c60a6818342509.png new file mode 100644 index 0000000..37a2a62 Binary files /dev/null and b/train2/pictures/c5622ce71af0ef1642c60a6818342509.png differ diff --git a/train2/pictures/c58a997fb8d9b3ff9a64397ea2e7b47c.png b/train2/pictures/c58a997fb8d9b3ff9a64397ea2e7b47c.png new file mode 100644 index 0000000..f7a2fdb Binary files /dev/null and b/train2/pictures/c58a997fb8d9b3ff9a64397ea2e7b47c.png differ diff --git a/train2/pictures/c5d3d26f0c2eea0879af4de5d2f6fa9e.png b/train2/pictures/c5d3d26f0c2eea0879af4de5d2f6fa9e.png new file mode 100644 index 0000000..7c5b361 Binary files /dev/null and b/train2/pictures/c5d3d26f0c2eea0879af4de5d2f6fa9e.png differ diff --git a/train2/pictures/c5d551abd7126028244c85557f2978e1.png b/train2/pictures/c5d551abd7126028244c85557f2978e1.png new file mode 100644 index 0000000..6130ee0 Binary files /dev/null and b/train2/pictures/c5d551abd7126028244c85557f2978e1.png differ diff --git a/train2/pictures/c5e74117db714968dc4fdf81183b2715.png b/train2/pictures/c5e74117db714968dc4fdf81183b2715.png new file mode 100644 index 0000000..f1c4c8b Binary files /dev/null and b/train2/pictures/c5e74117db714968dc4fdf81183b2715.png differ diff --git a/train2/pictures/c6006c27236ff1e8a04d0681e69c12a3.png b/train2/pictures/c6006c27236ff1e8a04d0681e69c12a3.png new file mode 100644 index 0000000..765cd69 Binary files /dev/null and b/train2/pictures/c6006c27236ff1e8a04d0681e69c12a3.png differ diff --git a/train2/pictures/c6007559ec026855bd06032796e587bc.png b/train2/pictures/c6007559ec026855bd06032796e587bc.png new file mode 100644 index 0000000..1b734e7 Binary files /dev/null and b/train2/pictures/c6007559ec026855bd06032796e587bc.png differ diff --git a/train2/pictures/c60ab501a8350b0cdb553713ae0a490b.png b/train2/pictures/c60ab501a8350b0cdb553713ae0a490b.png new file mode 100644 index 0000000..8081211 Binary files /dev/null and b/train2/pictures/c60ab501a8350b0cdb553713ae0a490b.png differ diff --git a/train2/pictures/c66a0adb81219d95e6923470c4c826fb.png b/train2/pictures/c66a0adb81219d95e6923470c4c826fb.png new file mode 100644 index 0000000..8d38f3c Binary files /dev/null and b/train2/pictures/c66a0adb81219d95e6923470c4c826fb.png differ diff --git a/train2/pictures/c6a48f7c3efeff4d409f2637b5c73dae.png b/train2/pictures/c6a48f7c3efeff4d409f2637b5c73dae.png new file mode 100644 index 0000000..bcb6ca3 Binary files /dev/null and b/train2/pictures/c6a48f7c3efeff4d409f2637b5c73dae.png differ diff --git a/train2/pictures/c6b929678c063eae693b35209a9e224c.png b/train2/pictures/c6b929678c063eae693b35209a9e224c.png new file mode 100644 index 0000000..5670589 Binary files /dev/null and b/train2/pictures/c6b929678c063eae693b35209a9e224c.png differ diff --git a/train2/pictures/c6ba398298bc88e056322101f419584d.png b/train2/pictures/c6ba398298bc88e056322101f419584d.png new file mode 100644 index 0000000..04dfbcf Binary files /dev/null and b/train2/pictures/c6ba398298bc88e056322101f419584d.png differ diff --git a/train2/pictures/c6e157875601114179b25e5a869c8336.png b/train2/pictures/c6e157875601114179b25e5a869c8336.png new file mode 100644 index 0000000..d0f217c Binary files /dev/null and b/train2/pictures/c6e157875601114179b25e5a869c8336.png differ diff --git a/train2/pictures/c729343202775c6d9905c36ee6475534.png b/train2/pictures/c729343202775c6d9905c36ee6475534.png new file mode 100644 index 0000000..064d8da Binary files /dev/null and b/train2/pictures/c729343202775c6d9905c36ee6475534.png differ diff --git a/train2/pictures/c73a8b1664c1c01e13dc7dc576a8effa.png b/train2/pictures/c73a8b1664c1c01e13dc7dc576a8effa.png new file mode 100644 index 0000000..86c3596 Binary files /dev/null and b/train2/pictures/c73a8b1664c1c01e13dc7dc576a8effa.png differ diff --git a/train2/pictures/c751962411f3eca60e601a42a1d7b55b.png b/train2/pictures/c751962411f3eca60e601a42a1d7b55b.png new file mode 100644 index 0000000..23e494b Binary files /dev/null and b/train2/pictures/c751962411f3eca60e601a42a1d7b55b.png differ diff --git a/train2/pictures/c7561f9ef8dc899ad004b2bc97c85878.png b/train2/pictures/c7561f9ef8dc899ad004b2bc97c85878.png new file mode 100644 index 0000000..98c911e Binary files /dev/null and b/train2/pictures/c7561f9ef8dc899ad004b2bc97c85878.png differ diff --git a/train2/pictures/c77fa5971b7bdb318f1681d1ba17c1bd.png b/train2/pictures/c77fa5971b7bdb318f1681d1ba17c1bd.png new file mode 100644 index 0000000..15236b9 Binary files /dev/null and b/train2/pictures/c77fa5971b7bdb318f1681d1ba17c1bd.png differ diff --git a/train2/pictures/c797ffc581ca5d5e0423c1c969b4e03b.png b/train2/pictures/c797ffc581ca5d5e0423c1c969b4e03b.png new file mode 100644 index 0000000..b14a060 Binary files /dev/null and b/train2/pictures/c797ffc581ca5d5e0423c1c969b4e03b.png differ diff --git a/train2/pictures/c7d1172dbd7132b4afa83e36ac63be27.png b/train2/pictures/c7d1172dbd7132b4afa83e36ac63be27.png new file mode 100644 index 0000000..02c7c4a Binary files /dev/null and b/train2/pictures/c7d1172dbd7132b4afa83e36ac63be27.png differ diff --git a/train2/pictures/c7f208cc96ba258e74841b287cb87d8f.png b/train2/pictures/c7f208cc96ba258e74841b287cb87d8f.png new file mode 100644 index 0000000..ff4a158 Binary files /dev/null and b/train2/pictures/c7f208cc96ba258e74841b287cb87d8f.png differ diff --git a/train2/pictures/c80e7a6b924b72121d2538bf7f7d4016.png b/train2/pictures/c80e7a6b924b72121d2538bf7f7d4016.png new file mode 100644 index 0000000..50cb59d Binary files /dev/null and b/train2/pictures/c80e7a6b924b72121d2538bf7f7d4016.png differ diff --git a/train2/pictures/c85dd3269d97208a44734e7fdcbee681.png b/train2/pictures/c85dd3269d97208a44734e7fdcbee681.png new file mode 100644 index 0000000..ca143c1 Binary files /dev/null and b/train2/pictures/c85dd3269d97208a44734e7fdcbee681.png differ diff --git a/train2/pictures/c87080f086145a80232f89b00f376402.png b/train2/pictures/c87080f086145a80232f89b00f376402.png new file mode 100644 index 0000000..c3dac38 Binary files /dev/null and b/train2/pictures/c87080f086145a80232f89b00f376402.png differ diff --git a/train2/pictures/c8b7781b98e54c521db8270460a31635.png b/train2/pictures/c8b7781b98e54c521db8270460a31635.png new file mode 100644 index 0000000..15f068e Binary files /dev/null and b/train2/pictures/c8b7781b98e54c521db8270460a31635.png differ diff --git a/train2/pictures/c8c92331065082bd2a3a65387975cb92.png b/train2/pictures/c8c92331065082bd2a3a65387975cb92.png new file mode 100644 index 0000000..9541e9a Binary files /dev/null and b/train2/pictures/c8c92331065082bd2a3a65387975cb92.png differ diff --git a/train2/pictures/c8d60bafd56e0ab43b49f4570321bb98.png b/train2/pictures/c8d60bafd56e0ab43b49f4570321bb98.png new file mode 100644 index 0000000..c1fc5dd Binary files /dev/null and b/train2/pictures/c8d60bafd56e0ab43b49f4570321bb98.png differ diff --git a/train2/pictures/c8d84b043791a61c4951e24707d0603a.png b/train2/pictures/c8d84b043791a61c4951e24707d0603a.png new file mode 100644 index 0000000..0c8c190 Binary files /dev/null and b/train2/pictures/c8d84b043791a61c4951e24707d0603a.png differ diff --git a/train2/pictures/c8f17de796e10310f0b1221ab0a7e64d.png b/train2/pictures/c8f17de796e10310f0b1221ab0a7e64d.png new file mode 100644 index 0000000..acaefb5 Binary files /dev/null and b/train2/pictures/c8f17de796e10310f0b1221ab0a7e64d.png differ diff --git a/train2/pictures/c8f8ce6bf0bb51e2e3875eaf0478ff73.png b/train2/pictures/c8f8ce6bf0bb51e2e3875eaf0478ff73.png new file mode 100644 index 0000000..4422c94 Binary files /dev/null and b/train2/pictures/c8f8ce6bf0bb51e2e3875eaf0478ff73.png differ diff --git a/train2/pictures/c90057fb7b9407bdb31fcada179230ed.png b/train2/pictures/c90057fb7b9407bdb31fcada179230ed.png new file mode 100644 index 0000000..15ed37f Binary files /dev/null and b/train2/pictures/c90057fb7b9407bdb31fcada179230ed.png differ diff --git a/train2/pictures/c907172d262998e57dbd685ae059cb72.png b/train2/pictures/c907172d262998e57dbd685ae059cb72.png new file mode 100644 index 0000000..32cb478 Binary files /dev/null and b/train2/pictures/c907172d262998e57dbd685ae059cb72.png differ diff --git a/train2/pictures/c90a9609d61a140c0c2028873d43f3aa.png b/train2/pictures/c90a9609d61a140c0c2028873d43f3aa.png new file mode 100644 index 0000000..8079a80 Binary files /dev/null and b/train2/pictures/c90a9609d61a140c0c2028873d43f3aa.png differ diff --git a/train2/pictures/c910d8bc212a70dfdaf8c4e154a67f39.png b/train2/pictures/c910d8bc212a70dfdaf8c4e154a67f39.png new file mode 100644 index 0000000..b6465c2 Binary files /dev/null and b/train2/pictures/c910d8bc212a70dfdaf8c4e154a67f39.png differ diff --git a/train2/pictures/c950494ac67317c5a2149ef42c48a837.png b/train2/pictures/c950494ac67317c5a2149ef42c48a837.png new file mode 100644 index 0000000..f092b93 Binary files /dev/null and b/train2/pictures/c950494ac67317c5a2149ef42c48a837.png differ diff --git a/train2/pictures/c9539cdc675db253d3bcde7411ff6884.png b/train2/pictures/c9539cdc675db253d3bcde7411ff6884.png new file mode 100644 index 0000000..32e7502 Binary files /dev/null and b/train2/pictures/c9539cdc675db253d3bcde7411ff6884.png differ diff --git a/train2/pictures/c955d735807973862eb374a57147eb2c.png b/train2/pictures/c955d735807973862eb374a57147eb2c.png new file mode 100644 index 0000000..d8fc5d0 Binary files /dev/null and b/train2/pictures/c955d735807973862eb374a57147eb2c.png differ diff --git a/train2/pictures/c956b0d965cf3b2e01805bc30dfce62f.png b/train2/pictures/c956b0d965cf3b2e01805bc30dfce62f.png new file mode 100644 index 0000000..21a6365 Binary files /dev/null and b/train2/pictures/c956b0d965cf3b2e01805bc30dfce62f.png differ diff --git a/train2/pictures/c963d6c9b87f64980b814e7a6e84c22c.png b/train2/pictures/c963d6c9b87f64980b814e7a6e84c22c.png new file mode 100644 index 0000000..daa1d20 Binary files /dev/null and b/train2/pictures/c963d6c9b87f64980b814e7a6e84c22c.png differ diff --git a/train2/pictures/c9770dfeb791f6c8328b0f739ed22483.png b/train2/pictures/c9770dfeb791f6c8328b0f739ed22483.png new file mode 100644 index 0000000..9032711 Binary files /dev/null and b/train2/pictures/c9770dfeb791f6c8328b0f739ed22483.png differ diff --git a/train2/pictures/c98acd05d3addeb39898c6638b31f015.png b/train2/pictures/c98acd05d3addeb39898c6638b31f015.png new file mode 100644 index 0000000..eb82a09 Binary files /dev/null and b/train2/pictures/c98acd05d3addeb39898c6638b31f015.png differ diff --git a/train2/pictures/c9a85ad84fa6bb1ce811ba6cdd9805ee.png b/train2/pictures/c9a85ad84fa6bb1ce811ba6cdd9805ee.png new file mode 100644 index 0000000..81a6f87 Binary files /dev/null and b/train2/pictures/c9a85ad84fa6bb1ce811ba6cdd9805ee.png differ diff --git a/train2/pictures/c9e6f3120a2bfc3437575bfe302519d4.png b/train2/pictures/c9e6f3120a2bfc3437575bfe302519d4.png new file mode 100644 index 0000000..aa84bbe Binary files /dev/null and b/train2/pictures/c9e6f3120a2bfc3437575bfe302519d4.png differ diff --git a/train2/pictures/c9e94a2c5f2b60625a9960e3bd85a32d.png b/train2/pictures/c9e94a2c5f2b60625a9960e3bd85a32d.png new file mode 100644 index 0000000..21f4551 Binary files /dev/null and b/train2/pictures/c9e94a2c5f2b60625a9960e3bd85a32d.png differ diff --git a/train2/pictures/ca159068c425f4e3b1ca8e008db8f794.png b/train2/pictures/ca159068c425f4e3b1ca8e008db8f794.png new file mode 100644 index 0000000..b9ea652 Binary files /dev/null and b/train2/pictures/ca159068c425f4e3b1ca8e008db8f794.png differ diff --git a/train2/pictures/ca30c6f44e6438322e2c3e2bb2af5009.png b/train2/pictures/ca30c6f44e6438322e2c3e2bb2af5009.png new file mode 100644 index 0000000..35e3b2f Binary files /dev/null and b/train2/pictures/ca30c6f44e6438322e2c3e2bb2af5009.png differ diff --git a/train2/pictures/ca3fb1641cc31b6a4ff32fbe10916f6e.png b/train2/pictures/ca3fb1641cc31b6a4ff32fbe10916f6e.png new file mode 100644 index 0000000..61ed55a Binary files /dev/null and b/train2/pictures/ca3fb1641cc31b6a4ff32fbe10916f6e.png differ diff --git a/train2/pictures/ca74004fdee65cc1ceb3d767044a1fdd.png b/train2/pictures/ca74004fdee65cc1ceb3d767044a1fdd.png new file mode 100644 index 0000000..19099be Binary files /dev/null and b/train2/pictures/ca74004fdee65cc1ceb3d767044a1fdd.png differ diff --git a/train2/pictures/ca74762c9327546a05cea10a8e751307.png b/train2/pictures/ca74762c9327546a05cea10a8e751307.png new file mode 100644 index 0000000..9858878 Binary files /dev/null and b/train2/pictures/ca74762c9327546a05cea10a8e751307.png differ diff --git a/train2/pictures/cabd52d34bd403f6b3216fe6a3f860b8.png b/train2/pictures/cabd52d34bd403f6b3216fe6a3f860b8.png new file mode 100644 index 0000000..8cf85c7 Binary files /dev/null and b/train2/pictures/cabd52d34bd403f6b3216fe6a3f860b8.png differ diff --git a/train2/pictures/cb91efa8b8c6e8e5ab1faea804c5d31f.png b/train2/pictures/cb91efa8b8c6e8e5ab1faea804c5d31f.png new file mode 100644 index 0000000..2884969 Binary files /dev/null and b/train2/pictures/cb91efa8b8c6e8e5ab1faea804c5d31f.png differ diff --git a/train2/pictures/cb929d6941867c2aea2fda3bcf7c9941.png b/train2/pictures/cb929d6941867c2aea2fda3bcf7c9941.png new file mode 100644 index 0000000..5414bfa Binary files /dev/null and b/train2/pictures/cb929d6941867c2aea2fda3bcf7c9941.png differ diff --git a/train2/pictures/cb96995e9d82971193891a76d24ae042.png b/train2/pictures/cb96995e9d82971193891a76d24ae042.png new file mode 100644 index 0000000..06c866e Binary files /dev/null and b/train2/pictures/cb96995e9d82971193891a76d24ae042.png differ diff --git a/train2/pictures/cbd6d25e333c8d9e61ecd5dfb2b44c78.png b/train2/pictures/cbd6d25e333c8d9e61ecd5dfb2b44c78.png new file mode 100644 index 0000000..4429527 Binary files /dev/null and b/train2/pictures/cbd6d25e333c8d9e61ecd5dfb2b44c78.png differ diff --git a/train2/pictures/cbee55cfd8bbc9723e5a6a185b0724fb.png b/train2/pictures/cbee55cfd8bbc9723e5a6a185b0724fb.png new file mode 100644 index 0000000..c79b857 Binary files /dev/null and b/train2/pictures/cbee55cfd8bbc9723e5a6a185b0724fb.png differ diff --git a/train2/pictures/cbf6ee22f091d8037418103db026b21b.png b/train2/pictures/cbf6ee22f091d8037418103db026b21b.png new file mode 100644 index 0000000..d666df2 Binary files /dev/null and b/train2/pictures/cbf6ee22f091d8037418103db026b21b.png differ diff --git a/train2/pictures/cc1b421165d34e0ffb20a1d741bb240f.png b/train2/pictures/cc1b421165d34e0ffb20a1d741bb240f.png new file mode 100644 index 0000000..4832c4a Binary files /dev/null and b/train2/pictures/cc1b421165d34e0ffb20a1d741bb240f.png differ diff --git a/train2/pictures/cc3e054ffab9d763071322aaeccec15a.png b/train2/pictures/cc3e054ffab9d763071322aaeccec15a.png new file mode 100644 index 0000000..cbb9f1f Binary files /dev/null and b/train2/pictures/cc3e054ffab9d763071322aaeccec15a.png differ diff --git a/train2/pictures/cc53c78223b6bfcf5e1dcc8555252c54.png b/train2/pictures/cc53c78223b6bfcf5e1dcc8555252c54.png new file mode 100644 index 0000000..b0d336d Binary files /dev/null and b/train2/pictures/cc53c78223b6bfcf5e1dcc8555252c54.png differ diff --git a/train2/pictures/cc7b4759caec0a05fdc63423d632780e.png b/train2/pictures/cc7b4759caec0a05fdc63423d632780e.png new file mode 100644 index 0000000..50fbe75 Binary files /dev/null and b/train2/pictures/cc7b4759caec0a05fdc63423d632780e.png differ diff --git a/train2/pictures/cc8f2da3dea11f895f3f8d68cce81488.png b/train2/pictures/cc8f2da3dea11f895f3f8d68cce81488.png new file mode 100644 index 0000000..12f1fdf Binary files /dev/null and b/train2/pictures/cc8f2da3dea11f895f3f8d68cce81488.png differ diff --git a/train2/pictures/cc988b2203b8cfe02cb8089eecc0d7ca.png b/train2/pictures/cc988b2203b8cfe02cb8089eecc0d7ca.png new file mode 100644 index 0000000..4ca64cb Binary files /dev/null and b/train2/pictures/cc988b2203b8cfe02cb8089eecc0d7ca.png differ diff --git a/train2/pictures/ccc2ad1d6480a377b0723f725a2870c1.png b/train2/pictures/ccc2ad1d6480a377b0723f725a2870c1.png new file mode 100644 index 0000000..435ba05 Binary files /dev/null and b/train2/pictures/ccc2ad1d6480a377b0723f725a2870c1.png differ diff --git a/train2/pictures/ccc5d2211f51abe22d2b7f078e610e05.png b/train2/pictures/ccc5d2211f51abe22d2b7f078e610e05.png new file mode 100644 index 0000000..f29cc28 Binary files /dev/null and b/train2/pictures/ccc5d2211f51abe22d2b7f078e610e05.png differ diff --git a/train2/pictures/cd1d8271d383845d6d3cf0617a833853.png b/train2/pictures/cd1d8271d383845d6d3cf0617a833853.png new file mode 100644 index 0000000..48c7fd8 Binary files /dev/null and b/train2/pictures/cd1d8271d383845d6d3cf0617a833853.png differ diff --git a/train2/pictures/cd3570b460a490f35a32fcb8b172ddbf.png b/train2/pictures/cd3570b460a490f35a32fcb8b172ddbf.png new file mode 100644 index 0000000..50dceb2 Binary files /dev/null and b/train2/pictures/cd3570b460a490f35a32fcb8b172ddbf.png differ diff --git a/train2/pictures/cd56e441076e8f2d0dc1c1bd242f5739.png b/train2/pictures/cd56e441076e8f2d0dc1c1bd242f5739.png new file mode 100644 index 0000000..9156ff3 Binary files /dev/null and b/train2/pictures/cd56e441076e8f2d0dc1c1bd242f5739.png differ diff --git a/train2/pictures/cd571181aab72d625e4771e40f8aebb1.png b/train2/pictures/cd571181aab72d625e4771e40f8aebb1.png new file mode 100644 index 0000000..98f6cea Binary files /dev/null and b/train2/pictures/cd571181aab72d625e4771e40f8aebb1.png differ diff --git a/train2/pictures/cd75755c2d77187ed196a02fb8d2933f.png b/train2/pictures/cd75755c2d77187ed196a02fb8d2933f.png new file mode 100644 index 0000000..5675a05 Binary files /dev/null and b/train2/pictures/cd75755c2d77187ed196a02fb8d2933f.png differ diff --git a/train2/pictures/cd7a251d982a658f05be2d21a2b2367b.png b/train2/pictures/cd7a251d982a658f05be2d21a2b2367b.png new file mode 100644 index 0000000..7c0a8dc Binary files /dev/null and b/train2/pictures/cd7a251d982a658f05be2d21a2b2367b.png differ diff --git a/train2/pictures/cd847c29400b1cf2a12b159ffeecaf5b.png b/train2/pictures/cd847c29400b1cf2a12b159ffeecaf5b.png new file mode 100644 index 0000000..e7caff7 Binary files /dev/null and b/train2/pictures/cd847c29400b1cf2a12b159ffeecaf5b.png differ diff --git a/train2/pictures/cd970dcfa56588816067f0e102f4bad5.png b/train2/pictures/cd970dcfa56588816067f0e102f4bad5.png new file mode 100644 index 0000000..2d31a80 Binary files /dev/null and b/train2/pictures/cd970dcfa56588816067f0e102f4bad5.png differ diff --git a/train2/pictures/cdc9eed302a833da927825622431c8d2.png b/train2/pictures/cdc9eed302a833da927825622431c8d2.png new file mode 100644 index 0000000..8cf5a9e Binary files /dev/null and b/train2/pictures/cdc9eed302a833da927825622431c8d2.png differ diff --git a/train2/pictures/cde816b97d7defa2008fa0ca15551e8b.png b/train2/pictures/cde816b97d7defa2008fa0ca15551e8b.png new file mode 100644 index 0000000..50c3d5b Binary files /dev/null and b/train2/pictures/cde816b97d7defa2008fa0ca15551e8b.png differ diff --git a/train2/pictures/cdf26e93e1097d9a9393a1e88251ccfb.png b/train2/pictures/cdf26e93e1097d9a9393a1e88251ccfb.png new file mode 100644 index 0000000..09f4679 Binary files /dev/null and b/train2/pictures/cdf26e93e1097d9a9393a1e88251ccfb.png differ diff --git a/train2/pictures/cdfb1ee26a74f9261f1a53886d2be4ce.png b/train2/pictures/cdfb1ee26a74f9261f1a53886d2be4ce.png new file mode 100644 index 0000000..a888d44 Binary files /dev/null and b/train2/pictures/cdfb1ee26a74f9261f1a53886d2be4ce.png differ diff --git a/train2/pictures/cdff2d04af0cbe18058394700f536bbe.png b/train2/pictures/cdff2d04af0cbe18058394700f536bbe.png new file mode 100644 index 0000000..7c84100 Binary files /dev/null and b/train2/pictures/cdff2d04af0cbe18058394700f536bbe.png differ diff --git a/train2/pictures/ce2b497807ccd27bab66dd09b76da391.png b/train2/pictures/ce2b497807ccd27bab66dd09b76da391.png new file mode 100644 index 0000000..1e6f479 Binary files /dev/null and b/train2/pictures/ce2b497807ccd27bab66dd09b76da391.png differ diff --git a/train2/pictures/ce309dd88ced6c9d19698cf1be9c2442.png b/train2/pictures/ce309dd88ced6c9d19698cf1be9c2442.png new file mode 100644 index 0000000..92cbc17 Binary files /dev/null and b/train2/pictures/ce309dd88ced6c9d19698cf1be9c2442.png differ diff --git a/train2/pictures/ce4aac5e4b37e395745dee2c9a368f19.png b/train2/pictures/ce4aac5e4b37e395745dee2c9a368f19.png new file mode 100644 index 0000000..56b9440 Binary files /dev/null and b/train2/pictures/ce4aac5e4b37e395745dee2c9a368f19.png differ diff --git a/train2/pictures/ce60fbda3827a0e36cb2bbdad6347010.png b/train2/pictures/ce60fbda3827a0e36cb2bbdad6347010.png new file mode 100644 index 0000000..4faf603 Binary files /dev/null and b/train2/pictures/ce60fbda3827a0e36cb2bbdad6347010.png differ diff --git a/train2/pictures/ce653a7c3e132a5f48a5a7a387309a22.png b/train2/pictures/ce653a7c3e132a5f48a5a7a387309a22.png new file mode 100644 index 0000000..5a7618e Binary files /dev/null and b/train2/pictures/ce653a7c3e132a5f48a5a7a387309a22.png differ diff --git a/train2/pictures/ce81a7a07b95d1b203c2b8d8922a7d2a.png b/train2/pictures/ce81a7a07b95d1b203c2b8d8922a7d2a.png new file mode 100644 index 0000000..4ad1b5a Binary files /dev/null and b/train2/pictures/ce81a7a07b95d1b203c2b8d8922a7d2a.png differ diff --git a/train2/pictures/cebd20016761e39cddfba9a12302f22f.png b/train2/pictures/cebd20016761e39cddfba9a12302f22f.png new file mode 100644 index 0000000..85b4dcb Binary files /dev/null and b/train2/pictures/cebd20016761e39cddfba9a12302f22f.png differ diff --git a/train2/pictures/cefee0f2f28b7d2a356b409d0533e452.png b/train2/pictures/cefee0f2f28b7d2a356b409d0533e452.png new file mode 100644 index 0000000..c50e95a Binary files /dev/null and b/train2/pictures/cefee0f2f28b7d2a356b409d0533e452.png differ diff --git a/train2/pictures/cf0c3892a07b04c062e3b7397f35e7c8.png b/train2/pictures/cf0c3892a07b04c062e3b7397f35e7c8.png new file mode 100644 index 0000000..b783e9f Binary files /dev/null and b/train2/pictures/cf0c3892a07b04c062e3b7397f35e7c8.png differ diff --git a/train2/pictures/cf128dbb147990dbcca4b3bc5fa5ab04.png b/train2/pictures/cf128dbb147990dbcca4b3bc5fa5ab04.png new file mode 100644 index 0000000..d166a12 Binary files /dev/null and b/train2/pictures/cf128dbb147990dbcca4b3bc5fa5ab04.png differ diff --git a/train2/pictures/cf5bb699688a4baecd2da3748436011b.png b/train2/pictures/cf5bb699688a4baecd2da3748436011b.png new file mode 100644 index 0000000..9285f59 Binary files /dev/null and b/train2/pictures/cf5bb699688a4baecd2da3748436011b.png differ diff --git a/train2/pictures/cf6c6358eba07707b86a05bf9cca1e8d.png b/train2/pictures/cf6c6358eba07707b86a05bf9cca1e8d.png new file mode 100644 index 0000000..d9581e3 Binary files /dev/null and b/train2/pictures/cf6c6358eba07707b86a05bf9cca1e8d.png differ diff --git a/train2/pictures/cfb421ceb00fd789d50c5cb1bbf3896e.png b/train2/pictures/cfb421ceb00fd789d50c5cb1bbf3896e.png new file mode 100644 index 0000000..e7ba8b5 Binary files /dev/null and b/train2/pictures/cfb421ceb00fd789d50c5cb1bbf3896e.png differ diff --git a/train2/pictures/cfca139b7e6823fa40e5129e7376a35a.png b/train2/pictures/cfca139b7e6823fa40e5129e7376a35a.png new file mode 100644 index 0000000..b4469f1 Binary files /dev/null and b/train2/pictures/cfca139b7e6823fa40e5129e7376a35a.png differ diff --git a/train2/pictures/cfcbbbbf6a6030a9d89f55fc5b077e00.png b/train2/pictures/cfcbbbbf6a6030a9d89f55fc5b077e00.png new file mode 100644 index 0000000..6de719c Binary files /dev/null and b/train2/pictures/cfcbbbbf6a6030a9d89f55fc5b077e00.png differ diff --git a/train2/pictures/cff85ede1f32b39f2f9085b97a3cca22.png b/train2/pictures/cff85ede1f32b39f2f9085b97a3cca22.png new file mode 100644 index 0000000..186734e Binary files /dev/null and b/train2/pictures/cff85ede1f32b39f2f9085b97a3cca22.png differ diff --git a/train2/pictures/d0206d4144d6347fcfdcd6a496d98ddb.png b/train2/pictures/d0206d4144d6347fcfdcd6a496d98ddb.png new file mode 100644 index 0000000..fd67a73 Binary files /dev/null and b/train2/pictures/d0206d4144d6347fcfdcd6a496d98ddb.png differ diff --git a/train2/pictures/d023116aa39c31ad21fad8f6da9f8654.png b/train2/pictures/d023116aa39c31ad21fad8f6da9f8654.png new file mode 100644 index 0000000..8dc6555 Binary files /dev/null and b/train2/pictures/d023116aa39c31ad21fad8f6da9f8654.png differ diff --git a/train2/pictures/d027e4cbba6bc488e2ddc6f850c7ae0b.png b/train2/pictures/d027e4cbba6bc488e2ddc6f850c7ae0b.png new file mode 100644 index 0000000..b0c7c48 Binary files /dev/null and b/train2/pictures/d027e4cbba6bc488e2ddc6f850c7ae0b.png differ diff --git a/train2/pictures/d03996ca1400c5d8b69e3d8be3ed3750.png b/train2/pictures/d03996ca1400c5d8b69e3d8be3ed3750.png new file mode 100644 index 0000000..da1182e Binary files /dev/null and b/train2/pictures/d03996ca1400c5d8b69e3d8be3ed3750.png differ diff --git a/train2/pictures/d05152e0345e1dfb6bc70c9aebb3c49a.png b/train2/pictures/d05152e0345e1dfb6bc70c9aebb3c49a.png new file mode 100644 index 0000000..879cd03 Binary files /dev/null and b/train2/pictures/d05152e0345e1dfb6bc70c9aebb3c49a.png differ diff --git a/train2/pictures/d07110a61979e29c6573bff327e8dd2c.png b/train2/pictures/d07110a61979e29c6573bff327e8dd2c.png new file mode 100644 index 0000000..dc70295 Binary files /dev/null and b/train2/pictures/d07110a61979e29c6573bff327e8dd2c.png differ diff --git a/train2/pictures/d0c350900009345d136cbb7f0838fec0.png b/train2/pictures/d0c350900009345d136cbb7f0838fec0.png new file mode 100644 index 0000000..7e36679 Binary files /dev/null and b/train2/pictures/d0c350900009345d136cbb7f0838fec0.png differ diff --git a/train2/pictures/d0df3efbed87b90fab150edf9487824b.png b/train2/pictures/d0df3efbed87b90fab150edf9487824b.png new file mode 100644 index 0000000..0dd1a8a Binary files /dev/null and b/train2/pictures/d0df3efbed87b90fab150edf9487824b.png differ diff --git a/train2/pictures/d103855c4fe3b9385f2759da053fddb9.png b/train2/pictures/d103855c4fe3b9385f2759da053fddb9.png new file mode 100644 index 0000000..6a159cf Binary files /dev/null and b/train2/pictures/d103855c4fe3b9385f2759da053fddb9.png differ diff --git a/train2/pictures/d120cbfc2d0b01bf808c98e2c0155288.png b/train2/pictures/d120cbfc2d0b01bf808c98e2c0155288.png new file mode 100644 index 0000000..010a991 Binary files /dev/null and b/train2/pictures/d120cbfc2d0b01bf808c98e2c0155288.png differ diff --git a/train2/pictures/d131cfbbc1a749ef4730f6691a6f71ad.png b/train2/pictures/d131cfbbc1a749ef4730f6691a6f71ad.png new file mode 100644 index 0000000..d1fdefe Binary files /dev/null and b/train2/pictures/d131cfbbc1a749ef4730f6691a6f71ad.png differ diff --git a/train2/pictures/d135fa76eec6f07fd20cd948a8271ae7.png b/train2/pictures/d135fa76eec6f07fd20cd948a8271ae7.png new file mode 100644 index 0000000..55b8817 Binary files /dev/null and b/train2/pictures/d135fa76eec6f07fd20cd948a8271ae7.png differ diff --git a/train2/pictures/d16b27fa2bec3f95cbc6c706761cdd41.png b/train2/pictures/d16b27fa2bec3f95cbc6c706761cdd41.png new file mode 100644 index 0000000..deff159 Binary files /dev/null and b/train2/pictures/d16b27fa2bec3f95cbc6c706761cdd41.png differ diff --git a/train2/pictures/d1715e48140139c6b0d4dd8e7c231cc2.png b/train2/pictures/d1715e48140139c6b0d4dd8e7c231cc2.png new file mode 100644 index 0000000..ed8c16f Binary files /dev/null and b/train2/pictures/d1715e48140139c6b0d4dd8e7c231cc2.png differ diff --git a/train2/pictures/d17ab38f2133b2e6bf8aabe19d841d38.png b/train2/pictures/d17ab38f2133b2e6bf8aabe19d841d38.png new file mode 100644 index 0000000..2d31c46 Binary files /dev/null and b/train2/pictures/d17ab38f2133b2e6bf8aabe19d841d38.png differ diff --git a/train2/pictures/d17c57f90aa747c1828fbdb668a1e01f.png b/train2/pictures/d17c57f90aa747c1828fbdb668a1e01f.png new file mode 100644 index 0000000..cb382b0 Binary files /dev/null and b/train2/pictures/d17c57f90aa747c1828fbdb668a1e01f.png differ diff --git a/train2/pictures/d1a8b9aff2efdb50ffcbdb65d0e4c4fd.png b/train2/pictures/d1a8b9aff2efdb50ffcbdb65d0e4c4fd.png new file mode 100644 index 0000000..41025ae Binary files /dev/null and b/train2/pictures/d1a8b9aff2efdb50ffcbdb65d0e4c4fd.png differ diff --git a/train2/pictures/d1b3040371f00f3cee0942aafd1179e4.png b/train2/pictures/d1b3040371f00f3cee0942aafd1179e4.png new file mode 100644 index 0000000..bf28dcb Binary files /dev/null and b/train2/pictures/d1b3040371f00f3cee0942aafd1179e4.png differ diff --git a/train2/pictures/d1f3cababc9957da2fd6185bb2a2d326.png b/train2/pictures/d1f3cababc9957da2fd6185bb2a2d326.png new file mode 100644 index 0000000..7573e94 Binary files /dev/null and b/train2/pictures/d1f3cababc9957da2fd6185bb2a2d326.png differ diff --git a/train2/pictures/d1fbd07ad126b4ac610e2e48c48c9eb5.png b/train2/pictures/d1fbd07ad126b4ac610e2e48c48c9eb5.png new file mode 100644 index 0000000..d532338 Binary files /dev/null and b/train2/pictures/d1fbd07ad126b4ac610e2e48c48c9eb5.png differ diff --git a/train2/pictures/d23b361b5e93f52280b32aaad6774504.png b/train2/pictures/d23b361b5e93f52280b32aaad6774504.png new file mode 100644 index 0000000..40175a5 Binary files /dev/null and b/train2/pictures/d23b361b5e93f52280b32aaad6774504.png differ diff --git a/train2/pictures/d26215e3dc9b6e4e476143a9ac6534f7.png b/train2/pictures/d26215e3dc9b6e4e476143a9ac6534f7.png new file mode 100644 index 0000000..a5785c1 Binary files /dev/null and b/train2/pictures/d26215e3dc9b6e4e476143a9ac6534f7.png differ diff --git a/train2/pictures/d27adb0504b635cd6dbb5892eca40905.png b/train2/pictures/d27adb0504b635cd6dbb5892eca40905.png new file mode 100644 index 0000000..eff54d7 Binary files /dev/null and b/train2/pictures/d27adb0504b635cd6dbb5892eca40905.png differ diff --git a/train2/pictures/d2f9ebb4b76fc0e75fb2629758f44159.png b/train2/pictures/d2f9ebb4b76fc0e75fb2629758f44159.png new file mode 100644 index 0000000..d4d69de Binary files /dev/null and b/train2/pictures/d2f9ebb4b76fc0e75fb2629758f44159.png differ diff --git a/train2/pictures/d318ba9fa778a42c9161969ff91dd412.png b/train2/pictures/d318ba9fa778a42c9161969ff91dd412.png new file mode 100644 index 0000000..e9d3d16 Binary files /dev/null and b/train2/pictures/d318ba9fa778a42c9161969ff91dd412.png differ diff --git a/train2/pictures/d31d2b3c6b24fc897d31048c906e6564.png b/train2/pictures/d31d2b3c6b24fc897d31048c906e6564.png new file mode 100644 index 0000000..acbe164 Binary files /dev/null and b/train2/pictures/d31d2b3c6b24fc897d31048c906e6564.png differ diff --git a/train2/pictures/d32bc39055a0756d10eef10f3895b4a0.png b/train2/pictures/d32bc39055a0756d10eef10f3895b4a0.png new file mode 100644 index 0000000..d5c3042 Binary files /dev/null and b/train2/pictures/d32bc39055a0756d10eef10f3895b4a0.png differ diff --git a/train2/pictures/d3333f7518e90aefda98d89828da9d0c.png b/train2/pictures/d3333f7518e90aefda98d89828da9d0c.png new file mode 100644 index 0000000..49846f0 Binary files /dev/null and b/train2/pictures/d3333f7518e90aefda98d89828da9d0c.png differ diff --git a/train2/pictures/d348fed5b5e4249721071c8c688bea9c.png b/train2/pictures/d348fed5b5e4249721071c8c688bea9c.png new file mode 100644 index 0000000..d1b162b Binary files /dev/null and b/train2/pictures/d348fed5b5e4249721071c8c688bea9c.png differ diff --git a/train2/pictures/d3614ee2202b95aaed1e2558ebbcf620.png b/train2/pictures/d3614ee2202b95aaed1e2558ebbcf620.png new file mode 100644 index 0000000..4b1e1a3 Binary files /dev/null and b/train2/pictures/d3614ee2202b95aaed1e2558ebbcf620.png differ diff --git a/train2/pictures/d37d9b930339b4c33d27aa60453da083.png b/train2/pictures/d37d9b930339b4c33d27aa60453da083.png new file mode 100644 index 0000000..9b3ffc4 Binary files /dev/null and b/train2/pictures/d37d9b930339b4c33d27aa60453da083.png differ diff --git a/train2/pictures/d37da9c66689a8575ead0b49f0779bae.png b/train2/pictures/d37da9c66689a8575ead0b49f0779bae.png new file mode 100644 index 0000000..80e1967 Binary files /dev/null and b/train2/pictures/d37da9c66689a8575ead0b49f0779bae.png differ diff --git a/train2/pictures/d385b8dbbd3c3777643f92819585b487.png b/train2/pictures/d385b8dbbd3c3777643f92819585b487.png new file mode 100644 index 0000000..4251ced Binary files /dev/null and b/train2/pictures/d385b8dbbd3c3777643f92819585b487.png differ diff --git a/train2/pictures/d39ed305e8125223d0a7f60f8fab354e.png b/train2/pictures/d39ed305e8125223d0a7f60f8fab354e.png new file mode 100644 index 0000000..7c7b416 Binary files /dev/null and b/train2/pictures/d39ed305e8125223d0a7f60f8fab354e.png differ diff --git a/train2/pictures/d3a90d6c896b2e626112bf9b799c9ae3.png b/train2/pictures/d3a90d6c896b2e626112bf9b799c9ae3.png new file mode 100644 index 0000000..9fc8f14 Binary files /dev/null and b/train2/pictures/d3a90d6c896b2e626112bf9b799c9ae3.png differ diff --git a/train2/pictures/d3e646e0f22c8cfc93fb6c26cba3fd61.png b/train2/pictures/d3e646e0f22c8cfc93fb6c26cba3fd61.png new file mode 100644 index 0000000..d7312b9 Binary files /dev/null and b/train2/pictures/d3e646e0f22c8cfc93fb6c26cba3fd61.png differ diff --git a/train2/pictures/d3f1cd0287929d866aa48a24ee618a2c.png b/train2/pictures/d3f1cd0287929d866aa48a24ee618a2c.png new file mode 100644 index 0000000..30345fc Binary files /dev/null and b/train2/pictures/d3f1cd0287929d866aa48a24ee618a2c.png differ diff --git a/train2/pictures/d4224535c87fea61b22da84b5213da66.png b/train2/pictures/d4224535c87fea61b22da84b5213da66.png new file mode 100644 index 0000000..6ebe13e Binary files /dev/null and b/train2/pictures/d4224535c87fea61b22da84b5213da66.png differ diff --git a/train2/pictures/d438d0e17d228b86064d95f33af0faa3.png b/train2/pictures/d438d0e17d228b86064d95f33af0faa3.png new file mode 100644 index 0000000..0fcfc6a Binary files /dev/null and b/train2/pictures/d438d0e17d228b86064d95f33af0faa3.png differ diff --git a/train2/pictures/d44432dc90a623a1a474301762a0323e.png b/train2/pictures/d44432dc90a623a1a474301762a0323e.png new file mode 100644 index 0000000..cca348a Binary files /dev/null and b/train2/pictures/d44432dc90a623a1a474301762a0323e.png differ diff --git a/train2/pictures/d44d36d8578408ff3f8e67158f753950.png b/train2/pictures/d44d36d8578408ff3f8e67158f753950.png new file mode 100644 index 0000000..6cbaa8b Binary files /dev/null and b/train2/pictures/d44d36d8578408ff3f8e67158f753950.png differ diff --git a/train2/pictures/d45a4736801a6536521f33a598e88363.png b/train2/pictures/d45a4736801a6536521f33a598e88363.png new file mode 100644 index 0000000..fee60d9 Binary files /dev/null and b/train2/pictures/d45a4736801a6536521f33a598e88363.png differ diff --git a/train2/pictures/d480e2b9b8d6b188e4101aa08039508c.png b/train2/pictures/d480e2b9b8d6b188e4101aa08039508c.png new file mode 100644 index 0000000..de15df8 Binary files /dev/null and b/train2/pictures/d480e2b9b8d6b188e4101aa08039508c.png differ diff --git a/train2/pictures/d49407b2e263b8ee1da65bd4ec2b8435.png b/train2/pictures/d49407b2e263b8ee1da65bd4ec2b8435.png new file mode 100644 index 0000000..4ed0b8e Binary files /dev/null and b/train2/pictures/d49407b2e263b8ee1da65bd4ec2b8435.png differ diff --git a/train2/pictures/d4bd6171337a76541844422a0b0f9e6c.png b/train2/pictures/d4bd6171337a76541844422a0b0f9e6c.png new file mode 100644 index 0000000..fb685e5 Binary files /dev/null and b/train2/pictures/d4bd6171337a76541844422a0b0f9e6c.png differ diff --git a/train2/pictures/d4fe8ae8d46ca2ab0418dfde9360fdd3.png b/train2/pictures/d4fe8ae8d46ca2ab0418dfde9360fdd3.png new file mode 100644 index 0000000..c0a7924 Binary files /dev/null and b/train2/pictures/d4fe8ae8d46ca2ab0418dfde9360fdd3.png differ diff --git a/train2/pictures/d51e13ba89203f75debf7df74f80f847.png b/train2/pictures/d51e13ba89203f75debf7df74f80f847.png new file mode 100644 index 0000000..594af77 Binary files /dev/null and b/train2/pictures/d51e13ba89203f75debf7df74f80f847.png differ diff --git a/train2/pictures/d54e034d44add4f61c67e34a1919c35b.png b/train2/pictures/d54e034d44add4f61c67e34a1919c35b.png new file mode 100644 index 0000000..2a5e2f2 Binary files /dev/null and b/train2/pictures/d54e034d44add4f61c67e34a1919c35b.png differ diff --git a/train2/pictures/d5674e9ef8ace2ce6b1af5bab5881728.png b/train2/pictures/d5674e9ef8ace2ce6b1af5bab5881728.png new file mode 100644 index 0000000..8284746 Binary files /dev/null and b/train2/pictures/d5674e9ef8ace2ce6b1af5bab5881728.png differ diff --git a/train2/pictures/d57986ff1729bfc754178b02f2beb116.png b/train2/pictures/d57986ff1729bfc754178b02f2beb116.png new file mode 100644 index 0000000..8a4f969 Binary files /dev/null and b/train2/pictures/d57986ff1729bfc754178b02f2beb116.png differ diff --git a/train2/pictures/d57bb3d4bfea5f92d780767efefe0e44.png b/train2/pictures/d57bb3d4bfea5f92d780767efefe0e44.png new file mode 100644 index 0000000..d91ad20 Binary files /dev/null and b/train2/pictures/d57bb3d4bfea5f92d780767efefe0e44.png differ diff --git a/train2/pictures/d5f15ed4aa937b61f1bf105d9595539f.png b/train2/pictures/d5f15ed4aa937b61f1bf105d9595539f.png new file mode 100644 index 0000000..7d60b5b Binary files /dev/null and b/train2/pictures/d5f15ed4aa937b61f1bf105d9595539f.png differ diff --git a/train2/pictures/d60aceab9c16ee5866abd67a49b8f105.png b/train2/pictures/d60aceab9c16ee5866abd67a49b8f105.png new file mode 100644 index 0000000..f48bd67 Binary files /dev/null and b/train2/pictures/d60aceab9c16ee5866abd67a49b8f105.png differ diff --git a/train2/pictures/d62f9ccf4009f7a578cb770a0c360a4f.png b/train2/pictures/d62f9ccf4009f7a578cb770a0c360a4f.png new file mode 100644 index 0000000..60bb936 Binary files /dev/null and b/train2/pictures/d62f9ccf4009f7a578cb770a0c360a4f.png differ diff --git a/train2/pictures/d63d8eee3ff2d664436b49e8f46f8c90.png b/train2/pictures/d63d8eee3ff2d664436b49e8f46f8c90.png new file mode 100644 index 0000000..82400a0 Binary files /dev/null and b/train2/pictures/d63d8eee3ff2d664436b49e8f46f8c90.png differ diff --git a/train2/pictures/d64da0c0885cea329b9389fc1b5723e9.png b/train2/pictures/d64da0c0885cea329b9389fc1b5723e9.png new file mode 100644 index 0000000..f42f24c Binary files /dev/null and b/train2/pictures/d64da0c0885cea329b9389fc1b5723e9.png differ diff --git a/train2/pictures/d67118a894981b183ed011c0fa3012da.png b/train2/pictures/d67118a894981b183ed011c0fa3012da.png new file mode 100644 index 0000000..9a4b521 Binary files /dev/null and b/train2/pictures/d67118a894981b183ed011c0fa3012da.png differ diff --git a/train2/pictures/d6a942ecb2550af2b2e6c43c59c3adf5.png b/train2/pictures/d6a942ecb2550af2b2e6c43c59c3adf5.png new file mode 100644 index 0000000..f1ecefe Binary files /dev/null and b/train2/pictures/d6a942ecb2550af2b2e6c43c59c3adf5.png differ diff --git a/train2/pictures/d6ac619a1fa4e47a8efcaa244e23dfc4.png b/train2/pictures/d6ac619a1fa4e47a8efcaa244e23dfc4.png new file mode 100644 index 0000000..8a88d3c Binary files /dev/null and b/train2/pictures/d6ac619a1fa4e47a8efcaa244e23dfc4.png differ diff --git a/train2/pictures/d6e1d312d0536d8c9d5cb9268b93697e.png b/train2/pictures/d6e1d312d0536d8c9d5cb9268b93697e.png new file mode 100644 index 0000000..355a1f0 Binary files /dev/null and b/train2/pictures/d6e1d312d0536d8c9d5cb9268b93697e.png differ diff --git a/train2/pictures/d6fbbcee5ecf1095476c2cadc0a9b916.png b/train2/pictures/d6fbbcee5ecf1095476c2cadc0a9b916.png new file mode 100644 index 0000000..cbaadbe Binary files /dev/null and b/train2/pictures/d6fbbcee5ecf1095476c2cadc0a9b916.png differ diff --git a/train2/pictures/d70a6c4296fbc2623cbc938ba83be4db.png b/train2/pictures/d70a6c4296fbc2623cbc938ba83be4db.png new file mode 100644 index 0000000..e4b66de Binary files /dev/null and b/train2/pictures/d70a6c4296fbc2623cbc938ba83be4db.png differ diff --git a/train2/pictures/d71ac9f62b9abb12a8621f199a38d69c.png b/train2/pictures/d71ac9f62b9abb12a8621f199a38d69c.png new file mode 100644 index 0000000..a9a070b Binary files /dev/null and b/train2/pictures/d71ac9f62b9abb12a8621f199a38d69c.png differ diff --git a/train2/pictures/d71ba189c462c99d17e004c54519b0c0.png b/train2/pictures/d71ba189c462c99d17e004c54519b0c0.png new file mode 100644 index 0000000..699342b Binary files /dev/null and b/train2/pictures/d71ba189c462c99d17e004c54519b0c0.png differ diff --git a/train2/pictures/d71fc6e9b41fd3c7e8f084acd61f8516.png b/train2/pictures/d71fc6e9b41fd3c7e8f084acd61f8516.png new file mode 100644 index 0000000..108553e Binary files /dev/null and b/train2/pictures/d71fc6e9b41fd3c7e8f084acd61f8516.png differ diff --git a/train2/pictures/d7239bcb090821b7518252b2df0c44f1.png b/train2/pictures/d7239bcb090821b7518252b2df0c44f1.png new file mode 100644 index 0000000..c26a7bb Binary files /dev/null and b/train2/pictures/d7239bcb090821b7518252b2df0c44f1.png differ diff --git a/train2/pictures/d7610d0e24377987db672b2a9d1d5ccd.png b/train2/pictures/d7610d0e24377987db672b2a9d1d5ccd.png new file mode 100644 index 0000000..61683d4 Binary files /dev/null and b/train2/pictures/d7610d0e24377987db672b2a9d1d5ccd.png differ diff --git a/train2/pictures/d7a634978a38825b47c7d99633b19f51.png b/train2/pictures/d7a634978a38825b47c7d99633b19f51.png new file mode 100644 index 0000000..980bb78 Binary files /dev/null and b/train2/pictures/d7a634978a38825b47c7d99633b19f51.png differ diff --git a/train2/pictures/d7c1d0f05400b80dbbccf762d5662af1.png b/train2/pictures/d7c1d0f05400b80dbbccf762d5662af1.png new file mode 100644 index 0000000..0cc6e0e Binary files /dev/null and b/train2/pictures/d7c1d0f05400b80dbbccf762d5662af1.png differ diff --git a/train2/pictures/d7f3398715287b660c51761c5ca27c3b.png b/train2/pictures/d7f3398715287b660c51761c5ca27c3b.png new file mode 100644 index 0000000..4c24acc Binary files /dev/null and b/train2/pictures/d7f3398715287b660c51761c5ca27c3b.png differ diff --git a/train2/pictures/d8137e7906087ffa85f66295e9cf6c06.png b/train2/pictures/d8137e7906087ffa85f66295e9cf6c06.png new file mode 100644 index 0000000..156c242 Binary files /dev/null and b/train2/pictures/d8137e7906087ffa85f66295e9cf6c06.png differ diff --git a/train2/pictures/d874ebbf3afbf71e0bb5f4198fd313d7.png b/train2/pictures/d874ebbf3afbf71e0bb5f4198fd313d7.png new file mode 100644 index 0000000..080eb69 Binary files /dev/null and b/train2/pictures/d874ebbf3afbf71e0bb5f4198fd313d7.png differ diff --git a/train2/pictures/d89c679bd625c3bd73fa7e8f35b47008.png b/train2/pictures/d89c679bd625c3bd73fa7e8f35b47008.png new file mode 100644 index 0000000..62f5cd0 Binary files /dev/null and b/train2/pictures/d89c679bd625c3bd73fa7e8f35b47008.png differ diff --git a/train2/pictures/d8b1b2891c7c8fc4c64f5e8f8d98353d.png b/train2/pictures/d8b1b2891c7c8fc4c64f5e8f8d98353d.png new file mode 100644 index 0000000..3ce1792 Binary files /dev/null and b/train2/pictures/d8b1b2891c7c8fc4c64f5e8f8d98353d.png differ diff --git a/train2/pictures/d8bdf0c0f38346f1f1c007f6aaa9d3c8.png b/train2/pictures/d8bdf0c0f38346f1f1c007f6aaa9d3c8.png new file mode 100644 index 0000000..04cdf5d Binary files /dev/null and b/train2/pictures/d8bdf0c0f38346f1f1c007f6aaa9d3c8.png differ diff --git a/train2/pictures/d8c870bc7159e976be52fb85eb25ed83.png b/train2/pictures/d8c870bc7159e976be52fb85eb25ed83.png new file mode 100644 index 0000000..d0b43e7 Binary files /dev/null and b/train2/pictures/d8c870bc7159e976be52fb85eb25ed83.png differ diff --git a/train2/pictures/d8dc240e4555461e06e5a0aead97cdd8.png b/train2/pictures/d8dc240e4555461e06e5a0aead97cdd8.png new file mode 100644 index 0000000..8eaf42f Binary files /dev/null and b/train2/pictures/d8dc240e4555461e06e5a0aead97cdd8.png differ diff --git a/train2/pictures/d8dc73e0be0b2acb25d4e7097c4611eb.png b/train2/pictures/d8dc73e0be0b2acb25d4e7097c4611eb.png new file mode 100644 index 0000000..d7e3fa0 Binary files /dev/null and b/train2/pictures/d8dc73e0be0b2acb25d4e7097c4611eb.png differ diff --git a/train2/pictures/d8f94cfa2015eb540b1b49f4cfcee431.png b/train2/pictures/d8f94cfa2015eb540b1b49f4cfcee431.png new file mode 100644 index 0000000..3bb70c1 Binary files /dev/null and b/train2/pictures/d8f94cfa2015eb540b1b49f4cfcee431.png differ diff --git a/train2/pictures/d910286ec41f098afcb826c7f3492790.png b/train2/pictures/d910286ec41f098afcb826c7f3492790.png new file mode 100644 index 0000000..a8a51fe Binary files /dev/null and b/train2/pictures/d910286ec41f098afcb826c7f3492790.png differ diff --git a/train2/pictures/d94d8afd3e03407a5f7641208679eadd.png b/train2/pictures/d94d8afd3e03407a5f7641208679eadd.png new file mode 100644 index 0000000..7be249e Binary files /dev/null and b/train2/pictures/d94d8afd3e03407a5f7641208679eadd.png differ diff --git a/train2/pictures/d9832563464185d7873095d1eae102fd.png b/train2/pictures/d9832563464185d7873095d1eae102fd.png new file mode 100644 index 0000000..b2b1e71 Binary files /dev/null and b/train2/pictures/d9832563464185d7873095d1eae102fd.png differ diff --git a/train2/pictures/d995cc6e9d1a9cee0d761303e60e2272.png b/train2/pictures/d995cc6e9d1a9cee0d761303e60e2272.png new file mode 100644 index 0000000..9609155 Binary files /dev/null and b/train2/pictures/d995cc6e9d1a9cee0d761303e60e2272.png differ diff --git a/train2/pictures/d9a28af95147dc8cc69417ed5576c6c7.png b/train2/pictures/d9a28af95147dc8cc69417ed5576c6c7.png new file mode 100644 index 0000000..f5ad351 Binary files /dev/null and b/train2/pictures/d9a28af95147dc8cc69417ed5576c6c7.png differ diff --git a/train2/pictures/d9ed7a5bf8d487df000693a6d4dec220.png b/train2/pictures/d9ed7a5bf8d487df000693a6d4dec220.png new file mode 100644 index 0000000..c98f4f2 Binary files /dev/null and b/train2/pictures/d9ed7a5bf8d487df000693a6d4dec220.png differ diff --git a/train2/pictures/d9efafed245ba2177fa5c7fbdd8dfac1.png b/train2/pictures/d9efafed245ba2177fa5c7fbdd8dfac1.png new file mode 100644 index 0000000..c57ac60 Binary files /dev/null and b/train2/pictures/d9efafed245ba2177fa5c7fbdd8dfac1.png differ diff --git a/train2/pictures/da0347aaaba4dacc2b7945bf2cd8cbc5.png b/train2/pictures/da0347aaaba4dacc2b7945bf2cd8cbc5.png new file mode 100644 index 0000000..d17e312 Binary files /dev/null and b/train2/pictures/da0347aaaba4dacc2b7945bf2cd8cbc5.png differ diff --git a/train2/pictures/da30c3ae0d8f3d31d45f1b7fec43259b.png b/train2/pictures/da30c3ae0d8f3d31d45f1b7fec43259b.png new file mode 100644 index 0000000..6c6d935 Binary files /dev/null and b/train2/pictures/da30c3ae0d8f3d31d45f1b7fec43259b.png differ diff --git a/train2/pictures/da6fedb3ac3ebdc4db27eeffa97a808e.png b/train2/pictures/da6fedb3ac3ebdc4db27eeffa97a808e.png new file mode 100644 index 0000000..e887297 Binary files /dev/null and b/train2/pictures/da6fedb3ac3ebdc4db27eeffa97a808e.png differ diff --git a/train2/pictures/da7bf26c9043a967f1c0daeba755046d.png b/train2/pictures/da7bf26c9043a967f1c0daeba755046d.png new file mode 100644 index 0000000..2f3811e Binary files /dev/null and b/train2/pictures/da7bf26c9043a967f1c0daeba755046d.png differ diff --git a/train2/pictures/da8329ca5afd73bd6771c3feb4bfebfe.png b/train2/pictures/da8329ca5afd73bd6771c3feb4bfebfe.png new file mode 100644 index 0000000..ab94647 Binary files /dev/null and b/train2/pictures/da8329ca5afd73bd6771c3feb4bfebfe.png differ diff --git a/train2/pictures/da917382ccf24da3e9cda3428fecada5.png b/train2/pictures/da917382ccf24da3e9cda3428fecada5.png new file mode 100644 index 0000000..ca0b5a0 Binary files /dev/null and b/train2/pictures/da917382ccf24da3e9cda3428fecada5.png differ diff --git a/train2/pictures/dab3079db1f131a76addfaf0ed47657c.png b/train2/pictures/dab3079db1f131a76addfaf0ed47657c.png new file mode 100644 index 0000000..2c30988 Binary files /dev/null and b/train2/pictures/dab3079db1f131a76addfaf0ed47657c.png differ diff --git a/train2/pictures/dae0aea813408596a07b72894aacb25b.png b/train2/pictures/dae0aea813408596a07b72894aacb25b.png new file mode 100644 index 0000000..e1f9731 Binary files /dev/null and b/train2/pictures/dae0aea813408596a07b72894aacb25b.png differ diff --git a/train2/pictures/dae43839951a0d77fd56c561d2e55d9e.png b/train2/pictures/dae43839951a0d77fd56c561d2e55d9e.png new file mode 100644 index 0000000..008eba0 Binary files /dev/null and b/train2/pictures/dae43839951a0d77fd56c561d2e55d9e.png differ diff --git a/train2/pictures/dafd973642c00e1d008c5b91936975f0.png b/train2/pictures/dafd973642c00e1d008c5b91936975f0.png new file mode 100644 index 0000000..1d5b175 Binary files /dev/null and b/train2/pictures/dafd973642c00e1d008c5b91936975f0.png differ diff --git a/train2/pictures/dafdef5764d1e227ce32a91beb8b280b.png b/train2/pictures/dafdef5764d1e227ce32a91beb8b280b.png new file mode 100644 index 0000000..1cdf7d0 Binary files /dev/null and b/train2/pictures/dafdef5764d1e227ce32a91beb8b280b.png differ diff --git a/train2/pictures/db3b5c64642083d0671dc87bc9a83ec0.png b/train2/pictures/db3b5c64642083d0671dc87bc9a83ec0.png new file mode 100644 index 0000000..3ab4883 Binary files /dev/null and b/train2/pictures/db3b5c64642083d0671dc87bc9a83ec0.png differ diff --git a/train2/pictures/db3e702f3bfd18dab947ba0a7219b65a.png b/train2/pictures/db3e702f3bfd18dab947ba0a7219b65a.png new file mode 100644 index 0000000..864497d Binary files /dev/null and b/train2/pictures/db3e702f3bfd18dab947ba0a7219b65a.png differ diff --git a/train2/pictures/db58714db864082d2a09a1011303af17.png b/train2/pictures/db58714db864082d2a09a1011303af17.png new file mode 100644 index 0000000..d399d8b Binary files /dev/null and b/train2/pictures/db58714db864082d2a09a1011303af17.png differ diff --git a/train2/pictures/db624182f16ee20a7521186f69d35b85.png b/train2/pictures/db624182f16ee20a7521186f69d35b85.png new file mode 100644 index 0000000..faf32f9 Binary files /dev/null and b/train2/pictures/db624182f16ee20a7521186f69d35b85.png differ diff --git a/train2/pictures/dbabd563a45efe72eabec736f064816d.png b/train2/pictures/dbabd563a45efe72eabec736f064816d.png new file mode 100644 index 0000000..0d7aff6 Binary files /dev/null and b/train2/pictures/dbabd563a45efe72eabec736f064816d.png differ diff --git a/train2/pictures/dbac4820fade01dbcffaf68fc2cbdda0.png b/train2/pictures/dbac4820fade01dbcffaf68fc2cbdda0.png new file mode 100644 index 0000000..b3d3bfa Binary files /dev/null and b/train2/pictures/dbac4820fade01dbcffaf68fc2cbdda0.png differ diff --git a/train2/pictures/dbd0930ba09bdcd531e5be200655a01b.png b/train2/pictures/dbd0930ba09bdcd531e5be200655a01b.png new file mode 100644 index 0000000..a52834f Binary files /dev/null and b/train2/pictures/dbd0930ba09bdcd531e5be200655a01b.png differ diff --git a/train2/pictures/dbede6da8dd5148399ce1ea84a5b84f8.png b/train2/pictures/dbede6da8dd5148399ce1ea84a5b84f8.png new file mode 100644 index 0000000..e384e65 Binary files /dev/null and b/train2/pictures/dbede6da8dd5148399ce1ea84a5b84f8.png differ diff --git a/train2/pictures/dc00459b988554bec2291af76bffc71d.png b/train2/pictures/dc00459b988554bec2291af76bffc71d.png new file mode 100644 index 0000000..1243041 Binary files /dev/null and b/train2/pictures/dc00459b988554bec2291af76bffc71d.png differ diff --git a/train2/pictures/dc09b961d8a86cb60aa051738c6b6e7d.png b/train2/pictures/dc09b961d8a86cb60aa051738c6b6e7d.png new file mode 100644 index 0000000..093f018 Binary files /dev/null and b/train2/pictures/dc09b961d8a86cb60aa051738c6b6e7d.png differ diff --git a/train2/pictures/dc1ec92b51b3bfe5bc5e5c382521d979.png b/train2/pictures/dc1ec92b51b3bfe5bc5e5c382521d979.png new file mode 100644 index 0000000..0551dcd Binary files /dev/null and b/train2/pictures/dc1ec92b51b3bfe5bc5e5c382521d979.png differ diff --git a/train2/pictures/dc520ad05a921e6411f3dfad066ac9bc.png b/train2/pictures/dc520ad05a921e6411f3dfad066ac9bc.png new file mode 100644 index 0000000..55c14ba Binary files /dev/null and b/train2/pictures/dc520ad05a921e6411f3dfad066ac9bc.png differ diff --git a/train2/pictures/dc6dfd576970a9e0625ed04ecba80f52.png b/train2/pictures/dc6dfd576970a9e0625ed04ecba80f52.png new file mode 100644 index 0000000..4d67acb Binary files /dev/null and b/train2/pictures/dc6dfd576970a9e0625ed04ecba80f52.png differ diff --git a/train2/pictures/dcb397d2d138761c6bdbaee95e62502f.png b/train2/pictures/dcb397d2d138761c6bdbaee95e62502f.png new file mode 100644 index 0000000..f102c61 Binary files /dev/null and b/train2/pictures/dcb397d2d138761c6bdbaee95e62502f.png differ diff --git a/train2/pictures/dcf45e454217019017d3aac3b5bcdfbb.png b/train2/pictures/dcf45e454217019017d3aac3b5bcdfbb.png new file mode 100644 index 0000000..e47ea51 Binary files /dev/null and b/train2/pictures/dcf45e454217019017d3aac3b5bcdfbb.png differ diff --git a/train2/pictures/dd09475bbfdd8f512040d6bd50d3b9bd.png b/train2/pictures/dd09475bbfdd8f512040d6bd50d3b9bd.png new file mode 100644 index 0000000..0c1591d Binary files /dev/null and b/train2/pictures/dd09475bbfdd8f512040d6bd50d3b9bd.png differ diff --git a/train2/pictures/dd236debab134d30727823893a6e59e8.png b/train2/pictures/dd236debab134d30727823893a6e59e8.png new file mode 100644 index 0000000..a955528 Binary files /dev/null and b/train2/pictures/dd236debab134d30727823893a6e59e8.png differ diff --git a/train2/pictures/dd2925f2a976252435e311789890d5dd.png b/train2/pictures/dd2925f2a976252435e311789890d5dd.png new file mode 100644 index 0000000..2f8b367 Binary files /dev/null and b/train2/pictures/dd2925f2a976252435e311789890d5dd.png differ diff --git a/train2/pictures/dd51fd0fc00f0127860a32c1cb6c811f.png b/train2/pictures/dd51fd0fc00f0127860a32c1cb6c811f.png new file mode 100644 index 0000000..c1f4811 Binary files /dev/null and b/train2/pictures/dd51fd0fc00f0127860a32c1cb6c811f.png differ diff --git a/train2/pictures/dd91d11274697b23bc1bac61a2afc9da.png b/train2/pictures/dd91d11274697b23bc1bac61a2afc9da.png new file mode 100644 index 0000000..9241934 Binary files /dev/null and b/train2/pictures/dd91d11274697b23bc1bac61a2afc9da.png differ diff --git a/train2/pictures/dd9849534c20aae31d3103703373aa1c.png b/train2/pictures/dd9849534c20aae31d3103703373aa1c.png new file mode 100644 index 0000000..7ed2167 Binary files /dev/null and b/train2/pictures/dd9849534c20aae31d3103703373aa1c.png differ diff --git a/train2/pictures/ddae64a1a6105efb5acab2be50c12990.png b/train2/pictures/ddae64a1a6105efb5acab2be50c12990.png new file mode 100644 index 0000000..0dd446b Binary files /dev/null and b/train2/pictures/ddae64a1a6105efb5acab2be50c12990.png differ diff --git a/train2/pictures/dddf11b266735b1018718a326bc0b144.png b/train2/pictures/dddf11b266735b1018718a326bc0b144.png new file mode 100644 index 0000000..9aec316 Binary files /dev/null and b/train2/pictures/dddf11b266735b1018718a326bc0b144.png differ diff --git a/train2/pictures/de3ea1ae4e71fceeffafb8b6a02b39ee.png b/train2/pictures/de3ea1ae4e71fceeffafb8b6a02b39ee.png new file mode 100644 index 0000000..df9ab26 Binary files /dev/null and b/train2/pictures/de3ea1ae4e71fceeffafb8b6a02b39ee.png differ diff --git a/train2/pictures/de5477c6d9c9419a2a184fea0441067a.png b/train2/pictures/de5477c6d9c9419a2a184fea0441067a.png new file mode 100644 index 0000000..4b98ba1 Binary files /dev/null and b/train2/pictures/de5477c6d9c9419a2a184fea0441067a.png differ diff --git a/train2/pictures/de68504d3b5aa9536e025ca774d653b3.png b/train2/pictures/de68504d3b5aa9536e025ca774d653b3.png new file mode 100644 index 0000000..40cac8f Binary files /dev/null and b/train2/pictures/de68504d3b5aa9536e025ca774d653b3.png differ diff --git a/train2/pictures/de78875fd4db036624340ae69be8f888.png b/train2/pictures/de78875fd4db036624340ae69be8f888.png new file mode 100644 index 0000000..3a9a559 Binary files /dev/null and b/train2/pictures/de78875fd4db036624340ae69be8f888.png differ diff --git a/train2/pictures/de8684b6520307385d5a5870be670b4c.png b/train2/pictures/de8684b6520307385d5a5870be670b4c.png new file mode 100644 index 0000000..0e28e58 Binary files /dev/null and b/train2/pictures/de8684b6520307385d5a5870be670b4c.png differ diff --git a/train2/pictures/de97f79168ad5ba9a4bbc238e6816ead.png b/train2/pictures/de97f79168ad5ba9a4bbc238e6816ead.png new file mode 100644 index 0000000..49e8be3 Binary files /dev/null and b/train2/pictures/de97f79168ad5ba9a4bbc238e6816ead.png differ diff --git a/train2/pictures/dea5c4f77c92b5ef81bb341d1f7e5c09.png b/train2/pictures/dea5c4f77c92b5ef81bb341d1f7e5c09.png new file mode 100644 index 0000000..5baa957 Binary files /dev/null and b/train2/pictures/dea5c4f77c92b5ef81bb341d1f7e5c09.png differ diff --git a/train2/pictures/debb8c6d71a1cb423c311abbb4f412f1.png b/train2/pictures/debb8c6d71a1cb423c311abbb4f412f1.png new file mode 100644 index 0000000..96220fa Binary files /dev/null and b/train2/pictures/debb8c6d71a1cb423c311abbb4f412f1.png differ diff --git a/train2/pictures/df6552af2ad316843f7b44bb3b58f749.png b/train2/pictures/df6552af2ad316843f7b44bb3b58f749.png new file mode 100644 index 0000000..be1fb3b Binary files /dev/null and b/train2/pictures/df6552af2ad316843f7b44bb3b58f749.png differ diff --git a/train2/pictures/e0b4960440fe4d4cdeeed53a9a595300.png b/train2/pictures/e0b4960440fe4d4cdeeed53a9a595300.png new file mode 100644 index 0000000..16f0cff Binary files /dev/null and b/train2/pictures/e0b4960440fe4d4cdeeed53a9a595300.png differ diff --git a/train2/pictures/e0e88fd6c37ee671420608772a4252d0.png b/train2/pictures/e0e88fd6c37ee671420608772a4252d0.png new file mode 100644 index 0000000..a71a8a6 Binary files /dev/null and b/train2/pictures/e0e88fd6c37ee671420608772a4252d0.png differ diff --git a/train2/pictures/e0ecb64f3baa254b8f41f55bf848ae6a.png b/train2/pictures/e0ecb64f3baa254b8f41f55bf848ae6a.png new file mode 100644 index 0000000..8fe0fbd Binary files /dev/null and b/train2/pictures/e0ecb64f3baa254b8f41f55bf848ae6a.png differ diff --git a/train2/pictures/e128b4c9a6bbd81f4e87911a66174d18.png b/train2/pictures/e128b4c9a6bbd81f4e87911a66174d18.png new file mode 100644 index 0000000..13512f4 Binary files /dev/null and b/train2/pictures/e128b4c9a6bbd81f4e87911a66174d18.png differ diff --git a/train2/pictures/e17ee0313141f88d454a2927d75a42c0.png b/train2/pictures/e17ee0313141f88d454a2927d75a42c0.png new file mode 100644 index 0000000..c8d9a45 Binary files /dev/null and b/train2/pictures/e17ee0313141f88d454a2927d75a42c0.png differ diff --git a/train2/pictures/e193a62bd22abecd22a3d4b17f6eec90.png b/train2/pictures/e193a62bd22abecd22a3d4b17f6eec90.png new file mode 100644 index 0000000..5c045e8 Binary files /dev/null and b/train2/pictures/e193a62bd22abecd22a3d4b17f6eec90.png differ diff --git a/train2/pictures/e1c5d4a465c3539a1a1e02cacf73a2eb.png b/train2/pictures/e1c5d4a465c3539a1a1e02cacf73a2eb.png new file mode 100644 index 0000000..dd1cb88 Binary files /dev/null and b/train2/pictures/e1c5d4a465c3539a1a1e02cacf73a2eb.png differ diff --git a/train2/pictures/e1d2b76c2dc344b090e59aa94ae61001.png b/train2/pictures/e1d2b76c2dc344b090e59aa94ae61001.png new file mode 100644 index 0000000..786f035 Binary files /dev/null and b/train2/pictures/e1d2b76c2dc344b090e59aa94ae61001.png differ diff --git a/train2/pictures/e1d77dcc23e791d534f6dc17fcf13bad.png b/train2/pictures/e1d77dcc23e791d534f6dc17fcf13bad.png new file mode 100644 index 0000000..e268f63 Binary files /dev/null and b/train2/pictures/e1d77dcc23e791d534f6dc17fcf13bad.png differ diff --git a/train2/pictures/e26295a10962d025609a2ddbcbd82e0b.png b/train2/pictures/e26295a10962d025609a2ddbcbd82e0b.png new file mode 100644 index 0000000..b158e1d Binary files /dev/null and b/train2/pictures/e26295a10962d025609a2ddbcbd82e0b.png differ diff --git a/train2/pictures/e28e95df5e4ff5270734a790ab59af91.png b/train2/pictures/e28e95df5e4ff5270734a790ab59af91.png new file mode 100644 index 0000000..188ae74 Binary files /dev/null and b/train2/pictures/e28e95df5e4ff5270734a790ab59af91.png differ diff --git a/train2/pictures/e2d79d75234f13c0cb9e912260fa9d8e.png b/train2/pictures/e2d79d75234f13c0cb9e912260fa9d8e.png new file mode 100644 index 0000000..fe591bb Binary files /dev/null and b/train2/pictures/e2d79d75234f13c0cb9e912260fa9d8e.png differ diff --git a/train2/pictures/e2ec032a15f6457db952c490c62b7aa0.png b/train2/pictures/e2ec032a15f6457db952c490c62b7aa0.png new file mode 100644 index 0000000..16b7f4a Binary files /dev/null and b/train2/pictures/e2ec032a15f6457db952c490c62b7aa0.png differ diff --git a/train2/pictures/e321134439af5924b418d9bf01904f10.png b/train2/pictures/e321134439af5924b418d9bf01904f10.png new file mode 100644 index 0000000..9cbee45 Binary files /dev/null and b/train2/pictures/e321134439af5924b418d9bf01904f10.png differ diff --git a/train2/pictures/e32b92fe8cd89a68ec3ddbbb46e5ba4e.png b/train2/pictures/e32b92fe8cd89a68ec3ddbbb46e5ba4e.png new file mode 100644 index 0000000..31364a3 Binary files /dev/null and b/train2/pictures/e32b92fe8cd89a68ec3ddbbb46e5ba4e.png differ diff --git a/train2/pictures/e32f247233993450e00866cddd6e2e07.png b/train2/pictures/e32f247233993450e00866cddd6e2e07.png new file mode 100644 index 0000000..22c0bea Binary files /dev/null and b/train2/pictures/e32f247233993450e00866cddd6e2e07.png differ diff --git a/train2/pictures/e34b991ef429fe9f060dc874a4e3e5e0.png b/train2/pictures/e34b991ef429fe9f060dc874a4e3e5e0.png new file mode 100644 index 0000000..da413d5 Binary files /dev/null and b/train2/pictures/e34b991ef429fe9f060dc874a4e3e5e0.png differ diff --git a/train2/pictures/e35fc5690731e9f079a3fb5f8c9d0060.png b/train2/pictures/e35fc5690731e9f079a3fb5f8c9d0060.png new file mode 100644 index 0000000..f751c3d Binary files /dev/null and b/train2/pictures/e35fc5690731e9f079a3fb5f8c9d0060.png differ diff --git a/train2/pictures/e37ff298d50619ee4e955c17cb1eff18.png b/train2/pictures/e37ff298d50619ee4e955c17cb1eff18.png new file mode 100644 index 0000000..98855bb Binary files /dev/null and b/train2/pictures/e37ff298d50619ee4e955c17cb1eff18.png differ diff --git a/train2/pictures/e386a02f37bf1196f20dd07f037ef6d3.png b/train2/pictures/e386a02f37bf1196f20dd07f037ef6d3.png new file mode 100644 index 0000000..db07125 Binary files /dev/null and b/train2/pictures/e386a02f37bf1196f20dd07f037ef6d3.png differ diff --git a/train2/pictures/e3b70b006049d379d603b4dd9c9ecf3b.png b/train2/pictures/e3b70b006049d379d603b4dd9c9ecf3b.png new file mode 100644 index 0000000..100b808 Binary files /dev/null and b/train2/pictures/e3b70b006049d379d603b4dd9c9ecf3b.png differ diff --git a/train2/pictures/e3b9c308895d76a85d3a30c05be742f5.png b/train2/pictures/e3b9c308895d76a85d3a30c05be742f5.png new file mode 100644 index 0000000..69bbf17 Binary files /dev/null and b/train2/pictures/e3b9c308895d76a85d3a30c05be742f5.png differ diff --git a/train2/pictures/e3fa96aa34f101559d722d3d5b6dafb8.png b/train2/pictures/e3fa96aa34f101559d722d3d5b6dafb8.png new file mode 100644 index 0000000..8aeff36 Binary files /dev/null and b/train2/pictures/e3fa96aa34f101559d722d3d5b6dafb8.png differ diff --git a/train2/pictures/e3ff77bf4ea65d18e331f44bb3b2aed2.png b/train2/pictures/e3ff77bf4ea65d18e331f44bb3b2aed2.png new file mode 100644 index 0000000..cadbd25 Binary files /dev/null and b/train2/pictures/e3ff77bf4ea65d18e331f44bb3b2aed2.png differ diff --git a/train2/pictures/e42c3ac8f44aa840dc90fdd06944aa89.png b/train2/pictures/e42c3ac8f44aa840dc90fdd06944aa89.png new file mode 100644 index 0000000..275ed7d Binary files /dev/null and b/train2/pictures/e42c3ac8f44aa840dc90fdd06944aa89.png differ diff --git a/train2/pictures/e42ff681454f167bb3c8289feb1ae629.png b/train2/pictures/e42ff681454f167bb3c8289feb1ae629.png new file mode 100644 index 0000000..4c4c741 Binary files /dev/null and b/train2/pictures/e42ff681454f167bb3c8289feb1ae629.png differ diff --git a/train2/pictures/e452c655bb43f5777f17b23f5085e99b.png b/train2/pictures/e452c655bb43f5777f17b23f5085e99b.png new file mode 100644 index 0000000..21cc4e9 Binary files /dev/null and b/train2/pictures/e452c655bb43f5777f17b23f5085e99b.png differ diff --git a/train2/pictures/e45feb6fce5a3bc56c68c60db6c4e9e0.png b/train2/pictures/e45feb6fce5a3bc56c68c60db6c4e9e0.png new file mode 100644 index 0000000..b6c678d Binary files /dev/null and b/train2/pictures/e45feb6fce5a3bc56c68c60db6c4e9e0.png differ diff --git a/train2/pictures/e488f5e51497b8bf85f95fe49328d956.png b/train2/pictures/e488f5e51497b8bf85f95fe49328d956.png new file mode 100644 index 0000000..6d38107 Binary files /dev/null and b/train2/pictures/e488f5e51497b8bf85f95fe49328d956.png differ diff --git a/train2/pictures/e489fb5473568eaad4d3a4b3f521d379.png b/train2/pictures/e489fb5473568eaad4d3a4b3f521d379.png new file mode 100644 index 0000000..61dea9f Binary files /dev/null and b/train2/pictures/e489fb5473568eaad4d3a4b3f521d379.png differ diff --git a/train2/pictures/e49db72cffeaee27192e837651037724.png b/train2/pictures/e49db72cffeaee27192e837651037724.png new file mode 100644 index 0000000..6c6c8eb Binary files /dev/null and b/train2/pictures/e49db72cffeaee27192e837651037724.png differ diff --git a/train2/pictures/e4a28e7319e68992aa0ef676e6ee50c1.png b/train2/pictures/e4a28e7319e68992aa0ef676e6ee50c1.png new file mode 100644 index 0000000..fef85a2 Binary files /dev/null and b/train2/pictures/e4a28e7319e68992aa0ef676e6ee50c1.png differ diff --git a/train2/pictures/e4b46abc485b44cd04ec104c8aa25d8b.png b/train2/pictures/e4b46abc485b44cd04ec104c8aa25d8b.png new file mode 100644 index 0000000..f603cdd Binary files /dev/null and b/train2/pictures/e4b46abc485b44cd04ec104c8aa25d8b.png differ diff --git a/train2/pictures/e4c59a549ffefcc22d389cd5e708fe41.png b/train2/pictures/e4c59a549ffefcc22d389cd5e708fe41.png new file mode 100644 index 0000000..a07b42c Binary files /dev/null and b/train2/pictures/e4c59a549ffefcc22d389cd5e708fe41.png differ diff --git a/train2/pictures/e4cde46f29ed7bdbe672adcf1743b314.png b/train2/pictures/e4cde46f29ed7bdbe672adcf1743b314.png new file mode 100644 index 0000000..229bcc9 Binary files /dev/null and b/train2/pictures/e4cde46f29ed7bdbe672adcf1743b314.png differ diff --git a/train2/pictures/e4ddb6f264d77290002f4671886c7ac2.png b/train2/pictures/e4ddb6f264d77290002f4671886c7ac2.png new file mode 100644 index 0000000..b6787a7 Binary files /dev/null and b/train2/pictures/e4ddb6f264d77290002f4671886c7ac2.png differ diff --git a/train2/pictures/e4e4fcf456c03a3375543a85a2a4dabe.png b/train2/pictures/e4e4fcf456c03a3375543a85a2a4dabe.png new file mode 100644 index 0000000..e05a101 Binary files /dev/null and b/train2/pictures/e4e4fcf456c03a3375543a85a2a4dabe.png differ diff --git a/train2/pictures/e53af1f99fdea65ab964a7f768416d30.png b/train2/pictures/e53af1f99fdea65ab964a7f768416d30.png new file mode 100644 index 0000000..c2fe6f8 Binary files /dev/null and b/train2/pictures/e53af1f99fdea65ab964a7f768416d30.png differ diff --git a/train2/pictures/e53db0df4ad1432d65d2411daca0fa17.png b/train2/pictures/e53db0df4ad1432d65d2411daca0fa17.png new file mode 100644 index 0000000..c52742a Binary files /dev/null and b/train2/pictures/e53db0df4ad1432d65d2411daca0fa17.png differ diff --git a/train2/pictures/e54118354c8a582dae3d6d626184ca26.png b/train2/pictures/e54118354c8a582dae3d6d626184ca26.png new file mode 100644 index 0000000..1466654 Binary files /dev/null and b/train2/pictures/e54118354c8a582dae3d6d626184ca26.png differ diff --git a/train2/pictures/e56c8cb3ef4a923af2625e95fe615a79.png b/train2/pictures/e56c8cb3ef4a923af2625e95fe615a79.png new file mode 100644 index 0000000..5450fd0 Binary files /dev/null and b/train2/pictures/e56c8cb3ef4a923af2625e95fe615a79.png differ diff --git a/train2/pictures/e576cd99fb5050aefea5406820e764a8.png b/train2/pictures/e576cd99fb5050aefea5406820e764a8.png new file mode 100644 index 0000000..35404e2 Binary files /dev/null and b/train2/pictures/e576cd99fb5050aefea5406820e764a8.png differ diff --git a/train2/pictures/e58bc462700a37f96b311804ccbefaaf.png b/train2/pictures/e58bc462700a37f96b311804ccbefaaf.png new file mode 100644 index 0000000..d354431 Binary files /dev/null and b/train2/pictures/e58bc462700a37f96b311804ccbefaaf.png differ diff --git a/train2/pictures/e599d70b08c759d6949cc6e50df61e3b.png b/train2/pictures/e599d70b08c759d6949cc6e50df61e3b.png new file mode 100644 index 0000000..9ea6442 Binary files /dev/null and b/train2/pictures/e599d70b08c759d6949cc6e50df61e3b.png differ diff --git a/train2/pictures/e5d90d17945793c99645fef201d93136.png b/train2/pictures/e5d90d17945793c99645fef201d93136.png new file mode 100644 index 0000000..041888e Binary files /dev/null and b/train2/pictures/e5d90d17945793c99645fef201d93136.png differ diff --git a/train2/pictures/e5f13023f9cf8260937a38db14cb42ce.png b/train2/pictures/e5f13023f9cf8260937a38db14cb42ce.png new file mode 100644 index 0000000..1d6c10f Binary files /dev/null and b/train2/pictures/e5f13023f9cf8260937a38db14cb42ce.png differ diff --git a/train2/pictures/e66bd64c773ce9b916f2e07ade17cd3b.png b/train2/pictures/e66bd64c773ce9b916f2e07ade17cd3b.png new file mode 100644 index 0000000..4d70e64 Binary files /dev/null and b/train2/pictures/e66bd64c773ce9b916f2e07ade17cd3b.png differ diff --git a/train2/pictures/e680e6fb148cf5e25ba24dc4af8cbe00.png b/train2/pictures/e680e6fb148cf5e25ba24dc4af8cbe00.png new file mode 100644 index 0000000..e8980fd Binary files /dev/null and b/train2/pictures/e680e6fb148cf5e25ba24dc4af8cbe00.png differ diff --git a/train2/pictures/e68c13cb31bae8708328f18ee676a7ae.png b/train2/pictures/e68c13cb31bae8708328f18ee676a7ae.png new file mode 100644 index 0000000..d9f5e2d Binary files /dev/null and b/train2/pictures/e68c13cb31bae8708328f18ee676a7ae.png differ diff --git a/train2/pictures/e6aeb075b9a42bd5aeacbd2a2ed3904c.png b/train2/pictures/e6aeb075b9a42bd5aeacbd2a2ed3904c.png new file mode 100644 index 0000000..86a98c3 Binary files /dev/null and b/train2/pictures/e6aeb075b9a42bd5aeacbd2a2ed3904c.png differ diff --git a/train2/pictures/e6f46b0d8867e10ba6e47edd677c9e5f.png b/train2/pictures/e6f46b0d8867e10ba6e47edd677c9e5f.png new file mode 100644 index 0000000..bbc1de6 Binary files /dev/null and b/train2/pictures/e6f46b0d8867e10ba6e47edd677c9e5f.png differ diff --git a/train2/pictures/e716a1ee35480866bf1553561c05613f.png b/train2/pictures/e716a1ee35480866bf1553561c05613f.png new file mode 100644 index 0000000..902fca8 Binary files /dev/null and b/train2/pictures/e716a1ee35480866bf1553561c05613f.png differ diff --git a/train2/pictures/e71b4fc38e770e7d90f6d21f6c726ea5.png b/train2/pictures/e71b4fc38e770e7d90f6d21f6c726ea5.png new file mode 100644 index 0000000..9ee964b Binary files /dev/null and b/train2/pictures/e71b4fc38e770e7d90f6d21f6c726ea5.png differ diff --git a/train2/pictures/e73883c4e7e91e2fd1c5d59d0edf684b.png b/train2/pictures/e73883c4e7e91e2fd1c5d59d0edf684b.png new file mode 100644 index 0000000..592f711 Binary files /dev/null and b/train2/pictures/e73883c4e7e91e2fd1c5d59d0edf684b.png differ diff --git a/train2/pictures/e79c286b8c3bccc3c36df3eb3fde1e9b.png b/train2/pictures/e79c286b8c3bccc3c36df3eb3fde1e9b.png new file mode 100644 index 0000000..25f5174 Binary files /dev/null and b/train2/pictures/e79c286b8c3bccc3c36df3eb3fde1e9b.png differ diff --git a/train2/pictures/e7a00d4ffb885bb44f70a3ff454b0054.png b/train2/pictures/e7a00d4ffb885bb44f70a3ff454b0054.png new file mode 100644 index 0000000..746a8b0 Binary files /dev/null and b/train2/pictures/e7a00d4ffb885bb44f70a3ff454b0054.png differ diff --git a/train2/pictures/e7a538a9aa29725bdd2547bef150d069.png b/train2/pictures/e7a538a9aa29725bdd2547bef150d069.png new file mode 100644 index 0000000..9f42e12 Binary files /dev/null and b/train2/pictures/e7a538a9aa29725bdd2547bef150d069.png differ diff --git a/train2/pictures/e7a9ab74f8ffc8103e8e1e421bafe07a.png b/train2/pictures/e7a9ab74f8ffc8103e8e1e421bafe07a.png new file mode 100644 index 0000000..d3dd30c Binary files /dev/null and b/train2/pictures/e7a9ab74f8ffc8103e8e1e421bafe07a.png differ diff --git a/train2/pictures/e7c4123e40b476a3ce7b47c24c29b1e8.png b/train2/pictures/e7c4123e40b476a3ce7b47c24c29b1e8.png new file mode 100644 index 0000000..552dd8f Binary files /dev/null and b/train2/pictures/e7c4123e40b476a3ce7b47c24c29b1e8.png differ diff --git a/train2/pictures/e7c7d9468072eeeb5de4ed1840a54350.png b/train2/pictures/e7c7d9468072eeeb5de4ed1840a54350.png new file mode 100644 index 0000000..3fc2c92 Binary files /dev/null and b/train2/pictures/e7c7d9468072eeeb5de4ed1840a54350.png differ diff --git a/train2/pictures/e7db08058c60149ce1f8c5b539f6e707.png b/train2/pictures/e7db08058c60149ce1f8c5b539f6e707.png new file mode 100644 index 0000000..41ebf76 Binary files /dev/null and b/train2/pictures/e7db08058c60149ce1f8c5b539f6e707.png differ diff --git a/train2/pictures/e7f760f5eea45beb71e2e6f977c61df6.png b/train2/pictures/e7f760f5eea45beb71e2e6f977c61df6.png new file mode 100644 index 0000000..7fa3fb7 Binary files /dev/null and b/train2/pictures/e7f760f5eea45beb71e2e6f977c61df6.png differ diff --git a/train2/pictures/e80886124cbad55142bb17117eec10de.png b/train2/pictures/e80886124cbad55142bb17117eec10de.png new file mode 100644 index 0000000..83d92b0 Binary files /dev/null and b/train2/pictures/e80886124cbad55142bb17117eec10de.png differ diff --git a/train2/pictures/e845af8dd6f387f652136c97025848d5.png b/train2/pictures/e845af8dd6f387f652136c97025848d5.png new file mode 100644 index 0000000..c0070d6 Binary files /dev/null and b/train2/pictures/e845af8dd6f387f652136c97025848d5.png differ diff --git a/train2/pictures/e88d651c0bebfc04f15bf8ef2ff5f1a2.png b/train2/pictures/e88d651c0bebfc04f15bf8ef2ff5f1a2.png new file mode 100644 index 0000000..e790006 Binary files /dev/null and b/train2/pictures/e88d651c0bebfc04f15bf8ef2ff5f1a2.png differ diff --git a/train2/pictures/e899302225b2d63a4cc82f44cea2d1e6.png b/train2/pictures/e899302225b2d63a4cc82f44cea2d1e6.png new file mode 100644 index 0000000..7e1d9c0 Binary files /dev/null and b/train2/pictures/e899302225b2d63a4cc82f44cea2d1e6.png differ diff --git a/train2/pictures/e8a53adb1f7d6e807b9ca3ffd03c1ae4.png b/train2/pictures/e8a53adb1f7d6e807b9ca3ffd03c1ae4.png new file mode 100644 index 0000000..1d817d1 Binary files /dev/null and b/train2/pictures/e8a53adb1f7d6e807b9ca3ffd03c1ae4.png differ diff --git a/train2/pictures/e8b2bddd98c4e283b8cd737a3cbedefd.png b/train2/pictures/e8b2bddd98c4e283b8cd737a3cbedefd.png new file mode 100644 index 0000000..6d3534a Binary files /dev/null and b/train2/pictures/e8b2bddd98c4e283b8cd737a3cbedefd.png differ diff --git a/train2/pictures/e8eab660e2872d88470f37d043d5fc6a.png b/train2/pictures/e8eab660e2872d88470f37d043d5fc6a.png new file mode 100644 index 0000000..aef8756 Binary files /dev/null and b/train2/pictures/e8eab660e2872d88470f37d043d5fc6a.png differ diff --git a/train2/pictures/e91b76119998626c4597181002f5b458.png b/train2/pictures/e91b76119998626c4597181002f5b458.png new file mode 100644 index 0000000..23ee08f Binary files /dev/null and b/train2/pictures/e91b76119998626c4597181002f5b458.png differ diff --git a/train2/pictures/e935f70194d5d0846569b41f01a06b01.png b/train2/pictures/e935f70194d5d0846569b41f01a06b01.png new file mode 100644 index 0000000..2e66977 Binary files /dev/null and b/train2/pictures/e935f70194d5d0846569b41f01a06b01.png differ diff --git a/train2/pictures/e9567601856e09533dff1d333a178e14.png b/train2/pictures/e9567601856e09533dff1d333a178e14.png new file mode 100644 index 0000000..fe65128 Binary files /dev/null and b/train2/pictures/e9567601856e09533dff1d333a178e14.png differ diff --git a/train2/pictures/e96d74a78c14c91931ea9764930f89cf.png b/train2/pictures/e96d74a78c14c91931ea9764930f89cf.png new file mode 100644 index 0000000..65f1091 Binary files /dev/null and b/train2/pictures/e96d74a78c14c91931ea9764930f89cf.png differ diff --git a/train2/pictures/e97fb23b9ef665d84df0445a8c49d6ef.png b/train2/pictures/e97fb23b9ef665d84df0445a8c49d6ef.png new file mode 100644 index 0000000..6dae7ab Binary files /dev/null and b/train2/pictures/e97fb23b9ef665d84df0445a8c49d6ef.png differ diff --git a/train2/pictures/e98886f677e9ac440c9266780c92416e.png b/train2/pictures/e98886f677e9ac440c9266780c92416e.png new file mode 100644 index 0000000..90d500b Binary files /dev/null and b/train2/pictures/e98886f677e9ac440c9266780c92416e.png differ diff --git a/train2/pictures/e9c2654fac8227ecd1e474180bb20809.png b/train2/pictures/e9c2654fac8227ecd1e474180bb20809.png new file mode 100644 index 0000000..3fc90d2 Binary files /dev/null and b/train2/pictures/e9c2654fac8227ecd1e474180bb20809.png differ diff --git a/train2/pictures/e9ccc706efdbd130389b800f22a32764.png b/train2/pictures/e9ccc706efdbd130389b800f22a32764.png new file mode 100644 index 0000000..fbd6d66 Binary files /dev/null and b/train2/pictures/e9ccc706efdbd130389b800f22a32764.png differ diff --git a/train2/pictures/e9d6346bd958b623aabe18e713966e22.png b/train2/pictures/e9d6346bd958b623aabe18e713966e22.png new file mode 100644 index 0000000..99a8ec9 Binary files /dev/null and b/train2/pictures/e9d6346bd958b623aabe18e713966e22.png differ diff --git a/train2/pictures/e9e591d2f973acef6c1475f2e9c41eb9.png b/train2/pictures/e9e591d2f973acef6c1475f2e9c41eb9.png new file mode 100644 index 0000000..06cb1d6 Binary files /dev/null and b/train2/pictures/e9e591d2f973acef6c1475f2e9c41eb9.png differ diff --git a/train2/pictures/e9ea1a2cf35602801e53c81aa2e81310.png b/train2/pictures/e9ea1a2cf35602801e53c81aa2e81310.png new file mode 100644 index 0000000..4a3bc31 Binary files /dev/null and b/train2/pictures/e9ea1a2cf35602801e53c81aa2e81310.png differ diff --git a/train2/pictures/e9ebbb31ff1a2facac46db1f464a84f0.png b/train2/pictures/e9ebbb31ff1a2facac46db1f464a84f0.png new file mode 100644 index 0000000..4b9b208 Binary files /dev/null and b/train2/pictures/e9ebbb31ff1a2facac46db1f464a84f0.png differ diff --git a/train2/pictures/e9ed7a56698cd203960373cd93c19820.png b/train2/pictures/e9ed7a56698cd203960373cd93c19820.png new file mode 100644 index 0000000..ba0fbef Binary files /dev/null and b/train2/pictures/e9ed7a56698cd203960373cd93c19820.png differ diff --git a/train2/pictures/e9f62bc711bdfb04c2a944d2f73d6335.png b/train2/pictures/e9f62bc711bdfb04c2a944d2f73d6335.png new file mode 100644 index 0000000..f64852f Binary files /dev/null and b/train2/pictures/e9f62bc711bdfb04c2a944d2f73d6335.png differ diff --git a/train2/pictures/e9f73b060a8d8df3894f560e90e85004.png b/train2/pictures/e9f73b060a8d8df3894f560e90e85004.png new file mode 100644 index 0000000..2393103 Binary files /dev/null and b/train2/pictures/e9f73b060a8d8df3894f560e90e85004.png differ diff --git a/train2/pictures/ea042feb1a18008e2c8a10f60511589e.png b/train2/pictures/ea042feb1a18008e2c8a10f60511589e.png new file mode 100644 index 0000000..0004aa8 Binary files /dev/null and b/train2/pictures/ea042feb1a18008e2c8a10f60511589e.png differ diff --git a/train2/pictures/ea16831bdd77611fbc72babe2ed7d5ae.png b/train2/pictures/ea16831bdd77611fbc72babe2ed7d5ae.png new file mode 100644 index 0000000..ec0aa9d Binary files /dev/null and b/train2/pictures/ea16831bdd77611fbc72babe2ed7d5ae.png differ diff --git a/train2/pictures/ea1715c87520e25676a2c8d9f89c2ea2.png b/train2/pictures/ea1715c87520e25676a2c8d9f89c2ea2.png new file mode 100644 index 0000000..9e8becd Binary files /dev/null and b/train2/pictures/ea1715c87520e25676a2c8d9f89c2ea2.png differ diff --git a/train2/pictures/ea47980549d11107a18aa57fdb39aef0.png b/train2/pictures/ea47980549d11107a18aa57fdb39aef0.png new file mode 100644 index 0000000..9ad2680 Binary files /dev/null and b/train2/pictures/ea47980549d11107a18aa57fdb39aef0.png differ diff --git a/train2/pictures/ea6b13775e85e57e2bfac2922e1731fb.png b/train2/pictures/ea6b13775e85e57e2bfac2922e1731fb.png new file mode 100644 index 0000000..cc0a3f2 Binary files /dev/null and b/train2/pictures/ea6b13775e85e57e2bfac2922e1731fb.png differ diff --git a/train2/pictures/ea77a94fe07d66ce3876a0f74e00ed65.png b/train2/pictures/ea77a94fe07d66ce3876a0f74e00ed65.png new file mode 100644 index 0000000..10f0632 Binary files /dev/null and b/train2/pictures/ea77a94fe07d66ce3876a0f74e00ed65.png differ diff --git a/train2/pictures/ea8e1215e65ee33f7f7bbc601e4d5572.png b/train2/pictures/ea8e1215e65ee33f7f7bbc601e4d5572.png new file mode 100644 index 0000000..35d9cf5 Binary files /dev/null and b/train2/pictures/ea8e1215e65ee33f7f7bbc601e4d5572.png differ diff --git a/train2/pictures/eaa332f36789dd4ed635b8d08c4bf121.png b/train2/pictures/eaa332f36789dd4ed635b8d08c4bf121.png new file mode 100644 index 0000000..d3c2461 Binary files /dev/null and b/train2/pictures/eaa332f36789dd4ed635b8d08c4bf121.png differ diff --git a/train2/pictures/eaa591e111fff000a03538ff42cf4210.png b/train2/pictures/eaa591e111fff000a03538ff42cf4210.png new file mode 100644 index 0000000..77be191 Binary files /dev/null and b/train2/pictures/eaa591e111fff000a03538ff42cf4210.png differ diff --git a/train2/pictures/eadfb95a06fa9e0dd3f444800d3ff016.png b/train2/pictures/eadfb95a06fa9e0dd3f444800d3ff016.png new file mode 100644 index 0000000..ab2574c Binary files /dev/null and b/train2/pictures/eadfb95a06fa9e0dd3f444800d3ff016.png differ diff --git a/train2/pictures/eae18ab4bd090f55a2d08095e781e9a3.png b/train2/pictures/eae18ab4bd090f55a2d08095e781e9a3.png new file mode 100644 index 0000000..fd836db Binary files /dev/null and b/train2/pictures/eae18ab4bd090f55a2d08095e781e9a3.png differ diff --git a/train2/pictures/eafff0a7e65c03774e7c459b9e4b5b77.png b/train2/pictures/eafff0a7e65c03774e7c459b9e4b5b77.png new file mode 100644 index 0000000..3f63193 Binary files /dev/null and b/train2/pictures/eafff0a7e65c03774e7c459b9e4b5b77.png differ diff --git a/train2/pictures/eb0931e5603114c388ba007a0156b447.png b/train2/pictures/eb0931e5603114c388ba007a0156b447.png new file mode 100644 index 0000000..59c32eb Binary files /dev/null and b/train2/pictures/eb0931e5603114c388ba007a0156b447.png differ diff --git a/train2/pictures/eb156c74495fd59ce824f4f9a466ee3c.png b/train2/pictures/eb156c74495fd59ce824f4f9a466ee3c.png new file mode 100644 index 0000000..1e57889 Binary files /dev/null and b/train2/pictures/eb156c74495fd59ce824f4f9a466ee3c.png differ diff --git a/train2/pictures/eb86ba820d9a9633ca4affb2e585badf.png b/train2/pictures/eb86ba820d9a9633ca4affb2e585badf.png new file mode 100644 index 0000000..7db6f90 Binary files /dev/null and b/train2/pictures/eb86ba820d9a9633ca4affb2e585badf.png differ diff --git a/train2/pictures/eba621f823d798ad8eb168b56a4cd2a8.png b/train2/pictures/eba621f823d798ad8eb168b56a4cd2a8.png new file mode 100644 index 0000000..f9bc25d Binary files /dev/null and b/train2/pictures/eba621f823d798ad8eb168b56a4cd2a8.png differ diff --git a/train2/pictures/ebb5cdb6dbe4b09b79d7264d7f0ec5c6.png b/train2/pictures/ebb5cdb6dbe4b09b79d7264d7f0ec5c6.png new file mode 100644 index 0000000..208408d Binary files /dev/null and b/train2/pictures/ebb5cdb6dbe4b09b79d7264d7f0ec5c6.png differ diff --git a/train2/pictures/ebdfaedd922c7e8e5b3cece7d7401b77.png b/train2/pictures/ebdfaedd922c7e8e5b3cece7d7401b77.png new file mode 100644 index 0000000..e870d34 Binary files /dev/null and b/train2/pictures/ebdfaedd922c7e8e5b3cece7d7401b77.png differ diff --git a/train2/pictures/ebe4dfbe3e4af775573efecb31578a30.png b/train2/pictures/ebe4dfbe3e4af775573efecb31578a30.png new file mode 100644 index 0000000..be3684f Binary files /dev/null and b/train2/pictures/ebe4dfbe3e4af775573efecb31578a30.png differ diff --git a/train2/pictures/ebfd5d3d680173485b6afe0aa0ea318a.png b/train2/pictures/ebfd5d3d680173485b6afe0aa0ea318a.png new file mode 100644 index 0000000..cd19e1d Binary files /dev/null and b/train2/pictures/ebfd5d3d680173485b6afe0aa0ea318a.png differ diff --git a/train2/pictures/ebff084ce3fd132eb6765b8b42ce3abc.png b/train2/pictures/ebff084ce3fd132eb6765b8b42ce3abc.png new file mode 100644 index 0000000..a29e57b Binary files /dev/null and b/train2/pictures/ebff084ce3fd132eb6765b8b42ce3abc.png differ diff --git a/train2/pictures/ec02c133fdf6477ed22eb1d0fc850ec7.png b/train2/pictures/ec02c133fdf6477ed22eb1d0fc850ec7.png new file mode 100644 index 0000000..685054d Binary files /dev/null and b/train2/pictures/ec02c133fdf6477ed22eb1d0fc850ec7.png differ diff --git a/train2/pictures/ec1bb3b1318350544cf0aa82c14c3670.png b/train2/pictures/ec1bb3b1318350544cf0aa82c14c3670.png new file mode 100644 index 0000000..ba135f1 Binary files /dev/null and b/train2/pictures/ec1bb3b1318350544cf0aa82c14c3670.png differ diff --git a/train2/pictures/ec37e099defb05cd823853f91c6c37f8.png b/train2/pictures/ec37e099defb05cd823853f91c6c37f8.png new file mode 100644 index 0000000..501d00b Binary files /dev/null and b/train2/pictures/ec37e099defb05cd823853f91c6c37f8.png differ diff --git a/train2/pictures/ec74e99397cc36d4e7dfaa0131ab8ac7.png b/train2/pictures/ec74e99397cc36d4e7dfaa0131ab8ac7.png new file mode 100644 index 0000000..d7b0315 Binary files /dev/null and b/train2/pictures/ec74e99397cc36d4e7dfaa0131ab8ac7.png differ diff --git a/train2/pictures/ec8939f43b602b9d90c64b88b1313f13.png b/train2/pictures/ec8939f43b602b9d90c64b88b1313f13.png new file mode 100644 index 0000000..42474f5 Binary files /dev/null and b/train2/pictures/ec8939f43b602b9d90c64b88b1313f13.png differ diff --git a/train2/pictures/ec8f7f0d4da5a43f3d7b069254a33f49.png b/train2/pictures/ec8f7f0d4da5a43f3d7b069254a33f49.png new file mode 100644 index 0000000..830bc14 Binary files /dev/null and b/train2/pictures/ec8f7f0d4da5a43f3d7b069254a33f49.png differ diff --git a/train2/pictures/ecd34249bbaa90d5793d97e2cf52bd47.png b/train2/pictures/ecd34249bbaa90d5793d97e2cf52bd47.png new file mode 100644 index 0000000..ce4c25d Binary files /dev/null and b/train2/pictures/ecd34249bbaa90d5793d97e2cf52bd47.png differ diff --git a/train2/pictures/ed14f17da527aab4d937b8bb160ad5a5.png b/train2/pictures/ed14f17da527aab4d937b8bb160ad5a5.png new file mode 100644 index 0000000..ec76a5e Binary files /dev/null and b/train2/pictures/ed14f17da527aab4d937b8bb160ad5a5.png differ diff --git a/train2/pictures/ed19c5222eebe7ee050bb388b6d755b7.png b/train2/pictures/ed19c5222eebe7ee050bb388b6d755b7.png new file mode 100644 index 0000000..d0ac912 Binary files /dev/null and b/train2/pictures/ed19c5222eebe7ee050bb388b6d755b7.png differ diff --git a/train2/pictures/ed41cf052dd0651d8b20d5d42c3f1184.png b/train2/pictures/ed41cf052dd0651d8b20d5d42c3f1184.png new file mode 100644 index 0000000..92cfecf Binary files /dev/null and b/train2/pictures/ed41cf052dd0651d8b20d5d42c3f1184.png differ diff --git a/train2/pictures/ed561481dd209e6b572ed93dfdfb8fc8.png b/train2/pictures/ed561481dd209e6b572ed93dfdfb8fc8.png new file mode 100644 index 0000000..520594c Binary files /dev/null and b/train2/pictures/ed561481dd209e6b572ed93dfdfb8fc8.png differ diff --git a/train2/pictures/eda8752a01b05280a6392d468a782d70.png b/train2/pictures/eda8752a01b05280a6392d468a782d70.png new file mode 100644 index 0000000..9aa999a Binary files /dev/null and b/train2/pictures/eda8752a01b05280a6392d468a782d70.png differ diff --git a/train2/pictures/edc56aedf7edf7525fd8743330359a3c.png b/train2/pictures/edc56aedf7edf7525fd8743330359a3c.png new file mode 100644 index 0000000..5fb76ac Binary files /dev/null and b/train2/pictures/edc56aedf7edf7525fd8743330359a3c.png differ diff --git a/train2/pictures/edd2f411119eaf3aed63cc6220975fa3.png b/train2/pictures/edd2f411119eaf3aed63cc6220975fa3.png new file mode 100644 index 0000000..7922562 Binary files /dev/null and b/train2/pictures/edd2f411119eaf3aed63cc6220975fa3.png differ diff --git a/train2/pictures/eddef4f9966a8cf8019385f7da8896d9.png b/train2/pictures/eddef4f9966a8cf8019385f7da8896d9.png new file mode 100644 index 0000000..6e9ef38 Binary files /dev/null and b/train2/pictures/eddef4f9966a8cf8019385f7da8896d9.png differ diff --git a/train2/pictures/edf67a9440f478841685300827a41481.png b/train2/pictures/edf67a9440f478841685300827a41481.png new file mode 100644 index 0000000..9009110 Binary files /dev/null and b/train2/pictures/edf67a9440f478841685300827a41481.png differ diff --git a/train2/pictures/ee484c1a69c8d7900bf388fc5ca163ae.png b/train2/pictures/ee484c1a69c8d7900bf388fc5ca163ae.png new file mode 100644 index 0000000..97c2f61 Binary files /dev/null and b/train2/pictures/ee484c1a69c8d7900bf388fc5ca163ae.png differ diff --git a/train2/pictures/ee49a921f1a574978f7e31b75a2d9347.png b/train2/pictures/ee49a921f1a574978f7e31b75a2d9347.png new file mode 100644 index 0000000..b66be48 Binary files /dev/null and b/train2/pictures/ee49a921f1a574978f7e31b75a2d9347.png differ diff --git a/train2/pictures/ee4fea134aa3c751f0274a9a4cddb878.png b/train2/pictures/ee4fea134aa3c751f0274a9a4cddb878.png new file mode 100644 index 0000000..7440767 Binary files /dev/null and b/train2/pictures/ee4fea134aa3c751f0274a9a4cddb878.png differ diff --git a/train2/pictures/ee740776ed8a07af796e3e1d879d94ff.png b/train2/pictures/ee740776ed8a07af796e3e1d879d94ff.png new file mode 100644 index 0000000..a4771fc Binary files /dev/null and b/train2/pictures/ee740776ed8a07af796e3e1d879d94ff.png differ diff --git a/train2/pictures/ee76289cac212502768c87a350640875.png b/train2/pictures/ee76289cac212502768c87a350640875.png new file mode 100644 index 0000000..7ee26b1 Binary files /dev/null and b/train2/pictures/ee76289cac212502768c87a350640875.png differ diff --git a/train2/pictures/eea7504b757a3278f45d64d057e90a9e.png b/train2/pictures/eea7504b757a3278f45d64d057e90a9e.png new file mode 100644 index 0000000..fdab7d2 Binary files /dev/null and b/train2/pictures/eea7504b757a3278f45d64d057e90a9e.png differ diff --git a/train2/pictures/eeb72079952f48cb542756788b7a186d.png b/train2/pictures/eeb72079952f48cb542756788b7a186d.png new file mode 100644 index 0000000..4caabf6 Binary files /dev/null and b/train2/pictures/eeb72079952f48cb542756788b7a186d.png differ diff --git a/train2/pictures/eebdf0ce8537ed77c3d14a353e58224f.png b/train2/pictures/eebdf0ce8537ed77c3d14a353e58224f.png new file mode 100644 index 0000000..32b08a3 Binary files /dev/null and b/train2/pictures/eebdf0ce8537ed77c3d14a353e58224f.png differ diff --git a/train2/pictures/eee72aac86472c7b77c2369c34fd6242.png b/train2/pictures/eee72aac86472c7b77c2369c34fd6242.png new file mode 100644 index 0000000..565b860 Binary files /dev/null and b/train2/pictures/eee72aac86472c7b77c2369c34fd6242.png differ diff --git a/train2/pictures/eeec54ba330b91f2aea77d2c52b1c70d.png b/train2/pictures/eeec54ba330b91f2aea77d2c52b1c70d.png new file mode 100644 index 0000000..6f6e7e2 Binary files /dev/null and b/train2/pictures/eeec54ba330b91f2aea77d2c52b1c70d.png differ diff --git a/train2/pictures/eeed8dd4cf39f17f0b0123f71502fd7c.png b/train2/pictures/eeed8dd4cf39f17f0b0123f71502fd7c.png new file mode 100644 index 0000000..dc53cba Binary files /dev/null and b/train2/pictures/eeed8dd4cf39f17f0b0123f71502fd7c.png differ diff --git a/train2/pictures/eefe7d034b8d0ccfaf39ef24d55336aa.png b/train2/pictures/eefe7d034b8d0ccfaf39ef24d55336aa.png new file mode 100644 index 0000000..bfa1a77 Binary files /dev/null and b/train2/pictures/eefe7d034b8d0ccfaf39ef24d55336aa.png differ diff --git a/train2/pictures/ef0254f9b73333989da631ce8c1a2a1b.png b/train2/pictures/ef0254f9b73333989da631ce8c1a2a1b.png new file mode 100644 index 0000000..60714f8 Binary files /dev/null and b/train2/pictures/ef0254f9b73333989da631ce8c1a2a1b.png differ diff --git a/train2/pictures/ef5a34b9eeff3e3cedc50d37859c8cd5.png b/train2/pictures/ef5a34b9eeff3e3cedc50d37859c8cd5.png new file mode 100644 index 0000000..912bf12 Binary files /dev/null and b/train2/pictures/ef5a34b9eeff3e3cedc50d37859c8cd5.png differ diff --git a/train2/pictures/ef6962a579323395e50aac58b5a9229f.png b/train2/pictures/ef6962a579323395e50aac58b5a9229f.png new file mode 100644 index 0000000..de26fd9 Binary files /dev/null and b/train2/pictures/ef6962a579323395e50aac58b5a9229f.png differ diff --git a/train2/pictures/efc39eba46092660c562ba11cd492356.png b/train2/pictures/efc39eba46092660c562ba11cd492356.png new file mode 100644 index 0000000..6f0dc69 Binary files /dev/null and b/train2/pictures/efc39eba46092660c562ba11cd492356.png differ diff --git a/train2/pictures/efc6809cbc4d331f1b2c718f5805e333.png b/train2/pictures/efc6809cbc4d331f1b2c718f5805e333.png new file mode 100644 index 0000000..1835f00 Binary files /dev/null and b/train2/pictures/efc6809cbc4d331f1b2c718f5805e333.png differ diff --git a/train2/pictures/efd57873d40ac22653e97a586c6a9786.png b/train2/pictures/efd57873d40ac22653e97a586c6a9786.png new file mode 100644 index 0000000..ac355ed Binary files /dev/null and b/train2/pictures/efd57873d40ac22653e97a586c6a9786.png differ diff --git a/train2/pictures/efd5abc3e09a1b886d7ad253b94fb563.png b/train2/pictures/efd5abc3e09a1b886d7ad253b94fb563.png new file mode 100644 index 0000000..d6e9803 Binary files /dev/null and b/train2/pictures/efd5abc3e09a1b886d7ad253b94fb563.png differ diff --git a/train2/pictures/efe39629034252a2d38160ea7669c9c0.png b/train2/pictures/efe39629034252a2d38160ea7669c9c0.png new file mode 100644 index 0000000..5d63230 Binary files /dev/null and b/train2/pictures/efe39629034252a2d38160ea7669c9c0.png differ diff --git a/train2/pictures/effa324b4bd64cead9c0287681bb6b08.png b/train2/pictures/effa324b4bd64cead9c0287681bb6b08.png new file mode 100644 index 0000000..4d5652e Binary files /dev/null and b/train2/pictures/effa324b4bd64cead9c0287681bb6b08.png differ diff --git a/train2/pictures/f00337160ce36b32a03324dbae083e30.png b/train2/pictures/f00337160ce36b32a03324dbae083e30.png new file mode 100644 index 0000000..1d9de7d Binary files /dev/null and b/train2/pictures/f00337160ce36b32a03324dbae083e30.png differ diff --git a/train2/pictures/f00de88832ef7e5193f4c77e4eca64eb.png b/train2/pictures/f00de88832ef7e5193f4c77e4eca64eb.png new file mode 100644 index 0000000..bd79f14 Binary files /dev/null and b/train2/pictures/f00de88832ef7e5193f4c77e4eca64eb.png differ diff --git a/train2/pictures/f012b78583149f2e6c5f188c534e0f51.png b/train2/pictures/f012b78583149f2e6c5f188c534e0f51.png new file mode 100644 index 0000000..d50a711 Binary files /dev/null and b/train2/pictures/f012b78583149f2e6c5f188c534e0f51.png differ diff --git a/train2/pictures/f05b0b3a0616e9af846fea5b3519db3a.png b/train2/pictures/f05b0b3a0616e9af846fea5b3519db3a.png new file mode 100644 index 0000000..510ee2f Binary files /dev/null and b/train2/pictures/f05b0b3a0616e9af846fea5b3519db3a.png differ diff --git a/train2/pictures/f06ceb349b1ad7c0c3fe188fd2a0d679.png b/train2/pictures/f06ceb349b1ad7c0c3fe188fd2a0d679.png new file mode 100644 index 0000000..4faca08 Binary files /dev/null and b/train2/pictures/f06ceb349b1ad7c0c3fe188fd2a0d679.png differ diff --git a/train2/pictures/f09eb9ed8351b4736ff7477621948952.png b/train2/pictures/f09eb9ed8351b4736ff7477621948952.png new file mode 100644 index 0000000..1de0f33 Binary files /dev/null and b/train2/pictures/f09eb9ed8351b4736ff7477621948952.png differ diff --git a/train2/pictures/f1048a02412c599d5c64300dfa52ec04.png b/train2/pictures/f1048a02412c599d5c64300dfa52ec04.png new file mode 100644 index 0000000..6cc8ea3 Binary files /dev/null and b/train2/pictures/f1048a02412c599d5c64300dfa52ec04.png differ diff --git a/train2/pictures/f10c633f4df9e39c96c6708af4919bc4.png b/train2/pictures/f10c633f4df9e39c96c6708af4919bc4.png new file mode 100644 index 0000000..2419df6 Binary files /dev/null and b/train2/pictures/f10c633f4df9e39c96c6708af4919bc4.png differ diff --git a/train2/pictures/f163ca1b27fce2f455aef7bf03b73bf7.png b/train2/pictures/f163ca1b27fce2f455aef7bf03b73bf7.png new file mode 100644 index 0000000..0dc5865 Binary files /dev/null and b/train2/pictures/f163ca1b27fce2f455aef7bf03b73bf7.png differ diff --git a/train2/pictures/f16b1839ddba64a8e0db9c2aba16605e.png b/train2/pictures/f16b1839ddba64a8e0db9c2aba16605e.png new file mode 100644 index 0000000..c91c919 Binary files /dev/null and b/train2/pictures/f16b1839ddba64a8e0db9c2aba16605e.png differ diff --git a/train2/pictures/f16d8e5496d36ff5ded214ee432813e2.png b/train2/pictures/f16d8e5496d36ff5ded214ee432813e2.png new file mode 100644 index 0000000..02b4380 Binary files /dev/null and b/train2/pictures/f16d8e5496d36ff5ded214ee432813e2.png differ diff --git a/train2/pictures/f18abfc384ba8242c9e44308edde9c91.png b/train2/pictures/f18abfc384ba8242c9e44308edde9c91.png new file mode 100644 index 0000000..d4a12ea Binary files /dev/null and b/train2/pictures/f18abfc384ba8242c9e44308edde9c91.png differ diff --git a/train2/pictures/f20218667dcbce08e1a05ea791e2b710.png b/train2/pictures/f20218667dcbce08e1a05ea791e2b710.png new file mode 100644 index 0000000..fef0511 Binary files /dev/null and b/train2/pictures/f20218667dcbce08e1a05ea791e2b710.png differ diff --git a/train2/pictures/f203f905ae6106907392d325c623b9cd.png b/train2/pictures/f203f905ae6106907392d325c623b9cd.png new file mode 100644 index 0000000..1be5b08 Binary files /dev/null and b/train2/pictures/f203f905ae6106907392d325c623b9cd.png differ diff --git a/train2/pictures/f25f720da0ef7538d2bb5a14137fc964.png b/train2/pictures/f25f720da0ef7538d2bb5a14137fc964.png new file mode 100644 index 0000000..df473f8 Binary files /dev/null and b/train2/pictures/f25f720da0ef7538d2bb5a14137fc964.png differ diff --git a/train2/pictures/f28c35709088907e7ec5b3b400785c67.png b/train2/pictures/f28c35709088907e7ec5b3b400785c67.png new file mode 100644 index 0000000..7894baa Binary files /dev/null and b/train2/pictures/f28c35709088907e7ec5b3b400785c67.png differ diff --git a/train2/pictures/f29c1dc6894c46146b2abf503ac290ec.png b/train2/pictures/f29c1dc6894c46146b2abf503ac290ec.png new file mode 100644 index 0000000..bbff241 Binary files /dev/null and b/train2/pictures/f29c1dc6894c46146b2abf503ac290ec.png differ diff --git a/train2/pictures/f2c80c49ab5f665cd4ba176e67a9ba68.png b/train2/pictures/f2c80c49ab5f665cd4ba176e67a9ba68.png new file mode 100644 index 0000000..4d890aa Binary files /dev/null and b/train2/pictures/f2c80c49ab5f665cd4ba176e67a9ba68.png differ diff --git a/train2/pictures/f2c8b90fedad1a7343706bdc28332e00.png b/train2/pictures/f2c8b90fedad1a7343706bdc28332e00.png new file mode 100644 index 0000000..a90cdad Binary files /dev/null and b/train2/pictures/f2c8b90fedad1a7343706bdc28332e00.png differ diff --git a/train2/pictures/f329e7b45ed4f6bc832389e8ff9e5564.png b/train2/pictures/f329e7b45ed4f6bc832389e8ff9e5564.png new file mode 100644 index 0000000..8f90331 Binary files /dev/null and b/train2/pictures/f329e7b45ed4f6bc832389e8ff9e5564.png differ diff --git a/train2/pictures/f32f9f647207f0725e426c1003f67b27.png b/train2/pictures/f32f9f647207f0725e426c1003f67b27.png new file mode 100644 index 0000000..f3d71a3 Binary files /dev/null and b/train2/pictures/f32f9f647207f0725e426c1003f67b27.png differ diff --git a/train2/pictures/f34bd192c3d4e5db61ded993179fcc79.png b/train2/pictures/f34bd192c3d4e5db61ded993179fcc79.png new file mode 100644 index 0000000..1ae2013 Binary files /dev/null and b/train2/pictures/f34bd192c3d4e5db61ded993179fcc79.png differ diff --git a/train2/pictures/f34fe7b95ee23b2bbcb0fcea72e23b3c.png b/train2/pictures/f34fe7b95ee23b2bbcb0fcea72e23b3c.png new file mode 100644 index 0000000..bceaa40 Binary files /dev/null and b/train2/pictures/f34fe7b95ee23b2bbcb0fcea72e23b3c.png differ diff --git a/train2/pictures/f3960fa216fb920b7b21e9fd69c53880.png b/train2/pictures/f3960fa216fb920b7b21e9fd69c53880.png new file mode 100644 index 0000000..90f6963 Binary files /dev/null and b/train2/pictures/f3960fa216fb920b7b21e9fd69c53880.png differ diff --git a/train2/pictures/f3d65ecf3a20a8095efdab1ec8151f18.png b/train2/pictures/f3d65ecf3a20a8095efdab1ec8151f18.png new file mode 100644 index 0000000..0db086a Binary files /dev/null and b/train2/pictures/f3d65ecf3a20a8095efdab1ec8151f18.png differ diff --git a/train2/pictures/f44d3fa8dca83a4344e2e2c8fde30f68.png b/train2/pictures/f44d3fa8dca83a4344e2e2c8fde30f68.png new file mode 100644 index 0000000..5ef4f4b Binary files /dev/null and b/train2/pictures/f44d3fa8dca83a4344e2e2c8fde30f68.png differ diff --git a/train2/pictures/f476f30dd4cb7891f813cf5acfcf6ea8.png b/train2/pictures/f476f30dd4cb7891f813cf5acfcf6ea8.png new file mode 100644 index 0000000..4e154d0 Binary files /dev/null and b/train2/pictures/f476f30dd4cb7891f813cf5acfcf6ea8.png differ diff --git a/train2/pictures/f484f0983b5eaa342ee87b39e6b0c7de.png b/train2/pictures/f484f0983b5eaa342ee87b39e6b0c7de.png new file mode 100644 index 0000000..50f9925 Binary files /dev/null and b/train2/pictures/f484f0983b5eaa342ee87b39e6b0c7de.png differ diff --git a/train2/pictures/f49ec8bc3715f2e2aa9ce7cabe19a01c.png b/train2/pictures/f49ec8bc3715f2e2aa9ce7cabe19a01c.png new file mode 100644 index 0000000..797df0b Binary files /dev/null and b/train2/pictures/f49ec8bc3715f2e2aa9ce7cabe19a01c.png differ diff --git a/train2/pictures/f4a2d92e2621b0532c6952cf4bebbfda.png b/train2/pictures/f4a2d92e2621b0532c6952cf4bebbfda.png new file mode 100644 index 0000000..8f40133 Binary files /dev/null and b/train2/pictures/f4a2d92e2621b0532c6952cf4bebbfda.png differ diff --git a/train2/pictures/f4c8891fc3db7460652aa4297f836641.png b/train2/pictures/f4c8891fc3db7460652aa4297f836641.png new file mode 100644 index 0000000..9b4f77a Binary files /dev/null and b/train2/pictures/f4c8891fc3db7460652aa4297f836641.png differ diff --git a/train2/pictures/f540095778e5edaf61cd221ebd710dfb.png b/train2/pictures/f540095778e5edaf61cd221ebd710dfb.png new file mode 100644 index 0000000..eec9afe Binary files /dev/null and b/train2/pictures/f540095778e5edaf61cd221ebd710dfb.png differ diff --git a/train2/pictures/f557e041a8392011de2c6e8fecd3fbf7.png b/train2/pictures/f557e041a8392011de2c6e8fecd3fbf7.png new file mode 100644 index 0000000..cce10bf Binary files /dev/null and b/train2/pictures/f557e041a8392011de2c6e8fecd3fbf7.png differ diff --git a/train2/pictures/f55dbb58d53d60ffbc0b06ff485bceab.png b/train2/pictures/f55dbb58d53d60ffbc0b06ff485bceab.png new file mode 100644 index 0000000..fe4310b Binary files /dev/null and b/train2/pictures/f55dbb58d53d60ffbc0b06ff485bceab.png differ diff --git a/train2/pictures/f575099f1b08c89dd244981ed19a66dc.png b/train2/pictures/f575099f1b08c89dd244981ed19a66dc.png new file mode 100644 index 0000000..449007a Binary files /dev/null and b/train2/pictures/f575099f1b08c89dd244981ed19a66dc.png differ diff --git a/train2/pictures/f5c71bf9668a0fc6d3fa0a72c7df9f34.png b/train2/pictures/f5c71bf9668a0fc6d3fa0a72c7df9f34.png new file mode 100644 index 0000000..d94a195 Binary files /dev/null and b/train2/pictures/f5c71bf9668a0fc6d3fa0a72c7df9f34.png differ diff --git a/train2/pictures/f5e30e5d1efa1be1212889b0229e0dc8.png b/train2/pictures/f5e30e5d1efa1be1212889b0229e0dc8.png new file mode 100644 index 0000000..b659994 Binary files /dev/null and b/train2/pictures/f5e30e5d1efa1be1212889b0229e0dc8.png differ diff --git a/train2/pictures/f65482c7ff82f6f8d3e3fcb0fec89a62.png b/train2/pictures/f65482c7ff82f6f8d3e3fcb0fec89a62.png new file mode 100644 index 0000000..46ff4a4 Binary files /dev/null and b/train2/pictures/f65482c7ff82f6f8d3e3fcb0fec89a62.png differ diff --git a/train2/pictures/f665cf84c80f34f896798052d5cf19d2.png b/train2/pictures/f665cf84c80f34f896798052d5cf19d2.png new file mode 100644 index 0000000..732540d Binary files /dev/null and b/train2/pictures/f665cf84c80f34f896798052d5cf19d2.png differ diff --git a/train2/pictures/f680cb80f00401e703ea9d9d3f6d8c13.png b/train2/pictures/f680cb80f00401e703ea9d9d3f6d8c13.png new file mode 100644 index 0000000..691bb76 Binary files /dev/null and b/train2/pictures/f680cb80f00401e703ea9d9d3f6d8c13.png differ diff --git a/train2/pictures/f6a3894046c527321804b300cf76bd88.png b/train2/pictures/f6a3894046c527321804b300cf76bd88.png new file mode 100644 index 0000000..9eef9a4 Binary files /dev/null and b/train2/pictures/f6a3894046c527321804b300cf76bd88.png differ diff --git a/train2/pictures/f6a6288bb8c1e777e93bb26bfa0c7948.png b/train2/pictures/f6a6288bb8c1e777e93bb26bfa0c7948.png new file mode 100644 index 0000000..84e86a1 Binary files /dev/null and b/train2/pictures/f6a6288bb8c1e777e93bb26bfa0c7948.png differ diff --git a/train2/pictures/f6b0a25e9dd0ff6c7db8db6471b39cda.png b/train2/pictures/f6b0a25e9dd0ff6c7db8db6471b39cda.png new file mode 100644 index 0000000..24a9256 Binary files /dev/null and b/train2/pictures/f6b0a25e9dd0ff6c7db8db6471b39cda.png differ diff --git a/train2/pictures/f6b43a54997e9bb6ad675539f2b42d4e.png b/train2/pictures/f6b43a54997e9bb6ad675539f2b42d4e.png new file mode 100644 index 0000000..39174e7 Binary files /dev/null and b/train2/pictures/f6b43a54997e9bb6ad675539f2b42d4e.png differ diff --git a/train2/pictures/f6d15c63f418fab4bca60eeb7a3ca720.png b/train2/pictures/f6d15c63f418fab4bca60eeb7a3ca720.png new file mode 100644 index 0000000..87e8b6c Binary files /dev/null and b/train2/pictures/f6d15c63f418fab4bca60eeb7a3ca720.png differ diff --git a/train2/pictures/f6da6f8abc7704c31ac7f3b1adab8693.png b/train2/pictures/f6da6f8abc7704c31ac7f3b1adab8693.png new file mode 100644 index 0000000..d4b59ba Binary files /dev/null and b/train2/pictures/f6da6f8abc7704c31ac7f3b1adab8693.png differ diff --git a/train2/pictures/f6e0f9f9bbe4e8ea15fec9b306ba7abe.png b/train2/pictures/f6e0f9f9bbe4e8ea15fec9b306ba7abe.png new file mode 100644 index 0000000..dcbed81 Binary files /dev/null and b/train2/pictures/f6e0f9f9bbe4e8ea15fec9b306ba7abe.png differ diff --git a/train2/pictures/f6e9039ce7a88f96f711b4ebb61abf3b.png b/train2/pictures/f6e9039ce7a88f96f711b4ebb61abf3b.png new file mode 100644 index 0000000..faa60b7 Binary files /dev/null and b/train2/pictures/f6e9039ce7a88f96f711b4ebb61abf3b.png differ diff --git a/train2/pictures/f6ef9ac60893f5150d39d5bbbb27588c.png b/train2/pictures/f6ef9ac60893f5150d39d5bbbb27588c.png new file mode 100644 index 0000000..7594470 Binary files /dev/null and b/train2/pictures/f6ef9ac60893f5150d39d5bbbb27588c.png differ diff --git a/train2/pictures/f6fb46c44c8b9a397300681798b5c079.png b/train2/pictures/f6fb46c44c8b9a397300681798b5c079.png new file mode 100644 index 0000000..75e3955 Binary files /dev/null and b/train2/pictures/f6fb46c44c8b9a397300681798b5c079.png differ diff --git a/train2/pictures/f6ff0b897911d4612116be5688237a64.png b/train2/pictures/f6ff0b897911d4612116be5688237a64.png new file mode 100644 index 0000000..62a3a8d Binary files /dev/null and b/train2/pictures/f6ff0b897911d4612116be5688237a64.png differ diff --git a/train2/pictures/f711f06db9d7af1049346541f7542d35.png b/train2/pictures/f711f06db9d7af1049346541f7542d35.png new file mode 100644 index 0000000..9dd184b Binary files /dev/null and b/train2/pictures/f711f06db9d7af1049346541f7542d35.png differ diff --git a/train2/pictures/f725d29a9c7c9dc010cdc327c1ba472b.png b/train2/pictures/f725d29a9c7c9dc010cdc327c1ba472b.png new file mode 100644 index 0000000..e8d59c3 Binary files /dev/null and b/train2/pictures/f725d29a9c7c9dc010cdc327c1ba472b.png differ diff --git a/train2/pictures/f7592efd5f602da5df886e3a8bf43a1c.png b/train2/pictures/f7592efd5f602da5df886e3a8bf43a1c.png new file mode 100644 index 0000000..09179fa Binary files /dev/null and b/train2/pictures/f7592efd5f602da5df886e3a8bf43a1c.png differ diff --git a/train2/pictures/f75e34aec62a06a025ff9b1532b844ee.png b/train2/pictures/f75e34aec62a06a025ff9b1532b844ee.png new file mode 100644 index 0000000..23c3197 Binary files /dev/null and b/train2/pictures/f75e34aec62a06a025ff9b1532b844ee.png differ diff --git a/train2/pictures/f7bd1d5aadaf00c41e259f550d006704.png b/train2/pictures/f7bd1d5aadaf00c41e259f550d006704.png new file mode 100644 index 0000000..f43d6a9 Binary files /dev/null and b/train2/pictures/f7bd1d5aadaf00c41e259f550d006704.png differ diff --git a/train2/pictures/f7e347be4630d55092f755ad8be0c0cd.png b/train2/pictures/f7e347be4630d55092f755ad8be0c0cd.png new file mode 100644 index 0000000..ecd98c4 Binary files /dev/null and b/train2/pictures/f7e347be4630d55092f755ad8be0c0cd.png differ diff --git a/train2/pictures/f7e4661f346eebfad78f81ca984a99b5.png b/train2/pictures/f7e4661f346eebfad78f81ca984a99b5.png new file mode 100644 index 0000000..63dc806 Binary files /dev/null and b/train2/pictures/f7e4661f346eebfad78f81ca984a99b5.png differ diff --git a/train2/pictures/f7e49f98a7c8e65babb6d34873deb5a8.png b/train2/pictures/f7e49f98a7c8e65babb6d34873deb5a8.png new file mode 100644 index 0000000..895fda1 Binary files /dev/null and b/train2/pictures/f7e49f98a7c8e65babb6d34873deb5a8.png differ diff --git a/train2/pictures/f804a1e9f8db3c86fce06b618422c190.png b/train2/pictures/f804a1e9f8db3c86fce06b618422c190.png new file mode 100644 index 0000000..7c5606a Binary files /dev/null and b/train2/pictures/f804a1e9f8db3c86fce06b618422c190.png differ diff --git a/train2/pictures/f8064ddbf61c0b8d48f32325525533da.png b/train2/pictures/f8064ddbf61c0b8d48f32325525533da.png new file mode 100644 index 0000000..ce64595 Binary files /dev/null and b/train2/pictures/f8064ddbf61c0b8d48f32325525533da.png differ diff --git a/train2/pictures/f808d67206757644acb76a0baf608fcb.png b/train2/pictures/f808d67206757644acb76a0baf608fcb.png new file mode 100644 index 0000000..a421f46 Binary files /dev/null and b/train2/pictures/f808d67206757644acb76a0baf608fcb.png differ diff --git a/train2/pictures/f812571f1dd891762b5b8f401876d2df.png b/train2/pictures/f812571f1dd891762b5b8f401876d2df.png new file mode 100644 index 0000000..62064cc Binary files /dev/null and b/train2/pictures/f812571f1dd891762b5b8f401876d2df.png differ diff --git a/train2/pictures/f81a1d2485373cf8f0fb72e6e0b2e9e6.png b/train2/pictures/f81a1d2485373cf8f0fb72e6e0b2e9e6.png new file mode 100644 index 0000000..7f176d3 Binary files /dev/null and b/train2/pictures/f81a1d2485373cf8f0fb72e6e0b2e9e6.png differ diff --git a/train2/pictures/f837e235ac72c8bef95963456ae1745f.png b/train2/pictures/f837e235ac72c8bef95963456ae1745f.png new file mode 100644 index 0000000..4a6b65d Binary files /dev/null and b/train2/pictures/f837e235ac72c8bef95963456ae1745f.png differ diff --git a/train2/pictures/f853808210d9ceadba7580faa615ebd3.png b/train2/pictures/f853808210d9ceadba7580faa615ebd3.png new file mode 100644 index 0000000..4f7b891 Binary files /dev/null and b/train2/pictures/f853808210d9ceadba7580faa615ebd3.png differ diff --git a/train2/pictures/f8706511e7d6031dfe7e809acff2ea13.png b/train2/pictures/f8706511e7d6031dfe7e809acff2ea13.png new file mode 100644 index 0000000..23090af Binary files /dev/null and b/train2/pictures/f8706511e7d6031dfe7e809acff2ea13.png differ diff --git a/train2/pictures/f87894f8358924a6167350ecf6904d8c.png b/train2/pictures/f87894f8358924a6167350ecf6904d8c.png new file mode 100644 index 0000000..6572331 Binary files /dev/null and b/train2/pictures/f87894f8358924a6167350ecf6904d8c.png differ diff --git a/train2/pictures/f8cf900bdd2d951f245321b8490e2173.png b/train2/pictures/f8cf900bdd2d951f245321b8490e2173.png new file mode 100644 index 0000000..435fb1c Binary files /dev/null and b/train2/pictures/f8cf900bdd2d951f245321b8490e2173.png differ diff --git a/train2/pictures/f8f84f995bff42f5f53b2d7d2756d0a7.png b/train2/pictures/f8f84f995bff42f5f53b2d7d2756d0a7.png new file mode 100644 index 0000000..c4ccd43 Binary files /dev/null and b/train2/pictures/f8f84f995bff42f5f53b2d7d2756d0a7.png differ diff --git a/train2/pictures/f9329331c01a25386288a05c1e2d703c.png b/train2/pictures/f9329331c01a25386288a05c1e2d703c.png new file mode 100644 index 0000000..00252cc Binary files /dev/null and b/train2/pictures/f9329331c01a25386288a05c1e2d703c.png differ diff --git a/train2/pictures/f94bc7d208704486e2e96b501968aa5e.png b/train2/pictures/f94bc7d208704486e2e96b501968aa5e.png new file mode 100644 index 0000000..5a319ac Binary files /dev/null and b/train2/pictures/f94bc7d208704486e2e96b501968aa5e.png differ diff --git a/train2/pictures/f956ee58535e13b794b47be4181c6eaa.png b/train2/pictures/f956ee58535e13b794b47be4181c6eaa.png new file mode 100644 index 0000000..550792f Binary files /dev/null and b/train2/pictures/f956ee58535e13b794b47be4181c6eaa.png differ diff --git a/train2/pictures/f96b2fd517d3a8eb93e5f6dd5f796639.png b/train2/pictures/f96b2fd517d3a8eb93e5f6dd5f796639.png new file mode 100644 index 0000000..54805b3 Binary files /dev/null and b/train2/pictures/f96b2fd517d3a8eb93e5f6dd5f796639.png differ diff --git a/train2/pictures/f9753f0542784ab8811f8bba9cc712f4.png b/train2/pictures/f9753f0542784ab8811f8bba9cc712f4.png new file mode 100644 index 0000000..9883a99 Binary files /dev/null and b/train2/pictures/f9753f0542784ab8811f8bba9cc712f4.png differ diff --git a/train2/pictures/f9c7fa7ea7f99d8c69c7e61a5d143af9.png b/train2/pictures/f9c7fa7ea7f99d8c69c7e61a5d143af9.png new file mode 100644 index 0000000..2f200b5 Binary files /dev/null and b/train2/pictures/f9c7fa7ea7f99d8c69c7e61a5d143af9.png differ diff --git a/train2/pictures/f9cb0790b4ff3d0d18bc127e774aeccd.png b/train2/pictures/f9cb0790b4ff3d0d18bc127e774aeccd.png new file mode 100644 index 0000000..988b145 Binary files /dev/null and b/train2/pictures/f9cb0790b4ff3d0d18bc127e774aeccd.png differ diff --git a/train2/pictures/f9d378b6bbd2de2ffd0b5d80149265d8.png b/train2/pictures/f9d378b6bbd2de2ffd0b5d80149265d8.png new file mode 100644 index 0000000..8765b65 Binary files /dev/null and b/train2/pictures/f9d378b6bbd2de2ffd0b5d80149265d8.png differ diff --git a/train2/pictures/f9dfc3d06daee9513c46de15f3ff12bf.png b/train2/pictures/f9dfc3d06daee9513c46de15f3ff12bf.png new file mode 100644 index 0000000..ecca8fd Binary files /dev/null and b/train2/pictures/f9dfc3d06daee9513c46de15f3ff12bf.png differ diff --git a/train2/pictures/f9e41c97bf03068e23f5fefa7e8d58f5.png b/train2/pictures/f9e41c97bf03068e23f5fefa7e8d58f5.png new file mode 100644 index 0000000..f738088 Binary files /dev/null and b/train2/pictures/f9e41c97bf03068e23f5fefa7e8d58f5.png differ diff --git a/train2/pictures/f9f197971bd3995241b7018edb019eca.png b/train2/pictures/f9f197971bd3995241b7018edb019eca.png new file mode 100644 index 0000000..9c354c3 Binary files /dev/null and b/train2/pictures/f9f197971bd3995241b7018edb019eca.png differ diff --git a/train2/pictures/fa031631ccc22ceb9d48d8a65e5be599.png b/train2/pictures/fa031631ccc22ceb9d48d8a65e5be599.png new file mode 100644 index 0000000..9dbb40e Binary files /dev/null and b/train2/pictures/fa031631ccc22ceb9d48d8a65e5be599.png differ diff --git a/train2/pictures/fa0a4dd6e01fed6638b3465e5a7d20c6.png b/train2/pictures/fa0a4dd6e01fed6638b3465e5a7d20c6.png new file mode 100644 index 0000000..125978d Binary files /dev/null and b/train2/pictures/fa0a4dd6e01fed6638b3465e5a7d20c6.png differ diff --git a/train2/pictures/fa428c3e7f1c7140338e267136c479e5.png b/train2/pictures/fa428c3e7f1c7140338e267136c479e5.png new file mode 100644 index 0000000..6d25b26 Binary files /dev/null and b/train2/pictures/fa428c3e7f1c7140338e267136c479e5.png differ diff --git a/train2/pictures/fa5ef05f52390b378e19b241ea836571.png b/train2/pictures/fa5ef05f52390b378e19b241ea836571.png new file mode 100644 index 0000000..bfb7622 Binary files /dev/null and b/train2/pictures/fa5ef05f52390b378e19b241ea836571.png differ diff --git a/train2/pictures/fa606fb3931f2787da0122c39ea44200.png b/train2/pictures/fa606fb3931f2787da0122c39ea44200.png new file mode 100644 index 0000000..b34cfd1 Binary files /dev/null and b/train2/pictures/fa606fb3931f2787da0122c39ea44200.png differ diff --git a/train2/pictures/fa9afb31cc7fe72bf9adbbea6bdeecbe.png b/train2/pictures/fa9afb31cc7fe72bf9adbbea6bdeecbe.png new file mode 100644 index 0000000..da832b5 Binary files /dev/null and b/train2/pictures/fa9afb31cc7fe72bf9adbbea6bdeecbe.png differ diff --git a/train2/pictures/faa0d2b75d0387970c1aa71a18c18527.png b/train2/pictures/faa0d2b75d0387970c1aa71a18c18527.png new file mode 100644 index 0000000..bd31a05 Binary files /dev/null and b/train2/pictures/faa0d2b75d0387970c1aa71a18c18527.png differ diff --git a/train2/pictures/fabe45d3d8cc91aa25e2a4973a83b91e.png b/train2/pictures/fabe45d3d8cc91aa25e2a4973a83b91e.png new file mode 100644 index 0000000..8e4af45 Binary files /dev/null and b/train2/pictures/fabe45d3d8cc91aa25e2a4973a83b91e.png differ diff --git a/train2/pictures/fb055ae5d4d09c1c9d1f7f4462ca33b9.png b/train2/pictures/fb055ae5d4d09c1c9d1f7f4462ca33b9.png new file mode 100644 index 0000000..c1b5738 Binary files /dev/null and b/train2/pictures/fb055ae5d4d09c1c9d1f7f4462ca33b9.png differ diff --git a/train2/pictures/fb6482f32720618a9a6b1ef04da688dd.png b/train2/pictures/fb6482f32720618a9a6b1ef04da688dd.png new file mode 100644 index 0000000..fbcc943 Binary files /dev/null and b/train2/pictures/fb6482f32720618a9a6b1ef04da688dd.png differ diff --git a/train2/pictures/fb96e5dbac461a3c96420ee441d7441e.png b/train2/pictures/fb96e5dbac461a3c96420ee441d7441e.png new file mode 100644 index 0000000..58f0e66 Binary files /dev/null and b/train2/pictures/fb96e5dbac461a3c96420ee441d7441e.png differ diff --git a/train2/pictures/fb9dd63cc6f15a1c93407305c38b40fa.png b/train2/pictures/fb9dd63cc6f15a1c93407305c38b40fa.png new file mode 100644 index 0000000..6f77b17 Binary files /dev/null and b/train2/pictures/fb9dd63cc6f15a1c93407305c38b40fa.png differ diff --git a/train2/pictures/fbabecd2cb2a051fa3122abbb09133ad.png b/train2/pictures/fbabecd2cb2a051fa3122abbb09133ad.png new file mode 100644 index 0000000..ed2e140 Binary files /dev/null and b/train2/pictures/fbabecd2cb2a051fa3122abbb09133ad.png differ diff --git a/train2/pictures/fbb1cf598f6b34ff506ebfb12f1dfd12.png b/train2/pictures/fbb1cf598f6b34ff506ebfb12f1dfd12.png new file mode 100644 index 0000000..9c95a24 Binary files /dev/null and b/train2/pictures/fbb1cf598f6b34ff506ebfb12f1dfd12.png differ diff --git a/train2/pictures/fbc14dcabac4a87844ab31c5ac98e528.png b/train2/pictures/fbc14dcabac4a87844ab31c5ac98e528.png new file mode 100644 index 0000000..fcac83b Binary files /dev/null and b/train2/pictures/fbc14dcabac4a87844ab31c5ac98e528.png differ diff --git a/train2/pictures/fbc8e867b9835a9c671acf5e33d27c15.png b/train2/pictures/fbc8e867b9835a9c671acf5e33d27c15.png new file mode 100644 index 0000000..90413f2 Binary files /dev/null and b/train2/pictures/fbc8e867b9835a9c671acf5e33d27c15.png differ diff --git a/train2/pictures/fbe41d8c38693fa0aced783d1d93dd67.png b/train2/pictures/fbe41d8c38693fa0aced783d1d93dd67.png new file mode 100644 index 0000000..66b2c5c Binary files /dev/null and b/train2/pictures/fbe41d8c38693fa0aced783d1d93dd67.png differ diff --git a/train2/pictures/fbf1da16beb6ae4ed9e2b74e6c9df53f.png b/train2/pictures/fbf1da16beb6ae4ed9e2b74e6c9df53f.png new file mode 100644 index 0000000..fe93e2d Binary files /dev/null and b/train2/pictures/fbf1da16beb6ae4ed9e2b74e6c9df53f.png differ diff --git a/train2/pictures/fbfaccb6f747edec5bd2bd55a2f91459.png b/train2/pictures/fbfaccb6f747edec5bd2bd55a2f91459.png new file mode 100644 index 0000000..fca8db1 Binary files /dev/null and b/train2/pictures/fbfaccb6f747edec5bd2bd55a2f91459.png differ diff --git a/train2/pictures/fc2c9d9723e93e47a0559601ccfe465a.png b/train2/pictures/fc2c9d9723e93e47a0559601ccfe465a.png new file mode 100644 index 0000000..6fcfd04 Binary files /dev/null and b/train2/pictures/fc2c9d9723e93e47a0559601ccfe465a.png differ diff --git a/train2/pictures/fc3bd8141fd4ea5e90450eb6b61d7ec6.png b/train2/pictures/fc3bd8141fd4ea5e90450eb6b61d7ec6.png new file mode 100644 index 0000000..5fcdf05 Binary files /dev/null and b/train2/pictures/fc3bd8141fd4ea5e90450eb6b61d7ec6.png differ diff --git a/train2/pictures/fc48e18fa90fa62698b94b107c900e91.png b/train2/pictures/fc48e18fa90fa62698b94b107c900e91.png new file mode 100644 index 0000000..0873c5d Binary files /dev/null and b/train2/pictures/fc48e18fa90fa62698b94b107c900e91.png differ diff --git a/train2/pictures/fc6ca9dd5d2847387cea4f3e4eb61ff8.png b/train2/pictures/fc6ca9dd5d2847387cea4f3e4eb61ff8.png new file mode 100644 index 0000000..eae631f Binary files /dev/null and b/train2/pictures/fc6ca9dd5d2847387cea4f3e4eb61ff8.png differ diff --git a/train2/pictures/fc6f214735c71e4fcab1e9c79dfa089e.png b/train2/pictures/fc6f214735c71e4fcab1e9c79dfa089e.png new file mode 100644 index 0000000..8624909 Binary files /dev/null and b/train2/pictures/fc6f214735c71e4fcab1e9c79dfa089e.png differ diff --git a/train2/pictures/fc9b0b1eebecd1314754f6e3e0c9a5ad.png b/train2/pictures/fc9b0b1eebecd1314754f6e3e0c9a5ad.png new file mode 100644 index 0000000..fe2d759 Binary files /dev/null and b/train2/pictures/fc9b0b1eebecd1314754f6e3e0c9a5ad.png differ diff --git a/train2/pictures/fcb7abf005a514de9e3d3483d0e06452.png b/train2/pictures/fcb7abf005a514de9e3d3483d0e06452.png new file mode 100644 index 0000000..c779353 Binary files /dev/null and b/train2/pictures/fcb7abf005a514de9e3d3483d0e06452.png differ diff --git a/train2/pictures/fcbfc552f169c1d33e752e5aa5d8aa78.png b/train2/pictures/fcbfc552f169c1d33e752e5aa5d8aa78.png new file mode 100644 index 0000000..a8846a5 Binary files /dev/null and b/train2/pictures/fcbfc552f169c1d33e752e5aa5d8aa78.png differ diff --git a/train2/pictures/fce894367b628a1eea16177d8dfafa19.png b/train2/pictures/fce894367b628a1eea16177d8dfafa19.png new file mode 100644 index 0000000..03d50c2 Binary files /dev/null and b/train2/pictures/fce894367b628a1eea16177d8dfafa19.png differ diff --git a/train2/pictures/fd239ceb83e8000d2a098fcb1bd5e641.png b/train2/pictures/fd239ceb83e8000d2a098fcb1bd5e641.png new file mode 100644 index 0000000..49a2759 Binary files /dev/null and b/train2/pictures/fd239ceb83e8000d2a098fcb1bd5e641.png differ diff --git a/train2/pictures/fd54b2f68dbe511ca21227a980efba82.png b/train2/pictures/fd54b2f68dbe511ca21227a980efba82.png new file mode 100644 index 0000000..52ed57b Binary files /dev/null and b/train2/pictures/fd54b2f68dbe511ca21227a980efba82.png differ diff --git a/train2/pictures/fd7d2f202ab3611b589475a35238fa7c.png b/train2/pictures/fd7d2f202ab3611b589475a35238fa7c.png new file mode 100644 index 0000000..d684731 Binary files /dev/null and b/train2/pictures/fd7d2f202ab3611b589475a35238fa7c.png differ diff --git a/train2/pictures/fd8baa9bde481ef51fa976f8f02232ee.png b/train2/pictures/fd8baa9bde481ef51fa976f8f02232ee.png new file mode 100644 index 0000000..239236c Binary files /dev/null and b/train2/pictures/fd8baa9bde481ef51fa976f8f02232ee.png differ diff --git a/train2/pictures/fd96c081e84b7d2023b5ca7562a7eaec.png b/train2/pictures/fd96c081e84b7d2023b5ca7562a7eaec.png new file mode 100644 index 0000000..05d267a Binary files /dev/null and b/train2/pictures/fd96c081e84b7d2023b5ca7562a7eaec.png differ diff --git a/train2/pictures/fdb777a2837d3e3bbe88e7e0c608e310.png b/train2/pictures/fdb777a2837d3e3bbe88e7e0c608e310.png new file mode 100644 index 0000000..5903ed1 Binary files /dev/null and b/train2/pictures/fdb777a2837d3e3bbe88e7e0c608e310.png differ diff --git a/train2/pictures/fdd248fd8a50f8cd2372ec3726bb0be1.png b/train2/pictures/fdd248fd8a50f8cd2372ec3726bb0be1.png new file mode 100644 index 0000000..d95f089 Binary files /dev/null and b/train2/pictures/fdd248fd8a50f8cd2372ec3726bb0be1.png differ diff --git a/train2/pictures/fe5162af02d46aec90e711a6edf7f136.png b/train2/pictures/fe5162af02d46aec90e711a6edf7f136.png new file mode 100644 index 0000000..f384eea Binary files /dev/null and b/train2/pictures/fe5162af02d46aec90e711a6edf7f136.png differ diff --git a/train2/pictures/fe6d0b2042fb59e72b17c032550be08b.png b/train2/pictures/fe6d0b2042fb59e72b17c032550be08b.png new file mode 100644 index 0000000..e4d79bf Binary files /dev/null and b/train2/pictures/fe6d0b2042fb59e72b17c032550be08b.png differ diff --git a/train2/pictures/feac47a00ffd5e3c3e6d1e1177884262.png b/train2/pictures/feac47a00ffd5e3c3e6d1e1177884262.png new file mode 100644 index 0000000..b092742 Binary files /dev/null and b/train2/pictures/feac47a00ffd5e3c3e6d1e1177884262.png differ diff --git a/train2/pictures/fef80a4d2baf8f15dd9eae8cdf5c06ca.png b/train2/pictures/fef80a4d2baf8f15dd9eae8cdf5c06ca.png new file mode 100644 index 0000000..7174ec9 Binary files /dev/null and b/train2/pictures/fef80a4d2baf8f15dd9eae8cdf5c06ca.png differ diff --git a/train2/pictures/ff299938195a76e2468b5469e7aa7cdf.png b/train2/pictures/ff299938195a76e2468b5469e7aa7cdf.png new file mode 100644 index 0000000..33ab349 Binary files /dev/null and b/train2/pictures/ff299938195a76e2468b5469e7aa7cdf.png differ diff --git a/train2/pictures/ff393d8444ea5e343d10d4ca50cf8cb9.png b/train2/pictures/ff393d8444ea5e343d10d4ca50cf8cb9.png new file mode 100644 index 0000000..d260f7f Binary files /dev/null and b/train2/pictures/ff393d8444ea5e343d10d4ca50cf8cb9.png differ diff --git a/train2/pictures/ff6dbbf2b7ca00a0e7b1314d8f326732.png b/train2/pictures/ff6dbbf2b7ca00a0e7b1314d8f326732.png new file mode 100644 index 0000000..c4c2e72 Binary files /dev/null and b/train2/pictures/ff6dbbf2b7ca00a0e7b1314d8f326732.png differ diff --git a/train2/pictures/ff83c7389327a5b6068c5658ebe897ca.png b/train2/pictures/ff83c7389327a5b6068c5658ebe897ca.png new file mode 100644 index 0000000..46035e7 Binary files /dev/null and b/train2/pictures/ff83c7389327a5b6068c5658ebe897ca.png differ diff --git a/train2/pictures/ff8907069cadd3e41b3bf0c3683895a4.png b/train2/pictures/ff8907069cadd3e41b3bf0c3683895a4.png new file mode 100644 index 0000000..83fcccc Binary files /dev/null and b/train2/pictures/ff8907069cadd3e41b3bf0c3683895a4.png differ diff --git a/train2/pictures/ff954519c504eb6a9059d239c661dda4.png b/train2/pictures/ff954519c504eb6a9059d239c661dda4.png new file mode 100644 index 0000000..0563be3 Binary files /dev/null and b/train2/pictures/ff954519c504eb6a9059d239c661dda4.png differ diff --git a/train2/pictures/ffc8f6f6b1e5648d577b489f51e18607.png b/train2/pictures/ffc8f6f6b1e5648d577b489f51e18607.png new file mode 100644 index 0000000..7427c7f Binary files /dev/null and b/train2/pictures/ffc8f6f6b1e5648d577b489f51e18607.png differ