diff --git a/Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl b/Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl index 7b3e065..216a45a 100644 --- a/Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl +++ b/Mathematica/ScienceNotebooks/AnkiExporter/AnkiExporter.wl @@ -62,20 +62,20 @@ AnkiHighlight[]:=Module[{nb, t}, nb = InputNotebook[]; (* ::Input::Initialization:: *) (*Anki Connect: Pass Action and param*) -AnkiRequest[action_,params_:<||>]:=Block[{req,json},PrintToConsole[params];json=ImportString[ExportString[<|"action"->action,"version"->6,"params"->params|>,"JSON","Compact"->False],"Text"];PrintToConsole[json];req=HTTPRequest[<|"Scheme"->"http","Domain"->"localhost","Port"->8765,Method -> "POST","Body"->json|>];URLRead[req,"Body"] +AnkiRequest[action_,params_:<||>,debug_:False]:=Block[{req,json},json=ImportString[ExportString[<|"action"->action,"version"->6,"params"->params|>,"JSON","Compact"->False],"Text"];If[debug,PrintToConsole[json]];req=HTTPRequest[<|"Scheme"->"http","Domain"->"localhost","Port"->8765,Method -> "POST","Body"->json|>];URLRead[req,"Body"] ]; (*Anki Connect: Pass deck name then for params and tags (opt)*) PrepareAnkiNote[deckName_,cellID_,clozed_,title_,link_,tags_:{}]:={"deckName"->deckName,"modelName"->"MathematicaCloze","fields"->{"CellID"->ToString[cellID],"Text"->clozed,"Extra"->title,"Link"->link},"options"->{"allowDuplicate"->False},"tags"->tags}; (*Anki Connect: Pass deck name then all notes*) -AddOrUpdateNotes[deck_,rawNotes_]:=Block[{res,resi,toUpdate,ids,ankiIds}, +AddOrUpdateNotes[deck_,rawNotes_,debug_]:=Block[{res,resi,toUpdate,ids,ankiIds}, res=(ImportString[AnkiRequest["addNotes",{"notes"->(PrepareAnkiNote[deck,#[[1]],#[[2]],#[[3]],#[[4]],#[[5]]]&/@rawNotes)}],"JSON"]); -PrintToConsole[res]; +If[debug,PrintToConsole[res]]; res=("result"/.res); toUpdate=#[[2]]&/@Select[Thread[{res,rawNotes}],#[[1]]==Null&]; -PrintToConsole["Need to update "<>ToString[Length[toUpdate]]<> " notes"]; -If[Length[toUpdate]>0,res={"actions"->({"action"->"findNotes","params"->{"query"->"CellID:"<>ToString[#[[1]]]}}&/@toUpdate)};ankiIds=#[[1]]&/@("result"/.ImportString[AnkiRequest["multi",res],"JSON"]);toUpdate=Thread[{ankiIds,toUpdate}];PrintToConsole[ankiIds];PrintToConsole[toUpdate];res={"actions"->({"action"->"updateNoteFields","params"->{"note"->{"id"->ToString[#[[1]]],"deckName"->deck,"modelName"->"MathematicaCloze","fields"->{"CellID"->ToString[#[[2,1]]],"Text"->#[[2,2]],"Extra"->#[[2,3]],"Link"->#[[2,4]]},"options"->{"allowDuplicate"->False}}}}&/@toUpdate)};ImportString[AnkiRequest["multi",res],"JSON"]]; +If[debug,PrintToConsole["Need to update "<>ToString[Length[toUpdate]]<> " notes"]]; +If[Length[toUpdate]>0,res={"actions"->({"action"->"findNotes","params"->{"query"->"CellID:"<>ToString[#[[1]]]}}&/@toUpdate)};ankiIds=#[[1]]&/@("result"/.ImportString[AnkiRequest["multi",res],"JSON"]);toUpdate=Thread[{ankiIds,toUpdate}];If[debug,PrintToConsole[ankiIds]];If[debug,PrintToConsole[toUpdate]];res={"actions"->({"action"->"updateNoteFields","params"->{"note"->{"id"->ToString[#[[1]]],"deckName"->deck,"modelName"->"MathematicaCloze","fields"->{"CellID"->ToString[#[[2,1]]],"Text"->#[[2,2]],"Extra"->#[[2,3]],"Link"->#[[2,4]]},"options"->{"allowDuplicate"->False}}}}&/@toUpdate)};ImportString[AnkiRequest["multi",res],"JSON"]]; (*PrintToConsole[ImportString[AnkiRequest["updateNoteFields",{"note"\[Rule]{"id"\[Rule]#[[1]],"fields"\[Rule]{"CellID"\[Rule]ToString[#[[2,1]]],"Text"\[Rule]#[[2,2]],"Extra"\[Rule]#[[2,3]],"Link"\[Rule]#[[2,4]]}}}],"JSON"]]&/@toUpdate;*) (*PrintToConsole[ImportString[AnkiRequest["notesInfo",{"notes"\[Rule]toUpdate[[All,1]]}],"JSON"]];*) ]; @@ -103,12 +103,12 @@ s=CloudDeploy[EvaluationNotebook[],cn]; su=Quiet@CloudDeploy[URLDispatcher[{"/"~~EndOfString:>Delayed@CloudImport@s,"/"~~ base:Repeated[DigitCharacter,20]:>Delayed@ExportForm[Notebook[Append[First@CloudGet@s,cell@EmbeddedHTML["
"]],(Rest@s)/.{Notebook->Sequence}],"CloudCDF"]}],StringDrop[cn,-3]]; StringDrop[StringSplit[CloudConnect[],"@"][[1]]<>fn,-3] ]; -ExportToAnki[sync_:True]:=Module[{separator,styleTags,cells,sections,subsections,subsubsections,subsubsubsections,allinfo,cellids,celltags,data,ids,cloze,matchEq,encoding,eqCloze,GetTOC,exported,filtered,splited,marked,paths,fixed,final,threaded,deck,title, base,dat,ndir,tempPicPath, allspecial,npath,backupc,cloudex}, +ExportToAnki[sync_:True,debug_:False]:=Module[{separator,styleTags,cells,sections,subsections,subsubsections,subsubsubsections,allinfo,cellids,celltags,data,ids,cloze,matchEq,encoding,eqCloze,GetTOC,exported,filtered,splited,marked,paths,fixed,final,threaded,deck,title, base,dat,ndir,tempPicPath, allspecial,npath,backupc,cloudex}, If[NotebookDirectory[]===$Failed,ShowStatus["ExportAnki failed. Notebook must be saved first!"];Abort[]]; -cloudex=If[!$CloudConnected&&$WolframID===None,If[CloudConnect[]===$Failed||CloudConnect[]===$Canceled,False,True],True]; +cloudex=sync&&If[!$CloudConnected&&$WolframID===None,If[CloudConnect[]===$Failed||CloudConnect[]===$Canceled,False,True],True]; separator="#"; ShowStatus["Export starts"]; -PrintToConsole["Export starts"]; +If[debug,PrintToConsole["Export starts"]]; ExportString["Exp","TeXFragment"]; (*System`Convert`TeXFormDump`maketex["\[LeftSkeleton]"]="\\ll "; System`Convert`TeXFormDump`maketex["\[RightSkeleton]"]="\\gg ";*) @@ -128,6 +128,8 @@ System`Convert`TeXFormDump`maketex["\[Perpendicular]"]="\\perp "; System`Convert`TeXFormDump`maketex["\[TensorWedge]"]="\\wedge ";System`Convert`TeXFormDump`maketex["\[Wedge]"]="\\wedge "; System`Convert`TeXFormDump`maketex["\[TensorProduct]"]="\\otimes "; System`Convert`TeXFormDump`maketex["\[GreaterTilde]"]="\\gtrsim "; +System`Convert`TeXFormDump`maketex["<"]="\\lt "; +System`Convert`TeXFormDump`maketex[">"]="\\gt "; System`Convert`TeXFormDump`maketex["\[LineSeparator]"]="\n"; System`Convert`TeXFormDump`maketex[":="]=":="; @@ -341,12 +343,14 @@ FrontEndTokenExecute[EvaluationNotebook[],"SelectionOpenAllGroups"]; MapThread[SetOptions[#1,CellTags->#2]&,{Cells[EvaluationNotebook[],CellID->ids],backupc}]; ,filtered=Select[Thread[{ids,base,paths,npath,celltags}],StringMatchQ[#[[2]],"*{{c@::*"]&]; ]; +If[debug,PrintToConsole[filtered](*; Abort[]*)]; + ShowStatus["Exporting to Anki..."]; deck=StringReplace[StringReplace[ndir,e___~~"/Knowledge/" ~~ f___ ~~"/":> f],"/":>"::"]; -PrintToConsole[deck]; -PrintToConsole[AnkiRequest["createDeck",<|"deck"->deck|>]]; -AddOrUpdateNotes[deck,filtered]; -If[sync,PrintToConsole[AnkiRequest["sync"]]]; +If[debug,PrintToConsole[deck]]; +AnkiRequest["createDeck",<|"deck"->deck|>,debug]; +AddOrUpdateNotes[deck,filtered,debug]; +AnkiRequest["sync",<||>,debug]; ShowStatus["Notebook Exported"]; ]; End[]; diff --git a/Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb b/Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb index 38d4098..a28fa3c 100644 --- a/Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb +++ b/Mathematica/ScienceNotebooks/FrontEnd/StyleSheets/Science.nb @@ -10,10 +10,10 @@ NotebookFileLineBreakTest NotebookFileLineBreakTest NotebookDataPosition[ 158, 7] -NotebookDataLength[ 339175, 8464] -NotebookOptionsPosition[ 216456, 6745] -NotebookOutlinePosition[ 217619, 6783] -CellTagsIndexPosition[ 217480, 6776] +NotebookDataLength[ 339392, 8467] +NotebookOptionsPosition[ 216672, 6748] +NotebookOutlinePosition[ 217834, 6786] +CellTagsIndexPosition[ 217695, 6779] MenuPosition->1100 WindowFrame->Normal*) @@ -611,9 +611,7 @@ Cell["Notebook Options", "Section",ExpressionUUID->"413e0c9e-7da9-49e9-b386-3e81 Cell["\<\ The options defined for the style below will be used at the Notebook level. \ -\>", "Text",ExpressionUUID->"ab379823-62e1-4bc6-b1e9-e0b533c131c6"] -}, Open ]] -}, Open ]], +\>", "Text",ExpressionUUID->"ab379823-62e1-4bc6-b1e9-e0b533c131c6"], Cell[StyleData["Notebook"], DockedCells->Cell[ @@ -631,9 +629,7 @@ Cell[StyleData["Notebook"], "Preemptive"], "\"Insert or changestyle\"", LabelStyle -> "TextStyling"], Annotation[#, "Insert or changestyle", "Tooltip"]& ], { - "All" :> FrontEndTokenExecute[ - InputNotebook[], "Style", All], "\"Title\"" :> - FrontEndTokenExecute[ + "\"Title\"" :> FrontEndTokenExecute[ InputNotebook[], "Style", "Title"], "\"Subtitle\"" :> FrontEndTokenExecute[ InputNotebook[], "Style", "Subtitle"], "\"Chapter\"" :> @@ -789,17 +785,22 @@ Cell[StyleData["Notebook"], Options[TeXExporter`ExportToTeX]], ","]], "]"}]], "Input"]]]}, Method -> "Queued", Appearance -> None, FrameMargins -> {{0, 0}, {0, 1}}], - TagBox[ - TooltipBox[ - ButtonBox[ - "\"\[UpArrow]Anki\"", ButtonFunction :> AnkiExporter`ExportToAnki[], + ActionMenuBox[ + TagBox[ + TooltipBox[ + ButtonBox[ + "\"\[UpArrow]Anki\"", ButtonFunction :> {}, Evaluator -> None, Appearance -> - FEPrivate`FrontEndResource[ - "MUnitExpressions", "ButtonAppearances"], - BaseStyle -> {FontColor -> GrayLevel[0.2]}, Method -> "Queued", - Evaluator -> Automatic], "\"Export to Anki (open Anki before)\"", - LabelStyle -> "TextStyling"], - Annotation[#, "Export to Anki (open Anki before)", "Tooltip"]& ]}}, + FEPrivate`FrontEndResource[ + "MUnitExpressions", "ButtonAppearances"], + BaseStyle -> {FontColor -> GrayLevel[0.2]}, Method -> + "Preemptive"], "\"Export to Anki (open Anki before)\"", + LabelStyle -> "TextStyling"], + Annotation[#, "Export to Anki (open Anki before)", "Tooltip"]& ], { + "\"With Cloud Sync\"" :> AnkiExporter`ExportToAnki[], + "\"Local only\"" :> AnkiExporter`ExportToAnki[False], Delimiter, + "\"Debug\"" :> AnkiExporter`ExportToAnki[False, False]}, Method -> + "Queued", Appearance -> None, FrameMargins -> {{0, 0}, {0, 1}}]}}, AutoDelete -> False, GridBoxItemSize -> { "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, @@ -834,7 +835,8 @@ Cell[StyleData["Notebook"], SpanMaxSize->DirectedInfinity[1], SpanCharacterRounding->Round, FontSize->16, - CellTags->"Toolbar",ExpressionUUID->"b0dc04dc-5ae2-491f-8d0d-f59654473b46"], + CellTags->"Toolbar",ExpressionUUID->"6a98b3ef-a87b-4611-b9ad-923c58c30658"] +}, Open ]], Cell[CellGroupData[{ @@ -6742,11 +6744,12 @@ Cell[StyleData["Code", StyleDefinitions -> "Text"], False,ExpressionUUID->"1ad06ba6-eec6-4f31-b0e0-6f578b59a2d8"] }, Open ]] }, Open ]] +}, Open ]] }, WindowSize->{720, 855}, WindowMargins->{{358, Automatic}, {Automatic, 152}}, WindowFrame->"Normal", -Visible->False, +Visible->True, PrintingCopies->1, PrintingPageRange->{1, Automatic}, CreateCellID->False, @@ -6769,15 +6772,15 @@ CellTagsIndex->{ Cell[1747, 61, 10992, 516, 11581, "Text",ExpressionUUID->"248b2c7f-4560-4712-bb4e-b111ad3bab76", CellTags->"CSSDefinitions"]}, "Toolbar"->{ - Cell[13935, 617, 10026, 219, 47, 27, 0, "StyleData", "Notebook", "All",ExpressionUUID->"b0dc04dc-5ae2-491f-8d0d-f59654473b46", + Cell[13911, 615, 10242, 222, 47, 27, 0, "StyleData", "Notebook", "All",ExpressionUUID->"6a98b3ef-a87b-4611-b9ad-923c58c30658", CellTags->"Toolbar"]} } *) (*CellTagsIndex CellTagsIndex->{ - {"TeXPreamble", 217011, 6764}, - {"CSSDefinitions", 217156, 6767}, - {"Toolbar", 217302, 6770} + {"TeXPreamble", 217226, 6767}, + {"CSSDefinitions", 217371, 6770}, + {"Toolbar", 217517, 6773} } *) (*NotebookFileOutline @@ -6808,1664 +6811,1664 @@ Cell[13465, 601, 156, 3, 35, 35, 0, "StyleData", "All", "PrintoutPro",Expression }, Open ]], Cell[CellGroupData[{ Cell[13658, 609, 90, 0, 67, "Section",ExpressionUUID->"413e0c9e-7da9-49e9-b386-3e818015c812"], -Cell[13751, 611, 157, 2, 35, "Text",ExpressionUUID->"ab379823-62e1-4bc6-b1e9-e0b533c131c6"] -}, Open ]] +Cell[13751, 611, 157, 2, 35, "Text",ExpressionUUID->"ab379823-62e1-4bc6-b1e9-e0b533c131c6"], +Cell[13911, 615, 10242, 222, 47, 27, 0, "StyleData", "Notebook", "All",ExpressionUUID->"6a98b3ef-a87b-4611-b9ad-923c58c30658", + CellTags->"Toolbar"] }, Open ]], -Cell[13935, 617, 10026, 219, 47, 27, 0, "StyleData", "Notebook", "All",ExpressionUUID->"b0dc04dc-5ae2-491f-8d0d-f59654473b46", - CellTags->"Toolbar"], Cell[CellGroupData[{ -Cell[23986, 840, 85, 0, 67, "Section",ExpressionUUID->"71c947af-0267-4db8-9c10-300555d14dcb"], +Cell[24190, 842, 85, 0, 67, "Section",ExpressionUUID->"71c947af-0267-4db8-9c10-300555d14dcb"], Cell[CellGroupData[{ -Cell[24096, 844, 372, 10, 56, 35, 0, "StyleData", "FrontmatterGroup", "All",ExpressionUUID->"87d4faab-b8d6-409b-be19-c7fee01f05ff", +Cell[24300, 846, 372, 10, 56, 35, 0, "StyleData", "FrontmatterGroup", "All",ExpressionUUID->"87d4faab-b8d6-409b-be19-c7fee01f05ff", StyleMenuListing->None], -Cell[24471, 856, 206, 5, 18, 51, 0, "StyleData", "FrontmatterGroup", "Presentation",ExpressionUUID->"25a9fb91-5ca0-4664-aeb4-39b8ce229a27"], -Cell[24680, 863, 177, 4, 18, 47, 0, "StyleData", "FrontmatterGroup", "Printout",ExpressionUUID->"7e9944ff-a3d6-4f9d-8e92-c27080e52af1"], -Cell[24860, 869, 183, 4, 18, 53, 0, "StyleData", "FrontmatterGroup", "PrintoutKindle",ExpressionUUID->"d55f5645-a11c-4f6a-81bf-4b5e800f6297"] +Cell[24675, 858, 206, 5, 18, 51, 0, "StyleData", "FrontmatterGroup", "Presentation",ExpressionUUID->"25a9fb91-5ca0-4664-aeb4-39b8ce229a27"], +Cell[24884, 865, 177, 4, 18, 47, 0, "StyleData", "FrontmatterGroup", "Printout",ExpressionUUID->"7e9944ff-a3d6-4f9d-8e92-c27080e52af1"], +Cell[25064, 871, 183, 4, 18, 53, 0, "StyleData", "FrontmatterGroup", "PrintoutKindle",ExpressionUUID->"d55f5645-a11c-4f6a-81bf-4b5e800f6297"] }, Open ]], Cell[CellGroupData[{ -Cell[25080, 878, 82, 0, 54, "Subsection",ExpressionUUID->"48ad466c-d0ca-4bc3-a4fd-ce2bd3bab3dc"], +Cell[25284, 880, 82, 0, 54, "Subsection",ExpressionUUID->"48ad466c-d0ca-4bc3-a4fd-ce2bd3bab3dc"], Cell[CellGroupData[{ -Cell[25187, 882, 362, 10, 77, 24, 0, "StyleData", "Title", "All",ExpressionUUID->"b646abfa-efac-4571-a7cf-1c5c1ae2e581", +Cell[25391, 884, 362, 10, 77, 24, 0, "StyleData", "Title", "All",ExpressionUUID->"b646abfa-efac-4571-a7cf-1c5c1ae2e581", CounterIncrements->"Title", MenuCommandKey->"1"], -Cell[25552, 894, 170, 3, 103, 40, 0, "StyleData", "Title", "Presentation",ExpressionUUID->"df9ea456-b83a-42cf-86cd-8ed5452784dc"], -Cell[25725, 899, 139, 2, 65, 36, 0, "StyleData", "Title", "Printout",ExpressionUUID->"8c183e8f-5e9a-4292-b7b2-51c5779a6ddb"], -Cell[25867, 903, 145, 2, 65, 42, 0, "StyleData", "Title", "PrintoutKindle",ExpressionUUID->"12df84db-8add-4a7c-b795-d7fde565e5ea"] +Cell[25756, 896, 170, 3, 103, 40, 0, "StyleData", "Title", "Presentation",ExpressionUUID->"df9ea456-b83a-42cf-86cd-8ed5452784dc"], +Cell[25929, 901, 139, 2, 65, 36, 0, "StyleData", "Title", "Printout",ExpressionUUID->"8c183e8f-5e9a-4292-b7b2-51c5779a6ddb"], +Cell[26071, 905, 145, 2, 65, 42, 0, "StyleData", "Title", "PrintoutKindle",ExpressionUUID->"12df84db-8add-4a7c-b795-d7fde565e5ea"] }, Open ]], Cell[CellGroupData[{ -Cell[26049, 910, 367, 10, 50, 27, 0, "StyleData", "Subtitle", "All",ExpressionUUID->"77059832-036a-4aa0-b61b-787fb6871521", +Cell[26253, 912, 367, 10, 50, 27, 0, "StyleData", "Subtitle", "All",ExpressionUUID->"77059832-036a-4aa0-b61b-787fb6871521", CounterIncrements->"Title", StyleMenuListing->None], -Cell[26419, 922, 172, 3, 67, 43, 0, "StyleData", "Subtitle", "Presentation",ExpressionUUID->"d673d251-1647-49e9-851c-ca79a6566f7d"], -Cell[26594, 927, 141, 2, 45, 39, 0, "StyleData", "Subtitle", "Printout",ExpressionUUID->"c03690bb-6c55-42b8-ab73-743f1425b444"], -Cell[26738, 931, 144, 2, 45, 42, 0, "StyleData", "Subtitle", "PrintoutPro",ExpressionUUID->"8a5fedb6-0d64-4370-a1b3-649d543af99d"] +Cell[26623, 924, 172, 3, 67, 43, 0, "StyleData", "Subtitle", "Presentation",ExpressionUUID->"d673d251-1647-49e9-851c-ca79a6566f7d"], +Cell[26798, 929, 141, 2, 45, 39, 0, "StyleData", "Subtitle", "Printout",ExpressionUUID->"c03690bb-6c55-42b8-ab73-743f1425b444"], +Cell[26942, 933, 144, 2, 45, 42, 0, "StyleData", "Subtitle", "PrintoutPro",ExpressionUUID->"8a5fedb6-0d64-4370-a1b3-649d543af99d"] }, Open ]], Cell[CellGroupData[{ -Cell[26919, 938, 392, 11, 47, 30, 0, "StyleData", "Subsubtitle", "All",ExpressionUUID->"c7742b52-23f1-4333-97fc-657c79375eab", +Cell[27123, 940, 392, 11, 47, 30, 0, "StyleData", "Subsubtitle", "All",ExpressionUUID->"c7742b52-23f1-4333-97fc-657c79375eab", CounterIncrements->"Title", StyleMenuListing->None], -Cell[27314, 951, 175, 3, 62, 46, 0, "StyleData", "Subsubtitle", "Presentation",ExpressionUUID->"6fd98438-70b9-4ff2-9fca-fab62a03b7ee"], -Cell[27492, 956, 144, 2, 42, 42, 0, "StyleData", "Subsubtitle", "Printout",ExpressionUUID->"19f7b7dd-71c4-4e38-9aed-0862b7084a86"], -Cell[27639, 960, 147, 2, 42, 45, 0, "StyleData", "Subsubtitle", "PrintoutPro",ExpressionUUID->"813f19a3-6b19-4adb-b578-f6c3bc4f8266"] +Cell[27518, 953, 175, 3, 62, 46, 0, "StyleData", "Subsubtitle", "Presentation",ExpressionUUID->"6fd98438-70b9-4ff2-9fca-fab62a03b7ee"], +Cell[27696, 958, 144, 2, 42, 42, 0, "StyleData", "Subsubtitle", "Printout",ExpressionUUID->"19f7b7dd-71c4-4e38-9aed-0862b7084a86"], +Cell[27843, 962, 147, 2, 42, 45, 0, "StyleData", "Subsubtitle", "PrintoutPro",ExpressionUUID->"813f19a3-6b19-4adb-b578-f6c3bc4f8266"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[27835, 968, 81, 0, 54, "Subsection",ExpressionUUID->"e94de6e5-ec13-42bf-875a-e5c5d78f8c63"], +Cell[28039, 970, 81, 0, 54, "Subsection",ExpressionUUID->"e94de6e5-ec13-42bf-875a-e5c5d78f8c63"], Cell[CellGroupData[{ -Cell[27941, 972, 341, 8, 44, 23, 0, "StyleData", "Date", "All",ExpressionUUID->"859ee884-4829-48f4-b63d-b1b57bd9ada9", +Cell[28145, 974, 341, 8, 44, 23, 0, "StyleData", "Date", "All",ExpressionUUID->"859ee884-4829-48f4-b63d-b1b57bd9ada9", CounterIncrements->"Text", StyleMenuListing->None], -Cell[28285, 982, 165, 3, 57, 39, 0, "StyleData", "Date", "Presentation",ExpressionUUID->"c0117152-f85b-4ead-b1bd-4c5ffa091e40"], -Cell[28453, 987, 159, 3, 41, 35, 0, "StyleData", "Date", "Printout",ExpressionUUID->"730c0164-f920-47bb-8d51-610616676b79"], -Cell[28615, 992, 171, 3, 41, 47, 0, "StyleData", "Date", "DoubleSpacedPrintout",ExpressionUUID->"3ff048a9-23af-4f81-876e-09b8938bd289"] +Cell[28489, 984, 165, 3, 57, 39, 0, "StyleData", "Date", "Presentation",ExpressionUUID->"c0117152-f85b-4ead-b1bd-4c5ffa091e40"], +Cell[28657, 989, 159, 3, 41, 35, 0, "StyleData", "Date", "Printout",ExpressionUUID->"730c0164-f920-47bb-8d51-610616676b79"], +Cell[28819, 994, 171, 3, 41, 47, 0, "StyleData", "Date", "DoubleSpacedPrintout",ExpressionUUID->"3ff048a9-23af-4f81-876e-09b8938bd289"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[28835, 1001, 97, 0, 54, "Subsection",ExpressionUUID->"12ff6d2f-b185-4c5c-87aa-438a6f703685"], -Cell[28935, 1003, 298, 7, 35, 25, 0, "StyleData", "Author", "All",ExpressionUUID->"4828979e-5977-434a-93b4-d44fc1ceaa64", +Cell[29039, 1003, 97, 0, 54, "Subsection",ExpressionUUID->"12ff6d2f-b185-4c5c-87aa-438a6f703685"], +Cell[29139, 1005, 298, 7, 35, 25, 0, "StyleData", "Author", "All",ExpressionUUID->"4828979e-5977-434a-93b4-d44fc1ceaa64", StyleMenuListing->100], Cell[CellGroupData[{ -Cell[29258, 1014, 324, 8, 32, 30, 0, "StyleData", "Affiliation", "All",ExpressionUUID->"d692fc15-d735-4fca-be42-6714d3100f04", +Cell[29462, 1016, 324, 8, 32, 30, 0, "StyleData", "Affiliation", "All",ExpressionUUID->"d692fc15-d735-4fca-be42-6714d3100f04", StyleMenuListing->100], -Cell[29585, 1024, 146, 2, 76, 41, 0, "StyleData", "Author", "Presentation",ExpressionUUID->"6252b881-6031-413e-95d9-622c6a6559ca"], -Cell[29734, 1028, 139, 2, 43, 37, 0, "StyleData", "Author", "Printout",ExpressionUUID->"9b66887c-1efd-4528-a2eb-4f363b87fa0b"], -Cell[29876, 1032, 151, 2, 43, 49, 0, "StyleData", "Author", "DoubleSpacedPrintout",ExpressionUUID->"2dcc2dae-88d8-4205-91e2-d2bddea432bd"] +Cell[29789, 1026, 146, 2, 76, 41, 0, "StyleData", "Author", "Presentation",ExpressionUUID->"6252b881-6031-413e-95d9-622c6a6559ca"], +Cell[29938, 1030, 139, 2, 43, 37, 0, "StyleData", "Author", "Printout",ExpressionUUID->"9b66887c-1efd-4528-a2eb-4f363b87fa0b"], +Cell[30080, 1034, 151, 2, 43, 49, 0, "StyleData", "Author", "DoubleSpacedPrintout",ExpressionUUID->"2dcc2dae-88d8-4205-91e2-d2bddea432bd"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[30076, 1040, 113, 2, 54, "Subsection",ExpressionUUID->"77f131a8-17ea-419d-98c5-12d05acce865"], +Cell[30280, 1042, 113, 2, 54, "Subsection",ExpressionUUID->"77f131a8-17ea-419d-98c5-12d05acce865"], Cell[CellGroupData[{ -Cell[30214, 1046, 524, 12, 44, 34, 0, "StyleData", "AbstractSection", "All",ExpressionUUID->"3ba271fd-e6d5-4dbb-bc16-da66137bce60", +Cell[30418, 1048, 524, 12, 44, 34, 0, "StyleData", "AbstractSection", "All",ExpressionUUID->"3ba271fd-e6d5-4dbb-bc16-da66137bce60", StyleMenuListing->None], -Cell[30741, 1060, 155, 2, 57, 50, 0, "StyleData", "AbstractSection", "Presentation",ExpressionUUID->"4dae9137-05df-4eb8-9062-33f6284136b7"], -Cell[30899, 1064, 148, 2, 39, 46, 0, "StyleData", "AbstractSection", "Printout",ExpressionUUID->"835c417a-cc0e-4c5f-ab26-08125dbd7f4d"], -Cell[31050, 1068, 160, 2, 39, 58, 0, "StyleData", "AbstractSection", "DoubleSpacedPrintout",ExpressionUUID->"ffdc2f8d-02b4-45ae-bc96-fdf285275de6"] +Cell[30945, 1062, 155, 2, 57, 50, 0, "StyleData", "AbstractSection", "Presentation",ExpressionUUID->"4dae9137-05df-4eb8-9062-33f6284136b7"], +Cell[31103, 1066, 148, 2, 39, 46, 0, "StyleData", "AbstractSection", "Printout",ExpressionUUID->"835c417a-cc0e-4c5f-ab26-08125dbd7f4d"], +Cell[31254, 1070, 160, 2, 39, 58, 0, "StyleData", "AbstractSection", "DoubleSpacedPrintout",ExpressionUUID->"ffdc2f8d-02b4-45ae-bc96-fdf285275de6"] }, Open ]], Cell[CellGroupData[{ -Cell[31247, 1075, 809, 21, 44, 27, 0, "StyleData", "Abstract", "All",ExpressionUUID->"437bd00b-5914-46c3-afa0-b9db613bf589", +Cell[31451, 1077, 809, 21, 44, 27, 0, "StyleData", "Abstract", "All",ExpressionUUID->"437bd00b-5914-46c3-afa0-b9db613bf589", StyleMenuListing->1000], -Cell[32059, 1098, 169, 3, 45, 43, 0, "StyleData", "Abstract", "Presentation",ExpressionUUID->"595daba6-81ef-4a06-951b-b619e36c252e"], -Cell[32231, 1103, 163, 3, 31, 39, 0, "StyleData", "Abstract", "Printout",ExpressionUUID->"a7d0ad1f-13ba-465b-87e1-84e5958da2f9"], -Cell[32397, 1108, 175, 3, 31, 51, 0, "StyleData", "Abstract", "DoubleSpacedPrintout",ExpressionUUID->"c5f44f8c-ac84-4571-bf70-e7e174d7efc7"] +Cell[32263, 1100, 169, 3, 45, 43, 0, "StyleData", "Abstract", "Presentation",ExpressionUUID->"595daba6-81ef-4a06-951b-b619e36c252e"], +Cell[32435, 1105, 163, 3, 31, 39, 0, "StyleData", "Abstract", "Printout",ExpressionUUID->"a7d0ad1f-13ba-465b-87e1-84e5958da2f9"], +Cell[32601, 1110, 175, 3, 31, 51, 0, "StyleData", "Abstract", "DoubleSpacedPrintout",ExpressionUUID->"c5f44f8c-ac84-4571-bf70-e7e174d7efc7"] }, Open ]], Cell[CellGroupData[{ -Cell[32609, 1116, 495, 12, 36, 39, 0, "StyleData", "AbstractContinuation", "All",ExpressionUUID->"eb5f91a8-087a-4dbf-ab75-5fffffd00158", +Cell[32813, 1118, 495, 12, 36, 39, 0, "StyleData", "AbstractContinuation", "All",ExpressionUUID->"eb5f91a8-087a-4dbf-ab75-5fffffd00158", StyleMenuListing->None], -Cell[33107, 1130, 159, 2, 45, 55, 0, "StyleData", "AbstractContinuation", "Presentation",ExpressionUUID->"d83cda3b-c913-4433-93d8-1137679d1ebf"], -Cell[33269, 1134, 154, 2, 31, 51, 0, "StyleData", "AbstractContinuation", "Printout",ExpressionUUID->"3a7c480d-2f03-4935-985b-95383e075aad"], -Cell[33426, 1138, 166, 2, 31, 63, 0, "StyleData", "AbstractContinuation", "DoubleSpacedPrintout",ExpressionUUID->"eab7f73b-f33c-4ccc-b428-d32788167904"] +Cell[33311, 1132, 159, 2, 45, 55, 0, "StyleData", "AbstractContinuation", "Presentation",ExpressionUUID->"d83cda3b-c913-4433-93d8-1137679d1ebf"], +Cell[33473, 1136, 154, 2, 31, 51, 0, "StyleData", "AbstractContinuation", "Printout",ExpressionUUID->"3a7c480d-2f03-4935-985b-95383e075aad"], +Cell[33630, 1140, 166, 2, 31, 63, 0, "StyleData", "AbstractContinuation", "DoubleSpacedPrintout",ExpressionUUID->"eab7f73b-f33c-4ccc-b428-d32788167904"] }, Open ]], Cell[CellGroupData[{ -Cell[33629, 1145, 534, 13, 41, 31, 0, "StyleData", "AbstractMath", "All",ExpressionUUID->"01b03996-a28f-4c5b-a0e1-4914fe4bbdce", +Cell[33833, 1147, 534, 13, 41, 31, 0, "StyleData", "AbstractMath", "All",ExpressionUUID->"01b03996-a28f-4c5b-a0e1-4914fe4bbdce", CounterIncrements->"AbstractMath", StyleMenuListing->None], -Cell[34166, 1160, 152, 2, 52, 47, 0, "StyleData", "AbstractMath", "Presentation",ExpressionUUID->"d40780af-bfba-4601-baa3-eebf753bad1e"], -Cell[34321, 1164, 146, 2, 35, 43, 0, "StyleData", "AbstractMath", "Printout",ExpressionUUID->"c7ca50cd-ac12-4ed0-9c05-3ab717fb0787"], -Cell[34470, 1168, 158, 2, 35, 55, 0, "StyleData", "AbstractMath", "DoubleSpacedPrintout",ExpressionUUID->"935792b0-90b2-4a7a-af6d-6ef657201dc5"] +Cell[34370, 1162, 152, 2, 52, 47, 0, "StyleData", "AbstractMath", "Presentation",ExpressionUUID->"d40780af-bfba-4601-baa3-eebf753bad1e"], +Cell[34525, 1166, 146, 2, 35, 43, 0, "StyleData", "AbstractMath", "Printout",ExpressionUUID->"c7ca50cd-ac12-4ed0-9c05-3ab717fb0787"], +Cell[34674, 1170, 158, 2, 35, 55, 0, "StyleData", "AbstractMath", "DoubleSpacedPrintout",ExpressionUUID->"935792b0-90b2-4a7a-af6d-6ef657201dc5"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[34677, 1176, 122, 2, 54, "Subsection",ExpressionUUID->"b81cdb4b-43ad-4ad1-b335-cf16676f553d"], +Cell[34881, 1178, 122, 2, 54, "Subsection",ExpressionUUID->"b81cdb4b-43ad-4ad1-b335-cf16676f553d"], Cell[CellGroupData[{ -Cell[34824, 1182, 87, 0, 70, "Subsubsection",ExpressionUUID->"ab0239b8-0804-4bd8-a526-1ae9fb3d09d0"], +Cell[35028, 1184, 87, 0, 70, "Subsubsection",ExpressionUUID->"ab0239b8-0804-4bd8-a526-1ae9fb3d09d0"], Cell[CellGroupData[{ -Cell[34936, 1186, 97, 0, 70, "Subsubsubsection",ExpressionUUID->"6241242f-251a-4326-a058-044557eae5c4"], +Cell[35140, 1188, 97, 0, 70, "Subsubsubsection",ExpressionUUID->"6241242f-251a-4326-a058-044557eae5c4"], Cell[CellGroupData[{ -Cell[35058, 1190, 437, 11, 70, 29, 0, "StyleData", "TOCHeading", "All",ExpressionUUID->"3b61f21c-471c-47d1-9fff-15fc79ae9690", +Cell[35262, 1192, 437, 11, 70, 29, 0, "StyleData", "TOCHeading", "All",ExpressionUUID->"3b61f21c-471c-47d1-9fff-15fc79ae9690", StyleMenuListing->None], -Cell[35498, 1203, 174, 4, 70, 41, 0, "StyleData", "TOCHeading", "Printout",ExpressionUUID->"8555d1e5-dd18-42dd-89c1-d16c41496354"], -Cell[35675, 1209, 186, 4, 70, 53, 0, "StyleData", "TOCHeading", "DoubleSpacedPrintout",ExpressionUUID->"a1b3ffe5-5785-4c43-9a97-f87d8483e533"] +Cell[35702, 1205, 174, 4, 70, 41, 0, "StyleData", "TOCHeading", "Printout",ExpressionUUID->"8555d1e5-dd18-42dd-89c1-d16c41496354"], +Cell[35879, 1211, 186, 4, 70, 53, 0, "StyleData", "TOCHeading", "DoubleSpacedPrintout",ExpressionUUID->"a1b3ffe5-5785-4c43-9a97-f87d8483e533"] }, Open ]], Cell[CellGroupData[{ -Cell[35898, 1218, 486, 12, 70, 35, 0, "StyleData", "TOCIllustrations", "All",ExpressionUUID->"b8871d52-ee8c-45c8-a76c-f8d66fedef38", +Cell[36102, 1220, 486, 12, 70, 35, 0, "StyleData", "TOCIllustrations", "All",ExpressionUUID->"b8871d52-ee8c-45c8-a76c-f8d66fedef38", CounterAssignments->{{"TOCItem", 0}}, StyleMenuListing->None], -Cell[36387, 1232, 180, 4, 70, 47, 0, "StyleData", "TOCIllustrations", "Printout",ExpressionUUID->"243c0e49-01f7-44cb-aa57-0eabc4a30494"], -Cell[36570, 1238, 192, 4, 70, 59, 0, "StyleData", "TOCIllustrations", "DoubleSpacedPrintout",ExpressionUUID->"c378ed52-a5a9-447f-9304-cf9423e56f77"] +Cell[36591, 1234, 180, 4, 70, 47, 0, "StyleData", "TOCIllustrations", "Printout",ExpressionUUID->"243c0e49-01f7-44cb-aa57-0eabc4a30494"], +Cell[36774, 1240, 192, 4, 70, 59, 0, "StyleData", "TOCIllustrations", "DoubleSpacedPrintout",ExpressionUUID->"c378ed52-a5a9-447f-9304-cf9423e56f77"] }, Open ]], Cell[CellGroupData[{ -Cell[36799, 1247, 471, 12, 70, 28, 0, "StyleData", "TOCTables", "All",ExpressionUUID->"7402edea-ce0b-4ad4-ad75-4393aee6c019", +Cell[37003, 1249, 471, 12, 70, 28, 0, "StyleData", "TOCTables", "All",ExpressionUUID->"7402edea-ce0b-4ad4-ad75-4393aee6c019", CounterAssignments->{{"TOCItem", 0}}, StyleMenuListing->None], -Cell[37273, 1261, 173, 4, 70, 40, 0, "StyleData", "TOCTables", "Printout",ExpressionUUID->"7f42ed66-d615-488a-832c-85f492cb7d0d"], -Cell[37449, 1267, 185, 4, 70, 52, 0, "StyleData", "TOCTables", "DoubleSpacedPrintout",ExpressionUUID->"4d079343-3e37-4333-96b4-b5ee477ae57e"] +Cell[37477, 1263, 173, 4, 70, 40, 0, "StyleData", "TOCTables", "Printout",ExpressionUUID->"7f42ed66-d615-488a-832c-85f492cb7d0d"], +Cell[37653, 1269, 185, 4, 70, 52, 0, "StyleData", "TOCTables", "DoubleSpacedPrintout",ExpressionUUID->"4d079343-3e37-4333-96b4-b5ee477ae57e"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[37683, 1277, 100, 0, 70, "Subsubsubsection",ExpressionUUID->"a6654456-efe1-4d25-ae18-f2dcebf07369"], +Cell[37887, 1279, 100, 0, 70, "Subsubsubsection",ExpressionUUID->"a6654456-efe1-4d25-ae18-f2dcebf07369"], Cell[CellGroupData[{ -Cell[37808, 1281, 409, 10, 70, 40, 0, "StyleData", "TOCFrontmatterHeading", "All",ExpressionUUID->"3b875c81-96c9-4487-b85d-2c7a74e65a95", +Cell[38012, 1283, 409, 10, 70, 40, 0, "StyleData", "TOCFrontmatterHeading", "All",ExpressionUUID->"3b875c81-96c9-4487-b85d-2c7a74e65a95", StyleMenuListing->None], -Cell[38220, 1293, 173, 3, 70, 52, 0, "StyleData", "TOCFrontmatterHeading", "Printout",ExpressionUUID->"509fd59f-8cf8-4463-a874-07dba9bf5469"], -Cell[38396, 1298, 185, 3, 70, 64, 0, "StyleData", "TOCFrontmatterHeading", "DoubleSpacedPrintout",ExpressionUUID->"2f596e92-33dd-42d3-a53b-e619fc234f52"] +Cell[38424, 1295, 173, 3, 70, 52, 0, "StyleData", "TOCFrontmatterHeading", "Printout",ExpressionUUID->"509fd59f-8cf8-4463-a874-07dba9bf5469"], +Cell[38600, 1300, 185, 3, 70, 64, 0, "StyleData", "TOCFrontmatterHeading", "DoubleSpacedPrintout",ExpressionUUID->"2f596e92-33dd-42d3-a53b-e619fc234f52"] }, Open ]], Cell[CellGroupData[{ -Cell[38618, 1306, 407, 10, 70, 39, 0, "StyleData", "TOCBackmatterHeading", "All",ExpressionUUID->"2a6b9e3c-7d2c-4412-bc15-388d03fb2d2f", +Cell[38822, 1308, 407, 10, 70, 39, 0, "StyleData", "TOCBackmatterHeading", "All",ExpressionUUID->"2a6b9e3c-7d2c-4412-bc15-388d03fb2d2f", StyleMenuListing->None], -Cell[39028, 1318, 172, 3, 70, 51, 0, "StyleData", "TOCBackmatterHeading", "Printout",ExpressionUUID->"a94e3837-a30f-45d9-b2de-798a5de38c1d"], -Cell[39203, 1323, 184, 3, 70, 63, 0, "StyleData", "TOCBackmatterHeading", "DoubleSpacedPrintout",ExpressionUUID->"2230ae1a-2b55-4096-9e8f-812cfdca3365"] +Cell[39232, 1320, 172, 3, 70, 51, 0, "StyleData", "TOCBackmatterHeading", "Printout",ExpressionUUID->"a94e3837-a30f-45d9-b2de-798a5de38c1d"], +Cell[39407, 1325, 184, 3, 70, 63, 0, "StyleData", "TOCBackmatterHeading", "DoubleSpacedPrintout",ExpressionUUID->"2230ae1a-2b55-4096-9e8f-812cfdca3365"] }, Open ]], Cell[CellGroupData[{ -Cell[39424, 1331, 405, 10, 70, 38, 0, "StyleData", "TOCFrontBackHeading", "All",ExpressionUUID->"f2463576-b38c-496d-8631-fca212a85604", +Cell[39628, 1333, 405, 10, 70, 38, 0, "StyleData", "TOCFrontBackHeading", "All",ExpressionUUID->"f2463576-b38c-496d-8631-fca212a85604", StyleMenuListing->None], -Cell[39832, 1343, 171, 3, 70, 50, 0, "StyleData", "TOCFrontBackHeading", "Printout",ExpressionUUID->"1c3e8dc7-8a66-4f9b-a146-d2499d32da1e"], -Cell[40006, 1348, 183, 3, 70, 62, 0, "StyleData", "TOCFrontBackHeading", "DoubleSpacedPrintout",ExpressionUUID->"eaf37260-5341-4ae0-a030-9fe3a48af74d"] +Cell[40036, 1345, 171, 3, 70, 50, 0, "StyleData", "TOCFrontBackHeading", "Printout",ExpressionUUID->"1c3e8dc7-8a66-4f9b-a146-d2499d32da1e"], +Cell[40210, 1350, 183, 3, 70, 62, 0, "StyleData", "TOCFrontBackHeading", "DoubleSpacedPrintout",ExpressionUUID->"eaf37260-5341-4ae0-a030-9fe3a48af74d"] }, Open ]], Cell[CellGroupData[{ -Cell[40226, 1356, 710, 16, 70, 29, 0, "StyleData", "TOCSection", "All",ExpressionUUID->"f6018b89-bce2-4df3-928c-b1eafec9cf26", +Cell[40430, 1358, 710, 16, 70, 29, 0, "StyleData", "TOCSection", "All",ExpressionUUID->"f6018b89-bce2-4df3-928c-b1eafec9cf26", CounterIncrements->"TOCSection", CounterAssignments->{{"TOCSubsection", 0}}, StyleMenuListing->None], -Cell[40939, 1374, 185, 4, 70, 41, 0, "StyleData", "TOCSection", "Printout",ExpressionUUID->"c8b1d800-9ea0-49e4-a4cb-61512e85b87e"], -Cell[41127, 1380, 197, 4, 70, 53, 0, "StyleData", "TOCSection", "DoubleSpacedPrintout",ExpressionUUID->"766f7f83-9517-4833-9924-07ce9d070f6f"] +Cell[41143, 1376, 185, 4, 70, 41, 0, "StyleData", "TOCSection", "Printout",ExpressionUUID->"c8b1d800-9ea0-49e4-a4cb-61512e85b87e"], +Cell[41331, 1382, 197, 4, 70, 53, 0, "StyleData", "TOCSection", "DoubleSpacedPrintout",ExpressionUUID->"766f7f83-9517-4833-9924-07ce9d070f6f"] }, Open ]], Cell[CellGroupData[{ -Cell[41361, 1389, 778, 18, 70, 32, 0, "StyleData", "TOCSubsection", "All",ExpressionUUID->"270590b4-b061-4366-9725-348646347237", +Cell[41565, 1391, 778, 18, 70, 32, 0, "StyleData", "TOCSubsection", "All",ExpressionUUID->"270590b4-b061-4366-9725-348646347237", CounterIncrements->"TOCSubsection", CounterAssignments->{{"TOCSubsubsection", 0}}, StyleMenuListing->None], -Cell[42142, 1409, 191, 4, 70, 44, 0, "StyleData", "TOCSubsection", "Printout",ExpressionUUID->"483b33a8-2daa-4167-97ea-c705854538ef"], -Cell[42336, 1415, 203, 4, 70, 56, 0, "StyleData", "TOCSubsection", "DoubleSpacedPrintout",ExpressionUUID->"f4ff2967-f9e7-4bfc-ae4f-f4eb0b3aef8b"] +Cell[42346, 1411, 191, 4, 70, 44, 0, "StyleData", "TOCSubsection", "Printout",ExpressionUUID->"483b33a8-2daa-4167-97ea-c705854538ef"], +Cell[42540, 1417, 203, 4, 70, 56, 0, "StyleData", "TOCSubsection", "DoubleSpacedPrintout",ExpressionUUID->"f4ff2967-f9e7-4bfc-ae4f-f4eb0b3aef8b"] }, Open ]], Cell[CellGroupData[{ -Cell[42576, 1424, 811, 18, 70, 35, 0, "StyleData", "TOCSubsubsection", "All",ExpressionUUID->"8d042253-44f5-47e3-8f05-a2060abf9660", +Cell[42780, 1426, 811, 18, 70, 35, 0, "StyleData", "TOCSubsubsection", "All",ExpressionUUID->"8d042253-44f5-47e3-8f05-a2060abf9660", CounterIncrements->"TOCSubsubsection", StyleMenuListing->None], -Cell[43390, 1444, 194, 4, 70, 47, 0, "StyleData", "TOCSubsubsection", "Printout",ExpressionUUID->"7b85a0c3-6080-456f-834a-aaf260f46881"], -Cell[43587, 1450, 206, 4, 70, 59, 0, "StyleData", "TOCSubsubsection", "DoubleSpacedPrintout",ExpressionUUID->"984aa90d-6542-441e-8919-0796dc4e6f60"] +Cell[43594, 1446, 194, 4, 70, 47, 0, "StyleData", "TOCSubsubsection", "Printout",ExpressionUUID->"7b85a0c3-6080-456f-834a-aaf260f46881"], +Cell[43791, 1452, 206, 4, 70, 59, 0, "StyleData", "TOCSubsubsection", "DoubleSpacedPrintout",ExpressionUUID->"984aa90d-6542-441e-8919-0796dc4e6f60"] }, Open ]], Cell[CellGroupData[{ -Cell[43830, 1459, 619, 15, 70, 28, 0, "StyleData", "TOCFigure", "All",ExpressionUUID->"03901fab-ced9-4a40-9044-63ce7d9a9a3e", +Cell[44034, 1461, 619, 15, 70, 28, 0, "StyleData", "TOCFigure", "All",ExpressionUUID->"03901fab-ced9-4a40-9044-63ce7d9a9a3e", CounterIncrements->"TOCFigure", StyleMenuListing->None], -Cell[44452, 1476, 162, 3, 70, 40, 0, "StyleData", "TOCFigure", "Printout",ExpressionUUID->"1373b7c9-633c-4c29-a5e8-98c6442e9687"], -Cell[44617, 1481, 174, 3, 70, 52, 0, "StyleData", "TOCFigure", "DoubleSpacedPrintout",ExpressionUUID->"5325d141-8bb0-41b6-bfeb-4628aa82f129"] +Cell[44656, 1478, 162, 3, 70, 40, 0, "StyleData", "TOCFigure", "Printout",ExpressionUUID->"1373b7c9-633c-4c29-a5e8-98c6442e9687"], +Cell[44821, 1483, 174, 3, 70, 52, 0, "StyleData", "TOCFigure", "DoubleSpacedPrintout",ExpressionUUID->"5325d141-8bb0-41b6-bfeb-4628aa82f129"] }, Open ]], Cell[CellGroupData[{ -Cell[44828, 1489, 615, 15, 70, 27, 0, "StyleData", "TOCTable", "All",ExpressionUUID->"cfbe104e-9238-44e6-ac8b-073e089febc5", +Cell[45032, 1491, 615, 15, 70, 27, 0, "StyleData", "TOCTable", "All",ExpressionUUID->"cfbe104e-9238-44e6-ac8b-073e089febc5", CounterIncrements->"TOCTable", StyleMenuListing->None], -Cell[45446, 1506, 161, 3, 70, 39, 0, "StyleData", "TOCTable", "Printout",ExpressionUUID->"a69ddf10-f4ac-4290-86bf-b70e61b8adaf"], -Cell[45610, 1511, 173, 3, 70, 51, 0, "StyleData", "TOCTable", "DoubleSpacedPrintout",ExpressionUUID->"0577fa11-8a2c-4d26-8d8f-de3600f3e180"] +Cell[45650, 1508, 161, 3, 70, 39, 0, "StyleData", "TOCTable", "Printout",ExpressionUUID->"a69ddf10-f4ac-4290-86bf-b70e61b8adaf"], +Cell[45814, 1513, 173, 3, 70, 51, 0, "StyleData", "TOCTable", "DoubleSpacedPrintout",ExpressionUUID->"0577fa11-8a2c-4d26-8d8f-de3600f3e180"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[45832, 1520, 98, 0, 70, "Subsubsubsection",ExpressionUUID->"778bb581-1fd3-47bb-a8dd-87a553fad1de"], +Cell[46036, 1522, 98, 0, 70, "Subsubsubsection",ExpressionUUID->"778bb581-1fd3-47bb-a8dd-87a553fad1de"], Cell[CellGroupData[{ -Cell[45955, 1524, 195, 4, 70, 28, 0, "StyleData", "TOCSpacer", "All",ExpressionUUID->"69823727-f608-4e80-bd8a-7b05879611c9", +Cell[46159, 1526, 195, 4, 70, 28, 0, "StyleData", "TOCSpacer", "All",ExpressionUUID->"69823727-f608-4e80-bd8a-7b05879611c9", StyleMenuListing->None], -Cell[46153, 1530, 130, 2, 70, 40, 0, "StyleData", "TOCSpacer", "Printout",ExpressionUUID->"d9a9abae-0ad0-49fb-b321-0d364ce03680"], -Cell[46286, 1534, 142, 2, 70, 52, 0, "StyleData", "TOCSpacer", "DoubleSpacedPrintout",ExpressionUUID->"bb219a78-5c78-4998-9b1c-4c419833fc79"] +Cell[46357, 1532, 130, 2, 70, 40, 0, "StyleData", "TOCSpacer", "Printout",ExpressionUUID->"d9a9abae-0ad0-49fb-b321-0d364ce03680"], +Cell[46490, 1536, 142, 2, 70, 52, 0, "StyleData", "TOCSpacer", "DoubleSpacedPrintout",ExpressionUUID->"bb219a78-5c78-4998-9b1c-4c419833fc79"] }, Open ]], Cell[CellGroupData[{ -Cell[46465, 1541, 218, 5, 70, 34, 0, "StyleData", "TOCSectionLabel", "All",ExpressionUUID->"44d9705b-5f2f-4ed9-9ffa-3201b02a3c00", +Cell[46669, 1543, 218, 5, 70, 34, 0, "StyleData", "TOCSectionLabel", "All",ExpressionUUID->"44d9705b-5f2f-4ed9-9ffa-3201b02a3c00", StyleMenuListing->None], -Cell[46686, 1548, 132, 2, 70, 46, 0, "StyleData", "TOCSectionLabel", "Printout",ExpressionUUID->"80818d26-f0bb-4a26-8c71-e3a153b93259"], -Cell[46821, 1552, 144, 2, 70, 58, 0, "StyleData", "TOCSectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"f270bf11-688b-47ba-ad54-576232637134"] +Cell[46890, 1550, 132, 2, 70, 46, 0, "StyleData", "TOCSectionLabel", "Printout",ExpressionUUID->"80818d26-f0bb-4a26-8c71-e3a153b93259"], +Cell[47025, 1554, 144, 2, 70, 58, 0, "StyleData", "TOCSectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"f270bf11-688b-47ba-ad54-576232637134"] }, Open ]], Cell[CellGroupData[{ -Cell[47002, 1559, 221, 5, 70, 37, 0, "StyleData", "TOCSubsectionLabel", "All",ExpressionUUID->"0bcedabb-3b66-4107-b09f-bd20d85a82f4", +Cell[47206, 1561, 221, 5, 70, 37, 0, "StyleData", "TOCSubsectionLabel", "All",ExpressionUUID->"0bcedabb-3b66-4107-b09f-bd20d85a82f4", StyleMenuListing->None], -Cell[47226, 1566, 135, 2, 70, 49, 0, "StyleData", "TOCSubsectionLabel", "Printout",ExpressionUUID->"bd5564aa-e78e-4811-895d-99d9d128e6a4"], -Cell[47364, 1570, 147, 2, 70, 61, 0, "StyleData", "TOCSubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"c0699714-6cce-4e8d-a45d-690aa3638913"] +Cell[47430, 1568, 135, 2, 70, 49, 0, "StyleData", "TOCSubsectionLabel", "Printout",ExpressionUUID->"bd5564aa-e78e-4811-895d-99d9d128e6a4"], +Cell[47568, 1572, 147, 2, 70, 61, 0, "StyleData", "TOCSubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"c0699714-6cce-4e8d-a45d-690aa3638913"] }, Open ]], Cell[CellGroupData[{ -Cell[47548, 1577, 224, 5, 70, 40, 0, "StyleData", "TOCSubsubsectionLabel", "All",ExpressionUUID->"d04abe01-4297-47cd-816b-361d754ea18f", +Cell[47752, 1579, 224, 5, 70, 40, 0, "StyleData", "TOCSubsubsectionLabel", "All",ExpressionUUID->"d04abe01-4297-47cd-816b-361d754ea18f", StyleMenuListing->None], -Cell[47775, 1584, 138, 2, 70, 52, 0, "StyleData", "TOCSubsubsectionLabel", "Printout",ExpressionUUID->"ae06440a-303b-4495-862d-5333b81b666c"], -Cell[47916, 1588, 150, 2, 70, 64, 0, "StyleData", "TOCSubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"8c1f105d-7a3e-47d9-829f-0151f7ca391b"] +Cell[47979, 1586, 138, 2, 70, 52, 0, "StyleData", "TOCSubsubsectionLabel", "Printout",ExpressionUUID->"ae06440a-303b-4495-862d-5333b81b666c"], +Cell[48120, 1590, 150, 2, 70, 64, 0, "StyleData", "TOCSubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"8c1f105d-7a3e-47d9-829f-0151f7ca391b"] }, Open ]], Cell[CellGroupData[{ -Cell[48103, 1595, 217, 5, 70, 33, 0, "StyleData", "TOCFigureLabel", "All",ExpressionUUID->"3bf2b0ab-099c-4d8c-b3be-be882a28ea7c", +Cell[48307, 1597, 217, 5, 70, 33, 0, "StyleData", "TOCFigureLabel", "All",ExpressionUUID->"3bf2b0ab-099c-4d8c-b3be-be882a28ea7c", StyleMenuListing->None], -Cell[48323, 1602, 131, 2, 70, 45, 0, "StyleData", "TOCFigureLabel", "Printout",ExpressionUUID->"e7cfc0d3-8ac1-4345-8233-3598114da910"], -Cell[48457, 1606, 143, 2, 70, 57, 0, "StyleData", "TOCFigureLabel", "DoubleSpacedPrintout",ExpressionUUID->"0c3de995-b325-4e96-a089-6bf0474db751"] +Cell[48527, 1604, 131, 2, 70, 45, 0, "StyleData", "TOCFigureLabel", "Printout",ExpressionUUID->"e7cfc0d3-8ac1-4345-8233-3598114da910"], +Cell[48661, 1608, 143, 2, 70, 57, 0, "StyleData", "TOCFigureLabel", "DoubleSpacedPrintout",ExpressionUUID->"0c3de995-b325-4e96-a089-6bf0474db751"] }, Open ]], Cell[CellGroupData[{ -Cell[48637, 1613, 216, 5, 70, 32, 0, "StyleData", "TOCTableLabel", "All",ExpressionUUID->"ab3b63fd-646b-45b5-8916-590a04da719b", +Cell[48841, 1615, 216, 5, 70, 32, 0, "StyleData", "TOCTableLabel", "All",ExpressionUUID->"ab3b63fd-646b-45b5-8916-590a04da719b", StyleMenuListing->None], -Cell[48856, 1620, 130, 2, 70, 44, 0, "StyleData", "TOCTableLabel", "Printout",ExpressionUUID->"5a82b78b-390c-40e1-bd84-005706c65e3f"], -Cell[48989, 1624, 142, 2, 70, 56, 0, "StyleData", "TOCTableLabel", "DoubleSpacedPrintout",ExpressionUUID->"82ba04bb-ee9a-479d-b41c-2fde9081ffa7"] +Cell[49060, 1622, 130, 2, 70, 44, 0, "StyleData", "TOCTableLabel", "Printout",ExpressionUUID->"5a82b78b-390c-40e1-bd84-005706c65e3f"], +Cell[49193, 1626, 142, 2, 70, 56, 0, "StyleData", "TOCTableLabel", "DoubleSpacedPrintout",ExpressionUUID->"82ba04bb-ee9a-479d-b41c-2fde9081ffa7"] }, Open ]], Cell[CellGroupData[{ -Cell[49168, 1631, 214, 5, 70, 28, 0, "StyleData", "TOCLeader", "All",ExpressionUUID->"71c37d2e-1150-4092-aba7-c9ec53a91cec", +Cell[49372, 1633, 214, 5, 70, 28, 0, "StyleData", "TOCLeader", "All",ExpressionUUID->"71c37d2e-1150-4092-aba7-c9ec53a91cec", StyleMenuListing->None], -Cell[49385, 1638, 110, 1, 70, 40, 0, "StyleData", "TOCLeader", "Printout",ExpressionUUID->"fee46499-ef4f-40f9-975c-ff2dcc35130e"], -Cell[49498, 1641, 122, 1, 70, 52, 0, "StyleData", "TOCLeader", "DoubleSpacedPrintout",ExpressionUUID->"4be7dcfe-0b1e-48e5-92c2-fd7015b1e78a"] +Cell[49589, 1640, 110, 1, 70, 40, 0, "StyleData", "TOCLeader", "Printout",ExpressionUUID->"fee46499-ef4f-40f9-975c-ff2dcc35130e"], +Cell[49702, 1643, 122, 1, 70, 52, 0, "StyleData", "TOCLeader", "DoubleSpacedPrintout",ExpressionUUID->"4be7dcfe-0b1e-48e5-92c2-fd7015b1e78a"] }, Open ]], Cell[CellGroupData[{ -Cell[49657, 1647, 350, 9, 70, 32, 0, "StyleData", "TOCPageNumber", "All",ExpressionUUID->"ec63188c-6fd5-4587-93de-80ee680dbde4", +Cell[49861, 1649, 350, 9, 70, 32, 0, "StyleData", "TOCPageNumber", "All",ExpressionUUID->"ec63188c-6fd5-4587-93de-80ee680dbde4", StyleMenuListing->None], -Cell[50010, 1658, 130, 2, 70, 44, 0, "StyleData", "TOCPageNumber", "Printout",ExpressionUUID->"d3dbd124-21dd-4c6a-8dda-59f9efa0e2d1"], -Cell[50143, 1662, 142, 2, 70, 56, 0, "StyleData", "TOCPageNumber", "DoubleSpacedPrintout",ExpressionUUID->"aa5c0b68-71d7-46d3-91e5-8df70c339431"] +Cell[50214, 1660, 130, 2, 70, 44, 0, "StyleData", "TOCPageNumber", "Printout",ExpressionUUID->"d3dbd124-21dd-4c6a-8dda-59f9efa0e2d1"], +Cell[50347, 1664, 142, 2, 70, 56, 0, "StyleData", "TOCPageNumber", "DoubleSpacedPrintout",ExpressionUUID->"aa5c0b68-71d7-46d3-91e5-8df70c339431"] }, Open ]] }, Open ]] }, Open ]] }, Closed]] }, Open ]], Cell[CellGroupData[{ -Cell[50370, 1673, 87, 0, 67, "Section",ExpressionUUID->"07c598b4-ba56-4c2a-a20e-9a7966555e4d"], +Cell[50574, 1675, 87, 0, 67, "Section",ExpressionUUID->"07c598b4-ba56-4c2a-a20e-9a7966555e4d"], Cell[CellGroupData[{ -Cell[50482, 1677, 84, 0, 70, "Subsection",ExpressionUUID->"daf8a553-4f6a-41b4-bf55-f5141c342f09"], +Cell[50686, 1679, 84, 0, 70, "Subsection",ExpressionUUID->"daf8a553-4f6a-41b4-bf55-f5141c342f09"], Cell[CellGroupData[{ -Cell[50591, 1681, 838, 22, 70, 26, 0, "StyleData", "Chapter", "All",ExpressionUUID->"dbb1ddde-a6d6-4ba9-97a8-f067fcc2cce4", +Cell[50795, 1683, 838, 22, 70, 26, 0, "StyleData", "Chapter", "All",ExpressionUUID->"dbb1ddde-a6d6-4ba9-97a8-f067fcc2cce4", CounterIncrements->"Chapter", CounterAssignments->{{"Subsubtitle", 0}, {"Item", 0}, {"Subitem", 0}, {"Subsubitem", 0}, {"ItemNumbered", 0}, {"SubitemNumbered", 0}, {"SubsubitemNumbered", 0}}, MenuSortingValue->1150, MenuCommandKey->"2"], -Cell[51432, 1705, 178, 3, 70, 42, 0, "StyleData", "Chapter", "Presentation",ExpressionUUID->"a110ae12-3301-4791-91cf-6fc48d4a2df5"], -Cell[51613, 1710, 275, 5, 70, 39, 0, "StyleData", "Chapter", "SlideShow",ExpressionUUID->"d36e8ad5-097d-458a-8478-52bc6c6fd2c7"], -Cell[51891, 1717, 143, 2, 70, 39, 0, "StyleData", "Chapter", "Condensed",ExpressionUUID->"8ab77345-29b5-43cc-b157-d5f4bccdb072"], -Cell[52037, 1721, 140, 2, 70, 38, 0, "StyleData", "Chapter", "Printout",ExpressionUUID->"1dc51a5e-981f-4d52-8513-f43ff9717759"], -Cell[52180, 1725, 144, 2, 70, 42, 0, "StyleData", "Chapter", "PrintoutGray",ExpressionUUID->"02265f39-fcab-42fe-bdfb-a2a32b01b3b5"] +Cell[51636, 1707, 178, 3, 70, 42, 0, "StyleData", "Chapter", "Presentation",ExpressionUUID->"a110ae12-3301-4791-91cf-6fc48d4a2df5"], +Cell[51817, 1712, 275, 5, 70, 39, 0, "StyleData", "Chapter", "SlideShow",ExpressionUUID->"d36e8ad5-097d-458a-8478-52bc6c6fd2c7"], +Cell[52095, 1719, 143, 2, 70, 39, 0, "StyleData", "Chapter", "Condensed",ExpressionUUID->"8ab77345-29b5-43cc-b157-d5f4bccdb072"], +Cell[52241, 1723, 140, 2, 70, 38, 0, "StyleData", "Chapter", "Printout",ExpressionUUID->"1dc51a5e-981f-4d52-8513-f43ff9717759"], +Cell[52384, 1727, 144, 2, 70, 42, 0, "StyleData", "Chapter", "PrintoutGray",ExpressionUUID->"02265f39-fcab-42fe-bdfb-a2a32b01b3b5"] }, Open ]], Cell[CellGroupData[{ -Cell[52361, 1732, 690, 17, 70, 29, 0, "StyleData", "Subchapter", "All",ExpressionUUID->"79c7d825-36c7-4122-8e6a-5efeec54aac2", +Cell[52565, 1734, 690, 17, 70, 29, 0, "StyleData", "Subchapter", "All",ExpressionUUID->"79c7d825-36c7-4122-8e6a-5efeec54aac2", CounterIncrements->"Subchapter", CounterAssignments->{{"Item", 0}, {"Subitem", 0}, {"Subsubitem", 0}, {"ItemNumbered", 0}, {"SubitemNumbered", 0}, {"SubsubitemNumbered", 0}}, MenuSortingValue->1200, MenuCommandKey->None], -Cell[53054, 1751, 180, 3, 70, 45, 0, "StyleData", "Subchapter", "Presentation",ExpressionUUID->"6cf4efa1-3d3d-4cf5-9328-ae88a2e2ebcd"], -Cell[53237, 1756, 277, 5, 70, 42, 0, "StyleData", "Subchapter", "SlideShow",ExpressionUUID->"b52d5801-f451-424f-aabc-20438585a402"], -Cell[53517, 1763, 147, 2, 70, 42, 0, "StyleData", "Subchapter", "Condensed",ExpressionUUID->"28b50c22-145b-4196-83f4-9b0daa6a5cfc"], -Cell[53667, 1767, 142, 2, 70, 41, 0, "StyleData", "Subchapter", "Printout",ExpressionUUID->"bc1de9ff-12a5-4f05-8ea8-18b4efb0165f"], -Cell[53812, 1771, 146, 2, 70, 45, 0, "StyleData", "Subchapter", "PrintoutGray",ExpressionUUID->"33fa16f9-efd6-4551-8b1b-ffbe9ae09cd4"] +Cell[53258, 1753, 180, 3, 70, 45, 0, "StyleData", "Subchapter", "Presentation",ExpressionUUID->"6cf4efa1-3d3d-4cf5-9328-ae88a2e2ebcd"], +Cell[53441, 1758, 277, 5, 70, 42, 0, "StyleData", "Subchapter", "SlideShow",ExpressionUUID->"b52d5801-f451-424f-aabc-20438585a402"], +Cell[53721, 1765, 147, 2, 70, 42, 0, "StyleData", "Subchapter", "Condensed",ExpressionUUID->"28b50c22-145b-4196-83f4-9b0daa6a5cfc"], +Cell[53871, 1769, 142, 2, 70, 41, 0, "StyleData", "Subchapter", "Printout",ExpressionUUID->"bc1de9ff-12a5-4f05-8ea8-18b4efb0165f"], +Cell[54016, 1773, 146, 2, 70, 45, 0, "StyleData", "Subchapter", "PrintoutGray",ExpressionUUID->"33fa16f9-efd6-4551-8b1b-ffbe9ae09cd4"] }, Open ]], Cell[CellGroupData[{ -Cell[53995, 1778, 625, 14, 70, 35, 0, "StyleData", "BookChapterLabel", "All",ExpressionUUID->"1541ecac-27e3-48e3-b92c-7d56a560b4b4", +Cell[54199, 1780, 625, 14, 70, 35, 0, "StyleData", "BookChapterLabel", "All",ExpressionUUID->"1541ecac-27e3-48e3-b92c-7d56a560b4b4", CounterIncrements->"BookChapterLabel", CounterAssignments->{{"Section", 0}, {"EquationNumbered", 0}, {"FigureCaption", 0}, {"Figure", 0}, {"TableTitle", 0}, {"Table", 0}}, StyleMenuListing->None], -Cell[54623, 1794, 171, 3, 70, 47, 0, "StyleData", "BookChapterLabel", "Printout",ExpressionUUID->"447aa293-f30b-4230-99ba-a52cc253cb98"], -Cell[54797, 1799, 183, 3, 70, 59, 0, "StyleData", "BookChapterLabel", "DoubleSpacedPrintout",ExpressionUUID->"8ce14681-4140-40f1-9466-4e4c6eadbc65"] +Cell[54827, 1796, 171, 3, 70, 47, 0, "StyleData", "BookChapterLabel", "Printout",ExpressionUUID->"447aa293-f30b-4230-99ba-a52cc253cb98"], +Cell[55001, 1801, 183, 3, 70, 59, 0, "StyleData", "BookChapterLabel", "DoubleSpacedPrintout",ExpressionUUID->"8ce14681-4140-40f1-9466-4e4c6eadbc65"] }, Open ]], Cell[CellGroupData[{ -Cell[55017, 1807, 248, 6, 70, 36, 0, "StyleData", "BookChapterNumber", "All",ExpressionUUID->"ee09ce5d-20bf-45fc-bb58-cfe99b4bb537", +Cell[55221, 1809, 248, 6, 70, 36, 0, "StyleData", "BookChapterNumber", "All",ExpressionUUID->"ee09ce5d-20bf-45fc-bb58-cfe99b4bb537", StyleMenuListing->None], -Cell[55268, 1815, 168, 4, 70, 48, 0, "StyleData", "BookChapterNumber", "Printout",ExpressionUUID->"e19b6deb-320c-411b-86fa-d83d6c83cb94"], -Cell[55439, 1821, 180, 4, 70, 60, 0, "StyleData", "BookChapterNumber", "DoubleSpacedPrintout",ExpressionUUID->"255d967b-d442-45ad-9f74-80128c04a561"] +Cell[55472, 1817, 168, 4, 70, 48, 0, "StyleData", "BookChapterNumber", "Printout",ExpressionUUID->"e19b6deb-320c-411b-86fa-d83d6c83cb94"], +Cell[55643, 1823, 180, 4, 70, 60, 0, "StyleData", "BookChapterNumber", "DoubleSpacedPrintout",ExpressionUUID->"255d967b-d442-45ad-9f74-80128c04a561"] }, Open ]], Cell[CellGroupData[{ -Cell[55656, 1830, 369, 8, 70, 35, 0, "StyleData", "BookChapterTitle", "All",ExpressionUUID->"5b7444ce-d82c-4260-903b-ff92570361b7", +Cell[55860, 1832, 369, 8, 70, 35, 0, "StyleData", "BookChapterTitle", "All",ExpressionUUID->"5b7444ce-d82c-4260-903b-ff92570361b7", StyleMenuListing->None], -Cell[56028, 1840, 171, 3, 70, 47, 0, "StyleData", "BookChapterTitle", "Printout",ExpressionUUID->"e8fad013-c634-488e-91aa-a4b3aea13bc5"], -Cell[56202, 1845, 183, 3, 70, 59, 0, "StyleData", "BookChapterTitle", "DoubleSpacedPrintout",ExpressionUUID->"15ae2849-7dd8-4aac-a3ac-f3ff03bf8d7d"] +Cell[56232, 1842, 171, 3, 70, 47, 0, "StyleData", "BookChapterTitle", "Printout",ExpressionUUID->"e8fad013-c634-488e-91aa-a4b3aea13bc5"], +Cell[56406, 1847, 183, 3, 70, 59, 0, "StyleData", "BookChapterTitle", "DoubleSpacedPrintout",ExpressionUUID->"15ae2849-7dd8-4aac-a3ac-f3ff03bf8d7d"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[56434, 1854, 159, 4, 70, "Subsection",ExpressionUUID->"f22bf0b9-260e-409f-80fe-f7ac64d67f5a"], +Cell[56638, 1856, 159, 4, 70, "Subsection",ExpressionUUID->"f22bf0b9-260e-409f-80fe-f7ac64d67f5a"], Cell[CellGroupData[{ -Cell[56618, 1862, 442, 12, 70, 32, 0, "StyleData", "BookPartLabel", "All",ExpressionUUID->"82c1e858-e2aa-4fc3-a04f-2147628857a2", +Cell[56822, 1864, 442, 12, 70, 32, 0, "StyleData", "BookPartLabel", "All",ExpressionUUID->"82c1e858-e2aa-4fc3-a04f-2147628857a2", CounterAssignments->{{"Chapter", 0}}, StyleMenuListing->None], -Cell[57063, 1876, 221, 6, 70, 44, 0, "StyleData", "BookPartLabel", "Printout",ExpressionUUID->"b54d5b51-476f-4768-b0db-9bfe6a8a83b9"], -Cell[57287, 1884, 233, 6, 70, 56, 0, "StyleData", "BookPartLabel", "DoubleSpacedPrintout",ExpressionUUID->"c4fa8f0a-cc02-49fd-b6ab-1378fd8425ab"] +Cell[57267, 1878, 221, 6, 70, 44, 0, "StyleData", "BookPartLabel", "Printout",ExpressionUUID->"b54d5b51-476f-4768-b0db-9bfe6a8a83b9"], +Cell[57491, 1886, 233, 6, 70, 56, 0, "StyleData", "BookPartLabel", "DoubleSpacedPrintout",ExpressionUUID->"c4fa8f0a-cc02-49fd-b6ab-1378fd8425ab"] }, Open ]], Cell[CellGroupData[{ -Cell[57557, 1895, 245, 6, 70, 33, 0, "StyleData", "BookPartNumber", "All",ExpressionUUID->"05828138-7e48-48ce-9def-c4a498627491", +Cell[57761, 1897, 245, 6, 70, 33, 0, "StyleData", "BookPartNumber", "All",ExpressionUUID->"05828138-7e48-48ce-9def-c4a498627491", StyleMenuListing->None], -Cell[57805, 1903, 165, 4, 70, 45, 0, "StyleData", "BookPartNumber", "Printout",ExpressionUUID->"30f0ff66-69e6-47fe-949b-b7861f0542a1"], -Cell[57973, 1909, 177, 4, 70, 57, 0, "StyleData", "BookPartNumber", "DoubleSpacedPrintout",ExpressionUUID->"c8cb744a-6393-4c04-a526-c666a3680bf5"] +Cell[58009, 1905, 165, 4, 70, 45, 0, "StyleData", "BookPartNumber", "Printout",ExpressionUUID->"30f0ff66-69e6-47fe-949b-b7861f0542a1"], +Cell[58177, 1911, 177, 4, 70, 57, 0, "StyleData", "BookPartNumber", "DoubleSpacedPrintout",ExpressionUUID->"c8cb744a-6393-4c04-a526-c666a3680bf5"] }, Open ]], Cell[CellGroupData[{ -Cell[58187, 1918, 553, 15, 70, 32, 0, "StyleData", "BookPartTitle", "All",ExpressionUUID->"822570ff-2de0-4ce0-b959-612709e51210", +Cell[58391, 1920, 553, 15, 70, 32, 0, "StyleData", "BookPartTitle", "All",ExpressionUUID->"822570ff-2de0-4ce0-b959-612709e51210", CounterIncrements->"Part", StyleMenuListing->None], -Cell[58743, 1935, 221, 6, 70, 44, 0, "StyleData", "BookPartTitle", "Printout",ExpressionUUID->"44141339-1fe5-4c91-b1e7-7eaac62d4b3b"], -Cell[58967, 1943, 233, 6, 70, 56, 0, "StyleData", "BookPartTitle", "DoubleSpacedPrintout",ExpressionUUID->"de99d7cf-c40d-4059-9179-aa3ccdc60f88"] +Cell[58947, 1937, 221, 6, 70, 44, 0, "StyleData", "BookPartTitle", "Printout",ExpressionUUID->"44141339-1fe5-4c91-b1e7-7eaac62d4b3b"], +Cell[59171, 1945, 233, 6, 70, 56, 0, "StyleData", "BookPartTitle", "DoubleSpacedPrintout",ExpressionUUID->"de99d7cf-c40d-4059-9179-aa3ccdc60f88"] }, Open ]] }, Open ]] }, Closed]], Cell[CellGroupData[{ -Cell[59261, 1956, 84, 0, 53, "Section",ExpressionUUID->"159f96e0-edbf-48c0-bace-1a392664a84d"], +Cell[59465, 1958, 84, 0, 53, "Section",ExpressionUUID->"159f96e0-edbf-48c0-bace-1a392664a84d"], Cell[CellGroupData[{ -Cell[59370, 1960, 384, 10, 56, 34, 0, "StyleData", "MainmatterGroup", "All",ExpressionUUID->"2a9e3ee6-8dd2-455b-9e53-1e20e731f56d", +Cell[59574, 1962, 384, 10, 56, 34, 0, "StyleData", "MainmatterGroup", "All",ExpressionUUID->"2a9e3ee6-8dd2-455b-9e53-1e20e731f56d", StyleMenuListing->None], -Cell[59757, 1972, 205, 5, 18, 50, 0, "StyleData", "MainmatterGroup", "Presentation",ExpressionUUID->"1584810d-fa9d-4021-b140-be407c30648c"], -Cell[59965, 1979, 176, 4, 18, 46, 0, "StyleData", "MainmatterGroup", "Printout",ExpressionUUID->"7a9f9816-a7bb-465d-a3a5-681796c86df2"], -Cell[60144, 1985, 179, 4, 18, 49, 0, "StyleData", "MainmatterGroup", "PrintoutPro",ExpressionUUID->"9ec97d3a-f261-422f-803f-bb8903c15dd1"] +Cell[59961, 1974, 205, 5, 18, 50, 0, "StyleData", "MainmatterGroup", "Presentation",ExpressionUUID->"1584810d-fa9d-4021-b140-be407c30648c"], +Cell[60169, 1981, 176, 4, 18, 46, 0, "StyleData", "MainmatterGroup", "Printout",ExpressionUUID->"7a9f9816-a7bb-465d-a3a5-681796c86df2"], +Cell[60348, 1987, 179, 4, 18, 49, 0, "StyleData", "MainmatterGroup", "PrintoutPro",ExpressionUUID->"9ec97d3a-f261-422f-803f-bb8903c15dd1"] }, Open ]], Cell[CellGroupData[{ -Cell[60360, 1994, 1335, 31, 87, 26, 0, "StyleData", "Section", "All",ExpressionUUID->"784ff9d1-1dd6-4088-89ef-34d9f853b6d4", +Cell[60564, 1996, 1335, 31, 87, 26, 0, "StyleData", "Section", "All",ExpressionUUID->"784ff9d1-1dd6-4088-89ef-34d9f853b6d4", CounterIncrements->"Section", CounterAssignments->{{"Subsection", 0}, {"Subsubsection", 0}, {"Subsubsubsection", 0}, {"Item1", 0}, {"Item2", 0}, {"Item3", 0}, {"Item1Numbered", 0}, {"Item2Numbered", 0}, {"Item3Numbered", 0}, {"Proof", 0}, {"Theorem", 0}, {"Definition", 0}, {"Exercise", 0}, {"Example", 0}, {"Axiom", 0}, {"Solution", 0}}, MenuCommandKey->"3"], -Cell[61698, 2027, 177, 4, 130, 42, 0, "StyleData", "Section", "Presentation",ExpressionUUID->"8a546f68-e968-482e-8be2-611c6edf5243"], -Cell[61878, 2033, 178, 3, 33, 38, 0, "StyleData", "Section", "Printout",ExpressionUUID->"7ea85bad-1f4c-43ba-b511-2ba12e30a794"], -Cell[62059, 2038, 159, 3, 71, 41, 0, "StyleData", "Section", "PrintoutPro",ExpressionUUID->"d6c8424f-2767-4806-b728-e4692328acc2"] +Cell[61902, 2029, 177, 4, 130, 42, 0, "StyleData", "Section", "Presentation",ExpressionUUID->"8a546f68-e968-482e-8be2-611c6edf5243"], +Cell[62082, 2035, 178, 3, 33, 38, 0, "StyleData", "Section", "Printout",ExpressionUUID->"7ea85bad-1f4c-43ba-b511-2ba12e30a794"], +Cell[62263, 2040, 159, 3, 71, 41, 0, "StyleData", "Section", "PrintoutPro",ExpressionUUID->"d6c8424f-2767-4806-b728-e4692328acc2"] }, Open ]], Cell[CellGroupData[{ -Cell[62255, 2046, 1305, 33, 62, 29, 0, "StyleData", "Subsection", "All",ExpressionUUID->"0e5163eb-4dc4-46bf-a078-7acfc67255eb", +Cell[62459, 2048, 1305, 33, 62, 29, 0, "StyleData", "Subsection", "All",ExpressionUUID->"0e5163eb-4dc4-46bf-a078-7acfc67255eb", CounterIncrements->{"Subsection", "SubsectionHeader", "SubsubsectionHeader", "SubsubsubsectionHeader"}, CounterAssignments->{{"Subsubsection", 0}, {"Subsubsubsection", 0}}, StyleMenuListing->None], -Cell[63563, 2081, 180, 4, 100, 45, 0, "StyleData", "Subsection", "Presentation",ExpressionUUID->"d0108a6e-6e4e-4541-9a9d-c992d75c8f48"], -Cell[63746, 2087, 131, 2, 33, 41, 0, "StyleData", "Subsection", "Printout",ExpressionUUID->"2f8384a9-a61c-419d-be32-35c900860ec5"], -Cell[63880, 2091, 160, 3, 33, 44, 0, "StyleData", "Subsection", "PrintoutPro",ExpressionUUID->"936408e5-21ce-4563-9dbe-5189de109ef6"] +Cell[63767, 2083, 180, 4, 100, 45, 0, "StyleData", "Subsection", "Presentation",ExpressionUUID->"d0108a6e-6e4e-4541-9a9d-c992d75c8f48"], +Cell[63950, 2089, 131, 2, 33, 41, 0, "StyleData", "Subsection", "Printout",ExpressionUUID->"2f8384a9-a61c-419d-be32-35c900860ec5"], +Cell[64084, 2093, 160, 3, 33, 44, 0, "StyleData", "Subsection", "PrintoutPro",ExpressionUUID->"936408e5-21ce-4563-9dbe-5189de109ef6"] }, Open ]], Cell[CellGroupData[{ -Cell[64077, 2099, 1401, 35, 59, 32, 0, "StyleData", "Subsubsection", "All",ExpressionUUID->"8e74be7a-ede6-45cb-b997-55fd7b7f6964", +Cell[64281, 2101, 1401, 35, 59, 32, 0, "StyleData", "Subsubsection", "All",ExpressionUUID->"8e74be7a-ede6-45cb-b997-55fd7b7f6964", CounterIncrements->{"Subsubsection", "SubsubsectionHeader", "SubsubsubsectionHeader"}, CounterAssignments->{{"Subsubsubsection", 0}}, StyleMenuListing->None], -Cell[65481, 2136, 183, 4, 90, 48, 0, "StyleData", "Subsubsection", "Presentation",ExpressionUUID->"53c81521-2899-4038-8df5-952618ce94a7"], -Cell[65667, 2142, 162, 3, 61, 44, 0, "StyleData", "Subsubsection", "Printout",ExpressionUUID->"b3e66c75-d770-4635-90c7-b4eff3f8affb"], -Cell[65832, 2147, 165, 3, 61, 47, 0, "StyleData", "Subsubsection", "PrintoutPro",ExpressionUUID->"2d77a5c2-3ba2-4cae-9382-b79c215cff63"] +Cell[65685, 2138, 183, 4, 90, 48, 0, "StyleData", "Subsubsection", "Presentation",ExpressionUUID->"53c81521-2899-4038-8df5-952618ce94a7"], +Cell[65871, 2144, 162, 3, 61, 44, 0, "StyleData", "Subsubsection", "Printout",ExpressionUUID->"b3e66c75-d770-4635-90c7-b4eff3f8affb"], +Cell[66036, 2149, 165, 3, 61, 47, 0, "StyleData", "Subsubsection", "PrintoutPro",ExpressionUUID->"2d77a5c2-3ba2-4cae-9382-b79c215cff63"] }, Open ]], Cell[CellGroupData[{ -Cell[66034, 2155, 851, 21, 60, 35, 0, "StyleData", "Subsubsubsection", "All",ExpressionUUID->"9de6bf89-947e-41b8-a7cb-df6d18514c22"], -Cell[66888, 2178, 145, 2, 98, 51, 0, "StyleData", "Subsubsubsection", "Presentation",ExpressionUUID->"771bad78-5ee4-4769-ac38-e033f563bfcd"], -Cell[67036, 2182, 155, 1, 60, 100, 1, "StyleData", "Subsubsubsection", "Printout",ExpressionUUID->"1224047e-8525-4cb4-8565-7d964855a2e4"], -Cell[67194, 2185, 142, 2, 47, 50, 0, "StyleData", "Subsubsubsection", "PrintoutPro",ExpressionUUID->"c26565e1-3c68-44ba-8d91-e625df286e2f"] +Cell[66238, 2157, 851, 21, 60, 35, 0, "StyleData", "Subsubsubsection", "All",ExpressionUUID->"9de6bf89-947e-41b8-a7cb-df6d18514c22"], +Cell[67092, 2180, 145, 2, 98, 51, 0, "StyleData", "Subsubsubsection", "Presentation",ExpressionUUID->"771bad78-5ee4-4769-ac38-e033f563bfcd"], +Cell[67240, 2184, 155, 1, 60, 100, 1, "StyleData", "Subsubsubsection", "Printout",ExpressionUUID->"1224047e-8525-4cb4-8565-7d964855a2e4"], +Cell[67398, 2187, 142, 2, 47, 50, 0, "StyleData", "Subsubsubsection", "PrintoutPro",ExpressionUUID->"c26565e1-3c68-44ba-8d91-e625df286e2f"] }, Open ]], Cell[CellGroupData[{ -Cell[67373, 2192, 872, 21, 60, 38, 0, "StyleData", "Subsubsubsubsection", "All",ExpressionUUID->"59475622-b5c8-4dde-8f16-6d6d569a27b1"], -Cell[68248, 2215, 160, 2, 81, 54, 0, "StyleData", "Subsubsubsubsection", "Presentation",ExpressionUUID->"d31e9cef-f6de-4506-9441-414d590d8b6a"], -Cell[68411, 2219, 192, 3, 60, 106, 1, "StyleData", "Subsubsubsubsection", "Printout",ExpressionUUID->"eea17091-aa12-4e10-b7f5-881f69def3d7"], -Cell[68606, 2224, 145, 2, 47, 53, 0, "StyleData", "Subsubsubsubsection", "PrintoutPro",ExpressionUUID->"cde78a06-a999-45d4-bffd-5a2ea526bb3b"] +Cell[67577, 2194, 872, 21, 60, 38, 0, "StyleData", "Subsubsubsubsection", "All",ExpressionUUID->"59475622-b5c8-4dde-8f16-6d6d569a27b1"], +Cell[68452, 2217, 160, 2, 81, 54, 0, "StyleData", "Subsubsubsubsection", "Presentation",ExpressionUUID->"d31e9cef-f6de-4506-9441-414d590d8b6a"], +Cell[68615, 2221, 192, 3, 60, 106, 1, "StyleData", "Subsubsubsubsection", "Printout",ExpressionUUID->"eea17091-aa12-4e10-b7f5-881f69def3d7"], +Cell[68810, 2226, 145, 2, 47, 53, 0, "StyleData", "Subsubsubsubsection", "PrintoutPro",ExpressionUUID->"cde78a06-a999-45d4-bffd-5a2ea526bb3b"] }, Open ]], Cell[CellGroupData[{ -Cell[68788, 2231, 105, 0, 54, "Subsection",ExpressionUUID->"6177d9c6-4cf2-4211-ab60-9092881e6629"], +Cell[68992, 2233, 105, 0, 54, "Subsection",ExpressionUUID->"6177d9c6-4cf2-4211-ab60-9092881e6629"], Cell[CellGroupData[{ -Cell[68918, 2235, 222, 6, 70, 28, 0, "StyleData", "CellLabel", "All",ExpressionUUID->"6c9668ce-d06e-4643-991b-6fa3e228286e", +Cell[69122, 2237, 222, 6, 70, 28, 0, "StyleData", "CellLabel", "All",ExpressionUUID->"6c9668ce-d06e-4643-991b-6fa3e228286e", StyleMenuListing->None], -Cell[69143, 2243, 180, 4, 70, 40, 0, "StyleData", "CellLabel", "Printout",ExpressionUUID->"0b6a4f7a-081a-4b53-965e-88bbc1178fc9"] +Cell[69347, 2245, 180, 4, 70, 40, 0, "StyleData", "CellLabel", "Printout",ExpressionUUID->"0b6a4f7a-081a-4b53-965e-88bbc1178fc9"] }, Open ]], Cell[CellGroupData[{ -Cell[69360, 2252, 241, 6, 70, 28, 0, "StyleData", "TextLabel", "All",ExpressionUUID->"d727a1b2-bd21-4b42-b88b-f14cab336631", +Cell[69564, 2254, 241, 6, 70, 28, 0, "StyleData", "TextLabel", "All",ExpressionUUID->"d727a1b2-bd21-4b42-b88b-f14cab336631", StyleMenuListing->None], -Cell[69604, 2260, 178, 4, 70, 40, 0, "StyleData", "TextLabel", "Printout",ExpressionUUID->"49158c17-43af-4d51-8829-d6e7b4db6892"] +Cell[69808, 2262, 178, 4, 70, 40, 0, "StyleData", "TextLabel", "Printout",ExpressionUUID->"49158c17-43af-4d51-8829-d6e7b4db6892"] }, Open ]], Cell[CellGroupData[{ -Cell[69819, 2269, 192, 4, 70, 31, 0, "StyleData", "SectionLabel", "All",ExpressionUUID->"2d59bceb-159f-47bd-bb38-e890fb2818a3", +Cell[70023, 2271, 192, 4, 70, 31, 0, "StyleData", "SectionLabel", "All",ExpressionUUID->"2d59bceb-159f-47bd-bb38-e890fb2818a3", StyleMenuListing->None], -Cell[70014, 2275, 133, 2, 70, 47, 0, "StyleData", "SectionLabel", "Presentation",ExpressionUUID->"0b55f6d7-27f4-4a16-8d10-1a8b210c6115"], -Cell[70150, 2279, 129, 2, 70, 43, 0, "StyleData", "SectionLabel", "Printout",ExpressionUUID->"e88d160a-ade9-430d-b6a8-a87e38d55a0e"], -Cell[70282, 2283, 141, 2, 70, 55, 0, "StyleData", "SectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"54990fbe-71bc-462b-8e34-67090522c84a"] +Cell[70218, 2277, 133, 2, 70, 47, 0, "StyleData", "SectionLabel", "Presentation",ExpressionUUID->"0b55f6d7-27f4-4a16-8d10-1a8b210c6115"], +Cell[70354, 2281, 129, 2, 70, 43, 0, "StyleData", "SectionLabel", "Printout",ExpressionUUID->"e88d160a-ade9-430d-b6a8-a87e38d55a0e"], +Cell[70486, 2285, 141, 2, 70, 55, 0, "StyleData", "SectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"54990fbe-71bc-462b-8e34-67090522c84a"] }, Open ]], Cell[CellGroupData[{ -Cell[70460, 2290, 195, 4, 70, 34, 0, "StyleData", "SubsectionLabel", "All",ExpressionUUID->"f5682c03-1a44-4a37-99ac-e0f0e9420bb0", +Cell[70664, 2292, 195, 4, 70, 34, 0, "StyleData", "SubsectionLabel", "All",ExpressionUUID->"f5682c03-1a44-4a37-99ac-e0f0e9420bb0", StyleMenuListing->None], -Cell[70658, 2296, 136, 2, 70, 50, 0, "StyleData", "SubsectionLabel", "Presentation",ExpressionUUID->"0cabb47e-09e2-4544-8dff-2cb01017f9e6"], -Cell[70797, 2300, 132, 2, 70, 46, 0, "StyleData", "SubsectionLabel", "Printout",ExpressionUUID->"9c1a0e4f-76f1-4d0c-8324-66fa2a4dd6f1"], -Cell[70932, 2304, 144, 2, 70, 58, 0, "StyleData", "SubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"cd3c4f25-0471-4b39-a4d2-9bcaf4e28714"] +Cell[70862, 2298, 136, 2, 70, 50, 0, "StyleData", "SubsectionLabel", "Presentation",ExpressionUUID->"0cabb47e-09e2-4544-8dff-2cb01017f9e6"], +Cell[71001, 2302, 132, 2, 70, 46, 0, "StyleData", "SubsectionLabel", "Printout",ExpressionUUID->"9c1a0e4f-76f1-4d0c-8324-66fa2a4dd6f1"], +Cell[71136, 2306, 144, 2, 70, 58, 0, "StyleData", "SubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"cd3c4f25-0471-4b39-a4d2-9bcaf4e28714"] }, Open ]], Cell[CellGroupData[{ -Cell[71113, 2311, 198, 4, 70, 37, 0, "StyleData", "SubsubsectionLabel", "All",ExpressionUUID->"f48fb7d2-af4b-47b5-a746-ab7dda6fce31", +Cell[71317, 2313, 198, 4, 70, 37, 0, "StyleData", "SubsubsectionLabel", "All",ExpressionUUID->"f48fb7d2-af4b-47b5-a746-ab7dda6fce31", StyleMenuListing->None], -Cell[71314, 2317, 139, 2, 70, 53, 0, "StyleData", "SubsubsectionLabel", "Presentation",ExpressionUUID->"b6fd5231-33c6-44db-8f82-231ee78c6281"], -Cell[71456, 2321, 135, 2, 70, 49, 0, "StyleData", "SubsubsectionLabel", "Printout",ExpressionUUID->"9a302100-9435-44e8-8db0-1dd21eb41e8a"], -Cell[71594, 2325, 147, 2, 70, 61, 0, "StyleData", "SubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"c1728faf-5b66-4034-9b6d-84d0496a121d"] +Cell[71518, 2319, 139, 2, 70, 53, 0, "StyleData", "SubsubsectionLabel", "Presentation",ExpressionUUID->"b6fd5231-33c6-44db-8f82-231ee78c6281"], +Cell[71660, 2323, 135, 2, 70, 49, 0, "StyleData", "SubsubsectionLabel", "Printout",ExpressionUUID->"9a302100-9435-44e8-8db0-1dd21eb41e8a"], +Cell[71798, 2327, 147, 2, 70, 61, 0, "StyleData", "SubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"c1728faf-5b66-4034-9b6d-84d0496a121d"] }, Open ]], Cell[CellGroupData[{ -Cell[71778, 2332, 191, 3, 70, 40, 0, "StyleData", "SubsubsubsectionLabel", "All",ExpressionUUID->"e7c5c070-f4db-440d-b558-2a3e4046279c", +Cell[71982, 2334, 191, 3, 70, 40, 0, "StyleData", "SubsubsubsectionLabel", "All",ExpressionUUID->"e7c5c070-f4db-440d-b558-2a3e4046279c", StyleMenuListing->None], -Cell[71972, 2337, 111, 0, 70, 56, 0, "StyleData", "SubsubsubsectionLabel", "Presentation",ExpressionUUID->"25652777-c522-4cd5-a563-52a55bd3bbd1"], -Cell[72086, 2339, 107, 0, 70, 52, 0, "StyleData", "SubsubsubsectionLabel", "Printout",ExpressionUUID->"c4f60fed-d1ec-4011-bf1b-cf70097a3f62"], -Cell[72196, 2341, 119, 0, 70, 64, 0, "StyleData", "SubsubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"7c442220-696a-455f-a7aa-5f663ef8cb51"] +Cell[72176, 2339, 111, 0, 70, 56, 0, "StyleData", "SubsubsubsectionLabel", "Presentation",ExpressionUUID->"25652777-c522-4cd5-a563-52a55bd3bbd1"], +Cell[72290, 2341, 107, 0, 70, 52, 0, "StyleData", "SubsubsubsectionLabel", "Printout",ExpressionUUID->"c4f60fed-d1ec-4011-bf1b-cf70097a3f62"], +Cell[72400, 2343, 119, 0, 70, 64, 0, "StyleData", "SubsubsubsectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"7c442220-696a-455f-a7aa-5f663ef8cb51"] }, Open ]], Cell[CellGroupData[{ -Cell[72352, 2346, 352, 8, 70, 39, 0, "StyleData", "SubsubsubsectionText", "All",ExpressionUUID->"2cbdf65d-5977-40a3-98be-32b8a801703f", +Cell[72556, 2348, 352, 8, 70, 39, 0, "StyleData", "SubsubsubsectionText", "All",ExpressionUUID->"2cbdf65d-5977-40a3-98be-32b8a801703f", CounterIncrements->{"SubsubsubsectionText", "SubsubsubsectionHeader"}, StyleMenuListing->None], -Cell[72707, 2356, 159, 2, 70, 55, 0, "StyleData", "SubsubsubsectionText", "Presentation",ExpressionUUID->"c4fe2beb-e1bc-4c3c-934f-7bd9866f2a9b"], -Cell[72869, 2360, 154, 2, 70, 51, 0, "StyleData", "SubsubsubsectionText", "Printout",ExpressionUUID->"ceeabee0-a746-46bd-9e0b-4dd029b05919"], -Cell[73026, 2364, 166, 2, 70, 63, 0, "StyleData", "SubsubsubsectionText", "DoubleSpacedPrintout",ExpressionUUID->"58cdeb23-d4f8-41d1-8d36-9d2fab3ae7d2"] +Cell[72911, 2358, 159, 2, 70, 55, 0, "StyleData", "SubsubsubsectionText", "Presentation",ExpressionUUID->"c4fe2beb-e1bc-4c3c-934f-7bd9866f2a9b"], +Cell[73073, 2362, 154, 2, 70, 51, 0, "StyleData", "SubsubsubsectionText", "Printout",ExpressionUUID->"ceeabee0-a746-46bd-9e0b-4dd029b05919"], +Cell[73230, 2366, 166, 2, 70, 63, 0, "StyleData", "SubsubsubsectionText", "DoubleSpacedPrintout",ExpressionUUID->"58cdeb23-d4f8-41d1-8d36-9d2fab3ae7d2"] }, Open ]] }, Closed]], Cell[CellGroupData[{ -Cell[73241, 2372, 95, 0, 38, "Subsection",ExpressionUUID->"52cd5b81-7e8b-4220-8e78-fadc3c085c56"], +Cell[73445, 2374, 95, 0, 38, "Subsection",ExpressionUUID->"52cd5b81-7e8b-4220-8e78-fadc3c085c56"], Cell[CellGroupData[{ -Cell[73361, 2376, 402, 10, 85, 29, 0, "StyleData", "SectionAlt", "All",ExpressionUUID->"9fcae088-3c9d-4991-8360-226ccced1bdb", +Cell[73565, 2378, 402, 10, 85, 29, 0, "StyleData", "SectionAlt", "All",ExpressionUUID->"9fcae088-3c9d-4991-8360-226ccced1bdb", StyleMenuListing->None], -Cell[73766, 2388, 201, 5, 120, 45, 0, "StyleData", "SectionAlt", "Presentation",ExpressionUUID->"fd1c2d74-1cf8-4c86-ab8b-514101abfbaf"], -Cell[73970, 2395, 195, 5, 77, 41, 0, "StyleData", "SectionAlt", "Printout",ExpressionUUID->"5764c399-897a-4b8d-8369-1f951dcec56b"], -Cell[74168, 2402, 207, 5, 77, 53, 0, "StyleData", "SectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"519f5e6c-650b-4284-b3ec-8763eb086689"] +Cell[73970, 2390, 201, 5, 120, 45, 0, "StyleData", "SectionAlt", "Presentation",ExpressionUUID->"fd1c2d74-1cf8-4c86-ab8b-514101abfbaf"], +Cell[74174, 2397, 195, 5, 77, 41, 0, "StyleData", "SectionAlt", "Printout",ExpressionUUID->"5764c399-897a-4b8d-8369-1f951dcec56b"], +Cell[74372, 2404, 207, 5, 77, 53, 0, "StyleData", "SectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"519f5e6c-650b-4284-b3ec-8763eb086689"] }, Open ]], Cell[CellGroupData[{ -Cell[74412, 2412, 509, 13, 73, 32, 0, "StyleData", "SubsectionAlt", "All",ExpressionUUID->"dc44ca90-3214-4ffd-912a-1209a53c5229", +Cell[74616, 2414, 509, 13, 73, 32, 0, "StyleData", "SubsectionAlt", "All",ExpressionUUID->"dc44ca90-3214-4ffd-912a-1209a53c5229", StyleMenuListing->None], -Cell[74924, 2427, 183, 4, 95, 48, 0, "StyleData", "SubsectionAlt", "Presentation",ExpressionUUID->"3c7524c3-eb64-48c1-a3ae-df83aad15b88"], -Cell[75110, 2433, 177, 4, 65, 44, 0, "StyleData", "SubsectionAlt", "Printout",ExpressionUUID->"1b9855cf-d2c0-4453-ae33-9fdd8b95c9c5"], -Cell[75290, 2439, 189, 4, 65, 56, 0, "StyleData", "SubsectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"25a5624d-c2b2-4b25-b243-48f4f8c7e470"] +Cell[75128, 2429, 183, 4, 95, 48, 0, "StyleData", "SubsectionAlt", "Presentation",ExpressionUUID->"3c7524c3-eb64-48c1-a3ae-df83aad15b88"], +Cell[75314, 2435, 177, 4, 65, 44, 0, "StyleData", "SubsectionAlt", "Printout",ExpressionUUID->"1b9855cf-d2c0-4453-ae33-9fdd8b95c9c5"], +Cell[75494, 2441, 189, 4, 65, 56, 0, "StyleData", "SubsectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"25a5624d-c2b2-4b25-b243-48f4f8c7e470"] }, Open ]], Cell[CellGroupData[{ -Cell[75516, 2448, 477, 11, 65, 35, 0, "StyleData", "SubsubsectionAlt", "All",ExpressionUUID->"f88f6244-2af2-48f8-852e-1d1ca6c40f72", +Cell[75720, 2450, 477, 11, 65, 35, 0, "StyleData", "SubsubsectionAlt", "All",ExpressionUUID->"f88f6244-2af2-48f8-852e-1d1ca6c40f72", StyleMenuListing->None], -Cell[75996, 2461, 186, 4, 90, 51, 0, "StyleData", "SubsubsectionAlt", "Presentation",ExpressionUUID->"96ab832f-3704-4142-8440-7f8c307bc28f"], -Cell[76185, 2467, 180, 4, 58, 47, 0, "StyleData", "SubsubsectionAlt", "Printout",ExpressionUUID->"9ecd57de-32e1-4ff4-900e-bb810838a6b4"], -Cell[76368, 2473, 192, 4, 58, 59, 0, "StyleData", "SubsubsectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"d78fce65-51a4-47df-834c-28f6ae8d0629"] +Cell[76200, 2463, 186, 4, 90, 51, 0, "StyleData", "SubsubsectionAlt", "Presentation",ExpressionUUID->"96ab832f-3704-4142-8440-7f8c307bc28f"], +Cell[76389, 2469, 180, 4, 58, 47, 0, "StyleData", "SubsubsectionAlt", "Printout",ExpressionUUID->"9ecd57de-32e1-4ff4-900e-bb810838a6b4"], +Cell[76572, 2475, 192, 4, 58, 59, 0, "StyleData", "SubsubsectionAlt", "DoubleSpacedPrintout",ExpressionUUID->"d78fce65-51a4-47df-834c-28f6ae8d0629"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[76609, 2483, 86, 0, 54, "Subsection",ExpressionUUID->"c0256f84-845a-433b-9e96-ee2d78fdf6c5"], +Cell[76813, 2485, 86, 0, 54, "Subsection",ExpressionUUID->"c0256f84-845a-433b-9e96-ee2d78fdf6c5"], Cell[CellGroupData[{ -Cell[76720, 2487, 850, 23, 58, 23, 0, "StyleData", "Text", "All",ExpressionUUID->"5631fe99-5872-409f-a1c5-824db26d901b", +Cell[76924, 2489, 850, 23, 58, 23, 0, "StyleData", "Text", "All",ExpressionUUID->"5631fe99-5872-409f-a1c5-824db26d901b", CounterIncrements->"Text", CounterAssignments->{{"Item1Numbered", 0}}, MenuCommandKey->"7"], -Cell[77573, 2512, 165, 3, 46, 39, 0, "StyleData", "Text", "Presentation",ExpressionUUID->"ee650c18-73ed-418f-ba18-bb68b5717f68"], -Cell[77741, 2517, 201, 4, 33, 35, 0, "StyleData", "Text", "Printout",ExpressionUUID->"8032a7f3-d2ae-4d06-be94-9866b1334c8a"], -Cell[77945, 2523, 140, 2, 53, 38, 0, "StyleData", "Text", "PrintoutPro",ExpressionUUID->"2b447890-fc8b-4254-93b4-20e11e4daeda"] +Cell[77777, 2514, 165, 3, 46, 39, 0, "StyleData", "Text", "Presentation",ExpressionUUID->"ee650c18-73ed-418f-ba18-bb68b5717f68"], +Cell[77945, 2519, 201, 4, 33, 35, 0, "StyleData", "Text", "Printout",ExpressionUUID->"8032a7f3-d2ae-4d06-be94-9866b1334c8a"], +Cell[78149, 2525, 140, 2, 53, 38, 0, "StyleData", "Text", "PrintoutPro",ExpressionUUID->"2b447890-fc8b-4254-93b4-20e11e4daeda"] }, Open ]], -Cell[78100, 2528, 148, 2, 58, 62, 0, "StyleData", "Cite", "All",ExpressionUUID->"40fbcd34-e7a4-4d55-9dc6-8e805aa14a18", +Cell[78304, 2530, 148, 2, 58, 62, 0, "StyleData", "Cite", "All",ExpressionUUID->"40fbcd34-e7a4-4d55-9dc6-8e805aa14a18", CounterIncrements->"Cite"], Cell[CellGroupData[{ -Cell[78273, 2534, 468, 12, 37, 31, 0, "StyleData", "TextNoIndent", "All",ExpressionUUID->"2024a7ba-5578-4ee3-a53e-6347db9c9beb", +Cell[78477, 2536, 468, 12, 37, 31, 0, "StyleData", "TextNoIndent", "All",ExpressionUUID->"2024a7ba-5578-4ee3-a53e-6347db9c9beb", CounterIncrements->"Text", CounterAssignments->{{"Item1Numbered", 0}}, StyleMenuListing->None], -Cell[78744, 2548, 151, 2, 46, 47, 0, "StyleData", "TextNoIndent", "Presentation",ExpressionUUID->"8f216375-489a-4e4b-9858-86a51e9900fb"], -Cell[78898, 2552, 146, 2, 32, 43, 0, "StyleData", "TextNoIndent", "Printout",ExpressionUUID->"c0a88c95-9a4b-443c-be2f-3549abe106cf"], -Cell[79047, 2556, 205, 4, 32, 55, 0, "StyleData", "TextNoIndent", "DoubleSpacedPrintout",ExpressionUUID->"1b74accb-876f-4674-be1a-75a66ab93c42", +Cell[78948, 2550, 151, 2, 46, 47, 0, "StyleData", "TextNoIndent", "Presentation",ExpressionUUID->"8f216375-489a-4e4b-9858-86a51e9900fb"], +Cell[79102, 2554, 146, 2, 32, 43, 0, "StyleData", "TextNoIndent", "Printout",ExpressionUUID->"c0a88c95-9a4b-443c-be2f-3549abe106cf"], +Cell[79251, 2558, 205, 4, 32, 55, 0, "StyleData", "TextNoIndent", "DoubleSpacedPrintout",ExpressionUUID->"1b74accb-876f-4674-be1a-75a66ab93c42", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[79289, 2565, 439, 10, 37, 35, 0, "StyleData", "TextContinuation", "All",ExpressionUUID->"29b3b699-076f-45e0-a154-fd4f53305277", +Cell[79493, 2567, 439, 10, 37, 35, 0, "StyleData", "TextContinuation", "All",ExpressionUUID->"29b3b699-076f-45e0-a154-fd4f53305277", CounterIncrements->"Text", CounterAssignments->{{"Item1Numbered", 0}}, StyleMenuListing->None], -Cell[79731, 2577, 155, 2, 46, 51, 0, "StyleData", "TextContinuation", "Presentation",ExpressionUUID->"e2f20051-2931-4460-9c60-51c16d57c16b"], -Cell[79889, 2581, 150, 2, 32, 47, 0, "StyleData", "TextContinuation", "Printout",ExpressionUUID->"cefa87ed-9826-4af1-beca-7f0c4a17b43b"], -Cell[80042, 2585, 184, 3, 32, 59, 0, "StyleData", "TextContinuation", "DoubleSpacedPrintout",ExpressionUUID->"f0055803-6c5d-4178-99c0-6c982d2c240e"] +Cell[79935, 2579, 155, 2, 46, 51, 0, "StyleData", "TextContinuation", "Presentation",ExpressionUUID->"e2f20051-2931-4460-9c60-51c16d57c16b"], +Cell[80093, 2583, 150, 2, 32, 47, 0, "StyleData", "TextContinuation", "Printout",ExpressionUUID->"cefa87ed-9826-4af1-beca-7f0c4a17b43b"], +Cell[80246, 2587, 184, 3, 32, 59, 0, "StyleData", "TextContinuation", "DoubleSpacedPrintout",ExpressionUUID->"f0055803-6c5d-4178-99c0-6c982d2c240e"] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[80287, 2595, 88, 0, 67, "Section",ExpressionUUID->"4fe1b983-43bc-4735-8508-0c47d8e25f1d"], +Cell[80491, 2597, 88, 0, 67, "Section",ExpressionUUID->"4fe1b983-43bc-4735-8508-0c47d8e25f1d"], Cell[CellGroupData[{ -Cell[80400, 2599, 119, 2, 70, "Subsection",ExpressionUUID->"22be86fc-482d-4390-ac65-668dcf76d455"], +Cell[80604, 2601, 119, 2, 70, "Subsection",ExpressionUUID->"22be86fc-482d-4390-ac65-668dcf76d455"], Cell[CellGroupData[{ -Cell[80544, 2605, 843, 20, 70, 24, 0, "StyleData", "Item1", "All",ExpressionUUID->"f028423b-dfd5-42e4-aadb-84817317b432", +Cell[80748, 2607, 843, 20, 70, 24, 0, "StyleData", "Item1", "All",ExpressionUUID->"f028423b-dfd5-42e4-aadb-84817317b432", CounterIncrements->"Item1", CounterAssignments->{{"Item2Numbered", 0}, {"Item3Numbered", 0}}, MenuCommandKey->"-"], -Cell[81390, 2627, 169, 3, 70, 40, 0, "StyleData", "Item1", "Presentation",ExpressionUUID->"99a244e6-290f-4c9b-9314-3d04256013ca", +Cell[81594, 2629, 169, 3, 70, 40, 0, "StyleData", "Item1", "Presentation",ExpressionUUID->"99a244e6-290f-4c9b-9314-3d04256013ca", StyleMenuListing->None], -Cell[81562, 2632, 159, 2, 70, 76, 0, "StyleData", "Item1", "Printout",ExpressionUUID->"a3876705-ca6e-4559-b257-3eeaa668f4b3", +Cell[81766, 2634, 159, 2, 70, 76, 0, "StyleData", "Item1", "Printout",ExpressionUUID->"a3876705-ca6e-4559-b257-3eeaa668f4b3", StyleMenuListing->None], -Cell[81724, 2636, 161, 2, 70, 84, 1, "StyleData", "Item1", "PrintoutKindle",ExpressionUUID->"06e0a8fd-11b3-4ce8-9adb-6429f8537163"] +Cell[81928, 2638, 161, 2, 70, 84, 1, "StyleData", "Item1", "PrintoutKindle",ExpressionUUID->"06e0a8fd-11b3-4ce8-9adb-6429f8537163"] }, Open ]], Cell[CellGroupData[{ -Cell[81922, 2643, 770, 19, 70, 24, 0, "StyleData", "Item2", "All",ExpressionUUID->"8cebf687-1985-41ea-b635-eecdf034ec99", +Cell[82126, 2645, 770, 19, 70, 24, 0, "StyleData", "Item2", "All",ExpressionUUID->"8cebf687-1985-41ea-b635-eecdf034ec99", CounterIncrements->"Item2", CounterAssignments->{{"Item3Numbered", 0}}], -Cell[82695, 2664, 169, 3, 70, 40, 0, "StyleData", "Item2", "Presentation",ExpressionUUID->"3289b4e7-b6d0-43f6-84ef-b13222bf0ca7", +Cell[82899, 2666, 169, 3, 70, 40, 0, "StyleData", "Item2", "Presentation",ExpressionUUID->"3289b4e7-b6d0-43f6-84ef-b13222bf0ca7", StyleMenuListing->None], -Cell[82867, 2669, 159, 2, 70, 76, 0, "StyleData", "Item2", "Printout",ExpressionUUID->"a82ef347-7832-48b5-9ac4-c117ad66fbe2", +Cell[83071, 2671, 159, 2, 70, 76, 0, "StyleData", "Item2", "Printout",ExpressionUUID->"a82ef347-7832-48b5-9ac4-c117ad66fbe2", StyleMenuListing->None], -Cell[83029, 2673, 161, 2, 70, 84, 1, "StyleData", "Item2", "PrintoutKindle",ExpressionUUID->"f9dcbd86-520f-4db0-983c-0938c66dec26"] +Cell[83233, 2675, 161, 2, 70, 84, 1, "StyleData", "Item2", "PrintoutKindle",ExpressionUUID->"f9dcbd86-520f-4db0-983c-0938c66dec26"] }, Open ]], Cell[CellGroupData[{ -Cell[83227, 2680, 719, 17, 70, 24, 0, "StyleData", "Item3", "All",ExpressionUUID->"429db6a2-211d-4fcb-afa3-9ce61c0536b3", +Cell[83431, 2682, 719, 17, 70, 24, 0, "StyleData", "Item3", "All",ExpressionUUID->"429db6a2-211d-4fcb-afa3-9ce61c0536b3", CounterIncrements->"Item3"], -Cell[83949, 2699, 169, 3, 70, 40, 0, "StyleData", "Item3", "Presentation",ExpressionUUID->"c98ca6c1-2ecf-4340-9143-00d698ea8baa", +Cell[84153, 2701, 169, 3, 70, 40, 0, "StyleData", "Item3", "Presentation",ExpressionUUID->"c98ca6c1-2ecf-4340-9143-00d698ea8baa", StyleMenuListing->None], -Cell[84121, 2704, 159, 2, 70, 76, 0, "StyleData", "Item3", "Printout",ExpressionUUID->"7337ca5e-db7e-43d9-9cf1-cb7c2389643e", +Cell[84325, 2706, 159, 2, 70, 76, 0, "StyleData", "Item3", "Printout",ExpressionUUID->"7337ca5e-db7e-43d9-9cf1-cb7c2389643e", StyleMenuListing->None], -Cell[84283, 2708, 161, 2, 70, 84, 1, "StyleData", "Item3", "PrintoutKindle",ExpressionUUID->"93bf84ba-d686-43db-a0f2-b95741eb4033"] +Cell[84487, 2710, 161, 2, 70, 84, 1, "StyleData", "Item3", "PrintoutKindle",ExpressionUUID->"93bf84ba-d686-43db-a0f2-b95741eb4033"] }, Open ]], Cell[CellGroupData[{ -Cell[84481, 2715, 266, 6, 70, 29, 0, "StyleData", "Item1Label", "All",ExpressionUUID->"74174845-5fed-4875-aaa3-29053530f71d", +Cell[84685, 2717, 266, 6, 70, 29, 0, "StyleData", "Item1Label", "All",ExpressionUUID->"74174845-5fed-4875-aaa3-29053530f71d", StyleMenuListing->None], -Cell[84750, 2723, 168, 3, 70, 45, 0, "StyleData", "Item1Label", "Presentation",ExpressionUUID->"cd849882-921d-4ddf-95f6-6eb9b8d42698", +Cell[84954, 2725, 168, 3, 70, 45, 0, "StyleData", "Item1Label", "Presentation",ExpressionUUID->"cd849882-921d-4ddf-95f6-6eb9b8d42698", StyleMenuListing->None], -Cell[84921, 2728, 164, 3, 70, 41, 0, "StyleData", "Item1Label", "Printout",ExpressionUUID->"7a98fc28-7e2b-40b6-8ded-7d5ee67551a5", +Cell[85125, 2730, 164, 3, 70, 41, 0, "StyleData", "Item1Label", "Printout",ExpressionUUID->"7a98fc28-7e2b-40b6-8ded-7d5ee67551a5", StyleMenuListing->None], -Cell[85088, 2733, 176, 3, 70, 53, 0, "StyleData", "Item1Label", "DoubleSpacedPrintout",ExpressionUUID->"51521fa4-8c7f-4ebf-ad26-5d0a3c01189c", +Cell[85292, 2735, 176, 3, 70, 53, 0, "StyleData", "Item1Label", "DoubleSpacedPrintout",ExpressionUUID->"51521fa4-8c7f-4ebf-ad26-5d0a3c01189c", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[85301, 2741, 266, 6, 70, 29, 0, "StyleData", "Item2Label", "All",ExpressionUUID->"7b86b424-e950-49d0-8b75-33f24ba997cc", +Cell[85505, 2743, 266, 6, 70, 29, 0, "StyleData", "Item2Label", "All",ExpressionUUID->"7b86b424-e950-49d0-8b75-33f24ba997cc", StyleMenuListing->None], -Cell[85570, 2749, 168, 3, 70, 45, 0, "StyleData", "Item2Label", "Presentation",ExpressionUUID->"80ac60c3-bb58-4089-9a0a-63db76f51a40", +Cell[85774, 2751, 168, 3, 70, 45, 0, "StyleData", "Item2Label", "Presentation",ExpressionUUID->"80ac60c3-bb58-4089-9a0a-63db76f51a40", StyleMenuListing->None], -Cell[85741, 2754, 152, 3, 70, 41, 0, "StyleData", "Item2Label", "Printout",ExpressionUUID->"796ba8c4-92b6-42cc-9acf-b70afbe31611", +Cell[85945, 2756, 152, 3, 70, 41, 0, "StyleData", "Item2Label", "Printout",ExpressionUUID->"796ba8c4-92b6-42cc-9acf-b70afbe31611", StyleMenuListing->None], -Cell[85896, 2759, 164, 3, 70, 53, 0, "StyleData", "Item2Label", "DoubleSpacedPrintout",ExpressionUUID->"eff26264-adbb-4019-8aa3-cc096aa32d65", +Cell[86100, 2761, 164, 3, 70, 53, 0, "StyleData", "Item2Label", "DoubleSpacedPrintout",ExpressionUUID->"eff26264-adbb-4019-8aa3-cc096aa32d65", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[86097, 2767, 266, 6, 70, 29, 0, "StyleData", "Item3Label", "All",ExpressionUUID->"ca4565c2-73a0-482f-8216-ae7e3c8d25a1", +Cell[86301, 2769, 266, 6, 70, 29, 0, "StyleData", "Item3Label", "All",ExpressionUUID->"ca4565c2-73a0-482f-8216-ae7e3c8d25a1", StyleMenuListing->None], -Cell[86366, 2775, 168, 3, 70, 45, 0, "StyleData", "Item3Label", "Presentation",ExpressionUUID->"10f46c63-3eaa-43d7-8935-6cc8c89c4d24", +Cell[86570, 2777, 168, 3, 70, 45, 0, "StyleData", "Item3Label", "Presentation",ExpressionUUID->"10f46c63-3eaa-43d7-8935-6cc8c89c4d24", StyleMenuListing->None], -Cell[86537, 2780, 152, 3, 70, 41, 0, "StyleData", "Item3Label", "Printout",ExpressionUUID->"97b183c3-5d11-4d34-af3b-0a5bd6828099", +Cell[86741, 2782, 152, 3, 70, 41, 0, "StyleData", "Item3Label", "Printout",ExpressionUUID->"97b183c3-5d11-4d34-af3b-0a5bd6828099", StyleMenuListing->None], -Cell[86692, 2785, 164, 3, 70, 53, 0, "StyleData", "Item3Label", "DoubleSpacedPrintout",ExpressionUUID->"22ae8cee-5fa7-4981-aa35-59ea703ad9de", +Cell[86896, 2787, 164, 3, 70, 53, 0, "StyleData", "Item3Label", "DoubleSpacedPrintout",ExpressionUUID->"22ae8cee-5fa7-4981-aa35-59ea703ad9de", StyleMenuListing->None] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[86905, 2794, 100, 0, 70, "Subsection",ExpressionUUID->"5e7830c2-11b9-45a9-ac24-2ed45064a2ba"], +Cell[87109, 2796, 100, 0, 70, "Subsection",ExpressionUUID->"5e7830c2-11b9-45a9-ac24-2ed45064a2ba"], Cell[CellGroupData[{ -Cell[87030, 2798, 524, 14, 70, 35, 0, "StyleData", "Item1NumberedNew", "All",ExpressionUUID->"51f592d1-fdae-4175-a055-fa2f600ef523", +Cell[87234, 2800, 524, 14, 70, 35, 0, "StyleData", "Item1NumberedNew", "All",ExpressionUUID->"51f592d1-fdae-4175-a055-fa2f600ef523", CounterIncrements->"Item1Numbered", CounterAssignments->{{"Item1Numbered", 0}}, StyleMenuListing->None], -Cell[87557, 2814, 243, 6, 70, 47, 0, "StyleData", "Item1NumberedNew", "Printout",ExpressionUUID->"862ca3bb-213c-42f4-8cff-1cf773952591", +Cell[87761, 2816, 243, 6, 70, 47, 0, "StyleData", "Item1NumberedNew", "Printout",ExpressionUUID->"862ca3bb-213c-42f4-8cff-1cf773952591", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[87837, 2825, 524, 14, 70, 35, 0, "StyleData", "Item2NumberedNew", "All",ExpressionUUID->"5e84f1ad-6b62-4398-88be-e44f354cd45d", +Cell[88041, 2827, 524, 14, 70, 35, 0, "StyleData", "Item2NumberedNew", "All",ExpressionUUID->"5e84f1ad-6b62-4398-88be-e44f354cd45d", CounterIncrements->"Item2Numbered", CounterAssignments->{{"Item2Numbered", 0}}, StyleMenuListing->None], -Cell[88364, 2841, 244, 6, 70, 47, 0, "StyleData", "Item2NumberedNew", "Printout",ExpressionUUID->"89beed9b-a964-4944-801e-c67fbc719954", +Cell[88568, 2843, 244, 6, 70, 47, 0, "StyleData", "Item2NumberedNew", "Printout",ExpressionUUID->"89beed9b-a964-4944-801e-c67fbc719954", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[88645, 2852, 524, 14, 70, 35, 0, "StyleData", "Item3NumberedNew", "All",ExpressionUUID->"06e6aea3-d0eb-427b-aca9-4343d616cae6", +Cell[88849, 2854, 524, 14, 70, 35, 0, "StyleData", "Item3NumberedNew", "All",ExpressionUUID->"06e6aea3-d0eb-427b-aca9-4343d616cae6", CounterIncrements->"Item3Numbered", CounterAssignments->{{"Item3Numbered", 0}}, StyleMenuListing->None], -Cell[89172, 2868, 244, 6, 70, 47, 0, "StyleData", "Item3NumberedNew", "Printout",ExpressionUUID->"fa1abb9a-8483-4aaa-b526-89b1556354b0", +Cell[89376, 2870, 244, 6, 70, 47, 0, "StyleData", "Item3NumberedNew", "Printout",ExpressionUUID->"fa1abb9a-8483-4aaa-b526-89b1556354b0", StyleMenuListing->None] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[89465, 2880, 119, 2, 70, "Subsection",ExpressionUUID->"26c7d5e9-cffa-4524-abd6-3e159975d8a0"], +Cell[89669, 2882, 119, 2, 70, "Subsection",ExpressionUUID->"26c7d5e9-cffa-4524-abd6-3e159975d8a0"], Cell[CellGroupData[{ -Cell[89609, 2886, 935, 23, 70, 32, 0, "StyleData", "Item1Numbered", "All",ExpressionUUID->"4cbcef1e-4a97-4d1f-ac12-65b0871ca8fc", +Cell[89813, 2888, 935, 23, 70, 32, 0, "StyleData", "Item1Numbered", "All",ExpressionUUID->"4cbcef1e-4a97-4d1f-ac12-65b0871ca8fc", CounterIncrements->"Item1Numbered", CounterAssignments->{{"Item2Numbered", 0}, {"Item3Numbered", 0}}, MenuCommandKey->"=", StyleMenuListing->None], -Cell[90547, 2911, 177, 3, 70, 48, 0, "StyleData", "Item1Numbered", "Presentation",ExpressionUUID->"3598134e-5fb3-40f4-bd83-fd79e5bd2bee", +Cell[90751, 2913, 177, 3, 70, 48, 0, "StyleData", "Item1Numbered", "Presentation",ExpressionUUID->"3598134e-5fb3-40f4-bd83-fd79e5bd2bee", StyleMenuListing->None], -Cell[90727, 2916, 171, 3, 70, 44, 0, "StyleData", "Item1Numbered", "Printout",ExpressionUUID->"416e85e2-5ead-4e27-a230-4fb3e3c772e0", +Cell[90931, 2918, 171, 3, 70, 44, 0, "StyleData", "Item1Numbered", "Printout",ExpressionUUID->"416e85e2-5ead-4e27-a230-4fb3e3c772e0", StyleMenuListing->None], -Cell[90901, 2921, 180, 3, 70, 56, 0, "StyleData", "Item1Numbered", "DoubleSpacedPrintout",ExpressionUUID->"30422e03-6211-4081-a178-5ec32308fb78"] +Cell[91105, 2923, 180, 3, 70, 56, 0, "StyleData", "Item1Numbered", "DoubleSpacedPrintout",ExpressionUUID->"30422e03-6211-4081-a178-5ec32308fb78"] }, Open ]], Cell[CellGroupData[{ -Cell[91118, 2929, 995, 24, 70, 32, 0, "StyleData", "Item2Numbered", "All",ExpressionUUID->"7de99131-8116-4a00-ae78-b2174e265c21", +Cell[91322, 2931, 995, 24, 70, 32, 0, "StyleData", "Item2Numbered", "All",ExpressionUUID->"7de99131-8116-4a00-ae78-b2174e265c21", CounterIncrements->"Item2Numbered", CounterAssignments->{{"Item3Numbered", 0}}, StyleMenuListing->None], -Cell[92116, 2955, 177, 3, 70, 48, 0, "StyleData", "Item2Numbered", "Presentation",ExpressionUUID->"3ef5cb0f-0079-4aee-a1da-61273fc7b0fd", +Cell[92320, 2957, 177, 3, 70, 48, 0, "StyleData", "Item2Numbered", "Presentation",ExpressionUUID->"3ef5cb0f-0079-4aee-a1da-61273fc7b0fd", StyleMenuListing->None], -Cell[92296, 2960, 172, 3, 70, 44, 0, "StyleData", "Item2Numbered", "Printout",ExpressionUUID->"8372de34-6972-4e98-9752-f899574f328c", +Cell[92500, 2962, 172, 3, 70, 44, 0, "StyleData", "Item2Numbered", "Printout",ExpressionUUID->"8372de34-6972-4e98-9752-f899574f328c", StyleMenuListing->None], -Cell[92471, 2965, 181, 3, 70, 56, 0, "StyleData", "Item2Numbered", "DoubleSpacedPrintout",ExpressionUUID->"c5279427-13e4-4d7f-b613-e78e0c21b4f0"] +Cell[92675, 2967, 181, 3, 70, 56, 0, "StyleData", "Item2Numbered", "DoubleSpacedPrintout",ExpressionUUID->"c5279427-13e4-4d7f-b613-e78e0c21b4f0"] }, Open ]], Cell[CellGroupData[{ -Cell[92689, 2973, 918, 23, 70, 32, 0, "StyleData", "Item3Numbered", "All",ExpressionUUID->"e8d073c4-66f4-4d6f-9a77-469d31769ddb", +Cell[92893, 2975, 918, 23, 70, 32, 0, "StyleData", "Item3Numbered", "All",ExpressionUUID->"e8d073c4-66f4-4d6f-9a77-469d31769ddb", CounterIncrements->"Item3Numbered", StyleMenuListing->None], -Cell[93610, 2998, 177, 3, 70, 48, 0, "StyleData", "Item3Numbered", "Presentation",ExpressionUUID->"8064d455-c15b-4df2-b8db-a2e7788e8850", +Cell[93814, 3000, 177, 3, 70, 48, 0, "StyleData", "Item3Numbered", "Presentation",ExpressionUUID->"8064d455-c15b-4df2-b8db-a2e7788e8850", StyleMenuListing->None], -Cell[93790, 3003, 172, 3, 70, 44, 0, "StyleData", "Item3Numbered", "Printout",ExpressionUUID->"d3048748-9c42-4def-b65e-27cb3c22abfb", +Cell[93994, 3005, 172, 3, 70, 44, 0, "StyleData", "Item3Numbered", "Printout",ExpressionUUID->"d3048748-9c42-4def-b65e-27cb3c22abfb", StyleMenuListing->None], -Cell[93965, 3008, 181, 3, 70, 56, 0, "StyleData", "Item3Numbered", "DoubleSpacedPrintout",ExpressionUUID->"d3b3dda8-195f-4fd6-b75f-61a6357a20b0"] +Cell[94169, 3010, 181, 3, 70, 56, 0, "StyleData", "Item3Numbered", "DoubleSpacedPrintout",ExpressionUUID->"d3b3dda8-195f-4fd6-b75f-61a6357a20b0"] }, Open ]], Cell[CellGroupData[{ -Cell[94183, 3016, 281, 6, 70, 37, 0, "StyleData", "Item1NumberedLabel", "All",ExpressionUUID->"b19758d7-4b6f-4a2e-879d-967113fae90c", +Cell[94387, 3018, 281, 6, 70, 37, 0, "StyleData", "Item1NumberedLabel", "All",ExpressionUUID->"b19758d7-4b6f-4a2e-879d-967113fae90c", StyleMenuListing->None], -Cell[94467, 3024, 176, 3, 70, 53, 0, "StyleData", "Item1NumberedLabel", "Presentation",ExpressionUUID->"77e0f145-27c8-4c34-aec5-dd9913681a8a", +Cell[94671, 3026, 176, 3, 70, 53, 0, "StyleData", "Item1NumberedLabel", "Presentation",ExpressionUUID->"77e0f145-27c8-4c34-aec5-dd9913681a8a", StyleMenuListing->None], -Cell[94646, 3029, 172, 3, 70, 49, 0, "StyleData", "Item1NumberedLabel", "Printout",ExpressionUUID->"68be96c9-2a33-44a0-b0f3-f6a6b97feb8e", +Cell[94850, 3031, 172, 3, 70, 49, 0, "StyleData", "Item1NumberedLabel", "Printout",ExpressionUUID->"68be96c9-2a33-44a0-b0f3-f6a6b97feb8e", StyleMenuListing->None], -Cell[94821, 3034, 184, 3, 70, 61, 0, "StyleData", "Item1NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"909bc411-bb52-4abd-8a45-afed1e1768dd", +Cell[95025, 3036, 184, 3, 70, 61, 0, "StyleData", "Item1NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"909bc411-bb52-4abd-8a45-afed1e1768dd", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[95042, 3042, 281, 6, 70, 37, 0, "StyleData", "Item2NumberedLabel", "All",ExpressionUUID->"d2de4320-0f97-4713-b2b5-c84a0988ee91", +Cell[95246, 3044, 281, 6, 70, 37, 0, "StyleData", "Item2NumberedLabel", "All",ExpressionUUID->"d2de4320-0f97-4713-b2b5-c84a0988ee91", StyleMenuListing->None], -Cell[95326, 3050, 176, 3, 70, 53, 0, "StyleData", "Item2NumberedLabel", "Presentation",ExpressionUUID->"39d47d44-6cba-40a2-977f-94b80de5d8c6", +Cell[95530, 3052, 176, 3, 70, 53, 0, "StyleData", "Item2NumberedLabel", "Presentation",ExpressionUUID->"39d47d44-6cba-40a2-977f-94b80de5d8c6", StyleMenuListing->None], -Cell[95505, 3055, 160, 3, 70, 49, 0, "StyleData", "Item2NumberedLabel", "Printout",ExpressionUUID->"b0326b1b-b10a-4610-9c71-21d7c65ad493", +Cell[95709, 3057, 160, 3, 70, 49, 0, "StyleData", "Item2NumberedLabel", "Printout",ExpressionUUID->"b0326b1b-b10a-4610-9c71-21d7c65ad493", StyleMenuListing->None], -Cell[95668, 3060, 172, 3, 70, 61, 0, "StyleData", "Item2NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"4a84d8e4-f30f-43cc-aca9-bab946e4e5e6", +Cell[95872, 3062, 172, 3, 70, 61, 0, "StyleData", "Item2NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"4a84d8e4-f30f-43cc-aca9-bab946e4e5e6", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[95877, 3068, 281, 6, 70, 37, 0, "StyleData", "Item3NumberedLabel", "All",ExpressionUUID->"69c48d9f-34a6-41b9-b5a6-3d2f9e45d370", +Cell[96081, 3070, 281, 6, 70, 37, 0, "StyleData", "Item3NumberedLabel", "All",ExpressionUUID->"69c48d9f-34a6-41b9-b5a6-3d2f9e45d370", StyleMenuListing->None], -Cell[96161, 3076, 176, 3, 70, 53, 0, "StyleData", "Item3NumberedLabel", "Presentation",ExpressionUUID->"7b823a89-5b5d-40f7-9fe6-d0d96121ac04", +Cell[96365, 3078, 176, 3, 70, 53, 0, "StyleData", "Item3NumberedLabel", "Presentation",ExpressionUUID->"7b823a89-5b5d-40f7-9fe6-d0d96121ac04", StyleMenuListing->None], -Cell[96340, 3081, 160, 3, 70, 49, 0, "StyleData", "Item3NumberedLabel", "Printout",ExpressionUUID->"4a6afd63-e361-49fb-a00f-d2f68f456233", +Cell[96544, 3083, 160, 3, 70, 49, 0, "StyleData", "Item3NumberedLabel", "Printout",ExpressionUUID->"4a6afd63-e361-49fb-a00f-d2f68f456233", StyleMenuListing->None], -Cell[96503, 3086, 172, 3, 70, 61, 0, "StyleData", "Item3NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"ce83a5c3-c9d7-4da3-945b-74ba3f6424d2", +Cell[96707, 3088, 172, 3, 70, 61, 0, "StyleData", "Item3NumberedLabel", "DoubleSpacedPrintout",ExpressionUUID->"ce83a5c3-c9d7-4da3-945b-74ba3f6424d2", StyleMenuListing->None] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[96724, 3095, 120, 2, 70, "Subsection",ExpressionUUID->"2afc8893-3710-47ca-85f7-2234a8f57ace"], +Cell[96928, 3097, 120, 2, 70, "Subsection",ExpressionUUID->"2afc8893-3710-47ca-85f7-2234a8f57ace"], Cell[CellGroupData[{ -Cell[96869, 3101, 421, 8, 70, 33, 0, "StyleData", "Item1Paragraph", "All",ExpressionUUID->"4245de7d-32e6-45fe-b002-064ed5ca4916", +Cell[97073, 3103, 421, 8, 70, 33, 0, "StyleData", "Item1Paragraph", "All",ExpressionUUID->"4245de7d-32e6-45fe-b002-064ed5ca4916", CounterAssignments->{{"Item2Numbered", 0}, {"Item3Numbered", 0}}, StyleMenuListing->None], -Cell[97293, 3111, 178, 3, 70, 49, 0, "StyleData", "Item1Paragraph", "Presentation",ExpressionUUID->"86d44d1c-101a-4fb9-9daa-8ecdb4c45417", +Cell[97497, 3113, 178, 3, 70, 49, 0, "StyleData", "Item1Paragraph", "Presentation",ExpressionUUID->"86d44d1c-101a-4fb9-9daa-8ecdb4c45417", StyleMenuListing->None], -Cell[97474, 3116, 173, 3, 70, 45, 0, "StyleData", "Item1Paragraph", "Printout",ExpressionUUID->"e3885ae7-0fa4-426b-a51c-4009ca869ff5", +Cell[97678, 3118, 173, 3, 70, 45, 0, "StyleData", "Item1Paragraph", "Printout",ExpressionUUID->"e3885ae7-0fa4-426b-a51c-4009ca869ff5", StyleMenuListing->None], -Cell[97650, 3121, 182, 3, 70, 57, 0, "StyleData", "Item1Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"19873831-4d7c-496e-a0a8-95bdccf66b06"] +Cell[97854, 3123, 182, 3, 70, 57, 0, "StyleData", "Item1Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"19873831-4d7c-496e-a0a8-95bdccf66b06"] }, Open ]], Cell[CellGroupData[{ -Cell[97869, 3129, 399, 8, 70, 33, 0, "StyleData", "Item2Paragraph", "All",ExpressionUUID->"74cb1bc1-3b9e-4d89-8f41-2c1c17daccb5", +Cell[98073, 3131, 399, 8, 70, 33, 0, "StyleData", "Item2Paragraph", "All",ExpressionUUID->"74cb1bc1-3b9e-4d89-8f41-2c1c17daccb5", CounterAssignments->{{"Item3Numbered", 0}}, StyleMenuListing->None], -Cell[98271, 3139, 178, 3, 70, 49, 0, "StyleData", "Item2Paragraph", "Presentation",ExpressionUUID->"d37ceedf-edc6-4482-86ab-194dff7aa9df", +Cell[98475, 3141, 178, 3, 70, 49, 0, "StyleData", "Item2Paragraph", "Presentation",ExpressionUUID->"d37ceedf-edc6-4482-86ab-194dff7aa9df", StyleMenuListing->None], -Cell[98452, 3144, 173, 3, 70, 45, 0, "StyleData", "Item2Paragraph", "Printout",ExpressionUUID->"10b15319-52ea-4fca-89c9-6f68b63d53c7", +Cell[98656, 3146, 173, 3, 70, 45, 0, "StyleData", "Item2Paragraph", "Printout",ExpressionUUID->"10b15319-52ea-4fca-89c9-6f68b63d53c7", StyleMenuListing->None], -Cell[98628, 3149, 182, 3, 70, 57, 0, "StyleData", "Item2Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"41a67def-5ffe-46d2-a279-558018fa56ee"] +Cell[98832, 3151, 182, 3, 70, 57, 0, "StyleData", "Item2Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"41a67def-5ffe-46d2-a279-558018fa56ee"] }, Open ]], Cell[CellGroupData[{ -Cell[98847, 3157, 354, 7, 70, 33, 0, "StyleData", "Item3Paragraph", "All",ExpressionUUID->"a99e293f-e2aa-499f-8fd9-0e5cb0ebc92e", +Cell[99051, 3159, 354, 7, 70, 33, 0, "StyleData", "Item3Paragraph", "All",ExpressionUUID->"a99e293f-e2aa-499f-8fd9-0e5cb0ebc92e", StyleMenuListing->None], -Cell[99204, 3166, 179, 3, 70, 49, 0, "StyleData", "Item3Paragraph", "Presentation",ExpressionUUID->"a6e9c585-51e1-4c95-99ed-a6154f43f733", +Cell[99408, 3168, 179, 3, 70, 49, 0, "StyleData", "Item3Paragraph", "Presentation",ExpressionUUID->"a6e9c585-51e1-4c95-99ed-a6154f43f733", StyleMenuListing->None], -Cell[99386, 3171, 173, 3, 70, 45, 0, "StyleData", "Item3Paragraph", "Printout",ExpressionUUID->"ea78b46a-b2a5-442e-b5af-ccd4e937ce00", +Cell[99590, 3173, 173, 3, 70, 45, 0, "StyleData", "Item3Paragraph", "Printout",ExpressionUUID->"ea78b46a-b2a5-442e-b5af-ccd4e937ce00", StyleMenuListing->None], -Cell[99562, 3176, 182, 3, 70, 57, 0, "StyleData", "Item3Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"7e575e2a-76bd-406b-aba2-fd3e059d887b"] +Cell[99766, 3178, 182, 3, 70, 57, 0, "StyleData", "Item3Paragraph", "DoubleSpacedPrintout",ExpressionUUID->"7e575e2a-76bd-406b-aba2-fd3e059d887b"] }, Open ]] }, Open ]] }, Closed]], Cell[CellGroupData[{ -Cell[99805, 3186, 100, 0, 53, "Section",ExpressionUUID->"4ac89dad-c59c-458b-81a7-02787f0c1b77"], +Cell[100009, 3188, 100, 0, 53, "Section",ExpressionUUID->"4ac89dad-c59c-458b-81a7-02787f0c1b77"], Cell[CellGroupData[{ -Cell[99930, 3190, 83, 0, 54, "Subsection",ExpressionUUID->"6a031b99-c443-4121-8a7c-c8dea8f74538"], +Cell[100134, 3192, 83, 0, 54, "Subsection",ExpressionUUID->"6a031b99-c443-4121-8a7c-c8dea8f74538"], Cell[CellGroupData[{ -Cell[100038, 3194, 774, 19, 53, 25, 0, "StyleData", "Figure", "All",ExpressionUUID->"013aee08-7161-41a3-a0b8-af4e37e34fd4", +Cell[100242, 3196, 774, 19, 53, 25, 0, "StyleData", "Figure", "All",ExpressionUUID->"013aee08-7161-41a3-a0b8-af4e37e34fd4", CounterIncrements->"Figure", MenuCommandKey->"8"], -Cell[100815, 3215, 152, 2, 54, 41, 0, "StyleData", "Figure", "Presentation",ExpressionUUID->"1a8820db-f3a3-464f-99fb-7b69040b65b4", +Cell[101019, 3217, 152, 2, 54, 41, 0, "StyleData", "Figure", "Presentation",ExpressionUUID->"1a8820db-f3a3-464f-99fb-7b69040b65b4", Magnification->1.5], -Cell[100970, 3219, 92, 0, 53, 37, 0, "StyleData", "Figure", "Printout",ExpressionUUID->"299e0804-c389-4151-881d-9afebbecd30f"], -Cell[101065, 3221, 98, 0, 53, 43, 0, "StyleData", "Figure", "PrintoutKindle",ExpressionUUID->"62e3806f-0d01-4228-a87b-3b9f54609c57"] +Cell[101174, 3221, 92, 0, 53, 37, 0, "StyleData", "Figure", "Printout",ExpressionUUID->"299e0804-c389-4151-881d-9afebbecd30f"], +Cell[101269, 3223, 98, 0, 53, 43, 0, "StyleData", "Figure", "PrintoutKindle",ExpressionUUID->"62e3806f-0d01-4228-a87b-3b9f54609c57"] }, Open ]], Cell[CellGroupData[{ -Cell[101200, 3226, 1174, 29, 73, 32, 0, "StyleData", "FigureCaption", "All",ExpressionUUID->"01a805bc-c216-43fe-9818-e3923a69b310", +Cell[101404, 3228, 1174, 29, 73, 32, 0, "StyleData", "FigureCaption", "All",ExpressionUUID->"01a805bc-c216-43fe-9818-e3923a69b310", CounterIncrements->"FigureCaption", CounterAssignments->{{"Nil", 0}}], -Cell[102377, 3257, 176, 3, 51, 48, 0, "StyleData", "FigureCaption", "Presentation",ExpressionUUID->"3246a33f-0ed5-4c07-bf79-44322208f607"], -Cell[102556, 3262, 99, 0, 73, 44, 0, "StyleData", "FigureCaption", "Printout",ExpressionUUID->"14704ff0-acde-46cc-9a68-34eae523770b"], -Cell[102658, 3264, 105, 0, 73, 50, 0, "StyleData", "FigureCaption", "PrintoutKindle",ExpressionUUID->"051376e4-f1a1-468e-8830-95571b549625"] +Cell[102581, 3259, 176, 3, 51, 48, 0, "StyleData", "FigureCaption", "Presentation",ExpressionUUID->"3246a33f-0ed5-4c07-bf79-44322208f607"], +Cell[102760, 3264, 99, 0, 73, 44, 0, "StyleData", "FigureCaption", "Printout",ExpressionUUID->"14704ff0-acde-46cc-9a68-34eae523770b"], +Cell[102862, 3266, 105, 0, 73, 50, 0, "StyleData", "FigureCaption", "PrintoutKindle",ExpressionUUID->"051376e4-f1a1-468e-8830-95571b549625"] }, Open ]], -Cell[102778, 3267, 233, 5, 41, 37, 0, "StyleData", "FigureCaptionLabel", "All",ExpressionUUID->"26862377-c4b4-4013-a764-e1fb719a1702", +Cell[102982, 3269, 233, 5, 41, 37, 0, "StyleData", "FigureCaptionLabel", "All",ExpressionUUID->"26862377-c4b4-4013-a764-e1fb719a1702", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[103048, 3277, 83, 0, 54, "Subsection",ExpressionUUID->"d1a0a651-5f50-433e-b820-5f097084b5a2"], -Cell[103134, 3279, 201, 4, 41, 34, 0, "StyleData", "TableTitleLabel", "All",ExpressionUUID->"2835c543-4f8f-4da7-a52a-6674de832c1d", +Cell[103252, 3279, 83, 0, 54, "Subsection",ExpressionUUID->"d1a0a651-5f50-433e-b820-5f097084b5a2"], +Cell[103338, 3281, 201, 4, 41, 34, 0, "StyleData", "TableTitleLabel", "All",ExpressionUUID->"2835c543-4f8f-4da7-a52a-6674de832c1d", CounterIncrements->"TableTitle", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[103360, 3287, 1381, 35, 70, 29, 0, "StyleData", "TableTitle", "All",ExpressionUUID->"86d1b89d-5604-465f-bcc1-eeb1936dca72", +Cell[103564, 3289, 1381, 35, 70, 29, 0, "StyleData", "TableTitle", "All",ExpressionUUID->"86d1b89d-5604-465f-bcc1-eeb1936dca72", CounterIncrements->"TableTitle", CounterAssignments->{{"Nil", 0}}], -Cell[104744, 3324, 150, 2, 67, 45, 0, "StyleData", "TableTitle", "Presentation",ExpressionUUID->"372ea999-ee87-47b8-a3e9-09f2af5dcbd8"], -Cell[104897, 3328, 96, 0, 70, 41, 0, "StyleData", "TableTitle", "Printout",ExpressionUUID->"db567593-5da2-4dc8-b36d-3ed95df0aa1f"], -Cell[104996, 3330, 102, 0, 70, 47, 0, "StyleData", "TableTitle", "PrintoutKindle",ExpressionUUID->"64de1942-095c-4be4-91b7-aef951f25a9a"], -Cell[105101, 3332, 120, 1, 48, 50, 0, "StyleData", "TableTitleLabel", "Presentation",ExpressionUUID->"bcbd5aa2-84e0-40d8-980b-975527edcae5"], -Cell[105224, 3335, 116, 1, 38, 46, 0, "StyleData", "TableTitleLabel", "Printout",ExpressionUUID->"b0995295-cb1f-46c3-847a-a1a0cdedc70f"], -Cell[105343, 3338, 128, 1, 38, 58, 0, "StyleData", "TableTitleLabel", "DoubleSpacedPrintout",ExpressionUUID->"764cddfb-01c8-4592-8e51-0cd33819b2d8"] +Cell[104948, 3326, 150, 2, 67, 45, 0, "StyleData", "TableTitle", "Presentation",ExpressionUUID->"372ea999-ee87-47b8-a3e9-09f2af5dcbd8"], +Cell[105101, 3330, 96, 0, 70, 41, 0, "StyleData", "TableTitle", "Printout",ExpressionUUID->"db567593-5da2-4dc8-b36d-3ed95df0aa1f"], +Cell[105200, 3332, 102, 0, 70, 47, 0, "StyleData", "TableTitle", "PrintoutKindle",ExpressionUUID->"64de1942-095c-4be4-91b7-aef951f25a9a"], +Cell[105305, 3334, 120, 1, 48, 50, 0, "StyleData", "TableTitleLabel", "Presentation",ExpressionUUID->"bcbd5aa2-84e0-40d8-980b-975527edcae5"], +Cell[105428, 3337, 116, 1, 38, 46, 0, "StyleData", "TableTitleLabel", "Printout",ExpressionUUID->"b0995295-cb1f-46c3-847a-a1a0cdedc70f"], +Cell[105547, 3340, 128, 1, 38, 58, 0, "StyleData", "TableTitleLabel", "DoubleSpacedPrintout",ExpressionUUID->"764cddfb-01c8-4592-8e51-0cd33819b2d8"] }, Open ]], Cell[CellGroupData[{ -Cell[105508, 3344, 1255, 33, 35, 24, 0, "StyleData", "Table", "All",ExpressionUUID->"f632c37d-0b3a-4084-ba66-8793ff081fcd", +Cell[105712, 3346, 1255, 33, 35, 24, 0, "StyleData", "Table", "All",ExpressionUUID->"f632c37d-0b3a-4084-ba66-8793ff081fcd", CounterIncrements->"Table"], -Cell[106766, 3379, 144, 2, 44, 40, 0, "StyleData", "Table", "Presentation",ExpressionUUID->"697f93ed-e841-4ff4-9d13-657d45e2a605"], -Cell[106913, 3383, 154, 3, 41, 36, 0, "StyleData", "Table", "Printout",ExpressionUUID->"0cf4edc4-c649-41b4-8936-0ea328b5d081"], -Cell[107070, 3388, 136, 2, 41, 42, 0, "StyleData", "Table", "PrintoutKindle",ExpressionUUID->"07781d68-e5d3-4f61-82a0-57233c6b4e1f"] +Cell[106970, 3381, 144, 2, 44, 40, 0, "StyleData", "Table", "Presentation",ExpressionUUID->"697f93ed-e841-4ff4-9d13-657d45e2a605"], +Cell[107117, 3385, 154, 3, 41, 36, 0, "StyleData", "Table", "Printout",ExpressionUUID->"0cf4edc4-c649-41b4-8936-0ea328b5d081"], +Cell[107274, 3390, 136, 2, 41, 42, 0, "StyleData", "Table", "PrintoutKindle",ExpressionUUID->"07781d68-e5d3-4f61-82a0-57233c6b4e1f"] }, Open ]], -Cell[107221, 3393, 677, 18, 35, 24, 0, "StyleData", "Board", "All",ExpressionUUID->"a69445d1-a40d-497f-be15-9d7208b8f4c5", +Cell[107425, 3395, 677, 18, 35, 24, 0, "StyleData", "Board", "All",ExpressionUUID->"a69445d1-a40d-497f-be15-9d7208b8f4c5", CounterIncrements->"Table"], Cell[CellGroupData[{ -Cell[107923, 3415, 104, 0, 45, "Subsubsection",ExpressionUUID->"c16d56fd-0cf1-46f1-a3e6-f067b1b00437"], +Cell[108127, 3417, 104, 0, 45, "Subsubsection",ExpressionUUID->"c16d56fd-0cf1-46f1-a3e6-f067b1b00437"], Cell[CellGroupData[{ -Cell[108052, 3419, 854, 23, 41, 34, 0, "StyleData", "TableColumnHead", "All",ExpressionUUID->"7ec9d163-9ca6-42db-9ff5-1823a1cf981e", +Cell[108256, 3421, 854, 23, 41, 34, 0, "StyleData", "TableColumnHead", "All",ExpressionUUID->"7ec9d163-9ca6-42db-9ff5-1823a1cf981e", CounterIncrements->"Table", StyleMenuListing->None], -Cell[108909, 3444, 120, 1, 48, 50, 0, "StyleData", "TableColumnHead", "Presentation",ExpressionUUID->"19524f1a-2cc7-4efc-82ea-e0c12503ad75"], -Cell[109032, 3447, 116, 1, 38, 46, 0, "StyleData", "TableColumnHead", "Printout",ExpressionUUID->"d8088d94-891e-462d-bf99-3b2fb85b93ba"], -Cell[109151, 3450, 128, 1, 38, 58, 0, "StyleData", "TableColumnHead", "DoubleSpacedPrintout",ExpressionUUID->"aa3b9fb3-792f-4654-afbe-47b3a47b0891"] +Cell[109113, 3446, 120, 1, 48, 50, 0, "StyleData", "TableColumnHead", "Presentation",ExpressionUUID->"19524f1a-2cc7-4efc-82ea-e0c12503ad75"], +Cell[109236, 3449, 116, 1, 38, 46, 0, "StyleData", "TableColumnHead", "Printout",ExpressionUUID->"d8088d94-891e-462d-bf99-3b2fb85b93ba"], +Cell[109355, 3452, 128, 1, 38, 58, 0, "StyleData", "TableColumnHead", "DoubleSpacedPrintout",ExpressionUUID->"aa3b9fb3-792f-4654-afbe-47b3a47b0891"] }, Open ]], Cell[CellGroupData[{ -Cell[109316, 3456, 847, 23, 41, 32, 0, "StyleData", "TableSpanHead", "All",ExpressionUUID->"53b22a5d-f767-4b0e-9cdb-17b02c623558", +Cell[109520, 3458, 847, 23, 41, 32, 0, "StyleData", "TableSpanHead", "All",ExpressionUUID->"53b22a5d-f767-4b0e-9cdb-17b02c623558", StyleMenuListing->None], -Cell[110166, 3481, 118, 1, 48, 48, 0, "StyleData", "TableSpanHead", "Presentation",ExpressionUUID->"4f5b2af0-9aa2-4389-9966-374814975f49"], -Cell[110287, 3484, 114, 1, 38, 44, 0, "StyleData", "TableSpanHead", "Printout",ExpressionUUID->"9b977a20-54d0-4840-ad95-41a215e0738a"], -Cell[110404, 3487, 126, 1, 38, 56, 0, "StyleData", "TableSpanHead", "DoubleSpacedPrintout",ExpressionUUID->"c77f38df-f72e-49b2-b86d-7d5becf22beb"] +Cell[110370, 3483, 118, 1, 48, 48, 0, "StyleData", "TableSpanHead", "Presentation",ExpressionUUID->"4f5b2af0-9aa2-4389-9966-374814975f49"], +Cell[110491, 3486, 114, 1, 38, 44, 0, "StyleData", "TableSpanHead", "Printout",ExpressionUUID->"9b977a20-54d0-4840-ad95-41a215e0738a"], +Cell[110608, 3489, 126, 1, 38, 56, 0, "StyleData", "TableSpanHead", "DoubleSpacedPrintout",ExpressionUUID->"c77f38df-f72e-49b2-b86d-7d5becf22beb"] }, Open ]], Cell[CellGroupData[{ -Cell[110567, 3493, 863, 24, 41, 28, 0, "StyleData", "TableText", "All",ExpressionUUID->"8b96e256-3e71-4021-815d-158dd87f15b9", +Cell[110771, 3495, 863, 24, 41, 28, 0, "StyleData", "TableText", "All",ExpressionUUID->"8b96e256-3e71-4021-815d-158dd87f15b9", StyleMenuListing->None], -Cell[111433, 3519, 114, 1, 48, 44, 0, "StyleData", "TableText", "Presentation",ExpressionUUID->"d2ad3fee-7ead-4938-a188-e83100497243"], -Cell[111550, 3522, 110, 1, 38, 40, 0, "StyleData", "TableText", "Printout",ExpressionUUID->"815f6571-6d0f-455f-a0b4-ff0be9f28649"], -Cell[111663, 3525, 144, 2, 38, 52, 0, "StyleData", "TableText", "DoubleSpacedPrintout",ExpressionUUID->"871a35ae-363e-4a83-9cdc-2f4ff76c10b8"] +Cell[111637, 3521, 114, 1, 48, 44, 0, "StyleData", "TableText", "Presentation",ExpressionUUID->"d2ad3fee-7ead-4938-a188-e83100497243"], +Cell[111754, 3524, 110, 1, 38, 40, 0, "StyleData", "TableText", "Printout",ExpressionUUID->"815f6571-6d0f-455f-a0b4-ff0be9f28649"], +Cell[111867, 3527, 144, 2, 38, 52, 0, "StyleData", "TableText", "DoubleSpacedPrintout",ExpressionUUID->"871a35ae-363e-4a83-9cdc-2f4ff76c10b8"] }, Open ]], Cell[CellGroupData[{ -Cell[111844, 3532, 653, 20, 41, 32, 0, "StyleData", "TableSpanText", "All",ExpressionUUID->"23a58a40-2139-4980-a317-e2db353cbe4c", +Cell[112048, 3534, 653, 20, 41, 32, 0, "StyleData", "TableSpanText", "All",ExpressionUUID->"23a58a40-2139-4980-a317-e2db353cbe4c", StyleMenuListing->None], -Cell[112500, 3554, 118, 1, 48, 48, 0, "StyleData", "TableSpanText", "Presentation",ExpressionUUID->"0f498807-5d8f-4924-b711-88e8d9ebdd5f"], -Cell[112621, 3557, 114, 1, 38, 44, 0, "StyleData", "TableSpanText", "Printout",ExpressionUUID->"9b972bc5-1fa2-4b62-870a-6674b86cb6df"], -Cell[112738, 3560, 126, 1, 38, 56, 0, "StyleData", "TableSpanText", "DoubleSpacedPrintout",ExpressionUUID->"66924e33-cc35-4185-9f46-9751075c8b82"] +Cell[112704, 3556, 118, 1, 48, 48, 0, "StyleData", "TableSpanText", "Presentation",ExpressionUUID->"0f498807-5d8f-4924-b711-88e8d9ebdd5f"], +Cell[112825, 3559, 114, 1, 38, 44, 0, "StyleData", "TableSpanText", "Printout",ExpressionUUID->"9b972bc5-1fa2-4b62-870a-6674b86cb6df"], +Cell[112942, 3562, 126, 1, 38, 56, 0, "StyleData", "TableSpanText", "DoubleSpacedPrintout",ExpressionUUID->"66924e33-cc35-4185-9f46-9751075c8b82"] }, Open ]], -Cell[112879, 3564, 758, 21, 41, 31, 0, "StyleData", "TableSubGrid", "All",ExpressionUUID->"94cb1788-d897-4929-8595-b16a97831c76", +Cell[113083, 3566, 758, 21, 41, 31, 0, "StyleData", "TableSubGrid", "All",ExpressionUUID->"94cb1788-d897-4929-8595-b16a97831c76", StyleMenuListing->None], -Cell[113640, 3587, 481, 13, 41, 34, 0, "StyleData", "TableMasterGrid", "All",ExpressionUUID->"35997f49-9737-48b2-a55a-9229c48423bf", +Cell[113844, 3589, 481, 13, 41, 34, 0, "StyleData", "TableMasterGrid", "All",ExpressionUUID->"35997f49-9737-48b2-a55a-9229c48423bf", StyleMenuListing->None], -Cell[114124, 3602, 371, 9, 18, 35, 0, "StyleData", "TableLineElement", "All",ExpressionUUID->"b859042f-b8d8-41d8-b660-352fc1fbecae", +Cell[114328, 3604, 371, 9, 18, 35, 0, "StyleData", "TableLineElement", "All",ExpressionUUID->"b859042f-b8d8-41d8-b660-352fc1fbecae", StyleMenuListing->None], -Cell[114498, 3613, 222, 5, 9, 36, 0, "StyleData", "TableBlankElement", "All",ExpressionUUID->"1b325a28-cbab-4d35-8fb4-260307c14382", +Cell[114702, 3615, 222, 5, 9, 36, 0, "StyleData", "TableBlankElement", "All",ExpressionUUID->"1b325a28-cbab-4d35-8fb4-260307c14382", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[114745, 3622, 183, 5, 47, 27, 0, "StyleData", "SpanLeft", "All",ExpressionUUID->"26160cec-484f-47fa-8e49-6afaeb57d7d4", +Cell[114949, 3624, 183, 5, 47, 27, 0, "StyleData", "SpanLeft", "All",ExpressionUUID->"26160cec-484f-47fa-8e49-6afaeb57d7d4", StyleMenuListing->None], -Cell[114931, 3629, 113, 1, 58, 43, 0, "StyleData", "SpanLeft", "Presentation",ExpressionUUID->"f4a99eab-366f-4286-8b27-61eb2738f9a7"], -Cell[115047, 3632, 109, 1, 44, 39, 0, "StyleData", "SpanLeft", "Printout",ExpressionUUID->"a37034a0-8425-4879-ad65-b628a199ec28"], -Cell[115159, 3635, 121, 1, 44, 51, 0, "StyleData", "SpanLeft", "DoubleSpacedPrintout",ExpressionUUID->"ea6ee459-4d35-4627-a95b-59bb71a0fc5f"] +Cell[115135, 3631, 113, 1, 58, 43, 0, "StyleData", "SpanLeft", "Presentation",ExpressionUUID->"f4a99eab-366f-4286-8b27-61eb2738f9a7"], +Cell[115251, 3634, 109, 1, 44, 39, 0, "StyleData", "SpanLeft", "Printout",ExpressionUUID->"a37034a0-8425-4879-ad65-b628a199ec28"], +Cell[115363, 3637, 121, 1, 44, 51, 0, "StyleData", "SpanLeft", "DoubleSpacedPrintout",ExpressionUUID->"ea6ee459-4d35-4627-a95b-59bb71a0fc5f"] }, Open ]], Cell[CellGroupData[{ -Cell[115317, 3641, 185, 5, 47, 29, 0, "StyleData", "SpanCenter", "All",ExpressionUUID->"d3591c24-1f96-40a9-9669-0a4a561a604a", +Cell[115521, 3643, 185, 5, 47, 29, 0, "StyleData", "SpanCenter", "All",ExpressionUUID->"d3591c24-1f96-40a9-9669-0a4a561a604a", StyleMenuListing->None], -Cell[115505, 3648, 115, 1, 58, 45, 0, "StyleData", "SpanCenter", "Presentation",ExpressionUUID->"15d1b313-0980-437d-ae46-4bb4800bf5a8"], -Cell[115623, 3651, 111, 1, 44, 41, 0, "StyleData", "SpanCenter", "Printout",ExpressionUUID->"f1d8e7d7-87cb-4f2e-8158-b1bedaf5ff6e"], -Cell[115737, 3654, 123, 1, 44, 53, 0, "StyleData", "SpanCenter", "DoubleSpacedPrintout",ExpressionUUID->"8811dfbd-3f1f-44a8-bb52-baf1111c761b"] +Cell[115709, 3650, 115, 1, 58, 45, 0, "StyleData", "SpanCenter", "Presentation",ExpressionUUID->"15d1b313-0980-437d-ae46-4bb4800bf5a8"], +Cell[115827, 3653, 111, 1, 44, 41, 0, "StyleData", "SpanCenter", "Printout",ExpressionUUID->"f1d8e7d7-87cb-4f2e-8158-b1bedaf5ff6e"], +Cell[115941, 3656, 123, 1, 44, 53, 0, "StyleData", "SpanCenter", "DoubleSpacedPrintout",ExpressionUUID->"8811dfbd-3f1f-44a8-bb52-baf1111c761b"] }, Open ]], Cell[CellGroupData[{ -Cell[115897, 3660, 184, 5, 47, 28, 0, "StyleData", "SpanRight", "All",ExpressionUUID->"e17a18bd-3b09-4bea-b82b-a8fb4090556c", +Cell[116101, 3662, 184, 5, 47, 28, 0, "StyleData", "SpanRight", "All",ExpressionUUID->"e17a18bd-3b09-4bea-b82b-a8fb4090556c", StyleMenuListing->None], -Cell[116084, 3667, 114, 1, 58, 44, 0, "StyleData", "SpanRight", "Presentation",ExpressionUUID->"eec55e2c-4161-46c8-b57c-dd4efb4ed8df"], -Cell[116201, 3670, 110, 1, 44, 40, 0, "StyleData", "SpanRight", "Printout",ExpressionUUID->"e4c1f800-dadb-4704-8f31-8d1d7faf704b"], -Cell[116314, 3673, 122, 1, 44, 52, 0, "StyleData", "SpanRight", "DoubleSpacedPrintout",ExpressionUUID->"f321d07d-8a19-4ce5-b3a1-c3b8d45fb0e4"] +Cell[116288, 3669, 114, 1, 58, 44, 0, "StyleData", "SpanRight", "Presentation",ExpressionUUID->"eec55e2c-4161-46c8-b57c-dd4efb4ed8df"], +Cell[116405, 3672, 110, 1, 44, 40, 0, "StyleData", "SpanRight", "Printout",ExpressionUUID->"e4c1f800-dadb-4704-8f31-8d1d7faf704b"], +Cell[116518, 3675, 122, 1, 44, 52, 0, "StyleData", "SpanRight", "DoubleSpacedPrintout",ExpressionUUID->"f321d07d-8a19-4ce5-b3a1-c3b8d45fb0e4"] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[116497, 3681, 84, 0, 54, "Subsection",ExpressionUUID->"d1b3a44f-83af-4484-baea-c3143424b26c"], -Cell[116584, 3683, 1025, 25, 73, 65, 0, "StyleData", "Generic", "All",ExpressionUUID->"c12bc005-d6e0-45e8-a53b-05a0e6c17be3"], -Cell[117612, 3710, 968, 21, 73, 68, 0, "StyleData", "Example", "All",ExpressionUUID->"3cb676b9-3014-42d8-8e40-e47d73e0779d", +Cell[116701, 3683, 84, 0, 54, "Subsection",ExpressionUUID->"d1b3a44f-83af-4484-baea-c3143424b26c"], +Cell[116788, 3685, 1025, 25, 73, 65, 0, "StyleData", "Generic", "All",ExpressionUUID->"c12bc005-d6e0-45e8-a53b-05a0e6c17be3"], +Cell[117816, 3712, 968, 21, 73, 68, 0, "StyleData", "Example", "All",ExpressionUUID->"3cb676b9-3014-42d8-8e40-e47d73e0779d", CounterIncrements->"Example", MenuCommandKey->"4", StyleMenuListing->200], -Cell[118583, 3733, 1059, 22, 73, 69, 0, "StyleData", "Exercise", "All",ExpressionUUID->"96ebd2ba-5b20-498e-a7ea-80b062128c0f", +Cell[118787, 3735, 1059, 22, 73, 69, 0, "StyleData", "Exercise", "All",ExpressionUUID->"96ebd2ba-5b20-498e-a7ea-80b062128c0f", CounterIncrements->"Exercise"], -Cell[119645, 3757, 967, 20, 73, 69, 0, "StyleData", "Solution", "All",ExpressionUUID->"dcfb2a40-4213-41da-9fe7-98fb670e71b5"], -Cell[120615, 3779, 916, 19, 73, 69, 0, "StyleData", "Question", "All",ExpressionUUID->"0dd9a50a-7b6d-4a54-aee2-77694b8f768f", +Cell[119849, 3759, 967, 20, 73, 69, 0, "StyleData", "Solution", "All",ExpressionUUID->"dcfb2a40-4213-41da-9fe7-98fb670e71b5"], +Cell[120819, 3781, 916, 19, 73, 69, 0, "StyleData", "Question", "All",ExpressionUUID->"0dd9a50a-7b6d-4a54-aee2-77694b8f768f", CounterIncrements->"Question"], -Cell[121534, 3800, 895, 18, 73, 67, 0, "StyleData", "Remark", "All",ExpressionUUID->"ab7e4aa6-30dc-4c43-b957-dae586311ba9", +Cell[121738, 3802, 895, 18, 73, 67, 0, "StyleData", "Remark", "All",ExpressionUUID->"ab7e4aa6-30dc-4c43-b957-dae586311ba9", CounterIncrements->"Remark"], -Cell[122432, 3820, 911, 19, 73, 68, 0, "StyleData", "Comment", "All",ExpressionUUID->"a3a3e9cc-7b6f-4144-8b3b-78445c5523ff", +Cell[122636, 3822, 911, 19, 73, 68, 0, "StyleData", "Comment", "All",ExpressionUUID->"a3a3e9cc-7b6f-4144-8b3b-78445c5523ff", CounterIncrements->"Comment"], -Cell[123346, 3841, 999, 21, 73, 68, 0, "StyleData", "Theorem", "All",ExpressionUUID->"60de81b0-812d-4b42-8504-882e16ddcfeb", +Cell[123550, 3843, 999, 21, 73, 68, 0, "StyleData", "Theorem", "All",ExpressionUUID->"60de81b0-812d-4b42-8504-882e16ddcfeb", CounterIncrements->"Theorem"], -Cell[124348, 3864, 975, 21, 73, 66, 0, "StyleData", "Proof", "All",ExpressionUUID->"8ecdde65-eed6-4226-a636-dff19fe81156", +Cell[124552, 3866, 975, 21, 73, 66, 0, "StyleData", "Proof", "All",ExpressionUUID->"8ecdde65-eed6-4226-a636-dff19fe81156", CounterIncrements->"Proof"], -Cell[125326, 3887, 901, 19, 73, 66, 0, "StyleData", "Axiom", "All",ExpressionUUID->"04a98928-8581-406f-9f5d-ef777a70ce48", +Cell[125530, 3889, 901, 19, 73, 66, 0, "StyleData", "Axiom", "All",ExpressionUUID->"04a98928-8581-406f-9f5d-ef777a70ce48", CounterIncrements->"Axiom"], -Cell[126230, 3908, 921, 19, 73, 71, 0, "StyleData", "Definition", "All",ExpressionUUID->"294b70e4-a954-4c77-a3c0-42b7def1f3a5", +Cell[126434, 3910, 921, 19, 73, 71, 0, "StyleData", "Definition", "All",ExpressionUUID->"294b70e4-a954-4c77-a3c0-42b7def1f3a5", CounterIncrements->"Definition"], -Cell[127154, 3929, 894, 18, 73, 66, 0, "StyleData", "Lemma", "All",ExpressionUUID->"93f69fde-4d4f-4f01-9bfa-9ab74b2180f5", +Cell[127358, 3931, 894, 18, 73, 66, 0, "StyleData", "Lemma", "All",ExpressionUUID->"93f69fde-4d4f-4f01-9bfa-9ab74b2180f5", CounterIncrements->"Lemma"], -Cell[128051, 3949, 917, 19, 73, 70, 0, "StyleData", "Corollary", "All",ExpressionUUID->"afa3a378-2dfe-40ea-a6ba-49ee2892ee29", +Cell[128255, 3951, 917, 19, 73, 70, 0, "StyleData", "Corollary", "All",ExpressionUUID->"afa3a378-2dfe-40ea-a6ba-49ee2892ee29", CounterIncrements->"Corollary"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[129017, 3974, 85, 0, 67, "Section",ExpressionUUID->"605987d6-899a-4480-b09e-f3ca2a44b40b"], +Cell[129221, 3976, 85, 0, 67, "Section",ExpressionUUID->"605987d6-899a-4480-b09e-f3ca2a44b40b"], Cell[CellGroupData[{ -Cell[129127, 3978, 86, 0, 54, "Subsection",ExpressionUUID->"1ba48601-f6e3-44a5-b0c2-88aa8f478067"], +Cell[129331, 3980, 86, 0, 54, "Subsection",ExpressionUUID->"1ba48601-f6e3-44a5-b0c2-88aa8f478067"], Cell[CellGroupData[{ -Cell[129238, 3982, 498, 13, 47, 27, 0, "StyleData", "Equation", "All",ExpressionUUID->"65ad6cfd-8401-4c1f-9e2f-45a058a7ac01", +Cell[129442, 3984, 498, 13, 47, 27, 0, "StyleData", "Equation", "All",ExpressionUUID->"65ad6cfd-8401-4c1f-9e2f-45a058a7ac01", CounterIncrements->"Equation", MenuCommandKey->"5"], -Cell[129739, 3997, 149, 2, 63, 43, 0, "StyleData", "Equation", "Presentation",ExpressionUUID->"25cfec04-9238-4877-9c73-d377d147bfc0"], -Cell[129891, 4001, 129, 2, 43, 39, 0, "StyleData", "Equation", "Printout",ExpressionUUID->"c909a6f7-9389-42c7-8a6b-27afcfadae65"], -Cell[130023, 4005, 132, 2, 43, 42, 0, "StyleData", "Equation", "PrintoutPro",ExpressionUUID->"dd601419-1b2c-47dc-8e3a-b48277b8fa32"] +Cell[129943, 3999, 149, 2, 63, 43, 0, "StyleData", "Equation", "Presentation",ExpressionUUID->"25cfec04-9238-4877-9c73-d377d147bfc0"], +Cell[130095, 4003, 129, 2, 43, 39, 0, "StyleData", "Equation", "Printout",ExpressionUUID->"c909a6f7-9389-42c7-8a6b-27afcfadae65"], +Cell[130227, 4007, 132, 2, 43, 42, 0, "StyleData", "Equation", "PrintoutPro",ExpressionUUID->"dd601419-1b2c-47dc-8e3a-b48277b8fa32"] }, Open ]], Cell[CellGroupData[{ -Cell[130192, 4012, 549, 14, 35, 32, 0, "StyleData", "EquationGroup", "All",ExpressionUUID->"c9de6f75-9a1e-4299-bd88-17797e94281e", +Cell[130396, 4014, 549, 14, 35, 32, 0, "StyleData", "EquationGroup", "All",ExpressionUUID->"c9de6f75-9a1e-4299-bd88-17797e94281e", StyleMenuListing->None], -Cell[130744, 4028, 152, 2, 46, 48, 0, "StyleData", "EquationGroup", "Presentation",ExpressionUUID->"18e84e88-38c1-4931-a744-4fe02290f159"], -Cell[130899, 4032, 146, 2, 31, 44, 0, "StyleData", "EquationGroup", "Printout",ExpressionUUID->"b9d38b1f-7592-497c-a083-6925809992a0"], -Cell[131048, 4036, 158, 2, 31, 56, 0, "StyleData", "EquationGroup", "DoubleSpacedPrintout",ExpressionUUID->"eb163f49-6de0-48a4-9d21-0e39effd9af9"] +Cell[130948, 4030, 152, 2, 46, 48, 0, "StyleData", "EquationGroup", "Presentation",ExpressionUUID->"18e84e88-38c1-4931-a744-4fe02290f159"], +Cell[131103, 4034, 146, 2, 31, 44, 0, "StyleData", "EquationGroup", "Printout",ExpressionUUID->"b9d38b1f-7592-497c-a083-6925809992a0"], +Cell[131252, 4038, 158, 2, 31, 56, 0, "StyleData", "EquationGroup", "DoubleSpacedPrintout",ExpressionUUID->"eb163f49-6de0-48a4-9d21-0e39effd9af9"] }, Open ]], Cell[CellGroupData[{ -Cell[131243, 4043, 764, 18, 35, 39, 0, "StyleData", "EquationGroupAligned", "All",ExpressionUUID->"013a4b56-732a-430f-9a54-56247eee54e2", +Cell[131447, 4045, 764, 18, 35, 39, 0, "StyleData", "EquationGroupAligned", "All",ExpressionUUID->"013a4b56-732a-430f-9a54-56247eee54e2", StyleMenuListing->None], -Cell[132010, 4063, 159, 2, 46, 55, 0, "StyleData", "EquationGroupAligned", "Presentation",ExpressionUUID->"3a14a40e-e5fb-4545-874e-a9c17d5518a5"], -Cell[132172, 4067, 153, 2, 31, 51, 0, "StyleData", "EquationGroupAligned", "Printout",ExpressionUUID->"706a3000-5899-4427-8393-9f3b3972872c"], -Cell[132328, 4071, 165, 2, 31, 63, 0, "StyleData", "EquationGroupAligned", "DoubleSpacedPrintout",ExpressionUUID->"b41994d9-9c65-4838-a291-33777d6a8e9a"] +Cell[132214, 4065, 159, 2, 46, 55, 0, "StyleData", "EquationGroupAligned", "Presentation",ExpressionUUID->"3a14a40e-e5fb-4545-874e-a9c17d5518a5"], +Cell[132376, 4069, 153, 2, 31, 51, 0, "StyleData", "EquationGroupAligned", "Printout",ExpressionUUID->"706a3000-5899-4427-8393-9f3b3972872c"], +Cell[132532, 4073, 165, 2, 31, 63, 0, "StyleData", "EquationGroupAligned", "DoubleSpacedPrintout",ExpressionUUID->"b41994d9-9c65-4838-a291-33777d6a8e9a"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[132542, 4079, 95, 0, 54, "Subsection",ExpressionUUID->"35b4143c-2cb0-48cb-b828-82d5fa9ca0e7"], +Cell[132746, 4081, 95, 0, 54, "Subsection",ExpressionUUID->"35b4143c-2cb0-48cb-b828-82d5fa9ca0e7"], Cell[CellGroupData[{ -Cell[132662, 4083, 996, 26, 47, 35, 0, "StyleData", "EquationNumbered", "All",ExpressionUUID->"a8028357-8415-40b6-b25c-0df080c05ad3", +Cell[132866, 4085, 996, 26, 47, 35, 0, "StyleData", "EquationNumbered", "All",ExpressionUUID->"a8028357-8415-40b6-b25c-0df080c05ad3", CounterIncrements->"EquationNumbered", MenuCommandKey->"6"], -Cell[133661, 4111, 157, 2, 63, 51, 0, "StyleData", "EquationNumbered", "Presentation",ExpressionUUID->"0ca37c99-9247-4bac-bfd7-25a74f14fc57"], -Cell[133821, 4115, 137, 2, 43, 47, 0, "StyleData", "EquationNumbered", "Printout",ExpressionUUID->"4cf83323-f9eb-49d2-9d7c-4ff0fbec939e"], -Cell[133961, 4119, 140, 2, 43, 50, 0, "StyleData", "EquationNumbered", "PrintoutPro",ExpressionUUID->"f01fb0ba-7e25-4734-8379-d63e4d0e1422"] +Cell[133865, 4113, 157, 2, 63, 51, 0, "StyleData", "EquationNumbered", "Presentation",ExpressionUUID->"0ca37c99-9247-4bac-bfd7-25a74f14fc57"], +Cell[134025, 4117, 137, 2, 43, 47, 0, "StyleData", "EquationNumbered", "Printout",ExpressionUUID->"4cf83323-f9eb-49d2-9d7c-4ff0fbec939e"], +Cell[134165, 4121, 140, 2, 43, 50, 0, "StyleData", "EquationNumbered", "PrintoutPro",ExpressionUUID->"f01fb0ba-7e25-4734-8379-d63e4d0e1422"] }, Open ]], Cell[CellGroupData[{ -Cell[134138, 4126, 1060, 28, 35, 40, 0, "StyleData", "EquationGroupNumbered", "All",ExpressionUUID->"de76fe09-7c4f-439c-b7b5-817d66415c84", +Cell[134342, 4128, 1060, 28, 35, 40, 0, "StyleData", "EquationGroupNumbered", "All",ExpressionUUID->"de76fe09-7c4f-439c-b7b5-817d66415c84", CounterIncrements->"EquationNumbered", StyleMenuListing->None], -Cell[135201, 4156, 160, 2, 46, 56, 0, "StyleData", "EquationGroupNumbered", "Presentation",ExpressionUUID->"3a64e624-5b05-4b40-9e30-9c307c89aa85"], -Cell[135364, 4160, 154, 2, 31, 52, 0, "StyleData", "EquationGroupNumbered", "Printout",ExpressionUUID->"208f5f49-b4ea-46a0-8110-4fe349dafdfc"], -Cell[135521, 4164, 166, 2, 31, 64, 0, "StyleData", "EquationGroupNumbered", "DoubleSpacedPrintout",ExpressionUUID->"f9962085-f474-4e2e-82ea-e76a0e8e9dbf"] +Cell[135405, 4158, 160, 2, 46, 56, 0, "StyleData", "EquationGroupNumbered", "Presentation",ExpressionUUID->"3a64e624-5b05-4b40-9e30-9c307c89aa85"], +Cell[135568, 4162, 154, 2, 31, 52, 0, "StyleData", "EquationGroupNumbered", "Printout",ExpressionUUID->"208f5f49-b4ea-46a0-8110-4fe349dafdfc"], +Cell[135725, 4166, 166, 2, 31, 64, 0, "StyleData", "EquationGroupNumbered", "DoubleSpacedPrintout",ExpressionUUID->"f9962085-f474-4e2e-82ea-e76a0e8e9dbf"] }, Open ]], Cell[CellGroupData[{ -Cell[135724, 4171, 1291, 33, 35, 47, 0, "StyleData", "EquationGroupAlignedNumbered", "All",ExpressionUUID->"08553486-b3f9-4169-a984-1be9860ff3b8", +Cell[135928, 4173, 1291, 33, 35, 47, 0, "StyleData", "EquationGroupAlignedNumbered", "All",ExpressionUUID->"08553486-b3f9-4169-a984-1be9860ff3b8", CounterIncrements->"EquationNumbered", StyleMenuListing->None], -Cell[137018, 4206, 167, 2, 46, 63, 0, "StyleData", "EquationGroupAlignedNumbered", "Presentation",ExpressionUUID->"dee137cd-3562-4e1c-894e-dd4585ed0973"], -Cell[137188, 4210, 161, 2, 31, 59, 0, "StyleData", "EquationGroupAlignedNumbered", "Printout",ExpressionUUID->"4654ddb4-3caa-4cc3-b2d1-76bda5ddb02f"], -Cell[137352, 4214, 173, 2, 31, 71, 0, "StyleData", "EquationGroupAlignedNumbered", "DoubleSpacedPrintout",ExpressionUUID->"0a4f508b-6ff0-4d62-b09b-0f78fd3e351c"] +Cell[137222, 4208, 167, 2, 46, 63, 0, "StyleData", "EquationGroupAlignedNumbered", "Presentation",ExpressionUUID->"dee137cd-3562-4e1c-894e-dd4585ed0973"], +Cell[137392, 4212, 161, 2, 31, 59, 0, "StyleData", "EquationGroupAlignedNumbered", "Printout",ExpressionUUID->"4654ddb4-3caa-4cc3-b2d1-76bda5ddb02f"], +Cell[137556, 4216, 173, 2, 31, 71, 0, "StyleData", "EquationGroupAlignedNumbered", "DoubleSpacedPrintout",ExpressionUUID->"0a4f508b-6ff0-4d62-b09b-0f78fd3e351c"] }, Open ]], Cell[CellGroupData[{ -Cell[137562, 4221, 167, 4, 41, 33, 0, "StyleData", "EquationNumber", "All",ExpressionUUID->"db73f539-60e1-410e-90c4-45db03e9f839", +Cell[137766, 4223, 167, 4, 41, 33, 0, "StyleData", "EquationNumber", "All",ExpressionUUID->"db73f539-60e1-410e-90c4-45db03e9f839", StyleMenuListing->None], -Cell[137732, 4227, 135, 2, 41, 49, 0, "StyleData", "EquationNumber", "Presentation",ExpressionUUID->"fd631294-e1cf-4480-a219-1078aa1fede2"], -Cell[137870, 4231, 131, 2, 41, 45, 0, "StyleData", "EquationNumber", "Printout",ExpressionUUID->"70ca447c-f4f4-4987-a7e9-eca8c28fcdf5"], -Cell[138004, 4235, 143, 2, 41, 57, 0, "StyleData", "EquationNumber", "DoubleSpacedPrintout",ExpressionUUID->"41b2b1be-1c06-40aa-a738-7690a2425e56"] +Cell[137936, 4229, 135, 2, 41, 49, 0, "StyleData", "EquationNumber", "Presentation",ExpressionUUID->"fd631294-e1cf-4480-a219-1078aa1fede2"], +Cell[138074, 4233, 131, 2, 41, 45, 0, "StyleData", "EquationNumber", "Printout",ExpressionUUID->"70ca447c-f4f4-4987-a7e9-eca8c28fcdf5"], +Cell[138208, 4237, 143, 2, 41, 57, 0, "StyleData", "EquationNumber", "DoubleSpacedPrintout",ExpressionUUID->"41b2b1be-1c06-40aa-a738-7690a2425e56"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[138196, 4243, 101, 0, 54, "Subsection",ExpressionUUID->"97bb6c3e-0b87-4d5a-ad79-3c827596cde2"], -Cell[138300, 4245, 114, 2, 41, 31, 0, "StyleData", "EquationGrid", "All",ExpressionUUID->"8abbcf7c-3029-4fb7-b05c-02143d69330a", +Cell[138400, 4245, 101, 0, 54, "Subsection",ExpressionUUID->"97bb6c3e-0b87-4d5a-ad79-3c827596cde2"], +Cell[138504, 4247, 114, 2, 41, 31, 0, "StyleData", "EquationGrid", "All",ExpressionUUID->"8abbcf7c-3029-4fb7-b05c-02143d69330a", StyleMenuListing->None], -Cell[138417, 4249, 115, 2, 41, 32, 0, "StyleData", "SplitEquation", "All",ExpressionUUID->"a8fb52b0-175f-4eaf-a40e-063050399499", +Cell[138621, 4251, 115, 2, 41, 32, 0, "StyleData", "SplitEquation", "All",ExpressionUUID->"a8fb52b0-175f-4eaf-a40e-063050399499", StyleMenuListing->None], -Cell[138535, 4253, 111, 2, 41, 28, 0, "StyleData", "Piecewise", "All",ExpressionUUID->"c80a159d-2016-4d53-b64d-83f584faf920", +Cell[138739, 4255, 111, 2, 41, 28, 0, "StyleData", "Piecewise", "All",ExpressionUUID->"c80a159d-2016-4d53-b64d-83f584faf920", StyleMenuListing->None], -Cell[138649, 4257, 108, 2, 41, 25, 0, "StyleData", "Matrix", "All",ExpressionUUID->"37e4d494-a28a-43f9-9db3-4c4d41402e11", +Cell[138853, 4259, 108, 2, 41, 25, 0, "StyleData", "Matrix", "All",ExpressionUUID->"37e4d494-a28a-43f9-9db3-4c4d41402e11", StyleMenuListing->None] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[138806, 4265, 90, 0, 67, "Section",ExpressionUUID->"5b4d37c9-32f1-4151-ab02-535882c08648"], -Cell[138899, 4267, 115, 2, 43, 32, 0, "StyleData", "GenericButton", "All",ExpressionUUID->"8274bfc2-bbd4-49b9-aa58-a02a28cc3c3e", +Cell[139010, 4267, 90, 0, 67, "Section",ExpressionUUID->"5b4d37c9-32f1-4151-ab02-535882c08648"], +Cell[139103, 4269, 115, 2, 43, 32, 0, "StyleData", "GenericButton", "All",ExpressionUUID->"8274bfc2-bbd4-49b9-aa58-a02a28cc3c3e", StyleMenuListing->None], -Cell[139017, 4271, 262, 5, 41, 23, 0, "StyleData", "XRef", "All",ExpressionUUID->"361b90bc-2eba-4e52-a4cb-b0f653efd129", +Cell[139221, 4273, 262, 5, 41, 23, 0, "StyleData", "XRef", "All",ExpressionUUID->"361b90bc-2eba-4e52-a4cb-b0f653efd129", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[139316, 4281, 84, 0, 67, "Section",ExpressionUUID->"4c373ed8-f8df-452d-9143-dec986efff40"], +Cell[139520, 4283, 84, 0, 67, "Section",ExpressionUUID->"4c373ed8-f8df-452d-9143-dec986efff40"], Cell[CellGroupData[{ -Cell[139425, 4285, 385, 10, 56, 34, 0, "StyleData", "BackmatterGroup", "All",ExpressionUUID->"ab3808a9-c7f6-4c30-8544-1fff6e115b98", +Cell[139629, 4287, 385, 10, 56, 34, 0, "StyleData", "BackmatterGroup", "All",ExpressionUUID->"ab3808a9-c7f6-4c30-8544-1fff6e115b98", StyleMenuListing->None], -Cell[139813, 4297, 205, 5, 18, 50, 0, "StyleData", "BackmatterGroup", "Presentation",ExpressionUUID->"e8800348-c800-4532-b167-a5cdf65c5e48"], -Cell[140021, 4304, 176, 4, 18, 46, 0, "StyleData", "BackmatterGroup", "Printout",ExpressionUUID->"590d4442-9411-4a42-861a-8b30d537dc8b"], -Cell[140200, 4310, 188, 4, 18, 58, 0, "StyleData", "BackmatterGroup", "DoubleSpacedPrintout",ExpressionUUID->"516da40b-c4b8-427d-914e-09e049070a74"] +Cell[140017, 4299, 205, 5, 18, 50, 0, "StyleData", "BackmatterGroup", "Presentation",ExpressionUUID->"e8800348-c800-4532-b167-a5cdf65c5e48"], +Cell[140225, 4306, 176, 4, 18, 46, 0, "StyleData", "BackmatterGroup", "Printout",ExpressionUUID->"590d4442-9411-4a42-861a-8b30d537dc8b"], +Cell[140404, 4312, 188, 4, 18, 58, 0, "StyleData", "BackmatterGroup", "DoubleSpacedPrintout",ExpressionUUID->"516da40b-c4b8-427d-914e-09e049070a74"] }, Open ]], Cell[CellGroupData[{ -Cell[140425, 4319, 85, 0, 54, "Subsection",ExpressionUUID->"8389013b-0892-4d71-85e5-d85b1e0d4c98"], +Cell[140629, 4321, 85, 0, 54, "Subsection",ExpressionUUID->"8389013b-0892-4d71-85e5-d85b1e0d4c98"], Cell[CellGroupData[{ -Cell[140535, 4323, 1071, 26, 100, 34, 0, "StyleData", "AppendixSection", "All",ExpressionUUID->"61b2e885-a2b2-459f-b9b0-b38b5591b967", +Cell[140739, 4325, 1071, 26, 100, 34, 0, "StyleData", "AppendixSection", "All",ExpressionUUID->"61b2e885-a2b2-459f-b9b0-b38b5591b967", CounterIncrements->{"AppendixSection", "SectionHeader", "SubsectionHeader", "SubsubsectionHeader", "SubsubsubsectionHeader"}, CounterAssignments->{{"AppendixEquation", 0}}, StyleMenuListing->None], -Cell[141609, 4351, 156, 2, 142, 50, 0, "StyleData", "AppendixSection", "Presentation",ExpressionUUID->"b3ff03f3-682f-4fce-ac19-5f38a1d10046"], -Cell[141768, 4355, 178, 4, 86, 46, 0, "StyleData", "AppendixSection", "Printout",ExpressionUUID->"6b9d3ce1-c4e7-49bc-92bd-f5213f45c173"], -Cell[141949, 4361, 190, 4, 86, 58, 0, "StyleData", "AppendixSection", "DoubleSpacedPrintout",ExpressionUUID->"7f615d77-df42-45d3-8fcc-27a27c753896"] +Cell[141813, 4353, 156, 2, 142, 50, 0, "StyleData", "AppendixSection", "Presentation",ExpressionUUID->"b3ff03f3-682f-4fce-ac19-5f38a1d10046"], +Cell[141972, 4357, 178, 4, 86, 46, 0, "StyleData", "AppendixSection", "Printout",ExpressionUUID->"6b9d3ce1-c4e7-49bc-92bd-f5213f45c173"], +Cell[142153, 4363, 190, 4, 86, 58, 0, "StyleData", "AppendixSection", "DoubleSpacedPrintout",ExpressionUUID->"7f615d77-df42-45d3-8fcc-27a27c753896"] }, Open ]], Cell[CellGroupData[{ -Cell[142176, 4370, 200, 4, 41, 39, 0, "StyleData", "AppendixSectionLabel", "All",ExpressionUUID->"45c2c25c-ec4d-4a27-8230-f63890c7fba5", +Cell[142380, 4372, 200, 4, 41, 39, 0, "StyleData", "AppendixSectionLabel", "All",ExpressionUUID->"45c2c25c-ec4d-4a27-8230-f63890c7fba5", StyleMenuListing->None], -Cell[142379, 4376, 141, 2, 41, 55, 0, "StyleData", "AppendixSectionLabel", "Presentation",ExpressionUUID->"10d7e5f2-eb57-49f5-b7aa-638f4a048b78"], -Cell[142523, 4380, 137, 2, 41, 51, 0, "StyleData", "AppendixSectionLabel", "Printout",ExpressionUUID->"3a8a4f07-da1c-496f-8c11-6a0852e598c6"], -Cell[142663, 4384, 149, 2, 41, 63, 0, "StyleData", "AppendixSectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"dd0ba186-183e-4b47-b788-ee36b31de5fc"] +Cell[142583, 4378, 141, 2, 41, 55, 0, "StyleData", "AppendixSectionLabel", "Presentation",ExpressionUUID->"10d7e5f2-eb57-49f5-b7aa-638f4a048b78"], +Cell[142727, 4382, 137, 2, 41, 51, 0, "StyleData", "AppendixSectionLabel", "Printout",ExpressionUUID->"3a8a4f07-da1c-496f-8c11-6a0852e598c6"], +Cell[142867, 4386, 149, 2, 41, 63, 0, "StyleData", "AppendixSectionLabel", "DoubleSpacedPrintout",ExpressionUUID->"dd0ba186-183e-4b47-b788-ee36b31de5fc"] }, Open ]], Cell[CellGroupData[{ -Cell[142849, 4391, 387, 10, 37, 27, 0, "StyleData", "Appendix", "All",ExpressionUUID->"a475d35d-803d-47ba-8617-8b0ce7c0e040", +Cell[143053, 4393, 387, 10, 37, 27, 0, "StyleData", "Appendix", "All",ExpressionUUID->"a475d35d-803d-47ba-8617-8b0ce7c0e040", CounterIncrements->"Appendix", CounterAssignments->{{"Item1Numbered", 0}}, StyleMenuListing->None], -Cell[143239, 4403, 169, 3, 46, 43, 0, "StyleData", "Appendix", "Presentation",ExpressionUUID->"22a854d1-920c-48ab-857d-ab4d4309b56f"], -Cell[143411, 4408, 142, 2, 32, 39, 0, "StyleData", "Appendix", "Printout",ExpressionUUID->"148ce29c-79f7-49bb-afa3-ea276605509a"], -Cell[143556, 4412, 176, 3, 32, 51, 0, "StyleData", "Appendix", "DoubleSpacedPrintout",ExpressionUUID->"7b5dc9f4-0ebe-4a2f-9538-99dd9cbfe83e"] +Cell[143443, 4405, 169, 3, 46, 43, 0, "StyleData", "Appendix", "Presentation",ExpressionUUID->"22a854d1-920c-48ab-857d-ab4d4309b56f"], +Cell[143615, 4410, 142, 2, 32, 39, 0, "StyleData", "Appendix", "Printout",ExpressionUUID->"148ce29c-79f7-49bb-afa3-ea276605509a"], +Cell[143760, 4414, 176, 3, 32, 51, 0, "StyleData", "Appendix", "DoubleSpacedPrintout",ExpressionUUID->"7b5dc9f4-0ebe-4a2f-9538-99dd9cbfe83e"] }, Open ]], Cell[CellGroupData[{ -Cell[143769, 4420, 851, 20, 47, 35, 0, "StyleData", "AppendixEquation", "All",ExpressionUUID->"b3423df1-43f2-42de-89ff-132a7513165f", +Cell[143973, 4422, 851, 20, 47, 35, 0, "StyleData", "AppendixEquation", "All",ExpressionUUID->"b3423df1-43f2-42de-89ff-132a7513165f", CounterIncrements->"AppendixEquation", StyleMenuListing->None], -Cell[144623, 4442, 156, 2, 63, 51, 0, "StyleData", "AppendixEquation", "Presentation",ExpressionUUID->"62180be2-d27b-42fc-82b2-da9802a1348c"], -Cell[144782, 4446, 117, 1, 38, 47, 0, "StyleData", "AppendixEquation", "Printout",ExpressionUUID->"a2739f51-67f1-4afd-a322-fca55c43f3d3"], -Cell[144902, 4449, 129, 1, 38, 59, 0, "StyleData", "AppendixEquation", "DoubleSpacedPrintout",ExpressionUUID->"e4ad7472-11ca-4873-88b9-a7fcbe2c2590"] +Cell[144827, 4444, 156, 2, 63, 51, 0, "StyleData", "AppendixEquation", "Presentation",ExpressionUUID->"62180be2-d27b-42fc-82b2-da9802a1348c"], +Cell[144986, 4448, 117, 1, 38, 47, 0, "StyleData", "AppendixEquation", "Printout",ExpressionUUID->"a2739f51-67f1-4afd-a322-fca55c43f3d3"], +Cell[145106, 4451, 129, 1, 38, 59, 0, "StyleData", "AppendixEquation", "DoubleSpacedPrintout",ExpressionUUID->"e4ad7472-11ca-4873-88b9-a7fcbe2c2590"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[145080, 4456, 113, 2, 54, "Subsection",ExpressionUUID->"ecf8e0fa-e63e-4f61-bfc2-244b35214626"], +Cell[145284, 4458, 113, 2, 54, "Subsection",ExpressionUUID->"ecf8e0fa-e63e-4f61-bfc2-244b35214626"], Cell[CellGroupData[{ -Cell[145218, 4462, 664, 16, 100, 33, 0, "StyleData", "EndnoteSection", "All",ExpressionUUID->"bbf7332d-eaef-4d90-9bbf-e4164c912f0b", +Cell[145422, 4464, 664, 16, 100, 33, 0, "StyleData", "EndnoteSection", "All",ExpressionUUID->"bbf7332d-eaef-4d90-9bbf-e4164c912f0b", CounterIncrements->{"Section", "SectionHeader", "SubsectionHeader", "SubsubsectionHeader", "SubsubsubsectionHeader"}, CounterAssignments->{{"Subsection", 0}, {"Subsubsection", 0}, {"Endnote", 0}}, StyleMenuListing->None], -Cell[145885, 4480, 155, 2, 142, 49, 0, "StyleData", "EndnoteSection", "Presentation",ExpressionUUID->"a0c1928b-407f-4af3-9f41-428ffba7b05f"], -Cell[146043, 4484, 148, 2, 86, 45, 0, "StyleData", "EndnoteSection", "Printout",ExpressionUUID->"758aea71-8747-4a22-aee9-d2497c5b5a45"], -Cell[146194, 4488, 160, 2, 86, 57, 0, "StyleData", "EndnoteSection", "DoubleSpacedPrintout",ExpressionUUID->"df0a4f58-97c5-4834-9428-7df6d5489dc3"] +Cell[146089, 4482, 155, 2, 142, 49, 0, "StyleData", "EndnoteSection", "Presentation",ExpressionUUID->"a0c1928b-407f-4af3-9f41-428ffba7b05f"], +Cell[146247, 4486, 148, 2, 86, 45, 0, "StyleData", "EndnoteSection", "Printout",ExpressionUUID->"758aea71-8747-4a22-aee9-d2497c5b5a45"], +Cell[146398, 4490, 160, 2, 86, 57, 0, "StyleData", "EndnoteSection", "DoubleSpacedPrintout",ExpressionUUID->"df0a4f58-97c5-4834-9428-7df6d5489dc3"] }, Open ]], Cell[CellGroupData[{ -Cell[146391, 4495, 383, 11, 37, 26, 0, "StyleData", "Endnote", "All",ExpressionUUID->"58ac9b5e-fba1-4e2c-86c1-380f19556e7d", +Cell[146595, 4497, 383, 11, 37, 26, 0, "StyleData", "Endnote", "All",ExpressionUUID->"58ac9b5e-fba1-4e2c-86c1-380f19556e7d", CounterIncrements->"Endnote", StyleMenuListing->None], -Cell[146777, 4508, 146, 2, 46, 42, 0, "StyleData", "Endnote", "Presentation",ExpressionUUID->"aa054308-e35d-41d6-be96-764d56dd1fa8"], -Cell[146926, 4512, 165, 3, 42, 38, 0, "StyleData", "Endnote", "Printout",ExpressionUUID->"fee95027-9c1b-4075-9f80-efb4aec89303"], -Cell[147094, 4517, 199, 4, 42, 50, 0, "StyleData", "Endnote", "DoubleSpacedPrintout",ExpressionUUID->"c3ec8912-d425-429f-bd6b-d68c7c35de59"] +Cell[146981, 4510, 146, 2, 46, 42, 0, "StyleData", "Endnote", "Presentation",ExpressionUUID->"aa054308-e35d-41d6-be96-764d56dd1fa8"], +Cell[147130, 4514, 165, 3, 42, 38, 0, "StyleData", "Endnote", "Printout",ExpressionUUID->"fee95027-9c1b-4075-9f80-efb4aec89303"], +Cell[147298, 4519, 199, 4, 42, 50, 0, "StyleData", "Endnote", "DoubleSpacedPrintout",ExpressionUUID->"c3ec8912-d425-429f-bd6b-d68c7c35de59"] }, Open ]], Cell[CellGroupData[{ -Cell[147330, 4526, 383, 9, 41, 31, 0, "StyleData", "EndnoteLabel", "All",ExpressionUUID->"0d604cf4-3f68-4d40-9cfb-252bfb9418ef", +Cell[147534, 4528, 383, 9, 41, 31, 0, "StyleData", "EndnoteLabel", "All",ExpressionUUID->"0d604cf4-3f68-4d40-9cfb-252bfb9418ef", CounterIncrements->"EndnoteLabel", StyleMenuListing->None], -Cell[147716, 4537, 98, 0, 41, 43, 0, "StyleData", "EndnoteLabel", "Printout",ExpressionUUID->"877b8244-4e12-4813-b5cd-fa437dd2fa00"] +Cell[147920, 4539, 98, 0, 41, 43, 0, "StyleData", "EndnoteLabel", "Printout",ExpressionUUID->"877b8244-4e12-4813-b5cd-fa437dd2fa00"] }, Open ]], Cell[CellGroupData[{ -Cell[147851, 4542, 203, 5, 41, 32, 0, "StyleData", "EndnoteNumber", "All",ExpressionUUID->"fa8d8a1d-087a-48a4-aee5-912ff34d62ee", +Cell[148055, 4544, 203, 5, 41, 32, 0, "StyleData", "EndnoteNumber", "All",ExpressionUUID->"fa8d8a1d-087a-48a4-aee5-912ff34d62ee", CounterIncrements->"EndnoteNumber", StyleMenuListing->None], -Cell[148057, 4549, 99, 0, 41, 44, 0, "StyleData", "EndnoteNumber", "Printout",ExpressionUUID->"2d6e2a42-b7a0-4002-9181-d1561c214d0a"] +Cell[148261, 4551, 99, 0, 41, 44, 0, "StyleData", "EndnoteNumber", "Printout",ExpressionUUID->"2d6e2a42-b7a0-4002-9181-d1561c214d0a"] }, Open ]], Cell[CellGroupData[{ -Cell[148193, 4554, 312, 7, 41, 26, 0, "StyleData", "NoteKey", "All",ExpressionUUID->"c45c0392-fcc4-46cc-94f9-019d9ad017c2", +Cell[148397, 4556, 312, 7, 41, 26, 0, "StyleData", "NoteKey", "All",ExpressionUUID->"c45c0392-fcc4-46cc-94f9-019d9ad017c2", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[148508, 4563, 138, 2, 41, 42, 0, "StyleData", "NoteKey", "Presentation",ExpressionUUID->"9d529ed7-c673-4a89-a69f-ab277f6bff87"], -Cell[148649, 4567, 122, 2, 41, 38, 0, "StyleData", "NoteKey", "Printout",ExpressionUUID->"5d6517d6-14d7-4a57-bcd8-cf8189f8dd92"], -Cell[148774, 4571, 134, 2, 41, 50, 0, "StyleData", "NoteKey", "DoubleSpacedPrintout",ExpressionUUID->"81f02775-8d5b-48df-82d1-36428250cfbd"] +Cell[148712, 4565, 138, 2, 41, 42, 0, "StyleData", "NoteKey", "Presentation",ExpressionUUID->"9d529ed7-c673-4a89-a69f-ab277f6bff87"], +Cell[148853, 4569, 122, 2, 41, 38, 0, "StyleData", "NoteKey", "Printout",ExpressionUUID->"5d6517d6-14d7-4a57-bcd8-cf8189f8dd92"], +Cell[148978, 4573, 134, 2, 41, 50, 0, "StyleData", "NoteKey", "DoubleSpacedPrintout",ExpressionUUID->"81f02775-8d5b-48df-82d1-36428250cfbd"] }, Open ]], Cell[CellGroupData[{ -Cell[148945, 4578, 315, 8, 41, 36, 0, "StyleData", "EndnoteReturnLink", "All",ExpressionUUID->"4df7ef4d-7e77-4560-bfe9-9dd613af5982", +Cell[149149, 4580, 315, 8, 41, 36, 0, "StyleData", "EndnoteReturnLink", "All",ExpressionUUID->"4df7ef4d-7e77-4560-bfe9-9dd613af5982", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[149263, 4588, 141, 2, 41, 52, 0, "StyleData", "EndnoteReturnLink", "Presentation",ExpressionUUID->"35ee7de0-5080-41e1-ad6e-f402b5667e59"], -Cell[149407, 4592, 171, 3, 41, 48, 0, "StyleData", "EndnoteReturnLink", "Printout",ExpressionUUID->"3878c267-676f-4525-9db6-2193459b77fd"], -Cell[149581, 4597, 183, 3, 41, 60, 0, "StyleData", "EndnoteReturnLink", "DoubleSpacedPrintout",ExpressionUUID->"ebaed0d0-8e67-49b0-bae5-41e399145b7e"] +Cell[149467, 4590, 141, 2, 41, 52, 0, "StyleData", "EndnoteReturnLink", "Presentation",ExpressionUUID->"35ee7de0-5080-41e1-ad6e-f402b5667e59"], +Cell[149611, 4594, 171, 3, 41, 48, 0, "StyleData", "EndnoteReturnLink", "Printout",ExpressionUUID->"3878c267-676f-4525-9db6-2193459b77fd"], +Cell[149785, 4599, 183, 3, 41, 60, 0, "StyleData", "EndnoteReturnLink", "DoubleSpacedPrintout",ExpressionUUID->"ebaed0d0-8e67-49b0-bae5-41e399145b7e"] }, Open ]], Cell[CellGroupData[{ -Cell[149801, 4605, 460, 12, 41, 23, 0, "StyleData", "Note", "All",ExpressionUUID->"9ccc865c-b149-4ba3-ab3f-f8c08d4acafb", +Cell[150005, 4607, 460, 12, 41, 23, 0, "StyleData", "Note", "All",ExpressionUUID->"9ccc865c-b149-4ba3-ab3f-f8c08d4acafb", StyleMenuListing->None], -Cell[150264, 4619, 109, 1, 41, 35, 0, "StyleData", "Note", "Printout",ExpressionUUID->"ec9df043-bc4a-4719-9877-98bde68cfcc7"], -Cell[150376, 4622, 121, 1, 41, 47, 0, "StyleData", "Note", "DoubleSpacedPrintout",ExpressionUUID->"14647831-f661-4800-b2ab-0597370c79cc"] +Cell[150468, 4621, 109, 1, 41, 35, 0, "StyleData", "Note", "Printout",ExpressionUUID->"ec9df043-bc4a-4719-9877-98bde68cfcc7"], +Cell[150580, 4624, 121, 1, 41, 47, 0, "StyleData", "Note", "DoubleSpacedPrintout",ExpressionUUID->"14647831-f661-4800-b2ab-0597370c79cc"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[150546, 4629, 87, 0, 54, "Subsection",ExpressionUUID->"6c01b4d8-020c-417e-97a4-421e4891cbdc"], +Cell[150750, 4631, 87, 0, 54, "Subsection",ExpressionUUID->"6c01b4d8-020c-417e-97a4-421e4891cbdc"], Cell[CellGroupData[{ -Cell[150658, 4633, 563, 13, 100, 35, 0, "StyleData", "ReferenceSection", "All",ExpressionUUID->"0b08f050-64b8-4b44-ac78-c9d8c946b26f", +Cell[150862, 4635, 563, 13, 100, 35, 0, "StyleData", "ReferenceSection", "All",ExpressionUUID->"0b08f050-64b8-4b44-ac78-c9d8c946b26f", CounterIncrements->{"SectionHeader", "SubsectionHeader", "SubsubsectionHeader", "SubsubsubsectionHeader"}, CounterAssignments->{{"ReferenceText", 0}, {"BiblioEquation", 0}}, StyleMenuListing->None], -Cell[151224, 4648, 157, 2, 142, 51, 0, "StyleData", "ReferenceSection", "Presentation",ExpressionUUID->"94eb933b-018c-41d9-9a95-04d080873413"], -Cell[151384, 4652, 150, 2, 86, 47, 0, "StyleData", "ReferenceSection", "Printout",ExpressionUUID->"0107c90f-723a-4b75-b27a-8c6bb37d232f"], -Cell[151537, 4656, 162, 2, 86, 59, 0, "StyleData", "ReferenceSection", "DoubleSpacedPrintout",ExpressionUUID->"63c9cfbf-b27f-4043-ad0e-281022d7c49e"] +Cell[151428, 4650, 157, 2, 142, 51, 0, "StyleData", "ReferenceSection", "Presentation",ExpressionUUID->"94eb933b-018c-41d9-9a95-04d080873413"], +Cell[151588, 4654, 150, 2, 86, 47, 0, "StyleData", "ReferenceSection", "Printout",ExpressionUUID->"0107c90f-723a-4b75-b27a-8c6bb37d232f"], +Cell[151741, 4658, 162, 2, 86, 59, 0, "StyleData", "ReferenceSection", "DoubleSpacedPrintout",ExpressionUUID->"63c9cfbf-b27f-4043-ad0e-281022d7c49e"] }, Open ]], Cell[CellGroupData[{ -Cell[151736, 4663, 662, 20, 35, 28, 0, "StyleData", "Reference", "All",ExpressionUUID->"1e1a2de6-771e-48e3-8751-4c2f66d6c11d", +Cell[151940, 4665, 662, 20, 35, 28, 0, "StyleData", "Reference", "All",ExpressionUUID->"1e1a2de6-771e-48e3-8751-4c2f66d6c11d", CounterIncrements->"BibliographyItem", StyleMenuListing->None], -Cell[152401, 4685, 193, 4, 44, 44, 0, "StyleData", "Reference", "Presentation",ExpressionUUID->"d25587e7-04a3-4236-9028-3d7e42e94b44"], -Cell[152597, 4691, 187, 4, 32, 40, 0, "StyleData", "Reference", "Printout",ExpressionUUID->"ab81121d-a597-4105-b76b-259a6a47ff4b"], -Cell[152787, 4697, 199, 4, 32, 52, 0, "StyleData", "Reference", "DoubleSpacedPrintout",ExpressionUUID->"39a3c58b-48d6-4795-afad-cda577ed44ed"] +Cell[152605, 4687, 193, 4, 44, 44, 0, "StyleData", "Reference", "Presentation",ExpressionUUID->"d25587e7-04a3-4236-9028-3d7e42e94b44"], +Cell[152801, 4693, 187, 4, 32, 40, 0, "StyleData", "Reference", "Printout",ExpressionUUID->"ab81121d-a597-4105-b76b-259a6a47ff4b"], +Cell[152991, 4699, 199, 4, 32, 52, 0, "StyleData", "Reference", "DoubleSpacedPrintout",ExpressionUUID->"39a3c58b-48d6-4795-afad-cda577ed44ed"] }, Open ]], Cell[CellGroupData[{ -Cell[153023, 4706, 343, 10, 41, 33, 0, "StyleData", "ReferenceLabel", "All",ExpressionUUID->"fe7d9ef2-e70b-499a-bc61-4fa0d7ce29c9", +Cell[153227, 4708, 343, 10, 41, 33, 0, "StyleData", "ReferenceLabel", "All",ExpressionUUID->"fe7d9ef2-e70b-499a-bc61-4fa0d7ce29c9", CounterIncrements->"RefDingbat", StyleMenuListing->None], -Cell[153369, 4718, 135, 2, 41, 49, 0, "StyleData", "ReferenceLabel", "Presentation",ExpressionUUID->"ac9ef0ec-ffec-42f0-a393-78af214bde32"], -Cell[153507, 4722, 131, 2, 41, 45, 0, "StyleData", "ReferenceLabel", "Printout",ExpressionUUID->"c92dba1a-3ca4-424d-9c16-1c9f806b0f69"], -Cell[153641, 4726, 143, 2, 41, 57, 0, "StyleData", "ReferenceLabel", "DoubleSpacedPrintout",ExpressionUUID->"e5eef551-f038-47d9-806f-baa523e8a65a"] +Cell[153573, 4720, 135, 2, 41, 49, 0, "StyleData", "ReferenceLabel", "Presentation",ExpressionUUID->"ac9ef0ec-ffec-42f0-a393-78af214bde32"], +Cell[153711, 4724, 131, 2, 41, 45, 0, "StyleData", "ReferenceLabel", "Printout",ExpressionUUID->"c92dba1a-3ca4-424d-9c16-1c9f806b0f69"], +Cell[153845, 4728, 143, 2, 41, 57, 0, "StyleData", "ReferenceLabel", "DoubleSpacedPrintout",ExpressionUUID->"e5eef551-f038-47d9-806f-baa523e8a65a"] }, Open ]], -Cell[153799, 4731, 158, 3, 41, 25, 0, "StyleData", "RefSep", "All",ExpressionUUID->"155563c0-04b6-46d0-850d-9e5e14322217", +Cell[154003, 4733, 158, 3, 41, 25, 0, "StyleData", "RefSep", "All",ExpressionUUID->"155563c0-04b6-46d0-850d-9e5e14322217", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[153982, 4738, 417, 10, 41, 32, 0, "StyleData", "RefReturnLink", "All",ExpressionUUID->"b9bd8915-5c2b-46dd-a856-953f7308fb52", +Cell[154186, 4740, 417, 10, 41, 32, 0, "StyleData", "RefReturnLink", "All",ExpressionUUID->"b9bd8915-5c2b-46dd-a856-953f7308fb52", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[154402, 4750, 144, 2, 41, 48, 0, "StyleData", "RefReturnLink", "Presentation",ExpressionUUID->"79ce3fae-d88a-4c96-8024-479ce2a71768"], -Cell[154549, 4754, 128, 2, 41, 44, 0, "StyleData", "RefReturnLink", "Printout",ExpressionUUID->"b9dcf2f5-c91f-4069-8294-bbc97e341b97"], -Cell[154680, 4758, 140, 2, 41, 56, 0, "StyleData", "RefReturnLink", "DoubleSpacedPrintout",ExpressionUUID->"8d358fa6-8fe4-4dc2-8b83-7e204dbe612b"] +Cell[154606, 4752, 144, 2, 41, 48, 0, "StyleData", "RefReturnLink", "Presentation",ExpressionUUID->"79ce3fae-d88a-4c96-8024-479ce2a71768"], +Cell[154753, 4756, 128, 2, 41, 44, 0, "StyleData", "RefReturnLink", "Printout",ExpressionUUID->"b9dcf2f5-c91f-4069-8294-bbc97e341b97"], +Cell[154884, 4760, 140, 2, 41, 56, 0, "StyleData", "RefReturnLink", "DoubleSpacedPrintout",ExpressionUUID->"8d358fa6-8fe4-4dc2-8b83-7e204dbe612b"] }, Open ]], Cell[CellGroupData[{ -Cell[154857, 4765, 444, 11, 38, 35, 0, "StyleData", "RefReturnPointer", "All",ExpressionUUID->"b3291acb-526d-4279-ae8f-71dda896b0ce", +Cell[155061, 4767, 444, 11, 38, 35, 0, "StyleData", "RefReturnPointer", "All",ExpressionUUID->"b3291acb-526d-4279-ae8f-71dda896b0ce", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[155304, 4778, 106, 0, 41, 51, 0, "StyleData", "RefReturnPointer", "Presentation",ExpressionUUID->"a664f696-5268-49f6-9eb9-7711fde162fb"], -Cell[155413, 4780, 131, 2, 41, 47, 0, "StyleData", "RefReturnPointer", "Printout",ExpressionUUID->"44af5347-4fb6-4e8b-969e-02bae9b10a22"], -Cell[155547, 4784, 143, 2, 41, 59, 0, "StyleData", "RefReturnPointer", "DoubleSpacedPrintout",ExpressionUUID->"248d1ae9-4ca1-428d-946f-83a7578f4931"] +Cell[155508, 4780, 106, 0, 41, 51, 0, "StyleData", "RefReturnPointer", "Presentation",ExpressionUUID->"a664f696-5268-49f6-9eb9-7711fde162fb"], +Cell[155617, 4782, 131, 2, 41, 47, 0, "StyleData", "RefReturnPointer", "Printout",ExpressionUUID->"44af5347-4fb6-4e8b-969e-02bae9b10a22"], +Cell[155751, 4786, 143, 2, 41, 59, 0, "StyleData", "RefReturnPointer", "DoubleSpacedPrintout",ExpressionUUID->"248d1ae9-4ca1-428d-946f-83a7578f4931"] }, Open ]], Cell[CellGroupData[{ -Cell[155727, 4791, 440, 12, 25, 38, 0, "StyleData", "ReferenceSourceLink", "All",ExpressionUUID->"a94a73a8-0f05-45f7-b9eb-64e70d37739b", +Cell[155931, 4793, 440, 12, 25, 38, 0, "StyleData", "ReferenceSourceLink", "All",ExpressionUUID->"a94a73a8-0f05-45f7-b9eb-64e70d37739b", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[156170, 4805, 134, 2, 41, 50, 0, "StyleData", "ReferenceSourceLink", "Printout",ExpressionUUID->"9b58f691-8fc9-488c-9d96-731f93ce74c5"] +Cell[156374, 4807, 134, 2, 41, 50, 0, "StyleData", "ReferenceSourceLink", "Printout",ExpressionUUID->"9b58f691-8fc9-488c-9d96-731f93ce74c5"] }, Open ]], -Cell[156319, 4810, 120, 2, 41, 37, 0, "StyleData", "ReferenceSourceURL", "All",ExpressionUUID->"9c283824-4012-4fee-85ab-07685612f0c5", +Cell[156523, 4812, 120, 2, 41, 37, 0, "StyleData", "ReferenceSourceURL", "All",ExpressionUUID->"9c283824-4012-4fee-85ab-07685612f0c5", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[156464, 4816, 423, 9, 41, 27, 0, "StyleData", "Citation", "All",ExpressionUUID->"495dd1b5-6f6d-40ee-b4d4-4161dc2ff0a1", +Cell[156668, 4818, 423, 9, 41, 27, 0, "StyleData", "Citation", "All",ExpressionUUID->"495dd1b5-6f6d-40ee-b4d4-4161dc2ff0a1", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[156890, 4827, 139, 2, 41, 43, 0, "StyleData", "Citation", "Presentation",ExpressionUUID->"35308645-3408-429d-ba11-5a296bec24d4"], -Cell[157032, 4831, 123, 2, 41, 39, 0, "StyleData", "Citation", "Printout",ExpressionUUID->"030ff901-74c3-45c1-b4ca-959a8c52b138"], -Cell[157158, 4835, 135, 2, 41, 51, 0, "StyleData", "Citation", "DoubleSpacedPrintout",ExpressionUUID->"38487ee9-bb4c-402d-ade7-e1256ae67353"] +Cell[157094, 4829, 139, 2, 41, 43, 0, "StyleData", "Citation", "Presentation",ExpressionUUID->"35308645-3408-429d-ba11-5a296bec24d4"], +Cell[157236, 4833, 123, 2, 41, 39, 0, "StyleData", "Citation", "Printout",ExpressionUUID->"030ff901-74c3-45c1-b4ca-959a8c52b138"], +Cell[157362, 4837, 135, 2, 41, 51, 0, "StyleData", "Citation", "DoubleSpacedPrintout",ExpressionUUID->"38487ee9-bb4c-402d-ade7-e1256ae67353"] }, Open ]], Cell[CellGroupData[{ -Cell[157330, 4842, 310, 7, 41, 25, 0, "StyleData", "RefKey", "All",ExpressionUUID->"ed18dfe1-60b0-4e6e-bd3c-beb875c1de25", +Cell[157534, 4844, 310, 7, 41, 25, 0, "StyleData", "RefKey", "All",ExpressionUUID->"ed18dfe1-60b0-4e6e-bd3c-beb875c1de25", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[157643, 4851, 137, 2, 41, 41, 0, "StyleData", "RefKey", "Presentation",ExpressionUUID->"7145f8de-f685-4edd-a771-3c991c92a356"], -Cell[157783, 4855, 121, 2, 41, 37, 0, "StyleData", "RefKey", "Printout",ExpressionUUID->"9012fcf0-5dd8-4d03-b8b9-09b6a472539b"], -Cell[157907, 4859, 133, 2, 41, 49, 0, "StyleData", "RefKey", "DoubleSpacedPrintout",ExpressionUUID->"04db28d6-ce0c-4404-ba36-c2d1d56f9240"] -}, Open ]], -Cell[CellGroupData[{ -Cell[158077, 4866, 128, 2, 45, "Subsubsection",ExpressionUUID->"b0a98687-19a0-40da-80e1-a52d62651fc3"], -Cell[158208, 4870, 138, 1, 20, "ReferenceTemplate",ExpressionUUID->"474c8e0c-14d2-4bf7-ab02-f45ffaa38397"], -Cell[158349, 4873, 141, 1, 20, "ReferenceTemplate",ExpressionUUID->"bd5a941b-01f6-470f-a311-9beb2c7b2d4b"], -Cell[158493, 4876, 141, 1, 20, "ReferenceTemplate",ExpressionUUID->"116e5e3e-a123-4be9-8b15-050177d4f5c3"], -Cell[158637, 4879, 137, 1, 20, "ReferenceTemplate",ExpressionUUID->"54935df7-9ca5-4b2b-9338-6e2624c059a1"], -Cell[158777, 4882, 140, 1, 20, "ReferenceTemplate",ExpressionUUID->"8b40c7b2-cbdb-412b-aa73-5af7e0a0cd65"], -Cell[158920, 4885, 139, 1, 20, "ReferenceTemplate",ExpressionUUID->"039796cb-fde3-48c5-995e-2dc55bf7eadf"], -Cell[159062, 4888, 96, 0, 20, "ReferenceTemplate",ExpressionUUID->"9ade125f-ced2-4ed1-83a2-54342cfe6a62"], -Cell[159161, 4890, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"244ec834-21a2-47ba-811d-34e0b05f8f70"], -Cell[159268, 4892, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"bfd55885-352f-4690-a5ac-10ba136895b4"], -Cell[159375, 4894, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"8cb12ce5-9629-4779-8f8c-252f82cf4494"], -Cell[159482, 4896, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"7079e4c5-f729-4b21-a0cd-76db466b160d"], -Cell[159589, 4898, 111, 0, 20, "ReferenceTemplate",ExpressionUUID->"9582dea3-06fb-4904-b953-8cf0377be11c"], -Cell[159703, 4900, 111, 0, 20, "ReferenceTemplate",ExpressionUUID->"0f128192-0131-470c-a523-71c99ec6ea1e"], -Cell[CellGroupData[{ -Cell[159839, 4904, 100, 0, 32, "Subsubsubsection",ExpressionUUID->"db4b3603-1985-43b6-9b52-4a7c6c798e79"], -Cell[159942, 4906, 248, 5, 33, "ReferenceTemplate",ExpressionUUID->"4d5d5832-ac78-4956-8d2a-56d6fa6d843b"], -Cell[160193, 4913, 209, 4, 20, "ReferenceTemplate",ExpressionUUID->"d051e348-e469-4f69-92b0-b9b0e6942b56"], -Cell[160405, 4919, 234, 4, 33, "ReferenceTemplate",ExpressionUUID->"9557b6c1-f76c-409c-a16c-4b0e2333735e"], -Cell[160642, 4925, 196, 4, 20, "ReferenceTemplate",ExpressionUUID->"c774018b-5f0f-42cc-b7f9-f4519493a2ef"], -Cell[160841, 4931, 229, 4, 33, "ReferenceTemplate",ExpressionUUID->"425c1ff8-0154-4ade-9b1d-6980d6615365"], -Cell[161073, 4937, 193, 4, 20, "ReferenceTemplate",ExpressionUUID->"aae18164-00ff-42a5-ba53-2f7bc1edad5c"], -Cell[161269, 4943, 216, 4, 20, "ReferenceTemplate",ExpressionUUID->"670c0731-a71a-4bb8-b2bb-0295c6282679"], -Cell[161488, 4949, 180, 4, 20, "ReferenceTemplate",ExpressionUUID->"fbded6b6-f059-4d96-b906-05451cfaacfe"], -Cell[161671, 4955, 242, 5, 33, "ReferenceTemplate",ExpressionUUID->"2f43011f-32f3-4a55-a69a-44169e20757f"], -Cell[161916, 4962, 203, 4, 20, "ReferenceTemplate",ExpressionUUID->"85eefefb-9fe1-4751-a907-e0655a44dc27"], -Cell[162122, 4968, 228, 4, 33, "ReferenceTemplate",ExpressionUUID->"80cfeb46-1ba3-4c7e-9794-73423c63a065"], -Cell[162353, 4974, 190, 4, 20, "ReferenceTemplate",ExpressionUUID->"2066a52f-23d3-4558-b35b-9aada8ae646b"], -Cell[162546, 4980, 223, 4, 33, "ReferenceTemplate",ExpressionUUID->"4fe1a650-d8fe-4891-a4b6-ec32bc4a7122"], -Cell[162772, 4986, 187, 4, 20, "ReferenceTemplate",ExpressionUUID->"79da1d14-6e4a-4480-9d75-296f312524d0"], -Cell[162962, 4992, 210, 4, 20, "ReferenceTemplate",ExpressionUUID->"d4c46bb9-c38c-41c8-a351-2e03ed95ed3a"], -Cell[163175, 4998, 172, 3, 20, "ReferenceTemplate",ExpressionUUID->"b16d3b3d-50c1-49af-857e-df176f7963db"], -Cell[163350, 5003, 233, 5, 33, "ReferenceTemplate",ExpressionUUID->"dbb1012f-ab67-4c9f-b1ef-40e9f71ad3c7"], -Cell[163586, 5010, 194, 4, 20, "ReferenceTemplate",ExpressionUUID->"eb6c660b-e9f6-40c7-b9f9-08be783ee7cf"], -Cell[163783, 5016, 219, 4, 20, "ReferenceTemplate",ExpressionUUID->"adc82d2d-0bb2-4bc3-90c2-6c647a9ff782"], -Cell[164005, 5022, 181, 4, 20, "ReferenceTemplate",ExpressionUUID->"2738b2ca-f3ed-45a9-b277-2875158507ed"], -Cell[164189, 5028, 214, 4, 20, "ReferenceTemplate",ExpressionUUID->"a6440828-4cf2-4221-a26f-533eafbd86b6"], -Cell[164406, 5034, 178, 4, 20, "ReferenceTemplate",ExpressionUUID->"d823055f-6d37-4a3f-ac1f-142d2447dd01"], -Cell[164587, 5040, 201, 4, 20, "ReferenceTemplate",ExpressionUUID->"cae61ece-2f52-49d1-870c-96bca6d038a5"], -Cell[164791, 5046, 163, 3, 20, "ReferenceTemplate",ExpressionUUID->"c89cddb6-365a-4e38-bb62-2041752aa14d"], -Cell[164957, 5051, 201, 3, 58, "Text",ExpressionUUID->"dec65f65-1341-4de1-90f0-3414ae00867b"], -Cell[165161, 5056, 209, 4, 20, "ReferenceTemplate",ExpressionUUID->"d60d16b2-acbc-40e6-92e3-8aafc8c5f9be"] -}, Open ]], -Cell[CellGroupData[{ -Cell[165407, 5065, 100, 0, 32, "Subsubsubsection",ExpressionUUID->"e421ba9e-c766-475f-ac36-a1b61259e618"], -Cell[165510, 5067, 154, 2, 35, "Text",ExpressionUUID->"d938ad41-a2b8-405a-bfe7-da1fb543eba2"], -Cell[165667, 5071, 201, 4, 20, "ReferenceTemplate",ExpressionUUID->"3cada0a9-e55c-49a1-a1bb-a4e9d68b75fc"] -}, Open ]], -Cell[CellGroupData[{ -Cell[165905, 5080, 103, 0, 32, "Subsubsubsection",ExpressionUUID->"5b4764d6-07e8-4334-959e-7b3e41a215a2"], -Cell[166011, 5082, 195, 4, 20, "ReferenceTemplate",ExpressionUUID->"2c6d1dc0-0078-4e26-9894-0276cdc59e45"], -Cell[166209, 5088, 156, 3, 20, "ReferenceTemplate",ExpressionUUID->"0998333a-3f44-418e-a831-92ec03b516dd"], -Cell[166368, 5093, 172, 3, 20, "ReferenceTemplate",ExpressionUUID->"d0ff3a6f-63a5-411f-a981-9db0d45302f7"], -Cell[166543, 5098, 198, 3, 58, "Text",ExpressionUUID->"cfb8381f-78ea-4024-a1da-d11e005474e6"], -Cell[166744, 5103, 140, 1, 20, "ReferenceTemplate",ExpressionUUID->"84987e06-2f2a-43da-93f5-c86653d820e5"] -}, Open ]], -Cell[CellGroupData[{ -Cell[166921, 5109, 99, 0, 32, "Subsubsubsection",ExpressionUUID->"c2779a4e-a14b-41d9-a9c6-33d8b1b6d86b"], -Cell[167023, 5111, 225, 4, 33, "ReferenceTemplate",ExpressionUUID->"c76c99ec-a02a-4f79-b755-e857698aef90"], -Cell[167251, 5117, 190, 4, 20, "ReferenceTemplate",ExpressionUUID->"e0505c83-5e82-433c-a185-e5fd6183bed5"], -Cell[167444, 5123, 203, 3, 58, "Text",ExpressionUUID->"cd10a931-76c1-4800-a1c7-f3e1d2284a58"], -Cell[167650, 5128, 225, 4, 33, "ReferenceTemplate",ExpressionUUID->"fe9e7d4d-9261-43e1-8858-86bb69ec5cce"] -}, Open ]], -Cell[CellGroupData[{ -Cell[167912, 5137, 109, 0, 32, "Subsubsubsection",ExpressionUUID->"db773528-8415-455b-9bb1-84b9863e7684"], -Cell[168024, 5139, 160, 3, 35, "Text",ExpressionUUID->"fa74baa4-6ad4-4663-b12b-b114f17af657"], -Cell[168187, 5144, 182, 4, 20, "ReferenceTemplate",ExpressionUUID->"e01ab455-b5a5-44b0-8347-6237c2d58821"] -}, Open ]], -Cell[CellGroupData[{ -Cell[168406, 5153, 101, 0, 32, "Subsubsubsection",ExpressionUUID->"f4530e74-d6d2-4a8b-be31-08a93133c24a"], -Cell[168510, 5155, 158, 3, 35, "Text",ExpressionUUID->"cd2d9156-c1ed-4627-b574-637af3caeba2"], -Cell[168671, 5160, 142, 1, 20, "ReferenceTemplate",ExpressionUUID->"152d2906-6886-4915-8b6d-697fac970ce5"] -}, Open ]], -Cell[CellGroupData[{ -Cell[168850, 5166, 107, 0, 32, "Subsubsubsection",ExpressionUUID->"f6a15881-13d6-4ecd-8239-f81ae120c156"], -Cell[168960, 5168, 182, 3, 35, "Text",ExpressionUUID->"d6bb4974-7a2b-4278-aaf7-ad5645053203"], -Cell[169145, 5173, 113, 0, 20, "ReferenceTemplate",ExpressionUUID->"83ff681e-a23e-4a2d-9224-07dfb4e2ce81"] +Cell[157847, 4853, 137, 2, 41, 41, 0, "StyleData", "RefKey", "Presentation",ExpressionUUID->"7145f8de-f685-4edd-a771-3c991c92a356"], +Cell[157987, 4857, 121, 2, 41, 37, 0, "StyleData", "RefKey", "Printout",ExpressionUUID->"9012fcf0-5dd8-4d03-b8b9-09b6a472539b"], +Cell[158111, 4861, 133, 2, 41, 49, 0, "StyleData", "RefKey", "DoubleSpacedPrintout",ExpressionUUID->"04db28d6-ce0c-4404-ba36-c2d1d56f9240"] +}, Open ]], +Cell[CellGroupData[{ +Cell[158281, 4868, 128, 2, 45, "Subsubsection",ExpressionUUID->"b0a98687-19a0-40da-80e1-a52d62651fc3"], +Cell[158412, 4872, 138, 1, 20, "ReferenceTemplate",ExpressionUUID->"474c8e0c-14d2-4bf7-ab02-f45ffaa38397"], +Cell[158553, 4875, 141, 1, 20, "ReferenceTemplate",ExpressionUUID->"bd5a941b-01f6-470f-a311-9beb2c7b2d4b"], +Cell[158697, 4878, 141, 1, 20, "ReferenceTemplate",ExpressionUUID->"116e5e3e-a123-4be9-8b15-050177d4f5c3"], +Cell[158841, 4881, 137, 1, 20, "ReferenceTemplate",ExpressionUUID->"54935df7-9ca5-4b2b-9338-6e2624c059a1"], +Cell[158981, 4884, 140, 1, 20, "ReferenceTemplate",ExpressionUUID->"8b40c7b2-cbdb-412b-aa73-5af7e0a0cd65"], +Cell[159124, 4887, 139, 1, 20, "ReferenceTemplate",ExpressionUUID->"039796cb-fde3-48c5-995e-2dc55bf7eadf"], +Cell[159266, 4890, 96, 0, 20, "ReferenceTemplate",ExpressionUUID->"9ade125f-ced2-4ed1-83a2-54342cfe6a62"], +Cell[159365, 4892, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"244ec834-21a2-47ba-811d-34e0b05f8f70"], +Cell[159472, 4894, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"bfd55885-352f-4690-a5ac-10ba136895b4"], +Cell[159579, 4896, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"8cb12ce5-9629-4779-8f8c-252f82cf4494"], +Cell[159686, 4898, 104, 0, 20, "ReferenceTemplate",ExpressionUUID->"7079e4c5-f729-4b21-a0cd-76db466b160d"], +Cell[159793, 4900, 111, 0, 20, "ReferenceTemplate",ExpressionUUID->"9582dea3-06fb-4904-b953-8cf0377be11c"], +Cell[159907, 4902, 111, 0, 20, "ReferenceTemplate",ExpressionUUID->"0f128192-0131-470c-a523-71c99ec6ea1e"], +Cell[CellGroupData[{ +Cell[160043, 4906, 100, 0, 32, "Subsubsubsection",ExpressionUUID->"db4b3603-1985-43b6-9b52-4a7c6c798e79"], +Cell[160146, 4908, 248, 5, 33, "ReferenceTemplate",ExpressionUUID->"4d5d5832-ac78-4956-8d2a-56d6fa6d843b"], +Cell[160397, 4915, 209, 4, 20, "ReferenceTemplate",ExpressionUUID->"d051e348-e469-4f69-92b0-b9b0e6942b56"], +Cell[160609, 4921, 234, 4, 33, "ReferenceTemplate",ExpressionUUID->"9557b6c1-f76c-409c-a16c-4b0e2333735e"], +Cell[160846, 4927, 196, 4, 20, "ReferenceTemplate",ExpressionUUID->"c774018b-5f0f-42cc-b7f9-f4519493a2ef"], +Cell[161045, 4933, 229, 4, 33, "ReferenceTemplate",ExpressionUUID->"425c1ff8-0154-4ade-9b1d-6980d6615365"], +Cell[161277, 4939, 193, 4, 20, "ReferenceTemplate",ExpressionUUID->"aae18164-00ff-42a5-ba53-2f7bc1edad5c"], +Cell[161473, 4945, 216, 4, 20, "ReferenceTemplate",ExpressionUUID->"670c0731-a71a-4bb8-b2bb-0295c6282679"], +Cell[161692, 4951, 180, 4, 20, "ReferenceTemplate",ExpressionUUID->"fbded6b6-f059-4d96-b906-05451cfaacfe"], +Cell[161875, 4957, 242, 5, 33, "ReferenceTemplate",ExpressionUUID->"2f43011f-32f3-4a55-a69a-44169e20757f"], +Cell[162120, 4964, 203, 4, 20, "ReferenceTemplate",ExpressionUUID->"85eefefb-9fe1-4751-a907-e0655a44dc27"], +Cell[162326, 4970, 228, 4, 33, "ReferenceTemplate",ExpressionUUID->"80cfeb46-1ba3-4c7e-9794-73423c63a065"], +Cell[162557, 4976, 190, 4, 20, "ReferenceTemplate",ExpressionUUID->"2066a52f-23d3-4558-b35b-9aada8ae646b"], +Cell[162750, 4982, 223, 4, 33, "ReferenceTemplate",ExpressionUUID->"4fe1a650-d8fe-4891-a4b6-ec32bc4a7122"], +Cell[162976, 4988, 187, 4, 20, "ReferenceTemplate",ExpressionUUID->"79da1d14-6e4a-4480-9d75-296f312524d0"], +Cell[163166, 4994, 210, 4, 20, "ReferenceTemplate",ExpressionUUID->"d4c46bb9-c38c-41c8-a351-2e03ed95ed3a"], +Cell[163379, 5000, 172, 3, 20, "ReferenceTemplate",ExpressionUUID->"b16d3b3d-50c1-49af-857e-df176f7963db"], +Cell[163554, 5005, 233, 5, 33, "ReferenceTemplate",ExpressionUUID->"dbb1012f-ab67-4c9f-b1ef-40e9f71ad3c7"], +Cell[163790, 5012, 194, 4, 20, "ReferenceTemplate",ExpressionUUID->"eb6c660b-e9f6-40c7-b9f9-08be783ee7cf"], +Cell[163987, 5018, 219, 4, 20, "ReferenceTemplate",ExpressionUUID->"adc82d2d-0bb2-4bc3-90c2-6c647a9ff782"], +Cell[164209, 5024, 181, 4, 20, "ReferenceTemplate",ExpressionUUID->"2738b2ca-f3ed-45a9-b277-2875158507ed"], +Cell[164393, 5030, 214, 4, 20, "ReferenceTemplate",ExpressionUUID->"a6440828-4cf2-4221-a26f-533eafbd86b6"], +Cell[164610, 5036, 178, 4, 20, "ReferenceTemplate",ExpressionUUID->"d823055f-6d37-4a3f-ac1f-142d2447dd01"], +Cell[164791, 5042, 201, 4, 20, "ReferenceTemplate",ExpressionUUID->"cae61ece-2f52-49d1-870c-96bca6d038a5"], +Cell[164995, 5048, 163, 3, 20, "ReferenceTemplate",ExpressionUUID->"c89cddb6-365a-4e38-bb62-2041752aa14d"], +Cell[165161, 5053, 201, 3, 58, "Text",ExpressionUUID->"dec65f65-1341-4de1-90f0-3414ae00867b"], +Cell[165365, 5058, 209, 4, 20, "ReferenceTemplate",ExpressionUUID->"d60d16b2-acbc-40e6-92e3-8aafc8c5f9be"] +}, Open ]], +Cell[CellGroupData[{ +Cell[165611, 5067, 100, 0, 32, "Subsubsubsection",ExpressionUUID->"e421ba9e-c766-475f-ac36-a1b61259e618"], +Cell[165714, 5069, 154, 2, 35, "Text",ExpressionUUID->"d938ad41-a2b8-405a-bfe7-da1fb543eba2"], +Cell[165871, 5073, 201, 4, 20, "ReferenceTemplate",ExpressionUUID->"3cada0a9-e55c-49a1-a1bb-a4e9d68b75fc"] +}, Open ]], +Cell[CellGroupData[{ +Cell[166109, 5082, 103, 0, 32, "Subsubsubsection",ExpressionUUID->"5b4764d6-07e8-4334-959e-7b3e41a215a2"], +Cell[166215, 5084, 195, 4, 20, "ReferenceTemplate",ExpressionUUID->"2c6d1dc0-0078-4e26-9894-0276cdc59e45"], +Cell[166413, 5090, 156, 3, 20, "ReferenceTemplate",ExpressionUUID->"0998333a-3f44-418e-a831-92ec03b516dd"], +Cell[166572, 5095, 172, 3, 20, "ReferenceTemplate",ExpressionUUID->"d0ff3a6f-63a5-411f-a981-9db0d45302f7"], +Cell[166747, 5100, 198, 3, 58, "Text",ExpressionUUID->"cfb8381f-78ea-4024-a1da-d11e005474e6"], +Cell[166948, 5105, 140, 1, 20, "ReferenceTemplate",ExpressionUUID->"84987e06-2f2a-43da-93f5-c86653d820e5"] +}, Open ]], +Cell[CellGroupData[{ +Cell[167125, 5111, 99, 0, 32, "Subsubsubsection",ExpressionUUID->"c2779a4e-a14b-41d9-a9c6-33d8b1b6d86b"], +Cell[167227, 5113, 225, 4, 33, "ReferenceTemplate",ExpressionUUID->"c76c99ec-a02a-4f79-b755-e857698aef90"], +Cell[167455, 5119, 190, 4, 20, "ReferenceTemplate",ExpressionUUID->"e0505c83-5e82-433c-a185-e5fd6183bed5"], +Cell[167648, 5125, 203, 3, 58, "Text",ExpressionUUID->"cd10a931-76c1-4800-a1c7-f3e1d2284a58"], +Cell[167854, 5130, 225, 4, 33, "ReferenceTemplate",ExpressionUUID->"fe9e7d4d-9261-43e1-8858-86bb69ec5cce"] +}, Open ]], +Cell[CellGroupData[{ +Cell[168116, 5139, 109, 0, 32, "Subsubsubsection",ExpressionUUID->"db773528-8415-455b-9bb1-84b9863e7684"], +Cell[168228, 5141, 160, 3, 35, "Text",ExpressionUUID->"fa74baa4-6ad4-4663-b12b-b114f17af657"], +Cell[168391, 5146, 182, 4, 20, "ReferenceTemplate",ExpressionUUID->"e01ab455-b5a5-44b0-8347-6237c2d58821"] +}, Open ]], +Cell[CellGroupData[{ +Cell[168610, 5155, 101, 0, 32, "Subsubsubsection",ExpressionUUID->"f4530e74-d6d2-4a8b-be31-08a93133c24a"], +Cell[168714, 5157, 158, 3, 35, "Text",ExpressionUUID->"cd2d9156-c1ed-4627-b574-637af3caeba2"], +Cell[168875, 5162, 142, 1, 20, "ReferenceTemplate",ExpressionUUID->"152d2906-6886-4915-8b6d-697fac970ce5"] +}, Open ]], +Cell[CellGroupData[{ +Cell[169054, 5168, 107, 0, 32, "Subsubsubsection",ExpressionUUID->"f6a15881-13d6-4ecd-8239-f81ae120c156"], +Cell[169164, 5170, 182, 3, 35, "Text",ExpressionUUID->"d6bb4974-7a2b-4278-aaf7-ad5645053203"], +Cell[169349, 5175, 113, 0, 20, "ReferenceTemplate",ExpressionUUID->"83ff681e-a23e-4a2d-9224-07dfb4e2ce81"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[169307, 5179, 132, 2, 45, "Subsubsection",ExpressionUUID->"a965670f-14b1-412c-a85b-f142bab71cbd"], +Cell[169511, 5181, 132, 2, 45, "Subsubsection",ExpressionUUID->"a965670f-14b1-412c-a85b-f142bab71cbd"], Cell[CellGroupData[{ -Cell[169464, 5185, 189, 3, 41, 27, 0, "StyleData", "RefTitle", "All",ExpressionUUID->"1da69e8e-e8de-4618-b053-c62610cfc4e7", +Cell[169668, 5187, 189, 3, 41, 27, 0, "StyleData", "RefTitle", "All",ExpressionUUID->"1da69e8e-e8de-4618-b053-c62610cfc4e7", StyleMenuListing->None], -Cell[169656, 5190, 94, 0, 41, 39, 0, "StyleData", "RefTitle", "Printout",ExpressionUUID->"048b26d0-d82f-4c31-95a3-0ef8eab444c3"] +Cell[169860, 5192, 94, 0, 41, 39, 0, "StyleData", "RefTitle", "Printout",ExpressionUUID->"048b26d0-d82f-4c31-95a3-0ef8eab444c3"] }, Open ]], Cell[CellGroupData[{ -Cell[169787, 5195, 109, 2, 41, 26, 0, "StyleData", "RefType", "All",ExpressionUUID->"bf8fa99e-57a4-419a-a729-3f993f3993c3", +Cell[169991, 5197, 109, 2, 41, 26, 0, "StyleData", "RefType", "All",ExpressionUUID->"bf8fa99e-57a4-419a-a729-3f993f3993c3", StyleMenuListing->None], -Cell[169899, 5199, 93, 0, 41, 38, 0, "StyleData", "RefType", "Printout",ExpressionUUID->"71e6eaa7-7769-46ea-b691-9b6801671633"] +Cell[170103, 5201, 93, 0, 41, 38, 0, "StyleData", "RefType", "Printout",ExpressionUUID->"71e6eaa7-7769-46ea-b691-9b6801671633"] }, Open ]], Cell[CellGroupData[{ -Cell[170029, 5204, 108, 2, 41, 25, 0, "StyleData", "RefURL", "All",ExpressionUUID->"2828b7ae-034d-49b5-8623-d69684581e90", +Cell[170233, 5206, 108, 2, 41, 25, 0, "StyleData", "RefURL", "All",ExpressionUUID->"2828b7ae-034d-49b5-8623-d69684581e90", StyleMenuListing->None], -Cell[170140, 5208, 92, 0, 41, 37, 0, "StyleData", "RefURL", "Printout",ExpressionUUID->"b2d14265-9d2c-4a1c-a8e5-db7467220e60"] +Cell[170344, 5210, 92, 0, 41, 37, 0, "StyleData", "RefURL", "Printout",ExpressionUUID->"b2d14265-9d2c-4a1c-a8e5-db7467220e60"] }, Open ]], Cell[CellGroupData[{ -Cell[170269, 5213, 118, 2, 41, 35, 0, "StyleData", "RefRetrievalDate", "All",ExpressionUUID->"9f4b8349-231c-473b-9ba8-86ca8f6511f6", +Cell[170473, 5215, 118, 2, 41, 35, 0, "StyleData", "RefRetrievalDate", "All",ExpressionUUID->"9f4b8349-231c-473b-9ba8-86ca8f6511f6", StyleMenuListing->None], -Cell[170390, 5217, 130, 2, 41, 47, 0, "StyleData", "RefRetrievalDate", "Printout",ExpressionUUID->"fa86b836-fe8f-4fe2-b6ac-48b6becc93e8", +Cell[170594, 5219, 130, 2, 41, 47, 0, "StyleData", "RefRetrievalDate", "Printout",ExpressionUUID->"fa86b836-fe8f-4fe2-b6ac-48b6becc93e8", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[170557, 5224, 121, 2, 41, 38, 0, "StyleData", "RefSourceOfAbstract", "All",ExpressionUUID->"95c7af66-707f-4376-bb3a-679ab4c8b36e", +Cell[170761, 5226, 121, 2, 41, 38, 0, "StyleData", "RefSourceOfAbstract", "All",ExpressionUUID->"95c7af66-707f-4376-bb3a-679ab4c8b36e", StyleMenuListing->None], -Cell[170681, 5228, 133, 2, 41, 50, 0, "StyleData", "RefSourceOfAbstract", "Printout",ExpressionUUID->"690e0478-d061-4734-96ae-b67ec2fbdf1e", +Cell[170885, 5230, 133, 2, 41, 50, 0, "StyleData", "RefSourceOfAbstract", "Printout",ExpressionUUID->"690e0478-d061-4734-96ae-b67ec2fbdf1e", StyleMenuListing->None] }, Open ]], -Cell[170829, 5233, 120, 2, 41, 37, 0, "StyleData", "RefInsertedBibText", "All",ExpressionUUID->"f4325946-301a-44ee-acf2-c43064b5879a", +Cell[171033, 5235, 120, 2, 41, 37, 0, "StyleData", "RefInsertedBibText", "All",ExpressionUUID->"f4325946-301a-44ee-acf2-c43064b5879a", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[170986, 5240, 130, 2, 45, "Subsubsection",ExpressionUUID->"34168a4d-13a0-48cc-a187-2d8a572d7657"], +Cell[171190, 5242, 130, 2, 45, "Subsubsection",ExpressionUUID->"34168a4d-13a0-48cc-a187-2d8a572d7657"], Cell[CellGroupData[{ -Cell[171141, 5246, 193, 3, 41, 31, 0, "StyleData", "RefBookTitle", "All",ExpressionUUID->"2eefd701-761c-412c-bf4e-0f17e5ccefbf", +Cell[171345, 5248, 193, 3, 41, 31, 0, "StyleData", "RefBookTitle", "All",ExpressionUUID->"2eefd701-761c-412c-bf4e-0f17e5ccefbf", StyleMenuListing->None], -Cell[171337, 5251, 98, 0, 41, 43, 0, "StyleData", "RefBookTitle", "Printout",ExpressionUUID->"950b10a1-e219-43df-9033-8d097594d353"] +Cell[171541, 5253, 98, 0, 41, 43, 0, "StyleData", "RefBookTitle", "Printout",ExpressionUUID->"950b10a1-e219-43df-9033-8d097594d353"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[171484, 5257, 133, 2, 45, "Subsubsection",ExpressionUUID->"6fd00d5f-699d-46b4-a056-ccbec6b4f24d"], +Cell[171688, 5259, 133, 2, 45, "Subsubsection",ExpressionUUID->"6fd00d5f-699d-46b4-a056-ccbec6b4f24d"], Cell[CellGroupData[{ -Cell[171642, 5263, 117, 2, 41, 34, 0, "StyleData", "RefJournalTitle", "All",ExpressionUUID->"96ae25da-42cb-4d7d-9e4c-199ba6e01738", +Cell[171846, 5265, 117, 2, 41, 34, 0, "StyleData", "RefJournalTitle", "All",ExpressionUUID->"96ae25da-42cb-4d7d-9e4c-199ba6e01738", StyleMenuListing->None], -Cell[171762, 5267, 101, 0, 41, 46, 0, "StyleData", "RefJournalTitle", "Printout",ExpressionUUID->"cc6788bd-037b-4cfb-9462-602e9c406ee2"] +Cell[171966, 5269, 101, 0, 41, 46, 0, "StyleData", "RefJournalTitle", "Printout",ExpressionUUID->"cc6788bd-037b-4cfb-9462-602e9c406ee2"] }, Open ]], Cell[CellGroupData[{ -Cell[171900, 5272, 196, 3, 41, 35, 0, "StyleData", "RefJournalVolume", "All",ExpressionUUID->"d6ddc295-7512-4fc3-90cf-24e0468a233f", +Cell[172104, 5274, 196, 3, 41, 35, 0, "StyleData", "RefJournalVolume", "All",ExpressionUUID->"d6ddc295-7512-4fc3-90cf-24e0468a233f", StyleMenuListing->None], -Cell[172099, 5277, 102, 0, 41, 47, 0, "StyleData", "RefJournalVolume", "Printout",ExpressionUUID->"32bb085f-a5f8-4c73-a562-966b37faf57a"] +Cell[172303, 5279, 102, 0, 41, 47, 0, "StyleData", "RefJournalVolume", "Printout",ExpressionUUID->"32bb085f-a5f8-4c73-a562-966b37faf57a"] }, Open ]], Cell[CellGroupData[{ -Cell[172238, 5282, 118, 2, 41, 35, 0, "StyleData", "RefJournalNumber", "All",ExpressionUUID->"3114ed5c-95f5-45b0-afa3-fa6ced758f52", +Cell[172442, 5284, 118, 2, 41, 35, 0, "StyleData", "RefJournalNumber", "All",ExpressionUUID->"3114ed5c-95f5-45b0-afa3-fa6ced758f52", StyleMenuListing->None], -Cell[172359, 5286, 130, 2, 41, 47, 0, "StyleData", "RefJournalNumber", "Printout",ExpressionUUID->"091d45f4-643f-439f-9fd8-94ae4f6aa9a5", +Cell[172563, 5288, 130, 2, 41, 47, 0, "StyleData", "RefJournalNumber", "Printout",ExpressionUUID->"091d45f4-643f-439f-9fd8-94ae4f6aa9a5", StyleMenuListing->None] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[172538, 5294, 135, 2, 45, "Subsubsection",ExpressionUUID->"e79741df-1ecd-4acd-bec8-0e4a02a5b2c9"], +Cell[172742, 5296, 135, 2, 45, "Subsubsection",ExpressionUUID->"e79741df-1ecd-4acd-bec8-0e4a02a5b2c9"], Cell[CellGroupData[{ -Cell[172698, 5300, 114, 2, 41, 31, 0, "StyleData", "RefPublisher", "All",ExpressionUUID->"4890e758-a0a1-492a-9f7e-156b15556aeb", +Cell[172902, 5302, 114, 2, 41, 31, 0, "StyleData", "RefPublisher", "All",ExpressionUUID->"4890e758-a0a1-492a-9f7e-156b15556aeb", StyleMenuListing->None], -Cell[172815, 5304, 98, 0, 41, 43, 0, "StyleData", "RefPublisher", "Printout",ExpressionUUID->"129edfd7-8b4b-40e1-8c65-cbf7a1461128"] +Cell[173019, 5306, 98, 0, 41, 43, 0, "StyleData", "RefPublisher", "Printout",ExpressionUUID->"129edfd7-8b4b-40e1-8c65-cbf7a1461128"] }, Open ]], Cell[CellGroupData[{ -Cell[172950, 5309, 130, 3, 41, 26, 0, "StyleData", "RefCity", "All",ExpressionUUID->"7d3fcc54-017f-4e68-85f1-28670c83134b", +Cell[173154, 5311, 130, 3, 41, 26, 0, "StyleData", "RefCity", "All",ExpressionUUID->"7d3fcc54-017f-4e68-85f1-28670c83134b", StyleMenuListing->None], -Cell[173083, 5314, 93, 0, 41, 38, 0, "StyleData", "RefCity", "Printout",ExpressionUUID->"30d77b79-f695-4536-982b-53d9a587beef"] +Cell[173287, 5316, 93, 0, 41, 38, 0, "StyleData", "RefCity", "Printout",ExpressionUUID->"30d77b79-f695-4536-982b-53d9a587beef"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[173225, 5320, 132, 2, 45, "Subsubsection",ExpressionUUID->"7d833e86-2431-45cb-80d4-39e1cb43ebdb"], -Cell[173360, 5324, 116, 2, 41, 33, 0, "StyleData", "RefAuthorGroup", "All",ExpressionUUID->"c5105597-5d2b-4b2d-bc2b-934af0f4f042", +Cell[173429, 5322, 132, 2, 45, "Subsubsection",ExpressionUUID->"7d833e86-2431-45cb-80d4-39e1cb43ebdb"], +Cell[173564, 5326, 116, 2, 41, 33, 0, "StyleData", "RefAuthorGroup", "All",ExpressionUUID->"c5105597-5d2b-4b2d-bc2b-934af0f4f042", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[173501, 5330, 113, 2, 41, 30, 0, "StyleData", "RefAuthorFN", "All",ExpressionUUID->"d8d73fc3-0a59-4951-a5a1-20d651e194a9", +Cell[173705, 5332, 113, 2, 41, 30, 0, "StyleData", "RefAuthorFN", "All",ExpressionUUID->"d8d73fc3-0a59-4951-a5a1-20d651e194a9", StyleMenuListing->None], -Cell[173617, 5334, 97, 0, 41, 42, 0, "StyleData", "RefAuthorFN", "Printout",ExpressionUUID->"1d83fb6c-9ef2-48ae-8a6d-ed838238150f"] +Cell[173821, 5336, 97, 0, 41, 42, 0, "StyleData", "RefAuthorFN", "Printout",ExpressionUUID->"1d83fb6c-9ef2-48ae-8a6d-ed838238150f"] }, Open ]], Cell[CellGroupData[{ -Cell[173751, 5339, 113, 2, 41, 30, 0, "StyleData", "RefAuthorLN", "All",ExpressionUUID->"0ba5d6bc-b1bd-4e9f-8a32-fc85463a0a28", +Cell[173955, 5341, 113, 2, 41, 30, 0, "StyleData", "RefAuthorLN", "All",ExpressionUUID->"0ba5d6bc-b1bd-4e9f-8a32-fc85463a0a28", StyleMenuListing->None], -Cell[173867, 5343, 97, 0, 41, 42, 0, "StyleData", "RefAuthorLN", "Printout",ExpressionUUID->"d4031cb5-958e-4f7d-8df2-2a266139a884"] +Cell[174071, 5345, 97, 0, 41, 42, 0, "StyleData", "RefAuthorLN", "Printout",ExpressionUUID->"d4031cb5-958e-4f7d-8df2-2a266139a884"] }, Open ]], Cell[CellGroupData[{ -Cell[174001, 5348, 113, 2, 41, 30, 0, "StyleData", "RefAuthorMN", "All",ExpressionUUID->"92070d16-0d20-4c7d-b0e7-05a12775b3d6", +Cell[174205, 5350, 113, 2, 41, 30, 0, "StyleData", "RefAuthorMN", "All",ExpressionUUID->"92070d16-0d20-4c7d-b0e7-05a12775b3d6", StyleMenuListing->None], -Cell[174117, 5352, 97, 0, 41, 42, 0, "StyleData", "RefAuthorMN", "Printout",ExpressionUUID->"ecff28ad-0fa0-4176-99a0-37d8d93e4a12"] +Cell[174321, 5354, 97, 0, 41, 42, 0, "StyleData", "RefAuthorMN", "Printout",ExpressionUUID->"ecff28ad-0fa0-4176-99a0-37d8d93e4a12"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[174263, 5358, 132, 2, 45, "Subsubsection",ExpressionUUID->"ae2f386a-00a3-494f-8e42-3214bd47d9a3"], -Cell[174398, 5362, 116, 2, 41, 33, 0, "StyleData", "RefEditorGroup", "All",ExpressionUUID->"c39ff6a9-4869-490b-83ae-8c64bbb62d64", +Cell[174467, 5360, 132, 2, 45, "Subsubsection",ExpressionUUID->"ae2f386a-00a3-494f-8e42-3214bd47d9a3"], +Cell[174602, 5364, 116, 2, 41, 33, 0, "StyleData", "RefEditorGroup", "All",ExpressionUUID->"c39ff6a9-4869-490b-83ae-8c64bbb62d64", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[174539, 5368, 113, 2, 41, 30, 0, "StyleData", "RefEditorFN", "All",ExpressionUUID->"eb9ee44f-3bdd-4025-b858-980433d75f51", +Cell[174743, 5370, 113, 2, 41, 30, 0, "StyleData", "RefEditorFN", "All",ExpressionUUID->"eb9ee44f-3bdd-4025-b858-980433d75f51", StyleMenuListing->None], -Cell[174655, 5372, 97, 0, 41, 42, 0, "StyleData", "RefEditorFN", "Printout",ExpressionUUID->"3404d9fe-025c-4c81-8cd6-d8fb77fd351b"] +Cell[174859, 5374, 97, 0, 41, 42, 0, "StyleData", "RefEditorFN", "Printout",ExpressionUUID->"3404d9fe-025c-4c81-8cd6-d8fb77fd351b"] }, Open ]], Cell[CellGroupData[{ -Cell[174789, 5377, 113, 2, 41, 30, 0, "StyleData", "RefEditorMN", "All",ExpressionUUID->"a716e100-4a42-41f8-b8ef-f9cf446ed8f5", +Cell[174993, 5379, 113, 2, 41, 30, 0, "StyleData", "RefEditorMN", "All",ExpressionUUID->"a716e100-4a42-41f8-b8ef-f9cf446ed8f5", StyleMenuListing->None], -Cell[174905, 5381, 97, 0, 41, 42, 0, "StyleData", "RefEditorMN", "Printout",ExpressionUUID->"dc2720db-b273-4924-9a32-14575ca1a66c"] +Cell[175109, 5383, 97, 0, 41, 42, 0, "StyleData", "RefEditorMN", "Printout",ExpressionUUID->"dc2720db-b273-4924-9a32-14575ca1a66c"] }, Open ]], Cell[CellGroupData[{ -Cell[175039, 5386, 113, 2, 41, 30, 0, "StyleData", "RefEditorLN", "All",ExpressionUUID->"5ca418df-dacd-42d9-8232-9fbef592efb9", +Cell[175243, 5388, 113, 2, 41, 30, 0, "StyleData", "RefEditorLN", "All",ExpressionUUID->"5ca418df-dacd-42d9-8232-9fbef592efb9", StyleMenuListing->None], -Cell[175155, 5390, 97, 0, 41, 42, 0, "StyleData", "RefEditorLN", "Printout",ExpressionUUID->"64b49e70-3774-4856-b237-31befd4e2278"] +Cell[175359, 5392, 97, 0, 41, 42, 0, "StyleData", "RefEditorLN", "Printout",ExpressionUUID->"64b49e70-3774-4856-b237-31befd4e2278"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[175301, 5396, 132, 2, 45, "Subsubsection",ExpressionUUID->"e48c4648-1e5e-4e6e-880e-8dd5e706367e"], +Cell[175505, 5398, 132, 2, 45, "Subsubsection",ExpressionUUID->"e48c4648-1e5e-4e6e-880e-8dd5e706367e"], Cell[CellGroupData[{ -Cell[175458, 5402, 111, 2, 41, 28, 0, "StyleData", "RefSchool", "All",ExpressionUUID->"4a008d23-47bf-4760-845f-5db6f4ac72de", +Cell[175662, 5404, 111, 2, 41, 28, 0, "StyleData", "RefSchool", "All",ExpressionUUID->"4a008d23-47bf-4760-845f-5db6f4ac72de", StyleMenuListing->None], -Cell[175572, 5406, 95, 0, 41, 40, 0, "StyleData", "RefSchool", "Printout",ExpressionUUID->"bccb27f9-5a0d-43f5-b684-b60c854b6d26"] +Cell[175776, 5408, 95, 0, 41, 40, 0, "StyleData", "RefSchool", "Printout",ExpressionUUID->"bccb27f9-5a0d-43f5-b684-b60c854b6d26"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[175716, 5412, 142, 2, 45, "Subsubsection",ExpressionUUID->"9e45c678-ca9e-4d81-9d57-528429c46a6e"], +Cell[175920, 5414, 142, 2, 45, "Subsubsection",ExpressionUUID->"9e45c678-ca9e-4d81-9d57-528429c46a6e"], Cell[CellGroupData[{ -Cell[175883, 5418, 108, 2, 41, 25, 0, "StyleData", "RefDay", "All",ExpressionUUID->"92776627-43d5-4a6d-87dd-1e64be2cc827", +Cell[176087, 5420, 108, 2, 41, 25, 0, "StyleData", "RefDay", "All",ExpressionUUID->"92776627-43d5-4a6d-87dd-1e64be2cc827", StyleMenuListing->None], -Cell[175994, 5422, 120, 2, 41, 37, 0, "StyleData", "RefDay", "Printout",ExpressionUUID->"e32749b5-f661-4de2-b571-588c24f6ac64", +Cell[176198, 5424, 120, 2, 41, 37, 0, "StyleData", "RefDay", "Printout",ExpressionUUID->"e32749b5-f661-4de2-b571-588c24f6ac64", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[176151, 5429, 110, 2, 41, 27, 0, "StyleData", "RefMonth", "All",ExpressionUUID->"a4dad53e-710d-4986-ba01-fa2bab0567c6", +Cell[176355, 5431, 110, 2, 41, 27, 0, "StyleData", "RefMonth", "All",ExpressionUUID->"a4dad53e-710d-4986-ba01-fa2bab0567c6", StyleMenuListing->None], -Cell[176264, 5433, 122, 2, 41, 39, 0, "StyleData", "RefMonth", "Printout",ExpressionUUID->"0d4ae911-ddbc-4411-8e07-2214ce8d27fc", +Cell[176468, 5435, 122, 2, 41, 39, 0, "StyleData", "RefMonth", "Printout",ExpressionUUID->"0d4ae911-ddbc-4411-8e07-2214ce8d27fc", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[176423, 5440, 109, 2, 41, 26, 0, "StyleData", "RefYear", "All",ExpressionUUID->"63cb2a0e-1248-4dea-93a8-f11597b04098", +Cell[176627, 5442, 109, 2, 41, 26, 0, "StyleData", "RefYear", "All",ExpressionUUID->"63cb2a0e-1248-4dea-93a8-f11597b04098", StyleMenuListing->None], -Cell[176535, 5444, 93, 0, 41, 38, 0, "StyleData", "RefYear", "Printout",ExpressionUUID->"d791ce35-e4ef-441a-b0c4-9b2c7e2eed32"] +Cell[176739, 5446, 93, 0, 41, 38, 0, "StyleData", "RefYear", "Printout",ExpressionUUID->"d791ce35-e4ef-441a-b0c4-9b2c7e2eed32"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[176677, 5450, 169, 3, 45, "Subsubsection",ExpressionUUID->"1953e3ef-6dc3-46e7-815e-c442f6b16fc4"], +Cell[176881, 5452, 169, 3, 45, "Subsubsection",ExpressionUUID->"1953e3ef-6dc3-46e7-815e-c442f6b16fc4"], Cell[CellGroupData[{ -Cell[176871, 5457, 135, 3, 41, 31, 0, "StyleData", "RefFirstPage", "All",ExpressionUUID->"52c9a2cb-e27b-4c92-af3a-79ce08e954c8", +Cell[177075, 5459, 135, 3, 41, 31, 0, "StyleData", "RefFirstPage", "All",ExpressionUUID->"52c9a2cb-e27b-4c92-af3a-79ce08e954c8", StyleMenuListing->None], -Cell[177009, 5462, 98, 0, 41, 43, 0, "StyleData", "RefFirstPage", "Printout",ExpressionUUID->"da0abb43-5af4-4632-8445-6de0f33341bc"] +Cell[177213, 5464, 98, 0, 41, 43, 0, "StyleData", "RefFirstPage", "Printout",ExpressionUUID->"da0abb43-5af4-4632-8445-6de0f33341bc"] }, Open ]], Cell[CellGroupData[{ -Cell[177144, 5467, 134, 3, 70, 30, 0, "StyleData", "RefLastPage", "All",ExpressionUUID->"4e7620d4-077b-4e61-bb19-bd9343848345", +Cell[177348, 5469, 134, 3, 70, 30, 0, "StyleData", "RefLastPage", "All",ExpressionUUID->"4e7620d4-077b-4e61-bb19-bd9343848345", StyleMenuListing->None], -Cell[177281, 5472, 97, 0, 70, 42, 0, "StyleData", "RefLastPage", "Printout",ExpressionUUID->"aa971f00-2635-478d-8945-bfa17bfc7444"] +Cell[177485, 5474, 97, 0, 70, 42, 0, "StyleData", "RefLastPage", "Printout",ExpressionUUID->"aa971f00-2635-478d-8945-bfa17bfc7444"] }, Open ]] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[177451, 5480, 93, 0, 70, "Section",ExpressionUUID->"e89c63d5-d1e7-4a45-bfe3-3dafff574b37"], -Cell[177547, 5482, 152, 3, 70, 25, 0, "StyleData", "Header", "All",ExpressionUUID->"ee83c96b-53b7-4a7d-ac77-adf6ba2d1678", +Cell[177655, 5482, 93, 0, 70, "Section",ExpressionUUID->"e89c63d5-d1e7-4a45-bfe3-3dafff574b37"], +Cell[177751, 5484, 152, 3, 70, 25, 0, "StyleData", "Header", "All",ExpressionUUID->"ee83c96b-53b7-4a7d-ac77-adf6ba2d1678", StyleMenuListing->None], -Cell[177702, 5487, 151, 3, 70, 25, 0, "StyleData", "Footer", "All",ExpressionUUID->"4307d0b1-4901-4d0b-a77c-ef04a62d1e56", +Cell[177906, 5489, 151, 3, 70, 25, 0, "StyleData", "Footer", "All",ExpressionUUID->"4307d0b1-4901-4d0b-a77c-ef04a62d1e56", StyleMenuListing->None], -Cell[177856, 5492, 156, 3, 70, 29, 0, "StyleData", "PageNumber", "All",ExpressionUUID->"cf20ed6f-0cbe-40b4-bddf-0692c8d7e10d", +Cell[178060, 5494, 156, 3, 70, 29, 0, "StyleData", "PageNumber", "All",ExpressionUUID->"cf20ed6f-0cbe-40b4-bddf-0692c8d7e10d", StyleMenuListing->None] }, Closed]], Cell[CellGroupData[{ -Cell[178049, 5500, 87, 0, 53, "Section",ExpressionUUID->"5697d6ad-d146-4adf-9eec-a0031c32e4ff"], -Cell[178139, 5502, 338, 7, 70, 34, 0, "StyleData", "TextSuperscript", "All",ExpressionUUID->"58f8a53f-2427-4859-a530-c4648538d441", +Cell[178253, 5502, 87, 0, 53, "Section",ExpressionUUID->"5697d6ad-d146-4adf-9eec-a0031c32e4ff"], +Cell[178343, 5504, 338, 7, 70, 34, 0, "StyleData", "TextSuperscript", "All",ExpressionUUID->"58f8a53f-2427-4859-a530-c4648538d441", StyleMenuListing->None], -Cell[178480, 5511, 265, 6, 70, 32, 0, "StyleData", "TextSubscript", "All",ExpressionUUID->"6c8cb354-3228-4484-984b-7407520b35e5", +Cell[178684, 5513, 265, 6, 70, 32, 0, "StyleData", "TextSubscript", "All",ExpressionUUID->"6c8cb354-3228-4484-984b-7407520b35e5", StyleMenuListing->None], -Cell[178748, 5519, 155, 3, 70, 22, 0, "StyleData", "Nil", "All",ExpressionUUID->"f35fe184-540f-441c-aa10-c4372e390176", +Cell[178952, 5521, 155, 3, 70, 22, 0, "StyleData", "Nil", "All",ExpressionUUID->"f35fe184-540f-441c-aa10-c4372e390176", StyleMenuListing->None], -Cell[178906, 5524, 110, 2, 70, 27, 0, "StyleData", "Verbatim", "All",ExpressionUUID->"c7e6e44a-6c76-475d-8d0c-0d27ad9e8244", +Cell[179110, 5526, 110, 2, 70, 27, 0, "StyleData", "Verbatim", "All",ExpressionUUID->"c7e6e44a-6c76-475d-8d0c-0d27ad9e8244", StyleMenuListing->None], -Cell[179019, 5528, 166, 3, 70, 26, 0, "StyleData", "TeXName", "All",ExpressionUUID->"28ea5931-6684-4107-b418-faf39fdaab00", +Cell[179223, 5530, 166, 3, 70, 26, 0, "StyleData", "TeXName", "All",ExpressionUUID->"28ea5931-6684-4107-b418-faf39fdaab00", StyleMenuListing->None], -Cell[179188, 5533, 170, 3, 70, 28, 0, "StyleData", "LaTeXName", "All",ExpressionUUID->"72755bbe-8b1c-4860-a71f-142332a31904", +Cell[179392, 5535, 170, 3, 70, 28, 0, "StyleData", "LaTeXName", "All",ExpressionUUID->"72755bbe-8b1c-4860-a71f-142332a31904", StyleMenuListing->None], -Cell[179361, 5538, 172, 3, 70, 29, 0, "StyleData", "LaTeXeName", "All",ExpressionUUID->"329411c5-6001-4e52-8c4d-31b7c2aaa302", +Cell[179565, 5540, 172, 3, 70, 29, 0, "StyleData", "LaTeXeName", "All",ExpressionUUID->"329411c5-6001-4e52-8c4d-31b7c2aaa302", StyleMenuListing->None], -Cell[179536, 5543, 169, 4, 70, 34, 0, "StyleData", "ChemicalElement", "All",ExpressionUUID->"e5af3137-fbe6-43b3-bf43-b56900cf65ef", +Cell[179740, 5545, 169, 4, 70, 34, 0, "StyleData", "ChemicalElement", "All",ExpressionUUID->"e5af3137-fbe6-43b3-bf43-b56900cf65ef", StyleMenuListing->None], -Cell[179708, 5549, 146, 3, 70, 34, 0, "StyleData", "CustomCharacter", "All",ExpressionUUID->"223bc514-9be8-4df0-96c1-591299827b32", +Cell[179912, 5551, 146, 3, 70, 34, 0, "StyleData", "CustomCharacter", "All",ExpressionUUID->"223bc514-9be8-4df0-96c1-591299827b32", StyleMenuListing->None], -Cell[179857, 5554, 109, 2, 70, 26, 0, "StyleData", "Palette", "All",ExpressionUUID->"2dbf4f75-a56f-410c-a785-ab5476cedd15", +Cell[180061, 5556, 109, 2, 70, 26, 0, "StyleData", "Palette", "All",ExpressionUUID->"2dbf4f75-a56f-410c-a785-ab5476cedd15", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[179991, 5560, 597, 18, 70, 28, 0, "StyleData", "PageBreak", "All",ExpressionUUID->"eeeebeb1-9146-42ac-b700-7ead0f35f24d", +Cell[180195, 5562, 597, 18, 70, 28, 0, "StyleData", "PageBreak", "All",ExpressionUUID->"eeeebeb1-9146-42ac-b700-7ead0f35f24d", StyleMenuListing->None], -Cell[180591, 5580, 171, 3, 70, 40, 0, "StyleData", "PageBreak", "Printout",ExpressionUUID->"4f913ab1-d53f-49ad-9020-51f3b2759203"] +Cell[180795, 5582, 171, 3, 70, 40, 0, "StyleData", "PageBreak", "Printout",ExpressionUUID->"4f913ab1-d53f-49ad-9020-51f3b2759203"] }, Open ]], Cell[CellGroupData[{ -Cell[180799, 5588, 227, 6, 70, 31, 0, "StyleData", "CreationDate", "All",ExpressionUUID->"0d2f7cc1-5635-41de-980c-51962232514e", +Cell[181003, 5590, 227, 6, 70, 31, 0, "StyleData", "CreationDate", "All",ExpressionUUID->"0d2f7cc1-5635-41de-980c-51962232514e", StyleMenuListing->None], -Cell[181029, 5596, 166, 3, 70, 43, 0, "StyleData", "CreationDate", "Printout",ExpressionUUID->"ab03ec2d-66a7-410e-bfa1-2612aa9374c4"] +Cell[181233, 5598, 166, 3, 70, 43, 0, "StyleData", "CreationDate", "Printout",ExpressionUUID->"ab03ec2d-66a7-410e-bfa1-2612aa9374c4"] }, Open ]], Cell[CellGroupData[{ -Cell[181232, 5604, 94, 0, 70, "Subsection",ExpressionUUID->"51fbb048-b2ed-4233-a6c8-0d410b79b537"], +Cell[181436, 5606, 94, 0, 70, "Subsection",ExpressionUUID->"51fbb048-b2ed-4233-a6c8-0d410b79b537"], Cell[CellGroupData[{ -Cell[181351, 5608, 201, 4, 70, 29, 0, "StyleData", "SingleLine", "All",ExpressionUUID->"f24da15c-c4c3-4848-bcf2-648aa2d3f066", +Cell[181555, 5610, 201, 4, 70, 29, 0, "StyleData", "SingleLine", "All",ExpressionUUID->"f24da15c-c4c3-4848-bcf2-648aa2d3f066", StyleMenuListing->None], -Cell[181555, 5614, 188, 3, 70, 41, 0, "StyleData", "SingleLine", "Printout",ExpressionUUID->"0b496a75-48a9-47ef-a456-3af456ab0c15"] +Cell[181759, 5616, 188, 3, 70, 41, 0, "StyleData", "SingleLine", "Printout",ExpressionUUID->"0b496a75-48a9-47ef-a456-3af456ab0c15"] }, Open ]], Cell[CellGroupData[{ -Cell[181780, 5622, 310, 8, 70, 29, 0, "StyleData", "DoubleLine", "All",ExpressionUUID->"c13db9ab-874c-48d2-a1ec-d846c5f49239", +Cell[181984, 5624, 310, 8, 70, 29, 0, "StyleData", "DoubleLine", "All",ExpressionUUID->"c13db9ab-874c-48d2-a1ec-d846c5f49239", StyleMenuListing->None], -Cell[182093, 5632, 143, 2, 70, 41, 0, "StyleData", "DoubleLine", "Printout",ExpressionUUID->"12624df9-5106-4a59-ab33-025f8c1d6c77"] +Cell[182297, 5634, 143, 2, 70, 41, 0, "StyleData", "DoubleLine", "Printout",ExpressionUUID->"12624df9-5106-4a59-ab33-025f8c1d6c77"] }, Open ]], Cell[CellGroupData[{ -Cell[182273, 5639, 336, 10, 70, 27, 0, "StyleData", "ThinLine", "All",ExpressionUUID->"88ce6018-5509-433a-8364-6d01f5b0ebfb", +Cell[182477, 5641, 336, 10, 70, 27, 0, "StyleData", "ThinLine", "All",ExpressionUUID->"88ce6018-5509-433a-8364-6d01f5b0ebfb", StyleMenuListing->None], -Cell[182612, 5651, 94, 0, 70, 39, 0, "StyleData", "ThinLine", "Printout",ExpressionUUID->"6bcc7a6b-1b74-4546-ac6c-0baa228abb5c"] +Cell[182816, 5653, 94, 0, 70, 39, 0, "StyleData", "ThinLine", "Printout",ExpressionUUID->"6bcc7a6b-1b74-4546-ac6c-0baa228abb5c"] }, Open ]], Cell[CellGroupData[{ -Cell[182743, 5656, 336, 10, 70, 29, 0, "StyleData", "MediumLine", "All",ExpressionUUID->"7382cf5d-5981-456e-aac3-e136bf1e965d", +Cell[182947, 5658, 336, 10, 70, 29, 0, "StyleData", "MediumLine", "All",ExpressionUUID->"7382cf5d-5981-456e-aac3-e136bf1e965d", StyleMenuListing->None], -Cell[183082, 5668, 96, 0, 70, 41, 0, "StyleData", "MediumLine", "Printout",ExpressionUUID->"dff33d47-3949-4436-ad69-eb5cf51a6358"] +Cell[183286, 5670, 96, 0, 70, 41, 0, "StyleData", "MediumLine", "Printout",ExpressionUUID->"dff33d47-3949-4436-ad69-eb5cf51a6358"] }, Open ]], Cell[CellGroupData[{ -Cell[183215, 5673, 335, 10, 70, 28, 0, "StyleData", "ThickLine", "All",ExpressionUUID->"955be7a4-314f-4cd3-8123-c62bffefb668", +Cell[183419, 5675, 335, 10, 70, 28, 0, "StyleData", "ThickLine", "All",ExpressionUUID->"955be7a4-314f-4cd3-8123-c62bffefb668", StyleMenuListing->None], -Cell[183553, 5685, 95, 0, 70, 40, 0, "StyleData", "ThickLine", "Printout",ExpressionUUID->"c0f7bf7d-af53-4702-b540-81784cca0a3f"] +Cell[183757, 5687, 95, 0, 70, 40, 0, "StyleData", "ThickLine", "Printout",ExpressionUUID->"c0f7bf7d-af53-4702-b540-81784cca0a3f"] }, Open ]], Cell[CellGroupData[{ -Cell[183685, 5690, 156, 3, 70, 25, 0, "StyleData", "Spacer", "All",ExpressionUUID->"5e4cf297-8f48-4389-b63b-f1f7790f7c5d", +Cell[183889, 5692, 156, 3, 70, 25, 0, "StyleData", "Spacer", "All",ExpressionUUID->"5e4cf297-8f48-4389-b63b-f1f7790f7c5d", StyleMenuListing->None], -Cell[183844, 5695, 92, 0, 70, 37, 0, "StyleData", "Spacer", "Printout",ExpressionUUID->"14b7c669-54df-4d29-a443-f3c3f357b6b1"] +Cell[184048, 5697, 92, 0, 70, 37, 0, "StyleData", "Spacer", "Printout",ExpressionUUID->"14b7c669-54df-4d29-a443-f3c3f357b6b1"] }, Open ]], Cell[CellGroupData[{ -Cell[183973, 5700, 112, 2, 70, 29, 0, "StyleData", "TextSpacer", "All",ExpressionUUID->"4b6e96ff-3d46-4d6b-a077-a01b8d66839d", +Cell[184177, 5702, 112, 2, 70, 29, 0, "StyleData", "TextSpacer", "All",ExpressionUUID->"4b6e96ff-3d46-4d6b-a077-a01b8d66839d", StyleMenuListing->None], -Cell[184088, 5704, 96, 0, 70, 41, 0, "StyleData", "TextSpacer", "Printout",ExpressionUUID->"3167fa98-c17c-4e5e-93cc-194cde4accf2"] +Cell[184292, 5706, 96, 0, 70, 41, 0, "StyleData", "TextSpacer", "Printout",ExpressionUUID->"3167fa98-c17c-4e5e-93cc-194cde4accf2"] }, Open ]], Cell[CellGroupData[{ -Cell[184221, 5709, 115, 2, 70, 32, 0, "StyleData", "SectionSpacer", "All",ExpressionUUID->"767387fb-fb5b-40b6-9c70-f8ce1d1ccd80", +Cell[184425, 5711, 115, 2, 70, 32, 0, "StyleData", "SectionSpacer", "All",ExpressionUUID->"767387fb-fb5b-40b6-9c70-f8ce1d1ccd80", StyleMenuListing->None], -Cell[184339, 5713, 99, 0, 70, 44, 0, "StyleData", "SectionSpacer", "Printout",ExpressionUUID->"48714811-b011-4bd4-87ec-683f185c1059"] +Cell[184543, 5715, 99, 0, 70, 44, 0, "StyleData", "SectionSpacer", "Printout",ExpressionUUID->"48714811-b011-4bd4-87ec-683f185c1059"] }, Open ]], Cell[CellGroupData[{ -Cell[184475, 5718, 116, 2, 70, 33, 0, "StyleData", "GraphicsSpacer", "All",ExpressionUUID->"7ee07964-2a56-435a-b902-5ed59e409edf", +Cell[184679, 5720, 116, 2, 70, 33, 0, "StyleData", "GraphicsSpacer", "All",ExpressionUUID->"7ee07964-2a56-435a-b902-5ed59e409edf", StyleMenuListing->None], -Cell[184594, 5722, 100, 0, 70, 45, 0, "StyleData", "GraphicsSpacer", "Printout",ExpressionUUID->"66073efa-6300-412d-8265-a62c4aa3e26c"] +Cell[184798, 5724, 100, 0, 70, 45, 0, "StyleData", "GraphicsSpacer", "Printout",ExpressionUUID->"66073efa-6300-412d-8265-a62c4aa3e26c"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[184743, 5728, 84, 0, 70, "Subsection",ExpressionUUID->"0a3ca3a0-2a66-4e78-adca-beb42ab077a4"], +Cell[184947, 5730, 84, 0, 70, "Subsection",ExpressionUUID->"0a3ca3a0-2a66-4e78-adca-beb42ab077a4"], Cell[CellGroupData[{ -Cell[184852, 5732, 532, 15, 70, 27, 0, "StyleData", "Outline1", "All",ExpressionUUID->"ce6d94a5-c33a-4805-9b85-72da73e43afb", +Cell[185056, 5734, 532, 15, 70, 27, 0, "StyleData", "Outline1", "All",ExpressionUUID->"ce6d94a5-c33a-4805-9b85-72da73e43afb", CounterIncrements->"Outline1", CounterAssignments->{{"Outline2", 0}}, StyleMenuListing->None], -Cell[185387, 5749, 172, 3, 70, 43, 0, "StyleData", "Outline1", "Presentation",ExpressionUUID->"3f56931b-99af-428b-b4b7-2d9c6401eca8"], -Cell[185562, 5754, 141, 2, 70, 39, 0, "StyleData", "Outline1", "Printout",ExpressionUUID->"1b455068-14a9-46ea-8700-369d63d7138a"], -Cell[185706, 5758, 153, 2, 70, 51, 0, "StyleData", "Outline1", "DoubleSpacedPrintout",ExpressionUUID->"b9fa47fe-980f-4ece-85cf-f2d91b569856"] +Cell[185591, 5751, 172, 3, 70, 43, 0, "StyleData", "Outline1", "Presentation",ExpressionUUID->"3f56931b-99af-428b-b4b7-2d9c6401eca8"], +Cell[185766, 5756, 141, 2, 70, 39, 0, "StyleData", "Outline1", "Printout",ExpressionUUID->"1b455068-14a9-46ea-8700-369d63d7138a"], +Cell[185910, 5760, 153, 2, 70, 51, 0, "StyleData", "Outline1", "DoubleSpacedPrintout",ExpressionUUID->"b9fa47fe-980f-4ece-85cf-f2d91b569856"] }, Open ]], Cell[CellGroupData[{ -Cell[185896, 5765, 184, 4, 70, 32, 0, "StyleData", "Outline1Label", "All",ExpressionUUID->"d8000207-60cd-4126-be87-118a60e0d505", +Cell[186100, 5767, 184, 4, 70, 32, 0, "StyleData", "Outline1Label", "All",ExpressionUUID->"d8000207-60cd-4126-be87-118a60e0d505", StyleMenuListing->None], -Cell[186083, 5771, 134, 2, 70, 48, 0, "StyleData", "Outline1Label", "Presentation",ExpressionUUID->"1ffe8fb0-1eba-4472-b37a-81c016730e0d"], -Cell[186220, 5775, 130, 2, 70, 44, 0, "StyleData", "Outline1Label", "Printout",ExpressionUUID->"79046a7e-2b9f-4d6b-8ead-b5a3abdbe9a9"], -Cell[186353, 5779, 142, 2, 70, 56, 0, "StyleData", "Outline1Label", "DoubleSpacedPrintout",ExpressionUUID->"8128ef45-de37-4ee7-940a-a1769918ff32"] +Cell[186287, 5773, 134, 2, 70, 48, 0, "StyleData", "Outline1Label", "Presentation",ExpressionUUID->"1ffe8fb0-1eba-4472-b37a-81c016730e0d"], +Cell[186424, 5777, 130, 2, 70, 44, 0, "StyleData", "Outline1Label", "Printout",ExpressionUUID->"79046a7e-2b9f-4d6b-8ead-b5a3abdbe9a9"], +Cell[186557, 5781, 142, 2, 70, 56, 0, "StyleData", "Outline1Label", "DoubleSpacedPrintout",ExpressionUUID->"8128ef45-de37-4ee7-940a-a1769918ff32"] }, Open ]], Cell[CellGroupData[{ -Cell[186532, 5786, 553, 15, 70, 27, 0, "StyleData", "Outline2", "All",ExpressionUUID->"a2921b7d-20e8-439f-88fe-2a4a808c5d4d", +Cell[186736, 5788, 553, 15, 70, 27, 0, "StyleData", "Outline2", "All",ExpressionUUID->"a2921b7d-20e8-439f-88fe-2a4a808c5d4d", CounterIncrements->"Outline2", CounterAssignments->{{"Outline3", 0}}, StyleMenuListing->None], -Cell[187088, 5803, 149, 2, 70, 43, 0, "StyleData", "Outline2", "Presentation",ExpressionUUID->"8c3333b8-7fb7-47a3-bce1-02ff03d9aad7"], -Cell[187240, 5807, 142, 2, 70, 39, 0, "StyleData", "Outline2", "Printout",ExpressionUUID->"6574d8fe-5136-4f0f-9cc2-f2667d78bebd"], -Cell[187385, 5811, 154, 2, 70, 51, 0, "StyleData", "Outline2", "DoubleSpacedPrintout",ExpressionUUID->"4d1a803e-2cea-4fc4-86e6-d8d744acd603"] +Cell[187292, 5805, 149, 2, 70, 43, 0, "StyleData", "Outline2", "Presentation",ExpressionUUID->"8c3333b8-7fb7-47a3-bce1-02ff03d9aad7"], +Cell[187444, 5809, 142, 2, 70, 39, 0, "StyleData", "Outline2", "Printout",ExpressionUUID->"6574d8fe-5136-4f0f-9cc2-f2667d78bebd"], +Cell[187589, 5813, 154, 2, 70, 51, 0, "StyleData", "Outline2", "DoubleSpacedPrintout",ExpressionUUID->"4d1a803e-2cea-4fc4-86e6-d8d744acd603"] }, Open ]], Cell[CellGroupData[{ -Cell[187576, 5818, 184, 4, 70, 32, 0, "StyleData", "Outline2Label", "All",ExpressionUUID->"75e93000-e89f-4bca-bb7e-c2fe296a2a63", +Cell[187780, 5820, 184, 4, 70, 32, 0, "StyleData", "Outline2Label", "All",ExpressionUUID->"75e93000-e89f-4bca-bb7e-c2fe296a2a63", StyleMenuListing->None], -Cell[187763, 5824, 134, 2, 70, 48, 0, "StyleData", "Outline2Label", "Presentation",ExpressionUUID->"a1ffa84c-2cbf-4898-a70a-ccc2ce7b5978"], -Cell[187900, 5828, 130, 2, 70, 44, 0, "StyleData", "Outline2Label", "Printout",ExpressionUUID->"efe55957-5c8e-45ce-ae71-426551a7fa09"], -Cell[188033, 5832, 142, 2, 70, 56, 0, "StyleData", "Outline2Label", "DoubleSpacedPrintout",ExpressionUUID->"6f83f08f-b982-4997-98e4-96a1d0dae4aa"] +Cell[187967, 5826, 134, 2, 70, 48, 0, "StyleData", "Outline2Label", "Presentation",ExpressionUUID->"a1ffa84c-2cbf-4898-a70a-ccc2ce7b5978"], +Cell[188104, 5830, 130, 2, 70, 44, 0, "StyleData", "Outline2Label", "Printout",ExpressionUUID->"efe55957-5c8e-45ce-ae71-426551a7fa09"], +Cell[188237, 5834, 142, 2, 70, 56, 0, "StyleData", "Outline2Label", "DoubleSpacedPrintout",ExpressionUUID->"6f83f08f-b982-4997-98e4-96a1d0dae4aa"] }, Open ]], Cell[CellGroupData[{ -Cell[188212, 5839, 500, 14, 70, 27, 0, "StyleData", "Outline3", "All",ExpressionUUID->"decaa63d-286b-4da0-8c1e-ecbd1fdcfcb7", +Cell[188416, 5841, 500, 14, 70, 27, 0, "StyleData", "Outline3", "All",ExpressionUUID->"decaa63d-286b-4da0-8c1e-ecbd1fdcfcb7", CounterIncrements->"Outline3", CounterAssignments->{{"Outline4", 0}}, StyleMenuListing->None], -Cell[188715, 5855, 149, 2, 70, 43, 0, "StyleData", "Outline3", "Presentation",ExpressionUUID->"7760b06d-df4b-4cbd-b97a-1a9e255858c7"], -Cell[188867, 5859, 142, 2, 70, 39, 0, "StyleData", "Outline3", "Printout",ExpressionUUID->"56df2839-6cff-42b9-b03d-1c523a5968c1"], -Cell[189012, 5863, 154, 2, 70, 51, 0, "StyleData", "Outline3", "DoubleSpacedPrintout",ExpressionUUID->"ad3b18b1-3f00-4bb5-a539-cb8a485deff9"] +Cell[188919, 5857, 149, 2, 70, 43, 0, "StyleData", "Outline3", "Presentation",ExpressionUUID->"7760b06d-df4b-4cbd-b97a-1a9e255858c7"], +Cell[189071, 5861, 142, 2, 70, 39, 0, "StyleData", "Outline3", "Printout",ExpressionUUID->"56df2839-6cff-42b9-b03d-1c523a5968c1"], +Cell[189216, 5865, 154, 2, 70, 51, 0, "StyleData", "Outline3", "DoubleSpacedPrintout",ExpressionUUID->"ad3b18b1-3f00-4bb5-a539-cb8a485deff9"] }, Open ]], Cell[CellGroupData[{ -Cell[189203, 5870, 184, 4, 70, 32, 0, "StyleData", "Outline3Label", "All",ExpressionUUID->"f2063669-a7ad-4365-ac3c-6bf97b48902e", +Cell[189407, 5872, 184, 4, 70, 32, 0, "StyleData", "Outline3Label", "All",ExpressionUUID->"f2063669-a7ad-4365-ac3c-6bf97b48902e", StyleMenuListing->None], -Cell[189390, 5876, 134, 2, 70, 48, 0, "StyleData", "Outline3Label", "Presentation",ExpressionUUID->"cb64e825-6320-466e-ad09-94969f750c15"], -Cell[189527, 5880, 130, 2, 70, 44, 0, "StyleData", "Outline3Label", "Printout",ExpressionUUID->"428a6ef4-9de2-4801-a79d-2ff6429b2120"], -Cell[189660, 5884, 142, 2, 70, 56, 0, "StyleData", "Outline3Label", "DoubleSpacedPrintout",ExpressionUUID->"ab3a694e-97d7-40dc-b707-fb5140d5982e"] +Cell[189594, 5878, 134, 2, 70, 48, 0, "StyleData", "Outline3Label", "Presentation",ExpressionUUID->"cb64e825-6320-466e-ad09-94969f750c15"], +Cell[189731, 5882, 130, 2, 70, 44, 0, "StyleData", "Outline3Label", "Printout",ExpressionUUID->"428a6ef4-9de2-4801-a79d-2ff6429b2120"], +Cell[189864, 5886, 142, 2, 70, 56, 0, "StyleData", "Outline3Label", "DoubleSpacedPrintout",ExpressionUUID->"ab3a694e-97d7-40dc-b707-fb5140d5982e"] }, Open ]], Cell[CellGroupData[{ -Cell[189839, 5891, 477, 12, 70, 27, 0, "StyleData", "Outline4", "All",ExpressionUUID->"3abe13df-45e1-48c7-93b6-278a667efaea", +Cell[190043, 5893, 477, 12, 70, 27, 0, "StyleData", "Outline4", "All",ExpressionUUID->"3abe13df-45e1-48c7-93b6-278a667efaea", CounterIncrements->"Outline4", StyleMenuListing->None], -Cell[190319, 5905, 150, 2, 70, 43, 0, "StyleData", "Outline4", "Presentation",ExpressionUUID->"b0f22126-2b35-44de-bee0-c83c727e6c2e"], -Cell[190472, 5909, 142, 2, 70, 39, 0, "StyleData", "Outline4", "Printout",ExpressionUUID->"dc60d4bd-442d-49e5-a586-4818fb74ee0e"], -Cell[190617, 5913, 154, 2, 70, 51, 0, "StyleData", "Outline4", "DoubleSpacedPrintout",ExpressionUUID->"a4c13f2d-07fe-4621-82a5-3287fd3f9ece"] +Cell[190523, 5907, 150, 2, 70, 43, 0, "StyleData", "Outline4", "Presentation",ExpressionUUID->"b0f22126-2b35-44de-bee0-c83c727e6c2e"], +Cell[190676, 5911, 142, 2, 70, 39, 0, "StyleData", "Outline4", "Printout",ExpressionUUID->"dc60d4bd-442d-49e5-a586-4818fb74ee0e"], +Cell[190821, 5915, 154, 2, 70, 51, 0, "StyleData", "Outline4", "DoubleSpacedPrintout",ExpressionUUID->"a4c13f2d-07fe-4621-82a5-3287fd3f9ece"] }, Open ]], Cell[CellGroupData[{ -Cell[190808, 5920, 184, 4, 70, 32, 0, "StyleData", "Outline4Label", "All",ExpressionUUID->"614b29ce-a382-47ea-9dcd-d8f7ae3c5472", +Cell[191012, 5922, 184, 4, 70, 32, 0, "StyleData", "Outline4Label", "All",ExpressionUUID->"614b29ce-a382-47ea-9dcd-d8f7ae3c5472", StyleMenuListing->None], -Cell[190995, 5926, 134, 2, 70, 48, 0, "StyleData", "Outline4Label", "Presentation",ExpressionUUID->"a9e203d4-3949-41c1-a946-5b8db4107338"], -Cell[191132, 5930, 130, 2, 70, 44, 0, "StyleData", "Outline4Label", "Printout",ExpressionUUID->"35359e9f-cbd7-469a-b516-b55ea03c3b5b"], -Cell[191265, 5934, 142, 2, 70, 56, 0, "StyleData", "Outline4Label", "DoubleSpacedPrintout",ExpressionUUID->"4903f667-656b-40c4-865b-659dc7f07893"] +Cell[191199, 5928, 134, 2, 70, 48, 0, "StyleData", "Outline4Label", "Presentation",ExpressionUUID->"a9e203d4-3949-41c1-a946-5b8db4107338"], +Cell[191336, 5932, 130, 2, 70, 44, 0, "StyleData", "Outline4Label", "Printout",ExpressionUUID->"35359e9f-cbd7-469a-b516-b55ea03c3b5b"], +Cell[191469, 5936, 142, 2, 70, 56, 0, "StyleData", "Outline4Label", "DoubleSpacedPrintout",ExpressionUUID->"4903f667-656b-40c4-865b-659dc7f07893"] }, Open ]], Cell[CellGroupData[{ -Cell[191444, 5941, 296, 7, 70, 30, 0, "StyleData", "OutlineText", "All",ExpressionUUID->"5646be2a-30ca-48a5-a085-10f4cf15dc69", +Cell[191648, 5943, 296, 7, 70, 30, 0, "StyleData", "OutlineText", "All",ExpressionUUID->"5646be2a-30ca-48a5-a085-10f4cf15dc69", CounterIncrements->"Text", StyleMenuListing->None], -Cell[191743, 5950, 151, 2, 70, 46, 0, "StyleData", "OutlineText", "Presentation",ExpressionUUID->"88449546-f45e-4f4f-bad6-38963cb5041e"], -Cell[191897, 5954, 190, 4, 70, 42, 0, "StyleData", "OutlineText", "Printout",ExpressionUUID->"b301c457-06ee-4a82-a335-e5a1dcb99890"], -Cell[192090, 5960, 202, 4, 70, 54, 0, "StyleData", "OutlineText", "DoubleSpacedPrintout",ExpressionUUID->"d09fbd70-fdae-455e-a982-d4186bfcc426"] +Cell[191947, 5952, 151, 2, 70, 46, 0, "StyleData", "OutlineText", "Presentation",ExpressionUUID->"88449546-f45e-4f4f-bad6-38963cb5041e"], +Cell[192101, 5956, 190, 4, 70, 42, 0, "StyleData", "OutlineText", "Printout",ExpressionUUID->"b301c457-06ee-4a82-a335-e5a1dcb99890"], +Cell[192294, 5962, 202, 4, 70, 54, 0, "StyleData", "OutlineText", "DoubleSpacedPrintout",ExpressionUUID->"d09fbd70-fdae-455e-a982-d4186bfcc426"] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[192341, 5970, 87, 0, 70, "Subsection",ExpressionUUID->"ff3620f7-e197-4c06-ab51-0b23b40f021a"], +Cell[192545, 5972, 87, 0, 70, "Subsection",ExpressionUUID->"ff3620f7-e197-4c06-ab51-0b23b40f021a"], Cell[CellGroupData[{ -Cell[192453, 5974, 1178, 34, 70, 41, 0, "StyleData", "SlideShowNavigationBar", "All",ExpressionUUID->"0fd5d2e9-17b8-49c2-bda8-9d84ff68d7bb", +Cell[192657, 5976, 1178, 34, 70, 41, 0, "StyleData", "SlideShowNavigationBar", "All",ExpressionUUID->"0fd5d2e9-17b8-49c2-bda8-9d84ff68d7bb", CounterIncrements->"SlideShowNavigationBar", CounterAssignments->{{"Item1Numbered", 0}}, StyleMenuListing->None, Magnification->1], -Cell[193634, 6010, 251, 6, 70, 53, 0, "StyleData", "SlideShowNavigationBar", "Printout",ExpressionUUID->"2dfd2a82-e815-4b69-994b-4365cd7cc473"] +Cell[193838, 6012, 251, 6, 70, 53, 0, "StyleData", "SlideShowNavigationBar", "Printout",ExpressionUUID->"2dfd2a82-e815-4b69-994b-4365cd7cc473"] }, Open ]], Cell[CellGroupData[{ -Cell[193922, 6021, 365, 10, 70, 33, 0, "StyleData", "SlideHyperlink", "All",ExpressionUUID->"77588440-e463-4671-a3b1-2ec2f124c192", +Cell[194126, 6023, 365, 10, 70, 33, 0, "StyleData", "SlideHyperlink", "All",ExpressionUUID->"77588440-e463-4671-a3b1-2ec2f124c192", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[194290, 6033, 104, 0, 70, 49, 0, "StyleData", "SlideHyperlink", "Presentation",ExpressionUUID->"f23d55cf-16e1-4584-9b05-48c5355e2df5"], -Cell[194397, 6035, 185, 4, 70, 45, 0, "StyleData", "SlideHyperlink", "Printout",ExpressionUUID->"81126154-f546-48f3-8b6e-ddd6fd8b7158"], -Cell[194585, 6041, 197, 4, 70, 57, 0, "StyleData", "SlideHyperlink", "DoubleSpacedPrintout",ExpressionUUID->"762c6e1c-64a5-44b6-8fa9-137fb52da323"] +Cell[194494, 6035, 104, 0, 70, 49, 0, "StyleData", "SlideHyperlink", "Presentation",ExpressionUUID->"f23d55cf-16e1-4584-9b05-48c5355e2df5"], +Cell[194601, 6037, 185, 4, 70, 45, 0, "StyleData", "SlideHyperlink", "Printout",ExpressionUUID->"81126154-f546-48f3-8b6e-ddd6fd8b7158"], +Cell[194789, 6043, 197, 4, 70, 57, 0, "StyleData", "SlideHyperlink", "DoubleSpacedPrintout",ExpressionUUID->"762c6e1c-64a5-44b6-8fa9-137fb52da323"] }, Open ]] }, Open ]] }, Closed]], Cell[CellGroupData[{ -Cell[194843, 6052, 87, 0, 53, "Section",ExpressionUUID->"5e738f6c-859e-40d8-95d0-379ea4bebe5c"], +Cell[195047, 6054, 87, 0, 53, "Section",ExpressionUUID->"5e738f6c-859e-40d8-95d0-379ea4bebe5c"], Cell[CellGroupData[{ -Cell[194955, 6056, 128, 2, 54, "Subsection",ExpressionUUID->"4999ee4c-1cca-40d1-94a1-5c03c66f8949"], -Cell[195086, 6060, 144, 3, 70, 21, 0, "StyleData", "RM", "All",ExpressionUUID->"2e3fa441-3f01-48b6-a1d5-cb715e7c735f", +Cell[195159, 6058, 128, 2, 54, "Subsection",ExpressionUUID->"4999ee4c-1cca-40d1-94a1-5c03c66f8949"], +Cell[195290, 6062, 144, 3, 70, 21, 0, "StyleData", "RM", "All",ExpressionUUID->"2e3fa441-3f01-48b6-a1d5-cb715e7c735f", StyleMenuListing->None], -Cell[195233, 6065, 171, 3, 70, 21, 0, "StyleData", "BF", "All",ExpressionUUID->"6831e7fb-50ab-45b2-b44c-2cd8230eb683", +Cell[195437, 6067, 171, 3, 70, 21, 0, "StyleData", "BF", "All",ExpressionUUID->"6831e7fb-50ab-45b2-b44c-2cd8230eb683", StyleMenuListing->None], -Cell[195407, 6070, 209, 4, 70, 21, 0, "StyleData", "IT", "All",ExpressionUUID->"55115cd4-89cd-43b5-b1af-07ca9f1810c7", +Cell[195611, 6072, 209, 4, 70, 21, 0, "StyleData", "IT", "All",ExpressionUUID->"55115cd4-89cd-43b5-b1af-07ca9f1810c7", StyleMenuListing->None], -Cell[195619, 6076, 232, 4, 70, 28, 0, "StyleData", "SmallCaps", "All",ExpressionUUID->"522be9df-26e1-4cdb-8e13-29c4b205502a", +Cell[195823, 6078, 232, 4, 70, 28, 0, "StyleData", "SmallCaps", "All",ExpressionUUID->"522be9df-26e1-4cdb-8e13-29c4b205502a", StyleMenuListing->None, Magnification->0.8] }, Closed]], Cell[CellGroupData[{ -Cell[195888, 6085, 134, 2, 38, "Subsection",ExpressionUUID->"93c6f63b-a7cd-4a07-bca3-7e1ee749366c"], -Cell[196025, 6089, 166, 4, 70, 21, 0, "StyleData", "TR", "All",ExpressionUUID->"249018d4-3812-49ad-a0f4-54228ed19754", +Cell[196092, 6087, 134, 2, 38, "Subsection",ExpressionUUID->"93c6f63b-a7cd-4a07-bca3-7e1ee749366c"], +Cell[196229, 6091, 166, 4, 70, 21, 0, "StyleData", "TR", "All",ExpressionUUID->"249018d4-3812-49ad-a0f4-54228ed19754", StyleMenuListing->None], -Cell[196194, 6095, 253, 6, 70, 21, 0, "StyleData", "TI", "All",ExpressionUUID->"2bbedfef-37d9-4e62-8b8b-38ececb91940", +Cell[196398, 6097, 253, 6, 70, 21, 0, "StyleData", "TI", "All",ExpressionUUID->"2bbedfef-37d9-4e62-8b8b-38ececb91940", StyleMenuListing->None], -Cell[196450, 6103, 251, 6, 70, 21, 0, "StyleData", "TB", "All",ExpressionUUID->"b6c749cd-efe2-4c4c-aeae-df62ad3f5297", +Cell[196654, 6105, 251, 6, 70, 21, 0, "StyleData", "TB", "All",ExpressionUUID->"b6c749cd-efe2-4c4c-aeae-df62ad3f5297", StyleMenuListing->None], -Cell[196704, 6111, 263, 6, 70, 22, 0, "StyleData", "TBI", "All",ExpressionUUID->"bc937953-95de-4fe8-a2ee-cfa3de89c59d", +Cell[196908, 6113, 263, 6, 70, 22, 0, "StyleData", "TBI", "All",ExpressionUUID->"bc937953-95de-4fe8-a2ee-cfa3de89c59d", StyleMenuListing->None], -Cell[196970, 6119, 340, 8, 70, 21, 0, "StyleData", "MR", "All",ExpressionUUID->"5a22233a-fd77-45ad-9aff-60a4bbdcd3c0", +Cell[197174, 6121, 340, 8, 70, 21, 0, "StyleData", "MR", "All",ExpressionUUID->"5a22233a-fd77-45ad-9aff-60a4bbdcd3c0", StyleMenuListing->None], -Cell[197313, 6129, 351, 8, 70, 21, 0, "StyleData", "MO", "All",ExpressionUUID->"f754b8af-82a7-4107-a0ca-f14938436028", +Cell[197517, 6131, 351, 8, 70, 21, 0, "StyleData", "MO", "All",ExpressionUUID->"f754b8af-82a7-4107-a0ca-f14938436028", StyleMenuListing->None], -Cell[197667, 6139, 349, 8, 70, 21, 0, "StyleData", "MB", "All",ExpressionUUID->"767d7101-6055-4ac9-9c89-6ccde9dbf00a", +Cell[197871, 6141, 349, 8, 70, 21, 0, "StyleData", "MB", "All",ExpressionUUID->"767d7101-6055-4ac9-9c89-6ccde9dbf00a", StyleMenuListing->None], -Cell[198019, 6149, 367, 9, 70, 22, 0, "StyleData", "MBO", "All",ExpressionUUID->"a14731ab-2af6-4acd-8dcd-762a1bf75abc", +Cell[198223, 6151, 367, 9, 70, 22, 0, "StyleData", "MBO", "All",ExpressionUUID->"a14731ab-2af6-4acd-8dcd-762a1bf75abc", StyleMenuListing->None], -Cell[198389, 6160, 256, 6, 70, 21, 0, "StyleData", "SR", "All",ExpressionUUID->"5eac881b-2525-4927-ab73-20912609b958", +Cell[198593, 6162, 256, 6, 70, 21, 0, "StyleData", "SR", "All",ExpressionUUID->"5eac881b-2525-4927-ab73-20912609b958", StyleMenuListing->None], -Cell[198648, 6168, 267, 6, 70, 21, 0, "StyleData", "SO", "All",ExpressionUUID->"0e3af7c0-1f5b-436d-ab1e-7b411fa84156", +Cell[198852, 6170, 267, 6, 70, 21, 0, "StyleData", "SO", "All",ExpressionUUID->"0e3af7c0-1f5b-436d-ab1e-7b411fa84156", StyleMenuListing->None], -Cell[198918, 6176, 265, 6, 70, 21, 0, "StyleData", "SB", "All",ExpressionUUID->"378502e9-79c0-4d5a-a0b1-bbadc842aae3", +Cell[199122, 6178, 265, 6, 70, 21, 0, "StyleData", "SB", "All",ExpressionUUID->"378502e9-79c0-4d5a-a0b1-bbadc842aae3", StyleMenuListing->None], -Cell[199186, 6184, 283, 7, 70, 22, 0, "StyleData", "SBO", "All",ExpressionUUID->"29d5fd94-aa73-4f63-98f6-d571fad4b76f", +Cell[199390, 6186, 283, 7, 70, 22, 0, "StyleData", "SBO", "All",ExpressionUUID->"29d5fd94-aa73-4f63-98f6-d571fad4b76f", StyleMenuListing->None], -Cell[199472, 6193, 194, 3, 70, 32, 0, "StyleData", "PlainGreekWin", "All",ExpressionUUID->"cfae4d4c-711b-4d84-bf0d-0db334a8ce05"], -Cell[199669, 6198, 182, 2, 70, 32, 0, "StyleData", "PlainGreekMac", "All",ExpressionUUID->"ed1131cb-7c00-47cc-a428-d6c9abd9b10f"], -Cell[199854, 6202, 182, 2, 70, 32, 0, "StyleData", "PlainGreekLin", "All",ExpressionUUID->"ed250ddb-a6df-4011-8ed2-f5a9fc67f831"] +Cell[199676, 6195, 194, 3, 70, 32, 0, "StyleData", "PlainGreekWin", "All",ExpressionUUID->"cfae4d4c-711b-4d84-bf0d-0db334a8ce05"], +Cell[199873, 6200, 182, 2, 70, 32, 0, "StyleData", "PlainGreekMac", "All",ExpressionUUID->"ed1131cb-7c00-47cc-a428-d6c9abd9b10f"], +Cell[200058, 6204, 182, 2, 70, 32, 0, "StyleData", "PlainGreekLin", "All",ExpressionUUID->"ed250ddb-a6df-4011-8ed2-f5a9fc67f831"] }, Closed]], Cell[CellGroupData[{ -Cell[200073, 6209, 87, 0, 38, "Subsection",ExpressionUUID->"4378a233-3216-4744-b7b9-9c9d13c59b41"], +Cell[200277, 6211, 87, 0, 38, "Subsection",ExpressionUUID->"4378a233-3216-4744-b7b9-9c9d13c59b41"], Cell[CellGroupData[{ -Cell[200185, 6213, 448, 11, 41, 28, 0, "StyleData", "Hyperlink", "All",ExpressionUUID->"15654fb4-5449-49bc-bc76-0070fd080e3b", +Cell[200389, 6215, 448, 11, 41, 28, 0, "StyleData", "Hyperlink", "All",ExpressionUUID->"15654fb4-5449-49bc-bc76-0070fd080e3b", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[200636, 6226, 163, 3, 41, 40, 0, "StyleData", "Hyperlink", "Printout",ExpressionUUID->"58fafaa2-e230-40fb-a15a-bcc67c719a06"] +Cell[200840, 6228, 163, 3, 41, 40, 0, "StyleData", "Hyperlink", "Printout",ExpressionUUID->"58fafaa2-e230-40fb-a15a-bcc67c719a06"] }, Open ]], Cell[CellGroupData[{ -Cell[200836, 6234, 343, 8, 41, 29, 0, "StyleData", "XMLWebLink", "All",ExpressionUUID->"54946ebd-63c2-4614-bdb1-7ac83954b419", +Cell[201040, 6236, 343, 8, 41, 29, 0, "StyleData", "XMLWebLink", "All",ExpressionUUID->"54946ebd-63c2-4614-bdb1-7ac83954b419", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[201182, 6244, 164, 3, 41, 41, 0, "StyleData", "XMLWebLink", "Printout",ExpressionUUID->"d2f9bd03-2135-49f0-9b94-b98d115a20b8"] +Cell[201386, 6246, 164, 3, 41, 41, 0, "StyleData", "XMLWebLink", "Printout",ExpressionUUID->"d2f9bd03-2135-49f0-9b94-b98d115a20b8"] }, Open ]], Cell[CellGroupData[{ -Cell[201383, 6252, 105, 0, 45, "Subsubsection",ExpressionUUID->"b31a45b6-3a11-4757-bae0-7f905730bd70"], +Cell[201587, 6254, 105, 0, 45, "Subsubsection",ExpressionUUID->"b31a45b6-3a11-4757-bae0-7f905730bd70"], Cell[CellGroupData[{ -Cell[201513, 6256, 375, 10, 41, 32, 0, "StyleData", "UserGuideLink", "All",ExpressionUUID->"ce8295e9-4e0d-4f8c-8a2a-d570ec9e9d4a", +Cell[201717, 6258, 375, 10, 41, 32, 0, "StyleData", "UserGuideLink", "All",ExpressionUUID->"ce8295e9-4e0d-4f8c-8a2a-d570ec9e9d4a", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[201891, 6268, 167, 3, 41, 44, 0, "StyleData", "UserGuideLink", "Printout",ExpressionUUID->"f0158aab-b7d1-4bbc-911f-edcfe9ff32db"] +Cell[202095, 6270, 167, 3, 41, 44, 0, "StyleData", "UserGuideLink", "Printout",ExpressionUUID->"f0158aab-b7d1-4bbc-911f-edcfe9ff32db"] }, Open ]], Cell[CellGroupData[{ -Cell[202095, 6276, 375, 10, 41, 32, 0, "StyleData", "ReferenceLink", "All",ExpressionUUID->"bba8ce81-2594-4ef4-9bd5-266c4ae64748", +Cell[202299, 6278, 375, 10, 41, 32, 0, "StyleData", "ReferenceLink", "All",ExpressionUUID->"bba8ce81-2594-4ef4-9bd5-266c4ae64748", StyleMenuListing->None, ButtonStyleMenuListing->None], -Cell[202473, 6288, 167, 3, 41, 44, 0, "StyleData", "ReferenceLink", "Printout",ExpressionUUID->"3976b5b5-82fa-449a-9057-56f6254fab41"] +Cell[202677, 6290, 167, 3, 41, 44, 0, "StyleData", "ReferenceLink", "Printout",ExpressionUUID->"3976b5b5-82fa-449a-9057-56f6254fab41"] }, Open ]], Cell[CellGroupData[{ -Cell[202677, 6296, 505, 12, 41, 28, 0, "StyleData", "SlideLink", "All",ExpressionUUID->"a7f215ac-07ce-4f09-98ce-22547dfc4908", +Cell[202881, 6298, 505, 12, 41, 28, 0, "StyleData", "SlideLink", "All",ExpressionUUID->"a7f215ac-07ce-4f09-98ce-22547dfc4908", StyleMenuListing->None, ButtonStyleMenuListing->"SlideLink"], -Cell[203185, 6310, 178, 4, 38, 40, 0, "StyleData", "SlideLink", "Printout",ExpressionUUID->"e619000c-5e94-4a99-83a8-e6f059cd484c"] +Cell[203389, 6312, 178, 4, 38, 40, 0, "StyleData", "SlideLink", "Printout",ExpressionUUID->"e619000c-5e94-4a99-83a8-e6f059cd484c"] }, Open ]] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ -Cell[203436, 6322, 80, 0, 67, "Section",ExpressionUUID->"8c42ce0f-3cb2-40b1-a3ae-a83dbb62399c"], +Cell[203640, 6324, 80, 0, 67, "Section",ExpressionUUID->"8c42ce0f-3cb2-40b1-a3ae-a83dbb62399c"], Cell[CellGroupData[{ -Cell[203541, 6326, 108, 0, 54, "Subsection",ExpressionUUID->"7d58a25b-2488-4ea1-a5b6-e42cbb484714"], -Cell[203652, 6328, 202, 4, 42, 36, 0, "StyleData", "ReferenceTemplate", "All",ExpressionUUID->"2832d21a-bb01-41b4-9586-ce673e3d8691", +Cell[203745, 6328, 108, 0, 54, "Subsection",ExpressionUUID->"7d58a25b-2488-4ea1-a5b6-e42cbb484714"], +Cell[203856, 6330, 202, 4, 42, 36, 0, "StyleData", "ReferenceTemplate", "All",ExpressionUUID->"2832d21a-bb01-41b4-9586-ce673e3d8691", StyleMenuListing->None], -Cell[203857, 6334, 216, 4, 42, 50, 0, "StyleData", "AuthorFormCustomizationTemplate", "All",ExpressionUUID->"a40093a1-5c68-4710-9a68-5fd27e845c5a", +Cell[204061, 6336, 216, 4, 42, 50, 0, "StyleData", "AuthorFormCustomizationTemplate", "All",ExpressionUUID->"a40093a1-5c68-4710-9a68-5fd27e845c5a", StyleMenuListing->None], -Cell[204076, 6340, 199, 4, 42, 33, 0, "StyleData", "CSSDefinitions", "All",ExpressionUUID->"f0dda2d5-616c-42a3-aa5b-add0fc044d18", +Cell[204280, 6342, 199, 4, 42, 33, 0, "StyleData", "CSSDefinitions", "All",ExpressionUUID->"f0dda2d5-616c-42a3-aa5b-add0fc044d18", StyleMenuListing->None], -Cell[204278, 6346, 198, 4, 42, 32, 0, "StyleData", "LaTeXPreamble", "All",ExpressionUUID->"eebd68a2-cae6-4994-88fc-4916b7ef759d", +Cell[204482, 6348, 198, 4, 42, 32, 0, "StyleData", "LaTeXPreamble", "All",ExpressionUUID->"eebd68a2-cae6-4994-88fc-4916b7ef759d", StyleMenuListing->None], -Cell[204479, 6352, 198, 4, 42, 32, 0, "StyleData", "DOCTYPEFormat", "All",ExpressionUUID->"ee48201b-497d-4193-990a-bc932a183469", +Cell[204683, 6354, 198, 4, 42, 32, 0, "StyleData", "DOCTYPEFormat", "All",ExpressionUUID->"ee48201b-497d-4193-990a-bc932a183469", StyleMenuListing->None], -Cell[204680, 6358, 202, 4, 42, 36, 0, "StyleData", "ValidationSetting", "All",ExpressionUUID->"e45a11e3-c62c-491a-b734-c4a11ad32fce", +Cell[204884, 6360, 202, 4, 42, 36, 0, "StyleData", "ValidationSetting", "All",ExpressionUUID->"e45a11e3-c62c-491a-b734-c4a11ad32fce", StyleMenuListing->None], -Cell[204885, 6364, 204, 4, 42, 38, 0, "StyleData", "XRefPaletteSettings", "All",ExpressionUUID->"a62a0303-de29-413b-adf7-0525aa3a0ce2", +Cell[205089, 6366, 204, 4, 42, 38, 0, "StyleData", "XRefPaletteSettings", "All",ExpressionUUID->"a62a0303-de29-413b-adf7-0525aa3a0ce2", StyleMenuListing->None], -Cell[205092, 6370, 197, 4, 42, 31, 0, "StyleData", "MiscSettings", "All",ExpressionUUID->"649ada03-00a5-4ba4-949c-be1d9c724aca", +Cell[205296, 6372, 197, 4, 42, 31, 0, "StyleData", "MiscSettings", "All",ExpressionUUID->"649ada03-00a5-4ba4-949c-be1d9c724aca", StyleMenuListing->None] }, Open ]], Cell[CellGroupData[{ -Cell[205326, 6379, 117, 2, 54, "Subsection",ExpressionUUID->"e869f720-810d-44ce-bb6a-9c74099c03d5"], -Cell[205446, 6383, 171, 5, 70, "Text",ExpressionUUID->"9c1c6ebb-8004-4686-b63c-53679a1e4e96"], +Cell[205530, 6381, 117, 2, 54, "Subsection",ExpressionUUID->"e869f720-810d-44ce-bb6a-9c74099c03d5"], +Cell[205650, 6385, 171, 5, 70, "Text",ExpressionUUID->"9c1c6ebb-8004-4686-b63c-53679a1e4e96"], Cell[CellGroupData[{ -Cell[205642, 6392, 209, 5, 70, 29, 0, "StyleData", "InlineCell", "All",ExpressionUUID->"fd55eb2f-411a-48cf-bfba-9499926a033c", +Cell[205846, 6394, 209, 5, 70, 29, 0, "StyleData", "InlineCell", "All",ExpressionUUID->"fd55eb2f-411a-48cf-bfba-9499926a033c", StyleMenuListing->None], -Cell[205854, 6399, 160, 2, 70, 88, 1, "StyleData", "InlineCell", "Printout",ExpressionUUID->"093cf9d7-4f34-4c18-9f03-1847e60b5add"] +Cell[206058, 6401, 160, 2, 70, 88, 1, "StyleData", "InlineCell", "Printout",ExpressionUUID->"093cf9d7-4f34-4c18-9f03-1847e60b5add"] }, Open ]], -Cell[206029, 6404, 191, 5, 70, 36, 0, "StyleData", "InlineCellEditing", "All",ExpressionUUID->"50cd8abd-4787-40ca-aa91-1030792c6b87", +Cell[206233, 6406, 191, 5, 70, 36, 0, "StyleData", "InlineCellEditing", "All",ExpressionUUID->"50cd8abd-4787-40ca-aa91-1030792c6b87", StyleMenuListing->None], -Cell[206223, 6411, 178, 3, 70, 31, 0, "StyleData", "TooltipLabel", "All",ExpressionUUID->"27dac1ff-9d93-48de-8b3b-c61740659c9a", +Cell[206427, 6413, 178, 3, 70, 31, 0, "StyleData", "TooltipLabel", "All",ExpressionUUID->"27dac1ff-9d93-48de-8b3b-c61740659c9a", Magnification->FrontEnd`AbsoluteCurrentValue[ EvaluationNotebook[], Magnification]] }, Closed]], Cell[CellGroupData[{ -Cell[206438, 6419, 112, 2, 38, "Subsection",ExpressionUUID->"44c958c7-a624-452e-a057-4ff7424d8402"], -Cell[206553, 6423, 177, 5, 70, "Text",ExpressionUUID->"4bf33e19-8fae-40c6-a1db-893f97c4bf77"], -Cell[206733, 6430, 277, 6, 70, 24, 0, "StyleData", "Paste", "All",ExpressionUUID->"eb3baf3a-c5dc-4b6e-a093-62804f020d13", +Cell[206642, 6421, 112, 2, 38, "Subsection",ExpressionUUID->"44c958c7-a624-452e-a057-4ff7424d8402"], +Cell[206757, 6425, 177, 5, 70, "Text",ExpressionUUID->"4bf33e19-8fae-40c6-a1db-893f97c4bf77"], +Cell[206937, 6432, 277, 6, 70, 24, 0, "StyleData", "Paste", "All",ExpressionUUID->"eb3baf3a-c5dc-4b6e-a093-62804f020d13", StyleMenuListing->None, ButtonStyleMenuListing->Automatic], -Cell[207013, 6438, 241, 4, 70, 29, 0, "StyleData", "StyleApply", "All",ExpressionUUID->"cd6aafaa-24f9-405e-af8f-8d3676124e27", +Cell[207217, 6440, 241, 4, 70, 29, 0, "StyleData", "StyleApply", "All",ExpressionUUID->"cd6aafaa-24f9-405e-af8f-8d3676124e27", StyleMenuListing->None, ButtonStyleMenuListing->Automatic], -Cell[207257, 6444, 298, 6, 70, 45, 0, "StyleData", "StyleApplyWithVerification", "All",ExpressionUUID->"9ce0c72a-367d-4a26-9309-7c6204ebf366", +Cell[207461, 6446, 298, 6, 70, 45, 0, "StyleData", "StyleApplyWithVerification", "All",ExpressionUUID->"9ce0c72a-367d-4a26-9309-7c6204ebf366", StyleMenuListing->None, ButtonStyleMenuListing->Automatic], -Cell[207558, 6452, 376, 7, 70, 35, 0, "StyleData", "ConvertCharacter", "All",ExpressionUUID->"02d25473-6bf6-4499-84be-a57dcb8bd536", +Cell[207762, 6454, 376, 7, 70, 35, 0, "StyleData", "ConvertCharacter", "All",ExpressionUUID->"02d25473-6bf6-4499-84be-a57dcb8bd536", StyleMenuListing->None, ButtonStyleMenuListing->Automatic] }, Closed]], Cell[CellGroupData[{ -Cell[207971, 6464, 114, 2, 38, "Subsection",ExpressionUUID->"008bb9c9-a01a-475e-9b9e-6736f2b7a7ca"], -Cell[208088, 6468, 385, 9, 70, "Text",ExpressionUUID->"781c5fcd-7910-4632-9ef3-c9045b892720"], -Cell[208476, 6479, 169, 4, 70, 35, 0, "StyleData", "UnmatchedBracket", "All",ExpressionUUID->"f034e006-6bb1-48e9-8279-6d419ce91af9", +Cell[208175, 6466, 114, 2, 38, "Subsection",ExpressionUUID->"008bb9c9-a01a-475e-9b9e-6736f2b7a7ca"], +Cell[208292, 6470, 385, 9, 70, "Text",ExpressionUUID->"781c5fcd-7910-4632-9ef3-c9045b892720"], +Cell[208680, 6481, 169, 4, 70, 35, 0, "StyleData", "UnmatchedBracket", "All",ExpressionUUID->"f034e006-6bb1-48e9-8279-6d419ce91af9", StyleMenuListing->None] }, Closed]], Cell[CellGroupData[{ -Cell[208682, 6488, 118, 2, 38, "Subsection",ExpressionUUID->"4868cb14-b691-4798-8d1b-2f4bc18775f5"], -Cell[208803, 6492, 242, 6, 70, 55, 0, "StyleData", "DialogStyleSheetMisapplicationEscape", "All",ExpressionUUID->"8dadd5d1-a352-4574-8786-a33a4130184b", +Cell[208886, 6490, 118, 2, 38, "Subsection",ExpressionUUID->"4868cb14-b691-4798-8d1b-2f4bc18775f5"], +Cell[209007, 6494, 242, 6, 70, 55, 0, "StyleData", "DialogStyleSheetMisapplicationEscape", "All",ExpressionUUID->"8dadd5d1-a352-4574-8786-a33a4130184b", StyleMenuListing->None] }, Closed]] }, Open ]], Cell[CellGroupData[{ -Cell[209094, 6504, 85, 0, 67, "Section",ExpressionUUID->"c358049a-9d90-4b6c-abd6-3ba1142d79fc"], -Cell[209182, 6506, 126, 2, 38, 31, 0, "StyleData", "StandardForm", "All",ExpressionUUID->"eb936810-2438-4372-bfc8-c1bf7783e2c8"], +Cell[209298, 6506, 85, 0, 67, "Section",ExpressionUUID->"c358049a-9d90-4b6c-abd6-3ba1142d79fc"], +Cell[209386, 6508, 126, 2, 38, 31, 0, "StyleData", "StandardForm", "All",ExpressionUUID->"eb936810-2438-4372-bfc8-c1bf7783e2c8"], Cell[CellGroupData[{ -Cell[209333, 6512, 117, 2, 54, "Subsection",ExpressionUUID->"dd3c8fbb-75a6-47f7-939b-376264357670"], -Cell[209453, 6516, 419, 6, 104, "Text",ExpressionUUID->"8f7d1d0f-2c4f-4e32-a040-dc01d300a94f"], +Cell[209537, 6514, 117, 2, 54, "Subsection",ExpressionUUID->"dd3c8fbb-75a6-47f7-939b-376264357670"], +Cell[209657, 6518, 419, 6, 104, "Text",ExpressionUUID->"8f7d1d0f-2c4f-4e32-a040-dc01d300a94f"], Cell[CellGroupData[{ -Cell[209897, 6526, 781, 23, 49, 24, 0, "StyleData", "Input", "All",ExpressionUUID->"0df719f0-f46a-4216-b785-b18fe85f01e3", +Cell[210101, 6528, 781, 23, 49, 24, 0, "StyleData", "Input", "All",ExpressionUUID->"0df719f0-f46a-4216-b785-b18fe85f01e3", CounterIncrements->"Input", MenuCommandKey->"9"], -Cell[210681, 6551, 91, 0, 45, 36, 0, "StyleData", "Input", "Printout",ExpressionUUID->"2f8985c4-f249-46bf-8068-e67fb152028f"] +Cell[210885, 6553, 91, 0, 45, 36, 0, "StyleData", "Input", "Printout",ExpressionUUID->"2f8985c4-f249-46bf-8068-e67fb152028f"] }, Open ]], Cell[CellGroupData[{ -Cell[210809, 6556, 902, 27, 47, 32, 0, "StyleData", "InputNumbered", "All",ExpressionUUID->"99fbc4af-e14d-4f3e-9468-e9d7e7c9922b", +Cell[211013, 6558, 902, 27, 47, 32, 0, "StyleData", "InputNumbered", "All",ExpressionUUID->"99fbc4af-e14d-4f3e-9468-e9d7e7c9922b", CounterIncrements->"Input", StyleMenuListing->None], -Cell[211714, 6585, 190, 3, 38, 44, 0, "StyleData", "InputNumbered", "Printout",ExpressionUUID->"a519f6de-7f87-4227-91b2-e996e09ae6d5"] +Cell[211918, 6587, 190, 3, 38, 44, 0, "StyleData", "InputNumbered", "Printout",ExpressionUUID->"a519f6de-7f87-4227-91b2-e996e09ae6d5"] }, Open ]], -Cell[211919, 6591, 369, 11, 70, 28, 0, "StyleData", "InputOnly", "All",ExpressionUUID->"8372f450-2181-4f3d-886a-67dc1d7a3bf0", +Cell[212123, 6593, 369, 11, 70, 28, 0, "StyleData", "InputOnly", "All",ExpressionUUID->"8372f450-2181-4f3d-886a-67dc1d7a3bf0", CounterIncrements->"Input", StyleMenuListing->None], Cell[CellGroupData[{ -Cell[212313, 6606, 662, 19, 70, 25, 0, "StyleData", "Output", "All",ExpressionUUID->"e73e4d39-bea2-47ac-8a34-c9529abf40f2", +Cell[212517, 6608, 662, 19, 70, 25, 0, "StyleData", "Output", "All",ExpressionUUID->"e73e4d39-bea2-47ac-8a34-c9529abf40f2", CounterIncrements->"Output", StyleMenuListing->None], -Cell[212978, 6627, 92, 0, 70, 37, 0, "StyleData", "Output", "Printout",ExpressionUUID->"ea12a0b5-8ef5-441b-a52e-c32264f8eb0f"] +Cell[213182, 6629, 92, 0, 70, 37, 0, "StyleData", "Output", "Printout",ExpressionUUID->"ea12a0b5-8ef5-441b-a52e-c32264f8eb0f"] }, Open ]], Cell[CellGroupData[{ -Cell[213107, 6632, 559, 16, 70, 26, 0, "StyleData", "Message", "All",ExpressionUUID->"b0106a2c-6c6d-4bfd-aadc-84828ccdf5ef", +Cell[213311, 6634, 559, 16, 70, 26, 0, "StyleData", "Message", "All",ExpressionUUID->"b0106a2c-6c6d-4bfd-aadc-84828ccdf5ef", CounterIncrements->"Message", StyleMenuListing->None], -Cell[213669, 6650, 193, 4, 70, 38, 0, "StyleData", "Message", "Printout",ExpressionUUID->"32352cbe-6763-43d1-81be-56756c0ea432"] +Cell[213873, 6652, 193, 4, 70, 38, 0, "StyleData", "Message", "Printout",ExpressionUUID->"32352cbe-6763-43d1-81be-56756c0ea432"] }, Open ]], Cell[CellGroupData[{ -Cell[213899, 6659, 590, 19, 70, 24, 0, "StyleData", "Print", "All",ExpressionUUID->"db4c8120-23ae-4484-ac9d-9e81a5acc310", +Cell[214103, 6661, 590, 19, 70, 24, 0, "StyleData", "Print", "All",ExpressionUUID->"db4c8120-23ae-4484-ac9d-9e81a5acc310", CounterIncrements->"Print", StyleMenuListing->None], -Cell[214492, 6680, 166, 3, 70, 40, 0, "StyleData", "Print", "Presentation",ExpressionUUID->"53cfda8b-9202-410f-bcbf-9cf534d79105"], -Cell[214661, 6685, 139, 2, 70, 36, 0, "StyleData", "Print", "Printout",ExpressionUUID->"4c47d0fe-c60d-4caf-a98e-2e869d78722d"], -Cell[214803, 6689, 173, 3, 70, 48, 0, "StyleData", "Print", "DoubleSpacedPrintout",ExpressionUUID->"8b2475f9-db53-403b-b851-d9b18982bf06"] +Cell[214696, 6682, 166, 3, 70, 40, 0, "StyleData", "Print", "Presentation",ExpressionUUID->"53cfda8b-9202-410f-bcbf-9cf534d79105"], +Cell[214865, 6687, 139, 2, 70, 36, 0, "StyleData", "Print", "Printout",ExpressionUUID->"4c47d0fe-c60d-4caf-a98e-2e869d78722d"], +Cell[215007, 6691, 173, 3, 70, 48, 0, "StyleData", "Print", "DoubleSpacedPrintout",ExpressionUUID->"8b2475f9-db53-403b-b851-d9b18982bf06"] }, Open ]], -Cell[214991, 6695, 334, 8, 70, "Text",ExpressionUUID->"ddeca5a5-be02-48d6-a2c7-3317f11c677b"], +Cell[215195, 6697, 334, 8, 70, "Text",ExpressionUUID->"ddeca5a5-be02-48d6-a2c7-3317f11c677b"], Cell[CellGroupData[{ -Cell[215350, 6707, 607, 20, 70, 27, 0, "StyleData", "Graphics", "All",ExpressionUUID->"865173fa-b41f-4596-ae07-43b9d2ebe017", +Cell[215554, 6709, 607, 20, 70, 27, 0, "StyleData", "Graphics", "All",ExpressionUUID->"865173fa-b41f-4596-ae07-43b9d2ebe017", CounterIncrements->"Graphics", StyleMenuListing->None], -Cell[215960, 6729, 139, 1, 70, 84, 1, "StyleData", "Graphics", "Printout",ExpressionUUID->"60777adc-d1e3-45a1-9ee1-d485e6d2e255"] +Cell[216164, 6731, 139, 1, 70, 84, 1, "StyleData", "Graphics", "Printout",ExpressionUUID->"60777adc-d1e3-45a1-9ee1-d485e6d2e255"] }, Open ]], -Cell[216114, 6733, 314, 8, 70, 51, 0, "StyleData", "Code", "All",ExpressionUUID->"1ad06ba6-eec6-4f31-b0e0-6f578b59a2d8", +Cell[216318, 6735, 314, 8, 70, 51, 0, "StyleData", "Code", "All",ExpressionUUID->"1ad06ba6-eec6-4f31-b0e0-6f578b59a2d8", MenuSortingValue->10000, MenuCommandKey->None] }, Open ]] }, Open ]] +}, Open ]] } ] *) diff --git a/Mathematica/ScienceNotebooks/PacletInfo.m b/Mathematica/ScienceNotebooks/PacletInfo.m index bd6e264..ec15dff 100755 --- a/Mathematica/ScienceNotebooks/PacletInfo.m +++ b/Mathematica/ScienceNotebooks/PacletInfo.m @@ -1,5 +1,5 @@ (* Created with the Wolfram Language for Students - Personal Use Only : www.wolfram.com *) -Paclet[Name -> "ScienceNotebooks", Version -> "2020.1.30.14", +Paclet[Name -> "ScienceNotebooks", Version -> "2020.1.30.20", MathematicaVersion -> "10.0+", Description -> "Collection of tools and stylesheet for scientific writting and learning.", Creator -> "Michal Mandrysz