diff --git a/src/admin/components/Alerts/DelayedJobsProgressAlert.tsx b/src/admin/components/Alerts/DelayedJobsProgressAlert.tsx index 1155ca212..1a8c1bfef 100644 --- a/src/admin/components/Alerts/DelayedJobsProgressAlert.tsx +++ b/src/admin/components/Alerts/DelayedJobsProgressAlert.tsx @@ -14,18 +14,18 @@ type DelayedJobsProgressAlertProps = { const DelayedJobsProgressAlert: FC<DelayedJobsProgressAlertProps> = ({ show, title, setIsLoadingDelayedJob }) => { const [delayedJobProcessing, setDelayedJobProcessing] = useState<number>(0); const [delayedJobTotal, setDalayedJobTotal] = useState<number>(0); - const [proccessMessage, setProccessMessage] = useState<string>("Running 0 out of 0 polygons (0%)"); + const [progressMessage, setProgressMessage] = useState<string>("Running 0 out of 0 polygons (0%)"); const store = useStore<AppStore>(); useEffect(() => { let intervalId: any; if (show) { intervalId = setInterval(() => { - const { total_content, processed_content, proccess_message } = store.getState().api; + const { total_content, processed_content, progress_message } = store.getState().api; setDalayedJobTotal(total_content); setDelayedJobProcessing(processed_content); - if (proccess_message != "") { - setProccessMessage(proccess_message); + if (progress_message != "") { + setProgressMessage(progress_message); } }, 1000); } @@ -34,7 +34,7 @@ const DelayedJobsProgressAlert: FC<DelayedJobsProgressAlertProps> = ({ show, tit if (intervalId) { setDelayedJobProcessing(0); setDalayedJobTotal(0); - setProccessMessage("Running 0 out of 0 polygons (0%)"); + setProgressMessage("Running 0 out of 0 polygons (0%)"); clearInterval(intervalId); } }; @@ -64,14 +64,14 @@ const DelayedJobsProgressAlert: FC<DelayedJobsProgressAlertProps> = ({ show, tit action={ <button onClick={abortDelayedJob} - className="hover:bg-red-300 ml-2 rounded px-2 py-1 text-sm font-medium text-red-200" + className="ml-2 rounded px-2 py-1 text-sm font-medium text-red-200 hover:bg-red-300" > Cancel </button> } > <AlertTitle>{title}</AlertTitle> - {proccessMessage ?? "Running 0 out of 0 polygons (0%)"} + {progressMessage ?? "Running 0 out of 0 polygons (0%)"} </Alert> </div> ); diff --git a/src/admin/components/ResourceTabs/MonitoredTab/MonitoredTab.tsx b/src/admin/components/ResourceTabs/MonitoredTab/MonitoredTab.tsx index b95842a46..c9fef6a55 100644 --- a/src/admin/components/ResourceTabs/MonitoredTab/MonitoredTab.tsx +++ b/src/admin/components/ResourceTabs/MonitoredTab/MonitoredTab.tsx @@ -1,19 +1,22 @@ import { FC } from "react"; import { TabbedShowLayout, TabProps } from "react-admin"; +import { EntityName } from "@/types/common"; + import DataCard from "./components/DataCard"; import HeaderMonitoredTab from "./components/HeaderMonitoredTab"; interface IProps extends Omit<TabProps, "label" | "children"> { label?: string; + type: EntityName; } -const MonitoredTab: FC<IProps> = ({ label, ...rest }) => { +const MonitoredTab: FC<IProps> = ({ label, type, ...rest }) => { return ( <TabbedShowLayout.Tab label={label ?? "Monitored Data"} {...rest}> <div className="flex w-full flex-col gap-4 p-3"> - <HeaderMonitoredTab /> - <DataCard /> + <HeaderMonitoredTab type={type} /> + <DataCard type={type} /> </div> </TabbedShowLayout.Tab> ); diff --git a/src/admin/components/ResourceTabs/MonitoredTab/components/DataCard.tsx b/src/admin/components/ResourceTabs/MonitoredTab/components/DataCard.tsx index 4c65ba230..ae615f8c6 100644 --- a/src/admin/components/ResourceTabs/MonitoredTab/components/DataCard.tsx +++ b/src/admin/components/ResourceTabs/MonitoredTab/components/DataCard.tsx @@ -1,8 +1,13 @@ import { ColumnDef, RowData } from "@tanstack/react-table"; +import { useT } from "@transifex/react"; import classNames from "classnames"; +import { format } from "date-fns"; import React, { useEffect, useState } from "react"; -import { Else, If, Then, When } from "react-if"; +import { useBasename, useShowContext } from "react-admin"; +import { When } from "react-if"; +import { useNavigate } from "react-router-dom"; +import ExportProcessingAlert from "@/admin/components/Alerts/ExportProcessingAlert"; import CustomChipField from "@/admin/components/Fields/CustomChipField"; import Button from "@/components/elements/Button/Button"; import Dropdown from "@/components/elements/Inputs/Dropdown/Dropdown"; @@ -18,9 +23,30 @@ import Toggle, { TogglePropsItem } from "@/components/elements/Toggle/Toggle"; import Tooltip from "@/components/elements/Tooltip/Tooltip"; import TooltipMapMonitoring from "@/components/elements/TooltipMap/TooltipMapMonitoring"; import Icon, { IconNames } from "@/components/extensive/Icon/Icon"; -import { DUMMY_DATA_TARGET_LAND_USE_TYPES_REPRESENTED } from "@/constants/dashboardConsts"; +import { + DEFAULT_POLYGONS_DATA, + DEFAULT_POLYGONS_DATA_ECOREGIONS, + DEFAULT_POLYGONS_DATA_STRATEGIES +} from "@/constants/dashboardConsts"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; +import { useNotificationContext } from "@/context/notification.provider"; +import { fetchGetV2IndicatorsEntityUuidSlugExport } from "@/generated/apiComponents"; +import SimpleBarChart from "@/pages/dashboard/charts/SimpleBarChart"; import GraphicIconDashboard from "@/pages/dashboard/components/GraphicIconDashboard"; -import { OptionValue } from "@/types/common"; +import SecDashboard from "@/pages/dashboard/components/SecDashboard"; +import { TOTAL_HECTARES_UNDER_RESTORATION_TOOLTIP } from "@/pages/dashboard/constants/tooltips"; +import { EntityName, OptionValue } from "@/types/common"; +import { + parsePolygonsIndicatorDataForEcoRegion, + parsePolygonsIndicatorDataForLandUse, + parsePolygonsIndicatorDataForStrategies, + parseTreeCoverData +} from "@/utils/dashboardUtils"; +import { downloadFileBlob } from "@/utils/network"; + +import { useMonitoredData } from "../hooks/useMonitoredData"; +import EcoRegionDoughnutChart from "./EcoRegionDoughnutChart"; +import TreeLossBarChart from "./TreesLossBarChart"; interface TableData { polygonName: string; @@ -50,52 +76,408 @@ export interface DataStructure extends React.HTMLAttributes<HTMLDivElement> { tableData: TableData[]; } -const DataCard = ({ ...rest }: React.HTMLAttributes<HTMLDivElement>) => { +const COMMON_COLUMNS: ColumnDef<RowData>[] = [ + { + accessorKey: "poly_name", + header: "Polygon Name", + meta: { style: { width: "13.30%" } }, + cell: (props: any) => { + const value = props.getValue(); + return value == "" || value == "-" ? "-" : value; + } + }, + { + accessorKey: "size", + header: "Size (ha)", + meta: { style: { width: "9.01%" } } + }, + { accessorKey: "site_name", header: "Site Name", meta: { style: { width: "9.90%" } } }, + { + accessorKey: "status", + header: "Status", + cell: (props: any) => ( + <CustomChipField + label={props.getValue()} + classNameChipField="!text-[12px] font-medium lg:!text-xs wide:!text-sm" + /> + ), + meta: { style: { width: "7.65%" } } + }, + { + accessorKey: "plantstart", + header: "Plant Start Date", + cell: (props: any) => { + const value = props.getValue(); + return value == "-" ? "-" : format(new Date(value), "dd/MM/yyyy"); + }, + meta: { style: { width: "13.65%" } } + }, + { + accessorKey: "base_line", + header: "Baseline", + cell: (props: any) => { + const value = props.getValue(); + return format(new Date(value), "dd/MM/yyyy"); + }, + meta: { style: { width: "8.87%" } } + } +]; + +type CustomColumnDefInternal<TData> = ColumnDef<TData> & { type?: string }; + +const TABLE_COLUMNS_HECTARES_STRATEGY: ColumnDef<RowData>[] = [ + ...COMMON_COLUMNS, + { + accessorKey: "data.tree_planting", + header: "Tree Planting", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "11.95%" } } + }, + { + accessorKey: "data.assisted_natural_regeneration", + header: () => ( + <> + Asst. Nat. + <br /> + Regeneration + </> + ), + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "12.09%" } } + }, + { + accessorKey: "data.direct_seeding", + header: () => ( + <> + Direct + <br /> + Seeding + </> + ), + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "8.57%" } } + }, + { + accessorKey: "more", + header: "", + enableSorting: false, + cell: props => ( + <div className="flex w-full cursor-pointer items-center justify-end rounded p-1 hover:text-primary"> + <Icon + name={IconNames.IC_ARROW_COLLAPSE} + className="h-4 w-4 rotate-90 rounded-sm text-grey-720 hover:text-primary" + /> + </div> + ), + meta: { style: { width: "5%" } } + } +]; + +const TABLE_COLUMNS_HECTARES_ECO_REGION: ColumnDef<RowData>[] = [ + ...COMMON_COLUMNS, + { + accessorKey: "data.australasian", + header: "Australasian", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "11.45%" } } + }, + { + accessorKey: "data.afrotropical", + header: "Afrotropical", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "11.05%" } } + }, + { + accessorKey: "data.paleartic", + header: "Paleartic11", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "10.33%" } } + }, + { + accessorKey: "more", + header: "", + enableSorting: false, + cell: props => ( + <div className="flex w-full cursor-pointer items-center justify-end rounded p-1 hover:text-primary"> + <Icon + name={IconNames.IC_ARROW_COLLAPSE} + className="h-4 w-4 rotate-90 rounded-sm text-grey-720 hover:text-primary" + /> + </div> + ), + meta: { style: { width: "5%" } } + } +]; + +const TABLE_COLUMNS_HECTARES_LAND_USE: ColumnDef<RowData>[] = [ + ...COMMON_COLUMNS, + { + accessorKey: "data.agroforest", + header: "Agroforest", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "11.95%" } } + }, + { + accessorKey: "data.natural_forest", + header: "Natural Forest", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "12.09%" } } + }, + { + accessorKey: "data.mangrove", + header: "Mangrove", + cell: (props: any) => { + const value = props.getValue(); + return value ?? "-"; + }, + meta: { style: { width: "8.57%" } } + }, + { + accessorKey: "more", + header: "", + enableSorting: false, + cell: props => ( + <div className="flex w-full cursor-pointer items-center justify-end rounded p-1 hover:text-primary"> + <Icon + name={IconNames.IC_ARROW_COLLAPSE} + className="h-4 w-4 rotate-90 rounded-sm text-grey-720 hover:text-primary" + /> + </div> + ), + meta: { style: { width: "5%" } } + } +]; + +const DROPDOWN_OPTIONS = [ + { + title: "Tree Cover Loss", + value: "1", + slug: "treeCoverLoss" + }, + { + title: "Tree Cover Loss from Fire", + value: "2", + slug: "treeCoverLossFires" + }, + { + title: "Hectares Under Restoration By WWF EcoRegion", + value: "3", + slug: "restorationByEcoRegion" + }, + { + title: "Hectares Under Restoration By Strategy", + value: "4", + slug: "restorationByStrategy" + }, + { + title: "Hectares Under Restoration By Target Land Use System", + value: "5", + slug: "restorationByLandUse" + } +]; + +const toggleItems: TogglePropsItem[] = [ + { + key: "dashboard", + render: ( + <Text variant="text-14" className="py-0.5"> + Table + </Text> + ) + }, + { + key: "table", + render: ( + <Text variant="text-14" className="py-0.5"> + Graph + </Text> + ) + }, + { + key: "table", + render: ( + <Text variant="text-14" className="py-0.5"> + Map + </Text> + ) + } +]; + +const noDataGraph = ( + <div className="flex w-full flex-col items-center justify-center gap-2 rounded-xl border border-grey-1000"> + <Text variant={"text-32-semibold"} className="text-blueCustom"> + No Data to Display + </Text> + <div className="flex items-center gap-1"> + <Text variant={"text-14"} className="text-darkCustom"> + RUN ANALYSUS ON PROJECT POLYGONS TO SEE DATA + </Text> + <Tooltip content={"Tooltip"}> + <Icon name={IconNames.IC_INFO} className="h-4 w-4" /> + </Tooltip> + </div> + </div> +); + +const indicatorDescription1 = + "From the <b>23 August 2024</b> analysis, 12.2M out of 20M hectares are being restored. Of those, <b>Direct Seeding was the most prevalent strategy used with more 765,432ha</b>, followed by Tree Planting with 453,89ha and Assisted Natural Regeneration with 93,345ha."; +const indicatorDescription2 = + "The numbers and reports below display data related to Indicator 2: Hectares Under Restoration described in TerraFund’s MRV framework. Please refer to the linked MRV framework for details on how these numbers are sourced and verified."; + +const POLYGONS = [ + { title: "Agrariala Palma", value: "1" }, + { title: "Agraisa", value: "2" }, + { title: "Agrajaya Batitama", value: "3" }, + { title: "Agoue Iboe", value: "4" }, + { title: "Africas", value: "5" }, + { title: "AEK Torup", value: "6" }, + { title: "AEK Raso", value: "7" }, + { title: "AEK Nabara Selatan", value: "8" }, + { title: "Adison Thaochu A", value: "9" }, + { title: "ABA", value: "10" } +]; + +const noDataMap = ( + <div className="absolute top-0 flex h-full w-full"> + <div className="relative flex w-[23vw] flex-col gap-3 p-6"> + <div className="absolute left-0 top-0 h-full w-full rounded-l-xl bg-white bg-opacity-20 backdrop-blur" /> + <Text + variant={"text-14-semibold"} + className="z-10 w-fit border-b-2 border-white border-opacity-20 pb-1.5 text-white" + > + Indicator Description + </Text> + <div className="z-[5] flex min-h-0 flex-col gap-3 overflow-auto pr-1"> + <Text variant={"text-14-light"} className="text-white" containHtml> + {indicatorDescription1} + </Text> + <Text variant={"text-14-light"} className="text-white" containHtml> + {indicatorDescription2} + </Text> + </div> + </div> + <div className="w-full p-6"> + <div className="relative flex h-full w-full flex-col items-center justify-center gap-2 rounded-xl border border-white"> + <div className="absolute left-0 top-0 h-full w-full rounded-xl bg-white bg-opacity-20 backdrop-blur" /> + <Text variant={"text-32-semibold"} className="z-10 text-white"> + No Data to Display + </Text> + <div className="flex items-center gap-1"> + <Text variant={"text-14"} className="z-10 text-white"> + RUN ANALYSUS ON PROJECT POLYGONS TO SEE DATA + </Text> + <Tooltip content={"Tooltip"}> + <Icon name={IconNames.IC_INFO_WHITE_BLACK} className="h-4 w-4" /> + </Tooltip> + </div> + </div> + </div> + </div> +); + +const DataCard = ({ + type, + ...rest +}: React.HTMLAttributes<HTMLDivElement> & { + type?: EntityName; +}) => { const [tabActive, setTabActive] = useState(0); const [selected, setSelected] = useState<OptionValue[]>(["1"]); + const basename = useBasename(); const mapFunctions = useMap(); + const { record } = useShowContext(); + const { polygonsIndicator, treeCoverLossData, treeCoverLossFiresData } = useMonitoredData(type!, record.uuid); + const parsedData = parseTreeCoverData(treeCoverLossData, treeCoverLossFiresData); + const { setSearchTerm, setIndicatorSlug, indicatorSlug, setSelectPolygonFromMap, selectPolygonFromMap } = + useMonitoredDataContext(); + const navigate = useNavigate(); + const { openNotification } = useNotificationContext(); + const [exporting, setExporting] = useState<boolean>(false); + const t = useT(); + const totalHectaresRestoredGoal = record?.total_hectares_restored_goal + ? Number(record?.total_hectares_restored_goal) + : +record?.hectares_to_restore_goal; + const landUseData = polygonsIndicator + ? parsePolygonsIndicatorDataForLandUse(polygonsIndicator, totalHectaresRestoredGoal) + : DEFAULT_POLYGONS_DATA; + const strategiesData = polygonsIndicator + ? parsePolygonsIndicatorDataForStrategies(polygonsIndicator) + : DEFAULT_POLYGONS_DATA_STRATEGIES; + + const ecoRegionData: any = polygonsIndicator + ? parsePolygonsIndicatorDataForEcoRegion(polygonsIndicator) + : DEFAULT_POLYGONS_DATA_ECOREGIONS; const [topHeaderFirstTable, setTopHeaderFirstTable] = useState("102px"); const [topHeaderSecondTable, setTopHeaderSecondTable] = useState("70px"); + const totalElemIndicator = polygonsIndicator?.length ? polygonsIndicator?.length - 1 : null; useEffect(() => { if (typeof window !== "undefined") { const width = window.innerWidth; - setTopHeaderFirstTable(width > 1900 ? "108px" : "102px"); - setTopHeaderSecondTable(width > 1900 ? "75px" : "70px"); + setTopHeaderFirstTable(width > 1900 ? "110px" : "106px"); + setTopHeaderSecondTable(width > 1900 ? "77px" : "72px"); } }, []); - const TABLE_COLUMNS: ColumnDef<RowData>[] = [ + const TABLE_COLUMNS_TREE_COVER_LOSS: CustomColumnDefInternal<RowData>[] = [ { id: "mainInfo", meta: { style: { top: `${topHeaderSecondTable}`, borderBottomWidth: 0, borderRightWidth: 0 } }, header: "", columns: [ { - accessorKey: "polygonName", + accessorKey: "poly_name", header: "Polygon Name", - meta: { style: { top: `${topHeaderFirstTable}`, borderRadius: "0" } } + meta: { style: { top: `${topHeaderFirstTable}`, borderRadius: "0", width: "11%" } } }, { accessorKey: "size", header: "Size (ha)", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "7%" } } + }, + { + accessorKey: "site_name", + header: "Site Name", + meta: { style: { top: `${topHeaderFirstTable}`, width: "8%" } } }, - { accessorKey: "siteName", header: "Site Name", meta: { style: { top: `${topHeaderFirstTable}` } } }, { accessorKey: "status", header: "Status", - meta: { style: { top: `${topHeaderFirstTable}` } }, + meta: { style: { top: `${topHeaderFirstTable}`, width: "7%" } }, cell: (props: any) => ( <CustomChipField label={props.getValue()} - classNameChipField="!text-[10px] font-medium lg:!text-xs wide:!text-sm" + classNameChipField="!text-[12px] font-medium lg:!text-xs wide:!text-sm" /> ) }, { - accessorKey: "plantDate", + accessorKey: "plantstart", header: () => ( <> Plant @@ -103,79 +485,84 @@ const DataCard = ({ ...rest }: React.HTMLAttributes<HTMLDivElement>) => { Start Date </> ), - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "8%" } } } ] }, { id: "analysis2024", - header: "Analysis: April 25, 2024", + header: totalElemIndicator + ? `Analysis: ${format(new Date(polygonsIndicator?.[totalElemIndicator]?.created_at!), "MMMM d, yyyy")}` + : "Analysis:", meta: { style: { top: `${topHeaderSecondTable}`, borderBottomWidth: 0 } }, columns: [ { - accessorKey: "2024-2015", + accessorKey: "data.2015", header: "2015", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2016", + accessorKey: "data.2016", header: "2016", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2017", + accessorKey: "data.2017", header: "2017", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2018", + accessorKey: "data.2018", header: "2018", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2019", + accessorKey: "data.2019", header: "2019", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2020", + accessorKey: "data.2020", header: "2020", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2021", + accessorKey: "data.2021", header: "2021", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2022", + accessorKey: "data.2022", header: "2022", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2023", + accessorKey: "data.2023", header: "2023", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } }, { - accessorKey: "2024-2024", + accessorKey: "data.2024", header: "2024", - meta: { style: { top: `${topHeaderFirstTable}` } } + meta: { style: { top: `${topHeaderFirstTable}`, width: "5.4%" } } } ] }, { id: "moreInfo", header: " ", - meta: { style: { top: `${topHeaderSecondTable}`, borderBottomWidth: 0 } }, + meta: { style: { top: `${topHeaderSecondTable}`, borderBottomWidth: 0, width: "5%" } }, columns: [ { accessorKey: "more", header: "", enableSorting: false, cell: props => ( - <div className="w-min rounded p-1 hover:bg-primary-200"> - <Icon name={IconNames.ELIPSES} className="roudn h-4 w-4 rounded-sm text-grey-720 hover:bg-primary-200" /> + <div className="flex w-full cursor-pointer items-center justify-end rounded p-1 hover:text-primary"> + <Icon + name={IconNames.IC_ARROW_COLLAPSE} + className="h-4 w-4 rotate-90 rounded-sm text-grey-720 hover:text-primary" + /> </div> ), meta: { style: { top: `${topHeaderFirstTable}`, borderRadius: "0" } } @@ -184,698 +571,172 @@ const DataCard = ({ ...rest }: React.HTMLAttributes<HTMLDivElement>) => { } ]; - const TABLE_COLUMNS_HECTARES: ColumnDef<RowData>[] = [ - { accessorKey: "polygonName", header: "Polygon Name" }, - { - accessorKey: "size", - header: "Size (ha)" - }, - { accessorKey: "siteName", header: "Site Name" }, - { - accessorKey: "status", - header: "Status", - cell: (props: any) => ( - <CustomChipField - label={props.getValue()} - classNameChipField="!text-[10px] font-medium lg:!text-xs wide:!text-sm" - /> - ) - }, - { - accessorKey: "plantDate", - header: "Plant Start Date" - }, - { - accessorKey: "baseline", - header: "Baseline" - }, - { - accessorKey: "treePlanting", - header: "Tree Planting" - }, - { - accessorKey: "regeneration", - header: () => ( - <> - Asst. Nat. - <br /> - Regeneration - </> - ) - }, - { - accessorKey: "seeding", - header: () => ( - <> - Direct - <br /> - Seeding - </> - ) - }, - { - accessorKey: "more", - header: "", - enableSorting: false, - cell: props => ( - <div className="w-min rounded p-1 hover:bg-primary-200"> - <Icon name={IconNames.ELIPSES} className="roudn h-4 w-4 rounded-sm text-grey-720 hover:bg-primary-200" /> - </div> - ) - } - ]; + const TABLE_COLUMNS_MAPPING: Record<string, any> = { + treeCoverLoss: TABLE_COLUMNS_TREE_COVER_LOSS, + treeCoverLossFires: TABLE_COLUMNS_TREE_COVER_LOSS, + restorationByEcoRegion: TABLE_COLUMNS_HECTARES_ECO_REGION, + restorationByStrategy: TABLE_COLUMNS_HECTARES_STRATEGY, + restorationByLandUse: TABLE_COLUMNS_HECTARES_LAND_USE + }; - const TABLE_DATA = [ - { - polygonName: "ABA", - siteName: "Palm Oil", - status: "Draft", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Adison Thaochu A", - siteName: "Palm Oil", - status: "Submitted", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Nabara Selatan", - siteName: "Palm Oil", - status: "Needs Info", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Raso", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Torup", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Africas", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agoue Iboe", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agrajaya Baktitama", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agralsa", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Africas", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agoue Iboe", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agrajaya Baktitama", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Agralsa", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "ABA", - siteName: "Palm Oil", - status: "Draft", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "Adison Thaochu A", - siteName: "Palm Oil", - status: "Submitted", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Nabara Selatan", - siteName: "Palm Oil", - status: "Needs Info", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Raso", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - }, - { - polygonName: "AEK Torup", - siteName: "Palm Oil", - status: "Approved", - size: "7,473", - plantDate: "9/26/24", - baseline: "25/4/24", - treePlanting: "0.423", - regeneration: "0.120", - seeding: "0.120", - "2024-2015": "0.423", - "2024-2016": "0.120", - "2024-2017": "0.655", - "2024-2018": "0.208", - "2024-2019": "0.654", - "2024-2020": "0.466", - "2024-2021": "0.151", - "2024-2022": "0.385", - "2024-2023": "0.457", - "2024-2024": "0.966" - } - ]; + const handleExport = async () => { + try { + setExporting(true); + const blob = await fetchGetV2IndicatorsEntityUuidSlugExport({ + pathParams: { entity: type!, uuid: record.uuid, slug: indicatorSlug! } + }); + downloadFileBlob(blob!, `Indicator (${DROPDOWN_OPTIONS.find(item => item.slug === indicatorSlug)?.title}).csv`); - const DROPDOWN_OPTIONS = [ - { - title: "Tree Cover Loss", - value: "1" - }, - { - title: "Tree Cover Loss from Fire", - value: "2" - }, - { - title: "Hectares Under Restoration By WWF EcoRegion", - value: "3" - }, - { - title: "Hectares Under Restoration By Strategy", - value: "4" - }, - { - title: "Hectares Under Restoration By Target Land Use System", - value: "5" - }, - { - title: "Tree Count", - value: "6" + openNotification("success", t("Success! Export completed."), t("The export has been completed successfully.")); + setExporting(false); + } catch (error) { + openNotification("error", t("Error! Export failed."), t("The export has failed. Please try again.")); + setExporting(false); + } finally { + setExporting(false); } - ]; + }; - const toggleItems: TogglePropsItem[] = [ - { - key: "dashboard", - render: ( - <Text variant="text-14" className="py-0.5"> - Table - </Text> - ) - }, - { - key: "table", - render: ( - <Text variant="text-14" className="py-0.5"> - Graph - </Text> - ) - }, - { - key: "table", - render: ( - <Text variant="text-14" className="py-0.5"> - Map - </Text> - ) + useEffect(() => { + if (selectPolygonFromMap?.isOpen) { + setSelectPolygonFromMap?.({ isOpen: false, uuid: "" }); } - ]; - - const POLYGONS = [ - { title: "Agrariala Palma", value: "1" }, - { title: "Agraisa", value: "2" }, - { title: "Agrajaya Batitama", value: "3" }, - { title: "Agoue Iboe", value: "4" }, - { title: "Africas", value: "5" }, - { title: "AEK Torup", value: "6" }, - { title: "AEK Raso", value: "7" }, - { title: "AEK Nabara Selatan", value: "8" }, - { title: "Adison Thaochu A", value: "9" }, - { title: "ABA", value: "10" } - ]; - - const indicatorDescription1 = - "From the <b>23 August 2024</b> analysis, 12.2M out of 20M hectares are being restored. Of those, <b>Direct Seeding was the most prevalent strategy used with more 765,432ha</b>, followed by Tree Planting with 453,89ha and Assisted Natural Regeneration with 93,345ha."; - const indicatorDescription2 = - "The numbers and reports below display data related to Indicator 2: Hectares Under Restoration described in TerraFund’s MRV framework. Please refer to the linked MRV framework for details on how these numbers are sourced and verified."; - - const noDataGraph = ( - <div className="flex w-full flex-col items-center justify-center gap-2 rounded-xl border border-grey-1000"> - <Text variant={"text-32-semibold"} className="text-blueCustom"> - No Data to Display - </Text> - <div className="flex items-center gap-1"> - <Text variant={"text-14"} className="text-darkCustom"> - RUN ANALYSUS ON PROJECT POLYGONS TO SEE DATA - </Text> - <Tooltip content={"Tooltip"}> - <Icon name={IconNames.IC_INFO} className="h-4 w-4" /> - </Tooltip> - </div> - </div> - ); - - const noDataMap = ( - <div className="absolute top-0 flex h-full w-full"> - <div className="relative flex w-[23vw] flex-col gap-3 p-6"> - <div className="absolute left-0 top-0 h-full w-full rounded-l-xl bg-white bg-opacity-20 backdrop-blur" /> - <Text - variant={"text-14-semibold"} - className="z-10 w-fit border-b-2 border-white border-opacity-20 pb-1.5 text-white" - > - Indicator Description - </Text> - <div className="z-[5] flex min-h-0 flex-col gap-3 overflow-auto pr-1"> - <Text variant={"text-14-light"} className="text-white" containHtml> - {indicatorDescription1} - </Text> - <Text variant={"text-14-light"} className="text-white" containHtml> - {indicatorDescription2} - </Text> - </div> - </div> - <div className="w-full p-6"> - <div className="relative flex h-full w-full flex-col items-center justify-center gap-2 rounded-xl border border-white"> - <div className="absolute left-0 top-0 h-full w-full rounded-xl bg-white bg-opacity-20 backdrop-blur" /> - <Text variant={"text-32-semibold"} className="z-10 text-white"> - No Data to Display - </Text> - <div className="flex items-center gap-1"> - <Text variant={"text-14"} className="z-10 text-white"> - RUN ANALYSUS ON PROJECT POLYGONS TO SEE DATA - </Text> - <Tooltip content={"Tooltip"}> - <Icon name={IconNames.IC_INFO_WHITE_BLACK} className="h-4 w-4" /> - </Tooltip> - </div> - </div> - </div> - </div> - ); - + }, [selectPolygonFromMap]); return ( - <div className="-mx-4 h-[calc(100vh-200px)] overflow-auto px-4 pb-4"> - <div className="sticky top-[0px] z-[10] rounded-lg border border-grey-850 bg-white shadow-monitored" {...rest}> - <div className="sticky top-[0px] z-[10] flex items-center justify-between rounded-t-lg bg-white px-6 pb-3 pt-6"> - <div className="flex items-center gap-2"> - <Icon name={IconNames.MONITORING_PROFILE} className="h-8 w-8" /> - <Dropdown - options={DROPDOWN_OPTIONS} - onChange={option => { - setSelected(option); - }} - variant={VARIANT_DROPDOWN_SIMPLE} - inputVariant="text-14-semibold" - className="z-50" - defaultValue={[DROPDOWN_OPTIONS[0].value]} - optionsClassName="w-max z-50" - /> - </div> - - <div className="flex items-center gap-2"> - <When condition={tabActive === 0}> - <FilterSearchBox placeholder="Search" onChange={() => {}} variant={FILTER_SEARCH_MONITORING} /> - <Button variant="white-border" className="!h-[32px] !min-h-[32px] !w-8 p-0" onClick={() => {}}> - <Icon name={IconNames.DOWNLOAD_PA} className="h-4 w-4 text-darkCustom" /> - </Button> - </When> + <> + <div className="-mx-4 h-[calc(100vh-200px)] overflow-auto px-4 pb-4"> + <div className="sticky top-[0px] z-[10] rounded-lg border border-grey-850 bg-white shadow-monitored" {...rest}> + <div className="sticky top-[0px] z-[11] flex items-center justify-between rounded-t-lg bg-white px-6 pb-3 pt-6"> + <div className="flex items-center gap-2"> + <Icon name={IconNames.MONITORING_PROFILE} className="h-8 w-8" /> + <Dropdown + options={DROPDOWN_OPTIONS} + onChange={option => { + setIndicatorSlug?.(DROPDOWN_OPTIONS.find(item => item.value === option[0])?.slug!); + setSelected(option); + }} + variant={VARIANT_DROPDOWN_SIMPLE} + inputVariant="text-14-semibold" + className="z-50" + defaultValue={[DROPDOWN_OPTIONS.find(item => item.slug === indicatorSlug)?.value!]} + optionsClassName="w-max z-50" + /> + </div> - <Toggle items={toggleItems} onChangeActiveIndex={setTabActive} /> - </div> - </div> - <When condition={tabActive === 0}> - <div className="relative w-full px-6 pb-6"> - <If condition={selected.includes("1") || selected.includes("2")}> - <Then> - <Table - columns={TABLE_COLUMNS} - data={TABLE_DATA} - variant={VARIANT_TABLE_MONITORED} - classNameWrapper="!overflow-visible" - visibleRows={50} - border={1} - /> - </Then> - <Else> - <Table - columns={TABLE_COLUMNS_HECTARES} - data={TABLE_DATA} - variant={VARIANT_TABLE_MONITORED} - classNameWrapper="!overflow-visible" - visibleRows={50} + <div className="flex items-center gap-2"> + <When condition={tabActive === 0}> + <FilterSearchBox + placeholder="Search" + onChange={e => { + setSearchTerm(e); + }} + variant={FILTER_SEARCH_MONITORING} /> - </Else> - </If> + <Button variant="white-border" className="!h-[32px] !min-h-[32px] !w-8 p-0" onClick={handleExport}> + <Icon name={IconNames.DOWNLOAD_PA} className="h-4 w-4 text-darkCustom" /> + </Button> + </When> + + <Toggle items={toggleItems} onChangeActiveIndex={setTabActive} /> + </div> </div> - </When> - <When condition={tabActive === 1}> - <div className="relative flex w-full gap-8 px-6 pb-6 pt-2"> - <Dropdown - containerClassName={classNames("absolute left-full -translate-x-full pr-6", { - hidden: selected.includes("6") - })} - className="w-max" - options={POLYGONS} - defaultValue={["1"]} - onChange={() => {}} - /> - <div className="sticky top-[77px] flex h-[calc(100vh-320px)] w-1/4 min-w-[25%] flex-col gap-3"> - <Text - variant={"text-14-semibold"} - className="w-fit border-b-2 border-neutral-450 pb-1.5 text-blueCustom-900" - > - Indicator Description - </Text> - <div className="flex min-h-0 flex-col gap-3 overflow-auto pr-1"> - <Text variant={"text-14-light"} className="text-darkCustom-150" containHtml> - {indicatorDescription1} - </Text> - <Text variant={"text-14-light"} className="text-darkCustom-150" containHtml> - {indicatorDescription2} + <When condition={tabActive === 0}> + <div className="relative w-full px-6 pb-6"> + <Table + columns={TABLE_COLUMNS_MAPPING[indicatorSlug!]} + data={polygonsIndicator ?? []} + variant={VARIANT_TABLE_MONITORED} + classNameWrapper="!overflow-visible" + visibleRows={50} + border={1} + onRowClick={(row: any) => { + navigate(`${basename}/site/${row?.site_id}/show/1`); + setSelectPolygonFromMap?.({ isOpen: true, uuid: row?.poly_id }); + }} + /> + </div> + </When> + <When condition={tabActive === 1}> + <div className="relative z-auto flex w-full gap-8 px-6 pb-6 pt-2"> + <Dropdown + containerClassName={classNames("absolute left-full -translate-x-full pr-6 z-50", { + hidden: selected.includes("6") + })} + optionsClassName="!w-max right-0" + className="w-max" + options={POLYGONS} + defaultValue={["1"]} + onChange={() => {}} + /> + <div className="sticky top-[77px] flex h-[calc(100vh-320px)] w-1/4 min-w-[25%] flex-col gap-3"> + <Text + variant={"text-14-semibold"} + className="w-fit border-b-2 border-neutral-450 pb-1.5 text-blueCustom-900" + > + Indicator Description </Text> + <div className="flex min-h-0 flex-col gap-3 overflow-auto pr-1"> + <Text variant={"text-14-light"} className="text-darkCustom-150" containHtml> + {indicatorDescription1} + </Text> + <Text variant={"text-14-light"} className="text-darkCustom-150" containHtml> + {indicatorDescription2} + </Text> + </div> </div> + <When condition={selected.includes("1")}> + <TreeLossBarChart data={parsedData} /> + </When> + <When condition={selected.includes("2") || selected.includes("2")}> + <TreeLossBarChart data={parsedData} /> + </When> + <When condition={selected.includes("3")}> + <EcoRegionDoughnutChart data={ecoRegionData} /> + </When> + <When condition={selected.includes("4")}> + <div className="flex w-full flex-col gap-6 lg:ml-[35px]"> + <SecDashboard + title={"Total Hectares Under Restoration"} + data={{ value: record.total_hectares_restored_sum, totalValue: totalHectaresRestoredGoal }} + className="w-full place-content-center pl-8" + tooltip={TOTAL_HECTARES_UNDER_RESTORATION_TOOLTIP} + showTreesRestoredGraph={false} + /> + <SimpleBarChart data={strategiesData} /> + </div> + </When> + <When condition={selected.includes("5")}> + <div className="w-[73%] pt-12"> + <GraphicIconDashboard + data={landUseData.graphicTargetLandUseTypes} + maxValue={totalHectaresRestoredGoal} + /> + </div> + </When> + <When condition={selected.includes("6")}>{noDataGraph}</When> </div> - <When condition={selected.includes("1")}> - <img src="/images/monitoring-graph-2.png" alt="" className="w-[73%] object-contain" /> - </When> - <When condition={selected.includes("2") || selected.includes("2")}> - <img src="/images/monitoring-graph-2.png" alt="" className="w-[73%] object-contain" /> - </When> - <When condition={selected.includes("3")}> - <img src="/images/monitoring-graph-3.png" alt="" className="w-[73%] object-contain" /> - </When> - <When condition={selected.includes("4")}> - <img src="/images/monitoring-graph-4.png" alt="" className="w-[73%] object-contain" /> - </When> - <When condition={selected.includes("5")}> - <div className="w-[73%]"> - <GraphicIconDashboard - data={DUMMY_DATA_TARGET_LAND_USE_TYPES_REPRESENTED.graphicTargetLandUseTypes} - maxValue={90} - /> + </When> + <When condition={tabActive === 2}> + <div className="relative h-[calc(100vh-295px)] w-full"> + <div className="absolute left-1/2 top-6 z-10"> + <TooltipMapMonitoring /> </div> - </When> - <When condition={selected.includes("6")}>{noDataGraph}</When> - </div> - </When> - <When condition={tabActive === 2}> - <div className="relative h-[calc(100vh-295px)] w-full"> - <div className="absolute left-1/2 top-6 z-10"> - <TooltipMapMonitoring /> + <MapContainer + className="!h-full" + mapFunctions={mapFunctions} + sitePolygonData={[]} + hasControls={!selected.includes("6")} + showLegend={!selected.includes("6")} + legendPosition="bottom-right" + showViewGallery={false} + /> + <When condition={selected.includes("6")}>{noDataMap}</When> </div> - <MapContainer - className="!h-full" - mapFunctions={mapFunctions} - sitePolygonData={[]} - hasControls={!selected.includes("6")} - showLegend={!selected.includes("6")} - legendPosition="bottom-right" - showViewGallery={false} - /> - <When condition={selected.includes("6")}>{noDataMap}</When> - </div> - </When> + </When> + </div> </div> - </div> + <ExportProcessingAlert show={exporting} /> + </> ); }; diff --git a/src/admin/components/ResourceTabs/MonitoredTab/components/EcoRegionDoughnutChart.tsx b/src/admin/components/ResourceTabs/MonitoredTab/components/EcoRegionDoughnutChart.tsx new file mode 100644 index 000000000..fd8c26abd --- /dev/null +++ b/src/admin/components/ResourceTabs/MonitoredTab/components/EcoRegionDoughnutChart.tsx @@ -0,0 +1,127 @@ +import React, { useState } from "react"; +import { Cell, Label, Legend, Pie, PieChart, ResponsiveContainer, Sector, Tooltip } from "recharts"; + +interface ChartDataItem { + name: string; + value: number; +} + +export interface EcoRegionData { + chartData: ChartDataItem[]; + total: number; +} + +interface EcoRegionDoughnutChartProps { + data: EcoRegionData; +} + +type LegendPayload = { + value: string; + id?: string; + type?: string; + color?: string; +}; + +interface CustomLegendProps { + payload?: LegendPayload[]; +} + +const COLORS = ["#FFD699", "#90EE90", "#2F4F4F", "#BDB76B", "#98FB98"]; + +const CustomLegend = ({ payload }: CustomLegendProps) => { + if (!payload) return null; + return ( + <ul className="flex flex-col gap-2 text-sm"> + {payload.map((entry, index) => ( + <li key={index} className="flex items-center gap-2"> + <span className="inline-block h-3 w-3 rounded-full" style={{ backgroundColor: entry.color }} /> + <span>{entry.value}</span> + </li> + ))} + </ul> + ); +}; + +const CustomTooltip = ({ active, payload }: any) => { + if (active && payload && payload.length) { + return ( + <div className="shadow-lg rounded border bg-white p-2"> + <p className="font-medium">{payload[0].name}</p> + <p className="text-gray-600">{`Value: ${payload[0].value}`}</p> + </div> + ); + } + return null; +}; + +const renderActiveShape = (props: any) => { + const { cx, cy, innerRadius, outerRadius, startAngle, endAngle, fill } = props; + return ( + <g> + <Sector + cx={cx} + cy={cy} + innerRadius={innerRadius} + outerRadius={outerRadius + 10} + startAngle={startAngle} + endAngle={endAngle} + fill={fill} + /> + </g> + ); +}; + +const EcoRegionDoughnutChart: React.FC<EcoRegionDoughnutChartProps> = ({ data }) => { + const { chartData } = data; + const [activeIndex, setActiveIndex] = useState<number | undefined>(undefined); + + const onPieEnter = (_: any, index: number) => { + setActiveIndex(index); + }; + + const onPieLeave = () => { + setActiveIndex(undefined); + }; + + return ( + <div className="relative flex h-80 w-full items-center justify-center"> + <ResponsiveContainer width="100%" height="100%"> + <PieChart> + <Tooltip content={<CustomTooltip />} /> + <Pie + data={chartData} + cx="50%" + cy="50%" + innerRadius={100} + outerRadius={140} + paddingAngle={0} + dataKey="value" + onMouseEnter={onPieEnter} + onMouseLeave={onPieLeave} + activeIndex={activeIndex} + activeShape={renderActiveShape} + > + <Label position="center" className="text-20-semibold !font-semibold !text-darkCustom"> + ECO-REGION + </Label> + {chartData.map((entry, index) => ( + <Cell key={`cell-${index}`} fill={COLORS[index % COLORS.length]} /> + ))} + </Pie> + <Legend + content={props => <CustomLegend {...props} />} + layout="vertical" + align="right" + verticalAlign="middle" + wrapperStyle={{ + right: "calc(50% - 261px)", + paddingLeft: 0 + }} + /> + </PieChart> + </ResponsiveContainer> + </div> + ); +}; + +export default EcoRegionDoughnutChart; diff --git a/src/admin/components/ResourceTabs/MonitoredTab/components/HeaderMonitoredTab.tsx b/src/admin/components/ResourceTabs/MonitoredTab/components/HeaderMonitoredTab.tsx index 1c6eb338f..bd1573449 100644 --- a/src/admin/components/ResourceTabs/MonitoredTab/components/HeaderMonitoredTab.tsx +++ b/src/admin/components/ResourceTabs/MonitoredTab/components/HeaderMonitoredTab.tsx @@ -1,3 +1,6 @@ +import { useShowContext } from "react-admin"; +import { When } from "react-if"; + import Button from "@/components/elements/Button/Button"; import LinearProgressBarMonitored from "@/components/elements/ProgressBar/LinearProgressBar/LineProgressBarMonitored"; import Text from "@/components/elements/Text/Text"; @@ -6,29 +9,16 @@ import { ModalId } from "@/components/extensive/Modal/ModalConst"; import ModalNotes from "@/components/extensive/Modal/ModalNotes"; import ModalRunAnalysis from "@/components/extensive/Modal/ModalRunAnalysis"; import { useModalContext } from "@/context/modal.provider"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; +import { EntityName } from "@/types/common"; -const HeaderMonitoredTab = () => { - const { openModal, closeModal } = useModalContext(); +import { useMonitoredData } from "../hooks/useMonitoredData"; - const dataPolygonOverview = [ - { - status: "Draft", - count: 12.5, - color: "bg-grey-200" - }, - { - status: "Submitted", - count: 42.5 - }, - { - status: "Needs Info", - count: 22.5 - }, - { - status: "Approved", - count: 22.5 - } - ]; +const HeaderMonitoredTab = ({ type }: { type?: EntityName }) => { + const { openModal, closeModal } = useModalContext(); + const { record } = useShowContext(); + const { headerBarPolygonStatus, totalPolygonsStatus, polygonMissingAnalysis } = useMonitoredData(type, record?.uuid); + const { loadingAnalysis } = useMonitoredDataContext(); const openRunAnalysis = () => { openModal( @@ -37,6 +27,9 @@ const HeaderMonitoredTab = () => { title="Update Analysis " content="Project Developers may submit one or all polygons for review." primaryButtonText="Run" + projectName={record?.project ? record?.project?.name : record?.name} + entityType={type} + entityUuid={record?.uuid} primaryButtonProps={{ className: "px-8 py-3", variant: "primary", @@ -60,9 +53,9 @@ const HeaderMonitoredTab = () => { ModalId.MODAL_NOTES, <ModalNotes title="Notes" - content="Baseline Analysis Underway: There are 200 approved polygons for this project -that are ready for analysis and 90 that have been analyzed already. Update the -graphs and tables below by clicking update analysis button to your right. " + content={`Baseline Analysis Underway: There are ${totalPolygonsStatus} approved polygons for this project +that are ready for analysis and ${polygonMissingAnalysis} that have been analyzed already. Update the +graphs and tables below by clicking update analysis button to your right. `} primaryButtonText="Close" primaryButtonProps={{ className: "px-8 py-3", @@ -86,18 +79,13 @@ graphs and tables below by clicking update analysis button to your right. " <Icon name={IconNames.IC_INFO} className="h-4 w-4 text-darkCustom" /> </Text> <div className="flex items-center gap-1"> - <Text as="span" variant="text-12" className="text-darkCustom-300"> - Analyzed: - </Text> - <Icon name={IconNames.IC_LOADING} className="h-4 w-4 text-success-600" /> - <Text as="span" variant="text-12-bold" className="flex items-center gap-1 text-darkCustom-300"> - Baseline - <Icon name={IconNames.IC_INFO} className="h-3.5 w-3.5 text-darkCustom" /> - </Text> + {loadingAnalysis ? ( + <Icon name={IconNames.IC_LOADING} className="h-4 w-4 animate-spin text-success-600" /> + ) : null} </div> </div> <div className="w-[35vw] pt-2"> - <LinearProgressBarMonitored data={dataPolygonOverview} /> + <LinearProgressBarMonitored data={headerBarPolygonStatus} /> </div> </div> <div className="flex gap-4"> @@ -106,17 +94,19 @@ graphs and tables below by clicking update analysis button to your right. " No. of Polygons </Text> <Text variant="text-12-bold" className="text-darkCusto pt-1"> - 45 - </Text> - </div> - <div> - <Text variant="text-12" className=" text-darkCustom"> - No. of Sites - </Text> - <Text variant="text-12-bold" className="pt-1 text-darkCustom"> - 12 + {totalPolygonsStatus} </Text> </div> + <When condition={type === "projects"}> + <div> + <Text variant="text-12" className=" text-darkCustom"> + No. of Sites + </Text> + <Text variant="text-12-bold" className="pt-1 text-darkCustom"> + {record?.project ? record?.project?.total_sites : record?.total_sites} + </Text> + </div> + </When> </div> </div> <div className="flex gap-4"> diff --git a/src/admin/components/ResourceTabs/MonitoredTab/components/TreesLossBarChart.tsx b/src/admin/components/ResourceTabs/MonitoredTab/components/TreesLossBarChart.tsx new file mode 100644 index 000000000..594c2689e --- /dev/null +++ b/src/admin/components/ResourceTabs/MonitoredTab/components/TreesLossBarChart.tsx @@ -0,0 +1,74 @@ +import React from "react"; +import { Bar, BarChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts"; + +import CustomBar from "@/pages/dashboard/charts/CustomBarJobsCreated"; + +type TreeLossData = { + name: number; + treeCoverLoss: number; + treeCoverLossFires: number; +}; + +interface TreeLossBarChartProps { + data: TreeLossData[]; + className?: string; +} + +const TreeLossBarChart = ({ data, className = "" }: TreeLossBarChartProps) => { + const CustomTooltip = ({ active, payload, label }: { active?: boolean; payload?: any[]; label?: string }) => { + if (active && payload && payload.length) { + return ( + <div className="border-gray-200 min-w-[200px] rounded-md border bg-white p-4"> + <p className="text-16-bold mb-2 font-bold">{label}</p> + {payload.map((entry, index) => ( + <div key={index} className="flex items-center gap-2"> + <div className="h-2 w-2 rounded-full" style={{ backgroundColor: entry.color }} /> + <span className="text-gray-700">{entry.name}</span> + <span className="ml-auto font-medium">{Number(entry.value).toLocaleString()} ha</span> + </div> + ))} + </div> + ); + } + return null; + }; + + return ( + <div className={`h-[500px] w-full p-4 ${className}`}> + <h2 className="text-16 mb-2 pl-10 font-semibold">Tree Loss Retrospective (ha)</h2> + <h3 className="text-16-bold mb-4 pl-10">2015-2024</h3> + <ResponsiveContainer width="100%" height="100%"> + <BarChart + data={data} + margin={{ + top: 20, + right: 30, + left: 20, + bottom: 5 + }} + barSize={40} + > + <CartesianGrid vertical={false} stroke="#E1E4E9" /> + <XAxis dataKey="name" axisLine={false} tickLine={false} dy={10} /> + <YAxis axisLine={false} tickLine={false} tickFormatter={value => `${value.toLocaleString()}`} /> + <Tooltip content={<CustomTooltip />} cursor={{ fill: "rgba(0, 0, 0, 0.05)" }} /> + <Legend + wrapperStyle={{ + paddingTop: "20px" + }} + /> + <Bar dataKey="treeCoverLossFires" stackId="a" fill="#24555C" name="Tree cover loss from fires" /> + <Bar + dataKey="treeCoverLoss" + stackId="a" + fill="#4097A3" + name="Tree cover loss" + shape={(props: any) => <CustomBar {...props} />} + /> + </BarChart> + </ResponsiveContainer> + </div> + ); +}; + +export default TreeLossBarChart; diff --git a/src/admin/components/ResourceTabs/MonitoredTab/hooks/useMonitoredData.ts b/src/admin/components/ResourceTabs/MonitoredTab/hooks/useMonitoredData.ts new file mode 100644 index 000000000..73c3a466e --- /dev/null +++ b/src/admin/components/ResourceTabs/MonitoredTab/hooks/useMonitoredData.ts @@ -0,0 +1,263 @@ +import { useT } from "@transifex/react"; +import { useEffect, useState } from "react"; + +import { ModalId } from "@/components/extensive/Modal/ModalConst"; +import { useModalContext } from "@/context/modal.provider"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; +import { useNotificationContext } from "@/context/notification.provider"; +import { + fetchGetV2IndicatorsEntityUuidSlugVerify, + useGetV2IndicatorsEntityUuid, + useGetV2IndicatorsEntityUuidSlug, + useGetV2IndicatorsEntityUuidSlugVerify, + usePostV2IndicatorsSlug +} from "@/generated/apiComponents"; +import { IndicatorPolygonsStatus, Indicators } from "@/generated/apiSchemas"; +import { EntityName } from "@/types/common"; + +const dataPolygonOverview = [ + { + status: "Draft", + status_key: "draft", + count: 12.5, + color: "bg-grey-200" + }, + { + status: "Submitted", + status_key: "submitted", + count: 42.5 + }, + { + status: "Needs Info", + status_key: "needs-more-information", + count: 22.5 + }, + { + status: "Approved", + status_key: "approved", + count: 22.5 + } +]; + +const DROPDOWN_OPTIONS = [ + { + title: "Tree Cover Loss", + value: "1", + slug: "treeCoverLoss" + }, + { + title: "Tree Cover Loss from Fire", + value: "2", + slug: "treeCoverLossFires" + }, + { + title: "Hectares Under Restoration By WWF EcoRegion", + value: "3", + slug: "restorationByEcoRegion" + }, + { + title: "Hectares Under Restoration By Strategy", + value: "4", + slug: "restorationByStrategy" + }, + { + title: "Hectares Under Restoration By Target Land Use System", + value: "5", + slug: "restorationByLandUse" + } +]; + +const SLUGS_INDICATORS = [ + "treeCoverLoss", + "treeCoverLossFires", + "restorationByEcoRegion", + "restorationByStrategy", + "restorationByLandUse" +]; + +type InterfaceIndicatorPolygonsStatus = { + draft: number; + submitted: number; + "needs-more-information": number; + approved: number; +}; + +export const useMonitoredData = (entity?: EntityName, entity_uuid?: string) => { + const t = useT(); + const { searchTerm, indicatorSlug, setLoadingAnalysis, setIndicatorSlugAnalysis } = useMonitoredDataContext(); + const { modalOpened } = useModalContext(); + const [isLoadingVerify, setIsLoadingVerify] = useState<boolean>(false); + const { openNotification } = useNotificationContext(); + const [treeCoverLossData, setTreeCoverLossData] = useState<Indicators[]>([]); + const [treeCoverLossFiresData, setTreeCoverLossFiresData] = useState<Indicators[]>([]); + const [analysisToSlug, setAnalysisToSlug] = useState<any>({ + treeCoverLoss: [], + treeCoverLossFires: [], + restorationByEcoRegion: [], + restorationByStrategy: [], + restorationByLandUse: [] + }); + const [dropdownAnalysisOptions, setDropdownAnalysisOptions] = useState(DROPDOWN_OPTIONS); + + const { data: indicatorData, refetch: refetchDataIndicators } = useGetV2IndicatorsEntityUuidSlug( + { + pathParams: { + entity: entity!, + uuid: entity_uuid!, + slug: indicatorSlug! + } + }, + { + enabled: !!indicatorSlug && !!entity_uuid + } + ); + + const getComplementarySlug = (slug: string) => (slug === "treeCoverLoss" ? "treeCoverLossFires" : "treeCoverLoss"); + + const { data: complementaryData } = useGetV2IndicatorsEntityUuidSlug( + { + pathParams: { + entity: entity!, + uuid: entity_uuid!, + slug: getComplementarySlug(indicatorSlug || "") + } + }, + { + enabled: (indicatorSlug === "treeCoverLoss" || indicatorSlug === "treeCoverLossFires") && !!entity_uuid + } + ); + + useEffect(() => { + if (indicatorSlug === "treeCoverLoss") { + setTreeCoverLossData(indicatorData || []); + setTreeCoverLossFiresData(complementaryData || []); + } else if (indicatorSlug === "treeCoverLossFires") { + setTreeCoverLossFiresData(indicatorData || []); + setTreeCoverLossData(complementaryData || []); + } + }, [indicatorData, complementaryData, indicatorSlug]); + + const { mutate, isLoading } = usePostV2IndicatorsSlug({ + onSuccess: () => { + openNotification( + "success", + t("Success! Analysis completed."), + t("The analysis has been completed successfully.") + ); + refetchDataIndicators(); + setLoadingAnalysis?.(false); + setIndicatorSlugAnalysis?.("treeCoverLoss"); + }, + onError: () => { + openNotification("error", t("Error! Analysis failed."), t("The analysis has failed. Please try again.")); + refetchDataIndicators(); + setLoadingAnalysis?.(false); + setIndicatorSlugAnalysis?.("treeCoverLoss"); + } + }); + + const { data: indicatorPolygonsStatus } = useGetV2IndicatorsEntityUuid<IndicatorPolygonsStatus>( + { + pathParams: { + entity: entity!, + uuid: entity_uuid! + } + }, + { + enabled: !!entity_uuid + } + ); + + const filteredPolygons = indicatorData?.filter( + (polygon: Indicators) => + polygon?.poly_name?.toLowerCase().includes(searchTerm?.toLowerCase()) || + polygon?.site_name?.toLowerCase().includes(searchTerm?.toLowerCase()) + ); + + const headerBarPolygonStatus = dataPolygonOverview.map(status => { + const key = status.status_key as keyof InterfaceIndicatorPolygonsStatus; + return { + ...status, + count: indicatorPolygonsStatus?.[key] ?? 0 + }; + }); + + const totalPolygonsApproved = headerBarPolygonStatus.find(item => item.status_key === "approved")?.count; + + const { data: dataToMissingPolygonVerify } = useGetV2IndicatorsEntityUuidSlugVerify( + { + pathParams: { + entity: entity!, + uuid: entity_uuid!, + slug: indicatorSlug! + } + }, + { + enabled: !!indicatorSlug + } + ); + + // @ts-ignore + const polygonMissingAnalysis = dataToMissingPolygonVerify?.message + ? totalPolygonsApproved + : totalPolygonsApproved! - Object?.keys(dataToMissingPolygonVerify ?? {})?.length; + + const verifySlug = async (slug: string) => + fetchGetV2IndicatorsEntityUuidSlugVerify({ + pathParams: { + entity: entity!, + uuid: entity_uuid!, + slug: slug! + } + }); + + useEffect(() => { + const fetchSlugs = async () => { + setIsLoadingVerify(true); + const slugVerify = await Promise.all(SLUGS_INDICATORS.map(verifySlug)); + const slugToAnalysis = SLUGS_INDICATORS.reduce<Record<string, any>>((acc, slug, index) => { + acc[slug] = slugVerify[index]; + return acc; + }, {}); + const updateTitleDropdownOptions = () => { + return DROPDOWN_OPTIONS.map(option => { + if (slugToAnalysis[`${option.slug}`]?.message) { + return { + ...option, + title: `${option.title} (0 polygons not run)` + }; + } + if (!slugToAnalysis[`${option.slug}`]) { + return option; + } + return { + ...option, + title: `${option.title} (${Object?.keys(slugToAnalysis[`${option.slug}`]).length} polygons not run)` + }; + }); + }; + setAnalysisToSlug(slugToAnalysis); + await setDropdownAnalysisOptions(updateTitleDropdownOptions); + setIsLoadingVerify(false); + }; + if (modalOpened(ModalId.MODAL_RUN_ANALYSIS)) { + fetchSlugs(); + } + }, [entity]); + + return { + polygonsIndicator: filteredPolygons, + indicatorPolygonsStatus, + headerBarPolygonStatus, + totalPolygonsStatus: totalPolygonsApproved, + runAnalysisIndicator: mutate, + loadingAnalysis: isLoading, + loadingVerify: isLoadingVerify, + setIsLoadingVerify, + dropdownAnalysisOptions, + analysisToSlug, + polygonMissingAnalysis, + treeCoverLossData, + treeCoverLossFiresData + }; +}; diff --git a/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonDrawer/components/VersionHistory.tsx b/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonDrawer/components/VersionHistory.tsx index aced65845..3dff79d6f 100644 --- a/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonDrawer/components/VersionHistory.tsx +++ b/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonDrawer/components/VersionHistory.tsx @@ -358,10 +358,11 @@ const VersionHistory = ({ suffixLabelView={true} labelClassName="capitalize" labelVariant="text-14-light" - optionsClassName="!h-[182px] lg:!h-[195px] wide:h-[266px]" + optionsClassName="!max-h-[182px] lg:!max-h-[195px] wide:max-h-[266px]" placeholder="Select Polygon Version" options={polygonVersionData ?? []} optionVariant="text-12-light" + titleClassname="one-line-text !w-[96%] !text-nowrap" defaultValue={[selectPolygonVersion?.uuid ?? selectedPolygon?.uuid] as string[]} onChange={e => { const polygonVersionData = (data as SitePolygonsDataResponse)?.find(item => item.uuid === e[0]); diff --git a/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonItem.tsx b/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonItem.tsx index 865ecb246..6a431a492 100644 --- a/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonItem.tsx +++ b/src/admin/components/ResourceTabs/PolygonReviewTab/components/PolygonItem.tsx @@ -77,7 +77,7 @@ const PolygonItem = ({ {...props} className={classNames( className, - "flex flex-col rounded-lg border-2 border-grey-350 bg-white p-2 hover:border-primary" + "flex flex-col rounded-lg border-2 border-grey-350 bg-white p-2 shadow-monitored hover:border-primary" )} > <div className="flex items-center justify-between gap-2"> @@ -85,7 +85,7 @@ const PolygonItem = ({ <div className="min-h-11 min-w-11"> <Icon name={IconNames[imageStatus as keyof typeof IconNames]} - className=" h-11 w-11 rounded-lg bg-neutral-300" + className="h-11 w-11 rounded-lg bg-neutral-300" /> </div> <div className="flex flex-1 flex-col justify-between gap-2 overflow-hidden"> diff --git a/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx b/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx index 29aaac109..3ae3bc98f 100644 --- a/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx +++ b/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx @@ -66,7 +66,7 @@ const Polygons = (props: IPolygonProps) => { const contextMapArea = useMapAreaContext(); const reloadSiteData = context?.reloadSiteData; const sitePolygonData = context?.sitePolygonData; - const { setIsUserDrawingEnabled, setSelectedPolygonsInCheckbox, selectedPolygonsInCheckbox } = contextMapArea; + const { setSelectedPolygonsInCheckbox, selectedPolygonsInCheckbox } = contextMapArea; const [openCollapseAll, setOpenCollapseAll] = useState(false); useEffect(() => { @@ -221,18 +221,22 @@ const Polygons = (props: IPolygonProps) => { /> )} </Drawer> - <div className="mb-4 flex flex-col gap-1"> + <div className="mb-4 flex items-center justify-between"> <Text variant="text-16-bold" className="text-darkCustom"> Polygons </Text> - <div className="flex items-center justify-between"> - <Button variant="text" onClick={() => setIsUserDrawingEnabled?.(true)}> - <Text variant="text-14-semibold" className="flex items-center gap-1"> - Add Polygon <Icon name={IconNames.PLUS_CIRCLE} className="h-4 w-4" /> - </Text> - </Button> - <Button variant="white-border" onClick={() => setOpenCollapseAll(!openCollapseAll)} className="mb-2"> - {openCollapseAll ? "SHRINK" : "EXPAND"} + <div className="flex items-center justify-start"> + <Button + variant="white-border" + onClick={() => setOpenCollapseAll(!openCollapseAll)} + className="flex gap-1.5 !rounded-lg !capitalize" + > + {openCollapseAll ? ( + <Icon name={IconNames.IC_SHINK} className="mr-1 h-[0.8rem] w-[0.8rem]" /> + ) : ( + <Icon name={IconNames.IC_EXPAND} className="mr-1 h-[0.8rem] w-[0.8rem]" /> + )} + {openCollapseAll ? "Shrink " : "Expand"} </Button> </div> </div> @@ -251,7 +255,7 @@ const Polygons = (props: IPolygonProps) => { </Box> </When> </div> - <div ref={containerRef} className="flex max-h-[150vh] flex-col gap-2 overflow-auto"> + <div ref={containerRef} className="-m-2 flex max-h-[150vh] flex-col gap-2 overflow-auto p-2"> {polygonMenu.map(item => ( <div key={item.id}> <PolygonItem diff --git a/src/admin/components/ResourceTabs/PolygonReviewTab/index.tsx b/src/admin/components/ResourceTabs/PolygonReviewTab/index.tsx index bb079552e..59f324e90 100644 --- a/src/admin/components/ResourceTabs/PolygonReviewTab/index.tsx +++ b/src/admin/components/ResourceTabs/PolygonReviewTab/index.tsx @@ -1,8 +1,11 @@ import { Grid, Stack } from "@mui/material"; +import Box from "@mui/material/Box"; +import LinearProgress from "@mui/material/LinearProgress"; import { useT } from "@transifex/react"; import { LngLatBoundsLike } from "mapbox-gl"; import { FC, useEffect, useState } from "react"; import { TabbedShowLayout, TabProps, useShowContext } from "react-admin"; +import { Else, If, Then } from "react-if"; import ModalApprove from "@/admin/components/extensive/Modal/ModalApprove"; import Button from "@/components/elements/Button/Button"; @@ -31,6 +34,7 @@ import { ModalId } from "@/components/extensive/Modal/ModalConst"; import { useLoading } from "@/context/loaderAdmin.provider"; import { useMapAreaContext } from "@/context/mapArea.provider"; import { useModalContext } from "@/context/modal.provider"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; import { useNotificationContext } from "@/context/notification.provider"; import { SitePolygonDataProvider } from "@/context/sitePolygon.provider"; import { @@ -143,6 +147,7 @@ const ContentForApproval = ({ const PolygonReviewTab: FC<IProps> = props => { const { isLoading: ctxLoading, record, refetch: refreshEntity } = useShowContext(); + const { selectPolygonFromMap } = useMonitoredDataContext(); const [files, setFiles] = useState<UploadedFile[]>([]); const [saveFlags, setSaveFlags] = useState<boolean>(false); const [polygonFromMap, setPolygonFromMap] = useState<IpolygonFromMap>({ isOpen: false, uuid: "" }); @@ -163,6 +168,12 @@ const PolygonReviewTab: FC<IProps> = props => { const { openNotification } = useNotificationContext(); + useEffect(() => { + if (selectPolygonFromMap?.uuid) { + setPolygonFromMap(selectPolygonFromMap); + flyToPolygonBounds(selectPolygonFromMap.uuid); + } + }, [polygonList]); const onSave = (geojson: any, record: any) => { storePolygon(geojson, record, refetch, setPolygonFromMap, refreshEntity); }; @@ -344,23 +355,31 @@ const PolygonReviewTab: FC<IProps> = props => { setSubmitPolygonLoaded(false); hideLoader(); } catch (error) { - if (error && typeof error === "object" && "message" in error) { - let errorMessage = error.message; - if (typeof errorMessage === "string") { - const parsedMessage = JSON.parse(errorMessage); - if (parsedMessage && typeof parsedMessage === "object" && "message" in parsedMessage) { - errorMessage = parsedMessage.message; + let errorMessage; + + if (error && typeof error === "object" && "error" in error) { + const nestedError = error.error; + if (typeof nestedError === "string") { + try { + const parsedNestedError = JSON.parse(nestedError); + if (parsedNestedError && typeof parsedNestedError === "object" && "message" in parsedNestedError) { + errorMessage = parsedNestedError.message; + } else { + errorMessage = nestedError; + } + } catch (parseError) { + errorMessage = nestedError; } + } else { + errorMessage = nestedError; } - if (errorMessage && typeof errorMessage === "object" && "message" in errorMessage) { - errorMessage = errorMessage.message; - } - openNotification("error", t("Error uploading file"), errorMessage); - hideLoader(); + } else if (error && typeof error === "object" && "message" in error) { + errorMessage = error.message; } else { - openNotification("error", t("Error uploading file"), t("An unknown error occurred")); - hideLoader(); + errorMessage = t("An unknown error occurred"); } + openNotification("error", t("Error uploading file"), errorMessage || t("An unknown error occurred")); + hideLoader(); } }; @@ -605,13 +624,13 @@ const PolygonReviewTab: FC<IProps> = props => { <Grid xs={9}> <Stack gap={4} className="pl-8 pt-9"> <div className="flex flex-col items-start gap-3"> - <div className="mb-2 flex w-full gap-2 rounded-xl bg-white p-3 shadow-monitored"> + <div className="mb-2 flex w-full gap-2 rounded-xl border-2 border-grey-350 bg-white p-3 shadow-monitored"> <div className="w-40 lg:w-48"> <Text variant="text-14" className="flex items-center gap-1 text-darkCustom"> Site Status <Icon name={IconNames.IC_INFO} className="h-3.5 w-3.5 text-darkCustom" /> </Text> - <Text variant="text-14-bold" className="text-black"> + <Text variant="text-14-bold" className="leading-[normal] text-black"> {record?.readable_status} </Text> </div> @@ -620,7 +639,16 @@ const PolygonReviewTab: FC<IProps> = props => { Polygon Overview <Icon name={IconNames.IC_INFO} className="h-3.5 w-3.5 text-darkCustom" /> </Text> - <LinearProgressBarMonitored data={dataPolygonOverview} /> + <If condition={sitePolygonData.length < total}> + <Then> + <Box sx={{ width: "100%" }}> + <LinearProgress sx={{ borderRadius: 5 }} /> + </Box> + </Then> + <Else> + <LinearProgressBarMonitored data={dataPolygonOverview} /> + </Else> + </If> </div> </div> <div className="min-w-[450px] flex-[18]"> @@ -670,14 +698,6 @@ const PolygonReviewTab: FC<IProps> = props => { </Button> </div> </div> - {/* <div className="mt-4 min-w-[310px] flex-[11] rounded-lg border border-grey-750 p-4"> - <Text variant="text-14" className="mb-3 text-blueCustom-250"> - Site Status - </Text> - <div className="w-full h-fit"> - <SitePolygonStatus statusLabel={record.readable_status} /> - </div> - </div> */} </div> <MapContainer record={record} diff --git a/src/admin/modules/projects/components/ProjectShow.tsx b/src/admin/modules/projects/components/ProjectShow.tsx index aae73d9d2..40fca8a9d 100644 --- a/src/admin/modules/projects/components/ProjectShow.tsx +++ b/src/admin/modules/projects/components/ProjectShow.tsx @@ -43,7 +43,8 @@ const ProjectShow = () => { <GalleryTab label="Project Gallery" entity="projects" /> <DocumentTab label="Project Documents" entity="projects" /> <ChangeRequestsTab entity="projects" singularEntity="project" /> - <MonitoredTab label="Monitored Data" /> + {/* <TabbedShowLayout.Tab label="Monitored Data">In Progress</TabbedShowLayout.Tab> */} + <MonitoredTab label="Monitored Data" type={"projects"}></MonitoredTab> <AuditLogTab entity={AuditLogButtonStates.PROJECT} /> </TabbedShowLayout> </RecordFrameworkProvider> diff --git a/src/admin/modules/sites/components/SiteShow.tsx b/src/admin/modules/sites/components/SiteShow.tsx index 287325785..fb0bef090 100644 --- a/src/admin/modules/sites/components/SiteShow.tsx +++ b/src/admin/modules/sites/components/SiteShow.tsx @@ -42,7 +42,7 @@ const SiteShow: FC = () => { <GalleryTab label="Site Gallery" entity="sites" /> <DocumentTab label="Site Documents" entity="sites" /> <ChangeRequestsTab entity="sites" singularEntity="site" /> - <MonitoredTab label="Monitored Data" /> + <MonitoredTab label="Monitored Data" type={"sites"}></MonitoredTab> <AuditLogTab entity={AuditLogButtonStates.SITE} /> </TabbedShowLayout> </RecordFrameworkProvider> diff --git a/src/assets/icons/float-notification.svg b/src/assets/icons/float-notification.svg new file mode 100644 index 000000000..88910cc4d --- /dev/null +++ b/src/assets/icons/float-notification.svg @@ -0,0 +1,4 @@ +<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M25.0536 19.409L24.9389 19.3516L24.3243 13.1996C24.1183 11.1347 23.1522 9.22002 21.6137 7.82739C20.0752 6.43477 18.0741 5.66357 15.9989 5.66357C13.9238 5.66357 11.9227 6.43477 10.3842 7.82739C8.84568 9.22002 7.87963 11.1347 7.67362 13.1996L7.06562 19.3516L6.95095 19.409C6.2148 19.7767 5.62431 20.3822 5.27509 21.1274C4.92587 21.8725 4.83836 22.7137 5.02671 23.5148C5.21506 24.3159 5.66826 25.0299 6.31293 25.5414C6.95761 26.0528 7.75603 26.3317 8.57895 26.333H23.4189C24.2424 26.3332 25.0419 26.0554 25.6877 25.5445C26.3335 25.0335 26.7879 24.3195 26.9771 23.518C27.1663 22.7166 27.0793 21.8747 26.7302 21.1289C26.3811 20.3831 25.7903 19.777 25.0536 19.409Z" fill="white"/> +<path d="M16.0026 30.3332C15.0304 30.3325 14.0981 29.9459 13.4107 29.2585C12.7232 28.571 12.3366 27.6387 12.3359 26.6665V25.3332C12.3359 25.068 12.4413 24.8136 12.6288 24.6261C12.8164 24.4385 13.0707 24.3332 13.3359 24.3332H18.6693C18.9345 24.3332 19.1888 24.4385 19.3764 24.6261C19.5639 24.8136 19.6693 25.068 19.6693 25.3332V26.6665C19.6686 27.6387 19.282 28.571 18.5945 29.2585C17.9071 29.9459 16.9748 30.3325 16.0026 30.3332ZM14.3359 26.3332V26.6665C14.3359 27.1085 14.5115 27.5325 14.8241 27.845C15.1367 28.1576 15.5606 28.3332 16.0026 28.3332C16.4446 28.3332 16.8686 28.1576 17.1811 27.845C17.4937 27.5325 17.6693 27.1085 17.6693 26.6665V26.3332H14.3359ZM16.0026 2.6665C16.7098 2.6665 17.3881 2.94746 17.8882 3.44755C18.3883 3.94765 18.6693 4.62593 18.6693 5.33317V7.99984H13.3359V5.33317C13.3359 4.62593 13.6169 3.94765 14.117 3.44755C14.6171 2.94746 15.2954 2.6665 16.0026 2.6665Z" fill="white"/> +</svg> diff --git a/src/assets/icons/ic_expand.svg b/src/assets/icons/ic_expand.svg new file mode 100644 index 000000000..8227f99dc --- /dev/null +++ b/src/assets/icons/ic_expand.svg @@ -0,0 +1,8 @@ +<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"> +<mask id="path-1-outside-1_5223_27640" maskUnits="userSpaceOnUse" x="0" y="0" width="12" height="12" fill="black"> +<rect fill="white" width="12" height="12"/> +<path d="M1.35655 1C1.15968 1.00031 1 1.16005 1 1.35698C1 1.37448 1.00125 1.39167 1.00375 1.40887L1.00344 1.40699V4.21684C1.00344 4.21841 1.00344 4.21997 1.00344 4.22184C1.00344 4.41909 1.16343 4.57882 1.3603 4.57882C1.55717 4.57882 1.71717 4.41909 1.71717 4.22184C1.71717 4.21997 1.71717 4.21841 1.71717 4.21653V4.21684V2.22284L3.96335 4.46973C4.02803 4.53443 4.11709 4.57413 4.21552 4.57413C4.41271 4.57413 4.57239 4.41409 4.57239 4.21715C4.57239 4.11838 4.53239 4.02929 4.4677 3.96458L2.22152 1.7177H4.21521C4.21677 1.7177 4.21834 1.7177 4.22021 1.7177C4.41739 1.7177 4.57708 1.55766 4.57708 1.36073C4.57708 1.1638 4.41739 1.00375 4.22021 1.00375C4.21834 1.00375 4.21677 1.00375 4.2149 1.00375H1.40342C1.38936 1.00156 1.3728 1.00031 1.35624 1.00031L1.35655 1ZM10.6331 1.00031C10.6194 1.00063 10.6063 1.00188 10.5935 1.00375L10.5953 1.00344H7.78448C7.78291 1.00344 7.78135 1.00344 7.77948 1.00344C7.58229 1.00344 7.42261 1.16317 7.42261 1.36041C7.42261 1.55766 7.58229 1.71739 7.77948 1.71739C7.78135 1.71739 7.78291 1.71739 7.78479 1.71739H9.77816L7.53198 3.96427C7.4673 4.02898 7.4273 4.11806 7.4273 4.21684C7.4273 4.41409 7.58729 4.57382 7.78448 4.57382C7.88291 4.57382 7.97228 4.53381 8.03697 4.46941L10.2831 2.22253V4.21653C10.2831 4.21809 10.2831 4.21966 10.2831 4.22153C10.2831 4.41877 10.4428 4.57851 10.64 4.57851C10.8372 4.57851 10.9969 4.41877 10.9969 4.22153C10.9969 4.21966 10.9969 4.21809 10.9969 4.21622V1.40418C10.9988 1.39011 11 1.37354 11 1.35698C11 1.15973 10.8403 1 10.6431 1C10.6397 1 10.6359 1 10.6325 1.00031H10.6331ZM1.35499 7.42524C1.16 7.42837 1.00312 7.58685 1.00312 7.78222C1.00312 7.7841 1.00312 7.78566 1.00312 7.78753V10.6433C1.00312 10.6437 1.00312 10.644 1.00312 10.6443C1.00312 10.6446 1.00312 10.6449 1.00312 10.6452C1.00312 10.6555 1.00375 10.6658 1.00469 10.6758L1.00437 10.6743C1.00469 10.6771 1.00469 10.6787 1.00469 10.6802V10.679C1.00562 10.6896 1.00719 10.6987 1.00875 10.7077L1.00844 10.7055C1.00937 10.7112 1.01 10.7146 1.01062 10.7177L1.01031 10.7155C1.01781 10.7502 1.02937 10.7812 1.04437 10.8093L1.04344 10.8074C1.04562 10.8121 1.04719 10.8146 1.04875 10.8171L1.04781 10.8153C1.05312 10.8246 1.0575 10.8321 1.0625 10.8396L1.06156 10.8384C1.06375 10.8421 1.06531 10.8443 1.06687 10.8465L1.06594 10.8453C1.08593 10.8737 1.10875 10.8984 1.13468 10.9194L1.13531 10.92C1.13625 10.9206 1.13718 10.9219 1.13843 10.9228L1.13875 10.9231C1.19687 10.9691 1.27062 10.9975 1.35093 10.9994H1.35124C1.35311 10.9997 1.35593 10.9997 1.35905 10.9997H4.2149C4.21646 10.9997 4.21802 10.9997 4.2199 10.9997C4.41708 10.9997 4.57676 10.84 4.57676 10.6427C4.57676 10.4455 4.41708 10.2857 4.2199 10.2857C4.21802 10.2857 4.21646 10.2857 4.21459 10.2857H2.22152L4.46739 8.03885C4.53395 7.97384 4.5752 7.8835 4.5752 7.78316C4.5752 7.58591 4.41552 7.42618 4.21834 7.42618C4.2149 7.42618 4.21115 7.42618 4.20771 7.4265H4.20834C4.11209 7.42931 4.02553 7.46994 3.96303 7.53403L1.71685 9.78091V7.7866C1.71685 7.78503 1.71685 7.78347 1.71685 7.78191C1.71685 7.58466 1.55686 7.42493 1.35999 7.42493C1.35811 7.42493 1.35624 7.42493 1.35436 7.42493L1.35499 7.42524ZM10.635 7.42524C10.44 7.42837 10.2831 7.58685 10.2831 7.78222C10.2831 7.7841 10.2831 7.78566 10.2831 7.78753V9.78153L8.03697 7.53465C7.97197 7.46776 7.88135 7.4265 7.78104 7.4265C7.58417 7.42681 7.42417 7.58654 7.42417 7.78347C7.42417 7.88381 7.46574 7.97446 7.5323 8.03917L9.77816 10.286H7.78479C7.78323 10.286 7.78166 10.286 7.77979 10.286C7.58261 10.286 7.42292 10.4458 7.42292 10.643C7.42292 10.8403 7.58261 11 7.77979 11C7.78166 11 7.78323 11 7.7851 11H10.64C10.6775 11 10.7141 10.9941 10.7481 10.9831L10.7456 10.9837C10.7478 10.9828 10.7481 10.9825 10.7484 10.9825L10.7466 10.9834C10.76 10.9794 10.7709 10.9753 10.7819 10.9706L10.7797 10.9716C10.7825 10.9703 10.7831 10.97 10.7838 10.9697L10.7819 10.9706C10.7941 10.9653 10.8041 10.9603 10.8138 10.955L10.8119 10.9559C10.8134 10.955 10.8138 10.9544 10.8141 10.9544L10.8131 10.955C10.8316 10.9447 10.8472 10.9344 10.8619 10.9228L10.8613 10.9234C10.8666 10.9194 10.8706 10.9159 10.875 10.9122L10.8744 10.9125C10.8825 10.9056 10.8897 10.8987 10.8966 10.8915C10.8969 10.8912 10.8972 10.8909 10.8975 10.8906C10.9131 10.8743 10.9275 10.8565 10.9397 10.8371L10.9406 10.8356C10.9397 10.8375 10.94 10.8371 10.94 10.8371L10.9409 10.8353C10.9463 10.8271 10.9522 10.8171 10.9575 10.8068L10.9584 10.8049C10.9575 10.8068 10.9578 10.8065 10.9578 10.8065L10.9588 10.8046C10.9684 10.7859 10.9772 10.764 10.9834 10.7412L10.9841 10.7387C10.9838 10.7406 10.9838 10.7402 10.9838 10.7396L10.9844 10.7371C10.9916 10.7115 10.9959 10.6824 10.9966 10.6521V10.6518C10.9969 10.6499 10.9969 10.6471 10.9969 10.644V7.78722C10.9969 7.78566 10.9969 7.7841 10.9969 7.78253C10.9969 7.58529 10.8372 7.42556 10.64 7.42556C10.6381 7.42556 10.6363 7.42556 10.6344 7.42556L10.635 7.42524Z"/> +</mask> +<path d="M1.35655 1C1.15968 1.00031 1 1.16005 1 1.35698C1 1.37448 1.00125 1.39167 1.00375 1.40887L1.00344 1.40699V4.21684C1.00344 4.21841 1.00344 4.21997 1.00344 4.22184C1.00344 4.41909 1.16343 4.57882 1.3603 4.57882C1.55717 4.57882 1.71717 4.41909 1.71717 4.22184C1.71717 4.21997 1.71717 4.21841 1.71717 4.21653V4.21684V2.22284L3.96335 4.46973C4.02803 4.53443 4.11709 4.57413 4.21552 4.57413C4.41271 4.57413 4.57239 4.41409 4.57239 4.21715C4.57239 4.11838 4.53239 4.02929 4.4677 3.96458L2.22152 1.7177H4.21521C4.21677 1.7177 4.21834 1.7177 4.22021 1.7177C4.41739 1.7177 4.57708 1.55766 4.57708 1.36073C4.57708 1.1638 4.41739 1.00375 4.22021 1.00375C4.21834 1.00375 4.21677 1.00375 4.2149 1.00375H1.40342C1.38936 1.00156 1.3728 1.00031 1.35624 1.00031L1.35655 1ZM10.6331 1.00031C10.6194 1.00063 10.6063 1.00188 10.5935 1.00375L10.5953 1.00344H7.78448C7.78291 1.00344 7.78135 1.00344 7.77948 1.00344C7.58229 1.00344 7.42261 1.16317 7.42261 1.36041C7.42261 1.55766 7.58229 1.71739 7.77948 1.71739C7.78135 1.71739 7.78291 1.71739 7.78479 1.71739H9.77816L7.53198 3.96427C7.4673 4.02898 7.4273 4.11806 7.4273 4.21684C7.4273 4.41409 7.58729 4.57382 7.78448 4.57382C7.88291 4.57382 7.97228 4.53381 8.03697 4.46941L10.2831 2.22253V4.21653C10.2831 4.21809 10.2831 4.21966 10.2831 4.22153C10.2831 4.41877 10.4428 4.57851 10.64 4.57851C10.8372 4.57851 10.9969 4.41877 10.9969 4.22153C10.9969 4.21966 10.9969 4.21809 10.9969 4.21622V1.40418C10.9988 1.39011 11 1.37354 11 1.35698C11 1.15973 10.8403 1 10.6431 1C10.6397 1 10.6359 1 10.6325 1.00031H10.6331ZM1.35499 7.42524C1.16 7.42837 1.00312 7.58685 1.00312 7.78222C1.00312 7.7841 1.00312 7.78566 1.00312 7.78753V10.6433C1.00312 10.6437 1.00312 10.644 1.00312 10.6443C1.00312 10.6446 1.00312 10.6449 1.00312 10.6452C1.00312 10.6555 1.00375 10.6658 1.00469 10.6758L1.00437 10.6743C1.00469 10.6771 1.00469 10.6787 1.00469 10.6802V10.679C1.00562 10.6896 1.00719 10.6987 1.00875 10.7077L1.00844 10.7055C1.00937 10.7112 1.01 10.7146 1.01062 10.7177L1.01031 10.7155C1.01781 10.7502 1.02937 10.7812 1.04437 10.8093L1.04344 10.8074C1.04562 10.8121 1.04719 10.8146 1.04875 10.8171L1.04781 10.8153C1.05312 10.8246 1.0575 10.8321 1.0625 10.8396L1.06156 10.8384C1.06375 10.8421 1.06531 10.8443 1.06687 10.8465L1.06594 10.8453C1.08593 10.8737 1.10875 10.8984 1.13468 10.9194L1.13531 10.92C1.13625 10.9206 1.13718 10.9219 1.13843 10.9228L1.13875 10.9231C1.19687 10.9691 1.27062 10.9975 1.35093 10.9994H1.35124C1.35311 10.9997 1.35593 10.9997 1.35905 10.9997H4.2149C4.21646 10.9997 4.21802 10.9997 4.2199 10.9997C4.41708 10.9997 4.57676 10.84 4.57676 10.6427C4.57676 10.4455 4.41708 10.2857 4.2199 10.2857C4.21802 10.2857 4.21646 10.2857 4.21459 10.2857H2.22152L4.46739 8.03885C4.53395 7.97384 4.5752 7.8835 4.5752 7.78316C4.5752 7.58591 4.41552 7.42618 4.21834 7.42618C4.2149 7.42618 4.21115 7.42618 4.20771 7.4265H4.20834C4.11209 7.42931 4.02553 7.46994 3.96303 7.53403L1.71685 9.78091V7.7866C1.71685 7.78503 1.71685 7.78347 1.71685 7.78191C1.71685 7.58466 1.55686 7.42493 1.35999 7.42493C1.35811 7.42493 1.35624 7.42493 1.35436 7.42493L1.35499 7.42524ZM10.635 7.42524C10.44 7.42837 10.2831 7.58685 10.2831 7.78222C10.2831 7.7841 10.2831 7.78566 10.2831 7.78753V9.78153L8.03697 7.53465C7.97197 7.46776 7.88135 7.4265 7.78104 7.4265C7.58417 7.42681 7.42417 7.58654 7.42417 7.78347C7.42417 7.88381 7.46574 7.97446 7.5323 8.03917L9.77816 10.286H7.78479C7.78323 10.286 7.78166 10.286 7.77979 10.286C7.58261 10.286 7.42292 10.4458 7.42292 10.643C7.42292 10.8403 7.58261 11 7.77979 11C7.78166 11 7.78323 11 7.7851 11H10.64C10.6775 11 10.7141 10.9941 10.7481 10.9831L10.7456 10.9837C10.7478 10.9828 10.7481 10.9825 10.7484 10.9825L10.7466 10.9834C10.76 10.9794 10.7709 10.9753 10.7819 10.9706L10.7797 10.9716C10.7825 10.9703 10.7831 10.97 10.7838 10.9697L10.7819 10.9706C10.7941 10.9653 10.8041 10.9603 10.8138 10.955L10.8119 10.9559C10.8134 10.955 10.8138 10.9544 10.8141 10.9544L10.8131 10.955C10.8316 10.9447 10.8472 10.9344 10.8619 10.9228L10.8613 10.9234C10.8666 10.9194 10.8706 10.9159 10.875 10.9122L10.8744 10.9125C10.8825 10.9056 10.8897 10.8987 10.8966 10.8915C10.8969 10.8912 10.8972 10.8909 10.8975 10.8906C10.9131 10.8743 10.9275 10.8565 10.9397 10.8371L10.9406 10.8356C10.9397 10.8375 10.94 10.8371 10.94 10.8371L10.9409 10.8353C10.9463 10.8271 10.9522 10.8171 10.9575 10.8068L10.9584 10.8049C10.9575 10.8068 10.9578 10.8065 10.9578 10.8065L10.9588 10.8046C10.9684 10.7859 10.9772 10.764 10.9834 10.7412L10.9841 10.7387C10.9838 10.7406 10.9838 10.7402 10.9838 10.7396L10.9844 10.7371C10.9916 10.7115 10.9959 10.6824 10.9966 10.6521V10.6518C10.9969 10.6499 10.9969 10.6471 10.9969 10.644V7.78722C10.9969 7.78566 10.9969 7.7841 10.9969 7.78253C10.9969 7.58529 10.8372 7.42556 10.64 7.42556C10.6381 7.42556 10.6363 7.42556 10.6344 7.42556L10.635 7.42524Z" fill="#637579"/> +<path d="M1.35655 1L1.498 1.14139L1.84003 0.799232L1.35623 0.8L1.35655 1ZM1.00375 1.40887L0.806469 1.44173L1.20167 1.38009L1.00375 1.40887ZM1.00344 1.40699L1.20072 1.37412L0.803437 1.40699H1.00344ZM1.71717 2.22284L1.85861 2.08144L1.51717 1.73989V2.22284H1.71717ZM3.96335 4.46973L4.10479 4.32833L3.96335 4.46973ZM2.22152 1.7177V1.5177H1.73879L2.08008 1.8591L2.22152 1.7177ZM1.40342 1.00375L1.37267 1.20137L1.38796 1.20375H1.40342V1.00375ZM1.35624 1.00031L1.21479 0.858918L0.873528 1.20031H1.35624V1.00031ZM10.6331 1.00031L10.6377 1.20026L10.6331 0.800313V1.00031ZM10.5935 1.00375L10.5606 0.806473L10.6224 1.20164L10.5935 1.00375ZM10.5953 1.00344L10.6282 1.20072L10.5953 0.803438V1.00344ZM9.77816 1.71739L9.91961 1.85879L10.2609 1.51739H9.77816V1.71739ZM7.53198 3.96427L7.67343 4.10567L7.53198 3.96427ZM8.03697 4.46941L8.17807 4.61116L8.17841 4.61081L8.03697 4.46941ZM10.2831 2.22253H10.4831V1.73958L10.1417 2.08113L10.2831 2.22253ZM10.9969 1.40418L10.7986 1.37775L10.7969 1.39091V1.40418H10.9969ZM10.6325 1.00031L10.6144 0.801134L10.6325 1.20031V1.00031ZM1.35499 7.42524L1.35819 7.62522L1.44455 7.24642L1.35499 7.42524ZM1.00469 10.6758L0.80857 10.7151L1.20381 10.6572L1.00469 10.6758ZM1.00437 10.6743L1.20049 10.6351L0.805597 10.6964L1.00437 10.6743ZM1.00469 10.679L1.20391 10.6614L0.804687 10.679H1.00469ZM1.00875 10.7077L0.811656 10.7417L1.20674 10.6795L1.00875 10.7077ZM1.00844 10.7055L1.20572 10.6727L0.810446 10.7338L1.00844 10.7055ZM1.01062 10.7177L0.814506 10.7569L1.20862 10.6895L1.01062 10.7177ZM1.01031 10.7155L1.2058 10.6733L0.812321 10.7438L1.01031 10.7155ZM1.04437 10.8093L0.867891 10.9034L1.22326 10.7199L1.04437 10.8093ZM1.04344 10.8074L1.22232 10.718L0.862189 10.892L1.04344 10.8074ZM1.04875 10.8171L0.879134 10.9231L1.22765 10.7277L1.04875 10.8171ZM1.04781 10.8153L1.22183 10.7167L0.868911 10.9047L1.04781 10.8153ZM1.0625 10.8396L0.902484 10.9596L1.22892 10.7287L1.0625 10.8396ZM1.06156 10.8384L1.22157 10.7184L0.888791 10.9391L1.06156 10.8384ZM1.06687 10.8465L0.906859 10.9665L1.22964 10.7303L1.06687 10.8465ZM1.06594 10.8453L1.22595 10.7253L0.902326 10.9603L1.06594 10.8453ZM1.13468 10.9194L1.27609 10.7779L1.26859 10.7704L1.26033 10.7637L1.13468 10.9194ZM1.13531 10.92L0.993904 11.0614L1.00789 11.0754L1.02434 11.0864L1.13531 10.92ZM1.13843 10.9228L1.27984 10.7814L1.26981 10.7713L1.25846 10.7628L1.13843 10.9228ZM1.13875 10.9231L0.99734 11.0645L1.00558 11.0728L1.01471 11.08L1.13875 10.9231ZM1.35093 10.9994L1.34626 11.1994H1.35093V10.9994ZM1.35124 10.9994L1.38413 10.8021L1.3678 10.7994H1.35124V10.9994ZM2.22152 10.2857L2.08007 10.1443L1.73884 10.4857H2.22152V10.2857ZM4.46739 8.03885L4.32763 7.89578L4.32594 7.89747L4.46739 8.03885ZM4.20771 7.4265L4.1896 7.22732L4.20771 7.62649V7.4265ZM4.20834 7.4265L4.21418 7.62641L4.20834 7.22649V7.4265ZM3.96303 7.53403L4.10449 7.67544L4.10621 7.67367L3.96303 7.53403ZM1.71685 9.78091H1.51685V10.2639L1.8583 9.92231L1.71685 9.78091ZM1.35436 7.42493V7.22493L1.2648 7.60376L1.35436 7.42493ZM10.635 7.42524L10.7244 7.60415L10.6318 7.22527L10.635 7.42524ZM10.2831 9.78153L10.1417 9.92293L10.4831 10.2645V9.78153H10.2831ZM8.03697 7.53465L7.89351 7.67404L7.89552 7.67605L8.03697 7.53465ZM7.78104 7.4265V7.22649L7.78072 7.2265L7.78104 7.4265ZM7.5323 8.03917L7.67376 7.89776L7.67171 7.89576L7.5323 8.03917ZM9.77816 10.286V10.486H10.2609L9.91962 10.1447L9.77816 10.286ZM10.7481 10.9831L10.8093 11.1735L10.6996 10.7891L10.7481 10.9831ZM10.7456 10.9837L10.6668 10.7999L10.7941 11.1778L10.7456 10.9837ZM10.7484 10.9825L10.8379 11.1614L10.7484 10.7825V10.9825ZM10.7466 10.9834L10.6571 10.8046L10.8045 11.1749L10.7466 10.9834ZM10.7819 10.9706L10.8607 11.1544L10.8618 11.1539L10.7819 10.9706ZM10.7797 10.9716L10.6984 10.7888L10.8585 11.1554L10.7797 10.9716ZM10.8138 10.955L10.9099 11.1303L10.7243 10.7761L10.8138 10.955ZM10.8119 10.9559L10.709 10.7844L10.9014 11.1348L10.8119 10.9559ZM10.8141 10.9544L10.9251 11.1207L11.4743 10.7544H10.8141V10.9544ZM10.8131 10.955L10.7021 10.7886L10.9108 11.1295L10.8131 10.955ZM10.8619 10.9228L11.0033 11.0642L10.7381 10.7657L10.8619 10.9228ZM10.8613 10.9234L10.7198 10.782L10.9828 11.0823L10.8613 10.9234ZM10.875 10.9122L11.0052 11.064L10.7856 10.7333L10.875 10.9122ZM10.8744 10.9125L10.7452 10.7598L10.9638 11.0914L10.8744 10.9125ZM10.8966 10.8915L10.7551 10.7501L10.752 10.7533L10.8966 10.8915ZM10.8975 10.8906L11.039 11.032L11.0417 11.0292L10.8975 10.8906ZM10.9397 10.8371L11.109 10.9436L11.1112 10.94L10.9397 10.8371ZM10.9406 10.8356L11.1195 10.925L10.7691 10.7327L10.9406 10.8356ZM10.94 10.8371L11.0814 10.9786L11.1044 10.9556L11.1189 10.9266L10.94 10.8371ZM10.9409 10.8353L10.7735 10.7258L10.7672 10.7355L10.762 10.7458L10.9409 10.8353ZM10.9575 10.8068L11.1353 10.8984L11.1364 10.8962L10.9575 10.8068ZM10.9578 10.8065L11.0992 10.9479L11.1222 10.925L11.1367 10.8959L10.9578 10.8065ZM10.9588 10.8046L10.781 10.7128L10.7799 10.7152L10.9588 10.8046ZM10.9834 10.7412L11.1764 10.794L11.1775 10.7896L10.9834 10.7412ZM10.9841 10.7387L11.1813 10.7715L10.79 10.6902L10.9841 10.7387ZM10.9838 10.7396L10.7897 10.6911L10.7838 10.715V10.7396H10.9838ZM10.9844 10.7371L10.7917 10.6831L10.7903 10.6886L10.9844 10.7371ZM10.9966 10.6521L11.1966 10.6562V10.6521H10.9966ZM10.9966 10.6518L10.7993 10.6189L10.7966 10.6352V10.6518H10.9966ZM10.6344 7.42556L10.545 7.24665L10.6344 7.62556V7.42556ZM1.35623 0.8C1.04916 0.800488 0.8 1.04959 0.8 1.35698H1.2C1.2 1.2705 1.27021 1.20014 1.35687 1.2L1.35623 0.8ZM0.8 1.35698C0.8 1.38412 0.801948 1.41093 0.805831 1.43764L1.20167 1.38009C1.20055 1.37241 1.2 1.36484 1.2 1.35698H0.8ZM1.20103 1.376L1.20072 1.37412L0.806157 1.43986L0.806469 1.44173L1.20103 1.376ZM0.803437 1.40699V4.21684H1.20344V1.40699H0.803437ZM0.803437 4.21684C0.803437 4.21685 0.803437 4.21685 0.803437 4.21685C0.803437 4.21685 0.803437 4.21686 0.803437 4.21686C0.803437 4.21686 0.803437 4.21687 0.803437 4.21687C0.803437 4.21687 0.803437 4.21688 0.803437 4.21688C0.803437 4.21688 0.803437 4.21689 0.803437 4.21689C0.803437 4.21689 0.803437 4.21689 0.803437 4.2169C0.803437 4.2169 0.803437 4.2169 0.803437 4.21691C0.803437 4.21691 0.803437 4.21691 0.803437 4.21692C0.803437 4.21692 0.803437 4.21692 0.803437 4.21692C0.803437 4.21693 0.803437 4.21693 0.803437 4.21693C0.803437 4.21694 0.803437 4.21694 0.803437 4.21694C0.803437 4.21695 0.803437 4.21695 0.803437 4.21695C0.803437 4.21696 0.803437 4.21696 0.803437 4.21696C0.803437 4.21696 0.803437 4.21697 0.803437 4.21697C0.803437 4.21697 0.803437 4.21698 0.803437 4.21698C0.803437 4.21698 0.803437 4.21699 0.803437 4.21699C0.803437 4.21699 0.803437 4.217 0.803437 4.217C0.803437 4.217 0.803437 4.217 0.803437 4.21701C0.803437 4.21701 0.803437 4.21701 0.803437 4.21702C0.803437 4.21702 0.803437 4.21702 0.803437 4.21703C0.803437 4.21703 0.803437 4.21703 0.803437 4.21703C0.803437 4.21704 0.803437 4.21704 0.803437 4.21704C0.803437 4.21705 0.803437 4.21705 0.803437 4.21705C0.803437 4.21706 0.803437 4.21706 0.803437 4.21706C0.803437 4.21707 0.803437 4.21707 0.803437 4.21707C0.803437 4.21707 0.803437 4.21708 0.803437 4.21708C0.803437 4.21708 0.803437 4.21709 0.803437 4.21709C0.803437 4.21709 0.803437 4.2171 0.803437 4.2171C0.803437 4.2171 0.803437 4.2171 0.803437 4.21711C0.803437 4.21711 0.803437 4.21711 0.803437 4.21712C0.803437 4.21712 0.803437 4.21712 0.803437 4.21713C0.803437 4.21713 0.803437 4.21713 0.803437 4.21714C0.803437 4.21714 0.803437 4.21714 0.803437 4.21714C0.803437 4.21715 0.803437 4.21715 0.803437 4.21715C0.803437 4.21716 0.803437 4.21716 0.803437 4.21716C0.803437 4.21717 0.803437 4.21717 0.803437 4.21717C0.803437 4.21718 0.803437 4.21718 0.803437 4.21718C0.803437 4.21718 0.803437 4.21719 0.803437 4.21719C0.803437 4.21719 0.803437 4.2172 0.803437 4.2172C0.803437 4.2172 0.803437 4.21721 0.803437 4.21721C0.803437 4.21721 0.803437 4.21721 0.803437 4.21722C0.803437 4.21722 0.803437 4.21722 0.803437 4.21723C0.803437 4.21723 0.803437 4.21723 0.803437 4.21724C0.803437 4.21724 0.803437 4.21724 0.803437 4.21725C0.803437 4.21725 0.803437 4.21725 0.803437 4.21725C0.803437 4.21726 0.803437 4.21726 0.803437 4.21726C0.803437 4.21727 0.803437 4.21727 0.803437 4.21727C0.803437 4.21728 0.803437 4.21728 0.803437 4.21728C0.803437 4.21729 0.803437 4.21729 0.803437 4.21729C0.803437 4.21729 0.803437 4.2173 0.803437 4.2173C0.803437 4.2173 0.803437 4.21731 0.803437 4.21731C0.803437 4.21731 0.803437 4.21732 0.803437 4.21732C0.803437 4.21732 0.803437 4.21732 0.803437 4.21733C0.803437 4.21733 0.803437 4.21733 0.803437 4.21734C0.803437 4.21734 0.803437 4.21734 0.803437 4.21735C0.803437 4.21735 0.803437 4.21735 0.803437 4.21736C0.803437 4.21736 0.803437 4.21736 0.803437 4.21736C0.803437 4.21737 0.803437 4.21737 0.803437 4.21737C0.803437 4.21738 0.803437 4.21738 0.803437 4.21738C0.803437 4.21739 0.803437 4.21739 0.803437 4.21739C0.803437 4.2174 0.803437 4.2174 0.803437 4.2174C0.803437 4.2174 0.803437 4.21741 0.803437 4.21741C0.803437 4.21741 0.803437 4.21742 0.803437 4.21742C0.803437 4.21742 0.803437 4.21743 0.803437 4.21743C0.803437 4.21743 0.803437 4.21744 0.803437 4.21744C0.803437 4.21744 0.803437 4.21744 0.803437 4.21745C0.803437 4.21745 0.803437 4.21745 0.803437 4.21746C0.803437 4.21746 0.803437 4.21746 0.803437 4.21747C0.803437 4.21747 0.803437 4.21747 0.803437 4.21747C0.803437 4.21748 0.803437 4.21748 0.803437 4.21748C0.803437 4.21749 0.803437 4.21749 0.803437 4.21749C0.803437 4.2175 0.803437 4.2175 0.803437 4.2175C0.803437 4.21751 0.803437 4.21751 0.803437 4.21751C0.803437 4.21751 0.803437 4.21752 0.803437 4.21752C0.803437 4.21752 0.803437 4.21753 0.803437 4.21753C0.803437 4.21753 0.803437 4.21754 0.803437 4.21754C0.803437 4.21754 0.803437 4.21755 0.803437 4.21755C0.803437 4.21755 0.803437 4.21755 0.803437 4.21756C0.803437 4.21756 0.803437 4.21756 0.803437 4.21757C0.803437 4.21757 0.803437 4.21757 0.803437 4.21758C0.803437 4.21758 0.803437 4.21758 0.803437 4.21759C0.803437 4.21759 0.803437 4.21759 0.803437 4.21759C0.803437 4.2176 0.803437 4.2176 0.803437 4.2176C0.803437 4.21761 0.803437 4.21761 0.803437 4.21761C0.803437 4.21762 0.803437 4.21762 0.803437 4.21762C0.803437 4.21763 0.803437 4.21763 0.803437 4.21763C0.803437 4.21763 0.803437 4.21764 0.803437 4.21764C0.803437 4.21764 0.803437 4.21765 0.803437 4.21765C0.803437 4.21765 0.803437 4.21766 0.803437 4.21766C0.803437 4.21766 0.803437 4.21767 0.803437 4.21767C0.803437 4.21767 0.803437 4.21767 0.803437 4.21768C0.803437 4.21768 0.803437 4.21768 0.803437 4.21769C0.803437 4.21769 0.803437 4.21769 0.803437 4.2177C0.803437 4.2177 0.803437 4.2177 0.803437 4.21771C0.803437 4.21771 0.803437 4.21771 0.803437 4.21771C0.803437 4.21772 0.803437 4.21772 0.803437 4.21772C0.803437 4.21773 0.803437 4.21773 0.803437 4.21773C0.803437 4.21774 0.803437 4.21774 0.803437 4.21774C0.803437 4.21775 0.803437 4.21775 0.803437 4.21775C0.803437 4.21775 0.803437 4.21776 0.803437 4.21776C0.803437 4.21776 0.803437 4.21777 0.803437 4.21777C0.803437 4.21777 0.803437 4.21778 0.803437 4.21778C0.803437 4.21778 0.803437 4.21779 0.803437 4.21779C0.803437 4.21779 0.803437 4.21779 0.803437 4.2178C0.803437 4.2178 0.803437 4.2178 0.803437 4.21781C0.803437 4.21781 0.803437 4.21781 0.803437 4.21782C0.803437 4.21782 0.803437 4.21782 0.803437 4.21783C0.803437 4.21783 0.803437 4.21783 0.803437 4.21783C0.803437 4.21784 0.803437 4.21784 0.803437 4.21784C0.803437 4.21785 0.803437 4.21785 0.803437 4.21785C0.803437 4.21786 0.803437 4.21786 0.803437 4.21786C0.803437 4.21787 0.803437 4.21787 0.803437 4.21787C0.803437 4.21787 0.803437 4.21788 0.803437 4.21788C0.803437 4.21788 0.803437 4.21789 0.803437 4.21789C0.803437 4.21789 0.803437 4.2179 0.803437 4.2179C0.803437 4.2179 0.803437 4.21791 0.803437 4.21791C0.803437 4.21791 0.803437 4.21791 0.803437 4.21792C0.803437 4.21792 0.803437 4.21792 0.803437 4.21793C0.803437 4.21793 0.803437 4.21793 0.803437 4.21794C0.803437 4.21794 0.803437 4.21794 0.803437 4.21795C0.803437 4.21795 0.803437 4.21795 0.803437 4.21795C0.803437 4.21796 0.803437 4.21796 0.803437 4.21796C0.803437 4.21797 0.803437 4.21797 0.803437 4.21797C0.803437 4.21798 0.803437 4.21798 0.803437 4.21798C0.803437 4.21799 0.803437 4.21799 0.803437 4.21799C0.803437 4.21799 0.803437 4.218 0.803437 4.218C0.803437 4.218 0.803437 4.21801 0.803437 4.21801C0.803437 4.21801 0.803437 4.21802 0.803437 4.21802C0.803437 4.21802 0.803437 4.21803 0.803437 4.21803C0.803437 4.21803 0.803437 4.21803 0.803437 4.21804C0.803437 4.21804 0.803437 4.21804 0.803437 4.21805C0.803437 4.21805 0.803437 4.21805 0.803437 4.21806C0.803437 4.21806 0.803437 4.21806 0.803437 4.21807C0.803437 4.21807 0.803437 4.21807 0.803437 4.21808C0.803437 4.21808 0.803437 4.21808 0.803437 4.21808C0.803437 4.21809 0.803437 4.21809 0.803437 4.21809C0.803437 4.2181 0.803437 4.2181 0.803437 4.2181C0.803437 4.21811 0.803437 4.21811 0.803437 4.21811C0.803437 4.21812 0.803437 4.21812 0.803437 4.21812C0.803437 4.21812 0.803437 4.21813 0.803437 4.21813C0.803437 4.21813 0.803437 4.21814 0.803437 4.21814C0.803437 4.21814 0.803437 4.21815 0.803437 4.21815C0.803437 4.21815 0.803437 4.21816 0.803437 4.21816C0.803437 4.21816 0.803437 4.21816 0.803437 4.21817C0.803437 4.21817 0.803437 4.21817 0.803437 4.21818C0.803437 4.21818 0.803437 4.21818 0.803437 4.21819C0.803437 4.21819 0.803437 4.21819 0.803437 4.2182C0.803437 4.2182 0.803437 4.2182 0.803437 4.21821C0.803437 4.21821 0.803437 4.21821 0.803437 4.21821C0.803437 4.21822 0.803437 4.21822 0.803437 4.21822C0.803437 4.21823 0.803437 4.21823 0.803437 4.21823C0.803437 4.21824 0.803437 4.21824 0.803437 4.21824C0.803437 4.21825 0.803437 4.21825 0.803437 4.21825C0.803437 4.21826 0.803437 4.21826 0.803437 4.21826C0.803437 4.21826 0.803437 4.21827 0.803437 4.21827C0.803437 4.21827 0.803437 4.21828 0.803437 4.21828C0.803437 4.21828 0.803437 4.21829 0.803437 4.21829C0.803437 4.21829 0.803437 4.2183 0.803437 4.2183C0.803437 4.2183 0.803437 4.2183 0.803437 4.21831C0.803437 4.21831 0.803437 4.21831 0.803437 4.21832C0.803437 4.21832 0.803437 4.21832 0.803437 4.21833C0.803437 4.21833 0.803437 4.21833 0.803437 4.21834C0.803437 4.21834 0.803437 4.21834 0.803437 4.21835C0.803437 4.21835 0.803437 4.21835 0.803437 4.21835C0.803437 4.21836 0.803437 4.21836 0.803437 4.21836C0.803437 4.21837 0.803437 4.21837 0.803437 4.21837C0.803437 4.21838 0.803437 4.21838 0.803437 4.21838C0.803437 4.21839 0.803437 4.21839 0.803437 4.21839C0.803437 4.21839 0.803437 4.2184 0.803437 4.2184C0.803437 4.2184 0.803437 4.21841 0.803437 4.21841C0.803437 4.21841 0.803437 4.21842 0.803437 4.21842C0.803437 4.21842 0.803437 4.21843 0.803437 4.21843C0.803437 4.21843 0.803437 4.21844 0.803437 4.21844C0.803437 4.21844 0.803437 4.21845 0.803437 4.21845C0.803437 4.21845 0.803437 4.21845 0.803437 4.21846C0.803437 4.21846 0.803437 4.21846 0.803437 4.21847C0.803437 4.21847 0.803437 4.21847 0.803437 4.21848C0.803437 4.21848 0.803437 4.21848 0.803437 4.21849C0.803437 4.21849 0.803437 4.21849 0.803437 4.21849C0.803437 4.2185 0.803437 4.2185 0.803437 4.2185C0.803437 4.21851 0.803437 4.21851 0.803437 4.21851C0.803437 4.21852 0.803437 4.21852 0.803437 4.21852C0.803437 4.21853 0.803437 4.21853 0.803437 4.21853C0.803437 4.21854 0.803437 4.21854 0.803437 4.21854C0.803437 4.21854 0.803437 4.21855 0.803437 4.21855C0.803437 4.21855 0.803437 4.21856 0.803437 4.21856C0.803437 4.21856 0.803437 4.21857 0.803437 4.21857C0.803437 4.21857 0.803437 4.21858 0.803437 4.21858C0.803437 4.21858 0.803437 4.21859 0.803437 4.21859C0.803437 4.21859 0.803437 4.2186 0.803437 4.2186C0.803437 4.2186 0.803437 4.2186 0.803437 4.21861C0.803437 4.21861 0.803437 4.21861 0.803437 4.21862C0.803437 4.21862 0.803437 4.21862 0.803437 4.21863C0.803437 4.21863 0.803437 4.21863 0.803437 4.21864C0.803437 4.21864 0.803437 4.21864 0.803437 4.21865C0.803437 4.21865 0.803437 4.21865 0.803437 4.21865C0.803437 4.21866 0.803437 4.21866 0.803437 4.21866C0.803437 4.21867 0.803437 4.21867 0.803437 4.21867C0.803437 4.21868 0.803437 4.21868 0.803437 4.21868C0.803437 4.21869 0.803437 4.21869 0.803437 4.21869C0.803437 4.2187 0.803437 4.2187 0.803437 4.2187C0.803437 4.21871 0.803437 4.21871 0.803437 4.21871C0.803437 4.21871 0.803437 4.21872 0.803437 4.21872C0.803437 4.21872 0.803437 4.21873 0.803437 4.21873C0.803437 4.21873 0.803437 4.21874 0.803437 4.21874C0.803437 4.21874 0.803437 4.21875 0.803437 4.21875C0.803437 4.21875 0.803437 4.21876 0.803437 4.21876C0.803437 4.21876 0.803437 4.21877 0.803437 4.21877C0.803437 4.21877 0.803437 4.21877 0.803437 4.21878C0.803437 4.21878 0.803437 4.21878 0.803437 4.21879C0.803437 4.21879 0.803437 4.21879 0.803437 4.2188C0.803437 4.2188 0.803437 4.2188 0.803437 4.21881C0.803437 4.21881 0.803437 4.21881 0.803437 4.21882C0.803437 4.21882 0.803437 4.21882 0.803437 4.21882C0.803437 4.21883 0.803437 4.21883 0.803437 4.21883C0.803437 4.21884 0.803437 4.21884 0.803437 4.21884C0.803437 4.21885 0.803437 4.21885 0.803437 4.21885C0.803437 4.21886 0.803437 4.21886 0.803437 4.21886C0.803437 4.21887 0.803437 4.21887 0.803437 4.21887C0.803437 4.21888 0.803437 4.21888 0.803437 4.21888C0.803437 4.21888 0.803437 4.21889 0.803437 4.21889C0.803437 4.21889 0.803437 4.2189 0.803437 4.2189C0.803437 4.2189 0.803437 4.21891 0.803437 4.21891C0.803437 4.21891 0.803437 4.21892 0.803437 4.21892C0.803437 4.21892 0.803437 4.21893 0.803437 4.21893C0.803437 4.21893 0.803437 4.21894 0.803437 4.21894C0.803437 4.21894 0.803437 4.21895 0.803437 4.21895C0.803437 4.21895 0.803437 4.21895 0.803437 4.21896C0.803437 4.21896 0.803437 4.21896 0.803437 4.21897C0.803437 4.21897 0.803437 4.21897 0.803437 4.21898C0.803437 4.21898 0.803437 4.21898 0.803437 4.21899C0.803437 4.21899 0.803437 4.21899 0.803437 4.219C0.803437 4.219 0.803437 4.219 0.803437 4.21901C0.803437 4.21901 0.803437 4.21901 0.803437 4.21902C0.803437 4.21902 0.803437 4.21902 0.803437 4.21902C0.803437 4.21903 0.803437 4.21903 0.803437 4.21903C0.803437 4.21904 0.803437 4.21904 0.803437 4.21904C0.803437 4.21905 0.803437 4.21905 0.803437 4.21905C0.803437 4.21906 0.803437 4.21906 0.803437 4.21906C0.803437 4.21907 0.803437 4.21907 0.803437 4.21907C0.803437 4.21908 0.803437 4.21908 0.803437 4.21908C0.803437 4.21909 0.803437 4.21909 0.803437 4.21909C0.803437 4.21909 0.803437 4.2191 0.803437 4.2191C0.803437 4.2191 0.803437 4.21911 0.803437 4.21911C0.803437 4.21911 0.803437 4.21912 0.803437 4.21912C0.803437 4.21912 0.803437 4.21913 0.803437 4.21913C0.803437 4.21913 0.803437 4.21914 0.803437 4.21914C0.803437 4.21914 0.803437 4.21915 0.803437 4.21915C0.803437 4.21915 0.803437 4.21916 0.803437 4.21916C0.803437 4.21916 0.803437 4.21917 0.803437 4.21917C0.803437 4.21917 0.803437 4.21917 0.803437 4.21918C0.803437 4.21918 0.803437 4.21918 0.803437 4.21919C0.803437 4.21919 0.803437 4.21919 0.803437 4.2192C0.803437 4.2192 0.803437 4.2192 0.803437 4.21921C0.803437 4.21921 0.803437 4.21921 0.803437 4.21922C0.803437 4.21922 0.803437 4.21922 0.803437 4.21923C0.803437 4.21923 0.803437 4.21923 0.803437 4.21924C0.803437 4.21924 0.803437 4.21924 0.803437 4.21924C0.803437 4.21925 0.803437 4.21925 0.803437 4.21925C0.803437 4.21926 0.803437 4.21926 0.803437 4.21926C0.803437 4.21927 0.803437 4.21927 0.803437 4.21927C0.803437 4.21928 0.803437 4.21928 0.803437 4.21928C0.803437 4.21929 0.803437 4.21929 0.803437 4.21929C0.803437 4.2193 0.803437 4.2193 0.803437 4.2193C0.803437 4.21931 0.803437 4.21931 0.803437 4.21931C0.803437 4.21932 0.803437 4.21932 0.803437 4.21932C0.803437 4.21933 0.803437 4.21933 0.803437 4.21933C0.803437 4.21934 0.803437 4.21934 0.803437 4.21934C0.803437 4.21934 0.803437 4.21935 0.803437 4.21935C0.803437 4.21935 0.803437 4.21936 0.803437 4.21936C0.803437 4.21936 0.803437 4.21937 0.803437 4.21937C0.803437 4.21937 0.803437 4.21938 0.803437 4.21938C0.803437 4.21938 0.803437 4.21939 0.803437 4.21939C0.803437 4.21939 0.803437 4.2194 0.803437 4.2194C0.803437 4.2194 0.803437 4.21941 0.803437 4.21941C0.803437 4.21941 0.803437 4.21942 0.803437 4.21942C0.803437 4.21942 0.803437 4.21943 0.803437 4.21943C0.803437 4.21943 0.803437 4.21943 0.803437 4.21944C0.803437 4.21944 0.803437 4.21944 0.803437 4.21945C0.803437 4.21945 0.803437 4.21945 0.803437 4.21946C0.803437 4.21946 0.803437 4.21946 0.803437 4.21947C0.803437 4.21947 0.803437 4.21947 0.803437 4.21948C0.803437 4.21948 0.803437 4.21948 0.803437 4.21949C0.803437 4.21949 0.803437 4.21949 0.803437 4.2195C0.803437 4.2195 0.803437 4.2195 0.803437 4.21951C0.803437 4.21951 0.803437 4.21951 0.803437 4.21952C0.803437 4.21952 0.803437 4.21952 0.803437 4.21953C0.803437 4.21953 0.803437 4.21953 0.803437 4.21954C0.803437 4.21954 0.803437 4.21954 0.803437 4.21955C0.803437 4.21955 0.803437 4.21955 0.803437 4.21955C0.803437 4.21956 0.803437 4.21956 0.803437 4.21956C0.803437 4.21957 0.803437 4.21957 0.803437 4.21957C0.803437 4.21958 0.803437 4.21958 0.803437 4.21958C0.803437 4.21959 0.803437 4.21959 0.803437 4.21959C0.803437 4.2196 0.803437 4.2196 0.803437 4.2196C0.803437 4.21961 0.803437 4.21961 0.803437 4.21961C0.803437 4.21962 0.803437 4.21962 0.803437 4.21962C0.803437 4.21963 0.803437 4.21963 0.803437 4.21963C0.803437 4.21964 0.803437 4.21964 0.803437 4.21964C0.803437 4.21965 0.803437 4.21965 0.803437 4.21965C0.803437 4.21966 0.803437 4.21966 0.803437 4.21966C0.803437 4.21967 0.803437 4.21967 0.803437 4.21967C0.803437 4.21968 0.803437 4.21968 0.803437 4.21968C0.803437 4.21969 0.803437 4.21969 0.803437 4.21969C0.803437 4.2197 0.803437 4.2197 0.803437 4.2197C0.803437 4.2197 0.803437 4.21971 0.803437 4.21971C0.803437 4.21971 0.803437 4.21972 0.803437 4.21972C0.803437 4.21972 0.803437 4.21973 0.803437 4.21973C0.803437 4.21973 0.803437 4.21974 0.803437 4.21974C0.803437 4.21974 0.803437 4.21975 0.803437 4.21975C0.803437 4.21975 0.803437 4.21976 0.803437 4.21976C0.803437 4.21976 0.803437 4.21977 0.803437 4.21977C0.803437 4.21977 0.803437 4.21978 0.803437 4.21978C0.803437 4.21978 0.803437 4.21979 0.803437 4.21979C0.803437 4.21979 0.803437 4.2198 0.803437 4.2198C0.803437 4.2198 0.803437 4.21981 0.803437 4.21981C0.803437 4.21981 0.803437 4.21982 0.803437 4.21982C0.803437 4.21982 0.803437 4.21983 0.803437 4.21983C0.803437 4.21983 0.803437 4.21984 0.803437 4.21984C0.803437 4.21984 0.803437 4.21985 0.803437 4.21985C0.803437 4.21985 0.803437 4.21986 0.803437 4.21986C0.803437 4.21986 0.803437 4.21987 0.803437 4.21987C0.803437 4.21987 0.803437 4.21988 0.803437 4.21988C0.803437 4.21988 0.803437 4.21989 0.803437 4.21989C0.803437 4.21989 0.803437 4.2199 0.803437 4.2199C0.803437 4.2199 0.803437 4.21991 0.803437 4.21991C0.803437 4.21991 0.803437 4.21992 0.803437 4.21992C0.803437 4.21992 0.803437 4.21992 0.803437 4.21993C0.803437 4.21993 0.803437 4.21993 0.803437 4.21994C0.803437 4.21994 0.803437 4.21994 0.803437 4.21995C0.803437 4.21995 0.803437 4.21995 0.803437 4.21996C0.803437 4.21996 0.803437 4.21996 0.803437 4.21997C0.803437 4.21997 0.803437 4.21997 0.803437 4.21998C0.803437 4.21998 0.803437 4.21998 0.803437 4.21999C0.803437 4.21999 0.803437 4.21999 0.803437 4.22C0.803437 4.22 0.803437 4.22 0.803437 4.22001C0.803437 4.22001 0.803437 4.22001 0.803437 4.22002C0.803437 4.22002 0.803437 4.22002 0.803437 4.22003C0.803437 4.22003 0.803437 4.22003 0.803437 4.22004C0.803437 4.22004 0.803437 4.22004 0.803437 4.22005C0.803437 4.22005 0.803437 4.22005 0.803437 4.22006C0.803437 4.22006 0.803437 4.22006 0.803437 4.22007C0.803437 4.22007 0.803437 4.22007 0.803437 4.22008C0.803437 4.22008 0.803437 4.22008 0.803437 4.22009C0.803437 4.22009 0.803437 4.22009 0.803437 4.2201C0.803437 4.2201 0.803437 4.2201 0.803437 4.22011C0.803437 4.22011 0.803437 4.22011 0.803437 4.22012C0.803437 4.22012 0.803437 4.22012 0.803437 4.22013C0.803437 4.22013 0.803437 4.22013 0.803437 4.22014C0.803437 4.22014 0.803437 4.22014 0.803437 4.22015C0.803437 4.22015 0.803437 4.22015 0.803437 4.22016C0.803437 4.22016 0.803437 4.22016 0.803437 4.22017C0.803437 4.22017 0.803437 4.22017 0.803437 4.22018C0.803437 4.22018 0.803437 4.22018 0.803437 4.22019C0.803437 4.22019 0.803437 4.22019 0.803437 4.2202C0.803437 4.2202 0.803437 4.2202 0.803437 4.22021C0.803437 4.22021 0.803437 4.22021 0.803437 4.22022C0.803437 4.22022 0.803437 4.22022 0.803437 4.22023C0.803437 4.22023 0.803437 4.22023 0.803437 4.22024C0.803437 4.22024 0.803437 4.22024 0.803437 4.22025C0.803437 4.22025 0.803437 4.22025 0.803437 4.22026C0.803437 4.22026 0.803437 4.22026 0.803437 4.22027C0.803437 4.22027 0.803437 4.22027 0.803437 4.22028C0.803437 4.22028 0.803437 4.22028 0.803437 4.22029C0.803437 4.22029 0.803437 4.22029 0.803437 4.2203C0.803437 4.2203 0.803437 4.2203 0.803437 4.22031C0.803437 4.22031 0.803437 4.22031 0.803437 4.22032C0.803437 4.22032 0.803437 4.22032 0.803437 4.22033C0.803437 4.22033 0.803437 4.22034 0.803437 4.22034C0.803437 4.22034 0.803437 4.22035 0.803437 4.22035C0.803437 4.22035 0.803437 4.22036 0.803437 4.22036C0.803437 4.22036 0.803437 4.22037 0.803437 4.22037C0.803437 4.22037 0.803437 4.22038 0.803437 4.22038C0.803437 4.22038 0.803437 4.22039 0.803437 4.22039C0.803437 4.22039 0.803437 4.2204 0.803437 4.2204C0.803437 4.2204 0.803437 4.22041 0.803437 4.22041C0.803437 4.22041 0.803437 4.22042 0.803437 4.22042C0.803437 4.22042 0.803437 4.22043 0.803437 4.22043C0.803437 4.22043 0.803437 4.22044 0.803437 4.22044C0.803437 4.22044 0.803437 4.22045 0.803437 4.22045C0.803437 4.22045 0.803437 4.22046 0.803437 4.22046C0.803437 4.22046 0.803437 4.22047 0.803437 4.22047C0.803437 4.22047 0.803437 4.22048 0.803437 4.22048C0.803437 4.22048 0.803437 4.22049 0.803437 4.22049C0.803437 4.22049 0.803437 4.2205 0.803437 4.2205C0.803437 4.2205 0.803437 4.22051 0.803437 4.22051C0.803437 4.22051 0.803437 4.22052 0.803437 4.22052C0.803437 4.22052 0.803437 4.22053 0.803437 4.22053C0.803437 4.22054 0.803437 4.22054 0.803437 4.22054C0.803437 4.22055 0.803437 4.22055 0.803437 4.22055C0.803437 4.22056 0.803437 4.22056 0.803437 4.22056C0.803437 4.22057 0.803437 4.22057 0.803437 4.22057C0.803437 4.22058 0.803437 4.22058 0.803437 4.22058C0.803437 4.22059 0.803437 4.22059 0.803437 4.22059C0.803437 4.2206 0.803437 4.2206 0.803437 4.2206C0.803437 4.22061 0.803437 4.22061 0.803437 4.22061C0.803437 4.22062 0.803437 4.22062 0.803437 4.22062C0.803437 4.22063 0.803437 4.22063 0.803437 4.22063C0.803437 4.22064 0.803437 4.22064 0.803437 4.22064C0.803437 4.22065 0.803437 4.22065 0.803437 4.22065C0.803437 4.22066 0.803437 4.22066 0.803437 4.22066C0.803437 4.22067 0.803437 4.22067 0.803437 4.22067C0.803437 4.22068 0.803437 4.22068 0.803437 4.22069C0.803437 4.22069 0.803437 4.22069 0.803437 4.2207C0.803437 4.2207 0.803437 4.2207 0.803437 4.22071C0.803437 4.22071 0.803437 4.22071 0.803437 4.22072C0.803437 4.22072 0.803437 4.22072 0.803437 4.22073C0.803437 4.22073 0.803437 4.22073 0.803437 4.22074C0.803437 4.22074 0.803437 4.22074 0.803437 4.22075C0.803437 4.22075 0.803437 4.22075 0.803437 4.22076C0.803437 4.22076 0.803437 4.22076 0.803437 4.22077C0.803437 4.22077 0.803437 4.22077 0.803437 4.22078C0.803437 4.22078 0.803437 4.22079 0.803437 4.22079C0.803437 4.22079 0.803437 4.2208 0.803437 4.2208C0.803437 4.2208 0.803437 4.22081 0.803437 4.22081C0.803437 4.22081 0.803437 4.22082 0.803437 4.22082C0.803437 4.22082 0.803437 4.22083 0.803437 4.22083C0.803437 4.22083 0.803437 4.22084 0.803437 4.22084C0.803437 4.22084 0.803437 4.22085 0.803437 4.22085C0.803437 4.22085 0.803437 4.22086 0.803437 4.22086C0.803437 4.22086 0.803437 4.22087 0.803437 4.22087C0.803437 4.22088 0.803437 4.22088 0.803437 4.22088C0.803437 4.22089 0.803437 4.22089 0.803437 4.22089C0.803437 4.2209 0.803437 4.2209 0.803437 4.2209C0.803437 4.22091 0.803437 4.22091 0.803437 4.22091C0.803437 4.22092 0.803437 4.22092 0.803437 4.22092C0.803437 4.22093 0.803437 4.22093 0.803437 4.22093C0.803437 4.22094 0.803437 4.22094 0.803437 4.22094C0.803437 4.22095 0.803437 4.22095 0.803437 4.22095C0.803437 4.22096 0.803437 4.22096 0.803437 4.22097C0.803437 4.22097 0.803437 4.22097 0.803437 4.22098C0.803437 4.22098 0.803437 4.22098 0.803437 4.22099C0.803437 4.22099 0.803437 4.22099 0.803437 4.221C0.803437 4.221 0.803437 4.221 0.803437 4.22101C0.803437 4.22101 0.803437 4.22101 0.803437 4.22102C0.803437 4.22102 0.803437 4.22102 0.803437 4.22103C0.803437 4.22103 0.803437 4.22104 0.803437 4.22104C0.803437 4.22104 0.803437 4.22105 0.803437 4.22105C0.803437 4.22105 0.803437 4.22106 0.803437 4.22106C0.803437 4.22106 0.803437 4.22107 0.803437 4.22107C0.803437 4.22107 0.803437 4.22108 0.803437 4.22108C0.803437 4.22108 0.803437 4.22109 0.803437 4.22109C0.803437 4.22109 0.803437 4.2211 0.803437 4.2211C0.803437 4.22111 0.803437 4.22111 0.803437 4.22111C0.803437 4.22112 0.803437 4.22112 0.803437 4.22112C0.803437 4.22113 0.803437 4.22113 0.803437 4.22113C0.803437 4.22114 0.803437 4.22114 0.803437 4.22114C0.803437 4.22115 0.803437 4.22115 0.803437 4.22115C0.803437 4.22116 0.803437 4.22116 0.803437 4.22116C0.803437 4.22117 0.803437 4.22117 0.803437 4.22118C0.803437 4.22118 0.803437 4.22118 0.803437 4.22119C0.803437 4.22119 0.803437 4.22119 0.803437 4.2212C0.803437 4.2212 0.803437 4.2212 0.803437 4.22121C0.803437 4.22121 0.803437 4.22121 0.803437 4.22122C0.803437 4.22122 0.803437 4.22123 0.803437 4.22123C0.803437 4.22123 0.803437 4.22124 0.803437 4.22124C0.803437 4.22124 0.803437 4.22125 0.803437 4.22125C0.803437 4.22125 0.803437 4.22126 0.803437 4.22126C0.803437 4.22126 0.803437 4.22127 0.803437 4.22127C0.803437 4.22127 0.803437 4.22128 0.803437 4.22128C0.803437 4.22129 0.803437 4.22129 0.803437 4.22129C0.803437 4.2213 0.803437 4.2213 0.803437 4.2213C0.803437 4.22131 0.803437 4.22131 0.803437 4.22131C0.803437 4.22132 0.803437 4.22132 0.803437 4.22132C0.803437 4.22133 0.803437 4.22133 0.803437 4.22133C0.803437 4.22134 0.803437 4.22134 0.803437 4.22135C0.803437 4.22135 0.803437 4.22135 0.803437 4.22136C0.803437 4.22136 0.803437 4.22136 0.803437 4.22137C0.803437 4.22137 0.803437 4.22137 0.803437 4.22138C0.803437 4.22138 0.803437 4.22138 0.803437 4.22139C0.803437 4.22139 0.803437 4.2214 0.803437 4.2214C0.803437 4.2214 0.803437 4.22141 0.803437 4.22141C0.803437 4.22141 0.803437 4.22142 0.803437 4.22142C0.803437 4.22142 0.803437 4.22143 0.803437 4.22143C0.803437 4.22143 0.803437 4.22144 0.803437 4.22144C0.803437 4.22145 0.803437 4.22145 0.803437 4.22145C0.803437 4.22146 0.803437 4.22146 0.803437 4.22146C0.803437 4.22147 0.803437 4.22147 0.803437 4.22147C0.803437 4.22148 0.803437 4.22148 0.803437 4.22148C0.803437 4.22149 0.803437 4.22149 0.803437 4.2215C0.803437 4.2215 0.803437 4.2215 0.803437 4.22151C0.803437 4.22151 0.803437 4.22151 0.803437 4.22152C0.803437 4.22152 0.803437 4.22152 0.803437 4.22153C0.803437 4.22153 0.803437 4.22154 0.803437 4.22154C0.803437 4.22154 0.803437 4.22155 0.803437 4.22155C0.803437 4.22155 0.803437 4.22156 0.803437 4.22156C0.803437 4.22156 0.803437 4.22157 0.803437 4.22157C0.803437 4.22157 0.803437 4.22158 0.803437 4.22158C0.803437 4.22159 0.803437 4.22159 0.803437 4.22159C0.803437 4.2216 0.803437 4.2216 0.803437 4.2216C0.803437 4.22161 0.803437 4.22161 0.803437 4.22161C0.803437 4.22162 0.803437 4.22162 0.803437 4.22163C0.803437 4.22163 0.803437 4.22163 0.803437 4.22164C0.803437 4.22164 0.803437 4.22164 0.803437 4.22165C0.803437 4.22165 0.803437 4.22165 0.803437 4.22166C0.803437 4.22166 0.803437 4.22167 0.803437 4.22167C0.803437 4.22167 0.803437 4.22168 0.803437 4.22168C0.803437 4.22168 0.803437 4.22169 0.803437 4.22169C0.803437 4.22169 0.803437 4.2217 0.803437 4.2217C0.803437 4.2217 0.803437 4.22171 0.803437 4.22171C0.803437 4.22172 0.803437 4.22172 0.803437 4.22172C0.803437 4.22173 0.803437 4.22173 0.803437 4.22173C0.803437 4.22174 0.803437 4.22174 0.803437 4.22175C0.803437 4.22175 0.803437 4.22175 0.803437 4.22176C0.803437 4.22176 0.803437 4.22176 0.803437 4.22177C0.803437 4.22177 0.803437 4.22177 0.803437 4.22178C0.803437 4.22178 0.803437 4.22179 0.803437 4.22179C0.803437 4.22179 0.803437 4.2218 0.803437 4.2218C0.803437 4.2218 0.803437 4.22181 0.803437 4.22181C0.803437 4.22181 0.803437 4.22182 0.803437 4.22182C0.803437 4.22183 0.803437 4.22183 0.803437 4.22183C0.803437 4.22184 0.803437 4.22184 0.803437 4.22184H1.20344C1.20344 4.22184 1.20344 4.22184 1.20344 4.22183C1.20344 4.22183 1.20344 4.22183 1.20344 4.22182C1.20344 4.22182 1.20344 4.22181 1.20344 4.22181C1.20344 4.22181 1.20344 4.2218 1.20344 4.2218C1.20344 4.2218 1.20344 4.22179 1.20344 4.22179C1.20344 4.22179 1.20344 4.22178 1.20344 4.22178C1.20344 4.22177 1.20344 4.22177 1.20344 4.22177C1.20344 4.22176 1.20344 4.22176 1.20344 4.22176C1.20344 4.22175 1.20344 4.22175 1.20344 4.22175C1.20344 4.22174 1.20344 4.22174 1.20344 4.22173C1.20344 4.22173 1.20344 4.22173 1.20344 4.22172C1.20344 4.22172 1.20344 4.22172 1.20344 4.22171C1.20344 4.22171 1.20344 4.2217 1.20344 4.2217C1.20344 4.2217 1.20344 4.22169 1.20344 4.22169C1.20344 4.22169 1.20344 4.22168 1.20344 4.22168C1.20344 4.22168 1.20344 4.22167 1.20344 4.22167C1.20344 4.22167 1.20344 4.22166 1.20344 4.22166C1.20344 4.22165 1.20344 4.22165 1.20344 4.22165C1.20344 4.22164 1.20344 4.22164 1.20344 4.22164C1.20344 4.22163 1.20344 4.22163 1.20344 4.22163C1.20344 4.22162 1.20344 4.22162 1.20344 4.22161C1.20344 4.22161 1.20344 4.22161 1.20344 4.2216C1.20344 4.2216 1.20344 4.2216 1.20344 4.22159C1.20344 4.22159 1.20344 4.22159 1.20344 4.22158C1.20344 4.22158 1.20344 4.22157 1.20344 4.22157C1.20344 4.22157 1.20344 4.22156 1.20344 4.22156C1.20344 4.22156 1.20344 4.22155 1.20344 4.22155C1.20344 4.22155 1.20344 4.22154 1.20344 4.22154C1.20344 4.22154 1.20344 4.22153 1.20344 4.22153C1.20344 4.22152 1.20344 4.22152 1.20344 4.22152C1.20344 4.22151 1.20344 4.22151 1.20344 4.22151C1.20344 4.2215 1.20344 4.2215 1.20344 4.2215C1.20344 4.22149 1.20344 4.22149 1.20344 4.22148C1.20344 4.22148 1.20344 4.22148 1.20344 4.22147C1.20344 4.22147 1.20344 4.22147 1.20344 4.22146C1.20344 4.22146 1.20344 4.22146 1.20344 4.22145C1.20344 4.22145 1.20344 4.22145 1.20344 4.22144C1.20344 4.22144 1.20344 4.22143 1.20344 4.22143C1.20344 4.22143 1.20344 4.22142 1.20344 4.22142C1.20344 4.22142 1.20344 4.22141 1.20344 4.22141C1.20344 4.22141 1.20344 4.2214 1.20344 4.2214C1.20344 4.2214 1.20344 4.22139 1.20344 4.22139C1.20344 4.22138 1.20344 4.22138 1.20344 4.22138C1.20344 4.22137 1.20344 4.22137 1.20344 4.22137C1.20344 4.22136 1.20344 4.22136 1.20344 4.22136C1.20344 4.22135 1.20344 4.22135 1.20344 4.22135C1.20344 4.22134 1.20344 4.22134 1.20344 4.22133C1.20344 4.22133 1.20344 4.22133 1.20344 4.22132C1.20344 4.22132 1.20344 4.22132 1.20344 4.22131C1.20344 4.22131 1.20344 4.22131 1.20344 4.2213C1.20344 4.2213 1.20344 4.2213 1.20344 4.22129C1.20344 4.22129 1.20344 4.22129 1.20344 4.22128C1.20344 4.22128 1.20344 4.22127 1.20344 4.22127C1.20344 4.22127 1.20344 4.22126 1.20344 4.22126C1.20344 4.22126 1.20344 4.22125 1.20344 4.22125C1.20344 4.22125 1.20344 4.22124 1.20344 4.22124C1.20344 4.22124 1.20344 4.22123 1.20344 4.22123C1.20344 4.22123 1.20344 4.22122 1.20344 4.22122C1.20344 4.22121 1.20344 4.22121 1.20344 4.22121C1.20344 4.2212 1.20344 4.2212 1.20344 4.2212C1.20344 4.22119 1.20344 4.22119 1.20344 4.22119C1.20344 4.22118 1.20344 4.22118 1.20344 4.22118C1.20344 4.22117 1.20344 4.22117 1.20344 4.22116C1.20344 4.22116 1.20344 4.22116 1.20344 4.22115C1.20344 4.22115 1.20344 4.22115 1.20344 4.22114C1.20344 4.22114 1.20344 4.22114 1.20344 4.22113C1.20344 4.22113 1.20344 4.22113 1.20344 4.22112C1.20344 4.22112 1.20344 4.22112 1.20344 4.22111C1.20344 4.22111 1.20344 4.22111 1.20344 4.2211C1.20344 4.2211 1.20344 4.22109 1.20344 4.22109C1.20344 4.22109 1.20344 4.22108 1.20344 4.22108C1.20344 4.22108 1.20344 4.22107 1.20344 4.22107C1.20344 4.22107 1.20344 4.22106 1.20344 4.22106C1.20344 4.22106 1.20344 4.22105 1.20344 4.22105C1.20344 4.22105 1.20344 4.22104 1.20344 4.22104C1.20344 4.22104 1.20344 4.22103 1.20344 4.22103C1.20344 4.22102 1.20344 4.22102 1.20344 4.22102C1.20344 4.22101 1.20344 4.22101 1.20344 4.22101C1.20344 4.221 1.20344 4.221 1.20344 4.221C1.20344 4.22099 1.20344 4.22099 1.20344 4.22099C1.20344 4.22098 1.20344 4.22098 1.20344 4.22098C1.20344 4.22097 1.20344 4.22097 1.20344 4.22097C1.20344 4.22096 1.20344 4.22096 1.20344 4.22095C1.20344 4.22095 1.20344 4.22095 1.20344 4.22094C1.20344 4.22094 1.20344 4.22094 1.20344 4.22093C1.20344 4.22093 1.20344 4.22093 1.20344 4.22092C1.20344 4.22092 1.20344 4.22092 1.20344 4.22091C1.20344 4.22091 1.20344 4.22091 1.20344 4.2209C1.20344 4.2209 1.20344 4.2209 1.20344 4.22089C1.20344 4.22089 1.20344 4.22089 1.20344 4.22088C1.20344 4.22088 1.20344 4.22088 1.20344 4.22087C1.20344 4.22087 1.20344 4.22086 1.20344 4.22086C1.20344 4.22086 1.20344 4.22085 1.20344 4.22085C1.20344 4.22085 1.20344 4.22084 1.20344 4.22084C1.20344 4.22084 1.20344 4.22083 1.20344 4.22083C1.20344 4.22083 1.20344 4.22082 1.20344 4.22082C1.20344 4.22082 1.20344 4.22081 1.20344 4.22081C1.20344 4.22081 1.20344 4.2208 1.20344 4.2208C1.20344 4.2208 1.20344 4.22079 1.20344 4.22079C1.20344 4.22079 1.20344 4.22078 1.20344 4.22078C1.20344 4.22077 1.20344 4.22077 1.20344 4.22077C1.20344 4.22076 1.20344 4.22076 1.20344 4.22076C1.20344 4.22075 1.20344 4.22075 1.20344 4.22075C1.20344 4.22074 1.20344 4.22074 1.20344 4.22074C1.20344 4.22073 1.20344 4.22073 1.20344 4.22073C1.20344 4.22072 1.20344 4.22072 1.20344 4.22072C1.20344 4.22071 1.20344 4.22071 1.20344 4.22071C1.20344 4.2207 1.20344 4.2207 1.20344 4.2207C1.20344 4.22069 1.20344 4.22069 1.20344 4.22069C1.20344 4.22068 1.20344 4.22068 1.20344 4.22067C1.20344 4.22067 1.20344 4.22067 1.20344 4.22066C1.20344 4.22066 1.20344 4.22066 1.20344 4.22065C1.20344 4.22065 1.20344 4.22065 1.20344 4.22064C1.20344 4.22064 1.20344 4.22064 1.20344 4.22063C1.20344 4.22063 1.20344 4.22063 1.20344 4.22062C1.20344 4.22062 1.20344 4.22062 1.20344 4.22061C1.20344 4.22061 1.20344 4.22061 1.20344 4.2206C1.20344 4.2206 1.20344 4.2206 1.20344 4.22059C1.20344 4.22059 1.20344 4.22059 1.20344 4.22058C1.20344 4.22058 1.20344 4.22058 1.20344 4.22057C1.20344 4.22057 1.20344 4.22057 1.20344 4.22056C1.20344 4.22056 1.20344 4.22056 1.20344 4.22055C1.20344 4.22055 1.20344 4.22055 1.20344 4.22054C1.20344 4.22054 1.20344 4.22054 1.20344 4.22053C1.20344 4.22053 1.20344 4.22052 1.20344 4.22052C1.20344 4.22052 1.20344 4.22051 1.20344 4.22051C1.20344 4.22051 1.20344 4.2205 1.20344 4.2205C1.20344 4.2205 1.20344 4.22049 1.20344 4.22049C1.20344 4.22049 1.20344 4.22048 1.20344 4.22048C1.20344 4.22048 1.20344 4.22047 1.20344 4.22047C1.20344 4.22047 1.20344 4.22046 1.20344 4.22046C1.20344 4.22046 1.20344 4.22045 1.20344 4.22045C1.20344 4.22045 1.20344 4.22044 1.20344 4.22044C1.20344 4.22044 1.20344 4.22043 1.20344 4.22043C1.20344 4.22043 1.20344 4.22042 1.20344 4.22042C1.20344 4.22042 1.20344 4.22041 1.20344 4.22041C1.20344 4.22041 1.20344 4.2204 1.20344 4.2204C1.20344 4.2204 1.20344 4.22039 1.20344 4.22039C1.20344 4.22039 1.20344 4.22038 1.20344 4.22038C1.20344 4.22038 1.20344 4.22037 1.20344 4.22037C1.20344 4.22037 1.20344 4.22036 1.20344 4.22036C1.20344 4.22036 1.20344 4.22035 1.20344 4.22035C1.20344 4.22035 1.20344 4.22034 1.20344 4.22034C1.20344 4.22034 1.20344 4.22033 1.20344 4.22033C1.20344 4.22032 1.20344 4.22032 1.20344 4.22032C1.20344 4.22031 1.20344 4.22031 1.20344 4.22031C1.20344 4.2203 1.20344 4.2203 1.20344 4.2203C1.20344 4.22029 1.20344 4.22029 1.20344 4.22029C1.20344 4.22028 1.20344 4.22028 1.20344 4.22028C1.20344 4.22027 1.20344 4.22027 1.20344 4.22027C1.20344 4.22026 1.20344 4.22026 1.20344 4.22026C1.20344 4.22025 1.20344 4.22025 1.20344 4.22025C1.20344 4.22024 1.20344 4.22024 1.20344 4.22024C1.20344 4.22023 1.20344 4.22023 1.20344 4.22023C1.20344 4.22022 1.20344 4.22022 1.20344 4.22022C1.20344 4.22021 1.20344 4.22021 1.20344 4.22021C1.20344 4.2202 1.20344 4.2202 1.20344 4.2202C1.20344 4.22019 1.20344 4.22019 1.20344 4.22019C1.20344 4.22018 1.20344 4.22018 1.20344 4.22018C1.20344 4.22017 1.20344 4.22017 1.20344 4.22017C1.20344 4.22016 1.20344 4.22016 1.20344 4.22016C1.20344 4.22015 1.20344 4.22015 1.20344 4.22015C1.20344 4.22014 1.20344 4.22014 1.20344 4.22014C1.20344 4.22013 1.20344 4.22013 1.20344 4.22013C1.20344 4.22012 1.20344 4.22012 1.20344 4.22012C1.20344 4.22011 1.20344 4.22011 1.20344 4.22011C1.20344 4.2201 1.20344 4.2201 1.20344 4.2201C1.20344 4.22009 1.20344 4.22009 1.20344 4.22009C1.20344 4.22008 1.20344 4.22008 1.20344 4.22008C1.20344 4.22007 1.20344 4.22007 1.20344 4.22007C1.20344 4.22006 1.20344 4.22006 1.20344 4.22006C1.20344 4.22005 1.20344 4.22005 1.20344 4.22005C1.20344 4.22004 1.20344 4.22004 1.20344 4.22004C1.20344 4.22003 1.20344 4.22003 1.20344 4.22003C1.20344 4.22002 1.20344 4.22002 1.20344 4.22002C1.20344 4.22001 1.20344 4.22001 1.20344 4.22001C1.20344 4.22 1.20344 4.22 1.20344 4.22C1.20344 4.21999 1.20344 4.21999 1.20344 4.21999C1.20344 4.21998 1.20344 4.21998 1.20344 4.21998C1.20344 4.21997 1.20344 4.21997 1.20344 4.21997C1.20344 4.21996 1.20344 4.21996 1.20344 4.21996C1.20344 4.21995 1.20344 4.21995 1.20344 4.21995C1.20344 4.21994 1.20344 4.21994 1.20344 4.21994C1.20344 4.21993 1.20344 4.21993 1.20344 4.21993C1.20344 4.21992 1.20344 4.21992 1.20344 4.21992C1.20344 4.21992 1.20344 4.21991 1.20344 4.21991C1.20344 4.21991 1.20344 4.2199 1.20344 4.2199C1.20344 4.2199 1.20344 4.21989 1.20344 4.21989C1.20344 4.21989 1.20344 4.21988 1.20344 4.21988C1.20344 4.21988 1.20344 4.21987 1.20344 4.21987C1.20344 4.21987 1.20344 4.21986 1.20344 4.21986C1.20344 4.21986 1.20344 4.21985 1.20344 4.21985C1.20344 4.21985 1.20344 4.21984 1.20344 4.21984C1.20344 4.21984 1.20344 4.21983 1.20344 4.21983C1.20344 4.21983 1.20344 4.21982 1.20344 4.21982C1.20344 4.21982 1.20344 4.21981 1.20344 4.21981C1.20344 4.21981 1.20344 4.2198 1.20344 4.2198C1.20344 4.2198 1.20344 4.21979 1.20344 4.21979C1.20344 4.21979 1.20344 4.21978 1.20344 4.21978C1.20344 4.21978 1.20344 4.21977 1.20344 4.21977C1.20344 4.21977 1.20344 4.21976 1.20344 4.21976C1.20344 4.21976 1.20344 4.21975 1.20344 4.21975C1.20344 4.21975 1.20344 4.21974 1.20344 4.21974C1.20344 4.21974 1.20344 4.21973 1.20344 4.21973C1.20344 4.21973 1.20344 4.21972 1.20344 4.21972C1.20344 4.21972 1.20344 4.21971 1.20344 4.21971C1.20344 4.21971 1.20344 4.2197 1.20344 4.2197C1.20344 4.2197 1.20344 4.2197 1.20344 4.21969C1.20344 4.21969 1.20344 4.21969 1.20344 4.21968C1.20344 4.21968 1.20344 4.21968 1.20344 4.21967C1.20344 4.21967 1.20344 4.21967 1.20344 4.21966C1.20344 4.21966 1.20344 4.21966 1.20344 4.21965C1.20344 4.21965 1.20344 4.21965 1.20344 4.21964C1.20344 4.21964 1.20344 4.21964 1.20344 4.21963C1.20344 4.21963 1.20344 4.21963 1.20344 4.21962C1.20344 4.21962 1.20344 4.21962 1.20344 4.21961C1.20344 4.21961 1.20344 4.21961 1.20344 4.2196C1.20344 4.2196 1.20344 4.2196 1.20344 4.21959C1.20344 4.21959 1.20344 4.21959 1.20344 4.21958C1.20344 4.21958 1.20344 4.21958 1.20344 4.21957C1.20344 4.21957 1.20344 4.21957 1.20344 4.21956C1.20344 4.21956 1.20344 4.21956 1.20344 4.21955C1.20344 4.21955 1.20344 4.21955 1.20344 4.21955C1.20344 4.21954 1.20344 4.21954 1.20344 4.21954C1.20344 4.21953 1.20344 4.21953 1.20344 4.21953C1.20344 4.21952 1.20344 4.21952 1.20344 4.21952C1.20344 4.21951 1.20344 4.21951 1.20344 4.21951C1.20344 4.2195 1.20344 4.2195 1.20344 4.2195C1.20344 4.21949 1.20344 4.21949 1.20344 4.21949C1.20344 4.21948 1.20344 4.21948 1.20344 4.21948C1.20344 4.21947 1.20344 4.21947 1.20344 4.21947C1.20344 4.21946 1.20344 4.21946 1.20344 4.21946C1.20344 4.21945 1.20344 4.21945 1.20344 4.21945C1.20344 4.21944 1.20344 4.21944 1.20344 4.21944C1.20344 4.21943 1.20344 4.21943 1.20344 4.21943C1.20344 4.21943 1.20344 4.21942 1.20344 4.21942C1.20344 4.21942 1.20344 4.21941 1.20344 4.21941C1.20344 4.21941 1.20344 4.2194 1.20344 4.2194C1.20344 4.2194 1.20344 4.21939 1.20344 4.21939C1.20344 4.21939 1.20344 4.21938 1.20344 4.21938C1.20344 4.21938 1.20344 4.21937 1.20344 4.21937C1.20344 4.21937 1.20344 4.21936 1.20344 4.21936C1.20344 4.21936 1.20344 4.21935 1.20344 4.21935C1.20344 4.21935 1.20344 4.21934 1.20344 4.21934C1.20344 4.21934 1.20344 4.21934 1.20344 4.21933C1.20344 4.21933 1.20344 4.21933 1.20344 4.21932C1.20344 4.21932 1.20344 4.21932 1.20344 4.21931C1.20344 4.21931 1.20344 4.21931 1.20344 4.2193C1.20344 4.2193 1.20344 4.2193 1.20344 4.21929C1.20344 4.21929 1.20344 4.21929 1.20344 4.21928C1.20344 4.21928 1.20344 4.21928 1.20344 4.21927C1.20344 4.21927 1.20344 4.21927 1.20344 4.21926C1.20344 4.21926 1.20344 4.21926 1.20344 4.21925C1.20344 4.21925 1.20344 4.21925 1.20344 4.21924C1.20344 4.21924 1.20344 4.21924 1.20344 4.21924C1.20344 4.21923 1.20344 4.21923 1.20344 4.21923C1.20344 4.21922 1.20344 4.21922 1.20344 4.21922C1.20344 4.21921 1.20344 4.21921 1.20344 4.21921C1.20344 4.2192 1.20344 4.2192 1.20344 4.2192C1.20344 4.21919 1.20344 4.21919 1.20344 4.21919C1.20344 4.21918 1.20344 4.21918 1.20344 4.21918C1.20344 4.21917 1.20344 4.21917 1.20344 4.21917C1.20344 4.21917 1.20344 4.21916 1.20344 4.21916C1.20344 4.21916 1.20344 4.21915 1.20344 4.21915C1.20344 4.21915 1.20344 4.21914 1.20344 4.21914C1.20344 4.21914 1.20344 4.21913 1.20344 4.21913C1.20344 4.21913 1.20344 4.21912 1.20344 4.21912C1.20344 4.21912 1.20344 4.21911 1.20344 4.21911C1.20344 4.21911 1.20344 4.2191 1.20344 4.2191C1.20344 4.2191 1.20344 4.21909 1.20344 4.21909C1.20344 4.21909 1.20344 4.21909 1.20344 4.21908C1.20344 4.21908 1.20344 4.21908 1.20344 4.21907C1.20344 4.21907 1.20344 4.21907 1.20344 4.21906C1.20344 4.21906 1.20344 4.21906 1.20344 4.21905C1.20344 4.21905 1.20344 4.21905 1.20344 4.21904C1.20344 4.21904 1.20344 4.21904 1.20344 4.21903C1.20344 4.21903 1.20344 4.21903 1.20344 4.21902C1.20344 4.21902 1.20344 4.21902 1.20344 4.21902C1.20344 4.21901 1.20344 4.21901 1.20344 4.21901C1.20344 4.219 1.20344 4.219 1.20344 4.219C1.20344 4.21899 1.20344 4.21899 1.20344 4.21899C1.20344 4.21898 1.20344 4.21898 1.20344 4.21898C1.20344 4.21897 1.20344 4.21897 1.20344 4.21897C1.20344 4.21896 1.20344 4.21896 1.20344 4.21896C1.20344 4.21895 1.20344 4.21895 1.20344 4.21895C1.20344 4.21895 1.20344 4.21894 1.20344 4.21894C1.20344 4.21894 1.20344 4.21893 1.20344 4.21893C1.20344 4.21893 1.20344 4.21892 1.20344 4.21892C1.20344 4.21892 1.20344 4.21891 1.20344 4.21891C1.20344 4.21891 1.20344 4.2189 1.20344 4.2189C1.20344 4.2189 1.20344 4.21889 1.20344 4.21889C1.20344 4.21889 1.20344 4.21888 1.20344 4.21888C1.20344 4.21888 1.20344 4.21888 1.20344 4.21887C1.20344 4.21887 1.20344 4.21887 1.20344 4.21886C1.20344 4.21886 1.20344 4.21886 1.20344 4.21885C1.20344 4.21885 1.20344 4.21885 1.20344 4.21884C1.20344 4.21884 1.20344 4.21884 1.20344 4.21883C1.20344 4.21883 1.20344 4.21883 1.20344 4.21882C1.20344 4.21882 1.20344 4.21882 1.20344 4.21882C1.20344 4.21881 1.20344 4.21881 1.20344 4.21881C1.20344 4.2188 1.20344 4.2188 1.20344 4.2188C1.20344 4.21879 1.20344 4.21879 1.20344 4.21879C1.20344 4.21878 1.20344 4.21878 1.20344 4.21878C1.20344 4.21877 1.20344 4.21877 1.20344 4.21877C1.20344 4.21877 1.20344 4.21876 1.20344 4.21876C1.20344 4.21876 1.20344 4.21875 1.20344 4.21875C1.20344 4.21875 1.20344 4.21874 1.20344 4.21874C1.20344 4.21874 1.20344 4.21873 1.20344 4.21873C1.20344 4.21873 1.20344 4.21872 1.20344 4.21872C1.20344 4.21872 1.20344 4.21871 1.20344 4.21871C1.20344 4.21871 1.20344 4.21871 1.20344 4.2187C1.20344 4.2187 1.20344 4.2187 1.20344 4.21869C1.20344 4.21869 1.20344 4.21869 1.20344 4.21868C1.20344 4.21868 1.20344 4.21868 1.20344 4.21867C1.20344 4.21867 1.20344 4.21867 1.20344 4.21866C1.20344 4.21866 1.20344 4.21866 1.20344 4.21865C1.20344 4.21865 1.20344 4.21865 1.20344 4.21865C1.20344 4.21864 1.20344 4.21864 1.20344 4.21864C1.20344 4.21863 1.20344 4.21863 1.20344 4.21863C1.20344 4.21862 1.20344 4.21862 1.20344 4.21862C1.20344 4.21861 1.20344 4.21861 1.20344 4.21861C1.20344 4.2186 1.20344 4.2186 1.20344 4.2186C1.20344 4.2186 1.20344 4.21859 1.20344 4.21859C1.20344 4.21859 1.20344 4.21858 1.20344 4.21858C1.20344 4.21858 1.20344 4.21857 1.20344 4.21857C1.20344 4.21857 1.20344 4.21856 1.20344 4.21856C1.20344 4.21856 1.20344 4.21855 1.20344 4.21855C1.20344 4.21855 1.20344 4.21854 1.20344 4.21854C1.20344 4.21854 1.20344 4.21854 1.20344 4.21853C1.20344 4.21853 1.20344 4.21853 1.20344 4.21852C1.20344 4.21852 1.20344 4.21852 1.20344 4.21851C1.20344 4.21851 1.20344 4.21851 1.20344 4.2185C1.20344 4.2185 1.20344 4.2185 1.20344 4.21849C1.20344 4.21849 1.20344 4.21849 1.20344 4.21849C1.20344 4.21848 1.20344 4.21848 1.20344 4.21848C1.20344 4.21847 1.20344 4.21847 1.20344 4.21847C1.20344 4.21846 1.20344 4.21846 1.20344 4.21846C1.20344 4.21845 1.20344 4.21845 1.20344 4.21845C1.20344 4.21845 1.20344 4.21844 1.20344 4.21844C1.20344 4.21844 1.20344 4.21843 1.20344 4.21843C1.20344 4.21843 1.20344 4.21842 1.20344 4.21842C1.20344 4.21842 1.20344 4.21841 1.20344 4.21841C1.20344 4.21841 1.20344 4.2184 1.20344 4.2184C1.20344 4.2184 1.20344 4.21839 1.20344 4.21839C1.20344 4.21839 1.20344 4.21839 1.20344 4.21838C1.20344 4.21838 1.20344 4.21838 1.20344 4.21837C1.20344 4.21837 1.20344 4.21837 1.20344 4.21836C1.20344 4.21836 1.20344 4.21836 1.20344 4.21835C1.20344 4.21835 1.20344 4.21835 1.20344 4.21835C1.20344 4.21834 1.20344 4.21834 1.20344 4.21834C1.20344 4.21833 1.20344 4.21833 1.20344 4.21833C1.20344 4.21832 1.20344 4.21832 1.20344 4.21832C1.20344 4.21831 1.20344 4.21831 1.20344 4.21831C1.20344 4.2183 1.20344 4.2183 1.20344 4.2183C1.20344 4.2183 1.20344 4.21829 1.20344 4.21829C1.20344 4.21829 1.20344 4.21828 1.20344 4.21828C1.20344 4.21828 1.20344 4.21827 1.20344 4.21827C1.20344 4.21827 1.20344 4.21826 1.20344 4.21826C1.20344 4.21826 1.20344 4.21826 1.20344 4.21825C1.20344 4.21825 1.20344 4.21825 1.20344 4.21824C1.20344 4.21824 1.20344 4.21824 1.20344 4.21823C1.20344 4.21823 1.20344 4.21823 1.20344 4.21822C1.20344 4.21822 1.20344 4.21822 1.20344 4.21821C1.20344 4.21821 1.20344 4.21821 1.20344 4.21821C1.20344 4.2182 1.20344 4.2182 1.20344 4.2182C1.20344 4.21819 1.20344 4.21819 1.20344 4.21819C1.20344 4.21818 1.20344 4.21818 1.20344 4.21818C1.20344 4.21817 1.20344 4.21817 1.20344 4.21817C1.20344 4.21816 1.20344 4.21816 1.20344 4.21816C1.20344 4.21816 1.20344 4.21815 1.20344 4.21815C1.20344 4.21815 1.20344 4.21814 1.20344 4.21814C1.20344 4.21814 1.20344 4.21813 1.20344 4.21813C1.20344 4.21813 1.20344 4.21812 1.20344 4.21812C1.20344 4.21812 1.20344 4.21812 1.20344 4.21811C1.20344 4.21811 1.20344 4.21811 1.20344 4.2181C1.20344 4.2181 1.20344 4.2181 1.20344 4.21809C1.20344 4.21809 1.20344 4.21809 1.20344 4.21808C1.20344 4.21808 1.20344 4.21808 1.20344 4.21808C1.20344 4.21807 1.20344 4.21807 1.20344 4.21807C1.20344 4.21806 1.20344 4.21806 1.20344 4.21806C1.20344 4.21805 1.20344 4.21805 1.20344 4.21805C1.20344 4.21804 1.20344 4.21804 1.20344 4.21804C1.20344 4.21803 1.20344 4.21803 1.20344 4.21803C1.20344 4.21803 1.20344 4.21802 1.20344 4.21802C1.20344 4.21802 1.20344 4.21801 1.20344 4.21801C1.20344 4.21801 1.20344 4.218 1.20344 4.218C1.20344 4.218 1.20344 4.21799 1.20344 4.21799C1.20344 4.21799 1.20344 4.21799 1.20344 4.21798C1.20344 4.21798 1.20344 4.21798 1.20344 4.21797C1.20344 4.21797 1.20344 4.21797 1.20344 4.21796C1.20344 4.21796 1.20344 4.21796 1.20344 4.21795C1.20344 4.21795 1.20344 4.21795 1.20344 4.21795C1.20344 4.21794 1.20344 4.21794 1.20344 4.21794C1.20344 4.21793 1.20344 4.21793 1.20344 4.21793C1.20344 4.21792 1.20344 4.21792 1.20344 4.21792C1.20344 4.21791 1.20344 4.21791 1.20344 4.21791C1.20344 4.21791 1.20344 4.2179 1.20344 4.2179C1.20344 4.2179 1.20344 4.21789 1.20344 4.21789C1.20344 4.21789 1.20344 4.21788 1.20344 4.21788C1.20344 4.21788 1.20344 4.21787 1.20344 4.21787C1.20344 4.21787 1.20344 4.21787 1.20344 4.21786C1.20344 4.21786 1.20344 4.21786 1.20344 4.21785C1.20344 4.21785 1.20344 4.21785 1.20344 4.21784C1.20344 4.21784 1.20344 4.21784 1.20344 4.21783C1.20344 4.21783 1.20344 4.21783 1.20344 4.21783C1.20344 4.21782 1.20344 4.21782 1.20344 4.21782C1.20344 4.21781 1.20344 4.21781 1.20344 4.21781C1.20344 4.2178 1.20344 4.2178 1.20344 4.2178C1.20344 4.21779 1.20344 4.21779 1.20344 4.21779C1.20344 4.21779 1.20344 4.21778 1.20344 4.21778C1.20344 4.21778 1.20344 4.21777 1.20344 4.21777C1.20344 4.21777 1.20344 4.21776 1.20344 4.21776C1.20344 4.21776 1.20344 4.21775 1.20344 4.21775C1.20344 4.21775 1.20344 4.21775 1.20344 4.21774C1.20344 4.21774 1.20344 4.21774 1.20344 4.21773C1.20344 4.21773 1.20344 4.21773 1.20344 4.21772C1.20344 4.21772 1.20344 4.21772 1.20344 4.21771C1.20344 4.21771 1.20344 4.21771 1.20344 4.21771C1.20344 4.2177 1.20344 4.2177 1.20344 4.2177C1.20344 4.21769 1.20344 4.21769 1.20344 4.21769C1.20344 4.21768 1.20344 4.21768 1.20344 4.21768C1.20344 4.21767 1.20344 4.21767 1.20344 4.21767C1.20344 4.21767 1.20344 4.21766 1.20344 4.21766C1.20344 4.21766 1.20344 4.21765 1.20344 4.21765C1.20344 4.21765 1.20344 4.21764 1.20344 4.21764C1.20344 4.21764 1.20344 4.21763 1.20344 4.21763C1.20344 4.21763 1.20344 4.21763 1.20344 4.21762C1.20344 4.21762 1.20344 4.21762 1.20344 4.21761C1.20344 4.21761 1.20344 4.21761 1.20344 4.2176C1.20344 4.2176 1.20344 4.2176 1.20344 4.21759C1.20344 4.21759 1.20344 4.21759 1.20344 4.21759C1.20344 4.21758 1.20344 4.21758 1.20344 4.21758C1.20344 4.21757 1.20344 4.21757 1.20344 4.21757C1.20344 4.21756 1.20344 4.21756 1.20344 4.21756C1.20344 4.21755 1.20344 4.21755 1.20344 4.21755C1.20344 4.21755 1.20344 4.21754 1.20344 4.21754C1.20344 4.21754 1.20344 4.21753 1.20344 4.21753C1.20344 4.21753 1.20344 4.21752 1.20344 4.21752C1.20344 4.21752 1.20344 4.21751 1.20344 4.21751C1.20344 4.21751 1.20344 4.21751 1.20344 4.2175C1.20344 4.2175 1.20344 4.2175 1.20344 4.21749C1.20344 4.21749 1.20344 4.21749 1.20344 4.21748C1.20344 4.21748 1.20344 4.21748 1.20344 4.21747C1.20344 4.21747 1.20344 4.21747 1.20344 4.21747C1.20344 4.21746 1.20344 4.21746 1.20344 4.21746C1.20344 4.21745 1.20344 4.21745 1.20344 4.21745C1.20344 4.21744 1.20344 4.21744 1.20344 4.21744C1.20344 4.21744 1.20344 4.21743 1.20344 4.21743C1.20344 4.21743 1.20344 4.21742 1.20344 4.21742C1.20344 4.21742 1.20344 4.21741 1.20344 4.21741C1.20344 4.21741 1.20344 4.2174 1.20344 4.2174C1.20344 4.2174 1.20344 4.2174 1.20344 4.21739C1.20344 4.21739 1.20344 4.21739 1.20344 4.21738C1.20344 4.21738 1.20344 4.21738 1.20344 4.21737C1.20344 4.21737 1.20344 4.21737 1.20344 4.21736C1.20344 4.21736 1.20344 4.21736 1.20344 4.21736C1.20344 4.21735 1.20344 4.21735 1.20344 4.21735C1.20344 4.21734 1.20344 4.21734 1.20344 4.21734C1.20344 4.21733 1.20344 4.21733 1.20344 4.21733C1.20344 4.21732 1.20344 4.21732 1.20344 4.21732C1.20344 4.21732 1.20344 4.21731 1.20344 4.21731C1.20344 4.21731 1.20344 4.2173 1.20344 4.2173C1.20344 4.2173 1.20344 4.21729 1.20344 4.21729C1.20344 4.21729 1.20344 4.21729 1.20344 4.21728C1.20344 4.21728 1.20344 4.21728 1.20344 4.21727C1.20344 4.21727 1.20344 4.21727 1.20344 4.21726C1.20344 4.21726 1.20344 4.21726 1.20344 4.21725C1.20344 4.21725 1.20344 4.21725 1.20344 4.21725C1.20344 4.21724 1.20344 4.21724 1.20344 4.21724C1.20344 4.21723 1.20344 4.21723 1.20344 4.21723C1.20344 4.21722 1.20344 4.21722 1.20344 4.21722C1.20344 4.21721 1.20344 4.21721 1.20344 4.21721C1.20344 4.21721 1.20344 4.2172 1.20344 4.2172C1.20344 4.2172 1.20344 4.21719 1.20344 4.21719C1.20344 4.21719 1.20344 4.21718 1.20344 4.21718C1.20344 4.21718 1.20344 4.21718 1.20344 4.21717C1.20344 4.21717 1.20344 4.21717 1.20344 4.21716C1.20344 4.21716 1.20344 4.21716 1.20344 4.21715C1.20344 4.21715 1.20344 4.21715 1.20344 4.21714C1.20344 4.21714 1.20344 4.21714 1.20344 4.21714C1.20344 4.21713 1.20344 4.21713 1.20344 4.21713C1.20344 4.21712 1.20344 4.21712 1.20344 4.21712C1.20344 4.21711 1.20344 4.21711 1.20344 4.21711C1.20344 4.2171 1.20344 4.2171 1.20344 4.2171C1.20344 4.2171 1.20344 4.21709 1.20344 4.21709C1.20344 4.21709 1.20344 4.21708 1.20344 4.21708C1.20344 4.21708 1.20344 4.21707 1.20344 4.21707C1.20344 4.21707 1.20344 4.21707 1.20344 4.21706C1.20344 4.21706 1.20344 4.21706 1.20344 4.21705C1.20344 4.21705 1.20344 4.21705 1.20344 4.21704C1.20344 4.21704 1.20344 4.21704 1.20344 4.21703C1.20344 4.21703 1.20344 4.21703 1.20344 4.21703C1.20344 4.21702 1.20344 4.21702 1.20344 4.21702C1.20344 4.21701 1.20344 4.21701 1.20344 4.21701C1.20344 4.217 1.20344 4.217 1.20344 4.217C1.20344 4.217 1.20344 4.21699 1.20344 4.21699C1.20344 4.21699 1.20344 4.21698 1.20344 4.21698C1.20344 4.21698 1.20344 4.21697 1.20344 4.21697C1.20344 4.21697 1.20344 4.21696 1.20344 4.21696C1.20344 4.21696 1.20344 4.21696 1.20344 4.21695C1.20344 4.21695 1.20344 4.21695 1.20344 4.21694C1.20344 4.21694 1.20344 4.21694 1.20344 4.21693C1.20344 4.21693 1.20344 4.21693 1.20344 4.21692C1.20344 4.21692 1.20344 4.21692 1.20344 4.21692C1.20344 4.21691 1.20344 4.21691 1.20344 4.21691C1.20344 4.2169 1.20344 4.2169 1.20344 4.2169C1.20344 4.21689 1.20344 4.21689 1.20344 4.21689C1.20344 4.21689 1.20344 4.21688 1.20344 4.21688C1.20344 4.21688 1.20344 4.21687 1.20344 4.21687C1.20344 4.21687 1.20344 4.21686 1.20344 4.21686C1.20344 4.21686 1.20344 4.21685 1.20344 4.21685C1.20344 4.21685 1.20344 4.21685 1.20344 4.21684H0.803437ZM0.803437 4.22184C0.803437 4.5296 1.05303 4.77882 1.3603 4.77882V4.37882C1.27383 4.37882 1.20344 4.30857 1.20344 4.22184H0.803437ZM1.3603 4.77882C1.66757 4.77882 1.91717 4.5296 1.91717 4.22184H1.51717C1.51717 4.30857 1.44677 4.37882 1.3603 4.37882V4.77882ZM1.91717 4.22184C1.91717 4.22184 1.91717 4.22184 1.91717 4.22183C1.91717 4.22183 1.91717 4.22183 1.91717 4.22182C1.91717 4.22182 1.91717 4.22181 1.91717 4.22181C1.91717 4.22181 1.91717 4.2218 1.91717 4.2218C1.91717 4.2218 1.91717 4.22179 1.91717 4.22179C1.91717 4.22179 1.91717 4.22178 1.91717 4.22178C1.91717 4.22177 1.91717 4.22177 1.91717 4.22177C1.91717 4.22176 1.91717 4.22176 1.91717 4.22176C1.91717 4.22175 1.91717 4.22175 1.91717 4.22175C1.91717 4.22174 1.91717 4.22174 1.91717 4.22173C1.91717 4.22173 1.91717 4.22173 1.91717 4.22172C1.91717 4.22172 1.91717 4.22172 1.91717 4.22171C1.91717 4.22171 1.91717 4.2217 1.91717 4.2217C1.91717 4.2217 1.91717 4.22169 1.91717 4.22169C1.91717 4.22169 1.91717 4.22168 1.91717 4.22168C1.91717 4.22168 1.91717 4.22167 1.91717 4.22167C1.91717 4.22167 1.91717 4.22166 1.91717 4.22166C1.91717 4.22165 1.91717 4.22165 1.91717 4.22165C1.91717 4.22164 1.91717 4.22164 1.91717 4.22164C1.91717 4.22163 1.91717 4.22163 1.91717 4.22163C1.91717 4.22162 1.91717 4.22162 1.91717 4.22161C1.91717 4.22161 1.91717 4.22161 1.91717 4.2216C1.91717 4.2216 1.91717 4.2216 1.91717 4.22159C1.91717 4.22159 1.91717 4.22159 1.91717 4.22158C1.91717 4.22158 1.91717 4.22157 1.91717 4.22157C1.91717 4.22157 1.91717 4.22156 1.91717 4.22156C1.91717 4.22156 1.91717 4.22155 1.91717 4.22155C1.91717 4.22155 1.91717 4.22154 1.91717 4.22154C1.91717 4.22154 1.91717 4.22153 1.91717 4.22153C1.91717 4.22152 1.91717 4.22152 1.91717 4.22152C1.91717 4.22151 1.91717 4.22151 1.91717 4.22151C1.91717 4.2215 1.91717 4.2215 1.91717 4.2215C1.91717 4.22149 1.91717 4.22149 1.91717 4.22148C1.91717 4.22148 1.91717 4.22148 1.91717 4.22147C1.91717 4.22147 1.91717 4.22147 1.91717 4.22146C1.91717 4.22146 1.91717 4.22146 1.91717 4.22145C1.91717 4.22145 1.91717 4.22145 1.91717 4.22144C1.91717 4.22144 1.91717 4.22143 1.91717 4.22143C1.91717 4.22143 1.91717 4.22142 1.91717 4.22142C1.91717 4.22142 1.91717 4.22141 1.91717 4.22141C1.91717 4.22141 1.91717 4.2214 1.91717 4.2214C1.91717 4.2214 1.91717 4.22139 1.91717 4.22139C1.91717 4.22138 1.91717 4.22138 1.91717 4.22138C1.91717 4.22137 1.91717 4.22137 1.91717 4.22137C1.91717 4.22136 1.91717 4.22136 1.91717 4.22136C1.91717 4.22135 1.91717 4.22135 1.91717 4.22135C1.91717 4.22134 1.91717 4.22134 1.91717 4.22133C1.91717 4.22133 1.91717 4.22133 1.91717 4.22132C1.91717 4.22132 1.91717 4.22132 1.91717 4.22131C1.91717 4.22131 1.91717 4.22131 1.91717 4.2213C1.91717 4.2213 1.91717 4.2213 1.91717 4.22129C1.91717 4.22129 1.91717 4.22128 1.91717 4.22128C1.91717 4.22128 1.91717 4.22127 1.91717 4.22127C1.91717 4.22127 1.91717 4.22126 1.91717 4.22126C1.91717 4.22126 1.91717 4.22125 1.91717 4.22125C1.91717 4.22125 1.91717 4.22124 1.91717 4.22124C1.91717 4.22124 1.91717 4.22123 1.91717 4.22123C1.91717 4.22122 1.91717 4.22122 1.91717 4.22122C1.91717 4.22121 1.91717 4.22121 1.91717 4.22121C1.91717 4.2212 1.91717 4.2212 1.91717 4.2212C1.91717 4.22119 1.91717 4.22119 1.91717 4.22119C1.91717 4.22118 1.91717 4.22118 1.91717 4.22117C1.91717 4.22117 1.91717 4.22117 1.91717 4.22116C1.91717 4.22116 1.91717 4.22116 1.91717 4.22115C1.91717 4.22115 1.91717 4.22115 1.91717 4.22114C1.91717 4.22114 1.91717 4.22114 1.91717 4.22113C1.91717 4.22113 1.91717 4.22113 1.91717 4.22112C1.91717 4.22112 1.91717 4.22112 1.91717 4.22111C1.91717 4.22111 1.91717 4.2211 1.91717 4.2211C1.91717 4.2211 1.91717 4.22109 1.91717 4.22109C1.91717 4.22109 1.91717 4.22108 1.91717 4.22108C1.91717 4.22108 1.91717 4.22107 1.91717 4.22107C1.91717 4.22107 1.91717 4.22106 1.91717 4.22106C1.91717 4.22106 1.91717 4.22105 1.91717 4.22105C1.91717 4.22104 1.91717 4.22104 1.91717 4.22104C1.91717 4.22103 1.91717 4.22103 1.91717 4.22103C1.91717 4.22102 1.91717 4.22102 1.91717 4.22102C1.91717 4.22101 1.91717 4.22101 1.91717 4.22101C1.91717 4.221 1.91717 4.221 1.91717 4.221C1.91717 4.22099 1.91717 4.22099 1.91717 4.22099C1.91717 4.22098 1.91717 4.22098 1.91717 4.22097C1.91717 4.22097 1.91717 4.22097 1.91717 4.22096C1.91717 4.22096 1.91717 4.22096 1.91717 4.22095C1.91717 4.22095 1.91717 4.22095 1.91717 4.22094C1.91717 4.22094 1.91717 4.22094 1.91717 4.22093C1.91717 4.22093 1.91717 4.22093 1.91717 4.22092C1.91717 4.22092 1.91717 4.22092 1.91717 4.22091C1.91717 4.22091 1.91717 4.2209 1.91717 4.2209C1.91717 4.2209 1.91717 4.22089 1.91717 4.22089C1.91717 4.22089 1.91717 4.22088 1.91717 4.22088C1.91717 4.22088 1.91717 4.22087 1.91717 4.22087C1.91717 4.22087 1.91717 4.22086 1.91717 4.22086C1.91717 4.22086 1.91717 4.22085 1.91717 4.22085C1.91717 4.22085 1.91717 4.22084 1.91717 4.22084C1.91717 4.22083 1.91717 4.22083 1.91717 4.22083C1.91717 4.22082 1.91717 4.22082 1.91717 4.22082C1.91717 4.22081 1.91717 4.22081 1.91717 4.22081C1.91717 4.2208 1.91717 4.2208 1.91717 4.2208C1.91717 4.22079 1.91717 4.22079 1.91717 4.22079C1.91717 4.22078 1.91717 4.22078 1.91717 4.22078C1.91717 4.22077 1.91717 4.22077 1.91717 4.22077C1.91717 4.22076 1.91717 4.22076 1.91717 4.22076C1.91717 4.22075 1.91717 4.22075 1.91717 4.22074C1.91717 4.22074 1.91717 4.22074 1.91717 4.22073C1.91717 4.22073 1.91717 4.22073 1.91717 4.22072C1.91717 4.22072 1.91717 4.22072 1.91717 4.22071C1.91717 4.22071 1.91717 4.22071 1.91717 4.2207C1.91717 4.2207 1.91717 4.2207 1.91717 4.22069C1.91717 4.22069 1.91717 4.22069 1.91717 4.22068C1.91717 4.22068 1.91717 4.22068 1.91717 4.22067C1.91717 4.22067 1.91717 4.22066 1.91717 4.22066C1.91717 4.22066 1.91717 4.22065 1.91717 4.22065C1.91717 4.22065 1.91717 4.22064 1.91717 4.22064C1.91717 4.22064 1.91717 4.22063 1.91717 4.22063C1.91717 4.22063 1.91717 4.22062 1.91717 4.22062C1.91717 4.22062 1.91717 4.22061 1.91717 4.22061C1.91717 4.22061 1.91717 4.2206 1.91717 4.2206C1.91717 4.2206 1.91717 4.22059 1.91717 4.22059C1.91717 4.22059 1.91717 4.22058 1.91717 4.22058C1.91717 4.22058 1.91717 4.22057 1.91717 4.22057C1.91717 4.22057 1.91717 4.22056 1.91717 4.22056C1.91717 4.22055 1.91717 4.22055 1.91717 4.22055C1.91717 4.22054 1.91717 4.22054 1.91717 4.22054C1.91717 4.22053 1.91717 4.22053 1.91717 4.22053C1.91717 4.22052 1.91717 4.22052 1.91717 4.22052C1.91717 4.22051 1.91717 4.22051 1.91717 4.22051C1.91717 4.2205 1.91717 4.2205 1.91717 4.2205C1.91717 4.22049 1.91717 4.22049 1.91717 4.22049C1.91717 4.22048 1.91717 4.22048 1.91717 4.22048C1.91717 4.22047 1.91717 4.22047 1.91717 4.22047C1.91717 4.22046 1.91717 4.22046 1.91717 4.22045C1.91717 4.22045 1.91717 4.22045 1.91717 4.22044C1.91717 4.22044 1.91717 4.22044 1.91717 4.22043C1.91717 4.22043 1.91717 4.22043 1.91717 4.22042C1.91717 4.22042 1.91717 4.22042 1.91717 4.22041C1.91717 4.22041 1.91717 4.22041 1.91717 4.2204C1.91717 4.2204 1.91717 4.2204 1.91717 4.22039C1.91717 4.22039 1.91717 4.22039 1.91717 4.22038C1.91717 4.22038 1.91717 4.22038 1.91717 4.22037C1.91717 4.22037 1.91717 4.22037 1.91717 4.22036C1.91717 4.22036 1.91717 4.22036 1.91717 4.22035C1.91717 4.22035 1.91717 4.22035 1.91717 4.22034C1.91717 4.22034 1.91717 4.22034 1.91717 4.22033C1.91717 4.22033 1.91717 4.22032 1.91717 4.22032C1.91717 4.22032 1.91717 4.22031 1.91717 4.22031C1.91717 4.22031 1.91717 4.2203 1.91717 4.2203C1.91717 4.2203 1.91717 4.22029 1.91717 4.22029C1.91717 4.22029 1.91717 4.22028 1.91717 4.22028C1.91717 4.22028 1.91717 4.22027 1.91717 4.22027C1.91717 4.22027 1.91717 4.22026 1.91717 4.22026C1.91717 4.22026 1.91717 4.22025 1.91717 4.22025C1.91717 4.22025 1.91717 4.22024 1.91717 4.22024C1.91717 4.22024 1.91717 4.22023 1.91717 4.22023C1.91717 4.22023 1.91717 4.22022 1.91717 4.22022C1.91717 4.22022 1.91717 4.22021 1.91717 4.22021C1.91717 4.22021 1.91717 4.2202 1.91717 4.2202C1.91717 4.2202 1.91717 4.22019 1.91717 4.22019C1.91717 4.22019 1.91717 4.22018 1.91717 4.22018C1.91717 4.22017 1.91717 4.22017 1.91717 4.22017C1.91717 4.22016 1.91717 4.22016 1.91717 4.22016C1.91717 4.22015 1.91717 4.22015 1.91717 4.22015C1.91717 4.22014 1.91717 4.22014 1.91717 4.22014C1.91717 4.22013 1.91717 4.22013 1.91717 4.22013C1.91717 4.22012 1.91717 4.22012 1.91717 4.22012C1.91717 4.22011 1.91717 4.22011 1.91717 4.22011C1.91717 4.2201 1.91717 4.2201 1.91717 4.2201C1.91717 4.22009 1.91717 4.22009 1.91717 4.22009C1.91717 4.22008 1.91717 4.22008 1.91717 4.22008C1.91717 4.22007 1.91717 4.22007 1.91717 4.22007C1.91717 4.22006 1.91717 4.22006 1.91717 4.22006C1.91717 4.22005 1.91717 4.22005 1.91717 4.22005C1.91717 4.22004 1.91717 4.22004 1.91717 4.22004C1.91717 4.22003 1.91717 4.22003 1.91717 4.22003C1.91717 4.22002 1.91717 4.22002 1.91717 4.22002C1.91717 4.22001 1.91717 4.22001 1.91717 4.22001C1.91717 4.22 1.91717 4.22 1.91717 4.22C1.91717 4.21999 1.91717 4.21999 1.91717 4.21998C1.91717 4.21998 1.91717 4.21998 1.91717 4.21997C1.91717 4.21997 1.91717 4.21997 1.91717 4.21996C1.91717 4.21996 1.91717 4.21996 1.91717 4.21995C1.91717 4.21995 1.91717 4.21995 1.91717 4.21994C1.91717 4.21994 1.91717 4.21994 1.91717 4.21993C1.91717 4.21993 1.91717 4.21993 1.91717 4.21992C1.91717 4.21992 1.91717 4.21992 1.91717 4.21991C1.91717 4.21991 1.91717 4.21991 1.91717 4.2199C1.91717 4.2199 1.91717 4.2199 1.91717 4.21989C1.91717 4.21989 1.91717 4.21989 1.91717 4.21988C1.91717 4.21988 1.91717 4.21988 1.91717 4.21987C1.91717 4.21987 1.91717 4.21987 1.91717 4.21986C1.91717 4.21986 1.91717 4.21986 1.91717 4.21985C1.91717 4.21985 1.91717 4.21985 1.91717 4.21984C1.91717 4.21984 1.91717 4.21984 1.91717 4.21983C1.91717 4.21983 1.91717 4.21983 1.91717 4.21982C1.91717 4.21982 1.91717 4.21982 1.91717 4.21981C1.91717 4.21981 1.91717 4.21981 1.91717 4.2198C1.91717 4.2198 1.91717 4.2198 1.91717 4.21979C1.91717 4.21979 1.91717 4.21979 1.91717 4.21978C1.91717 4.21978 1.91717 4.21978 1.91717 4.21977C1.91717 4.21977 1.91717 4.21977 1.91717 4.21976C1.91717 4.21976 1.91717 4.21975 1.91717 4.21975C1.91717 4.21975 1.91717 4.21974 1.91717 4.21974C1.91717 4.21974 1.91717 4.21973 1.91717 4.21973C1.91717 4.21973 1.91717 4.21972 1.91717 4.21972C1.91717 4.21972 1.91717 4.21971 1.91717 4.21971C1.91717 4.21971 1.91717 4.2197 1.91717 4.2197C1.91717 4.2197 1.91717 4.21969 1.91717 4.21969C1.91717 4.21969 1.91717 4.21968 1.91717 4.21968C1.91717 4.21968 1.91717 4.21967 1.91717 4.21967C1.91717 4.21967 1.91717 4.21966 1.91717 4.21966C1.91717 4.21966 1.91717 4.21965 1.91717 4.21965C1.91717 4.21965 1.91717 4.21964 1.91717 4.21964C1.91717 4.21964 1.91717 4.21963 1.91717 4.21963C1.91717 4.21963 1.91717 4.21962 1.91717 4.21962C1.91717 4.21962 1.91717 4.21961 1.91717 4.21961C1.91717 4.21961 1.91717 4.2196 1.91717 4.2196C1.91717 4.2196 1.91717 4.21959 1.91717 4.21959C1.91717 4.21959 1.91717 4.21958 1.91717 4.21958C1.91717 4.21958 1.91717 4.21957 1.91717 4.21957C1.91717 4.21957 1.91717 4.21956 1.91717 4.21956C1.91717 4.21956 1.91717 4.21955 1.91717 4.21955C1.91717 4.21955 1.91717 4.21954 1.91717 4.21954C1.91717 4.21954 1.91717 4.21953 1.91717 4.21953C1.91717 4.21953 1.91717 4.21952 1.91717 4.21952C1.91717 4.21952 1.91717 4.21951 1.91717 4.21951C1.91717 4.21951 1.91717 4.2195 1.91717 4.2195C1.91717 4.2195 1.91717 4.21949 1.91717 4.21949C1.91717 4.21949 1.91717 4.21948 1.91717 4.21948C1.91717 4.21948 1.91717 4.21947 1.91717 4.21947C1.91717 4.21947 1.91717 4.21946 1.91717 4.21946C1.91717 4.21946 1.91717 4.21945 1.91717 4.21945C1.91717 4.21945 1.91717 4.21944 1.91717 4.21944C1.91717 4.21944 1.91717 4.21943 1.91717 4.21943C1.91717 4.21943 1.91717 4.21942 1.91717 4.21942C1.91717 4.21942 1.91717 4.21941 1.91717 4.21941C1.91717 4.2194 1.91717 4.2194 1.91717 4.2194C1.91717 4.21939 1.91717 4.21939 1.91717 4.21939C1.91717 4.21938 1.91717 4.21938 1.91717 4.21938C1.91717 4.21937 1.91717 4.21937 1.91717 4.21937C1.91717 4.21936 1.91717 4.21936 1.91717 4.21936C1.91717 4.21935 1.91717 4.21935 1.91717 4.21935C1.91717 4.21934 1.91717 4.21934 1.91717 4.21934C1.91717 4.21933 1.91717 4.21933 1.91717 4.21933C1.91717 4.21932 1.91717 4.21932 1.91717 4.21932C1.91717 4.21931 1.91717 4.21931 1.91717 4.21931C1.91717 4.2193 1.91717 4.2193 1.91717 4.2193C1.91717 4.21929 1.91717 4.21929 1.91717 4.21929C1.91717 4.21928 1.91717 4.21928 1.91717 4.21928C1.91717 4.21927 1.91717 4.21927 1.91717 4.21927C1.91717 4.21926 1.91717 4.21926 1.91717 4.21926C1.91717 4.21925 1.91717 4.21925 1.91717 4.21925C1.91717 4.21924 1.91717 4.21924 1.91717 4.21924C1.91717 4.21923 1.91717 4.21923 1.91717 4.21923C1.91717 4.21922 1.91717 4.21922 1.91717 4.21922C1.91717 4.21921 1.91717 4.21921 1.91717 4.21921C1.91717 4.2192 1.91717 4.2192 1.91717 4.2192C1.91717 4.21919 1.91717 4.21919 1.91717 4.21919C1.91717 4.21918 1.91717 4.21918 1.91717 4.21918C1.91717 4.21917 1.91717 4.21917 1.91717 4.21917C1.91717 4.21916 1.91717 4.21916 1.91717 4.21916C1.91717 4.21915 1.91717 4.21915 1.91717 4.21915C1.91717 4.21914 1.91717 4.21914 1.91717 4.21914C1.91717 4.21913 1.91717 4.21913 1.91717 4.21913C1.91717 4.21912 1.91717 4.21912 1.91717 4.21912C1.91717 4.21911 1.91717 4.21911 1.91717 4.21911C1.91717 4.2191 1.91717 4.2191 1.91717 4.2191C1.91717 4.21909 1.91717 4.21909 1.91717 4.21909C1.91717 4.21908 1.91717 4.21908 1.91717 4.21908C1.91717 4.21907 1.91717 4.21907 1.91717 4.21907C1.91717 4.21906 1.91717 4.21906 1.91717 4.21906C1.91717 4.21905 1.91717 4.21905 1.91717 4.21905C1.91717 4.21904 1.91717 4.21904 1.91717 4.21904C1.91717 4.21903 1.91717 4.21903 1.91717 4.21903C1.91717 4.21902 1.91717 4.21902 1.91717 4.21902C1.91717 4.21901 1.91717 4.21901 1.91717 4.21901C1.91717 4.219 1.91717 4.219 1.91717 4.219C1.91717 4.21899 1.91717 4.21899 1.91717 4.21899C1.91717 4.21898 1.91717 4.21898 1.91717 4.21898C1.91717 4.21897 1.91717 4.21897 1.91717 4.21897C1.91717 4.21896 1.91717 4.21896 1.91717 4.21896C1.91717 4.21895 1.91717 4.21895 1.91717 4.21894C1.91717 4.21894 1.91717 4.21894 1.91717 4.21893C1.91717 4.21893 1.91717 4.21893 1.91717 4.21892C1.91717 4.21892 1.91717 4.21892 1.91717 4.21891C1.91717 4.21891 1.91717 4.21891 1.91717 4.2189C1.91717 4.2189 1.91717 4.2189 1.91717 4.21889C1.91717 4.21889 1.91717 4.21889 1.91717 4.21888C1.91717 4.21888 1.91717 4.21888 1.91717 4.21887C1.91717 4.21887 1.91717 4.21887 1.91717 4.21886C1.91717 4.21886 1.91717 4.21886 1.91717 4.21885C1.91717 4.21885 1.91717 4.21885 1.91717 4.21884C1.91717 4.21884 1.91717 4.21884 1.91717 4.21883C1.91717 4.21883 1.91717 4.21883 1.91717 4.21882C1.91717 4.21882 1.91717 4.21882 1.91717 4.21881C1.91717 4.21881 1.91717 4.21881 1.91717 4.2188C1.91717 4.2188 1.91717 4.2188 1.91717 4.21879C1.91717 4.21879 1.91717 4.21879 1.91717 4.21878C1.91717 4.21878 1.91717 4.21878 1.91717 4.21877C1.91717 4.21877 1.91717 4.21877 1.91717 4.21876C1.91717 4.21876 1.91717 4.21876 1.91717 4.21875C1.91717 4.21875 1.91717 4.21875 1.91717 4.21874C1.91717 4.21874 1.91717 4.21874 1.91717 4.21873C1.91717 4.21873 1.91717 4.21873 1.91717 4.21872C1.91717 4.21872 1.91717 4.21872 1.91717 4.21871C1.91717 4.21871 1.91717 4.21871 1.91717 4.2187C1.91717 4.2187 1.91717 4.2187 1.91717 4.21869C1.91717 4.21869 1.91717 4.21869 1.91717 4.21868C1.91717 4.21868 1.91717 4.21868 1.91717 4.21867C1.91717 4.21867 1.91717 4.21867 1.91717 4.21866C1.91717 4.21866 1.91717 4.21866 1.91717 4.21865C1.91717 4.21865 1.91717 4.21865 1.91717 4.21864C1.91717 4.21864 1.91717 4.21864 1.91717 4.21863C1.91717 4.21863 1.91717 4.21863 1.91717 4.21862C1.91717 4.21862 1.91717 4.21862 1.91717 4.21861C1.91717 4.21861 1.91717 4.2186 1.91717 4.2186C1.91717 4.2186 1.91717 4.21859 1.91717 4.21859C1.91717 4.21859 1.91717 4.21858 1.91717 4.21858C1.91717 4.21858 1.91717 4.21857 1.91717 4.21857C1.91717 4.21857 1.91717 4.21856 1.91717 4.21856C1.91717 4.21856 1.91717 4.21855 1.91717 4.21855C1.91717 4.21855 1.91717 4.21854 1.91717 4.21854C1.91717 4.21854 1.91717 4.21853 1.91717 4.21853C1.91717 4.21853 1.91717 4.21852 1.91717 4.21852C1.91717 4.21852 1.91717 4.21851 1.91717 4.21851C1.91717 4.21851 1.91717 4.2185 1.91717 4.2185C1.91717 4.2185 1.91717 4.21849 1.91717 4.21849C1.91717 4.21849 1.91717 4.21848 1.91717 4.21848C1.91717 4.21848 1.91717 4.21847 1.91717 4.21847C1.91717 4.21847 1.91717 4.21846 1.91717 4.21846C1.91717 4.21846 1.91717 4.21845 1.91717 4.21845C1.91717 4.21845 1.91717 4.21844 1.91717 4.21844C1.91717 4.21844 1.91717 4.21843 1.91717 4.21843C1.91717 4.21843 1.91717 4.21842 1.91717 4.21842C1.91717 4.21842 1.91717 4.21841 1.91717 4.21841C1.91717 4.21841 1.91717 4.2184 1.91717 4.2184C1.91717 4.2184 1.91717 4.21839 1.91717 4.21839C1.91717 4.21839 1.91717 4.21838 1.91717 4.21838C1.91717 4.21837 1.91717 4.21837 1.91717 4.21837C1.91717 4.21836 1.91717 4.21836 1.91717 4.21836C1.91717 4.21835 1.91717 4.21835 1.91717 4.21835C1.91717 4.21834 1.91717 4.21834 1.91717 4.21834C1.91717 4.21833 1.91717 4.21833 1.91717 4.21833C1.91717 4.21832 1.91717 4.21832 1.91717 4.21832C1.91717 4.21831 1.91717 4.21831 1.91717 4.21831C1.91717 4.2183 1.91717 4.2183 1.91717 4.2183C1.91717 4.21829 1.91717 4.21829 1.91717 4.21829C1.91717 4.21828 1.91717 4.21828 1.91717 4.21828C1.91717 4.21827 1.91717 4.21827 1.91717 4.21827C1.91717 4.21826 1.91717 4.21826 1.91717 4.21826C1.91717 4.21825 1.91717 4.21825 1.91717 4.21825C1.91717 4.21824 1.91717 4.21824 1.91717 4.21824C1.91717 4.21823 1.91717 4.21823 1.91717 4.21823C1.91717 4.21822 1.91717 4.21822 1.91717 4.21822C1.91717 4.21821 1.91717 4.21821 1.91717 4.21821C1.91717 4.2182 1.91717 4.2182 1.91717 4.21819C1.91717 4.21819 1.91717 4.21819 1.91717 4.21818C1.91717 4.21818 1.91717 4.21818 1.91717 4.21817C1.91717 4.21817 1.91717 4.21817 1.91717 4.21816C1.91717 4.21816 1.91717 4.21816 1.91717 4.21815C1.91717 4.21815 1.91717 4.21815 1.91717 4.21814C1.91717 4.21814 1.91717 4.21814 1.91717 4.21813C1.91717 4.21813 1.91717 4.21813 1.91717 4.21812C1.91717 4.21812 1.91717 4.21812 1.91717 4.21811C1.91717 4.21811 1.91717 4.21811 1.91717 4.2181C1.91717 4.2181 1.91717 4.2181 1.91717 4.21809C1.91717 4.21809 1.91717 4.21809 1.91717 4.21808C1.91717 4.21808 1.91717 4.21808 1.91717 4.21807C1.91717 4.21807 1.91717 4.21807 1.91717 4.21806C1.91717 4.21806 1.91717 4.21806 1.91717 4.21805C1.91717 4.21805 1.91717 4.21804 1.91717 4.21804C1.91717 4.21804 1.91717 4.21803 1.91717 4.21803C1.91717 4.21803 1.91717 4.21802 1.91717 4.21802C1.91717 4.21802 1.91717 4.21801 1.91717 4.21801C1.91717 4.21801 1.91717 4.218 1.91717 4.218C1.91717 4.218 1.91717 4.21799 1.91717 4.21799C1.91717 4.21799 1.91717 4.21798 1.91717 4.21798C1.91717 4.21798 1.91717 4.21797 1.91717 4.21797C1.91717 4.21797 1.91717 4.21796 1.91717 4.21796C1.91717 4.21796 1.91717 4.21795 1.91717 4.21795C1.91717 4.21795 1.91717 4.21794 1.91717 4.21794C1.91717 4.21794 1.91717 4.21793 1.91717 4.21793C1.91717 4.21793 1.91717 4.21792 1.91717 4.21792C1.91717 4.21791 1.91717 4.21791 1.91717 4.21791C1.91717 4.2179 1.91717 4.2179 1.91717 4.2179C1.91717 4.21789 1.91717 4.21789 1.91717 4.21789C1.91717 4.21788 1.91717 4.21788 1.91717 4.21788C1.91717 4.21787 1.91717 4.21787 1.91717 4.21787C1.91717 4.21786 1.91717 4.21786 1.91717 4.21786C1.91717 4.21785 1.91717 4.21785 1.91717 4.21785C1.91717 4.21784 1.91717 4.21784 1.91717 4.21784C1.91717 4.21783 1.91717 4.21783 1.91717 4.21783C1.91717 4.21782 1.91717 4.21782 1.91717 4.21782C1.91717 4.21781 1.91717 4.21781 1.91717 4.2178C1.91717 4.2178 1.91717 4.2178 1.91717 4.21779C1.91717 4.21779 1.91717 4.21779 1.91717 4.21778C1.91717 4.21778 1.91717 4.21778 1.91717 4.21777C1.91717 4.21777 1.91717 4.21777 1.91717 4.21776C1.91717 4.21776 1.91717 4.21776 1.91717 4.21775C1.91717 4.21775 1.91717 4.21775 1.91717 4.21774C1.91717 4.21774 1.91717 4.21774 1.91717 4.21773C1.91717 4.21773 1.91717 4.21773 1.91717 4.21772C1.91717 4.21772 1.91717 4.21772 1.91717 4.21771C1.91717 4.21771 1.91717 4.2177 1.91717 4.2177C1.91717 4.2177 1.91717 4.21769 1.91717 4.21769C1.91717 4.21769 1.91717 4.21768 1.91717 4.21768C1.91717 4.21768 1.91717 4.21767 1.91717 4.21767C1.91717 4.21767 1.91717 4.21766 1.91717 4.21766C1.91717 4.21766 1.91717 4.21765 1.91717 4.21765C1.91717 4.21765 1.91717 4.21764 1.91717 4.21764C1.91717 4.21764 1.91717 4.21763 1.91717 4.21763C1.91717 4.21763 1.91717 4.21762 1.91717 4.21762C1.91717 4.21761 1.91717 4.21761 1.91717 4.21761C1.91717 4.2176 1.91717 4.2176 1.91717 4.2176C1.91717 4.21759 1.91717 4.21759 1.91717 4.21759C1.91717 4.21758 1.91717 4.21758 1.91717 4.21758C1.91717 4.21757 1.91717 4.21757 1.91717 4.21757C1.91717 4.21756 1.91717 4.21756 1.91717 4.21756C1.91717 4.21755 1.91717 4.21755 1.91717 4.21755C1.91717 4.21754 1.91717 4.21754 1.91717 4.21754C1.91717 4.21753 1.91717 4.21753 1.91717 4.21752C1.91717 4.21752 1.91717 4.21752 1.91717 4.21751C1.91717 4.21751 1.91717 4.21751 1.91717 4.2175C1.91717 4.2175 1.91717 4.2175 1.91717 4.21749C1.91717 4.21749 1.91717 4.21749 1.91717 4.21748C1.91717 4.21748 1.91717 4.21748 1.91717 4.21747C1.91717 4.21747 1.91717 4.21747 1.91717 4.21746C1.91717 4.21746 1.91717 4.21745 1.91717 4.21745C1.91717 4.21745 1.91717 4.21744 1.91717 4.21744C1.91717 4.21744 1.91717 4.21743 1.91717 4.21743C1.91717 4.21743 1.91717 4.21742 1.91717 4.21742C1.91717 4.21742 1.91717 4.21741 1.91717 4.21741C1.91717 4.21741 1.91717 4.2174 1.91717 4.2174C1.91717 4.2174 1.91717 4.21739 1.91717 4.21739C1.91717 4.21738 1.91717 4.21738 1.91717 4.21738C1.91717 4.21737 1.91717 4.21737 1.91717 4.21737C1.91717 4.21736 1.91717 4.21736 1.91717 4.21736C1.91717 4.21735 1.91717 4.21735 1.91717 4.21735C1.91717 4.21734 1.91717 4.21734 1.91717 4.21734C1.91717 4.21733 1.91717 4.21733 1.91717 4.21733C1.91717 4.21732 1.91717 4.21732 1.91717 4.21731C1.91717 4.21731 1.91717 4.21731 1.91717 4.2173C1.91717 4.2173 1.91717 4.2173 1.91717 4.21729C1.91717 4.21729 1.91717 4.21729 1.91717 4.21728C1.91717 4.21728 1.91717 4.21728 1.91717 4.21727C1.91717 4.21727 1.91717 4.21727 1.91717 4.21726C1.91717 4.21726 1.91717 4.21725 1.91717 4.21725C1.91717 4.21725 1.91717 4.21724 1.91717 4.21724C1.91717 4.21724 1.91717 4.21723 1.91717 4.21723C1.91717 4.21723 1.91717 4.21722 1.91717 4.21722C1.91717 4.21722 1.91717 4.21721 1.91717 4.21721C1.91717 4.21721 1.91717 4.2172 1.91717 4.2172C1.91717 4.21719 1.91717 4.21719 1.91717 4.21719C1.91717 4.21718 1.91717 4.21718 1.91717 4.21718C1.91717 4.21717 1.91717 4.21717 1.91717 4.21717C1.91717 4.21716 1.91717 4.21716 1.91717 4.21716C1.91717 4.21715 1.91717 4.21715 1.91717 4.21715C1.91717 4.21714 1.91717 4.21714 1.91717 4.21713C1.91717 4.21713 1.91717 4.21713 1.91717 4.21712C1.91717 4.21712 1.91717 4.21712 1.91717 4.21711C1.91717 4.21711 1.91717 4.21711 1.91717 4.2171C1.91717 4.2171 1.91717 4.2171 1.91717 4.21709C1.91717 4.21709 1.91717 4.21708 1.91717 4.21708C1.91717 4.21708 1.91717 4.21707 1.91717 4.21707C1.91717 4.21707 1.91717 4.21706 1.91717 4.21706C1.91717 4.21706 1.91717 4.21705 1.91717 4.21705C1.91717 4.21705 1.91717 4.21704 1.91717 4.21704C1.91717 4.21704 1.91717 4.21703 1.91717 4.21703C1.91717 4.21702 1.91717 4.21702 1.91717 4.21702C1.91717 4.21701 1.91717 4.21701 1.91717 4.21701C1.91717 4.217 1.91717 4.217 1.91717 4.217C1.91717 4.21699 1.91717 4.21699 1.91717 4.21699C1.91717 4.21698 1.91717 4.21698 1.91717 4.21697C1.91717 4.21697 1.91717 4.21697 1.91717 4.21696C1.91717 4.21696 1.91717 4.21696 1.91717 4.21695C1.91717 4.21695 1.91717 4.21695 1.91717 4.21694C1.91717 4.21694 1.91717 4.21694 1.91717 4.21693C1.91717 4.21693 1.91717 4.21692 1.91717 4.21692C1.91717 4.21692 1.91717 4.21691 1.91717 4.21691C1.91717 4.21691 1.91717 4.2169 1.91717 4.2169C1.91717 4.2169 1.91717 4.21689 1.91717 4.21689C1.91717 4.21689 1.91717 4.21688 1.91717 4.21688C1.91717 4.21687 1.91717 4.21687 1.91717 4.21687C1.91717 4.21686 1.91717 4.21686 1.91717 4.21686C1.91717 4.21685 1.91717 4.21685 1.91717 4.21685C1.91717 4.21684 1.91717 4.21684 1.91717 4.21683C1.91717 4.21683 1.91717 4.21683 1.91717 4.21682C1.91717 4.21682 1.91717 4.21682 1.91717 4.21681C1.91717 4.21681 1.91717 4.21681 1.91717 4.2168C1.91717 4.2168 1.91717 4.21679 1.91717 4.21679C1.91717 4.21679 1.91717 4.21678 1.91717 4.21678C1.91717 4.21678 1.91717 4.21677 1.91717 4.21677C1.91717 4.21677 1.91717 4.21676 1.91717 4.21676C1.91717 4.21676 1.91717 4.21675 1.91717 4.21675C1.91717 4.21674 1.91717 4.21674 1.91717 4.21674C1.91717 4.21673 1.91717 4.21673 1.91717 4.21673C1.91717 4.21672 1.91717 4.21672 1.91717 4.21672C1.91717 4.21671 1.91717 4.21671 1.91717 4.2167C1.91717 4.2167 1.91717 4.2167 1.91717 4.21669C1.91717 4.21669 1.91717 4.21669 1.91717 4.21668C1.91717 4.21668 1.91717 4.21668 1.91717 4.21667C1.91717 4.21667 1.91717 4.21666 1.91717 4.21666C1.91717 4.21666 1.91717 4.21665 1.91717 4.21665C1.91717 4.21665 1.91717 4.21664 1.91717 4.21664C1.91717 4.21664 1.91717 4.21663 1.91717 4.21663C1.91717 4.21662 1.91717 4.21662 1.91717 4.21662C1.91717 4.21661 1.91717 4.21661 1.91717 4.21661C1.91717 4.2166 1.91717 4.2166 1.91717 4.2166C1.91717 4.21659 1.91717 4.21659 1.91717 4.21658C1.91717 4.21658 1.91717 4.21658 1.91717 4.21657C1.91717 4.21657 1.91717 4.21657 1.91717 4.21656C1.91717 4.21656 1.91717 4.21656 1.91717 4.21655C1.91717 4.21655 1.91717 4.21654 1.91717 4.21654C1.91717 4.21654 1.91717 4.21653 1.91717 4.21653H1.51717C1.51717 4.21653 1.51717 4.21654 1.51717 4.21654C1.51717 4.21654 1.51717 4.21655 1.51717 4.21655C1.51717 4.21656 1.51717 4.21656 1.51717 4.21656C1.51717 4.21657 1.51717 4.21657 1.51717 4.21657C1.51717 4.21658 1.51717 4.21658 1.51717 4.21658C1.51717 4.21659 1.51717 4.21659 1.51717 4.2166C1.51717 4.2166 1.51717 4.2166 1.51717 4.21661C1.51717 4.21661 1.51717 4.21661 1.51717 4.21662C1.51717 4.21662 1.51717 4.21662 1.51717 4.21663C1.51717 4.21663 1.51717 4.21664 1.51717 4.21664C1.51717 4.21664 1.51717 4.21665 1.51717 4.21665C1.51717 4.21665 1.51717 4.21666 1.51717 4.21666C1.51717 4.21666 1.51717 4.21667 1.51717 4.21667C1.51717 4.21668 1.51717 4.21668 1.51717 4.21668C1.51717 4.21669 1.51717 4.21669 1.51717 4.21669C1.51717 4.2167 1.51717 4.2167 1.51717 4.2167C1.51717 4.21671 1.51717 4.21671 1.51717 4.21672C1.51717 4.21672 1.51717 4.21672 1.51717 4.21673C1.51717 4.21673 1.51717 4.21673 1.51717 4.21674C1.51717 4.21674 1.51717 4.21674 1.51717 4.21675C1.51717 4.21675 1.51717 4.21676 1.51717 4.21676C1.51717 4.21676 1.51717 4.21677 1.51717 4.21677C1.51717 4.21677 1.51717 4.21678 1.51717 4.21678C1.51717 4.21678 1.51717 4.21679 1.51717 4.21679C1.51717 4.21679 1.51717 4.2168 1.51717 4.2168C1.51717 4.21681 1.51717 4.21681 1.51717 4.21681C1.51717 4.21682 1.51717 4.21682 1.51717 4.21682C1.51717 4.21683 1.51717 4.21683 1.51717 4.21683C1.51717 4.21684 1.51717 4.21684 1.51717 4.21685C1.51717 4.21685 1.51717 4.21685 1.51717 4.21686C1.51717 4.21686 1.51717 4.21686 1.51717 4.21687C1.51717 4.21687 1.51717 4.21687 1.51717 4.21688C1.51717 4.21688 1.51717 4.21689 1.51717 4.21689C1.51717 4.21689 1.51717 4.2169 1.51717 4.2169C1.51717 4.2169 1.51717 4.21691 1.51717 4.21691C1.51717 4.21691 1.51717 4.21692 1.51717 4.21692C1.51717 4.21692 1.51717 4.21693 1.51717 4.21693C1.51717 4.21694 1.51717 4.21694 1.51717 4.21694C1.51717 4.21695 1.51717 4.21695 1.51717 4.21695C1.51717 4.21696 1.51717 4.21696 1.51717 4.21696C1.51717 4.21697 1.51717 4.21697 1.51717 4.21697C1.51717 4.21698 1.51717 4.21698 1.51717 4.21699C1.51717 4.21699 1.51717 4.21699 1.51717 4.217C1.51717 4.217 1.51717 4.217 1.51717 4.21701C1.51717 4.21701 1.51717 4.21701 1.51717 4.21702C1.51717 4.21702 1.51717 4.21702 1.51717 4.21703C1.51717 4.21703 1.51717 4.21704 1.51717 4.21704C1.51717 4.21704 1.51717 4.21705 1.51717 4.21705C1.51717 4.21705 1.51717 4.21706 1.51717 4.21706C1.51717 4.21706 1.51717 4.21707 1.51717 4.21707C1.51717 4.21707 1.51717 4.21708 1.51717 4.21708C1.51717 4.21708 1.51717 4.21709 1.51717 4.21709C1.51717 4.2171 1.51717 4.2171 1.51717 4.2171C1.51717 4.21711 1.51717 4.21711 1.51717 4.21711C1.51717 4.21712 1.51717 4.21712 1.51717 4.21712C1.51717 4.21713 1.51717 4.21713 1.51717 4.21713C1.51717 4.21714 1.51717 4.21714 1.51717 4.21715C1.51717 4.21715 1.51717 4.21715 1.51717 4.21716C1.51717 4.21716 1.51717 4.21716 1.51717 4.21717C1.51717 4.21717 1.51717 4.21717 1.51717 4.21718C1.51717 4.21718 1.51717 4.21718 1.51717 4.21719C1.51717 4.21719 1.51717 4.21719 1.51717 4.2172C1.51717 4.2172 1.51717 4.21721 1.51717 4.21721C1.51717 4.21721 1.51717 4.21722 1.51717 4.21722C1.51717 4.21722 1.51717 4.21723 1.51717 4.21723C1.51717 4.21723 1.51717 4.21724 1.51717 4.21724C1.51717 4.21724 1.51717 4.21725 1.51717 4.21725C1.51717 4.21725 1.51717 4.21726 1.51717 4.21726C1.51717 4.21727 1.51717 4.21727 1.51717 4.21727C1.51717 4.21728 1.51717 4.21728 1.51717 4.21728C1.51717 4.21729 1.51717 4.21729 1.51717 4.21729C1.51717 4.2173 1.51717 4.2173 1.51717 4.2173C1.51717 4.21731 1.51717 4.21731 1.51717 4.21731C1.51717 4.21732 1.51717 4.21732 1.51717 4.21733C1.51717 4.21733 1.51717 4.21733 1.51717 4.21734C1.51717 4.21734 1.51717 4.21734 1.51717 4.21735C1.51717 4.21735 1.51717 4.21735 1.51717 4.21736C1.51717 4.21736 1.51717 4.21736 1.51717 4.21737C1.51717 4.21737 1.51717 4.21737 1.51717 4.21738C1.51717 4.21738 1.51717 4.21738 1.51717 4.21739C1.51717 4.21739 1.51717 4.2174 1.51717 4.2174C1.51717 4.2174 1.51717 4.21741 1.51717 4.21741C1.51717 4.21741 1.51717 4.21742 1.51717 4.21742C1.51717 4.21742 1.51717 4.21743 1.51717 4.21743C1.51717 4.21743 1.51717 4.21744 1.51717 4.21744C1.51717 4.21744 1.51717 4.21745 1.51717 4.21745C1.51717 4.21745 1.51717 4.21746 1.51717 4.21746C1.51717 4.21747 1.51717 4.21747 1.51717 4.21747C1.51717 4.21748 1.51717 4.21748 1.51717 4.21748C1.51717 4.21749 1.51717 4.21749 1.51717 4.21749C1.51717 4.2175 1.51717 4.2175 1.51717 4.2175C1.51717 4.21751 1.51717 4.21751 1.51717 4.21751C1.51717 4.21752 1.51717 4.21752 1.51717 4.21752C1.51717 4.21753 1.51717 4.21753 1.51717 4.21754C1.51717 4.21754 1.51717 4.21754 1.51717 4.21755C1.51717 4.21755 1.51717 4.21755 1.51717 4.21756C1.51717 4.21756 1.51717 4.21756 1.51717 4.21757C1.51717 4.21757 1.51717 4.21757 1.51717 4.21758C1.51717 4.21758 1.51717 4.21758 1.51717 4.21759C1.51717 4.21759 1.51717 4.21759 1.51717 4.2176C1.51717 4.2176 1.51717 4.2176 1.51717 4.21761C1.51717 4.21761 1.51717 4.21761 1.51717 4.21762C1.51717 4.21762 1.51717 4.21763 1.51717 4.21763C1.51717 4.21763 1.51717 4.21764 1.51717 4.21764C1.51717 4.21764 1.51717 4.21765 1.51717 4.21765C1.51717 4.21765 1.51717 4.21766 1.51717 4.21766C1.51717 4.21766 1.51717 4.21767 1.51717 4.21767C1.51717 4.21767 1.51717 4.21768 1.51717 4.21768C1.51717 4.21768 1.51717 4.21769 1.51717 4.21769C1.51717 4.21769 1.51717 4.2177 1.51717 4.2177C1.51717 4.2177 1.51717 4.21771 1.51717 4.21771C1.51717 4.21772 1.51717 4.21772 1.51717 4.21772C1.51717 4.21773 1.51717 4.21773 1.51717 4.21773C1.51717 4.21774 1.51717 4.21774 1.51717 4.21774C1.51717 4.21775 1.51717 4.21775 1.51717 4.21775C1.51717 4.21776 1.51717 4.21776 1.51717 4.21776C1.51717 4.21777 1.51717 4.21777 1.51717 4.21777C1.51717 4.21778 1.51717 4.21778 1.51717 4.21778C1.51717 4.21779 1.51717 4.21779 1.51717 4.21779C1.51717 4.2178 1.51717 4.2178 1.51717 4.2178C1.51717 4.21781 1.51717 4.21781 1.51717 4.21782C1.51717 4.21782 1.51717 4.21782 1.51717 4.21783C1.51717 4.21783 1.51717 4.21783 1.51717 4.21784C1.51717 4.21784 1.51717 4.21784 1.51717 4.21785C1.51717 4.21785 1.51717 4.21785 1.51717 4.21786C1.51717 4.21786 1.51717 4.21786 1.51717 4.21787C1.51717 4.21787 1.51717 4.21787 1.51717 4.21788C1.51717 4.21788 1.51717 4.21788 1.51717 4.21789C1.51717 4.21789 1.51717 4.21789 1.51717 4.2179C1.51717 4.2179 1.51717 4.2179 1.51717 4.21791C1.51717 4.21791 1.51717 4.21791 1.51717 4.21792C1.51717 4.21792 1.51717 4.21793 1.51717 4.21793C1.51717 4.21793 1.51717 4.21794 1.51717 4.21794C1.51717 4.21794 1.51717 4.21795 1.51717 4.21795C1.51717 4.21795 1.51717 4.21796 1.51717 4.21796C1.51717 4.21796 1.51717 4.21797 1.51717 4.21797C1.51717 4.21797 1.51717 4.21798 1.51717 4.21798C1.51717 4.21798 1.51717 4.21799 1.51717 4.21799C1.51717 4.21799 1.51717 4.218 1.51717 4.218C1.51717 4.218 1.51717 4.21801 1.51717 4.21801C1.51717 4.21801 1.51717 4.21802 1.51717 4.21802C1.51717 4.21802 1.51717 4.21803 1.51717 4.21803C1.51717 4.21803 1.51717 4.21804 1.51717 4.21804C1.51717 4.21804 1.51717 4.21805 1.51717 4.21805C1.51717 4.21806 1.51717 4.21806 1.51717 4.21806C1.51717 4.21807 1.51717 4.21807 1.51717 4.21807C1.51717 4.21808 1.51717 4.21808 1.51717 4.21808C1.51717 4.21809 1.51717 4.21809 1.51717 4.21809C1.51717 4.2181 1.51717 4.2181 1.51717 4.2181C1.51717 4.21811 1.51717 4.21811 1.51717 4.21811C1.51717 4.21812 1.51717 4.21812 1.51717 4.21812C1.51717 4.21813 1.51717 4.21813 1.51717 4.21813C1.51717 4.21814 1.51717 4.21814 1.51717 4.21814C1.51717 4.21815 1.51717 4.21815 1.51717 4.21815C1.51717 4.21816 1.51717 4.21816 1.51717 4.21816C1.51717 4.21817 1.51717 4.21817 1.51717 4.21817C1.51717 4.21818 1.51717 4.21818 1.51717 4.21818C1.51717 4.21819 1.51717 4.21819 1.51717 4.21819C1.51717 4.2182 1.51717 4.2182 1.51717 4.21821C1.51717 4.21821 1.51717 4.21821 1.51717 4.21822C1.51717 4.21822 1.51717 4.21822 1.51717 4.21823C1.51717 4.21823 1.51717 4.21823 1.51717 4.21824C1.51717 4.21824 1.51717 4.21824 1.51717 4.21825C1.51717 4.21825 1.51717 4.21825 1.51717 4.21826C1.51717 4.21826 1.51717 4.21826 1.51717 4.21827C1.51717 4.21827 1.51717 4.21827 1.51717 4.21828C1.51717 4.21828 1.51717 4.21828 1.51717 4.21829C1.51717 4.21829 1.51717 4.21829 1.51717 4.2183C1.51717 4.2183 1.51717 4.2183 1.51717 4.21831C1.51717 4.21831 1.51717 4.21831 1.51717 4.21832C1.51717 4.21832 1.51717 4.21832 1.51717 4.21833C1.51717 4.21833 1.51717 4.21833 1.51717 4.21834C1.51717 4.21834 1.51717 4.21834 1.51717 4.21835C1.51717 4.21835 1.51717 4.21835 1.51717 4.21836C1.51717 4.21836 1.51717 4.21836 1.51717 4.21837C1.51717 4.21837 1.51717 4.21837 1.51717 4.21838C1.51717 4.21838 1.51717 4.21839 1.51717 4.21839C1.51717 4.21839 1.51717 4.2184 1.51717 4.2184C1.51717 4.2184 1.51717 4.21841 1.51717 4.21841C1.51717 4.21841 1.51717 4.21842 1.51717 4.21842C1.51717 4.21842 1.51717 4.21843 1.51717 4.21843C1.51717 4.21843 1.51717 4.21844 1.51717 4.21844C1.51717 4.21844 1.51717 4.21845 1.51717 4.21845C1.51717 4.21845 1.51717 4.21846 1.51717 4.21846C1.51717 4.21846 1.51717 4.21847 1.51717 4.21847C1.51717 4.21847 1.51717 4.21848 1.51717 4.21848C1.51717 4.21848 1.51717 4.21849 1.51717 4.21849C1.51717 4.21849 1.51717 4.2185 1.51717 4.2185C1.51717 4.2185 1.51717 4.21851 1.51717 4.21851C1.51717 4.21851 1.51717 4.21852 1.51717 4.21852C1.51717 4.21852 1.51717 4.21853 1.51717 4.21853C1.51717 4.21853 1.51717 4.21854 1.51717 4.21854C1.51717 4.21854 1.51717 4.21855 1.51717 4.21855C1.51717 4.21855 1.51717 4.21856 1.51717 4.21856C1.51717 4.21856 1.51717 4.21857 1.51717 4.21857C1.51717 4.21857 1.51717 4.21858 1.51717 4.21858C1.51717 4.21858 1.51717 4.21859 1.51717 4.21859C1.51717 4.21859 1.51717 4.2186 1.51717 4.2186C1.51717 4.2186 1.51717 4.21861 1.51717 4.21861C1.51717 4.21862 1.51717 4.21862 1.51717 4.21862C1.51717 4.21863 1.51717 4.21863 1.51717 4.21863C1.51717 4.21864 1.51717 4.21864 1.51717 4.21864C1.51717 4.21865 1.51717 4.21865 1.51717 4.21865C1.51717 4.21866 1.51717 4.21866 1.51717 4.21866C1.51717 4.21867 1.51717 4.21867 1.51717 4.21867C1.51717 4.21868 1.51717 4.21868 1.51717 4.21868C1.51717 4.21869 1.51717 4.21869 1.51717 4.21869C1.51717 4.2187 1.51717 4.2187 1.51717 4.2187C1.51717 4.21871 1.51717 4.21871 1.51717 4.21871C1.51717 4.21872 1.51717 4.21872 1.51717 4.21872C1.51717 4.21873 1.51717 4.21873 1.51717 4.21873C1.51717 4.21874 1.51717 4.21874 1.51717 4.21874C1.51717 4.21875 1.51717 4.21875 1.51717 4.21875C1.51717 4.21876 1.51717 4.21876 1.51717 4.21876C1.51717 4.21877 1.51717 4.21877 1.51717 4.21877C1.51717 4.21878 1.51717 4.21878 1.51717 4.21878C1.51717 4.21879 1.51717 4.21879 1.51717 4.21879C1.51717 4.2188 1.51717 4.2188 1.51717 4.2188C1.51717 4.21881 1.51717 4.21881 1.51717 4.21881C1.51717 4.21882 1.51717 4.21882 1.51717 4.21882C1.51717 4.21883 1.51717 4.21883 1.51717 4.21883C1.51717 4.21884 1.51717 4.21884 1.51717 4.21884C1.51717 4.21885 1.51717 4.21885 1.51717 4.21885C1.51717 4.21886 1.51717 4.21886 1.51717 4.21886C1.51717 4.21887 1.51717 4.21887 1.51717 4.21887C1.51717 4.21888 1.51717 4.21888 1.51717 4.21888C1.51717 4.21889 1.51717 4.21889 1.51717 4.21889C1.51717 4.2189 1.51717 4.2189 1.51717 4.2189C1.51717 4.21891 1.51717 4.21891 1.51717 4.21891C1.51717 4.21892 1.51717 4.21892 1.51717 4.21892C1.51717 4.21893 1.51717 4.21893 1.51717 4.21893C1.51717 4.21894 1.51717 4.21894 1.51717 4.21894C1.51717 4.21895 1.51717 4.21895 1.51717 4.21896C1.51717 4.21896 1.51717 4.21896 1.51717 4.21897C1.51717 4.21897 1.51717 4.21897 1.51717 4.21898C1.51717 4.21898 1.51717 4.21898 1.51717 4.21899C1.51717 4.21899 1.51717 4.21899 1.51717 4.219C1.51717 4.219 1.51717 4.219 1.51717 4.21901C1.51717 4.21901 1.51717 4.21901 1.51717 4.21902C1.51717 4.21902 1.51717 4.21902 1.51717 4.21903C1.51717 4.21903 1.51717 4.21903 1.51717 4.21904C1.51717 4.21904 1.51717 4.21904 1.51717 4.21905C1.51717 4.21905 1.51717 4.21905 1.51717 4.21906C1.51717 4.21906 1.51717 4.21906 1.51717 4.21907C1.51717 4.21907 1.51717 4.21907 1.51717 4.21908C1.51717 4.21908 1.51717 4.21908 1.51717 4.21909C1.51717 4.21909 1.51717 4.21909 1.51717 4.2191C1.51717 4.2191 1.51717 4.2191 1.51717 4.21911C1.51717 4.21911 1.51717 4.21911 1.51717 4.21912C1.51717 4.21912 1.51717 4.21912 1.51717 4.21913C1.51717 4.21913 1.51717 4.21913 1.51717 4.21914C1.51717 4.21914 1.51717 4.21914 1.51717 4.21915C1.51717 4.21915 1.51717 4.21915 1.51717 4.21916C1.51717 4.21916 1.51717 4.21916 1.51717 4.21917C1.51717 4.21917 1.51717 4.21917 1.51717 4.21918C1.51717 4.21918 1.51717 4.21918 1.51717 4.21919C1.51717 4.21919 1.51717 4.21919 1.51717 4.2192C1.51717 4.2192 1.51717 4.2192 1.51717 4.21921C1.51717 4.21921 1.51717 4.21921 1.51717 4.21922C1.51717 4.21922 1.51717 4.21922 1.51717 4.21923C1.51717 4.21923 1.51717 4.21923 1.51717 4.21924C1.51717 4.21924 1.51717 4.21924 1.51717 4.21925C1.51717 4.21925 1.51717 4.21925 1.51717 4.21926C1.51717 4.21926 1.51717 4.21926 1.51717 4.21927C1.51717 4.21927 1.51717 4.21927 1.51717 4.21928C1.51717 4.21928 1.51717 4.21928 1.51717 4.21929C1.51717 4.21929 1.51717 4.21929 1.51717 4.2193C1.51717 4.2193 1.51717 4.2193 1.51717 4.21931C1.51717 4.21931 1.51717 4.21931 1.51717 4.21932C1.51717 4.21932 1.51717 4.21932 1.51717 4.21933C1.51717 4.21933 1.51717 4.21933 1.51717 4.21934C1.51717 4.21934 1.51717 4.21934 1.51717 4.21935C1.51717 4.21935 1.51717 4.21935 1.51717 4.21936C1.51717 4.21936 1.51717 4.21936 1.51717 4.21937C1.51717 4.21937 1.51717 4.21937 1.51717 4.21938C1.51717 4.21938 1.51717 4.21938 1.51717 4.21939C1.51717 4.21939 1.51717 4.21939 1.51717 4.2194C1.51717 4.2194 1.51717 4.2194 1.51717 4.21941C1.51717 4.21941 1.51717 4.21942 1.51717 4.21942C1.51717 4.21942 1.51717 4.21943 1.51717 4.21943C1.51717 4.21943 1.51717 4.21944 1.51717 4.21944C1.51717 4.21944 1.51717 4.21945 1.51717 4.21945C1.51717 4.21945 1.51717 4.21946 1.51717 4.21946C1.51717 4.21946 1.51717 4.21947 1.51717 4.21947C1.51717 4.21947 1.51717 4.21948 1.51717 4.21948C1.51717 4.21948 1.51717 4.21949 1.51717 4.21949C1.51717 4.21949 1.51717 4.2195 1.51717 4.2195C1.51717 4.2195 1.51717 4.21951 1.51717 4.21951C1.51717 4.21951 1.51717 4.21952 1.51717 4.21952C1.51717 4.21952 1.51717 4.21953 1.51717 4.21953C1.51717 4.21953 1.51717 4.21954 1.51717 4.21954C1.51717 4.21954 1.51717 4.21955 1.51717 4.21955C1.51717 4.21955 1.51717 4.21956 1.51717 4.21956C1.51717 4.21956 1.51717 4.21957 1.51717 4.21957C1.51717 4.21957 1.51717 4.21958 1.51717 4.21958C1.51717 4.21958 1.51717 4.21959 1.51717 4.21959C1.51717 4.21959 1.51717 4.2196 1.51717 4.2196C1.51717 4.2196 1.51717 4.21961 1.51717 4.21961C1.51717 4.21961 1.51717 4.21962 1.51717 4.21962C1.51717 4.21962 1.51717 4.21963 1.51717 4.21963C1.51717 4.21963 1.51717 4.21964 1.51717 4.21964C1.51717 4.21964 1.51717 4.21965 1.51717 4.21965C1.51717 4.21965 1.51717 4.21966 1.51717 4.21966C1.51717 4.21966 1.51717 4.21967 1.51717 4.21967C1.51717 4.21967 1.51717 4.21968 1.51717 4.21968C1.51717 4.21968 1.51717 4.21969 1.51717 4.21969C1.51717 4.21969 1.51717 4.2197 1.51717 4.2197C1.51717 4.2197 1.51717 4.21971 1.51717 4.21971C1.51717 4.21971 1.51717 4.21972 1.51717 4.21972C1.51717 4.21972 1.51717 4.21973 1.51717 4.21973C1.51717 4.21973 1.51717 4.21974 1.51717 4.21974C1.51717 4.21974 1.51717 4.21975 1.51717 4.21975C1.51717 4.21975 1.51717 4.21976 1.51717 4.21976C1.51717 4.21977 1.51717 4.21977 1.51717 4.21977C1.51717 4.21978 1.51717 4.21978 1.51717 4.21978C1.51717 4.21979 1.51717 4.21979 1.51717 4.21979C1.51717 4.2198 1.51717 4.2198 1.51717 4.2198C1.51717 4.21981 1.51717 4.21981 1.51717 4.21981C1.51717 4.21982 1.51717 4.21982 1.51717 4.21982C1.51717 4.21983 1.51717 4.21983 1.51717 4.21983C1.51717 4.21984 1.51717 4.21984 1.51717 4.21984C1.51717 4.21985 1.51717 4.21985 1.51717 4.21985C1.51717 4.21986 1.51717 4.21986 1.51717 4.21986C1.51717 4.21987 1.51717 4.21987 1.51717 4.21987C1.51717 4.21988 1.51717 4.21988 1.51717 4.21988C1.51717 4.21989 1.51717 4.21989 1.51717 4.21989C1.51717 4.2199 1.51717 4.2199 1.51717 4.2199C1.51717 4.21991 1.51717 4.21991 1.51717 4.21991C1.51717 4.21992 1.51717 4.21992 1.51717 4.21992C1.51717 4.21993 1.51717 4.21993 1.51717 4.21993C1.51717 4.21994 1.51717 4.21994 1.51717 4.21994C1.51717 4.21995 1.51717 4.21995 1.51717 4.21995C1.51717 4.21996 1.51717 4.21996 1.51717 4.21996C1.51717 4.21997 1.51717 4.21997 1.51717 4.21997C1.51717 4.21998 1.51717 4.21998 1.51717 4.21998C1.51717 4.21999 1.51717 4.21999 1.51717 4.22C1.51717 4.22 1.51717 4.22 1.51717 4.22001C1.51717 4.22001 1.51717 4.22001 1.51717 4.22002C1.51717 4.22002 1.51717 4.22002 1.51717 4.22003C1.51717 4.22003 1.51717 4.22003 1.51717 4.22004C1.51717 4.22004 1.51717 4.22004 1.51717 4.22005C1.51717 4.22005 1.51717 4.22005 1.51717 4.22006C1.51717 4.22006 1.51717 4.22006 1.51717 4.22007C1.51717 4.22007 1.51717 4.22007 1.51717 4.22008C1.51717 4.22008 1.51717 4.22008 1.51717 4.22009C1.51717 4.22009 1.51717 4.22009 1.51717 4.2201C1.51717 4.2201 1.51717 4.2201 1.51717 4.22011C1.51717 4.22011 1.51717 4.22011 1.51717 4.22012C1.51717 4.22012 1.51717 4.22012 1.51717 4.22013C1.51717 4.22013 1.51717 4.22013 1.51717 4.22014C1.51717 4.22014 1.51717 4.22014 1.51717 4.22015C1.51717 4.22015 1.51717 4.22015 1.51717 4.22016C1.51717 4.22016 1.51717 4.22016 1.51717 4.22017C1.51717 4.22017 1.51717 4.22017 1.51717 4.22018C1.51717 4.22018 1.51717 4.22019 1.51717 4.22019C1.51717 4.22019 1.51717 4.2202 1.51717 4.2202C1.51717 4.2202 1.51717 4.22021 1.51717 4.22021C1.51717 4.22021 1.51717 4.22022 1.51717 4.22022C1.51717 4.22022 1.51717 4.22023 1.51717 4.22023C1.51717 4.22023 1.51717 4.22024 1.51717 4.22024C1.51717 4.22024 1.51717 4.22025 1.51717 4.22025C1.51717 4.22025 1.51717 4.22026 1.51717 4.22026C1.51717 4.22026 1.51717 4.22027 1.51717 4.22027C1.51717 4.22027 1.51717 4.22028 1.51717 4.22028C1.51717 4.22028 1.51717 4.22029 1.51717 4.22029C1.51717 4.22029 1.51717 4.2203 1.51717 4.2203C1.51717 4.2203 1.51717 4.22031 1.51717 4.22031C1.51717 4.22031 1.51717 4.22032 1.51717 4.22032C1.51717 4.22032 1.51717 4.22033 1.51717 4.22033C1.51717 4.22034 1.51717 4.22034 1.51717 4.22034C1.51717 4.22035 1.51717 4.22035 1.51717 4.22035C1.51717 4.22036 1.51717 4.22036 1.51717 4.22036C1.51717 4.22037 1.51717 4.22037 1.51717 4.22037C1.51717 4.22038 1.51717 4.22038 1.51717 4.22038C1.51717 4.22039 1.51717 4.22039 1.51717 4.22039C1.51717 4.2204 1.51717 4.2204 1.51717 4.2204C1.51717 4.22041 1.51717 4.22041 1.51717 4.22041C1.51717 4.22042 1.51717 4.22042 1.51717 4.22042C1.51717 4.22043 1.51717 4.22043 1.51717 4.22043C1.51717 4.22044 1.51717 4.22044 1.51717 4.22044C1.51717 4.22045 1.51717 4.22045 1.51717 4.22045C1.51717 4.22046 1.51717 4.22046 1.51717 4.22047C1.51717 4.22047 1.51717 4.22047 1.51717 4.22048C1.51717 4.22048 1.51717 4.22048 1.51717 4.22049C1.51717 4.22049 1.51717 4.22049 1.51717 4.2205C1.51717 4.2205 1.51717 4.2205 1.51717 4.22051C1.51717 4.22051 1.51717 4.22051 1.51717 4.22052C1.51717 4.22052 1.51717 4.22052 1.51717 4.22053C1.51717 4.22053 1.51717 4.22053 1.51717 4.22054C1.51717 4.22054 1.51717 4.22054 1.51717 4.22055C1.51717 4.22055 1.51717 4.22055 1.51717 4.22056C1.51717 4.22056 1.51717 4.22057 1.51717 4.22057C1.51717 4.22057 1.51717 4.22058 1.51717 4.22058C1.51717 4.22058 1.51717 4.22059 1.51717 4.22059C1.51717 4.22059 1.51717 4.2206 1.51717 4.2206C1.51717 4.2206 1.51717 4.22061 1.51717 4.22061C1.51717 4.22061 1.51717 4.22062 1.51717 4.22062C1.51717 4.22062 1.51717 4.22063 1.51717 4.22063C1.51717 4.22063 1.51717 4.22064 1.51717 4.22064C1.51717 4.22064 1.51717 4.22065 1.51717 4.22065C1.51717 4.22065 1.51717 4.22066 1.51717 4.22066C1.51717 4.22066 1.51717 4.22067 1.51717 4.22067C1.51717 4.22068 1.51717 4.22068 1.51717 4.22068C1.51717 4.22069 1.51717 4.22069 1.51717 4.22069C1.51717 4.2207 1.51717 4.2207 1.51717 4.2207C1.51717 4.22071 1.51717 4.22071 1.51717 4.22071C1.51717 4.22072 1.51717 4.22072 1.51717 4.22072C1.51717 4.22073 1.51717 4.22073 1.51717 4.22073C1.51717 4.22074 1.51717 4.22074 1.51717 4.22074C1.51717 4.22075 1.51717 4.22075 1.51717 4.22076C1.51717 4.22076 1.51717 4.22076 1.51717 4.22077C1.51717 4.22077 1.51717 4.22077 1.51717 4.22078C1.51717 4.22078 1.51717 4.22078 1.51717 4.22079C1.51717 4.22079 1.51717 4.22079 1.51717 4.2208C1.51717 4.2208 1.51717 4.2208 1.51717 4.22081C1.51717 4.22081 1.51717 4.22081 1.51717 4.22082C1.51717 4.22082 1.51717 4.22082 1.51717 4.22083C1.51717 4.22083 1.51717 4.22083 1.51717 4.22084C1.51717 4.22084 1.51717 4.22085 1.51717 4.22085C1.51717 4.22085 1.51717 4.22086 1.51717 4.22086C1.51717 4.22086 1.51717 4.22087 1.51717 4.22087C1.51717 4.22087 1.51717 4.22088 1.51717 4.22088C1.51717 4.22088 1.51717 4.22089 1.51717 4.22089C1.51717 4.22089 1.51717 4.2209 1.51717 4.2209C1.51717 4.2209 1.51717 4.22091 1.51717 4.22091C1.51717 4.22092 1.51717 4.22092 1.51717 4.22092C1.51717 4.22093 1.51717 4.22093 1.51717 4.22093C1.51717 4.22094 1.51717 4.22094 1.51717 4.22094C1.51717 4.22095 1.51717 4.22095 1.51717 4.22095C1.51717 4.22096 1.51717 4.22096 1.51717 4.22096C1.51717 4.22097 1.51717 4.22097 1.51717 4.22097C1.51717 4.22098 1.51717 4.22098 1.51717 4.22099C1.51717 4.22099 1.51717 4.22099 1.51717 4.221C1.51717 4.221 1.51717 4.221 1.51717 4.22101C1.51717 4.22101 1.51717 4.22101 1.51717 4.22102C1.51717 4.22102 1.51717 4.22102 1.51717 4.22103C1.51717 4.22103 1.51717 4.22103 1.51717 4.22104C1.51717 4.22104 1.51717 4.22104 1.51717 4.22105C1.51717 4.22105 1.51717 4.22106 1.51717 4.22106C1.51717 4.22106 1.51717 4.22107 1.51717 4.22107C1.51717 4.22107 1.51717 4.22108 1.51717 4.22108C1.51717 4.22108 1.51717 4.22109 1.51717 4.22109C1.51717 4.22109 1.51717 4.2211 1.51717 4.2211C1.51717 4.2211 1.51717 4.22111 1.51717 4.22111C1.51717 4.22112 1.51717 4.22112 1.51717 4.22112C1.51717 4.22113 1.51717 4.22113 1.51717 4.22113C1.51717 4.22114 1.51717 4.22114 1.51717 4.22114C1.51717 4.22115 1.51717 4.22115 1.51717 4.22115C1.51717 4.22116 1.51717 4.22116 1.51717 4.22116C1.51717 4.22117 1.51717 4.22117 1.51717 4.22117C1.51717 4.22118 1.51717 4.22118 1.51717 4.22119C1.51717 4.22119 1.51717 4.22119 1.51717 4.2212C1.51717 4.2212 1.51717 4.2212 1.51717 4.22121C1.51717 4.22121 1.51717 4.22121 1.51717 4.22122C1.51717 4.22122 1.51717 4.22122 1.51717 4.22123C1.51717 4.22123 1.51717 4.22124 1.51717 4.22124C1.51717 4.22124 1.51717 4.22125 1.51717 4.22125C1.51717 4.22125 1.51717 4.22126 1.51717 4.22126C1.51717 4.22126 1.51717 4.22127 1.51717 4.22127C1.51717 4.22127 1.51717 4.22128 1.51717 4.22128C1.51717 4.22128 1.51717 4.22129 1.51717 4.22129C1.51717 4.2213 1.51717 4.2213 1.51717 4.2213C1.51717 4.22131 1.51717 4.22131 1.51717 4.22131C1.51717 4.22132 1.51717 4.22132 1.51717 4.22132C1.51717 4.22133 1.51717 4.22133 1.51717 4.22133C1.51717 4.22134 1.51717 4.22134 1.51717 4.22135C1.51717 4.22135 1.51717 4.22135 1.51717 4.22136C1.51717 4.22136 1.51717 4.22136 1.51717 4.22137C1.51717 4.22137 1.51717 4.22137 1.51717 4.22138C1.51717 4.22138 1.51717 4.22138 1.51717 4.22139C1.51717 4.22139 1.51717 4.2214 1.51717 4.2214C1.51717 4.2214 1.51717 4.22141 1.51717 4.22141C1.51717 4.22141 1.51717 4.22142 1.51717 4.22142C1.51717 4.22142 1.51717 4.22143 1.51717 4.22143C1.51717 4.22143 1.51717 4.22144 1.51717 4.22144C1.51717 4.22145 1.51717 4.22145 1.51717 4.22145C1.51717 4.22146 1.51717 4.22146 1.51717 4.22146C1.51717 4.22147 1.51717 4.22147 1.51717 4.22147C1.51717 4.22148 1.51717 4.22148 1.51717 4.22148C1.51717 4.22149 1.51717 4.22149 1.51717 4.2215C1.51717 4.2215 1.51717 4.2215 1.51717 4.22151C1.51717 4.22151 1.51717 4.22151 1.51717 4.22152C1.51717 4.22152 1.51717 4.22152 1.51717 4.22153C1.51717 4.22153 1.51717 4.22154 1.51717 4.22154C1.51717 4.22154 1.51717 4.22155 1.51717 4.22155C1.51717 4.22155 1.51717 4.22156 1.51717 4.22156C1.51717 4.22156 1.51717 4.22157 1.51717 4.22157C1.51717 4.22157 1.51717 4.22158 1.51717 4.22158C1.51717 4.22159 1.51717 4.22159 1.51717 4.22159C1.51717 4.2216 1.51717 4.2216 1.51717 4.2216C1.51717 4.22161 1.51717 4.22161 1.51717 4.22161C1.51717 4.22162 1.51717 4.22162 1.51717 4.22163C1.51717 4.22163 1.51717 4.22163 1.51717 4.22164C1.51717 4.22164 1.51717 4.22164 1.51717 4.22165C1.51717 4.22165 1.51717 4.22165 1.51717 4.22166C1.51717 4.22166 1.51717 4.22167 1.51717 4.22167C1.51717 4.22167 1.51717 4.22168 1.51717 4.22168C1.51717 4.22168 1.51717 4.22169 1.51717 4.22169C1.51717 4.22169 1.51717 4.2217 1.51717 4.2217C1.51717 4.2217 1.51717 4.22171 1.51717 4.22171C1.51717 4.22172 1.51717 4.22172 1.51717 4.22172C1.51717 4.22173 1.51717 4.22173 1.51717 4.22173C1.51717 4.22174 1.51717 4.22174 1.51717 4.22175C1.51717 4.22175 1.51717 4.22175 1.51717 4.22176C1.51717 4.22176 1.51717 4.22176 1.51717 4.22177C1.51717 4.22177 1.51717 4.22177 1.51717 4.22178C1.51717 4.22178 1.51717 4.22179 1.51717 4.22179C1.51717 4.22179 1.51717 4.2218 1.51717 4.2218C1.51717 4.2218 1.51717 4.22181 1.51717 4.22181C1.51717 4.22181 1.51717 4.22182 1.51717 4.22182C1.51717 4.22183 1.51717 4.22183 1.51717 4.22183C1.51717 4.22184 1.51717 4.22184 1.51717 4.22184H1.91717ZM1.51717 4.21653V4.21684H1.91717V4.21653H1.51717ZM1.91717 4.21684V2.22284H1.51717V4.21684H1.91717ZM1.57572 2.36424L3.8219 4.61113L4.10479 4.32833L1.85861 2.08144L1.57572 2.36424ZM3.8219 4.61113C3.9227 4.71195 4.06209 4.77413 4.21552 4.77413V4.37413C4.17209 4.37413 4.13336 4.35691 4.10479 4.32833L3.8219 4.61113ZM4.21552 4.77413C4.52334 4.77413 4.77239 4.52437 4.77239 4.21715H4.37239C4.37239 4.3038 4.30208 4.37413 4.21552 4.37413V4.77413ZM4.77239 4.21715C4.77239 4.06307 4.70969 3.92376 4.60915 3.82318L4.32626 4.10598C4.35509 4.13482 4.37239 4.17368 4.37239 4.21715H4.77239ZM4.60915 3.82318L2.36297 1.5763L2.08008 1.8591L4.32626 4.10598L4.60915 3.82318ZM2.22152 1.9177H4.21521V1.5177H2.22152V1.9177ZM4.21521 1.9177C4.21522 1.9177 4.21522 1.9177 4.21522 1.9177C4.21522 1.9177 4.21523 1.9177 4.21523 1.9177C4.21523 1.9177 4.21524 1.9177 4.21524 1.9177C4.21524 1.9177 4.21525 1.9177 4.21525 1.9177C4.21525 1.9177 4.21526 1.9177 4.21526 1.9177C4.21526 1.9177 4.21526 1.9177 4.21527 1.9177C4.21527 1.9177 4.21527 1.9177 4.21528 1.9177C4.21528 1.9177 4.21528 1.9177 4.21529 1.9177C4.21529 1.9177 4.21529 1.9177 4.21529 1.9177C4.2153 1.9177 4.2153 1.9177 4.2153 1.9177C4.21531 1.9177 4.21531 1.9177 4.21531 1.9177C4.21532 1.9177 4.21532 1.9177 4.21532 1.9177C4.21533 1.9177 4.21533 1.9177 4.21533 1.9177C4.21533 1.9177 4.21534 1.9177 4.21534 1.9177C4.21534 1.9177 4.21535 1.9177 4.21535 1.9177C4.21535 1.9177 4.21536 1.9177 4.21536 1.9177C4.21536 1.9177 4.21536 1.9177 4.21537 1.9177C4.21537 1.9177 4.21537 1.9177 4.21538 1.9177C4.21538 1.9177 4.21538 1.9177 4.21539 1.9177C4.21539 1.9177 4.21539 1.9177 4.2154 1.9177C4.2154 1.9177 4.2154 1.9177 4.2154 1.9177C4.21541 1.9177 4.21541 1.9177 4.21541 1.9177C4.21542 1.9177 4.21542 1.9177 4.21542 1.9177C4.21543 1.9177 4.21543 1.9177 4.21543 1.9177C4.21544 1.9177 4.21544 1.9177 4.21544 1.9177C4.21544 1.9177 4.21545 1.9177 4.21545 1.9177C4.21545 1.9177 4.21546 1.9177 4.21546 1.9177C4.21546 1.9177 4.21547 1.9177 4.21547 1.9177C4.21547 1.9177 4.21547 1.9177 4.21548 1.9177C4.21548 1.9177 4.21548 1.9177 4.21549 1.9177C4.21549 1.9177 4.21549 1.9177 4.2155 1.9177C4.2155 1.9177 4.2155 1.9177 4.21551 1.9177C4.21551 1.9177 4.21551 1.9177 4.21551 1.9177C4.21552 1.9177 4.21552 1.9177 4.21552 1.9177C4.21553 1.9177 4.21553 1.9177 4.21553 1.9177C4.21554 1.9177 4.21554 1.9177 4.21554 1.9177C4.21555 1.9177 4.21555 1.9177 4.21555 1.9177C4.21555 1.9177 4.21556 1.9177 4.21556 1.9177C4.21556 1.9177 4.21557 1.9177 4.21557 1.9177C4.21557 1.9177 4.21558 1.9177 4.21558 1.9177C4.21558 1.9177 4.21558 1.9177 4.21559 1.9177C4.21559 1.9177 4.21559 1.9177 4.2156 1.9177C4.2156 1.9177 4.2156 1.9177 4.21561 1.9177C4.21561 1.9177 4.21561 1.9177 4.21562 1.9177C4.21562 1.9177 4.21562 1.9177 4.21562 1.9177C4.21563 1.9177 4.21563 1.9177 4.21563 1.9177C4.21564 1.9177 4.21564 1.9177 4.21564 1.9177C4.21565 1.9177 4.21565 1.9177 4.21565 1.9177C4.21566 1.9177 4.21566 1.9177 4.21566 1.9177C4.21566 1.9177 4.21567 1.9177 4.21567 1.9177C4.21567 1.9177 4.21568 1.9177 4.21568 1.9177C4.21568 1.9177 4.21569 1.9177 4.21569 1.9177C4.21569 1.9177 4.21569 1.9177 4.2157 1.9177C4.2157 1.9177 4.2157 1.9177 4.21571 1.9177C4.21571 1.9177 4.21571 1.9177 4.21572 1.9177C4.21572 1.9177 4.21572 1.9177 4.21573 1.9177C4.21573 1.9177 4.21573 1.9177 4.21573 1.9177C4.21574 1.9177 4.21574 1.9177 4.21574 1.9177C4.21575 1.9177 4.21575 1.9177 4.21575 1.9177C4.21576 1.9177 4.21576 1.9177 4.21576 1.9177C4.21577 1.9177 4.21577 1.9177 4.21577 1.9177C4.21577 1.9177 4.21578 1.9177 4.21578 1.9177C4.21578 1.9177 4.21579 1.9177 4.21579 1.9177C4.21579 1.9177 4.2158 1.9177 4.2158 1.9177C4.2158 1.9177 4.21581 1.9177 4.21581 1.9177C4.21581 1.9177 4.21581 1.9177 4.21582 1.9177C4.21582 1.9177 4.21582 1.9177 4.21583 1.9177C4.21583 1.9177 4.21583 1.9177 4.21584 1.9177C4.21584 1.9177 4.21584 1.9177 4.21584 1.9177C4.21585 1.9177 4.21585 1.9177 4.21585 1.9177C4.21586 1.9177 4.21586 1.9177 4.21586 1.9177C4.21587 1.9177 4.21587 1.9177 4.21587 1.9177C4.21588 1.9177 4.21588 1.9177 4.21588 1.9177C4.21588 1.9177 4.21589 1.9177 4.21589 1.9177C4.21589 1.9177 4.2159 1.9177 4.2159 1.9177C4.2159 1.9177 4.21591 1.9177 4.21591 1.9177C4.21591 1.9177 4.21592 1.9177 4.21592 1.9177C4.21592 1.9177 4.21592 1.9177 4.21593 1.9177C4.21593 1.9177 4.21593 1.9177 4.21594 1.9177C4.21594 1.9177 4.21594 1.9177 4.21595 1.9177C4.21595 1.9177 4.21595 1.9177 4.21596 1.9177C4.21596 1.9177 4.21596 1.9177 4.21596 1.9177C4.21597 1.9177 4.21597 1.9177 4.21597 1.9177C4.21598 1.9177 4.21598 1.9177 4.21598 1.9177C4.21599 1.9177 4.21599 1.9177 4.21599 1.9177C4.216 1.9177 4.216 1.9177 4.216 1.9177C4.216 1.9177 4.21601 1.9177 4.21601 1.9177C4.21601 1.9177 4.21602 1.9177 4.21602 1.9177C4.21602 1.9177 4.21603 1.9177 4.21603 1.9177C4.21603 1.9177 4.21603 1.9177 4.21604 1.9177C4.21604 1.9177 4.21604 1.9177 4.21605 1.9177C4.21605 1.9177 4.21605 1.9177 4.21606 1.9177C4.21606 1.9177 4.21606 1.9177 4.21607 1.9177C4.21607 1.9177 4.21607 1.9177 4.21607 1.9177C4.21608 1.9177 4.21608 1.9177 4.21608 1.9177C4.21609 1.9177 4.21609 1.9177 4.21609 1.9177C4.2161 1.9177 4.2161 1.9177 4.2161 1.9177C4.21611 1.9177 4.21611 1.9177 4.21611 1.9177C4.21611 1.9177 4.21612 1.9177 4.21612 1.9177C4.21612 1.9177 4.21613 1.9177 4.21613 1.9177C4.21613 1.9177 4.21614 1.9177 4.21614 1.9177C4.21614 1.9177 4.21615 1.9177 4.21615 1.9177C4.21615 1.9177 4.21615 1.9177 4.21616 1.9177C4.21616 1.9177 4.21616 1.9177 4.21617 1.9177C4.21617 1.9177 4.21617 1.9177 4.21618 1.9177C4.21618 1.9177 4.21618 1.9177 4.21619 1.9177C4.21619 1.9177 4.21619 1.9177 4.21619 1.9177C4.2162 1.9177 4.2162 1.9177 4.2162 1.9177C4.21621 1.9177 4.21621 1.9177 4.21621 1.9177C4.21622 1.9177 4.21622 1.9177 4.21622 1.9177C4.21623 1.9177 4.21623 1.9177 4.21623 1.9177C4.21623 1.9177 4.21624 1.9177 4.21624 1.9177C4.21624 1.9177 4.21625 1.9177 4.21625 1.9177C4.21625 1.9177 4.21626 1.9177 4.21626 1.9177C4.21626 1.9177 4.21627 1.9177 4.21627 1.9177C4.21627 1.9177 4.21627 1.9177 4.21628 1.9177C4.21628 1.9177 4.21628 1.9177 4.21629 1.9177C4.21629 1.9177 4.21629 1.9177 4.2163 1.9177C4.2163 1.9177 4.2163 1.9177 4.21631 1.9177C4.21631 1.9177 4.21631 1.9177 4.21632 1.9177C4.21632 1.9177 4.21632 1.9177 4.21632 1.9177C4.21633 1.9177 4.21633 1.9177 4.21633 1.9177C4.21634 1.9177 4.21634 1.9177 4.21634 1.9177C4.21635 1.9177 4.21635 1.9177 4.21635 1.9177C4.21636 1.9177 4.21636 1.9177 4.21636 1.9177C4.21636 1.9177 4.21637 1.9177 4.21637 1.9177C4.21637 1.9177 4.21638 1.9177 4.21638 1.9177C4.21638 1.9177 4.21639 1.9177 4.21639 1.9177C4.21639 1.9177 4.2164 1.9177 4.2164 1.9177C4.2164 1.9177 4.2164 1.9177 4.21641 1.9177C4.21641 1.9177 4.21641 1.9177 4.21642 1.9177C4.21642 1.9177 4.21642 1.9177 4.21643 1.9177C4.21643 1.9177 4.21643 1.9177 4.21644 1.9177C4.21644 1.9177 4.21644 1.9177 4.21644 1.9177C4.21645 1.9177 4.21645 1.9177 4.21645 1.9177C4.21646 1.9177 4.21646 1.9177 4.21646 1.9177C4.21647 1.9177 4.21647 1.9177 4.21647 1.9177C4.21648 1.9177 4.21648 1.9177 4.21648 1.9177C4.21649 1.9177 4.21649 1.9177 4.21649 1.9177C4.21649 1.9177 4.2165 1.9177 4.2165 1.9177C4.2165 1.9177 4.21651 1.9177 4.21651 1.9177C4.21651 1.9177 4.21652 1.9177 4.21652 1.9177C4.21652 1.9177 4.21653 1.9177 4.21653 1.9177C4.21653 1.9177 4.21653 1.9177 4.21654 1.9177C4.21654 1.9177 4.21654 1.9177 4.21655 1.9177C4.21655 1.9177 4.21655 1.9177 4.21656 1.9177C4.21656 1.9177 4.21656 1.9177 4.21657 1.9177C4.21657 1.9177 4.21657 1.9177 4.21657 1.9177C4.21658 1.9177 4.21658 1.9177 4.21658 1.9177C4.21659 1.9177 4.21659 1.9177 4.21659 1.9177C4.2166 1.9177 4.2166 1.9177 4.2166 1.9177C4.21661 1.9177 4.21661 1.9177 4.21661 1.9177C4.21662 1.9177 4.21662 1.9177 4.21662 1.9177C4.21662 1.9177 4.21663 1.9177 4.21663 1.9177C4.21663 1.9177 4.21664 1.9177 4.21664 1.9177C4.21664 1.9177 4.21665 1.9177 4.21665 1.9177C4.21665 1.9177 4.21666 1.9177 4.21666 1.9177C4.21666 1.9177 4.21667 1.9177 4.21667 1.9177C4.21667 1.9177 4.21667 1.9177 4.21668 1.9177C4.21668 1.9177 4.21668 1.9177 4.21669 1.9177C4.21669 1.9177 4.21669 1.9177 4.2167 1.9177C4.2167 1.9177 4.2167 1.9177 4.21671 1.9177C4.21671 1.9177 4.21671 1.9177 4.21671 1.9177C4.21672 1.9177 4.21672 1.9177 4.21672 1.9177C4.21673 1.9177 4.21673 1.9177 4.21673 1.9177C4.21674 1.9177 4.21674 1.9177 4.21674 1.9177C4.21675 1.9177 4.21675 1.9177 4.21675 1.9177C4.21676 1.9177 4.21676 1.9177 4.21676 1.9177C4.21676 1.9177 4.21677 1.9177 4.21677 1.9177C4.21677 1.9177 4.21678 1.9177 4.21678 1.9177C4.21678 1.9177 4.21679 1.9177 4.21679 1.9177C4.21679 1.9177 4.2168 1.9177 4.2168 1.9177C4.2168 1.9177 4.21681 1.9177 4.21681 1.9177C4.21681 1.9177 4.21681 1.9177 4.21682 1.9177C4.21682 1.9177 4.21682 1.9177 4.21683 1.9177C4.21683 1.9177 4.21683 1.9177 4.21684 1.9177C4.21684 1.9177 4.21684 1.9177 4.21685 1.9177C4.21685 1.9177 4.21685 1.9177 4.21686 1.9177C4.21686 1.9177 4.21686 1.9177 4.21686 1.9177C4.21687 1.9177 4.21687 1.9177 4.21687 1.9177C4.21688 1.9177 4.21688 1.9177 4.21688 1.9177C4.21689 1.9177 4.21689 1.9177 4.21689 1.9177C4.2169 1.9177 4.2169 1.9177 4.2169 1.9177C4.21691 1.9177 4.21691 1.9177 4.21691 1.9177C4.21691 1.9177 4.21692 1.9177 4.21692 1.9177C4.21692 1.9177 4.21693 1.9177 4.21693 1.9177C4.21693 1.9177 4.21694 1.9177 4.21694 1.9177C4.21694 1.9177 4.21695 1.9177 4.21695 1.9177C4.21695 1.9177 4.21696 1.9177 4.21696 1.9177C4.21696 1.9177 4.21696 1.9177 4.21697 1.9177C4.21697 1.9177 4.21697 1.9177 4.21698 1.9177C4.21698 1.9177 4.21698 1.9177 4.21699 1.9177C4.21699 1.9177 4.21699 1.9177 4.217 1.9177C4.217 1.9177 4.217 1.9177 4.21701 1.9177C4.21701 1.9177 4.21701 1.9177 4.21701 1.9177C4.21702 1.9177 4.21702 1.9177 4.21702 1.9177C4.21703 1.9177 4.21703 1.9177 4.21703 1.9177C4.21704 1.9177 4.21704 1.9177 4.21704 1.9177C4.21705 1.9177 4.21705 1.9177 4.21705 1.9177C4.21706 1.9177 4.21706 1.9177 4.21706 1.9177C4.21707 1.9177 4.21707 1.9177 4.21707 1.9177C4.21707 1.9177 4.21708 1.9177 4.21708 1.9177C4.21708 1.9177 4.21709 1.9177 4.21709 1.9177C4.21709 1.9177 4.2171 1.9177 4.2171 1.9177C4.2171 1.9177 4.21711 1.9177 4.21711 1.9177C4.21711 1.9177 4.21712 1.9177 4.21712 1.9177C4.21712 1.9177 4.21712 1.9177 4.21713 1.9177C4.21713 1.9177 4.21713 1.9177 4.21714 1.9177C4.21714 1.9177 4.21714 1.9177 4.21715 1.9177C4.21715 1.9177 4.21715 1.9177 4.21716 1.9177C4.21716 1.9177 4.21716 1.9177 4.21717 1.9177C4.21717 1.9177 4.21717 1.9177 4.21718 1.9177C4.21718 1.9177 4.21718 1.9177 4.21718 1.9177C4.21719 1.9177 4.21719 1.9177 4.21719 1.9177C4.2172 1.9177 4.2172 1.9177 4.2172 1.9177C4.21721 1.9177 4.21721 1.9177 4.21721 1.9177C4.21722 1.9177 4.21722 1.9177 4.21722 1.9177C4.21723 1.9177 4.21723 1.9177 4.21723 1.9177C4.21724 1.9177 4.21724 1.9177 4.21724 1.9177C4.21724 1.9177 4.21725 1.9177 4.21725 1.9177C4.21725 1.9177 4.21726 1.9177 4.21726 1.9177C4.21726 1.9177 4.21727 1.9177 4.21727 1.9177C4.21727 1.9177 4.21728 1.9177 4.21728 1.9177C4.21728 1.9177 4.21729 1.9177 4.21729 1.9177C4.21729 1.9177 4.2173 1.9177 4.2173 1.9177C4.2173 1.9177 4.21731 1.9177 4.21731 1.9177C4.21731 1.9177 4.21731 1.9177 4.21732 1.9177C4.21732 1.9177 4.21732 1.9177 4.21733 1.9177C4.21733 1.9177 4.21733 1.9177 4.21734 1.9177C4.21734 1.9177 4.21734 1.9177 4.21735 1.9177C4.21735 1.9177 4.21735 1.9177 4.21736 1.9177C4.21736 1.9177 4.21736 1.9177 4.21737 1.9177C4.21737 1.9177 4.21737 1.9177 4.21738 1.9177C4.21738 1.9177 4.21738 1.9177 4.21738 1.9177C4.21739 1.9177 4.21739 1.9177 4.21739 1.9177C4.2174 1.9177 4.2174 1.9177 4.2174 1.9177C4.21741 1.9177 4.21741 1.9177 4.21741 1.9177C4.21742 1.9177 4.21742 1.9177 4.21742 1.9177C4.21743 1.9177 4.21743 1.9177 4.21743 1.9177C4.21744 1.9177 4.21744 1.9177 4.21744 1.9177C4.21744 1.9177 4.21745 1.9177 4.21745 1.9177C4.21745 1.9177 4.21746 1.9177 4.21746 1.9177C4.21746 1.9177 4.21747 1.9177 4.21747 1.9177C4.21747 1.9177 4.21748 1.9177 4.21748 1.9177C4.21748 1.9177 4.21749 1.9177 4.21749 1.9177C4.21749 1.9177 4.2175 1.9177 4.2175 1.9177C4.2175 1.9177 4.21751 1.9177 4.21751 1.9177C4.21751 1.9177 4.21752 1.9177 4.21752 1.9177C4.21752 1.9177 4.21752 1.9177 4.21753 1.9177C4.21753 1.9177 4.21753 1.9177 4.21754 1.9177C4.21754 1.9177 4.21754 1.9177 4.21755 1.9177C4.21755 1.9177 4.21755 1.9177 4.21756 1.9177C4.21756 1.9177 4.21756 1.9177 4.21757 1.9177C4.21757 1.9177 4.21757 1.9177 4.21758 1.9177C4.21758 1.9177 4.21758 1.9177 4.21759 1.9177C4.21759 1.9177 4.21759 1.9177 4.2176 1.9177C4.2176 1.9177 4.2176 1.9177 4.2176 1.9177C4.21761 1.9177 4.21761 1.9177 4.21761 1.9177C4.21762 1.9177 4.21762 1.9177 4.21762 1.9177C4.21763 1.9177 4.21763 1.9177 4.21763 1.9177C4.21764 1.9177 4.21764 1.9177 4.21764 1.9177C4.21765 1.9177 4.21765 1.9177 4.21765 1.9177C4.21766 1.9177 4.21766 1.9177 4.21766 1.9177C4.21767 1.9177 4.21767 1.9177 4.21767 1.9177C4.21768 1.9177 4.21768 1.9177 4.21768 1.9177C4.21768 1.9177 4.21769 1.9177 4.21769 1.9177C4.21769 1.9177 4.2177 1.9177 4.2177 1.9177C4.2177 1.9177 4.21771 1.9177 4.21771 1.9177C4.21771 1.9177 4.21772 1.9177 4.21772 1.9177C4.21772 1.9177 4.21773 1.9177 4.21773 1.9177C4.21773 1.9177 4.21774 1.9177 4.21774 1.9177C4.21774 1.9177 4.21775 1.9177 4.21775 1.9177C4.21775 1.9177 4.21776 1.9177 4.21776 1.9177C4.21776 1.9177 4.21777 1.9177 4.21777 1.9177C4.21777 1.9177 4.21778 1.9177 4.21778 1.9177C4.21778 1.9177 4.21778 1.9177 4.21779 1.9177C4.21779 1.9177 4.21779 1.9177 4.2178 1.9177C4.2178 1.9177 4.2178 1.9177 4.21781 1.9177C4.21781 1.9177 4.21781 1.9177 4.21782 1.9177C4.21782 1.9177 4.21782 1.9177 4.21783 1.9177C4.21783 1.9177 4.21783 1.9177 4.21784 1.9177C4.21784 1.9177 4.21784 1.9177 4.21785 1.9177C4.21785 1.9177 4.21785 1.9177 4.21786 1.9177C4.21786 1.9177 4.21786 1.9177 4.21787 1.9177C4.21787 1.9177 4.21787 1.9177 4.21788 1.9177C4.21788 1.9177 4.21788 1.9177 4.21789 1.9177C4.21789 1.9177 4.21789 1.9177 4.21789 1.9177C4.2179 1.9177 4.2179 1.9177 4.2179 1.9177C4.21791 1.9177 4.21791 1.9177 4.21791 1.9177C4.21792 1.9177 4.21792 1.9177 4.21792 1.9177C4.21793 1.9177 4.21793 1.9177 4.21793 1.9177C4.21794 1.9177 4.21794 1.9177 4.21794 1.9177C4.21795 1.9177 4.21795 1.9177 4.21795 1.9177C4.21796 1.9177 4.21796 1.9177 4.21796 1.9177C4.21797 1.9177 4.21797 1.9177 4.21797 1.9177C4.21798 1.9177 4.21798 1.9177 4.21798 1.9177C4.21799 1.9177 4.21799 1.9177 4.21799 1.9177C4.218 1.9177 4.218 1.9177 4.218 1.9177C4.21801 1.9177 4.21801 1.9177 4.21801 1.9177C4.21802 1.9177 4.21802 1.9177 4.21802 1.9177C4.21802 1.9177 4.21803 1.9177 4.21803 1.9177C4.21803 1.9177 4.21804 1.9177 4.21804 1.9177C4.21804 1.9177 4.21805 1.9177 4.21805 1.9177C4.21805 1.9177 4.21806 1.9177 4.21806 1.9177C4.21806 1.9177 4.21807 1.9177 4.21807 1.9177C4.21807 1.9177 4.21808 1.9177 4.21808 1.9177C4.21808 1.9177 4.21809 1.9177 4.21809 1.9177C4.21809 1.9177 4.2181 1.9177 4.2181 1.9177C4.2181 1.9177 4.21811 1.9177 4.21811 1.9177C4.21811 1.9177 4.21812 1.9177 4.21812 1.9177C4.21812 1.9177 4.21813 1.9177 4.21813 1.9177C4.21813 1.9177 4.21814 1.9177 4.21814 1.9177C4.21814 1.9177 4.21815 1.9177 4.21815 1.9177C4.21815 1.9177 4.21816 1.9177 4.21816 1.9177C4.21816 1.9177 4.21817 1.9177 4.21817 1.9177C4.21817 1.9177 4.21818 1.9177 4.21818 1.9177C4.21818 1.9177 4.21819 1.9177 4.21819 1.9177C4.21819 1.9177 4.2182 1.9177 4.2182 1.9177C4.2182 1.9177 4.2182 1.9177 4.21821 1.9177C4.21821 1.9177 4.21821 1.9177 4.21822 1.9177C4.21822 1.9177 4.21822 1.9177 4.21823 1.9177C4.21823 1.9177 4.21823 1.9177 4.21824 1.9177C4.21824 1.9177 4.21824 1.9177 4.21825 1.9177C4.21825 1.9177 4.21825 1.9177 4.21826 1.9177C4.21826 1.9177 4.21826 1.9177 4.21827 1.9177C4.21827 1.9177 4.21827 1.9177 4.21828 1.9177C4.21828 1.9177 4.21828 1.9177 4.21829 1.9177C4.21829 1.9177 4.21829 1.9177 4.2183 1.9177C4.2183 1.9177 4.2183 1.9177 4.21831 1.9177C4.21831 1.9177 4.21831 1.9177 4.21832 1.9177C4.21832 1.9177 4.21832 1.9177 4.21833 1.9177C4.21833 1.9177 4.21833 1.9177 4.21834 1.9177C4.21834 1.9177 4.21834 1.9177 4.21835 1.9177C4.21835 1.9177 4.21835 1.9177 4.21836 1.9177C4.21836 1.9177 4.21836 1.9177 4.21837 1.9177C4.21837 1.9177 4.21837 1.9177 4.21838 1.9177C4.21838 1.9177 4.21838 1.9177 4.21839 1.9177C4.21839 1.9177 4.21839 1.9177 4.2184 1.9177C4.2184 1.9177 4.2184 1.9177 4.21841 1.9177C4.21841 1.9177 4.21841 1.9177 4.21842 1.9177C4.21842 1.9177 4.21842 1.9177 4.21843 1.9177C4.21843 1.9177 4.21843 1.9177 4.21844 1.9177C4.21844 1.9177 4.21844 1.9177 4.21845 1.9177C4.21845 1.9177 4.21845 1.9177 4.21846 1.9177C4.21846 1.9177 4.21846 1.9177 4.21847 1.9177C4.21847 1.9177 4.21847 1.9177 4.21848 1.9177C4.21848 1.9177 4.21848 1.9177 4.21849 1.9177C4.21849 1.9177 4.21849 1.9177 4.2185 1.9177C4.2185 1.9177 4.2185 1.9177 4.21851 1.9177C4.21851 1.9177 4.21851 1.9177 4.21852 1.9177C4.21852 1.9177 4.21852 1.9177 4.21853 1.9177C4.21853 1.9177 4.21853 1.9177 4.21854 1.9177C4.21854 1.9177 4.21854 1.9177 4.21855 1.9177C4.21855 1.9177 4.21855 1.9177 4.21856 1.9177C4.21856 1.9177 4.21856 1.9177 4.21857 1.9177C4.21857 1.9177 4.21857 1.9177 4.21858 1.9177C4.21858 1.9177 4.21858 1.9177 4.21859 1.9177C4.21859 1.9177 4.21859 1.9177 4.2186 1.9177C4.2186 1.9177 4.2186 1.9177 4.21861 1.9177C4.21861 1.9177 4.21861 1.9177 4.21862 1.9177C4.21862 1.9177 4.21862 1.9177 4.21863 1.9177C4.21863 1.9177 4.21863 1.9177 4.21864 1.9177C4.21864 1.9177 4.21864 1.9177 4.21865 1.9177C4.21865 1.9177 4.21865 1.9177 4.21866 1.9177C4.21866 1.9177 4.21866 1.9177 4.21867 1.9177C4.21867 1.9177 4.21867 1.9177 4.21868 1.9177C4.21868 1.9177 4.21868 1.9177 4.21869 1.9177C4.21869 1.9177 4.21869 1.9177 4.2187 1.9177C4.2187 1.9177 4.2187 1.9177 4.21871 1.9177C4.21871 1.9177 4.21871 1.9177 4.21872 1.9177C4.21872 1.9177 4.21872 1.9177 4.21873 1.9177C4.21873 1.9177 4.21873 1.9177 4.21874 1.9177C4.21874 1.9177 4.21874 1.9177 4.21875 1.9177C4.21875 1.9177 4.21875 1.9177 4.21876 1.9177C4.21876 1.9177 4.21876 1.9177 4.21877 1.9177C4.21877 1.9177 4.21878 1.9177 4.21878 1.9177C4.21878 1.9177 4.21879 1.9177 4.21879 1.9177C4.21879 1.9177 4.2188 1.9177 4.2188 1.9177C4.2188 1.9177 4.21881 1.9177 4.21881 1.9177C4.21881 1.9177 4.21882 1.9177 4.21882 1.9177C4.21882 1.9177 4.21883 1.9177 4.21883 1.9177C4.21883 1.9177 4.21884 1.9177 4.21884 1.9177C4.21884 1.9177 4.21885 1.9177 4.21885 1.9177C4.21885 1.9177 4.21886 1.9177 4.21886 1.9177C4.21886 1.9177 4.21887 1.9177 4.21887 1.9177C4.21887 1.9177 4.21888 1.9177 4.21888 1.9177C4.21888 1.9177 4.21889 1.9177 4.21889 1.9177C4.21889 1.9177 4.2189 1.9177 4.2189 1.9177C4.2189 1.9177 4.21891 1.9177 4.21891 1.9177C4.21891 1.9177 4.21892 1.9177 4.21892 1.9177C4.21892 1.9177 4.21893 1.9177 4.21893 1.9177C4.21893 1.9177 4.21894 1.9177 4.21894 1.9177C4.21894 1.9177 4.21895 1.9177 4.21895 1.9177C4.21896 1.9177 4.21896 1.9177 4.21896 1.9177C4.21897 1.9177 4.21897 1.9177 4.21897 1.9177C4.21898 1.9177 4.21898 1.9177 4.21898 1.9177C4.21899 1.9177 4.21899 1.9177 4.21899 1.9177C4.219 1.9177 4.219 1.9177 4.219 1.9177C4.21901 1.9177 4.21901 1.9177 4.21901 1.9177C4.21902 1.9177 4.21902 1.9177 4.21902 1.9177C4.21903 1.9177 4.21903 1.9177 4.21903 1.9177C4.21904 1.9177 4.21904 1.9177 4.21904 1.9177C4.21905 1.9177 4.21905 1.9177 4.21905 1.9177C4.21906 1.9177 4.21906 1.9177 4.21906 1.9177C4.21907 1.9177 4.21907 1.9177 4.21907 1.9177C4.21908 1.9177 4.21908 1.9177 4.21908 1.9177C4.21909 1.9177 4.21909 1.9177 4.2191 1.9177C4.2191 1.9177 4.2191 1.9177 4.21911 1.9177C4.21911 1.9177 4.21911 1.9177 4.21912 1.9177C4.21912 1.9177 4.21912 1.9177 4.21913 1.9177C4.21913 1.9177 4.21913 1.9177 4.21914 1.9177C4.21914 1.9177 4.21914 1.9177 4.21915 1.9177C4.21915 1.9177 4.21915 1.9177 4.21916 1.9177C4.21916 1.9177 4.21916 1.9177 4.21917 1.9177C4.21917 1.9177 4.21917 1.9177 4.21918 1.9177C4.21918 1.9177 4.21918 1.9177 4.21919 1.9177C4.21919 1.9177 4.2192 1.9177 4.2192 1.9177C4.2192 1.9177 4.21921 1.9177 4.21921 1.9177C4.21921 1.9177 4.21922 1.9177 4.21922 1.9177C4.21922 1.9177 4.21923 1.9177 4.21923 1.9177C4.21923 1.9177 4.21924 1.9177 4.21924 1.9177C4.21924 1.9177 4.21925 1.9177 4.21925 1.9177C4.21925 1.9177 4.21926 1.9177 4.21926 1.9177C4.21926 1.9177 4.21927 1.9177 4.21927 1.9177C4.21927 1.9177 4.21928 1.9177 4.21928 1.9177C4.21929 1.9177 4.21929 1.9177 4.21929 1.9177C4.2193 1.9177 4.2193 1.9177 4.2193 1.9177C4.21931 1.9177 4.21931 1.9177 4.21931 1.9177C4.21932 1.9177 4.21932 1.9177 4.21932 1.9177C4.21933 1.9177 4.21933 1.9177 4.21933 1.9177C4.21934 1.9177 4.21934 1.9177 4.21934 1.9177C4.21935 1.9177 4.21935 1.9177 4.21936 1.9177C4.21936 1.9177 4.21936 1.9177 4.21937 1.9177C4.21937 1.9177 4.21937 1.9177 4.21938 1.9177C4.21938 1.9177 4.21938 1.9177 4.21939 1.9177C4.21939 1.9177 4.21939 1.9177 4.2194 1.9177C4.2194 1.9177 4.2194 1.9177 4.21941 1.9177C4.21941 1.9177 4.21941 1.9177 4.21942 1.9177C4.21942 1.9177 4.21942 1.9177 4.21943 1.9177C4.21943 1.9177 4.21944 1.9177 4.21944 1.9177C4.21944 1.9177 4.21945 1.9177 4.21945 1.9177C4.21945 1.9177 4.21946 1.9177 4.21946 1.9177C4.21946 1.9177 4.21947 1.9177 4.21947 1.9177C4.21947 1.9177 4.21948 1.9177 4.21948 1.9177C4.21948 1.9177 4.21949 1.9177 4.21949 1.9177C4.2195 1.9177 4.2195 1.9177 4.2195 1.9177C4.21951 1.9177 4.21951 1.9177 4.21951 1.9177C4.21952 1.9177 4.21952 1.9177 4.21952 1.9177C4.21953 1.9177 4.21953 1.9177 4.21953 1.9177C4.21954 1.9177 4.21954 1.9177 4.21954 1.9177C4.21955 1.9177 4.21955 1.9177 4.21955 1.9177C4.21956 1.9177 4.21956 1.9177 4.21957 1.9177C4.21957 1.9177 4.21957 1.9177 4.21958 1.9177C4.21958 1.9177 4.21958 1.9177 4.21959 1.9177C4.21959 1.9177 4.21959 1.9177 4.2196 1.9177C4.2196 1.9177 4.2196 1.9177 4.21961 1.9177C4.21961 1.9177 4.21961 1.9177 4.21962 1.9177C4.21962 1.9177 4.21963 1.9177 4.21963 1.9177C4.21963 1.9177 4.21964 1.9177 4.21964 1.9177C4.21964 1.9177 4.21965 1.9177 4.21965 1.9177C4.21965 1.9177 4.21966 1.9177 4.21966 1.9177C4.21966 1.9177 4.21967 1.9177 4.21967 1.9177C4.21968 1.9177 4.21968 1.9177 4.21968 1.9177C4.21969 1.9177 4.21969 1.9177 4.21969 1.9177C4.2197 1.9177 4.2197 1.9177 4.2197 1.9177C4.21971 1.9177 4.21971 1.9177 4.21971 1.9177C4.21972 1.9177 4.21972 1.9177 4.21972 1.9177C4.21973 1.9177 4.21973 1.9177 4.21974 1.9177C4.21974 1.9177 4.21974 1.9177 4.21975 1.9177C4.21975 1.9177 4.21975 1.9177 4.21976 1.9177C4.21976 1.9177 4.21976 1.9177 4.21977 1.9177C4.21977 1.9177 4.21977 1.9177 4.21978 1.9177C4.21978 1.9177 4.21979 1.9177 4.21979 1.9177C4.21979 1.9177 4.2198 1.9177 4.2198 1.9177C4.2198 1.9177 4.21981 1.9177 4.21981 1.9177C4.21981 1.9177 4.21982 1.9177 4.21982 1.9177C4.21982 1.9177 4.21983 1.9177 4.21983 1.9177C4.21984 1.9177 4.21984 1.9177 4.21984 1.9177C4.21985 1.9177 4.21985 1.9177 4.21985 1.9177C4.21986 1.9177 4.21986 1.9177 4.21986 1.9177C4.21987 1.9177 4.21987 1.9177 4.21987 1.9177C4.21988 1.9177 4.21988 1.9177 4.21989 1.9177C4.21989 1.9177 4.21989 1.9177 4.2199 1.9177C4.2199 1.9177 4.2199 1.9177 4.21991 1.9177C4.21991 1.9177 4.21991 1.9177 4.21992 1.9177C4.21992 1.9177 4.21993 1.9177 4.21993 1.9177C4.21993 1.9177 4.21994 1.9177 4.21994 1.9177C4.21994 1.9177 4.21995 1.9177 4.21995 1.9177C4.21995 1.9177 4.21996 1.9177 4.21996 1.9177C4.21996 1.9177 4.21997 1.9177 4.21997 1.9177C4.21998 1.9177 4.21998 1.9177 4.21998 1.9177C4.21999 1.9177 4.21999 1.9177 4.21999 1.9177C4.22 1.9177 4.22 1.9177 4.22 1.9177C4.22001 1.9177 4.22001 1.9177 4.22002 1.9177C4.22002 1.9177 4.22002 1.9177 4.22003 1.9177C4.22003 1.9177 4.22003 1.9177 4.22004 1.9177C4.22004 1.9177 4.22004 1.9177 4.22005 1.9177C4.22005 1.9177 4.22006 1.9177 4.22006 1.9177C4.22006 1.9177 4.22007 1.9177 4.22007 1.9177C4.22007 1.9177 4.22008 1.9177 4.22008 1.9177C4.22008 1.9177 4.22009 1.9177 4.22009 1.9177C4.2201 1.9177 4.2201 1.9177 4.2201 1.9177C4.22011 1.9177 4.22011 1.9177 4.22011 1.9177C4.22012 1.9177 4.22012 1.9177 4.22012 1.9177C4.22013 1.9177 4.22013 1.9177 4.22014 1.9177C4.22014 1.9177 4.22014 1.9177 4.22015 1.9177C4.22015 1.9177 4.22015 1.9177 4.22016 1.9177C4.22016 1.9177 4.22016 1.9177 4.22017 1.9177C4.22017 1.9177 4.22018 1.9177 4.22018 1.9177C4.22018 1.9177 4.22019 1.9177 4.22019 1.9177C4.22019 1.9177 4.2202 1.9177 4.2202 1.9177C4.2202 1.9177 4.22021 1.9177 4.22021 1.9177V1.5177C4.22021 1.5177 4.2202 1.5177 4.2202 1.5177C4.2202 1.5177 4.22019 1.5177 4.22019 1.5177C4.22019 1.5177 4.22018 1.5177 4.22018 1.5177C4.22018 1.5177 4.22017 1.5177 4.22017 1.5177C4.22016 1.5177 4.22016 1.5177 4.22016 1.5177C4.22015 1.5177 4.22015 1.5177 4.22015 1.5177C4.22014 1.5177 4.22014 1.5177 4.22014 1.5177C4.22013 1.5177 4.22013 1.5177 4.22012 1.5177C4.22012 1.5177 4.22012 1.5177 4.22011 1.5177C4.22011 1.5177 4.22011 1.5177 4.2201 1.5177C4.2201 1.5177 4.2201 1.5177 4.22009 1.5177C4.22009 1.5177 4.22008 1.5177 4.22008 1.5177C4.22008 1.5177 4.22007 1.5177 4.22007 1.5177C4.22007 1.5177 4.22006 1.5177 4.22006 1.5177C4.22006 1.5177 4.22005 1.5177 4.22005 1.5177C4.22004 1.5177 4.22004 1.5177 4.22004 1.5177C4.22003 1.5177 4.22003 1.5177 4.22003 1.5177C4.22002 1.5177 4.22002 1.5177 4.22002 1.5177C4.22001 1.5177 4.22001 1.5177 4.22 1.5177C4.22 1.5177 4.22 1.5177 4.21999 1.5177C4.21999 1.5177 4.21999 1.5177 4.21998 1.5177C4.21998 1.5177 4.21998 1.5177 4.21997 1.5177C4.21997 1.5177 4.21996 1.5177 4.21996 1.5177C4.21996 1.5177 4.21995 1.5177 4.21995 1.5177C4.21995 1.5177 4.21994 1.5177 4.21994 1.5177C4.21994 1.5177 4.21993 1.5177 4.21993 1.5177C4.21993 1.5177 4.21992 1.5177 4.21992 1.5177C4.21991 1.5177 4.21991 1.5177 4.21991 1.5177C4.2199 1.5177 4.2199 1.5177 4.2199 1.5177C4.21989 1.5177 4.21989 1.5177 4.21989 1.5177C4.21988 1.5177 4.21988 1.5177 4.21987 1.5177C4.21987 1.5177 4.21987 1.5177 4.21986 1.5177C4.21986 1.5177 4.21986 1.5177 4.21985 1.5177C4.21985 1.5177 4.21985 1.5177 4.21984 1.5177C4.21984 1.5177 4.21984 1.5177 4.21983 1.5177C4.21983 1.5177 4.21982 1.5177 4.21982 1.5177C4.21982 1.5177 4.21981 1.5177 4.21981 1.5177C4.21981 1.5177 4.2198 1.5177 4.2198 1.5177C4.2198 1.5177 4.21979 1.5177 4.21979 1.5177C4.21979 1.5177 4.21978 1.5177 4.21978 1.5177C4.21977 1.5177 4.21977 1.5177 4.21977 1.5177C4.21976 1.5177 4.21976 1.5177 4.21976 1.5177C4.21975 1.5177 4.21975 1.5177 4.21975 1.5177C4.21974 1.5177 4.21974 1.5177 4.21974 1.5177C4.21973 1.5177 4.21973 1.5177 4.21972 1.5177C4.21972 1.5177 4.21972 1.5177 4.21971 1.5177C4.21971 1.5177 4.21971 1.5177 4.2197 1.5177C4.2197 1.5177 4.2197 1.5177 4.21969 1.5177C4.21969 1.5177 4.21969 1.5177 4.21968 1.5177C4.21968 1.5177 4.21968 1.5177 4.21967 1.5177C4.21967 1.5177 4.21966 1.5177 4.21966 1.5177C4.21966 1.5177 4.21965 1.5177 4.21965 1.5177C4.21965 1.5177 4.21964 1.5177 4.21964 1.5177C4.21964 1.5177 4.21963 1.5177 4.21963 1.5177C4.21963 1.5177 4.21962 1.5177 4.21962 1.5177C4.21961 1.5177 4.21961 1.5177 4.21961 1.5177C4.2196 1.5177 4.2196 1.5177 4.2196 1.5177C4.21959 1.5177 4.21959 1.5177 4.21959 1.5177C4.21958 1.5177 4.21958 1.5177 4.21958 1.5177C4.21957 1.5177 4.21957 1.5177 4.21957 1.5177C4.21956 1.5177 4.21956 1.5177 4.21955 1.5177C4.21955 1.5177 4.21955 1.5177 4.21954 1.5177C4.21954 1.5177 4.21954 1.5177 4.21953 1.5177C4.21953 1.5177 4.21953 1.5177 4.21952 1.5177C4.21952 1.5177 4.21952 1.5177 4.21951 1.5177C4.21951 1.5177 4.21951 1.5177 4.2195 1.5177C4.2195 1.5177 4.2195 1.5177 4.21949 1.5177C4.21949 1.5177 4.21948 1.5177 4.21948 1.5177C4.21948 1.5177 4.21947 1.5177 4.21947 1.5177C4.21947 1.5177 4.21946 1.5177 4.21946 1.5177C4.21946 1.5177 4.21945 1.5177 4.21945 1.5177C4.21945 1.5177 4.21944 1.5177 4.21944 1.5177C4.21944 1.5177 4.21943 1.5177 4.21943 1.5177C4.21942 1.5177 4.21942 1.5177 4.21942 1.5177C4.21941 1.5177 4.21941 1.5177 4.21941 1.5177C4.2194 1.5177 4.2194 1.5177 4.2194 1.5177C4.21939 1.5177 4.21939 1.5177 4.21939 1.5177C4.21938 1.5177 4.21938 1.5177 4.21938 1.5177C4.21937 1.5177 4.21937 1.5177 4.21937 1.5177C4.21936 1.5177 4.21936 1.5177 4.21936 1.5177C4.21935 1.5177 4.21935 1.5177 4.21934 1.5177C4.21934 1.5177 4.21934 1.5177 4.21933 1.5177C4.21933 1.5177 4.21933 1.5177 4.21932 1.5177C4.21932 1.5177 4.21932 1.5177 4.21931 1.5177C4.21931 1.5177 4.21931 1.5177 4.2193 1.5177C4.2193 1.5177 4.2193 1.5177 4.21929 1.5177C4.21929 1.5177 4.21929 1.5177 4.21928 1.5177C4.21928 1.5177 4.21927 1.5177 4.21927 1.5177C4.21927 1.5177 4.21926 1.5177 4.21926 1.5177C4.21926 1.5177 4.21925 1.5177 4.21925 1.5177C4.21925 1.5177 4.21924 1.5177 4.21924 1.5177C4.21924 1.5177 4.21923 1.5177 4.21923 1.5177C4.21923 1.5177 4.21922 1.5177 4.21922 1.5177C4.21922 1.5177 4.21921 1.5177 4.21921 1.5177C4.21921 1.5177 4.2192 1.5177 4.2192 1.5177C4.2192 1.5177 4.21919 1.5177 4.21919 1.5177C4.21918 1.5177 4.21918 1.5177 4.21918 1.5177C4.21917 1.5177 4.21917 1.5177 4.21917 1.5177C4.21916 1.5177 4.21916 1.5177 4.21916 1.5177C4.21915 1.5177 4.21915 1.5177 4.21915 1.5177C4.21914 1.5177 4.21914 1.5177 4.21914 1.5177C4.21913 1.5177 4.21913 1.5177 4.21913 1.5177C4.21912 1.5177 4.21912 1.5177 4.21912 1.5177C4.21911 1.5177 4.21911 1.5177 4.21911 1.5177C4.2191 1.5177 4.2191 1.5177 4.2191 1.5177C4.21909 1.5177 4.21909 1.5177 4.21908 1.5177C4.21908 1.5177 4.21908 1.5177 4.21907 1.5177C4.21907 1.5177 4.21907 1.5177 4.21906 1.5177C4.21906 1.5177 4.21906 1.5177 4.21905 1.5177C4.21905 1.5177 4.21905 1.5177 4.21904 1.5177C4.21904 1.5177 4.21904 1.5177 4.21903 1.5177C4.21903 1.5177 4.21903 1.5177 4.21902 1.5177C4.21902 1.5177 4.21902 1.5177 4.21901 1.5177C4.21901 1.5177 4.21901 1.5177 4.219 1.5177C4.219 1.5177 4.219 1.5177 4.21899 1.5177C4.21899 1.5177 4.21899 1.5177 4.21898 1.5177C4.21898 1.5177 4.21898 1.5177 4.21897 1.5177C4.21897 1.5177 4.21897 1.5177 4.21896 1.5177C4.21896 1.5177 4.21896 1.5177 4.21895 1.5177C4.21895 1.5177 4.21894 1.5177 4.21894 1.5177C4.21894 1.5177 4.21893 1.5177 4.21893 1.5177C4.21893 1.5177 4.21892 1.5177 4.21892 1.5177C4.21892 1.5177 4.21891 1.5177 4.21891 1.5177C4.21891 1.5177 4.2189 1.5177 4.2189 1.5177C4.2189 1.5177 4.21889 1.5177 4.21889 1.5177C4.21889 1.5177 4.21888 1.5177 4.21888 1.5177C4.21888 1.5177 4.21887 1.5177 4.21887 1.5177C4.21887 1.5177 4.21886 1.5177 4.21886 1.5177C4.21886 1.5177 4.21885 1.5177 4.21885 1.5177C4.21885 1.5177 4.21884 1.5177 4.21884 1.5177C4.21884 1.5177 4.21883 1.5177 4.21883 1.5177C4.21883 1.5177 4.21882 1.5177 4.21882 1.5177C4.21882 1.5177 4.21881 1.5177 4.21881 1.5177C4.21881 1.5177 4.2188 1.5177 4.2188 1.5177C4.2188 1.5177 4.21879 1.5177 4.21879 1.5177C4.21879 1.5177 4.21878 1.5177 4.21878 1.5177C4.21878 1.5177 4.21877 1.5177 4.21877 1.5177C4.21876 1.5177 4.21876 1.5177 4.21876 1.5177C4.21875 1.5177 4.21875 1.5177 4.21875 1.5177C4.21874 1.5177 4.21874 1.5177 4.21874 1.5177C4.21873 1.5177 4.21873 1.5177 4.21873 1.5177C4.21872 1.5177 4.21872 1.5177 4.21872 1.5177C4.21871 1.5177 4.21871 1.5177 4.21871 1.5177C4.2187 1.5177 4.2187 1.5177 4.2187 1.5177C4.21869 1.5177 4.21869 1.5177 4.21869 1.5177C4.21868 1.5177 4.21868 1.5177 4.21868 1.5177C4.21867 1.5177 4.21867 1.5177 4.21867 1.5177C4.21866 1.5177 4.21866 1.5177 4.21866 1.5177C4.21865 1.5177 4.21865 1.5177 4.21865 1.5177C4.21864 1.5177 4.21864 1.5177 4.21864 1.5177C4.21863 1.5177 4.21863 1.5177 4.21863 1.5177C4.21862 1.5177 4.21862 1.5177 4.21862 1.5177C4.21861 1.5177 4.21861 1.5177 4.21861 1.5177C4.2186 1.5177 4.2186 1.5177 4.2186 1.5177C4.21859 1.5177 4.21859 1.5177 4.21859 1.5177C4.21858 1.5177 4.21858 1.5177 4.21858 1.5177C4.21857 1.5177 4.21857 1.5177 4.21857 1.5177C4.21856 1.5177 4.21856 1.5177 4.21856 1.5177C4.21855 1.5177 4.21855 1.5177 4.21855 1.5177C4.21854 1.5177 4.21854 1.5177 4.21854 1.5177C4.21853 1.5177 4.21853 1.5177 4.21853 1.5177C4.21852 1.5177 4.21852 1.5177 4.21852 1.5177C4.21851 1.5177 4.21851 1.5177 4.21851 1.5177C4.2185 1.5177 4.2185 1.5177 4.2185 1.5177C4.21849 1.5177 4.21849 1.5177 4.21849 1.5177C4.21848 1.5177 4.21848 1.5177 4.21848 1.5177C4.21847 1.5177 4.21847 1.5177 4.21847 1.5177C4.21846 1.5177 4.21846 1.5177 4.21846 1.5177C4.21845 1.5177 4.21845 1.5177 4.21845 1.5177C4.21844 1.5177 4.21844 1.5177 4.21844 1.5177C4.21843 1.5177 4.21843 1.5177 4.21843 1.5177C4.21842 1.5177 4.21842 1.5177 4.21842 1.5177C4.21841 1.5177 4.21841 1.5177 4.21841 1.5177C4.2184 1.5177 4.2184 1.5177 4.2184 1.5177C4.21839 1.5177 4.21839 1.5177 4.21839 1.5177C4.21838 1.5177 4.21838 1.5177 4.21838 1.5177C4.21837 1.5177 4.21837 1.5177 4.21837 1.5177C4.21836 1.5177 4.21836 1.5177 4.21836 1.5177C4.21835 1.5177 4.21835 1.5177 4.21835 1.5177C4.21834 1.5177 4.21834 1.5177 4.21834 1.5177C4.21833 1.5177 4.21833 1.5177 4.21833 1.5177C4.21832 1.5177 4.21832 1.5177 4.21832 1.5177C4.21831 1.5177 4.21831 1.5177 4.21831 1.5177C4.2183 1.5177 4.2183 1.5177 4.2183 1.5177C4.21829 1.5177 4.21829 1.5177 4.21829 1.5177C4.21828 1.5177 4.21828 1.5177 4.21828 1.5177C4.21827 1.5177 4.21827 1.5177 4.21827 1.5177C4.21826 1.5177 4.21826 1.5177 4.21826 1.5177C4.21825 1.5177 4.21825 1.5177 4.21825 1.5177C4.21824 1.5177 4.21824 1.5177 4.21824 1.5177C4.21823 1.5177 4.21823 1.5177 4.21823 1.5177C4.21822 1.5177 4.21822 1.5177 4.21822 1.5177C4.21821 1.5177 4.21821 1.5177 4.21821 1.5177C4.2182 1.5177 4.2182 1.5177 4.2182 1.5177C4.2182 1.5177 4.21819 1.5177 4.21819 1.5177C4.21819 1.5177 4.21818 1.5177 4.21818 1.5177C4.21818 1.5177 4.21817 1.5177 4.21817 1.5177C4.21817 1.5177 4.21816 1.5177 4.21816 1.5177C4.21816 1.5177 4.21815 1.5177 4.21815 1.5177C4.21815 1.5177 4.21814 1.5177 4.21814 1.5177C4.21814 1.5177 4.21813 1.5177 4.21813 1.5177C4.21813 1.5177 4.21812 1.5177 4.21812 1.5177C4.21812 1.5177 4.21811 1.5177 4.21811 1.5177C4.21811 1.5177 4.2181 1.5177 4.2181 1.5177C4.2181 1.5177 4.21809 1.5177 4.21809 1.5177C4.21809 1.5177 4.21808 1.5177 4.21808 1.5177C4.21808 1.5177 4.21807 1.5177 4.21807 1.5177C4.21807 1.5177 4.21806 1.5177 4.21806 1.5177C4.21806 1.5177 4.21805 1.5177 4.21805 1.5177C4.21805 1.5177 4.21804 1.5177 4.21804 1.5177C4.21804 1.5177 4.21803 1.5177 4.21803 1.5177C4.21803 1.5177 4.21802 1.5177 4.21802 1.5177C4.21802 1.5177 4.21802 1.5177 4.21801 1.5177C4.21801 1.5177 4.21801 1.5177 4.218 1.5177C4.218 1.5177 4.218 1.5177 4.21799 1.5177C4.21799 1.5177 4.21799 1.5177 4.21798 1.5177C4.21798 1.5177 4.21798 1.5177 4.21797 1.5177C4.21797 1.5177 4.21797 1.5177 4.21796 1.5177C4.21796 1.5177 4.21796 1.5177 4.21795 1.5177C4.21795 1.5177 4.21795 1.5177 4.21794 1.5177C4.21794 1.5177 4.21794 1.5177 4.21793 1.5177C4.21793 1.5177 4.21793 1.5177 4.21792 1.5177C4.21792 1.5177 4.21792 1.5177 4.21791 1.5177C4.21791 1.5177 4.21791 1.5177 4.2179 1.5177C4.2179 1.5177 4.2179 1.5177 4.21789 1.5177C4.21789 1.5177 4.21789 1.5177 4.21789 1.5177C4.21788 1.5177 4.21788 1.5177 4.21788 1.5177C4.21787 1.5177 4.21787 1.5177 4.21787 1.5177C4.21786 1.5177 4.21786 1.5177 4.21786 1.5177C4.21785 1.5177 4.21785 1.5177 4.21785 1.5177C4.21784 1.5177 4.21784 1.5177 4.21784 1.5177C4.21783 1.5177 4.21783 1.5177 4.21783 1.5177C4.21782 1.5177 4.21782 1.5177 4.21782 1.5177C4.21781 1.5177 4.21781 1.5177 4.21781 1.5177C4.2178 1.5177 4.2178 1.5177 4.2178 1.5177C4.21779 1.5177 4.21779 1.5177 4.21779 1.5177C4.21778 1.5177 4.21778 1.5177 4.21778 1.5177C4.21778 1.5177 4.21777 1.5177 4.21777 1.5177C4.21777 1.5177 4.21776 1.5177 4.21776 1.5177C4.21776 1.5177 4.21775 1.5177 4.21775 1.5177C4.21775 1.5177 4.21774 1.5177 4.21774 1.5177C4.21774 1.5177 4.21773 1.5177 4.21773 1.5177C4.21773 1.5177 4.21772 1.5177 4.21772 1.5177C4.21772 1.5177 4.21771 1.5177 4.21771 1.5177C4.21771 1.5177 4.2177 1.5177 4.2177 1.5177C4.2177 1.5177 4.21769 1.5177 4.21769 1.5177C4.21769 1.5177 4.21768 1.5177 4.21768 1.5177C4.21768 1.5177 4.21768 1.5177 4.21767 1.5177C4.21767 1.5177 4.21767 1.5177 4.21766 1.5177C4.21766 1.5177 4.21766 1.5177 4.21765 1.5177C4.21765 1.5177 4.21765 1.5177 4.21764 1.5177C4.21764 1.5177 4.21764 1.5177 4.21763 1.5177C4.21763 1.5177 4.21763 1.5177 4.21762 1.5177C4.21762 1.5177 4.21762 1.5177 4.21761 1.5177C4.21761 1.5177 4.21761 1.5177 4.2176 1.5177C4.2176 1.5177 4.2176 1.5177 4.2176 1.5177C4.21759 1.5177 4.21759 1.5177 4.21759 1.5177C4.21758 1.5177 4.21758 1.5177 4.21758 1.5177C4.21757 1.5177 4.21757 1.5177 4.21757 1.5177C4.21756 1.5177 4.21756 1.5177 4.21756 1.5177C4.21755 1.5177 4.21755 1.5177 4.21755 1.5177C4.21754 1.5177 4.21754 1.5177 4.21754 1.5177C4.21753 1.5177 4.21753 1.5177 4.21753 1.5177C4.21752 1.5177 4.21752 1.5177 4.21752 1.5177C4.21752 1.5177 4.21751 1.5177 4.21751 1.5177C4.21751 1.5177 4.2175 1.5177 4.2175 1.5177C4.2175 1.5177 4.21749 1.5177 4.21749 1.5177C4.21749 1.5177 4.21748 1.5177 4.21748 1.5177C4.21748 1.5177 4.21747 1.5177 4.21747 1.5177C4.21747 1.5177 4.21746 1.5177 4.21746 1.5177C4.21746 1.5177 4.21745 1.5177 4.21745 1.5177C4.21745 1.5177 4.21744 1.5177 4.21744 1.5177C4.21744 1.5177 4.21744 1.5177 4.21743 1.5177C4.21743 1.5177 4.21743 1.5177 4.21742 1.5177C4.21742 1.5177 4.21742 1.5177 4.21741 1.5177C4.21741 1.5177 4.21741 1.5177 4.2174 1.5177C4.2174 1.5177 4.2174 1.5177 4.21739 1.5177C4.21739 1.5177 4.21739 1.5177 4.21738 1.5177C4.21738 1.5177 4.21738 1.5177 4.21738 1.5177C4.21737 1.5177 4.21737 1.5177 4.21737 1.5177C4.21736 1.5177 4.21736 1.5177 4.21736 1.5177C4.21735 1.5177 4.21735 1.5177 4.21735 1.5177C4.21734 1.5177 4.21734 1.5177 4.21734 1.5177C4.21733 1.5177 4.21733 1.5177 4.21733 1.5177C4.21732 1.5177 4.21732 1.5177 4.21732 1.5177C4.21731 1.5177 4.21731 1.5177 4.21731 1.5177C4.21731 1.5177 4.2173 1.5177 4.2173 1.5177C4.2173 1.5177 4.21729 1.5177 4.21729 1.5177C4.21729 1.5177 4.21728 1.5177 4.21728 1.5177C4.21728 1.5177 4.21727 1.5177 4.21727 1.5177C4.21727 1.5177 4.21726 1.5177 4.21726 1.5177C4.21726 1.5177 4.21725 1.5177 4.21725 1.5177C4.21725 1.5177 4.21724 1.5177 4.21724 1.5177C4.21724 1.5177 4.21724 1.5177 4.21723 1.5177C4.21723 1.5177 4.21723 1.5177 4.21722 1.5177C4.21722 1.5177 4.21722 1.5177 4.21721 1.5177C4.21721 1.5177 4.21721 1.5177 4.2172 1.5177C4.2172 1.5177 4.2172 1.5177 4.21719 1.5177C4.21719 1.5177 4.21719 1.5177 4.21718 1.5177C4.21718 1.5177 4.21718 1.5177 4.21718 1.5177C4.21717 1.5177 4.21717 1.5177 4.21717 1.5177C4.21716 1.5177 4.21716 1.5177 4.21716 1.5177C4.21715 1.5177 4.21715 1.5177 4.21715 1.5177C4.21714 1.5177 4.21714 1.5177 4.21714 1.5177C4.21713 1.5177 4.21713 1.5177 4.21713 1.5177C4.21712 1.5177 4.21712 1.5177 4.21712 1.5177C4.21712 1.5177 4.21711 1.5177 4.21711 1.5177C4.21711 1.5177 4.2171 1.5177 4.2171 1.5177C4.2171 1.5177 4.21709 1.5177 4.21709 1.5177C4.21709 1.5177 4.21708 1.5177 4.21708 1.5177C4.21708 1.5177 4.21707 1.5177 4.21707 1.5177C4.21707 1.5177 4.21707 1.5177 4.21706 1.5177C4.21706 1.5177 4.21706 1.5177 4.21705 1.5177C4.21705 1.5177 4.21705 1.5177 4.21704 1.5177C4.21704 1.5177 4.21704 1.5177 4.21703 1.5177C4.21703 1.5177 4.21703 1.5177 4.21702 1.5177C4.21702 1.5177 4.21702 1.5177 4.21701 1.5177C4.21701 1.5177 4.21701 1.5177 4.21701 1.5177C4.217 1.5177 4.217 1.5177 4.217 1.5177C4.21699 1.5177 4.21699 1.5177 4.21699 1.5177C4.21698 1.5177 4.21698 1.5177 4.21698 1.5177C4.21697 1.5177 4.21697 1.5177 4.21697 1.5177C4.21696 1.5177 4.21696 1.5177 4.21696 1.5177C4.21696 1.5177 4.21695 1.5177 4.21695 1.5177C4.21695 1.5177 4.21694 1.5177 4.21694 1.5177C4.21694 1.5177 4.21693 1.5177 4.21693 1.5177C4.21693 1.5177 4.21692 1.5177 4.21692 1.5177C4.21692 1.5177 4.21691 1.5177 4.21691 1.5177C4.21691 1.5177 4.21691 1.5177 4.2169 1.5177C4.2169 1.5177 4.2169 1.5177 4.21689 1.5177C4.21689 1.5177 4.21689 1.5177 4.21688 1.5177C4.21688 1.5177 4.21688 1.5177 4.21687 1.5177C4.21687 1.5177 4.21687 1.5177 4.21686 1.5177C4.21686 1.5177 4.21686 1.5177 4.21686 1.5177C4.21685 1.5177 4.21685 1.5177 4.21685 1.5177C4.21684 1.5177 4.21684 1.5177 4.21684 1.5177C4.21683 1.5177 4.21683 1.5177 4.21683 1.5177C4.21682 1.5177 4.21682 1.5177 4.21682 1.5177C4.21681 1.5177 4.21681 1.5177 4.21681 1.5177C4.21681 1.5177 4.2168 1.5177 4.2168 1.5177C4.2168 1.5177 4.21679 1.5177 4.21679 1.5177C4.21679 1.5177 4.21678 1.5177 4.21678 1.5177C4.21678 1.5177 4.21677 1.5177 4.21677 1.5177C4.21677 1.5177 4.21676 1.5177 4.21676 1.5177C4.21676 1.5177 4.21676 1.5177 4.21675 1.5177C4.21675 1.5177 4.21675 1.5177 4.21674 1.5177C4.21674 1.5177 4.21674 1.5177 4.21673 1.5177C4.21673 1.5177 4.21673 1.5177 4.21672 1.5177C4.21672 1.5177 4.21672 1.5177 4.21671 1.5177C4.21671 1.5177 4.21671 1.5177 4.21671 1.5177C4.2167 1.5177 4.2167 1.5177 4.2167 1.5177C4.21669 1.5177 4.21669 1.5177 4.21669 1.5177C4.21668 1.5177 4.21668 1.5177 4.21668 1.5177C4.21667 1.5177 4.21667 1.5177 4.21667 1.5177C4.21667 1.5177 4.21666 1.5177 4.21666 1.5177C4.21666 1.5177 4.21665 1.5177 4.21665 1.5177C4.21665 1.5177 4.21664 1.5177 4.21664 1.5177C4.21664 1.5177 4.21663 1.5177 4.21663 1.5177C4.21663 1.5177 4.21662 1.5177 4.21662 1.5177C4.21662 1.5177 4.21662 1.5177 4.21661 1.5177C4.21661 1.5177 4.21661 1.5177 4.2166 1.5177C4.2166 1.5177 4.2166 1.5177 4.21659 1.5177C4.21659 1.5177 4.21659 1.5177 4.21658 1.5177C4.21658 1.5177 4.21658 1.5177 4.21657 1.5177C4.21657 1.5177 4.21657 1.5177 4.21657 1.5177C4.21656 1.5177 4.21656 1.5177 4.21656 1.5177C4.21655 1.5177 4.21655 1.5177 4.21655 1.5177C4.21654 1.5177 4.21654 1.5177 4.21654 1.5177C4.21653 1.5177 4.21653 1.5177 4.21653 1.5177C4.21653 1.5177 4.21652 1.5177 4.21652 1.5177C4.21652 1.5177 4.21651 1.5177 4.21651 1.5177C4.21651 1.5177 4.2165 1.5177 4.2165 1.5177C4.2165 1.5177 4.21649 1.5177 4.21649 1.5177C4.21649 1.5177 4.21649 1.5177 4.21648 1.5177C4.21648 1.5177 4.21648 1.5177 4.21647 1.5177C4.21647 1.5177 4.21647 1.5177 4.21646 1.5177C4.21646 1.5177 4.21646 1.5177 4.21645 1.5177C4.21645 1.5177 4.21645 1.5177 4.21644 1.5177C4.21644 1.5177 4.21644 1.5177 4.21644 1.5177C4.21643 1.5177 4.21643 1.5177 4.21643 1.5177C4.21642 1.5177 4.21642 1.5177 4.21642 1.5177C4.21641 1.5177 4.21641 1.5177 4.21641 1.5177C4.2164 1.5177 4.2164 1.5177 4.2164 1.5177C4.2164 1.5177 4.21639 1.5177 4.21639 1.5177C4.21639 1.5177 4.21638 1.5177 4.21638 1.5177C4.21638 1.5177 4.21637 1.5177 4.21637 1.5177C4.21637 1.5177 4.21636 1.5177 4.21636 1.5177C4.21636 1.5177 4.21636 1.5177 4.21635 1.5177C4.21635 1.5177 4.21635 1.5177 4.21634 1.5177C4.21634 1.5177 4.21634 1.5177 4.21633 1.5177C4.21633 1.5177 4.21633 1.5177 4.21632 1.5177C4.21632 1.5177 4.21632 1.5177 4.21632 1.5177C4.21631 1.5177 4.21631 1.5177 4.21631 1.5177C4.2163 1.5177 4.2163 1.5177 4.2163 1.5177C4.21629 1.5177 4.21629 1.5177 4.21629 1.5177C4.21628 1.5177 4.21628 1.5177 4.21628 1.5177C4.21627 1.5177 4.21627 1.5177 4.21627 1.5177C4.21627 1.5177 4.21626 1.5177 4.21626 1.5177C4.21626 1.5177 4.21625 1.5177 4.21625 1.5177C4.21625 1.5177 4.21624 1.5177 4.21624 1.5177C4.21624 1.5177 4.21623 1.5177 4.21623 1.5177C4.21623 1.5177 4.21623 1.5177 4.21622 1.5177C4.21622 1.5177 4.21622 1.5177 4.21621 1.5177C4.21621 1.5177 4.21621 1.5177 4.2162 1.5177C4.2162 1.5177 4.2162 1.5177 4.21619 1.5177C4.21619 1.5177 4.21619 1.5177 4.21619 1.5177C4.21618 1.5177 4.21618 1.5177 4.21618 1.5177C4.21617 1.5177 4.21617 1.5177 4.21617 1.5177C4.21616 1.5177 4.21616 1.5177 4.21616 1.5177C4.21615 1.5177 4.21615 1.5177 4.21615 1.5177C4.21615 1.5177 4.21614 1.5177 4.21614 1.5177C4.21614 1.5177 4.21613 1.5177 4.21613 1.5177C4.21613 1.5177 4.21612 1.5177 4.21612 1.5177C4.21612 1.5177 4.21611 1.5177 4.21611 1.5177C4.21611 1.5177 4.21611 1.5177 4.2161 1.5177C4.2161 1.5177 4.2161 1.5177 4.21609 1.5177C4.21609 1.5177 4.21609 1.5177 4.21608 1.5177C4.21608 1.5177 4.21608 1.5177 4.21607 1.5177C4.21607 1.5177 4.21607 1.5177 4.21607 1.5177C4.21606 1.5177 4.21606 1.5177 4.21606 1.5177C4.21605 1.5177 4.21605 1.5177 4.21605 1.5177C4.21604 1.5177 4.21604 1.5177 4.21604 1.5177C4.21603 1.5177 4.21603 1.5177 4.21603 1.5177C4.21603 1.5177 4.21602 1.5177 4.21602 1.5177C4.21602 1.5177 4.21601 1.5177 4.21601 1.5177C4.21601 1.5177 4.216 1.5177 4.216 1.5177C4.216 1.5177 4.216 1.5177 4.21599 1.5177C4.21599 1.5177 4.21599 1.5177 4.21598 1.5177C4.21598 1.5177 4.21598 1.5177 4.21597 1.5177C4.21597 1.5177 4.21597 1.5177 4.21596 1.5177C4.21596 1.5177 4.21596 1.5177 4.21596 1.5177C4.21595 1.5177 4.21595 1.5177 4.21595 1.5177C4.21594 1.5177 4.21594 1.5177 4.21594 1.5177C4.21593 1.5177 4.21593 1.5177 4.21593 1.5177C4.21592 1.5177 4.21592 1.5177 4.21592 1.5177C4.21592 1.5177 4.21591 1.5177 4.21591 1.5177C4.21591 1.5177 4.2159 1.5177 4.2159 1.5177C4.2159 1.5177 4.21589 1.5177 4.21589 1.5177C4.21589 1.5177 4.21588 1.5177 4.21588 1.5177C4.21588 1.5177 4.21588 1.5177 4.21587 1.5177C4.21587 1.5177 4.21587 1.5177 4.21586 1.5177C4.21586 1.5177 4.21586 1.5177 4.21585 1.5177C4.21585 1.5177 4.21585 1.5177 4.21584 1.5177C4.21584 1.5177 4.21584 1.5177 4.21584 1.5177C4.21583 1.5177 4.21583 1.5177 4.21583 1.5177C4.21582 1.5177 4.21582 1.5177 4.21582 1.5177C4.21581 1.5177 4.21581 1.5177 4.21581 1.5177C4.21581 1.5177 4.2158 1.5177 4.2158 1.5177C4.2158 1.5177 4.21579 1.5177 4.21579 1.5177C4.21579 1.5177 4.21578 1.5177 4.21578 1.5177C4.21578 1.5177 4.21577 1.5177 4.21577 1.5177C4.21577 1.5177 4.21577 1.5177 4.21576 1.5177C4.21576 1.5177 4.21576 1.5177 4.21575 1.5177C4.21575 1.5177 4.21575 1.5177 4.21574 1.5177C4.21574 1.5177 4.21574 1.5177 4.21573 1.5177C4.21573 1.5177 4.21573 1.5177 4.21573 1.5177C4.21572 1.5177 4.21572 1.5177 4.21572 1.5177C4.21571 1.5177 4.21571 1.5177 4.21571 1.5177C4.2157 1.5177 4.2157 1.5177 4.2157 1.5177C4.21569 1.5177 4.21569 1.5177 4.21569 1.5177C4.21569 1.5177 4.21568 1.5177 4.21568 1.5177C4.21568 1.5177 4.21567 1.5177 4.21567 1.5177C4.21567 1.5177 4.21566 1.5177 4.21566 1.5177C4.21566 1.5177 4.21566 1.5177 4.21565 1.5177C4.21565 1.5177 4.21565 1.5177 4.21564 1.5177C4.21564 1.5177 4.21564 1.5177 4.21563 1.5177C4.21563 1.5177 4.21563 1.5177 4.21562 1.5177C4.21562 1.5177 4.21562 1.5177 4.21562 1.5177C4.21561 1.5177 4.21561 1.5177 4.21561 1.5177C4.2156 1.5177 4.2156 1.5177 4.2156 1.5177C4.21559 1.5177 4.21559 1.5177 4.21559 1.5177C4.21558 1.5177 4.21558 1.5177 4.21558 1.5177C4.21558 1.5177 4.21557 1.5177 4.21557 1.5177C4.21557 1.5177 4.21556 1.5177 4.21556 1.5177C4.21556 1.5177 4.21555 1.5177 4.21555 1.5177C4.21555 1.5177 4.21555 1.5177 4.21554 1.5177C4.21554 1.5177 4.21554 1.5177 4.21553 1.5177C4.21553 1.5177 4.21553 1.5177 4.21552 1.5177C4.21552 1.5177 4.21552 1.5177 4.21551 1.5177C4.21551 1.5177 4.21551 1.5177 4.21551 1.5177C4.2155 1.5177 4.2155 1.5177 4.2155 1.5177C4.21549 1.5177 4.21549 1.5177 4.21549 1.5177C4.21548 1.5177 4.21548 1.5177 4.21548 1.5177C4.21547 1.5177 4.21547 1.5177 4.21547 1.5177C4.21547 1.5177 4.21546 1.5177 4.21546 1.5177C4.21546 1.5177 4.21545 1.5177 4.21545 1.5177C4.21545 1.5177 4.21544 1.5177 4.21544 1.5177C4.21544 1.5177 4.21544 1.5177 4.21543 1.5177C4.21543 1.5177 4.21543 1.5177 4.21542 1.5177C4.21542 1.5177 4.21542 1.5177 4.21541 1.5177C4.21541 1.5177 4.21541 1.5177 4.2154 1.5177C4.2154 1.5177 4.2154 1.5177 4.2154 1.5177C4.21539 1.5177 4.21539 1.5177 4.21539 1.5177C4.21538 1.5177 4.21538 1.5177 4.21538 1.5177C4.21537 1.5177 4.21537 1.5177 4.21537 1.5177C4.21536 1.5177 4.21536 1.5177 4.21536 1.5177C4.21536 1.5177 4.21535 1.5177 4.21535 1.5177C4.21535 1.5177 4.21534 1.5177 4.21534 1.5177C4.21534 1.5177 4.21533 1.5177 4.21533 1.5177C4.21533 1.5177 4.21533 1.5177 4.21532 1.5177C4.21532 1.5177 4.21532 1.5177 4.21531 1.5177C4.21531 1.5177 4.21531 1.5177 4.2153 1.5177C4.2153 1.5177 4.2153 1.5177 4.21529 1.5177C4.21529 1.5177 4.21529 1.5177 4.21529 1.5177C4.21528 1.5177 4.21528 1.5177 4.21528 1.5177C4.21527 1.5177 4.21527 1.5177 4.21527 1.5177C4.21526 1.5177 4.21526 1.5177 4.21526 1.5177C4.21526 1.5177 4.21525 1.5177 4.21525 1.5177C4.21525 1.5177 4.21524 1.5177 4.21524 1.5177C4.21524 1.5177 4.21523 1.5177 4.21523 1.5177C4.21523 1.5177 4.21522 1.5177 4.21522 1.5177C4.21522 1.5177 4.21522 1.5177 4.21521 1.5177V1.9177ZM4.22021 1.9177C4.52802 1.9177 4.77708 1.66794 4.77708 1.36073H4.37708C4.37708 1.44737 4.30676 1.5177 4.22021 1.5177V1.9177ZM4.77708 1.36073C4.77708 1.05351 4.52802 0.803751 4.22021 0.803751V1.20375C4.30676 1.20375 4.37708 1.27408 4.37708 1.36073H4.77708ZM4.22021 0.803751C4.22021 0.803751 4.2202 0.803751 4.2202 0.803751C4.2202 0.803751 4.22019 0.803751 4.22019 0.803751C4.22019 0.803751 4.22018 0.803751 4.22018 0.803751C4.22018 0.803751 4.22017 0.803751 4.22017 0.803751C4.22016 0.803751 4.22016 0.803751 4.22016 0.803751C4.22015 0.803751 4.22015 0.803751 4.22015 0.803751C4.22014 0.803751 4.22014 0.803751 4.22014 0.803751C4.22013 0.803751 4.22013 0.803751 4.22012 0.803751C4.22012 0.803751 4.22012 0.803751 4.22011 0.803751C4.22011 0.803751 4.22011 0.803751 4.2201 0.803751C4.2201 0.803751 4.2201 0.803751 4.22009 0.803751C4.22009 0.803751 4.22008 0.803751 4.22008 0.803751C4.22008 0.803751 4.22007 0.803751 4.22007 0.803751C4.22007 0.803751 4.22006 0.803751 4.22006 0.803751C4.22006 0.803751 4.22005 0.803751 4.22005 0.803751C4.22004 0.803751 4.22004 0.803751 4.22004 0.803751C4.22003 0.803751 4.22003 0.803751 4.22003 0.803751C4.22002 0.803751 4.22002 0.803751 4.22002 0.803751C4.22001 0.803751 4.22001 0.803751 4.22 0.803751C4.22 0.803751 4.22 0.803751 4.21999 0.803751C4.21999 0.803751 4.21999 0.803751 4.21998 0.803751C4.21998 0.803751 4.21998 0.803751 4.21997 0.803751C4.21997 0.803751 4.21996 0.803751 4.21996 0.803751C4.21996 0.803751 4.21995 0.803751 4.21995 0.803751C4.21995 0.803751 4.21994 0.803751 4.21994 0.803751C4.21994 0.803751 4.21993 0.803751 4.21993 0.803751C4.21993 0.803751 4.21992 0.803751 4.21992 0.803751C4.21991 0.803751 4.21991 0.803751 4.21991 0.803751C4.2199 0.803751 4.2199 0.803751 4.2199 0.803751C4.21989 0.803751 4.21989 0.803751 4.21989 0.803751C4.21988 0.803751 4.21988 0.803751 4.21987 0.803751C4.21987 0.803751 4.21987 0.803751 4.21986 0.803751C4.21986 0.803751 4.21986 0.803751 4.21985 0.803751C4.21985 0.803751 4.21985 0.803751 4.21984 0.803751C4.21984 0.803751 4.21984 0.803751 4.21983 0.803751C4.21983 0.803751 4.21982 0.803751 4.21982 0.803751C4.21982 0.803751 4.21981 0.803751 4.21981 0.803751C4.21981 0.803751 4.2198 0.803751 4.2198 0.803751C4.2198 0.803751 4.21979 0.803751 4.21979 0.803751C4.21979 0.803751 4.21978 0.803751 4.21978 0.803751C4.21977 0.803751 4.21977 0.803751 4.21977 0.803751C4.21976 0.803751 4.21976 0.803751 4.21976 0.803751C4.21975 0.803751 4.21975 0.803751 4.21975 0.803751C4.21974 0.803751 4.21974 0.803751 4.21974 0.803751C4.21973 0.803751 4.21973 0.803751 4.21972 0.803751C4.21972 0.803751 4.21972 0.803751 4.21971 0.803751C4.21971 0.803751 4.21971 0.803751 4.2197 0.803751C4.2197 0.803751 4.2197 0.803751 4.21969 0.803751C4.21969 0.803751 4.21969 0.803751 4.21968 0.803751C4.21968 0.803751 4.21967 0.803751 4.21967 0.803751C4.21967 0.803751 4.21966 0.803751 4.21966 0.803751C4.21966 0.803751 4.21965 0.803751 4.21965 0.803751C4.21965 0.803751 4.21964 0.803751 4.21964 0.803751C4.21964 0.803751 4.21963 0.803751 4.21963 0.803751C4.21962 0.803751 4.21962 0.803751 4.21962 0.803751C4.21961 0.803751 4.21961 0.803751 4.21961 0.803751C4.2196 0.803751 4.2196 0.803751 4.2196 0.803751C4.21959 0.803751 4.21959 0.803751 4.21959 0.803751C4.21958 0.803751 4.21958 0.803751 4.21958 0.803751C4.21957 0.803751 4.21957 0.803751 4.21956 0.803751C4.21956 0.803751 4.21956 0.803751 4.21955 0.803751C4.21955 0.803751 4.21955 0.803751 4.21954 0.803751C4.21954 0.803751 4.21954 0.803751 4.21953 0.803751C4.21953 0.803751 4.21953 0.803751 4.21952 0.803751C4.21952 0.803751 4.21952 0.803751 4.21951 0.803751C4.21951 0.803751 4.2195 0.803751 4.2195 0.803751C4.2195 0.803751 4.21949 0.803751 4.21949 0.803751C4.21949 0.803751 4.21948 0.803751 4.21948 0.803751C4.21948 0.803751 4.21947 0.803751 4.21947 0.803751C4.21947 0.803751 4.21946 0.803751 4.21946 0.803751C4.21946 0.803751 4.21945 0.803751 4.21945 0.803751C4.21944 0.803751 4.21944 0.803751 4.21944 0.803751C4.21943 0.803751 4.21943 0.803751 4.21943 0.803751C4.21942 0.803751 4.21942 0.803751 4.21942 0.803751C4.21941 0.803751 4.21941 0.803751 4.21941 0.803751C4.2194 0.803751 4.2194 0.803751 4.2194 0.803751C4.21939 0.803751 4.21939 0.803751 4.21939 0.803751C4.21938 0.803751 4.21938 0.803751 4.21937 0.803751C4.21937 0.803751 4.21937 0.803751 4.21936 0.803751C4.21936 0.803751 4.21936 0.803751 4.21935 0.803751C4.21935 0.803751 4.21935 0.803751 4.21934 0.803751C4.21934 0.803751 4.21934 0.803751 4.21933 0.803751C4.21933 0.803751 4.21933 0.803751 4.21932 0.803751C4.21932 0.803751 4.21932 0.803751 4.21931 0.803751C4.21931 0.803751 4.2193 0.803751 4.2193 0.803751C4.2193 0.803751 4.21929 0.803751 4.21929 0.803751C4.21929 0.803751 4.21928 0.803751 4.21928 0.803751C4.21928 0.803751 4.21927 0.803751 4.21927 0.803751C4.21927 0.803751 4.21926 0.803751 4.21926 0.803751C4.21926 0.803751 4.21925 0.803751 4.21925 0.803751C4.21925 0.803751 4.21924 0.803751 4.21924 0.803751C4.21923 0.803751 4.21923 0.803751 4.21923 0.803751C4.21922 0.803751 4.21922 0.803751 4.21922 0.803751C4.21921 0.803751 4.21921 0.803751 4.21921 0.803751C4.2192 0.803751 4.2192 0.803751 4.2192 0.803751C4.21919 0.803751 4.21919 0.803751 4.21919 0.803751C4.21918 0.803751 4.21918 0.803751 4.21918 0.803751C4.21917 0.803751 4.21917 0.803751 4.21917 0.803751C4.21916 0.803751 4.21916 0.803751 4.21916 0.803751C4.21915 0.803751 4.21915 0.803751 4.21914 0.803751C4.21914 0.803751 4.21914 0.803751 4.21913 0.803751C4.21913 0.803751 4.21913 0.803751 4.21912 0.803751C4.21912 0.803751 4.21912 0.803751 4.21911 0.803751C4.21911 0.803751 4.21911 0.803751 4.2191 0.803751C4.2191 0.803751 4.2191 0.803751 4.21909 0.803751C4.21909 0.803751 4.21909 0.803751 4.21908 0.803751C4.21908 0.803751 4.21908 0.803751 4.21907 0.803751C4.21907 0.803751 4.21906 0.803751 4.21906 0.803751C4.21906 0.803751 4.21905 0.803751 4.21905 0.803751C4.21905 0.803751 4.21904 0.803751 4.21904 0.803751C4.21904 0.803751 4.21903 0.803751 4.21903 0.803751C4.21903 0.803751 4.21902 0.803751 4.21902 0.803751C4.21902 0.803751 4.21901 0.803751 4.21901 0.803751C4.21901 0.803751 4.219 0.803751 4.219 0.803751C4.219 0.803751 4.21899 0.803751 4.21899 0.803751C4.21899 0.803751 4.21898 0.803751 4.21898 0.803751C4.21898 0.803751 4.21897 0.803751 4.21897 0.803751C4.21896 0.803751 4.21896 0.803751 4.21896 0.803751C4.21895 0.803751 4.21895 0.803751 4.21895 0.803751C4.21894 0.803751 4.21894 0.803751 4.21894 0.803751C4.21893 0.803751 4.21893 0.803751 4.21893 0.803751C4.21892 0.803751 4.21892 0.803751 4.21892 0.803751C4.21891 0.803751 4.21891 0.803751 4.21891 0.803751C4.2189 0.803751 4.2189 0.803751 4.2189 0.803751C4.21889 0.803751 4.21889 0.803751 4.21889 0.803751C4.21888 0.803751 4.21888 0.803751 4.21888 0.803751C4.21887 0.803751 4.21887 0.803751 4.21887 0.803751C4.21886 0.803751 4.21886 0.803751 4.21885 0.803751C4.21885 0.803751 4.21885 0.803751 4.21884 0.803751C4.21884 0.803751 4.21884 0.803751 4.21883 0.803751C4.21883 0.803751 4.21883 0.803751 4.21882 0.803751C4.21882 0.803751 4.21882 0.803751 4.21881 0.803751C4.21881 0.803751 4.21881 0.803751 4.2188 0.803751C4.2188 0.803751 4.2188 0.803751 4.21879 0.803751C4.21879 0.803751 4.21879 0.803751 4.21878 0.803751C4.21878 0.803751 4.21878 0.803751 4.21877 0.803751C4.21877 0.803751 4.21877 0.803751 4.21876 0.803751C4.21876 0.803751 4.21876 0.803751 4.21875 0.803751C4.21875 0.803751 4.21875 0.803751 4.21874 0.803751C4.21874 0.803751 4.21873 0.803751 4.21873 0.803751C4.21873 0.803751 4.21872 0.803751 4.21872 0.803751C4.21872 0.803751 4.21871 0.803751 4.21871 0.803751C4.21871 0.803751 4.2187 0.803751 4.2187 0.803751C4.2187 0.803751 4.21869 0.803751 4.21869 0.803751C4.21869 0.803751 4.21868 0.803751 4.21868 0.803751C4.21868 0.803751 4.21867 0.803751 4.21867 0.803751C4.21867 0.803751 4.21866 0.803751 4.21866 0.803751C4.21866 0.803751 4.21865 0.803751 4.21865 0.803751C4.21865 0.803751 4.21864 0.803751 4.21864 0.803751C4.21864 0.803751 4.21863 0.803751 4.21863 0.803751C4.21863 0.803751 4.21862 0.803751 4.21862 0.803751C4.21862 0.803751 4.21861 0.803751 4.21861 0.803751C4.21861 0.803751 4.2186 0.803751 4.2186 0.803751C4.2186 0.803751 4.21859 0.803751 4.21859 0.803751C4.21858 0.803751 4.21858 0.803751 4.21858 0.803751C4.21857 0.803751 4.21857 0.803751 4.21857 0.803751C4.21856 0.803751 4.21856 0.803751 4.21856 0.803751C4.21855 0.803751 4.21855 0.803751 4.21855 0.803751C4.21854 0.803751 4.21854 0.803751 4.21854 0.803751C4.21853 0.803751 4.21853 0.803751 4.21853 0.803751C4.21852 0.803751 4.21852 0.803751 4.21852 0.803751C4.21851 0.803751 4.21851 0.803751 4.21851 0.803751C4.2185 0.803751 4.2185 0.803751 4.2185 0.803751C4.21849 0.803751 4.21849 0.803751 4.21849 0.803751C4.21848 0.803751 4.21848 0.803751 4.21848 0.803751C4.21847 0.803751 4.21847 0.803751 4.21847 0.803751C4.21846 0.803751 4.21846 0.803751 4.21846 0.803751C4.21845 0.803751 4.21845 0.803751 4.21845 0.803751C4.21844 0.803751 4.21844 0.803751 4.21844 0.803751C4.21843 0.803751 4.21843 0.803751 4.21843 0.803751C4.21842 0.803751 4.21842 0.803751 4.21841 0.803751C4.21841 0.803751 4.21841 0.803751 4.2184 0.803751C4.2184 0.803751 4.2184 0.803751 4.21839 0.803751C4.21839 0.803751 4.21839 0.803751 4.21838 0.803751C4.21838 0.803751 4.21838 0.803751 4.21837 0.803751C4.21837 0.803751 4.21837 0.803751 4.21836 0.803751C4.21836 0.803751 4.21836 0.803751 4.21835 0.803751C4.21835 0.803751 4.21835 0.803751 4.21834 0.803751C4.21834 0.803751 4.21834 0.803751 4.21833 0.803751C4.21833 0.803751 4.21833 0.803751 4.21832 0.803751C4.21832 0.803751 4.21832 0.803751 4.21831 0.803751C4.21831 0.803751 4.21831 0.803751 4.2183 0.803751C4.2183 0.803751 4.2183 0.803751 4.21829 0.803751C4.21829 0.803751 4.21829 0.803751 4.21828 0.803751C4.21828 0.803751 4.21828 0.803751 4.21827 0.803751C4.21827 0.803751 4.21827 0.803751 4.21826 0.803751C4.21826 0.803751 4.21826 0.803751 4.21825 0.803751C4.21825 0.803751 4.21825 0.803751 4.21824 0.803751C4.21824 0.803751 4.21824 0.803751 4.21823 0.803751C4.21823 0.803751 4.21823 0.803751 4.21822 0.803751C4.21822 0.803751 4.21822 0.803751 4.21821 0.803751C4.21821 0.803751 4.2182 0.803751 4.2182 0.803751C4.2182 0.803751 4.21819 0.803751 4.21819 0.803751C4.21819 0.803751 4.21818 0.803751 4.21818 0.803751C4.21818 0.803751 4.21817 0.803751 4.21817 0.803751C4.21817 0.803751 4.21816 0.803751 4.21816 0.803751C4.21816 0.803751 4.21815 0.803751 4.21815 0.803751C4.21815 0.803751 4.21814 0.803751 4.21814 0.803751C4.21814 0.803751 4.21813 0.803751 4.21813 0.803751C4.21813 0.803751 4.21812 0.803751 4.21812 0.803751C4.21812 0.803751 4.21811 0.803751 4.21811 0.803751C4.21811 0.803751 4.2181 0.803751 4.2181 0.803751C4.2181 0.803751 4.21809 0.803751 4.21809 0.803751C4.21809 0.803751 4.21808 0.803751 4.21808 0.803751C4.21808 0.803751 4.21807 0.803751 4.21807 0.803751C4.21807 0.803751 4.21806 0.803751 4.21806 0.803751C4.21806 0.803751 4.21805 0.803751 4.21805 0.803751C4.21805 0.803751 4.21804 0.803751 4.21804 0.803751C4.21804 0.803751 4.21803 0.803751 4.21803 0.803751C4.21803 0.803751 4.21802 0.803751 4.21802 0.803751C4.21802 0.803751 4.21801 0.803751 4.21801 0.803751C4.21801 0.803751 4.218 0.803751 4.218 0.803751C4.218 0.803751 4.21799 0.803751 4.21799 0.803751C4.21799 0.803751 4.21798 0.803751 4.21798 0.803751C4.21798 0.803751 4.21797 0.803751 4.21797 0.803751C4.21797 0.803751 4.21796 0.803751 4.21796 0.803751C4.21796 0.803751 4.21795 0.803751 4.21795 0.803751C4.21795 0.803751 4.21794 0.803751 4.21794 0.803751C4.21794 0.803751 4.21793 0.803751 4.21793 0.803751C4.21793 0.803751 4.21792 0.803751 4.21792 0.803751C4.21792 0.803751 4.21791 0.803751 4.21791 0.803751C4.21791 0.803751 4.2179 0.803751 4.2179 0.803751C4.2179 0.803751 4.21789 0.803751 4.21789 0.803751C4.21789 0.803751 4.21788 0.803751 4.21788 0.803751C4.21788 0.803751 4.21787 0.803751 4.21787 0.803751C4.21786 0.803751 4.21786 0.803751 4.21786 0.803751C4.21785 0.803751 4.21785 0.803751 4.21785 0.803751C4.21784 0.803751 4.21784 0.803751 4.21784 0.803751C4.21783 0.803751 4.21783 0.803751 4.21783 0.803751C4.21782 0.803751 4.21782 0.803751 4.21782 0.803751C4.21781 0.803751 4.21781 0.803751 4.21781 0.803751C4.2178 0.803751 4.2178 0.803751 4.2178 0.803751C4.21779 0.803751 4.21779 0.803751 4.21779 0.803751C4.21778 0.803751 4.21778 0.803751 4.21778 0.803751C4.21777 0.803751 4.21777 0.803751 4.21777 0.803751C4.21776 0.803751 4.21776 0.803751 4.21776 0.803751C4.21775 0.803751 4.21775 0.803751 4.21775 0.803751C4.21774 0.803751 4.21774 0.803751 4.21774 0.803751C4.21773 0.803751 4.21773 0.803751 4.21773 0.803751C4.21772 0.803751 4.21772 0.803751 4.21772 0.803751C4.21771 0.803751 4.21771 0.803751 4.21771 0.803751C4.2177 0.803751 4.2177 0.803751 4.2177 0.803751C4.21769 0.803751 4.21769 0.803751 4.21769 0.803751C4.21768 0.803751 4.21768 0.803751 4.21768 0.803751C4.21767 0.803751 4.21767 0.803751 4.21767 0.803751C4.21766 0.803751 4.21766 0.803751 4.21766 0.803751C4.21765 0.803751 4.21765 0.803751 4.21765 0.803751C4.21764 0.803751 4.21764 0.803751 4.21764 0.803751C4.21763 0.803751 4.21763 0.803751 4.21763 0.803751C4.21762 0.803751 4.21762 0.803751 4.21762 0.803751C4.21761 0.803751 4.21761 0.803751 4.21761 0.803751C4.2176 0.803751 4.2176 0.803751 4.2176 0.803751C4.21759 0.803751 4.21759 0.803751 4.21759 0.803751C4.21758 0.803751 4.21758 0.803751 4.21758 0.803751C4.21757 0.803751 4.21757 0.803751 4.21757 0.803751C4.21756 0.803751 4.21756 0.803751 4.21756 0.803751C4.21755 0.803751 4.21755 0.803751 4.21755 0.803751C4.21754 0.803751 4.21754 0.803751 4.21754 0.803751C4.21753 0.803751 4.21753 0.803751 4.21753 0.803751C4.21752 0.803751 4.21752 0.803751 4.21752 0.803751C4.21751 0.803751 4.21751 0.803751 4.21751 0.803751C4.2175 0.803751 4.2175 0.803751 4.2175 0.803751C4.21749 0.803751 4.21749 0.803751 4.21749 0.803751C4.21748 0.803751 4.21748 0.803751 4.21748 0.803751C4.21747 0.803751 4.21747 0.803751 4.21747 0.803751C4.21746 0.803751 4.21746 0.803751 4.21746 0.803751C4.21745 0.803751 4.21745 0.803751 4.21745 0.803751C4.21744 0.803751 4.21744 0.803751 4.21744 0.803751C4.21743 0.803751 4.21743 0.803751 4.21743 0.803751C4.21742 0.803751 4.21742 0.803751 4.21741 0.803751C4.21741 0.803751 4.21741 0.803751 4.2174 0.803751C4.2174 0.803751 4.2174 0.803751 4.21739 0.803751C4.21739 0.803751 4.21739 0.803751 4.21738 0.803751C4.21738 0.803751 4.21738 0.803751 4.21737 0.803751C4.21737 0.803751 4.21737 0.803751 4.21736 0.803751C4.21736 0.803751 4.21736 0.803751 4.21735 0.803751C4.21735 0.803751 4.21735 0.803751 4.21734 0.803751C4.21734 0.803751 4.21734 0.803751 4.21733 0.803751C4.21733 0.803751 4.21733 0.803751 4.21732 0.803751C4.21732 0.803751 4.21732 0.803751 4.21731 0.803751C4.21731 0.803751 4.21731 0.803751 4.2173 0.803751C4.2173 0.803751 4.2173 0.803751 4.21729 0.803751C4.21729 0.803751 4.21729 0.803751 4.21728 0.803751C4.21728 0.803751 4.21728 0.803751 4.21727 0.803751C4.21727 0.803751 4.21727 0.803751 4.21726 0.803751C4.21726 0.803751 4.21726 0.803751 4.21725 0.803751C4.21725 0.803751 4.21725 0.803751 4.21724 0.803751C4.21724 0.803751 4.21724 0.803751 4.21723 0.803751C4.21723 0.803751 4.21723 0.803751 4.21722 0.803751C4.21722 0.803751 4.21722 0.803751 4.21721 0.803751C4.21721 0.803751 4.21721 0.803751 4.2172 0.803751C4.2172 0.803751 4.2172 0.803751 4.21719 0.803751C4.21719 0.803751 4.21719 0.803751 4.21718 0.803751C4.21718 0.803751 4.21718 0.803751 4.21717 0.803751C4.21717 0.803751 4.21717 0.803751 4.21716 0.803751C4.21716 0.803751 4.21716 0.803751 4.21715 0.803751C4.21715 0.803751 4.21715 0.803751 4.21714 0.803751C4.21714 0.803751 4.21714 0.803751 4.21713 0.803751C4.21713 0.803751 4.21713 0.803751 4.21712 0.803751C4.21712 0.803751 4.21712 0.803751 4.21711 0.803751C4.21711 0.803751 4.21711 0.803751 4.2171 0.803751C4.2171 0.803751 4.2171 0.803751 4.21709 0.803751C4.21709 0.803751 4.21709 0.803751 4.21708 0.803751C4.21708 0.803751 4.21708 0.803751 4.21707 0.803751C4.21707 0.803751 4.21707 0.803751 4.21706 0.803751C4.21706 0.803751 4.21706 0.803751 4.21705 0.803751C4.21705 0.803751 4.21705 0.803751 4.21704 0.803751C4.21704 0.803751 4.21704 0.803751 4.21703 0.803751C4.21703 0.803751 4.21702 0.803751 4.21702 0.803751C4.21702 0.803751 4.21701 0.803751 4.21701 0.803751C4.21701 0.803751 4.217 0.803751 4.217 0.803751C4.217 0.803751 4.21699 0.803751 4.21699 0.803751C4.21699 0.803751 4.21698 0.803751 4.21698 0.803751C4.21698 0.803751 4.21697 0.803751 4.21697 0.803751C4.21697 0.803751 4.21696 0.803751 4.21696 0.803751C4.21696 0.803751 4.21695 0.803751 4.21695 0.803751C4.21695 0.803751 4.21694 0.803751 4.21694 0.803751C4.21694 0.803751 4.21693 0.803751 4.21693 0.803751C4.21693 0.803751 4.21692 0.803751 4.21692 0.803751C4.21692 0.803751 4.21691 0.803751 4.21691 0.803751C4.21691 0.803751 4.2169 0.803751 4.2169 0.803751C4.2169 0.803751 4.21689 0.803751 4.21689 0.803751C4.21689 0.803751 4.21688 0.803751 4.21688 0.803751C4.21688 0.803751 4.21687 0.803751 4.21687 0.803751C4.21687 0.803751 4.21686 0.803751 4.21686 0.803751C4.21686 0.803751 4.21685 0.803751 4.21685 0.803751C4.21685 0.803751 4.21684 0.803751 4.21684 0.803751C4.21684 0.803751 4.21683 0.803751 4.21683 0.803751C4.21683 0.803751 4.21682 0.803751 4.21682 0.803751C4.21682 0.803751 4.21681 0.803751 4.21681 0.803751C4.21681 0.803751 4.2168 0.803751 4.2168 0.803751C4.2168 0.803751 4.21679 0.803751 4.21679 0.803751C4.21679 0.803751 4.21678 0.803751 4.21678 0.803751C4.21677 0.803751 4.21677 0.803751 4.21677 0.803751C4.21676 0.803751 4.21676 0.803751 4.21676 0.803751C4.21675 0.803751 4.21675 0.803751 4.21675 0.803751C4.21674 0.803751 4.21674 0.803751 4.21674 0.803751C4.21673 0.803751 4.21673 0.803751 4.21673 0.803751C4.21672 0.803751 4.21672 0.803751 4.21672 0.803751C4.21671 0.803751 4.21671 0.803751 4.21671 0.803751C4.2167 0.803751 4.2167 0.803751 4.2167 0.803751C4.21669 0.803751 4.21669 0.803751 4.21669 0.803751C4.21668 0.803751 4.21668 0.803751 4.21668 0.803751C4.21667 0.803751 4.21667 0.803751 4.21667 0.803751C4.21666 0.803751 4.21666 0.803751 4.21666 0.803751C4.21665 0.803751 4.21665 0.803751 4.21665 0.803751C4.21664 0.803751 4.21664 0.803751 4.21664 0.803751C4.21663 0.803751 4.21663 0.803751 4.21663 0.803751C4.21662 0.803751 4.21662 0.803751 4.21662 0.803751C4.21661 0.803751 4.21661 0.803751 4.21661 0.803751C4.2166 0.803751 4.2166 0.803751 4.2166 0.803751C4.21659 0.803751 4.21659 0.803751 4.21659 0.803751C4.21658 0.803751 4.21658 0.803751 4.21657 0.803751C4.21657 0.803751 4.21657 0.803751 4.21656 0.803751C4.21656 0.803751 4.21656 0.803751 4.21655 0.803751C4.21655 0.803751 4.21655 0.803751 4.21654 0.803751C4.21654 0.803751 4.21654 0.803751 4.21653 0.803751C4.21653 0.803751 4.21653 0.803751 4.21652 0.803751C4.21652 0.803751 4.21652 0.803751 4.21651 0.803751C4.21651 0.803751 4.21651 0.803751 4.2165 0.803751C4.2165 0.803751 4.2165 0.803751 4.21649 0.803751C4.21649 0.803751 4.21649 0.803751 4.21648 0.803751C4.21648 0.803751 4.21648 0.803751 4.21647 0.803751C4.21647 0.803751 4.21647 0.803751 4.21646 0.803751C4.21646 0.803751 4.21646 0.803751 4.21645 0.803751C4.21645 0.803751 4.21645 0.803751 4.21644 0.803751C4.21644 0.803751 4.21644 0.803751 4.21643 0.803751C4.21643 0.803751 4.21642 0.803751 4.21642 0.803751C4.21642 0.803751 4.21641 0.803751 4.21641 0.803751C4.21641 0.803751 4.2164 0.803751 4.2164 0.803751C4.2164 0.803751 4.21639 0.803751 4.21639 0.803751C4.21639 0.803751 4.21638 0.803751 4.21638 0.803751C4.21638 0.803751 4.21637 0.803751 4.21637 0.803751C4.21637 0.803751 4.21636 0.803751 4.21636 0.803751C4.21636 0.803751 4.21635 0.803751 4.21635 0.803751C4.21635 0.803751 4.21634 0.803751 4.21634 0.803751C4.21634 0.803751 4.21633 0.803751 4.21633 0.803751C4.21633 0.803751 4.21632 0.803751 4.21632 0.803751C4.21632 0.803751 4.21631 0.803751 4.21631 0.803751C4.21631 0.803751 4.2163 0.803751 4.2163 0.803751C4.2163 0.803751 4.21629 0.803751 4.21629 0.803751C4.21628 0.803751 4.21628 0.803751 4.21628 0.803751C4.21627 0.803751 4.21627 0.803751 4.21627 0.803751C4.21626 0.803751 4.21626 0.803751 4.21626 0.803751C4.21625 0.803751 4.21625 0.803751 4.21625 0.803751C4.21624 0.803751 4.21624 0.803751 4.21624 0.803751C4.21623 0.803751 4.21623 0.803751 4.21623 0.803751C4.21622 0.803751 4.21622 0.803751 4.21622 0.803751C4.21621 0.803751 4.21621 0.803751 4.21621 0.803751C4.2162 0.803751 4.2162 0.803751 4.2162 0.803751C4.21619 0.803751 4.21619 0.803751 4.21619 0.803751C4.21618 0.803751 4.21618 0.803751 4.21617 0.803751C4.21617 0.803751 4.21617 0.803751 4.21616 0.803751C4.21616 0.803751 4.21616 0.803751 4.21615 0.803751C4.21615 0.803751 4.21615 0.803751 4.21614 0.803751C4.21614 0.803751 4.21614 0.803751 4.21613 0.803751C4.21613 0.803751 4.21613 0.803751 4.21612 0.803751C4.21612 0.803751 4.21612 0.803751 4.21611 0.803751C4.21611 0.803751 4.21611 0.803751 4.2161 0.803751C4.2161 0.803751 4.2161 0.803751 4.21609 0.803751C4.21609 0.803751 4.21608 0.803751 4.21608 0.803751C4.21608 0.803751 4.21607 0.803751 4.21607 0.803751C4.21607 0.803751 4.21606 0.803751 4.21606 0.803751C4.21606 0.803751 4.21605 0.803751 4.21605 0.803751C4.21605 0.803751 4.21604 0.803751 4.21604 0.803751C4.21604 0.803751 4.21603 0.803751 4.21603 0.803751C4.21603 0.803751 4.21602 0.803751 4.21602 0.803751C4.21602 0.803751 4.21601 0.803751 4.21601 0.803751C4.21601 0.803751 4.216 0.803751 4.216 0.803751C4.216 0.803751 4.21599 0.803751 4.21599 0.803751C4.21598 0.803751 4.21598 0.803751 4.21598 0.803751C4.21597 0.803751 4.21597 0.803751 4.21597 0.803751C4.21596 0.803751 4.21596 0.803751 4.21596 0.803751C4.21595 0.803751 4.21595 0.803751 4.21595 0.803751C4.21594 0.803751 4.21594 0.803751 4.21594 0.803751C4.21593 0.803751 4.21593 0.803751 4.21593 0.803751C4.21592 0.803751 4.21592 0.803751 4.21592 0.803751C4.21591 0.803751 4.21591 0.803751 4.2159 0.803751C4.2159 0.803751 4.2159 0.803751 4.21589 0.803751C4.21589 0.803751 4.21589 0.803751 4.21588 0.803751C4.21588 0.803751 4.21588 0.803751 4.21587 0.803751C4.21587 0.803751 4.21587 0.803751 4.21586 0.803751C4.21586 0.803751 4.21586 0.803751 4.21585 0.803751C4.21585 0.803751 4.21585 0.803751 4.21584 0.803751C4.21584 0.803751 4.21584 0.803751 4.21583 0.803751C4.21583 0.803751 4.21582 0.803751 4.21582 0.803751C4.21582 0.803751 4.21581 0.803751 4.21581 0.803751C4.21581 0.803751 4.2158 0.803751 4.2158 0.803751C4.2158 0.803751 4.21579 0.803751 4.21579 0.803751C4.21579 0.803751 4.21578 0.803751 4.21578 0.803751C4.21578 0.803751 4.21577 0.803751 4.21577 0.803751C4.21577 0.803751 4.21576 0.803751 4.21576 0.803751C4.21575 0.803751 4.21575 0.803751 4.21575 0.803751C4.21574 0.803751 4.21574 0.803751 4.21574 0.803751C4.21573 0.803751 4.21573 0.803751 4.21573 0.803751C4.21572 0.803751 4.21572 0.803751 4.21572 0.803751C4.21571 0.803751 4.21571 0.803751 4.21571 0.803751C4.2157 0.803751 4.2157 0.803751 4.2157 0.803751C4.21569 0.803751 4.21569 0.803751 4.21568 0.803751C4.21568 0.803751 4.21568 0.803751 4.21567 0.803751C4.21567 0.803751 4.21567 0.803751 4.21566 0.803751C4.21566 0.803751 4.21566 0.803751 4.21565 0.803751C4.21565 0.803751 4.21565 0.803751 4.21564 0.803751C4.21564 0.803751 4.21564 0.803751 4.21563 0.803751C4.21563 0.803751 4.21562 0.803751 4.21562 0.803751C4.21562 0.803751 4.21561 0.803751 4.21561 0.803751C4.21561 0.803751 4.2156 0.803751 4.2156 0.803751C4.2156 0.803751 4.21559 0.803751 4.21559 0.803751C4.21559 0.803751 4.21558 0.803751 4.21558 0.803751C4.21558 0.803751 4.21557 0.803751 4.21557 0.803751C4.21556 0.803751 4.21556 0.803751 4.21556 0.803751C4.21555 0.803751 4.21555 0.803751 4.21555 0.803751C4.21554 0.803751 4.21554 0.803751 4.21554 0.803751C4.21553 0.803751 4.21553 0.803751 4.21553 0.803751C4.21552 0.803751 4.21552 0.803751 4.21552 0.803751C4.21551 0.803751 4.21551 0.803751 4.2155 0.803751C4.2155 0.803751 4.2155 0.803751 4.21549 0.803751C4.21549 0.803751 4.21549 0.803751 4.21548 0.803751C4.21548 0.803751 4.21548 0.803751 4.21547 0.803751C4.21547 0.803751 4.21547 0.803751 4.21546 0.803751C4.21546 0.803751 4.21545 0.803751 4.21545 0.803751C4.21545 0.803751 4.21544 0.803751 4.21544 0.803751C4.21544 0.803751 4.21543 0.803751 4.21543 0.803751C4.21543 0.803751 4.21542 0.803751 4.21542 0.803751C4.21542 0.803751 4.21541 0.803751 4.21541 0.803751C4.21541 0.803751 4.2154 0.803751 4.2154 0.803751C4.21539 0.803751 4.21539 0.803751 4.21539 0.803751C4.21538 0.803751 4.21538 0.803751 4.21538 0.803751C4.21537 0.803751 4.21537 0.803751 4.21537 0.803751C4.21536 0.803751 4.21536 0.803751 4.21536 0.803751C4.21535 0.803751 4.21535 0.803751 4.21534 0.803751C4.21534 0.803751 4.21534 0.803751 4.21533 0.803751C4.21533 0.803751 4.21533 0.803751 4.21532 0.803751C4.21532 0.803751 4.21532 0.803751 4.21531 0.803751C4.21531 0.803751 4.21531 0.803751 4.2153 0.803751C4.2153 0.803751 4.21529 0.803751 4.21529 0.803751C4.21529 0.803751 4.21528 0.803751 4.21528 0.803751C4.21528 0.803751 4.21527 0.803751 4.21527 0.803751C4.21527 0.803751 4.21526 0.803751 4.21526 0.803751C4.21526 0.803751 4.21525 0.803751 4.21525 0.803751C4.21524 0.803751 4.21524 0.803751 4.21524 0.803751C4.21523 0.803751 4.21523 0.803751 4.21523 0.803751C4.21522 0.803751 4.21522 0.803751 4.21522 0.803751C4.21521 0.803751 4.21521 0.803751 4.2152 0.803751C4.2152 0.803751 4.2152 0.803751 4.21519 0.803751C4.21519 0.803751 4.21519 0.803751 4.21518 0.803751C4.21518 0.803751 4.21518 0.803751 4.21517 0.803751C4.21517 0.803751 4.21517 0.803751 4.21516 0.803751C4.21516 0.803751 4.21515 0.803751 4.21515 0.803751C4.21515 0.803751 4.21514 0.803751 4.21514 0.803751C4.21514 0.803751 4.21513 0.803751 4.21513 0.803751C4.21513 0.803751 4.21512 0.803751 4.21512 0.803751C4.21511 0.803751 4.21511 0.803751 4.21511 0.803751C4.2151 0.803751 4.2151 0.803751 4.2151 0.803751C4.21509 0.803751 4.21509 0.803751 4.21509 0.803751C4.21508 0.803751 4.21508 0.803751 4.21507 0.803751C4.21507 0.803751 4.21507 0.803751 4.21506 0.803751C4.21506 0.803751 4.21506 0.803751 4.21505 0.803751C4.21505 0.803751 4.21505 0.803751 4.21504 0.803751C4.21504 0.803751 4.21503 0.803751 4.21503 0.803751C4.21503 0.803751 4.21502 0.803751 4.21502 0.803751C4.21502 0.803751 4.21501 0.803751 4.21501 0.803751C4.21501 0.803751 4.215 0.803751 4.215 0.803751C4.21499 0.803751 4.21499 0.803751 4.21499 0.803751C4.21498 0.803751 4.21498 0.803751 4.21498 0.803751C4.21497 0.803751 4.21497 0.803751 4.21497 0.803751C4.21496 0.803751 4.21496 0.803751 4.21495 0.803751C4.21495 0.803751 4.21495 0.803751 4.21494 0.803751C4.21494 0.803751 4.21494 0.803751 4.21493 0.803751C4.21493 0.803751 4.21493 0.803751 4.21492 0.803751C4.21492 0.803751 4.21491 0.803751 4.21491 0.803751C4.21491 0.803751 4.2149 0.803751 4.2149 0.803751V1.20375C4.2149 1.20375 4.21491 1.20375 4.21491 1.20375C4.21491 1.20375 4.21492 1.20375 4.21492 1.20375C4.21493 1.20375 4.21493 1.20375 4.21493 1.20375C4.21494 1.20375 4.21494 1.20375 4.21494 1.20375C4.21495 1.20375 4.21495 1.20375 4.21495 1.20375C4.21496 1.20375 4.21496 1.20375 4.21497 1.20375C4.21497 1.20375 4.21497 1.20375 4.21498 1.20375C4.21498 1.20375 4.21498 1.20375 4.21499 1.20375C4.21499 1.20375 4.21499 1.20375 4.215 1.20375C4.215 1.20375 4.21501 1.20375 4.21501 1.20375C4.21501 1.20375 4.21502 1.20375 4.21502 1.20375C4.21502 1.20375 4.21503 1.20375 4.21503 1.20375C4.21503 1.20375 4.21504 1.20375 4.21504 1.20375C4.21505 1.20375 4.21505 1.20375 4.21505 1.20375C4.21506 1.20375 4.21506 1.20375 4.21506 1.20375C4.21507 1.20375 4.21507 1.20375 4.21507 1.20375C4.21508 1.20375 4.21508 1.20375 4.21509 1.20375C4.21509 1.20375 4.21509 1.20375 4.2151 1.20375C4.2151 1.20375 4.2151 1.20375 4.21511 1.20375C4.21511 1.20375 4.21511 1.20375 4.21512 1.20375C4.21512 1.20375 4.21513 1.20375 4.21513 1.20375C4.21513 1.20375 4.21514 1.20375 4.21514 1.20375C4.21514 1.20375 4.21515 1.20375 4.21515 1.20375C4.21515 1.20375 4.21516 1.20375 4.21516 1.20375C4.21517 1.20375 4.21517 1.20375 4.21517 1.20375C4.21518 1.20375 4.21518 1.20375 4.21518 1.20375C4.21519 1.20375 4.21519 1.20375 4.21519 1.20375C4.2152 1.20375 4.2152 1.20375 4.2152 1.20375C4.21521 1.20375 4.21521 1.20375 4.21522 1.20375C4.21522 1.20375 4.21522 1.20375 4.21523 1.20375C4.21523 1.20375 4.21523 1.20375 4.21524 1.20375C4.21524 1.20375 4.21524 1.20375 4.21525 1.20375C4.21525 1.20375 4.21526 1.20375 4.21526 1.20375C4.21526 1.20375 4.21527 1.20375 4.21527 1.20375C4.21527 1.20375 4.21528 1.20375 4.21528 1.20375C4.21528 1.20375 4.21529 1.20375 4.21529 1.20375C4.21529 1.20375 4.2153 1.20375 4.2153 1.20375C4.21531 1.20375 4.21531 1.20375 4.21531 1.20375C4.21532 1.20375 4.21532 1.20375 4.21532 1.20375C4.21533 1.20375 4.21533 1.20375 4.21533 1.20375C4.21534 1.20375 4.21534 1.20375 4.21534 1.20375C4.21535 1.20375 4.21535 1.20375 4.21536 1.20375C4.21536 1.20375 4.21536 1.20375 4.21537 1.20375C4.21537 1.20375 4.21537 1.20375 4.21538 1.20375C4.21538 1.20375 4.21538 1.20375 4.21539 1.20375C4.21539 1.20375 4.21539 1.20375 4.2154 1.20375C4.2154 1.20375 4.21541 1.20375 4.21541 1.20375C4.21541 1.20375 4.21542 1.20375 4.21542 1.20375C4.21542 1.20375 4.21543 1.20375 4.21543 1.20375C4.21543 1.20375 4.21544 1.20375 4.21544 1.20375C4.21544 1.20375 4.21545 1.20375 4.21545 1.20375C4.21545 1.20375 4.21546 1.20375 4.21546 1.20375C4.21547 1.20375 4.21547 1.20375 4.21547 1.20375C4.21548 1.20375 4.21548 1.20375 4.21548 1.20375C4.21549 1.20375 4.21549 1.20375 4.21549 1.20375C4.2155 1.20375 4.2155 1.20375 4.2155 1.20375C4.21551 1.20375 4.21551 1.20375 4.21552 1.20375C4.21552 1.20375 4.21552 1.20375 4.21553 1.20375C4.21553 1.20375 4.21553 1.20375 4.21554 1.20375C4.21554 1.20375 4.21554 1.20375 4.21555 1.20375C4.21555 1.20375 4.21555 1.20375 4.21556 1.20375C4.21556 1.20375 4.21556 1.20375 4.21557 1.20375C4.21557 1.20375 4.21558 1.20375 4.21558 1.20375C4.21558 1.20375 4.21559 1.20375 4.21559 1.20375C4.21559 1.20375 4.2156 1.20375 4.2156 1.20375C4.2156 1.20375 4.21561 1.20375 4.21561 1.20375C4.21561 1.20375 4.21562 1.20375 4.21562 1.20375C4.21562 1.20375 4.21563 1.20375 4.21563 1.20375C4.21564 1.20375 4.21564 1.20375 4.21564 1.20375C4.21565 1.20375 4.21565 1.20375 4.21565 1.20375C4.21566 1.20375 4.21566 1.20375 4.21566 1.20375C4.21567 1.20375 4.21567 1.20375 4.21567 1.20375C4.21568 1.20375 4.21568 1.20375 4.21568 1.20375C4.21569 1.20375 4.21569 1.20375 4.2157 1.20375C4.2157 1.20375 4.2157 1.20375 4.21571 1.20375C4.21571 1.20375 4.21571 1.20375 4.21572 1.20375C4.21572 1.20375 4.21572 1.20375 4.21573 1.20375C4.21573 1.20375 4.21573 1.20375 4.21574 1.20375C4.21574 1.20375 4.21574 1.20375 4.21575 1.20375C4.21575 1.20375 4.21575 1.20375 4.21576 1.20375C4.21576 1.20375 4.21577 1.20375 4.21577 1.20375C4.21577 1.20375 4.21578 1.20375 4.21578 1.20375C4.21578 1.20375 4.21579 1.20375 4.21579 1.20375C4.21579 1.20375 4.2158 1.20375 4.2158 1.20375C4.2158 1.20375 4.21581 1.20375 4.21581 1.20375C4.21581 1.20375 4.21582 1.20375 4.21582 1.20375C4.21582 1.20375 4.21583 1.20375 4.21583 1.20375C4.21584 1.20375 4.21584 1.20375 4.21584 1.20375C4.21585 1.20375 4.21585 1.20375 4.21585 1.20375C4.21586 1.20375 4.21586 1.20375 4.21586 1.20375C4.21587 1.20375 4.21587 1.20375 4.21587 1.20375C4.21588 1.20375 4.21588 1.20375 4.21588 1.20375C4.21589 1.20375 4.21589 1.20375 4.21589 1.20375C4.2159 1.20375 4.2159 1.20375 4.2159 1.20375C4.21591 1.20375 4.21591 1.20375 4.21592 1.20375C4.21592 1.20375 4.21592 1.20375 4.21593 1.20375C4.21593 1.20375 4.21593 1.20375 4.21594 1.20375C4.21594 1.20375 4.21594 1.20375 4.21595 1.20375C4.21595 1.20375 4.21595 1.20375 4.21596 1.20375C4.21596 1.20375 4.21596 1.20375 4.21597 1.20375C4.21597 1.20375 4.21597 1.20375 4.21598 1.20375C4.21598 1.20375 4.21598 1.20375 4.21599 1.20375C4.21599 1.20375 4.216 1.20375 4.216 1.20375C4.216 1.20375 4.21601 1.20375 4.21601 1.20375C4.21601 1.20375 4.21602 1.20375 4.21602 1.20375C4.21602 1.20375 4.21603 1.20375 4.21603 1.20375C4.21603 1.20375 4.21604 1.20375 4.21604 1.20375C4.21604 1.20375 4.21605 1.20375 4.21605 1.20375C4.21605 1.20375 4.21606 1.20375 4.21606 1.20375C4.21606 1.20375 4.21607 1.20375 4.21607 1.20375C4.21607 1.20375 4.21608 1.20375 4.21608 1.20375C4.21608 1.20375 4.21609 1.20375 4.21609 1.20375C4.2161 1.20375 4.2161 1.20375 4.2161 1.20375C4.21611 1.20375 4.21611 1.20375 4.21611 1.20375C4.21612 1.20375 4.21612 1.20375 4.21612 1.20375C4.21613 1.20375 4.21613 1.20375 4.21613 1.20375C4.21614 1.20375 4.21614 1.20375 4.21614 1.20375C4.21615 1.20375 4.21615 1.20375 4.21615 1.20375C4.21616 1.20375 4.21616 1.20375 4.21616 1.20375C4.21617 1.20375 4.21617 1.20375 4.21617 1.20375C4.21618 1.20375 4.21618 1.20375 4.21619 1.20375C4.21619 1.20375 4.21619 1.20375 4.2162 1.20375C4.2162 1.20375 4.2162 1.20375 4.21621 1.20375C4.21621 1.20375 4.21621 1.20375 4.21622 1.20375C4.21622 1.20375 4.21622 1.20375 4.21623 1.20375C4.21623 1.20375 4.21623 1.20375 4.21624 1.20375C4.21624 1.20375 4.21624 1.20375 4.21625 1.20375C4.21625 1.20375 4.21625 1.20375 4.21626 1.20375C4.21626 1.20375 4.21626 1.20375 4.21627 1.20375C4.21627 1.20375 4.21627 1.20375 4.21628 1.20375C4.21628 1.20375 4.21628 1.20375 4.21629 1.20375C4.21629 1.20375 4.2163 1.20375 4.2163 1.20375C4.2163 1.20375 4.21631 1.20375 4.21631 1.20375C4.21631 1.20375 4.21632 1.20375 4.21632 1.20375C4.21632 1.20375 4.21633 1.20375 4.21633 1.20375C4.21633 1.20375 4.21634 1.20375 4.21634 1.20375C4.21634 1.20375 4.21635 1.20375 4.21635 1.20375C4.21635 1.20375 4.21636 1.20375 4.21636 1.20375C4.21636 1.20375 4.21637 1.20375 4.21637 1.20375C4.21637 1.20375 4.21638 1.20375 4.21638 1.20375C4.21638 1.20375 4.21639 1.20375 4.21639 1.20375C4.21639 1.20375 4.2164 1.20375 4.2164 1.20375C4.2164 1.20375 4.21641 1.20375 4.21641 1.20375C4.21641 1.20375 4.21642 1.20375 4.21642 1.20375C4.21642 1.20375 4.21643 1.20375 4.21643 1.20375C4.21644 1.20375 4.21644 1.20375 4.21644 1.20375C4.21645 1.20375 4.21645 1.20375 4.21645 1.20375C4.21646 1.20375 4.21646 1.20375 4.21646 1.20375C4.21647 1.20375 4.21647 1.20375 4.21647 1.20375C4.21648 1.20375 4.21648 1.20375 4.21648 1.20375C4.21649 1.20375 4.21649 1.20375 4.21649 1.20375C4.2165 1.20375 4.2165 1.20375 4.2165 1.20375C4.21651 1.20375 4.21651 1.20375 4.21651 1.20375C4.21652 1.20375 4.21652 1.20375 4.21652 1.20375C4.21653 1.20375 4.21653 1.20375 4.21653 1.20375C4.21654 1.20375 4.21654 1.20375 4.21654 1.20375C4.21655 1.20375 4.21655 1.20375 4.21655 1.20375C4.21656 1.20375 4.21656 1.20375 4.21656 1.20375C4.21657 1.20375 4.21657 1.20375 4.21657 1.20375C4.21658 1.20375 4.21658 1.20375 4.21659 1.20375C4.21659 1.20375 4.21659 1.20375 4.2166 1.20375C4.2166 1.20375 4.2166 1.20375 4.21661 1.20375C4.21661 1.20375 4.21661 1.20375 4.21662 1.20375C4.21662 1.20375 4.21662 1.20375 4.21663 1.20375C4.21663 1.20375 4.21663 1.20375 4.21664 1.20375C4.21664 1.20375 4.21664 1.20375 4.21665 1.20375C4.21665 1.20375 4.21665 1.20375 4.21666 1.20375C4.21666 1.20375 4.21666 1.20375 4.21667 1.20375C4.21667 1.20375 4.21667 1.20375 4.21668 1.20375C4.21668 1.20375 4.21668 1.20375 4.21669 1.20375C4.21669 1.20375 4.21669 1.20375 4.2167 1.20375C4.2167 1.20375 4.2167 1.20375 4.21671 1.20375C4.21671 1.20375 4.21671 1.20375 4.21672 1.20375C4.21672 1.20375 4.21672 1.20375 4.21673 1.20375C4.21673 1.20375 4.21673 1.20375 4.21674 1.20375C4.21674 1.20375 4.21674 1.20375 4.21675 1.20375C4.21675 1.20375 4.21675 1.20375 4.21676 1.20375C4.21676 1.20375 4.21676 1.20375 4.21677 1.20375C4.21677 1.20375 4.21677 1.20375 4.21678 1.20375C4.21678 1.20375 4.21679 1.20375 4.21679 1.20375C4.21679 1.20375 4.2168 1.20375 4.2168 1.20375C4.2168 1.20375 4.21681 1.20375 4.21681 1.20375C4.21681 1.20375 4.21682 1.20375 4.21682 1.20375C4.21682 1.20375 4.21683 1.20375 4.21683 1.20375C4.21683 1.20375 4.21684 1.20375 4.21684 1.20375C4.21684 1.20375 4.21685 1.20375 4.21685 1.20375C4.21685 1.20375 4.21686 1.20375 4.21686 1.20375C4.21686 1.20375 4.21687 1.20375 4.21687 1.20375C4.21687 1.20375 4.21688 1.20375 4.21688 1.20375C4.21688 1.20375 4.21689 1.20375 4.21689 1.20375C4.21689 1.20375 4.2169 1.20375 4.2169 1.20375C4.2169 1.20375 4.21691 1.20375 4.21691 1.20375C4.21691 1.20375 4.21692 1.20375 4.21692 1.20375C4.21692 1.20375 4.21693 1.20375 4.21693 1.20375C4.21693 1.20375 4.21694 1.20375 4.21694 1.20375C4.21694 1.20375 4.21695 1.20375 4.21695 1.20375C4.21695 1.20375 4.21696 1.20375 4.21696 1.20375C4.21696 1.20375 4.21697 1.20375 4.21697 1.20375C4.21697 1.20375 4.21698 1.20375 4.21698 1.20375C4.21698 1.20375 4.21699 1.20375 4.21699 1.20375C4.21699 1.20375 4.217 1.20375 4.217 1.20375C4.217 1.20375 4.21701 1.20375 4.21701 1.20375C4.21701 1.20375 4.21702 1.20375 4.21702 1.20375C4.21702 1.20375 4.21703 1.20375 4.21703 1.20375C4.21704 1.20375 4.21704 1.20375 4.21704 1.20375C4.21705 1.20375 4.21705 1.20375 4.21705 1.20375C4.21706 1.20375 4.21706 1.20375 4.21706 1.20375C4.21707 1.20375 4.21707 1.20375 4.21707 1.20375C4.21708 1.20375 4.21708 1.20375 4.21708 1.20375C4.21709 1.20375 4.21709 1.20375 4.21709 1.20375C4.2171 1.20375 4.2171 1.20375 4.2171 1.20375C4.21711 1.20375 4.21711 1.20375 4.21711 1.20375C4.21712 1.20375 4.21712 1.20375 4.21712 1.20375C4.21713 1.20375 4.21713 1.20375 4.21713 1.20375C4.21714 1.20375 4.21714 1.20375 4.21714 1.20375C4.21715 1.20375 4.21715 1.20375 4.21715 1.20375C4.21716 1.20375 4.21716 1.20375 4.21716 1.20375C4.21717 1.20375 4.21717 1.20375 4.21717 1.20375C4.21718 1.20375 4.21718 1.20375 4.21718 1.20375C4.21719 1.20375 4.21719 1.20375 4.21719 1.20375C4.2172 1.20375 4.2172 1.20375 4.2172 1.20375C4.21721 1.20375 4.21721 1.20375 4.21721 1.20375C4.21722 1.20375 4.21722 1.20375 4.21722 1.20375C4.21723 1.20375 4.21723 1.20375 4.21723 1.20375C4.21724 1.20375 4.21724 1.20375 4.21724 1.20375C4.21725 1.20375 4.21725 1.20375 4.21725 1.20375C4.21726 1.20375 4.21726 1.20375 4.21726 1.20375C4.21727 1.20375 4.21727 1.20375 4.21727 1.20375C4.21728 1.20375 4.21728 1.20375 4.21728 1.20375C4.21729 1.20375 4.21729 1.20375 4.21729 1.20375C4.2173 1.20375 4.2173 1.20375 4.2173 1.20375C4.21731 1.20375 4.21731 1.20375 4.21731 1.20375C4.21732 1.20375 4.21732 1.20375 4.21732 1.20375C4.21733 1.20375 4.21733 1.20375 4.21733 1.20375C4.21734 1.20375 4.21734 1.20375 4.21734 1.20375C4.21735 1.20375 4.21735 1.20375 4.21735 1.20375C4.21736 1.20375 4.21736 1.20375 4.21736 1.20375C4.21737 1.20375 4.21737 1.20375 4.21737 1.20375C4.21738 1.20375 4.21738 1.20375 4.21738 1.20375C4.21739 1.20375 4.21739 1.20375 4.21739 1.20375C4.2174 1.20375 4.2174 1.20375 4.2174 1.20375C4.21741 1.20375 4.21741 1.20375 4.21741 1.20375C4.21742 1.20375 4.21742 1.20375 4.21743 1.20375C4.21743 1.20375 4.21743 1.20375 4.21744 1.20375C4.21744 1.20375 4.21744 1.20375 4.21745 1.20375C4.21745 1.20375 4.21745 1.20375 4.21746 1.20375C4.21746 1.20375 4.21746 1.20375 4.21747 1.20375C4.21747 1.20375 4.21747 1.20375 4.21748 1.20375C4.21748 1.20375 4.21748 1.20375 4.21749 1.20375C4.21749 1.20375 4.21749 1.20375 4.2175 1.20375C4.2175 1.20375 4.2175 1.20375 4.21751 1.20375C4.21751 1.20375 4.21751 1.20375 4.21752 1.20375C4.21752 1.20375 4.21752 1.20375 4.21753 1.20375C4.21753 1.20375 4.21753 1.20375 4.21754 1.20375C4.21754 1.20375 4.21754 1.20375 4.21755 1.20375C4.21755 1.20375 4.21755 1.20375 4.21756 1.20375C4.21756 1.20375 4.21756 1.20375 4.21757 1.20375C4.21757 1.20375 4.21757 1.20375 4.21758 1.20375C4.21758 1.20375 4.21758 1.20375 4.21759 1.20375C4.21759 1.20375 4.21759 1.20375 4.2176 1.20375C4.2176 1.20375 4.2176 1.20375 4.21761 1.20375C4.21761 1.20375 4.21761 1.20375 4.21762 1.20375C4.21762 1.20375 4.21762 1.20375 4.21763 1.20375C4.21763 1.20375 4.21763 1.20375 4.21764 1.20375C4.21764 1.20375 4.21764 1.20375 4.21765 1.20375C4.21765 1.20375 4.21765 1.20375 4.21766 1.20375C4.21766 1.20375 4.21766 1.20375 4.21767 1.20375C4.21767 1.20375 4.21767 1.20375 4.21768 1.20375C4.21768 1.20375 4.21768 1.20375 4.21769 1.20375C4.21769 1.20375 4.21769 1.20375 4.2177 1.20375C4.2177 1.20375 4.2177 1.20375 4.21771 1.20375C4.21771 1.20375 4.21771 1.20375 4.21772 1.20375C4.21772 1.20375 4.21772 1.20375 4.21773 1.20375C4.21773 1.20375 4.21773 1.20375 4.21774 1.20375C4.21774 1.20375 4.21774 1.20375 4.21775 1.20375C4.21775 1.20375 4.21775 1.20375 4.21776 1.20375C4.21776 1.20375 4.21776 1.20375 4.21777 1.20375C4.21777 1.20375 4.21777 1.20375 4.21778 1.20375C4.21778 1.20375 4.21778 1.20375 4.21779 1.20375C4.21779 1.20375 4.21779 1.20375 4.2178 1.20375C4.2178 1.20375 4.2178 1.20375 4.21781 1.20375C4.21781 1.20375 4.21781 1.20375 4.21782 1.20375C4.21782 1.20375 4.21782 1.20375 4.21783 1.20375C4.21783 1.20375 4.21783 1.20375 4.21784 1.20375C4.21784 1.20375 4.21784 1.20375 4.21785 1.20375C4.21785 1.20375 4.21785 1.20375 4.21786 1.20375C4.21786 1.20375 4.21786 1.20375 4.21787 1.20375C4.21787 1.20375 4.21788 1.20375 4.21788 1.20375C4.21788 1.20375 4.21789 1.20375 4.21789 1.20375C4.21789 1.20375 4.2179 1.20375 4.2179 1.20375C4.2179 1.20375 4.21791 1.20375 4.21791 1.20375C4.21791 1.20375 4.21792 1.20375 4.21792 1.20375C4.21792 1.20375 4.21793 1.20375 4.21793 1.20375C4.21793 1.20375 4.21794 1.20375 4.21794 1.20375C4.21794 1.20375 4.21795 1.20375 4.21795 1.20375C4.21795 1.20375 4.21796 1.20375 4.21796 1.20375C4.21796 1.20375 4.21797 1.20375 4.21797 1.20375C4.21797 1.20375 4.21798 1.20375 4.21798 1.20375C4.21798 1.20375 4.21799 1.20375 4.21799 1.20375C4.21799 1.20375 4.218 1.20375 4.218 1.20375C4.218 1.20375 4.21801 1.20375 4.21801 1.20375C4.21801 1.20375 4.21802 1.20375 4.21802 1.20375C4.21802 1.20375 4.21803 1.20375 4.21803 1.20375C4.21803 1.20375 4.21804 1.20375 4.21804 1.20375C4.21804 1.20375 4.21805 1.20375 4.21805 1.20375C4.21805 1.20375 4.21806 1.20375 4.21806 1.20375C4.21806 1.20375 4.21807 1.20375 4.21807 1.20375C4.21807 1.20375 4.21808 1.20375 4.21808 1.20375C4.21808 1.20375 4.21809 1.20375 4.21809 1.20375C4.21809 1.20375 4.2181 1.20375 4.2181 1.20375C4.2181 1.20375 4.21811 1.20375 4.21811 1.20375C4.21811 1.20375 4.21812 1.20375 4.21812 1.20375C4.21812 1.20375 4.21813 1.20375 4.21813 1.20375C4.21813 1.20375 4.21814 1.20375 4.21814 1.20375C4.21814 1.20375 4.21815 1.20375 4.21815 1.20375C4.21815 1.20375 4.21816 1.20375 4.21816 1.20375C4.21816 1.20375 4.21817 1.20375 4.21817 1.20375C4.21817 1.20375 4.21818 1.20375 4.21818 1.20375C4.21818 1.20375 4.21819 1.20375 4.21819 1.20375C4.21819 1.20375 4.2182 1.20375 4.2182 1.20375C4.2182 1.20375 4.21821 1.20375 4.21821 1.20375C4.21822 1.20375 4.21822 1.20375 4.21822 1.20375C4.21823 1.20375 4.21823 1.20375 4.21823 1.20375C4.21824 1.20375 4.21824 1.20375 4.21824 1.20375C4.21825 1.20375 4.21825 1.20375 4.21825 1.20375C4.21826 1.20375 4.21826 1.20375 4.21826 1.20375C4.21827 1.20375 4.21827 1.20375 4.21827 1.20375C4.21828 1.20375 4.21828 1.20375 4.21828 1.20375C4.21829 1.20375 4.21829 1.20375 4.21829 1.20375C4.2183 1.20375 4.2183 1.20375 4.2183 1.20375C4.21831 1.20375 4.21831 1.20375 4.21831 1.20375C4.21832 1.20375 4.21832 1.20375 4.21832 1.20375C4.21833 1.20375 4.21833 1.20375 4.21833 1.20375C4.21834 1.20375 4.21834 1.20375 4.21834 1.20375C4.21835 1.20375 4.21835 1.20375 4.21835 1.20375C4.21836 1.20375 4.21836 1.20375 4.21836 1.20375C4.21837 1.20375 4.21837 1.20375 4.21837 1.20375C4.21838 1.20375 4.21838 1.20375 4.21838 1.20375C4.21839 1.20375 4.21839 1.20375 4.21839 1.20375C4.2184 1.20375 4.2184 1.20375 4.2184 1.20375C4.21841 1.20375 4.21841 1.20375 4.21841 1.20375C4.21842 1.20375 4.21842 1.20375 4.21843 1.20375C4.21843 1.20375 4.21843 1.20375 4.21844 1.20375C4.21844 1.20375 4.21844 1.20375 4.21845 1.20375C4.21845 1.20375 4.21845 1.20375 4.21846 1.20375C4.21846 1.20375 4.21846 1.20375 4.21847 1.20375C4.21847 1.20375 4.21847 1.20375 4.21848 1.20375C4.21848 1.20375 4.21848 1.20375 4.21849 1.20375C4.21849 1.20375 4.21849 1.20375 4.2185 1.20375C4.2185 1.20375 4.2185 1.20375 4.21851 1.20375C4.21851 1.20375 4.21851 1.20375 4.21852 1.20375C4.21852 1.20375 4.21852 1.20375 4.21853 1.20375C4.21853 1.20375 4.21853 1.20375 4.21854 1.20375C4.21854 1.20375 4.21854 1.20375 4.21855 1.20375C4.21855 1.20375 4.21855 1.20375 4.21856 1.20375C4.21856 1.20375 4.21856 1.20375 4.21857 1.20375C4.21857 1.20375 4.21857 1.20375 4.21858 1.20375C4.21858 1.20375 4.21858 1.20375 4.21859 1.20375C4.21859 1.20375 4.2186 1.20375 4.2186 1.20375C4.2186 1.20375 4.21861 1.20375 4.21861 1.20375C4.21861 1.20375 4.21862 1.20375 4.21862 1.20375C4.21862 1.20375 4.21863 1.20375 4.21863 1.20375C4.21863 1.20375 4.21864 1.20375 4.21864 1.20375C4.21864 1.20375 4.21865 1.20375 4.21865 1.20375C4.21865 1.20375 4.21866 1.20375 4.21866 1.20375C4.21866 1.20375 4.21867 1.20375 4.21867 1.20375C4.21867 1.20375 4.21868 1.20375 4.21868 1.20375C4.21868 1.20375 4.21869 1.20375 4.21869 1.20375C4.21869 1.20375 4.2187 1.20375 4.2187 1.20375C4.2187 1.20375 4.21871 1.20375 4.21871 1.20375C4.21871 1.20375 4.21872 1.20375 4.21872 1.20375C4.21872 1.20375 4.21873 1.20375 4.21873 1.20375C4.21873 1.20375 4.21874 1.20375 4.21874 1.20375C4.21875 1.20375 4.21875 1.20375 4.21875 1.20375C4.21876 1.20375 4.21876 1.20375 4.21876 1.20375C4.21877 1.20375 4.21877 1.20375 4.21877 1.20375C4.21878 1.20375 4.21878 1.20375 4.21878 1.20375C4.21879 1.20375 4.21879 1.20375 4.21879 1.20375C4.2188 1.20375 4.2188 1.20375 4.2188 1.20375C4.21881 1.20375 4.21881 1.20375 4.21881 1.20375C4.21882 1.20375 4.21882 1.20375 4.21882 1.20375C4.21883 1.20375 4.21883 1.20375 4.21883 1.20375C4.21884 1.20375 4.21884 1.20375 4.21884 1.20375C4.21885 1.20375 4.21885 1.20375 4.21885 1.20375C4.21886 1.20375 4.21886 1.20375 4.21887 1.20375C4.21887 1.20375 4.21887 1.20375 4.21888 1.20375C4.21888 1.20375 4.21888 1.20375 4.21889 1.20375C4.21889 1.20375 4.21889 1.20375 4.2189 1.20375C4.2189 1.20375 4.2189 1.20375 4.21891 1.20375C4.21891 1.20375 4.21891 1.20375 4.21892 1.20375C4.21892 1.20375 4.21892 1.20375 4.21893 1.20375C4.21893 1.20375 4.21893 1.20375 4.21894 1.20375C4.21894 1.20375 4.21894 1.20375 4.21895 1.20375C4.21895 1.20375 4.21895 1.20375 4.21896 1.20375C4.21896 1.20375 4.21896 1.20375 4.21897 1.20375C4.21897 1.20375 4.21898 1.20375 4.21898 1.20375C4.21898 1.20375 4.21899 1.20375 4.21899 1.20375C4.21899 1.20375 4.219 1.20375 4.219 1.20375C4.219 1.20375 4.21901 1.20375 4.21901 1.20375C4.21901 1.20375 4.21902 1.20375 4.21902 1.20375C4.21902 1.20375 4.21903 1.20375 4.21903 1.20375C4.21903 1.20375 4.21904 1.20375 4.21904 1.20375C4.21904 1.20375 4.21905 1.20375 4.21905 1.20375C4.21905 1.20375 4.21906 1.20375 4.21906 1.20375C4.21906 1.20375 4.21907 1.20375 4.21907 1.20375C4.21908 1.20375 4.21908 1.20375 4.21908 1.20375C4.21909 1.20375 4.21909 1.20375 4.21909 1.20375C4.2191 1.20375 4.2191 1.20375 4.2191 1.20375C4.21911 1.20375 4.21911 1.20375 4.21911 1.20375C4.21912 1.20375 4.21912 1.20375 4.21912 1.20375C4.21913 1.20375 4.21913 1.20375 4.21913 1.20375C4.21914 1.20375 4.21914 1.20375 4.21914 1.20375C4.21915 1.20375 4.21915 1.20375 4.21916 1.20375C4.21916 1.20375 4.21916 1.20375 4.21917 1.20375C4.21917 1.20375 4.21917 1.20375 4.21918 1.20375C4.21918 1.20375 4.21918 1.20375 4.21919 1.20375C4.21919 1.20375 4.21919 1.20375 4.2192 1.20375C4.2192 1.20375 4.2192 1.20375 4.21921 1.20375C4.21921 1.20375 4.21921 1.20375 4.21922 1.20375C4.21922 1.20375 4.21922 1.20375 4.21923 1.20375C4.21923 1.20375 4.21923 1.20375 4.21924 1.20375C4.21924 1.20375 4.21925 1.20375 4.21925 1.20375C4.21925 1.20375 4.21926 1.20375 4.21926 1.20375C4.21926 1.20375 4.21927 1.20375 4.21927 1.20375C4.21927 1.20375 4.21928 1.20375 4.21928 1.20375C4.21928 1.20375 4.21929 1.20375 4.21929 1.20375C4.21929 1.20375 4.2193 1.20375 4.2193 1.20375C4.2193 1.20375 4.21931 1.20375 4.21931 1.20375C4.21932 1.20375 4.21932 1.20375 4.21932 1.20375C4.21933 1.20375 4.21933 1.20375 4.21933 1.20375C4.21934 1.20375 4.21934 1.20375 4.21934 1.20375C4.21935 1.20375 4.21935 1.20375 4.21935 1.20375C4.21936 1.20375 4.21936 1.20375 4.21936 1.20375C4.21937 1.20375 4.21937 1.20375 4.21937 1.20375C4.21938 1.20375 4.21938 1.20375 4.21939 1.20375C4.21939 1.20375 4.21939 1.20375 4.2194 1.20375C4.2194 1.20375 4.2194 1.20375 4.21941 1.20375C4.21941 1.20375 4.21941 1.20375 4.21942 1.20375C4.21942 1.20375 4.21942 1.20375 4.21943 1.20375C4.21943 1.20375 4.21943 1.20375 4.21944 1.20375C4.21944 1.20375 4.21944 1.20375 4.21945 1.20375C4.21945 1.20375 4.21946 1.20375 4.21946 1.20375C4.21946 1.20375 4.21947 1.20375 4.21947 1.20375C4.21947 1.20375 4.21948 1.20375 4.21948 1.20375C4.21948 1.20375 4.21949 1.20375 4.21949 1.20375C4.21949 1.20375 4.2195 1.20375 4.2195 1.20375C4.2195 1.20375 4.21951 1.20375 4.21951 1.20375C4.21952 1.20375 4.21952 1.20375 4.21952 1.20375C4.21953 1.20375 4.21953 1.20375 4.21953 1.20375C4.21954 1.20375 4.21954 1.20375 4.21954 1.20375C4.21955 1.20375 4.21955 1.20375 4.21955 1.20375C4.21956 1.20375 4.21956 1.20375 4.21956 1.20375C4.21957 1.20375 4.21957 1.20375 4.21958 1.20375C4.21958 1.20375 4.21958 1.20375 4.21959 1.20375C4.21959 1.20375 4.21959 1.20375 4.2196 1.20375C4.2196 1.20375 4.2196 1.20375 4.21961 1.20375C4.21961 1.20375 4.21961 1.20375 4.21962 1.20375C4.21962 1.20375 4.21962 1.20375 4.21963 1.20375C4.21963 1.20375 4.21964 1.20375 4.21964 1.20375C4.21964 1.20375 4.21965 1.20375 4.21965 1.20375C4.21965 1.20375 4.21966 1.20375 4.21966 1.20375C4.21966 1.20375 4.21967 1.20375 4.21967 1.20375C4.21967 1.20375 4.21968 1.20375 4.21968 1.20375C4.21969 1.20375 4.21969 1.20375 4.21969 1.20375C4.2197 1.20375 4.2197 1.20375 4.2197 1.20375C4.21971 1.20375 4.21971 1.20375 4.21971 1.20375C4.21972 1.20375 4.21972 1.20375 4.21972 1.20375C4.21973 1.20375 4.21973 1.20375 4.21974 1.20375C4.21974 1.20375 4.21974 1.20375 4.21975 1.20375C4.21975 1.20375 4.21975 1.20375 4.21976 1.20375C4.21976 1.20375 4.21976 1.20375 4.21977 1.20375C4.21977 1.20375 4.21977 1.20375 4.21978 1.20375C4.21978 1.20375 4.21979 1.20375 4.21979 1.20375C4.21979 1.20375 4.2198 1.20375 4.2198 1.20375C4.2198 1.20375 4.21981 1.20375 4.21981 1.20375C4.21981 1.20375 4.21982 1.20375 4.21982 1.20375C4.21982 1.20375 4.21983 1.20375 4.21983 1.20375C4.21984 1.20375 4.21984 1.20375 4.21984 1.20375C4.21985 1.20375 4.21985 1.20375 4.21985 1.20375C4.21986 1.20375 4.21986 1.20375 4.21986 1.20375C4.21987 1.20375 4.21987 1.20375 4.21987 1.20375C4.21988 1.20375 4.21988 1.20375 4.21989 1.20375C4.21989 1.20375 4.21989 1.20375 4.2199 1.20375C4.2199 1.20375 4.2199 1.20375 4.21991 1.20375C4.21991 1.20375 4.21991 1.20375 4.21992 1.20375C4.21992 1.20375 4.21993 1.20375 4.21993 1.20375C4.21993 1.20375 4.21994 1.20375 4.21994 1.20375C4.21994 1.20375 4.21995 1.20375 4.21995 1.20375C4.21995 1.20375 4.21996 1.20375 4.21996 1.20375C4.21996 1.20375 4.21997 1.20375 4.21997 1.20375C4.21998 1.20375 4.21998 1.20375 4.21998 1.20375C4.21999 1.20375 4.21999 1.20375 4.21999 1.20375C4.22 1.20375 4.22 1.20375 4.22 1.20375C4.22001 1.20375 4.22001 1.20375 4.22002 1.20375C4.22002 1.20375 4.22002 1.20375 4.22003 1.20375C4.22003 1.20375 4.22003 1.20375 4.22004 1.20375C4.22004 1.20375 4.22004 1.20375 4.22005 1.20375C4.22005 1.20375 4.22006 1.20375 4.22006 1.20375C4.22006 1.20375 4.22007 1.20375 4.22007 1.20375C4.22007 1.20375 4.22008 1.20375 4.22008 1.20375C4.22008 1.20375 4.22009 1.20375 4.22009 1.20375C4.2201 1.20375 4.2201 1.20375 4.2201 1.20375C4.22011 1.20375 4.22011 1.20375 4.22011 1.20375C4.22012 1.20375 4.22012 1.20375 4.22012 1.20375C4.22013 1.20375 4.22013 1.20375 4.22014 1.20375C4.22014 1.20375 4.22014 1.20375 4.22015 1.20375C4.22015 1.20375 4.22015 1.20375 4.22016 1.20375C4.22016 1.20375 4.22016 1.20375 4.22017 1.20375C4.22017 1.20375 4.22018 1.20375 4.22018 1.20375C4.22018 1.20375 4.22019 1.20375 4.22019 1.20375C4.22019 1.20375 4.2202 1.20375 4.2202 1.20375C4.2202 1.20375 4.22021 1.20375 4.22021 1.20375V0.803751ZM4.2149 0.803751H1.40342V1.20375H4.2149V0.803751ZM1.43418 0.806129C1.40897 0.802207 1.38207 0.800313 1.35624 0.800313V1.20031C1.36354 1.20031 1.36976 1.20092 1.37267 1.20137L1.43418 0.806129ZM1.49769 1.14171L1.498 1.14139L1.2151 0.858606L1.21479 0.858918L1.49769 1.14171ZM10.6286 0.800364C10.6055 0.800889 10.5841 0.802981 10.5645 0.80586L10.6224 1.20164C10.6284 1.20077 10.6333 1.20036 10.6377 1.20026L10.6286 0.800364ZM10.6263 1.20103L10.6282 1.20072L10.5624 0.806161L10.5606 0.806473L10.6263 1.20103ZM10.5953 0.803438H7.78448V1.20344H10.5953V0.803438ZM7.78448 0.803438C7.78447 0.803438 7.78447 0.803438 7.78447 0.803438C7.78446 0.803438 7.78446 0.803438 7.78446 0.803438C7.78445 0.803438 7.78445 0.803438 7.78445 0.803438C7.78444 0.803438 7.78444 0.803438 7.78444 0.803438C7.78444 0.803438 7.78443 0.803438 7.78443 0.803438C7.78443 0.803438 7.78442 0.803438 7.78442 0.803438C7.78442 0.803438 7.78441 0.803438 7.78441 0.803438C7.78441 0.803438 7.78441 0.803438 7.7844 0.803438C7.7844 0.803438 7.7844 0.803438 7.78439 0.803438C7.78439 0.803438 7.78439 0.803438 7.78438 0.803438C7.78438 0.803438 7.78438 0.803438 7.78437 0.803438C7.78437 0.803438 7.78437 0.803438 7.78437 0.803438C7.78436 0.803438 7.78436 0.803438 7.78436 0.803438C7.78435 0.803438 7.78435 0.803438 7.78435 0.803438C7.78434 0.803438 7.78434 0.803438 7.78434 0.803438C7.78434 0.803438 7.78433 0.803438 7.78433 0.803438C7.78433 0.803438 7.78432 0.803438 7.78432 0.803438C7.78432 0.803438 7.78431 0.803438 7.78431 0.803438C7.78431 0.803438 7.7843 0.803438 7.7843 0.803438C7.7843 0.803438 7.7843 0.803438 7.78429 0.803438C7.78429 0.803438 7.78429 0.803438 7.78428 0.803438C7.78428 0.803438 7.78428 0.803438 7.78427 0.803438C7.78427 0.803438 7.78427 0.803438 7.78427 0.803438C7.78426 0.803438 7.78426 0.803438 7.78426 0.803438C7.78425 0.803438 7.78425 0.803438 7.78425 0.803438C7.78424 0.803438 7.78424 0.803438 7.78424 0.803438C7.78423 0.803438 7.78423 0.803438 7.78423 0.803438C7.78422 0.803438 7.78422 0.803438 7.78422 0.803438C7.78422 0.803438 7.78421 0.803438 7.78421 0.803438C7.78421 0.803438 7.7842 0.803438 7.7842 0.803438C7.7842 0.803438 7.78419 0.803438 7.78419 0.803438C7.78419 0.803438 7.78419 0.803438 7.78418 0.803438C7.78418 0.803438 7.78418 0.803438 7.78417 0.803438C7.78417 0.803438 7.78417 0.803438 7.78416 0.803438C7.78416 0.803438 7.78416 0.803438 7.78415 0.803438C7.78415 0.803438 7.78415 0.803438 7.78415 0.803438C7.78414 0.803438 7.78414 0.803438 7.78414 0.803438C7.78413 0.803438 7.78413 0.803438 7.78413 0.803438C7.78412 0.803438 7.78412 0.803438 7.78412 0.803438C7.78412 0.803438 7.78411 0.803438 7.78411 0.803438C7.78411 0.803438 7.7841 0.803438 7.7841 0.803438C7.7841 0.803438 7.78409 0.803438 7.78409 0.803438C7.78409 0.803438 7.78408 0.803438 7.78408 0.803438C7.78408 0.803438 7.78408 0.803438 7.78407 0.803438C7.78407 0.803438 7.78407 0.803438 7.78406 0.803438C7.78406 0.803438 7.78406 0.803438 7.78405 0.803438C7.78405 0.803438 7.78405 0.803438 7.78404 0.803438C7.78404 0.803438 7.78404 0.803438 7.78404 0.803438C7.78403 0.803438 7.78403 0.803438 7.78403 0.803438C7.78402 0.803438 7.78402 0.803438 7.78402 0.803438C7.78401 0.803438 7.78401 0.803438 7.78401 0.803438C7.78401 0.803438 7.784 0.803438 7.784 0.803438C7.784 0.803438 7.78399 0.803438 7.78399 0.803438C7.78399 0.803438 7.78398 0.803438 7.78398 0.803438C7.78398 0.803438 7.78397 0.803438 7.78397 0.803438C7.78397 0.803438 7.78397 0.803438 7.78396 0.803438C7.78396 0.803438 7.78396 0.803438 7.78395 0.803438C7.78395 0.803438 7.78395 0.803438 7.78394 0.803438C7.78394 0.803438 7.78394 0.803438 7.78394 0.803438C7.78393 0.803438 7.78393 0.803438 7.78393 0.803438C7.78392 0.803438 7.78392 0.803438 7.78392 0.803438C7.78391 0.803438 7.78391 0.803438 7.78391 0.803438C7.7839 0.803438 7.7839 0.803438 7.7839 0.803438C7.7839 0.803438 7.78389 0.803438 7.78389 0.803438C7.78389 0.803438 7.78388 0.803438 7.78388 0.803438C7.78388 0.803438 7.78387 0.803438 7.78387 0.803438C7.78387 0.803438 7.78386 0.803438 7.78386 0.803438C7.78386 0.803438 7.78386 0.803438 7.78385 0.803438C7.78385 0.803438 7.78385 0.803438 7.78384 0.803438C7.78384 0.803438 7.78384 0.803438 7.78383 0.803438C7.78383 0.803438 7.78383 0.803438 7.78382 0.803438C7.78382 0.803438 7.78382 0.803438 7.78382 0.803438C7.78381 0.803438 7.78381 0.803438 7.78381 0.803438C7.7838 0.803438 7.7838 0.803438 7.7838 0.803438C7.78379 0.803438 7.78379 0.803438 7.78379 0.803438C7.78378 0.803438 7.78378 0.803438 7.78378 0.803438C7.78378 0.803438 7.78377 0.803438 7.78377 0.803438C7.78377 0.803438 7.78376 0.803438 7.78376 0.803438C7.78376 0.803438 7.78375 0.803438 7.78375 0.803438C7.78375 0.803438 7.78374 0.803438 7.78374 0.803438C7.78374 0.803438 7.78374 0.803438 7.78373 0.803438C7.78373 0.803438 7.78373 0.803438 7.78372 0.803438C7.78372 0.803438 7.78372 0.803438 7.78371 0.803438C7.78371 0.803438 7.78371 0.803438 7.78371 0.803438C7.7837 0.803438 7.7837 0.803438 7.7837 0.803438C7.78369 0.803438 7.78369 0.803438 7.78369 0.803438C7.78368 0.803438 7.78368 0.803438 7.78368 0.803438C7.78367 0.803438 7.78367 0.803438 7.78367 0.803438C7.78367 0.803438 7.78366 0.803438 7.78366 0.803438C7.78366 0.803438 7.78365 0.803438 7.78365 0.803438C7.78365 0.803438 7.78364 0.803438 7.78364 0.803438C7.78364 0.803438 7.78363 0.803438 7.78363 0.803438C7.78363 0.803438 7.78363 0.803438 7.78362 0.803438C7.78362 0.803438 7.78362 0.803438 7.78361 0.803438C7.78361 0.803438 7.78361 0.803438 7.7836 0.803438C7.7836 0.803438 7.7836 0.803438 7.78359 0.803438C7.78359 0.803438 7.78359 0.803438 7.78359 0.803438C7.78358 0.803438 7.78358 0.803438 7.78358 0.803438C7.78357 0.803438 7.78357 0.803438 7.78357 0.803438C7.78356 0.803438 7.78356 0.803438 7.78356 0.803438C7.78355 0.803438 7.78355 0.803438 7.78355 0.803438C7.78355 0.803438 7.78354 0.803438 7.78354 0.803438C7.78354 0.803438 7.78353 0.803438 7.78353 0.803438C7.78353 0.803438 7.78352 0.803438 7.78352 0.803438C7.78352 0.803438 7.78351 0.803438 7.78351 0.803438C7.78351 0.803438 7.78351 0.803438 7.7835 0.803438C7.7835 0.803438 7.7835 0.803438 7.78349 0.803438C7.78349 0.803438 7.78349 0.803438 7.78348 0.803438C7.78348 0.803438 7.78348 0.803438 7.78347 0.803438C7.78347 0.803438 7.78347 0.803438 7.78347 0.803438C7.78346 0.803438 7.78346 0.803438 7.78346 0.803438C7.78345 0.803438 7.78345 0.803438 7.78345 0.803438C7.78344 0.803438 7.78344 0.803438 7.78344 0.803438C7.78343 0.803438 7.78343 0.803438 7.78343 0.803438C7.78343 0.803438 7.78342 0.803438 7.78342 0.803438C7.78342 0.803438 7.78341 0.803438 7.78341 0.803438C7.78341 0.803438 7.7834 0.803438 7.7834 0.803438C7.7834 0.803438 7.78339 0.803438 7.78339 0.803438C7.78339 0.803438 7.78339 0.803438 7.78338 0.803438C7.78338 0.803438 7.78338 0.803438 7.78337 0.803438C7.78337 0.803438 7.78337 0.803438 7.78336 0.803438C7.78336 0.803438 7.78336 0.803438 7.78335 0.803438C7.78335 0.803438 7.78335 0.803438 7.78335 0.803438C7.78334 0.803438 7.78334 0.803438 7.78334 0.803438C7.78333 0.803438 7.78333 0.803438 7.78333 0.803438C7.78332 0.803438 7.78332 0.803438 7.78332 0.803438C7.78331 0.803438 7.78331 0.803438 7.78331 0.803438C7.78331 0.803438 7.7833 0.803438 7.7833 0.803438C7.7833 0.803438 7.78329 0.803438 7.78329 0.803438C7.78329 0.803438 7.78328 0.803438 7.78328 0.803438C7.78328 0.803438 7.78327 0.803438 7.78327 0.803438C7.78327 0.803438 7.78326 0.803438 7.78326 0.803438C7.78326 0.803438 7.78326 0.803438 7.78325 0.803438C7.78325 0.803438 7.78325 0.803438 7.78324 0.803438C7.78324 0.803438 7.78324 0.803438 7.78323 0.803438C7.78323 0.803438 7.78323 0.803438 7.78322 0.803438C7.78322 0.803438 7.78322 0.803438 7.78322 0.803438C7.78321 0.803438 7.78321 0.803438 7.78321 0.803438C7.7832 0.803438 7.7832 0.803438 7.7832 0.803438C7.78319 0.803438 7.78319 0.803438 7.78319 0.803438C7.78318 0.803438 7.78318 0.803438 7.78318 0.803438C7.78317 0.803438 7.78317 0.803438 7.78317 0.803438C7.78317 0.803438 7.78316 0.803438 7.78316 0.803438C7.78316 0.803438 7.78315 0.803438 7.78315 0.803438C7.78315 0.803438 7.78314 0.803438 7.78314 0.803438C7.78314 0.803438 7.78313 0.803438 7.78313 0.803438C7.78313 0.803438 7.78313 0.803438 7.78312 0.803438C7.78312 0.803438 7.78312 0.803438 7.78311 0.803438C7.78311 0.803438 7.78311 0.803438 7.7831 0.803438C7.7831 0.803438 7.7831 0.803438 7.78309 0.803438C7.78309 0.803438 7.78309 0.803438 7.78309 0.803438C7.78308 0.803438 7.78308 0.803438 7.78308 0.803438C7.78307 0.803438 7.78307 0.803438 7.78307 0.803438C7.78306 0.803438 7.78306 0.803438 7.78306 0.803438C7.78305 0.803438 7.78305 0.803438 7.78305 0.803438C7.78304 0.803438 7.78304 0.803438 7.78304 0.803438C7.78304 0.803438 7.78303 0.803438 7.78303 0.803438C7.78303 0.803438 7.78302 0.803438 7.78302 0.803438C7.78302 0.803438 7.78301 0.803438 7.78301 0.803438C7.78301 0.803438 7.783 0.803438 7.783 0.803438C7.783 0.803438 7.783 0.803438 7.78299 0.803438C7.78299 0.803438 7.78299 0.803438 7.78298 0.803438C7.78298 0.803438 7.78298 0.803438 7.78297 0.803438C7.78297 0.803438 7.78297 0.803438 7.78296 0.803438C7.78296 0.803438 7.78296 0.803438 7.78295 0.803438C7.78295 0.803438 7.78295 0.803438 7.78295 0.803438C7.78294 0.803438 7.78294 0.803438 7.78294 0.803438C7.78293 0.803438 7.78293 0.803438 7.78293 0.803438C7.78292 0.803438 7.78292 0.803438 7.78292 0.803438C7.78291 0.803438 7.78291 0.803438 7.78291 0.803438C7.7829 0.803438 7.7829 0.803438 7.7829 0.803438C7.7829 0.803438 7.78289 0.803438 7.78289 0.803438C7.78289 0.803438 7.78288 0.803438 7.78288 0.803438C7.78288 0.803438 7.78287 0.803438 7.78287 0.803438C7.78287 0.803438 7.78286 0.803438 7.78286 0.803438C7.78286 0.803438 7.78285 0.803438 7.78285 0.803438C7.78285 0.803438 7.78285 0.803438 7.78284 0.803438C7.78284 0.803438 7.78284 0.803438 7.78283 0.803438C7.78283 0.803438 7.78283 0.803438 7.78282 0.803438C7.78282 0.803438 7.78282 0.803438 7.78281 0.803438C7.78281 0.803438 7.78281 0.803438 7.7828 0.803438C7.7828 0.803438 7.7828 0.803438 7.7828 0.803438C7.78279 0.803438 7.78279 0.803438 7.78279 0.803438C7.78278 0.803438 7.78278 0.803438 7.78278 0.803438C7.78277 0.803438 7.78277 0.803438 7.78277 0.803438C7.78276 0.803438 7.78276 0.803438 7.78276 0.803438C7.78275 0.803438 7.78275 0.803438 7.78275 0.803438C7.78275 0.803438 7.78274 0.803438 7.78274 0.803438C7.78274 0.803438 7.78273 0.803438 7.78273 0.803438C7.78273 0.803438 7.78272 0.803438 7.78272 0.803438C7.78272 0.803438 7.78271 0.803438 7.78271 0.803438C7.78271 0.803438 7.7827 0.803438 7.7827 0.803438C7.7827 0.803438 7.7827 0.803438 7.78269 0.803438C7.78269 0.803438 7.78269 0.803438 7.78268 0.803438C7.78268 0.803438 7.78268 0.803438 7.78267 0.803438C7.78267 0.803438 7.78267 0.803438 7.78266 0.803438C7.78266 0.803438 7.78266 0.803438 7.78265 0.803438C7.78265 0.803438 7.78265 0.803438 7.78264 0.803438C7.78264 0.803438 7.78264 0.803438 7.78264 0.803438C7.78263 0.803438 7.78263 0.803438 7.78263 0.803438C7.78262 0.803438 7.78262 0.803438 7.78262 0.803438C7.78261 0.803438 7.78261 0.803438 7.78261 0.803438C7.7826 0.803438 7.7826 0.803438 7.7826 0.803438C7.78259 0.803438 7.78259 0.803438 7.78259 0.803438C7.78259 0.803438 7.78258 0.803438 7.78258 0.803438C7.78258 0.803438 7.78257 0.803438 7.78257 0.803438C7.78257 0.803438 7.78256 0.803438 7.78256 0.803438C7.78256 0.803438 7.78255 0.803438 7.78255 0.803438C7.78255 0.803438 7.78254 0.803438 7.78254 0.803438C7.78254 0.803438 7.78253 0.803438 7.78253 0.803438C7.78253 0.803438 7.78253 0.803438 7.78252 0.803438C7.78252 0.803438 7.78252 0.803438 7.78251 0.803438C7.78251 0.803438 7.78251 0.803438 7.7825 0.803438C7.7825 0.803438 7.7825 0.803438 7.78249 0.803438C7.78249 0.803438 7.78249 0.803438 7.78248 0.803438C7.78248 0.803438 7.78248 0.803438 7.78247 0.803438C7.78247 0.803438 7.78247 0.803438 7.78246 0.803438C7.78246 0.803438 7.78246 0.803438 7.78246 0.803438C7.78245 0.803438 7.78245 0.803438 7.78245 0.803438C7.78244 0.803438 7.78244 0.803438 7.78244 0.803438C7.78243 0.803438 7.78243 0.803438 7.78243 0.803438C7.78242 0.803438 7.78242 0.803438 7.78242 0.803438C7.78241 0.803438 7.78241 0.803438 7.78241 0.803438C7.7824 0.803438 7.7824 0.803438 7.7824 0.803438C7.7824 0.803438 7.78239 0.803438 7.78239 0.803438C7.78239 0.803438 7.78238 0.803438 7.78238 0.803438C7.78238 0.803438 7.78237 0.803438 7.78237 0.803438C7.78237 0.803438 7.78236 0.803438 7.78236 0.803438C7.78236 0.803438 7.78235 0.803438 7.78235 0.803438C7.78235 0.803438 7.78234 0.803438 7.78234 0.803438C7.78234 0.803438 7.78234 0.803438 7.78233 0.803438C7.78233 0.803438 7.78233 0.803438 7.78232 0.803438C7.78232 0.803438 7.78232 0.803438 7.78231 0.803438C7.78231 0.803438 7.78231 0.803438 7.7823 0.803438C7.7823 0.803438 7.7823 0.803438 7.78229 0.803438C7.78229 0.803438 7.78229 0.803438 7.78228 0.803438C7.78228 0.803438 7.78228 0.803438 7.78227 0.803438C7.78227 0.803438 7.78227 0.803438 7.78227 0.803438C7.78226 0.803438 7.78226 0.803438 7.78226 0.803438C7.78225 0.803438 7.78225 0.803438 7.78225 0.803438C7.78224 0.803438 7.78224 0.803438 7.78224 0.803438C7.78223 0.803438 7.78223 0.803438 7.78223 0.803438C7.78222 0.803438 7.78222 0.803438 7.78222 0.803438C7.78221 0.803438 7.78221 0.803438 7.78221 0.803438C7.7822 0.803438 7.7822 0.803438 7.7822 0.803438C7.7822 0.803438 7.78219 0.803438 7.78219 0.803438C7.78219 0.803438 7.78218 0.803438 7.78218 0.803438C7.78218 0.803438 7.78217 0.803438 7.78217 0.803438C7.78217 0.803438 7.78216 0.803438 7.78216 0.803438C7.78216 0.803438 7.78215 0.803438 7.78215 0.803438C7.78215 0.803438 7.78214 0.803438 7.78214 0.803438C7.78214 0.803438 7.78213 0.803438 7.78213 0.803438C7.78213 0.803438 7.78212 0.803438 7.78212 0.803438C7.78212 0.803438 7.78212 0.803438 7.78211 0.803438C7.78211 0.803438 7.78211 0.803438 7.7821 0.803438C7.7821 0.803438 7.7821 0.803438 7.78209 0.803438C7.78209 0.803438 7.78209 0.803438 7.78208 0.803438C7.78208 0.803438 7.78208 0.803438 7.78207 0.803438C7.78207 0.803438 7.78207 0.803438 7.78206 0.803438C7.78206 0.803438 7.78206 0.803438 7.78205 0.803438C7.78205 0.803438 7.78205 0.803438 7.78204 0.803438C7.78204 0.803438 7.78204 0.803438 7.78204 0.803438C7.78203 0.803438 7.78203 0.803438 7.78203 0.803438C7.78202 0.803438 7.78202 0.803438 7.78202 0.803438C7.78201 0.803438 7.78201 0.803438 7.78201 0.803438C7.782 0.803438 7.782 0.803438 7.782 0.803438C7.78199 0.803438 7.78199 0.803438 7.78199 0.803438C7.78198 0.803438 7.78198 0.803438 7.78198 0.803438C7.78197 0.803438 7.78197 0.803438 7.78197 0.803438C7.78196 0.803438 7.78196 0.803438 7.78196 0.803438C7.78195 0.803438 7.78195 0.803438 7.78195 0.803438C7.78195 0.803438 7.78194 0.803438 7.78194 0.803438C7.78194 0.803438 7.78193 0.803438 7.78193 0.803438C7.78193 0.803438 7.78192 0.803438 7.78192 0.803438C7.78192 0.803438 7.78191 0.803438 7.78191 0.803438C7.78191 0.803438 7.7819 0.803438 7.7819 0.803438C7.7819 0.803438 7.78189 0.803438 7.78189 0.803438C7.78189 0.803438 7.78188 0.803438 7.78188 0.803438C7.78188 0.803438 7.78187 0.803438 7.78187 0.803438C7.78187 0.803438 7.78186 0.803438 7.78186 0.803438C7.78186 0.803438 7.78185 0.803438 7.78185 0.803438C7.78185 0.803438 7.78185 0.803438 7.78184 0.803438C7.78184 0.803438 7.78184 0.803438 7.78183 0.803438C7.78183 0.803438 7.78183 0.803438 7.78182 0.803438C7.78182 0.803438 7.78182 0.803438 7.78181 0.803438C7.78181 0.803438 7.78181 0.803438 7.7818 0.803438C7.7818 0.803438 7.7818 0.803438 7.78179 0.803438C7.78179 0.803438 7.78179 0.803438 7.78178 0.803438C7.78178 0.803438 7.78178 0.803438 7.78177 0.803438C7.78177 0.803438 7.78177 0.803438 7.78176 0.803438C7.78176 0.803438 7.78176 0.803438 7.78175 0.803438C7.78175 0.803438 7.78175 0.803438 7.78174 0.803438C7.78174 0.803438 7.78174 0.803438 7.78173 0.803438C7.78173 0.803438 7.78173 0.803438 7.78172 0.803438C7.78172 0.803438 7.78172 0.803438 7.78172 0.803438C7.78171 0.803438 7.78171 0.803438 7.78171 0.803438C7.7817 0.803438 7.7817 0.803438 7.7817 0.803438C7.78169 0.803438 7.78169 0.803438 7.78169 0.803438C7.78168 0.803438 7.78168 0.803438 7.78168 0.803438C7.78167 0.803438 7.78167 0.803438 7.78167 0.803438C7.78166 0.803438 7.78166 0.803438 7.78166 0.803438C7.78165 0.803438 7.78165 0.803438 7.78165 0.803438C7.78164 0.803438 7.78164 0.803438 7.78164 0.803438C7.78163 0.803438 7.78163 0.803438 7.78163 0.803438C7.78162 0.803438 7.78162 0.803438 7.78162 0.803438C7.78161 0.803438 7.78161 0.803438 7.78161 0.803438C7.7816 0.803438 7.7816 0.803438 7.7816 0.803438C7.78159 0.803438 7.78159 0.803438 7.78159 0.803438C7.78158 0.803438 7.78158 0.803438 7.78158 0.803438C7.78157 0.803438 7.78157 0.803438 7.78157 0.803438C7.78157 0.803438 7.78156 0.803438 7.78156 0.803438C7.78156 0.803438 7.78155 0.803438 7.78155 0.803438C7.78155 0.803438 7.78154 0.803438 7.78154 0.803438C7.78154 0.803438 7.78153 0.803438 7.78153 0.803438C7.78153 0.803438 7.78152 0.803438 7.78152 0.803438C7.78152 0.803438 7.78151 0.803438 7.78151 0.803438C7.78151 0.803438 7.7815 0.803438 7.7815 0.803438C7.7815 0.803438 7.78149 0.803438 7.78149 0.803438C7.78149 0.803438 7.78148 0.803438 7.78148 0.803438C7.78148 0.803438 7.78147 0.803438 7.78147 0.803438C7.78147 0.803438 7.78146 0.803438 7.78146 0.803438C7.78146 0.803438 7.78145 0.803438 7.78145 0.803438C7.78145 0.803438 7.78144 0.803438 7.78144 0.803438C7.78144 0.803438 7.78143 0.803438 7.78143 0.803438C7.78143 0.803438 7.78142 0.803438 7.78142 0.803438C7.78142 0.803438 7.78141 0.803438 7.78141 0.803438C7.78141 0.803438 7.7814 0.803438 7.7814 0.803438C7.7814 0.803438 7.78139 0.803438 7.78139 0.803438C7.78139 0.803438 7.78138 0.803438 7.78138 0.803438C7.78138 0.803438 7.78137 0.803438 7.78137 0.803438C7.78137 0.803438 7.78136 0.803438 7.78136 0.803438C7.78136 0.803438 7.78135 0.803438 7.78135 0.803438C7.78135 0.803438 7.78134 0.803438 7.78134 0.803438C7.78134 0.803438 7.78133 0.803438 7.78133 0.803438C7.78133 0.803438 7.78132 0.803438 7.78132 0.803438C7.78132 0.803438 7.78131 0.803438 7.78131 0.803438C7.78131 0.803438 7.7813 0.803438 7.7813 0.803438C7.7813 0.803438 7.78129 0.803438 7.78129 0.803438C7.78129 0.803438 7.78128 0.803438 7.78128 0.803438C7.78128 0.803438 7.78127 0.803438 7.78127 0.803438C7.78127 0.803438 7.78126 0.803438 7.78126 0.803438C7.78126 0.803438 7.78125 0.803438 7.78125 0.803438C7.78125 0.803438 7.78124 0.803438 7.78124 0.803438C7.78124 0.803438 7.78123 0.803438 7.78123 0.803438C7.78123 0.803438 7.78123 0.803438 7.78122 0.803438C7.78122 0.803438 7.78122 0.803438 7.78121 0.803438C7.78121 0.803438 7.78121 0.803438 7.7812 0.803438C7.7812 0.803438 7.7812 0.803438 7.78119 0.803438C7.78119 0.803438 7.78119 0.803438 7.78118 0.803438C7.78118 0.803438 7.78118 0.803438 7.78117 0.803438C7.78117 0.803438 7.78117 0.803438 7.78116 0.803438C7.78116 0.803438 7.78116 0.803438 7.78115 0.803438C7.78115 0.803438 7.78115 0.803438 7.78114 0.803438C7.78114 0.803438 7.78114 0.803438 7.78113 0.803438C7.78113 0.803438 7.78113 0.803438 7.78112 0.803438C7.78112 0.803438 7.78112 0.803438 7.78111 0.803438C7.78111 0.803438 7.78111 0.803438 7.7811 0.803438C7.7811 0.803438 7.78109 0.803438 7.78109 0.803438C7.78109 0.803438 7.78108 0.803438 7.78108 0.803438C7.78108 0.803438 7.78107 0.803438 7.78107 0.803438C7.78107 0.803438 7.78106 0.803438 7.78106 0.803438C7.78106 0.803438 7.78105 0.803438 7.78105 0.803438C7.78105 0.803438 7.78104 0.803438 7.78104 0.803438C7.78104 0.803438 7.78103 0.803438 7.78103 0.803438C7.78103 0.803438 7.78102 0.803438 7.78102 0.803438C7.78102 0.803438 7.78101 0.803438 7.78101 0.803438C7.78101 0.803438 7.781 0.803438 7.781 0.803438C7.781 0.803438 7.78099 0.803438 7.78099 0.803438C7.78099 0.803438 7.78098 0.803438 7.78098 0.803438C7.78098 0.803438 7.78097 0.803438 7.78097 0.803438C7.78097 0.803438 7.78096 0.803438 7.78096 0.803438C7.78096 0.803438 7.78095 0.803438 7.78095 0.803438C7.78095 0.803438 7.78094 0.803438 7.78094 0.803438C7.78094 0.803438 7.78093 0.803438 7.78093 0.803438C7.78093 0.803438 7.78092 0.803438 7.78092 0.803438C7.78092 0.803438 7.78091 0.803438 7.78091 0.803438C7.78091 0.803438 7.7809 0.803438 7.7809 0.803438C7.7809 0.803438 7.78089 0.803438 7.78089 0.803438C7.78089 0.803438 7.78088 0.803438 7.78088 0.803438C7.78088 0.803438 7.78087 0.803438 7.78087 0.803438C7.78087 0.803438 7.78086 0.803438 7.78086 0.803438C7.78086 0.803438 7.78085 0.803438 7.78085 0.803438C7.78085 0.803438 7.78084 0.803438 7.78084 0.803438C7.78084 0.803438 7.78083 0.803438 7.78083 0.803438C7.78083 0.803438 7.78082 0.803438 7.78082 0.803438C7.78081 0.803438 7.78081 0.803438 7.78081 0.803438C7.7808 0.803438 7.7808 0.803438 7.7808 0.803438C7.78079 0.803438 7.78079 0.803438 7.78079 0.803438C7.78078 0.803438 7.78078 0.803438 7.78078 0.803438C7.78077 0.803438 7.78077 0.803438 7.78077 0.803438C7.78076 0.803438 7.78076 0.803438 7.78076 0.803438C7.78075 0.803438 7.78075 0.803438 7.78075 0.803438C7.78074 0.803438 7.78074 0.803438 7.78074 0.803438C7.78073 0.803438 7.78073 0.803438 7.78073 0.803438C7.78072 0.803438 7.78072 0.803438 7.78072 0.803438C7.78071 0.803438 7.78071 0.803438 7.78071 0.803438C7.7807 0.803438 7.7807 0.803438 7.7807 0.803438C7.78069 0.803438 7.78069 0.803438 7.78069 0.803438C7.78068 0.803438 7.78068 0.803438 7.78067 0.803438C7.78067 0.803438 7.78067 0.803438 7.78066 0.803438C7.78066 0.803438 7.78066 0.803438 7.78065 0.803438C7.78065 0.803438 7.78065 0.803438 7.78064 0.803438C7.78064 0.803438 7.78064 0.803438 7.78063 0.803438C7.78063 0.803438 7.78063 0.803438 7.78062 0.803438C7.78062 0.803438 7.78062 0.803438 7.78061 0.803438C7.78061 0.803438 7.78061 0.803438 7.7806 0.803438C7.7806 0.803438 7.7806 0.803438 7.78059 0.803438C7.78059 0.803438 7.78059 0.803438 7.78058 0.803438C7.78058 0.803438 7.78058 0.803438 7.78057 0.803438C7.78057 0.803438 7.78057 0.803438 7.78056 0.803438C7.78056 0.803438 7.78055 0.803438 7.78055 0.803438C7.78055 0.803438 7.78054 0.803438 7.78054 0.803438C7.78054 0.803438 7.78053 0.803438 7.78053 0.803438C7.78053 0.803438 7.78052 0.803438 7.78052 0.803438C7.78052 0.803438 7.78051 0.803438 7.78051 0.803438C7.78051 0.803438 7.7805 0.803438 7.7805 0.803438C7.7805 0.803438 7.78049 0.803438 7.78049 0.803438C7.78049 0.803438 7.78048 0.803438 7.78048 0.803438C7.78048 0.803438 7.78047 0.803438 7.78047 0.803438C7.78047 0.803438 7.78046 0.803438 7.78046 0.803438C7.78045 0.803438 7.78045 0.803438 7.78045 0.803438C7.78044 0.803438 7.78044 0.803438 7.78044 0.803438C7.78043 0.803438 7.78043 0.803438 7.78043 0.803438C7.78042 0.803438 7.78042 0.803438 7.78042 0.803438C7.78041 0.803438 7.78041 0.803438 7.78041 0.803438C7.7804 0.803438 7.7804 0.803438 7.7804 0.803438C7.78039 0.803438 7.78039 0.803438 7.78039 0.803438C7.78038 0.803438 7.78038 0.803438 7.78038 0.803438C7.78037 0.803438 7.78037 0.803438 7.78036 0.803438C7.78036 0.803438 7.78036 0.803438 7.78035 0.803438C7.78035 0.803438 7.78035 0.803438 7.78034 0.803438C7.78034 0.803438 7.78034 0.803438 7.78033 0.803438C7.78033 0.803438 7.78033 0.803438 7.78032 0.803438C7.78032 0.803438 7.78032 0.803438 7.78031 0.803438C7.78031 0.803438 7.78031 0.803438 7.7803 0.803438C7.7803 0.803438 7.78029 0.803438 7.78029 0.803438C7.78029 0.803438 7.78028 0.803438 7.78028 0.803438C7.78028 0.803438 7.78027 0.803438 7.78027 0.803438C7.78027 0.803438 7.78026 0.803438 7.78026 0.803438C7.78026 0.803438 7.78025 0.803438 7.78025 0.803438C7.78025 0.803438 7.78024 0.803438 7.78024 0.803438C7.78024 0.803438 7.78023 0.803438 7.78023 0.803438C7.78022 0.803438 7.78022 0.803438 7.78022 0.803438C7.78021 0.803438 7.78021 0.803438 7.78021 0.803438C7.7802 0.803438 7.7802 0.803438 7.7802 0.803438C7.78019 0.803438 7.78019 0.803438 7.78019 0.803438C7.78018 0.803438 7.78018 0.803438 7.78018 0.803438C7.78017 0.803438 7.78017 0.803438 7.78017 0.803438C7.78016 0.803438 7.78016 0.803438 7.78015 0.803438C7.78015 0.803438 7.78015 0.803438 7.78014 0.803438C7.78014 0.803438 7.78014 0.803438 7.78013 0.803438C7.78013 0.803438 7.78013 0.803438 7.78012 0.803438C7.78012 0.803438 7.78012 0.803438 7.78011 0.803438C7.78011 0.803438 7.78011 0.803438 7.7801 0.803438C7.7801 0.803438 7.78009 0.803438 7.78009 0.803438C7.78009 0.803438 7.78008 0.803438 7.78008 0.803438C7.78008 0.803438 7.78007 0.803438 7.78007 0.803438C7.78007 0.803438 7.78006 0.803438 7.78006 0.803438C7.78006 0.803438 7.78005 0.803438 7.78005 0.803438C7.78005 0.803438 7.78004 0.803438 7.78004 0.803438C7.78003 0.803438 7.78003 0.803438 7.78003 0.803438C7.78002 0.803438 7.78002 0.803438 7.78002 0.803438C7.78001 0.803438 7.78001 0.803438 7.78001 0.803438C7.78 0.803438 7.78 0.803438 7.78 0.803438C7.77999 0.803438 7.77999 0.803438 7.77998 0.803438C7.77998 0.803438 7.77998 0.803438 7.77997 0.803438C7.77997 0.803438 7.77997 0.803438 7.77996 0.803438C7.77996 0.803438 7.77996 0.803438 7.77995 0.803438C7.77995 0.803438 7.77995 0.803438 7.77994 0.803438C7.77994 0.803438 7.77993 0.803438 7.77993 0.803438C7.77993 0.803438 7.77992 0.803438 7.77992 0.803438C7.77992 0.803438 7.77991 0.803438 7.77991 0.803438C7.77991 0.803438 7.7799 0.803438 7.7799 0.803438C7.7799 0.803438 7.77989 0.803438 7.77989 0.803438C7.77988 0.803438 7.77988 0.803438 7.77988 0.803438C7.77987 0.803438 7.77987 0.803438 7.77987 0.803438C7.77986 0.803438 7.77986 0.803438 7.77986 0.803438C7.77985 0.803438 7.77985 0.803438 7.77985 0.803438C7.77984 0.803438 7.77984 0.803438 7.77983 0.803438C7.77983 0.803438 7.77983 0.803438 7.77982 0.803438C7.77982 0.803438 7.77982 0.803438 7.77981 0.803438C7.77981 0.803438 7.77981 0.803438 7.7798 0.803438C7.7798 0.803438 7.7798 0.803438 7.77979 0.803438C7.77979 0.803438 7.77978 0.803438 7.77978 0.803438C7.77978 0.803438 7.77977 0.803438 7.77977 0.803438C7.77977 0.803438 7.77976 0.803438 7.77976 0.803438C7.77976 0.803438 7.77975 0.803438 7.77975 0.803438C7.77974 0.803438 7.77974 0.803438 7.77974 0.803438C7.77973 0.803438 7.77973 0.803438 7.77973 0.803438C7.77972 0.803438 7.77972 0.803438 7.77972 0.803438C7.77971 0.803438 7.77971 0.803438 7.77971 0.803438C7.7797 0.803438 7.7797 0.803438 7.77969 0.803438C7.77969 0.803438 7.77969 0.803438 7.77968 0.803438C7.77968 0.803438 7.77968 0.803438 7.77967 0.803438C7.77967 0.803438 7.77967 0.803438 7.77966 0.803438C7.77966 0.803438 7.77965 0.803438 7.77965 0.803438C7.77965 0.803438 7.77964 0.803438 7.77964 0.803438C7.77964 0.803438 7.77963 0.803438 7.77963 0.803438C7.77963 0.803438 7.77962 0.803438 7.77962 0.803438C7.77961 0.803438 7.77961 0.803438 7.77961 0.803438C7.7796 0.803438 7.7796 0.803438 7.7796 0.803438C7.77959 0.803438 7.77959 0.803438 7.77959 0.803438C7.77958 0.803438 7.77958 0.803438 7.77957 0.803438C7.77957 0.803438 7.77957 0.803438 7.77956 0.803438C7.77956 0.803438 7.77956 0.803438 7.77955 0.803438C7.77955 0.803438 7.77955 0.803438 7.77954 0.803438C7.77954 0.803438 7.77953 0.803438 7.77953 0.803438C7.77953 0.803438 7.77952 0.803438 7.77952 0.803438C7.77952 0.803438 7.77951 0.803438 7.77951 0.803438C7.77951 0.803438 7.7795 0.803438 7.7795 0.803438C7.77949 0.803438 7.77949 0.803438 7.77949 0.803438C7.77948 0.803438 7.77948 0.803438 7.77948 0.803438V1.20344C7.77948 1.20344 7.77948 1.20344 7.77949 1.20344C7.77949 1.20344 7.77949 1.20344 7.7795 1.20344C7.7795 1.20344 7.77951 1.20344 7.77951 1.20344C7.77951 1.20344 7.77952 1.20344 7.77952 1.20344C7.77952 1.20344 7.77953 1.20344 7.77953 1.20344C7.77953 1.20344 7.77954 1.20344 7.77954 1.20344C7.77955 1.20344 7.77955 1.20344 7.77955 1.20344C7.77956 1.20344 7.77956 1.20344 7.77956 1.20344C7.77957 1.20344 7.77957 1.20344 7.77957 1.20344C7.77958 1.20344 7.77958 1.20344 7.77959 1.20344C7.77959 1.20344 7.77959 1.20344 7.7796 1.20344C7.7796 1.20344 7.7796 1.20344 7.77961 1.20344C7.77961 1.20344 7.77961 1.20344 7.77962 1.20344C7.77962 1.20344 7.77963 1.20344 7.77963 1.20344C7.77963 1.20344 7.77964 1.20344 7.77964 1.20344C7.77964 1.20344 7.77965 1.20344 7.77965 1.20344C7.77965 1.20344 7.77966 1.20344 7.77966 1.20344C7.77967 1.20344 7.77967 1.20344 7.77967 1.20344C7.77968 1.20344 7.77968 1.20344 7.77968 1.20344C7.77969 1.20344 7.77969 1.20344 7.77969 1.20344C7.7797 1.20344 7.7797 1.20344 7.77971 1.20344C7.77971 1.20344 7.77971 1.20344 7.77972 1.20344C7.77972 1.20344 7.77972 1.20344 7.77973 1.20344C7.77973 1.20344 7.77973 1.20344 7.77974 1.20344C7.77974 1.20344 7.77974 1.20344 7.77975 1.20344C7.77975 1.20344 7.77976 1.20344 7.77976 1.20344C7.77976 1.20344 7.77977 1.20344 7.77977 1.20344C7.77977 1.20344 7.77978 1.20344 7.77978 1.20344C7.77978 1.20344 7.77979 1.20344 7.77979 1.20344C7.7798 1.20344 7.7798 1.20344 7.7798 1.20344C7.77981 1.20344 7.77981 1.20344 7.77981 1.20344C7.77982 1.20344 7.77982 1.20344 7.77982 1.20344C7.77983 1.20344 7.77983 1.20344 7.77983 1.20344C7.77984 1.20344 7.77984 1.20344 7.77985 1.20344C7.77985 1.20344 7.77985 1.20344 7.77986 1.20344C7.77986 1.20344 7.77986 1.20344 7.77987 1.20344C7.77987 1.20344 7.77987 1.20344 7.77988 1.20344C7.77988 1.20344 7.77988 1.20344 7.77989 1.20344C7.77989 1.20344 7.7799 1.20344 7.7799 1.20344C7.7799 1.20344 7.77991 1.20344 7.77991 1.20344C7.77991 1.20344 7.77992 1.20344 7.77992 1.20344C7.77992 1.20344 7.77993 1.20344 7.77993 1.20344C7.77993 1.20344 7.77994 1.20344 7.77994 1.20344C7.77995 1.20344 7.77995 1.20344 7.77995 1.20344C7.77996 1.20344 7.77996 1.20344 7.77996 1.20344C7.77997 1.20344 7.77997 1.20344 7.77997 1.20344C7.77998 1.20344 7.77998 1.20344 7.77998 1.20344C7.77999 1.20344 7.77999 1.20344 7.78 1.20344C7.78 1.20344 7.78 1.20344 7.78001 1.20344C7.78001 1.20344 7.78001 1.20344 7.78002 1.20344C7.78002 1.20344 7.78002 1.20344 7.78003 1.20344C7.78003 1.20344 7.78003 1.20344 7.78004 1.20344C7.78004 1.20344 7.78005 1.20344 7.78005 1.20344C7.78005 1.20344 7.78006 1.20344 7.78006 1.20344C7.78006 1.20344 7.78007 1.20344 7.78007 1.20344C7.78007 1.20344 7.78008 1.20344 7.78008 1.20344C7.78008 1.20344 7.78009 1.20344 7.78009 1.20344C7.78009 1.20344 7.7801 1.20344 7.7801 1.20344C7.78011 1.20344 7.78011 1.20344 7.78011 1.20344C7.78012 1.20344 7.78012 1.20344 7.78012 1.20344C7.78013 1.20344 7.78013 1.20344 7.78013 1.20344C7.78014 1.20344 7.78014 1.20344 7.78014 1.20344C7.78015 1.20344 7.78015 1.20344 7.78015 1.20344C7.78016 1.20344 7.78016 1.20344 7.78017 1.20344C7.78017 1.20344 7.78017 1.20344 7.78018 1.20344C7.78018 1.20344 7.78018 1.20344 7.78019 1.20344C7.78019 1.20344 7.78019 1.20344 7.7802 1.20344C7.7802 1.20344 7.7802 1.20344 7.78021 1.20344C7.78021 1.20344 7.78021 1.20344 7.78022 1.20344C7.78022 1.20344 7.78022 1.20344 7.78023 1.20344C7.78023 1.20344 7.78024 1.20344 7.78024 1.20344C7.78024 1.20344 7.78025 1.20344 7.78025 1.20344C7.78025 1.20344 7.78026 1.20344 7.78026 1.20344C7.78026 1.20344 7.78027 1.20344 7.78027 1.20344C7.78027 1.20344 7.78028 1.20344 7.78028 1.20344C7.78028 1.20344 7.78029 1.20344 7.78029 1.20344C7.78029 1.20344 7.7803 1.20344 7.7803 1.20344C7.78031 1.20344 7.78031 1.20344 7.78031 1.20344C7.78032 1.20344 7.78032 1.20344 7.78032 1.20344C7.78033 1.20344 7.78033 1.20344 7.78033 1.20344C7.78034 1.20344 7.78034 1.20344 7.78034 1.20344C7.78035 1.20344 7.78035 1.20344 7.78035 1.20344C7.78036 1.20344 7.78036 1.20344 7.78036 1.20344C7.78037 1.20344 7.78037 1.20344 7.78038 1.20344C7.78038 1.20344 7.78038 1.20344 7.78039 1.20344C7.78039 1.20344 7.78039 1.20344 7.7804 1.20344C7.7804 1.20344 7.7804 1.20344 7.78041 1.20344C7.78041 1.20344 7.78041 1.20344 7.78042 1.20344C7.78042 1.20344 7.78042 1.20344 7.78043 1.20344C7.78043 1.20344 7.78043 1.20344 7.78044 1.20344C7.78044 1.20344 7.78044 1.20344 7.78045 1.20344C7.78045 1.20344 7.78045 1.20344 7.78046 1.20344C7.78046 1.20344 7.78047 1.20344 7.78047 1.20344C7.78047 1.20344 7.78048 1.20344 7.78048 1.20344C7.78048 1.20344 7.78049 1.20344 7.78049 1.20344C7.78049 1.20344 7.7805 1.20344 7.7805 1.20344C7.7805 1.20344 7.78051 1.20344 7.78051 1.20344C7.78051 1.20344 7.78052 1.20344 7.78052 1.20344C7.78052 1.20344 7.78053 1.20344 7.78053 1.20344C7.78053 1.20344 7.78054 1.20344 7.78054 1.20344C7.78054 1.20344 7.78055 1.20344 7.78055 1.20344C7.78055 1.20344 7.78056 1.20344 7.78056 1.20344C7.78057 1.20344 7.78057 1.20344 7.78057 1.20344C7.78058 1.20344 7.78058 1.20344 7.78058 1.20344C7.78059 1.20344 7.78059 1.20344 7.78059 1.20344C7.7806 1.20344 7.7806 1.20344 7.7806 1.20344C7.78061 1.20344 7.78061 1.20344 7.78061 1.20344C7.78062 1.20344 7.78062 1.20344 7.78062 1.20344C7.78063 1.20344 7.78063 1.20344 7.78063 1.20344C7.78064 1.20344 7.78064 1.20344 7.78064 1.20344C7.78065 1.20344 7.78065 1.20344 7.78065 1.20344C7.78066 1.20344 7.78066 1.20344 7.78066 1.20344C7.78067 1.20344 7.78067 1.20344 7.78067 1.20344C7.78068 1.20344 7.78068 1.20344 7.78069 1.20344C7.78069 1.20344 7.78069 1.20344 7.7807 1.20344C7.7807 1.20344 7.7807 1.20344 7.78071 1.20344C7.78071 1.20344 7.78071 1.20344 7.78072 1.20344C7.78072 1.20344 7.78072 1.20344 7.78073 1.20344C7.78073 1.20344 7.78073 1.20344 7.78074 1.20344C7.78074 1.20344 7.78074 1.20344 7.78075 1.20344C7.78075 1.20344 7.78075 1.20344 7.78076 1.20344C7.78076 1.20344 7.78076 1.20344 7.78077 1.20344C7.78077 1.20344 7.78077 1.20344 7.78078 1.20344C7.78078 1.20344 7.78078 1.20344 7.78079 1.20344C7.78079 1.20344 7.78079 1.20344 7.7808 1.20344C7.7808 1.20344 7.7808 1.20344 7.78081 1.20344C7.78081 1.20344 7.78081 1.20344 7.78082 1.20344C7.78082 1.20344 7.78083 1.20344 7.78083 1.20344C7.78083 1.20344 7.78084 1.20344 7.78084 1.20344C7.78084 1.20344 7.78085 1.20344 7.78085 1.20344C7.78085 1.20344 7.78086 1.20344 7.78086 1.20344C7.78086 1.20344 7.78087 1.20344 7.78087 1.20344C7.78087 1.20344 7.78088 1.20344 7.78088 1.20344C7.78088 1.20344 7.78089 1.20344 7.78089 1.20344C7.78089 1.20344 7.7809 1.20344 7.7809 1.20344C7.7809 1.20344 7.78091 1.20344 7.78091 1.20344C7.78091 1.20344 7.78092 1.20344 7.78092 1.20344C7.78092 1.20344 7.78093 1.20344 7.78093 1.20344C7.78093 1.20344 7.78094 1.20344 7.78094 1.20344C7.78094 1.20344 7.78095 1.20344 7.78095 1.20344C7.78095 1.20344 7.78096 1.20344 7.78096 1.20344C7.78096 1.20344 7.78097 1.20344 7.78097 1.20344C7.78097 1.20344 7.78098 1.20344 7.78098 1.20344C7.78098 1.20344 7.78099 1.20344 7.78099 1.20344C7.78099 1.20344 7.781 1.20344 7.781 1.20344C7.781 1.20344 7.78101 1.20344 7.78101 1.20344C7.78101 1.20344 7.78102 1.20344 7.78102 1.20344C7.78102 1.20344 7.78103 1.20344 7.78103 1.20344C7.78103 1.20344 7.78104 1.20344 7.78104 1.20344C7.78104 1.20344 7.78105 1.20344 7.78105 1.20344C7.78105 1.20344 7.78106 1.20344 7.78106 1.20344C7.78106 1.20344 7.78107 1.20344 7.78107 1.20344C7.78107 1.20344 7.78108 1.20344 7.78108 1.20344C7.78108 1.20344 7.78109 1.20344 7.78109 1.20344C7.78109 1.20344 7.7811 1.20344 7.7811 1.20344C7.78111 1.20344 7.78111 1.20344 7.78111 1.20344C7.78112 1.20344 7.78112 1.20344 7.78112 1.20344C7.78113 1.20344 7.78113 1.20344 7.78113 1.20344C7.78114 1.20344 7.78114 1.20344 7.78114 1.20344C7.78115 1.20344 7.78115 1.20344 7.78115 1.20344C7.78116 1.20344 7.78116 1.20344 7.78116 1.20344C7.78117 1.20344 7.78117 1.20344 7.78117 1.20344C7.78118 1.20344 7.78118 1.20344 7.78118 1.20344C7.78119 1.20344 7.78119 1.20344 7.78119 1.20344C7.7812 1.20344 7.7812 1.20344 7.7812 1.20344C7.78121 1.20344 7.78121 1.20344 7.78121 1.20344C7.78122 1.20344 7.78122 1.20344 7.78122 1.20344C7.78123 1.20344 7.78123 1.20344 7.78123 1.20344C7.78123 1.20344 7.78124 1.20344 7.78124 1.20344C7.78124 1.20344 7.78125 1.20344 7.78125 1.20344C7.78125 1.20344 7.78126 1.20344 7.78126 1.20344C7.78126 1.20344 7.78127 1.20344 7.78127 1.20344C7.78127 1.20344 7.78128 1.20344 7.78128 1.20344C7.78128 1.20344 7.78129 1.20344 7.78129 1.20344C7.78129 1.20344 7.7813 1.20344 7.7813 1.20344C7.7813 1.20344 7.78131 1.20344 7.78131 1.20344C7.78131 1.20344 7.78132 1.20344 7.78132 1.20344C7.78132 1.20344 7.78133 1.20344 7.78133 1.20344C7.78133 1.20344 7.78134 1.20344 7.78134 1.20344C7.78134 1.20344 7.78135 1.20344 7.78135 1.20344C7.78135 1.20344 7.78136 1.20344 7.78136 1.20344C7.78136 1.20344 7.78137 1.20344 7.78137 1.20344C7.78137 1.20344 7.78138 1.20344 7.78138 1.20344C7.78138 1.20344 7.78139 1.20344 7.78139 1.20344C7.78139 1.20344 7.7814 1.20344 7.7814 1.20344C7.7814 1.20344 7.78141 1.20344 7.78141 1.20344C7.78141 1.20344 7.78142 1.20344 7.78142 1.20344C7.78142 1.20344 7.78143 1.20344 7.78143 1.20344C7.78143 1.20344 7.78144 1.20344 7.78144 1.20344C7.78144 1.20344 7.78145 1.20344 7.78145 1.20344C7.78145 1.20344 7.78146 1.20344 7.78146 1.20344C7.78146 1.20344 7.78147 1.20344 7.78147 1.20344C7.78147 1.20344 7.78148 1.20344 7.78148 1.20344C7.78148 1.20344 7.78149 1.20344 7.78149 1.20344C7.78149 1.20344 7.7815 1.20344 7.7815 1.20344C7.7815 1.20344 7.78151 1.20344 7.78151 1.20344C7.78151 1.20344 7.78152 1.20344 7.78152 1.20344C7.78152 1.20344 7.78153 1.20344 7.78153 1.20344C7.78153 1.20344 7.78154 1.20344 7.78154 1.20344C7.78154 1.20344 7.78155 1.20344 7.78155 1.20344C7.78155 1.20344 7.78156 1.20344 7.78156 1.20344C7.78156 1.20344 7.78157 1.20344 7.78157 1.20344C7.78157 1.20344 7.78157 1.20344 7.78158 1.20344C7.78158 1.20344 7.78158 1.20344 7.78159 1.20344C7.78159 1.20344 7.78159 1.20344 7.7816 1.20344C7.7816 1.20344 7.7816 1.20344 7.78161 1.20344C7.78161 1.20344 7.78161 1.20344 7.78162 1.20344C7.78162 1.20344 7.78162 1.20344 7.78163 1.20344C7.78163 1.20344 7.78163 1.20344 7.78164 1.20344C7.78164 1.20344 7.78164 1.20344 7.78165 1.20344C7.78165 1.20344 7.78165 1.20344 7.78166 1.20344C7.78166 1.20344 7.78166 1.20344 7.78167 1.20344C7.78167 1.20344 7.78167 1.20344 7.78168 1.20344C7.78168 1.20344 7.78168 1.20344 7.78169 1.20344C7.78169 1.20344 7.78169 1.20344 7.7817 1.20344C7.7817 1.20344 7.7817 1.20344 7.78171 1.20344C7.78171 1.20344 7.78171 1.20344 7.78172 1.20344C7.78172 1.20344 7.78172 1.20344 7.78172 1.20344C7.78173 1.20344 7.78173 1.20344 7.78173 1.20344C7.78174 1.20344 7.78174 1.20344 7.78174 1.20344C7.78175 1.20344 7.78175 1.20344 7.78175 1.20344C7.78176 1.20344 7.78176 1.20344 7.78176 1.20344C7.78177 1.20344 7.78177 1.20344 7.78177 1.20344C7.78178 1.20344 7.78178 1.20344 7.78178 1.20344C7.78179 1.20344 7.78179 1.20344 7.78179 1.20344C7.7818 1.20344 7.7818 1.20344 7.7818 1.20344C7.78181 1.20344 7.78181 1.20344 7.78181 1.20344C7.78182 1.20344 7.78182 1.20344 7.78182 1.20344C7.78183 1.20344 7.78183 1.20344 7.78183 1.20344C7.78184 1.20344 7.78184 1.20344 7.78184 1.20344C7.78185 1.20344 7.78185 1.20344 7.78185 1.20344C7.78185 1.20344 7.78186 1.20344 7.78186 1.20344C7.78186 1.20344 7.78187 1.20344 7.78187 1.20344C7.78187 1.20344 7.78188 1.20344 7.78188 1.20344C7.78188 1.20344 7.78189 1.20344 7.78189 1.20344C7.78189 1.20344 7.7819 1.20344 7.7819 1.20344C7.7819 1.20344 7.78191 1.20344 7.78191 1.20344C7.78191 1.20344 7.78192 1.20344 7.78192 1.20344C7.78192 1.20344 7.78193 1.20344 7.78193 1.20344C7.78193 1.20344 7.78194 1.20344 7.78194 1.20344C7.78194 1.20344 7.78195 1.20344 7.78195 1.20344C7.78195 1.20344 7.78195 1.20344 7.78196 1.20344C7.78196 1.20344 7.78196 1.20344 7.78197 1.20344C7.78197 1.20344 7.78197 1.20344 7.78198 1.20344C7.78198 1.20344 7.78198 1.20344 7.78199 1.20344C7.78199 1.20344 7.78199 1.20344 7.782 1.20344C7.782 1.20344 7.782 1.20344 7.78201 1.20344C7.78201 1.20344 7.78201 1.20344 7.78202 1.20344C7.78202 1.20344 7.78202 1.20344 7.78203 1.20344C7.78203 1.20344 7.78203 1.20344 7.78204 1.20344C7.78204 1.20344 7.78204 1.20344 7.78204 1.20344C7.78205 1.20344 7.78205 1.20344 7.78205 1.20344C7.78206 1.20344 7.78206 1.20344 7.78206 1.20344C7.78207 1.20344 7.78207 1.20344 7.78207 1.20344C7.78208 1.20344 7.78208 1.20344 7.78208 1.20344C7.78209 1.20344 7.78209 1.20344 7.78209 1.20344C7.7821 1.20344 7.7821 1.20344 7.7821 1.20344C7.78211 1.20344 7.78211 1.20344 7.78211 1.20344C7.78212 1.20344 7.78212 1.20344 7.78212 1.20344C7.78212 1.20344 7.78213 1.20344 7.78213 1.20344C7.78213 1.20344 7.78214 1.20344 7.78214 1.20344C7.78214 1.20344 7.78215 1.20344 7.78215 1.20344C7.78215 1.20344 7.78216 1.20344 7.78216 1.20344C7.78216 1.20344 7.78217 1.20344 7.78217 1.20344C7.78217 1.20344 7.78218 1.20344 7.78218 1.20344C7.78218 1.20344 7.78219 1.20344 7.78219 1.20344C7.78219 1.20344 7.7822 1.20344 7.7822 1.20344C7.7822 1.20344 7.7822 1.20344 7.78221 1.20344C7.78221 1.20344 7.78221 1.20344 7.78222 1.20344C7.78222 1.20344 7.78222 1.20344 7.78223 1.20344C7.78223 1.20344 7.78223 1.20344 7.78224 1.20344C7.78224 1.20344 7.78224 1.20344 7.78225 1.20344C7.78225 1.20344 7.78225 1.20344 7.78226 1.20344C7.78226 1.20344 7.78226 1.20344 7.78227 1.20344C7.78227 1.20344 7.78227 1.20344 7.78227 1.20344C7.78228 1.20344 7.78228 1.20344 7.78228 1.20344C7.78229 1.20344 7.78229 1.20344 7.78229 1.20344C7.7823 1.20344 7.7823 1.20344 7.7823 1.20344C7.78231 1.20344 7.78231 1.20344 7.78231 1.20344C7.78232 1.20344 7.78232 1.20344 7.78232 1.20344C7.78233 1.20344 7.78233 1.20344 7.78233 1.20344C7.78234 1.20344 7.78234 1.20344 7.78234 1.20344C7.78234 1.20344 7.78235 1.20344 7.78235 1.20344C7.78235 1.20344 7.78236 1.20344 7.78236 1.20344C7.78236 1.20344 7.78237 1.20344 7.78237 1.20344C7.78237 1.20344 7.78238 1.20344 7.78238 1.20344C7.78238 1.20344 7.78239 1.20344 7.78239 1.20344C7.78239 1.20344 7.7824 1.20344 7.7824 1.20344C7.7824 1.20344 7.7824 1.20344 7.78241 1.20344C7.78241 1.20344 7.78241 1.20344 7.78242 1.20344C7.78242 1.20344 7.78242 1.20344 7.78243 1.20344C7.78243 1.20344 7.78243 1.20344 7.78244 1.20344C7.78244 1.20344 7.78244 1.20344 7.78245 1.20344C7.78245 1.20344 7.78245 1.20344 7.78246 1.20344C7.78246 1.20344 7.78246 1.20344 7.78246 1.20344C7.78247 1.20344 7.78247 1.20344 7.78247 1.20344C7.78248 1.20344 7.78248 1.20344 7.78248 1.20344C7.78249 1.20344 7.78249 1.20344 7.78249 1.20344C7.7825 1.20344 7.7825 1.20344 7.7825 1.20344C7.78251 1.20344 7.78251 1.20344 7.78251 1.20344C7.78252 1.20344 7.78252 1.20344 7.78252 1.20344C7.78253 1.20344 7.78253 1.20344 7.78253 1.20344C7.78253 1.20344 7.78254 1.20344 7.78254 1.20344C7.78254 1.20344 7.78255 1.20344 7.78255 1.20344C7.78255 1.20344 7.78256 1.20344 7.78256 1.20344C7.78256 1.20344 7.78257 1.20344 7.78257 1.20344C7.78257 1.20344 7.78258 1.20344 7.78258 1.20344C7.78258 1.20344 7.78259 1.20344 7.78259 1.20344C7.78259 1.20344 7.78259 1.20344 7.7826 1.20344C7.7826 1.20344 7.7826 1.20344 7.78261 1.20344C7.78261 1.20344 7.78261 1.20344 7.78262 1.20344C7.78262 1.20344 7.78262 1.20344 7.78263 1.20344C7.78263 1.20344 7.78263 1.20344 7.78264 1.20344C7.78264 1.20344 7.78264 1.20344 7.78264 1.20344C7.78265 1.20344 7.78265 1.20344 7.78265 1.20344C7.78266 1.20344 7.78266 1.20344 7.78266 1.20344C7.78267 1.20344 7.78267 1.20344 7.78267 1.20344C7.78268 1.20344 7.78268 1.20344 7.78268 1.20344C7.78269 1.20344 7.78269 1.20344 7.78269 1.20344C7.7827 1.20344 7.7827 1.20344 7.7827 1.20344C7.7827 1.20344 7.78271 1.20344 7.78271 1.20344C7.78271 1.20344 7.78272 1.20344 7.78272 1.20344C7.78272 1.20344 7.78273 1.20344 7.78273 1.20344C7.78273 1.20344 7.78274 1.20344 7.78274 1.20344C7.78274 1.20344 7.78275 1.20344 7.78275 1.20344C7.78275 1.20344 7.78275 1.20344 7.78276 1.20344C7.78276 1.20344 7.78276 1.20344 7.78277 1.20344C7.78277 1.20344 7.78277 1.20344 7.78278 1.20344C7.78278 1.20344 7.78278 1.20344 7.78279 1.20344C7.78279 1.20344 7.78279 1.20344 7.7828 1.20344C7.7828 1.20344 7.7828 1.20344 7.7828 1.20344C7.78281 1.20344 7.78281 1.20344 7.78281 1.20344C7.78282 1.20344 7.78282 1.20344 7.78282 1.20344C7.78283 1.20344 7.78283 1.20344 7.78283 1.20344C7.78284 1.20344 7.78284 1.20344 7.78284 1.20344C7.78285 1.20344 7.78285 1.20344 7.78285 1.20344C7.78285 1.20344 7.78286 1.20344 7.78286 1.20344C7.78286 1.20344 7.78287 1.20344 7.78287 1.20344C7.78287 1.20344 7.78288 1.20344 7.78288 1.20344C7.78288 1.20344 7.78289 1.20344 7.78289 1.20344C7.78289 1.20344 7.7829 1.20344 7.7829 1.20344C7.7829 1.20344 7.7829 1.20344 7.78291 1.20344C7.78291 1.20344 7.78291 1.20344 7.78292 1.20344C7.78292 1.20344 7.78292 1.20344 7.78293 1.20344C7.78293 1.20344 7.78293 1.20344 7.78294 1.20344C7.78294 1.20344 7.78294 1.20344 7.78295 1.20344C7.78295 1.20344 7.78295 1.20344 7.78295 1.20344C7.78296 1.20344 7.78296 1.20344 7.78296 1.20344C7.78297 1.20344 7.78297 1.20344 7.78297 1.20344C7.78298 1.20344 7.78298 1.20344 7.78298 1.20344C7.78299 1.20344 7.78299 1.20344 7.78299 1.20344C7.783 1.20344 7.783 1.20344 7.783 1.20344C7.783 1.20344 7.78301 1.20344 7.78301 1.20344C7.78301 1.20344 7.78302 1.20344 7.78302 1.20344C7.78302 1.20344 7.78303 1.20344 7.78303 1.20344C7.78303 1.20344 7.78304 1.20344 7.78304 1.20344C7.78304 1.20344 7.78304 1.20344 7.78305 1.20344C7.78305 1.20344 7.78305 1.20344 7.78306 1.20344C7.78306 1.20344 7.78306 1.20344 7.78307 1.20344C7.78307 1.20344 7.78307 1.20344 7.78308 1.20344C7.78308 1.20344 7.78308 1.20344 7.78309 1.20344C7.78309 1.20344 7.78309 1.20344 7.78309 1.20344C7.7831 1.20344 7.7831 1.20344 7.7831 1.20344C7.78311 1.20344 7.78311 1.20344 7.78311 1.20344C7.78312 1.20344 7.78312 1.20344 7.78312 1.20344C7.78313 1.20344 7.78313 1.20344 7.78313 1.20344C7.78313 1.20344 7.78314 1.20344 7.78314 1.20344C7.78314 1.20344 7.78315 1.20344 7.78315 1.20344C7.78315 1.20344 7.78316 1.20344 7.78316 1.20344C7.78316 1.20344 7.78317 1.20344 7.78317 1.20344C7.78317 1.20344 7.78317 1.20344 7.78318 1.20344C7.78318 1.20344 7.78318 1.20344 7.78319 1.20344C7.78319 1.20344 7.78319 1.20344 7.7832 1.20344C7.7832 1.20344 7.7832 1.20344 7.78321 1.20344C7.78321 1.20344 7.78321 1.20344 7.78322 1.20344C7.78322 1.20344 7.78322 1.20344 7.78322 1.20344C7.78323 1.20344 7.78323 1.20344 7.78323 1.20344C7.78324 1.20344 7.78324 1.20344 7.78324 1.20344C7.78325 1.20344 7.78325 1.20344 7.78325 1.20344C7.78326 1.20344 7.78326 1.20344 7.78326 1.20344C7.78326 1.20344 7.78327 1.20344 7.78327 1.20344C7.78327 1.20344 7.78328 1.20344 7.78328 1.20344C7.78328 1.20344 7.78329 1.20344 7.78329 1.20344C7.78329 1.20344 7.7833 1.20344 7.7833 1.20344C7.7833 1.20344 7.78331 1.20344 7.78331 1.20344C7.78331 1.20344 7.78331 1.20344 7.78332 1.20344C7.78332 1.20344 7.78332 1.20344 7.78333 1.20344C7.78333 1.20344 7.78333 1.20344 7.78334 1.20344C7.78334 1.20344 7.78334 1.20344 7.78335 1.20344C7.78335 1.20344 7.78335 1.20344 7.78335 1.20344C7.78336 1.20344 7.78336 1.20344 7.78336 1.20344C7.78337 1.20344 7.78337 1.20344 7.78337 1.20344C7.78338 1.20344 7.78338 1.20344 7.78338 1.20344C7.78339 1.20344 7.78339 1.20344 7.78339 1.20344C7.78339 1.20344 7.7834 1.20344 7.7834 1.20344C7.7834 1.20344 7.78341 1.20344 7.78341 1.20344C7.78341 1.20344 7.78342 1.20344 7.78342 1.20344C7.78342 1.20344 7.78343 1.20344 7.78343 1.20344C7.78343 1.20344 7.78343 1.20344 7.78344 1.20344C7.78344 1.20344 7.78344 1.20344 7.78345 1.20344C7.78345 1.20344 7.78345 1.20344 7.78346 1.20344C7.78346 1.20344 7.78346 1.20344 7.78347 1.20344C7.78347 1.20344 7.78347 1.20344 7.78347 1.20344C7.78348 1.20344 7.78348 1.20344 7.78348 1.20344C7.78349 1.20344 7.78349 1.20344 7.78349 1.20344C7.7835 1.20344 7.7835 1.20344 7.7835 1.20344C7.78351 1.20344 7.78351 1.20344 7.78351 1.20344C7.78351 1.20344 7.78352 1.20344 7.78352 1.20344C7.78352 1.20344 7.78353 1.20344 7.78353 1.20344C7.78353 1.20344 7.78354 1.20344 7.78354 1.20344C7.78354 1.20344 7.78355 1.20344 7.78355 1.20344C7.78355 1.20344 7.78355 1.20344 7.78356 1.20344C7.78356 1.20344 7.78356 1.20344 7.78357 1.20344C7.78357 1.20344 7.78357 1.20344 7.78358 1.20344C7.78358 1.20344 7.78358 1.20344 7.78359 1.20344C7.78359 1.20344 7.78359 1.20344 7.78359 1.20344C7.7836 1.20344 7.7836 1.20344 7.7836 1.20344C7.78361 1.20344 7.78361 1.20344 7.78361 1.20344C7.78362 1.20344 7.78362 1.20344 7.78362 1.20344C7.78363 1.20344 7.78363 1.20344 7.78363 1.20344C7.78363 1.20344 7.78364 1.20344 7.78364 1.20344C7.78364 1.20344 7.78365 1.20344 7.78365 1.20344C7.78365 1.20344 7.78366 1.20344 7.78366 1.20344C7.78366 1.20344 7.78367 1.20344 7.78367 1.20344C7.78367 1.20344 7.78367 1.20344 7.78368 1.20344C7.78368 1.20344 7.78368 1.20344 7.78369 1.20344C7.78369 1.20344 7.78369 1.20344 7.7837 1.20344C7.7837 1.20344 7.7837 1.20344 7.78371 1.20344C7.78371 1.20344 7.78371 1.20344 7.78371 1.20344C7.78372 1.20344 7.78372 1.20344 7.78372 1.20344C7.78373 1.20344 7.78373 1.20344 7.78373 1.20344C7.78374 1.20344 7.78374 1.20344 7.78374 1.20344C7.78374 1.20344 7.78375 1.20344 7.78375 1.20344C7.78375 1.20344 7.78376 1.20344 7.78376 1.20344C7.78376 1.20344 7.78377 1.20344 7.78377 1.20344C7.78377 1.20344 7.78378 1.20344 7.78378 1.20344C7.78378 1.20344 7.78378 1.20344 7.78379 1.20344C7.78379 1.20344 7.78379 1.20344 7.7838 1.20344C7.7838 1.20344 7.7838 1.20344 7.78381 1.20344C7.78381 1.20344 7.78381 1.20344 7.78382 1.20344C7.78382 1.20344 7.78382 1.20344 7.78382 1.20344C7.78383 1.20344 7.78383 1.20344 7.78383 1.20344C7.78384 1.20344 7.78384 1.20344 7.78384 1.20344C7.78385 1.20344 7.78385 1.20344 7.78385 1.20344C7.78386 1.20344 7.78386 1.20344 7.78386 1.20344C7.78386 1.20344 7.78387 1.20344 7.78387 1.20344C7.78387 1.20344 7.78388 1.20344 7.78388 1.20344C7.78388 1.20344 7.78389 1.20344 7.78389 1.20344C7.78389 1.20344 7.7839 1.20344 7.7839 1.20344C7.7839 1.20344 7.7839 1.20344 7.78391 1.20344C7.78391 1.20344 7.78391 1.20344 7.78392 1.20344C7.78392 1.20344 7.78392 1.20344 7.78393 1.20344C7.78393 1.20344 7.78393 1.20344 7.78394 1.20344C7.78394 1.20344 7.78394 1.20344 7.78394 1.20344C7.78395 1.20344 7.78395 1.20344 7.78395 1.20344C7.78396 1.20344 7.78396 1.20344 7.78396 1.20344C7.78397 1.20344 7.78397 1.20344 7.78397 1.20344C7.78397 1.20344 7.78398 1.20344 7.78398 1.20344C7.78398 1.20344 7.78399 1.20344 7.78399 1.20344C7.78399 1.20344 7.784 1.20344 7.784 1.20344C7.784 1.20344 7.78401 1.20344 7.78401 1.20344C7.78401 1.20344 7.78401 1.20344 7.78402 1.20344C7.78402 1.20344 7.78402 1.20344 7.78403 1.20344C7.78403 1.20344 7.78403 1.20344 7.78404 1.20344C7.78404 1.20344 7.78404 1.20344 7.78404 1.20344C7.78405 1.20344 7.78405 1.20344 7.78405 1.20344C7.78406 1.20344 7.78406 1.20344 7.78406 1.20344C7.78407 1.20344 7.78407 1.20344 7.78407 1.20344C7.78408 1.20344 7.78408 1.20344 7.78408 1.20344C7.78408 1.20344 7.78409 1.20344 7.78409 1.20344C7.78409 1.20344 7.7841 1.20344 7.7841 1.20344C7.7841 1.20344 7.78411 1.20344 7.78411 1.20344C7.78411 1.20344 7.78412 1.20344 7.78412 1.20344C7.78412 1.20344 7.78412 1.20344 7.78413 1.20344C7.78413 1.20344 7.78413 1.20344 7.78414 1.20344C7.78414 1.20344 7.78414 1.20344 7.78415 1.20344C7.78415 1.20344 7.78415 1.20344 7.78415 1.20344C7.78416 1.20344 7.78416 1.20344 7.78416 1.20344C7.78417 1.20344 7.78417 1.20344 7.78417 1.20344C7.78418 1.20344 7.78418 1.20344 7.78418 1.20344C7.78419 1.20344 7.78419 1.20344 7.78419 1.20344C7.78419 1.20344 7.7842 1.20344 7.7842 1.20344C7.7842 1.20344 7.78421 1.20344 7.78421 1.20344C7.78421 1.20344 7.78422 1.20344 7.78422 1.20344C7.78422 1.20344 7.78422 1.20344 7.78423 1.20344C7.78423 1.20344 7.78423 1.20344 7.78424 1.20344C7.78424 1.20344 7.78424 1.20344 7.78425 1.20344C7.78425 1.20344 7.78425 1.20344 7.78426 1.20344C7.78426 1.20344 7.78426 1.20344 7.78427 1.20344C7.78427 1.20344 7.78427 1.20344 7.78427 1.20344C7.78428 1.20344 7.78428 1.20344 7.78428 1.20344C7.78429 1.20344 7.78429 1.20344 7.78429 1.20344C7.7843 1.20344 7.7843 1.20344 7.7843 1.20344C7.7843 1.20344 7.78431 1.20344 7.78431 1.20344C7.78431 1.20344 7.78432 1.20344 7.78432 1.20344C7.78432 1.20344 7.78433 1.20344 7.78433 1.20344C7.78433 1.20344 7.78434 1.20344 7.78434 1.20344C7.78434 1.20344 7.78434 1.20344 7.78435 1.20344C7.78435 1.20344 7.78435 1.20344 7.78436 1.20344C7.78436 1.20344 7.78436 1.20344 7.78437 1.20344C7.78437 1.20344 7.78437 1.20344 7.78437 1.20344C7.78438 1.20344 7.78438 1.20344 7.78438 1.20344C7.78439 1.20344 7.78439 1.20344 7.78439 1.20344C7.7844 1.20344 7.7844 1.20344 7.7844 1.20344C7.78441 1.20344 7.78441 1.20344 7.78441 1.20344C7.78441 1.20344 7.78442 1.20344 7.78442 1.20344C7.78442 1.20344 7.78443 1.20344 7.78443 1.20344C7.78443 1.20344 7.78444 1.20344 7.78444 1.20344C7.78444 1.20344 7.78444 1.20344 7.78445 1.20344C7.78445 1.20344 7.78445 1.20344 7.78446 1.20344C7.78446 1.20344 7.78446 1.20344 7.78447 1.20344C7.78447 1.20344 7.78447 1.20344 7.78448 1.20344V0.803438ZM7.77948 0.803438C7.47178 0.803438 7.22261 1.05277 7.22261 1.36041H7.62261C7.62261 1.27357 7.69281 1.20344 7.77948 1.20344V0.803438ZM7.22261 1.36041C7.22261 1.66805 7.47178 1.91739 7.77948 1.91739V1.51739C7.69281 1.51739 7.62261 1.44726 7.62261 1.36041H7.22261ZM7.77948 1.91739C7.77948 1.91739 7.77948 1.91739 7.77949 1.91739C7.77949 1.91739 7.77949 1.91739 7.7795 1.91739C7.7795 1.91739 7.77951 1.91739 7.77951 1.91739C7.77951 1.91739 7.77952 1.91739 7.77952 1.91739C7.77952 1.91739 7.77953 1.91739 7.77953 1.91739C7.77953 1.91739 7.77954 1.91739 7.77954 1.91739C7.77955 1.91739 7.77955 1.91739 7.77955 1.91739C7.77956 1.91739 7.77956 1.91739 7.77956 1.91739C7.77957 1.91739 7.77957 1.91739 7.77957 1.91739C7.77958 1.91739 7.77958 1.91739 7.77959 1.91739C7.77959 1.91739 7.77959 1.91739 7.7796 1.91739C7.7796 1.91739 7.7796 1.91739 7.77961 1.91739C7.77961 1.91739 7.77961 1.91739 7.77962 1.91739C7.77962 1.91739 7.77963 1.91739 7.77963 1.91739C7.77963 1.91739 7.77964 1.91739 7.77964 1.91739C7.77964 1.91739 7.77965 1.91739 7.77965 1.91739C7.77965 1.91739 7.77966 1.91739 7.77966 1.91739C7.77967 1.91739 7.77967 1.91739 7.77967 1.91739C7.77968 1.91739 7.77968 1.91739 7.77968 1.91739C7.77969 1.91739 7.77969 1.91739 7.77969 1.91739C7.7797 1.91739 7.7797 1.91739 7.77971 1.91739C7.77971 1.91739 7.77971 1.91739 7.77972 1.91739C7.77972 1.91739 7.77972 1.91739 7.77973 1.91739C7.77973 1.91739 7.77973 1.91739 7.77974 1.91739C7.77974 1.91739 7.77974 1.91739 7.77975 1.91739C7.77975 1.91739 7.77976 1.91739 7.77976 1.91739C7.77976 1.91739 7.77977 1.91739 7.77977 1.91739C7.77977 1.91739 7.77978 1.91739 7.77978 1.91739C7.77978 1.91739 7.77979 1.91739 7.77979 1.91739C7.7798 1.91739 7.7798 1.91739 7.7798 1.91739C7.77981 1.91739 7.77981 1.91739 7.77981 1.91739C7.77982 1.91739 7.77982 1.91739 7.77982 1.91739C7.77983 1.91739 7.77983 1.91739 7.77983 1.91739C7.77984 1.91739 7.77984 1.91739 7.77985 1.91739C7.77985 1.91739 7.77985 1.91739 7.77986 1.91739C7.77986 1.91739 7.77986 1.91739 7.77987 1.91739C7.77987 1.91739 7.77987 1.91739 7.77988 1.91739C7.77988 1.91739 7.77988 1.91739 7.77989 1.91739C7.77989 1.91739 7.7799 1.91739 7.7799 1.91739C7.7799 1.91739 7.77991 1.91739 7.77991 1.91739C7.77991 1.91739 7.77992 1.91739 7.77992 1.91739C7.77992 1.91739 7.77993 1.91739 7.77993 1.91739C7.77993 1.91739 7.77994 1.91739 7.77994 1.91739C7.77995 1.91739 7.77995 1.91739 7.77995 1.91739C7.77996 1.91739 7.77996 1.91739 7.77996 1.91739C7.77997 1.91739 7.77997 1.91739 7.77997 1.91739C7.77998 1.91739 7.77998 1.91739 7.77998 1.91739C7.77999 1.91739 7.77999 1.91739 7.78 1.91739C7.78 1.91739 7.78 1.91739 7.78001 1.91739C7.78001 1.91739 7.78001 1.91739 7.78002 1.91739C7.78002 1.91739 7.78002 1.91739 7.78003 1.91739C7.78003 1.91739 7.78003 1.91739 7.78004 1.91739C7.78004 1.91739 7.78005 1.91739 7.78005 1.91739C7.78005 1.91739 7.78006 1.91739 7.78006 1.91739C7.78006 1.91739 7.78007 1.91739 7.78007 1.91739C7.78007 1.91739 7.78008 1.91739 7.78008 1.91739C7.78008 1.91739 7.78009 1.91739 7.78009 1.91739C7.7801 1.91739 7.7801 1.91739 7.7801 1.91739C7.78011 1.91739 7.78011 1.91739 7.78011 1.91739C7.78012 1.91739 7.78012 1.91739 7.78012 1.91739C7.78013 1.91739 7.78013 1.91739 7.78013 1.91739C7.78014 1.91739 7.78014 1.91739 7.78014 1.91739C7.78015 1.91739 7.78015 1.91739 7.78016 1.91739C7.78016 1.91739 7.78016 1.91739 7.78017 1.91739C7.78017 1.91739 7.78017 1.91739 7.78018 1.91739C7.78018 1.91739 7.78018 1.91739 7.78019 1.91739C7.78019 1.91739 7.78019 1.91739 7.7802 1.91739C7.7802 1.91739 7.7802 1.91739 7.78021 1.91739C7.78021 1.91739 7.78021 1.91739 7.78022 1.91739C7.78022 1.91739 7.78023 1.91739 7.78023 1.91739C7.78023 1.91739 7.78024 1.91739 7.78024 1.91739C7.78024 1.91739 7.78025 1.91739 7.78025 1.91739C7.78025 1.91739 7.78026 1.91739 7.78026 1.91739C7.78026 1.91739 7.78027 1.91739 7.78027 1.91739C7.78027 1.91739 7.78028 1.91739 7.78028 1.91739C7.78029 1.91739 7.78029 1.91739 7.78029 1.91739C7.7803 1.91739 7.7803 1.91739 7.7803 1.91739C7.78031 1.91739 7.78031 1.91739 7.78031 1.91739C7.78032 1.91739 7.78032 1.91739 7.78032 1.91739C7.78033 1.91739 7.78033 1.91739 7.78033 1.91739C7.78034 1.91739 7.78034 1.91739 7.78034 1.91739C7.78035 1.91739 7.78035 1.91739 7.78036 1.91739C7.78036 1.91739 7.78036 1.91739 7.78037 1.91739C7.78037 1.91739 7.78037 1.91739 7.78038 1.91739C7.78038 1.91739 7.78038 1.91739 7.78039 1.91739C7.78039 1.91739 7.78039 1.91739 7.7804 1.91739C7.7804 1.91739 7.7804 1.91739 7.78041 1.91739C7.78041 1.91739 7.78041 1.91739 7.78042 1.91739C7.78042 1.91739 7.78043 1.91739 7.78043 1.91739C7.78043 1.91739 7.78044 1.91739 7.78044 1.91739C7.78044 1.91739 7.78045 1.91739 7.78045 1.91739C7.78045 1.91739 7.78046 1.91739 7.78046 1.91739C7.78046 1.91739 7.78047 1.91739 7.78047 1.91739C7.78047 1.91739 7.78048 1.91739 7.78048 1.91739C7.78048 1.91739 7.78049 1.91739 7.78049 1.91739C7.78049 1.91739 7.7805 1.91739 7.7805 1.91739C7.78051 1.91739 7.78051 1.91739 7.78051 1.91739C7.78052 1.91739 7.78052 1.91739 7.78052 1.91739C7.78053 1.91739 7.78053 1.91739 7.78053 1.91739C7.78054 1.91739 7.78054 1.91739 7.78054 1.91739C7.78055 1.91739 7.78055 1.91739 7.78055 1.91739C7.78056 1.91739 7.78056 1.91739 7.78056 1.91739C7.78057 1.91739 7.78057 1.91739 7.78057 1.91739C7.78058 1.91739 7.78058 1.91739 7.78059 1.91739C7.78059 1.91739 7.78059 1.91739 7.7806 1.91739C7.7806 1.91739 7.7806 1.91739 7.78061 1.91739C7.78061 1.91739 7.78061 1.91739 7.78062 1.91739C7.78062 1.91739 7.78062 1.91739 7.78063 1.91739C7.78063 1.91739 7.78063 1.91739 7.78064 1.91739C7.78064 1.91739 7.78064 1.91739 7.78065 1.91739C7.78065 1.91739 7.78065 1.91739 7.78066 1.91739C7.78066 1.91739 7.78066 1.91739 7.78067 1.91739C7.78067 1.91739 7.78067 1.91739 7.78068 1.91739C7.78068 1.91739 7.78069 1.91739 7.78069 1.91739C7.78069 1.91739 7.7807 1.91739 7.7807 1.91739C7.7807 1.91739 7.78071 1.91739 7.78071 1.91739C7.78071 1.91739 7.78072 1.91739 7.78072 1.91739C7.78072 1.91739 7.78073 1.91739 7.78073 1.91739C7.78073 1.91739 7.78074 1.91739 7.78074 1.91739C7.78074 1.91739 7.78075 1.91739 7.78075 1.91739C7.78075 1.91739 7.78076 1.91739 7.78076 1.91739C7.78076 1.91739 7.78077 1.91739 7.78077 1.91739C7.78078 1.91739 7.78078 1.91739 7.78078 1.91739C7.78079 1.91739 7.78079 1.91739 7.78079 1.91739C7.7808 1.91739 7.7808 1.91739 7.7808 1.91739C7.78081 1.91739 7.78081 1.91739 7.78081 1.91739C7.78082 1.91739 7.78082 1.91739 7.78082 1.91739C7.78083 1.91739 7.78083 1.91739 7.78083 1.91739C7.78084 1.91739 7.78084 1.91739 7.78084 1.91739C7.78085 1.91739 7.78085 1.91739 7.78085 1.91739C7.78086 1.91739 7.78086 1.91739 7.78086 1.91739C7.78087 1.91739 7.78087 1.91739 7.78087 1.91739C7.78088 1.91739 7.78088 1.91739 7.78088 1.91739C7.78089 1.91739 7.78089 1.91739 7.7809 1.91739C7.7809 1.91739 7.7809 1.91739 7.78091 1.91739C7.78091 1.91739 7.78091 1.91739 7.78092 1.91739C7.78092 1.91739 7.78092 1.91739 7.78093 1.91739C7.78093 1.91739 7.78093 1.91739 7.78094 1.91739C7.78094 1.91739 7.78094 1.91739 7.78095 1.91739C7.78095 1.91739 7.78095 1.91739 7.78096 1.91739C7.78096 1.91739 7.78096 1.91739 7.78097 1.91739C7.78097 1.91739 7.78097 1.91739 7.78098 1.91739C7.78098 1.91739 7.78098 1.91739 7.78099 1.91739C7.78099 1.91739 7.78099 1.91739 7.781 1.91739C7.781 1.91739 7.781 1.91739 7.78101 1.91739C7.78101 1.91739 7.78101 1.91739 7.78102 1.91739C7.78102 1.91739 7.78102 1.91739 7.78103 1.91739C7.78103 1.91739 7.78104 1.91739 7.78104 1.91739C7.78104 1.91739 7.78105 1.91739 7.78105 1.91739C7.78105 1.91739 7.78106 1.91739 7.78106 1.91739C7.78106 1.91739 7.78107 1.91739 7.78107 1.91739C7.78107 1.91739 7.78108 1.91739 7.78108 1.91739C7.78108 1.91739 7.78109 1.91739 7.78109 1.91739C7.78109 1.91739 7.7811 1.91739 7.7811 1.91739C7.7811 1.91739 7.78111 1.91739 7.78111 1.91739C7.78111 1.91739 7.78112 1.91739 7.78112 1.91739C7.78112 1.91739 7.78113 1.91739 7.78113 1.91739C7.78113 1.91739 7.78114 1.91739 7.78114 1.91739C7.78114 1.91739 7.78115 1.91739 7.78115 1.91739C7.78115 1.91739 7.78116 1.91739 7.78116 1.91739C7.78116 1.91739 7.78117 1.91739 7.78117 1.91739C7.78117 1.91739 7.78118 1.91739 7.78118 1.91739C7.78119 1.91739 7.78119 1.91739 7.78119 1.91739C7.7812 1.91739 7.7812 1.91739 7.7812 1.91739C7.78121 1.91739 7.78121 1.91739 7.78121 1.91739C7.78122 1.91739 7.78122 1.91739 7.78122 1.91739C7.78123 1.91739 7.78123 1.91739 7.78123 1.91739C7.78124 1.91739 7.78124 1.91739 7.78124 1.91739C7.78125 1.91739 7.78125 1.91739 7.78125 1.91739C7.78126 1.91739 7.78126 1.91739 7.78126 1.91739C7.78127 1.91739 7.78127 1.91739 7.78127 1.91739C7.78128 1.91739 7.78128 1.91739 7.78128 1.91739C7.78129 1.91739 7.78129 1.91739 7.78129 1.91739C7.7813 1.91739 7.7813 1.91739 7.7813 1.91739C7.78131 1.91739 7.78131 1.91739 7.78131 1.91739C7.78132 1.91739 7.78132 1.91739 7.78132 1.91739C7.78133 1.91739 7.78133 1.91739 7.78133 1.91739C7.78134 1.91739 7.78134 1.91739 7.78134 1.91739C7.78135 1.91739 7.78135 1.91739 7.78135 1.91739C7.78136 1.91739 7.78136 1.91739 7.78136 1.91739C7.78137 1.91739 7.78137 1.91739 7.78137 1.91739C7.78138 1.91739 7.78138 1.91739 7.78138 1.91739C7.78139 1.91739 7.78139 1.91739 7.7814 1.91739C7.7814 1.91739 7.7814 1.91739 7.78141 1.91739C7.78141 1.91739 7.78141 1.91739 7.78142 1.91739C7.78142 1.91739 7.78142 1.91739 7.78143 1.91739C7.78143 1.91739 7.78143 1.91739 7.78144 1.91739C7.78144 1.91739 7.78144 1.91739 7.78145 1.91739C7.78145 1.91739 7.78145 1.91739 7.78146 1.91739C7.78146 1.91739 7.78146 1.91739 7.78147 1.91739C7.78147 1.91739 7.78147 1.91739 7.78148 1.91739C7.78148 1.91739 7.78148 1.91739 7.78149 1.91739C7.78149 1.91739 7.78149 1.91739 7.7815 1.91739C7.7815 1.91739 7.7815 1.91739 7.78151 1.91739C7.78151 1.91739 7.78151 1.91739 7.78152 1.91739C7.78152 1.91739 7.78152 1.91739 7.78153 1.91739C7.78153 1.91739 7.78153 1.91739 7.78154 1.91739C7.78154 1.91739 7.78154 1.91739 7.78155 1.91739C7.78155 1.91739 7.78155 1.91739 7.78156 1.91739C7.78156 1.91739 7.78156 1.91739 7.78157 1.91739C7.78157 1.91739 7.78157 1.91739 7.78158 1.91739C7.78158 1.91739 7.78158 1.91739 7.78159 1.91739C7.78159 1.91739 7.78159 1.91739 7.7816 1.91739C7.7816 1.91739 7.7816 1.91739 7.78161 1.91739C7.78161 1.91739 7.78161 1.91739 7.78162 1.91739C7.78162 1.91739 7.78162 1.91739 7.78163 1.91739C7.78163 1.91739 7.78163 1.91739 7.78164 1.91739C7.78164 1.91739 7.78164 1.91739 7.78165 1.91739C7.78165 1.91739 7.78165 1.91739 7.78166 1.91739C7.78166 1.91739 7.78167 1.91739 7.78167 1.91739C7.78167 1.91739 7.78168 1.91739 7.78168 1.91739C7.78168 1.91739 7.78169 1.91739 7.78169 1.91739C7.78169 1.91739 7.7817 1.91739 7.7817 1.91739C7.7817 1.91739 7.78171 1.91739 7.78171 1.91739C7.78171 1.91739 7.78172 1.91739 7.78172 1.91739C7.78172 1.91739 7.78173 1.91739 7.78173 1.91739C7.78173 1.91739 7.78174 1.91739 7.78174 1.91739C7.78174 1.91739 7.78175 1.91739 7.78175 1.91739C7.78175 1.91739 7.78176 1.91739 7.78176 1.91739C7.78176 1.91739 7.78177 1.91739 7.78177 1.91739C7.78177 1.91739 7.78178 1.91739 7.78178 1.91739C7.78178 1.91739 7.78179 1.91739 7.78179 1.91739C7.78179 1.91739 7.7818 1.91739 7.7818 1.91739C7.7818 1.91739 7.78181 1.91739 7.78181 1.91739C7.78181 1.91739 7.78182 1.91739 7.78182 1.91739C7.78182 1.91739 7.78183 1.91739 7.78183 1.91739C7.78183 1.91739 7.78184 1.91739 7.78184 1.91739C7.78184 1.91739 7.78185 1.91739 7.78185 1.91739C7.78185 1.91739 7.78186 1.91739 7.78186 1.91739C7.78186 1.91739 7.78187 1.91739 7.78187 1.91739C7.78187 1.91739 7.78188 1.91739 7.78188 1.91739C7.78188 1.91739 7.78189 1.91739 7.78189 1.91739C7.78189 1.91739 7.7819 1.91739 7.7819 1.91739C7.7819 1.91739 7.78191 1.91739 7.78191 1.91739C7.78191 1.91739 7.78192 1.91739 7.78192 1.91739C7.78192 1.91739 7.78193 1.91739 7.78193 1.91739C7.78193 1.91739 7.78194 1.91739 7.78194 1.91739C7.78194 1.91739 7.78195 1.91739 7.78195 1.91739C7.78195 1.91739 7.78196 1.91739 7.78196 1.91739C7.78196 1.91739 7.78197 1.91739 7.78197 1.91739C7.78197 1.91739 7.78198 1.91739 7.78198 1.91739C7.78198 1.91739 7.78199 1.91739 7.78199 1.91739C7.78199 1.91739 7.782 1.91739 7.782 1.91739C7.782 1.91739 7.78201 1.91739 7.78201 1.91739C7.78201 1.91739 7.78202 1.91739 7.78202 1.91739C7.78202 1.91739 7.78203 1.91739 7.78203 1.91739C7.78203 1.91739 7.78204 1.91739 7.78204 1.91739C7.78204 1.91739 7.78205 1.91739 7.78205 1.91739C7.78205 1.91739 7.78206 1.91739 7.78206 1.91739C7.78206 1.91739 7.78207 1.91739 7.78207 1.91739C7.78207 1.91739 7.78208 1.91739 7.78208 1.91739C7.78209 1.91739 7.78209 1.91739 7.78209 1.91739C7.7821 1.91739 7.7821 1.91739 7.7821 1.91739C7.78211 1.91739 7.78211 1.91739 7.78211 1.91739C7.78212 1.91739 7.78212 1.91739 7.78212 1.91739C7.78213 1.91739 7.78213 1.91739 7.78213 1.91739C7.78214 1.91739 7.78214 1.91739 7.78214 1.91739C7.78215 1.91739 7.78215 1.91739 7.78215 1.91739C7.78216 1.91739 7.78216 1.91739 7.78216 1.91739C7.78217 1.91739 7.78217 1.91739 7.78217 1.91739C7.78218 1.91739 7.78218 1.91739 7.78218 1.91739C7.78219 1.91739 7.78219 1.91739 7.78219 1.91739C7.7822 1.91739 7.7822 1.91739 7.7822 1.91739C7.78221 1.91739 7.78221 1.91739 7.78221 1.91739C7.78222 1.91739 7.78222 1.91739 7.78222 1.91739C7.78223 1.91739 7.78223 1.91739 7.78223 1.91739C7.78224 1.91739 7.78224 1.91739 7.78224 1.91739C7.78225 1.91739 7.78225 1.91739 7.78225 1.91739C7.78226 1.91739 7.78226 1.91739 7.78226 1.91739C7.78227 1.91739 7.78227 1.91739 7.78227 1.91739C7.78228 1.91739 7.78228 1.91739 7.78228 1.91739C7.78229 1.91739 7.78229 1.91739 7.78229 1.91739C7.7823 1.91739 7.7823 1.91739 7.7823 1.91739C7.78231 1.91739 7.78231 1.91739 7.78231 1.91739C7.78232 1.91739 7.78232 1.91739 7.78232 1.91739C7.78233 1.91739 7.78233 1.91739 7.78233 1.91739C7.78234 1.91739 7.78234 1.91739 7.78234 1.91739C7.78235 1.91739 7.78235 1.91739 7.78235 1.91739C7.78236 1.91739 7.78236 1.91739 7.78236 1.91739C7.78237 1.91739 7.78237 1.91739 7.78237 1.91739C7.78238 1.91739 7.78238 1.91739 7.78238 1.91739C7.78239 1.91739 7.78239 1.91739 7.78239 1.91739C7.7824 1.91739 7.7824 1.91739 7.7824 1.91739C7.78241 1.91739 7.78241 1.91739 7.78241 1.91739C7.78242 1.91739 7.78242 1.91739 7.78242 1.91739C7.78243 1.91739 7.78243 1.91739 7.78243 1.91739C7.78244 1.91739 7.78244 1.91739 7.78244 1.91739C7.78245 1.91739 7.78245 1.91739 7.78245 1.91739C7.78246 1.91739 7.78246 1.91739 7.78246 1.91739C7.78247 1.91739 7.78247 1.91739 7.78247 1.91739C7.78248 1.91739 7.78248 1.91739 7.78249 1.91739C7.78249 1.91739 7.78249 1.91739 7.7825 1.91739C7.7825 1.91739 7.7825 1.91739 7.78251 1.91739C7.78251 1.91739 7.78251 1.91739 7.78252 1.91739C7.78252 1.91739 7.78252 1.91739 7.78253 1.91739C7.78253 1.91739 7.78253 1.91739 7.78254 1.91739C7.78254 1.91739 7.78254 1.91739 7.78255 1.91739C7.78255 1.91739 7.78255 1.91739 7.78256 1.91739C7.78256 1.91739 7.78256 1.91739 7.78257 1.91739C7.78257 1.91739 7.78257 1.91739 7.78258 1.91739C7.78258 1.91739 7.78258 1.91739 7.78259 1.91739C7.78259 1.91739 7.78259 1.91739 7.7826 1.91739C7.7826 1.91739 7.7826 1.91739 7.78261 1.91739C7.78261 1.91739 7.78261 1.91739 7.78262 1.91739C7.78262 1.91739 7.78262 1.91739 7.78263 1.91739C7.78263 1.91739 7.78263 1.91739 7.78264 1.91739C7.78264 1.91739 7.78264 1.91739 7.78265 1.91739C7.78265 1.91739 7.78265 1.91739 7.78266 1.91739C7.78266 1.91739 7.78266 1.91739 7.78267 1.91739C7.78267 1.91739 7.78267 1.91739 7.78268 1.91739C7.78268 1.91739 7.78268 1.91739 7.78269 1.91739C7.78269 1.91739 7.78269 1.91739 7.7827 1.91739C7.7827 1.91739 7.7827 1.91739 7.78271 1.91739C7.78271 1.91739 7.78271 1.91739 7.78272 1.91739C7.78272 1.91739 7.78272 1.91739 7.78273 1.91739C7.78273 1.91739 7.78273 1.91739 7.78274 1.91739C7.78274 1.91739 7.78274 1.91739 7.78275 1.91739C7.78275 1.91739 7.78275 1.91739 7.78276 1.91739C7.78276 1.91739 7.78276 1.91739 7.78277 1.91739C7.78277 1.91739 7.78277 1.91739 7.78278 1.91739C7.78278 1.91739 7.78278 1.91739 7.78279 1.91739C7.78279 1.91739 7.78279 1.91739 7.7828 1.91739C7.7828 1.91739 7.7828 1.91739 7.78281 1.91739C7.78281 1.91739 7.78281 1.91739 7.78282 1.91739C7.78282 1.91739 7.78282 1.91739 7.78283 1.91739C7.78283 1.91739 7.78284 1.91739 7.78284 1.91739C7.78284 1.91739 7.78285 1.91739 7.78285 1.91739C7.78285 1.91739 7.78286 1.91739 7.78286 1.91739C7.78286 1.91739 7.78287 1.91739 7.78287 1.91739C7.78287 1.91739 7.78288 1.91739 7.78288 1.91739C7.78288 1.91739 7.78289 1.91739 7.78289 1.91739C7.78289 1.91739 7.7829 1.91739 7.7829 1.91739C7.7829 1.91739 7.78291 1.91739 7.78291 1.91739C7.78291 1.91739 7.78292 1.91739 7.78292 1.91739C7.78292 1.91739 7.78293 1.91739 7.78293 1.91739C7.78293 1.91739 7.78294 1.91739 7.78294 1.91739C7.78294 1.91739 7.78295 1.91739 7.78295 1.91739C7.78295 1.91739 7.78296 1.91739 7.78296 1.91739C7.78296 1.91739 7.78297 1.91739 7.78297 1.91739C7.78297 1.91739 7.78298 1.91739 7.78298 1.91739C7.78298 1.91739 7.78299 1.91739 7.78299 1.91739C7.78299 1.91739 7.783 1.91739 7.783 1.91739C7.783 1.91739 7.78301 1.91739 7.78301 1.91739C7.78301 1.91739 7.78302 1.91739 7.78302 1.91739C7.78302 1.91739 7.78303 1.91739 7.78303 1.91739C7.78304 1.91739 7.78304 1.91739 7.78304 1.91739C7.78305 1.91739 7.78305 1.91739 7.78305 1.91739C7.78306 1.91739 7.78306 1.91739 7.78306 1.91739C7.78307 1.91739 7.78307 1.91739 7.78307 1.91739C7.78308 1.91739 7.78308 1.91739 7.78308 1.91739C7.78309 1.91739 7.78309 1.91739 7.78309 1.91739C7.7831 1.91739 7.7831 1.91739 7.7831 1.91739C7.78311 1.91739 7.78311 1.91739 7.78311 1.91739C7.78312 1.91739 7.78312 1.91739 7.78312 1.91739C7.78313 1.91739 7.78313 1.91739 7.78313 1.91739C7.78314 1.91739 7.78314 1.91739 7.78314 1.91739C7.78315 1.91739 7.78315 1.91739 7.78315 1.91739C7.78316 1.91739 7.78316 1.91739 7.78316 1.91739C7.78317 1.91739 7.78317 1.91739 7.78317 1.91739C7.78318 1.91739 7.78318 1.91739 7.78318 1.91739C7.78319 1.91739 7.78319 1.91739 7.7832 1.91739C7.7832 1.91739 7.7832 1.91739 7.78321 1.91739C7.78321 1.91739 7.78321 1.91739 7.78322 1.91739C7.78322 1.91739 7.78322 1.91739 7.78323 1.91739C7.78323 1.91739 7.78323 1.91739 7.78324 1.91739C7.78324 1.91739 7.78324 1.91739 7.78325 1.91739C7.78325 1.91739 7.78325 1.91739 7.78326 1.91739C7.78326 1.91739 7.78326 1.91739 7.78327 1.91739C7.78327 1.91739 7.78327 1.91739 7.78328 1.91739C7.78328 1.91739 7.78328 1.91739 7.78329 1.91739C7.78329 1.91739 7.78329 1.91739 7.7833 1.91739C7.7833 1.91739 7.7833 1.91739 7.78331 1.91739C7.78331 1.91739 7.78331 1.91739 7.78332 1.91739C7.78332 1.91739 7.78332 1.91739 7.78333 1.91739C7.78333 1.91739 7.78334 1.91739 7.78334 1.91739C7.78334 1.91739 7.78335 1.91739 7.78335 1.91739C7.78335 1.91739 7.78336 1.91739 7.78336 1.91739C7.78336 1.91739 7.78337 1.91739 7.78337 1.91739C7.78337 1.91739 7.78338 1.91739 7.78338 1.91739C7.78338 1.91739 7.78339 1.91739 7.78339 1.91739C7.78339 1.91739 7.7834 1.91739 7.7834 1.91739C7.7834 1.91739 7.78341 1.91739 7.78341 1.91739C7.78341 1.91739 7.78342 1.91739 7.78342 1.91739C7.78342 1.91739 7.78343 1.91739 7.78343 1.91739C7.78343 1.91739 7.78344 1.91739 7.78344 1.91739C7.78344 1.91739 7.78345 1.91739 7.78345 1.91739C7.78345 1.91739 7.78346 1.91739 7.78346 1.91739C7.78347 1.91739 7.78347 1.91739 7.78347 1.91739C7.78348 1.91739 7.78348 1.91739 7.78348 1.91739C7.78349 1.91739 7.78349 1.91739 7.78349 1.91739C7.7835 1.91739 7.7835 1.91739 7.7835 1.91739C7.78351 1.91739 7.78351 1.91739 7.78351 1.91739C7.78352 1.91739 7.78352 1.91739 7.78352 1.91739C7.78353 1.91739 7.78353 1.91739 7.78353 1.91739C7.78354 1.91739 7.78354 1.91739 7.78354 1.91739C7.78355 1.91739 7.78355 1.91739 7.78356 1.91739C7.78356 1.91739 7.78356 1.91739 7.78357 1.91739C7.78357 1.91739 7.78357 1.91739 7.78358 1.91739C7.78358 1.91739 7.78358 1.91739 7.78359 1.91739C7.78359 1.91739 7.78359 1.91739 7.7836 1.91739C7.7836 1.91739 7.7836 1.91739 7.78361 1.91739C7.78361 1.91739 7.78361 1.91739 7.78362 1.91739C7.78362 1.91739 7.78362 1.91739 7.78363 1.91739C7.78363 1.91739 7.78363 1.91739 7.78364 1.91739C7.78364 1.91739 7.78364 1.91739 7.78365 1.91739C7.78365 1.91739 7.78366 1.91739 7.78366 1.91739C7.78366 1.91739 7.78367 1.91739 7.78367 1.91739C7.78367 1.91739 7.78368 1.91739 7.78368 1.91739C7.78368 1.91739 7.78369 1.91739 7.78369 1.91739C7.78369 1.91739 7.7837 1.91739 7.7837 1.91739C7.7837 1.91739 7.78371 1.91739 7.78371 1.91739C7.78371 1.91739 7.78372 1.91739 7.78372 1.91739C7.78372 1.91739 7.78373 1.91739 7.78373 1.91739C7.78373 1.91739 7.78374 1.91739 7.78374 1.91739C7.78375 1.91739 7.78375 1.91739 7.78375 1.91739C7.78376 1.91739 7.78376 1.91739 7.78376 1.91739C7.78377 1.91739 7.78377 1.91739 7.78377 1.91739C7.78378 1.91739 7.78378 1.91739 7.78378 1.91739C7.78379 1.91739 7.78379 1.91739 7.78379 1.91739C7.7838 1.91739 7.7838 1.91739 7.7838 1.91739C7.78381 1.91739 7.78381 1.91739 7.78381 1.91739C7.78382 1.91739 7.78382 1.91739 7.78383 1.91739C7.78383 1.91739 7.78383 1.91739 7.78384 1.91739C7.78384 1.91739 7.78384 1.91739 7.78385 1.91739C7.78385 1.91739 7.78385 1.91739 7.78386 1.91739C7.78386 1.91739 7.78386 1.91739 7.78387 1.91739C7.78387 1.91739 7.78387 1.91739 7.78388 1.91739C7.78388 1.91739 7.78388 1.91739 7.78389 1.91739C7.78389 1.91739 7.7839 1.91739 7.7839 1.91739C7.7839 1.91739 7.78391 1.91739 7.78391 1.91739C7.78391 1.91739 7.78392 1.91739 7.78392 1.91739C7.78392 1.91739 7.78393 1.91739 7.78393 1.91739C7.78393 1.91739 7.78394 1.91739 7.78394 1.91739C7.78394 1.91739 7.78395 1.91739 7.78395 1.91739C7.78395 1.91739 7.78396 1.91739 7.78396 1.91739C7.78397 1.91739 7.78397 1.91739 7.78397 1.91739C7.78398 1.91739 7.78398 1.91739 7.78398 1.91739C7.78399 1.91739 7.78399 1.91739 7.78399 1.91739C7.784 1.91739 7.784 1.91739 7.784 1.91739C7.78401 1.91739 7.78401 1.91739 7.78401 1.91739C7.78402 1.91739 7.78402 1.91739 7.78402 1.91739C7.78403 1.91739 7.78403 1.91739 7.78404 1.91739C7.78404 1.91739 7.78404 1.91739 7.78405 1.91739C7.78405 1.91739 7.78405 1.91739 7.78406 1.91739C7.78406 1.91739 7.78406 1.91739 7.78407 1.91739C7.78407 1.91739 7.78407 1.91739 7.78408 1.91739C7.78408 1.91739 7.78408 1.91739 7.78409 1.91739C7.78409 1.91739 7.7841 1.91739 7.7841 1.91739C7.7841 1.91739 7.78411 1.91739 7.78411 1.91739C7.78411 1.91739 7.78412 1.91739 7.78412 1.91739C7.78412 1.91739 7.78413 1.91739 7.78413 1.91739C7.78413 1.91739 7.78414 1.91739 7.78414 1.91739C7.78414 1.91739 7.78415 1.91739 7.78415 1.91739C7.78416 1.91739 7.78416 1.91739 7.78416 1.91739C7.78417 1.91739 7.78417 1.91739 7.78417 1.91739C7.78418 1.91739 7.78418 1.91739 7.78418 1.91739C7.78419 1.91739 7.78419 1.91739 7.78419 1.91739C7.7842 1.91739 7.7842 1.91739 7.7842 1.91739C7.78421 1.91739 7.78421 1.91739 7.78422 1.91739C7.78422 1.91739 7.78422 1.91739 7.78423 1.91739C7.78423 1.91739 7.78423 1.91739 7.78424 1.91739C7.78424 1.91739 7.78424 1.91739 7.78425 1.91739C7.78425 1.91739 7.78425 1.91739 7.78426 1.91739C7.78426 1.91739 7.78427 1.91739 7.78427 1.91739C7.78427 1.91739 7.78428 1.91739 7.78428 1.91739C7.78428 1.91739 7.78429 1.91739 7.78429 1.91739C7.78429 1.91739 7.7843 1.91739 7.7843 1.91739C7.7843 1.91739 7.78431 1.91739 7.78431 1.91739C7.78432 1.91739 7.78432 1.91739 7.78432 1.91739C7.78433 1.91739 7.78433 1.91739 7.78433 1.91739C7.78434 1.91739 7.78434 1.91739 7.78434 1.91739C7.78435 1.91739 7.78435 1.91739 7.78435 1.91739C7.78436 1.91739 7.78436 1.91739 7.78437 1.91739C7.78437 1.91739 7.78437 1.91739 7.78438 1.91739C7.78438 1.91739 7.78438 1.91739 7.78439 1.91739C7.78439 1.91739 7.78439 1.91739 7.7844 1.91739C7.7844 1.91739 7.7844 1.91739 7.78441 1.91739C7.78441 1.91739 7.78442 1.91739 7.78442 1.91739C7.78442 1.91739 7.78443 1.91739 7.78443 1.91739C7.78443 1.91739 7.78444 1.91739 7.78444 1.91739C7.78444 1.91739 7.78445 1.91739 7.78445 1.91739C7.78445 1.91739 7.78446 1.91739 7.78446 1.91739C7.78447 1.91739 7.78447 1.91739 7.78447 1.91739C7.78448 1.91739 7.78448 1.91739 7.78448 1.91739C7.78449 1.91739 7.78449 1.91739 7.78449 1.91739C7.7845 1.91739 7.7845 1.91739 7.7845 1.91739C7.78451 1.91739 7.78451 1.91739 7.78452 1.91739C7.78452 1.91739 7.78452 1.91739 7.78453 1.91739C7.78453 1.91739 7.78453 1.91739 7.78454 1.91739C7.78454 1.91739 7.78454 1.91739 7.78455 1.91739C7.78455 1.91739 7.78456 1.91739 7.78456 1.91739C7.78456 1.91739 7.78457 1.91739 7.78457 1.91739C7.78457 1.91739 7.78458 1.91739 7.78458 1.91739C7.78458 1.91739 7.78459 1.91739 7.78459 1.91739C7.7846 1.91739 7.7846 1.91739 7.7846 1.91739C7.78461 1.91739 7.78461 1.91739 7.78461 1.91739C7.78462 1.91739 7.78462 1.91739 7.78462 1.91739C7.78463 1.91739 7.78463 1.91739 7.78464 1.91739C7.78464 1.91739 7.78464 1.91739 7.78465 1.91739C7.78465 1.91739 7.78465 1.91739 7.78466 1.91739C7.78466 1.91739 7.78466 1.91739 7.78467 1.91739C7.78467 1.91739 7.78468 1.91739 7.78468 1.91739C7.78468 1.91739 7.78469 1.91739 7.78469 1.91739C7.78469 1.91739 7.7847 1.91739 7.7847 1.91739C7.7847 1.91739 7.78471 1.91739 7.78471 1.91739C7.78472 1.91739 7.78472 1.91739 7.78472 1.91739C7.78473 1.91739 7.78473 1.91739 7.78473 1.91739C7.78474 1.91739 7.78474 1.91739 7.78474 1.91739C7.78475 1.91739 7.78475 1.91739 7.78476 1.91739C7.78476 1.91739 7.78476 1.91739 7.78477 1.91739C7.78477 1.91739 7.78477 1.91739 7.78478 1.91739C7.78478 1.91739 7.78478 1.91739 7.78479 1.91739V1.51739C7.78478 1.51739 7.78478 1.51739 7.78478 1.51739C7.78477 1.51739 7.78477 1.51739 7.78477 1.51739C7.78476 1.51739 7.78476 1.51739 7.78476 1.51739C7.78475 1.51739 7.78475 1.51739 7.78474 1.51739C7.78474 1.51739 7.78474 1.51739 7.78473 1.51739C7.78473 1.51739 7.78473 1.51739 7.78472 1.51739C7.78472 1.51739 7.78472 1.51739 7.78471 1.51739C7.78471 1.51739 7.7847 1.51739 7.7847 1.51739C7.7847 1.51739 7.78469 1.51739 7.78469 1.51739C7.78469 1.51739 7.78468 1.51739 7.78468 1.51739C7.78468 1.51739 7.78467 1.51739 7.78467 1.51739C7.78466 1.51739 7.78466 1.51739 7.78466 1.51739C7.78465 1.51739 7.78465 1.51739 7.78465 1.51739C7.78464 1.51739 7.78464 1.51739 7.78464 1.51739C7.78463 1.51739 7.78463 1.51739 7.78462 1.51739C7.78462 1.51739 7.78462 1.51739 7.78461 1.51739C7.78461 1.51739 7.78461 1.51739 7.7846 1.51739C7.7846 1.51739 7.7846 1.51739 7.78459 1.51739C7.78459 1.51739 7.78458 1.51739 7.78458 1.51739C7.78458 1.51739 7.78457 1.51739 7.78457 1.51739C7.78457 1.51739 7.78456 1.51739 7.78456 1.51739C7.78456 1.51739 7.78455 1.51739 7.78455 1.51739C7.78454 1.51739 7.78454 1.51739 7.78454 1.51739C7.78453 1.51739 7.78453 1.51739 7.78453 1.51739C7.78452 1.51739 7.78452 1.51739 7.78452 1.51739C7.78451 1.51739 7.78451 1.51739 7.7845 1.51739C7.7845 1.51739 7.7845 1.51739 7.78449 1.51739C7.78449 1.51739 7.78449 1.51739 7.78448 1.51739C7.78448 1.51739 7.78448 1.51739 7.78447 1.51739C7.78447 1.51739 7.78447 1.51739 7.78446 1.51739C7.78446 1.51739 7.78445 1.51739 7.78445 1.51739C7.78445 1.51739 7.78444 1.51739 7.78444 1.51739C7.78444 1.51739 7.78443 1.51739 7.78443 1.51739C7.78443 1.51739 7.78442 1.51739 7.78442 1.51739C7.78442 1.51739 7.78441 1.51739 7.78441 1.51739C7.7844 1.51739 7.7844 1.51739 7.7844 1.51739C7.78439 1.51739 7.78439 1.51739 7.78439 1.51739C7.78438 1.51739 7.78438 1.51739 7.78438 1.51739C7.78437 1.51739 7.78437 1.51739 7.78437 1.51739C7.78436 1.51739 7.78436 1.51739 7.78435 1.51739C7.78435 1.51739 7.78435 1.51739 7.78434 1.51739C7.78434 1.51739 7.78434 1.51739 7.78433 1.51739C7.78433 1.51739 7.78433 1.51739 7.78432 1.51739C7.78432 1.51739 7.78432 1.51739 7.78431 1.51739C7.78431 1.51739 7.7843 1.51739 7.7843 1.51739C7.7843 1.51739 7.78429 1.51739 7.78429 1.51739C7.78429 1.51739 7.78428 1.51739 7.78428 1.51739C7.78428 1.51739 7.78427 1.51739 7.78427 1.51739C7.78427 1.51739 7.78426 1.51739 7.78426 1.51739C7.78425 1.51739 7.78425 1.51739 7.78425 1.51739C7.78424 1.51739 7.78424 1.51739 7.78424 1.51739C7.78423 1.51739 7.78423 1.51739 7.78423 1.51739C7.78422 1.51739 7.78422 1.51739 7.78422 1.51739C7.78421 1.51739 7.78421 1.51739 7.7842 1.51739C7.7842 1.51739 7.7842 1.51739 7.78419 1.51739C7.78419 1.51739 7.78419 1.51739 7.78418 1.51739C7.78418 1.51739 7.78418 1.51739 7.78417 1.51739C7.78417 1.51739 7.78417 1.51739 7.78416 1.51739C7.78416 1.51739 7.78416 1.51739 7.78415 1.51739C7.78415 1.51739 7.78414 1.51739 7.78414 1.51739C7.78414 1.51739 7.78413 1.51739 7.78413 1.51739C7.78413 1.51739 7.78412 1.51739 7.78412 1.51739C7.78412 1.51739 7.78411 1.51739 7.78411 1.51739C7.78411 1.51739 7.7841 1.51739 7.7841 1.51739C7.7841 1.51739 7.78409 1.51739 7.78409 1.51739C7.78408 1.51739 7.78408 1.51739 7.78408 1.51739C7.78407 1.51739 7.78407 1.51739 7.78407 1.51739C7.78406 1.51739 7.78406 1.51739 7.78406 1.51739C7.78405 1.51739 7.78405 1.51739 7.78405 1.51739C7.78404 1.51739 7.78404 1.51739 7.78404 1.51739C7.78403 1.51739 7.78403 1.51739 7.78402 1.51739C7.78402 1.51739 7.78402 1.51739 7.78401 1.51739C7.78401 1.51739 7.78401 1.51739 7.784 1.51739C7.784 1.51739 7.784 1.51739 7.78399 1.51739C7.78399 1.51739 7.78399 1.51739 7.78398 1.51739C7.78398 1.51739 7.78398 1.51739 7.78397 1.51739C7.78397 1.51739 7.78397 1.51739 7.78396 1.51739C7.78396 1.51739 7.78395 1.51739 7.78395 1.51739C7.78395 1.51739 7.78394 1.51739 7.78394 1.51739C7.78394 1.51739 7.78393 1.51739 7.78393 1.51739C7.78393 1.51739 7.78392 1.51739 7.78392 1.51739C7.78392 1.51739 7.78391 1.51739 7.78391 1.51739C7.78391 1.51739 7.7839 1.51739 7.7839 1.51739C7.7839 1.51739 7.78389 1.51739 7.78389 1.51739C7.78388 1.51739 7.78388 1.51739 7.78388 1.51739C7.78387 1.51739 7.78387 1.51739 7.78387 1.51739C7.78386 1.51739 7.78386 1.51739 7.78386 1.51739C7.78385 1.51739 7.78385 1.51739 7.78385 1.51739C7.78384 1.51739 7.78384 1.51739 7.78384 1.51739C7.78383 1.51739 7.78383 1.51739 7.78383 1.51739C7.78382 1.51739 7.78382 1.51739 7.78381 1.51739C7.78381 1.51739 7.78381 1.51739 7.7838 1.51739C7.7838 1.51739 7.7838 1.51739 7.78379 1.51739C7.78379 1.51739 7.78379 1.51739 7.78378 1.51739C7.78378 1.51739 7.78378 1.51739 7.78377 1.51739C7.78377 1.51739 7.78377 1.51739 7.78376 1.51739C7.78376 1.51739 7.78376 1.51739 7.78375 1.51739C7.78375 1.51739 7.78375 1.51739 7.78374 1.51739C7.78374 1.51739 7.78373 1.51739 7.78373 1.51739C7.78373 1.51739 7.78372 1.51739 7.78372 1.51739C7.78372 1.51739 7.78371 1.51739 7.78371 1.51739C7.78371 1.51739 7.7837 1.51739 7.7837 1.51739C7.7837 1.51739 7.78369 1.51739 7.78369 1.51739C7.78369 1.51739 7.78368 1.51739 7.78368 1.51739C7.78368 1.51739 7.78367 1.51739 7.78367 1.51739C7.78367 1.51739 7.78366 1.51739 7.78366 1.51739C7.78366 1.51739 7.78365 1.51739 7.78365 1.51739C7.78364 1.51739 7.78364 1.51739 7.78364 1.51739C7.78363 1.51739 7.78363 1.51739 7.78363 1.51739C7.78362 1.51739 7.78362 1.51739 7.78362 1.51739C7.78361 1.51739 7.78361 1.51739 7.78361 1.51739C7.7836 1.51739 7.7836 1.51739 7.7836 1.51739C7.78359 1.51739 7.78359 1.51739 7.78359 1.51739C7.78358 1.51739 7.78358 1.51739 7.78358 1.51739C7.78357 1.51739 7.78357 1.51739 7.78357 1.51739C7.78356 1.51739 7.78356 1.51739 7.78356 1.51739C7.78355 1.51739 7.78355 1.51739 7.78354 1.51739C7.78354 1.51739 7.78354 1.51739 7.78353 1.51739C7.78353 1.51739 7.78353 1.51739 7.78352 1.51739C7.78352 1.51739 7.78352 1.51739 7.78351 1.51739C7.78351 1.51739 7.78351 1.51739 7.7835 1.51739C7.7835 1.51739 7.7835 1.51739 7.78349 1.51739C7.78349 1.51739 7.78349 1.51739 7.78348 1.51739C7.78348 1.51739 7.78348 1.51739 7.78347 1.51739C7.78347 1.51739 7.78347 1.51739 7.78346 1.51739C7.78346 1.51739 7.78345 1.51739 7.78345 1.51739C7.78345 1.51739 7.78344 1.51739 7.78344 1.51739C7.78344 1.51739 7.78343 1.51739 7.78343 1.51739C7.78343 1.51739 7.78342 1.51739 7.78342 1.51739C7.78342 1.51739 7.78341 1.51739 7.78341 1.51739C7.78341 1.51739 7.7834 1.51739 7.7834 1.51739C7.7834 1.51739 7.78339 1.51739 7.78339 1.51739C7.78339 1.51739 7.78338 1.51739 7.78338 1.51739C7.78338 1.51739 7.78337 1.51739 7.78337 1.51739C7.78337 1.51739 7.78336 1.51739 7.78336 1.51739C7.78336 1.51739 7.78335 1.51739 7.78335 1.51739C7.78335 1.51739 7.78334 1.51739 7.78334 1.51739C7.78334 1.51739 7.78333 1.51739 7.78333 1.51739C7.78332 1.51739 7.78332 1.51739 7.78332 1.51739C7.78331 1.51739 7.78331 1.51739 7.78331 1.51739C7.7833 1.51739 7.7833 1.51739 7.7833 1.51739C7.78329 1.51739 7.78329 1.51739 7.78329 1.51739C7.78328 1.51739 7.78328 1.51739 7.78328 1.51739C7.78327 1.51739 7.78327 1.51739 7.78327 1.51739C7.78326 1.51739 7.78326 1.51739 7.78326 1.51739C7.78325 1.51739 7.78325 1.51739 7.78325 1.51739C7.78324 1.51739 7.78324 1.51739 7.78324 1.51739C7.78323 1.51739 7.78323 1.51739 7.78323 1.51739C7.78322 1.51739 7.78322 1.51739 7.78322 1.51739C7.78321 1.51739 7.78321 1.51739 7.78321 1.51739C7.7832 1.51739 7.7832 1.51739 7.7832 1.51739C7.78319 1.51739 7.78319 1.51739 7.78318 1.51739C7.78318 1.51739 7.78318 1.51739 7.78317 1.51739C7.78317 1.51739 7.78317 1.51739 7.78316 1.51739C7.78316 1.51739 7.78316 1.51739 7.78315 1.51739C7.78315 1.51739 7.78315 1.51739 7.78314 1.51739C7.78314 1.51739 7.78314 1.51739 7.78313 1.51739C7.78313 1.51739 7.78313 1.51739 7.78312 1.51739C7.78312 1.51739 7.78312 1.51739 7.78311 1.51739C7.78311 1.51739 7.78311 1.51739 7.7831 1.51739C7.7831 1.51739 7.7831 1.51739 7.78309 1.51739C7.78309 1.51739 7.78309 1.51739 7.78308 1.51739C7.78308 1.51739 7.78308 1.51739 7.78307 1.51739C7.78307 1.51739 7.78307 1.51739 7.78306 1.51739C7.78306 1.51739 7.78306 1.51739 7.78305 1.51739C7.78305 1.51739 7.78305 1.51739 7.78304 1.51739C7.78304 1.51739 7.78304 1.51739 7.78303 1.51739C7.78303 1.51739 7.78302 1.51739 7.78302 1.51739C7.78302 1.51739 7.78301 1.51739 7.78301 1.51739C7.78301 1.51739 7.783 1.51739 7.783 1.51739C7.783 1.51739 7.78299 1.51739 7.78299 1.51739C7.78299 1.51739 7.78298 1.51739 7.78298 1.51739C7.78298 1.51739 7.78297 1.51739 7.78297 1.51739C7.78297 1.51739 7.78296 1.51739 7.78296 1.51739C7.78296 1.51739 7.78295 1.51739 7.78295 1.51739C7.78295 1.51739 7.78294 1.51739 7.78294 1.51739C7.78294 1.51739 7.78293 1.51739 7.78293 1.51739C7.78293 1.51739 7.78292 1.51739 7.78292 1.51739C7.78292 1.51739 7.78291 1.51739 7.78291 1.51739C7.78291 1.51739 7.7829 1.51739 7.7829 1.51739C7.7829 1.51739 7.78289 1.51739 7.78289 1.51739C7.78289 1.51739 7.78288 1.51739 7.78288 1.51739C7.78288 1.51739 7.78287 1.51739 7.78287 1.51739C7.78287 1.51739 7.78286 1.51739 7.78286 1.51739C7.78286 1.51739 7.78285 1.51739 7.78285 1.51739C7.78285 1.51739 7.78284 1.51739 7.78284 1.51739C7.78284 1.51739 7.78283 1.51739 7.78283 1.51739C7.78282 1.51739 7.78282 1.51739 7.78282 1.51739C7.78281 1.51739 7.78281 1.51739 7.78281 1.51739C7.7828 1.51739 7.7828 1.51739 7.7828 1.51739C7.78279 1.51739 7.78279 1.51739 7.78279 1.51739C7.78278 1.51739 7.78278 1.51739 7.78278 1.51739C7.78277 1.51739 7.78277 1.51739 7.78277 1.51739C7.78276 1.51739 7.78276 1.51739 7.78276 1.51739C7.78275 1.51739 7.78275 1.51739 7.78275 1.51739C7.78274 1.51739 7.78274 1.51739 7.78274 1.51739C7.78273 1.51739 7.78273 1.51739 7.78273 1.51739C7.78272 1.51739 7.78272 1.51739 7.78272 1.51739C7.78271 1.51739 7.78271 1.51739 7.78271 1.51739C7.7827 1.51739 7.7827 1.51739 7.7827 1.51739C7.78269 1.51739 7.78269 1.51739 7.78269 1.51739C7.78268 1.51739 7.78268 1.51739 7.78268 1.51739C7.78267 1.51739 7.78267 1.51739 7.78267 1.51739C7.78266 1.51739 7.78266 1.51739 7.78266 1.51739C7.78265 1.51739 7.78265 1.51739 7.78265 1.51739C7.78264 1.51739 7.78264 1.51739 7.78264 1.51739C7.78263 1.51739 7.78263 1.51739 7.78263 1.51739C7.78262 1.51739 7.78262 1.51739 7.78262 1.51739C7.78261 1.51739 7.78261 1.51739 7.78261 1.51739C7.7826 1.51739 7.7826 1.51739 7.7826 1.51739C7.78259 1.51739 7.78259 1.51739 7.78259 1.51739C7.78258 1.51739 7.78258 1.51739 7.78258 1.51739C7.78257 1.51739 7.78257 1.51739 7.78257 1.51739C7.78256 1.51739 7.78256 1.51739 7.78256 1.51739C7.78255 1.51739 7.78255 1.51739 7.78255 1.51739C7.78254 1.51739 7.78254 1.51739 7.78254 1.51739C7.78253 1.51739 7.78253 1.51739 7.78253 1.51739C7.78252 1.51739 7.78252 1.51739 7.78252 1.51739C7.78251 1.51739 7.78251 1.51739 7.78251 1.51739C7.7825 1.51739 7.7825 1.51739 7.7825 1.51739C7.78249 1.51739 7.78249 1.51739 7.78249 1.51739C7.78248 1.51739 7.78248 1.51739 7.78247 1.51739C7.78247 1.51739 7.78247 1.51739 7.78246 1.51739C7.78246 1.51739 7.78246 1.51739 7.78245 1.51739C7.78245 1.51739 7.78245 1.51739 7.78244 1.51739C7.78244 1.51739 7.78244 1.51739 7.78243 1.51739C7.78243 1.51739 7.78243 1.51739 7.78242 1.51739C7.78242 1.51739 7.78242 1.51739 7.78241 1.51739C7.78241 1.51739 7.78241 1.51739 7.7824 1.51739C7.7824 1.51739 7.7824 1.51739 7.78239 1.51739C7.78239 1.51739 7.78239 1.51739 7.78238 1.51739C7.78238 1.51739 7.78238 1.51739 7.78237 1.51739C7.78237 1.51739 7.78237 1.51739 7.78236 1.51739C7.78236 1.51739 7.78236 1.51739 7.78235 1.51739C7.78235 1.51739 7.78235 1.51739 7.78234 1.51739C7.78234 1.51739 7.78234 1.51739 7.78233 1.51739C7.78233 1.51739 7.78233 1.51739 7.78232 1.51739C7.78232 1.51739 7.78232 1.51739 7.78231 1.51739C7.78231 1.51739 7.78231 1.51739 7.7823 1.51739C7.7823 1.51739 7.7823 1.51739 7.78229 1.51739C7.78229 1.51739 7.78229 1.51739 7.78228 1.51739C7.78228 1.51739 7.78228 1.51739 7.78227 1.51739C7.78227 1.51739 7.78227 1.51739 7.78226 1.51739C7.78226 1.51739 7.78226 1.51739 7.78225 1.51739C7.78225 1.51739 7.78225 1.51739 7.78224 1.51739C7.78224 1.51739 7.78224 1.51739 7.78223 1.51739C7.78223 1.51739 7.78223 1.51739 7.78222 1.51739C7.78222 1.51739 7.78222 1.51739 7.78221 1.51739C7.78221 1.51739 7.78221 1.51739 7.7822 1.51739C7.7822 1.51739 7.7822 1.51739 7.78219 1.51739C7.78219 1.51739 7.78219 1.51739 7.78218 1.51739C7.78218 1.51739 7.78218 1.51739 7.78217 1.51739C7.78217 1.51739 7.78217 1.51739 7.78216 1.51739C7.78216 1.51739 7.78216 1.51739 7.78215 1.51739C7.78215 1.51739 7.78215 1.51739 7.78214 1.51739C7.78214 1.51739 7.78214 1.51739 7.78213 1.51739C7.78213 1.51739 7.78213 1.51739 7.78212 1.51739C7.78212 1.51739 7.78212 1.51739 7.78211 1.51739C7.78211 1.51739 7.78211 1.51739 7.7821 1.51739C7.7821 1.51739 7.7821 1.51739 7.78209 1.51739C7.78209 1.51739 7.78209 1.51739 7.78208 1.51739C7.78208 1.51739 7.78207 1.51739 7.78207 1.51739C7.78207 1.51739 7.78206 1.51739 7.78206 1.51739C7.78206 1.51739 7.78205 1.51739 7.78205 1.51739C7.78205 1.51739 7.78204 1.51739 7.78204 1.51739C7.78204 1.51739 7.78203 1.51739 7.78203 1.51739C7.78203 1.51739 7.78202 1.51739 7.78202 1.51739C7.78202 1.51739 7.78201 1.51739 7.78201 1.51739C7.78201 1.51739 7.782 1.51739 7.782 1.51739C7.782 1.51739 7.78199 1.51739 7.78199 1.51739C7.78199 1.51739 7.78198 1.51739 7.78198 1.51739C7.78198 1.51739 7.78197 1.51739 7.78197 1.51739C7.78197 1.51739 7.78196 1.51739 7.78196 1.51739C7.78196 1.51739 7.78195 1.51739 7.78195 1.51739C7.78195 1.51739 7.78194 1.51739 7.78194 1.51739C7.78194 1.51739 7.78193 1.51739 7.78193 1.51739C7.78193 1.51739 7.78192 1.51739 7.78192 1.51739C7.78192 1.51739 7.78191 1.51739 7.78191 1.51739C7.78191 1.51739 7.7819 1.51739 7.7819 1.51739C7.7819 1.51739 7.78189 1.51739 7.78189 1.51739C7.78189 1.51739 7.78188 1.51739 7.78188 1.51739C7.78188 1.51739 7.78187 1.51739 7.78187 1.51739C7.78187 1.51739 7.78186 1.51739 7.78186 1.51739C7.78186 1.51739 7.78185 1.51739 7.78185 1.51739C7.78185 1.51739 7.78184 1.51739 7.78184 1.51739C7.78184 1.51739 7.78183 1.51739 7.78183 1.51739C7.78183 1.51739 7.78182 1.51739 7.78182 1.51739C7.78182 1.51739 7.78181 1.51739 7.78181 1.51739C7.78181 1.51739 7.7818 1.51739 7.7818 1.51739C7.7818 1.51739 7.78179 1.51739 7.78179 1.51739C7.78179 1.51739 7.78178 1.51739 7.78178 1.51739C7.78178 1.51739 7.78177 1.51739 7.78177 1.51739C7.78177 1.51739 7.78176 1.51739 7.78176 1.51739C7.78176 1.51739 7.78175 1.51739 7.78175 1.51739C7.78175 1.51739 7.78174 1.51739 7.78174 1.51739C7.78174 1.51739 7.78173 1.51739 7.78173 1.51739C7.78173 1.51739 7.78172 1.51739 7.78172 1.51739C7.78172 1.51739 7.78171 1.51739 7.78171 1.51739C7.78171 1.51739 7.7817 1.51739 7.7817 1.51739C7.7817 1.51739 7.78169 1.51739 7.78169 1.51739C7.78169 1.51739 7.78168 1.51739 7.78168 1.51739C7.78168 1.51739 7.78167 1.51739 7.78167 1.51739C7.78167 1.51739 7.78166 1.51739 7.78166 1.51739C7.78165 1.51739 7.78165 1.51739 7.78165 1.51739C7.78164 1.51739 7.78164 1.51739 7.78164 1.51739C7.78163 1.51739 7.78163 1.51739 7.78163 1.51739C7.78162 1.51739 7.78162 1.51739 7.78162 1.51739C7.78161 1.51739 7.78161 1.51739 7.78161 1.51739C7.7816 1.51739 7.7816 1.51739 7.7816 1.51739C7.78159 1.51739 7.78159 1.51739 7.78159 1.51739C7.78158 1.51739 7.78158 1.51739 7.78158 1.51739C7.78157 1.51739 7.78157 1.51739 7.78157 1.51739C7.78156 1.51739 7.78156 1.51739 7.78156 1.51739C7.78155 1.51739 7.78155 1.51739 7.78155 1.51739C7.78154 1.51739 7.78154 1.51739 7.78154 1.51739C7.78153 1.51739 7.78153 1.51739 7.78153 1.51739C7.78152 1.51739 7.78152 1.51739 7.78152 1.51739C7.78151 1.51739 7.78151 1.51739 7.78151 1.51739C7.7815 1.51739 7.7815 1.51739 7.7815 1.51739C7.78149 1.51739 7.78149 1.51739 7.78149 1.51739C7.78148 1.51739 7.78148 1.51739 7.78148 1.51739C7.78147 1.51739 7.78147 1.51739 7.78147 1.51739C7.78146 1.51739 7.78146 1.51739 7.78146 1.51739C7.78145 1.51739 7.78145 1.51739 7.78145 1.51739C7.78144 1.51739 7.78144 1.51739 7.78144 1.51739C7.78143 1.51739 7.78143 1.51739 7.78143 1.51739C7.78142 1.51739 7.78142 1.51739 7.78142 1.51739C7.78141 1.51739 7.78141 1.51739 7.78141 1.51739C7.7814 1.51739 7.7814 1.51739 7.7814 1.51739C7.78139 1.51739 7.78139 1.51739 7.78138 1.51739C7.78138 1.51739 7.78138 1.51739 7.78137 1.51739C7.78137 1.51739 7.78137 1.51739 7.78136 1.51739C7.78136 1.51739 7.78136 1.51739 7.78135 1.51739C7.78135 1.51739 7.78135 1.51739 7.78134 1.51739C7.78134 1.51739 7.78134 1.51739 7.78133 1.51739C7.78133 1.51739 7.78133 1.51739 7.78132 1.51739C7.78132 1.51739 7.78132 1.51739 7.78131 1.51739C7.78131 1.51739 7.78131 1.51739 7.7813 1.51739C7.7813 1.51739 7.7813 1.51739 7.78129 1.51739C7.78129 1.51739 7.78129 1.51739 7.78128 1.51739C7.78128 1.51739 7.78128 1.51739 7.78127 1.51739C7.78127 1.51739 7.78127 1.51739 7.78126 1.51739C7.78126 1.51739 7.78126 1.51739 7.78125 1.51739C7.78125 1.51739 7.78125 1.51739 7.78124 1.51739C7.78124 1.51739 7.78124 1.51739 7.78123 1.51739C7.78123 1.51739 7.78123 1.51739 7.78122 1.51739C7.78122 1.51739 7.78122 1.51739 7.78121 1.51739C7.78121 1.51739 7.78121 1.51739 7.7812 1.51739C7.7812 1.51739 7.7812 1.51739 7.78119 1.51739C7.78119 1.51739 7.78119 1.51739 7.78118 1.51739C7.78118 1.51739 7.78117 1.51739 7.78117 1.51739C7.78117 1.51739 7.78116 1.51739 7.78116 1.51739C7.78116 1.51739 7.78115 1.51739 7.78115 1.51739C7.78115 1.51739 7.78114 1.51739 7.78114 1.51739C7.78114 1.51739 7.78113 1.51739 7.78113 1.51739C7.78113 1.51739 7.78112 1.51739 7.78112 1.51739C7.78112 1.51739 7.78111 1.51739 7.78111 1.51739C7.78111 1.51739 7.7811 1.51739 7.7811 1.51739C7.7811 1.51739 7.78109 1.51739 7.78109 1.51739C7.78109 1.51739 7.78108 1.51739 7.78108 1.51739C7.78108 1.51739 7.78107 1.51739 7.78107 1.51739C7.78107 1.51739 7.78106 1.51739 7.78106 1.51739C7.78106 1.51739 7.78105 1.51739 7.78105 1.51739C7.78105 1.51739 7.78104 1.51739 7.78104 1.51739C7.78104 1.51739 7.78103 1.51739 7.78103 1.51739C7.78102 1.51739 7.78102 1.51739 7.78102 1.51739C7.78101 1.51739 7.78101 1.51739 7.78101 1.51739C7.781 1.51739 7.781 1.51739 7.781 1.51739C7.78099 1.51739 7.78099 1.51739 7.78099 1.51739C7.78098 1.51739 7.78098 1.51739 7.78098 1.51739C7.78097 1.51739 7.78097 1.51739 7.78097 1.51739C7.78096 1.51739 7.78096 1.51739 7.78096 1.51739C7.78095 1.51739 7.78095 1.51739 7.78095 1.51739C7.78094 1.51739 7.78094 1.51739 7.78094 1.51739C7.78093 1.51739 7.78093 1.51739 7.78093 1.51739C7.78092 1.51739 7.78092 1.51739 7.78092 1.51739C7.78091 1.51739 7.78091 1.51739 7.78091 1.51739C7.7809 1.51739 7.7809 1.51739 7.7809 1.51739C7.78089 1.51739 7.78089 1.51739 7.78088 1.51739C7.78088 1.51739 7.78088 1.51739 7.78087 1.51739C7.78087 1.51739 7.78087 1.51739 7.78086 1.51739C7.78086 1.51739 7.78086 1.51739 7.78085 1.51739C7.78085 1.51739 7.78085 1.51739 7.78084 1.51739C7.78084 1.51739 7.78084 1.51739 7.78083 1.51739C7.78083 1.51739 7.78083 1.51739 7.78082 1.51739C7.78082 1.51739 7.78082 1.51739 7.78081 1.51739C7.78081 1.51739 7.78081 1.51739 7.7808 1.51739C7.7808 1.51739 7.7808 1.51739 7.78079 1.51739C7.78079 1.51739 7.78079 1.51739 7.78078 1.51739C7.78078 1.51739 7.78078 1.51739 7.78077 1.51739C7.78077 1.51739 7.78076 1.51739 7.78076 1.51739C7.78076 1.51739 7.78075 1.51739 7.78075 1.51739C7.78075 1.51739 7.78074 1.51739 7.78074 1.51739C7.78074 1.51739 7.78073 1.51739 7.78073 1.51739C7.78073 1.51739 7.78072 1.51739 7.78072 1.51739C7.78072 1.51739 7.78071 1.51739 7.78071 1.51739C7.78071 1.51739 7.7807 1.51739 7.7807 1.51739C7.7807 1.51739 7.78069 1.51739 7.78069 1.51739C7.78069 1.51739 7.78068 1.51739 7.78068 1.51739C7.78067 1.51739 7.78067 1.51739 7.78067 1.51739C7.78066 1.51739 7.78066 1.51739 7.78066 1.51739C7.78065 1.51739 7.78065 1.51739 7.78065 1.51739C7.78064 1.51739 7.78064 1.51739 7.78064 1.51739C7.78063 1.51739 7.78063 1.51739 7.78063 1.51739C7.78062 1.51739 7.78062 1.51739 7.78062 1.51739C7.78061 1.51739 7.78061 1.51739 7.78061 1.51739C7.7806 1.51739 7.7806 1.51739 7.7806 1.51739C7.78059 1.51739 7.78059 1.51739 7.78059 1.51739C7.78058 1.51739 7.78058 1.51739 7.78057 1.51739C7.78057 1.51739 7.78057 1.51739 7.78056 1.51739C7.78056 1.51739 7.78056 1.51739 7.78055 1.51739C7.78055 1.51739 7.78055 1.51739 7.78054 1.51739C7.78054 1.51739 7.78054 1.51739 7.78053 1.51739C7.78053 1.51739 7.78053 1.51739 7.78052 1.51739C7.78052 1.51739 7.78052 1.51739 7.78051 1.51739C7.78051 1.51739 7.78051 1.51739 7.7805 1.51739C7.7805 1.51739 7.78049 1.51739 7.78049 1.51739C7.78049 1.51739 7.78048 1.51739 7.78048 1.51739C7.78048 1.51739 7.78047 1.51739 7.78047 1.51739C7.78047 1.51739 7.78046 1.51739 7.78046 1.51739C7.78046 1.51739 7.78045 1.51739 7.78045 1.51739C7.78045 1.51739 7.78044 1.51739 7.78044 1.51739C7.78044 1.51739 7.78043 1.51739 7.78043 1.51739C7.78043 1.51739 7.78042 1.51739 7.78042 1.51739C7.78041 1.51739 7.78041 1.51739 7.78041 1.51739C7.7804 1.51739 7.7804 1.51739 7.7804 1.51739C7.78039 1.51739 7.78039 1.51739 7.78039 1.51739C7.78038 1.51739 7.78038 1.51739 7.78038 1.51739C7.78037 1.51739 7.78037 1.51739 7.78037 1.51739C7.78036 1.51739 7.78036 1.51739 7.78036 1.51739C7.78035 1.51739 7.78035 1.51739 7.78034 1.51739C7.78034 1.51739 7.78034 1.51739 7.78033 1.51739C7.78033 1.51739 7.78033 1.51739 7.78032 1.51739C7.78032 1.51739 7.78032 1.51739 7.78031 1.51739C7.78031 1.51739 7.78031 1.51739 7.7803 1.51739C7.7803 1.51739 7.7803 1.51739 7.78029 1.51739C7.78029 1.51739 7.78029 1.51739 7.78028 1.51739C7.78028 1.51739 7.78027 1.51739 7.78027 1.51739C7.78027 1.51739 7.78026 1.51739 7.78026 1.51739C7.78026 1.51739 7.78025 1.51739 7.78025 1.51739C7.78025 1.51739 7.78024 1.51739 7.78024 1.51739C7.78024 1.51739 7.78023 1.51739 7.78023 1.51739C7.78023 1.51739 7.78022 1.51739 7.78022 1.51739C7.78021 1.51739 7.78021 1.51739 7.78021 1.51739C7.7802 1.51739 7.7802 1.51739 7.7802 1.51739C7.78019 1.51739 7.78019 1.51739 7.78019 1.51739C7.78018 1.51739 7.78018 1.51739 7.78018 1.51739C7.78017 1.51739 7.78017 1.51739 7.78017 1.51739C7.78016 1.51739 7.78016 1.51739 7.78016 1.51739C7.78015 1.51739 7.78015 1.51739 7.78014 1.51739C7.78014 1.51739 7.78014 1.51739 7.78013 1.51739C7.78013 1.51739 7.78013 1.51739 7.78012 1.51739C7.78012 1.51739 7.78012 1.51739 7.78011 1.51739C7.78011 1.51739 7.78011 1.51739 7.7801 1.51739C7.7801 1.51739 7.7801 1.51739 7.78009 1.51739C7.78009 1.51739 7.78008 1.51739 7.78008 1.51739C7.78008 1.51739 7.78007 1.51739 7.78007 1.51739C7.78007 1.51739 7.78006 1.51739 7.78006 1.51739C7.78006 1.51739 7.78005 1.51739 7.78005 1.51739C7.78005 1.51739 7.78004 1.51739 7.78004 1.51739C7.78003 1.51739 7.78003 1.51739 7.78003 1.51739C7.78002 1.51739 7.78002 1.51739 7.78002 1.51739C7.78001 1.51739 7.78001 1.51739 7.78001 1.51739C7.78 1.51739 7.78 1.51739 7.78 1.51739C7.77999 1.51739 7.77999 1.51739 7.77998 1.51739C7.77998 1.51739 7.77998 1.51739 7.77997 1.51739C7.77997 1.51739 7.77997 1.51739 7.77996 1.51739C7.77996 1.51739 7.77996 1.51739 7.77995 1.51739C7.77995 1.51739 7.77995 1.51739 7.77994 1.51739C7.77994 1.51739 7.77993 1.51739 7.77993 1.51739C7.77993 1.51739 7.77992 1.51739 7.77992 1.51739C7.77992 1.51739 7.77991 1.51739 7.77991 1.51739C7.77991 1.51739 7.7799 1.51739 7.7799 1.51739C7.7799 1.51739 7.77989 1.51739 7.77989 1.51739C7.77988 1.51739 7.77988 1.51739 7.77988 1.51739C7.77987 1.51739 7.77987 1.51739 7.77987 1.51739C7.77986 1.51739 7.77986 1.51739 7.77986 1.51739C7.77985 1.51739 7.77985 1.51739 7.77985 1.51739C7.77984 1.51739 7.77984 1.51739 7.77983 1.51739C7.77983 1.51739 7.77983 1.51739 7.77982 1.51739C7.77982 1.51739 7.77982 1.51739 7.77981 1.51739C7.77981 1.51739 7.77981 1.51739 7.7798 1.51739C7.7798 1.51739 7.7798 1.51739 7.77979 1.51739C7.77979 1.51739 7.77978 1.51739 7.77978 1.51739C7.77978 1.51739 7.77977 1.51739 7.77977 1.51739C7.77977 1.51739 7.77976 1.51739 7.77976 1.51739C7.77976 1.51739 7.77975 1.51739 7.77975 1.51739C7.77974 1.51739 7.77974 1.51739 7.77974 1.51739C7.77973 1.51739 7.77973 1.51739 7.77973 1.51739C7.77972 1.51739 7.77972 1.51739 7.77972 1.51739C7.77971 1.51739 7.77971 1.51739 7.77971 1.51739C7.7797 1.51739 7.7797 1.51739 7.77969 1.51739C7.77969 1.51739 7.77969 1.51739 7.77968 1.51739C7.77968 1.51739 7.77968 1.51739 7.77967 1.51739C7.77967 1.51739 7.77967 1.51739 7.77966 1.51739C7.77966 1.51739 7.77965 1.51739 7.77965 1.51739C7.77965 1.51739 7.77964 1.51739 7.77964 1.51739C7.77964 1.51739 7.77963 1.51739 7.77963 1.51739C7.77963 1.51739 7.77962 1.51739 7.77962 1.51739C7.77961 1.51739 7.77961 1.51739 7.77961 1.51739C7.7796 1.51739 7.7796 1.51739 7.7796 1.51739C7.77959 1.51739 7.77959 1.51739 7.77959 1.51739C7.77958 1.51739 7.77958 1.51739 7.77957 1.51739C7.77957 1.51739 7.77957 1.51739 7.77956 1.51739C7.77956 1.51739 7.77956 1.51739 7.77955 1.51739C7.77955 1.51739 7.77955 1.51739 7.77954 1.51739C7.77954 1.51739 7.77953 1.51739 7.77953 1.51739C7.77953 1.51739 7.77952 1.51739 7.77952 1.51739C7.77952 1.51739 7.77951 1.51739 7.77951 1.51739C7.77951 1.51739 7.7795 1.51739 7.7795 1.51739C7.77949 1.51739 7.77949 1.51739 7.77949 1.51739C7.77948 1.51739 7.77948 1.51739 7.77948 1.51739V1.91739ZM7.78479 1.91739H9.77816V1.51739H7.78479V1.91739ZM9.63672 1.57599L7.39054 3.82287L7.67343 4.10567L9.91961 1.85879L9.63672 1.57599ZM7.39054 3.82287C7.29 3.92344 7.2273 4.06276 7.2273 4.21684H7.6273C7.6273 4.17337 7.6446 4.13451 7.67343 4.10567L7.39054 3.82287ZM7.2273 4.21684C7.2273 4.52471 7.47701 4.77382 7.78448 4.77382V4.37382C7.69758 4.37382 7.6273 4.30346 7.6273 4.21684H7.2273ZM7.78448 4.77382C7.93812 4.77382 8.07758 4.71119 8.17807 4.61115L7.89587 4.32767C7.86698 4.35642 7.8277 4.37382 7.78448 4.37382V4.77382ZM8.17841 4.61081L10.4246 2.36393L10.1417 2.08113L7.89552 4.32801L8.17841 4.61081ZM10.0831 2.22253V4.21653H10.4831V2.22253H10.0831ZM10.0831 4.21653C10.0831 4.21653 10.0831 4.21654 10.0831 4.21654C10.0831 4.21654 10.0831 4.21654 10.0831 4.21655C10.0831 4.21655 10.0831 4.21655 10.0831 4.21656C10.0831 4.21656 10.0831 4.21656 10.0831 4.21657C10.0831 4.21657 10.0831 4.21657 10.0831 4.21658C10.0831 4.21658 10.0831 4.21658 10.0831 4.21658C10.0831 4.21659 10.0831 4.21659 10.0831 4.21659C10.0831 4.2166 10.0831 4.2166 10.0831 4.2166C10.0831 4.21661 10.0831 4.21661 10.0831 4.21661C10.0831 4.21662 10.0831 4.21662 10.0831 4.21662C10.0831 4.21662 10.0831 4.21663 10.0831 4.21663C10.0831 4.21663 10.0831 4.21664 10.0831 4.21664C10.0831 4.21664 10.0831 4.21665 10.0831 4.21665C10.0831 4.21665 10.0831 4.21665 10.0831 4.21666C10.0831 4.21666 10.0831 4.21666 10.0831 4.21667C10.0831 4.21667 10.0831 4.21667 10.0831 4.21668C10.0831 4.21668 10.0831 4.21668 10.0831 4.21669C10.0831 4.21669 10.0831 4.21669 10.0831 4.21669C10.0831 4.2167 10.0831 4.2167 10.0831 4.2167C10.0831 4.21671 10.0831 4.21671 10.0831 4.21671C10.0831 4.21672 10.0831 4.21672 10.0831 4.21672C10.0831 4.21673 10.0831 4.21673 10.0831 4.21673C10.0831 4.21673 10.0831 4.21674 10.0831 4.21674C10.0831 4.21674 10.0831 4.21675 10.0831 4.21675C10.0831 4.21675 10.0831 4.21676 10.0831 4.21676C10.0831 4.21676 10.0831 4.21676 10.0831 4.21677C10.0831 4.21677 10.0831 4.21677 10.0831 4.21678C10.0831 4.21678 10.0831 4.21678 10.0831 4.21679C10.0831 4.21679 10.0831 4.21679 10.0831 4.2168C10.0831 4.2168 10.0831 4.2168 10.0831 4.2168C10.0831 4.21681 10.0831 4.21681 10.0831 4.21681C10.0831 4.21682 10.0831 4.21682 10.0831 4.21682C10.0831 4.21683 10.0831 4.21683 10.0831 4.21683C10.0831 4.21684 10.0831 4.21684 10.0831 4.21684C10.0831 4.21684 10.0831 4.21685 10.0831 4.21685C10.0831 4.21685 10.0831 4.21686 10.0831 4.21686C10.0831 4.21686 10.0831 4.21687 10.0831 4.21687C10.0831 4.21687 10.0831 4.21687 10.0831 4.21688C10.0831 4.21688 10.0831 4.21688 10.0831 4.21689C10.0831 4.21689 10.0831 4.21689 10.0831 4.2169C10.0831 4.2169 10.0831 4.2169 10.0831 4.21691C10.0831 4.21691 10.0831 4.21691 10.0831 4.21691C10.0831 4.21692 10.0831 4.21692 10.0831 4.21692C10.0831 4.21693 10.0831 4.21693 10.0831 4.21693C10.0831 4.21694 10.0831 4.21694 10.0831 4.21694C10.0831 4.21694 10.0831 4.21695 10.0831 4.21695C10.0831 4.21695 10.0831 4.21696 10.0831 4.21696C10.0831 4.21696 10.0831 4.21697 10.0831 4.21697C10.0831 4.21697 10.0831 4.21698 10.0831 4.21698C10.0831 4.21698 10.0831 4.21698 10.0831 4.21699C10.0831 4.21699 10.0831 4.21699 10.0831 4.217C10.0831 4.217 10.0831 4.217 10.0831 4.21701C10.0831 4.21701 10.0831 4.21701 10.0831 4.21702C10.0831 4.21702 10.0831 4.21702 10.0831 4.21702C10.0831 4.21703 10.0831 4.21703 10.0831 4.21703C10.0831 4.21704 10.0831 4.21704 10.0831 4.21704C10.0831 4.21705 10.0831 4.21705 10.0831 4.21705C10.0831 4.21706 10.0831 4.21706 10.0831 4.21706C10.0831 4.21706 10.0831 4.21707 10.0831 4.21707C10.0831 4.21707 10.0831 4.21708 10.0831 4.21708C10.0831 4.21708 10.0831 4.21709 10.0831 4.21709C10.0831 4.21709 10.0831 4.21709 10.0831 4.2171C10.0831 4.2171 10.0831 4.2171 10.0831 4.21711C10.0831 4.21711 10.0831 4.21711 10.0831 4.21712C10.0831 4.21712 10.0831 4.21712 10.0831 4.21713C10.0831 4.21713 10.0831 4.21713 10.0831 4.21713C10.0831 4.21714 10.0831 4.21714 10.0831 4.21714C10.0831 4.21715 10.0831 4.21715 10.0831 4.21715C10.0831 4.21716 10.0831 4.21716 10.0831 4.21716C10.0831 4.21717 10.0831 4.21717 10.0831 4.21717C10.0831 4.21717 10.0831 4.21718 10.0831 4.21718C10.0831 4.21718 10.0831 4.21719 10.0831 4.21719C10.0831 4.21719 10.0831 4.2172 10.0831 4.2172C10.0831 4.2172 10.0831 4.21721 10.0831 4.21721C10.0831 4.21721 10.0831 4.21721 10.0831 4.21722C10.0831 4.21722 10.0831 4.21722 10.0831 4.21723C10.0831 4.21723 10.0831 4.21723 10.0831 4.21724C10.0831 4.21724 10.0831 4.21724 10.0831 4.21725C10.0831 4.21725 10.0831 4.21725 10.0831 4.21725C10.0831 4.21726 10.0831 4.21726 10.0831 4.21726C10.0831 4.21727 10.0831 4.21727 10.0831 4.21727C10.0831 4.21728 10.0831 4.21728 10.0831 4.21728C10.0831 4.21728 10.0831 4.21729 10.0831 4.21729C10.0831 4.21729 10.0831 4.2173 10.0831 4.2173C10.0831 4.2173 10.0831 4.21731 10.0831 4.21731C10.0831 4.21731 10.0831 4.21732 10.0831 4.21732C10.0831 4.21732 10.0831 4.21732 10.0831 4.21733C10.0831 4.21733 10.0831 4.21733 10.0831 4.21734C10.0831 4.21734 10.0831 4.21734 10.0831 4.21735C10.0831 4.21735 10.0831 4.21735 10.0831 4.21736C10.0831 4.21736 10.0831 4.21736 10.0831 4.21736C10.0831 4.21737 10.0831 4.21737 10.0831 4.21737C10.0831 4.21738 10.0831 4.21738 10.0831 4.21738C10.0831 4.21739 10.0831 4.21739 10.0831 4.21739C10.0831 4.2174 10.0831 4.2174 10.0831 4.2174C10.0831 4.2174 10.0831 4.21741 10.0831 4.21741C10.0831 4.21741 10.0831 4.21742 10.0831 4.21742C10.0831 4.21742 10.0831 4.21743 10.0831 4.21743C10.0831 4.21743 10.0831 4.21744 10.0831 4.21744C10.0831 4.21744 10.0831 4.21744 10.0831 4.21745C10.0831 4.21745 10.0831 4.21745 10.0831 4.21746C10.0831 4.21746 10.0831 4.21746 10.0831 4.21747C10.0831 4.21747 10.0831 4.21747 10.0831 4.21748C10.0831 4.21748 10.0831 4.21748 10.0831 4.21748C10.0831 4.21749 10.0831 4.21749 10.0831 4.21749C10.0831 4.2175 10.0831 4.2175 10.0831 4.2175C10.0831 4.21751 10.0831 4.21751 10.0831 4.21751C10.0831 4.21752 10.0831 4.21752 10.0831 4.21752C10.0831 4.21752 10.0831 4.21753 10.0831 4.21753C10.0831 4.21753 10.0831 4.21754 10.0831 4.21754C10.0831 4.21754 10.0831 4.21755 10.0831 4.21755C10.0831 4.21755 10.0831 4.21756 10.0831 4.21756C10.0831 4.21756 10.0831 4.21756 10.0831 4.21757C10.0831 4.21757 10.0831 4.21757 10.0831 4.21758C10.0831 4.21758 10.0831 4.21758 10.0831 4.21759C10.0831 4.21759 10.0831 4.21759 10.0831 4.2176C10.0831 4.2176 10.0831 4.2176 10.0831 4.2176C10.0831 4.21761 10.0831 4.21761 10.0831 4.21761C10.0831 4.21762 10.0831 4.21762 10.0831 4.21762C10.0831 4.21763 10.0831 4.21763 10.0831 4.21763C10.0831 4.21764 10.0831 4.21764 10.0831 4.21764C10.0831 4.21764 10.0831 4.21765 10.0831 4.21765C10.0831 4.21765 10.0831 4.21766 10.0831 4.21766C10.0831 4.21766 10.0831 4.21767 10.0831 4.21767C10.0831 4.21767 10.0831 4.21768 10.0831 4.21768C10.0831 4.21768 10.0831 4.21769 10.0831 4.21769C10.0831 4.21769 10.0831 4.21769 10.0831 4.2177C10.0831 4.2177 10.0831 4.2177 10.0831 4.21771C10.0831 4.21771 10.0831 4.21771 10.0831 4.21772C10.0831 4.21772 10.0831 4.21772 10.0831 4.21773C10.0831 4.21773 10.0831 4.21773 10.0831 4.21773C10.0831 4.21774 10.0831 4.21774 10.0831 4.21774C10.0831 4.21775 10.0831 4.21775 10.0831 4.21775C10.0831 4.21776 10.0831 4.21776 10.0831 4.21776C10.0831 4.21777 10.0831 4.21777 10.0831 4.21777C10.0831 4.21777 10.0831 4.21778 10.0831 4.21778C10.0831 4.21778 10.0831 4.21779 10.0831 4.21779C10.0831 4.21779 10.0831 4.2178 10.0831 4.2178C10.0831 4.2178 10.0831 4.21781 10.0831 4.21781C10.0831 4.21781 10.0831 4.21782 10.0831 4.21782C10.0831 4.21782 10.0831 4.21782 10.0831 4.21783C10.0831 4.21783 10.0831 4.21783 10.0831 4.21784C10.0831 4.21784 10.0831 4.21784 10.0831 4.21785C10.0831 4.21785 10.0831 4.21785 10.0831 4.21786C10.0831 4.21786 10.0831 4.21786 10.0831 4.21786C10.0831 4.21787 10.0831 4.21787 10.0831 4.21787C10.0831 4.21788 10.0831 4.21788 10.0831 4.21788C10.0831 4.21789 10.0831 4.21789 10.0831 4.21789C10.0831 4.2179 10.0831 4.2179 10.0831 4.2179C10.0831 4.21791 10.0831 4.21791 10.0831 4.21791C10.0831 4.21791 10.0831 4.21792 10.0831 4.21792C10.0831 4.21792 10.0831 4.21793 10.0831 4.21793C10.0831 4.21793 10.0831 4.21794 10.0831 4.21794C10.0831 4.21794 10.0831 4.21795 10.0831 4.21795C10.0831 4.21795 10.0831 4.21795 10.0831 4.21796C10.0831 4.21796 10.0831 4.21796 10.0831 4.21797C10.0831 4.21797 10.0831 4.21797 10.0831 4.21798C10.0831 4.21798 10.0831 4.21798 10.0831 4.21799C10.0831 4.21799 10.0831 4.21799 10.0831 4.218C10.0831 4.218 10.0831 4.218 10.0831 4.218C10.0831 4.21801 10.0831 4.21801 10.0831 4.21801C10.0831 4.21802 10.0831 4.21802 10.0831 4.21802C10.0831 4.21803 10.0831 4.21803 10.0831 4.21803C10.0831 4.21804 10.0831 4.21804 10.0831 4.21804C10.0831 4.21804 10.0831 4.21805 10.0831 4.21805C10.0831 4.21805 10.0831 4.21806 10.0831 4.21806C10.0831 4.21806 10.0831 4.21807 10.0831 4.21807C10.0831 4.21807 10.0831 4.21808 10.0831 4.21808C10.0831 4.21808 10.0831 4.21809 10.0831 4.21809C10.0831 4.21809 10.0831 4.21809 10.0831 4.2181C10.0831 4.2181 10.0831 4.2181 10.0831 4.21811C10.0831 4.21811 10.0831 4.21811 10.0831 4.21812C10.0831 4.21812 10.0831 4.21812 10.0831 4.21813C10.0831 4.21813 10.0831 4.21813 10.0831 4.21814C10.0831 4.21814 10.0831 4.21814 10.0831 4.21814C10.0831 4.21815 10.0831 4.21815 10.0831 4.21815C10.0831 4.21816 10.0831 4.21816 10.0831 4.21816C10.0831 4.21817 10.0831 4.21817 10.0831 4.21817C10.0831 4.21818 10.0831 4.21818 10.0831 4.21818C10.0831 4.21819 10.0831 4.21819 10.0831 4.21819C10.0831 4.21819 10.0831 4.2182 10.0831 4.2182C10.0831 4.2182 10.0831 4.21821 10.0831 4.21821C10.0831 4.21821 10.0831 4.21822 10.0831 4.21822C10.0831 4.21822 10.0831 4.21823 10.0831 4.21823C10.0831 4.21823 10.0831 4.21824 10.0831 4.21824C10.0831 4.21824 10.0831 4.21825 10.0831 4.21825C10.0831 4.21825 10.0831 4.21825 10.0831 4.21826C10.0831 4.21826 10.0831 4.21826 10.0831 4.21827C10.0831 4.21827 10.0831 4.21827 10.0831 4.21828C10.0831 4.21828 10.0831 4.21828 10.0831 4.21829C10.0831 4.21829 10.0831 4.21829 10.0831 4.2183C10.0831 4.2183 10.0831 4.2183 10.0831 4.2183C10.0831 4.21831 10.0831 4.21831 10.0831 4.21831C10.0831 4.21832 10.0831 4.21832 10.0831 4.21832C10.0831 4.21833 10.0831 4.21833 10.0831 4.21833C10.0831 4.21834 10.0831 4.21834 10.0831 4.21834C10.0831 4.21835 10.0831 4.21835 10.0831 4.21835C10.0831 4.21835 10.0831 4.21836 10.0831 4.21836C10.0831 4.21836 10.0831 4.21837 10.0831 4.21837C10.0831 4.21837 10.0831 4.21838 10.0831 4.21838C10.0831 4.21838 10.0831 4.21839 10.0831 4.21839C10.0831 4.21839 10.0831 4.2184 10.0831 4.2184C10.0831 4.2184 10.0831 4.21841 10.0831 4.21841C10.0831 4.21841 10.0831 4.21841 10.0831 4.21842C10.0831 4.21842 10.0831 4.21842 10.0831 4.21843C10.0831 4.21843 10.0831 4.21843 10.0831 4.21844C10.0831 4.21844 10.0831 4.21844 10.0831 4.21845C10.0831 4.21845 10.0831 4.21845 10.0831 4.21846C10.0831 4.21846 10.0831 4.21846 10.0831 4.21847C10.0831 4.21847 10.0831 4.21847 10.0831 4.21847C10.0831 4.21848 10.0831 4.21848 10.0831 4.21848C10.0831 4.21849 10.0831 4.21849 10.0831 4.21849C10.0831 4.2185 10.0831 4.2185 10.0831 4.2185C10.0831 4.21851 10.0831 4.21851 10.0831 4.21851C10.0831 4.21852 10.0831 4.21852 10.0831 4.21852C10.0831 4.21852 10.0831 4.21853 10.0831 4.21853C10.0831 4.21853 10.0831 4.21854 10.0831 4.21854C10.0831 4.21854 10.0831 4.21855 10.0831 4.21855C10.0831 4.21855 10.0831 4.21856 10.0831 4.21856C10.0831 4.21856 10.0831 4.21857 10.0831 4.21857C10.0831 4.21857 10.0831 4.21858 10.0831 4.21858C10.0831 4.21858 10.0831 4.21859 10.0831 4.21859C10.0831 4.21859 10.0831 4.21859 10.0831 4.2186C10.0831 4.2186 10.0831 4.2186 10.0831 4.21861C10.0831 4.21861 10.0831 4.21861 10.0831 4.21862C10.0831 4.21862 10.0831 4.21862 10.0831 4.21863C10.0831 4.21863 10.0831 4.21863 10.0831 4.21864C10.0831 4.21864 10.0831 4.21864 10.0831 4.21865C10.0831 4.21865 10.0831 4.21865 10.0831 4.21865C10.0831 4.21866 10.0831 4.21866 10.0831 4.21866C10.0831 4.21867 10.0831 4.21867 10.0831 4.21867C10.0831 4.21868 10.0831 4.21868 10.0831 4.21868C10.0831 4.21869 10.0831 4.21869 10.0831 4.21869C10.0831 4.2187 10.0831 4.2187 10.0831 4.2187C10.0831 4.21871 10.0831 4.21871 10.0831 4.21871C10.0831 4.21872 10.0831 4.21872 10.0831 4.21872C10.0831 4.21872 10.0831 4.21873 10.0831 4.21873C10.0831 4.21873 10.0831 4.21874 10.0831 4.21874C10.0831 4.21874 10.0831 4.21875 10.0831 4.21875C10.0831 4.21875 10.0831 4.21876 10.0831 4.21876C10.0831 4.21876 10.0831 4.21877 10.0831 4.21877C10.0831 4.21877 10.0831 4.21878 10.0831 4.21878C10.0831 4.21878 10.0831 4.21879 10.0831 4.21879C10.0831 4.21879 10.0831 4.21879 10.0831 4.2188C10.0831 4.2188 10.0831 4.2188 10.0831 4.21881C10.0831 4.21881 10.0831 4.21881 10.0831 4.21882C10.0831 4.21882 10.0831 4.21882 10.0831 4.21883C10.0831 4.21883 10.0831 4.21883 10.0831 4.21884C10.0831 4.21884 10.0831 4.21884 10.0831 4.21885C10.0831 4.21885 10.0831 4.21885 10.0831 4.21886C10.0831 4.21886 10.0831 4.21886 10.0831 4.21887C10.0831 4.21887 10.0831 4.21887 10.0831 4.21887C10.0831 4.21888 10.0831 4.21888 10.0831 4.21888C10.0831 4.21889 10.0831 4.21889 10.0831 4.21889C10.0831 4.2189 10.0831 4.2189 10.0831 4.2189C10.0831 4.21891 10.0831 4.21891 10.0831 4.21891C10.0831 4.21892 10.0831 4.21892 10.0831 4.21892C10.0831 4.21893 10.0831 4.21893 10.0831 4.21893C10.0831 4.21894 10.0831 4.21894 10.0831 4.21894C10.0831 4.21895 10.0831 4.21895 10.0831 4.21895C10.0831 4.21896 10.0831 4.21896 10.0831 4.21896C10.0831 4.21896 10.0831 4.21897 10.0831 4.21897C10.0831 4.21897 10.0831 4.21898 10.0831 4.21898C10.0831 4.21898 10.0831 4.21899 10.0831 4.21899C10.0831 4.21899 10.0831 4.219 10.0831 4.219C10.0831 4.219 10.0831 4.21901 10.0831 4.21901C10.0831 4.21901 10.0831 4.21902 10.0831 4.21902C10.0831 4.21902 10.0831 4.21903 10.0831 4.21903C10.0831 4.21903 10.0831 4.21904 10.0831 4.21904C10.0831 4.21904 10.0831 4.21904 10.0831 4.21905C10.0831 4.21905 10.0831 4.21905 10.0831 4.21906C10.0831 4.21906 10.0831 4.21906 10.0831 4.21907C10.0831 4.21907 10.0831 4.21907 10.0831 4.21908C10.0831 4.21908 10.0831 4.21908 10.0831 4.21909C10.0831 4.21909 10.0831 4.21909 10.0831 4.2191C10.0831 4.2191 10.0831 4.2191 10.0831 4.21911C10.0831 4.21911 10.0831 4.21911 10.0831 4.21912C10.0831 4.21912 10.0831 4.21912 10.0831 4.21913C10.0831 4.21913 10.0831 4.21913 10.0831 4.21914C10.0831 4.21914 10.0831 4.21914 10.0831 4.21915C10.0831 4.21915 10.0831 4.21915 10.0831 4.21915C10.0831 4.21916 10.0831 4.21916 10.0831 4.21916C10.0831 4.21917 10.0831 4.21917 10.0831 4.21917C10.0831 4.21918 10.0831 4.21918 10.0831 4.21918C10.0831 4.21919 10.0831 4.21919 10.0831 4.21919C10.0831 4.2192 10.0831 4.2192 10.0831 4.2192C10.0831 4.21921 10.0831 4.21921 10.0831 4.21921C10.0831 4.21922 10.0831 4.21922 10.0831 4.21922C10.0831 4.21923 10.0831 4.21923 10.0831 4.21923C10.0831 4.21924 10.0831 4.21924 10.0831 4.21924C10.0831 4.21925 10.0831 4.21925 10.0831 4.21925C10.0831 4.21926 10.0831 4.21926 10.0831 4.21926C10.0831 4.21927 10.0831 4.21927 10.0831 4.21927C10.0831 4.21927 10.0831 4.21928 10.0831 4.21928C10.0831 4.21928 10.0831 4.21929 10.0831 4.21929C10.0831 4.21929 10.0831 4.2193 10.0831 4.2193C10.0831 4.2193 10.0831 4.21931 10.0831 4.21931C10.0831 4.21931 10.0831 4.21932 10.0831 4.21932C10.0831 4.21932 10.0831 4.21933 10.0831 4.21933C10.0831 4.21933 10.0831 4.21934 10.0831 4.21934C10.0831 4.21934 10.0831 4.21935 10.0831 4.21935C10.0831 4.21935 10.0831 4.21936 10.0831 4.21936C10.0831 4.21936 10.0831 4.21937 10.0831 4.21937C10.0831 4.21937 10.0831 4.21938 10.0831 4.21938C10.0831 4.21938 10.0831 4.21939 10.0831 4.21939C10.0831 4.21939 10.0831 4.2194 10.0831 4.2194C10.0831 4.2194 10.0831 4.21941 10.0831 4.21941C10.0831 4.21941 10.0831 4.21942 10.0831 4.21942C10.0831 4.21942 10.0831 4.21942 10.0831 4.21943C10.0831 4.21943 10.0831 4.21943 10.0831 4.21944C10.0831 4.21944 10.0831 4.21944 10.0831 4.21945C10.0831 4.21945 10.0831 4.21945 10.0831 4.21946C10.0831 4.21946 10.0831 4.21946 10.0831 4.21947C10.0831 4.21947 10.0831 4.21947 10.0831 4.21948C10.0831 4.21948 10.0831 4.21948 10.0831 4.21949C10.0831 4.21949 10.0831 4.21949 10.0831 4.2195C10.0831 4.2195 10.0831 4.2195 10.0831 4.21951C10.0831 4.21951 10.0831 4.21951 10.0831 4.21952C10.0831 4.21952 10.0831 4.21952 10.0831 4.21953C10.0831 4.21953 10.0831 4.21953 10.0831 4.21954C10.0831 4.21954 10.0831 4.21954 10.0831 4.21955C10.0831 4.21955 10.0831 4.21955 10.0831 4.21956C10.0831 4.21956 10.0831 4.21956 10.0831 4.21957C10.0831 4.21957 10.0831 4.21957 10.0831 4.21958C10.0831 4.21958 10.0831 4.21958 10.0831 4.21959C10.0831 4.21959 10.0831 4.21959 10.0831 4.2196C10.0831 4.2196 10.0831 4.2196 10.0831 4.21961C10.0831 4.21961 10.0831 4.21961 10.0831 4.21962C10.0831 4.21962 10.0831 4.21962 10.0831 4.21963C10.0831 4.21963 10.0831 4.21963 10.0831 4.21964C10.0831 4.21964 10.0831 4.21964 10.0831 4.21965C10.0831 4.21965 10.0831 4.21965 10.0831 4.21966C10.0831 4.21966 10.0831 4.21966 10.0831 4.21967C10.0831 4.21967 10.0831 4.21967 10.0831 4.21968C10.0831 4.21968 10.0831 4.21968 10.0831 4.21969C10.0831 4.21969 10.0831 4.21969 10.0831 4.2197C10.0831 4.2197 10.0831 4.2197 10.0831 4.21971C10.0831 4.21971 10.0831 4.21971 10.0831 4.21972C10.0831 4.21972 10.0831 4.21972 10.0831 4.21973C10.0831 4.21973 10.0831 4.21973 10.0831 4.21974C10.0831 4.21974 10.0831 4.21974 10.0831 4.21974C10.0831 4.21975 10.0831 4.21975 10.0831 4.21975C10.0831 4.21976 10.0831 4.21976 10.0831 4.21976C10.0831 4.21977 10.0831 4.21977 10.0831 4.21977C10.0831 4.21978 10.0831 4.21978 10.0831 4.21978C10.0831 4.21979 10.0831 4.21979 10.0831 4.21979C10.0831 4.2198 10.0831 4.2198 10.0831 4.21981C10.0831 4.21981 10.0831 4.21981 10.0831 4.21982C10.0831 4.21982 10.0831 4.21982 10.0831 4.21983C10.0831 4.21983 10.0831 4.21983 10.0831 4.21984C10.0831 4.21984 10.0831 4.21984 10.0831 4.21985C10.0831 4.21985 10.0831 4.21985 10.0831 4.21986C10.0831 4.21986 10.0831 4.21986 10.0831 4.21987C10.0831 4.21987 10.0831 4.21987 10.0831 4.21988C10.0831 4.21988 10.0831 4.21988 10.0831 4.21989C10.0831 4.21989 10.0831 4.21989 10.0831 4.2199C10.0831 4.2199 10.0831 4.2199 10.0831 4.21991C10.0831 4.21991 10.0831 4.21991 10.0831 4.21992C10.0831 4.21992 10.0831 4.21992 10.0831 4.21993C10.0831 4.21993 10.0831 4.21993 10.0831 4.21994C10.0831 4.21994 10.0831 4.21994 10.0831 4.21995C10.0831 4.21995 10.0831 4.21995 10.0831 4.21996C10.0831 4.21996 10.0831 4.21996 10.0831 4.21997C10.0831 4.21997 10.0831 4.21997 10.0831 4.21998C10.0831 4.21998 10.0831 4.21998 10.0831 4.21999C10.0831 4.21999 10.0831 4.21999 10.0831 4.22C10.0831 4.22 10.0831 4.22 10.0831 4.22001C10.0831 4.22001 10.0831 4.22001 10.0831 4.22002C10.0831 4.22002 10.0831 4.22002 10.0831 4.22003C10.0831 4.22003 10.0831 4.22003 10.0831 4.22004C10.0831 4.22004 10.0831 4.22004 10.0831 4.22005C10.0831 4.22005 10.0831 4.22005 10.0831 4.22006C10.0831 4.22006 10.0831 4.22006 10.0831 4.22007C10.0831 4.22007 10.0831 4.22007 10.0831 4.22008C10.0831 4.22008 10.0831 4.22008 10.0831 4.22009C10.0831 4.22009 10.0831 4.22009 10.0831 4.2201C10.0831 4.2201 10.0831 4.2201 10.0831 4.22011C10.0831 4.22011 10.0831 4.22011 10.0831 4.22012C10.0831 4.22012 10.0831 4.22012 10.0831 4.22013C10.0831 4.22013 10.0831 4.22013 10.0831 4.22014C10.0831 4.22014 10.0831 4.22014 10.0831 4.22015C10.0831 4.22015 10.0831 4.22015 10.0831 4.22016C10.0831 4.22016 10.0831 4.22016 10.0831 4.22017C10.0831 4.22017 10.0831 4.22018 10.0831 4.22018C10.0831 4.22018 10.0831 4.22019 10.0831 4.22019C10.0831 4.22019 10.0831 4.2202 10.0831 4.2202C10.0831 4.2202 10.0831 4.22021 10.0831 4.22021C10.0831 4.22021 10.0831 4.22022 10.0831 4.22022C10.0831 4.22022 10.0831 4.22023 10.0831 4.22023C10.0831 4.22023 10.0831 4.22024 10.0831 4.22024C10.0831 4.22024 10.0831 4.22025 10.0831 4.22025C10.0831 4.22025 10.0831 4.22026 10.0831 4.22026C10.0831 4.22026 10.0831 4.22027 10.0831 4.22027C10.0831 4.22027 10.0831 4.22028 10.0831 4.22028C10.0831 4.22028 10.0831 4.22029 10.0831 4.22029C10.0831 4.22029 10.0831 4.2203 10.0831 4.2203C10.0831 4.2203 10.0831 4.22031 10.0831 4.22031C10.0831 4.22031 10.0831 4.22032 10.0831 4.22032C10.0831 4.22032 10.0831 4.22033 10.0831 4.22033C10.0831 4.22034 10.0831 4.22034 10.0831 4.22034C10.0831 4.22035 10.0831 4.22035 10.0831 4.22035C10.0831 4.22036 10.0831 4.22036 10.0831 4.22036C10.0831 4.22037 10.0831 4.22037 10.0831 4.22037C10.0831 4.22038 10.0831 4.22038 10.0831 4.22038C10.0831 4.22039 10.0831 4.22039 10.0831 4.22039C10.0831 4.2204 10.0831 4.2204 10.0831 4.2204C10.0831 4.22041 10.0831 4.22041 10.0831 4.22041C10.0831 4.22042 10.0831 4.22042 10.0831 4.22042C10.0831 4.22043 10.0831 4.22043 10.0831 4.22043C10.0831 4.22044 10.0831 4.22044 10.0831 4.22045C10.0831 4.22045 10.0831 4.22045 10.0831 4.22046C10.0831 4.22046 10.0831 4.22046 10.0831 4.22047C10.0831 4.22047 10.0831 4.22047 10.0831 4.22048C10.0831 4.22048 10.0831 4.22048 10.0831 4.22049C10.0831 4.22049 10.0831 4.22049 10.0831 4.2205C10.0831 4.2205 10.0831 4.2205 10.0831 4.22051C10.0831 4.22051 10.0831 4.22051 10.0831 4.22052C10.0831 4.22052 10.0831 4.22052 10.0831 4.22053C10.0831 4.22053 10.0831 4.22053 10.0831 4.22054C10.0831 4.22054 10.0831 4.22055 10.0831 4.22055C10.0831 4.22055 10.0831 4.22056 10.0831 4.22056C10.0831 4.22056 10.0831 4.22057 10.0831 4.22057C10.0831 4.22057 10.0831 4.22058 10.0831 4.22058C10.0831 4.22058 10.0831 4.22059 10.0831 4.22059C10.0831 4.22059 10.0831 4.2206 10.0831 4.2206C10.0831 4.2206 10.0831 4.22061 10.0831 4.22061C10.0831 4.22061 10.0831 4.22062 10.0831 4.22062C10.0831 4.22063 10.0831 4.22063 10.0831 4.22063C10.0831 4.22064 10.0831 4.22064 10.0831 4.22064C10.0831 4.22065 10.0831 4.22065 10.0831 4.22065C10.0831 4.22066 10.0831 4.22066 10.0831 4.22066C10.0831 4.22067 10.0831 4.22067 10.0831 4.22067C10.0831 4.22068 10.0831 4.22068 10.0831 4.22068C10.0831 4.22069 10.0831 4.22069 10.0831 4.22069C10.0831 4.2207 10.0831 4.2207 10.0831 4.22071C10.0831 4.22071 10.0831 4.22071 10.0831 4.22072C10.0831 4.22072 10.0831 4.22072 10.0831 4.22073C10.0831 4.22073 10.0831 4.22073 10.0831 4.22074C10.0831 4.22074 10.0831 4.22074 10.0831 4.22075C10.0831 4.22075 10.0831 4.22075 10.0831 4.22076C10.0831 4.22076 10.0831 4.22076 10.0831 4.22077C10.0831 4.22077 10.0831 4.22078 10.0831 4.22078C10.0831 4.22078 10.0831 4.22079 10.0831 4.22079C10.0831 4.22079 10.0831 4.2208 10.0831 4.2208C10.0831 4.2208 10.0831 4.22081 10.0831 4.22081C10.0831 4.22081 10.0831 4.22082 10.0831 4.22082C10.0831 4.22082 10.0831 4.22083 10.0831 4.22083C10.0831 4.22083 10.0831 4.22084 10.0831 4.22084C10.0831 4.22085 10.0831 4.22085 10.0831 4.22085C10.0831 4.22086 10.0831 4.22086 10.0831 4.22086C10.0831 4.22087 10.0831 4.22087 10.0831 4.22087C10.0831 4.22088 10.0831 4.22088 10.0831 4.22088C10.0831 4.22089 10.0831 4.22089 10.0831 4.22089C10.0831 4.2209 10.0831 4.2209 10.0831 4.22091C10.0831 4.22091 10.0831 4.22091 10.0831 4.22092C10.0831 4.22092 10.0831 4.22092 10.0831 4.22093C10.0831 4.22093 10.0831 4.22093 10.0831 4.22094C10.0831 4.22094 10.0831 4.22094 10.0831 4.22095C10.0831 4.22095 10.0831 4.22095 10.0831 4.22096C10.0831 4.22096 10.0831 4.22097 10.0831 4.22097C10.0831 4.22097 10.0831 4.22098 10.0831 4.22098C10.0831 4.22098 10.0831 4.22099 10.0831 4.22099C10.0831 4.22099 10.0831 4.221 10.0831 4.221C10.0831 4.221 10.0831 4.22101 10.0831 4.22101C10.0831 4.22102 10.0831 4.22102 10.0831 4.22102C10.0831 4.22103 10.0831 4.22103 10.0831 4.22103C10.0831 4.22104 10.0831 4.22104 10.0831 4.22104C10.0831 4.22105 10.0831 4.22105 10.0831 4.22105C10.0831 4.22106 10.0831 4.22106 10.0831 4.22107C10.0831 4.22107 10.0831 4.22107 10.0831 4.22108C10.0831 4.22108 10.0831 4.22108 10.0831 4.22109C10.0831 4.22109 10.0831 4.22109 10.0831 4.2211C10.0831 4.2211 10.0831 4.2211 10.0831 4.22111C10.0831 4.22111 10.0831 4.22112 10.0831 4.22112C10.0831 4.22112 10.0831 4.22113 10.0831 4.22113C10.0831 4.22113 10.0831 4.22114 10.0831 4.22114C10.0831 4.22114 10.0831 4.22115 10.0831 4.22115C10.0831 4.22115 10.0831 4.22116 10.0831 4.22116C10.0831 4.22117 10.0831 4.22117 10.0831 4.22117C10.0831 4.22118 10.0831 4.22118 10.0831 4.22118C10.0831 4.22119 10.0831 4.22119 10.0831 4.22119C10.0831 4.2212 10.0831 4.2212 10.0831 4.2212C10.0831 4.22121 10.0831 4.22121 10.0831 4.22122C10.0831 4.22122 10.0831 4.22122 10.0831 4.22123C10.0831 4.22123 10.0831 4.22123 10.0831 4.22124C10.0831 4.22124 10.0831 4.22124 10.0831 4.22125C10.0831 4.22125 10.0831 4.22126 10.0831 4.22126C10.0831 4.22126 10.0831 4.22127 10.0831 4.22127C10.0831 4.22127 10.0831 4.22128 10.0831 4.22128C10.0831 4.22128 10.0831 4.22129 10.0831 4.22129C10.0831 4.22129 10.0831 4.2213 10.0831 4.2213C10.0831 4.22131 10.0831 4.22131 10.0831 4.22131C10.0831 4.22132 10.0831 4.22132 10.0831 4.22132C10.0831 4.22133 10.0831 4.22133 10.0831 4.22133C10.0831 4.22134 10.0831 4.22134 10.0831 4.22135C10.0831 4.22135 10.0831 4.22135 10.0831 4.22136C10.0831 4.22136 10.0831 4.22136 10.0831 4.22137C10.0831 4.22137 10.0831 4.22137 10.0831 4.22138C10.0831 4.22138 10.0831 4.22139 10.0831 4.22139C10.0831 4.22139 10.0831 4.2214 10.0831 4.2214C10.0831 4.2214 10.0831 4.22141 10.0831 4.22141C10.0831 4.22141 10.0831 4.22142 10.0831 4.22142C10.0831 4.22143 10.0831 4.22143 10.0831 4.22143C10.0831 4.22144 10.0831 4.22144 10.0831 4.22144C10.0831 4.22145 10.0831 4.22145 10.0831 4.22145C10.0831 4.22146 10.0831 4.22146 10.0831 4.22147C10.0831 4.22147 10.0831 4.22147 10.0831 4.22148C10.0831 4.22148 10.0831 4.22148 10.0831 4.22149C10.0831 4.22149 10.0831 4.22149 10.0831 4.2215C10.0831 4.2215 10.0831 4.22151 10.0831 4.22151C10.0831 4.22151 10.0831 4.22152 10.0831 4.22152C10.0831 4.22152 10.0831 4.22153 10.0831 4.22153H10.4831C10.4831 4.22153 10.4831 4.22152 10.4831 4.22152C10.4831 4.22152 10.4831 4.22151 10.4831 4.22151C10.4831 4.22151 10.4831 4.2215 10.4831 4.2215C10.4831 4.22149 10.4831 4.22149 10.4831 4.22149C10.4831 4.22148 10.4831 4.22148 10.4831 4.22148C10.4831 4.22147 10.4831 4.22147 10.4831 4.22147C10.4831 4.22146 10.4831 4.22146 10.4831 4.22145C10.4831 4.22145 10.4831 4.22145 10.4831 4.22144C10.4831 4.22144 10.4831 4.22144 10.4831 4.22143C10.4831 4.22143 10.4831 4.22143 10.4831 4.22142C10.4831 4.22142 10.4831 4.22141 10.4831 4.22141C10.4831 4.22141 10.4831 4.2214 10.4831 4.2214C10.4831 4.2214 10.4831 4.22139 10.4831 4.22139C10.4831 4.22139 10.4831 4.22138 10.4831 4.22138C10.4831 4.22137 10.4831 4.22137 10.4831 4.22137C10.4831 4.22136 10.4831 4.22136 10.4831 4.22136C10.4831 4.22135 10.4831 4.22135 10.4831 4.22135C10.4831 4.22134 10.4831 4.22134 10.4831 4.22133C10.4831 4.22133 10.4831 4.22133 10.4831 4.22132C10.4831 4.22132 10.4831 4.22132 10.4831 4.22131C10.4831 4.22131 10.4831 4.22131 10.4831 4.2213C10.4831 4.2213 10.4831 4.22129 10.4831 4.22129C10.4831 4.22129 10.4831 4.22128 10.4831 4.22128C10.4831 4.22128 10.4831 4.22127 10.4831 4.22127C10.4831 4.22127 10.4831 4.22126 10.4831 4.22126C10.4831 4.22126 10.4831 4.22125 10.4831 4.22125C10.4831 4.22124 10.4831 4.22124 10.4831 4.22124C10.4831 4.22123 10.4831 4.22123 10.4831 4.22123C10.4831 4.22122 10.4831 4.22122 10.4831 4.22122C10.4831 4.22121 10.4831 4.22121 10.4831 4.2212C10.4831 4.2212 10.4831 4.2212 10.4831 4.22119C10.4831 4.22119 10.4831 4.22119 10.4831 4.22118C10.4831 4.22118 10.4831 4.22118 10.4831 4.22117C10.4831 4.22117 10.4831 4.22117 10.4831 4.22116C10.4831 4.22116 10.4831 4.22115 10.4831 4.22115C10.4831 4.22115 10.4831 4.22114 10.4831 4.22114C10.4831 4.22114 10.4831 4.22113 10.4831 4.22113C10.4831 4.22113 10.4831 4.22112 10.4831 4.22112C10.4831 4.22112 10.4831 4.22111 10.4831 4.22111C10.4831 4.2211 10.4831 4.2211 10.4831 4.2211C10.4831 4.22109 10.4831 4.22109 10.4831 4.22109C10.4831 4.22108 10.4831 4.22108 10.4831 4.22108C10.4831 4.22107 10.4831 4.22107 10.4831 4.22107C10.4831 4.22106 10.4831 4.22106 10.4831 4.22105C10.4831 4.22105 10.4831 4.22105 10.4831 4.22104C10.4831 4.22104 10.4831 4.22104 10.4831 4.22103C10.4831 4.22103 10.4831 4.22103 10.4831 4.22102C10.4831 4.22102 10.4831 4.22102 10.4831 4.22101C10.4831 4.22101 10.4831 4.221 10.4831 4.221C10.4831 4.221 10.4831 4.22099 10.4831 4.22099C10.4831 4.22099 10.4831 4.22098 10.4831 4.22098C10.4831 4.22098 10.4831 4.22097 10.4831 4.22097C10.4831 4.22097 10.4831 4.22096 10.4831 4.22096C10.4831 4.22095 10.4831 4.22095 10.4831 4.22095C10.4831 4.22094 10.4831 4.22094 10.4831 4.22094C10.4831 4.22093 10.4831 4.22093 10.4831 4.22093C10.4831 4.22092 10.4831 4.22092 10.4831 4.22092C10.4831 4.22091 10.4831 4.22091 10.4831 4.22091C10.4831 4.2209 10.4831 4.2209 10.4831 4.22089C10.4831 4.22089 10.4831 4.22089 10.4831 4.22088C10.4831 4.22088 10.4831 4.22088 10.4831 4.22087C10.4831 4.22087 10.4831 4.22087 10.4831 4.22086C10.4831 4.22086 10.4831 4.22086 10.4831 4.22085C10.4831 4.22085 10.4831 4.22085 10.4831 4.22084C10.4831 4.22084 10.4831 4.22083 10.4831 4.22083C10.4831 4.22083 10.4831 4.22082 10.4831 4.22082C10.4831 4.22082 10.4831 4.22081 10.4831 4.22081C10.4831 4.22081 10.4831 4.2208 10.4831 4.2208C10.4831 4.2208 10.4831 4.22079 10.4831 4.22079C10.4831 4.22079 10.4831 4.22078 10.4831 4.22078C10.4831 4.22078 10.4831 4.22077 10.4831 4.22077C10.4831 4.22076 10.4831 4.22076 10.4831 4.22076C10.4831 4.22075 10.4831 4.22075 10.4831 4.22075C10.4831 4.22074 10.4831 4.22074 10.4831 4.22074C10.4831 4.22073 10.4831 4.22073 10.4831 4.22073C10.4831 4.22072 10.4831 4.22072 10.4831 4.22072C10.4831 4.22071 10.4831 4.22071 10.4831 4.22071C10.4831 4.2207 10.4831 4.2207 10.4831 4.22069C10.4831 4.22069 10.4831 4.22069 10.4831 4.22068C10.4831 4.22068 10.4831 4.22068 10.4831 4.22067C10.4831 4.22067 10.4831 4.22067 10.4831 4.22066C10.4831 4.22066 10.4831 4.22066 10.4831 4.22065C10.4831 4.22065 10.4831 4.22065 10.4831 4.22064C10.4831 4.22064 10.4831 4.22064 10.4831 4.22063C10.4831 4.22063 10.4831 4.22063 10.4831 4.22062C10.4831 4.22062 10.4831 4.22061 10.4831 4.22061C10.4831 4.22061 10.4831 4.2206 10.4831 4.2206C10.4831 4.2206 10.4831 4.22059 10.4831 4.22059C10.4831 4.22059 10.4831 4.22058 10.4831 4.22058C10.4831 4.22058 10.4831 4.22057 10.4831 4.22057C10.4831 4.22057 10.4831 4.22056 10.4831 4.22056C10.4831 4.22056 10.4831 4.22055 10.4831 4.22055C10.4831 4.22055 10.4831 4.22054 10.4831 4.22054C10.4831 4.22053 10.4831 4.22053 10.4831 4.22053C10.4831 4.22052 10.4831 4.22052 10.4831 4.22052C10.4831 4.22051 10.4831 4.22051 10.4831 4.22051C10.4831 4.2205 10.4831 4.2205 10.4831 4.2205C10.4831 4.22049 10.4831 4.22049 10.4831 4.22049C10.4831 4.22048 10.4831 4.22048 10.4831 4.22048C10.4831 4.22047 10.4831 4.22047 10.4831 4.22047C10.4831 4.22046 10.4831 4.22046 10.4831 4.22046C10.4831 4.22045 10.4831 4.22045 10.4831 4.22045C10.4831 4.22044 10.4831 4.22044 10.4831 4.22043C10.4831 4.22043 10.4831 4.22043 10.4831 4.22042C10.4831 4.22042 10.4831 4.22042 10.4831 4.22041C10.4831 4.22041 10.4831 4.22041 10.4831 4.2204C10.4831 4.2204 10.4831 4.2204 10.4831 4.22039C10.4831 4.22039 10.4831 4.22039 10.4831 4.22038C10.4831 4.22038 10.4831 4.22038 10.4831 4.22037C10.4831 4.22037 10.4831 4.22037 10.4831 4.22036C10.4831 4.22036 10.4831 4.22036 10.4831 4.22035C10.4831 4.22035 10.4831 4.22035 10.4831 4.22034C10.4831 4.22034 10.4831 4.22034 10.4831 4.22033C10.4831 4.22033 10.4831 4.22032 10.4831 4.22032C10.4831 4.22032 10.4831 4.22031 10.4831 4.22031C10.4831 4.22031 10.4831 4.2203 10.4831 4.2203C10.4831 4.2203 10.4831 4.22029 10.4831 4.22029C10.4831 4.22029 10.4831 4.22028 10.4831 4.22028C10.4831 4.22028 10.4831 4.22027 10.4831 4.22027C10.4831 4.22027 10.4831 4.22026 10.4831 4.22026C10.4831 4.22026 10.4831 4.22025 10.4831 4.22025C10.4831 4.22025 10.4831 4.22024 10.4831 4.22024C10.4831 4.22024 10.4831 4.22023 10.4831 4.22023C10.4831 4.22023 10.4831 4.22022 10.4831 4.22022C10.4831 4.22022 10.4831 4.22021 10.4831 4.22021C10.4831 4.22021 10.4831 4.2202 10.4831 4.2202C10.4831 4.2202 10.4831 4.22019 10.4831 4.22019C10.4831 4.22019 10.4831 4.22018 10.4831 4.22018C10.4831 4.22018 10.4831 4.22017 10.4831 4.22017C10.4831 4.22016 10.4831 4.22016 10.4831 4.22016C10.4831 4.22015 10.4831 4.22015 10.4831 4.22015C10.4831 4.22014 10.4831 4.22014 10.4831 4.22014C10.4831 4.22013 10.4831 4.22013 10.4831 4.22013C10.4831 4.22012 10.4831 4.22012 10.4831 4.22012C10.4831 4.22011 10.4831 4.22011 10.4831 4.22011C10.4831 4.2201 10.4831 4.2201 10.4831 4.2201C10.4831 4.22009 10.4831 4.22009 10.4831 4.22009C10.4831 4.22008 10.4831 4.22008 10.4831 4.22008C10.4831 4.22007 10.4831 4.22007 10.4831 4.22007C10.4831 4.22006 10.4831 4.22006 10.4831 4.22006C10.4831 4.22005 10.4831 4.22005 10.4831 4.22005C10.4831 4.22004 10.4831 4.22004 10.4831 4.22004C10.4831 4.22003 10.4831 4.22003 10.4831 4.22003C10.4831 4.22002 10.4831 4.22002 10.4831 4.22002C10.4831 4.22001 10.4831 4.22001 10.4831 4.22001C10.4831 4.22 10.4831 4.22 10.4831 4.22C10.4831 4.21999 10.4831 4.21999 10.4831 4.21999C10.4831 4.21998 10.4831 4.21998 10.4831 4.21998C10.4831 4.21997 10.4831 4.21997 10.4831 4.21997C10.4831 4.21996 10.4831 4.21996 10.4831 4.21996C10.4831 4.21995 10.4831 4.21995 10.4831 4.21995C10.4831 4.21994 10.4831 4.21994 10.4831 4.21994C10.4831 4.21993 10.4831 4.21993 10.4831 4.21993C10.4831 4.21992 10.4831 4.21992 10.4831 4.21992C10.4831 4.21991 10.4831 4.21991 10.4831 4.21991C10.4831 4.2199 10.4831 4.2199 10.4831 4.2199C10.4831 4.21989 10.4831 4.21989 10.4831 4.21989C10.4831 4.21988 10.4831 4.21988 10.4831 4.21988C10.4831 4.21987 10.4831 4.21987 10.4831 4.21987C10.4831 4.21986 10.4831 4.21986 10.4831 4.21986C10.4831 4.21985 10.4831 4.21985 10.4831 4.21985C10.4831 4.21984 10.4831 4.21984 10.4831 4.21984C10.4831 4.21983 10.4831 4.21983 10.4831 4.21983C10.4831 4.21982 10.4831 4.21982 10.4831 4.21982C10.4831 4.21981 10.4831 4.21981 10.4831 4.21981C10.4831 4.2198 10.4831 4.2198 10.4831 4.21979C10.4831 4.21979 10.4831 4.21979 10.4831 4.21978C10.4831 4.21978 10.4831 4.21978 10.4831 4.21977C10.4831 4.21977 10.4831 4.21977 10.4831 4.21976C10.4831 4.21976 10.4831 4.21976 10.4831 4.21975C10.4831 4.21975 10.4831 4.21975 10.4831 4.21974C10.4831 4.21974 10.4831 4.21974 10.4831 4.21974C10.4831 4.21973 10.4831 4.21973 10.4831 4.21973C10.4831 4.21972 10.4831 4.21972 10.4831 4.21972C10.4831 4.21971 10.4831 4.21971 10.4831 4.21971C10.4831 4.2197 10.4831 4.2197 10.4831 4.2197C10.4831 4.21969 10.4831 4.21969 10.4831 4.21969C10.4831 4.21968 10.4831 4.21968 10.4831 4.21968C10.4831 4.21967 10.4831 4.21967 10.4831 4.21967C10.4831 4.21966 10.4831 4.21966 10.4831 4.21966C10.4831 4.21965 10.4831 4.21965 10.4831 4.21965C10.4831 4.21964 10.4831 4.21964 10.4831 4.21964C10.4831 4.21963 10.4831 4.21963 10.4831 4.21963C10.4831 4.21962 10.4831 4.21962 10.4831 4.21962C10.4831 4.21961 10.4831 4.21961 10.4831 4.21961C10.4831 4.2196 10.4831 4.2196 10.4831 4.2196C10.4831 4.21959 10.4831 4.21959 10.4831 4.21959C10.4831 4.21958 10.4831 4.21958 10.4831 4.21958C10.4831 4.21957 10.4831 4.21957 10.4831 4.21957C10.4831 4.21956 10.4831 4.21956 10.4831 4.21956C10.4831 4.21955 10.4831 4.21955 10.4831 4.21955C10.4831 4.21954 10.4831 4.21954 10.4831 4.21954C10.4831 4.21953 10.4831 4.21953 10.4831 4.21953C10.4831 4.21952 10.4831 4.21952 10.4831 4.21952C10.4831 4.21951 10.4831 4.21951 10.4831 4.21951C10.4831 4.2195 10.4831 4.2195 10.4831 4.2195C10.4831 4.21949 10.4831 4.21949 10.4831 4.21949C10.4831 4.21948 10.4831 4.21948 10.4831 4.21948C10.4831 4.21947 10.4831 4.21947 10.4831 4.21947C10.4831 4.21946 10.4831 4.21946 10.4831 4.21946C10.4831 4.21945 10.4831 4.21945 10.4831 4.21945C10.4831 4.21944 10.4831 4.21944 10.4831 4.21944C10.4831 4.21943 10.4831 4.21943 10.4831 4.21943C10.4831 4.21942 10.4831 4.21942 10.4831 4.21942C10.4831 4.21942 10.4831 4.21941 10.4831 4.21941C10.4831 4.21941 10.4831 4.2194 10.4831 4.2194C10.4831 4.2194 10.4831 4.21939 10.4831 4.21939C10.4831 4.21939 10.4831 4.21938 10.4831 4.21938C10.4831 4.21938 10.4831 4.21937 10.4831 4.21937C10.4831 4.21937 10.4831 4.21936 10.4831 4.21936C10.4831 4.21936 10.4831 4.21935 10.4831 4.21935C10.4831 4.21935 10.4831 4.21934 10.4831 4.21934C10.4831 4.21934 10.4831 4.21933 10.4831 4.21933C10.4831 4.21933 10.4831 4.21932 10.4831 4.21932C10.4831 4.21932 10.4831 4.21931 10.4831 4.21931C10.4831 4.21931 10.4831 4.2193 10.4831 4.2193C10.4831 4.2193 10.4831 4.21929 10.4831 4.21929C10.4831 4.21929 10.4831 4.21928 10.4831 4.21928C10.4831 4.21928 10.4831 4.21927 10.4831 4.21927C10.4831 4.21927 10.4831 4.21927 10.4831 4.21926C10.4831 4.21926 10.4831 4.21926 10.4831 4.21925C10.4831 4.21925 10.4831 4.21925 10.4831 4.21924C10.4831 4.21924 10.4831 4.21924 10.4831 4.21923C10.4831 4.21923 10.4831 4.21923 10.4831 4.21922C10.4831 4.21922 10.4831 4.21922 10.4831 4.21921C10.4831 4.21921 10.4831 4.21921 10.4831 4.2192C10.4831 4.2192 10.4831 4.2192 10.4831 4.21919C10.4831 4.21919 10.4831 4.21919 10.4831 4.21918C10.4831 4.21918 10.4831 4.21918 10.4831 4.21917C10.4831 4.21917 10.4831 4.21917 10.4831 4.21916C10.4831 4.21916 10.4831 4.21916 10.4831 4.21915C10.4831 4.21915 10.4831 4.21915 10.4831 4.21915C10.4831 4.21914 10.4831 4.21914 10.4831 4.21914C10.4831 4.21913 10.4831 4.21913 10.4831 4.21913C10.4831 4.21912 10.4831 4.21912 10.4831 4.21912C10.4831 4.21911 10.4831 4.21911 10.4831 4.21911C10.4831 4.2191 10.4831 4.2191 10.4831 4.2191C10.4831 4.21909 10.4831 4.21909 10.4831 4.21909C10.4831 4.21908 10.4831 4.21908 10.4831 4.21908C10.4831 4.21907 10.4831 4.21907 10.4831 4.21907C10.4831 4.21906 10.4831 4.21906 10.4831 4.21906C10.4831 4.21905 10.4831 4.21905 10.4831 4.21905C10.4831 4.21904 10.4831 4.21904 10.4831 4.21904C10.4831 4.21904 10.4831 4.21903 10.4831 4.21903C10.4831 4.21903 10.4831 4.21902 10.4831 4.21902C10.4831 4.21902 10.4831 4.21901 10.4831 4.21901C10.4831 4.21901 10.4831 4.219 10.4831 4.219C10.4831 4.219 10.4831 4.21899 10.4831 4.21899C10.4831 4.21899 10.4831 4.21898 10.4831 4.21898C10.4831 4.21898 10.4831 4.21897 10.4831 4.21897C10.4831 4.21897 10.4831 4.21896 10.4831 4.21896C10.4831 4.21896 10.4831 4.21896 10.4831 4.21895C10.4831 4.21895 10.4831 4.21895 10.4831 4.21894C10.4831 4.21894 10.4831 4.21894 10.4831 4.21893C10.4831 4.21893 10.4831 4.21893 10.4831 4.21892C10.4831 4.21892 10.4831 4.21892 10.4831 4.21891C10.4831 4.21891 10.4831 4.21891 10.4831 4.2189C10.4831 4.2189 10.4831 4.2189 10.4831 4.21889C10.4831 4.21889 10.4831 4.21889 10.4831 4.21888C10.4831 4.21888 10.4831 4.21888 10.4831 4.21887C10.4831 4.21887 10.4831 4.21887 10.4831 4.21887C10.4831 4.21886 10.4831 4.21886 10.4831 4.21886C10.4831 4.21885 10.4831 4.21885 10.4831 4.21885C10.4831 4.21884 10.4831 4.21884 10.4831 4.21884C10.4831 4.21883 10.4831 4.21883 10.4831 4.21883C10.4831 4.21882 10.4831 4.21882 10.4831 4.21882C10.4831 4.21881 10.4831 4.21881 10.4831 4.21881C10.4831 4.2188 10.4831 4.2188 10.4831 4.2188C10.4831 4.21879 10.4831 4.21879 10.4831 4.21879C10.4831 4.21879 10.4831 4.21878 10.4831 4.21878C10.4831 4.21878 10.4831 4.21877 10.4831 4.21877C10.4831 4.21877 10.4831 4.21876 10.4831 4.21876C10.4831 4.21876 10.4831 4.21875 10.4831 4.21875C10.4831 4.21875 10.4831 4.21874 10.4831 4.21874C10.4831 4.21874 10.4831 4.21873 10.4831 4.21873C10.4831 4.21873 10.4831 4.21872 10.4831 4.21872C10.4831 4.21872 10.4831 4.21872 10.4831 4.21871C10.4831 4.21871 10.4831 4.21871 10.4831 4.2187C10.4831 4.2187 10.4831 4.2187 10.4831 4.21869C10.4831 4.21869 10.4831 4.21869 10.4831 4.21868C10.4831 4.21868 10.4831 4.21868 10.4831 4.21867C10.4831 4.21867 10.4831 4.21867 10.4831 4.21866C10.4831 4.21866 10.4831 4.21866 10.4831 4.21865C10.4831 4.21865 10.4831 4.21865 10.4831 4.21865C10.4831 4.21864 10.4831 4.21864 10.4831 4.21864C10.4831 4.21863 10.4831 4.21863 10.4831 4.21863C10.4831 4.21862 10.4831 4.21862 10.4831 4.21862C10.4831 4.21861 10.4831 4.21861 10.4831 4.21861C10.4831 4.2186 10.4831 4.2186 10.4831 4.2186C10.4831 4.21859 10.4831 4.21859 10.4831 4.21859C10.4831 4.21859 10.4831 4.21858 10.4831 4.21858C10.4831 4.21858 10.4831 4.21857 10.4831 4.21857C10.4831 4.21857 10.4831 4.21856 10.4831 4.21856C10.4831 4.21856 10.4831 4.21855 10.4831 4.21855C10.4831 4.21855 10.4831 4.21854 10.4831 4.21854C10.4831 4.21854 10.4831 4.21853 10.4831 4.21853C10.4831 4.21853 10.4831 4.21852 10.4831 4.21852C10.4831 4.21852 10.4831 4.21852 10.4831 4.21851C10.4831 4.21851 10.4831 4.21851 10.4831 4.2185C10.4831 4.2185 10.4831 4.2185 10.4831 4.21849C10.4831 4.21849 10.4831 4.21849 10.4831 4.21848C10.4831 4.21848 10.4831 4.21848 10.4831 4.21847C10.4831 4.21847 10.4831 4.21847 10.4831 4.21847C10.4831 4.21846 10.4831 4.21846 10.4831 4.21846C10.4831 4.21845 10.4831 4.21845 10.4831 4.21845C10.4831 4.21844 10.4831 4.21844 10.4831 4.21844C10.4831 4.21843 10.4831 4.21843 10.4831 4.21843C10.4831 4.21842 10.4831 4.21842 10.4831 4.21842C10.4831 4.21841 10.4831 4.21841 10.4831 4.21841C10.4831 4.21841 10.4831 4.2184 10.4831 4.2184C10.4831 4.2184 10.4831 4.21839 10.4831 4.21839C10.4831 4.21839 10.4831 4.21838 10.4831 4.21838C10.4831 4.21838 10.4831 4.21837 10.4831 4.21837C10.4831 4.21837 10.4831 4.21836 10.4831 4.21836C10.4831 4.21836 10.4831 4.21835 10.4831 4.21835C10.4831 4.21835 10.4831 4.21835 10.4831 4.21834C10.4831 4.21834 10.4831 4.21834 10.4831 4.21833C10.4831 4.21833 10.4831 4.21833 10.4831 4.21832C10.4831 4.21832 10.4831 4.21832 10.4831 4.21831C10.4831 4.21831 10.4831 4.21831 10.4831 4.2183C10.4831 4.2183 10.4831 4.2183 10.4831 4.2183C10.4831 4.21829 10.4831 4.21829 10.4831 4.21829C10.4831 4.21828 10.4831 4.21828 10.4831 4.21828C10.4831 4.21827 10.4831 4.21827 10.4831 4.21827C10.4831 4.21826 10.4831 4.21826 10.4831 4.21826C10.4831 4.21825 10.4831 4.21825 10.4831 4.21825C10.4831 4.21825 10.4831 4.21824 10.4831 4.21824C10.4831 4.21824 10.4831 4.21823 10.4831 4.21823C10.4831 4.21823 10.4831 4.21822 10.4831 4.21822C10.4831 4.21822 10.4831 4.21821 10.4831 4.21821C10.4831 4.21821 10.4831 4.2182 10.4831 4.2182C10.4831 4.2182 10.4831 4.21819 10.4831 4.21819C10.4831 4.21819 10.4831 4.21819 10.4831 4.21818C10.4831 4.21818 10.4831 4.21818 10.4831 4.21817C10.4831 4.21817 10.4831 4.21817 10.4831 4.21816C10.4831 4.21816 10.4831 4.21816 10.4831 4.21815C10.4831 4.21815 10.4831 4.21815 10.4831 4.21814C10.4831 4.21814 10.4831 4.21814 10.4831 4.21814C10.4831 4.21813 10.4831 4.21813 10.4831 4.21813C10.4831 4.21812 10.4831 4.21812 10.4831 4.21812C10.4831 4.21811 10.4831 4.21811 10.4831 4.21811C10.4831 4.2181 10.4831 4.2181 10.4831 4.2181C10.4831 4.21809 10.4831 4.21809 10.4831 4.21809C10.4831 4.21809 10.4831 4.21808 10.4831 4.21808C10.4831 4.21808 10.4831 4.21807 10.4831 4.21807C10.4831 4.21807 10.4831 4.21806 10.4831 4.21806C10.4831 4.21806 10.4831 4.21805 10.4831 4.21805C10.4831 4.21805 10.4831 4.21804 10.4831 4.21804C10.4831 4.21804 10.4831 4.21804 10.4831 4.21803C10.4831 4.21803 10.4831 4.21803 10.4831 4.21802C10.4831 4.21802 10.4831 4.21802 10.4831 4.21801C10.4831 4.21801 10.4831 4.21801 10.4831 4.218C10.4831 4.218 10.4831 4.218 10.4831 4.218C10.4831 4.21799 10.4831 4.21799 10.4831 4.21799C10.4831 4.21798 10.4831 4.21798 10.4831 4.21798C10.4831 4.21797 10.4831 4.21797 10.4831 4.21797C10.4831 4.21796 10.4831 4.21796 10.4831 4.21796C10.4831 4.21795 10.4831 4.21795 10.4831 4.21795C10.4831 4.21795 10.4831 4.21794 10.4831 4.21794C10.4831 4.21794 10.4831 4.21793 10.4831 4.21793C10.4831 4.21793 10.4831 4.21792 10.4831 4.21792C10.4831 4.21792 10.4831 4.21791 10.4831 4.21791C10.4831 4.21791 10.4831 4.21791 10.4831 4.2179C10.4831 4.2179 10.4831 4.2179 10.4831 4.21789C10.4831 4.21789 10.4831 4.21789 10.4831 4.21788C10.4831 4.21788 10.4831 4.21788 10.4831 4.21787C10.4831 4.21787 10.4831 4.21787 10.4831 4.21786C10.4831 4.21786 10.4831 4.21786 10.4831 4.21786C10.4831 4.21785 10.4831 4.21785 10.4831 4.21785C10.4831 4.21784 10.4831 4.21784 10.4831 4.21784C10.4831 4.21783 10.4831 4.21783 10.4831 4.21783C10.4831 4.21782 10.4831 4.21782 10.4831 4.21782C10.4831 4.21782 10.4831 4.21781 10.4831 4.21781C10.4831 4.21781 10.4831 4.2178 10.4831 4.2178C10.4831 4.2178 10.4831 4.21779 10.4831 4.21779C10.4831 4.21779 10.4831 4.21778 10.4831 4.21778C10.4831 4.21778 10.4831 4.21777 10.4831 4.21777C10.4831 4.21777 10.4831 4.21777 10.4831 4.21776C10.4831 4.21776 10.4831 4.21776 10.4831 4.21775C10.4831 4.21775 10.4831 4.21775 10.4831 4.21774C10.4831 4.21774 10.4831 4.21774 10.4831 4.21773C10.4831 4.21773 10.4831 4.21773 10.4831 4.21773C10.4831 4.21772 10.4831 4.21772 10.4831 4.21772C10.4831 4.21771 10.4831 4.21771 10.4831 4.21771C10.4831 4.2177 10.4831 4.2177 10.4831 4.2177C10.4831 4.21769 10.4831 4.21769 10.4831 4.21769C10.4831 4.21769 10.4831 4.21768 10.4831 4.21768C10.4831 4.21768 10.4831 4.21767 10.4831 4.21767C10.4831 4.21767 10.4831 4.21766 10.4831 4.21766C10.4831 4.21766 10.4831 4.21765 10.4831 4.21765C10.4831 4.21765 10.4831 4.21764 10.4831 4.21764C10.4831 4.21764 10.4831 4.21764 10.4831 4.21763C10.4831 4.21763 10.4831 4.21763 10.4831 4.21762C10.4831 4.21762 10.4831 4.21762 10.4831 4.21761C10.4831 4.21761 10.4831 4.21761 10.4831 4.2176C10.4831 4.2176 10.4831 4.2176 10.4831 4.2176C10.4831 4.21759 10.4831 4.21759 10.4831 4.21759C10.4831 4.21758 10.4831 4.21758 10.4831 4.21758C10.4831 4.21757 10.4831 4.21757 10.4831 4.21757C10.4831 4.21756 10.4831 4.21756 10.4831 4.21756C10.4831 4.21756 10.4831 4.21755 10.4831 4.21755C10.4831 4.21755 10.4831 4.21754 10.4831 4.21754C10.4831 4.21754 10.4831 4.21753 10.4831 4.21753C10.4831 4.21753 10.4831 4.21752 10.4831 4.21752C10.4831 4.21752 10.4831 4.21752 10.4831 4.21751C10.4831 4.21751 10.4831 4.21751 10.4831 4.2175C10.4831 4.2175 10.4831 4.2175 10.4831 4.21749C10.4831 4.21749 10.4831 4.21749 10.4831 4.21748C10.4831 4.21748 10.4831 4.21748 10.4831 4.21748C10.4831 4.21747 10.4831 4.21747 10.4831 4.21747C10.4831 4.21746 10.4831 4.21746 10.4831 4.21746C10.4831 4.21745 10.4831 4.21745 10.4831 4.21745C10.4831 4.21744 10.4831 4.21744 10.4831 4.21744C10.4831 4.21744 10.4831 4.21743 10.4831 4.21743C10.4831 4.21743 10.4831 4.21742 10.4831 4.21742C10.4831 4.21742 10.4831 4.21741 10.4831 4.21741C10.4831 4.21741 10.4831 4.2174 10.4831 4.2174C10.4831 4.2174 10.4831 4.2174 10.4831 4.21739C10.4831 4.21739 10.4831 4.21739 10.4831 4.21738C10.4831 4.21738 10.4831 4.21738 10.4831 4.21737C10.4831 4.21737 10.4831 4.21737 10.4831 4.21736C10.4831 4.21736 10.4831 4.21736 10.4831 4.21736C10.4831 4.21735 10.4831 4.21735 10.4831 4.21735C10.4831 4.21734 10.4831 4.21734 10.4831 4.21734C10.4831 4.21733 10.4831 4.21733 10.4831 4.21733C10.4831 4.21732 10.4831 4.21732 10.4831 4.21732C10.4831 4.21732 10.4831 4.21731 10.4831 4.21731C10.4831 4.21731 10.4831 4.2173 10.4831 4.2173C10.4831 4.2173 10.4831 4.21729 10.4831 4.21729C10.4831 4.21729 10.4831 4.21728 10.4831 4.21728C10.4831 4.21728 10.4831 4.21728 10.4831 4.21727C10.4831 4.21727 10.4831 4.21727 10.4831 4.21726C10.4831 4.21726 10.4831 4.21726 10.4831 4.21725C10.4831 4.21725 10.4831 4.21725 10.4831 4.21725C10.4831 4.21724 10.4831 4.21724 10.4831 4.21724C10.4831 4.21723 10.4831 4.21723 10.4831 4.21723C10.4831 4.21722 10.4831 4.21722 10.4831 4.21722C10.4831 4.21721 10.4831 4.21721 10.4831 4.21721C10.4831 4.21721 10.4831 4.2172 10.4831 4.2172C10.4831 4.2172 10.4831 4.21719 10.4831 4.21719C10.4831 4.21719 10.4831 4.21718 10.4831 4.21718C10.4831 4.21718 10.4831 4.21717 10.4831 4.21717C10.4831 4.21717 10.4831 4.21717 10.4831 4.21716C10.4831 4.21716 10.4831 4.21716 10.4831 4.21715C10.4831 4.21715 10.4831 4.21715 10.4831 4.21714C10.4831 4.21714 10.4831 4.21714 10.4831 4.21713C10.4831 4.21713 10.4831 4.21713 10.4831 4.21713C10.4831 4.21712 10.4831 4.21712 10.4831 4.21712C10.4831 4.21711 10.4831 4.21711 10.4831 4.21711C10.4831 4.2171 10.4831 4.2171 10.4831 4.2171C10.4831 4.21709 10.4831 4.21709 10.4831 4.21709C10.4831 4.21709 10.4831 4.21708 10.4831 4.21708C10.4831 4.21708 10.4831 4.21707 10.4831 4.21707C10.4831 4.21707 10.4831 4.21706 10.4831 4.21706C10.4831 4.21706 10.4831 4.21706 10.4831 4.21705C10.4831 4.21705 10.4831 4.21705 10.4831 4.21704C10.4831 4.21704 10.4831 4.21704 10.4831 4.21703C10.4831 4.21703 10.4831 4.21703 10.4831 4.21702C10.4831 4.21702 10.4831 4.21702 10.4831 4.21702C10.4831 4.21701 10.4831 4.21701 10.4831 4.21701C10.4831 4.217 10.4831 4.217 10.4831 4.217C10.4831 4.21699 10.4831 4.21699 10.4831 4.21699C10.4831 4.21698 10.4831 4.21698 10.4831 4.21698C10.4831 4.21698 10.4831 4.21697 10.4831 4.21697C10.4831 4.21697 10.4831 4.21696 10.4831 4.21696C10.4831 4.21696 10.4831 4.21695 10.4831 4.21695C10.4831 4.21695 10.4831 4.21694 10.4831 4.21694C10.4831 4.21694 10.4831 4.21694 10.4831 4.21693C10.4831 4.21693 10.4831 4.21693 10.4831 4.21692C10.4831 4.21692 10.4831 4.21692 10.4831 4.21691C10.4831 4.21691 10.4831 4.21691 10.4831 4.21691C10.4831 4.2169 10.4831 4.2169 10.4831 4.2169C10.4831 4.21689 10.4831 4.21689 10.4831 4.21689C10.4831 4.21688 10.4831 4.21688 10.4831 4.21688C10.4831 4.21687 10.4831 4.21687 10.4831 4.21687C10.4831 4.21687 10.4831 4.21686 10.4831 4.21686C10.4831 4.21686 10.4831 4.21685 10.4831 4.21685C10.4831 4.21685 10.4831 4.21684 10.4831 4.21684C10.4831 4.21684 10.4831 4.21684 10.4831 4.21683C10.4831 4.21683 10.4831 4.21683 10.4831 4.21682C10.4831 4.21682 10.4831 4.21682 10.4831 4.21681C10.4831 4.21681 10.4831 4.21681 10.4831 4.2168C10.4831 4.2168 10.4831 4.2168 10.4831 4.2168C10.4831 4.21679 10.4831 4.21679 10.4831 4.21679C10.4831 4.21678 10.4831 4.21678 10.4831 4.21678C10.4831 4.21677 10.4831 4.21677 10.4831 4.21677C10.4831 4.21676 10.4831 4.21676 10.4831 4.21676C10.4831 4.21676 10.4831 4.21675 10.4831 4.21675C10.4831 4.21675 10.4831 4.21674 10.4831 4.21674C10.4831 4.21674 10.4831 4.21673 10.4831 4.21673C10.4831 4.21673 10.4831 4.21673 10.4831 4.21672C10.4831 4.21672 10.4831 4.21672 10.4831 4.21671C10.4831 4.21671 10.4831 4.21671 10.4831 4.2167C10.4831 4.2167 10.4831 4.2167 10.4831 4.21669C10.4831 4.21669 10.4831 4.21669 10.4831 4.21669C10.4831 4.21668 10.4831 4.21668 10.4831 4.21668C10.4831 4.21667 10.4831 4.21667 10.4831 4.21667C10.4831 4.21666 10.4831 4.21666 10.4831 4.21666C10.4831 4.21665 10.4831 4.21665 10.4831 4.21665C10.4831 4.21665 10.4831 4.21664 10.4831 4.21664C10.4831 4.21664 10.4831 4.21663 10.4831 4.21663C10.4831 4.21663 10.4831 4.21662 10.4831 4.21662C10.4831 4.21662 10.4831 4.21662 10.4831 4.21661C10.4831 4.21661 10.4831 4.21661 10.4831 4.2166C10.4831 4.2166 10.4831 4.2166 10.4831 4.21659C10.4831 4.21659 10.4831 4.21659 10.4831 4.21658C10.4831 4.21658 10.4831 4.21658 10.4831 4.21658C10.4831 4.21657 10.4831 4.21657 10.4831 4.21657C10.4831 4.21656 10.4831 4.21656 10.4831 4.21656C10.4831 4.21655 10.4831 4.21655 10.4831 4.21655C10.4831 4.21654 10.4831 4.21654 10.4831 4.21654C10.4831 4.21654 10.4831 4.21653 10.4831 4.21653H10.0831ZM10.0831 4.22153C10.0831 4.52917 10.3323 4.77851 10.64 4.77851V4.37851C10.5533 4.37851 10.4831 4.30838 10.4831 4.22153H10.0831ZM10.64 4.77851C10.9477 4.77851 11.1969 4.52917 11.1969 4.22153H10.7969C10.7969 4.30838 10.7267 4.37851 10.64 4.37851V4.77851ZM11.1969 4.22153C11.1969 4.22153 11.1969 4.22152 11.1969 4.22152C11.1969 4.22152 11.1969 4.22151 11.1969 4.22151C11.1969 4.22151 11.1969 4.2215 11.1969 4.2215C11.1969 4.22149 11.1969 4.22149 11.1969 4.22149C11.1969 4.22148 11.1969 4.22148 11.1969 4.22148C11.1969 4.22147 11.1969 4.22147 11.1969 4.22147C11.1969 4.22146 11.1969 4.22146 11.1969 4.22145C11.1969 4.22145 11.1969 4.22145 11.1969 4.22144C11.1969 4.22144 11.1969 4.22144 11.1969 4.22143C11.1969 4.22143 11.1969 4.22143 11.1969 4.22142C11.1969 4.22142 11.1969 4.22141 11.1969 4.22141C11.1969 4.22141 11.1969 4.2214 11.1969 4.2214C11.1969 4.2214 11.1969 4.22139 11.1969 4.22139C11.1969 4.22139 11.1969 4.22138 11.1969 4.22138C11.1969 4.22137 11.1969 4.22137 11.1969 4.22137C11.1969 4.22136 11.1969 4.22136 11.1969 4.22136C11.1969 4.22135 11.1969 4.22135 11.1969 4.22135C11.1969 4.22134 11.1969 4.22134 11.1969 4.22133C11.1969 4.22133 11.1969 4.22133 11.1969 4.22132C11.1969 4.22132 11.1969 4.22132 11.1969 4.22131C11.1969 4.22131 11.1969 4.22131 11.1969 4.2213C11.1969 4.2213 11.1969 4.22129 11.1969 4.22129C11.1969 4.22129 11.1969 4.22128 11.1969 4.22128C11.1969 4.22128 11.1969 4.22127 11.1969 4.22127C11.1969 4.22127 11.1969 4.22126 11.1969 4.22126C11.1969 4.22126 11.1969 4.22125 11.1969 4.22125C11.1969 4.22124 11.1969 4.22124 11.1969 4.22124C11.1969 4.22123 11.1969 4.22123 11.1969 4.22123C11.1969 4.22122 11.1969 4.22122 11.1969 4.22122C11.1969 4.22121 11.1969 4.22121 11.1969 4.2212C11.1969 4.2212 11.1969 4.2212 11.1969 4.22119C11.1969 4.22119 11.1969 4.22119 11.1969 4.22118C11.1969 4.22118 11.1969 4.22118 11.1969 4.22117C11.1969 4.22117 11.1969 4.22117 11.1969 4.22116C11.1969 4.22116 11.1969 4.22115 11.1969 4.22115C11.1969 4.22115 11.1969 4.22114 11.1969 4.22114C11.1969 4.22114 11.1969 4.22113 11.1969 4.22113C11.1969 4.22113 11.1969 4.22112 11.1969 4.22112C11.1969 4.22112 11.1969 4.22111 11.1969 4.22111C11.1969 4.2211 11.1969 4.2211 11.1969 4.2211C11.1969 4.22109 11.1969 4.22109 11.1969 4.22109C11.1969 4.22108 11.1969 4.22108 11.1969 4.22108C11.1969 4.22107 11.1969 4.22107 11.1969 4.22107C11.1969 4.22106 11.1969 4.22106 11.1969 4.22105C11.1969 4.22105 11.1969 4.22105 11.1969 4.22104C11.1969 4.22104 11.1969 4.22104 11.1969 4.22103C11.1969 4.22103 11.1969 4.22103 11.1969 4.22102C11.1969 4.22102 11.1969 4.22101 11.1969 4.22101C11.1969 4.22101 11.1969 4.221 11.1969 4.221C11.1969 4.221 11.1969 4.22099 11.1969 4.22099C11.1969 4.22099 11.1969 4.22098 11.1969 4.22098C11.1969 4.22098 11.1969 4.22097 11.1969 4.22097C11.1969 4.22097 11.1969 4.22096 11.1969 4.22096C11.1969 4.22095 11.1969 4.22095 11.1969 4.22095C11.1969 4.22094 11.1969 4.22094 11.1969 4.22094C11.1969 4.22093 11.1969 4.22093 11.1969 4.22093C11.1969 4.22092 11.1969 4.22092 11.1969 4.22092C11.1969 4.22091 11.1969 4.22091 11.1969 4.22091C11.1969 4.2209 11.1969 4.2209 11.1969 4.22089C11.1969 4.22089 11.1969 4.22089 11.1969 4.22088C11.1969 4.22088 11.1969 4.22088 11.1969 4.22087C11.1969 4.22087 11.1969 4.22087 11.1969 4.22086C11.1969 4.22086 11.1969 4.22086 11.1969 4.22085C11.1969 4.22085 11.1969 4.22084 11.1969 4.22084C11.1969 4.22084 11.1969 4.22083 11.1969 4.22083C11.1969 4.22083 11.1969 4.22082 11.1969 4.22082C11.1969 4.22082 11.1969 4.22081 11.1969 4.22081C11.1969 4.22081 11.1969 4.2208 11.1969 4.2208C11.1969 4.2208 11.1969 4.22079 11.1969 4.22079C11.1969 4.22078 11.1969 4.22078 11.1969 4.22078C11.1969 4.22077 11.1969 4.22077 11.1969 4.22077C11.1969 4.22076 11.1969 4.22076 11.1969 4.22076C11.1969 4.22075 11.1969 4.22075 11.1969 4.22075C11.1969 4.22074 11.1969 4.22074 11.1969 4.22074C11.1969 4.22073 11.1969 4.22073 11.1969 4.22073C11.1969 4.22072 11.1969 4.22072 11.1969 4.22071C11.1969 4.22071 11.1969 4.22071 11.1969 4.2207C11.1969 4.2207 11.1969 4.2207 11.1969 4.22069C11.1969 4.22069 11.1969 4.22069 11.1969 4.22068C11.1969 4.22068 11.1969 4.22068 11.1969 4.22067C11.1969 4.22067 11.1969 4.22067 11.1969 4.22066C11.1969 4.22066 11.1969 4.22066 11.1969 4.22065C11.1969 4.22065 11.1969 4.22064 11.1969 4.22064C11.1969 4.22064 11.1969 4.22063 11.1969 4.22063C11.1969 4.22063 11.1969 4.22062 11.1969 4.22062C11.1969 4.22062 11.1969 4.22061 11.1969 4.22061C11.1969 4.22061 11.1969 4.2206 11.1969 4.2206C11.1969 4.2206 11.1969 4.22059 11.1969 4.22059C11.1969 4.22059 11.1969 4.22058 11.1969 4.22058C11.1969 4.22057 11.1969 4.22057 11.1969 4.22057C11.1969 4.22056 11.1969 4.22056 11.1969 4.22056C11.1969 4.22055 11.1969 4.22055 11.1969 4.22055C11.1969 4.22054 11.1969 4.22054 11.1969 4.22054C11.1969 4.22053 11.1969 4.22053 11.1969 4.22053C11.1969 4.22052 11.1969 4.22052 11.1969 4.22052C11.1969 4.22051 11.1969 4.22051 11.1969 4.22051C11.1969 4.2205 11.1969 4.2205 11.1969 4.22049C11.1969 4.22049 11.1969 4.22049 11.1969 4.22048C11.1969 4.22048 11.1969 4.22048 11.1969 4.22047C11.1969 4.22047 11.1969 4.22047 11.1969 4.22046C11.1969 4.22046 11.1969 4.22046 11.1969 4.22045C11.1969 4.22045 11.1969 4.22045 11.1969 4.22044C11.1969 4.22044 11.1969 4.22044 11.1969 4.22043C11.1969 4.22043 11.1969 4.22043 11.1969 4.22042C11.1969 4.22042 11.1969 4.22041 11.1969 4.22041C11.1969 4.22041 11.1969 4.2204 11.1969 4.2204C11.1969 4.2204 11.1969 4.22039 11.1969 4.22039C11.1969 4.22039 11.1969 4.22038 11.1969 4.22038C11.1969 4.22038 11.1969 4.22037 11.1969 4.22037C11.1969 4.22037 11.1969 4.22036 11.1969 4.22036C11.1969 4.22036 11.1969 4.22035 11.1969 4.22035C11.1969 4.22035 11.1969 4.22034 11.1969 4.22034C11.1969 4.22034 11.1969 4.22033 11.1969 4.22033C11.1969 4.22032 11.1969 4.22032 11.1969 4.22032C11.1969 4.22031 11.1969 4.22031 11.1969 4.22031C11.1969 4.2203 11.1969 4.2203 11.1969 4.2203C11.1969 4.22029 11.1969 4.22029 11.1969 4.22029C11.1969 4.22028 11.1969 4.22028 11.1969 4.22028C11.1969 4.22027 11.1969 4.22027 11.1969 4.22027C11.1969 4.22026 11.1969 4.22026 11.1969 4.22026C11.1969 4.22025 11.1969 4.22025 11.1969 4.22025C11.1969 4.22024 11.1969 4.22024 11.1969 4.22024C11.1969 4.22023 11.1969 4.22023 11.1969 4.22023C11.1969 4.22022 11.1969 4.22022 11.1969 4.22021C11.1969 4.22021 11.1969 4.22021 11.1969 4.2202C11.1969 4.2202 11.1969 4.2202 11.1969 4.22019C11.1969 4.22019 11.1969 4.22019 11.1969 4.22018C11.1969 4.22018 11.1969 4.22018 11.1969 4.22017C11.1969 4.22017 11.1969 4.22017 11.1969 4.22016C11.1969 4.22016 11.1969 4.22016 11.1969 4.22015C11.1969 4.22015 11.1969 4.22015 11.1969 4.22014C11.1969 4.22014 11.1969 4.22014 11.1969 4.22013C11.1969 4.22013 11.1969 4.22013 11.1969 4.22012C11.1969 4.22012 11.1969 4.22012 11.1969 4.22011C11.1969 4.22011 11.1969 4.2201 11.1969 4.2201C11.1969 4.2201 11.1969 4.22009 11.1969 4.22009C11.1969 4.22009 11.1969 4.22008 11.1969 4.22008C11.1969 4.22008 11.1969 4.22007 11.1969 4.22007C11.1969 4.22007 11.1969 4.22006 11.1969 4.22006C11.1969 4.22006 11.1969 4.22005 11.1969 4.22005C11.1969 4.22005 11.1969 4.22004 11.1969 4.22004C11.1969 4.22004 11.1969 4.22003 11.1969 4.22003C11.1969 4.22003 11.1969 4.22002 11.1969 4.22002C11.1969 4.22002 11.1969 4.22001 11.1969 4.22001C11.1969 4.22001 11.1969 4.22 11.1969 4.22C11.1969 4.22 11.1969 4.21999 11.1969 4.21999C11.1969 4.21999 11.1969 4.21998 11.1969 4.21998C11.1969 4.21997 11.1969 4.21997 11.1969 4.21997C11.1969 4.21996 11.1969 4.21996 11.1969 4.21996C11.1969 4.21995 11.1969 4.21995 11.1969 4.21995C11.1969 4.21994 11.1969 4.21994 11.1969 4.21994C11.1969 4.21993 11.1969 4.21993 11.1969 4.21993C11.1969 4.21992 11.1969 4.21992 11.1969 4.21992C11.1969 4.21991 11.1969 4.21991 11.1969 4.21991C11.1969 4.2199 11.1969 4.2199 11.1969 4.2199C11.1969 4.21989 11.1969 4.21989 11.1969 4.21989C11.1969 4.21988 11.1969 4.21988 11.1969 4.21988C11.1969 4.21987 11.1969 4.21987 11.1969 4.21987C11.1969 4.21986 11.1969 4.21986 11.1969 4.21986C11.1969 4.21985 11.1969 4.21985 11.1969 4.21985C11.1969 4.21984 11.1969 4.21984 11.1969 4.21984C11.1969 4.21983 11.1969 4.21983 11.1969 4.21983C11.1969 4.21982 11.1969 4.21982 11.1969 4.21981C11.1969 4.21981 11.1969 4.21981 11.1969 4.2198C11.1969 4.2198 11.1969 4.2198 11.1969 4.21979C11.1969 4.21979 11.1969 4.21979 11.1969 4.21978C11.1969 4.21978 11.1969 4.21978 11.1969 4.21977C11.1969 4.21977 11.1969 4.21977 11.1969 4.21976C11.1969 4.21976 11.1969 4.21976 11.1969 4.21975C11.1969 4.21975 11.1969 4.21975 11.1969 4.21974C11.1969 4.21974 11.1969 4.21974 11.1969 4.21973C11.1969 4.21973 11.1969 4.21973 11.1969 4.21972C11.1969 4.21972 11.1969 4.21972 11.1969 4.21971C11.1969 4.21971 11.1969 4.21971 11.1969 4.2197C11.1969 4.2197 11.1969 4.2197 11.1969 4.21969C11.1969 4.21969 11.1969 4.21969 11.1969 4.21968C11.1969 4.21968 11.1969 4.21968 11.1969 4.21967C11.1969 4.21967 11.1969 4.21967 11.1969 4.21966C11.1969 4.21966 11.1969 4.21966 11.1969 4.21965C11.1969 4.21965 11.1969 4.21965 11.1969 4.21964C11.1969 4.21964 11.1969 4.21964 11.1969 4.21963C11.1969 4.21963 11.1969 4.21962 11.1969 4.21962C11.1969 4.21962 11.1969 4.21961 11.1969 4.21961C11.1969 4.21961 11.1969 4.2196 11.1969 4.2196C11.1969 4.2196 11.1969 4.21959 11.1969 4.21959C11.1969 4.21959 11.1969 4.21958 11.1969 4.21958C11.1969 4.21958 11.1969 4.21957 11.1969 4.21957C11.1969 4.21957 11.1969 4.21956 11.1969 4.21956C11.1969 4.21956 11.1969 4.21955 11.1969 4.21955C11.1969 4.21955 11.1969 4.21954 11.1969 4.21954C11.1969 4.21954 11.1969 4.21953 11.1969 4.21953C11.1969 4.21953 11.1969 4.21952 11.1969 4.21952C11.1969 4.21952 11.1969 4.21951 11.1969 4.21951C11.1969 4.21951 11.1969 4.2195 11.1969 4.2195C11.1969 4.2195 11.1969 4.21949 11.1969 4.21949C11.1969 4.21949 11.1969 4.21948 11.1969 4.21948C11.1969 4.21948 11.1969 4.21947 11.1969 4.21947C11.1969 4.21947 11.1969 4.21946 11.1969 4.21946C11.1969 4.21946 11.1969 4.21945 11.1969 4.21945C11.1969 4.21945 11.1969 4.21944 11.1969 4.21944C11.1969 4.21944 11.1969 4.21943 11.1969 4.21943C11.1969 4.21943 11.1969 4.21942 11.1969 4.21942C11.1969 4.21942 11.1969 4.21941 11.1969 4.21941C11.1969 4.21941 11.1969 4.2194 11.1969 4.2194C11.1969 4.2194 11.1969 4.21939 11.1969 4.21939C11.1969 4.21939 11.1969 4.21938 11.1969 4.21938C11.1969 4.21938 11.1969 4.21937 11.1969 4.21937C11.1969 4.21937 11.1969 4.21936 11.1969 4.21936C11.1969 4.21935 11.1969 4.21935 11.1969 4.21935C11.1969 4.21934 11.1969 4.21934 11.1969 4.21934C11.1969 4.21933 11.1969 4.21933 11.1969 4.21933C11.1969 4.21932 11.1969 4.21932 11.1969 4.21932C11.1969 4.21931 11.1969 4.21931 11.1969 4.21931C11.1969 4.2193 11.1969 4.2193 11.1969 4.2193C11.1969 4.21929 11.1969 4.21929 11.1969 4.21929C11.1969 4.21928 11.1969 4.21928 11.1969 4.21928C11.1969 4.21927 11.1969 4.21927 11.1969 4.21927C11.1969 4.21926 11.1969 4.21926 11.1969 4.21926C11.1969 4.21925 11.1969 4.21925 11.1969 4.21925C11.1969 4.21924 11.1969 4.21924 11.1969 4.21924C11.1969 4.21923 11.1969 4.21923 11.1969 4.21923C11.1969 4.21922 11.1969 4.21922 11.1969 4.21922C11.1969 4.21921 11.1969 4.21921 11.1969 4.21921C11.1969 4.2192 11.1969 4.2192 11.1969 4.2192C11.1969 4.21919 11.1969 4.21919 11.1969 4.21919C11.1969 4.21918 11.1969 4.21918 11.1969 4.21918C11.1969 4.21917 11.1969 4.21917 11.1969 4.21917C11.1969 4.21916 11.1969 4.21916 11.1969 4.21916C11.1969 4.21915 11.1969 4.21915 11.1969 4.21915C11.1969 4.21914 11.1969 4.21914 11.1969 4.21914C11.1969 4.21913 11.1969 4.21913 11.1969 4.21913C11.1969 4.21912 11.1969 4.21912 11.1969 4.21912C11.1969 4.21911 11.1969 4.21911 11.1969 4.21911C11.1969 4.2191 11.1969 4.2191 11.1969 4.2191C11.1969 4.21909 11.1969 4.21909 11.1969 4.21909C11.1969 4.21908 11.1969 4.21908 11.1969 4.21908C11.1969 4.21907 11.1969 4.21907 11.1969 4.21907C11.1969 4.21906 11.1969 4.21906 11.1969 4.21906C11.1969 4.21905 11.1969 4.21905 11.1969 4.21905C11.1969 4.21904 11.1969 4.21904 11.1969 4.21904C11.1969 4.21903 11.1969 4.21903 11.1969 4.21903C11.1969 4.21902 11.1969 4.21902 11.1969 4.21902C11.1969 4.21901 11.1969 4.21901 11.1969 4.21901C11.1969 4.219 11.1969 4.219 11.1969 4.219C11.1969 4.21899 11.1969 4.21899 11.1969 4.21899C11.1969 4.21898 11.1969 4.21898 11.1969 4.21898C11.1969 4.21897 11.1969 4.21897 11.1969 4.21896C11.1969 4.21896 11.1969 4.21896 11.1969 4.21895C11.1969 4.21895 11.1969 4.21895 11.1969 4.21894C11.1969 4.21894 11.1969 4.21894 11.1969 4.21893C11.1969 4.21893 11.1969 4.21893 11.1969 4.21892C11.1969 4.21892 11.1969 4.21892 11.1969 4.21891C11.1969 4.21891 11.1969 4.21891 11.1969 4.2189C11.1969 4.2189 11.1969 4.2189 11.1969 4.21889C11.1969 4.21889 11.1969 4.21889 11.1969 4.21888C11.1969 4.21888 11.1969 4.21888 11.1969 4.21887C11.1969 4.21887 11.1969 4.21887 11.1969 4.21886C11.1969 4.21886 11.1969 4.21886 11.1969 4.21885C11.1969 4.21885 11.1969 4.21885 11.1969 4.21884C11.1969 4.21884 11.1969 4.21884 11.1969 4.21883C11.1969 4.21883 11.1969 4.21883 11.1969 4.21882C11.1969 4.21882 11.1969 4.21882 11.1969 4.21881C11.1969 4.21881 11.1969 4.21881 11.1969 4.2188C11.1969 4.2188 11.1969 4.2188 11.1969 4.21879C11.1969 4.21879 11.1969 4.21879 11.1969 4.21878C11.1969 4.21878 11.1969 4.21878 11.1969 4.21877C11.1969 4.21877 11.1969 4.21877 11.1969 4.21876C11.1969 4.21876 11.1969 4.21876 11.1969 4.21875C11.1969 4.21875 11.1969 4.21875 11.1969 4.21874C11.1969 4.21874 11.1969 4.21874 11.1969 4.21873C11.1969 4.21873 11.1969 4.21873 11.1969 4.21872C11.1969 4.21872 11.1969 4.21872 11.1969 4.21871C11.1969 4.21871 11.1969 4.21871 11.1969 4.2187C11.1969 4.2187 11.1969 4.2187 11.1969 4.21869C11.1969 4.21869 11.1969 4.21869 11.1969 4.21868C11.1969 4.21868 11.1969 4.21868 11.1969 4.21867C11.1969 4.21867 11.1969 4.21867 11.1969 4.21866C11.1969 4.21866 11.1969 4.21866 11.1969 4.21865C11.1969 4.21865 11.1969 4.21865 11.1969 4.21864C11.1969 4.21864 11.1969 4.21864 11.1969 4.21863C11.1969 4.21863 11.1969 4.21863 11.1969 4.21862C11.1969 4.21862 11.1969 4.21862 11.1969 4.21861C11.1969 4.21861 11.1969 4.21861 11.1969 4.2186C11.1969 4.2186 11.1969 4.2186 11.1969 4.21859C11.1969 4.21859 11.1969 4.21859 11.1969 4.21858C11.1969 4.21858 11.1969 4.21858 11.1969 4.21857C11.1969 4.21857 11.1969 4.21857 11.1969 4.21856C11.1969 4.21856 11.1969 4.21856 11.1969 4.21855C11.1969 4.21855 11.1969 4.21854 11.1969 4.21854C11.1969 4.21854 11.1969 4.21853 11.1969 4.21853C11.1969 4.21853 11.1969 4.21852 11.1969 4.21852C11.1969 4.21852 11.1969 4.21851 11.1969 4.21851C11.1969 4.21851 11.1969 4.2185 11.1969 4.2185C11.1969 4.2185 11.1969 4.21849 11.1969 4.21849C11.1969 4.21849 11.1969 4.21848 11.1969 4.21848C11.1969 4.21848 11.1969 4.21847 11.1969 4.21847C11.1969 4.21847 11.1969 4.21846 11.1969 4.21846C11.1969 4.21846 11.1969 4.21845 11.1969 4.21845C11.1969 4.21845 11.1969 4.21844 11.1969 4.21844C11.1969 4.21844 11.1969 4.21843 11.1969 4.21843C11.1969 4.21843 11.1969 4.21842 11.1969 4.21842C11.1969 4.21842 11.1969 4.21841 11.1969 4.21841C11.1969 4.21841 11.1969 4.2184 11.1969 4.2184C11.1969 4.2184 11.1969 4.21839 11.1969 4.21839C11.1969 4.21839 11.1969 4.21838 11.1969 4.21838C11.1969 4.21838 11.1969 4.21837 11.1969 4.21837C11.1969 4.21837 11.1969 4.21836 11.1969 4.21836C11.1969 4.21836 11.1969 4.21835 11.1969 4.21835C11.1969 4.21835 11.1969 4.21834 11.1969 4.21834C11.1969 4.21834 11.1969 4.21833 11.1969 4.21833C11.1969 4.21833 11.1969 4.21832 11.1969 4.21832C11.1969 4.21832 11.1969 4.21831 11.1969 4.21831C11.1969 4.21831 11.1969 4.2183 11.1969 4.2183C11.1969 4.2183 11.1969 4.21829 11.1969 4.21829C11.1969 4.21829 11.1969 4.21828 11.1969 4.21828C11.1969 4.21828 11.1969 4.21827 11.1969 4.21827C11.1969 4.21827 11.1969 4.21826 11.1969 4.21826C11.1969 4.21826 11.1969 4.21825 11.1969 4.21825C11.1969 4.21825 11.1969 4.21824 11.1969 4.21824C11.1969 4.21824 11.1969 4.21823 11.1969 4.21823C11.1969 4.21823 11.1969 4.21822 11.1969 4.21822C11.1969 4.21821 11.1969 4.21821 11.1969 4.21821C11.1969 4.2182 11.1969 4.2182 11.1969 4.2182C11.1969 4.21819 11.1969 4.21819 11.1969 4.21819C11.1969 4.21818 11.1969 4.21818 11.1969 4.21818C11.1969 4.21817 11.1969 4.21817 11.1969 4.21817C11.1969 4.21816 11.1969 4.21816 11.1969 4.21816C11.1969 4.21815 11.1969 4.21815 11.1969 4.21815C11.1969 4.21814 11.1969 4.21814 11.1969 4.21814C11.1969 4.21813 11.1969 4.21813 11.1969 4.21813C11.1969 4.21812 11.1969 4.21812 11.1969 4.21812C11.1969 4.21811 11.1969 4.21811 11.1969 4.21811C11.1969 4.2181 11.1969 4.2181 11.1969 4.2181C11.1969 4.21809 11.1969 4.21809 11.1969 4.21809C11.1969 4.21808 11.1969 4.21808 11.1969 4.21808C11.1969 4.21807 11.1969 4.21807 11.1969 4.21807C11.1969 4.21806 11.1969 4.21806 11.1969 4.21806C11.1969 4.21805 11.1969 4.21805 11.1969 4.21805C11.1969 4.21804 11.1969 4.21804 11.1969 4.21804C11.1969 4.21803 11.1969 4.21803 11.1969 4.21803C11.1969 4.21802 11.1969 4.21802 11.1969 4.21802C11.1969 4.21801 11.1969 4.21801 11.1969 4.218C11.1969 4.218 11.1969 4.218 11.1969 4.21799C11.1969 4.21799 11.1969 4.21799 11.1969 4.21798C11.1969 4.21798 11.1969 4.21798 11.1969 4.21797C11.1969 4.21797 11.1969 4.21797 11.1969 4.21796C11.1969 4.21796 11.1969 4.21796 11.1969 4.21795C11.1969 4.21795 11.1969 4.21795 11.1969 4.21794C11.1969 4.21794 11.1969 4.21794 11.1969 4.21793C11.1969 4.21793 11.1969 4.21793 11.1969 4.21792C11.1969 4.21792 11.1969 4.21792 11.1969 4.21791C11.1969 4.21791 11.1969 4.21791 11.1969 4.2179C11.1969 4.2179 11.1969 4.2179 11.1969 4.21789C11.1969 4.21789 11.1969 4.21789 11.1969 4.21788C11.1969 4.21788 11.1969 4.21788 11.1969 4.21787C11.1969 4.21787 11.1969 4.21787 11.1969 4.21786C11.1969 4.21786 11.1969 4.21786 11.1969 4.21785C11.1969 4.21785 11.1969 4.21785 11.1969 4.21784C11.1969 4.21784 11.1969 4.21783 11.1969 4.21783C11.1969 4.21783 11.1969 4.21782 11.1969 4.21782C11.1969 4.21782 11.1969 4.21781 11.1969 4.21781C11.1969 4.21781 11.1969 4.2178 11.1969 4.2178C11.1969 4.2178 11.1969 4.21779 11.1969 4.21779C11.1969 4.21779 11.1969 4.21778 11.1969 4.21778C11.1969 4.21778 11.1969 4.21777 11.1969 4.21777C11.1969 4.21777 11.1969 4.21776 11.1969 4.21776C11.1969 4.21776 11.1969 4.21775 11.1969 4.21775C11.1969 4.21775 11.1969 4.21774 11.1969 4.21774C11.1969 4.21774 11.1969 4.21773 11.1969 4.21773C11.1969 4.21773 11.1969 4.21772 11.1969 4.21772C11.1969 4.21772 11.1969 4.21771 11.1969 4.21771C11.1969 4.21771 11.1969 4.2177 11.1969 4.2177C11.1969 4.21769 11.1969 4.21769 11.1969 4.21769C11.1969 4.21768 11.1969 4.21768 11.1969 4.21768C11.1969 4.21767 11.1969 4.21767 11.1969 4.21767C11.1969 4.21766 11.1969 4.21766 11.1969 4.21766C11.1969 4.21765 11.1969 4.21765 11.1969 4.21765C11.1969 4.21764 11.1969 4.21764 11.1969 4.21764C11.1969 4.21763 11.1969 4.21763 11.1969 4.21763C11.1969 4.21762 11.1969 4.21762 11.1969 4.21762C11.1969 4.21761 11.1969 4.21761 11.1969 4.21761C11.1969 4.2176 11.1969 4.2176 11.1969 4.2176C11.1969 4.21759 11.1969 4.21759 11.1969 4.21759C11.1969 4.21758 11.1969 4.21758 11.1969 4.21758C11.1969 4.21757 11.1969 4.21757 11.1969 4.21756C11.1969 4.21756 11.1969 4.21756 11.1969 4.21755C11.1969 4.21755 11.1969 4.21755 11.1969 4.21754C11.1969 4.21754 11.1969 4.21754 11.1969 4.21753C11.1969 4.21753 11.1969 4.21753 11.1969 4.21752C11.1969 4.21752 11.1969 4.21752 11.1969 4.21751C11.1969 4.21751 11.1969 4.21751 11.1969 4.2175C11.1969 4.2175 11.1969 4.2175 11.1969 4.21749C11.1969 4.21749 11.1969 4.21749 11.1969 4.21748C11.1969 4.21748 11.1969 4.21748 11.1969 4.21747C11.1969 4.21747 11.1969 4.21746 11.1969 4.21746C11.1969 4.21746 11.1969 4.21745 11.1969 4.21745C11.1969 4.21745 11.1969 4.21744 11.1969 4.21744C11.1969 4.21744 11.1969 4.21743 11.1969 4.21743C11.1969 4.21743 11.1969 4.21742 11.1969 4.21742C11.1969 4.21742 11.1969 4.21741 11.1969 4.21741C11.1969 4.21741 11.1969 4.2174 11.1969 4.2174C11.1969 4.2174 11.1969 4.21739 11.1969 4.21739C11.1969 4.21739 11.1969 4.21738 11.1969 4.21738C11.1969 4.21738 11.1969 4.21737 11.1969 4.21737C11.1969 4.21736 11.1969 4.21736 11.1969 4.21736C11.1969 4.21735 11.1969 4.21735 11.1969 4.21735C11.1969 4.21734 11.1969 4.21734 11.1969 4.21734C11.1969 4.21733 11.1969 4.21733 11.1969 4.21733C11.1969 4.21732 11.1969 4.21732 11.1969 4.21732C11.1969 4.21731 11.1969 4.21731 11.1969 4.21731C11.1969 4.2173 11.1969 4.2173 11.1969 4.2173C11.1969 4.21729 11.1969 4.21729 11.1969 4.21729C11.1969 4.21728 11.1969 4.21728 11.1969 4.21727C11.1969 4.21727 11.1969 4.21727 11.1969 4.21726C11.1969 4.21726 11.1969 4.21726 11.1969 4.21725C11.1969 4.21725 11.1969 4.21725 11.1969 4.21724C11.1969 4.21724 11.1969 4.21724 11.1969 4.21723C11.1969 4.21723 11.1969 4.21723 11.1969 4.21722C11.1969 4.21722 11.1969 4.21722 11.1969 4.21721C11.1969 4.21721 11.1969 4.21721 11.1969 4.2172C11.1969 4.2172 11.1969 4.21719 11.1969 4.21719C11.1969 4.21719 11.1969 4.21718 11.1969 4.21718C11.1969 4.21718 11.1969 4.21717 11.1969 4.21717C11.1969 4.21717 11.1969 4.21716 11.1969 4.21716C11.1969 4.21716 11.1969 4.21715 11.1969 4.21715C11.1969 4.21715 11.1969 4.21714 11.1969 4.21714C11.1969 4.21714 11.1969 4.21713 11.1969 4.21713C11.1969 4.21712 11.1969 4.21712 11.1969 4.21712C11.1969 4.21711 11.1969 4.21711 11.1969 4.21711C11.1969 4.2171 11.1969 4.2171 11.1969 4.2171C11.1969 4.21709 11.1969 4.21709 11.1969 4.21709C11.1969 4.21708 11.1969 4.21708 11.1969 4.21708C11.1969 4.21707 11.1969 4.21707 11.1969 4.21707C11.1969 4.21706 11.1969 4.21706 11.1969 4.21705C11.1969 4.21705 11.1969 4.21705 11.1969 4.21704C11.1969 4.21704 11.1969 4.21704 11.1969 4.21703C11.1969 4.21703 11.1969 4.21703 11.1969 4.21702C11.1969 4.21702 11.1969 4.21702 11.1969 4.21701C11.1969 4.21701 11.1969 4.21701 11.1969 4.217C11.1969 4.217 11.1969 4.217 11.1969 4.21699C11.1969 4.21699 11.1969 4.21698 11.1969 4.21698C11.1969 4.21698 11.1969 4.21697 11.1969 4.21697C11.1969 4.21697 11.1969 4.21696 11.1969 4.21696C11.1969 4.21696 11.1969 4.21695 11.1969 4.21695C11.1969 4.21695 11.1969 4.21694 11.1969 4.21694C11.1969 4.21694 11.1969 4.21693 11.1969 4.21693C11.1969 4.21692 11.1969 4.21692 11.1969 4.21692C11.1969 4.21691 11.1969 4.21691 11.1969 4.21691C11.1969 4.2169 11.1969 4.2169 11.1969 4.2169C11.1969 4.21689 11.1969 4.21689 11.1969 4.21689C11.1969 4.21688 11.1969 4.21688 11.1969 4.21688C11.1969 4.21687 11.1969 4.21687 11.1969 4.21686C11.1969 4.21686 11.1969 4.21686 11.1969 4.21685C11.1969 4.21685 11.1969 4.21685 11.1969 4.21684C11.1969 4.21684 11.1969 4.21684 11.1969 4.21683C11.1969 4.21683 11.1969 4.21683 11.1969 4.21682C11.1969 4.21682 11.1969 4.21682 11.1969 4.21681C11.1969 4.21681 11.1969 4.2168 11.1969 4.2168C11.1969 4.2168 11.1969 4.21679 11.1969 4.21679C11.1969 4.21679 11.1969 4.21678 11.1969 4.21678C11.1969 4.21678 11.1969 4.21677 11.1969 4.21677C11.1969 4.21677 11.1969 4.21676 11.1969 4.21676C11.1969 4.21675 11.1969 4.21675 11.1969 4.21675C11.1969 4.21674 11.1969 4.21674 11.1969 4.21674C11.1969 4.21673 11.1969 4.21673 11.1969 4.21673C11.1969 4.21672 11.1969 4.21672 11.1969 4.21672C11.1969 4.21671 11.1969 4.21671 11.1969 4.2167C11.1969 4.2167 11.1969 4.2167 11.1969 4.21669C11.1969 4.21669 11.1969 4.21669 11.1969 4.21668C11.1969 4.21668 11.1969 4.21668 11.1969 4.21667C11.1969 4.21667 11.1969 4.21667 11.1969 4.21666C11.1969 4.21666 11.1969 4.21666 11.1969 4.21665C11.1969 4.21665 11.1969 4.21664 11.1969 4.21664C11.1969 4.21664 11.1969 4.21663 11.1969 4.21663C11.1969 4.21663 11.1969 4.21662 11.1969 4.21662C11.1969 4.21662 11.1969 4.21661 11.1969 4.21661C11.1969 4.2166 11.1969 4.2166 11.1969 4.2166C11.1969 4.21659 11.1969 4.21659 11.1969 4.21659C11.1969 4.21658 11.1969 4.21658 11.1969 4.21658C11.1969 4.21657 11.1969 4.21657 11.1969 4.21657C11.1969 4.21656 11.1969 4.21656 11.1969 4.21655C11.1969 4.21655 11.1969 4.21655 11.1969 4.21654C11.1969 4.21654 11.1969 4.21654 11.1969 4.21653C11.1969 4.21653 11.1969 4.21653 11.1969 4.21652C11.1969 4.21652 11.1969 4.21652 11.1969 4.21651C11.1969 4.21651 11.1969 4.2165 11.1969 4.2165C11.1969 4.2165 11.1969 4.21649 11.1969 4.21649C11.1969 4.21649 11.1969 4.21648 11.1969 4.21648C11.1969 4.21648 11.1969 4.21647 11.1969 4.21647C11.1969 4.21646 11.1969 4.21646 11.1969 4.21646C11.1969 4.21645 11.1969 4.21645 11.1969 4.21645C11.1969 4.21644 11.1969 4.21644 11.1969 4.21644C11.1969 4.21643 11.1969 4.21643 11.1969 4.21642C11.1969 4.21642 11.1969 4.21642 11.1969 4.21641C11.1969 4.21641 11.1969 4.21641 11.1969 4.2164C11.1969 4.2164 11.1969 4.2164 11.1969 4.21639C11.1969 4.21639 11.1969 4.21638 11.1969 4.21638C11.1969 4.21638 11.1969 4.21637 11.1969 4.21637C11.1969 4.21637 11.1969 4.21636 11.1969 4.21636C11.1969 4.21636 11.1969 4.21635 11.1969 4.21635C11.1969 4.21635 11.1969 4.21634 11.1969 4.21634C11.1969 4.21633 11.1969 4.21633 11.1969 4.21633C11.1969 4.21632 11.1969 4.21632 11.1969 4.21632C11.1969 4.21631 11.1969 4.21631 11.1969 4.21631C11.1969 4.2163 11.1969 4.2163 11.1969 4.21629C11.1969 4.21629 11.1969 4.21629 11.1969 4.21628C11.1969 4.21628 11.1969 4.21628 11.1969 4.21627C11.1969 4.21627 11.1969 4.21626 11.1969 4.21626C11.1969 4.21626 11.1969 4.21625 11.1969 4.21625C11.1969 4.21625 11.1969 4.21624 11.1969 4.21624C11.1969 4.21624 11.1969 4.21623 11.1969 4.21623C11.1969 4.21622 11.1969 4.21622 11.1969 4.21622H10.7969C10.7969 4.21622 10.7969 4.21622 10.7969 4.21623C10.7969 4.21623 10.7969 4.21624 10.7969 4.21624C10.7969 4.21624 10.7969 4.21625 10.7969 4.21625C10.7969 4.21625 10.7969 4.21626 10.7969 4.21626C10.7969 4.21626 10.7969 4.21627 10.7969 4.21627C10.7969 4.21628 10.7969 4.21628 10.7969 4.21628C10.7969 4.21629 10.7969 4.21629 10.7969 4.21629C10.7969 4.2163 10.7969 4.2163 10.7969 4.21631C10.7969 4.21631 10.7969 4.21631 10.7969 4.21632C10.7969 4.21632 10.7969 4.21632 10.7969 4.21633C10.7969 4.21633 10.7969 4.21633 10.7969 4.21634C10.7969 4.21634 10.7969 4.21635 10.7969 4.21635C10.7969 4.21635 10.7969 4.21636 10.7969 4.21636C10.7969 4.21636 10.7969 4.21637 10.7969 4.21637C10.7969 4.21637 10.7969 4.21638 10.7969 4.21638C10.7969 4.21638 10.7969 4.21639 10.7969 4.21639C10.7969 4.2164 10.7969 4.2164 10.7969 4.2164C10.7969 4.21641 10.7969 4.21641 10.7969 4.21641C10.7969 4.21642 10.7969 4.21642 10.7969 4.21642C10.7969 4.21643 10.7969 4.21643 10.7969 4.21644C10.7969 4.21644 10.7969 4.21644 10.7969 4.21645C10.7969 4.21645 10.7969 4.21645 10.7969 4.21646C10.7969 4.21646 10.7969 4.21646 10.7969 4.21647C10.7969 4.21647 10.7969 4.21648 10.7969 4.21648C10.7969 4.21648 10.7969 4.21649 10.7969 4.21649C10.7969 4.21649 10.7969 4.2165 10.7969 4.2165C10.7969 4.2165 10.7969 4.21651 10.7969 4.21651C10.7969 4.21652 10.7969 4.21652 10.7969 4.21652C10.7969 4.21653 10.7969 4.21653 10.7969 4.21653C10.7969 4.21654 10.7969 4.21654 10.7969 4.21654C10.7969 4.21655 10.7969 4.21655 10.7969 4.21655C10.7969 4.21656 10.7969 4.21656 10.7969 4.21657C10.7969 4.21657 10.7969 4.21657 10.7969 4.21658C10.7969 4.21658 10.7969 4.21658 10.7969 4.21659C10.7969 4.21659 10.7969 4.21659 10.7969 4.2166C10.7969 4.2166 10.7969 4.2166 10.7969 4.21661C10.7969 4.21661 10.7969 4.21662 10.7969 4.21662C10.7969 4.21662 10.7969 4.21663 10.7969 4.21663C10.7969 4.21663 10.7969 4.21664 10.7969 4.21664C10.7969 4.21664 10.7969 4.21665 10.7969 4.21665C10.7969 4.21666 10.7969 4.21666 10.7969 4.21666C10.7969 4.21667 10.7969 4.21667 10.7969 4.21667C10.7969 4.21668 10.7969 4.21668 10.7969 4.21668C10.7969 4.21669 10.7969 4.21669 10.7969 4.21669C10.7969 4.2167 10.7969 4.2167 10.7969 4.2167C10.7969 4.21671 10.7969 4.21671 10.7969 4.21672C10.7969 4.21672 10.7969 4.21672 10.7969 4.21673C10.7969 4.21673 10.7969 4.21673 10.7969 4.21674C10.7969 4.21674 10.7969 4.21674 10.7969 4.21675C10.7969 4.21675 10.7969 4.21675 10.7969 4.21676C10.7969 4.21676 10.7969 4.21677 10.7969 4.21677C10.7969 4.21677 10.7969 4.21678 10.7969 4.21678C10.7969 4.21678 10.7969 4.21679 10.7969 4.21679C10.7969 4.21679 10.7969 4.2168 10.7969 4.2168C10.7969 4.2168 10.7969 4.21681 10.7969 4.21681C10.7969 4.21682 10.7969 4.21682 10.7969 4.21682C10.7969 4.21683 10.7969 4.21683 10.7969 4.21683C10.7969 4.21684 10.7969 4.21684 10.7969 4.21684C10.7969 4.21685 10.7969 4.21685 10.7969 4.21685C10.7969 4.21686 10.7969 4.21686 10.7969 4.21686C10.7969 4.21687 10.7969 4.21687 10.7969 4.21688C10.7969 4.21688 10.7969 4.21688 10.7969 4.21689C10.7969 4.21689 10.7969 4.21689 10.7969 4.2169C10.7969 4.2169 10.7969 4.2169 10.7969 4.21691C10.7969 4.21691 10.7969 4.21691 10.7969 4.21692C10.7969 4.21692 10.7969 4.21692 10.7969 4.21693C10.7969 4.21693 10.7969 4.21694 10.7969 4.21694C10.7969 4.21694 10.7969 4.21695 10.7969 4.21695C10.7969 4.21695 10.7969 4.21696 10.7969 4.21696C10.7969 4.21696 10.7969 4.21697 10.7969 4.21697C10.7969 4.21697 10.7969 4.21698 10.7969 4.21698C10.7969 4.21698 10.7969 4.21699 10.7969 4.21699C10.7969 4.217 10.7969 4.217 10.7969 4.217C10.7969 4.21701 10.7969 4.21701 10.7969 4.21701C10.7969 4.21702 10.7969 4.21702 10.7969 4.21702C10.7969 4.21703 10.7969 4.21703 10.7969 4.21703C10.7969 4.21704 10.7969 4.21704 10.7969 4.21704C10.7969 4.21705 10.7969 4.21705 10.7969 4.21705C10.7969 4.21706 10.7969 4.21706 10.7969 4.21707C10.7969 4.21707 10.7969 4.21707 10.7969 4.21708C10.7969 4.21708 10.7969 4.21708 10.7969 4.21709C10.7969 4.21709 10.7969 4.21709 10.7969 4.2171C10.7969 4.2171 10.7969 4.2171 10.7969 4.21711C10.7969 4.21711 10.7969 4.21711 10.7969 4.21712C10.7969 4.21712 10.7969 4.21712 10.7969 4.21713C10.7969 4.21713 10.7969 4.21714 10.7969 4.21714C10.7969 4.21714 10.7969 4.21715 10.7969 4.21715C10.7969 4.21715 10.7969 4.21716 10.7969 4.21716C10.7969 4.21716 10.7969 4.21717 10.7969 4.21717C10.7969 4.21717 10.7969 4.21718 10.7969 4.21718C10.7969 4.21718 10.7969 4.21719 10.7969 4.21719C10.7969 4.21719 10.7969 4.2172 10.7969 4.2172C10.7969 4.21721 10.7969 4.21721 10.7969 4.21721C10.7969 4.21722 10.7969 4.21722 10.7969 4.21722C10.7969 4.21723 10.7969 4.21723 10.7969 4.21723C10.7969 4.21724 10.7969 4.21724 10.7969 4.21724C10.7969 4.21725 10.7969 4.21725 10.7969 4.21725C10.7969 4.21726 10.7969 4.21726 10.7969 4.21726C10.7969 4.21727 10.7969 4.21727 10.7969 4.21727C10.7969 4.21728 10.7969 4.21728 10.7969 4.21729C10.7969 4.21729 10.7969 4.21729 10.7969 4.2173C10.7969 4.2173 10.7969 4.2173 10.7969 4.21731C10.7969 4.21731 10.7969 4.21731 10.7969 4.21732C10.7969 4.21732 10.7969 4.21732 10.7969 4.21733C10.7969 4.21733 10.7969 4.21733 10.7969 4.21734C10.7969 4.21734 10.7969 4.21734 10.7969 4.21735C10.7969 4.21735 10.7969 4.21735 10.7969 4.21736C10.7969 4.21736 10.7969 4.21736 10.7969 4.21737C10.7969 4.21737 10.7969 4.21738 10.7969 4.21738C10.7969 4.21738 10.7969 4.21739 10.7969 4.21739C10.7969 4.21739 10.7969 4.2174 10.7969 4.2174C10.7969 4.2174 10.7969 4.21741 10.7969 4.21741C10.7969 4.21741 10.7969 4.21742 10.7969 4.21742C10.7969 4.21742 10.7969 4.21743 10.7969 4.21743C10.7969 4.21743 10.7969 4.21744 10.7969 4.21744C10.7969 4.21744 10.7969 4.21745 10.7969 4.21745C10.7969 4.21745 10.7969 4.21746 10.7969 4.21746C10.7969 4.21746 10.7969 4.21747 10.7969 4.21747C10.7969 4.21748 10.7969 4.21748 10.7969 4.21748C10.7969 4.21749 10.7969 4.21749 10.7969 4.21749C10.7969 4.2175 10.7969 4.2175 10.7969 4.2175C10.7969 4.21751 10.7969 4.21751 10.7969 4.21751C10.7969 4.21752 10.7969 4.21752 10.7969 4.21752C10.7969 4.21753 10.7969 4.21753 10.7969 4.21753C10.7969 4.21754 10.7969 4.21754 10.7969 4.21754C10.7969 4.21755 10.7969 4.21755 10.7969 4.21755C10.7969 4.21756 10.7969 4.21756 10.7969 4.21756C10.7969 4.21757 10.7969 4.21757 10.7969 4.21758C10.7969 4.21758 10.7969 4.21758 10.7969 4.21759C10.7969 4.21759 10.7969 4.21759 10.7969 4.2176C10.7969 4.2176 10.7969 4.2176 10.7969 4.21761C10.7969 4.21761 10.7969 4.21761 10.7969 4.21762C10.7969 4.21762 10.7969 4.21762 10.7969 4.21763C10.7969 4.21763 10.7969 4.21763 10.7969 4.21764C10.7969 4.21764 10.7969 4.21764 10.7969 4.21765C10.7969 4.21765 10.7969 4.21765 10.7969 4.21766C10.7969 4.21766 10.7969 4.21766 10.7969 4.21767C10.7969 4.21767 10.7969 4.21767 10.7969 4.21768C10.7969 4.21768 10.7969 4.21768 10.7969 4.21769C10.7969 4.21769 10.7969 4.21769 10.7969 4.2177C10.7969 4.2177 10.7969 4.21771 10.7969 4.21771C10.7969 4.21771 10.7969 4.21772 10.7969 4.21772C10.7969 4.21772 10.7969 4.21773 10.7969 4.21773C10.7969 4.21773 10.7969 4.21774 10.7969 4.21774C10.7969 4.21774 10.7969 4.21775 10.7969 4.21775C10.7969 4.21775 10.7969 4.21776 10.7969 4.21776C10.7969 4.21776 10.7969 4.21777 10.7969 4.21777C10.7969 4.21777 10.7969 4.21778 10.7969 4.21778C10.7969 4.21778 10.7969 4.21779 10.7969 4.21779C10.7969 4.21779 10.7969 4.2178 10.7969 4.2178C10.7969 4.2178 10.7969 4.21781 10.7969 4.21781C10.7969 4.21781 10.7969 4.21782 10.7969 4.21782C10.7969 4.21782 10.7969 4.21783 10.7969 4.21783C10.7969 4.21783 10.7969 4.21784 10.7969 4.21784C10.7969 4.21785 10.7969 4.21785 10.7969 4.21785C10.7969 4.21786 10.7969 4.21786 10.7969 4.21786C10.7969 4.21787 10.7969 4.21787 10.7969 4.21787C10.7969 4.21788 10.7969 4.21788 10.7969 4.21788C10.7969 4.21789 10.7969 4.21789 10.7969 4.21789C10.7969 4.2179 10.7969 4.2179 10.7969 4.2179C10.7969 4.21791 10.7969 4.21791 10.7969 4.21791C10.7969 4.21792 10.7969 4.21792 10.7969 4.21792C10.7969 4.21793 10.7969 4.21793 10.7969 4.21793C10.7969 4.21794 10.7969 4.21794 10.7969 4.21794C10.7969 4.21795 10.7969 4.21795 10.7969 4.21795C10.7969 4.21796 10.7969 4.21796 10.7969 4.21796C10.7969 4.21797 10.7969 4.21797 10.7969 4.21797C10.7969 4.21798 10.7969 4.21798 10.7969 4.21798C10.7969 4.21799 10.7969 4.21799 10.7969 4.21799C10.7969 4.218 10.7969 4.218 10.7969 4.218C10.7969 4.21801 10.7969 4.21801 10.7969 4.21802C10.7969 4.21802 10.7969 4.21802 10.7969 4.21803C10.7969 4.21803 10.7969 4.21803 10.7969 4.21804C10.7969 4.21804 10.7969 4.21804 10.7969 4.21805C10.7969 4.21805 10.7969 4.21805 10.7969 4.21806C10.7969 4.21806 10.7969 4.21806 10.7969 4.21807C10.7969 4.21807 10.7969 4.21807 10.7969 4.21808C10.7969 4.21808 10.7969 4.21808 10.7969 4.21809C10.7969 4.21809 10.7969 4.21809 10.7969 4.2181C10.7969 4.2181 10.7969 4.2181 10.7969 4.21811C10.7969 4.21811 10.7969 4.21811 10.7969 4.21812C10.7969 4.21812 10.7969 4.21812 10.7969 4.21813C10.7969 4.21813 10.7969 4.21813 10.7969 4.21814C10.7969 4.21814 10.7969 4.21814 10.7969 4.21815C10.7969 4.21815 10.7969 4.21815 10.7969 4.21816C10.7969 4.21816 10.7969 4.21816 10.7969 4.21817C10.7969 4.21817 10.7969 4.21817 10.7969 4.21818C10.7969 4.21818 10.7969 4.21818 10.7969 4.21819C10.7969 4.21819 10.7969 4.21819 10.7969 4.2182C10.7969 4.2182 10.7969 4.2182 10.7969 4.21821C10.7969 4.21821 10.7969 4.21821 10.7969 4.21822C10.7969 4.21822 10.7969 4.21823 10.7969 4.21823C10.7969 4.21823 10.7969 4.21824 10.7969 4.21824C10.7969 4.21824 10.7969 4.21825 10.7969 4.21825C10.7969 4.21825 10.7969 4.21826 10.7969 4.21826C10.7969 4.21826 10.7969 4.21827 10.7969 4.21827C10.7969 4.21827 10.7969 4.21828 10.7969 4.21828C10.7969 4.21828 10.7969 4.21829 10.7969 4.21829C10.7969 4.21829 10.7969 4.2183 10.7969 4.2183C10.7969 4.2183 10.7969 4.21831 10.7969 4.21831C10.7969 4.21831 10.7969 4.21832 10.7969 4.21832C10.7969 4.21832 10.7969 4.21833 10.7969 4.21833C10.7969 4.21833 10.7969 4.21834 10.7969 4.21834C10.7969 4.21834 10.7969 4.21835 10.7969 4.21835C10.7969 4.21835 10.7969 4.21836 10.7969 4.21836C10.7969 4.21836 10.7969 4.21837 10.7969 4.21837C10.7969 4.21837 10.7969 4.21838 10.7969 4.21838C10.7969 4.21838 10.7969 4.21839 10.7969 4.21839C10.7969 4.21839 10.7969 4.2184 10.7969 4.2184C10.7969 4.2184 10.7969 4.21841 10.7969 4.21841C10.7969 4.21841 10.7969 4.21842 10.7969 4.21842C10.7969 4.21842 10.7969 4.21843 10.7969 4.21843C10.7969 4.21843 10.7969 4.21844 10.7969 4.21844C10.7969 4.21844 10.7969 4.21845 10.7969 4.21845C10.7969 4.21845 10.7969 4.21846 10.7969 4.21846C10.7969 4.21846 10.7969 4.21847 10.7969 4.21847C10.7969 4.21847 10.7969 4.21848 10.7969 4.21848C10.7969 4.21848 10.7969 4.21849 10.7969 4.21849C10.7969 4.21849 10.7969 4.2185 10.7969 4.2185C10.7969 4.2185 10.7969 4.21851 10.7969 4.21851C10.7969 4.21851 10.7969 4.21852 10.7969 4.21852C10.7969 4.21852 10.7969 4.21853 10.7969 4.21853C10.7969 4.21853 10.7969 4.21854 10.7969 4.21854C10.7969 4.21854 10.7969 4.21855 10.7969 4.21855C10.7969 4.21856 10.7969 4.21856 10.7969 4.21856C10.7969 4.21857 10.7969 4.21857 10.7969 4.21857C10.7969 4.21858 10.7969 4.21858 10.7969 4.21858C10.7969 4.21859 10.7969 4.21859 10.7969 4.21859C10.7969 4.2186 10.7969 4.2186 10.7969 4.2186C10.7969 4.21861 10.7969 4.21861 10.7969 4.21861C10.7969 4.21862 10.7969 4.21862 10.7969 4.21862C10.7969 4.21863 10.7969 4.21863 10.7969 4.21863C10.7969 4.21864 10.7969 4.21864 10.7969 4.21864C10.7969 4.21865 10.7969 4.21865 10.7969 4.21865C10.7969 4.21866 10.7969 4.21866 10.7969 4.21866C10.7969 4.21867 10.7969 4.21867 10.7969 4.21867C10.7969 4.21868 10.7969 4.21868 10.7969 4.21868C10.7969 4.21869 10.7969 4.21869 10.7969 4.21869C10.7969 4.2187 10.7969 4.2187 10.7969 4.2187C10.7969 4.21871 10.7969 4.21871 10.7969 4.21871C10.7969 4.21872 10.7969 4.21872 10.7969 4.21872C10.7969 4.21873 10.7969 4.21873 10.7969 4.21873C10.7969 4.21874 10.7969 4.21874 10.7969 4.21874C10.7969 4.21875 10.7969 4.21875 10.7969 4.21875C10.7969 4.21876 10.7969 4.21876 10.7969 4.21876C10.7969 4.21877 10.7969 4.21877 10.7969 4.21877C10.7969 4.21878 10.7969 4.21878 10.7969 4.21878C10.7969 4.21879 10.7969 4.21879 10.7969 4.21879C10.7969 4.2188 10.7969 4.2188 10.7969 4.2188C10.7969 4.21881 10.7969 4.21881 10.7969 4.21881C10.7969 4.21882 10.7969 4.21882 10.7969 4.21882C10.7969 4.21883 10.7969 4.21883 10.7969 4.21883C10.7969 4.21884 10.7969 4.21884 10.7969 4.21884C10.7969 4.21885 10.7969 4.21885 10.7969 4.21885C10.7969 4.21886 10.7969 4.21886 10.7969 4.21886C10.7969 4.21887 10.7969 4.21887 10.7969 4.21887C10.7969 4.21888 10.7969 4.21888 10.7969 4.21888C10.7969 4.21889 10.7969 4.21889 10.7969 4.21889C10.7969 4.2189 10.7969 4.2189 10.7969 4.2189C10.7969 4.21891 10.7969 4.21891 10.7969 4.21891C10.7969 4.21892 10.7969 4.21892 10.7969 4.21892C10.7969 4.21893 10.7969 4.21893 10.7969 4.21893C10.7969 4.21894 10.7969 4.21894 10.7969 4.21894C10.7969 4.21895 10.7969 4.21895 10.7969 4.21895C10.7969 4.21896 10.7969 4.21896 10.7969 4.21896C10.7969 4.21897 10.7969 4.21897 10.7969 4.21898C10.7969 4.21898 10.7969 4.21898 10.7969 4.21899C10.7969 4.21899 10.7969 4.21899 10.7969 4.219C10.7969 4.219 10.7969 4.219 10.7969 4.21901C10.7969 4.21901 10.7969 4.21901 10.7969 4.21902C10.7969 4.21902 10.7969 4.21902 10.7969 4.21903C10.7969 4.21903 10.7969 4.21903 10.7969 4.21904C10.7969 4.21904 10.7969 4.21904 10.7969 4.21905C10.7969 4.21905 10.7969 4.21905 10.7969 4.21906C10.7969 4.21906 10.7969 4.21906 10.7969 4.21907C10.7969 4.21907 10.7969 4.21907 10.7969 4.21908C10.7969 4.21908 10.7969 4.21908 10.7969 4.21909C10.7969 4.21909 10.7969 4.21909 10.7969 4.2191C10.7969 4.2191 10.7969 4.2191 10.7969 4.21911C10.7969 4.21911 10.7969 4.21911 10.7969 4.21912C10.7969 4.21912 10.7969 4.21912 10.7969 4.21913C10.7969 4.21913 10.7969 4.21913 10.7969 4.21914C10.7969 4.21914 10.7969 4.21914 10.7969 4.21915C10.7969 4.21915 10.7969 4.21915 10.7969 4.21916C10.7969 4.21916 10.7969 4.21916 10.7969 4.21917C10.7969 4.21917 10.7969 4.21917 10.7969 4.21918C10.7969 4.21918 10.7969 4.21918 10.7969 4.21919C10.7969 4.21919 10.7969 4.21919 10.7969 4.2192C10.7969 4.2192 10.7969 4.2192 10.7969 4.21921C10.7969 4.21921 10.7969 4.21921 10.7969 4.21922C10.7969 4.21922 10.7969 4.21922 10.7969 4.21923C10.7969 4.21923 10.7969 4.21923 10.7969 4.21924C10.7969 4.21924 10.7969 4.21924 10.7969 4.21925C10.7969 4.21925 10.7969 4.21925 10.7969 4.21926C10.7969 4.21926 10.7969 4.21926 10.7969 4.21927C10.7969 4.21927 10.7969 4.21927 10.7969 4.21928C10.7969 4.21928 10.7969 4.21928 10.7969 4.21929C10.7969 4.21929 10.7969 4.21929 10.7969 4.2193C10.7969 4.2193 10.7969 4.2193 10.7969 4.21931C10.7969 4.21931 10.7969 4.21931 10.7969 4.21932C10.7969 4.21932 10.7969 4.21932 10.7969 4.21933C10.7969 4.21933 10.7969 4.21933 10.7969 4.21934C10.7969 4.21934 10.7969 4.21934 10.7969 4.21935C10.7969 4.21935 10.7969 4.21935 10.7969 4.21936C10.7969 4.21936 10.7969 4.21937 10.7969 4.21937C10.7969 4.21937 10.7969 4.21938 10.7969 4.21938C10.7969 4.21938 10.7969 4.21939 10.7969 4.21939C10.7969 4.21939 10.7969 4.2194 10.7969 4.2194C10.7969 4.2194 10.7969 4.21941 10.7969 4.21941C10.7969 4.21941 10.7969 4.21942 10.7969 4.21942C10.7969 4.21942 10.7969 4.21943 10.7969 4.21943C10.7969 4.21943 10.7969 4.21944 10.7969 4.21944C10.7969 4.21944 10.7969 4.21945 10.7969 4.21945C10.7969 4.21945 10.7969 4.21946 10.7969 4.21946C10.7969 4.21946 10.7969 4.21947 10.7969 4.21947C10.7969 4.21947 10.7969 4.21948 10.7969 4.21948C10.7969 4.21948 10.7969 4.21949 10.7969 4.21949C10.7969 4.21949 10.7969 4.2195 10.7969 4.2195C10.7969 4.2195 10.7969 4.21951 10.7969 4.21951C10.7969 4.21951 10.7969 4.21952 10.7969 4.21952C10.7969 4.21952 10.7969 4.21953 10.7969 4.21953C10.7969 4.21953 10.7969 4.21954 10.7969 4.21954C10.7969 4.21954 10.7969 4.21955 10.7969 4.21955C10.7969 4.21955 10.7969 4.21956 10.7969 4.21956C10.7969 4.21956 10.7969 4.21957 10.7969 4.21957C10.7969 4.21957 10.7969 4.21958 10.7969 4.21958C10.7969 4.21958 10.7969 4.21959 10.7969 4.21959C10.7969 4.21959 10.7969 4.2196 10.7969 4.2196C10.7969 4.2196 10.7969 4.21961 10.7969 4.21961C10.7969 4.21961 10.7969 4.21962 10.7969 4.21962C10.7969 4.21962 10.7969 4.21963 10.7969 4.21963C10.7969 4.21964 10.7969 4.21964 10.7969 4.21964C10.7969 4.21965 10.7969 4.21965 10.7969 4.21965C10.7969 4.21966 10.7969 4.21966 10.7969 4.21966C10.7969 4.21967 10.7969 4.21967 10.7969 4.21967C10.7969 4.21968 10.7969 4.21968 10.7969 4.21968C10.7969 4.21969 10.7969 4.21969 10.7969 4.21969C10.7969 4.2197 10.7969 4.2197 10.7969 4.2197C10.7969 4.21971 10.7969 4.21971 10.7969 4.21971C10.7969 4.21972 10.7969 4.21972 10.7969 4.21972C10.7969 4.21973 10.7969 4.21973 10.7969 4.21973C10.7969 4.21974 10.7969 4.21974 10.7969 4.21974C10.7969 4.21975 10.7969 4.21975 10.7969 4.21975C10.7969 4.21976 10.7969 4.21976 10.7969 4.21976C10.7969 4.21977 10.7969 4.21977 10.7969 4.21977C10.7969 4.21978 10.7969 4.21978 10.7969 4.21978C10.7969 4.21979 10.7969 4.21979 10.7969 4.21979C10.7969 4.2198 10.7969 4.2198 10.7969 4.2198C10.7969 4.21981 10.7969 4.21981 10.7969 4.21981C10.7969 4.21982 10.7969 4.21982 10.7969 4.21983C10.7969 4.21983 10.7969 4.21983 10.7969 4.21984C10.7969 4.21984 10.7969 4.21984 10.7969 4.21985C10.7969 4.21985 10.7969 4.21985 10.7969 4.21986C10.7969 4.21986 10.7969 4.21986 10.7969 4.21987C10.7969 4.21987 10.7969 4.21987 10.7969 4.21988C10.7969 4.21988 10.7969 4.21988 10.7969 4.21989C10.7969 4.21989 10.7969 4.21989 10.7969 4.2199C10.7969 4.2199 10.7969 4.2199 10.7969 4.21991C10.7969 4.21991 10.7969 4.21991 10.7969 4.21992C10.7969 4.21992 10.7969 4.21992 10.7969 4.21993C10.7969 4.21993 10.7969 4.21993 10.7969 4.21994C10.7969 4.21994 10.7969 4.21994 10.7969 4.21995C10.7969 4.21995 10.7969 4.21995 10.7969 4.21996C10.7969 4.21996 10.7969 4.21996 10.7969 4.21997C10.7969 4.21997 10.7969 4.21997 10.7969 4.21998C10.7969 4.21998 10.7969 4.21999 10.7969 4.21999C10.7969 4.21999 10.7969 4.22 10.7969 4.22C10.7969 4.22 10.7969 4.22001 10.7969 4.22001C10.7969 4.22001 10.7969 4.22002 10.7969 4.22002C10.7969 4.22002 10.7969 4.22003 10.7969 4.22003C10.7969 4.22003 10.7969 4.22004 10.7969 4.22004C10.7969 4.22004 10.7969 4.22005 10.7969 4.22005C10.7969 4.22005 10.7969 4.22006 10.7969 4.22006C10.7969 4.22006 10.7969 4.22007 10.7969 4.22007C10.7969 4.22007 10.7969 4.22008 10.7969 4.22008C10.7969 4.22008 10.7969 4.22009 10.7969 4.22009C10.7969 4.22009 10.7969 4.2201 10.7969 4.2201C10.7969 4.2201 10.7969 4.22011 10.7969 4.22011C10.7969 4.22012 10.7969 4.22012 10.7969 4.22012C10.7969 4.22013 10.7969 4.22013 10.7969 4.22013C10.7969 4.22014 10.7969 4.22014 10.7969 4.22014C10.7969 4.22015 10.7969 4.22015 10.7969 4.22015C10.7969 4.22016 10.7969 4.22016 10.7969 4.22016C10.7969 4.22017 10.7969 4.22017 10.7969 4.22017C10.7969 4.22018 10.7969 4.22018 10.7969 4.22018C10.7969 4.22019 10.7969 4.22019 10.7969 4.22019C10.7969 4.2202 10.7969 4.2202 10.7969 4.2202C10.7969 4.22021 10.7969 4.22021 10.7969 4.22021C10.7969 4.22022 10.7969 4.22022 10.7969 4.22023C10.7969 4.22023 10.7969 4.22023 10.7969 4.22024C10.7969 4.22024 10.7969 4.22024 10.7969 4.22025C10.7969 4.22025 10.7969 4.22025 10.7969 4.22026C10.7969 4.22026 10.7969 4.22026 10.7969 4.22027C10.7969 4.22027 10.7969 4.22027 10.7969 4.22028C10.7969 4.22028 10.7969 4.22028 10.7969 4.22029C10.7969 4.22029 10.7969 4.22029 10.7969 4.2203C10.7969 4.2203 10.7969 4.2203 10.7969 4.22031C10.7969 4.22031 10.7969 4.22031 10.7969 4.22032C10.7969 4.22032 10.7969 4.22032 10.7969 4.22033C10.7969 4.22033 10.7969 4.22034 10.7969 4.22034C10.7969 4.22034 10.7969 4.22035 10.7969 4.22035C10.7969 4.22035 10.7969 4.22036 10.7969 4.22036C10.7969 4.22036 10.7969 4.22037 10.7969 4.22037C10.7969 4.22037 10.7969 4.22038 10.7969 4.22038C10.7969 4.22038 10.7969 4.22039 10.7969 4.22039C10.7969 4.22039 10.7969 4.2204 10.7969 4.2204C10.7969 4.2204 10.7969 4.22041 10.7969 4.22041C10.7969 4.22041 10.7969 4.22042 10.7969 4.22042C10.7969 4.22043 10.7969 4.22043 10.7969 4.22043C10.7969 4.22044 10.7969 4.22044 10.7969 4.22044C10.7969 4.22045 10.7969 4.22045 10.7969 4.22045C10.7969 4.22046 10.7969 4.22046 10.7969 4.22046C10.7969 4.22047 10.7969 4.22047 10.7969 4.22047C10.7969 4.22048 10.7969 4.22048 10.7969 4.22048C10.7969 4.22049 10.7969 4.22049 10.7969 4.22049C10.7969 4.2205 10.7969 4.2205 10.7969 4.22051C10.7969 4.22051 10.7969 4.22051 10.7969 4.22052C10.7969 4.22052 10.7969 4.22052 10.7969 4.22053C10.7969 4.22053 10.7969 4.22053 10.7969 4.22054C10.7969 4.22054 10.7969 4.22054 10.7969 4.22055C10.7969 4.22055 10.7969 4.22055 10.7969 4.22056C10.7969 4.22056 10.7969 4.22056 10.7969 4.22057C10.7969 4.22057 10.7969 4.22057 10.7969 4.22058C10.7969 4.22058 10.7969 4.22059 10.7969 4.22059C10.7969 4.22059 10.7969 4.2206 10.7969 4.2206C10.7969 4.2206 10.7969 4.22061 10.7969 4.22061C10.7969 4.22061 10.7969 4.22062 10.7969 4.22062C10.7969 4.22062 10.7969 4.22063 10.7969 4.22063C10.7969 4.22063 10.7969 4.22064 10.7969 4.22064C10.7969 4.22064 10.7969 4.22065 10.7969 4.22065C10.7969 4.22066 10.7969 4.22066 10.7969 4.22066C10.7969 4.22067 10.7969 4.22067 10.7969 4.22067C10.7969 4.22068 10.7969 4.22068 10.7969 4.22068C10.7969 4.22069 10.7969 4.22069 10.7969 4.22069C10.7969 4.2207 10.7969 4.2207 10.7969 4.2207C10.7969 4.22071 10.7969 4.22071 10.7969 4.22071C10.7969 4.22072 10.7969 4.22072 10.7969 4.22073C10.7969 4.22073 10.7969 4.22073 10.7969 4.22074C10.7969 4.22074 10.7969 4.22074 10.7969 4.22075C10.7969 4.22075 10.7969 4.22075 10.7969 4.22076C10.7969 4.22076 10.7969 4.22076 10.7969 4.22077C10.7969 4.22077 10.7969 4.22077 10.7969 4.22078C10.7969 4.22078 10.7969 4.22078 10.7969 4.22079C10.7969 4.22079 10.7969 4.2208 10.7969 4.2208C10.7969 4.2208 10.7969 4.22081 10.7969 4.22081C10.7969 4.22081 10.7969 4.22082 10.7969 4.22082C10.7969 4.22082 10.7969 4.22083 10.7969 4.22083C10.7969 4.22083 10.7969 4.22084 10.7969 4.22084C10.7969 4.22084 10.7969 4.22085 10.7969 4.22085C10.7969 4.22086 10.7969 4.22086 10.7969 4.22086C10.7969 4.22087 10.7969 4.22087 10.7969 4.22087C10.7969 4.22088 10.7969 4.22088 10.7969 4.22088C10.7969 4.22089 10.7969 4.22089 10.7969 4.22089C10.7969 4.2209 10.7969 4.2209 10.7969 4.22091C10.7969 4.22091 10.7969 4.22091 10.7969 4.22092C10.7969 4.22092 10.7969 4.22092 10.7969 4.22093C10.7969 4.22093 10.7969 4.22093 10.7969 4.22094C10.7969 4.22094 10.7969 4.22094 10.7969 4.22095C10.7969 4.22095 10.7969 4.22095 10.7969 4.22096C10.7969 4.22096 10.7969 4.22097 10.7969 4.22097C10.7969 4.22097 10.7969 4.22098 10.7969 4.22098C10.7969 4.22098 10.7969 4.22099 10.7969 4.22099C10.7969 4.22099 10.7969 4.221 10.7969 4.221C10.7969 4.221 10.7969 4.22101 10.7969 4.22101C10.7969 4.22101 10.7969 4.22102 10.7969 4.22102C10.7969 4.22103 10.7969 4.22103 10.7969 4.22103C10.7969 4.22104 10.7969 4.22104 10.7969 4.22104C10.7969 4.22105 10.7969 4.22105 10.7969 4.22105C10.7969 4.22106 10.7969 4.22106 10.7969 4.22107C10.7969 4.22107 10.7969 4.22107 10.7969 4.22108C10.7969 4.22108 10.7969 4.22108 10.7969 4.22109C10.7969 4.22109 10.7969 4.22109 10.7969 4.2211C10.7969 4.2211 10.7969 4.2211 10.7969 4.22111C10.7969 4.22111 10.7969 4.22112 10.7969 4.22112C10.7969 4.22112 10.7969 4.22113 10.7969 4.22113C10.7969 4.22113 10.7969 4.22114 10.7969 4.22114C10.7969 4.22114 10.7969 4.22115 10.7969 4.22115C10.7969 4.22115 10.7969 4.22116 10.7969 4.22116C10.7969 4.22117 10.7969 4.22117 10.7969 4.22117C10.7969 4.22118 10.7969 4.22118 10.7969 4.22118C10.7969 4.22119 10.7969 4.22119 10.7969 4.22119C10.7969 4.2212 10.7969 4.2212 10.7969 4.2212C10.7969 4.22121 10.7969 4.22121 10.7969 4.22122C10.7969 4.22122 10.7969 4.22122 10.7969 4.22123C10.7969 4.22123 10.7969 4.22123 10.7969 4.22124C10.7969 4.22124 10.7969 4.22124 10.7969 4.22125C10.7969 4.22125 10.7969 4.22126 10.7969 4.22126C10.7969 4.22126 10.7969 4.22127 10.7969 4.22127C10.7969 4.22127 10.7969 4.22128 10.7969 4.22128C10.7969 4.22128 10.7969 4.22129 10.7969 4.22129C10.7969 4.22129 10.7969 4.2213 10.7969 4.2213C10.7969 4.22131 10.7969 4.22131 10.7969 4.22131C10.7969 4.22132 10.7969 4.22132 10.7969 4.22132C10.7969 4.22133 10.7969 4.22133 10.7969 4.22133C10.7969 4.22134 10.7969 4.22134 10.7969 4.22135C10.7969 4.22135 10.7969 4.22135 10.7969 4.22136C10.7969 4.22136 10.7969 4.22136 10.7969 4.22137C10.7969 4.22137 10.7969 4.22137 10.7969 4.22138C10.7969 4.22138 10.7969 4.22139 10.7969 4.22139C10.7969 4.22139 10.7969 4.2214 10.7969 4.2214C10.7969 4.2214 10.7969 4.22141 10.7969 4.22141C10.7969 4.22141 10.7969 4.22142 10.7969 4.22142C10.7969 4.22143 10.7969 4.22143 10.7969 4.22143C10.7969 4.22144 10.7969 4.22144 10.7969 4.22144C10.7969 4.22145 10.7969 4.22145 10.7969 4.22145C10.7969 4.22146 10.7969 4.22146 10.7969 4.22147C10.7969 4.22147 10.7969 4.22147 10.7969 4.22148C10.7969 4.22148 10.7969 4.22148 10.7969 4.22149C10.7969 4.22149 10.7969 4.22149 10.7969 4.2215C10.7969 4.2215 10.7969 4.22151 10.7969 4.22151C10.7969 4.22151 10.7969 4.22152 10.7969 4.22152C10.7969 4.22152 10.7969 4.22153 10.7969 4.22153H11.1969ZM11.1969 4.21622V1.40418H10.7969V4.21622H11.1969ZM11.1951 1.4306C11.1981 1.40838 11.2 1.38297 11.2 1.35698H10.8C10.8 1.36412 10.7994 1.37184 10.7986 1.37775L11.1951 1.4306ZM11.2 1.35698C11.2 1.04933 10.9508 0.8 10.6431 0.8V1.2C10.7298 1.2 10.8 1.27013 10.8 1.35698H11.2ZM10.6431 0.8C10.6416 0.8 10.6285 0.799852 10.6144 0.801134L10.6506 1.19949C10.6461 1.1999 10.643 1.19997 10.6422 1.19999C10.6414 1.20001 10.6411 1.2 10.6431 1.2V0.8ZM10.6325 1.20031H10.6331V0.800313H10.6325V1.20031ZM1.35178 7.22527C1.04814 7.23014 0.803125 7.4771 0.803125 7.78222H1.20312C1.20312 7.6966 1.27185 7.6266 1.35819 7.62522L1.35178 7.22527ZM0.803125 7.78222C0.803125 7.78222 0.803125 7.78223 0.803125 7.78223C0.803125 7.78223 0.803125 7.78224 0.803125 7.78224C0.803125 7.78225 0.803125 7.78225 0.803125 7.78225C0.803125 7.78226 0.803125 7.78226 0.803125 7.78226C0.803125 7.78227 0.803125 7.78227 0.803125 7.78227C0.803125 7.78228 0.803125 7.78228 0.803125 7.78229C0.803125 7.78229 0.803125 7.78229 0.803125 7.7823C0.803125 7.7823 0.803125 7.7823 0.803125 7.78231C0.803125 7.78231 0.803125 7.78231 0.803125 7.78232C0.803125 7.78232 0.803125 7.78233 0.803125 7.78233C0.803125 7.78233 0.803125 7.78234 0.803125 7.78234C0.803125 7.78234 0.803125 7.78235 0.803125 7.78235C0.803125 7.78235 0.803125 7.78236 0.803125 7.78236C0.803125 7.78237 0.803125 7.78237 0.803125 7.78237C0.803125 7.78238 0.803125 7.78238 0.803125 7.78238C0.803125 7.78239 0.803125 7.78239 0.803125 7.78239C0.803125 7.7824 0.803125 7.7824 0.803125 7.78241C0.803125 7.78241 0.803125 7.78241 0.803125 7.78242C0.803125 7.78242 0.803125 7.78242 0.803125 7.78243C0.803125 7.78243 0.803125 7.78243 0.803125 7.78244C0.803125 7.78244 0.803125 7.78245 0.803125 7.78245C0.803125 7.78245 0.803125 7.78246 0.803125 7.78246C0.803125 7.78246 0.803125 7.78247 0.803125 7.78247C0.803125 7.78247 0.803125 7.78248 0.803125 7.78248C0.803125 7.78249 0.803125 7.78249 0.803125 7.78249C0.803125 7.7825 0.803125 7.7825 0.803125 7.7825C0.803125 7.78251 0.803125 7.78251 0.803125 7.78251C0.803125 7.78252 0.803125 7.78252 0.803125 7.78252C0.803125 7.78253 0.803125 7.78253 0.803125 7.78254C0.803125 7.78254 0.803125 7.78254 0.803125 7.78255C0.803125 7.78255 0.803125 7.78255 0.803125 7.78256C0.803125 7.78256 0.803125 7.78256 0.803125 7.78257C0.803125 7.78257 0.803125 7.78258 0.803125 7.78258C0.803125 7.78258 0.803125 7.78259 0.803125 7.78259C0.803125 7.78259 0.803125 7.7826 0.803125 7.7826C0.803125 7.7826 0.803125 7.78261 0.803125 7.78261C0.803125 7.78261 0.803125 7.78262 0.803125 7.78262C0.803125 7.78263 0.803125 7.78263 0.803125 7.78263C0.803125 7.78264 0.803125 7.78264 0.803125 7.78264C0.803125 7.78265 0.803125 7.78265 0.803125 7.78265C0.803125 7.78266 0.803125 7.78266 0.803125 7.78266C0.803125 7.78267 0.803125 7.78267 0.803125 7.78268C0.803125 7.78268 0.803125 7.78268 0.803125 7.78269C0.803125 7.78269 0.803125 7.78269 0.803125 7.7827C0.803125 7.7827 0.803125 7.7827 0.803125 7.78271C0.803125 7.78271 0.803125 7.78271 0.803125 7.78272C0.803125 7.78272 0.803125 7.78273 0.803125 7.78273C0.803125 7.78273 0.803125 7.78274 0.803125 7.78274C0.803125 7.78274 0.803125 7.78275 0.803125 7.78275C0.803125 7.78275 0.803125 7.78276 0.803125 7.78276C0.803125 7.78276 0.803125 7.78277 0.803125 7.78277C0.803125 7.78277 0.803125 7.78278 0.803125 7.78278C0.803125 7.78279 0.803125 7.78279 0.803125 7.78279C0.803125 7.7828 0.803125 7.7828 0.803125 7.7828C0.803125 7.78281 0.803125 7.78281 0.803125 7.78281C0.803125 7.78282 0.803125 7.78282 0.803125 7.78282C0.803125 7.78283 0.803125 7.78283 0.803125 7.78284C0.803125 7.78284 0.803125 7.78284 0.803125 7.78285C0.803125 7.78285 0.803125 7.78285 0.803125 7.78286C0.803125 7.78286 0.803125 7.78286 0.803125 7.78287C0.803125 7.78287 0.803125 7.78287 0.803125 7.78288C0.803125 7.78288 0.803125 7.78288 0.803125 7.78289C0.803125 7.78289 0.803125 7.7829 0.803125 7.7829C0.803125 7.7829 0.803125 7.78291 0.803125 7.78291C0.803125 7.78291 0.803125 7.78292 0.803125 7.78292C0.803125 7.78292 0.803125 7.78293 0.803125 7.78293C0.803125 7.78293 0.803125 7.78294 0.803125 7.78294C0.803125 7.78294 0.803125 7.78295 0.803125 7.78295C0.803125 7.78296 0.803125 7.78296 0.803125 7.78296C0.803125 7.78297 0.803125 7.78297 0.803125 7.78297C0.803125 7.78298 0.803125 7.78298 0.803125 7.78298C0.803125 7.78299 0.803125 7.78299 0.803125 7.78299C0.803125 7.783 0.803125 7.783 0.803125 7.783C0.803125 7.78301 0.803125 7.78301 0.803125 7.78302C0.803125 7.78302 0.803125 7.78302 0.803125 7.78303C0.803125 7.78303 0.803125 7.78303 0.803125 7.78304C0.803125 7.78304 0.803125 7.78304 0.803125 7.78305C0.803125 7.78305 0.803125 7.78305 0.803125 7.78306C0.803125 7.78306 0.803125 7.78306 0.803125 7.78307C0.803125 7.78307 0.803125 7.78307 0.803125 7.78308C0.803125 7.78308 0.803125 7.78309 0.803125 7.78309C0.803125 7.78309 0.803125 7.7831 0.803125 7.7831C0.803125 7.7831 0.803125 7.78311 0.803125 7.78311C0.803125 7.78311 0.803125 7.78312 0.803125 7.78312C0.803125 7.78312 0.803125 7.78313 0.803125 7.78313C0.803125 7.78313 0.803125 7.78314 0.803125 7.78314C0.803125 7.78314 0.803125 7.78315 0.803125 7.78315C0.803125 7.78315 0.803125 7.78316 0.803125 7.78316C0.803125 7.78317 0.803125 7.78317 0.803125 7.78317C0.803125 7.78318 0.803125 7.78318 0.803125 7.78318C0.803125 7.78319 0.803125 7.78319 0.803125 7.78319C0.803125 7.7832 0.803125 7.7832 0.803125 7.7832C0.803125 7.78321 0.803125 7.78321 0.803125 7.78321C0.803125 7.78322 0.803125 7.78322 0.803125 7.78323C0.803125 7.78323 0.803125 7.78323 0.803125 7.78324C0.803125 7.78324 0.803125 7.78324 0.803125 7.78325C0.803125 7.78325 0.803125 7.78325 0.803125 7.78326C0.803125 7.78326 0.803125 7.78326 0.803125 7.78327C0.803125 7.78327 0.803125 7.78327 0.803125 7.78328C0.803125 7.78328 0.803125 7.78328 0.803125 7.78329C0.803125 7.78329 0.803125 7.78329 0.803125 7.7833C0.803125 7.7833 0.803125 7.7833 0.803125 7.78331C0.803125 7.78331 0.803125 7.78332 0.803125 7.78332C0.803125 7.78332 0.803125 7.78333 0.803125 7.78333C0.803125 7.78333 0.803125 7.78334 0.803125 7.78334C0.803125 7.78334 0.803125 7.78335 0.803125 7.78335C0.803125 7.78335 0.803125 7.78336 0.803125 7.78336C0.803125 7.78336 0.803125 7.78337 0.803125 7.78337C0.803125 7.78337 0.803125 7.78338 0.803125 7.78338C0.803125 7.78338 0.803125 7.78339 0.803125 7.78339C0.803125 7.78339 0.803125 7.7834 0.803125 7.7834C0.803125 7.78341 0.803125 7.78341 0.803125 7.78341C0.803125 7.78342 0.803125 7.78342 0.803125 7.78342C0.803125 7.78343 0.803125 7.78343 0.803125 7.78343C0.803125 7.78344 0.803125 7.78344 0.803125 7.78344C0.803125 7.78345 0.803125 7.78345 0.803125 7.78345C0.803125 7.78346 0.803125 7.78346 0.803125 7.78346C0.803125 7.78347 0.803125 7.78347 0.803125 7.78347C0.803125 7.78348 0.803125 7.78348 0.803125 7.78348C0.803125 7.78349 0.803125 7.78349 0.803125 7.78349C0.803125 7.7835 0.803125 7.7835 0.803125 7.7835C0.803125 7.78351 0.803125 7.78351 0.803125 7.78352C0.803125 7.78352 0.803125 7.78352 0.803125 7.78353C0.803125 7.78353 0.803125 7.78353 0.803125 7.78354C0.803125 7.78354 0.803125 7.78354 0.803125 7.78355C0.803125 7.78355 0.803125 7.78355 0.803125 7.78356C0.803125 7.78356 0.803125 7.78356 0.803125 7.78357C0.803125 7.78357 0.803125 7.78357 0.803125 7.78358C0.803125 7.78358 0.803125 7.78358 0.803125 7.78359C0.803125 7.78359 0.803125 7.78359 0.803125 7.7836C0.803125 7.7836 0.803125 7.78361 0.803125 7.78361C0.803125 7.78361 0.803125 7.78362 0.803125 7.78362C0.803125 7.78362 0.803125 7.78363 0.803125 7.78363C0.803125 7.78363 0.803125 7.78364 0.803125 7.78364C0.803125 7.78364 0.803125 7.78365 0.803125 7.78365C0.803125 7.78365 0.803125 7.78366 0.803125 7.78366C0.803125 7.78366 0.803125 7.78367 0.803125 7.78367C0.803125 7.78367 0.803125 7.78368 0.803125 7.78368C0.803125 7.78368 0.803125 7.78369 0.803125 7.78369C0.803125 7.78369 0.803125 7.7837 0.803125 7.7837C0.803125 7.7837 0.803125 7.78371 0.803125 7.78371C0.803125 7.78371 0.803125 7.78372 0.803125 7.78372C0.803125 7.78372 0.803125 7.78373 0.803125 7.78373C0.803125 7.78373 0.803125 7.78374 0.803125 7.78374C0.803125 7.78375 0.803125 7.78375 0.803125 7.78375C0.803125 7.78376 0.803125 7.78376 0.803125 7.78376C0.803125 7.78377 0.803125 7.78377 0.803125 7.78377C0.803125 7.78378 0.803125 7.78378 0.803125 7.78378C0.803125 7.78379 0.803125 7.78379 0.803125 7.78379C0.803125 7.7838 0.803125 7.7838 0.803125 7.7838C0.803125 7.78381 0.803125 7.78381 0.803125 7.78381C0.803125 7.78382 0.803125 7.78382 0.803125 7.78382C0.803125 7.78383 0.803125 7.78383 0.803125 7.78383C0.803125 7.78384 0.803125 7.78384 0.803125 7.78384C0.803125 7.78385 0.803125 7.78385 0.803125 7.78385C0.803125 7.78386 0.803125 7.78386 0.803125 7.78386C0.803125 7.78387 0.803125 7.78387 0.803125 7.78387C0.803125 7.78388 0.803125 7.78388 0.803125 7.78389C0.803125 7.78389 0.803125 7.78389 0.803125 7.7839C0.803125 7.7839 0.803125 7.7839 0.803125 7.78391C0.803125 7.78391 0.803125 7.78391 0.803125 7.78392C0.803125 7.78392 0.803125 7.78392 0.803125 7.78393C0.803125 7.78393 0.803125 7.78393 0.803125 7.78394C0.803125 7.78394 0.803125 7.78394 0.803125 7.78395C0.803125 7.78395 0.803125 7.78395 0.803125 7.78396C0.803125 7.78396 0.803125 7.78396 0.803125 7.78397C0.803125 7.78397 0.803125 7.78397 0.803125 7.78398C0.803125 7.78398 0.803125 7.78398 0.803125 7.78399C0.803125 7.78399 0.803125 7.78399 0.803125 7.784C0.803125 7.784 0.803125 7.784 0.803125 7.78401C0.803125 7.78401 0.803125 7.78401 0.803125 7.78402C0.803125 7.78402 0.803125 7.78402 0.803125 7.78403C0.803125 7.78403 0.803125 7.78403 0.803125 7.78404C0.803125 7.78404 0.803125 7.78404 0.803125 7.78405C0.803125 7.78405 0.803125 7.78405 0.803125 7.78406C0.803125 7.78406 0.803125 7.78406 0.803125 7.78407C0.803125 7.78407 0.803125 7.78408 0.803125 7.78408C0.803125 7.78408 0.803125 7.78409 0.803125 7.78409C0.803125 7.78409 0.803125 7.7841 0.803125 7.7841C0.803125 7.7841 0.803125 7.78411 0.803125 7.78411C0.803125 7.78411 0.803125 7.78412 0.803125 7.78412C0.803125 7.78412 0.803125 7.78413 0.803125 7.78413C0.803125 7.78413 0.803125 7.78414 0.803125 7.78414C0.803125 7.78414 0.803125 7.78415 0.803125 7.78415C0.803125 7.78415 0.803125 7.78416 0.803125 7.78416C0.803125 7.78416 0.803125 7.78417 0.803125 7.78417C0.803125 7.78417 0.803125 7.78418 0.803125 7.78418C0.803125 7.78418 0.803125 7.78419 0.803125 7.78419C0.803125 7.78419 0.803125 7.7842 0.803125 7.7842C0.803125 7.7842 0.803125 7.78421 0.803125 7.78421C0.803125 7.78421 0.803125 7.78422 0.803125 7.78422C0.803125 7.78422 0.803125 7.78423 0.803125 7.78423C0.803125 7.78423 0.803125 7.78424 0.803125 7.78424C0.803125 7.78424 0.803125 7.78425 0.803125 7.78425C0.803125 7.78425 0.803125 7.78426 0.803125 7.78426C0.803125 7.78426 0.803125 7.78427 0.803125 7.78427C0.803125 7.78427 0.803125 7.78428 0.803125 7.78428C0.803125 7.78428 0.803125 7.78429 0.803125 7.78429C0.803125 7.78429 0.803125 7.7843 0.803125 7.7843C0.803125 7.78431 0.803125 7.78431 0.803125 7.78431C0.803125 7.78432 0.803125 7.78432 0.803125 7.78432C0.803125 7.78433 0.803125 7.78433 0.803125 7.78433C0.803125 7.78434 0.803125 7.78434 0.803125 7.78434C0.803125 7.78435 0.803125 7.78435 0.803125 7.78435C0.803125 7.78436 0.803125 7.78436 0.803125 7.78436C0.803125 7.78437 0.803125 7.78437 0.803125 7.78437C0.803125 7.78438 0.803125 7.78438 0.803125 7.78438C0.803125 7.78439 0.803125 7.78439 0.803125 7.78439C0.803125 7.7844 0.803125 7.7844 0.803125 7.7844C0.803125 7.78441 0.803125 7.78441 0.803125 7.78441C0.803125 7.78442 0.803125 7.78442 0.803125 7.78442C0.803125 7.78443 0.803125 7.78443 0.803125 7.78443C0.803125 7.78444 0.803125 7.78444 0.803125 7.78444C0.803125 7.78445 0.803125 7.78445 0.803125 7.78445C0.803125 7.78446 0.803125 7.78446 0.803125 7.78446C0.803125 7.78447 0.803125 7.78447 0.803125 7.78447C0.803125 7.78448 0.803125 7.78448 0.803125 7.78448C0.803125 7.78449 0.803125 7.78449 0.803125 7.78449C0.803125 7.7845 0.803125 7.7845 0.803125 7.7845C0.803125 7.78451 0.803125 7.78451 0.803125 7.78451C0.803125 7.78452 0.803125 7.78452 0.803125 7.78452C0.803125 7.78453 0.803125 7.78453 0.803125 7.78453C0.803125 7.78454 0.803125 7.78454 0.803125 7.78454C0.803125 7.78455 0.803125 7.78455 0.803125 7.78455C0.803125 7.78456 0.803125 7.78456 0.803125 7.78456C0.803125 7.78457 0.803125 7.78457 0.803125 7.78457C0.803125 7.78458 0.803125 7.78458 0.803125 7.78458C0.803125 7.78459 0.803125 7.78459 0.803125 7.78459C0.803125 7.7846 0.803125 7.7846 0.803125 7.7846C0.803125 7.78461 0.803125 7.78461 0.803125 7.78461C0.803125 7.78462 0.803125 7.78462 0.803125 7.78462C0.803125 7.78463 0.803125 7.78463 0.803125 7.78463C0.803125 7.78464 0.803125 7.78464 0.803125 7.78465C0.803125 7.78465 0.803125 7.78465 0.803125 7.78466C0.803125 7.78466 0.803125 7.78466 0.803125 7.78467C0.803125 7.78467 0.803125 7.78467 0.803125 7.78468C0.803125 7.78468 0.803125 7.78468 0.803125 7.78469C0.803125 7.78469 0.803125 7.78469 0.803125 7.7847C0.803125 7.7847 0.803125 7.7847 0.803125 7.78471C0.803125 7.78471 0.803125 7.78471 0.803125 7.78472C0.803125 7.78472 0.803125 7.78472 0.803125 7.78473C0.803125 7.78473 0.803125 7.78473 0.803125 7.78474C0.803125 7.78474 0.803125 7.78474 0.803125 7.78475C0.803125 7.78475 0.803125 7.78475 0.803125 7.78476C0.803125 7.78476 0.803125 7.78476 0.803125 7.78477C0.803125 7.78477 0.803125 7.78477 0.803125 7.78478C0.803125 7.78478 0.803125 7.78478 0.803125 7.78479C0.803125 7.78479 0.803125 7.78479 0.803125 7.7848C0.803125 7.7848 0.803125 7.7848 0.803125 7.78481C0.803125 7.78481 0.803125 7.78481 0.803125 7.78482C0.803125 7.78482 0.803125 7.78482 0.803125 7.78483C0.803125 7.78483 0.803125 7.78483 0.803125 7.78484C0.803125 7.78484 0.803125 7.78484 0.803125 7.78485C0.803125 7.78485 0.803125 7.78485 0.803125 7.78486C0.803125 7.78486 0.803125 7.78486 0.803125 7.78487C0.803125 7.78487 0.803125 7.78487 0.803125 7.78488C0.803125 7.78488 0.803125 7.78488 0.803125 7.78489C0.803125 7.78489 0.803125 7.78489 0.803125 7.7849C0.803125 7.7849 0.803125 7.7849 0.803125 7.78491C0.803125 7.78491 0.803125 7.78491 0.803125 7.78492C0.803125 7.78492 0.803125 7.78492 0.803125 7.78493C0.803125 7.78493 0.803125 7.78493 0.803125 7.78494C0.803125 7.78494 0.803125 7.78494 0.803125 7.78495C0.803125 7.78495 0.803125 7.78495 0.803125 7.78496C0.803125 7.78496 0.803125 7.78496 0.803125 7.78497C0.803125 7.78497 0.803125 7.78497 0.803125 7.78498C0.803125 7.78498 0.803125 7.78498 0.803125 7.78499C0.803125 7.78499 0.803125 7.78499 0.803125 7.785C0.803125 7.785 0.803125 7.785 0.803125 7.78501C0.803125 7.78501 0.803125 7.78501 0.803125 7.78502C0.803125 7.78502 0.803125 7.78502 0.803125 7.78503C0.803125 7.78503 0.803125 7.78503 0.803125 7.78504C0.803125 7.78504 0.803125 7.78504 0.803125 7.78505C0.803125 7.78505 0.803125 7.78505 0.803125 7.78506C0.803125 7.78506 0.803125 7.78506 0.803125 7.78507C0.803125 7.78507 0.803125 7.78507 0.803125 7.78508C0.803125 7.78508 0.803125 7.78508 0.803125 7.78509C0.803125 7.78509 0.803125 7.78509 0.803125 7.7851C0.803125 7.7851 0.803125 7.78511 0.803125 7.78511C0.803125 7.78511 0.803125 7.78512 0.803125 7.78512C0.803125 7.78512 0.803125 7.78513 0.803125 7.78513C0.803125 7.78513 0.803125 7.78514 0.803125 7.78514C0.803125 7.78514 0.803125 7.78515 0.803125 7.78515C0.803125 7.78515 0.803125 7.78516 0.803125 7.78516C0.803125 7.78516 0.803125 7.78517 0.803125 7.78517C0.803125 7.78517 0.803125 7.78518 0.803125 7.78518C0.803125 7.78518 0.803125 7.78519 0.803125 7.78519C0.803125 7.78519 0.803125 7.7852 0.803125 7.7852C0.803125 7.7852 0.803125 7.78521 0.803125 7.78521C0.803125 7.78521 0.803125 7.78522 0.803125 7.78522C0.803125 7.78522 0.803125 7.78523 0.803125 7.78523C0.803125 7.78523 0.803125 7.78524 0.803125 7.78524C0.803125 7.78524 0.803125 7.78525 0.803125 7.78525C0.803125 7.78525 0.803125 7.78526 0.803125 7.78526C0.803125 7.78526 0.803125 7.78527 0.803125 7.78527C0.803125 7.78527 0.803125 7.78528 0.803125 7.78528C0.803125 7.78528 0.803125 7.78529 0.803125 7.78529C0.803125 7.78529 0.803125 7.7853 0.803125 7.7853C0.803125 7.7853 0.803125 7.78531 0.803125 7.78531C0.803125 7.78531 0.803125 7.78532 0.803125 7.78532C0.803125 7.78532 0.803125 7.78533 0.803125 7.78533C0.803125 7.78533 0.803125 7.78534 0.803125 7.78534C0.803125 7.78534 0.803125 7.78535 0.803125 7.78535C0.803125 7.78535 0.803125 7.78536 0.803125 7.78536C0.803125 7.78536 0.803125 7.78537 0.803125 7.78537C0.803125 7.78537 0.803125 7.78538 0.803125 7.78538C0.803125 7.78538 0.803125 7.78539 0.803125 7.78539C0.803125 7.78539 0.803125 7.7854 0.803125 7.7854C0.803125 7.7854 0.803125 7.78541 0.803125 7.78541C0.803125 7.78541 0.803125 7.78542 0.803125 7.78542C0.803125 7.78542 0.803125 7.78543 0.803125 7.78543C0.803125 7.78543 0.803125 7.78544 0.803125 7.78544C0.803125 7.78544 0.803125 7.78545 0.803125 7.78545C0.803125 7.78546 0.803125 7.78546 0.803125 7.78546C0.803125 7.78547 0.803125 7.78547 0.803125 7.78547C0.803125 7.78548 0.803125 7.78548 0.803125 7.78548C0.803125 7.78549 0.803125 7.78549 0.803125 7.78549C0.803125 7.7855 0.803125 7.7855 0.803125 7.7855C0.803125 7.78551 0.803125 7.78551 0.803125 7.78551C0.803125 7.78552 0.803125 7.78552 0.803125 7.78552C0.803125 7.78553 0.803125 7.78553 0.803125 7.78553C0.803125 7.78554 0.803125 7.78554 0.803125 7.78554C0.803125 7.78555 0.803125 7.78555 0.803125 7.78555C0.803125 7.78556 0.803125 7.78556 0.803125 7.78556C0.803125 7.78557 0.803125 7.78557 0.803125 7.78557C0.803125 7.78558 0.803125 7.78558 0.803125 7.78558C0.803125 7.78559 0.803125 7.78559 0.803125 7.78559C0.803125 7.7856 0.803125 7.7856 0.803125 7.7856C0.803125 7.78561 0.803125 7.78561 0.803125 7.78561C0.803125 7.78562 0.803125 7.78562 0.803125 7.78562C0.803125 7.78563 0.803125 7.78563 0.803125 7.78563C0.803125 7.78564 0.803125 7.78564 0.803125 7.78564C0.803125 7.78565 0.803125 7.78565 0.803125 7.78565C0.803125 7.78566 0.803125 7.78566 0.803125 7.78566C0.803125 7.78567 0.803125 7.78567 0.803125 7.78567C0.803125 7.78568 0.803125 7.78568 0.803125 7.78569C0.803125 7.78569 0.803125 7.78569 0.803125 7.7857C0.803125 7.7857 0.803125 7.7857 0.803125 7.78571C0.803125 7.78571 0.803125 7.78571 0.803125 7.78572C0.803125 7.78572 0.803125 7.78572 0.803125 7.78573C0.803125 7.78573 0.803125 7.78573 0.803125 7.78574C0.803125 7.78574 0.803125 7.78574 0.803125 7.78575C0.803125 7.78575 0.803125 7.78575 0.803125 7.78576C0.803125 7.78576 0.803125 7.78576 0.803125 7.78577C0.803125 7.78577 0.803125 7.78577 0.803125 7.78578C0.803125 7.78578 0.803125 7.78578 0.803125 7.78579C0.803125 7.78579 0.803125 7.78579 0.803125 7.7858C0.803125 7.7858 0.803125 7.7858 0.803125 7.78581C0.803125 7.78581 0.803125 7.78581 0.803125 7.78582C0.803125 7.78582 0.803125 7.78582 0.803125 7.78583C0.803125 7.78583 0.803125 7.78583 0.803125 7.78584C0.803125 7.78584 0.803125 7.78584 0.803125 7.78585C0.803125 7.78585 0.803125 7.78585 0.803125 7.78586C0.803125 7.78586 0.803125 7.78586 0.803125 7.78587C0.803125 7.78587 0.803125 7.78587 0.803125 7.78588C0.803125 7.78588 0.803125 7.78589 0.803125 7.78589C0.803125 7.78589 0.803125 7.7859 0.803125 7.7859C0.803125 7.7859 0.803125 7.78591 0.803125 7.78591C0.803125 7.78591 0.803125 7.78592 0.803125 7.78592C0.803125 7.78592 0.803125 7.78593 0.803125 7.78593C0.803125 7.78593 0.803125 7.78594 0.803125 7.78594C0.803125 7.78594 0.803125 7.78595 0.803125 7.78595C0.803125 7.78595 0.803125 7.78596 0.803125 7.78596C0.803125 7.78596 0.803125 7.78597 0.803125 7.78597C0.803125 7.78597 0.803125 7.78598 0.803125 7.78598C0.803125 7.78598 0.803125 7.78599 0.803125 7.78599C0.803125 7.78599 0.803125 7.786 0.803125 7.786C0.803125 7.786 0.803125 7.78601 0.803125 7.78601C0.803125 7.78602 0.803125 7.78602 0.803125 7.78602C0.803125 7.78603 0.803125 7.78603 0.803125 7.78603C0.803125 7.78604 0.803125 7.78604 0.803125 7.78604C0.803125 7.78605 0.803125 7.78605 0.803125 7.78605C0.803125 7.78606 0.803125 7.78606 0.803125 7.78606C0.803125 7.78607 0.803125 7.78607 0.803125 7.78607C0.803125 7.78608 0.803125 7.78608 0.803125 7.78608C0.803125 7.78609 0.803125 7.78609 0.803125 7.78609C0.803125 7.7861 0.803125 7.7861 0.803125 7.7861C0.803125 7.78611 0.803125 7.78611 0.803125 7.78611C0.803125 7.78612 0.803125 7.78612 0.803125 7.78612C0.803125 7.78613 0.803125 7.78613 0.803125 7.78613C0.803125 7.78614 0.803125 7.78614 0.803125 7.78614C0.803125 7.78615 0.803125 7.78615 0.803125 7.78616C0.803125 7.78616 0.803125 7.78616 0.803125 7.78617C0.803125 7.78617 0.803125 7.78617 0.803125 7.78618C0.803125 7.78618 0.803125 7.78618 0.803125 7.78619C0.803125 7.78619 0.803125 7.78619 0.803125 7.7862C0.803125 7.7862 0.803125 7.7862 0.803125 7.78621C0.803125 7.78621 0.803125 7.78621 0.803125 7.78622C0.803125 7.78622 0.803125 7.78622 0.803125 7.78623C0.803125 7.78623 0.803125 7.78623 0.803125 7.78624C0.803125 7.78624 0.803125 7.78624 0.803125 7.78625C0.803125 7.78625 0.803125 7.78625 0.803125 7.78626C0.803125 7.78626 0.803125 7.78627 0.803125 7.78627C0.803125 7.78627 0.803125 7.78628 0.803125 7.78628C0.803125 7.78628 0.803125 7.78629 0.803125 7.78629C0.803125 7.78629 0.803125 7.7863 0.803125 7.7863C0.803125 7.7863 0.803125 7.78631 0.803125 7.78631C0.803125 7.78631 0.803125 7.78632 0.803125 7.78632C0.803125 7.78632 0.803125 7.78633 0.803125 7.78633C0.803125 7.78633 0.803125 7.78634 0.803125 7.78634C0.803125 7.78634 0.803125 7.78635 0.803125 7.78635C0.803125 7.78636 0.803125 7.78636 0.803125 7.78636C0.803125 7.78637 0.803125 7.78637 0.803125 7.78637C0.803125 7.78638 0.803125 7.78638 0.803125 7.78638C0.803125 7.78639 0.803125 7.78639 0.803125 7.78639C0.803125 7.7864 0.803125 7.7864 0.803125 7.7864C0.803125 7.78641 0.803125 7.78641 0.803125 7.78641C0.803125 7.78642 0.803125 7.78642 0.803125 7.78642C0.803125 7.78643 0.803125 7.78643 0.803125 7.78643C0.803125 7.78644 0.803125 7.78644 0.803125 7.78645C0.803125 7.78645 0.803125 7.78645 0.803125 7.78646C0.803125 7.78646 0.803125 7.78646 0.803125 7.78647C0.803125 7.78647 0.803125 7.78647 0.803125 7.78648C0.803125 7.78648 0.803125 7.78648 0.803125 7.78649C0.803125 7.78649 0.803125 7.78649 0.803125 7.7865C0.803125 7.7865 0.803125 7.7865 0.803125 7.78651C0.803125 7.78651 0.803125 7.78651 0.803125 7.78652C0.803125 7.78652 0.803125 7.78652 0.803125 7.78653C0.803125 7.78653 0.803125 7.78654 0.803125 7.78654C0.803125 7.78654 0.803125 7.78655 0.803125 7.78655C0.803125 7.78655 0.803125 7.78656 0.803125 7.78656C0.803125 7.78656 0.803125 7.78657 0.803125 7.78657C0.803125 7.78657 0.803125 7.78658 0.803125 7.78658C0.803125 7.78658 0.803125 7.78659 0.803125 7.78659C0.803125 7.78659 0.803125 7.7866 0.803125 7.7866C0.803125 7.7866 0.803125 7.78661 0.803125 7.78661C0.803125 7.78662 0.803125 7.78662 0.803125 7.78662C0.803125 7.78663 0.803125 7.78663 0.803125 7.78663C0.803125 7.78664 0.803125 7.78664 0.803125 7.78664C0.803125 7.78665 0.803125 7.78665 0.803125 7.78665C0.803125 7.78666 0.803125 7.78666 0.803125 7.78666C0.803125 7.78667 0.803125 7.78667 0.803125 7.78667C0.803125 7.78668 0.803125 7.78668 0.803125 7.78669C0.803125 7.78669 0.803125 7.78669 0.803125 7.7867C0.803125 7.7867 0.803125 7.7867 0.803125 7.78671C0.803125 7.78671 0.803125 7.78671 0.803125 7.78672C0.803125 7.78672 0.803125 7.78672 0.803125 7.78673C0.803125 7.78673 0.803125 7.78673 0.803125 7.78674C0.803125 7.78674 0.803125 7.78675 0.803125 7.78675C0.803125 7.78675 0.803125 7.78676 0.803125 7.78676C0.803125 7.78676 0.803125 7.78677 0.803125 7.78677C0.803125 7.78677 0.803125 7.78678 0.803125 7.78678C0.803125 7.78678 0.803125 7.78679 0.803125 7.78679C0.803125 7.78679 0.803125 7.7868 0.803125 7.7868C0.803125 7.78681 0.803125 7.78681 0.803125 7.78681C0.803125 7.78682 0.803125 7.78682 0.803125 7.78682C0.803125 7.78683 0.803125 7.78683 0.803125 7.78683C0.803125 7.78684 0.803125 7.78684 0.803125 7.78684C0.803125 7.78685 0.803125 7.78685 0.803125 7.78685C0.803125 7.78686 0.803125 7.78686 0.803125 7.78686C0.803125 7.78687 0.803125 7.78687 0.803125 7.78688C0.803125 7.78688 0.803125 7.78688 0.803125 7.78689C0.803125 7.78689 0.803125 7.78689 0.803125 7.7869C0.803125 7.7869 0.803125 7.7869 0.803125 7.78691C0.803125 7.78691 0.803125 7.78691 0.803125 7.78692C0.803125 7.78692 0.803125 7.78693 0.803125 7.78693C0.803125 7.78693 0.803125 7.78694 0.803125 7.78694C0.803125 7.78694 0.803125 7.78695 0.803125 7.78695C0.803125 7.78695 0.803125 7.78696 0.803125 7.78696C0.803125 7.78696 0.803125 7.78697 0.803125 7.78697C0.803125 7.78697 0.803125 7.78698 0.803125 7.78698C0.803125 7.78699 0.803125 7.78699 0.803125 7.78699C0.803125 7.787 0.803125 7.787 0.803125 7.787C0.803125 7.78701 0.803125 7.78701 0.803125 7.78701C0.803125 7.78702 0.803125 7.78702 0.803125 7.78702C0.803125 7.78703 0.803125 7.78703 0.803125 7.78704C0.803125 7.78704 0.803125 7.78704 0.803125 7.78705C0.803125 7.78705 0.803125 7.78705 0.803125 7.78706C0.803125 7.78706 0.803125 7.78706 0.803125 7.78707C0.803125 7.78707 0.803125 7.78707 0.803125 7.78708C0.803125 7.78708 0.803125 7.78709 0.803125 7.78709C0.803125 7.78709 0.803125 7.7871 0.803125 7.7871C0.803125 7.7871 0.803125 7.78711 0.803125 7.78711C0.803125 7.78711 0.803125 7.78712 0.803125 7.78712C0.803125 7.78712 0.803125 7.78713 0.803125 7.78713C0.803125 7.78714 0.803125 7.78714 0.803125 7.78714C0.803125 7.78715 0.803125 7.78715 0.803125 7.78715C0.803125 7.78716 0.803125 7.78716 0.803125 7.78716C0.803125 7.78717 0.803125 7.78717 0.803125 7.78717C0.803125 7.78718 0.803125 7.78718 0.803125 7.78719C0.803125 7.78719 0.803125 7.78719 0.803125 7.7872C0.803125 7.7872 0.803125 7.7872 0.803125 7.78721C0.803125 7.78721 0.803125 7.78721 0.803125 7.78722C0.803125 7.78722 0.803125 7.78723 0.803125 7.78723C0.803125 7.78723 0.803125 7.78724 0.803125 7.78724C0.803125 7.78724 0.803125 7.78725 0.803125 7.78725C0.803125 7.78725 0.803125 7.78726 0.803125 7.78726C0.803125 7.78726 0.803125 7.78727 0.803125 7.78727C0.803125 7.78728 0.803125 7.78728 0.803125 7.78728C0.803125 7.78729 0.803125 7.78729 0.803125 7.78729C0.803125 7.7873 0.803125 7.7873 0.803125 7.7873C0.803125 7.78731 0.803125 7.78731 0.803125 7.78732C0.803125 7.78732 0.803125 7.78732 0.803125 7.78733C0.803125 7.78733 0.803125 7.78733 0.803125 7.78734C0.803125 7.78734 0.803125 7.78734 0.803125 7.78735C0.803125 7.78735 0.803125 7.78735 0.803125 7.78736C0.803125 7.78736 0.803125 7.78737 0.803125 7.78737C0.803125 7.78737 0.803125 7.78738 0.803125 7.78738C0.803125 7.78738 0.803125 7.78739 0.803125 7.78739C0.803125 7.7874 0.803125 7.7874 0.803125 7.7874C0.803125 7.78741 0.803125 7.78741 0.803125 7.78741C0.803125 7.78742 0.803125 7.78742 0.803125 7.78742C0.803125 7.78743 0.803125 7.78743 0.803125 7.78744C0.803125 7.78744 0.803125 7.78744 0.803125 7.78745C0.803125 7.78745 0.803125 7.78745 0.803125 7.78746C0.803125 7.78746 0.803125 7.78746 0.803125 7.78747C0.803125 7.78747 0.803125 7.78748 0.803125 7.78748C0.803125 7.78748 0.803125 7.78749 0.803125 7.78749C0.803125 7.78749 0.803125 7.7875 0.803125 7.7875C0.803125 7.7875 0.803125 7.78751 0.803125 7.78751C0.803125 7.78752 0.803125 7.78752 0.803125 7.78752C0.803125 7.78753 0.803125 7.78753 0.803125 7.78753H1.20312C1.20312 7.78753 1.20312 7.78753 1.20312 7.78752C1.20312 7.78752 1.20312 7.78752 1.20312 7.78751C1.20312 7.78751 1.20312 7.7875 1.20312 7.7875C1.20312 7.7875 1.20312 7.78749 1.20312 7.78749C1.20312 7.78749 1.20312 7.78748 1.20312 7.78748C1.20312 7.78748 1.20312 7.78747 1.20312 7.78747C1.20312 7.78746 1.20312 7.78746 1.20312 7.78746C1.20312 7.78745 1.20312 7.78745 1.20312 7.78745C1.20312 7.78744 1.20312 7.78744 1.20312 7.78744C1.20312 7.78743 1.20312 7.78743 1.20312 7.78742C1.20312 7.78742 1.20312 7.78742 1.20312 7.78741C1.20312 7.78741 1.20312 7.78741 1.20312 7.7874C1.20312 7.7874 1.20312 7.7874 1.20312 7.78739C1.20312 7.78739 1.20312 7.78738 1.20312 7.78738C1.20312 7.78738 1.20312 7.78737 1.20312 7.78737C1.20312 7.78737 1.20312 7.78736 1.20312 7.78736C1.20312 7.78735 1.20312 7.78735 1.20312 7.78735C1.20312 7.78734 1.20312 7.78734 1.20312 7.78734C1.20312 7.78733 1.20312 7.78733 1.20312 7.78733C1.20312 7.78732 1.20312 7.78732 1.20312 7.78732C1.20312 7.78731 1.20312 7.78731 1.20312 7.7873C1.20312 7.7873 1.20312 7.7873 1.20312 7.78729C1.20312 7.78729 1.20312 7.78729 1.20312 7.78728C1.20312 7.78728 1.20312 7.78728 1.20312 7.78727C1.20312 7.78727 1.20312 7.78726 1.20312 7.78726C1.20312 7.78726 1.20312 7.78725 1.20312 7.78725C1.20312 7.78725 1.20312 7.78724 1.20312 7.78724C1.20312 7.78724 1.20312 7.78723 1.20312 7.78723C1.20312 7.78723 1.20312 7.78722 1.20312 7.78722C1.20312 7.78721 1.20312 7.78721 1.20312 7.78721C1.20312 7.7872 1.20312 7.7872 1.20312 7.7872C1.20312 7.78719 1.20312 7.78719 1.20312 7.78719C1.20312 7.78718 1.20312 7.78718 1.20312 7.78717C1.20312 7.78717 1.20312 7.78717 1.20312 7.78716C1.20312 7.78716 1.20312 7.78716 1.20312 7.78715C1.20312 7.78715 1.20312 7.78715 1.20312 7.78714C1.20312 7.78714 1.20312 7.78714 1.20312 7.78713C1.20312 7.78713 1.20312 7.78712 1.20312 7.78712C1.20312 7.78712 1.20312 7.78711 1.20312 7.78711C1.20312 7.78711 1.20312 7.7871 1.20312 7.7871C1.20312 7.7871 1.20312 7.78709 1.20312 7.78709C1.20312 7.78709 1.20312 7.78708 1.20312 7.78708C1.20312 7.78707 1.20312 7.78707 1.20312 7.78707C1.20312 7.78706 1.20312 7.78706 1.20312 7.78706C1.20312 7.78705 1.20312 7.78705 1.20312 7.78705C1.20312 7.78704 1.20312 7.78704 1.20312 7.78704C1.20312 7.78703 1.20312 7.78703 1.20312 7.78702C1.20312 7.78702 1.20312 7.78702 1.20312 7.78701C1.20312 7.78701 1.20312 7.78701 1.20312 7.787C1.20312 7.787 1.20312 7.787 1.20312 7.78699C1.20312 7.78699 1.20312 7.78699 1.20312 7.78698C1.20312 7.78698 1.20312 7.78697 1.20312 7.78697C1.20312 7.78697 1.20312 7.78696 1.20312 7.78696C1.20312 7.78696 1.20312 7.78695 1.20312 7.78695C1.20312 7.78695 1.20312 7.78694 1.20312 7.78694C1.20312 7.78694 1.20312 7.78693 1.20312 7.78693C1.20312 7.78693 1.20312 7.78692 1.20312 7.78692C1.20312 7.78691 1.20312 7.78691 1.20312 7.78691C1.20312 7.7869 1.20312 7.7869 1.20312 7.7869C1.20312 7.78689 1.20312 7.78689 1.20312 7.78689C1.20312 7.78688 1.20312 7.78688 1.20312 7.78688C1.20312 7.78687 1.20312 7.78687 1.20312 7.78686C1.20312 7.78686 1.20312 7.78686 1.20312 7.78685C1.20312 7.78685 1.20312 7.78685 1.20312 7.78684C1.20312 7.78684 1.20312 7.78684 1.20312 7.78683C1.20312 7.78683 1.20312 7.78683 1.20312 7.78682C1.20312 7.78682 1.20312 7.78682 1.20312 7.78681C1.20312 7.78681 1.20312 7.78681 1.20312 7.7868C1.20312 7.7868 1.20312 7.78679 1.20312 7.78679C1.20312 7.78679 1.20312 7.78678 1.20312 7.78678C1.20312 7.78678 1.20312 7.78677 1.20312 7.78677C1.20312 7.78677 1.20312 7.78676 1.20312 7.78676C1.20312 7.78676 1.20312 7.78675 1.20312 7.78675C1.20312 7.78675 1.20312 7.78674 1.20312 7.78674C1.20312 7.78673 1.20312 7.78673 1.20312 7.78673C1.20312 7.78672 1.20312 7.78672 1.20312 7.78672C1.20312 7.78671 1.20312 7.78671 1.20312 7.78671C1.20312 7.7867 1.20312 7.7867 1.20312 7.7867C1.20312 7.78669 1.20312 7.78669 1.20312 7.78669C1.20312 7.78668 1.20312 7.78668 1.20312 7.78667C1.20312 7.78667 1.20312 7.78667 1.20312 7.78666C1.20312 7.78666 1.20312 7.78666 1.20312 7.78665C1.20312 7.78665 1.20312 7.78665 1.20312 7.78664C1.20312 7.78664 1.20312 7.78664 1.20312 7.78663C1.20312 7.78663 1.20312 7.78663 1.20312 7.78662C1.20312 7.78662 1.20312 7.78662 1.20312 7.78661C1.20312 7.78661 1.20312 7.7866 1.20312 7.7866C1.20312 7.7866 1.20312 7.78659 1.20312 7.78659C1.20312 7.78659 1.20312 7.78658 1.20312 7.78658C1.20312 7.78658 1.20312 7.78657 1.20312 7.78657C1.20312 7.78657 1.20312 7.78656 1.20312 7.78656C1.20312 7.78656 1.20312 7.78655 1.20312 7.78655C1.20312 7.78655 1.20312 7.78654 1.20312 7.78654C1.20312 7.78654 1.20312 7.78653 1.20312 7.78653C1.20312 7.78652 1.20312 7.78652 1.20312 7.78652C1.20312 7.78651 1.20312 7.78651 1.20312 7.78651C1.20312 7.7865 1.20312 7.7865 1.20312 7.7865C1.20312 7.78649 1.20312 7.78649 1.20312 7.78649C1.20312 7.78648 1.20312 7.78648 1.20312 7.78648C1.20312 7.78647 1.20312 7.78647 1.20312 7.78647C1.20312 7.78646 1.20312 7.78646 1.20312 7.78646C1.20312 7.78645 1.20312 7.78645 1.20312 7.78645C1.20312 7.78644 1.20312 7.78644 1.20312 7.78643C1.20312 7.78643 1.20312 7.78643 1.20312 7.78642C1.20312 7.78642 1.20312 7.78642 1.20312 7.78641C1.20312 7.78641 1.20312 7.78641 1.20312 7.7864C1.20312 7.7864 1.20312 7.7864 1.20312 7.78639C1.20312 7.78639 1.20312 7.78639 1.20312 7.78638C1.20312 7.78638 1.20312 7.78638 1.20312 7.78637C1.20312 7.78637 1.20312 7.78637 1.20312 7.78636C1.20312 7.78636 1.20312 7.78636 1.20312 7.78635C1.20312 7.78635 1.20312 7.78634 1.20312 7.78634C1.20312 7.78634 1.20312 7.78633 1.20312 7.78633C1.20312 7.78633 1.20312 7.78632 1.20312 7.78632C1.20312 7.78632 1.20312 7.78631 1.20312 7.78631C1.20312 7.78631 1.20312 7.7863 1.20312 7.7863C1.20312 7.7863 1.20312 7.78629 1.20312 7.78629C1.20312 7.78629 1.20312 7.78628 1.20312 7.78628C1.20312 7.78628 1.20312 7.78627 1.20312 7.78627C1.20312 7.78627 1.20312 7.78626 1.20312 7.78626C1.20312 7.78625 1.20312 7.78625 1.20312 7.78625C1.20312 7.78624 1.20312 7.78624 1.20312 7.78624C1.20312 7.78623 1.20312 7.78623 1.20312 7.78623C1.20312 7.78622 1.20312 7.78622 1.20312 7.78622C1.20312 7.78621 1.20312 7.78621 1.20312 7.78621C1.20312 7.7862 1.20312 7.7862 1.20312 7.7862C1.20312 7.78619 1.20312 7.78619 1.20312 7.78619C1.20312 7.78618 1.20312 7.78618 1.20312 7.78618C1.20312 7.78617 1.20312 7.78617 1.20312 7.78617C1.20312 7.78616 1.20312 7.78616 1.20312 7.78616C1.20312 7.78615 1.20312 7.78615 1.20312 7.78614C1.20312 7.78614 1.20312 7.78614 1.20312 7.78613C1.20312 7.78613 1.20312 7.78613 1.20312 7.78612C1.20312 7.78612 1.20312 7.78612 1.20312 7.78611C1.20312 7.78611 1.20312 7.78611 1.20312 7.7861C1.20312 7.7861 1.20312 7.7861 1.20312 7.78609C1.20312 7.78609 1.20312 7.78609 1.20312 7.78608C1.20312 7.78608 1.20312 7.78608 1.20312 7.78607C1.20312 7.78607 1.20312 7.78607 1.20312 7.78606C1.20312 7.78606 1.20312 7.78606 1.20312 7.78605C1.20312 7.78605 1.20312 7.78605 1.20312 7.78604C1.20312 7.78604 1.20312 7.78604 1.20312 7.78603C1.20312 7.78603 1.20312 7.78603 1.20312 7.78602C1.20312 7.78602 1.20312 7.78602 1.20312 7.78601C1.20312 7.78601 1.20312 7.786 1.20312 7.786C1.20312 7.786 1.20312 7.78599 1.20312 7.78599C1.20312 7.78599 1.20312 7.78598 1.20312 7.78598C1.20312 7.78598 1.20312 7.78597 1.20312 7.78597C1.20312 7.78597 1.20312 7.78596 1.20312 7.78596C1.20312 7.78596 1.20312 7.78595 1.20312 7.78595C1.20312 7.78595 1.20312 7.78594 1.20312 7.78594C1.20312 7.78594 1.20312 7.78593 1.20312 7.78593C1.20312 7.78593 1.20312 7.78592 1.20312 7.78592C1.20312 7.78592 1.20312 7.78591 1.20312 7.78591C1.20312 7.78591 1.20312 7.7859 1.20312 7.7859C1.20312 7.7859 1.20312 7.78589 1.20312 7.78589C1.20312 7.78589 1.20312 7.78588 1.20312 7.78588C1.20312 7.78587 1.20312 7.78587 1.20312 7.78587C1.20312 7.78586 1.20312 7.78586 1.20312 7.78586C1.20312 7.78585 1.20312 7.78585 1.20312 7.78585C1.20312 7.78584 1.20312 7.78584 1.20312 7.78584C1.20312 7.78583 1.20312 7.78583 1.20312 7.78583C1.20312 7.78582 1.20312 7.78582 1.20312 7.78582C1.20312 7.78581 1.20312 7.78581 1.20312 7.78581C1.20312 7.7858 1.20312 7.7858 1.20312 7.7858C1.20312 7.78579 1.20312 7.78579 1.20312 7.78579C1.20312 7.78578 1.20312 7.78578 1.20312 7.78578C1.20312 7.78577 1.20312 7.78577 1.20312 7.78577C1.20312 7.78576 1.20312 7.78576 1.20312 7.78576C1.20312 7.78575 1.20312 7.78575 1.20312 7.78575C1.20312 7.78574 1.20312 7.78574 1.20312 7.78574C1.20312 7.78573 1.20312 7.78573 1.20312 7.78573C1.20312 7.78572 1.20312 7.78572 1.20312 7.78572C1.20312 7.78571 1.20312 7.78571 1.20312 7.78571C1.20312 7.7857 1.20312 7.7857 1.20312 7.7857C1.20312 7.78569 1.20312 7.78569 1.20312 7.78569C1.20312 7.78568 1.20312 7.78568 1.20312 7.78567C1.20312 7.78567 1.20312 7.78567 1.20312 7.78566C1.20312 7.78566 1.20312 7.78566 1.20312 7.78565C1.20312 7.78565 1.20312 7.78565 1.20312 7.78564C1.20312 7.78564 1.20312 7.78564 1.20312 7.78563C1.20312 7.78563 1.20312 7.78563 1.20312 7.78562C1.20312 7.78562 1.20312 7.78562 1.20312 7.78561C1.20312 7.78561 1.20312 7.78561 1.20312 7.7856C1.20312 7.7856 1.20312 7.7856 1.20312 7.78559C1.20312 7.78559 1.20312 7.78559 1.20312 7.78558C1.20312 7.78558 1.20312 7.78558 1.20312 7.78557C1.20312 7.78557 1.20312 7.78557 1.20312 7.78556C1.20312 7.78556 1.20312 7.78556 1.20312 7.78555C1.20312 7.78555 1.20312 7.78555 1.20312 7.78554C1.20312 7.78554 1.20312 7.78554 1.20312 7.78553C1.20312 7.78553 1.20312 7.78553 1.20312 7.78552C1.20312 7.78552 1.20312 7.78552 1.20312 7.78551C1.20312 7.78551 1.20312 7.78551 1.20312 7.7855C1.20312 7.7855 1.20312 7.7855 1.20312 7.78549C1.20312 7.78549 1.20312 7.78549 1.20312 7.78548C1.20312 7.78548 1.20312 7.78548 1.20312 7.78547C1.20312 7.78547 1.20312 7.78547 1.20312 7.78546C1.20312 7.78546 1.20312 7.78546 1.20312 7.78545C1.20312 7.78545 1.20312 7.78544 1.20312 7.78544C1.20312 7.78544 1.20312 7.78543 1.20312 7.78543C1.20312 7.78543 1.20312 7.78542 1.20312 7.78542C1.20312 7.78542 1.20312 7.78541 1.20312 7.78541C1.20312 7.78541 1.20312 7.7854 1.20312 7.7854C1.20312 7.7854 1.20312 7.78539 1.20312 7.78539C1.20312 7.78539 1.20312 7.78538 1.20312 7.78538C1.20312 7.78538 1.20312 7.78537 1.20312 7.78537C1.20312 7.78537 1.20312 7.78536 1.20312 7.78536C1.20312 7.78536 1.20312 7.78535 1.20312 7.78535C1.20312 7.78535 1.20312 7.78534 1.20312 7.78534C1.20312 7.78534 1.20312 7.78533 1.20312 7.78533C1.20312 7.78533 1.20312 7.78532 1.20312 7.78532C1.20312 7.78532 1.20312 7.78531 1.20312 7.78531C1.20312 7.78531 1.20312 7.7853 1.20312 7.7853C1.20312 7.7853 1.20312 7.78529 1.20312 7.78529C1.20312 7.78529 1.20312 7.78528 1.20312 7.78528C1.20312 7.78528 1.20312 7.78527 1.20312 7.78527C1.20312 7.78527 1.20312 7.78526 1.20312 7.78526C1.20312 7.78526 1.20312 7.78525 1.20312 7.78525C1.20312 7.78525 1.20312 7.78524 1.20312 7.78524C1.20312 7.78524 1.20312 7.78523 1.20312 7.78523C1.20312 7.78523 1.20312 7.78522 1.20312 7.78522C1.20312 7.78522 1.20312 7.78521 1.20312 7.78521C1.20312 7.78521 1.20312 7.7852 1.20312 7.7852C1.20312 7.7852 1.20312 7.78519 1.20312 7.78519C1.20312 7.78519 1.20312 7.78518 1.20312 7.78518C1.20312 7.78518 1.20312 7.78517 1.20312 7.78517C1.20312 7.78517 1.20312 7.78516 1.20312 7.78516C1.20312 7.78516 1.20312 7.78515 1.20312 7.78515C1.20312 7.78515 1.20312 7.78514 1.20312 7.78514C1.20312 7.78514 1.20312 7.78513 1.20312 7.78513C1.20312 7.78513 1.20312 7.78512 1.20312 7.78512C1.20312 7.78512 1.20312 7.78511 1.20312 7.78511C1.20312 7.78511 1.20312 7.7851 1.20312 7.7851C1.20312 7.78509 1.20312 7.78509 1.20312 7.78509C1.20312 7.78508 1.20312 7.78508 1.20312 7.78508C1.20312 7.78507 1.20312 7.78507 1.20312 7.78507C1.20312 7.78506 1.20312 7.78506 1.20312 7.78506C1.20312 7.78505 1.20312 7.78505 1.20312 7.78505C1.20312 7.78504 1.20312 7.78504 1.20312 7.78504C1.20312 7.78503 1.20312 7.78503 1.20312 7.78503C1.20312 7.78502 1.20312 7.78502 1.20312 7.78502C1.20312 7.78501 1.20312 7.78501 1.20312 7.78501C1.20312 7.785 1.20312 7.785 1.20312 7.785C1.20312 7.78499 1.20312 7.78499 1.20312 7.78499C1.20312 7.78498 1.20312 7.78498 1.20312 7.78498C1.20312 7.78497 1.20312 7.78497 1.20312 7.78497C1.20312 7.78496 1.20312 7.78496 1.20312 7.78496C1.20312 7.78495 1.20312 7.78495 1.20312 7.78495C1.20312 7.78494 1.20312 7.78494 1.20312 7.78494C1.20312 7.78493 1.20312 7.78493 1.20312 7.78493C1.20312 7.78492 1.20312 7.78492 1.20312 7.78492C1.20312 7.78491 1.20312 7.78491 1.20312 7.78491C1.20312 7.7849 1.20312 7.7849 1.20312 7.7849C1.20312 7.78489 1.20312 7.78489 1.20312 7.78489C1.20312 7.78488 1.20312 7.78488 1.20312 7.78488C1.20312 7.78487 1.20312 7.78487 1.20312 7.78487C1.20312 7.78486 1.20312 7.78486 1.20312 7.78486C1.20312 7.78485 1.20312 7.78485 1.20312 7.78485C1.20312 7.78484 1.20312 7.78484 1.20312 7.78484C1.20312 7.78483 1.20312 7.78483 1.20312 7.78483C1.20312 7.78482 1.20312 7.78482 1.20312 7.78482C1.20312 7.78481 1.20312 7.78481 1.20312 7.78481C1.20312 7.7848 1.20312 7.7848 1.20312 7.7848C1.20312 7.78479 1.20312 7.78479 1.20312 7.78479C1.20312 7.78478 1.20312 7.78478 1.20312 7.78478C1.20312 7.78477 1.20312 7.78477 1.20312 7.78477C1.20312 7.78476 1.20312 7.78476 1.20312 7.78476C1.20312 7.78475 1.20312 7.78475 1.20312 7.78475C1.20312 7.78474 1.20312 7.78474 1.20312 7.78474C1.20312 7.78473 1.20312 7.78473 1.20312 7.78473C1.20312 7.78472 1.20312 7.78472 1.20312 7.78472C1.20312 7.78471 1.20312 7.78471 1.20312 7.78471C1.20312 7.7847 1.20312 7.7847 1.20312 7.7847C1.20312 7.78469 1.20312 7.78469 1.20312 7.78469C1.20312 7.78468 1.20312 7.78468 1.20312 7.78468C1.20312 7.78467 1.20312 7.78467 1.20312 7.78467C1.20312 7.78466 1.20312 7.78466 1.20312 7.78466C1.20312 7.78465 1.20312 7.78465 1.20312 7.78465C1.20312 7.78464 1.20312 7.78464 1.20312 7.78463C1.20312 7.78463 1.20312 7.78463 1.20312 7.78462C1.20312 7.78462 1.20312 7.78462 1.20312 7.78461C1.20312 7.78461 1.20312 7.78461 1.20312 7.7846C1.20312 7.7846 1.20312 7.7846 1.20312 7.78459C1.20312 7.78459 1.20312 7.78459 1.20312 7.78458C1.20312 7.78458 1.20312 7.78458 1.20312 7.78457C1.20312 7.78457 1.20312 7.78457 1.20312 7.78456C1.20312 7.78456 1.20312 7.78456 1.20312 7.78455C1.20312 7.78455 1.20312 7.78455 1.20312 7.78454C1.20312 7.78454 1.20312 7.78454 1.20312 7.78453C1.20312 7.78453 1.20312 7.78453 1.20312 7.78452C1.20312 7.78452 1.20312 7.78452 1.20312 7.78451C1.20312 7.78451 1.20312 7.78451 1.20312 7.7845C1.20312 7.7845 1.20312 7.7845 1.20312 7.78449C1.20312 7.78449 1.20312 7.78449 1.20312 7.78448C1.20312 7.78448 1.20312 7.78448 1.20312 7.78447C1.20312 7.78447 1.20312 7.78447 1.20312 7.78446C1.20312 7.78446 1.20312 7.78446 1.20312 7.78445C1.20312 7.78445 1.20312 7.78445 1.20312 7.78444C1.20312 7.78444 1.20312 7.78444 1.20312 7.78443C1.20312 7.78443 1.20312 7.78443 1.20312 7.78442C1.20312 7.78442 1.20312 7.78442 1.20312 7.78441C1.20312 7.78441 1.20312 7.78441 1.20312 7.7844C1.20312 7.7844 1.20312 7.7844 1.20312 7.78439C1.20312 7.78439 1.20312 7.78439 1.20312 7.78438C1.20312 7.78438 1.20312 7.78438 1.20312 7.78437C1.20312 7.78437 1.20312 7.78437 1.20312 7.78436C1.20312 7.78436 1.20312 7.78436 1.20312 7.78435C1.20312 7.78435 1.20312 7.78435 1.20312 7.78434C1.20312 7.78434 1.20312 7.78434 1.20312 7.78433C1.20312 7.78433 1.20312 7.78433 1.20312 7.78432C1.20312 7.78432 1.20312 7.78432 1.20312 7.78431C1.20312 7.78431 1.20312 7.78431 1.20312 7.7843C1.20312 7.7843 1.20312 7.78429 1.20312 7.78429C1.20312 7.78429 1.20312 7.78428 1.20312 7.78428C1.20312 7.78428 1.20312 7.78427 1.20312 7.78427C1.20312 7.78427 1.20312 7.78426 1.20312 7.78426C1.20312 7.78426 1.20312 7.78425 1.20312 7.78425C1.20312 7.78425 1.20312 7.78424 1.20312 7.78424C1.20312 7.78424 1.20312 7.78423 1.20312 7.78423C1.20312 7.78423 1.20312 7.78422 1.20312 7.78422C1.20312 7.78422 1.20312 7.78421 1.20312 7.78421C1.20312 7.78421 1.20312 7.7842 1.20312 7.7842C1.20312 7.7842 1.20312 7.78419 1.20312 7.78419C1.20312 7.78419 1.20312 7.78418 1.20312 7.78418C1.20312 7.78418 1.20312 7.78417 1.20312 7.78417C1.20312 7.78417 1.20312 7.78416 1.20312 7.78416C1.20312 7.78416 1.20312 7.78415 1.20312 7.78415C1.20312 7.78415 1.20312 7.78414 1.20312 7.78414C1.20312 7.78414 1.20312 7.78413 1.20312 7.78413C1.20312 7.78413 1.20312 7.78412 1.20312 7.78412C1.20312 7.78412 1.20312 7.78411 1.20312 7.78411C1.20312 7.78411 1.20312 7.7841 1.20312 7.7841C1.20312 7.7841 1.20312 7.78409 1.20312 7.78409C1.20312 7.78409 1.20312 7.78408 1.20312 7.78408C1.20312 7.78408 1.20312 7.78407 1.20312 7.78407C1.20312 7.78406 1.20312 7.78406 1.20312 7.78406C1.20312 7.78405 1.20312 7.78405 1.20312 7.78405C1.20312 7.78404 1.20312 7.78404 1.20312 7.78404C1.20312 7.78403 1.20312 7.78403 1.20312 7.78403C1.20312 7.78402 1.20312 7.78402 1.20312 7.78402C1.20312 7.78401 1.20312 7.78401 1.20312 7.78401C1.20312 7.784 1.20312 7.784 1.20312 7.784C1.20312 7.78399 1.20312 7.78399 1.20312 7.78399C1.20312 7.78398 1.20312 7.78398 1.20312 7.78398C1.20312 7.78397 1.20312 7.78397 1.20312 7.78397C1.20312 7.78396 1.20312 7.78396 1.20312 7.78396C1.20312 7.78395 1.20312 7.78395 1.20312 7.78395C1.20312 7.78394 1.20312 7.78394 1.20312 7.78394C1.20312 7.78393 1.20312 7.78393 1.20312 7.78393C1.20312 7.78392 1.20312 7.78392 1.20312 7.78392C1.20312 7.78391 1.20312 7.78391 1.20312 7.78391C1.20312 7.7839 1.20312 7.7839 1.20312 7.7839C1.20312 7.78389 1.20312 7.78389 1.20312 7.78389C1.20312 7.78388 1.20312 7.78388 1.20312 7.78387C1.20312 7.78387 1.20312 7.78387 1.20312 7.78386C1.20312 7.78386 1.20312 7.78386 1.20312 7.78385C1.20312 7.78385 1.20312 7.78385 1.20312 7.78384C1.20312 7.78384 1.20312 7.78384 1.20312 7.78383C1.20312 7.78383 1.20312 7.78383 1.20312 7.78382C1.20312 7.78382 1.20312 7.78382 1.20312 7.78381C1.20312 7.78381 1.20312 7.78381 1.20312 7.7838C1.20312 7.7838 1.20312 7.7838 1.20312 7.78379C1.20312 7.78379 1.20312 7.78379 1.20312 7.78378C1.20312 7.78378 1.20312 7.78378 1.20312 7.78377C1.20312 7.78377 1.20312 7.78377 1.20312 7.78376C1.20312 7.78376 1.20312 7.78376 1.20312 7.78375C1.20312 7.78375 1.20312 7.78375 1.20312 7.78374C1.20312 7.78374 1.20312 7.78373 1.20312 7.78373C1.20312 7.78373 1.20312 7.78372 1.20312 7.78372C1.20312 7.78372 1.20312 7.78371 1.20312 7.78371C1.20312 7.78371 1.20312 7.7837 1.20312 7.7837C1.20312 7.7837 1.20312 7.78369 1.20312 7.78369C1.20312 7.78369 1.20312 7.78368 1.20312 7.78368C1.20312 7.78368 1.20312 7.78367 1.20312 7.78367C1.20312 7.78367 1.20312 7.78366 1.20312 7.78366C1.20312 7.78366 1.20312 7.78365 1.20312 7.78365C1.20312 7.78365 1.20312 7.78364 1.20312 7.78364C1.20312 7.78364 1.20312 7.78363 1.20312 7.78363C1.20312 7.78363 1.20312 7.78362 1.20312 7.78362C1.20312 7.78362 1.20312 7.78361 1.20312 7.78361C1.20312 7.78361 1.20312 7.7836 1.20312 7.7836C1.20312 7.78359 1.20312 7.78359 1.20312 7.78359C1.20312 7.78358 1.20312 7.78358 1.20312 7.78358C1.20312 7.78357 1.20312 7.78357 1.20312 7.78357C1.20312 7.78356 1.20312 7.78356 1.20312 7.78356C1.20312 7.78355 1.20312 7.78355 1.20312 7.78355C1.20312 7.78354 1.20312 7.78354 1.20312 7.78354C1.20312 7.78353 1.20312 7.78353 1.20312 7.78353C1.20312 7.78352 1.20312 7.78352 1.20312 7.78352C1.20312 7.78351 1.20312 7.78351 1.20312 7.7835C1.20312 7.7835 1.20312 7.7835 1.20312 7.78349C1.20312 7.78349 1.20312 7.78349 1.20312 7.78348C1.20312 7.78348 1.20312 7.78348 1.20312 7.78347C1.20312 7.78347 1.20312 7.78347 1.20312 7.78346C1.20312 7.78346 1.20312 7.78346 1.20312 7.78345C1.20312 7.78345 1.20312 7.78345 1.20312 7.78344C1.20312 7.78344 1.20312 7.78344 1.20312 7.78343C1.20312 7.78343 1.20312 7.78343 1.20312 7.78342C1.20312 7.78342 1.20312 7.78342 1.20312 7.78341C1.20312 7.78341 1.20312 7.78341 1.20312 7.7834C1.20312 7.7834 1.20312 7.78339 1.20312 7.78339C1.20312 7.78339 1.20312 7.78338 1.20312 7.78338C1.20312 7.78338 1.20312 7.78337 1.20312 7.78337C1.20312 7.78337 1.20312 7.78336 1.20312 7.78336C1.20312 7.78336 1.20312 7.78335 1.20312 7.78335C1.20312 7.78335 1.20312 7.78334 1.20312 7.78334C1.20312 7.78334 1.20312 7.78333 1.20312 7.78333C1.20312 7.78333 1.20312 7.78332 1.20312 7.78332C1.20312 7.78332 1.20312 7.78331 1.20312 7.78331C1.20312 7.7833 1.20312 7.7833 1.20312 7.7833C1.20312 7.78329 1.20312 7.78329 1.20312 7.78329C1.20312 7.78328 1.20312 7.78328 1.20312 7.78328C1.20312 7.78327 1.20312 7.78327 1.20312 7.78327C1.20312 7.78326 1.20312 7.78326 1.20312 7.78326C1.20312 7.78325 1.20312 7.78325 1.20312 7.78325C1.20312 7.78324 1.20312 7.78324 1.20312 7.78324C1.20312 7.78323 1.20312 7.78323 1.20312 7.78323C1.20312 7.78322 1.20312 7.78322 1.20312 7.78321C1.20312 7.78321 1.20312 7.78321 1.20312 7.7832C1.20312 7.7832 1.20312 7.7832 1.20312 7.78319C1.20312 7.78319 1.20312 7.78319 1.20312 7.78318C1.20312 7.78318 1.20312 7.78318 1.20312 7.78317C1.20312 7.78317 1.20312 7.78317 1.20312 7.78316C1.20312 7.78316 1.20312 7.78315 1.20312 7.78315C1.20312 7.78315 1.20312 7.78314 1.20312 7.78314C1.20312 7.78314 1.20312 7.78313 1.20312 7.78313C1.20312 7.78313 1.20312 7.78312 1.20312 7.78312C1.20312 7.78312 1.20312 7.78311 1.20312 7.78311C1.20312 7.78311 1.20312 7.7831 1.20312 7.7831C1.20312 7.7831 1.20312 7.78309 1.20312 7.78309C1.20312 7.78309 1.20312 7.78308 1.20312 7.78308C1.20312 7.78307 1.20312 7.78307 1.20312 7.78307C1.20312 7.78306 1.20312 7.78306 1.20312 7.78306C1.20312 7.78305 1.20312 7.78305 1.20312 7.78305C1.20312 7.78304 1.20312 7.78304 1.20312 7.78304C1.20312 7.78303 1.20312 7.78303 1.20312 7.78303C1.20312 7.78302 1.20312 7.78302 1.20312 7.78302C1.20312 7.78301 1.20312 7.78301 1.20312 7.783C1.20312 7.783 1.20312 7.783 1.20312 7.78299C1.20312 7.78299 1.20312 7.78299 1.20312 7.78298C1.20312 7.78298 1.20312 7.78298 1.20312 7.78297C1.20312 7.78297 1.20312 7.78297 1.20312 7.78296C1.20312 7.78296 1.20312 7.78296 1.20312 7.78295C1.20312 7.78295 1.20312 7.78294 1.20312 7.78294C1.20312 7.78294 1.20312 7.78293 1.20312 7.78293C1.20312 7.78293 1.20312 7.78292 1.20312 7.78292C1.20312 7.78292 1.20312 7.78291 1.20312 7.78291C1.20312 7.78291 1.20312 7.7829 1.20312 7.7829C1.20312 7.7829 1.20312 7.78289 1.20312 7.78289C1.20312 7.78288 1.20312 7.78288 1.20312 7.78288C1.20312 7.78287 1.20312 7.78287 1.20312 7.78287C1.20312 7.78286 1.20312 7.78286 1.20312 7.78286C1.20312 7.78285 1.20312 7.78285 1.20312 7.78285C1.20312 7.78284 1.20312 7.78284 1.20312 7.78284C1.20312 7.78283 1.20312 7.78283 1.20312 7.78282C1.20312 7.78282 1.20312 7.78282 1.20312 7.78281C1.20312 7.78281 1.20312 7.78281 1.20312 7.7828C1.20312 7.7828 1.20312 7.7828 1.20312 7.78279C1.20312 7.78279 1.20312 7.78279 1.20312 7.78278C1.20312 7.78278 1.20312 7.78277 1.20312 7.78277C1.20312 7.78277 1.20312 7.78276 1.20312 7.78276C1.20312 7.78276 1.20312 7.78275 1.20312 7.78275C1.20312 7.78275 1.20312 7.78274 1.20312 7.78274C1.20312 7.78274 1.20312 7.78273 1.20312 7.78273C1.20312 7.78273 1.20312 7.78272 1.20312 7.78272C1.20312 7.78271 1.20312 7.78271 1.20312 7.78271C1.20312 7.7827 1.20312 7.7827 1.20312 7.7827C1.20312 7.78269 1.20312 7.78269 1.20312 7.78269C1.20312 7.78268 1.20312 7.78268 1.20312 7.78268C1.20312 7.78267 1.20312 7.78267 1.20312 7.78266C1.20312 7.78266 1.20312 7.78266 1.20312 7.78265C1.20312 7.78265 1.20312 7.78265 1.20312 7.78264C1.20312 7.78264 1.20312 7.78264 1.20312 7.78263C1.20312 7.78263 1.20312 7.78263 1.20312 7.78262C1.20312 7.78262 1.20312 7.78261 1.20312 7.78261C1.20312 7.78261 1.20312 7.7826 1.20312 7.7826C1.20312 7.7826 1.20312 7.78259 1.20312 7.78259C1.20312 7.78259 1.20312 7.78258 1.20312 7.78258C1.20312 7.78258 1.20312 7.78257 1.20312 7.78257C1.20312 7.78256 1.20312 7.78256 1.20312 7.78256C1.20312 7.78255 1.20312 7.78255 1.20312 7.78255C1.20312 7.78254 1.20312 7.78254 1.20312 7.78254C1.20312 7.78253 1.20312 7.78253 1.20312 7.78252C1.20312 7.78252 1.20312 7.78252 1.20312 7.78251C1.20312 7.78251 1.20312 7.78251 1.20312 7.7825C1.20312 7.7825 1.20312 7.7825 1.20312 7.78249C1.20312 7.78249 1.20312 7.78249 1.20312 7.78248C1.20312 7.78248 1.20312 7.78247 1.20312 7.78247C1.20312 7.78247 1.20312 7.78246 1.20312 7.78246C1.20312 7.78246 1.20312 7.78245 1.20312 7.78245C1.20312 7.78245 1.20312 7.78244 1.20312 7.78244C1.20312 7.78243 1.20312 7.78243 1.20312 7.78243C1.20312 7.78242 1.20312 7.78242 1.20312 7.78242C1.20312 7.78241 1.20312 7.78241 1.20312 7.78241C1.20312 7.7824 1.20312 7.7824 1.20312 7.78239C1.20312 7.78239 1.20312 7.78239 1.20312 7.78238C1.20312 7.78238 1.20312 7.78238 1.20312 7.78237C1.20312 7.78237 1.20312 7.78237 1.20312 7.78236C1.20312 7.78236 1.20312 7.78235 1.20312 7.78235C1.20312 7.78235 1.20312 7.78234 1.20312 7.78234C1.20312 7.78234 1.20312 7.78233 1.20312 7.78233C1.20312 7.78233 1.20312 7.78232 1.20312 7.78232C1.20312 7.78231 1.20312 7.78231 1.20312 7.78231C1.20312 7.7823 1.20312 7.7823 1.20312 7.7823C1.20312 7.78229 1.20312 7.78229 1.20312 7.78229C1.20312 7.78228 1.20312 7.78228 1.20312 7.78227C1.20312 7.78227 1.20312 7.78227 1.20312 7.78226C1.20312 7.78226 1.20312 7.78226 1.20312 7.78225C1.20312 7.78225 1.20312 7.78225 1.20312 7.78224C1.20312 7.78224 1.20312 7.78223 1.20312 7.78223C1.20312 7.78223 1.20312 7.78222 1.20312 7.78222H0.803125ZM0.803125 7.78753V10.6433H1.20312V7.78753H0.803125ZM0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6433C0.803125 10.6433 0.803125 10.6433 0.803125 10.6434V10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434V10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434V10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434V10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434V10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6434 0.803125 10.6434C0.803125 10.6434 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435V10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435V10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435V10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435V10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6435 0.803125 10.6435C0.803125 10.6435 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436V10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436V10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436V10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436V10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436C0.803125 10.6436 0.803125 10.6436 0.803125 10.6436V10.6436C0.803125 10.6436 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437V10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437V10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437V10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437V10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6437 0.803125 10.6437 0.803125 10.6437C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438V10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438V10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438V10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438V10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6438C0.803125 10.6438 0.803125 10.6438 0.803125 10.6439V10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439V10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439V10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439V10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439V10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.6439C0.803125 10.6439 0.803125 10.6439 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644V10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644V10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644V10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644V10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.644 0.803125 10.644C0.803125 10.644 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441V10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441V10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441V10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441V10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441V10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6441 0.803125 10.6441 0.803125 10.6441C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442V10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442V10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442V10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442V10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6442C0.803125 10.6442 0.803125 10.6442 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443V10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443H1.20312C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443V10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442V10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442V10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442V10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442V10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6442C1.20312 10.6442 1.20312 10.6442 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441V10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441V10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441V10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441V10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441V10.6441C1.20312 10.6441 1.20312 10.6441 1.20312 10.6441C1.20312 10.6441 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644V10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644V10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644V10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644V10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.644 1.20312 10.644 1.20312 10.644C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439V10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439V10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439V10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439V10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439C1.20312 10.6439 1.20312 10.6439 1.20312 10.6439V10.6439C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438V10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438V10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438V10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438V10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6438C1.20312 10.6438 1.20312 10.6438 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437V10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437V10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437V10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437V10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6437 1.20312 10.6437C1.20312 10.6437 1.20312 10.6436 1.20312 10.6436V10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436V10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436V10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436V10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436V10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6436 1.20312 10.6436C1.20312 10.6436 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435V10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435V10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435V10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435V10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6435 1.20312 10.6435C1.20312 10.6435 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434V10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434V10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434V10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434V10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434C1.20312 10.6434 1.20312 10.6434 1.20312 10.6434V10.6434C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433C1.20312 10.6433 1.20312 10.6433 1.20312 10.6433H0.803125ZM0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443V10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443V10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443V10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6443C0.803125 10.6443 0.803125 10.6443 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444V10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444V10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444V10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444V10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444V10.6444C0.803125 10.6444 0.803125 10.6444 0.803125 10.6444C0.803125 10.6444 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445V10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445V10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445V10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445V10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6445 0.803125 10.6445 0.803125 10.6445C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446V10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446V10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446V10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446V10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6446C0.803125 10.6446 0.803125 10.6446 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447V10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447V10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447V10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447V10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447V10.6447C0.803125 10.6447 0.803125 10.6447 0.803125 10.6447C0.803125 10.6447 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448V10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448V10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448V10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448V10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6448 0.803125 10.6448 0.803125 10.6448C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449V10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449V10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449V10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449V10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.6449C0.803125 10.6449 0.803125 10.6449 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645V10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645V10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645V10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645V10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645V10.645C0.803125 10.645 0.803125 10.645 0.803125 10.645C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451V10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451V10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451V10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451V10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6451C0.803125 10.6451 0.803125 10.6451 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452V10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452V10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452V10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452C0.803125 10.6452 0.803125 10.6452 0.803125 10.6452H1.20312C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452V10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452V10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452V10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6452 1.20312 10.6452 1.20312 10.6452C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451V10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451V10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451V10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451V10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.6451C1.20312 10.6451 1.20312 10.6451 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645V10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645V10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645V10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645V10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645V10.645C1.20312 10.645 1.20312 10.645 1.20312 10.645C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449V10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449V10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449V10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449V10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6449C1.20312 10.6449 1.20312 10.6449 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448V10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448V10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448V10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448V10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6448 1.20312 10.6448C1.20312 10.6448 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447V10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447V10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447V10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447V10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447V10.6447C1.20312 10.6447 1.20312 10.6447 1.20312 10.6447C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446V10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446V10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446V10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446V10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6446C1.20312 10.6446 1.20312 10.6446 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445V10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445V10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445V10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445V10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6445 1.20312 10.6445C1.20312 10.6445 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444V10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444V10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444V10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444V10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444V10.6444C1.20312 10.6444 1.20312 10.6444 1.20312 10.6444C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443V10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443V10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443V10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443C1.20312 10.6443 1.20312 10.6443 1.20312 10.6443H0.803125ZM0.803125 10.6452C0.803125 10.6634 0.804218 10.6802 0.80556 10.6945L1.20381 10.6572C1.20328 10.6515 1.20312 10.6476 1.20312 10.6452H0.803125ZM1.2008 10.6366L1.20049 10.6351L0.808258 10.7135L0.80857 10.7151L1.2008 10.6366ZM0.805597 10.6964C0.805284 10.6935 0.804988 10.69 0.804822 10.686C0.804667 10.6823 0.804687 10.6793 0.804687 10.6802H1.20469C1.20469 10.6754 1.20463 10.6655 1.20315 10.6522L0.805597 10.6964ZM1.20469 10.6802V10.679H0.804687V10.6802H1.20469ZM0.805461 10.6965C0.807217 10.7165 0.81017 10.7331 0.811656 10.7417L1.20584 10.6738C1.2042 10.6643 1.20403 10.6627 1.20391 10.6614L0.805461 10.6965ZM1.20674 10.6795L1.20643 10.6773L0.810446 10.7338L0.810759 10.736L1.20674 10.6795ZM0.811157 10.7384C0.812295 10.7452 0.81331 10.751 0.814506 10.7569L1.20674 10.6785C1.20669 10.6783 1.20645 10.6771 1.20572 10.6727L0.811157 10.7384ZM1.20862 10.6895L1.2083 10.6873L0.812321 10.7438L0.812634 10.746L1.20862 10.6895ZM0.814827 10.7578C0.826195 10.8104 0.844106 10.8588 0.867891 10.9034L1.22086 10.7152C1.21464 10.7036 1.20943 10.6901 1.2058 10.6733L0.814827 10.7578ZM1.22326 10.7199L1.22232 10.718L0.864548 10.8969L0.865485 10.8988L1.22326 10.7199ZM0.862189 10.892C0.869384 10.9074 0.875821 10.9178 0.879134 10.9231L1.21836 10.7112C1.2175 10.7098 1.21892 10.712 1.22054 10.7149C1.22233 10.7181 1.22373 10.7208 1.22468 10.7229L0.862189 10.892ZM1.22765 10.7277L1.22671 10.7258L0.868911 10.9047L0.869849 10.9066L1.22765 10.7277ZM0.873793 10.9138C0.879507 10.9239 0.886835 10.9367 0.896072 10.9506L1.22892 10.7287C1.22816 10.7276 1.22674 10.7253 1.22183 10.7167L0.873793 10.9138ZM1.22251 10.7197L1.22157 10.7184L0.901547 10.9584L0.902484 10.9596L1.22251 10.7197ZM0.888791 10.9391C0.895653 10.9509 0.901439 10.959 0.904109 10.9627L1.22964 10.7303C1.22875 10.7291 1.22972 10.7304 1.23088 10.7321C1.23224 10.7342 1.23341 10.7361 1.23433 10.7376L0.888791 10.9391ZM1.22689 10.7265L1.22595 10.7253L0.905922 10.9653L0.906859 10.9665L1.22689 10.7265ZM0.902326 10.9603C0.932297 11.0029 0.96766 11.0415 1.00904 11.075L1.26033 10.7637C1.24983 10.7553 1.23957 10.7445 1.22954 10.7302L0.902326 10.9603ZM0.993279 11.0608L0.993904 11.0614L1.27671 10.7785L1.27609 10.7779L0.993279 11.0608ZM1.02434 11.0864C1.01816 11.0822 1.01314 11.0784 1.00942 11.0754C1.00569 11.0723 1.00273 11.0697 1.0007 11.0678C0.998684 11.066 0.99714 11.0645 0.996356 11.0637C0.995635 11.063 0.995039 11.0624 0.995302 11.0627C0.995329 11.0627 0.996109 11.0635 0.997012 11.0644C0.997987 11.0653 0.999483 11.0668 1.00133 11.0685C1.00495 11.0718 1.01078 11.077 1.01841 11.0828L1.25846 10.7628C1.26546 10.7681 1.2707 10.7728 1.27377 10.7756C1.27657 10.7782 1.27883 10.7805 1.27821 10.7799C1.27817 10.7798 1.27794 10.7796 1.27767 10.7793C1.27739 10.7791 1.27694 10.7786 1.2764 10.7781C1.27537 10.7771 1.27359 10.7753 1.27133 10.7733C1.26907 10.7712 1.26586 10.7683 1.2619 10.7651C1.25794 10.7619 1.25269 10.7579 1.24627 10.7536L1.02434 11.0864ZM0.997028 11.0642L0.99734 11.0645L1.28015 10.7817L1.27984 10.7814L0.997028 11.0642ZM1.01471 11.08C1.1058 11.152 1.22117 11.1964 1.34626 11.1993L1.3556 10.7994C1.32006 10.7986 1.28793 10.7861 1.26278 10.7662L1.01471 11.08ZM1.35093 11.1994H1.35124V10.7994H1.35093V11.1994ZM1.31835 11.1967C1.33293 11.1991 1.34495 11.1994 1.3488 11.1996C1.35364 11.1997 1.35826 11.1997 1.35905 11.1997V10.7997C1.35672 10.7997 1.35836 10.7997 1.36055 10.7997C1.36191 10.7998 1.36456 10.7999 1.36802 10.8001C1.3713 10.8004 1.377 10.8009 1.38413 10.8021L1.31835 11.1967ZM1.35905 11.1997H4.2149V10.7997H1.35905V11.1997ZM4.2149 11.1997C4.2149 11.1997 4.21491 11.1997 4.21491 11.1997C4.21491 11.1997 4.21492 11.1997 4.21492 11.1997C4.21492 11.1997 4.21492 11.1997 4.21493 11.1997C4.21493 11.1997 4.21493 11.1997 4.21494 11.1997C4.21494 11.1997 4.21494 11.1997 4.21495 11.1997C4.21495 11.1997 4.21495 11.1997 4.21495 11.1997C4.21496 11.1997 4.21496 11.1997 4.21496 11.1997C4.21497 11.1997 4.21497 11.1997 4.21497 11.1997C4.21498 11.1997 4.21498 11.1997 4.21498 11.1997C4.21499 11.1997 4.21499 11.1997 4.21499 11.1997C4.21499 11.1997 4.215 11.1997 4.215 11.1997C4.215 11.1997 4.21501 11.1997 4.21501 11.1997C4.21501 11.1997 4.21502 11.1997 4.21502 11.1997C4.21502 11.1997 4.21502 11.1997 4.21503 11.1997C4.21503 11.1997 4.21503 11.1997 4.21504 11.1997C4.21504 11.1997 4.21504 11.1997 4.21505 11.1997C4.21505 11.1997 4.21505 11.1997 4.21506 11.1997C4.21506 11.1997 4.21506 11.1997 4.21506 11.1997C4.21507 11.1997 4.21507 11.1997 4.21507 11.1997C4.21508 11.1997 4.21508 11.1997 4.21508 11.1997C4.21509 11.1997 4.21509 11.1997 4.21509 11.1997C4.2151 11.1997 4.2151 11.1997 4.2151 11.1997C4.2151 11.1997 4.21511 11.1997 4.21511 11.1997C4.21511 11.1997 4.21512 11.1997 4.21512 11.1997C4.21512 11.1997 4.21513 11.1997 4.21513 11.1997C4.21513 11.1997 4.21513 11.1997 4.21514 11.1997C4.21514 11.1997 4.21514 11.1997 4.21515 11.1997C4.21515 11.1997 4.21515 11.1997 4.21516 11.1997C4.21516 11.1997 4.21516 11.1997 4.21517 11.1997C4.21517 11.1997 4.21517 11.1997 4.21517 11.1997C4.21518 11.1997 4.21518 11.1997 4.21518 11.1997C4.21519 11.1997 4.21519 11.1997 4.21519 11.1997C4.2152 11.1997 4.2152 11.1997 4.2152 11.1997C4.2152 11.1997 4.21521 11.1997 4.21521 11.1997C4.21521 11.1997 4.21522 11.1997 4.21522 11.1997C4.21522 11.1997 4.21523 11.1997 4.21523 11.1997C4.21523 11.1997 4.21524 11.1997 4.21524 11.1997C4.21524 11.1997 4.21524 11.1997 4.21525 11.1997C4.21525 11.1997 4.21525 11.1997 4.21526 11.1997C4.21526 11.1997 4.21526 11.1997 4.21527 11.1997C4.21527 11.1997 4.21527 11.1997 4.21528 11.1997C4.21528 11.1997 4.21528 11.1997 4.21528 11.1997C4.21529 11.1997 4.21529 11.1997 4.21529 11.1997C4.2153 11.1997 4.2153 11.1997 4.2153 11.1997C4.21531 11.1997 4.21531 11.1997 4.21531 11.1997C4.21532 11.1997 4.21532 11.1997 4.21532 11.1997C4.21532 11.1997 4.21533 11.1997 4.21533 11.1997C4.21533 11.1997 4.21534 11.1997 4.21534 11.1997C4.21534 11.1997 4.21535 11.1997 4.21535 11.1997C4.21535 11.1997 4.21535 11.1997 4.21536 11.1997C4.21536 11.1997 4.21536 11.1997 4.21537 11.1997C4.21537 11.1997 4.21537 11.1997 4.21538 11.1997C4.21538 11.1997 4.21538 11.1997 4.21539 11.1997C4.21539 11.1997 4.21539 11.1997 4.21539 11.1997C4.2154 11.1997 4.2154 11.1997 4.2154 11.1997C4.21541 11.1997 4.21541 11.1997 4.21541 11.1997C4.21542 11.1997 4.21542 11.1997 4.21542 11.1997C4.21543 11.1997 4.21543 11.1997 4.21543 11.1997C4.21543 11.1997 4.21544 11.1997 4.21544 11.1997C4.21544 11.1997 4.21545 11.1997 4.21545 11.1997C4.21545 11.1997 4.21546 11.1997 4.21546 11.1997C4.21546 11.1997 4.21546 11.1997 4.21547 11.1997C4.21547 11.1997 4.21547 11.1997 4.21548 11.1997C4.21548 11.1997 4.21548 11.1997 4.21549 11.1997C4.21549 11.1997 4.21549 11.1997 4.2155 11.1997C4.2155 11.1997 4.2155 11.1997 4.2155 11.1997C4.21551 11.1997 4.21551 11.1997 4.21551 11.1997C4.21552 11.1997 4.21552 11.1997 4.21552 11.1997C4.21553 11.1997 4.21553 11.1997 4.21553 11.1997C4.21554 11.1997 4.21554 11.1997 4.21554 11.1997C4.21554 11.1997 4.21555 11.1997 4.21555 11.1997C4.21555 11.1997 4.21556 11.1997 4.21556 11.1997C4.21556 11.1997 4.21557 11.1997 4.21557 11.1997C4.21557 11.1997 4.21558 11.1997 4.21558 11.1997C4.21558 11.1997 4.21558 11.1997 4.21559 11.1997C4.21559 11.1997 4.21559 11.1997 4.2156 11.1997C4.2156 11.1997 4.2156 11.1997 4.21561 11.1997C4.21561 11.1997 4.21561 11.1997 4.21562 11.1997C4.21562 11.1997 4.21562 11.1997 4.21562 11.1997C4.21563 11.1997 4.21563 11.1997 4.21563 11.1997C4.21564 11.1997 4.21564 11.1997 4.21564 11.1997C4.21565 11.1997 4.21565 11.1997 4.21565 11.1997C4.21565 11.1997 4.21566 11.1997 4.21566 11.1997C4.21566 11.1997 4.21567 11.1997 4.21567 11.1997C4.21567 11.1997 4.21568 11.1997 4.21568 11.1997C4.21568 11.1997 4.21569 11.1997 4.21569 11.1997C4.21569 11.1997 4.21569 11.1997 4.2157 11.1997C4.2157 11.1997 4.2157 11.1997 4.21571 11.1997C4.21571 11.1997 4.21571 11.1997 4.21572 11.1997C4.21572 11.1997 4.21572 11.1997 4.21573 11.1997C4.21573 11.1997 4.21573 11.1997 4.21573 11.1997C4.21574 11.1997 4.21574 11.1997 4.21574 11.1997C4.21575 11.1997 4.21575 11.1997 4.21575 11.1997C4.21576 11.1997 4.21576 11.1997 4.21576 11.1997C4.21577 11.1997 4.21577 11.1997 4.21577 11.1997C4.21577 11.1997 4.21578 11.1997 4.21578 11.1997C4.21578 11.1997 4.21579 11.1997 4.21579 11.1997C4.21579 11.1997 4.2158 11.1997 4.2158 11.1997C4.2158 11.1997 4.21581 11.1997 4.21581 11.1997C4.21581 11.1997 4.21581 11.1997 4.21582 11.1997C4.21582 11.1997 4.21582 11.1997 4.21583 11.1997C4.21583 11.1997 4.21583 11.1997 4.21584 11.1997C4.21584 11.1997 4.21584 11.1997 4.21585 11.1997C4.21585 11.1997 4.21585 11.1997 4.21585 11.1997C4.21586 11.1997 4.21586 11.1997 4.21586 11.1997C4.21587 11.1997 4.21587 11.1997 4.21587 11.1997C4.21588 11.1997 4.21588 11.1997 4.21588 11.1997C4.21589 11.1997 4.21589 11.1997 4.21589 11.1997C4.21589 11.1997 4.2159 11.1997 4.2159 11.1997C4.2159 11.1997 4.21591 11.1997 4.21591 11.1997C4.21591 11.1997 4.21592 11.1997 4.21592 11.1997C4.21592 11.1997 4.21593 11.1997 4.21593 11.1997C4.21593 11.1997 4.21593 11.1997 4.21594 11.1997C4.21594 11.1997 4.21594 11.1997 4.21595 11.1997C4.21595 11.1997 4.21595 11.1997 4.21596 11.1997C4.21596 11.1997 4.21596 11.1997 4.21597 11.1997C4.21597 11.1997 4.21597 11.1997 4.21597 11.1997C4.21598 11.1997 4.21598 11.1997 4.21598 11.1997C4.21599 11.1997 4.21599 11.1997 4.21599 11.1997C4.216 11.1997 4.216 11.1997 4.216 11.1997C4.21601 11.1997 4.21601 11.1997 4.21601 11.1997C4.21601 11.1997 4.21602 11.1997 4.21602 11.1997C4.21602 11.1997 4.21603 11.1997 4.21603 11.1997C4.21603 11.1997 4.21604 11.1997 4.21604 11.1997C4.21604 11.1997 4.21605 11.1997 4.21605 11.1997C4.21605 11.1997 4.21605 11.1997 4.21606 11.1997C4.21606 11.1997 4.21606 11.1997 4.21607 11.1997C4.21607 11.1997 4.21607 11.1997 4.21608 11.1997C4.21608 11.1997 4.21608 11.1997 4.21609 11.1997C4.21609 11.1997 4.21609 11.1997 4.21609 11.1997C4.2161 11.1997 4.2161 11.1997 4.2161 11.1997C4.21611 11.1997 4.21611 11.1997 4.21611 11.1997C4.21612 11.1997 4.21612 11.1997 4.21612 11.1997C4.21613 11.1997 4.21613 11.1997 4.21613 11.1997C4.21614 11.1997 4.21614 11.1997 4.21614 11.1997C4.21614 11.1997 4.21615 11.1997 4.21615 11.1997C4.21615 11.1997 4.21616 11.1997 4.21616 11.1997C4.21616 11.1997 4.21617 11.1997 4.21617 11.1997C4.21617 11.1997 4.21618 11.1997 4.21618 11.1997C4.21618 11.1997 4.21618 11.1997 4.21619 11.1997C4.21619 11.1997 4.21619 11.1997 4.2162 11.1997C4.2162 11.1997 4.2162 11.1997 4.21621 11.1997C4.21621 11.1997 4.21621 11.1997 4.21622 11.1997C4.21622 11.1997 4.21622 11.1997 4.21623 11.1997C4.21623 11.1997 4.21623 11.1997 4.21623 11.1997C4.21624 11.1997 4.21624 11.1997 4.21624 11.1997C4.21625 11.1997 4.21625 11.1997 4.21625 11.1997C4.21626 11.1997 4.21626 11.1997 4.21626 11.1997C4.21627 11.1997 4.21627 11.1997 4.21627 11.1997C4.21627 11.1997 4.21628 11.1997 4.21628 11.1997C4.21628 11.1997 4.21629 11.1997 4.21629 11.1997C4.21629 11.1997 4.2163 11.1997 4.2163 11.1997C4.2163 11.1997 4.21631 11.1997 4.21631 11.1997C4.21631 11.1997 4.21632 11.1997 4.21632 11.1997C4.21632 11.1997 4.21632 11.1997 4.21633 11.1997C4.21633 11.1997 4.21633 11.1997 4.21634 11.1997C4.21634 11.1997 4.21634 11.1997 4.21635 11.1997C4.21635 11.1997 4.21635 11.1997 4.21636 11.1997C4.21636 11.1997 4.21636 11.1997 4.21636 11.1997C4.21637 11.1997 4.21637 11.1997 4.21637 11.1997C4.21638 11.1997 4.21638 11.1997 4.21638 11.1997C4.21639 11.1997 4.21639 11.1997 4.21639 11.1997C4.2164 11.1997 4.2164 11.1997 4.2164 11.1997C4.21641 11.1997 4.21641 11.1997 4.21641 11.1997C4.21641 11.1997 4.21642 11.1997 4.21642 11.1997C4.21642 11.1997 4.21643 11.1997 4.21643 11.1997C4.21643 11.1997 4.21644 11.1997 4.21644 11.1997C4.21644 11.1997 4.21645 11.1997 4.21645 11.1997C4.21645 11.1997 4.21646 11.1997 4.21646 11.1997C4.21646 11.1997 4.21646 11.1997 4.21647 11.1997C4.21647 11.1997 4.21647 11.1997 4.21648 11.1997C4.21648 11.1997 4.21648 11.1997 4.21649 11.1997C4.21649 11.1997 4.21649 11.1997 4.2165 11.1997C4.2165 11.1997 4.2165 11.1997 4.21651 11.1997C4.21651 11.1997 4.21651 11.1997 4.21651 11.1997C4.21652 11.1997 4.21652 11.1997 4.21652 11.1997C4.21653 11.1997 4.21653 11.1997 4.21653 11.1997C4.21654 11.1997 4.21654 11.1997 4.21654 11.1997C4.21655 11.1997 4.21655 11.1997 4.21655 11.1997C4.21656 11.1997 4.21656 11.1997 4.21656 11.1997C4.21656 11.1997 4.21657 11.1997 4.21657 11.1997C4.21657 11.1997 4.21658 11.1997 4.21658 11.1997C4.21658 11.1997 4.21659 11.1997 4.21659 11.1997C4.21659 11.1997 4.2166 11.1997 4.2166 11.1997C4.2166 11.1997 4.21661 11.1997 4.21661 11.1997C4.21661 11.1997 4.21661 11.1997 4.21662 11.1997C4.21662 11.1997 4.21662 11.1997 4.21663 11.1997C4.21663 11.1997 4.21663 11.1997 4.21664 11.1997C4.21664 11.1997 4.21664 11.1997 4.21665 11.1997C4.21665 11.1997 4.21665 11.1997 4.21666 11.1997C4.21666 11.1997 4.21666 11.1997 4.21666 11.1997C4.21667 11.1997 4.21667 11.1997 4.21667 11.1997C4.21668 11.1997 4.21668 11.1997 4.21668 11.1997C4.21669 11.1997 4.21669 11.1997 4.21669 11.1997C4.2167 11.1997 4.2167 11.1997 4.2167 11.1997C4.21671 11.1997 4.21671 11.1997 4.21671 11.1997C4.21671 11.1997 4.21672 11.1997 4.21672 11.1997C4.21672 11.1997 4.21673 11.1997 4.21673 11.1997C4.21673 11.1997 4.21674 11.1997 4.21674 11.1997C4.21674 11.1997 4.21675 11.1997 4.21675 11.1997C4.21675 11.1997 4.21676 11.1997 4.21676 11.1997C4.21676 11.1997 4.21677 11.1997 4.21677 11.1997C4.21677 11.1997 4.21677 11.1997 4.21678 11.1997C4.21678 11.1997 4.21678 11.1997 4.21679 11.1997C4.21679 11.1997 4.21679 11.1997 4.2168 11.1997C4.2168 11.1997 4.2168 11.1997 4.21681 11.1997C4.21681 11.1997 4.21681 11.1997 4.21682 11.1997C4.21682 11.1997 4.21682 11.1997 4.21683 11.1997C4.21683 11.1997 4.21683 11.1997 4.21683 11.1997C4.21684 11.1997 4.21684 11.1997 4.21684 11.1997C4.21685 11.1997 4.21685 11.1997 4.21685 11.1997C4.21686 11.1997 4.21686 11.1997 4.21686 11.1997C4.21687 11.1997 4.21687 11.1997 4.21687 11.1997C4.21688 11.1997 4.21688 11.1997 4.21688 11.1997C4.21689 11.1997 4.21689 11.1997 4.21689 11.1997C4.21689 11.1997 4.2169 11.1997 4.2169 11.1997C4.2169 11.1997 4.21691 11.1997 4.21691 11.1997C4.21691 11.1997 4.21692 11.1997 4.21692 11.1997C4.21692 11.1997 4.21693 11.1997 4.21693 11.1997C4.21693 11.1997 4.21694 11.1997 4.21694 11.1997C4.21694 11.1997 4.21695 11.1997 4.21695 11.1997C4.21695 11.1997 4.21695 11.1997 4.21696 11.1997C4.21696 11.1997 4.21696 11.1997 4.21697 11.1997C4.21697 11.1997 4.21697 11.1997 4.21698 11.1997C4.21698 11.1997 4.21698 11.1997 4.21699 11.1997C4.21699 11.1997 4.21699 11.1997 4.217 11.1997C4.217 11.1997 4.217 11.1997 4.21701 11.1997C4.21701 11.1997 4.21701 11.1997 4.21701 11.1997C4.21702 11.1997 4.21702 11.1997 4.21702 11.1997C4.21703 11.1997 4.21703 11.1997 4.21703 11.1997C4.21704 11.1997 4.21704 11.1997 4.21704 11.1997C4.21705 11.1997 4.21705 11.1997 4.21705 11.1997C4.21706 11.1997 4.21706 11.1997 4.21706 11.1997C4.21707 11.1997 4.21707 11.1997 4.21707 11.1997C4.21708 11.1997 4.21708 11.1997 4.21708 11.1997C4.21708 11.1997 4.21709 11.1997 4.21709 11.1997C4.21709 11.1997 4.2171 11.1997 4.2171 11.1997C4.2171 11.1997 4.21711 11.1997 4.21711 11.1997C4.21711 11.1997 4.21712 11.1997 4.21712 11.1997C4.21712 11.1997 4.21713 11.1997 4.21713 11.1997C4.21713 11.1997 4.21714 11.1997 4.21714 11.1997C4.21714 11.1997 4.21715 11.1997 4.21715 11.1997C4.21715 11.1997 4.21715 11.1997 4.21716 11.1997C4.21716 11.1997 4.21716 11.1997 4.21717 11.1997C4.21717 11.1997 4.21717 11.1997 4.21718 11.1997C4.21718 11.1997 4.21718 11.1997 4.21719 11.1997C4.21719 11.1997 4.21719 11.1997 4.2172 11.1997C4.2172 11.1997 4.2172 11.1997 4.21721 11.1997C4.21721 11.1997 4.21721 11.1997 4.21722 11.1997C4.21722 11.1997 4.21722 11.1997 4.21723 11.1997C4.21723 11.1997 4.21723 11.1997 4.21723 11.1997C4.21724 11.1997 4.21724 11.1997 4.21724 11.1997C4.21725 11.1997 4.21725 11.1997 4.21725 11.1997C4.21726 11.1997 4.21726 11.1997 4.21726 11.1997C4.21727 11.1997 4.21727 11.1997 4.21727 11.1997C4.21728 11.1997 4.21728 11.1997 4.21728 11.1997C4.21729 11.1997 4.21729 11.1997 4.21729 11.1997C4.2173 11.1997 4.2173 11.1997 4.2173 11.1997C4.21731 11.1997 4.21731 11.1997 4.21731 11.1997C4.21731 11.1997 4.21732 11.1997 4.21732 11.1997C4.21732 11.1997 4.21733 11.1997 4.21733 11.1997C4.21733 11.1997 4.21734 11.1997 4.21734 11.1997C4.21734 11.1997 4.21735 11.1997 4.21735 11.1997C4.21735 11.1997 4.21736 11.1997 4.21736 11.1997C4.21736 11.1997 4.21737 11.1997 4.21737 11.1997C4.21737 11.1997 4.21738 11.1997 4.21738 11.1997C4.21738 11.1997 4.21739 11.1997 4.21739 11.1997C4.21739 11.1997 4.2174 11.1997 4.2174 11.1997C4.2174 11.1997 4.2174 11.1997 4.21741 11.1997C4.21741 11.1997 4.21741 11.1997 4.21742 11.1997C4.21742 11.1997 4.21742 11.1997 4.21743 11.1997C4.21743 11.1997 4.21743 11.1997 4.21744 11.1997C4.21744 11.1997 4.21744 11.1997 4.21745 11.1997C4.21745 11.1997 4.21745 11.1997 4.21746 11.1997C4.21746 11.1997 4.21746 11.1997 4.21747 11.1997C4.21747 11.1997 4.21747 11.1997 4.21748 11.1997C4.21748 11.1997 4.21748 11.1997 4.21749 11.1997C4.21749 11.1997 4.21749 11.1997 4.21749 11.1997C4.2175 11.1997 4.2175 11.1997 4.2175 11.1997C4.21751 11.1997 4.21751 11.1997 4.21751 11.1997C4.21752 11.1997 4.21752 11.1997 4.21752 11.1997C4.21753 11.1997 4.21753 11.1997 4.21753 11.1997C4.21754 11.1997 4.21754 11.1997 4.21754 11.1997C4.21755 11.1997 4.21755 11.1997 4.21755 11.1997C4.21756 11.1997 4.21756 11.1997 4.21756 11.1997C4.21757 11.1997 4.21757 11.1997 4.21757 11.1997C4.21758 11.1997 4.21758 11.1997 4.21758 11.1997C4.21759 11.1997 4.21759 11.1997 4.21759 11.1997C4.2176 11.1997 4.2176 11.1997 4.2176 11.1997C4.21761 11.1997 4.21761 11.1997 4.21761 11.1997C4.21761 11.1997 4.21762 11.1997 4.21762 11.1997C4.21762 11.1997 4.21763 11.1997 4.21763 11.1997C4.21763 11.1997 4.21764 11.1997 4.21764 11.1997C4.21764 11.1997 4.21765 11.1997 4.21765 11.1997C4.21765 11.1997 4.21766 11.1997 4.21766 11.1997C4.21766 11.1997 4.21767 11.1997 4.21767 11.1997C4.21767 11.1997 4.21768 11.1997 4.21768 11.1997C4.21768 11.1997 4.21769 11.1997 4.21769 11.1997C4.21769 11.1997 4.2177 11.1997 4.2177 11.1997C4.2177 11.1997 4.21771 11.1997 4.21771 11.1997C4.21771 11.1997 4.21772 11.1997 4.21772 11.1997C4.21772 11.1997 4.21773 11.1997 4.21773 11.1997C4.21773 11.1997 4.21774 11.1997 4.21774 11.1997C4.21774 11.1997 4.21775 11.1997 4.21775 11.1997C4.21775 11.1997 4.21776 11.1997 4.21776 11.1997C4.21776 11.1997 4.21776 11.1997 4.21777 11.1997C4.21777 11.1997 4.21777 11.1997 4.21778 11.1997C4.21778 11.1997 4.21778 11.1997 4.21779 11.1997C4.21779 11.1997 4.21779 11.1997 4.2178 11.1997C4.2178 11.1997 4.2178 11.1997 4.21781 11.1997C4.21781 11.1997 4.21781 11.1997 4.21782 11.1997C4.21782 11.1997 4.21782 11.1997 4.21783 11.1997C4.21783 11.1997 4.21783 11.1997 4.21784 11.1997C4.21784 11.1997 4.21784 11.1997 4.21785 11.1997C4.21785 11.1997 4.21785 11.1997 4.21786 11.1997C4.21786 11.1997 4.21786 11.1997 4.21787 11.1997C4.21787 11.1997 4.21787 11.1997 4.21788 11.1997C4.21788 11.1997 4.21788 11.1997 4.21789 11.1997C4.21789 11.1997 4.21789 11.1997 4.2179 11.1997C4.2179 11.1997 4.2179 11.1997 4.21791 11.1997C4.21791 11.1997 4.21791 11.1997 4.21792 11.1997C4.21792 11.1997 4.21792 11.1997 4.21793 11.1997C4.21793 11.1997 4.21793 11.1997 4.21794 11.1997C4.21794 11.1997 4.21794 11.1997 4.21795 11.1997C4.21795 11.1997 4.21795 11.1997 4.21796 11.1997C4.21796 11.1997 4.21796 11.1997 4.21797 11.1997C4.21797 11.1997 4.21797 11.1997 4.21798 11.1997C4.21798 11.1997 4.21798 11.1997 4.21798 11.1997C4.21799 11.1997 4.21799 11.1997 4.21799 11.1997C4.218 11.1997 4.218 11.1997 4.218 11.1997C4.21801 11.1997 4.21801 11.1997 4.21801 11.1997C4.21802 11.1997 4.21802 11.1997 4.21802 11.1997C4.21803 11.1997 4.21803 11.1997 4.21803 11.1997C4.21804 11.1997 4.21804 11.1997 4.21804 11.1997C4.21805 11.1997 4.21805 11.1997 4.21805 11.1997C4.21806 11.1997 4.21806 11.1997 4.21806 11.1997C4.21807 11.1997 4.21807 11.1997 4.21807 11.1997C4.21808 11.1997 4.21808 11.1997 4.21808 11.1997C4.21809 11.1997 4.21809 11.1997 4.21809 11.1997C4.2181 11.1997 4.2181 11.1997 4.2181 11.1997C4.21811 11.1997 4.21811 11.1997 4.21811 11.1997C4.21812 11.1997 4.21812 11.1997 4.21812 11.1997C4.21813 11.1997 4.21813 11.1997 4.21813 11.1997C4.21814 11.1997 4.21814 11.1997 4.21814 11.1997C4.21815 11.1997 4.21815 11.1997 4.21815 11.1997C4.21816 11.1997 4.21816 11.1997 4.21816 11.1997C4.21817 11.1997 4.21817 11.1997 4.21817 11.1997C4.21818 11.1997 4.21818 11.1997 4.21818 11.1997C4.21819 11.1997 4.21819 11.1997 4.21819 11.1997C4.2182 11.1997 4.2182 11.1997 4.2182 11.1997C4.21821 11.1997 4.21821 11.1997 4.21821 11.1997C4.21822 11.1997 4.21822 11.1997 4.21822 11.1997C4.21823 11.1997 4.21823 11.1997 4.21823 11.1997C4.21824 11.1997 4.21824 11.1997 4.21824 11.1997C4.21825 11.1997 4.21825 11.1997 4.21825 11.1997C4.21826 11.1997 4.21826 11.1997 4.21826 11.1997C4.21827 11.1997 4.21827 11.1997 4.21827 11.1997C4.21828 11.1997 4.21828 11.1997 4.21828 11.1997C4.21829 11.1997 4.21829 11.1997 4.21829 11.1997C4.2183 11.1997 4.2183 11.1997 4.2183 11.1997C4.21831 11.1997 4.21831 11.1997 4.21831 11.1997C4.21832 11.1997 4.21832 11.1997 4.21832 11.1997C4.21833 11.1997 4.21833 11.1997 4.21833 11.1997C4.21834 11.1997 4.21834 11.1997 4.21834 11.1997C4.21835 11.1997 4.21835 11.1997 4.21835 11.1997C4.21836 11.1997 4.21836 11.1997 4.21836 11.1997C4.21837 11.1997 4.21837 11.1997 4.21837 11.1997C4.21838 11.1997 4.21838 11.1997 4.21838 11.1997C4.21839 11.1997 4.21839 11.1997 4.2184 11.1997C4.2184 11.1997 4.2184 11.1997 4.21841 11.1997C4.21841 11.1997 4.21841 11.1997 4.21842 11.1997C4.21842 11.1997 4.21842 11.1997 4.21843 11.1997C4.21843 11.1997 4.21843 11.1997 4.21844 11.1997C4.21844 11.1997 4.21844 11.1997 4.21845 11.1997C4.21845 11.1997 4.21845 11.1997 4.21846 11.1997C4.21846 11.1997 4.21846 11.1997 4.21847 11.1997C4.21847 11.1997 4.21847 11.1997 4.21848 11.1997C4.21848 11.1997 4.21848 11.1997 4.21849 11.1997C4.21849 11.1997 4.21849 11.1997 4.2185 11.1997C4.2185 11.1997 4.2185 11.1997 4.21851 11.1997C4.21851 11.1997 4.21851 11.1997 4.21852 11.1997C4.21852 11.1997 4.21852 11.1997 4.21853 11.1997C4.21853 11.1997 4.21853 11.1997 4.21854 11.1997C4.21854 11.1997 4.21854 11.1997 4.21855 11.1997C4.21855 11.1997 4.21855 11.1997 4.21856 11.1997C4.21856 11.1997 4.21856 11.1997 4.21857 11.1997C4.21857 11.1997 4.21857 11.1997 4.21858 11.1997C4.21858 11.1997 4.21858 11.1997 4.21859 11.1997C4.21859 11.1997 4.21859 11.1997 4.2186 11.1997C4.2186 11.1997 4.21861 11.1997 4.21861 11.1997C4.21861 11.1997 4.21862 11.1997 4.21862 11.1997C4.21862 11.1997 4.21863 11.1997 4.21863 11.1997C4.21863 11.1997 4.21864 11.1997 4.21864 11.1997C4.21864 11.1997 4.21865 11.1997 4.21865 11.1997C4.21865 11.1997 4.21866 11.1997 4.21866 11.1997C4.21866 11.1997 4.21867 11.1997 4.21867 11.1997C4.21867 11.1997 4.21868 11.1997 4.21868 11.1997C4.21868 11.1997 4.21869 11.1997 4.21869 11.1997C4.21869 11.1997 4.2187 11.1997 4.2187 11.1997C4.2187 11.1997 4.21871 11.1997 4.21871 11.1997C4.21871 11.1997 4.21872 11.1997 4.21872 11.1997C4.21872 11.1997 4.21873 11.1997 4.21873 11.1997C4.21873 11.1997 4.21874 11.1997 4.21874 11.1997C4.21875 11.1997 4.21875 11.1997 4.21875 11.1997C4.21876 11.1997 4.21876 11.1997 4.21876 11.1997C4.21877 11.1997 4.21877 11.1997 4.21877 11.1997C4.21878 11.1997 4.21878 11.1997 4.21878 11.1997C4.21879 11.1997 4.21879 11.1997 4.21879 11.1997C4.2188 11.1997 4.2188 11.1997 4.2188 11.1997C4.21881 11.1997 4.21881 11.1997 4.21881 11.1997C4.21882 11.1997 4.21882 11.1997 4.21882 11.1997C4.21883 11.1997 4.21883 11.1997 4.21883 11.1997C4.21884 11.1997 4.21884 11.1997 4.21884 11.1997C4.21885 11.1997 4.21885 11.1997 4.21886 11.1997C4.21886 11.1997 4.21886 11.1997 4.21887 11.1997C4.21887 11.1997 4.21887 11.1997 4.21888 11.1997C4.21888 11.1997 4.21888 11.1997 4.21889 11.1997C4.21889 11.1997 4.21889 11.1997 4.2189 11.1997C4.2189 11.1997 4.2189 11.1997 4.21891 11.1997C4.21891 11.1997 4.21891 11.1997 4.21892 11.1997C4.21892 11.1997 4.21892 11.1997 4.21893 11.1997C4.21893 11.1997 4.21894 11.1997 4.21894 11.1997C4.21894 11.1997 4.21895 11.1997 4.21895 11.1997C4.21895 11.1997 4.21896 11.1997 4.21896 11.1997C4.21896 11.1997 4.21897 11.1997 4.21897 11.1997C4.21897 11.1997 4.21898 11.1997 4.21898 11.1997C4.21898 11.1997 4.21899 11.1997 4.21899 11.1997C4.21899 11.1997 4.219 11.1997 4.219 11.1997C4.219 11.1997 4.21901 11.1997 4.21901 11.1997C4.21901 11.1997 4.21902 11.1997 4.21902 11.1997C4.21903 11.1997 4.21903 11.1997 4.21903 11.1997C4.21904 11.1997 4.21904 11.1997 4.21904 11.1997C4.21905 11.1997 4.21905 11.1997 4.21905 11.1997C4.21906 11.1997 4.21906 11.1997 4.21906 11.1997C4.21907 11.1997 4.21907 11.1997 4.21907 11.1997C4.21908 11.1997 4.21908 11.1997 4.21908 11.1997C4.21909 11.1997 4.21909 11.1997 4.21909 11.1997C4.2191 11.1997 4.2191 11.1997 4.21911 11.1997C4.21911 11.1997 4.21911 11.1997 4.21912 11.1997C4.21912 11.1997 4.21912 11.1997 4.21913 11.1997C4.21913 11.1997 4.21913 11.1997 4.21914 11.1997C4.21914 11.1997 4.21914 11.1997 4.21915 11.1997C4.21915 11.1997 4.21915 11.1997 4.21916 11.1997C4.21916 11.1997 4.21917 11.1997 4.21917 11.1997C4.21917 11.1997 4.21918 11.1997 4.21918 11.1997C4.21918 11.1997 4.21919 11.1997 4.21919 11.1997C4.21919 11.1997 4.2192 11.1997 4.2192 11.1997C4.2192 11.1997 4.21921 11.1997 4.21921 11.1997C4.21921 11.1997 4.21922 11.1997 4.21922 11.1997C4.21922 11.1997 4.21923 11.1997 4.21923 11.1997C4.21924 11.1997 4.21924 11.1997 4.21924 11.1997C4.21925 11.1997 4.21925 11.1997 4.21925 11.1997C4.21926 11.1997 4.21926 11.1997 4.21926 11.1997C4.21927 11.1997 4.21927 11.1997 4.21927 11.1997C4.21928 11.1997 4.21928 11.1997 4.21928 11.1997C4.21929 11.1997 4.21929 11.1997 4.2193 11.1997C4.2193 11.1997 4.2193 11.1997 4.21931 11.1997C4.21931 11.1997 4.21931 11.1997 4.21932 11.1997C4.21932 11.1997 4.21932 11.1997 4.21933 11.1997C4.21933 11.1997 4.21933 11.1997 4.21934 11.1997C4.21934 11.1997 4.21935 11.1997 4.21935 11.1997C4.21935 11.1997 4.21936 11.1997 4.21936 11.1997C4.21936 11.1997 4.21937 11.1997 4.21937 11.1997C4.21937 11.1997 4.21938 11.1997 4.21938 11.1997C4.21938 11.1997 4.21939 11.1997 4.21939 11.1997C4.21939 11.1997 4.2194 11.1997 4.2194 11.1997C4.21941 11.1997 4.21941 11.1997 4.21941 11.1997C4.21942 11.1997 4.21942 11.1997 4.21942 11.1997C4.21943 11.1997 4.21943 11.1997 4.21943 11.1997C4.21944 11.1997 4.21944 11.1997 4.21944 11.1997C4.21945 11.1997 4.21945 11.1997 4.21946 11.1997C4.21946 11.1997 4.21946 11.1997 4.21947 11.1997C4.21947 11.1997 4.21947 11.1997 4.21948 11.1997C4.21948 11.1997 4.21948 11.1997 4.21949 11.1997C4.21949 11.1997 4.21949 11.1997 4.2195 11.1997C4.2195 11.1997 4.21951 11.1997 4.21951 11.1997C4.21951 11.1997 4.21952 11.1997 4.21952 11.1997C4.21952 11.1997 4.21953 11.1997 4.21953 11.1997C4.21953 11.1997 4.21954 11.1997 4.21954 11.1997C4.21954 11.1997 4.21955 11.1997 4.21955 11.1997C4.21956 11.1997 4.21956 11.1997 4.21956 11.1997C4.21957 11.1997 4.21957 11.1997 4.21957 11.1997C4.21958 11.1997 4.21958 11.1997 4.21958 11.1997C4.21959 11.1997 4.21959 11.1997 4.21959 11.1997C4.2196 11.1997 4.2196 11.1997 4.21961 11.1997C4.21961 11.1997 4.21961 11.1997 4.21962 11.1997C4.21962 11.1997 4.21962 11.1997 4.21963 11.1997C4.21963 11.1997 4.21963 11.1997 4.21964 11.1997C4.21964 11.1997 4.21965 11.1997 4.21965 11.1997C4.21965 11.1997 4.21966 11.1997 4.21966 11.1997C4.21966 11.1997 4.21967 11.1997 4.21967 11.1997C4.21967 11.1997 4.21968 11.1997 4.21968 11.1997C4.21969 11.1997 4.21969 11.1997 4.21969 11.1997C4.2197 11.1997 4.2197 11.1997 4.2197 11.1997C4.21971 11.1997 4.21971 11.1997 4.21971 11.1997C4.21972 11.1997 4.21972 11.1997 4.21972 11.1997C4.21973 11.1997 4.21973 11.1997 4.21974 11.1997C4.21974 11.1997 4.21974 11.1997 4.21975 11.1997C4.21975 11.1997 4.21975 11.1997 4.21976 11.1997C4.21976 11.1997 4.21976 11.1997 4.21977 11.1997C4.21977 11.1997 4.21978 11.1997 4.21978 11.1997C4.21978 11.1997 4.21979 11.1997 4.21979 11.1997C4.21979 11.1997 4.2198 11.1997 4.2198 11.1997C4.21981 11.1997 4.21981 11.1997 4.21981 11.1997C4.21982 11.1997 4.21982 11.1997 4.21982 11.1997C4.21983 11.1997 4.21983 11.1997 4.21983 11.1997C4.21984 11.1997 4.21984 11.1997 4.21985 11.1997C4.21985 11.1997 4.21985 11.1997 4.21986 11.1997C4.21986 11.1997 4.21986 11.1997 4.21987 11.1997C4.21987 11.1997 4.21987 11.1997 4.21988 11.1997C4.21988 11.1997 4.21989 11.1997 4.21989 11.1997C4.21989 11.1997 4.2199 11.1997 4.2199 11.1997V10.7997C4.2199 10.7997 4.21989 10.7997 4.21989 10.7997C4.21989 10.7997 4.21988 10.7997 4.21988 10.7997C4.21987 10.7997 4.21987 10.7997 4.21987 10.7997C4.21986 10.7997 4.21986 10.7997 4.21986 10.7997C4.21985 10.7997 4.21985 10.7997 4.21985 10.7997C4.21984 10.7997 4.21984 10.7997 4.21983 10.7997C4.21983 10.7997 4.21983 10.7997 4.21982 10.7997C4.21982 10.7997 4.21982 10.7997 4.21981 10.7997C4.21981 10.7997 4.21981 10.7997 4.2198 10.7997C4.2198 10.7997 4.21979 10.7997 4.21979 10.7997C4.21979 10.7997 4.21978 10.7997 4.21978 10.7997C4.21978 10.7997 4.21977 10.7997 4.21977 10.7997C4.21976 10.7997 4.21976 10.7997 4.21976 10.7997C4.21975 10.7997 4.21975 10.7997 4.21975 10.7997C4.21974 10.7997 4.21974 10.7997 4.21974 10.7997C4.21973 10.7997 4.21973 10.7997 4.21972 10.7997C4.21972 10.7997 4.21972 10.7997 4.21971 10.7997C4.21971 10.7997 4.21971 10.7997 4.2197 10.7997C4.2197 10.7997 4.2197 10.7997 4.21969 10.7997C4.21969 10.7997 4.21969 10.7997 4.21968 10.7997C4.21968 10.7997 4.21967 10.7997 4.21967 10.7997C4.21967 10.7997 4.21966 10.7997 4.21966 10.7997C4.21966 10.7997 4.21965 10.7997 4.21965 10.7997C4.21965 10.7997 4.21964 10.7997 4.21964 10.7997C4.21963 10.7997 4.21963 10.7997 4.21963 10.7997C4.21962 10.7997 4.21962 10.7997 4.21962 10.7997C4.21961 10.7997 4.21961 10.7997 4.21961 10.7997C4.2196 10.7997 4.2196 10.7997 4.21959 10.7997C4.21959 10.7997 4.21959 10.7997 4.21958 10.7997C4.21958 10.7997 4.21958 10.7997 4.21957 10.7997C4.21957 10.7997 4.21957 10.7997 4.21956 10.7997C4.21956 10.7997 4.21956 10.7997 4.21955 10.7997C4.21955 10.7997 4.21954 10.7997 4.21954 10.7997C4.21954 10.7997 4.21953 10.7997 4.21953 10.7997C4.21953 10.7997 4.21952 10.7997 4.21952 10.7997C4.21952 10.7997 4.21951 10.7997 4.21951 10.7997C4.21951 10.7997 4.2195 10.7997 4.2195 10.7997C4.21949 10.7997 4.21949 10.7997 4.21949 10.7997C4.21948 10.7997 4.21948 10.7997 4.21948 10.7997C4.21947 10.7997 4.21947 10.7997 4.21947 10.7997C4.21946 10.7997 4.21946 10.7997 4.21946 10.7997C4.21945 10.7997 4.21945 10.7997 4.21944 10.7997C4.21944 10.7997 4.21944 10.7997 4.21943 10.7997C4.21943 10.7997 4.21943 10.7997 4.21942 10.7997C4.21942 10.7997 4.21942 10.7997 4.21941 10.7997C4.21941 10.7997 4.21941 10.7997 4.2194 10.7997C4.2194 10.7997 4.21939 10.7997 4.21939 10.7997C4.21939 10.7997 4.21938 10.7997 4.21938 10.7997C4.21938 10.7997 4.21937 10.7997 4.21937 10.7997C4.21937 10.7997 4.21936 10.7997 4.21936 10.7997C4.21936 10.7997 4.21935 10.7997 4.21935 10.7997C4.21935 10.7997 4.21934 10.7997 4.21934 10.7997C4.21933 10.7997 4.21933 10.7997 4.21933 10.7997C4.21932 10.7997 4.21932 10.7997 4.21932 10.7997C4.21931 10.7997 4.21931 10.7997 4.21931 10.7997C4.2193 10.7997 4.2193 10.7997 4.2193 10.7997C4.21929 10.7997 4.21929 10.7997 4.21928 10.7997C4.21928 10.7997 4.21928 10.7997 4.21927 10.7997C4.21927 10.7997 4.21927 10.7997 4.21926 10.7997C4.21926 10.7997 4.21926 10.7997 4.21925 10.7997C4.21925 10.7997 4.21925 10.7997 4.21924 10.7997C4.21924 10.7997 4.21924 10.7997 4.21923 10.7997C4.21923 10.7997 4.21922 10.7997 4.21922 10.7997C4.21922 10.7997 4.21921 10.7997 4.21921 10.7997C4.21921 10.7997 4.2192 10.7997 4.2192 10.7997C4.2192 10.7997 4.21919 10.7997 4.21919 10.7997C4.21919 10.7997 4.21918 10.7997 4.21918 10.7997C4.21918 10.7997 4.21917 10.7997 4.21917 10.7997C4.21917 10.7997 4.21916 10.7997 4.21916 10.7997C4.21915 10.7997 4.21915 10.7997 4.21915 10.7997C4.21914 10.7997 4.21914 10.7997 4.21914 10.7997C4.21913 10.7997 4.21913 10.7997 4.21913 10.7997C4.21912 10.7997 4.21912 10.7997 4.21912 10.7997C4.21911 10.7997 4.21911 10.7997 4.21911 10.7997C4.2191 10.7997 4.2191 10.7997 4.21909 10.7997C4.21909 10.7997 4.21909 10.7997 4.21908 10.7997C4.21908 10.7997 4.21908 10.7997 4.21907 10.7997C4.21907 10.7997 4.21907 10.7997 4.21906 10.7997C4.21906 10.7997 4.21906 10.7997 4.21905 10.7997C4.21905 10.7997 4.21905 10.7997 4.21904 10.7997C4.21904 10.7997 4.21904 10.7997 4.21903 10.7997C4.21903 10.7997 4.21903 10.7997 4.21902 10.7997C4.21902 10.7997 4.21901 10.7997 4.21901 10.7997C4.21901 10.7997 4.219 10.7997 4.219 10.7997C4.219 10.7997 4.21899 10.7997 4.21899 10.7997C4.21899 10.7997 4.21898 10.7997 4.21898 10.7997C4.21898 10.7997 4.21897 10.7997 4.21897 10.7997C4.21897 10.7997 4.21896 10.7997 4.21896 10.7997C4.21896 10.7997 4.21895 10.7997 4.21895 10.7997C4.21895 10.7997 4.21894 10.7997 4.21894 10.7997C4.21894 10.7997 4.21893 10.7997 4.21893 10.7997C4.21892 10.7997 4.21892 10.7997 4.21892 10.7997C4.21891 10.7997 4.21891 10.7997 4.21891 10.7997C4.2189 10.7997 4.2189 10.7997 4.2189 10.7997C4.21889 10.7997 4.21889 10.7997 4.21889 10.7997C4.21888 10.7997 4.21888 10.7997 4.21888 10.7997C4.21887 10.7997 4.21887 10.7997 4.21887 10.7997C4.21886 10.7997 4.21886 10.7997 4.21886 10.7997C4.21885 10.7997 4.21885 10.7997 4.21884 10.7997C4.21884 10.7997 4.21884 10.7997 4.21883 10.7997C4.21883 10.7997 4.21883 10.7997 4.21882 10.7997C4.21882 10.7997 4.21882 10.7997 4.21881 10.7997C4.21881 10.7997 4.21881 10.7997 4.2188 10.7997C4.2188 10.7997 4.2188 10.7997 4.21879 10.7997C4.21879 10.7997 4.21879 10.7997 4.21878 10.7997C4.21878 10.7997 4.21878 10.7997 4.21877 10.7997C4.21877 10.7997 4.21877 10.7997 4.21876 10.7997C4.21876 10.7997 4.21876 10.7997 4.21875 10.7997C4.21875 10.7997 4.21875 10.7997 4.21874 10.7997C4.21874 10.7997 4.21873 10.7997 4.21873 10.7997C4.21873 10.7997 4.21872 10.7997 4.21872 10.7997C4.21872 10.7997 4.21871 10.7997 4.21871 10.7997C4.21871 10.7997 4.2187 10.7997 4.2187 10.7997C4.2187 10.7997 4.21869 10.7997 4.21869 10.7997C4.21869 10.7997 4.21868 10.7997 4.21868 10.7997C4.21868 10.7997 4.21867 10.7997 4.21867 10.7997C4.21867 10.7997 4.21866 10.7997 4.21866 10.7997C4.21866 10.7997 4.21865 10.7997 4.21865 10.7997C4.21865 10.7997 4.21864 10.7997 4.21864 10.7997C4.21864 10.7997 4.21863 10.7997 4.21863 10.7997C4.21863 10.7997 4.21862 10.7997 4.21862 10.7997C4.21862 10.7997 4.21861 10.7997 4.21861 10.7997C4.21861 10.7997 4.2186 10.7997 4.2186 10.7997C4.21859 10.7997 4.21859 10.7997 4.21859 10.7997C4.21858 10.7997 4.21858 10.7997 4.21858 10.7997C4.21857 10.7997 4.21857 10.7997 4.21857 10.7997C4.21856 10.7997 4.21856 10.7997 4.21856 10.7997C4.21855 10.7997 4.21855 10.7997 4.21855 10.7997C4.21854 10.7997 4.21854 10.7997 4.21854 10.7997C4.21853 10.7997 4.21853 10.7997 4.21853 10.7997C4.21852 10.7997 4.21852 10.7997 4.21852 10.7997C4.21851 10.7997 4.21851 10.7997 4.21851 10.7997C4.2185 10.7997 4.2185 10.7997 4.2185 10.7997C4.21849 10.7997 4.21849 10.7997 4.21849 10.7997C4.21848 10.7997 4.21848 10.7997 4.21848 10.7997C4.21847 10.7997 4.21847 10.7997 4.21847 10.7997C4.21846 10.7997 4.21846 10.7997 4.21846 10.7997C4.21845 10.7997 4.21845 10.7997 4.21845 10.7997C4.21844 10.7997 4.21844 10.7997 4.21844 10.7997C4.21843 10.7997 4.21843 10.7997 4.21843 10.7997C4.21842 10.7997 4.21842 10.7997 4.21842 10.7997C4.21841 10.7997 4.21841 10.7997 4.21841 10.7997C4.2184 10.7997 4.2184 10.7997 4.2184 10.7997C4.21839 10.7997 4.21839 10.7997 4.21838 10.7997C4.21838 10.7997 4.21838 10.7997 4.21837 10.7997C4.21837 10.7997 4.21837 10.7997 4.21836 10.7997C4.21836 10.7997 4.21836 10.7997 4.21835 10.7997C4.21835 10.7997 4.21835 10.7997 4.21834 10.7997C4.21834 10.7997 4.21834 10.7997 4.21833 10.7997C4.21833 10.7997 4.21833 10.7997 4.21832 10.7997C4.21832 10.7997 4.21832 10.7997 4.21831 10.7997C4.21831 10.7997 4.21831 10.7997 4.2183 10.7997C4.2183 10.7997 4.2183 10.7997 4.21829 10.7997C4.21829 10.7997 4.21829 10.7997 4.21828 10.7997C4.21828 10.7997 4.21828 10.7997 4.21827 10.7997C4.21827 10.7997 4.21827 10.7997 4.21826 10.7997C4.21826 10.7997 4.21826 10.7997 4.21825 10.7997C4.21825 10.7997 4.21825 10.7997 4.21824 10.7997C4.21824 10.7997 4.21824 10.7997 4.21823 10.7997C4.21823 10.7997 4.21823 10.7997 4.21822 10.7997C4.21822 10.7997 4.21822 10.7997 4.21821 10.7997C4.21821 10.7997 4.21821 10.7997 4.2182 10.7997C4.2182 10.7997 4.2182 10.7997 4.21819 10.7997C4.21819 10.7997 4.21819 10.7997 4.21818 10.7997C4.21818 10.7997 4.21818 10.7997 4.21817 10.7997C4.21817 10.7997 4.21817 10.7997 4.21816 10.7997C4.21816 10.7997 4.21816 10.7997 4.21815 10.7997C4.21815 10.7997 4.21815 10.7997 4.21814 10.7997C4.21814 10.7997 4.21814 10.7997 4.21813 10.7997C4.21813 10.7997 4.21813 10.7997 4.21812 10.7997C4.21812 10.7997 4.21812 10.7997 4.21811 10.7997C4.21811 10.7997 4.21811 10.7997 4.2181 10.7997C4.2181 10.7997 4.2181 10.7997 4.21809 10.7997C4.21809 10.7997 4.21809 10.7997 4.21808 10.7997C4.21808 10.7997 4.21808 10.7997 4.21807 10.7997C4.21807 10.7997 4.21807 10.7997 4.21806 10.7997C4.21806 10.7997 4.21806 10.7997 4.21805 10.7997C4.21805 10.7997 4.21805 10.7997 4.21804 10.7997C4.21804 10.7997 4.21804 10.7997 4.21803 10.7997C4.21803 10.7997 4.21803 10.7997 4.21802 10.7997C4.21802 10.7997 4.21802 10.7997 4.21801 10.7997C4.21801 10.7997 4.21801 10.7997 4.218 10.7997C4.218 10.7997 4.218 10.7997 4.21799 10.7997C4.21799 10.7997 4.21799 10.7997 4.21798 10.7997C4.21798 10.7997 4.21798 10.7997 4.21798 10.7997C4.21797 10.7997 4.21797 10.7997 4.21797 10.7997C4.21796 10.7997 4.21796 10.7997 4.21796 10.7997C4.21795 10.7997 4.21795 10.7997 4.21795 10.7997C4.21794 10.7997 4.21794 10.7997 4.21794 10.7997C4.21793 10.7997 4.21793 10.7997 4.21793 10.7997C4.21792 10.7997 4.21792 10.7997 4.21792 10.7997C4.21791 10.7997 4.21791 10.7997 4.21791 10.7997C4.2179 10.7997 4.2179 10.7997 4.2179 10.7997C4.21789 10.7997 4.21789 10.7997 4.21789 10.7997C4.21788 10.7997 4.21788 10.7997 4.21788 10.7997C4.21787 10.7997 4.21787 10.7997 4.21787 10.7997C4.21786 10.7997 4.21786 10.7997 4.21786 10.7997C4.21785 10.7997 4.21785 10.7997 4.21785 10.7997C4.21784 10.7997 4.21784 10.7997 4.21784 10.7997C4.21783 10.7997 4.21783 10.7997 4.21783 10.7997C4.21782 10.7997 4.21782 10.7997 4.21782 10.7997C4.21781 10.7997 4.21781 10.7997 4.21781 10.7997C4.2178 10.7997 4.2178 10.7997 4.2178 10.7997C4.21779 10.7997 4.21779 10.7997 4.21779 10.7997C4.21778 10.7997 4.21778 10.7997 4.21778 10.7997C4.21777 10.7997 4.21777 10.7997 4.21777 10.7997C4.21776 10.7997 4.21776 10.7997 4.21776 10.7997C4.21776 10.7997 4.21775 10.7997 4.21775 10.7997C4.21775 10.7997 4.21774 10.7997 4.21774 10.7997C4.21774 10.7997 4.21773 10.7997 4.21773 10.7997C4.21773 10.7997 4.21772 10.7997 4.21772 10.7997C4.21772 10.7997 4.21771 10.7997 4.21771 10.7997C4.21771 10.7997 4.2177 10.7997 4.2177 10.7997C4.2177 10.7997 4.21769 10.7997 4.21769 10.7997C4.21769 10.7997 4.21768 10.7997 4.21768 10.7997C4.21768 10.7997 4.21767 10.7997 4.21767 10.7997C4.21767 10.7997 4.21766 10.7997 4.21766 10.7997C4.21766 10.7997 4.21765 10.7997 4.21765 10.7997C4.21765 10.7997 4.21764 10.7997 4.21764 10.7997C4.21764 10.7997 4.21763 10.7997 4.21763 10.7997C4.21763 10.7997 4.21762 10.7997 4.21762 10.7997C4.21762 10.7997 4.21761 10.7997 4.21761 10.7997C4.21761 10.7997 4.21761 10.7997 4.2176 10.7997C4.2176 10.7997 4.2176 10.7997 4.21759 10.7997C4.21759 10.7997 4.21759 10.7997 4.21758 10.7997C4.21758 10.7997 4.21758 10.7997 4.21757 10.7997C4.21757 10.7997 4.21757 10.7997 4.21756 10.7997C4.21756 10.7997 4.21756 10.7997 4.21755 10.7997C4.21755 10.7997 4.21755 10.7997 4.21754 10.7997C4.21754 10.7997 4.21754 10.7997 4.21753 10.7997C4.21753 10.7997 4.21753 10.7997 4.21752 10.7997C4.21752 10.7997 4.21752 10.7997 4.21751 10.7997C4.21751 10.7997 4.21751 10.7997 4.2175 10.7997C4.2175 10.7997 4.2175 10.7997 4.21749 10.7997C4.21749 10.7997 4.21749 10.7997 4.21749 10.7997C4.21748 10.7997 4.21748 10.7997 4.21748 10.7997C4.21747 10.7997 4.21747 10.7997 4.21747 10.7997C4.21746 10.7997 4.21746 10.7997 4.21746 10.7997C4.21745 10.7997 4.21745 10.7997 4.21745 10.7997C4.21744 10.7997 4.21744 10.7997 4.21744 10.7997C4.21743 10.7997 4.21743 10.7997 4.21743 10.7997C4.21742 10.7997 4.21742 10.7997 4.21742 10.7997C4.21741 10.7997 4.21741 10.7997 4.21741 10.7997C4.2174 10.7997 4.2174 10.7997 4.2174 10.7997C4.2174 10.7997 4.21739 10.7997 4.21739 10.7997C4.21739 10.7997 4.21738 10.7997 4.21738 10.7997C4.21738 10.7997 4.21737 10.7997 4.21737 10.7997C4.21737 10.7997 4.21736 10.7997 4.21736 10.7997C4.21736 10.7997 4.21735 10.7997 4.21735 10.7997C4.21735 10.7997 4.21734 10.7997 4.21734 10.7997C4.21734 10.7997 4.21733 10.7997 4.21733 10.7997C4.21733 10.7997 4.21732 10.7997 4.21732 10.7997C4.21732 10.7997 4.21731 10.7997 4.21731 10.7997C4.21731 10.7997 4.21731 10.7997 4.2173 10.7997C4.2173 10.7997 4.2173 10.7997 4.21729 10.7997C4.21729 10.7997 4.21729 10.7997 4.21728 10.7997C4.21728 10.7997 4.21728 10.7997 4.21727 10.7997C4.21727 10.7997 4.21727 10.7997 4.21726 10.7997C4.21726 10.7997 4.21726 10.7997 4.21725 10.7997C4.21725 10.7997 4.21725 10.7997 4.21724 10.7997C4.21724 10.7997 4.21724 10.7997 4.21723 10.7997C4.21723 10.7997 4.21723 10.7997 4.21723 10.7997C4.21722 10.7997 4.21722 10.7997 4.21722 10.7997C4.21721 10.7997 4.21721 10.7997 4.21721 10.7997C4.2172 10.7997 4.2172 10.7997 4.2172 10.7997C4.21719 10.7997 4.21719 10.7997 4.21719 10.7997C4.21718 10.7997 4.21718 10.7997 4.21718 10.7997C4.21717 10.7997 4.21717 10.7997 4.21717 10.7997C4.21716 10.7997 4.21716 10.7997 4.21716 10.7997C4.21715 10.7997 4.21715 10.7997 4.21715 10.7997C4.21715 10.7997 4.21714 10.7997 4.21714 10.7997C4.21714 10.7997 4.21713 10.7997 4.21713 10.7997C4.21713 10.7997 4.21712 10.7997 4.21712 10.7997C4.21712 10.7997 4.21711 10.7997 4.21711 10.7997C4.21711 10.7997 4.2171 10.7997 4.2171 10.7997C4.2171 10.7997 4.21709 10.7997 4.21709 10.7997C4.21709 10.7997 4.21708 10.7997 4.21708 10.7997C4.21708 10.7997 4.21708 10.7997 4.21707 10.7997C4.21707 10.7997 4.21707 10.7997 4.21706 10.7997C4.21706 10.7997 4.21706 10.7997 4.21705 10.7997C4.21705 10.7997 4.21705 10.7997 4.21704 10.7997C4.21704 10.7997 4.21704 10.7997 4.21703 10.7997C4.21703 10.7997 4.21703 10.7997 4.21702 10.7997C4.21702 10.7997 4.21702 10.7997 4.21701 10.7997C4.21701 10.7997 4.21701 10.7997 4.21701 10.7997C4.217 10.7997 4.217 10.7997 4.217 10.7997C4.21699 10.7997 4.21699 10.7997 4.21699 10.7997C4.21698 10.7997 4.21698 10.7997 4.21698 10.7997C4.21697 10.7997 4.21697 10.7997 4.21697 10.7997C4.21696 10.7997 4.21696 10.7997 4.21696 10.7997C4.21695 10.7997 4.21695 10.7997 4.21695 10.7997C4.21695 10.7997 4.21694 10.7997 4.21694 10.7997C4.21694 10.7997 4.21693 10.7997 4.21693 10.7997C4.21693 10.7997 4.21692 10.7997 4.21692 10.7997C4.21692 10.7997 4.21691 10.7997 4.21691 10.7997C4.21691 10.7997 4.2169 10.7997 4.2169 10.7997C4.2169 10.7997 4.21689 10.7997 4.21689 10.7997C4.21689 10.7997 4.21689 10.7997 4.21688 10.7997C4.21688 10.7997 4.21688 10.7997 4.21687 10.7997C4.21687 10.7997 4.21687 10.7997 4.21686 10.7997C4.21686 10.7997 4.21686 10.7997 4.21685 10.7997C4.21685 10.7997 4.21685 10.7997 4.21684 10.7997C4.21684 10.7997 4.21684 10.7997 4.21683 10.7997C4.21683 10.7997 4.21683 10.7997 4.21683 10.7997C4.21682 10.7997 4.21682 10.7997 4.21682 10.7997C4.21681 10.7997 4.21681 10.7997 4.21681 10.7997C4.2168 10.7997 4.2168 10.7997 4.2168 10.7997C4.21679 10.7997 4.21679 10.7997 4.21679 10.7997C4.21678 10.7997 4.21678 10.7997 4.21678 10.7997C4.21677 10.7997 4.21677 10.7997 4.21677 10.7997C4.21677 10.7997 4.21676 10.7997 4.21676 10.7997C4.21676 10.7997 4.21675 10.7997 4.21675 10.7997C4.21675 10.7997 4.21674 10.7997 4.21674 10.7997C4.21674 10.7997 4.21673 10.7997 4.21673 10.7997C4.21673 10.7997 4.21672 10.7997 4.21672 10.7997C4.21672 10.7997 4.21671 10.7997 4.21671 10.7997C4.21671 10.7997 4.21671 10.7997 4.2167 10.7997C4.2167 10.7997 4.2167 10.7997 4.21669 10.7997C4.21669 10.7997 4.21669 10.7997 4.21668 10.7997C4.21668 10.7997 4.21668 10.7997 4.21667 10.7997C4.21667 10.7997 4.21667 10.7997 4.21666 10.7997C4.21666 10.7997 4.21666 10.7997 4.21666 10.7997C4.21665 10.7997 4.21665 10.7997 4.21665 10.7997C4.21664 10.7997 4.21664 10.7997 4.21664 10.7997C4.21663 10.7997 4.21663 10.7997 4.21663 10.7997C4.21662 10.7997 4.21662 10.7997 4.21662 10.7997C4.21661 10.7997 4.21661 10.7997 4.21661 10.7997C4.21661 10.7997 4.2166 10.7997 4.2166 10.7997C4.2166 10.7997 4.21659 10.7997 4.21659 10.7997C4.21659 10.7997 4.21658 10.7997 4.21658 10.7997C4.21658 10.7997 4.21657 10.7997 4.21657 10.7997C4.21657 10.7997 4.21656 10.7997 4.21656 10.7997C4.21656 10.7997 4.21656 10.7997 4.21655 10.7997C4.21655 10.7997 4.21655 10.7997 4.21654 10.7997C4.21654 10.7997 4.21654 10.7997 4.21653 10.7997C4.21653 10.7997 4.21653 10.7997 4.21652 10.7997C4.21652 10.7997 4.21652 10.7997 4.21651 10.7997C4.21651 10.7997 4.21651 10.7997 4.21651 10.7997C4.2165 10.7997 4.2165 10.7997 4.2165 10.7997C4.21649 10.7997 4.21649 10.7997 4.21649 10.7997C4.21648 10.7997 4.21648 10.7997 4.21648 10.7997C4.21647 10.7997 4.21647 10.7997 4.21647 10.7997C4.21646 10.7997 4.21646 10.7997 4.21646 10.7997C4.21646 10.7997 4.21645 10.7997 4.21645 10.7997C4.21645 10.7997 4.21644 10.7997 4.21644 10.7997C4.21644 10.7997 4.21643 10.7997 4.21643 10.7997C4.21643 10.7997 4.21642 10.7997 4.21642 10.7997C4.21642 10.7997 4.21641 10.7997 4.21641 10.7997C4.21641 10.7997 4.21641 10.7997 4.2164 10.7997C4.2164 10.7997 4.2164 10.7997 4.21639 10.7997C4.21639 10.7997 4.21639 10.7997 4.21638 10.7997C4.21638 10.7997 4.21638 10.7997 4.21637 10.7997C4.21637 10.7997 4.21637 10.7997 4.21636 10.7997C4.21636 10.7997 4.21636 10.7997 4.21636 10.7997C4.21635 10.7997 4.21635 10.7997 4.21635 10.7997C4.21634 10.7997 4.21634 10.7997 4.21634 10.7997C4.21633 10.7997 4.21633 10.7997 4.21633 10.7997C4.21632 10.7997 4.21632 10.7997 4.21632 10.7997C4.21632 10.7997 4.21631 10.7997 4.21631 10.7997C4.21631 10.7997 4.2163 10.7997 4.2163 10.7997C4.2163 10.7997 4.21629 10.7997 4.21629 10.7997C4.21629 10.7997 4.21628 10.7997 4.21628 10.7997C4.21628 10.7997 4.21627 10.7997 4.21627 10.7997C4.21627 10.7997 4.21627 10.7997 4.21626 10.7997C4.21626 10.7997 4.21626 10.7997 4.21625 10.7997C4.21625 10.7997 4.21625 10.7997 4.21624 10.7997C4.21624 10.7997 4.21624 10.7997 4.21623 10.7997C4.21623 10.7997 4.21623 10.7997 4.21623 10.7997C4.21622 10.7997 4.21622 10.7997 4.21622 10.7997C4.21621 10.7997 4.21621 10.7997 4.21621 10.7997C4.2162 10.7997 4.2162 10.7997 4.2162 10.7997C4.21619 10.7997 4.21619 10.7997 4.21619 10.7997C4.21618 10.7997 4.21618 10.7997 4.21618 10.7997C4.21618 10.7997 4.21617 10.7997 4.21617 10.7997C4.21617 10.7997 4.21616 10.7997 4.21616 10.7997C4.21616 10.7997 4.21615 10.7997 4.21615 10.7997C4.21615 10.7997 4.21614 10.7997 4.21614 10.7997C4.21614 10.7997 4.21614 10.7997 4.21613 10.7997C4.21613 10.7997 4.21613 10.7997 4.21612 10.7997C4.21612 10.7997 4.21612 10.7997 4.21611 10.7997C4.21611 10.7997 4.21611 10.7997 4.2161 10.7997C4.2161 10.7997 4.2161 10.7997 4.21609 10.7997C4.21609 10.7997 4.21609 10.7997 4.21609 10.7997C4.21608 10.7997 4.21608 10.7997 4.21608 10.7997C4.21607 10.7997 4.21607 10.7997 4.21607 10.7997C4.21606 10.7997 4.21606 10.7997 4.21606 10.7997C4.21605 10.7997 4.21605 10.7997 4.21605 10.7997C4.21605 10.7997 4.21604 10.7997 4.21604 10.7997C4.21604 10.7997 4.21603 10.7997 4.21603 10.7997C4.21603 10.7997 4.21602 10.7997 4.21602 10.7997C4.21602 10.7997 4.21601 10.7997 4.21601 10.7997C4.21601 10.7997 4.21601 10.7997 4.216 10.7997C4.216 10.7997 4.216 10.7997 4.21599 10.7997C4.21599 10.7997 4.21599 10.7997 4.21598 10.7997C4.21598 10.7997 4.21598 10.7997 4.21597 10.7997C4.21597 10.7997 4.21597 10.7997 4.21597 10.7997C4.21596 10.7997 4.21596 10.7997 4.21596 10.7997C4.21595 10.7997 4.21595 10.7997 4.21595 10.7997C4.21594 10.7997 4.21594 10.7997 4.21594 10.7997C4.21593 10.7997 4.21593 10.7997 4.21593 10.7997C4.21593 10.7997 4.21592 10.7997 4.21592 10.7997C4.21592 10.7997 4.21591 10.7997 4.21591 10.7997C4.21591 10.7997 4.2159 10.7997 4.2159 10.7997C4.2159 10.7997 4.21589 10.7997 4.21589 10.7997C4.21589 10.7997 4.21589 10.7997 4.21588 10.7997C4.21588 10.7997 4.21588 10.7997 4.21587 10.7997C4.21587 10.7997 4.21587 10.7997 4.21586 10.7997C4.21586 10.7997 4.21586 10.7997 4.21585 10.7997C4.21585 10.7997 4.21585 10.7997 4.21585 10.7997C4.21584 10.7997 4.21584 10.7997 4.21584 10.7997C4.21583 10.7997 4.21583 10.7997 4.21583 10.7997C4.21582 10.7997 4.21582 10.7997 4.21582 10.7997C4.21581 10.7997 4.21581 10.7997 4.21581 10.7997C4.21581 10.7997 4.2158 10.7997 4.2158 10.7997C4.2158 10.7997 4.21579 10.7997 4.21579 10.7997C4.21579 10.7997 4.21578 10.7997 4.21578 10.7997C4.21578 10.7997 4.21577 10.7997 4.21577 10.7997C4.21577 10.7997 4.21577 10.7997 4.21576 10.7997C4.21576 10.7997 4.21576 10.7997 4.21575 10.7997C4.21575 10.7997 4.21575 10.7997 4.21574 10.7997C4.21574 10.7997 4.21574 10.7997 4.21573 10.7997C4.21573 10.7997 4.21573 10.7997 4.21573 10.7997C4.21572 10.7997 4.21572 10.7997 4.21572 10.7997C4.21571 10.7997 4.21571 10.7997 4.21571 10.7997C4.2157 10.7997 4.2157 10.7997 4.2157 10.7997C4.21569 10.7997 4.21569 10.7997 4.21569 10.7997C4.21569 10.7997 4.21568 10.7997 4.21568 10.7997C4.21568 10.7997 4.21567 10.7997 4.21567 10.7997C4.21567 10.7997 4.21566 10.7997 4.21566 10.7997C4.21566 10.7997 4.21565 10.7997 4.21565 10.7997C4.21565 10.7997 4.21565 10.7997 4.21564 10.7997C4.21564 10.7997 4.21564 10.7997 4.21563 10.7997C4.21563 10.7997 4.21563 10.7997 4.21562 10.7997C4.21562 10.7997 4.21562 10.7997 4.21562 10.7997C4.21561 10.7997 4.21561 10.7997 4.21561 10.7997C4.2156 10.7997 4.2156 10.7997 4.2156 10.7997C4.21559 10.7997 4.21559 10.7997 4.21559 10.7997C4.21558 10.7997 4.21558 10.7997 4.21558 10.7997C4.21558 10.7997 4.21557 10.7997 4.21557 10.7997C4.21557 10.7997 4.21556 10.7997 4.21556 10.7997C4.21556 10.7997 4.21555 10.7997 4.21555 10.7997C4.21555 10.7997 4.21554 10.7997 4.21554 10.7997C4.21554 10.7997 4.21554 10.7997 4.21553 10.7997C4.21553 10.7997 4.21553 10.7997 4.21552 10.7997C4.21552 10.7997 4.21552 10.7997 4.21551 10.7997C4.21551 10.7997 4.21551 10.7997 4.2155 10.7997C4.2155 10.7997 4.2155 10.7997 4.2155 10.7997C4.21549 10.7997 4.21549 10.7997 4.21549 10.7997C4.21548 10.7997 4.21548 10.7997 4.21548 10.7997C4.21547 10.7997 4.21547 10.7997 4.21547 10.7997C4.21546 10.7997 4.21546 10.7997 4.21546 10.7997C4.21546 10.7997 4.21545 10.7997 4.21545 10.7997C4.21545 10.7997 4.21544 10.7997 4.21544 10.7997C4.21544 10.7997 4.21543 10.7997 4.21543 10.7997C4.21543 10.7997 4.21543 10.7997 4.21542 10.7997C4.21542 10.7997 4.21542 10.7997 4.21541 10.7997C4.21541 10.7997 4.21541 10.7997 4.2154 10.7997C4.2154 10.7997 4.2154 10.7997 4.21539 10.7997C4.21539 10.7997 4.21539 10.7997 4.21539 10.7997C4.21538 10.7997 4.21538 10.7997 4.21538 10.7997C4.21537 10.7997 4.21537 10.7997 4.21537 10.7997C4.21536 10.7997 4.21536 10.7997 4.21536 10.7997C4.21535 10.7997 4.21535 10.7997 4.21535 10.7997C4.21535 10.7997 4.21534 10.7997 4.21534 10.7997C4.21534 10.7997 4.21533 10.7997 4.21533 10.7997C4.21533 10.7997 4.21532 10.7997 4.21532 10.7997C4.21532 10.7997 4.21532 10.7997 4.21531 10.7997C4.21531 10.7997 4.21531 10.7997 4.2153 10.7997C4.2153 10.7997 4.2153 10.7997 4.21529 10.7997C4.21529 10.7997 4.21529 10.7997 4.21528 10.7997C4.21528 10.7997 4.21528 10.7997 4.21528 10.7997C4.21527 10.7997 4.21527 10.7997 4.21527 10.7997C4.21526 10.7997 4.21526 10.7997 4.21526 10.7997C4.21525 10.7997 4.21525 10.7997 4.21525 10.7997C4.21524 10.7997 4.21524 10.7997 4.21524 10.7997C4.21524 10.7997 4.21523 10.7997 4.21523 10.7997C4.21523 10.7997 4.21522 10.7997 4.21522 10.7997C4.21522 10.7997 4.21521 10.7997 4.21521 10.7997C4.21521 10.7997 4.2152 10.7997 4.2152 10.7997C4.2152 10.7997 4.2152 10.7997 4.21519 10.7997C4.21519 10.7997 4.21519 10.7997 4.21518 10.7997C4.21518 10.7997 4.21518 10.7997 4.21517 10.7997C4.21517 10.7997 4.21517 10.7997 4.21517 10.7997C4.21516 10.7997 4.21516 10.7997 4.21516 10.7997C4.21515 10.7997 4.21515 10.7997 4.21515 10.7997C4.21514 10.7997 4.21514 10.7997 4.21514 10.7997C4.21513 10.7997 4.21513 10.7997 4.21513 10.7997C4.21513 10.7997 4.21512 10.7997 4.21512 10.7997C4.21512 10.7997 4.21511 10.7997 4.21511 10.7997C4.21511 10.7997 4.2151 10.7997 4.2151 10.7997C4.2151 10.7997 4.2151 10.7997 4.21509 10.7997C4.21509 10.7997 4.21509 10.7997 4.21508 10.7997C4.21508 10.7997 4.21508 10.7997 4.21507 10.7997C4.21507 10.7997 4.21507 10.7997 4.21506 10.7997C4.21506 10.7997 4.21506 10.7997 4.21506 10.7997C4.21505 10.7997 4.21505 10.7997 4.21505 10.7997C4.21504 10.7997 4.21504 10.7997 4.21504 10.7997C4.21503 10.7997 4.21503 10.7997 4.21503 10.7997C4.21502 10.7997 4.21502 10.7997 4.21502 10.7997C4.21502 10.7997 4.21501 10.7997 4.21501 10.7997C4.21501 10.7997 4.215 10.7997 4.215 10.7997C4.215 10.7997 4.21499 10.7997 4.21499 10.7997C4.21499 10.7997 4.21499 10.7997 4.21498 10.7997C4.21498 10.7997 4.21498 10.7997 4.21497 10.7997C4.21497 10.7997 4.21497 10.7997 4.21496 10.7997C4.21496 10.7997 4.21496 10.7997 4.21495 10.7997C4.21495 10.7997 4.21495 10.7997 4.21495 10.7997C4.21494 10.7997 4.21494 10.7997 4.21494 10.7997C4.21493 10.7997 4.21493 10.7997 4.21493 10.7997C4.21492 10.7997 4.21492 10.7997 4.21492 10.7997C4.21492 10.7997 4.21491 10.7997 4.21491 10.7997C4.21491 10.7997 4.2149 10.7997 4.2149 10.7997V11.1997ZM4.2199 11.1997C4.5276 11.1997 4.77676 10.9504 4.77676 10.6427H4.37676C4.37676 10.7296 4.30657 10.7997 4.2199 10.7997V11.1997ZM4.77676 10.6427C4.77676 10.3351 4.5276 10.0857 4.2199 10.0857V10.4857C4.30657 10.4857 4.37676 10.5559 4.37676 10.6427H4.77676ZM4.2199 10.0857C4.2199 10.0857 4.21989 10.0857 4.21989 10.0857C4.21989 10.0857 4.21988 10.0857 4.21988 10.0857C4.21987 10.0857 4.21987 10.0857 4.21987 10.0857C4.21986 10.0857 4.21986 10.0857 4.21986 10.0857C4.21985 10.0857 4.21985 10.0857 4.21985 10.0857C4.21984 10.0857 4.21984 10.0857 4.21983 10.0857C4.21983 10.0857 4.21983 10.0857 4.21982 10.0857C4.21982 10.0857 4.21982 10.0857 4.21981 10.0857C4.21981 10.0857 4.21981 10.0857 4.2198 10.0857C4.2198 10.0857 4.21979 10.0857 4.21979 10.0857C4.21979 10.0857 4.21978 10.0857 4.21978 10.0857C4.21978 10.0857 4.21977 10.0857 4.21977 10.0857C4.21976 10.0857 4.21976 10.0857 4.21976 10.0857C4.21975 10.0857 4.21975 10.0857 4.21975 10.0857C4.21974 10.0857 4.21974 10.0857 4.21974 10.0857C4.21973 10.0857 4.21973 10.0857 4.21972 10.0857C4.21972 10.0857 4.21972 10.0857 4.21971 10.0857C4.21971 10.0857 4.21971 10.0857 4.2197 10.0857C4.2197 10.0857 4.2197 10.0857 4.21969 10.0857C4.21969 10.0857 4.21969 10.0857 4.21968 10.0857C4.21968 10.0857 4.21967 10.0857 4.21967 10.0857C4.21967 10.0857 4.21966 10.0857 4.21966 10.0857C4.21966 10.0857 4.21965 10.0857 4.21965 10.0857C4.21965 10.0857 4.21964 10.0857 4.21964 10.0857C4.21963 10.0857 4.21963 10.0857 4.21963 10.0857C4.21962 10.0857 4.21962 10.0857 4.21962 10.0857C4.21961 10.0857 4.21961 10.0857 4.21961 10.0857C4.2196 10.0857 4.2196 10.0857 4.21959 10.0857C4.21959 10.0857 4.21959 10.0857 4.21958 10.0857C4.21958 10.0857 4.21958 10.0857 4.21957 10.0857C4.21957 10.0857 4.21957 10.0857 4.21956 10.0857C4.21956 10.0857 4.21956 10.0857 4.21955 10.0857C4.21955 10.0857 4.21954 10.0857 4.21954 10.0857C4.21954 10.0857 4.21953 10.0857 4.21953 10.0857C4.21953 10.0857 4.21952 10.0857 4.21952 10.0857C4.21952 10.0857 4.21951 10.0857 4.21951 10.0857C4.21951 10.0857 4.2195 10.0857 4.2195 10.0857C4.21949 10.0857 4.21949 10.0857 4.21949 10.0857C4.21948 10.0857 4.21948 10.0857 4.21948 10.0857C4.21947 10.0857 4.21947 10.0857 4.21947 10.0857C4.21946 10.0857 4.21946 10.0857 4.21946 10.0857C4.21945 10.0857 4.21945 10.0857 4.21944 10.0857C4.21944 10.0857 4.21944 10.0857 4.21943 10.0857C4.21943 10.0857 4.21943 10.0857 4.21942 10.0857C4.21942 10.0857 4.21942 10.0857 4.21941 10.0857C4.21941 10.0857 4.21941 10.0857 4.2194 10.0857C4.2194 10.0857 4.21939 10.0857 4.21939 10.0857C4.21939 10.0857 4.21938 10.0857 4.21938 10.0857C4.21938 10.0857 4.21937 10.0857 4.21937 10.0857C4.21937 10.0857 4.21936 10.0857 4.21936 10.0857C4.21936 10.0857 4.21935 10.0857 4.21935 10.0857C4.21934 10.0857 4.21934 10.0857 4.21934 10.0857C4.21933 10.0857 4.21933 10.0857 4.21933 10.0857C4.21932 10.0857 4.21932 10.0857 4.21932 10.0857C4.21931 10.0857 4.21931 10.0857 4.21931 10.0857C4.2193 10.0857 4.2193 10.0857 4.2193 10.0857C4.21929 10.0857 4.21929 10.0857 4.21928 10.0857C4.21928 10.0857 4.21928 10.0857 4.21927 10.0857C4.21927 10.0857 4.21927 10.0857 4.21926 10.0857C4.21926 10.0857 4.21926 10.0857 4.21925 10.0857C4.21925 10.0857 4.21925 10.0857 4.21924 10.0857C4.21924 10.0857 4.21923 10.0857 4.21923 10.0857C4.21923 10.0857 4.21922 10.0857 4.21922 10.0857C4.21922 10.0857 4.21921 10.0857 4.21921 10.0857C4.21921 10.0857 4.2192 10.0857 4.2192 10.0857C4.2192 10.0857 4.21919 10.0857 4.21919 10.0857C4.21919 10.0857 4.21918 10.0857 4.21918 10.0857C4.21917 10.0857 4.21917 10.0857 4.21917 10.0857C4.21916 10.0857 4.21916 10.0857 4.21916 10.0857C4.21915 10.0857 4.21915 10.0857 4.21915 10.0857C4.21914 10.0857 4.21914 10.0857 4.21914 10.0857C4.21913 10.0857 4.21913 10.0857 4.21913 10.0857C4.21912 10.0857 4.21912 10.0857 4.21912 10.0857C4.21911 10.0857 4.21911 10.0857 4.2191 10.0857C4.2191 10.0857 4.2191 10.0857 4.21909 10.0857C4.21909 10.0857 4.21909 10.0857 4.21908 10.0857C4.21908 10.0857 4.21908 10.0857 4.21907 10.0857C4.21907 10.0857 4.21907 10.0857 4.21906 10.0857C4.21906 10.0857 4.21906 10.0857 4.21905 10.0857C4.21905 10.0857 4.21904 10.0857 4.21904 10.0857C4.21904 10.0857 4.21903 10.0857 4.21903 10.0857C4.21903 10.0857 4.21902 10.0857 4.21902 10.0857C4.21902 10.0857 4.21901 10.0857 4.21901 10.0857C4.21901 10.0857 4.219 10.0857 4.219 10.0857C4.219 10.0857 4.21899 10.0857 4.21899 10.0857C4.21899 10.0857 4.21898 10.0857 4.21898 10.0857C4.21898 10.0857 4.21897 10.0857 4.21897 10.0857C4.21896 10.0857 4.21896 10.0857 4.21896 10.0857C4.21895 10.0857 4.21895 10.0857 4.21895 10.0857C4.21894 10.0857 4.21894 10.0857 4.21894 10.0857C4.21893 10.0857 4.21893 10.0857 4.21893 10.0857C4.21892 10.0857 4.21892 10.0857 4.21892 10.0857C4.21891 10.0857 4.21891 10.0857 4.21891 10.0857C4.2189 10.0857 4.2189 10.0857 4.21889 10.0857C4.21889 10.0857 4.21889 10.0857 4.21888 10.0857C4.21888 10.0857 4.21888 10.0857 4.21887 10.0857C4.21887 10.0857 4.21887 10.0857 4.21886 10.0857C4.21886 10.0857 4.21886 10.0857 4.21885 10.0857C4.21885 10.0857 4.21885 10.0857 4.21884 10.0857C4.21884 10.0857 4.21884 10.0857 4.21883 10.0857C4.21883 10.0857 4.21883 10.0857 4.21882 10.0857C4.21882 10.0857 4.21882 10.0857 4.21881 10.0857C4.21881 10.0857 4.2188 10.0857 4.2188 10.0857C4.2188 10.0857 4.21879 10.0857 4.21879 10.0857C4.21879 10.0857 4.21878 10.0857 4.21878 10.0857C4.21878 10.0857 4.21877 10.0857 4.21877 10.0857C4.21877 10.0857 4.21876 10.0857 4.21876 10.0857C4.21876 10.0857 4.21875 10.0857 4.21875 10.0857C4.21875 10.0857 4.21874 10.0857 4.21874 10.0857C4.21874 10.0857 4.21873 10.0857 4.21873 10.0857C4.21872 10.0857 4.21872 10.0857 4.21872 10.0857C4.21871 10.0857 4.21871 10.0857 4.21871 10.0857C4.2187 10.0857 4.2187 10.0857 4.2187 10.0857C4.21869 10.0857 4.21869 10.0857 4.21869 10.0857C4.21868 10.0857 4.21868 10.0857 4.21868 10.0857C4.21867 10.0857 4.21867 10.0857 4.21867 10.0857C4.21866 10.0857 4.21866 10.0857 4.21866 10.0857C4.21865 10.0857 4.21865 10.0857 4.21865 10.0857C4.21864 10.0857 4.21864 10.0857 4.21864 10.0857C4.21863 10.0857 4.21863 10.0857 4.21863 10.0857C4.21862 10.0857 4.21862 10.0857 4.21861 10.0857C4.21861 10.0857 4.21861 10.0857 4.2186 10.0857C4.2186 10.0857 4.2186 10.0857 4.21859 10.0857C4.21859 10.0857 4.21859 10.0857 4.21858 10.0857C4.21858 10.0857 4.21858 10.0857 4.21857 10.0857C4.21857 10.0857 4.21857 10.0857 4.21856 10.0857C4.21856 10.0857 4.21856 10.0857 4.21855 10.0857C4.21855 10.0857 4.21855 10.0857 4.21854 10.0857C4.21854 10.0857 4.21854 10.0857 4.21853 10.0857C4.21853 10.0857 4.21853 10.0857 4.21852 10.0857C4.21852 10.0857 4.21851 10.0857 4.21851 10.0857C4.21851 10.0857 4.2185 10.0857 4.2185 10.0857C4.2185 10.0857 4.21849 10.0857 4.21849 10.0857C4.21849 10.0857 4.21848 10.0857 4.21848 10.0857C4.21848 10.0857 4.21847 10.0857 4.21847 10.0857C4.21847 10.0857 4.21846 10.0857 4.21846 10.0857C4.21846 10.0857 4.21845 10.0857 4.21845 10.0857C4.21845 10.0857 4.21844 10.0857 4.21844 10.0857C4.21844 10.0857 4.21843 10.0857 4.21843 10.0857C4.21843 10.0857 4.21842 10.0857 4.21842 10.0857C4.21842 10.0857 4.21841 10.0857 4.21841 10.0857C4.21841 10.0857 4.2184 10.0857 4.2184 10.0857C4.2184 10.0857 4.21839 10.0857 4.21839 10.0857C4.21838 10.0857 4.21838 10.0857 4.21838 10.0857C4.21837 10.0857 4.21837 10.0857 4.21837 10.0857C4.21836 10.0857 4.21836 10.0857 4.21836 10.0857C4.21835 10.0857 4.21835 10.0857 4.21835 10.0857C4.21834 10.0857 4.21834 10.0857 4.21834 10.0857C4.21833 10.0857 4.21833 10.0857 4.21833 10.0857C4.21832 10.0857 4.21832 10.0857 4.21832 10.0857C4.21831 10.0857 4.21831 10.0857 4.21831 10.0857C4.2183 10.0857 4.2183 10.0857 4.2183 10.0857C4.21829 10.0857 4.21829 10.0857 4.21829 10.0857C4.21828 10.0857 4.21828 10.0857 4.21828 10.0857C4.21827 10.0857 4.21827 10.0857 4.21827 10.0857C4.21826 10.0857 4.21826 10.0857 4.21826 10.0857C4.21825 10.0857 4.21825 10.0857 4.21825 10.0857C4.21824 10.0857 4.21824 10.0857 4.21824 10.0857C4.21823 10.0857 4.21823 10.0857 4.21822 10.0857C4.21822 10.0857 4.21822 10.0857 4.21821 10.0857C4.21821 10.0857 4.21821 10.0857 4.2182 10.0857C4.2182 10.0857 4.2182 10.0857 4.21819 10.0857C4.21819 10.0857 4.21819 10.0857 4.21818 10.0857C4.21818 10.0857 4.21818 10.0857 4.21817 10.0857C4.21817 10.0857 4.21817 10.0857 4.21816 10.0857C4.21816 10.0857 4.21816 10.0857 4.21815 10.0857C4.21815 10.0857 4.21815 10.0857 4.21814 10.0857C4.21814 10.0857 4.21814 10.0857 4.21813 10.0857C4.21813 10.0857 4.21813 10.0857 4.21812 10.0857C4.21812 10.0857 4.21812 10.0857 4.21811 10.0857C4.21811 10.0857 4.21811 10.0857 4.2181 10.0857C4.2181 10.0857 4.2181 10.0857 4.21809 10.0857C4.21809 10.0857 4.21809 10.0857 4.21808 10.0857C4.21808 10.0857 4.21808 10.0857 4.21807 10.0857C4.21807 10.0857 4.21807 10.0857 4.21806 10.0857C4.21806 10.0857 4.21806 10.0857 4.21805 10.0857C4.21805 10.0857 4.21804 10.0857 4.21804 10.0857C4.21804 10.0857 4.21803 10.0857 4.21803 10.0857C4.21803 10.0857 4.21802 10.0857 4.21802 10.0857C4.21802 10.0857 4.21801 10.0857 4.21801 10.0857C4.21801 10.0857 4.218 10.0857 4.218 10.0857C4.218 10.0857 4.21799 10.0857 4.21799 10.0857C4.21799 10.0857 4.21798 10.0857 4.21798 10.0857C4.21798 10.0857 4.21797 10.0857 4.21797 10.0857C4.21797 10.0857 4.21796 10.0857 4.21796 10.0857C4.21796 10.0857 4.21795 10.0857 4.21795 10.0857C4.21795 10.0857 4.21794 10.0857 4.21794 10.0857C4.21794 10.0857 4.21793 10.0857 4.21793 10.0857C4.21793 10.0857 4.21792 10.0857 4.21792 10.0857C4.21792 10.0857 4.21791 10.0857 4.21791 10.0857C4.21791 10.0857 4.2179 10.0857 4.2179 10.0857C4.2179 10.0857 4.21789 10.0857 4.21789 10.0857C4.21789 10.0857 4.21788 10.0857 4.21788 10.0857C4.21788 10.0857 4.21787 10.0857 4.21787 10.0857C4.21787 10.0857 4.21786 10.0857 4.21786 10.0857C4.21786 10.0857 4.21785 10.0857 4.21785 10.0857C4.21785 10.0857 4.21784 10.0857 4.21784 10.0857C4.21784 10.0857 4.21783 10.0857 4.21783 10.0857C4.21783 10.0857 4.21782 10.0857 4.21782 10.0857C4.21782 10.0857 4.21781 10.0857 4.21781 10.0857C4.21781 10.0857 4.2178 10.0857 4.2178 10.0857C4.21779 10.0857 4.21779 10.0857 4.21779 10.0857C4.21778 10.0857 4.21778 10.0857 4.21778 10.0857C4.21777 10.0857 4.21777 10.0857 4.21777 10.0857C4.21776 10.0857 4.21776 10.0857 4.21776 10.0857C4.21775 10.0857 4.21775 10.0857 4.21775 10.0857C4.21774 10.0857 4.21774 10.0857 4.21774 10.0857C4.21773 10.0857 4.21773 10.0857 4.21773 10.0857C4.21772 10.0857 4.21772 10.0857 4.21772 10.0857C4.21771 10.0857 4.21771 10.0857 4.21771 10.0857C4.2177 10.0857 4.2177 10.0857 4.2177 10.0857C4.21769 10.0857 4.21769 10.0857 4.21769 10.0857C4.21768 10.0857 4.21768 10.0857 4.21768 10.0857C4.21767 10.0857 4.21767 10.0857 4.21767 10.0857C4.21766 10.0857 4.21766 10.0857 4.21766 10.0857C4.21765 10.0857 4.21765 10.0857 4.21765 10.0857C4.21764 10.0857 4.21764 10.0857 4.21764 10.0857C4.21763 10.0857 4.21763 10.0857 4.21763 10.0857C4.21762 10.0857 4.21762 10.0857 4.21762 10.0857C4.21761 10.0857 4.21761 10.0857 4.21761 10.0857C4.2176 10.0857 4.2176 10.0857 4.2176 10.0857C4.21759 10.0857 4.21759 10.0857 4.21759 10.0857C4.21758 10.0857 4.21758 10.0857 4.21758 10.0857C4.21757 10.0857 4.21757 10.0857 4.21757 10.0857C4.21756 10.0857 4.21756 10.0857 4.21756 10.0857C4.21755 10.0857 4.21755 10.0857 4.21755 10.0857C4.21754 10.0857 4.21754 10.0857 4.21754 10.0857C4.21753 10.0857 4.21753 10.0857 4.21753 10.0857C4.21752 10.0857 4.21752 10.0857 4.21752 10.0857C4.21751 10.0857 4.21751 10.0857 4.21751 10.0857C4.2175 10.0857 4.2175 10.0857 4.2175 10.0857C4.21749 10.0857 4.21749 10.0857 4.21749 10.0857C4.21748 10.0857 4.21748 10.0857 4.21748 10.0857C4.21747 10.0857 4.21747 10.0857 4.21747 10.0857C4.21746 10.0857 4.21746 10.0857 4.21746 10.0857C4.21745 10.0857 4.21745 10.0857 4.21745 10.0857C4.21744 10.0857 4.21744 10.0857 4.21744 10.0857C4.21743 10.0857 4.21743 10.0857 4.21742 10.0857C4.21742 10.0857 4.21742 10.0857 4.21741 10.0857C4.21741 10.0857 4.21741 10.0857 4.2174 10.0857C4.2174 10.0857 4.2174 10.0857 4.21739 10.0857C4.21739 10.0857 4.21739 10.0857 4.21738 10.0857C4.21738 10.0857 4.21738 10.0857 4.21737 10.0857C4.21737 10.0857 4.21737 10.0857 4.21736 10.0857C4.21736 10.0857 4.21736 10.0857 4.21735 10.0857C4.21735 10.0857 4.21735 10.0857 4.21734 10.0857C4.21734 10.0857 4.21734 10.0857 4.21733 10.0857C4.21733 10.0857 4.21733 10.0857 4.21732 10.0857C4.21732 10.0857 4.21732 10.0857 4.21731 10.0857C4.21731 10.0857 4.21731 10.0857 4.2173 10.0857C4.2173 10.0857 4.2173 10.0857 4.21729 10.0857C4.21729 10.0857 4.21729 10.0857 4.21728 10.0857C4.21728 10.0857 4.21728 10.0857 4.21727 10.0857C4.21727 10.0857 4.21727 10.0857 4.21726 10.0857C4.21726 10.0857 4.21726 10.0857 4.21725 10.0857C4.21725 10.0857 4.21725 10.0857 4.21724 10.0857C4.21724 10.0857 4.21724 10.0857 4.21723 10.0857C4.21723 10.0857 4.21723 10.0857 4.21722 10.0857C4.21722 10.0857 4.21722 10.0857 4.21721 10.0857C4.21721 10.0857 4.21721 10.0857 4.2172 10.0857C4.2172 10.0857 4.2172 10.0857 4.21719 10.0857C4.21719 10.0857 4.21719 10.0857 4.21718 10.0857C4.21718 10.0857 4.21718 10.0857 4.21717 10.0857C4.21717 10.0857 4.21717 10.0857 4.21716 10.0857C4.21716 10.0857 4.21716 10.0857 4.21715 10.0857C4.21715 10.0857 4.21715 10.0857 4.21714 10.0857C4.21714 10.0857 4.21714 10.0857 4.21713 10.0857C4.21713 10.0857 4.21713 10.0857 4.21712 10.0857C4.21712 10.0857 4.21712 10.0857 4.21711 10.0857C4.21711 10.0857 4.21711 10.0857 4.2171 10.0857C4.2171 10.0857 4.2171 10.0857 4.21709 10.0857C4.21709 10.0857 4.21709 10.0857 4.21708 10.0857C4.21708 10.0857 4.21708 10.0857 4.21707 10.0857C4.21707 10.0857 4.21707 10.0857 4.21706 10.0857C4.21706 10.0857 4.21706 10.0857 4.21705 10.0857C4.21705 10.0857 4.21705 10.0857 4.21704 10.0857C4.21704 10.0857 4.21704 10.0857 4.21703 10.0857C4.21703 10.0857 4.21703 10.0857 4.21702 10.0857C4.21702 10.0857 4.21702 10.0857 4.21701 10.0857C4.21701 10.0857 4.21701 10.0857 4.217 10.0857C4.217 10.0857 4.217 10.0857 4.21699 10.0857C4.21699 10.0857 4.21698 10.0857 4.21698 10.0857C4.21698 10.0857 4.21697 10.0857 4.21697 10.0857C4.21697 10.0857 4.21696 10.0857 4.21696 10.0857C4.21696 10.0857 4.21695 10.0857 4.21695 10.0857C4.21695 10.0857 4.21694 10.0857 4.21694 10.0857C4.21694 10.0857 4.21693 10.0857 4.21693 10.0857C4.21693 10.0857 4.21692 10.0857 4.21692 10.0857C4.21692 10.0857 4.21691 10.0857 4.21691 10.0857C4.21691 10.0857 4.2169 10.0857 4.2169 10.0857C4.2169 10.0857 4.21689 10.0857 4.21689 10.0857C4.21689 10.0857 4.21688 10.0857 4.21688 10.0857C4.21688 10.0857 4.21687 10.0857 4.21687 10.0857C4.21687 10.0857 4.21686 10.0857 4.21686 10.0857C4.21686 10.0857 4.21685 10.0857 4.21685 10.0857C4.21685 10.0857 4.21684 10.0857 4.21684 10.0857C4.21684 10.0857 4.21683 10.0857 4.21683 10.0857C4.21683 10.0857 4.21682 10.0857 4.21682 10.0857C4.21682 10.0857 4.21681 10.0857 4.21681 10.0857C4.21681 10.0857 4.2168 10.0857 4.2168 10.0857C4.2168 10.0857 4.21679 10.0857 4.21679 10.0857C4.21679 10.0857 4.21678 10.0857 4.21678 10.0857C4.21678 10.0857 4.21677 10.0857 4.21677 10.0857C4.21677 10.0857 4.21676 10.0857 4.21676 10.0857C4.21676 10.0857 4.21675 10.0857 4.21675 10.0857C4.21675 10.0857 4.21674 10.0857 4.21674 10.0857C4.21674 10.0857 4.21673 10.0857 4.21673 10.0857C4.21673 10.0857 4.21672 10.0857 4.21672 10.0857C4.21672 10.0857 4.21671 10.0857 4.21671 10.0857C4.21671 10.0857 4.2167 10.0857 4.2167 10.0857C4.2167 10.0857 4.21669 10.0857 4.21669 10.0857C4.21669 10.0857 4.21668 10.0857 4.21668 10.0857C4.21668 10.0857 4.21667 10.0857 4.21667 10.0857C4.21667 10.0857 4.21666 10.0857 4.21666 10.0857C4.21666 10.0857 4.21665 10.0857 4.21665 10.0857C4.21665 10.0857 4.21664 10.0857 4.21664 10.0857C4.21663 10.0857 4.21663 10.0857 4.21663 10.0857C4.21662 10.0857 4.21662 10.0857 4.21662 10.0857C4.21661 10.0857 4.21661 10.0857 4.21661 10.0857C4.2166 10.0857 4.2166 10.0857 4.2166 10.0857C4.21659 10.0857 4.21659 10.0857 4.21659 10.0857C4.21658 10.0857 4.21658 10.0857 4.21658 10.0857C4.21657 10.0857 4.21657 10.0857 4.21657 10.0857C4.21656 10.0857 4.21656 10.0857 4.21656 10.0857C4.21655 10.0857 4.21655 10.0857 4.21655 10.0857C4.21654 10.0857 4.21654 10.0857 4.21654 10.0857C4.21653 10.0857 4.21653 10.0857 4.21653 10.0857C4.21652 10.0857 4.21652 10.0857 4.21652 10.0857C4.21651 10.0857 4.21651 10.0857 4.21651 10.0857C4.2165 10.0857 4.2165 10.0857 4.2165 10.0857C4.21649 10.0857 4.21649 10.0857 4.21649 10.0857C4.21648 10.0857 4.21648 10.0857 4.21648 10.0857C4.21647 10.0857 4.21647 10.0857 4.21647 10.0857C4.21646 10.0857 4.21646 10.0857 4.21646 10.0857C4.21645 10.0857 4.21645 10.0857 4.21645 10.0857C4.21644 10.0857 4.21644 10.0857 4.21644 10.0857C4.21643 10.0857 4.21643 10.0857 4.21643 10.0857C4.21642 10.0857 4.21642 10.0857 4.21642 10.0857C4.21641 10.0857 4.21641 10.0857 4.21641 10.0857C4.2164 10.0857 4.2164 10.0857 4.21639 10.0857C4.21639 10.0857 4.21639 10.0857 4.21638 10.0857C4.21638 10.0857 4.21638 10.0857 4.21637 10.0857C4.21637 10.0857 4.21637 10.0857 4.21636 10.0857C4.21636 10.0857 4.21636 10.0857 4.21635 10.0857C4.21635 10.0857 4.21635 10.0857 4.21634 10.0857C4.21634 10.0857 4.21634 10.0857 4.21633 10.0857C4.21633 10.0857 4.21633 10.0857 4.21632 10.0857C4.21632 10.0857 4.21632 10.0857 4.21631 10.0857C4.21631 10.0857 4.21631 10.0857 4.2163 10.0857C4.2163 10.0857 4.2163 10.0857 4.21629 10.0857C4.21629 10.0857 4.21629 10.0857 4.21628 10.0857C4.21628 10.0857 4.21628 10.0857 4.21627 10.0857C4.21627 10.0857 4.21627 10.0857 4.21626 10.0857C4.21626 10.0857 4.21626 10.0857 4.21625 10.0857C4.21625 10.0857 4.21625 10.0857 4.21624 10.0857C4.21624 10.0857 4.21624 10.0857 4.21623 10.0857C4.21623 10.0857 4.21623 10.0857 4.21622 10.0857C4.21622 10.0857 4.21621 10.0857 4.21621 10.0857C4.21621 10.0857 4.2162 10.0857 4.2162 10.0857C4.2162 10.0857 4.21619 10.0857 4.21619 10.0857C4.21619 10.0857 4.21618 10.0857 4.21618 10.0857C4.21618 10.0857 4.21617 10.0857 4.21617 10.0857C4.21617 10.0857 4.21616 10.0857 4.21616 10.0857C4.21616 10.0857 4.21615 10.0857 4.21615 10.0857C4.21615 10.0857 4.21614 10.0857 4.21614 10.0857C4.21614 10.0857 4.21613 10.0857 4.21613 10.0857C4.21613 10.0857 4.21612 10.0857 4.21612 10.0857C4.21612 10.0857 4.21611 10.0857 4.21611 10.0857C4.21611 10.0857 4.2161 10.0857 4.2161 10.0857C4.2161 10.0857 4.21609 10.0857 4.21609 10.0857C4.21609 10.0857 4.21608 10.0857 4.21608 10.0857C4.21607 10.0857 4.21607 10.0857 4.21607 10.0857C4.21606 10.0857 4.21606 10.0857 4.21606 10.0857C4.21605 10.0857 4.21605 10.0857 4.21605 10.0857C4.21604 10.0857 4.21604 10.0857 4.21604 10.0857C4.21603 10.0857 4.21603 10.0857 4.21603 10.0857C4.21602 10.0857 4.21602 10.0857 4.21602 10.0857C4.21601 10.0857 4.21601 10.0857 4.21601 10.0857C4.216 10.0857 4.216 10.0857 4.216 10.0857C4.21599 10.0857 4.21599 10.0857 4.21599 10.0857C4.21598 10.0857 4.21598 10.0857 4.21598 10.0857C4.21597 10.0857 4.21597 10.0857 4.21597 10.0857C4.21596 10.0857 4.21596 10.0857 4.21596 10.0857C4.21595 10.0857 4.21595 10.0857 4.21594 10.0857C4.21594 10.0857 4.21594 10.0857 4.21593 10.0857C4.21593 10.0857 4.21593 10.0857 4.21592 10.0857C4.21592 10.0857 4.21592 10.0857 4.21591 10.0857C4.21591 10.0857 4.21591 10.0857 4.2159 10.0857C4.2159 10.0857 4.2159 10.0857 4.21589 10.0857C4.21589 10.0857 4.21589 10.0857 4.21588 10.0857C4.21588 10.0857 4.21588 10.0857 4.21587 10.0857C4.21587 10.0857 4.21587 10.0857 4.21586 10.0857C4.21586 10.0857 4.21586 10.0857 4.21585 10.0857C4.21585 10.0857 4.21585 10.0857 4.21584 10.0857C4.21584 10.0857 4.21583 10.0857 4.21583 10.0857C4.21583 10.0857 4.21582 10.0857 4.21582 10.0857C4.21582 10.0857 4.21581 10.0857 4.21581 10.0857C4.21581 10.0857 4.2158 10.0857 4.2158 10.0857C4.2158 10.0857 4.21579 10.0857 4.21579 10.0857C4.21579 10.0857 4.21578 10.0857 4.21578 10.0857C4.21578 10.0857 4.21577 10.0857 4.21577 10.0857C4.21577 10.0857 4.21576 10.0857 4.21576 10.0857C4.21576 10.0857 4.21575 10.0857 4.21575 10.0857C4.21574 10.0857 4.21574 10.0857 4.21574 10.0857C4.21573 10.0857 4.21573 10.0857 4.21573 10.0857C4.21572 10.0857 4.21572 10.0857 4.21572 10.0857C4.21571 10.0857 4.21571 10.0857 4.21571 10.0857C4.2157 10.0857 4.2157 10.0857 4.2157 10.0857C4.21569 10.0857 4.21569 10.0857 4.21569 10.0857C4.21568 10.0857 4.21568 10.0857 4.21568 10.0857C4.21567 10.0857 4.21567 10.0857 4.21567 10.0857C4.21566 10.0857 4.21566 10.0857 4.21565 10.0857C4.21565 10.0857 4.21565 10.0857 4.21564 10.0857C4.21564 10.0857 4.21564 10.0857 4.21563 10.0857C4.21563 10.0857 4.21563 10.0857 4.21562 10.0857C4.21562 10.0857 4.21562 10.0857 4.21561 10.0857C4.21561 10.0857 4.21561 10.0857 4.2156 10.0857C4.2156 10.0857 4.2156 10.0857 4.21559 10.0857C4.21559 10.0857 4.21559 10.0857 4.21558 10.0857C4.21558 10.0857 4.21557 10.0857 4.21557 10.0857C4.21557 10.0857 4.21556 10.0857 4.21556 10.0857C4.21556 10.0857 4.21555 10.0857 4.21555 10.0857C4.21555 10.0857 4.21554 10.0857 4.21554 10.0857C4.21554 10.0857 4.21553 10.0857 4.21553 10.0857C4.21553 10.0857 4.21552 10.0857 4.21552 10.0857C4.21552 10.0857 4.21551 10.0857 4.21551 10.0857C4.21551 10.0857 4.2155 10.0857 4.2155 10.0857C4.21549 10.0857 4.21549 10.0857 4.21549 10.0857C4.21548 10.0857 4.21548 10.0857 4.21548 10.0857C4.21547 10.0857 4.21547 10.0857 4.21547 10.0857C4.21546 10.0857 4.21546 10.0857 4.21546 10.0857C4.21545 10.0857 4.21545 10.0857 4.21545 10.0857C4.21544 10.0857 4.21544 10.0857 4.21544 10.0857C4.21543 10.0857 4.21543 10.0857 4.21542 10.0857C4.21542 10.0857 4.21542 10.0857 4.21541 10.0857C4.21541 10.0857 4.21541 10.0857 4.2154 10.0857C4.2154 10.0857 4.2154 10.0857 4.21539 10.0857C4.21539 10.0857 4.21539 10.0857 4.21538 10.0857C4.21538 10.0857 4.21538 10.0857 4.21537 10.0857C4.21537 10.0857 4.21537 10.0857 4.21536 10.0857C4.21536 10.0857 4.21535 10.0857 4.21535 10.0857C4.21535 10.0857 4.21534 10.0857 4.21534 10.0857C4.21534 10.0857 4.21533 10.0857 4.21533 10.0857C4.21533 10.0857 4.21532 10.0857 4.21532 10.0857C4.21532 10.0857 4.21531 10.0857 4.21531 10.0857C4.21531 10.0857 4.2153 10.0857 4.2153 10.0857C4.21529 10.0857 4.21529 10.0857 4.21529 10.0857C4.21528 10.0857 4.21528 10.0857 4.21528 10.0857C4.21527 10.0857 4.21527 10.0857 4.21527 10.0857C4.21526 10.0857 4.21526 10.0857 4.21526 10.0857C4.21525 10.0857 4.21525 10.0857 4.21525 10.0857C4.21524 10.0857 4.21524 10.0857 4.21523 10.0857C4.21523 10.0857 4.21523 10.0857 4.21522 10.0857C4.21522 10.0857 4.21522 10.0857 4.21521 10.0857C4.21521 10.0857 4.21521 10.0857 4.2152 10.0857C4.2152 10.0857 4.2152 10.0857 4.21519 10.0857C4.21519 10.0857 4.21519 10.0857 4.21518 10.0857C4.21518 10.0857 4.21517 10.0857 4.21517 10.0857C4.21517 10.0857 4.21516 10.0857 4.21516 10.0857C4.21516 10.0857 4.21515 10.0857 4.21515 10.0857C4.21515 10.0857 4.21514 10.0857 4.21514 10.0857C4.21514 10.0857 4.21513 10.0857 4.21513 10.0857C4.21512 10.0857 4.21512 10.0857 4.21512 10.0857C4.21511 10.0857 4.21511 10.0857 4.21511 10.0857C4.2151 10.0857 4.2151 10.0857 4.2151 10.0857C4.21509 10.0857 4.21509 10.0857 4.21509 10.0857C4.21508 10.0857 4.21508 10.0857 4.21508 10.0857C4.21507 10.0857 4.21507 10.0857 4.21506 10.0857C4.21506 10.0857 4.21506 10.0857 4.21505 10.0857C4.21505 10.0857 4.21505 10.0857 4.21504 10.0857C4.21504 10.0857 4.21504 10.0857 4.21503 10.0857C4.21503 10.0857 4.21502 10.0857 4.21502 10.0857C4.21502 10.0857 4.21501 10.0857 4.21501 10.0857C4.21501 10.0857 4.215 10.0857 4.215 10.0857C4.215 10.0857 4.21499 10.0857 4.21499 10.0857C4.21499 10.0857 4.21498 10.0857 4.21498 10.0857C4.21497 10.0857 4.21497 10.0857 4.21497 10.0857C4.21496 10.0857 4.21496 10.0857 4.21496 10.0857C4.21495 10.0857 4.21495 10.0857 4.21495 10.0857C4.21494 10.0857 4.21494 10.0857 4.21494 10.0857C4.21493 10.0857 4.21493 10.0857 4.21492 10.0857C4.21492 10.0857 4.21492 10.0857 4.21491 10.0857C4.21491 10.0857 4.21491 10.0857 4.2149 10.0857C4.2149 10.0857 4.2149 10.0857 4.21489 10.0857C4.21489 10.0857 4.21489 10.0857 4.21488 10.0857C4.21488 10.0857 4.21487 10.0857 4.21487 10.0857C4.21487 10.0857 4.21486 10.0857 4.21486 10.0857C4.21486 10.0857 4.21485 10.0857 4.21485 10.0857C4.21485 10.0857 4.21484 10.0857 4.21484 10.0857C4.21483 10.0857 4.21483 10.0857 4.21483 10.0857C4.21482 10.0857 4.21482 10.0857 4.21482 10.0857C4.21481 10.0857 4.21481 10.0857 4.21481 10.0857C4.2148 10.0857 4.2148 10.0857 4.21479 10.0857C4.21479 10.0857 4.21479 10.0857 4.21478 10.0857C4.21478 10.0857 4.21478 10.0857 4.21477 10.0857C4.21477 10.0857 4.21477 10.0857 4.21476 10.0857C4.21476 10.0857 4.21476 10.0857 4.21475 10.0857C4.21475 10.0857 4.21474 10.0857 4.21474 10.0857C4.21474 10.0857 4.21473 10.0857 4.21473 10.0857C4.21473 10.0857 4.21472 10.0857 4.21472 10.0857C4.21472 10.0857 4.21471 10.0857 4.21471 10.0857C4.2147 10.0857 4.2147 10.0857 4.2147 10.0857C4.21469 10.0857 4.21469 10.0857 4.21469 10.0857C4.21468 10.0857 4.21468 10.0857 4.21468 10.0857C4.21467 10.0857 4.21467 10.0857 4.21466 10.0857C4.21466 10.0857 4.21466 10.0857 4.21465 10.0857C4.21465 10.0857 4.21465 10.0857 4.21464 10.0857C4.21464 10.0857 4.21463 10.0857 4.21463 10.0857C4.21463 10.0857 4.21462 10.0857 4.21462 10.0857C4.21462 10.0857 4.21461 10.0857 4.21461 10.0857C4.21461 10.0857 4.2146 10.0857 4.2146 10.0857C4.21459 10.0857 4.21459 10.0857 4.21459 10.0857V10.4857C4.21459 10.4857 4.21459 10.4857 4.2146 10.4857C4.2146 10.4857 4.21461 10.4857 4.21461 10.4857C4.21461 10.4857 4.21462 10.4857 4.21462 10.4857C4.21462 10.4857 4.21463 10.4857 4.21463 10.4857C4.21463 10.4857 4.21464 10.4857 4.21464 10.4857C4.21465 10.4857 4.21465 10.4857 4.21465 10.4857C4.21466 10.4857 4.21466 10.4857 4.21466 10.4857C4.21467 10.4857 4.21467 10.4857 4.21468 10.4857C4.21468 10.4857 4.21468 10.4857 4.21469 10.4857C4.21469 10.4857 4.21469 10.4857 4.2147 10.4857C4.2147 10.4857 4.2147 10.4857 4.21471 10.4857C4.21471 10.4857 4.21472 10.4857 4.21472 10.4857C4.21472 10.4857 4.21473 10.4857 4.21473 10.4857C4.21473 10.4857 4.21474 10.4857 4.21474 10.4857C4.21474 10.4857 4.21475 10.4857 4.21475 10.4857C4.21476 10.4857 4.21476 10.4857 4.21476 10.4857C4.21477 10.4857 4.21477 10.4857 4.21477 10.4857C4.21478 10.4857 4.21478 10.4857 4.21478 10.4857C4.21479 10.4857 4.21479 10.4857 4.21479 10.4857C4.2148 10.4857 4.2148 10.4857 4.21481 10.4857C4.21481 10.4857 4.21481 10.4857 4.21482 10.4857C4.21482 10.4857 4.21482 10.4857 4.21483 10.4857C4.21483 10.4857 4.21483 10.4857 4.21484 10.4857C4.21484 10.4857 4.21485 10.4857 4.21485 10.4857C4.21485 10.4857 4.21486 10.4857 4.21486 10.4857C4.21486 10.4857 4.21487 10.4857 4.21487 10.4857C4.21487 10.4857 4.21488 10.4857 4.21488 10.4857C4.21489 10.4857 4.21489 10.4857 4.21489 10.4857C4.2149 10.4857 4.2149 10.4857 4.2149 10.4857C4.21491 10.4857 4.21491 10.4857 4.21491 10.4857C4.21492 10.4857 4.21492 10.4857 4.21492 10.4857C4.21493 10.4857 4.21493 10.4857 4.21494 10.4857C4.21494 10.4857 4.21494 10.4857 4.21495 10.4857C4.21495 10.4857 4.21495 10.4857 4.21496 10.4857C4.21496 10.4857 4.21496 10.4857 4.21497 10.4857C4.21497 10.4857 4.21497 10.4857 4.21498 10.4857C4.21498 10.4857 4.21499 10.4857 4.21499 10.4857C4.21499 10.4857 4.215 10.4857 4.215 10.4857C4.215 10.4857 4.21501 10.4857 4.21501 10.4857C4.21501 10.4857 4.21502 10.4857 4.21502 10.4857C4.21502 10.4857 4.21503 10.4857 4.21503 10.4857C4.21504 10.4857 4.21504 10.4857 4.21504 10.4857C4.21505 10.4857 4.21505 10.4857 4.21505 10.4857C4.21506 10.4857 4.21506 10.4857 4.21506 10.4857C4.21507 10.4857 4.21507 10.4857 4.21508 10.4857C4.21508 10.4857 4.21508 10.4857 4.21509 10.4857C4.21509 10.4857 4.21509 10.4857 4.2151 10.4857C4.2151 10.4857 4.2151 10.4857 4.21511 10.4857C4.21511 10.4857 4.21511 10.4857 4.21512 10.4857C4.21512 10.4857 4.21512 10.4857 4.21513 10.4857C4.21513 10.4857 4.21514 10.4857 4.21514 10.4857C4.21514 10.4857 4.21515 10.4857 4.21515 10.4857C4.21515 10.4857 4.21516 10.4857 4.21516 10.4857C4.21516 10.4857 4.21517 10.4857 4.21517 10.4857C4.21517 10.4857 4.21518 10.4857 4.21518 10.4857C4.21519 10.4857 4.21519 10.4857 4.21519 10.4857C4.2152 10.4857 4.2152 10.4857 4.2152 10.4857C4.21521 10.4857 4.21521 10.4857 4.21521 10.4857C4.21522 10.4857 4.21522 10.4857 4.21522 10.4857C4.21523 10.4857 4.21523 10.4857 4.21523 10.4857C4.21524 10.4857 4.21524 10.4857 4.21525 10.4857C4.21525 10.4857 4.21525 10.4857 4.21526 10.4857C4.21526 10.4857 4.21526 10.4857 4.21527 10.4857C4.21527 10.4857 4.21527 10.4857 4.21528 10.4857C4.21528 10.4857 4.21528 10.4857 4.21529 10.4857C4.21529 10.4857 4.21529 10.4857 4.2153 10.4857C4.2153 10.4857 4.21531 10.4857 4.21531 10.4857C4.21531 10.4857 4.21532 10.4857 4.21532 10.4857C4.21532 10.4857 4.21533 10.4857 4.21533 10.4857C4.21533 10.4857 4.21534 10.4857 4.21534 10.4857C4.21534 10.4857 4.21535 10.4857 4.21535 10.4857C4.21535 10.4857 4.21536 10.4857 4.21536 10.4857C4.21537 10.4857 4.21537 10.4857 4.21537 10.4857C4.21538 10.4857 4.21538 10.4857 4.21538 10.4857C4.21539 10.4857 4.21539 10.4857 4.21539 10.4857C4.2154 10.4857 4.2154 10.4857 4.2154 10.4857C4.21541 10.4857 4.21541 10.4857 4.21541 10.4857C4.21542 10.4857 4.21542 10.4857 4.21542 10.4857C4.21543 10.4857 4.21543 10.4857 4.21544 10.4857C4.21544 10.4857 4.21544 10.4857 4.21545 10.4857C4.21545 10.4857 4.21545 10.4857 4.21546 10.4857C4.21546 10.4857 4.21546 10.4857 4.21547 10.4857C4.21547 10.4857 4.21547 10.4857 4.21548 10.4857C4.21548 10.4857 4.21548 10.4857 4.21549 10.4857C4.21549 10.4857 4.21549 10.4857 4.2155 10.4857C4.2155 10.4857 4.21551 10.4857 4.21551 10.4857C4.21551 10.4857 4.21552 10.4857 4.21552 10.4857C4.21552 10.4857 4.21553 10.4857 4.21553 10.4857C4.21553 10.4857 4.21554 10.4857 4.21554 10.4857C4.21554 10.4857 4.21555 10.4857 4.21555 10.4857C4.21555 10.4857 4.21556 10.4857 4.21556 10.4857C4.21556 10.4857 4.21557 10.4857 4.21557 10.4857C4.21557 10.4857 4.21558 10.4857 4.21558 10.4857C4.21559 10.4857 4.21559 10.4857 4.21559 10.4857C4.2156 10.4857 4.2156 10.4857 4.2156 10.4857C4.21561 10.4857 4.21561 10.4857 4.21561 10.4857C4.21562 10.4857 4.21562 10.4857 4.21562 10.4857C4.21563 10.4857 4.21563 10.4857 4.21563 10.4857C4.21564 10.4857 4.21564 10.4857 4.21564 10.4857C4.21565 10.4857 4.21565 10.4857 4.21565 10.4857C4.21566 10.4857 4.21566 10.4857 4.21567 10.4857C4.21567 10.4857 4.21567 10.4857 4.21568 10.4857C4.21568 10.4857 4.21568 10.4857 4.21569 10.4857C4.21569 10.4857 4.21569 10.4857 4.2157 10.4857C4.2157 10.4857 4.2157 10.4857 4.21571 10.4857C4.21571 10.4857 4.21571 10.4857 4.21572 10.4857C4.21572 10.4857 4.21572 10.4857 4.21573 10.4857C4.21573 10.4857 4.21573 10.4857 4.21574 10.4857C4.21574 10.4857 4.21574 10.4857 4.21575 10.4857C4.21575 10.4857 4.21576 10.4857 4.21576 10.4857C4.21576 10.4857 4.21577 10.4857 4.21577 10.4857C4.21577 10.4857 4.21578 10.4857 4.21578 10.4857C4.21578 10.4857 4.21579 10.4857 4.21579 10.4857C4.21579 10.4857 4.2158 10.4857 4.2158 10.4857C4.2158 10.4857 4.21581 10.4857 4.21581 10.4857C4.21581 10.4857 4.21582 10.4857 4.21582 10.4857C4.21582 10.4857 4.21583 10.4857 4.21583 10.4857C4.21583 10.4857 4.21584 10.4857 4.21584 10.4857C4.21585 10.4857 4.21585 10.4857 4.21585 10.4857C4.21586 10.4857 4.21586 10.4857 4.21586 10.4857C4.21587 10.4857 4.21587 10.4857 4.21587 10.4857C4.21588 10.4857 4.21588 10.4857 4.21588 10.4857C4.21589 10.4857 4.21589 10.4857 4.21589 10.4857C4.2159 10.4857 4.2159 10.4857 4.2159 10.4857C4.21591 10.4857 4.21591 10.4857 4.21591 10.4857C4.21592 10.4857 4.21592 10.4857 4.21592 10.4857C4.21593 10.4857 4.21593 10.4857 4.21593 10.4857C4.21594 10.4857 4.21594 10.4857 4.21594 10.4857C4.21595 10.4857 4.21595 10.4857 4.21596 10.4857C4.21596 10.4857 4.21596 10.4857 4.21597 10.4857C4.21597 10.4857 4.21597 10.4857 4.21598 10.4857C4.21598 10.4857 4.21598 10.4857 4.21599 10.4857C4.21599 10.4857 4.21599 10.4857 4.216 10.4857C4.216 10.4857 4.216 10.4857 4.21601 10.4857C4.21601 10.4857 4.21601 10.4857 4.21602 10.4857C4.21602 10.4857 4.21602 10.4857 4.21603 10.4857C4.21603 10.4857 4.21603 10.4857 4.21604 10.4857C4.21604 10.4857 4.21604 10.4857 4.21605 10.4857C4.21605 10.4857 4.21605 10.4857 4.21606 10.4857C4.21606 10.4857 4.21606 10.4857 4.21607 10.4857C4.21607 10.4857 4.21607 10.4857 4.21608 10.4857C4.21608 10.4857 4.21609 10.4857 4.21609 10.4857C4.21609 10.4857 4.2161 10.4857 4.2161 10.4857C4.2161 10.4857 4.21611 10.4857 4.21611 10.4857C4.21611 10.4857 4.21612 10.4857 4.21612 10.4857C4.21612 10.4857 4.21613 10.4857 4.21613 10.4857C4.21613 10.4857 4.21614 10.4857 4.21614 10.4857C4.21614 10.4857 4.21615 10.4857 4.21615 10.4857C4.21615 10.4857 4.21616 10.4857 4.21616 10.4857C4.21616 10.4857 4.21617 10.4857 4.21617 10.4857C4.21617 10.4857 4.21618 10.4857 4.21618 10.4857C4.21618 10.4857 4.21619 10.4857 4.21619 10.4857C4.21619 10.4857 4.2162 10.4857 4.2162 10.4857C4.2162 10.4857 4.21621 10.4857 4.21621 10.4857C4.21621 10.4857 4.21622 10.4857 4.21622 10.4857C4.21623 10.4857 4.21623 10.4857 4.21623 10.4857C4.21624 10.4857 4.21624 10.4857 4.21624 10.4857C4.21625 10.4857 4.21625 10.4857 4.21625 10.4857C4.21626 10.4857 4.21626 10.4857 4.21626 10.4857C4.21627 10.4857 4.21627 10.4857 4.21627 10.4857C4.21628 10.4857 4.21628 10.4857 4.21628 10.4857C4.21629 10.4857 4.21629 10.4857 4.21629 10.4857C4.2163 10.4857 4.2163 10.4857 4.2163 10.4857C4.21631 10.4857 4.21631 10.4857 4.21631 10.4857C4.21632 10.4857 4.21632 10.4857 4.21632 10.4857C4.21633 10.4857 4.21633 10.4857 4.21633 10.4857C4.21634 10.4857 4.21634 10.4857 4.21634 10.4857C4.21635 10.4857 4.21635 10.4857 4.21635 10.4857C4.21636 10.4857 4.21636 10.4857 4.21636 10.4857C4.21637 10.4857 4.21637 10.4857 4.21637 10.4857C4.21638 10.4857 4.21638 10.4857 4.21638 10.4857C4.21639 10.4857 4.21639 10.4857 4.21639 10.4857C4.2164 10.4857 4.2164 10.4857 4.21641 10.4857C4.21641 10.4857 4.21641 10.4857 4.21642 10.4857C4.21642 10.4857 4.21642 10.4857 4.21643 10.4857C4.21643 10.4857 4.21643 10.4857 4.21644 10.4857C4.21644 10.4857 4.21644 10.4857 4.21645 10.4857C4.21645 10.4857 4.21645 10.4857 4.21646 10.4857C4.21646 10.4857 4.21646 10.4857 4.21647 10.4857C4.21647 10.4857 4.21647 10.4857 4.21648 10.4857C4.21648 10.4857 4.21648 10.4857 4.21649 10.4857C4.21649 10.4857 4.21649 10.4857 4.2165 10.4857C4.2165 10.4857 4.2165 10.4857 4.21651 10.4857C4.21651 10.4857 4.21651 10.4857 4.21652 10.4857C4.21652 10.4857 4.21652 10.4857 4.21653 10.4857C4.21653 10.4857 4.21653 10.4857 4.21654 10.4857C4.21654 10.4857 4.21654 10.4857 4.21655 10.4857C4.21655 10.4857 4.21655 10.4857 4.21656 10.4857C4.21656 10.4857 4.21656 10.4857 4.21657 10.4857C4.21657 10.4857 4.21657 10.4857 4.21658 10.4857C4.21658 10.4857 4.21658 10.4857 4.21659 10.4857C4.21659 10.4857 4.21659 10.4857 4.2166 10.4857C4.2166 10.4857 4.2166 10.4857 4.21661 10.4857C4.21661 10.4857 4.21661 10.4857 4.21662 10.4857C4.21662 10.4857 4.21662 10.4857 4.21663 10.4857C4.21663 10.4857 4.21663 10.4857 4.21664 10.4857C4.21664 10.4857 4.21665 10.4857 4.21665 10.4857C4.21665 10.4857 4.21666 10.4857 4.21666 10.4857C4.21666 10.4857 4.21667 10.4857 4.21667 10.4857C4.21667 10.4857 4.21668 10.4857 4.21668 10.4857C4.21668 10.4857 4.21669 10.4857 4.21669 10.4857C4.21669 10.4857 4.2167 10.4857 4.2167 10.4857C4.2167 10.4857 4.21671 10.4857 4.21671 10.4857C4.21671 10.4857 4.21672 10.4857 4.21672 10.4857C4.21672 10.4857 4.21673 10.4857 4.21673 10.4857C4.21673 10.4857 4.21674 10.4857 4.21674 10.4857C4.21674 10.4857 4.21675 10.4857 4.21675 10.4857C4.21675 10.4857 4.21676 10.4857 4.21676 10.4857C4.21676 10.4857 4.21677 10.4857 4.21677 10.4857C4.21677 10.4857 4.21678 10.4857 4.21678 10.4857C4.21678 10.4857 4.21679 10.4857 4.21679 10.4857C4.21679 10.4857 4.2168 10.4857 4.2168 10.4857C4.2168 10.4857 4.21681 10.4857 4.21681 10.4857C4.21681 10.4857 4.21682 10.4857 4.21682 10.4857C4.21682 10.4857 4.21683 10.4857 4.21683 10.4857C4.21683 10.4857 4.21684 10.4857 4.21684 10.4857C4.21684 10.4857 4.21685 10.4857 4.21685 10.4857C4.21685 10.4857 4.21686 10.4857 4.21686 10.4857C4.21686 10.4857 4.21687 10.4857 4.21687 10.4857C4.21687 10.4857 4.21688 10.4857 4.21688 10.4857C4.21688 10.4857 4.21689 10.4857 4.21689 10.4857C4.21689 10.4857 4.2169 10.4857 4.2169 10.4857C4.2169 10.4857 4.21691 10.4857 4.21691 10.4857C4.21691 10.4857 4.21692 10.4857 4.21692 10.4857C4.21692 10.4857 4.21693 10.4857 4.21693 10.4857C4.21693 10.4857 4.21694 10.4857 4.21694 10.4857C4.21694 10.4857 4.21695 10.4857 4.21695 10.4857C4.21695 10.4857 4.21696 10.4857 4.21696 10.4857C4.21696 10.4857 4.21697 10.4857 4.21697 10.4857C4.21697 10.4857 4.21698 10.4857 4.21698 10.4857C4.21698 10.4857 4.21699 10.4857 4.21699 10.4857C4.217 10.4857 4.217 10.4857 4.217 10.4857C4.21701 10.4857 4.21701 10.4857 4.21701 10.4857C4.21702 10.4857 4.21702 10.4857 4.21702 10.4857C4.21703 10.4857 4.21703 10.4857 4.21703 10.4857C4.21704 10.4857 4.21704 10.4857 4.21704 10.4857C4.21705 10.4857 4.21705 10.4857 4.21705 10.4857C4.21706 10.4857 4.21706 10.4857 4.21706 10.4857C4.21707 10.4857 4.21707 10.4857 4.21707 10.4857C4.21708 10.4857 4.21708 10.4857 4.21708 10.4857C4.21709 10.4857 4.21709 10.4857 4.21709 10.4857C4.2171 10.4857 4.2171 10.4857 4.2171 10.4857C4.21711 10.4857 4.21711 10.4857 4.21711 10.4857C4.21712 10.4857 4.21712 10.4857 4.21712 10.4857C4.21713 10.4857 4.21713 10.4857 4.21713 10.4857C4.21714 10.4857 4.21714 10.4857 4.21714 10.4857C4.21715 10.4857 4.21715 10.4857 4.21715 10.4857C4.21716 10.4857 4.21716 10.4857 4.21716 10.4857C4.21717 10.4857 4.21717 10.4857 4.21717 10.4857C4.21718 10.4857 4.21718 10.4857 4.21718 10.4857C4.21719 10.4857 4.21719 10.4857 4.21719 10.4857C4.2172 10.4857 4.2172 10.4857 4.2172 10.4857C4.21721 10.4857 4.21721 10.4857 4.21721 10.4857C4.21722 10.4857 4.21722 10.4857 4.21722 10.4857C4.21723 10.4857 4.21723 10.4857 4.21723 10.4857C4.21724 10.4857 4.21724 10.4857 4.21724 10.4857C4.21725 10.4857 4.21725 10.4857 4.21725 10.4857C4.21726 10.4857 4.21726 10.4857 4.21726 10.4857C4.21727 10.4857 4.21727 10.4857 4.21727 10.4857C4.21728 10.4857 4.21728 10.4857 4.21728 10.4857C4.21729 10.4857 4.21729 10.4857 4.21729 10.4857C4.2173 10.4857 4.2173 10.4857 4.2173 10.4857C4.21731 10.4857 4.21731 10.4857 4.21731 10.4857C4.21732 10.4857 4.21732 10.4857 4.21732 10.4857C4.21733 10.4857 4.21733 10.4857 4.21733 10.4857C4.21734 10.4857 4.21734 10.4857 4.21734 10.4857C4.21735 10.4857 4.21735 10.4857 4.21735 10.4857C4.21736 10.4857 4.21736 10.4857 4.21736 10.4857C4.21737 10.4857 4.21737 10.4857 4.21737 10.4857C4.21738 10.4857 4.21738 10.4857 4.21738 10.4857C4.21739 10.4857 4.21739 10.4857 4.21739 10.4857C4.2174 10.4857 4.2174 10.4857 4.2174 10.4857C4.21741 10.4857 4.21741 10.4857 4.21741 10.4857C4.21742 10.4857 4.21742 10.4857 4.21742 10.4857C4.21743 10.4857 4.21743 10.4857 4.21744 10.4857C4.21744 10.4857 4.21744 10.4857 4.21745 10.4857C4.21745 10.4857 4.21745 10.4857 4.21746 10.4857C4.21746 10.4857 4.21746 10.4857 4.21747 10.4857C4.21747 10.4857 4.21747 10.4857 4.21748 10.4857C4.21748 10.4857 4.21748 10.4857 4.21749 10.4857C4.21749 10.4857 4.21749 10.4857 4.2175 10.4857C4.2175 10.4857 4.2175 10.4857 4.21751 10.4857C4.21751 10.4857 4.21751 10.4857 4.21752 10.4857C4.21752 10.4857 4.21752 10.4857 4.21753 10.4857C4.21753 10.4857 4.21753 10.4857 4.21754 10.4857C4.21754 10.4857 4.21754 10.4857 4.21755 10.4857C4.21755 10.4857 4.21755 10.4857 4.21756 10.4857C4.21756 10.4857 4.21756 10.4857 4.21757 10.4857C4.21757 10.4857 4.21757 10.4857 4.21758 10.4857C4.21758 10.4857 4.21758 10.4857 4.21759 10.4857C4.21759 10.4857 4.21759 10.4857 4.2176 10.4857C4.2176 10.4857 4.2176 10.4857 4.21761 10.4857C4.21761 10.4857 4.21761 10.4857 4.21762 10.4857C4.21762 10.4857 4.21762 10.4857 4.21763 10.4857C4.21763 10.4857 4.21763 10.4857 4.21764 10.4857C4.21764 10.4857 4.21764 10.4857 4.21765 10.4857C4.21765 10.4857 4.21765 10.4857 4.21766 10.4857C4.21766 10.4857 4.21766 10.4857 4.21767 10.4857C4.21767 10.4857 4.21767 10.4857 4.21768 10.4857C4.21768 10.4857 4.21768 10.4857 4.21769 10.4857C4.21769 10.4857 4.21769 10.4857 4.2177 10.4857C4.2177 10.4857 4.2177 10.4857 4.21771 10.4857C4.21771 10.4857 4.21771 10.4857 4.21772 10.4857C4.21772 10.4857 4.21772 10.4857 4.21773 10.4857C4.21773 10.4857 4.21773 10.4857 4.21774 10.4857C4.21774 10.4857 4.21774 10.4857 4.21775 10.4857C4.21775 10.4857 4.21775 10.4857 4.21776 10.4857C4.21776 10.4857 4.21776 10.4857 4.21777 10.4857C4.21777 10.4857 4.21777 10.4857 4.21778 10.4857C4.21778 10.4857 4.21778 10.4857 4.21779 10.4857C4.21779 10.4857 4.21779 10.4857 4.2178 10.4857C4.2178 10.4857 4.21781 10.4857 4.21781 10.4857C4.21781 10.4857 4.21782 10.4857 4.21782 10.4857C4.21782 10.4857 4.21783 10.4857 4.21783 10.4857C4.21783 10.4857 4.21784 10.4857 4.21784 10.4857C4.21784 10.4857 4.21785 10.4857 4.21785 10.4857C4.21785 10.4857 4.21786 10.4857 4.21786 10.4857C4.21786 10.4857 4.21787 10.4857 4.21787 10.4857C4.21787 10.4857 4.21788 10.4857 4.21788 10.4857C4.21788 10.4857 4.21789 10.4857 4.21789 10.4857C4.21789 10.4857 4.2179 10.4857 4.2179 10.4857C4.2179 10.4857 4.21791 10.4857 4.21791 10.4857C4.21791 10.4857 4.21792 10.4857 4.21792 10.4857C4.21792 10.4857 4.21793 10.4857 4.21793 10.4857C4.21793 10.4857 4.21794 10.4857 4.21794 10.4857C4.21794 10.4857 4.21795 10.4857 4.21795 10.4857C4.21795 10.4857 4.21796 10.4857 4.21796 10.4857C4.21796 10.4857 4.21797 10.4857 4.21797 10.4857C4.21797 10.4857 4.21798 10.4857 4.21798 10.4857C4.21798 10.4857 4.21799 10.4857 4.21799 10.4857C4.21799 10.4857 4.218 10.4857 4.218 10.4857C4.218 10.4857 4.21801 10.4857 4.21801 10.4857C4.21801 10.4857 4.21802 10.4857 4.21802 10.4857C4.21802 10.4857 4.21803 10.4857 4.21803 10.4857C4.21803 10.4857 4.21804 10.4857 4.21804 10.4857C4.21804 10.4857 4.21805 10.4857 4.21805 10.4857C4.21806 10.4857 4.21806 10.4857 4.21806 10.4857C4.21807 10.4857 4.21807 10.4857 4.21807 10.4857C4.21808 10.4857 4.21808 10.4857 4.21808 10.4857C4.21809 10.4857 4.21809 10.4857 4.21809 10.4857C4.2181 10.4857 4.2181 10.4857 4.2181 10.4857C4.21811 10.4857 4.21811 10.4857 4.21811 10.4857C4.21812 10.4857 4.21812 10.4857 4.21812 10.4857C4.21813 10.4857 4.21813 10.4857 4.21813 10.4857C4.21814 10.4857 4.21814 10.4857 4.21814 10.4857C4.21815 10.4857 4.21815 10.4857 4.21815 10.4857C4.21816 10.4857 4.21816 10.4857 4.21816 10.4857C4.21817 10.4857 4.21817 10.4857 4.21817 10.4857C4.21818 10.4857 4.21818 10.4857 4.21818 10.4857C4.21819 10.4857 4.21819 10.4857 4.21819 10.4857C4.2182 10.4857 4.2182 10.4857 4.2182 10.4857C4.21821 10.4857 4.21821 10.4857 4.21821 10.4857C4.21822 10.4857 4.21822 10.4857 4.21822 10.4857C4.21823 10.4857 4.21823 10.4857 4.21824 10.4857C4.21824 10.4857 4.21824 10.4857 4.21825 10.4857C4.21825 10.4857 4.21825 10.4857 4.21826 10.4857C4.21826 10.4857 4.21826 10.4857 4.21827 10.4857C4.21827 10.4857 4.21827 10.4857 4.21828 10.4857C4.21828 10.4857 4.21828 10.4857 4.21829 10.4857C4.21829 10.4857 4.21829 10.4857 4.2183 10.4857C4.2183 10.4857 4.2183 10.4857 4.21831 10.4857C4.21831 10.4857 4.21831 10.4857 4.21832 10.4857C4.21832 10.4857 4.21832 10.4857 4.21833 10.4857C4.21833 10.4857 4.21833 10.4857 4.21834 10.4857C4.21834 10.4857 4.21834 10.4857 4.21835 10.4857C4.21835 10.4857 4.21835 10.4857 4.21836 10.4857C4.21836 10.4857 4.21836 10.4857 4.21837 10.4857C4.21837 10.4857 4.21837 10.4857 4.21838 10.4857C4.21838 10.4857 4.21838 10.4857 4.21839 10.4857C4.21839 10.4857 4.2184 10.4857 4.2184 10.4857C4.2184 10.4857 4.21841 10.4857 4.21841 10.4857C4.21841 10.4857 4.21842 10.4857 4.21842 10.4857C4.21842 10.4857 4.21843 10.4857 4.21843 10.4857C4.21843 10.4857 4.21844 10.4857 4.21844 10.4857C4.21844 10.4857 4.21845 10.4857 4.21845 10.4857C4.21845 10.4857 4.21846 10.4857 4.21846 10.4857C4.21846 10.4857 4.21847 10.4857 4.21847 10.4857C4.21847 10.4857 4.21848 10.4857 4.21848 10.4857C4.21848 10.4857 4.21849 10.4857 4.21849 10.4857C4.21849 10.4857 4.2185 10.4857 4.2185 10.4857C4.2185 10.4857 4.21851 10.4857 4.21851 10.4857C4.21851 10.4857 4.21852 10.4857 4.21852 10.4857C4.21853 10.4857 4.21853 10.4857 4.21853 10.4857C4.21854 10.4857 4.21854 10.4857 4.21854 10.4857C4.21855 10.4857 4.21855 10.4857 4.21855 10.4857C4.21856 10.4857 4.21856 10.4857 4.21856 10.4857C4.21857 10.4857 4.21857 10.4857 4.21857 10.4857C4.21858 10.4857 4.21858 10.4857 4.21858 10.4857C4.21859 10.4857 4.21859 10.4857 4.21859 10.4857C4.2186 10.4857 4.2186 10.4857 4.2186 10.4857C4.21861 10.4857 4.21861 10.4857 4.21861 10.4857C4.21862 10.4857 4.21862 10.4857 4.21863 10.4857C4.21863 10.4857 4.21863 10.4857 4.21864 10.4857C4.21864 10.4857 4.21864 10.4857 4.21865 10.4857C4.21865 10.4857 4.21865 10.4857 4.21866 10.4857C4.21866 10.4857 4.21866 10.4857 4.21867 10.4857C4.21867 10.4857 4.21867 10.4857 4.21868 10.4857C4.21868 10.4857 4.21868 10.4857 4.21869 10.4857C4.21869 10.4857 4.21869 10.4857 4.2187 10.4857C4.2187 10.4857 4.2187 10.4857 4.21871 10.4857C4.21871 10.4857 4.21871 10.4857 4.21872 10.4857C4.21872 10.4857 4.21872 10.4857 4.21873 10.4857C4.21873 10.4857 4.21874 10.4857 4.21874 10.4857C4.21874 10.4857 4.21875 10.4857 4.21875 10.4857C4.21875 10.4857 4.21876 10.4857 4.21876 10.4857C4.21876 10.4857 4.21877 10.4857 4.21877 10.4857C4.21877 10.4857 4.21878 10.4857 4.21878 10.4857C4.21878 10.4857 4.21879 10.4857 4.21879 10.4857C4.21879 10.4857 4.2188 10.4857 4.2188 10.4857C4.2188 10.4857 4.21881 10.4857 4.21881 10.4857C4.21882 10.4857 4.21882 10.4857 4.21882 10.4857C4.21883 10.4857 4.21883 10.4857 4.21883 10.4857C4.21884 10.4857 4.21884 10.4857 4.21884 10.4857C4.21885 10.4857 4.21885 10.4857 4.21885 10.4857C4.21886 10.4857 4.21886 10.4857 4.21886 10.4857C4.21887 10.4857 4.21887 10.4857 4.21887 10.4857C4.21888 10.4857 4.21888 10.4857 4.21888 10.4857C4.21889 10.4857 4.21889 10.4857 4.21889 10.4857C4.2189 10.4857 4.2189 10.4857 4.21891 10.4857C4.21891 10.4857 4.21891 10.4857 4.21892 10.4857C4.21892 10.4857 4.21892 10.4857 4.21893 10.4857C4.21893 10.4857 4.21893 10.4857 4.21894 10.4857C4.21894 10.4857 4.21894 10.4857 4.21895 10.4857C4.21895 10.4857 4.21895 10.4857 4.21896 10.4857C4.21896 10.4857 4.21896 10.4857 4.21897 10.4857C4.21897 10.4857 4.21898 10.4857 4.21898 10.4857C4.21898 10.4857 4.21899 10.4857 4.21899 10.4857C4.21899 10.4857 4.219 10.4857 4.219 10.4857C4.219 10.4857 4.21901 10.4857 4.21901 10.4857C4.21901 10.4857 4.21902 10.4857 4.21902 10.4857C4.21902 10.4857 4.21903 10.4857 4.21903 10.4857C4.21903 10.4857 4.21904 10.4857 4.21904 10.4857C4.21904 10.4857 4.21905 10.4857 4.21905 10.4857C4.21906 10.4857 4.21906 10.4857 4.21906 10.4857C4.21907 10.4857 4.21907 10.4857 4.21907 10.4857C4.21908 10.4857 4.21908 10.4857 4.21908 10.4857C4.21909 10.4857 4.21909 10.4857 4.21909 10.4857C4.2191 10.4857 4.2191 10.4857 4.2191 10.4857C4.21911 10.4857 4.21911 10.4857 4.21912 10.4857C4.21912 10.4857 4.21912 10.4857 4.21913 10.4857C4.21913 10.4857 4.21913 10.4857 4.21914 10.4857C4.21914 10.4857 4.21914 10.4857 4.21915 10.4857C4.21915 10.4857 4.21915 10.4857 4.21916 10.4857C4.21916 10.4857 4.21916 10.4857 4.21917 10.4857C4.21917 10.4857 4.21917 10.4857 4.21918 10.4857C4.21918 10.4857 4.21919 10.4857 4.21919 10.4857C4.21919 10.4857 4.2192 10.4857 4.2192 10.4857C4.2192 10.4857 4.21921 10.4857 4.21921 10.4857C4.21921 10.4857 4.21922 10.4857 4.21922 10.4857C4.21922 10.4857 4.21923 10.4857 4.21923 10.4857C4.21923 10.4857 4.21924 10.4857 4.21924 10.4857C4.21925 10.4857 4.21925 10.4857 4.21925 10.4857C4.21926 10.4857 4.21926 10.4857 4.21926 10.4857C4.21927 10.4857 4.21927 10.4857 4.21927 10.4857C4.21928 10.4857 4.21928 10.4857 4.21928 10.4857C4.21929 10.4857 4.21929 10.4857 4.2193 10.4857C4.2193 10.4857 4.2193 10.4857 4.21931 10.4857C4.21931 10.4857 4.21931 10.4857 4.21932 10.4857C4.21932 10.4857 4.21932 10.4857 4.21933 10.4857C4.21933 10.4857 4.21933 10.4857 4.21934 10.4857C4.21934 10.4857 4.21934 10.4857 4.21935 10.4857C4.21935 10.4857 4.21936 10.4857 4.21936 10.4857C4.21936 10.4857 4.21937 10.4857 4.21937 10.4857C4.21937 10.4857 4.21938 10.4857 4.21938 10.4857C4.21938 10.4857 4.21939 10.4857 4.21939 10.4857C4.21939 10.4857 4.2194 10.4857 4.2194 10.4857C4.21941 10.4857 4.21941 10.4857 4.21941 10.4857C4.21942 10.4857 4.21942 10.4857 4.21942 10.4857C4.21943 10.4857 4.21943 10.4857 4.21943 10.4857C4.21944 10.4857 4.21944 10.4857 4.21944 10.4857C4.21945 10.4857 4.21945 10.4857 4.21946 10.4857C4.21946 10.4857 4.21946 10.4857 4.21947 10.4857C4.21947 10.4857 4.21947 10.4857 4.21948 10.4857C4.21948 10.4857 4.21948 10.4857 4.21949 10.4857C4.21949 10.4857 4.21949 10.4857 4.2195 10.4857C4.2195 10.4857 4.21951 10.4857 4.21951 10.4857C4.21951 10.4857 4.21952 10.4857 4.21952 10.4857C4.21952 10.4857 4.21953 10.4857 4.21953 10.4857C4.21953 10.4857 4.21954 10.4857 4.21954 10.4857C4.21954 10.4857 4.21955 10.4857 4.21955 10.4857C4.21956 10.4857 4.21956 10.4857 4.21956 10.4857C4.21957 10.4857 4.21957 10.4857 4.21957 10.4857C4.21958 10.4857 4.21958 10.4857 4.21958 10.4857C4.21959 10.4857 4.21959 10.4857 4.21959 10.4857C4.2196 10.4857 4.2196 10.4857 4.21961 10.4857C4.21961 10.4857 4.21961 10.4857 4.21962 10.4857C4.21962 10.4857 4.21962 10.4857 4.21963 10.4857C4.21963 10.4857 4.21963 10.4857 4.21964 10.4857C4.21964 10.4857 4.21965 10.4857 4.21965 10.4857C4.21965 10.4857 4.21966 10.4857 4.21966 10.4857C4.21966 10.4857 4.21967 10.4857 4.21967 10.4857C4.21967 10.4857 4.21968 10.4857 4.21968 10.4857C4.21969 10.4857 4.21969 10.4857 4.21969 10.4857C4.2197 10.4857 4.2197 10.4857 4.2197 10.4857C4.21971 10.4857 4.21971 10.4857 4.21971 10.4857C4.21972 10.4857 4.21972 10.4857 4.21972 10.4857C4.21973 10.4857 4.21973 10.4857 4.21974 10.4857C4.21974 10.4857 4.21974 10.4857 4.21975 10.4857C4.21975 10.4857 4.21975 10.4857 4.21976 10.4857C4.21976 10.4857 4.21976 10.4857 4.21977 10.4857C4.21977 10.4857 4.21978 10.4857 4.21978 10.4857C4.21978 10.4857 4.21979 10.4857 4.21979 10.4857C4.21979 10.4857 4.2198 10.4857 4.2198 10.4857C4.21981 10.4857 4.21981 10.4857 4.21981 10.4857C4.21982 10.4857 4.21982 10.4857 4.21982 10.4857C4.21983 10.4857 4.21983 10.4857 4.21983 10.4857C4.21984 10.4857 4.21984 10.4857 4.21985 10.4857C4.21985 10.4857 4.21985 10.4857 4.21986 10.4857C4.21986 10.4857 4.21986 10.4857 4.21987 10.4857C4.21987 10.4857 4.21987 10.4857 4.21988 10.4857C4.21988 10.4857 4.21989 10.4857 4.21989 10.4857C4.21989 10.4857 4.2199 10.4857 4.2199 10.4857V10.0857ZM4.21459 10.0857H2.22152V10.4857H4.21459V10.0857ZM2.36298 10.4271L4.60885 8.18024L4.32594 7.89747L2.08007 10.1443L2.36298 10.4271ZM4.60715 8.18192C4.71052 8.08094 4.7752 7.9397 4.7752 7.78316H4.3752C4.3752 7.8273 4.35738 7.86673 4.32764 7.89579L4.60715 8.18192ZM4.7752 7.78316C4.7752 7.47552 4.52603 7.22618 4.21834 7.22618V7.62618C4.305 7.62618 4.3752 7.69631 4.3752 7.78316H4.7752ZM4.21834 7.22618C4.21677 7.22618 4.20369 7.22604 4.1896 7.22732L4.22583 7.62567C4.22135 7.62608 4.21819 7.62616 4.21738 7.62617C4.21665 7.62619 4.21629 7.62618 4.21834 7.62618V7.22618ZM4.20771 7.62649H4.20834V7.22649H4.20771V7.62649ZM4.20249 7.22658C4.05257 7.23096 3.91729 7.29448 3.81985 7.39438L4.10621 7.67367C4.13377 7.64541 4.17161 7.62765 4.21418 7.62641L4.20249 7.22658ZM3.82159 7.39263L1.57541 9.63951L1.8583 9.92231L4.10448 7.67542L3.82159 7.39263ZM1.91685 9.78091V7.7866H1.51685V9.78091H1.91685ZM1.91685 7.7866C1.91685 7.78659 1.91685 7.78659 1.91685 7.78659C1.91685 7.78658 1.91685 7.78658 1.91685 7.78658C1.91685 7.78657 1.91685 7.78657 1.91685 7.78657C1.91685 7.78657 1.91685 7.78656 1.91685 7.78656C1.91685 7.78656 1.91685 7.78655 1.91685 7.78655C1.91685 7.78655 1.91685 7.78654 1.91685 7.78654C1.91685 7.78654 1.91685 7.78653 1.91685 7.78653C1.91685 7.78653 1.91685 7.78653 1.91685 7.78652C1.91685 7.78652 1.91685 7.78652 1.91685 7.78651C1.91685 7.78651 1.91685 7.78651 1.91685 7.7865C1.91685 7.7865 1.91685 7.7865 1.91685 7.7865C1.91685 7.78649 1.91685 7.78649 1.91685 7.78649C1.91685 7.78648 1.91685 7.78648 1.91685 7.78648C1.91685 7.78647 1.91685 7.78647 1.91685 7.78647C1.91685 7.78646 1.91685 7.78646 1.91685 7.78646C1.91685 7.78646 1.91685 7.78645 1.91685 7.78645C1.91685 7.78645 1.91685 7.78644 1.91685 7.78644C1.91685 7.78644 1.91685 7.78643 1.91685 7.78643C1.91685 7.78643 1.91685 7.78642 1.91685 7.78642C1.91685 7.78642 1.91685 7.78642 1.91685 7.78641C1.91685 7.78641 1.91685 7.78641 1.91685 7.7864C1.91685 7.7864 1.91685 7.7864 1.91685 7.78639C1.91685 7.78639 1.91685 7.78639 1.91685 7.78639C1.91685 7.78638 1.91685 7.78638 1.91685 7.78638C1.91685 7.78637 1.91685 7.78637 1.91685 7.78637C1.91685 7.78636 1.91685 7.78636 1.91685 7.78636C1.91685 7.78635 1.91685 7.78635 1.91685 7.78635C1.91685 7.78635 1.91685 7.78634 1.91685 7.78634C1.91685 7.78634 1.91685 7.78633 1.91685 7.78633C1.91685 7.78633 1.91685 7.78632 1.91685 7.78632C1.91685 7.78632 1.91685 7.78631 1.91685 7.78631C1.91685 7.78631 1.91685 7.78631 1.91685 7.7863C1.91685 7.7863 1.91685 7.7863 1.91685 7.78629C1.91685 7.78629 1.91685 7.78629 1.91685 7.78628C1.91685 7.78628 1.91685 7.78628 1.91685 7.78628C1.91685 7.78627 1.91685 7.78627 1.91685 7.78627C1.91685 7.78626 1.91685 7.78626 1.91685 7.78626C1.91685 7.78625 1.91685 7.78625 1.91685 7.78625C1.91685 7.78624 1.91685 7.78624 1.91685 7.78624C1.91685 7.78624 1.91685 7.78623 1.91685 7.78623C1.91685 7.78623 1.91685 7.78622 1.91685 7.78622C1.91685 7.78622 1.91685 7.78621 1.91685 7.78621C1.91685 7.78621 1.91685 7.78621 1.91685 7.7862C1.91685 7.7862 1.91685 7.7862 1.91685 7.78619C1.91685 7.78619 1.91685 7.78619 1.91685 7.78618C1.91685 7.78618 1.91685 7.78618 1.91685 7.78617C1.91685 7.78617 1.91685 7.78617 1.91685 7.78617C1.91685 7.78616 1.91685 7.78616 1.91685 7.78616C1.91685 7.78615 1.91685 7.78615 1.91685 7.78615C1.91685 7.78614 1.91685 7.78614 1.91685 7.78614C1.91685 7.78613 1.91685 7.78613 1.91685 7.78613C1.91685 7.78613 1.91685 7.78612 1.91685 7.78612C1.91685 7.78612 1.91685 7.78611 1.91685 7.78611C1.91685 7.78611 1.91685 7.7861 1.91685 7.7861C1.91685 7.7861 1.91685 7.7861 1.91685 7.78609C1.91685 7.78609 1.91685 7.78609 1.91685 7.78608C1.91685 7.78608 1.91685 7.78608 1.91685 7.78607C1.91685 7.78607 1.91685 7.78607 1.91685 7.78606C1.91685 7.78606 1.91685 7.78606 1.91685 7.78606C1.91685 7.78605 1.91685 7.78605 1.91685 7.78605C1.91685 7.78604 1.91685 7.78604 1.91685 7.78604C1.91685 7.78603 1.91685 7.78603 1.91685 7.78603C1.91685 7.78603 1.91685 7.78602 1.91685 7.78602C1.91685 7.78602 1.91685 7.78601 1.91685 7.78601C1.91685 7.78601 1.91685 7.786 1.91685 7.786C1.91685 7.786 1.91685 7.78599 1.91685 7.78599C1.91685 7.78599 1.91685 7.78599 1.91685 7.78598C1.91685 7.78598 1.91685 7.78598 1.91685 7.78597C1.91685 7.78597 1.91685 7.78597 1.91685 7.78596C1.91685 7.78596 1.91685 7.78596 1.91685 7.78595C1.91685 7.78595 1.91685 7.78595 1.91685 7.78595C1.91685 7.78594 1.91685 7.78594 1.91685 7.78594C1.91685 7.78593 1.91685 7.78593 1.91685 7.78593C1.91685 7.78592 1.91685 7.78592 1.91685 7.78592C1.91685 7.78591 1.91685 7.78591 1.91685 7.78591C1.91685 7.78591 1.91685 7.7859 1.91685 7.7859C1.91685 7.7859 1.91685 7.78589 1.91685 7.78589C1.91685 7.78589 1.91685 7.78588 1.91685 7.78588C1.91685 7.78588 1.91685 7.78588 1.91685 7.78587C1.91685 7.78587 1.91685 7.78587 1.91685 7.78586C1.91685 7.78586 1.91685 7.78586 1.91685 7.78585C1.91685 7.78585 1.91685 7.78585 1.91685 7.78584C1.91685 7.78584 1.91685 7.78584 1.91685 7.78584C1.91685 7.78583 1.91685 7.78583 1.91685 7.78583C1.91685 7.78582 1.91685 7.78582 1.91685 7.78582C1.91685 7.78581 1.91685 7.78581 1.91685 7.78581C1.91685 7.78581 1.91685 7.7858 1.91685 7.7858C1.91685 7.7858 1.91685 7.78579 1.91685 7.78579C1.91685 7.78579 1.91685 7.78578 1.91685 7.78578C1.91685 7.78578 1.91685 7.78577 1.91685 7.78577C1.91685 7.78577 1.91685 7.78577 1.91685 7.78576C1.91685 7.78576 1.91685 7.78576 1.91685 7.78575C1.91685 7.78575 1.91685 7.78575 1.91685 7.78574C1.91685 7.78574 1.91685 7.78574 1.91685 7.78574C1.91685 7.78573 1.91685 7.78573 1.91685 7.78573C1.91685 7.78572 1.91685 7.78572 1.91685 7.78572C1.91685 7.78571 1.91685 7.78571 1.91685 7.78571C1.91685 7.7857 1.91685 7.7857 1.91685 7.7857C1.91685 7.7857 1.91685 7.78569 1.91685 7.78569C1.91685 7.78569 1.91685 7.78568 1.91685 7.78568C1.91685 7.78568 1.91685 7.78567 1.91685 7.78567C1.91685 7.78567 1.91685 7.78566 1.91685 7.78566C1.91685 7.78566 1.91685 7.78566 1.91685 7.78565C1.91685 7.78565 1.91685 7.78565 1.91685 7.78564C1.91685 7.78564 1.91685 7.78564 1.91685 7.78563C1.91685 7.78563 1.91685 7.78563 1.91685 7.78562C1.91685 7.78562 1.91685 7.78562 1.91685 7.78562C1.91685 7.78561 1.91685 7.78561 1.91685 7.78561C1.91685 7.7856 1.91685 7.7856 1.91685 7.7856C1.91685 7.78559 1.91685 7.78559 1.91685 7.78559C1.91685 7.78559 1.91685 7.78558 1.91685 7.78558C1.91685 7.78558 1.91685 7.78557 1.91685 7.78557C1.91685 7.78557 1.91685 7.78556 1.91685 7.78556C1.91685 7.78556 1.91685 7.78555 1.91685 7.78555C1.91685 7.78555 1.91685 7.78555 1.91685 7.78554C1.91685 7.78554 1.91685 7.78554 1.91685 7.78553C1.91685 7.78553 1.91685 7.78553 1.91685 7.78552C1.91685 7.78552 1.91685 7.78552 1.91685 7.78552C1.91685 7.78551 1.91685 7.78551 1.91685 7.78551C1.91685 7.7855 1.91685 7.7855 1.91685 7.7855C1.91685 7.78549 1.91685 7.78549 1.91685 7.78549C1.91685 7.78548 1.91685 7.78548 1.91685 7.78548C1.91685 7.78548 1.91685 7.78547 1.91685 7.78547C1.91685 7.78547 1.91685 7.78546 1.91685 7.78546C1.91685 7.78546 1.91685 7.78545 1.91685 7.78545C1.91685 7.78545 1.91685 7.78545 1.91685 7.78544C1.91685 7.78544 1.91685 7.78544 1.91685 7.78543C1.91685 7.78543 1.91685 7.78543 1.91685 7.78542C1.91685 7.78542 1.91685 7.78542 1.91685 7.78541C1.91685 7.78541 1.91685 7.78541 1.91685 7.78541C1.91685 7.7854 1.91685 7.7854 1.91685 7.7854C1.91685 7.78539 1.91685 7.78539 1.91685 7.78539C1.91685 7.78538 1.91685 7.78538 1.91685 7.78538C1.91685 7.78537 1.91685 7.78537 1.91685 7.78537C1.91685 7.78537 1.91685 7.78536 1.91685 7.78536C1.91685 7.78536 1.91685 7.78535 1.91685 7.78535C1.91685 7.78535 1.91685 7.78534 1.91685 7.78534C1.91685 7.78534 1.91685 7.78534 1.91685 7.78533C1.91685 7.78533 1.91685 7.78533 1.91685 7.78532C1.91685 7.78532 1.91685 7.78532 1.91685 7.78531C1.91685 7.78531 1.91685 7.78531 1.91685 7.7853C1.91685 7.7853 1.91685 7.7853 1.91685 7.7853C1.91685 7.78529 1.91685 7.78529 1.91685 7.78529C1.91685 7.78528 1.91685 7.78528 1.91685 7.78528C1.91685 7.78527 1.91685 7.78527 1.91685 7.78527C1.91685 7.78526 1.91685 7.78526 1.91685 7.78526C1.91685 7.78526 1.91685 7.78525 1.91685 7.78525C1.91685 7.78525 1.91685 7.78524 1.91685 7.78524C1.91685 7.78524 1.91685 7.78523 1.91685 7.78523C1.91685 7.78523 1.91685 7.78523 1.91685 7.78522C1.91685 7.78522 1.91685 7.78522 1.91685 7.78521C1.91685 7.78521 1.91685 7.78521 1.91685 7.7852C1.91685 7.7852 1.91685 7.7852 1.91685 7.78519C1.91685 7.78519 1.91685 7.78519 1.91685 7.78519C1.91685 7.78518 1.91685 7.78518 1.91685 7.78518C1.91685 7.78517 1.91685 7.78517 1.91685 7.78517C1.91685 7.78516 1.91685 7.78516 1.91685 7.78516C1.91685 7.78515 1.91685 7.78515 1.91685 7.78515C1.91685 7.78515 1.91685 7.78514 1.91685 7.78514C1.91685 7.78514 1.91685 7.78513 1.91685 7.78513C1.91685 7.78513 1.91685 7.78512 1.91685 7.78512C1.91685 7.78512 1.91685 7.78512 1.91685 7.78511C1.91685 7.78511 1.91685 7.78511 1.91685 7.7851C1.91685 7.7851 1.91685 7.7851 1.91685 7.78509C1.91685 7.78509 1.91685 7.78509 1.91685 7.78508C1.91685 7.78508 1.91685 7.78508 1.91685 7.78508C1.91685 7.78507 1.91685 7.78507 1.91685 7.78507C1.91685 7.78506 1.91685 7.78506 1.91685 7.78506C1.91685 7.78505 1.91685 7.78505 1.91685 7.78505C1.91685 7.78505 1.91685 7.78504 1.91685 7.78504C1.91685 7.78504 1.91685 7.78503 1.91685 7.78503C1.91685 7.78503 1.91685 7.78502 1.91685 7.78502C1.91685 7.78502 1.91685 7.78501 1.91685 7.78501C1.91685 7.78501 1.91685 7.78501 1.91685 7.785C1.91685 7.785 1.91685 7.785 1.91685 7.78499C1.91685 7.78499 1.91685 7.78499 1.91685 7.78498C1.91685 7.78498 1.91685 7.78498 1.91685 7.78498C1.91685 7.78497 1.91685 7.78497 1.91685 7.78497C1.91685 7.78496 1.91685 7.78496 1.91685 7.78496C1.91685 7.78495 1.91685 7.78495 1.91685 7.78495C1.91685 7.78494 1.91685 7.78494 1.91685 7.78494C1.91685 7.78494 1.91685 7.78493 1.91685 7.78493C1.91685 7.78493 1.91685 7.78492 1.91685 7.78492C1.91685 7.78492 1.91685 7.78491 1.91685 7.78491C1.91685 7.78491 1.91685 7.7849 1.91685 7.7849C1.91685 7.7849 1.91685 7.7849 1.91685 7.78489C1.91685 7.78489 1.91685 7.78489 1.91685 7.78488C1.91685 7.78488 1.91685 7.78488 1.91685 7.78487C1.91685 7.78487 1.91685 7.78487 1.91685 7.78486C1.91685 7.78486 1.91685 7.78486 1.91685 7.78486C1.91685 7.78485 1.91685 7.78485 1.91685 7.78485C1.91685 7.78484 1.91685 7.78484 1.91685 7.78484C1.91685 7.78483 1.91685 7.78483 1.91685 7.78483C1.91685 7.78483 1.91685 7.78482 1.91685 7.78482C1.91685 7.78482 1.91685 7.78481 1.91685 7.78481C1.91685 7.78481 1.91685 7.7848 1.91685 7.7848C1.91685 7.7848 1.91685 7.78479 1.91685 7.78479C1.91685 7.78479 1.91685 7.78479 1.91685 7.78478C1.91685 7.78478 1.91685 7.78478 1.91685 7.78477C1.91685 7.78477 1.91685 7.78477 1.91685 7.78476C1.91685 7.78476 1.91685 7.78476 1.91685 7.78476C1.91685 7.78475 1.91685 7.78475 1.91685 7.78475C1.91685 7.78474 1.91685 7.78474 1.91685 7.78474C1.91685 7.78473 1.91685 7.78473 1.91685 7.78473C1.91685 7.78472 1.91685 7.78472 1.91685 7.78472C1.91685 7.78472 1.91685 7.78471 1.91685 7.78471C1.91685 7.78471 1.91685 7.7847 1.91685 7.7847C1.91685 7.7847 1.91685 7.78469 1.91685 7.78469C1.91685 7.78469 1.91685 7.78469 1.91685 7.78468C1.91685 7.78468 1.91685 7.78468 1.91685 7.78467C1.91685 7.78467 1.91685 7.78467 1.91685 7.78466C1.91685 7.78466 1.91685 7.78466 1.91685 7.78465C1.91685 7.78465 1.91685 7.78465 1.91685 7.78465C1.91685 7.78464 1.91685 7.78464 1.91685 7.78464C1.91685 7.78463 1.91685 7.78463 1.91685 7.78463C1.91685 7.78462 1.91685 7.78462 1.91685 7.78462C1.91685 7.78461 1.91685 7.78461 1.91685 7.78461C1.91685 7.78461 1.91685 7.7846 1.91685 7.7846C1.91685 7.7846 1.91685 7.78459 1.91685 7.78459C1.91685 7.78459 1.91685 7.78458 1.91685 7.78458C1.91685 7.78458 1.91685 7.78457 1.91685 7.78457C1.91685 7.78457 1.91685 7.78457 1.91685 7.78456C1.91685 7.78456 1.91685 7.78456 1.91685 7.78455C1.91685 7.78455 1.91685 7.78455 1.91685 7.78454C1.91685 7.78454 1.91685 7.78454 1.91685 7.78454C1.91685 7.78453 1.91685 7.78453 1.91685 7.78453C1.91685 7.78452 1.91685 7.78452 1.91685 7.78452C1.91685 7.78451 1.91685 7.78451 1.91685 7.78451C1.91685 7.7845 1.91685 7.7845 1.91685 7.7845C1.91685 7.7845 1.91685 7.78449 1.91685 7.78449C1.91685 7.78449 1.91685 7.78448 1.91685 7.78448C1.91685 7.78448 1.91685 7.78447 1.91685 7.78447C1.91685 7.78447 1.91685 7.78447 1.91685 7.78446C1.91685 7.78446 1.91685 7.78446 1.91685 7.78445C1.91685 7.78445 1.91685 7.78445 1.91685 7.78444C1.91685 7.78444 1.91685 7.78444 1.91685 7.78443C1.91685 7.78443 1.91685 7.78443 1.91685 7.78443C1.91685 7.78442 1.91685 7.78442 1.91685 7.78442C1.91685 7.78441 1.91685 7.78441 1.91685 7.78441C1.91685 7.7844 1.91685 7.7844 1.91685 7.7844C1.91685 7.78439 1.91685 7.78439 1.91685 7.78439C1.91685 7.78439 1.91685 7.78438 1.91685 7.78438C1.91685 7.78438 1.91685 7.78437 1.91685 7.78437C1.91685 7.78437 1.91685 7.78436 1.91685 7.78436C1.91685 7.78436 1.91685 7.78436 1.91685 7.78435C1.91685 7.78435 1.91685 7.78435 1.91685 7.78434C1.91685 7.78434 1.91685 7.78434 1.91685 7.78433C1.91685 7.78433 1.91685 7.78433 1.91685 7.78432C1.91685 7.78432 1.91685 7.78432 1.91685 7.78432C1.91685 7.78431 1.91685 7.78431 1.91685 7.78431C1.91685 7.7843 1.91685 7.7843 1.91685 7.7843C1.91685 7.78429 1.91685 7.78429 1.91685 7.78429C1.91685 7.78429 1.91685 7.78428 1.91685 7.78428C1.91685 7.78428 1.91685 7.78427 1.91685 7.78427C1.91685 7.78427 1.91685 7.78426 1.91685 7.78426C1.91685 7.78426 1.91685 7.78425 1.91685 7.78425C1.91685 7.78425 1.91685 7.78425 1.91685 7.78424C1.91685 7.78424 1.91685 7.78424 1.91685 7.78423C1.91685 7.78423 1.91685 7.78423 1.91685 7.78422C1.91685 7.78422 1.91685 7.78422 1.91685 7.78421C1.91685 7.78421 1.91685 7.78421 1.91685 7.78421C1.91685 7.7842 1.91685 7.7842 1.91685 7.7842C1.91685 7.78419 1.91685 7.78419 1.91685 7.78419C1.91685 7.78418 1.91685 7.78418 1.91685 7.78418C1.91685 7.78418 1.91685 7.78417 1.91685 7.78417C1.91685 7.78417 1.91685 7.78416 1.91685 7.78416C1.91685 7.78416 1.91685 7.78415 1.91685 7.78415C1.91685 7.78415 1.91685 7.78414 1.91685 7.78414C1.91685 7.78414 1.91685 7.78414 1.91685 7.78413C1.91685 7.78413 1.91685 7.78413 1.91685 7.78412C1.91685 7.78412 1.91685 7.78412 1.91685 7.78411C1.91685 7.78411 1.91685 7.78411 1.91685 7.7841C1.91685 7.7841 1.91685 7.7841 1.91685 7.7841C1.91685 7.78409 1.91685 7.78409 1.91685 7.78409C1.91685 7.78408 1.91685 7.78408 1.91685 7.78408C1.91685 7.78407 1.91685 7.78407 1.91685 7.78407C1.91685 7.78407 1.91685 7.78406 1.91685 7.78406C1.91685 7.78406 1.91685 7.78405 1.91685 7.78405C1.91685 7.78405 1.91685 7.78404 1.91685 7.78404C1.91685 7.78404 1.91685 7.78403 1.91685 7.78403C1.91685 7.78403 1.91685 7.78403 1.91685 7.78402C1.91685 7.78402 1.91685 7.78402 1.91685 7.78401C1.91685 7.78401 1.91685 7.78401 1.91685 7.784C1.91685 7.784 1.91685 7.784 1.91685 7.784C1.91685 7.78399 1.91685 7.78399 1.91685 7.78399C1.91685 7.78398 1.91685 7.78398 1.91685 7.78398C1.91685 7.78397 1.91685 7.78397 1.91685 7.78397C1.91685 7.78396 1.91685 7.78396 1.91685 7.78396C1.91685 7.78396 1.91685 7.78395 1.91685 7.78395C1.91685 7.78395 1.91685 7.78394 1.91685 7.78394C1.91685 7.78394 1.91685 7.78393 1.91685 7.78393C1.91685 7.78393 1.91685 7.78393 1.91685 7.78392C1.91685 7.78392 1.91685 7.78392 1.91685 7.78391C1.91685 7.78391 1.91685 7.78391 1.91685 7.7839C1.91685 7.7839 1.91685 7.7839 1.91685 7.78389C1.91685 7.78389 1.91685 7.78389 1.91685 7.78389C1.91685 7.78388 1.91685 7.78388 1.91685 7.78388C1.91685 7.78387 1.91685 7.78387 1.91685 7.78387C1.91685 7.78386 1.91685 7.78386 1.91685 7.78386C1.91685 7.78385 1.91685 7.78385 1.91685 7.78385C1.91685 7.78385 1.91685 7.78384 1.91685 7.78384C1.91685 7.78384 1.91685 7.78383 1.91685 7.78383C1.91685 7.78383 1.91685 7.78382 1.91685 7.78382C1.91685 7.78382 1.91685 7.78381 1.91685 7.78381C1.91685 7.78381 1.91685 7.78381 1.91685 7.7838C1.91685 7.7838 1.91685 7.7838 1.91685 7.78379C1.91685 7.78379 1.91685 7.78379 1.91685 7.78378C1.91685 7.78378 1.91685 7.78378 1.91685 7.78378C1.91685 7.78377 1.91685 7.78377 1.91685 7.78377C1.91685 7.78376 1.91685 7.78376 1.91685 7.78376C1.91685 7.78375 1.91685 7.78375 1.91685 7.78375C1.91685 7.78374 1.91685 7.78374 1.91685 7.78374C1.91685 7.78374 1.91685 7.78373 1.91685 7.78373C1.91685 7.78373 1.91685 7.78372 1.91685 7.78372C1.91685 7.78372 1.91685 7.78371 1.91685 7.78371C1.91685 7.78371 1.91685 7.78371 1.91685 7.7837C1.91685 7.7837 1.91685 7.7837 1.91685 7.78369C1.91685 7.78369 1.91685 7.78369 1.91685 7.78368C1.91685 7.78368 1.91685 7.78368 1.91685 7.78367C1.91685 7.78367 1.91685 7.78367 1.91685 7.78367C1.91685 7.78366 1.91685 7.78366 1.91685 7.78366C1.91685 7.78365 1.91685 7.78365 1.91685 7.78365C1.91685 7.78364 1.91685 7.78364 1.91685 7.78364C1.91685 7.78363 1.91685 7.78363 1.91685 7.78363C1.91685 7.78363 1.91685 7.78362 1.91685 7.78362C1.91685 7.78362 1.91685 7.78361 1.91685 7.78361C1.91685 7.78361 1.91685 7.7836 1.91685 7.7836C1.91685 7.7836 1.91685 7.7836 1.91685 7.78359C1.91685 7.78359 1.91685 7.78359 1.91685 7.78358C1.91685 7.78358 1.91685 7.78358 1.91685 7.78357C1.91685 7.78357 1.91685 7.78357 1.91685 7.78356C1.91685 7.78356 1.91685 7.78356 1.91685 7.78356C1.91685 7.78355 1.91685 7.78355 1.91685 7.78355C1.91685 7.78354 1.91685 7.78354 1.91685 7.78354C1.91685 7.78353 1.91685 7.78353 1.91685 7.78353C1.91685 7.78352 1.91685 7.78352 1.91685 7.78352C1.91685 7.78352 1.91685 7.78351 1.91685 7.78351C1.91685 7.78351 1.91685 7.7835 1.91685 7.7835C1.91685 7.7835 1.91685 7.78349 1.91685 7.78349C1.91685 7.78349 1.91685 7.78349 1.91685 7.78348C1.91685 7.78348 1.91685 7.78348 1.91685 7.78347C1.91685 7.78347 1.91685 7.78347 1.91685 7.78346C1.91685 7.78346 1.91685 7.78346 1.91685 7.78345C1.91685 7.78345 1.91685 7.78345 1.91685 7.78345C1.91685 7.78344 1.91685 7.78344 1.91685 7.78344C1.91685 7.78343 1.91685 7.78343 1.91685 7.78343C1.91685 7.78342 1.91685 7.78342 1.91685 7.78342C1.91685 7.78342 1.91685 7.78341 1.91685 7.78341C1.91685 7.78341 1.91685 7.7834 1.91685 7.7834C1.91685 7.7834 1.91685 7.78339 1.91685 7.78339C1.91685 7.78339 1.91685 7.78338 1.91685 7.78338C1.91685 7.78338 1.91685 7.78338 1.91685 7.78337C1.91685 7.78337 1.91685 7.78337 1.91685 7.78336C1.91685 7.78336 1.91685 7.78336 1.91685 7.78335C1.91685 7.78335 1.91685 7.78335 1.91685 7.78334C1.91685 7.78334 1.91685 7.78334 1.91685 7.78334C1.91685 7.78333 1.91685 7.78333 1.91685 7.78333C1.91685 7.78332 1.91685 7.78332 1.91685 7.78332C1.91685 7.78331 1.91685 7.78331 1.91685 7.78331C1.91685 7.78331 1.91685 7.7833 1.91685 7.7833C1.91685 7.7833 1.91685 7.78329 1.91685 7.78329C1.91685 7.78329 1.91685 7.78328 1.91685 7.78328C1.91685 7.78328 1.91685 7.78327 1.91685 7.78327C1.91685 7.78327 1.91685 7.78327 1.91685 7.78326C1.91685 7.78326 1.91685 7.78326 1.91685 7.78325C1.91685 7.78325 1.91685 7.78325 1.91685 7.78324C1.91685 7.78324 1.91685 7.78324 1.91685 7.78324C1.91685 7.78323 1.91685 7.78323 1.91685 7.78323C1.91685 7.78322 1.91685 7.78322 1.91685 7.78322C1.91685 7.78321 1.91685 7.78321 1.91685 7.78321C1.91685 7.7832 1.91685 7.7832 1.91685 7.7832C1.91685 7.7832 1.91685 7.78319 1.91685 7.78319C1.91685 7.78319 1.91685 7.78318 1.91685 7.78318C1.91685 7.78318 1.91685 7.78317 1.91685 7.78317C1.91685 7.78317 1.91685 7.78316 1.91685 7.78316C1.91685 7.78316 1.91685 7.78316 1.91685 7.78315C1.91685 7.78315 1.91685 7.78315 1.91685 7.78314C1.91685 7.78314 1.91685 7.78314 1.91685 7.78313C1.91685 7.78313 1.91685 7.78313 1.91685 7.78312C1.91685 7.78312 1.91685 7.78312 1.91685 7.78312C1.91685 7.78311 1.91685 7.78311 1.91685 7.78311C1.91685 7.7831 1.91685 7.7831 1.91685 7.7831C1.91685 7.78309 1.91685 7.78309 1.91685 7.78309C1.91685 7.78309 1.91685 7.78308 1.91685 7.78308C1.91685 7.78308 1.91685 7.78307 1.91685 7.78307C1.91685 7.78307 1.91685 7.78306 1.91685 7.78306C1.91685 7.78306 1.91685 7.78305 1.91685 7.78305C1.91685 7.78305 1.91685 7.78305 1.91685 7.78304C1.91685 7.78304 1.91685 7.78304 1.91685 7.78303C1.91685 7.78303 1.91685 7.78303 1.91685 7.78302C1.91685 7.78302 1.91685 7.78302 1.91685 7.78302C1.91685 7.78301 1.91685 7.78301 1.91685 7.78301C1.91685 7.783 1.91685 7.783 1.91685 7.783C1.91685 7.78299 1.91685 7.78299 1.91685 7.78299C1.91685 7.78298 1.91685 7.78298 1.91685 7.78298C1.91685 7.78298 1.91685 7.78297 1.91685 7.78297C1.91685 7.78297 1.91685 7.78296 1.91685 7.78296C1.91685 7.78296 1.91685 7.78295 1.91685 7.78295C1.91685 7.78295 1.91685 7.78295 1.91685 7.78294C1.91685 7.78294 1.91685 7.78294 1.91685 7.78293C1.91685 7.78293 1.91685 7.78293 1.91685 7.78292C1.91685 7.78292 1.91685 7.78292 1.91685 7.78291C1.91685 7.78291 1.91685 7.78291 1.91685 7.78291C1.91685 7.7829 1.91685 7.7829 1.91685 7.7829C1.91685 7.78289 1.91685 7.78289 1.91685 7.78289C1.91685 7.78288 1.91685 7.78288 1.91685 7.78288C1.91685 7.78288 1.91685 7.78287 1.91685 7.78287C1.91685 7.78287 1.91685 7.78286 1.91685 7.78286C1.91685 7.78286 1.91685 7.78285 1.91685 7.78285C1.91685 7.78285 1.91685 7.78284 1.91685 7.78284C1.91685 7.78284 1.91685 7.78284 1.91685 7.78283C1.91685 7.78283 1.91685 7.78283 1.91685 7.78282C1.91685 7.78282 1.91685 7.78282 1.91685 7.78281C1.91685 7.78281 1.91685 7.78281 1.91685 7.7828C1.91685 7.7828 1.91685 7.7828 1.91685 7.7828C1.91685 7.78279 1.91685 7.78279 1.91685 7.78279C1.91685 7.78278 1.91685 7.78278 1.91685 7.78278C1.91685 7.78277 1.91685 7.78277 1.91685 7.78277C1.91685 7.78276 1.91685 7.78276 1.91685 7.78276C1.91685 7.78276 1.91685 7.78275 1.91685 7.78275C1.91685 7.78275 1.91685 7.78274 1.91685 7.78274C1.91685 7.78274 1.91685 7.78273 1.91685 7.78273C1.91685 7.78273 1.91685 7.78273 1.91685 7.78272C1.91685 7.78272 1.91685 7.78272 1.91685 7.78271C1.91685 7.78271 1.91685 7.78271 1.91685 7.7827C1.91685 7.7827 1.91685 7.7827 1.91685 7.78269C1.91685 7.78269 1.91685 7.78269 1.91685 7.78269C1.91685 7.78268 1.91685 7.78268 1.91685 7.78268C1.91685 7.78267 1.91685 7.78267 1.91685 7.78267C1.91685 7.78266 1.91685 7.78266 1.91685 7.78266C1.91685 7.78266 1.91685 7.78265 1.91685 7.78265C1.91685 7.78265 1.91685 7.78264 1.91685 7.78264C1.91685 7.78264 1.91685 7.78263 1.91685 7.78263C1.91685 7.78263 1.91685 7.78262 1.91685 7.78262C1.91685 7.78262 1.91685 7.78262 1.91685 7.78261C1.91685 7.78261 1.91685 7.78261 1.91685 7.7826C1.91685 7.7826 1.91685 7.7826 1.91685 7.78259C1.91685 7.78259 1.91685 7.78259 1.91685 7.78258C1.91685 7.78258 1.91685 7.78258 1.91685 7.78258C1.91685 7.78257 1.91685 7.78257 1.91685 7.78257C1.91685 7.78256 1.91685 7.78256 1.91685 7.78256C1.91685 7.78255 1.91685 7.78255 1.91685 7.78255C1.91685 7.78255 1.91685 7.78254 1.91685 7.78254C1.91685 7.78254 1.91685 7.78253 1.91685 7.78253C1.91685 7.78253 1.91685 7.78252 1.91685 7.78252C1.91685 7.78252 1.91685 7.78251 1.91685 7.78251C1.91685 7.78251 1.91685 7.78251 1.91685 7.7825C1.91685 7.7825 1.91685 7.7825 1.91685 7.78249C1.91685 7.78249 1.91685 7.78249 1.91685 7.78248C1.91685 7.78248 1.91685 7.78248 1.91685 7.78247C1.91685 7.78247 1.91685 7.78247 1.91685 7.78247C1.91685 7.78246 1.91685 7.78246 1.91685 7.78246C1.91685 7.78245 1.91685 7.78245 1.91685 7.78245C1.91685 7.78244 1.91685 7.78244 1.91685 7.78244C1.91685 7.78244 1.91685 7.78243 1.91685 7.78243C1.91685 7.78243 1.91685 7.78242 1.91685 7.78242C1.91685 7.78242 1.91685 7.78241 1.91685 7.78241C1.91685 7.78241 1.91685 7.7824 1.91685 7.7824C1.91685 7.7824 1.91685 7.7824 1.91685 7.78239C1.91685 7.78239 1.91685 7.78239 1.91685 7.78238C1.91685 7.78238 1.91685 7.78238 1.91685 7.78237C1.91685 7.78237 1.91685 7.78237 1.91685 7.78236C1.91685 7.78236 1.91685 7.78236 1.91685 7.78236C1.91685 7.78235 1.91685 7.78235 1.91685 7.78235C1.91685 7.78234 1.91685 7.78234 1.91685 7.78234C1.91685 7.78233 1.91685 7.78233 1.91685 7.78233C1.91685 7.78233 1.91685 7.78232 1.91685 7.78232C1.91685 7.78232 1.91685 7.78231 1.91685 7.78231C1.91685 7.78231 1.91685 7.7823 1.91685 7.7823C1.91685 7.7823 1.91685 7.78229 1.91685 7.78229C1.91685 7.78229 1.91685 7.78229 1.91685 7.78228C1.91685 7.78228 1.91685 7.78228 1.91685 7.78227C1.91685 7.78227 1.91685 7.78227 1.91685 7.78226C1.91685 7.78226 1.91685 7.78226 1.91685 7.78226C1.91685 7.78225 1.91685 7.78225 1.91685 7.78225C1.91685 7.78224 1.91685 7.78224 1.91685 7.78224C1.91685 7.78223 1.91685 7.78223 1.91685 7.78223C1.91685 7.78222 1.91685 7.78222 1.91685 7.78222C1.91685 7.78222 1.91685 7.78221 1.91685 7.78221C1.91685 7.78221 1.91685 7.7822 1.91685 7.7822C1.91685 7.7822 1.91685 7.78219 1.91685 7.78219C1.91685 7.78219 1.91685 7.78219 1.91685 7.78218C1.91685 7.78218 1.91685 7.78218 1.91685 7.78217C1.91685 7.78217 1.91685 7.78217 1.91685 7.78216C1.91685 7.78216 1.91685 7.78216 1.91685 7.78215C1.91685 7.78215 1.91685 7.78215 1.91685 7.78215C1.91685 7.78214 1.91685 7.78214 1.91685 7.78214C1.91685 7.78213 1.91685 7.78213 1.91685 7.78213C1.91685 7.78212 1.91685 7.78212 1.91685 7.78212C1.91685 7.78211 1.91685 7.78211 1.91685 7.78211C1.91685 7.78211 1.91685 7.7821 1.91685 7.7821C1.91685 7.7821 1.91685 7.78209 1.91685 7.78209C1.91685 7.78209 1.91685 7.78208 1.91685 7.78208C1.91685 7.78208 1.91685 7.78207 1.91685 7.78207C1.91685 7.78207 1.91685 7.78207 1.91685 7.78206C1.91685 7.78206 1.91685 7.78206 1.91685 7.78205C1.91685 7.78205 1.91685 7.78205 1.91685 7.78204C1.91685 7.78204 1.91685 7.78204 1.91685 7.78204C1.91685 7.78203 1.91685 7.78203 1.91685 7.78203C1.91685 7.78202 1.91685 7.78202 1.91685 7.78202C1.91685 7.78201 1.91685 7.78201 1.91685 7.78201C1.91685 7.782 1.91685 7.782 1.91685 7.782C1.91685 7.782 1.91685 7.78199 1.91685 7.78199C1.91685 7.78199 1.91685 7.78198 1.91685 7.78198C1.91685 7.78198 1.91685 7.78197 1.91685 7.78197C1.91685 7.78197 1.91685 7.78197 1.91685 7.78196C1.91685 7.78196 1.91685 7.78196 1.91685 7.78195C1.91685 7.78195 1.91685 7.78195 1.91685 7.78194C1.91685 7.78194 1.91685 7.78194 1.91685 7.78193C1.91685 7.78193 1.91685 7.78193 1.91685 7.78193C1.91685 7.78192 1.91685 7.78192 1.91685 7.78192C1.91685 7.78191 1.91685 7.78191 1.91685 7.78191H1.51685C1.51685 7.78191 1.51685 7.78191 1.51685 7.78192C1.51685 7.78192 1.51685 7.78192 1.51685 7.78193C1.51685 7.78193 1.51685 7.78193 1.51685 7.78193C1.51685 7.78194 1.51685 7.78194 1.51685 7.78194C1.51685 7.78195 1.51685 7.78195 1.51685 7.78195C1.51685 7.78196 1.51685 7.78196 1.51685 7.78196C1.51685 7.78197 1.51685 7.78197 1.51685 7.78197C1.51685 7.78197 1.51685 7.78198 1.51685 7.78198C1.51685 7.78198 1.51685 7.78199 1.51685 7.78199C1.51685 7.78199 1.51685 7.782 1.51685 7.782C1.51685 7.782 1.51685 7.782 1.51685 7.78201C1.51685 7.78201 1.51685 7.78201 1.51685 7.78202C1.51685 7.78202 1.51685 7.78202 1.51685 7.78203C1.51685 7.78203 1.51685 7.78203 1.51685 7.78204C1.51685 7.78204 1.51685 7.78204 1.51685 7.78204C1.51685 7.78205 1.51685 7.78205 1.51685 7.78205C1.51685 7.78206 1.51685 7.78206 1.51685 7.78206C1.51685 7.78207 1.51685 7.78207 1.51685 7.78207C1.51685 7.78207 1.51685 7.78208 1.51685 7.78208C1.51685 7.78208 1.51685 7.78209 1.51685 7.78209C1.51685 7.78209 1.51685 7.7821 1.51685 7.7821C1.51685 7.7821 1.51685 7.78211 1.51685 7.78211C1.51685 7.78211 1.51685 7.78211 1.51685 7.78212C1.51685 7.78212 1.51685 7.78212 1.51685 7.78213C1.51685 7.78213 1.51685 7.78213 1.51685 7.78214C1.51685 7.78214 1.51685 7.78214 1.51685 7.78215C1.51685 7.78215 1.51685 7.78215 1.51685 7.78215C1.51685 7.78216 1.51685 7.78216 1.51685 7.78216C1.51685 7.78217 1.51685 7.78217 1.51685 7.78217C1.51685 7.78218 1.51685 7.78218 1.51685 7.78218C1.51685 7.78219 1.51685 7.78219 1.51685 7.78219C1.51685 7.78219 1.51685 7.7822 1.51685 7.7822C1.51685 7.7822 1.51685 7.78221 1.51685 7.78221C1.51685 7.78221 1.51685 7.78222 1.51685 7.78222C1.51685 7.78222 1.51685 7.78222 1.51685 7.78223C1.51685 7.78223 1.51685 7.78223 1.51685 7.78224C1.51685 7.78224 1.51685 7.78224 1.51685 7.78225C1.51685 7.78225 1.51685 7.78225 1.51685 7.78226C1.51685 7.78226 1.51685 7.78226 1.51685 7.78226C1.51685 7.78227 1.51685 7.78227 1.51685 7.78227C1.51685 7.78228 1.51685 7.78228 1.51685 7.78228C1.51685 7.78229 1.51685 7.78229 1.51685 7.78229C1.51685 7.78229 1.51685 7.7823 1.51685 7.7823C1.51685 7.7823 1.51685 7.78231 1.51685 7.78231C1.51685 7.78231 1.51685 7.78232 1.51685 7.78232C1.51685 7.78232 1.51685 7.78233 1.51685 7.78233C1.51685 7.78233 1.51685 7.78233 1.51685 7.78234C1.51685 7.78234 1.51685 7.78234 1.51685 7.78235C1.51685 7.78235 1.51685 7.78235 1.51685 7.78236C1.51685 7.78236 1.51685 7.78236 1.51685 7.78236C1.51685 7.78237 1.51685 7.78237 1.51685 7.78237C1.51685 7.78238 1.51685 7.78238 1.51685 7.78238C1.51685 7.78239 1.51685 7.78239 1.51685 7.78239C1.51685 7.7824 1.51685 7.7824 1.51685 7.7824C1.51685 7.7824 1.51685 7.78241 1.51685 7.78241C1.51685 7.78241 1.51685 7.78242 1.51685 7.78242C1.51685 7.78242 1.51685 7.78243 1.51685 7.78243C1.51685 7.78243 1.51685 7.78244 1.51685 7.78244C1.51685 7.78244 1.51685 7.78244 1.51685 7.78245C1.51685 7.78245 1.51685 7.78245 1.51685 7.78246C1.51685 7.78246 1.51685 7.78246 1.51685 7.78247C1.51685 7.78247 1.51685 7.78247 1.51685 7.78247C1.51685 7.78248 1.51685 7.78248 1.51685 7.78248C1.51685 7.78249 1.51685 7.78249 1.51685 7.78249C1.51685 7.7825 1.51685 7.7825 1.51685 7.7825C1.51685 7.78251 1.51685 7.78251 1.51685 7.78251C1.51685 7.78251 1.51685 7.78252 1.51685 7.78252C1.51685 7.78252 1.51685 7.78253 1.51685 7.78253C1.51685 7.78253 1.51685 7.78254 1.51685 7.78254C1.51685 7.78254 1.51685 7.78255 1.51685 7.78255C1.51685 7.78255 1.51685 7.78255 1.51685 7.78256C1.51685 7.78256 1.51685 7.78256 1.51685 7.78257C1.51685 7.78257 1.51685 7.78257 1.51685 7.78258C1.51685 7.78258 1.51685 7.78258 1.51685 7.78258C1.51685 7.78259 1.51685 7.78259 1.51685 7.78259C1.51685 7.7826 1.51685 7.7826 1.51685 7.7826C1.51685 7.78261 1.51685 7.78261 1.51685 7.78261C1.51685 7.78262 1.51685 7.78262 1.51685 7.78262C1.51685 7.78262 1.51685 7.78263 1.51685 7.78263C1.51685 7.78263 1.51685 7.78264 1.51685 7.78264C1.51685 7.78264 1.51685 7.78265 1.51685 7.78265C1.51685 7.78265 1.51685 7.78266 1.51685 7.78266C1.51685 7.78266 1.51685 7.78266 1.51685 7.78267C1.51685 7.78267 1.51685 7.78267 1.51685 7.78268C1.51685 7.78268 1.51685 7.78268 1.51685 7.78269C1.51685 7.78269 1.51685 7.78269 1.51685 7.78269C1.51685 7.7827 1.51685 7.7827 1.51685 7.7827C1.51685 7.78271 1.51685 7.78271 1.51685 7.78271C1.51685 7.78272 1.51685 7.78272 1.51685 7.78272C1.51685 7.78273 1.51685 7.78273 1.51685 7.78273C1.51685 7.78273 1.51685 7.78274 1.51685 7.78274C1.51685 7.78274 1.51685 7.78275 1.51685 7.78275C1.51685 7.78275 1.51685 7.78276 1.51685 7.78276C1.51685 7.78276 1.51685 7.78276 1.51685 7.78277C1.51685 7.78277 1.51685 7.78277 1.51685 7.78278C1.51685 7.78278 1.51685 7.78278 1.51685 7.78279C1.51685 7.78279 1.51685 7.78279 1.51685 7.7828C1.51685 7.7828 1.51685 7.7828 1.51685 7.7828C1.51685 7.78281 1.51685 7.78281 1.51685 7.78281C1.51685 7.78282 1.51685 7.78282 1.51685 7.78282C1.51685 7.78283 1.51685 7.78283 1.51685 7.78283C1.51685 7.78284 1.51685 7.78284 1.51685 7.78284C1.51685 7.78284 1.51685 7.78285 1.51685 7.78285C1.51685 7.78285 1.51685 7.78286 1.51685 7.78286C1.51685 7.78286 1.51685 7.78287 1.51685 7.78287C1.51685 7.78287 1.51685 7.78288 1.51685 7.78288C1.51685 7.78288 1.51685 7.78288 1.51685 7.78289C1.51685 7.78289 1.51685 7.78289 1.51685 7.7829C1.51685 7.7829 1.51685 7.7829 1.51685 7.78291C1.51685 7.78291 1.51685 7.78291 1.51685 7.78291C1.51685 7.78292 1.51685 7.78292 1.51685 7.78292C1.51685 7.78293 1.51685 7.78293 1.51685 7.78293C1.51685 7.78294 1.51685 7.78294 1.51685 7.78294C1.51685 7.78295 1.51685 7.78295 1.51685 7.78295C1.51685 7.78295 1.51685 7.78296 1.51685 7.78296C1.51685 7.78296 1.51685 7.78297 1.51685 7.78297C1.51685 7.78297 1.51685 7.78298 1.51685 7.78298C1.51685 7.78298 1.51685 7.78298 1.51685 7.78299C1.51685 7.78299 1.51685 7.78299 1.51685 7.783C1.51685 7.783 1.51685 7.783 1.51685 7.78301C1.51685 7.78301 1.51685 7.78301 1.51685 7.78302C1.51685 7.78302 1.51685 7.78302 1.51685 7.78302C1.51685 7.78303 1.51685 7.78303 1.51685 7.78303C1.51685 7.78304 1.51685 7.78304 1.51685 7.78304C1.51685 7.78305 1.51685 7.78305 1.51685 7.78305C1.51685 7.78305 1.51685 7.78306 1.51685 7.78306C1.51685 7.78306 1.51685 7.78307 1.51685 7.78307C1.51685 7.78307 1.51685 7.78308 1.51685 7.78308C1.51685 7.78308 1.51685 7.78309 1.51685 7.78309C1.51685 7.78309 1.51685 7.78309 1.51685 7.7831C1.51685 7.7831 1.51685 7.7831 1.51685 7.78311C1.51685 7.78311 1.51685 7.78311 1.51685 7.78312C1.51685 7.78312 1.51685 7.78312 1.51685 7.78312C1.51685 7.78313 1.51685 7.78313 1.51685 7.78313C1.51685 7.78314 1.51685 7.78314 1.51685 7.78314C1.51685 7.78315 1.51685 7.78315 1.51685 7.78315C1.51685 7.78316 1.51685 7.78316 1.51685 7.78316C1.51685 7.78316 1.51685 7.78317 1.51685 7.78317C1.51685 7.78317 1.51685 7.78318 1.51685 7.78318C1.51685 7.78318 1.51685 7.78319 1.51685 7.78319C1.51685 7.78319 1.51685 7.7832 1.51685 7.7832C1.51685 7.7832 1.51685 7.7832 1.51685 7.78321C1.51685 7.78321 1.51685 7.78321 1.51685 7.78322C1.51685 7.78322 1.51685 7.78322 1.51685 7.78323C1.51685 7.78323 1.51685 7.78323 1.51685 7.78324C1.51685 7.78324 1.51685 7.78324 1.51685 7.78324C1.51685 7.78325 1.51685 7.78325 1.51685 7.78325C1.51685 7.78326 1.51685 7.78326 1.51685 7.78326C1.51685 7.78327 1.51685 7.78327 1.51685 7.78327C1.51685 7.78327 1.51685 7.78328 1.51685 7.78328C1.51685 7.78328 1.51685 7.78329 1.51685 7.78329C1.51685 7.78329 1.51685 7.7833 1.51685 7.7833C1.51685 7.7833 1.51685 7.78331 1.51685 7.78331C1.51685 7.78331 1.51685 7.78331 1.51685 7.78332C1.51685 7.78332 1.51685 7.78332 1.51685 7.78333C1.51685 7.78333 1.51685 7.78333 1.51685 7.78334C1.51685 7.78334 1.51685 7.78334 1.51685 7.78334C1.51685 7.78335 1.51685 7.78335 1.51685 7.78335C1.51685 7.78336 1.51685 7.78336 1.51685 7.78336C1.51685 7.78337 1.51685 7.78337 1.51685 7.78337C1.51685 7.78338 1.51685 7.78338 1.51685 7.78338C1.51685 7.78338 1.51685 7.78339 1.51685 7.78339C1.51685 7.78339 1.51685 7.7834 1.51685 7.7834C1.51685 7.7834 1.51685 7.78341 1.51685 7.78341C1.51685 7.78341 1.51685 7.78342 1.51685 7.78342C1.51685 7.78342 1.51685 7.78342 1.51685 7.78343C1.51685 7.78343 1.51685 7.78343 1.51685 7.78344C1.51685 7.78344 1.51685 7.78344 1.51685 7.78345C1.51685 7.78345 1.51685 7.78345 1.51685 7.78345C1.51685 7.78346 1.51685 7.78346 1.51685 7.78346C1.51685 7.78347 1.51685 7.78347 1.51685 7.78347C1.51685 7.78348 1.51685 7.78348 1.51685 7.78348C1.51685 7.78349 1.51685 7.78349 1.51685 7.78349C1.51685 7.78349 1.51685 7.7835 1.51685 7.7835C1.51685 7.7835 1.51685 7.78351 1.51685 7.78351C1.51685 7.78351 1.51685 7.78352 1.51685 7.78352C1.51685 7.78352 1.51685 7.78352 1.51685 7.78353C1.51685 7.78353 1.51685 7.78353 1.51685 7.78354C1.51685 7.78354 1.51685 7.78354 1.51685 7.78355C1.51685 7.78355 1.51685 7.78355 1.51685 7.78356C1.51685 7.78356 1.51685 7.78356 1.51685 7.78356C1.51685 7.78357 1.51685 7.78357 1.51685 7.78357C1.51685 7.78358 1.51685 7.78358 1.51685 7.78358C1.51685 7.78359 1.51685 7.78359 1.51685 7.78359C1.51685 7.7836 1.51685 7.7836 1.51685 7.7836C1.51685 7.7836 1.51685 7.78361 1.51685 7.78361C1.51685 7.78361 1.51685 7.78362 1.51685 7.78362C1.51685 7.78362 1.51685 7.78363 1.51685 7.78363C1.51685 7.78363 1.51685 7.78363 1.51685 7.78364C1.51685 7.78364 1.51685 7.78364 1.51685 7.78365C1.51685 7.78365 1.51685 7.78365 1.51685 7.78366C1.51685 7.78366 1.51685 7.78366 1.51685 7.78367C1.51685 7.78367 1.51685 7.78367 1.51685 7.78367C1.51685 7.78368 1.51685 7.78368 1.51685 7.78368C1.51685 7.78369 1.51685 7.78369 1.51685 7.78369C1.51685 7.7837 1.51685 7.7837 1.51685 7.7837C1.51685 7.78371 1.51685 7.78371 1.51685 7.78371C1.51685 7.78371 1.51685 7.78372 1.51685 7.78372C1.51685 7.78372 1.51685 7.78373 1.51685 7.78373C1.51685 7.78373 1.51685 7.78374 1.51685 7.78374C1.51685 7.78374 1.51685 7.78374 1.51685 7.78375C1.51685 7.78375 1.51685 7.78375 1.51685 7.78376C1.51685 7.78376 1.51685 7.78376 1.51685 7.78377C1.51685 7.78377 1.51685 7.78377 1.51685 7.78378C1.51685 7.78378 1.51685 7.78378 1.51685 7.78378C1.51685 7.78379 1.51685 7.78379 1.51685 7.78379C1.51685 7.7838 1.51685 7.7838 1.51685 7.7838C1.51685 7.78381 1.51685 7.78381 1.51685 7.78381C1.51685 7.78381 1.51685 7.78382 1.51685 7.78382C1.51685 7.78382 1.51685 7.78383 1.51685 7.78383C1.51685 7.78383 1.51685 7.78384 1.51685 7.78384C1.51685 7.78384 1.51685 7.78385 1.51685 7.78385C1.51685 7.78385 1.51685 7.78385 1.51685 7.78386C1.51685 7.78386 1.51685 7.78386 1.51685 7.78387C1.51685 7.78387 1.51685 7.78387 1.51685 7.78388C1.51685 7.78388 1.51685 7.78388 1.51685 7.78389C1.51685 7.78389 1.51685 7.78389 1.51685 7.78389C1.51685 7.7839 1.51685 7.7839 1.51685 7.7839C1.51685 7.78391 1.51685 7.78391 1.51685 7.78391C1.51685 7.78392 1.51685 7.78392 1.51685 7.78392C1.51685 7.78393 1.51685 7.78393 1.51685 7.78393C1.51685 7.78393 1.51685 7.78394 1.51685 7.78394C1.51685 7.78394 1.51685 7.78395 1.51685 7.78395C1.51685 7.78395 1.51685 7.78396 1.51685 7.78396C1.51685 7.78396 1.51685 7.78396 1.51685 7.78397C1.51685 7.78397 1.51685 7.78397 1.51685 7.78398C1.51685 7.78398 1.51685 7.78398 1.51685 7.78399C1.51685 7.78399 1.51685 7.78399 1.51685 7.784C1.51685 7.784 1.51685 7.784 1.51685 7.784C1.51685 7.78401 1.51685 7.78401 1.51685 7.78401C1.51685 7.78402 1.51685 7.78402 1.51685 7.78402C1.51685 7.78403 1.51685 7.78403 1.51685 7.78403C1.51685 7.78403 1.51685 7.78404 1.51685 7.78404C1.51685 7.78404 1.51685 7.78405 1.51685 7.78405C1.51685 7.78405 1.51685 7.78406 1.51685 7.78406C1.51685 7.78406 1.51685 7.78407 1.51685 7.78407C1.51685 7.78407 1.51685 7.78407 1.51685 7.78408C1.51685 7.78408 1.51685 7.78408 1.51685 7.78409C1.51685 7.78409 1.51685 7.78409 1.51685 7.7841C1.51685 7.7841 1.51685 7.7841 1.51685 7.7841C1.51685 7.78411 1.51685 7.78411 1.51685 7.78411C1.51685 7.78412 1.51685 7.78412 1.51685 7.78412C1.51685 7.78413 1.51685 7.78413 1.51685 7.78413C1.51685 7.78414 1.51685 7.78414 1.51685 7.78414C1.51685 7.78414 1.51685 7.78415 1.51685 7.78415C1.51685 7.78415 1.51685 7.78416 1.51685 7.78416C1.51685 7.78416 1.51685 7.78417 1.51685 7.78417C1.51685 7.78417 1.51685 7.78418 1.51685 7.78418C1.51685 7.78418 1.51685 7.78418 1.51685 7.78419C1.51685 7.78419 1.51685 7.78419 1.51685 7.7842C1.51685 7.7842 1.51685 7.7842 1.51685 7.78421C1.51685 7.78421 1.51685 7.78421 1.51685 7.78421C1.51685 7.78422 1.51685 7.78422 1.51685 7.78422C1.51685 7.78423 1.51685 7.78423 1.51685 7.78423C1.51685 7.78424 1.51685 7.78424 1.51685 7.78424C1.51685 7.78425 1.51685 7.78425 1.51685 7.78425C1.51685 7.78425 1.51685 7.78426 1.51685 7.78426C1.51685 7.78426 1.51685 7.78427 1.51685 7.78427C1.51685 7.78427 1.51685 7.78428 1.51685 7.78428C1.51685 7.78428 1.51685 7.78429 1.51685 7.78429C1.51685 7.78429 1.51685 7.78429 1.51685 7.7843C1.51685 7.7843 1.51685 7.7843 1.51685 7.78431C1.51685 7.78431 1.51685 7.78431 1.51685 7.78432C1.51685 7.78432 1.51685 7.78432 1.51685 7.78432C1.51685 7.78433 1.51685 7.78433 1.51685 7.78433C1.51685 7.78434 1.51685 7.78434 1.51685 7.78434C1.51685 7.78435 1.51685 7.78435 1.51685 7.78435C1.51685 7.78436 1.51685 7.78436 1.51685 7.78436C1.51685 7.78436 1.51685 7.78437 1.51685 7.78437C1.51685 7.78437 1.51685 7.78438 1.51685 7.78438C1.51685 7.78438 1.51685 7.78439 1.51685 7.78439C1.51685 7.78439 1.51685 7.78439 1.51685 7.7844C1.51685 7.7844 1.51685 7.7844 1.51685 7.78441C1.51685 7.78441 1.51685 7.78441 1.51685 7.78442C1.51685 7.78442 1.51685 7.78442 1.51685 7.78443C1.51685 7.78443 1.51685 7.78443 1.51685 7.78443C1.51685 7.78444 1.51685 7.78444 1.51685 7.78444C1.51685 7.78445 1.51685 7.78445 1.51685 7.78445C1.51685 7.78446 1.51685 7.78446 1.51685 7.78446C1.51685 7.78447 1.51685 7.78447 1.51685 7.78447C1.51685 7.78447 1.51685 7.78448 1.51685 7.78448C1.51685 7.78448 1.51685 7.78449 1.51685 7.78449C1.51685 7.78449 1.51685 7.7845 1.51685 7.7845C1.51685 7.7845 1.51685 7.7845 1.51685 7.78451C1.51685 7.78451 1.51685 7.78451 1.51685 7.78452C1.51685 7.78452 1.51685 7.78452 1.51685 7.78453C1.51685 7.78453 1.51685 7.78453 1.51685 7.78454C1.51685 7.78454 1.51685 7.78454 1.51685 7.78454C1.51685 7.78455 1.51685 7.78455 1.51685 7.78455C1.51685 7.78456 1.51685 7.78456 1.51685 7.78456C1.51685 7.78457 1.51685 7.78457 1.51685 7.78457C1.51685 7.78457 1.51685 7.78458 1.51685 7.78458C1.51685 7.78458 1.51685 7.78459 1.51685 7.78459C1.51685 7.78459 1.51685 7.7846 1.51685 7.7846C1.51685 7.7846 1.51685 7.78461 1.51685 7.78461C1.51685 7.78461 1.51685 7.78461 1.51685 7.78462C1.51685 7.78462 1.51685 7.78462 1.51685 7.78463C1.51685 7.78463 1.51685 7.78463 1.51685 7.78464C1.51685 7.78464 1.51685 7.78464 1.51685 7.78465C1.51685 7.78465 1.51685 7.78465 1.51685 7.78465C1.51685 7.78466 1.51685 7.78466 1.51685 7.78466C1.51685 7.78467 1.51685 7.78467 1.51685 7.78467C1.51685 7.78468 1.51685 7.78468 1.51685 7.78468C1.51685 7.78469 1.51685 7.78469 1.51685 7.78469C1.51685 7.78469 1.51685 7.7847 1.51685 7.7847C1.51685 7.7847 1.51685 7.78471 1.51685 7.78471C1.51685 7.78471 1.51685 7.78472 1.51685 7.78472C1.51685 7.78472 1.51685 7.78472 1.51685 7.78473C1.51685 7.78473 1.51685 7.78473 1.51685 7.78474C1.51685 7.78474 1.51685 7.78474 1.51685 7.78475C1.51685 7.78475 1.51685 7.78475 1.51685 7.78476C1.51685 7.78476 1.51685 7.78476 1.51685 7.78476C1.51685 7.78477 1.51685 7.78477 1.51685 7.78477C1.51685 7.78478 1.51685 7.78478 1.51685 7.78478C1.51685 7.78479 1.51685 7.78479 1.51685 7.78479C1.51685 7.78479 1.51685 7.7848 1.51685 7.7848C1.51685 7.7848 1.51685 7.78481 1.51685 7.78481C1.51685 7.78481 1.51685 7.78482 1.51685 7.78482C1.51685 7.78482 1.51685 7.78483 1.51685 7.78483C1.51685 7.78483 1.51685 7.78483 1.51685 7.78484C1.51685 7.78484 1.51685 7.78484 1.51685 7.78485C1.51685 7.78485 1.51685 7.78485 1.51685 7.78486C1.51685 7.78486 1.51685 7.78486 1.51685 7.78486C1.51685 7.78487 1.51685 7.78487 1.51685 7.78487C1.51685 7.78488 1.51685 7.78488 1.51685 7.78488C1.51685 7.78489 1.51685 7.78489 1.51685 7.78489C1.51685 7.7849 1.51685 7.7849 1.51685 7.7849C1.51685 7.7849 1.51685 7.78491 1.51685 7.78491C1.51685 7.78491 1.51685 7.78492 1.51685 7.78492C1.51685 7.78492 1.51685 7.78493 1.51685 7.78493C1.51685 7.78493 1.51685 7.78494 1.51685 7.78494C1.51685 7.78494 1.51685 7.78494 1.51685 7.78495C1.51685 7.78495 1.51685 7.78495 1.51685 7.78496C1.51685 7.78496 1.51685 7.78496 1.51685 7.78497C1.51685 7.78497 1.51685 7.78497 1.51685 7.78498C1.51685 7.78498 1.51685 7.78498 1.51685 7.78498C1.51685 7.78499 1.51685 7.78499 1.51685 7.78499C1.51685 7.785 1.51685 7.785 1.51685 7.785C1.51685 7.78501 1.51685 7.78501 1.51685 7.78501C1.51685 7.78501 1.51685 7.78502 1.51685 7.78502C1.51685 7.78502 1.51685 7.78503 1.51685 7.78503C1.51685 7.78503 1.51685 7.78504 1.51685 7.78504C1.51685 7.78504 1.51685 7.78505 1.51685 7.78505C1.51685 7.78505 1.51685 7.78505 1.51685 7.78506C1.51685 7.78506 1.51685 7.78506 1.51685 7.78507C1.51685 7.78507 1.51685 7.78507 1.51685 7.78508C1.51685 7.78508 1.51685 7.78508 1.51685 7.78508C1.51685 7.78509 1.51685 7.78509 1.51685 7.78509C1.51685 7.7851 1.51685 7.7851 1.51685 7.7851C1.51685 7.78511 1.51685 7.78511 1.51685 7.78511C1.51685 7.78512 1.51685 7.78512 1.51685 7.78512C1.51685 7.78512 1.51685 7.78513 1.51685 7.78513C1.51685 7.78513 1.51685 7.78514 1.51685 7.78514C1.51685 7.78514 1.51685 7.78515 1.51685 7.78515C1.51685 7.78515 1.51685 7.78515 1.51685 7.78516C1.51685 7.78516 1.51685 7.78516 1.51685 7.78517C1.51685 7.78517 1.51685 7.78517 1.51685 7.78518C1.51685 7.78518 1.51685 7.78518 1.51685 7.78519C1.51685 7.78519 1.51685 7.78519 1.51685 7.78519C1.51685 7.7852 1.51685 7.7852 1.51685 7.7852C1.51685 7.78521 1.51685 7.78521 1.51685 7.78521C1.51685 7.78522 1.51685 7.78522 1.51685 7.78522C1.51685 7.78523 1.51685 7.78523 1.51685 7.78523C1.51685 7.78523 1.51685 7.78524 1.51685 7.78524C1.51685 7.78524 1.51685 7.78525 1.51685 7.78525C1.51685 7.78525 1.51685 7.78526 1.51685 7.78526C1.51685 7.78526 1.51685 7.78526 1.51685 7.78527C1.51685 7.78527 1.51685 7.78527 1.51685 7.78528C1.51685 7.78528 1.51685 7.78528 1.51685 7.78529C1.51685 7.78529 1.51685 7.78529 1.51685 7.7853C1.51685 7.7853 1.51685 7.7853 1.51685 7.7853C1.51685 7.78531 1.51685 7.78531 1.51685 7.78531C1.51685 7.78532 1.51685 7.78532 1.51685 7.78532C1.51685 7.78533 1.51685 7.78533 1.51685 7.78533C1.51685 7.78534 1.51685 7.78534 1.51685 7.78534C1.51685 7.78534 1.51685 7.78535 1.51685 7.78535C1.51685 7.78535 1.51685 7.78536 1.51685 7.78536C1.51685 7.78536 1.51685 7.78537 1.51685 7.78537C1.51685 7.78537 1.51685 7.78537 1.51685 7.78538C1.51685 7.78538 1.51685 7.78538 1.51685 7.78539C1.51685 7.78539 1.51685 7.78539 1.51685 7.7854C1.51685 7.7854 1.51685 7.7854 1.51685 7.78541C1.51685 7.78541 1.51685 7.78541 1.51685 7.78541C1.51685 7.78542 1.51685 7.78542 1.51685 7.78542C1.51685 7.78543 1.51685 7.78543 1.51685 7.78543C1.51685 7.78544 1.51685 7.78544 1.51685 7.78544C1.51685 7.78545 1.51685 7.78545 1.51685 7.78545C1.51685 7.78545 1.51685 7.78546 1.51685 7.78546C1.51685 7.78546 1.51685 7.78547 1.51685 7.78547C1.51685 7.78547 1.51685 7.78548 1.51685 7.78548C1.51685 7.78548 1.51685 7.78548 1.51685 7.78549C1.51685 7.78549 1.51685 7.78549 1.51685 7.7855C1.51685 7.7855 1.51685 7.7855 1.51685 7.78551C1.51685 7.78551 1.51685 7.78551 1.51685 7.78552C1.51685 7.78552 1.51685 7.78552 1.51685 7.78552C1.51685 7.78553 1.51685 7.78553 1.51685 7.78553C1.51685 7.78554 1.51685 7.78554 1.51685 7.78554C1.51685 7.78555 1.51685 7.78555 1.51685 7.78555C1.51685 7.78555 1.51685 7.78556 1.51685 7.78556C1.51685 7.78556 1.51685 7.78557 1.51685 7.78557C1.51685 7.78557 1.51685 7.78558 1.51685 7.78558C1.51685 7.78558 1.51685 7.78559 1.51685 7.78559C1.51685 7.78559 1.51685 7.78559 1.51685 7.7856C1.51685 7.7856 1.51685 7.7856 1.51685 7.78561C1.51685 7.78561 1.51685 7.78561 1.51685 7.78562C1.51685 7.78562 1.51685 7.78562 1.51685 7.78562C1.51685 7.78563 1.51685 7.78563 1.51685 7.78563C1.51685 7.78564 1.51685 7.78564 1.51685 7.78564C1.51685 7.78565 1.51685 7.78565 1.51685 7.78565C1.51685 7.78566 1.51685 7.78566 1.51685 7.78566C1.51685 7.78566 1.51685 7.78567 1.51685 7.78567C1.51685 7.78567 1.51685 7.78568 1.51685 7.78568C1.51685 7.78568 1.51685 7.78569 1.51685 7.78569C1.51685 7.78569 1.51685 7.7857 1.51685 7.7857C1.51685 7.7857 1.51685 7.7857 1.51685 7.78571C1.51685 7.78571 1.51685 7.78571 1.51685 7.78572C1.51685 7.78572 1.51685 7.78572 1.51685 7.78573C1.51685 7.78573 1.51685 7.78573 1.51685 7.78574C1.51685 7.78574 1.51685 7.78574 1.51685 7.78574C1.51685 7.78575 1.51685 7.78575 1.51685 7.78575C1.51685 7.78576 1.51685 7.78576 1.51685 7.78576C1.51685 7.78577 1.51685 7.78577 1.51685 7.78577C1.51685 7.78577 1.51685 7.78578 1.51685 7.78578C1.51685 7.78578 1.51685 7.78579 1.51685 7.78579C1.51685 7.78579 1.51685 7.7858 1.51685 7.7858C1.51685 7.7858 1.51685 7.78581 1.51685 7.78581C1.51685 7.78581 1.51685 7.78581 1.51685 7.78582C1.51685 7.78582 1.51685 7.78582 1.51685 7.78583C1.51685 7.78583 1.51685 7.78583 1.51685 7.78584C1.51685 7.78584 1.51685 7.78584 1.51685 7.78584C1.51685 7.78585 1.51685 7.78585 1.51685 7.78585C1.51685 7.78586 1.51685 7.78586 1.51685 7.78586C1.51685 7.78587 1.51685 7.78587 1.51685 7.78587C1.51685 7.78588 1.51685 7.78588 1.51685 7.78588C1.51685 7.78588 1.51685 7.78589 1.51685 7.78589C1.51685 7.78589 1.51685 7.7859 1.51685 7.7859C1.51685 7.7859 1.51685 7.78591 1.51685 7.78591C1.51685 7.78591 1.51685 7.78591 1.51685 7.78592C1.51685 7.78592 1.51685 7.78592 1.51685 7.78593C1.51685 7.78593 1.51685 7.78593 1.51685 7.78594C1.51685 7.78594 1.51685 7.78594 1.51685 7.78595C1.51685 7.78595 1.51685 7.78595 1.51685 7.78595C1.51685 7.78596 1.51685 7.78596 1.51685 7.78596C1.51685 7.78597 1.51685 7.78597 1.51685 7.78597C1.51685 7.78598 1.51685 7.78598 1.51685 7.78598C1.51685 7.78599 1.51685 7.78599 1.51685 7.78599C1.51685 7.78599 1.51685 7.786 1.51685 7.786C1.51685 7.786 1.51685 7.78601 1.51685 7.78601C1.51685 7.78601 1.51685 7.78602 1.51685 7.78602C1.51685 7.78602 1.51685 7.78603 1.51685 7.78603C1.51685 7.78603 1.51685 7.78603 1.51685 7.78604C1.51685 7.78604 1.51685 7.78604 1.51685 7.78605C1.51685 7.78605 1.51685 7.78605 1.51685 7.78606C1.51685 7.78606 1.51685 7.78606 1.51685 7.78606C1.51685 7.78607 1.51685 7.78607 1.51685 7.78607C1.51685 7.78608 1.51685 7.78608 1.51685 7.78608C1.51685 7.78609 1.51685 7.78609 1.51685 7.78609C1.51685 7.7861 1.51685 7.7861 1.51685 7.7861C1.51685 7.7861 1.51685 7.78611 1.51685 7.78611C1.51685 7.78611 1.51685 7.78612 1.51685 7.78612C1.51685 7.78612 1.51685 7.78613 1.51685 7.78613C1.51685 7.78613 1.51685 7.78613 1.51685 7.78614C1.51685 7.78614 1.51685 7.78614 1.51685 7.78615C1.51685 7.78615 1.51685 7.78615 1.51685 7.78616C1.51685 7.78616 1.51685 7.78616 1.51685 7.78617C1.51685 7.78617 1.51685 7.78617 1.51685 7.78617C1.51685 7.78618 1.51685 7.78618 1.51685 7.78618C1.51685 7.78619 1.51685 7.78619 1.51685 7.78619C1.51685 7.7862 1.51685 7.7862 1.51685 7.7862C1.51685 7.78621 1.51685 7.78621 1.51685 7.78621C1.51685 7.78621 1.51685 7.78622 1.51685 7.78622C1.51685 7.78622 1.51685 7.78623 1.51685 7.78623C1.51685 7.78623 1.51685 7.78624 1.51685 7.78624C1.51685 7.78624 1.51685 7.78624 1.51685 7.78625C1.51685 7.78625 1.51685 7.78625 1.51685 7.78626C1.51685 7.78626 1.51685 7.78626 1.51685 7.78627C1.51685 7.78627 1.51685 7.78627 1.51685 7.78628C1.51685 7.78628 1.51685 7.78628 1.51685 7.78628C1.51685 7.78629 1.51685 7.78629 1.51685 7.78629C1.51685 7.7863 1.51685 7.7863 1.51685 7.7863C1.51685 7.78631 1.51685 7.78631 1.51685 7.78631C1.51685 7.78631 1.51685 7.78632 1.51685 7.78632C1.51685 7.78632 1.51685 7.78633 1.51685 7.78633C1.51685 7.78633 1.51685 7.78634 1.51685 7.78634C1.51685 7.78634 1.51685 7.78635 1.51685 7.78635C1.51685 7.78635 1.51685 7.78635 1.51685 7.78636C1.51685 7.78636 1.51685 7.78636 1.51685 7.78637C1.51685 7.78637 1.51685 7.78637 1.51685 7.78638C1.51685 7.78638 1.51685 7.78638 1.51685 7.78639C1.51685 7.78639 1.51685 7.78639 1.51685 7.78639C1.51685 7.7864 1.51685 7.7864 1.51685 7.7864C1.51685 7.78641 1.51685 7.78641 1.51685 7.78641C1.51685 7.78642 1.51685 7.78642 1.51685 7.78642C1.51685 7.78642 1.51685 7.78643 1.51685 7.78643C1.51685 7.78643 1.51685 7.78644 1.51685 7.78644C1.51685 7.78644 1.51685 7.78645 1.51685 7.78645C1.51685 7.78645 1.51685 7.78646 1.51685 7.78646C1.51685 7.78646 1.51685 7.78646 1.51685 7.78647C1.51685 7.78647 1.51685 7.78647 1.51685 7.78648C1.51685 7.78648 1.51685 7.78648 1.51685 7.78649C1.51685 7.78649 1.51685 7.78649 1.51685 7.7865C1.51685 7.7865 1.51685 7.7865 1.51685 7.7865C1.51685 7.78651 1.51685 7.78651 1.51685 7.78651C1.51685 7.78652 1.51685 7.78652 1.51685 7.78652C1.51685 7.78653 1.51685 7.78653 1.51685 7.78653C1.51685 7.78653 1.51685 7.78654 1.51685 7.78654C1.51685 7.78654 1.51685 7.78655 1.51685 7.78655C1.51685 7.78655 1.51685 7.78656 1.51685 7.78656C1.51685 7.78656 1.51685 7.78657 1.51685 7.78657C1.51685 7.78657 1.51685 7.78657 1.51685 7.78658C1.51685 7.78658 1.51685 7.78658 1.51685 7.78659C1.51685 7.78659 1.51685 7.78659 1.51685 7.7866H1.91685ZM1.91685 7.78191C1.91685 7.47415 1.66726 7.22493 1.35999 7.22493V7.62493C1.44646 7.62493 1.51685 7.69518 1.51685 7.78191H1.91685ZM1.35999 7.22493C1.35999 7.22493 1.35998 7.22493 1.35998 7.22493C1.35997 7.22493 1.35997 7.22493 1.35997 7.22493C1.35996 7.22493 1.35996 7.22493 1.35996 7.22493C1.35995 7.22493 1.35995 7.22493 1.35994 7.22493C1.35994 7.22493 1.35994 7.22493 1.35993 7.22493C1.35993 7.22493 1.35993 7.22493 1.35992 7.22493C1.35992 7.22493 1.35992 7.22493 1.35991 7.22493C1.35991 7.22493 1.3599 7.22493 1.3599 7.22493C1.3599 7.22493 1.35989 7.22493 1.35989 7.22493C1.35989 7.22493 1.35988 7.22493 1.35988 7.22493C1.35988 7.22493 1.35987 7.22493 1.35987 7.22493C1.35986 7.22493 1.35986 7.22493 1.35986 7.22493C1.35985 7.22493 1.35985 7.22493 1.35985 7.22493C1.35984 7.22493 1.35984 7.22493 1.35983 7.22493C1.35983 7.22493 1.35983 7.22493 1.35982 7.22493C1.35982 7.22493 1.35982 7.22493 1.35981 7.22493C1.35981 7.22493 1.35981 7.22493 1.3598 7.22493C1.3598 7.22493 1.35979 7.22493 1.35979 7.22493C1.35979 7.22493 1.35978 7.22493 1.35978 7.22493C1.35978 7.22493 1.35977 7.22493 1.35977 7.22493C1.35977 7.22493 1.35976 7.22493 1.35976 7.22493C1.35975 7.22493 1.35975 7.22493 1.35975 7.22493C1.35974 7.22493 1.35974 7.22493 1.35974 7.22493C1.35973 7.22493 1.35973 7.22493 1.35973 7.22493C1.35972 7.22493 1.35972 7.22493 1.35971 7.22493C1.35971 7.22493 1.35971 7.22493 1.3597 7.22493C1.3597 7.22493 1.3597 7.22493 1.35969 7.22493C1.35969 7.22493 1.35968 7.22493 1.35968 7.22493C1.35968 7.22493 1.35967 7.22493 1.35967 7.22493C1.35967 7.22493 1.35966 7.22493 1.35966 7.22493C1.35966 7.22493 1.35965 7.22493 1.35965 7.22493C1.35964 7.22493 1.35964 7.22493 1.35964 7.22493C1.35963 7.22493 1.35963 7.22493 1.35963 7.22493C1.35962 7.22493 1.35962 7.22493 1.35962 7.22493C1.35961 7.22493 1.35961 7.22493 1.3596 7.22493C1.3596 7.22493 1.3596 7.22493 1.35959 7.22493C1.35959 7.22493 1.35959 7.22493 1.35958 7.22493C1.35958 7.22493 1.35958 7.22493 1.35957 7.22493C1.35957 7.22493 1.35956 7.22493 1.35956 7.22493C1.35956 7.22493 1.35955 7.22493 1.35955 7.22493C1.35955 7.22493 1.35954 7.22493 1.35954 7.22493C1.35953 7.22493 1.35953 7.22493 1.35953 7.22493C1.35952 7.22493 1.35952 7.22493 1.35952 7.22493C1.35951 7.22493 1.35951 7.22493 1.35951 7.22493C1.3595 7.22493 1.3595 7.22493 1.35949 7.22493C1.35949 7.22493 1.35949 7.22493 1.35948 7.22493C1.35948 7.22493 1.35948 7.22493 1.35947 7.22493C1.35947 7.22493 1.35947 7.22493 1.35946 7.22493C1.35946 7.22493 1.35945 7.22493 1.35945 7.22493C1.35945 7.22493 1.35944 7.22493 1.35944 7.22493C1.35944 7.22493 1.35943 7.22493 1.35943 7.22493C1.35942 7.22493 1.35942 7.22493 1.35942 7.22493C1.35941 7.22493 1.35941 7.22493 1.35941 7.22493C1.3594 7.22493 1.3594 7.22493 1.3594 7.22493C1.35939 7.22493 1.35939 7.22493 1.35938 7.22493C1.35938 7.22493 1.35938 7.22493 1.35937 7.22493C1.35937 7.22493 1.35937 7.22493 1.35936 7.22493C1.35936 7.22493 1.35936 7.22493 1.35935 7.22493C1.35935 7.22493 1.35934 7.22493 1.35934 7.22493C1.35934 7.22493 1.35933 7.22493 1.35933 7.22493C1.35933 7.22493 1.35932 7.22493 1.35932 7.22493C1.35931 7.22493 1.35931 7.22493 1.35931 7.22493C1.3593 7.22493 1.3593 7.22493 1.3593 7.22493C1.35929 7.22493 1.35929 7.22493 1.35929 7.22493C1.35928 7.22493 1.35928 7.22493 1.35927 7.22493C1.35927 7.22493 1.35927 7.22493 1.35926 7.22493C1.35926 7.22493 1.35926 7.22493 1.35925 7.22493C1.35925 7.22493 1.35925 7.22493 1.35924 7.22493C1.35924 7.22493 1.35923 7.22493 1.35923 7.22493C1.35923 7.22493 1.35922 7.22493 1.35922 7.22493C1.35922 7.22493 1.35921 7.22493 1.35921 7.22493C1.35921 7.22493 1.3592 7.22493 1.3592 7.22493C1.35919 7.22493 1.35919 7.22493 1.35919 7.22493C1.35918 7.22493 1.35918 7.22493 1.35918 7.22493C1.35917 7.22493 1.35917 7.22493 1.35916 7.22493C1.35916 7.22493 1.35916 7.22493 1.35915 7.22493C1.35915 7.22493 1.35915 7.22493 1.35914 7.22493C1.35914 7.22493 1.35914 7.22493 1.35913 7.22493C1.35913 7.22493 1.35912 7.22493 1.35912 7.22493C1.35912 7.22493 1.35911 7.22493 1.35911 7.22493C1.35911 7.22493 1.3591 7.22493 1.3591 7.22493C1.3591 7.22493 1.35909 7.22493 1.35909 7.22493C1.35908 7.22493 1.35908 7.22493 1.35908 7.22493C1.35907 7.22493 1.35907 7.22493 1.35907 7.22493C1.35906 7.22493 1.35906 7.22493 1.35905 7.22493C1.35905 7.22493 1.35905 7.22493 1.35904 7.22493C1.35904 7.22493 1.35904 7.22493 1.35903 7.22493C1.35903 7.22493 1.35903 7.22493 1.35902 7.22493C1.35902 7.22493 1.35901 7.22493 1.35901 7.22493C1.35901 7.22493 1.359 7.22493 1.359 7.22493C1.359 7.22493 1.35899 7.22493 1.35899 7.22493C1.35899 7.22493 1.35898 7.22493 1.35898 7.22493C1.35897 7.22493 1.35897 7.22493 1.35897 7.22493C1.35896 7.22493 1.35896 7.22493 1.35896 7.22493C1.35895 7.22493 1.35895 7.22493 1.35895 7.22493C1.35894 7.22493 1.35894 7.22493 1.35893 7.22493C1.35893 7.22493 1.35893 7.22493 1.35892 7.22493C1.35892 7.22493 1.35892 7.22493 1.35891 7.22493C1.35891 7.22493 1.3589 7.22493 1.3589 7.22493C1.3589 7.22493 1.35889 7.22493 1.35889 7.22493C1.35889 7.22493 1.35888 7.22493 1.35888 7.22493C1.35888 7.22493 1.35887 7.22493 1.35887 7.22493C1.35886 7.22493 1.35886 7.22493 1.35886 7.22493C1.35885 7.22493 1.35885 7.22493 1.35885 7.22493C1.35884 7.22493 1.35884 7.22493 1.35884 7.22493C1.35883 7.22493 1.35883 7.22493 1.35882 7.22493C1.35882 7.22493 1.35882 7.22493 1.35881 7.22493C1.35881 7.22493 1.35881 7.22493 1.3588 7.22493C1.3588 7.22493 1.35879 7.22493 1.35879 7.22493C1.35879 7.22493 1.35878 7.22493 1.35878 7.22493C1.35878 7.22493 1.35877 7.22493 1.35877 7.22493C1.35877 7.22493 1.35876 7.22493 1.35876 7.22493C1.35875 7.22493 1.35875 7.22493 1.35875 7.22493C1.35874 7.22493 1.35874 7.22493 1.35874 7.22493C1.35873 7.22493 1.35873 7.22493 1.35873 7.22493C1.35872 7.22493 1.35872 7.22493 1.35871 7.22493C1.35871 7.22493 1.35871 7.22493 1.3587 7.22493C1.3587 7.22493 1.3587 7.22493 1.35869 7.22493C1.35869 7.22493 1.35869 7.22493 1.35868 7.22493C1.35868 7.22493 1.35867 7.22493 1.35867 7.22493C1.35867 7.22493 1.35866 7.22493 1.35866 7.22493C1.35866 7.22493 1.35865 7.22493 1.35865 7.22493C1.35864 7.22493 1.35864 7.22493 1.35864 7.22493C1.35863 7.22493 1.35863 7.22493 1.35863 7.22493C1.35862 7.22493 1.35862 7.22493 1.35862 7.22493C1.35861 7.22493 1.35861 7.22493 1.3586 7.22493C1.3586 7.22493 1.3586 7.22493 1.35859 7.22493C1.35859 7.22493 1.35859 7.22493 1.35858 7.22493C1.35858 7.22493 1.35858 7.22493 1.35857 7.22493C1.35857 7.22493 1.35856 7.22493 1.35856 7.22493C1.35856 7.22493 1.35855 7.22493 1.35855 7.22493C1.35855 7.22493 1.35854 7.22493 1.35854 7.22493C1.35853 7.22493 1.35853 7.22493 1.35853 7.22493C1.35852 7.22493 1.35852 7.22493 1.35852 7.22493C1.35851 7.22493 1.35851 7.22493 1.35851 7.22493C1.3585 7.22493 1.3585 7.22493 1.35849 7.22493C1.35849 7.22493 1.35849 7.22493 1.35848 7.22493C1.35848 7.22493 1.35848 7.22493 1.35847 7.22493C1.35847 7.22493 1.35847 7.22493 1.35846 7.22493C1.35846 7.22493 1.35845 7.22493 1.35845 7.22493C1.35845 7.22493 1.35844 7.22493 1.35844 7.22493C1.35844 7.22493 1.35843 7.22493 1.35843 7.22493C1.35843 7.22493 1.35842 7.22493 1.35842 7.22493C1.35841 7.22493 1.35841 7.22493 1.35841 7.22493C1.3584 7.22493 1.3584 7.22493 1.3584 7.22493C1.35839 7.22493 1.35839 7.22493 1.35838 7.22493C1.35838 7.22493 1.35838 7.22493 1.35837 7.22493C1.35837 7.22493 1.35837 7.22493 1.35836 7.22493C1.35836 7.22493 1.35836 7.22493 1.35835 7.22493C1.35835 7.22493 1.35834 7.22493 1.35834 7.22493C1.35834 7.22493 1.35833 7.22493 1.35833 7.22493C1.35833 7.22493 1.35832 7.22493 1.35832 7.22493C1.35832 7.22493 1.35831 7.22493 1.35831 7.22493C1.3583 7.22493 1.3583 7.22493 1.3583 7.22493C1.35829 7.22493 1.35829 7.22493 1.35829 7.22493C1.35828 7.22493 1.35828 7.22493 1.35827 7.22493C1.35827 7.22493 1.35827 7.22493 1.35826 7.22493C1.35826 7.22493 1.35826 7.22493 1.35825 7.22493C1.35825 7.22493 1.35825 7.22493 1.35824 7.22493C1.35824 7.22493 1.35823 7.22493 1.35823 7.22493C1.35823 7.22493 1.35822 7.22493 1.35822 7.22493C1.35822 7.22493 1.35821 7.22493 1.35821 7.22493C1.35821 7.22493 1.3582 7.22493 1.3582 7.22493C1.35819 7.22493 1.35819 7.22493 1.35819 7.22493C1.35818 7.22493 1.35818 7.22493 1.35818 7.22493C1.35817 7.22493 1.35817 7.22493 1.35817 7.22493C1.35816 7.22493 1.35816 7.22493 1.35815 7.22493C1.35815 7.22493 1.35815 7.22493 1.35814 7.22493C1.35814 7.22493 1.35814 7.22493 1.35813 7.22493C1.35813 7.22493 1.35812 7.22493 1.35812 7.22493C1.35812 7.22493 1.35811 7.22493 1.35811 7.22493C1.35811 7.22493 1.3581 7.22493 1.3581 7.22493C1.3581 7.22493 1.35809 7.22493 1.35809 7.22493C1.35808 7.22493 1.35808 7.22493 1.35808 7.22493C1.35807 7.22493 1.35807 7.22493 1.35807 7.22493C1.35806 7.22493 1.35806 7.22493 1.35806 7.22493C1.35805 7.22493 1.35805 7.22493 1.35804 7.22493C1.35804 7.22493 1.35804 7.22493 1.35803 7.22493C1.35803 7.22493 1.35803 7.22493 1.35802 7.22493C1.35802 7.22493 1.35801 7.22493 1.35801 7.22493C1.35801 7.22493 1.358 7.22493 1.358 7.22493C1.358 7.22493 1.35799 7.22493 1.35799 7.22493C1.35799 7.22493 1.35798 7.22493 1.35798 7.22493C1.35797 7.22493 1.35797 7.22493 1.35797 7.22493C1.35796 7.22493 1.35796 7.22493 1.35796 7.22493C1.35795 7.22493 1.35795 7.22493 1.35795 7.22493C1.35794 7.22493 1.35794 7.22493 1.35793 7.22493C1.35793 7.22493 1.35793 7.22493 1.35792 7.22493C1.35792 7.22493 1.35792 7.22493 1.35791 7.22493C1.35791 7.22493 1.35791 7.22493 1.3579 7.22493C1.3579 7.22493 1.35789 7.22493 1.35789 7.22493C1.35789 7.22493 1.35788 7.22493 1.35788 7.22493C1.35788 7.22493 1.35787 7.22493 1.35787 7.22493C1.35786 7.22493 1.35786 7.22493 1.35786 7.22493C1.35785 7.22493 1.35785 7.22493 1.35785 7.22493C1.35784 7.22493 1.35784 7.22493 1.35784 7.22493C1.35783 7.22493 1.35783 7.22493 1.35782 7.22493C1.35782 7.22493 1.35782 7.22493 1.35781 7.22493C1.35781 7.22493 1.35781 7.22493 1.3578 7.22493C1.3578 7.22493 1.3578 7.22493 1.35779 7.22493C1.35779 7.22493 1.35778 7.22493 1.35778 7.22493C1.35778 7.22493 1.35777 7.22493 1.35777 7.22493C1.35777 7.22493 1.35776 7.22493 1.35776 7.22493C1.35775 7.22493 1.35775 7.22493 1.35775 7.22493C1.35774 7.22493 1.35774 7.22493 1.35774 7.22493C1.35773 7.22493 1.35773 7.22493 1.35773 7.22493C1.35772 7.22493 1.35772 7.22493 1.35771 7.22493C1.35771 7.22493 1.35771 7.22493 1.3577 7.22493C1.3577 7.22493 1.3577 7.22493 1.35769 7.22493C1.35769 7.22493 1.35769 7.22493 1.35768 7.22493C1.35768 7.22493 1.35767 7.22493 1.35767 7.22493C1.35767 7.22493 1.35766 7.22493 1.35766 7.22493C1.35766 7.22493 1.35765 7.22493 1.35765 7.22493C1.35765 7.22493 1.35764 7.22493 1.35764 7.22493C1.35763 7.22493 1.35763 7.22493 1.35763 7.22493C1.35762 7.22493 1.35762 7.22493 1.35762 7.22493C1.35761 7.22493 1.35761 7.22493 1.3576 7.22493C1.3576 7.22493 1.3576 7.22493 1.35759 7.22493C1.35759 7.22493 1.35759 7.22493 1.35758 7.22493C1.35758 7.22493 1.35758 7.22493 1.35757 7.22493C1.35757 7.22493 1.35756 7.22493 1.35756 7.22493C1.35756 7.22493 1.35755 7.22493 1.35755 7.22493C1.35755 7.22493 1.35754 7.22493 1.35754 7.22493C1.35754 7.22493 1.35753 7.22493 1.35753 7.22493C1.35752 7.22493 1.35752 7.22493 1.35752 7.22493C1.35751 7.22493 1.35751 7.22493 1.35751 7.22493C1.3575 7.22493 1.3575 7.22493 1.35749 7.22493C1.35749 7.22493 1.35749 7.22493 1.35748 7.22493C1.35748 7.22493 1.35748 7.22493 1.35747 7.22493C1.35747 7.22493 1.35747 7.22493 1.35746 7.22493C1.35746 7.22493 1.35745 7.22493 1.35745 7.22493C1.35745 7.22493 1.35744 7.22493 1.35744 7.22493C1.35744 7.22493 1.35743 7.22493 1.35743 7.22493C1.35743 7.22493 1.35742 7.22493 1.35742 7.22493C1.35741 7.22493 1.35741 7.22493 1.35741 7.22493C1.3574 7.22493 1.3574 7.22493 1.3574 7.22493C1.35739 7.22493 1.35739 7.22493 1.35739 7.22493C1.35738 7.22493 1.35738 7.22493 1.35737 7.22493C1.35737 7.22493 1.35737 7.22493 1.35736 7.22493C1.35736 7.22493 1.35736 7.22493 1.35735 7.22493C1.35735 7.22493 1.35734 7.22493 1.35734 7.22493C1.35734 7.22493 1.35733 7.22493 1.35733 7.22493C1.35733 7.22493 1.35732 7.22493 1.35732 7.22493C1.35732 7.22493 1.35731 7.22493 1.35731 7.22493C1.3573 7.22493 1.3573 7.22493 1.3573 7.22493C1.35729 7.22493 1.35729 7.22493 1.35729 7.22493C1.35728 7.22493 1.35728 7.22493 1.35728 7.22493C1.35727 7.22493 1.35727 7.22493 1.35726 7.22493C1.35726 7.22493 1.35726 7.22493 1.35725 7.22493C1.35725 7.22493 1.35725 7.22493 1.35724 7.22493C1.35724 7.22493 1.35723 7.22493 1.35723 7.22493C1.35723 7.22493 1.35722 7.22493 1.35722 7.22493C1.35722 7.22493 1.35721 7.22493 1.35721 7.22493C1.35721 7.22493 1.3572 7.22493 1.3572 7.22493C1.35719 7.22493 1.35719 7.22493 1.35719 7.22493C1.35718 7.22493 1.35718 7.22493 1.35718 7.22493C1.35717 7.22493 1.35717 7.22493 1.35717 7.22493C1.35716 7.22493 1.35716 7.22493 1.35715 7.22493C1.35715 7.22493 1.35715 7.22493 1.35714 7.22493C1.35714 7.22493 1.35714 7.22493 1.35713 7.22493C1.35713 7.22493 1.35713 7.22493 1.35712 7.22493C1.35712 7.22493 1.35711 7.22493 1.35711 7.22493C1.35711 7.22493 1.3571 7.22493 1.3571 7.22493C1.3571 7.22493 1.35709 7.22493 1.35709 7.22493C1.35708 7.22493 1.35708 7.22493 1.35708 7.22493C1.35707 7.22493 1.35707 7.22493 1.35707 7.22493C1.35706 7.22493 1.35706 7.22493 1.35706 7.22493C1.35705 7.22493 1.35705 7.22493 1.35704 7.22493C1.35704 7.22493 1.35704 7.22493 1.35703 7.22493C1.35703 7.22493 1.35703 7.22493 1.35702 7.22493C1.35702 7.22493 1.35702 7.22493 1.35701 7.22493C1.35701 7.22493 1.357 7.22493 1.357 7.22493C1.357 7.22493 1.35699 7.22493 1.35699 7.22493C1.35699 7.22493 1.35698 7.22493 1.35698 7.22493C1.35697 7.22493 1.35697 7.22493 1.35697 7.22493C1.35696 7.22493 1.35696 7.22493 1.35696 7.22493C1.35695 7.22493 1.35695 7.22493 1.35695 7.22493C1.35694 7.22493 1.35694 7.22493 1.35693 7.22493C1.35693 7.22493 1.35693 7.22493 1.35692 7.22493C1.35692 7.22493 1.35692 7.22493 1.35691 7.22493C1.35691 7.22493 1.35691 7.22493 1.3569 7.22493C1.3569 7.22493 1.35689 7.22493 1.35689 7.22493C1.35689 7.22493 1.35688 7.22493 1.35688 7.22493C1.35688 7.22493 1.35687 7.22493 1.35687 7.22493C1.35687 7.22493 1.35686 7.22493 1.35686 7.22493C1.35685 7.22493 1.35685 7.22493 1.35685 7.22493C1.35684 7.22493 1.35684 7.22493 1.35684 7.22493C1.35683 7.22493 1.35683 7.22493 1.35682 7.22493C1.35682 7.22493 1.35682 7.22493 1.35681 7.22493C1.35681 7.22493 1.35681 7.22493 1.3568 7.22493C1.3568 7.22493 1.3568 7.22493 1.35679 7.22493C1.35679 7.22493 1.35678 7.22493 1.35678 7.22493C1.35678 7.22493 1.35677 7.22493 1.35677 7.22493C1.35677 7.22493 1.35676 7.22493 1.35676 7.22493C1.35676 7.22493 1.35675 7.22493 1.35675 7.22493C1.35674 7.22493 1.35674 7.22493 1.35674 7.22493C1.35673 7.22493 1.35673 7.22493 1.35673 7.22493C1.35672 7.22493 1.35672 7.22493 1.35671 7.22493C1.35671 7.22493 1.35671 7.22493 1.3567 7.22493C1.3567 7.22493 1.3567 7.22493 1.35669 7.22493C1.35669 7.22493 1.35669 7.22493 1.35668 7.22493C1.35668 7.22493 1.35667 7.22493 1.35667 7.22493C1.35667 7.22493 1.35666 7.22493 1.35666 7.22493C1.35666 7.22493 1.35665 7.22493 1.35665 7.22493C1.35665 7.22493 1.35664 7.22493 1.35664 7.22493C1.35663 7.22493 1.35663 7.22493 1.35663 7.22493C1.35662 7.22493 1.35662 7.22493 1.35662 7.22493C1.35661 7.22493 1.35661 7.22493 1.35661 7.22493C1.3566 7.22493 1.3566 7.22493 1.35659 7.22493C1.35659 7.22493 1.35659 7.22493 1.35658 7.22493C1.35658 7.22493 1.35658 7.22493 1.35657 7.22493C1.35657 7.22493 1.35656 7.22493 1.35656 7.22493C1.35656 7.22493 1.35655 7.22493 1.35655 7.22493C1.35655 7.22493 1.35654 7.22493 1.35654 7.22493C1.35654 7.22493 1.35653 7.22493 1.35653 7.22493C1.35652 7.22493 1.35652 7.22493 1.35652 7.22493C1.35651 7.22493 1.35651 7.22493 1.35651 7.22493C1.3565 7.22493 1.3565 7.22493 1.3565 7.22493C1.35649 7.22493 1.35649 7.22493 1.35648 7.22493C1.35648 7.22493 1.35648 7.22493 1.35647 7.22493C1.35647 7.22493 1.35647 7.22493 1.35646 7.22493C1.35646 7.22493 1.35645 7.22493 1.35645 7.22493C1.35645 7.22493 1.35644 7.22493 1.35644 7.22493C1.35644 7.22493 1.35643 7.22493 1.35643 7.22493C1.35643 7.22493 1.35642 7.22493 1.35642 7.22493C1.35641 7.22493 1.35641 7.22493 1.35641 7.22493C1.3564 7.22493 1.3564 7.22493 1.3564 7.22493C1.35639 7.22493 1.35639 7.22493 1.35639 7.22493C1.35638 7.22493 1.35638 7.22493 1.35637 7.22493C1.35637 7.22493 1.35637 7.22493 1.35636 7.22493C1.35636 7.22493 1.35636 7.22493 1.35635 7.22493C1.35635 7.22493 1.35635 7.22493 1.35634 7.22493C1.35634 7.22493 1.35633 7.22493 1.35633 7.22493C1.35633 7.22493 1.35632 7.22493 1.35632 7.22493C1.35632 7.22493 1.35631 7.22493 1.35631 7.22493C1.3563 7.22493 1.3563 7.22493 1.3563 7.22493C1.35629 7.22493 1.35629 7.22493 1.35629 7.22493C1.35628 7.22493 1.35628 7.22493 1.35628 7.22493C1.35627 7.22493 1.35627 7.22493 1.35626 7.22493C1.35626 7.22493 1.35626 7.22493 1.35625 7.22493C1.35625 7.22493 1.35625 7.22493 1.35624 7.22493C1.35624 7.22493 1.35624 7.22493 1.35623 7.22493C1.35623 7.22493 1.35622 7.22493 1.35622 7.22493C1.35622 7.22493 1.35621 7.22493 1.35621 7.22493C1.35621 7.22493 1.3562 7.22493 1.3562 7.22493C1.35619 7.22493 1.35619 7.22493 1.35619 7.22493C1.35618 7.22493 1.35618 7.22493 1.35618 7.22493C1.35617 7.22493 1.35617 7.22493 1.35617 7.22493C1.35616 7.22493 1.35616 7.22493 1.35615 7.22493C1.35615 7.22493 1.35615 7.22493 1.35614 7.22493C1.35614 7.22493 1.35614 7.22493 1.35613 7.22493C1.35613 7.22493 1.35613 7.22493 1.35612 7.22493C1.35612 7.22493 1.35611 7.22493 1.35611 7.22493C1.35611 7.22493 1.3561 7.22493 1.3561 7.22493C1.3561 7.22493 1.35609 7.22493 1.35609 7.22493C1.35609 7.22493 1.35608 7.22493 1.35608 7.22493C1.35607 7.22493 1.35607 7.22493 1.35607 7.22493C1.35606 7.22493 1.35606 7.22493 1.35606 7.22493C1.35605 7.22493 1.35605 7.22493 1.35604 7.22493C1.35604 7.22493 1.35604 7.22493 1.35603 7.22493C1.35603 7.22493 1.35603 7.22493 1.35602 7.22493C1.35602 7.22493 1.35602 7.22493 1.35601 7.22493C1.35601 7.22493 1.356 7.22493 1.356 7.22493C1.356 7.22493 1.35599 7.22493 1.35599 7.22493C1.35599 7.22493 1.35598 7.22493 1.35598 7.22493C1.35598 7.22493 1.35597 7.22493 1.35597 7.22493C1.35596 7.22493 1.35596 7.22493 1.35596 7.22493C1.35595 7.22493 1.35595 7.22493 1.35595 7.22493C1.35594 7.22493 1.35594 7.22493 1.35593 7.22493C1.35593 7.22493 1.35593 7.22493 1.35592 7.22493C1.35592 7.22493 1.35592 7.22493 1.35591 7.22493C1.35591 7.22493 1.35591 7.22493 1.3559 7.22493C1.3559 7.22493 1.35589 7.22493 1.35589 7.22493C1.35589 7.22493 1.35588 7.22493 1.35588 7.22493C1.35588 7.22493 1.35587 7.22493 1.35587 7.22493C1.35587 7.22493 1.35586 7.22493 1.35586 7.22493C1.35585 7.22493 1.35585 7.22493 1.35585 7.22493C1.35584 7.22493 1.35584 7.22493 1.35584 7.22493C1.35583 7.22493 1.35583 7.22493 1.35583 7.22493C1.35582 7.22493 1.35582 7.22493 1.35581 7.22493C1.35581 7.22493 1.35581 7.22493 1.3558 7.22493C1.3558 7.22493 1.3558 7.22493 1.35579 7.22493C1.35579 7.22493 1.35578 7.22493 1.35578 7.22493C1.35578 7.22493 1.35577 7.22493 1.35577 7.22493C1.35577 7.22493 1.35576 7.22493 1.35576 7.22493C1.35576 7.22493 1.35575 7.22493 1.35575 7.22493C1.35574 7.22493 1.35574 7.22493 1.35574 7.22493C1.35573 7.22493 1.35573 7.22493 1.35573 7.22493C1.35572 7.22493 1.35572 7.22493 1.35572 7.22493C1.35571 7.22493 1.35571 7.22493 1.3557 7.22493C1.3557 7.22493 1.3557 7.22493 1.35569 7.22493C1.35569 7.22493 1.35569 7.22493 1.35568 7.22493C1.35568 7.22493 1.35567 7.22493 1.35567 7.22493C1.35567 7.22493 1.35566 7.22493 1.35566 7.22493C1.35566 7.22493 1.35565 7.22493 1.35565 7.22493C1.35565 7.22493 1.35564 7.22493 1.35564 7.22493C1.35563 7.22493 1.35563 7.22493 1.35563 7.22493C1.35562 7.22493 1.35562 7.22493 1.35562 7.22493C1.35561 7.22493 1.35561 7.22493 1.35561 7.22493C1.3556 7.22493 1.3556 7.22493 1.35559 7.22493C1.35559 7.22493 1.35559 7.22493 1.35558 7.22493C1.35558 7.22493 1.35558 7.22493 1.35557 7.22493C1.35557 7.22493 1.35557 7.22493 1.35556 7.22493C1.35556 7.22493 1.35555 7.22493 1.35555 7.22493C1.35555 7.22493 1.35554 7.22493 1.35554 7.22493C1.35554 7.22493 1.35553 7.22493 1.35553 7.22493C1.35552 7.22493 1.35552 7.22493 1.35552 7.22493C1.35551 7.22493 1.35551 7.22493 1.35551 7.22493C1.3555 7.22493 1.3555 7.22493 1.3555 7.22493C1.35549 7.22493 1.35549 7.22493 1.35548 7.22493C1.35548 7.22493 1.35548 7.22493 1.35547 7.22493C1.35547 7.22493 1.35547 7.22493 1.35546 7.22493C1.35546 7.22493 1.35546 7.22493 1.35545 7.22493C1.35545 7.22493 1.35544 7.22493 1.35544 7.22493C1.35544 7.22493 1.35543 7.22493 1.35543 7.22493C1.35543 7.22493 1.35542 7.22493 1.35542 7.22493C1.35541 7.22493 1.35541 7.22493 1.35541 7.22493C1.3554 7.22493 1.3554 7.22493 1.3554 7.22493C1.35539 7.22493 1.35539 7.22493 1.35539 7.22493C1.35538 7.22493 1.35538 7.22493 1.35537 7.22493C1.35537 7.22493 1.35537 7.22493 1.35536 7.22493C1.35536 7.22493 1.35536 7.22493 1.35535 7.22493C1.35535 7.22493 1.35535 7.22493 1.35534 7.22493C1.35534 7.22493 1.35533 7.22493 1.35533 7.22493C1.35533 7.22493 1.35532 7.22493 1.35532 7.22493C1.35532 7.22493 1.35531 7.22493 1.35531 7.22493C1.35531 7.22493 1.3553 7.22493 1.3553 7.22493C1.35529 7.22493 1.35529 7.22493 1.35529 7.22493C1.35528 7.22493 1.35528 7.22493 1.35528 7.22493C1.35527 7.22493 1.35527 7.22493 1.35526 7.22493C1.35526 7.22493 1.35526 7.22493 1.35525 7.22493C1.35525 7.22493 1.35525 7.22493 1.35524 7.22493C1.35524 7.22493 1.35524 7.22493 1.35523 7.22493C1.35523 7.22493 1.35522 7.22493 1.35522 7.22493C1.35522 7.22493 1.35521 7.22493 1.35521 7.22493C1.35521 7.22493 1.3552 7.22493 1.3552 7.22493C1.3552 7.22493 1.35519 7.22493 1.35519 7.22493C1.35518 7.22493 1.35518 7.22493 1.35518 7.22493C1.35517 7.22493 1.35517 7.22493 1.35517 7.22493C1.35516 7.22493 1.35516 7.22493 1.35515 7.22493C1.35515 7.22493 1.35515 7.22493 1.35514 7.22493C1.35514 7.22493 1.35514 7.22493 1.35513 7.22493C1.35513 7.22493 1.35513 7.22493 1.35512 7.22493C1.35512 7.22493 1.35511 7.22493 1.35511 7.22493C1.35511 7.22493 1.3551 7.22493 1.3551 7.22493C1.3551 7.22493 1.35509 7.22493 1.35509 7.22493C1.35509 7.22493 1.35508 7.22493 1.35508 7.22493C1.35507 7.22493 1.35507 7.22493 1.35507 7.22493C1.35506 7.22493 1.35506 7.22493 1.35506 7.22493C1.35505 7.22493 1.35505 7.22493 1.35505 7.22493C1.35504 7.22493 1.35504 7.22493 1.35503 7.22493C1.35503 7.22493 1.35503 7.22493 1.35502 7.22493C1.35502 7.22493 1.35502 7.22493 1.35501 7.22493C1.35501 7.22493 1.355 7.22493 1.355 7.22493C1.355 7.22493 1.35499 7.22493 1.35499 7.22493C1.35499 7.22493 1.35498 7.22493 1.35498 7.22493C1.35498 7.22493 1.35497 7.22493 1.35497 7.22493C1.35496 7.22493 1.35496 7.22493 1.35496 7.22493C1.35495 7.22493 1.35495 7.22493 1.35495 7.22493C1.35494 7.22493 1.35494 7.22493 1.35494 7.22493C1.35493 7.22493 1.35493 7.22493 1.35492 7.22493C1.35492 7.22493 1.35492 7.22493 1.35491 7.22493C1.35491 7.22493 1.35491 7.22493 1.3549 7.22493C1.3549 7.22493 1.35489 7.22493 1.35489 7.22493C1.35489 7.22493 1.35488 7.22493 1.35488 7.22493C1.35488 7.22493 1.35487 7.22493 1.35487 7.22493C1.35487 7.22493 1.35486 7.22493 1.35486 7.22493C1.35485 7.22493 1.35485 7.22493 1.35485 7.22493C1.35484 7.22493 1.35484 7.22493 1.35484 7.22493C1.35483 7.22493 1.35483 7.22493 1.35483 7.22493C1.35482 7.22493 1.35482 7.22493 1.35481 7.22493C1.35481 7.22493 1.35481 7.22493 1.3548 7.22493C1.3548 7.22493 1.3548 7.22493 1.35479 7.22493C1.35479 7.22493 1.35479 7.22493 1.35478 7.22493C1.35478 7.22493 1.35477 7.22493 1.35477 7.22493C1.35477 7.22493 1.35476 7.22493 1.35476 7.22493C1.35476 7.22493 1.35475 7.22493 1.35475 7.22493C1.35474 7.22493 1.35474 7.22493 1.35474 7.22493C1.35473 7.22493 1.35473 7.22493 1.35473 7.22493C1.35472 7.22493 1.35472 7.22493 1.35472 7.22493C1.35471 7.22493 1.35471 7.22493 1.3547 7.22493C1.3547 7.22493 1.3547 7.22493 1.35469 7.22493C1.35469 7.22493 1.35469 7.22493 1.35468 7.22493C1.35468 7.22493 1.35468 7.22493 1.35467 7.22493C1.35467 7.22493 1.35466 7.22493 1.35466 7.22493C1.35466 7.22493 1.35465 7.22493 1.35465 7.22493C1.35465 7.22493 1.35464 7.22493 1.35464 7.22493C1.35463 7.22493 1.35463 7.22493 1.35463 7.22493C1.35462 7.22493 1.35462 7.22493 1.35462 7.22493C1.35461 7.22493 1.35461 7.22493 1.35461 7.22493C1.3546 7.22493 1.3546 7.22493 1.35459 7.22493C1.35459 7.22493 1.35459 7.22493 1.35458 7.22493C1.35458 7.22493 1.35458 7.22493 1.35457 7.22493C1.35457 7.22493 1.35457 7.22493 1.35456 7.22493C1.35456 7.22493 1.35455 7.22493 1.35455 7.22493C1.35455 7.22493 1.35454 7.22493 1.35454 7.22493C1.35454 7.22493 1.35453 7.22493 1.35453 7.22493C1.35453 7.22493 1.35452 7.22493 1.35452 7.22493C1.35451 7.22493 1.35451 7.22493 1.35451 7.22493C1.3545 7.22493 1.3545 7.22493 1.3545 7.22493C1.35449 7.22493 1.35449 7.22493 1.35448 7.22493C1.35448 7.22493 1.35448 7.22493 1.35447 7.22493C1.35447 7.22493 1.35447 7.22493 1.35446 7.22493C1.35446 7.22493 1.35446 7.22493 1.35445 7.22493C1.35445 7.22493 1.35444 7.22493 1.35444 7.22493C1.35444 7.22493 1.35443 7.22493 1.35443 7.22493C1.35443 7.22493 1.35442 7.22493 1.35442 7.22493C1.35442 7.22493 1.35441 7.22493 1.35441 7.22493C1.3544 7.22493 1.3544 7.22493 1.3544 7.22493C1.35439 7.22493 1.35439 7.22493 1.35439 7.22493C1.35438 7.22493 1.35438 7.22493 1.35437 7.22493C1.35437 7.22493 1.35437 7.22493 1.35436 7.22493V7.62493C1.35437 7.62493 1.35437 7.62493 1.35437 7.62493C1.35438 7.62493 1.35438 7.62493 1.35439 7.62493C1.35439 7.62493 1.35439 7.62493 1.3544 7.62493C1.3544 7.62493 1.3544 7.62493 1.35441 7.62493C1.35441 7.62493 1.35442 7.62493 1.35442 7.62493C1.35442 7.62493 1.35443 7.62493 1.35443 7.62493C1.35443 7.62493 1.35444 7.62493 1.35444 7.62493C1.35444 7.62493 1.35445 7.62493 1.35445 7.62493C1.35446 7.62493 1.35446 7.62493 1.35446 7.62493C1.35447 7.62493 1.35447 7.62493 1.35447 7.62493C1.35448 7.62493 1.35448 7.62493 1.35448 7.62493C1.35449 7.62493 1.35449 7.62493 1.3545 7.62493C1.3545 7.62493 1.3545 7.62493 1.35451 7.62493C1.35451 7.62493 1.35451 7.62493 1.35452 7.62493C1.35452 7.62493 1.35453 7.62493 1.35453 7.62493C1.35453 7.62493 1.35454 7.62493 1.35454 7.62493C1.35454 7.62493 1.35455 7.62493 1.35455 7.62493C1.35455 7.62493 1.35456 7.62493 1.35456 7.62493C1.35457 7.62493 1.35457 7.62493 1.35457 7.62493C1.35458 7.62493 1.35458 7.62493 1.35458 7.62493C1.35459 7.62493 1.35459 7.62493 1.35459 7.62493C1.3546 7.62493 1.3546 7.62493 1.35461 7.62493C1.35461 7.62493 1.35461 7.62493 1.35462 7.62493C1.35462 7.62493 1.35462 7.62493 1.35463 7.62493C1.35463 7.62493 1.35463 7.62493 1.35464 7.62493C1.35464 7.62493 1.35465 7.62493 1.35465 7.62493C1.35465 7.62493 1.35466 7.62493 1.35466 7.62493C1.35466 7.62493 1.35467 7.62493 1.35467 7.62493C1.35468 7.62493 1.35468 7.62493 1.35468 7.62493C1.35469 7.62493 1.35469 7.62493 1.35469 7.62493C1.3547 7.62493 1.3547 7.62493 1.3547 7.62493C1.35471 7.62493 1.35471 7.62493 1.35472 7.62493C1.35472 7.62493 1.35472 7.62493 1.35473 7.62493C1.35473 7.62493 1.35473 7.62493 1.35474 7.62493C1.35474 7.62493 1.35474 7.62493 1.35475 7.62493C1.35475 7.62493 1.35476 7.62493 1.35476 7.62493C1.35476 7.62493 1.35477 7.62493 1.35477 7.62493C1.35477 7.62493 1.35478 7.62493 1.35478 7.62493C1.35479 7.62493 1.35479 7.62493 1.35479 7.62493C1.3548 7.62493 1.3548 7.62493 1.3548 7.62493C1.35481 7.62493 1.35481 7.62493 1.35481 7.62493C1.35482 7.62493 1.35482 7.62493 1.35483 7.62493C1.35483 7.62493 1.35483 7.62493 1.35484 7.62493C1.35484 7.62493 1.35484 7.62493 1.35485 7.62493C1.35485 7.62493 1.35485 7.62493 1.35486 7.62493C1.35486 7.62493 1.35487 7.62493 1.35487 7.62493C1.35487 7.62493 1.35488 7.62493 1.35488 7.62493C1.35488 7.62493 1.35489 7.62493 1.35489 7.62493C1.35489 7.62493 1.3549 7.62493 1.3549 7.62493C1.35491 7.62493 1.35491 7.62493 1.35491 7.62493C1.35492 7.62493 1.35492 7.62493 1.35492 7.62493C1.35493 7.62493 1.35493 7.62493 1.35494 7.62493C1.35494 7.62493 1.35494 7.62493 1.35495 7.62493C1.35495 7.62493 1.35495 7.62493 1.35496 7.62493C1.35496 7.62493 1.35496 7.62493 1.35497 7.62493C1.35497 7.62493 1.35498 7.62493 1.35498 7.62493C1.35498 7.62493 1.35499 7.62493 1.35499 7.62493C1.35499 7.62493 1.355 7.62493 1.355 7.62493C1.355 7.62493 1.35501 7.62493 1.35501 7.62493C1.35502 7.62493 1.35502 7.62493 1.35502 7.62493C1.35503 7.62493 1.35503 7.62493 1.35503 7.62493C1.35504 7.62493 1.35504 7.62493 1.35505 7.62493C1.35505 7.62493 1.35505 7.62493 1.35506 7.62493C1.35506 7.62493 1.35506 7.62493 1.35507 7.62493C1.35507 7.62493 1.35507 7.62493 1.35508 7.62493C1.35508 7.62493 1.35509 7.62493 1.35509 7.62493C1.35509 7.62493 1.3551 7.62493 1.3551 7.62493C1.3551 7.62493 1.35511 7.62493 1.35511 7.62493C1.35511 7.62493 1.35512 7.62493 1.35512 7.62493C1.35513 7.62493 1.35513 7.62493 1.35513 7.62493C1.35514 7.62493 1.35514 7.62493 1.35514 7.62493C1.35515 7.62493 1.35515 7.62493 1.35515 7.62493C1.35516 7.62493 1.35516 7.62493 1.35517 7.62493C1.35517 7.62493 1.35517 7.62493 1.35518 7.62493C1.35518 7.62493 1.35518 7.62493 1.35519 7.62493C1.35519 7.62493 1.3552 7.62493 1.3552 7.62493C1.3552 7.62493 1.35521 7.62493 1.35521 7.62493C1.35521 7.62493 1.35522 7.62493 1.35522 7.62493C1.35522 7.62493 1.35523 7.62493 1.35523 7.62493C1.35524 7.62493 1.35524 7.62493 1.35524 7.62493C1.35525 7.62493 1.35525 7.62493 1.35525 7.62493C1.35526 7.62493 1.35526 7.62493 1.35526 7.62493C1.35527 7.62493 1.35527 7.62493 1.35528 7.62493C1.35528 7.62493 1.35528 7.62493 1.35529 7.62493C1.35529 7.62493 1.35529 7.62493 1.3553 7.62493C1.3553 7.62493 1.35531 7.62493 1.35531 7.62493C1.35531 7.62493 1.35532 7.62493 1.35532 7.62493C1.35532 7.62493 1.35533 7.62493 1.35533 7.62493C1.35533 7.62493 1.35534 7.62493 1.35534 7.62493C1.35535 7.62493 1.35535 7.62493 1.35535 7.62493C1.35536 7.62493 1.35536 7.62493 1.35536 7.62493C1.35537 7.62493 1.35537 7.62493 1.35537 7.62493C1.35538 7.62493 1.35538 7.62493 1.35539 7.62493C1.35539 7.62493 1.35539 7.62493 1.3554 7.62493C1.3554 7.62493 1.3554 7.62493 1.35541 7.62493C1.35541 7.62493 1.35541 7.62493 1.35542 7.62493C1.35542 7.62493 1.35543 7.62493 1.35543 7.62493C1.35543 7.62493 1.35544 7.62493 1.35544 7.62493C1.35544 7.62493 1.35545 7.62493 1.35545 7.62493C1.35546 7.62493 1.35546 7.62493 1.35546 7.62493C1.35547 7.62493 1.35547 7.62493 1.35547 7.62493C1.35548 7.62493 1.35548 7.62493 1.35548 7.62493C1.35549 7.62493 1.35549 7.62493 1.3555 7.62493C1.3555 7.62493 1.3555 7.62493 1.35551 7.62493C1.35551 7.62493 1.35551 7.62493 1.35552 7.62493C1.35552 7.62493 1.35552 7.62493 1.35553 7.62493C1.35553 7.62493 1.35554 7.62493 1.35554 7.62493C1.35554 7.62493 1.35555 7.62493 1.35555 7.62493C1.35555 7.62493 1.35556 7.62493 1.35556 7.62493C1.35557 7.62493 1.35557 7.62493 1.35557 7.62493C1.35558 7.62493 1.35558 7.62493 1.35558 7.62493C1.35559 7.62493 1.35559 7.62493 1.35559 7.62493C1.3556 7.62493 1.3556 7.62493 1.35561 7.62493C1.35561 7.62493 1.35561 7.62493 1.35562 7.62493C1.35562 7.62493 1.35562 7.62493 1.35563 7.62493C1.35563 7.62493 1.35563 7.62493 1.35564 7.62493C1.35564 7.62493 1.35565 7.62493 1.35565 7.62493C1.35565 7.62493 1.35566 7.62493 1.35566 7.62493C1.35566 7.62493 1.35567 7.62493 1.35567 7.62493C1.35567 7.62493 1.35568 7.62493 1.35568 7.62493C1.35569 7.62493 1.35569 7.62493 1.35569 7.62493C1.3557 7.62493 1.3557 7.62493 1.3557 7.62493C1.35571 7.62493 1.35571 7.62493 1.35572 7.62493C1.35572 7.62493 1.35572 7.62493 1.35573 7.62493C1.35573 7.62493 1.35573 7.62493 1.35574 7.62493C1.35574 7.62493 1.35574 7.62493 1.35575 7.62493C1.35575 7.62493 1.35576 7.62493 1.35576 7.62493C1.35576 7.62493 1.35577 7.62493 1.35577 7.62493C1.35577 7.62493 1.35578 7.62493 1.35578 7.62493C1.35578 7.62493 1.35579 7.62493 1.35579 7.62493C1.3558 7.62493 1.3558 7.62493 1.3558 7.62493C1.35581 7.62493 1.35581 7.62493 1.35581 7.62493C1.35582 7.62493 1.35582 7.62493 1.35583 7.62493C1.35583 7.62493 1.35583 7.62493 1.35584 7.62493C1.35584 7.62493 1.35584 7.62493 1.35585 7.62493C1.35585 7.62493 1.35585 7.62493 1.35586 7.62493C1.35586 7.62493 1.35587 7.62493 1.35587 7.62493C1.35587 7.62493 1.35588 7.62493 1.35588 7.62493C1.35588 7.62493 1.35589 7.62493 1.35589 7.62493C1.35589 7.62493 1.3559 7.62493 1.3559 7.62493C1.35591 7.62493 1.35591 7.62493 1.35591 7.62493C1.35592 7.62493 1.35592 7.62493 1.35592 7.62493C1.35593 7.62493 1.35593 7.62493 1.35593 7.62493C1.35594 7.62493 1.35594 7.62493 1.35595 7.62493C1.35595 7.62493 1.35595 7.62493 1.35596 7.62493C1.35596 7.62493 1.35596 7.62493 1.35597 7.62493C1.35597 7.62493 1.35598 7.62493 1.35598 7.62493C1.35598 7.62493 1.35599 7.62493 1.35599 7.62493C1.35599 7.62493 1.356 7.62493 1.356 7.62493C1.356 7.62493 1.35601 7.62493 1.35601 7.62493C1.35602 7.62493 1.35602 7.62493 1.35602 7.62493C1.35603 7.62493 1.35603 7.62493 1.35603 7.62493C1.35604 7.62493 1.35604 7.62493 1.35604 7.62493C1.35605 7.62493 1.35605 7.62493 1.35606 7.62493C1.35606 7.62493 1.35606 7.62493 1.35607 7.62493C1.35607 7.62493 1.35607 7.62493 1.35608 7.62493C1.35608 7.62493 1.35609 7.62493 1.35609 7.62493C1.35609 7.62493 1.3561 7.62493 1.3561 7.62493C1.3561 7.62493 1.35611 7.62493 1.35611 7.62493C1.35611 7.62493 1.35612 7.62493 1.35612 7.62493C1.35613 7.62493 1.35613 7.62493 1.35613 7.62493C1.35614 7.62493 1.35614 7.62493 1.35614 7.62493C1.35615 7.62493 1.35615 7.62493 1.35615 7.62493C1.35616 7.62493 1.35616 7.62493 1.35617 7.62493C1.35617 7.62493 1.35617 7.62493 1.35618 7.62493C1.35618 7.62493 1.35618 7.62493 1.35619 7.62493C1.35619 7.62493 1.35619 7.62493 1.3562 7.62493C1.3562 7.62493 1.35621 7.62493 1.35621 7.62493C1.35621 7.62493 1.35622 7.62493 1.35622 7.62493C1.35622 7.62493 1.35623 7.62493 1.35623 7.62493C1.35624 7.62493 1.35624 7.62493 1.35624 7.62493C1.35625 7.62493 1.35625 7.62493 1.35625 7.62493C1.35626 7.62493 1.35626 7.62493 1.35626 7.62493C1.35627 7.62493 1.35627 7.62493 1.35628 7.62493C1.35628 7.62493 1.35628 7.62493 1.35629 7.62493C1.35629 7.62493 1.35629 7.62493 1.3563 7.62493C1.3563 7.62493 1.3563 7.62493 1.35631 7.62493C1.35631 7.62493 1.35632 7.62493 1.35632 7.62493C1.35632 7.62493 1.35633 7.62493 1.35633 7.62493C1.35633 7.62493 1.35634 7.62493 1.35634 7.62493C1.35635 7.62493 1.35635 7.62493 1.35635 7.62493C1.35636 7.62493 1.35636 7.62493 1.35636 7.62493C1.35637 7.62493 1.35637 7.62493 1.35637 7.62493C1.35638 7.62493 1.35638 7.62493 1.35639 7.62493C1.35639 7.62493 1.35639 7.62493 1.3564 7.62493C1.3564 7.62493 1.3564 7.62493 1.35641 7.62493C1.35641 7.62493 1.35641 7.62493 1.35642 7.62493C1.35642 7.62493 1.35643 7.62493 1.35643 7.62493C1.35643 7.62493 1.35644 7.62493 1.35644 7.62493C1.35644 7.62493 1.35645 7.62493 1.35645 7.62493C1.35645 7.62493 1.35646 7.62493 1.35646 7.62493C1.35647 7.62493 1.35647 7.62493 1.35647 7.62493C1.35648 7.62493 1.35648 7.62493 1.35648 7.62493C1.35649 7.62493 1.35649 7.62493 1.3565 7.62493C1.3565 7.62493 1.3565 7.62493 1.35651 7.62493C1.35651 7.62493 1.35651 7.62493 1.35652 7.62493C1.35652 7.62493 1.35652 7.62493 1.35653 7.62493C1.35653 7.62493 1.35654 7.62493 1.35654 7.62493C1.35654 7.62493 1.35655 7.62493 1.35655 7.62493C1.35655 7.62493 1.35656 7.62493 1.35656 7.62493C1.35656 7.62493 1.35657 7.62493 1.35657 7.62493C1.35658 7.62493 1.35658 7.62493 1.35658 7.62493C1.35659 7.62493 1.35659 7.62493 1.35659 7.62493C1.3566 7.62493 1.3566 7.62493 1.35661 7.62493C1.35661 7.62493 1.35661 7.62493 1.35662 7.62493C1.35662 7.62493 1.35662 7.62493 1.35663 7.62493C1.35663 7.62493 1.35663 7.62493 1.35664 7.62493C1.35664 7.62493 1.35665 7.62493 1.35665 7.62493C1.35665 7.62493 1.35666 7.62493 1.35666 7.62493C1.35666 7.62493 1.35667 7.62493 1.35667 7.62493C1.35667 7.62493 1.35668 7.62493 1.35668 7.62493C1.35669 7.62493 1.35669 7.62493 1.35669 7.62493C1.3567 7.62493 1.3567 7.62493 1.3567 7.62493C1.35671 7.62493 1.35671 7.62493 1.35671 7.62493C1.35672 7.62493 1.35672 7.62493 1.35673 7.62493C1.35673 7.62493 1.35673 7.62493 1.35674 7.62493C1.35674 7.62493 1.35674 7.62493 1.35675 7.62493C1.35675 7.62493 1.35676 7.62493 1.35676 7.62493C1.35676 7.62493 1.35677 7.62493 1.35677 7.62493C1.35677 7.62493 1.35678 7.62493 1.35678 7.62493C1.35678 7.62493 1.35679 7.62493 1.35679 7.62493C1.3568 7.62493 1.3568 7.62493 1.3568 7.62493C1.35681 7.62493 1.35681 7.62493 1.35681 7.62493C1.35682 7.62493 1.35682 7.62493 1.35682 7.62493C1.35683 7.62493 1.35683 7.62493 1.35684 7.62493C1.35684 7.62493 1.35684 7.62493 1.35685 7.62493C1.35685 7.62493 1.35685 7.62493 1.35686 7.62493C1.35686 7.62493 1.35687 7.62493 1.35687 7.62493C1.35687 7.62493 1.35688 7.62493 1.35688 7.62493C1.35688 7.62493 1.35689 7.62493 1.35689 7.62493C1.35689 7.62493 1.3569 7.62493 1.3569 7.62493C1.35691 7.62493 1.35691 7.62493 1.35691 7.62493C1.35692 7.62493 1.35692 7.62493 1.35692 7.62493C1.35693 7.62493 1.35693 7.62493 1.35693 7.62493C1.35694 7.62493 1.35694 7.62493 1.35695 7.62493C1.35695 7.62493 1.35695 7.62493 1.35696 7.62493C1.35696 7.62493 1.35696 7.62493 1.35697 7.62493C1.35697 7.62493 1.35697 7.62493 1.35698 7.62493C1.35698 7.62493 1.35699 7.62493 1.35699 7.62493C1.35699 7.62493 1.357 7.62493 1.357 7.62493C1.357 7.62493 1.35701 7.62493 1.35701 7.62493C1.35702 7.62493 1.35702 7.62493 1.35702 7.62493C1.35703 7.62493 1.35703 7.62493 1.35703 7.62493C1.35704 7.62493 1.35704 7.62493 1.35704 7.62493C1.35705 7.62493 1.35705 7.62493 1.35706 7.62493C1.35706 7.62493 1.35706 7.62493 1.35707 7.62493C1.35707 7.62493 1.35707 7.62493 1.35708 7.62493C1.35708 7.62493 1.35708 7.62493 1.35709 7.62493C1.35709 7.62493 1.3571 7.62493 1.3571 7.62493C1.3571 7.62493 1.35711 7.62493 1.35711 7.62493C1.35711 7.62493 1.35712 7.62493 1.35712 7.62493C1.35713 7.62493 1.35713 7.62493 1.35713 7.62493C1.35714 7.62493 1.35714 7.62493 1.35714 7.62493C1.35715 7.62493 1.35715 7.62493 1.35715 7.62493C1.35716 7.62493 1.35716 7.62493 1.35717 7.62493C1.35717 7.62493 1.35717 7.62493 1.35718 7.62493C1.35718 7.62493 1.35718 7.62493 1.35719 7.62493C1.35719 7.62493 1.35719 7.62493 1.3572 7.62493C1.3572 7.62493 1.35721 7.62493 1.35721 7.62493C1.35721 7.62493 1.35722 7.62493 1.35722 7.62493C1.35722 7.62493 1.35723 7.62493 1.35723 7.62493C1.35723 7.62493 1.35724 7.62493 1.35724 7.62493C1.35725 7.62493 1.35725 7.62493 1.35725 7.62493C1.35726 7.62493 1.35726 7.62493 1.35726 7.62493C1.35727 7.62493 1.35727 7.62493 1.35728 7.62493C1.35728 7.62493 1.35728 7.62493 1.35729 7.62493C1.35729 7.62493 1.35729 7.62493 1.3573 7.62493C1.3573 7.62493 1.3573 7.62493 1.35731 7.62493C1.35731 7.62493 1.35732 7.62493 1.35732 7.62493C1.35732 7.62493 1.35733 7.62493 1.35733 7.62493C1.35733 7.62493 1.35734 7.62493 1.35734 7.62493C1.35734 7.62493 1.35735 7.62493 1.35735 7.62493C1.35736 7.62493 1.35736 7.62493 1.35736 7.62493C1.35737 7.62493 1.35737 7.62493 1.35737 7.62493C1.35738 7.62493 1.35738 7.62493 1.35739 7.62493C1.35739 7.62493 1.35739 7.62493 1.3574 7.62493C1.3574 7.62493 1.3574 7.62493 1.35741 7.62493C1.35741 7.62493 1.35741 7.62493 1.35742 7.62493C1.35742 7.62493 1.35743 7.62493 1.35743 7.62493C1.35743 7.62493 1.35744 7.62493 1.35744 7.62493C1.35744 7.62493 1.35745 7.62493 1.35745 7.62493C1.35745 7.62493 1.35746 7.62493 1.35746 7.62493C1.35747 7.62493 1.35747 7.62493 1.35747 7.62493C1.35748 7.62493 1.35748 7.62493 1.35748 7.62493C1.35749 7.62493 1.35749 7.62493 1.35749 7.62493C1.3575 7.62493 1.3575 7.62493 1.35751 7.62493C1.35751 7.62493 1.35751 7.62493 1.35752 7.62493C1.35752 7.62493 1.35752 7.62493 1.35753 7.62493C1.35753 7.62493 1.35754 7.62493 1.35754 7.62493C1.35754 7.62493 1.35755 7.62493 1.35755 7.62493C1.35755 7.62493 1.35756 7.62493 1.35756 7.62493C1.35756 7.62493 1.35757 7.62493 1.35757 7.62493C1.35758 7.62493 1.35758 7.62493 1.35758 7.62493C1.35759 7.62493 1.35759 7.62493 1.35759 7.62493C1.3576 7.62493 1.3576 7.62493 1.3576 7.62493C1.35761 7.62493 1.35761 7.62493 1.35762 7.62493C1.35762 7.62493 1.35762 7.62493 1.35763 7.62493C1.35763 7.62493 1.35763 7.62493 1.35764 7.62493C1.35764 7.62493 1.35765 7.62493 1.35765 7.62493C1.35765 7.62493 1.35766 7.62493 1.35766 7.62493C1.35766 7.62493 1.35767 7.62493 1.35767 7.62493C1.35767 7.62493 1.35768 7.62493 1.35768 7.62493C1.35769 7.62493 1.35769 7.62493 1.35769 7.62493C1.3577 7.62493 1.3577 7.62493 1.3577 7.62493C1.35771 7.62493 1.35771 7.62493 1.35771 7.62493C1.35772 7.62493 1.35772 7.62493 1.35773 7.62493C1.35773 7.62493 1.35773 7.62493 1.35774 7.62493C1.35774 7.62493 1.35774 7.62493 1.35775 7.62493C1.35775 7.62493 1.35775 7.62493 1.35776 7.62493C1.35776 7.62493 1.35777 7.62493 1.35777 7.62493C1.35777 7.62493 1.35778 7.62493 1.35778 7.62493C1.35778 7.62493 1.35779 7.62493 1.35779 7.62493C1.3578 7.62493 1.3578 7.62493 1.3578 7.62493C1.35781 7.62493 1.35781 7.62493 1.35781 7.62493C1.35782 7.62493 1.35782 7.62493 1.35782 7.62493C1.35783 7.62493 1.35783 7.62493 1.35784 7.62493C1.35784 7.62493 1.35784 7.62493 1.35785 7.62493C1.35785 7.62493 1.35785 7.62493 1.35786 7.62493C1.35786 7.62493 1.35786 7.62493 1.35787 7.62493C1.35787 7.62493 1.35788 7.62493 1.35788 7.62493C1.35788 7.62493 1.35789 7.62493 1.35789 7.62493C1.35789 7.62493 1.3579 7.62493 1.3579 7.62493C1.35791 7.62493 1.35791 7.62493 1.35791 7.62493C1.35792 7.62493 1.35792 7.62493 1.35792 7.62493C1.35793 7.62493 1.35793 7.62493 1.35793 7.62493C1.35794 7.62493 1.35794 7.62493 1.35795 7.62493C1.35795 7.62493 1.35795 7.62493 1.35796 7.62493C1.35796 7.62493 1.35796 7.62493 1.35797 7.62493C1.35797 7.62493 1.35797 7.62493 1.35798 7.62493C1.35798 7.62493 1.35799 7.62493 1.35799 7.62493C1.35799 7.62493 1.358 7.62493 1.358 7.62493C1.358 7.62493 1.35801 7.62493 1.35801 7.62493C1.35801 7.62493 1.35802 7.62493 1.35802 7.62493C1.35803 7.62493 1.35803 7.62493 1.35803 7.62493C1.35804 7.62493 1.35804 7.62493 1.35804 7.62493C1.35805 7.62493 1.35805 7.62493 1.35806 7.62493C1.35806 7.62493 1.35806 7.62493 1.35807 7.62493C1.35807 7.62493 1.35807 7.62493 1.35808 7.62493C1.35808 7.62493 1.35808 7.62493 1.35809 7.62493C1.35809 7.62493 1.3581 7.62493 1.3581 7.62493C1.3581 7.62493 1.35811 7.62493 1.35811 7.62493C1.35811 7.62493 1.35812 7.62493 1.35812 7.62493C1.35812 7.62493 1.35813 7.62493 1.35813 7.62493C1.35814 7.62493 1.35814 7.62493 1.35814 7.62493C1.35815 7.62493 1.35815 7.62493 1.35815 7.62493C1.35816 7.62493 1.35816 7.62493 1.35817 7.62493C1.35817 7.62493 1.35817 7.62493 1.35818 7.62493C1.35818 7.62493 1.35818 7.62493 1.35819 7.62493C1.35819 7.62493 1.35819 7.62493 1.3582 7.62493C1.3582 7.62493 1.35821 7.62493 1.35821 7.62493C1.35821 7.62493 1.35822 7.62493 1.35822 7.62493C1.35822 7.62493 1.35823 7.62493 1.35823 7.62493C1.35823 7.62493 1.35824 7.62493 1.35824 7.62493C1.35825 7.62493 1.35825 7.62493 1.35825 7.62493C1.35826 7.62493 1.35826 7.62493 1.35826 7.62493C1.35827 7.62493 1.35827 7.62493 1.35827 7.62493C1.35828 7.62493 1.35828 7.62493 1.35829 7.62493C1.35829 7.62493 1.35829 7.62493 1.3583 7.62493C1.3583 7.62493 1.3583 7.62493 1.35831 7.62493C1.35831 7.62493 1.35832 7.62493 1.35832 7.62493C1.35832 7.62493 1.35833 7.62493 1.35833 7.62493C1.35833 7.62493 1.35834 7.62493 1.35834 7.62493C1.35834 7.62493 1.35835 7.62493 1.35835 7.62493C1.35836 7.62493 1.35836 7.62493 1.35836 7.62493C1.35837 7.62493 1.35837 7.62493 1.35837 7.62493C1.35838 7.62493 1.35838 7.62493 1.35838 7.62493C1.35839 7.62493 1.35839 7.62493 1.3584 7.62493C1.3584 7.62493 1.3584 7.62493 1.35841 7.62493C1.35841 7.62493 1.35841 7.62493 1.35842 7.62493C1.35842 7.62493 1.35843 7.62493 1.35843 7.62493C1.35843 7.62493 1.35844 7.62493 1.35844 7.62493C1.35844 7.62493 1.35845 7.62493 1.35845 7.62493C1.35845 7.62493 1.35846 7.62493 1.35846 7.62493C1.35847 7.62493 1.35847 7.62493 1.35847 7.62493C1.35848 7.62493 1.35848 7.62493 1.35848 7.62493C1.35849 7.62493 1.35849 7.62493 1.35849 7.62493C1.3585 7.62493 1.3585 7.62493 1.35851 7.62493C1.35851 7.62493 1.35851 7.62493 1.35852 7.62493C1.35852 7.62493 1.35852 7.62493 1.35853 7.62493C1.35853 7.62493 1.35853 7.62493 1.35854 7.62493C1.35854 7.62493 1.35855 7.62493 1.35855 7.62493C1.35855 7.62493 1.35856 7.62493 1.35856 7.62493C1.35856 7.62493 1.35857 7.62493 1.35857 7.62493C1.35858 7.62493 1.35858 7.62493 1.35858 7.62493C1.35859 7.62493 1.35859 7.62493 1.35859 7.62493C1.3586 7.62493 1.3586 7.62493 1.3586 7.62493C1.35861 7.62493 1.35861 7.62493 1.35862 7.62493C1.35862 7.62493 1.35862 7.62493 1.35863 7.62493C1.35863 7.62493 1.35863 7.62493 1.35864 7.62493C1.35864 7.62493 1.35864 7.62493 1.35865 7.62493C1.35865 7.62493 1.35866 7.62493 1.35866 7.62493C1.35866 7.62493 1.35867 7.62493 1.35867 7.62493C1.35867 7.62493 1.35868 7.62493 1.35868 7.62493C1.35869 7.62493 1.35869 7.62493 1.35869 7.62493C1.3587 7.62493 1.3587 7.62493 1.3587 7.62493C1.35871 7.62493 1.35871 7.62493 1.35871 7.62493C1.35872 7.62493 1.35872 7.62493 1.35873 7.62493C1.35873 7.62493 1.35873 7.62493 1.35874 7.62493C1.35874 7.62493 1.35874 7.62493 1.35875 7.62493C1.35875 7.62493 1.35875 7.62493 1.35876 7.62493C1.35876 7.62493 1.35877 7.62493 1.35877 7.62493C1.35877 7.62493 1.35878 7.62493 1.35878 7.62493C1.35878 7.62493 1.35879 7.62493 1.35879 7.62493C1.35879 7.62493 1.3588 7.62493 1.3588 7.62493C1.35881 7.62493 1.35881 7.62493 1.35881 7.62493C1.35882 7.62493 1.35882 7.62493 1.35882 7.62493C1.35883 7.62493 1.35883 7.62493 1.35884 7.62493C1.35884 7.62493 1.35884 7.62493 1.35885 7.62493C1.35885 7.62493 1.35885 7.62493 1.35886 7.62493C1.35886 7.62493 1.35886 7.62493 1.35887 7.62493C1.35887 7.62493 1.35888 7.62493 1.35888 7.62493C1.35888 7.62493 1.35889 7.62493 1.35889 7.62493C1.35889 7.62493 1.3589 7.62493 1.3589 7.62493C1.3589 7.62493 1.35891 7.62493 1.35891 7.62493C1.35892 7.62493 1.35892 7.62493 1.35892 7.62493C1.35893 7.62493 1.35893 7.62493 1.35893 7.62493C1.35894 7.62493 1.35894 7.62493 1.35895 7.62493C1.35895 7.62493 1.35895 7.62493 1.35896 7.62493C1.35896 7.62493 1.35896 7.62493 1.35897 7.62493C1.35897 7.62493 1.35897 7.62493 1.35898 7.62493C1.35898 7.62493 1.35899 7.62493 1.35899 7.62493C1.35899 7.62493 1.359 7.62493 1.359 7.62493C1.359 7.62493 1.35901 7.62493 1.35901 7.62493C1.35901 7.62493 1.35902 7.62493 1.35902 7.62493C1.35903 7.62493 1.35903 7.62493 1.35903 7.62493C1.35904 7.62493 1.35904 7.62493 1.35904 7.62493C1.35905 7.62493 1.35905 7.62493 1.35905 7.62493C1.35906 7.62493 1.35906 7.62493 1.35907 7.62493C1.35907 7.62493 1.35907 7.62493 1.35908 7.62493C1.35908 7.62493 1.35908 7.62493 1.35909 7.62493C1.35909 7.62493 1.3591 7.62493 1.3591 7.62493C1.3591 7.62493 1.35911 7.62493 1.35911 7.62493C1.35911 7.62493 1.35912 7.62493 1.35912 7.62493C1.35912 7.62493 1.35913 7.62493 1.35913 7.62493C1.35914 7.62493 1.35914 7.62493 1.35914 7.62493C1.35915 7.62493 1.35915 7.62493 1.35915 7.62493C1.35916 7.62493 1.35916 7.62493 1.35916 7.62493C1.35917 7.62493 1.35917 7.62493 1.35918 7.62493C1.35918 7.62493 1.35918 7.62493 1.35919 7.62493C1.35919 7.62493 1.35919 7.62493 1.3592 7.62493C1.3592 7.62493 1.35921 7.62493 1.35921 7.62493C1.35921 7.62493 1.35922 7.62493 1.35922 7.62493C1.35922 7.62493 1.35923 7.62493 1.35923 7.62493C1.35923 7.62493 1.35924 7.62493 1.35924 7.62493C1.35925 7.62493 1.35925 7.62493 1.35925 7.62493C1.35926 7.62493 1.35926 7.62493 1.35926 7.62493C1.35927 7.62493 1.35927 7.62493 1.35927 7.62493C1.35928 7.62493 1.35928 7.62493 1.35929 7.62493C1.35929 7.62493 1.35929 7.62493 1.3593 7.62493C1.3593 7.62493 1.3593 7.62493 1.35931 7.62493C1.35931 7.62493 1.35931 7.62493 1.35932 7.62493C1.35932 7.62493 1.35933 7.62493 1.35933 7.62493C1.35933 7.62493 1.35934 7.62493 1.35934 7.62493C1.35934 7.62493 1.35935 7.62493 1.35935 7.62493C1.35936 7.62493 1.35936 7.62493 1.35936 7.62493C1.35937 7.62493 1.35937 7.62493 1.35937 7.62493C1.35938 7.62493 1.35938 7.62493 1.35938 7.62493C1.35939 7.62493 1.35939 7.62493 1.3594 7.62493C1.3594 7.62493 1.3594 7.62493 1.35941 7.62493C1.35941 7.62493 1.35941 7.62493 1.35942 7.62493C1.35942 7.62493 1.35942 7.62493 1.35943 7.62493C1.35943 7.62493 1.35944 7.62493 1.35944 7.62493C1.35944 7.62493 1.35945 7.62493 1.35945 7.62493C1.35945 7.62493 1.35946 7.62493 1.35946 7.62493C1.35947 7.62493 1.35947 7.62493 1.35947 7.62493C1.35948 7.62493 1.35948 7.62493 1.35948 7.62493C1.35949 7.62493 1.35949 7.62493 1.35949 7.62493C1.3595 7.62493 1.3595 7.62493 1.35951 7.62493C1.35951 7.62493 1.35951 7.62493 1.35952 7.62493C1.35952 7.62493 1.35952 7.62493 1.35953 7.62493C1.35953 7.62493 1.35953 7.62493 1.35954 7.62493C1.35954 7.62493 1.35955 7.62493 1.35955 7.62493C1.35955 7.62493 1.35956 7.62493 1.35956 7.62493C1.35956 7.62493 1.35957 7.62493 1.35957 7.62493C1.35958 7.62493 1.35958 7.62493 1.35958 7.62493C1.35959 7.62493 1.35959 7.62493 1.35959 7.62493C1.3596 7.62493 1.3596 7.62493 1.3596 7.62493C1.35961 7.62493 1.35961 7.62493 1.35962 7.62493C1.35962 7.62493 1.35962 7.62493 1.35963 7.62493C1.35963 7.62493 1.35963 7.62493 1.35964 7.62493C1.35964 7.62493 1.35964 7.62493 1.35965 7.62493C1.35965 7.62493 1.35966 7.62493 1.35966 7.62493C1.35966 7.62493 1.35967 7.62493 1.35967 7.62493C1.35967 7.62493 1.35968 7.62493 1.35968 7.62493C1.35968 7.62493 1.35969 7.62493 1.35969 7.62493C1.3597 7.62493 1.3597 7.62493 1.3597 7.62493C1.35971 7.62493 1.35971 7.62493 1.35971 7.62493C1.35972 7.62493 1.35972 7.62493 1.35973 7.62493C1.35973 7.62493 1.35973 7.62493 1.35974 7.62493C1.35974 7.62493 1.35974 7.62493 1.35975 7.62493C1.35975 7.62493 1.35975 7.62493 1.35976 7.62493C1.35976 7.62493 1.35977 7.62493 1.35977 7.62493C1.35977 7.62493 1.35978 7.62493 1.35978 7.62493C1.35978 7.62493 1.35979 7.62493 1.35979 7.62493C1.35979 7.62493 1.3598 7.62493 1.3598 7.62493C1.35981 7.62493 1.35981 7.62493 1.35981 7.62493C1.35982 7.62493 1.35982 7.62493 1.35982 7.62493C1.35983 7.62493 1.35983 7.62493 1.35983 7.62493C1.35984 7.62493 1.35984 7.62493 1.35985 7.62493C1.35985 7.62493 1.35985 7.62493 1.35986 7.62493C1.35986 7.62493 1.35986 7.62493 1.35987 7.62493C1.35987 7.62493 1.35988 7.62493 1.35988 7.62493C1.35988 7.62493 1.35989 7.62493 1.35989 7.62493C1.35989 7.62493 1.3599 7.62493 1.3599 7.62493C1.3599 7.62493 1.35991 7.62493 1.35991 7.62493C1.35992 7.62493 1.35992 7.62493 1.35992 7.62493C1.35993 7.62493 1.35993 7.62493 1.35993 7.62493C1.35994 7.62493 1.35994 7.62493 1.35994 7.62493C1.35995 7.62493 1.35995 7.62493 1.35996 7.62493C1.35996 7.62493 1.35996 7.62493 1.35997 7.62493C1.35997 7.62493 1.35997 7.62493 1.35998 7.62493C1.35998 7.62493 1.35999 7.62493 1.35999 7.62493V7.22493ZM1.2648 7.60376L1.26543 7.60407L1.44455 7.24642L1.44393 7.24611L1.2648 7.60376ZM10.6318 7.22527C10.3282 7.23014 10.0831 7.4771 10.0831 7.78222H10.4831C10.4831 7.6966 10.5519 7.6266 10.6382 7.62522L10.6318 7.22527ZM10.0831 7.78222C10.0831 7.78222 10.0831 7.78223 10.0831 7.78223C10.0831 7.78223 10.0831 7.78224 10.0831 7.78224C10.0831 7.78225 10.0831 7.78225 10.0831 7.78225C10.0831 7.78226 10.0831 7.78226 10.0831 7.78226C10.0831 7.78227 10.0831 7.78227 10.0831 7.78227C10.0831 7.78228 10.0831 7.78228 10.0831 7.78229C10.0831 7.78229 10.0831 7.78229 10.0831 7.7823C10.0831 7.7823 10.0831 7.7823 10.0831 7.78231C10.0831 7.78231 10.0831 7.78231 10.0831 7.78232C10.0831 7.78232 10.0831 7.78233 10.0831 7.78233C10.0831 7.78233 10.0831 7.78234 10.0831 7.78234C10.0831 7.78234 10.0831 7.78235 10.0831 7.78235C10.0831 7.78235 10.0831 7.78236 10.0831 7.78236C10.0831 7.78237 10.0831 7.78237 10.0831 7.78237C10.0831 7.78238 10.0831 7.78238 10.0831 7.78238C10.0831 7.78239 10.0831 7.78239 10.0831 7.78239C10.0831 7.7824 10.0831 7.7824 10.0831 7.78241C10.0831 7.78241 10.0831 7.78241 10.0831 7.78242C10.0831 7.78242 10.0831 7.78242 10.0831 7.78243C10.0831 7.78243 10.0831 7.78243 10.0831 7.78244C10.0831 7.78244 10.0831 7.78245 10.0831 7.78245C10.0831 7.78245 10.0831 7.78246 10.0831 7.78246C10.0831 7.78246 10.0831 7.78247 10.0831 7.78247C10.0831 7.78247 10.0831 7.78248 10.0831 7.78248C10.0831 7.78249 10.0831 7.78249 10.0831 7.78249C10.0831 7.7825 10.0831 7.7825 10.0831 7.7825C10.0831 7.78251 10.0831 7.78251 10.0831 7.78251C10.0831 7.78252 10.0831 7.78252 10.0831 7.78252C10.0831 7.78253 10.0831 7.78253 10.0831 7.78254C10.0831 7.78254 10.0831 7.78254 10.0831 7.78255C10.0831 7.78255 10.0831 7.78255 10.0831 7.78256C10.0831 7.78256 10.0831 7.78256 10.0831 7.78257C10.0831 7.78257 10.0831 7.78258 10.0831 7.78258C10.0831 7.78258 10.0831 7.78259 10.0831 7.78259C10.0831 7.78259 10.0831 7.7826 10.0831 7.7826C10.0831 7.7826 10.0831 7.78261 10.0831 7.78261C10.0831 7.78261 10.0831 7.78262 10.0831 7.78262C10.0831 7.78263 10.0831 7.78263 10.0831 7.78263C10.0831 7.78264 10.0831 7.78264 10.0831 7.78264C10.0831 7.78265 10.0831 7.78265 10.0831 7.78265C10.0831 7.78266 10.0831 7.78266 10.0831 7.78266C10.0831 7.78267 10.0831 7.78267 10.0831 7.78268C10.0831 7.78268 10.0831 7.78268 10.0831 7.78269C10.0831 7.78269 10.0831 7.78269 10.0831 7.7827C10.0831 7.7827 10.0831 7.7827 10.0831 7.78271C10.0831 7.78271 10.0831 7.78271 10.0831 7.78272C10.0831 7.78272 10.0831 7.78273 10.0831 7.78273C10.0831 7.78273 10.0831 7.78274 10.0831 7.78274C10.0831 7.78274 10.0831 7.78275 10.0831 7.78275C10.0831 7.78275 10.0831 7.78276 10.0831 7.78276C10.0831 7.78276 10.0831 7.78277 10.0831 7.78277C10.0831 7.78277 10.0831 7.78278 10.0831 7.78278C10.0831 7.78279 10.0831 7.78279 10.0831 7.78279C10.0831 7.7828 10.0831 7.7828 10.0831 7.7828C10.0831 7.78281 10.0831 7.78281 10.0831 7.78281C10.0831 7.78282 10.0831 7.78282 10.0831 7.78282C10.0831 7.78283 10.0831 7.78283 10.0831 7.78284C10.0831 7.78284 10.0831 7.78284 10.0831 7.78285C10.0831 7.78285 10.0831 7.78285 10.0831 7.78286C10.0831 7.78286 10.0831 7.78286 10.0831 7.78287C10.0831 7.78287 10.0831 7.78287 10.0831 7.78288C10.0831 7.78288 10.0831 7.78288 10.0831 7.78289C10.0831 7.78289 10.0831 7.7829 10.0831 7.7829C10.0831 7.7829 10.0831 7.78291 10.0831 7.78291C10.0831 7.78291 10.0831 7.78292 10.0831 7.78292C10.0831 7.78292 10.0831 7.78293 10.0831 7.78293C10.0831 7.78293 10.0831 7.78294 10.0831 7.78294C10.0831 7.78294 10.0831 7.78295 10.0831 7.78295C10.0831 7.78296 10.0831 7.78296 10.0831 7.78296C10.0831 7.78297 10.0831 7.78297 10.0831 7.78297C10.0831 7.78298 10.0831 7.78298 10.0831 7.78298C10.0831 7.78299 10.0831 7.78299 10.0831 7.78299C10.0831 7.783 10.0831 7.783 10.0831 7.783C10.0831 7.78301 10.0831 7.78301 10.0831 7.78302C10.0831 7.78302 10.0831 7.78302 10.0831 7.78303C10.0831 7.78303 10.0831 7.78303 10.0831 7.78304C10.0831 7.78304 10.0831 7.78304 10.0831 7.78305C10.0831 7.78305 10.0831 7.78305 10.0831 7.78306C10.0831 7.78306 10.0831 7.78306 10.0831 7.78307C10.0831 7.78307 10.0831 7.78307 10.0831 7.78308C10.0831 7.78308 10.0831 7.78309 10.0831 7.78309C10.0831 7.78309 10.0831 7.7831 10.0831 7.7831C10.0831 7.7831 10.0831 7.78311 10.0831 7.78311C10.0831 7.78311 10.0831 7.78312 10.0831 7.78312C10.0831 7.78312 10.0831 7.78313 10.0831 7.78313C10.0831 7.78313 10.0831 7.78314 10.0831 7.78314C10.0831 7.78314 10.0831 7.78315 10.0831 7.78315C10.0831 7.78315 10.0831 7.78316 10.0831 7.78316C10.0831 7.78317 10.0831 7.78317 10.0831 7.78317C10.0831 7.78318 10.0831 7.78318 10.0831 7.78318C10.0831 7.78319 10.0831 7.78319 10.0831 7.78319C10.0831 7.7832 10.0831 7.7832 10.0831 7.7832C10.0831 7.78321 10.0831 7.78321 10.0831 7.78321C10.0831 7.78322 10.0831 7.78322 10.0831 7.78323C10.0831 7.78323 10.0831 7.78323 10.0831 7.78324C10.0831 7.78324 10.0831 7.78324 10.0831 7.78325C10.0831 7.78325 10.0831 7.78325 10.0831 7.78326C10.0831 7.78326 10.0831 7.78326 10.0831 7.78327C10.0831 7.78327 10.0831 7.78327 10.0831 7.78328C10.0831 7.78328 10.0831 7.78328 10.0831 7.78329C10.0831 7.78329 10.0831 7.78329 10.0831 7.7833C10.0831 7.7833 10.0831 7.7833 10.0831 7.78331C10.0831 7.78331 10.0831 7.78332 10.0831 7.78332C10.0831 7.78332 10.0831 7.78333 10.0831 7.78333C10.0831 7.78333 10.0831 7.78334 10.0831 7.78334C10.0831 7.78334 10.0831 7.78335 10.0831 7.78335C10.0831 7.78335 10.0831 7.78336 10.0831 7.78336C10.0831 7.78336 10.0831 7.78337 10.0831 7.78337C10.0831 7.78337 10.0831 7.78338 10.0831 7.78338C10.0831 7.78338 10.0831 7.78339 10.0831 7.78339C10.0831 7.78339 10.0831 7.7834 10.0831 7.7834C10.0831 7.78341 10.0831 7.78341 10.0831 7.78341C10.0831 7.78342 10.0831 7.78342 10.0831 7.78342C10.0831 7.78343 10.0831 7.78343 10.0831 7.78343C10.0831 7.78344 10.0831 7.78344 10.0831 7.78344C10.0831 7.78345 10.0831 7.78345 10.0831 7.78345C10.0831 7.78346 10.0831 7.78346 10.0831 7.78346C10.0831 7.78347 10.0831 7.78347 10.0831 7.78347C10.0831 7.78348 10.0831 7.78348 10.0831 7.78348C10.0831 7.78349 10.0831 7.78349 10.0831 7.78349C10.0831 7.7835 10.0831 7.7835 10.0831 7.7835C10.0831 7.78351 10.0831 7.78351 10.0831 7.78352C10.0831 7.78352 10.0831 7.78352 10.0831 7.78353C10.0831 7.78353 10.0831 7.78353 10.0831 7.78354C10.0831 7.78354 10.0831 7.78354 10.0831 7.78355C10.0831 7.78355 10.0831 7.78355 10.0831 7.78356C10.0831 7.78356 10.0831 7.78356 10.0831 7.78357C10.0831 7.78357 10.0831 7.78357 10.0831 7.78358C10.0831 7.78358 10.0831 7.78358 10.0831 7.78359C10.0831 7.78359 10.0831 7.78359 10.0831 7.7836C10.0831 7.7836 10.0831 7.78361 10.0831 7.78361C10.0831 7.78361 10.0831 7.78362 10.0831 7.78362C10.0831 7.78362 10.0831 7.78363 10.0831 7.78363C10.0831 7.78363 10.0831 7.78364 10.0831 7.78364C10.0831 7.78364 10.0831 7.78365 10.0831 7.78365C10.0831 7.78365 10.0831 7.78366 10.0831 7.78366C10.0831 7.78366 10.0831 7.78367 10.0831 7.78367C10.0831 7.78367 10.0831 7.78368 10.0831 7.78368C10.0831 7.78368 10.0831 7.78369 10.0831 7.78369C10.0831 7.78369 10.0831 7.7837 10.0831 7.7837C10.0831 7.7837 10.0831 7.78371 10.0831 7.78371C10.0831 7.78371 10.0831 7.78372 10.0831 7.78372C10.0831 7.78372 10.0831 7.78373 10.0831 7.78373C10.0831 7.78373 10.0831 7.78374 10.0831 7.78374C10.0831 7.78375 10.0831 7.78375 10.0831 7.78375C10.0831 7.78376 10.0831 7.78376 10.0831 7.78376C10.0831 7.78377 10.0831 7.78377 10.0831 7.78377C10.0831 7.78378 10.0831 7.78378 10.0831 7.78378C10.0831 7.78379 10.0831 7.78379 10.0831 7.78379C10.0831 7.7838 10.0831 7.7838 10.0831 7.7838C10.0831 7.78381 10.0831 7.78381 10.0831 7.78381C10.0831 7.78382 10.0831 7.78382 10.0831 7.78382C10.0831 7.78383 10.0831 7.78383 10.0831 7.78383C10.0831 7.78384 10.0831 7.78384 10.0831 7.78384C10.0831 7.78385 10.0831 7.78385 10.0831 7.78385C10.0831 7.78386 10.0831 7.78386 10.0831 7.78386C10.0831 7.78387 10.0831 7.78387 10.0831 7.78387C10.0831 7.78388 10.0831 7.78388 10.0831 7.78389C10.0831 7.78389 10.0831 7.78389 10.0831 7.7839C10.0831 7.7839 10.0831 7.7839 10.0831 7.78391C10.0831 7.78391 10.0831 7.78391 10.0831 7.78392C10.0831 7.78392 10.0831 7.78392 10.0831 7.78393C10.0831 7.78393 10.0831 7.78393 10.0831 7.78394C10.0831 7.78394 10.0831 7.78394 10.0831 7.78395C10.0831 7.78395 10.0831 7.78395 10.0831 7.78396C10.0831 7.78396 10.0831 7.78396 10.0831 7.78397C10.0831 7.78397 10.0831 7.78397 10.0831 7.78398C10.0831 7.78398 10.0831 7.78398 10.0831 7.78399C10.0831 7.78399 10.0831 7.78399 10.0831 7.784C10.0831 7.784 10.0831 7.784 10.0831 7.78401C10.0831 7.78401 10.0831 7.78401 10.0831 7.78402C10.0831 7.78402 10.0831 7.78402 10.0831 7.78403C10.0831 7.78403 10.0831 7.78403 10.0831 7.78404C10.0831 7.78404 10.0831 7.78404 10.0831 7.78405C10.0831 7.78405 10.0831 7.78405 10.0831 7.78406C10.0831 7.78406 10.0831 7.78406 10.0831 7.78407C10.0831 7.78407 10.0831 7.78408 10.0831 7.78408C10.0831 7.78408 10.0831 7.78409 10.0831 7.78409C10.0831 7.78409 10.0831 7.7841 10.0831 7.7841C10.0831 7.7841 10.0831 7.78411 10.0831 7.78411C10.0831 7.78411 10.0831 7.78412 10.0831 7.78412C10.0831 7.78412 10.0831 7.78413 10.0831 7.78413C10.0831 7.78413 10.0831 7.78414 10.0831 7.78414C10.0831 7.78414 10.0831 7.78415 10.0831 7.78415C10.0831 7.78415 10.0831 7.78416 10.0831 7.78416C10.0831 7.78416 10.0831 7.78417 10.0831 7.78417C10.0831 7.78417 10.0831 7.78418 10.0831 7.78418C10.0831 7.78418 10.0831 7.78419 10.0831 7.78419C10.0831 7.78419 10.0831 7.7842 10.0831 7.7842C10.0831 7.7842 10.0831 7.78421 10.0831 7.78421C10.0831 7.78421 10.0831 7.78422 10.0831 7.78422C10.0831 7.78422 10.0831 7.78423 10.0831 7.78423C10.0831 7.78423 10.0831 7.78424 10.0831 7.78424C10.0831 7.78424 10.0831 7.78425 10.0831 7.78425C10.0831 7.78425 10.0831 7.78426 10.0831 7.78426C10.0831 7.78426 10.0831 7.78427 10.0831 7.78427C10.0831 7.78427 10.0831 7.78428 10.0831 7.78428C10.0831 7.78428 10.0831 7.78429 10.0831 7.78429C10.0831 7.78429 10.0831 7.7843 10.0831 7.7843C10.0831 7.78431 10.0831 7.78431 10.0831 7.78431C10.0831 7.78432 10.0831 7.78432 10.0831 7.78432C10.0831 7.78433 10.0831 7.78433 10.0831 7.78433C10.0831 7.78434 10.0831 7.78434 10.0831 7.78434C10.0831 7.78435 10.0831 7.78435 10.0831 7.78435C10.0831 7.78436 10.0831 7.78436 10.0831 7.78436C10.0831 7.78437 10.0831 7.78437 10.0831 7.78437C10.0831 7.78438 10.0831 7.78438 10.0831 7.78438C10.0831 7.78439 10.0831 7.78439 10.0831 7.78439C10.0831 7.7844 10.0831 7.7844 10.0831 7.7844C10.0831 7.78441 10.0831 7.78441 10.0831 7.78441C10.0831 7.78442 10.0831 7.78442 10.0831 7.78442C10.0831 7.78443 10.0831 7.78443 10.0831 7.78443C10.0831 7.78444 10.0831 7.78444 10.0831 7.78444C10.0831 7.78445 10.0831 7.78445 10.0831 7.78445C10.0831 7.78446 10.0831 7.78446 10.0831 7.78446C10.0831 7.78447 10.0831 7.78447 10.0831 7.78447C10.0831 7.78448 10.0831 7.78448 10.0831 7.78448C10.0831 7.78449 10.0831 7.78449 10.0831 7.78449C10.0831 7.7845 10.0831 7.7845 10.0831 7.7845C10.0831 7.78451 10.0831 7.78451 10.0831 7.78451C10.0831 7.78452 10.0831 7.78452 10.0831 7.78452C10.0831 7.78453 10.0831 7.78453 10.0831 7.78453C10.0831 7.78454 10.0831 7.78454 10.0831 7.78454C10.0831 7.78455 10.0831 7.78455 10.0831 7.78455C10.0831 7.78456 10.0831 7.78456 10.0831 7.78456C10.0831 7.78457 10.0831 7.78457 10.0831 7.78457C10.0831 7.78458 10.0831 7.78458 10.0831 7.78458C10.0831 7.78459 10.0831 7.78459 10.0831 7.78459C10.0831 7.7846 10.0831 7.7846 10.0831 7.7846C10.0831 7.78461 10.0831 7.78461 10.0831 7.78461C10.0831 7.78462 10.0831 7.78462 10.0831 7.78462C10.0831 7.78463 10.0831 7.78463 10.0831 7.78463C10.0831 7.78464 10.0831 7.78464 10.0831 7.78465C10.0831 7.78465 10.0831 7.78465 10.0831 7.78466C10.0831 7.78466 10.0831 7.78466 10.0831 7.78467C10.0831 7.78467 10.0831 7.78467 10.0831 7.78468C10.0831 7.78468 10.0831 7.78468 10.0831 7.78469C10.0831 7.78469 10.0831 7.78469 10.0831 7.7847C10.0831 7.7847 10.0831 7.7847 10.0831 7.78471C10.0831 7.78471 10.0831 7.78471 10.0831 7.78472C10.0831 7.78472 10.0831 7.78472 10.0831 7.78473C10.0831 7.78473 10.0831 7.78473 10.0831 7.78474C10.0831 7.78474 10.0831 7.78474 10.0831 7.78475C10.0831 7.78475 10.0831 7.78475 10.0831 7.78476C10.0831 7.78476 10.0831 7.78476 10.0831 7.78477C10.0831 7.78477 10.0831 7.78477 10.0831 7.78478C10.0831 7.78478 10.0831 7.78478 10.0831 7.78479C10.0831 7.78479 10.0831 7.78479 10.0831 7.7848C10.0831 7.7848 10.0831 7.7848 10.0831 7.78481C10.0831 7.78481 10.0831 7.78481 10.0831 7.78482C10.0831 7.78482 10.0831 7.78482 10.0831 7.78483C10.0831 7.78483 10.0831 7.78483 10.0831 7.78484C10.0831 7.78484 10.0831 7.78484 10.0831 7.78485C10.0831 7.78485 10.0831 7.78485 10.0831 7.78486C10.0831 7.78486 10.0831 7.78486 10.0831 7.78487C10.0831 7.78487 10.0831 7.78487 10.0831 7.78488C10.0831 7.78488 10.0831 7.78488 10.0831 7.78489C10.0831 7.78489 10.0831 7.78489 10.0831 7.7849C10.0831 7.7849 10.0831 7.7849 10.0831 7.78491C10.0831 7.78491 10.0831 7.78491 10.0831 7.78492C10.0831 7.78492 10.0831 7.78492 10.0831 7.78493C10.0831 7.78493 10.0831 7.78493 10.0831 7.78494C10.0831 7.78494 10.0831 7.78494 10.0831 7.78495C10.0831 7.78495 10.0831 7.78495 10.0831 7.78496C10.0831 7.78496 10.0831 7.78496 10.0831 7.78497C10.0831 7.78497 10.0831 7.78497 10.0831 7.78498C10.0831 7.78498 10.0831 7.78498 10.0831 7.78499C10.0831 7.78499 10.0831 7.78499 10.0831 7.785C10.0831 7.785 10.0831 7.785 10.0831 7.78501C10.0831 7.78501 10.0831 7.78501 10.0831 7.78502C10.0831 7.78502 10.0831 7.78502 10.0831 7.78503C10.0831 7.78503 10.0831 7.78503 10.0831 7.78504C10.0831 7.78504 10.0831 7.78504 10.0831 7.78505C10.0831 7.78505 10.0831 7.78505 10.0831 7.78506C10.0831 7.78506 10.0831 7.78506 10.0831 7.78507C10.0831 7.78507 10.0831 7.78507 10.0831 7.78508C10.0831 7.78508 10.0831 7.78508 10.0831 7.78509C10.0831 7.78509 10.0831 7.78509 10.0831 7.7851C10.0831 7.7851 10.0831 7.78511 10.0831 7.78511C10.0831 7.78511 10.0831 7.78512 10.0831 7.78512C10.0831 7.78512 10.0831 7.78513 10.0831 7.78513C10.0831 7.78513 10.0831 7.78514 10.0831 7.78514C10.0831 7.78514 10.0831 7.78515 10.0831 7.78515C10.0831 7.78515 10.0831 7.78516 10.0831 7.78516C10.0831 7.78516 10.0831 7.78517 10.0831 7.78517C10.0831 7.78517 10.0831 7.78518 10.0831 7.78518C10.0831 7.78518 10.0831 7.78519 10.0831 7.78519C10.0831 7.78519 10.0831 7.7852 10.0831 7.7852C10.0831 7.7852 10.0831 7.78521 10.0831 7.78521C10.0831 7.78521 10.0831 7.78522 10.0831 7.78522C10.0831 7.78522 10.0831 7.78523 10.0831 7.78523C10.0831 7.78523 10.0831 7.78524 10.0831 7.78524C10.0831 7.78524 10.0831 7.78525 10.0831 7.78525C10.0831 7.78525 10.0831 7.78526 10.0831 7.78526C10.0831 7.78526 10.0831 7.78527 10.0831 7.78527C10.0831 7.78527 10.0831 7.78528 10.0831 7.78528C10.0831 7.78528 10.0831 7.78529 10.0831 7.78529C10.0831 7.78529 10.0831 7.7853 10.0831 7.7853C10.0831 7.7853 10.0831 7.78531 10.0831 7.78531C10.0831 7.78531 10.0831 7.78532 10.0831 7.78532C10.0831 7.78532 10.0831 7.78533 10.0831 7.78533C10.0831 7.78533 10.0831 7.78534 10.0831 7.78534C10.0831 7.78534 10.0831 7.78535 10.0831 7.78535C10.0831 7.78535 10.0831 7.78536 10.0831 7.78536C10.0831 7.78536 10.0831 7.78537 10.0831 7.78537C10.0831 7.78537 10.0831 7.78538 10.0831 7.78538C10.0831 7.78538 10.0831 7.78539 10.0831 7.78539C10.0831 7.78539 10.0831 7.7854 10.0831 7.7854C10.0831 7.7854 10.0831 7.78541 10.0831 7.78541C10.0831 7.78541 10.0831 7.78542 10.0831 7.78542C10.0831 7.78542 10.0831 7.78543 10.0831 7.78543C10.0831 7.78543 10.0831 7.78544 10.0831 7.78544C10.0831 7.78544 10.0831 7.78545 10.0831 7.78545C10.0831 7.78546 10.0831 7.78546 10.0831 7.78546C10.0831 7.78547 10.0831 7.78547 10.0831 7.78547C10.0831 7.78548 10.0831 7.78548 10.0831 7.78548C10.0831 7.78549 10.0831 7.78549 10.0831 7.78549C10.0831 7.7855 10.0831 7.7855 10.0831 7.7855C10.0831 7.78551 10.0831 7.78551 10.0831 7.78551C10.0831 7.78552 10.0831 7.78552 10.0831 7.78552C10.0831 7.78553 10.0831 7.78553 10.0831 7.78553C10.0831 7.78554 10.0831 7.78554 10.0831 7.78554C10.0831 7.78555 10.0831 7.78555 10.0831 7.78555C10.0831 7.78556 10.0831 7.78556 10.0831 7.78556C10.0831 7.78557 10.0831 7.78557 10.0831 7.78557C10.0831 7.78558 10.0831 7.78558 10.0831 7.78558C10.0831 7.78559 10.0831 7.78559 10.0831 7.78559C10.0831 7.7856 10.0831 7.7856 10.0831 7.7856C10.0831 7.78561 10.0831 7.78561 10.0831 7.78561C10.0831 7.78562 10.0831 7.78562 10.0831 7.78562C10.0831 7.78563 10.0831 7.78563 10.0831 7.78563C10.0831 7.78564 10.0831 7.78564 10.0831 7.78564C10.0831 7.78565 10.0831 7.78565 10.0831 7.78565C10.0831 7.78566 10.0831 7.78566 10.0831 7.78566C10.0831 7.78567 10.0831 7.78567 10.0831 7.78567C10.0831 7.78568 10.0831 7.78568 10.0831 7.78569C10.0831 7.78569 10.0831 7.78569 10.0831 7.7857C10.0831 7.7857 10.0831 7.7857 10.0831 7.78571C10.0831 7.78571 10.0831 7.78571 10.0831 7.78572C10.0831 7.78572 10.0831 7.78572 10.0831 7.78573C10.0831 7.78573 10.0831 7.78573 10.0831 7.78574C10.0831 7.78574 10.0831 7.78574 10.0831 7.78575C10.0831 7.78575 10.0831 7.78575 10.0831 7.78576C10.0831 7.78576 10.0831 7.78576 10.0831 7.78577C10.0831 7.78577 10.0831 7.78577 10.0831 7.78578C10.0831 7.78578 10.0831 7.78578 10.0831 7.78579C10.0831 7.78579 10.0831 7.78579 10.0831 7.7858C10.0831 7.7858 10.0831 7.7858 10.0831 7.78581C10.0831 7.78581 10.0831 7.78581 10.0831 7.78582C10.0831 7.78582 10.0831 7.78582 10.0831 7.78583C10.0831 7.78583 10.0831 7.78583 10.0831 7.78584C10.0831 7.78584 10.0831 7.78584 10.0831 7.78585C10.0831 7.78585 10.0831 7.78585 10.0831 7.78586C10.0831 7.78586 10.0831 7.78586 10.0831 7.78587C10.0831 7.78587 10.0831 7.78587 10.0831 7.78588C10.0831 7.78588 10.0831 7.78589 10.0831 7.78589C10.0831 7.78589 10.0831 7.7859 10.0831 7.7859C10.0831 7.7859 10.0831 7.78591 10.0831 7.78591C10.0831 7.78591 10.0831 7.78592 10.0831 7.78592C10.0831 7.78592 10.0831 7.78593 10.0831 7.78593C10.0831 7.78593 10.0831 7.78594 10.0831 7.78594C10.0831 7.78594 10.0831 7.78595 10.0831 7.78595C10.0831 7.78595 10.0831 7.78596 10.0831 7.78596C10.0831 7.78596 10.0831 7.78597 10.0831 7.78597C10.0831 7.78597 10.0831 7.78598 10.0831 7.78598C10.0831 7.78598 10.0831 7.78599 10.0831 7.78599C10.0831 7.78599 10.0831 7.786 10.0831 7.786C10.0831 7.786 10.0831 7.78601 10.0831 7.78601C10.0831 7.78602 10.0831 7.78602 10.0831 7.78602C10.0831 7.78603 10.0831 7.78603 10.0831 7.78603C10.0831 7.78604 10.0831 7.78604 10.0831 7.78604C10.0831 7.78605 10.0831 7.78605 10.0831 7.78605C10.0831 7.78606 10.0831 7.78606 10.0831 7.78606C10.0831 7.78607 10.0831 7.78607 10.0831 7.78607C10.0831 7.78608 10.0831 7.78608 10.0831 7.78608C10.0831 7.78609 10.0831 7.78609 10.0831 7.78609C10.0831 7.7861 10.0831 7.7861 10.0831 7.7861C10.0831 7.78611 10.0831 7.78611 10.0831 7.78611C10.0831 7.78612 10.0831 7.78612 10.0831 7.78612C10.0831 7.78613 10.0831 7.78613 10.0831 7.78613C10.0831 7.78614 10.0831 7.78614 10.0831 7.78614C10.0831 7.78615 10.0831 7.78615 10.0831 7.78616C10.0831 7.78616 10.0831 7.78616 10.0831 7.78617C10.0831 7.78617 10.0831 7.78617 10.0831 7.78618C10.0831 7.78618 10.0831 7.78618 10.0831 7.78619C10.0831 7.78619 10.0831 7.78619 10.0831 7.7862C10.0831 7.7862 10.0831 7.7862 10.0831 7.78621C10.0831 7.78621 10.0831 7.78621 10.0831 7.78622C10.0831 7.78622 10.0831 7.78622 10.0831 7.78623C10.0831 7.78623 10.0831 7.78623 10.0831 7.78624C10.0831 7.78624 10.0831 7.78624 10.0831 7.78625C10.0831 7.78625 10.0831 7.78625 10.0831 7.78626C10.0831 7.78626 10.0831 7.78627 10.0831 7.78627C10.0831 7.78627 10.0831 7.78628 10.0831 7.78628C10.0831 7.78628 10.0831 7.78629 10.0831 7.78629C10.0831 7.78629 10.0831 7.7863 10.0831 7.7863C10.0831 7.7863 10.0831 7.78631 10.0831 7.78631C10.0831 7.78631 10.0831 7.78632 10.0831 7.78632C10.0831 7.78632 10.0831 7.78633 10.0831 7.78633C10.0831 7.78633 10.0831 7.78634 10.0831 7.78634C10.0831 7.78634 10.0831 7.78635 10.0831 7.78635C10.0831 7.78636 10.0831 7.78636 10.0831 7.78636C10.0831 7.78637 10.0831 7.78637 10.0831 7.78637C10.0831 7.78638 10.0831 7.78638 10.0831 7.78638C10.0831 7.78639 10.0831 7.78639 10.0831 7.78639C10.0831 7.7864 10.0831 7.7864 10.0831 7.7864C10.0831 7.78641 10.0831 7.78641 10.0831 7.78641C10.0831 7.78642 10.0831 7.78642 10.0831 7.78642C10.0831 7.78643 10.0831 7.78643 10.0831 7.78643C10.0831 7.78644 10.0831 7.78644 10.0831 7.78645C10.0831 7.78645 10.0831 7.78645 10.0831 7.78646C10.0831 7.78646 10.0831 7.78646 10.0831 7.78647C10.0831 7.78647 10.0831 7.78647 10.0831 7.78648C10.0831 7.78648 10.0831 7.78648 10.0831 7.78649C10.0831 7.78649 10.0831 7.78649 10.0831 7.7865C10.0831 7.7865 10.0831 7.7865 10.0831 7.78651C10.0831 7.78651 10.0831 7.78651 10.0831 7.78652C10.0831 7.78652 10.0831 7.78652 10.0831 7.78653C10.0831 7.78653 10.0831 7.78654 10.0831 7.78654C10.0831 7.78654 10.0831 7.78655 10.0831 7.78655C10.0831 7.78655 10.0831 7.78656 10.0831 7.78656C10.0831 7.78656 10.0831 7.78657 10.0831 7.78657C10.0831 7.78657 10.0831 7.78658 10.0831 7.78658C10.0831 7.78658 10.0831 7.78659 10.0831 7.78659C10.0831 7.78659 10.0831 7.7866 10.0831 7.7866C10.0831 7.7866 10.0831 7.78661 10.0831 7.78661C10.0831 7.78662 10.0831 7.78662 10.0831 7.78662C10.0831 7.78663 10.0831 7.78663 10.0831 7.78663C10.0831 7.78664 10.0831 7.78664 10.0831 7.78664C10.0831 7.78665 10.0831 7.78665 10.0831 7.78665C10.0831 7.78666 10.0831 7.78666 10.0831 7.78666C10.0831 7.78667 10.0831 7.78667 10.0831 7.78667C10.0831 7.78668 10.0831 7.78668 10.0831 7.78669C10.0831 7.78669 10.0831 7.78669 10.0831 7.7867C10.0831 7.7867 10.0831 7.7867 10.0831 7.78671C10.0831 7.78671 10.0831 7.78671 10.0831 7.78672C10.0831 7.78672 10.0831 7.78672 10.0831 7.78673C10.0831 7.78673 10.0831 7.78673 10.0831 7.78674C10.0831 7.78674 10.0831 7.78675 10.0831 7.78675C10.0831 7.78675 10.0831 7.78676 10.0831 7.78676C10.0831 7.78676 10.0831 7.78677 10.0831 7.78677C10.0831 7.78677 10.0831 7.78678 10.0831 7.78678C10.0831 7.78678 10.0831 7.78679 10.0831 7.78679C10.0831 7.78679 10.0831 7.7868 10.0831 7.7868C10.0831 7.78681 10.0831 7.78681 10.0831 7.78681C10.0831 7.78682 10.0831 7.78682 10.0831 7.78682C10.0831 7.78683 10.0831 7.78683 10.0831 7.78683C10.0831 7.78684 10.0831 7.78684 10.0831 7.78684C10.0831 7.78685 10.0831 7.78685 10.0831 7.78685C10.0831 7.78686 10.0831 7.78686 10.0831 7.78686C10.0831 7.78687 10.0831 7.78687 10.0831 7.78688C10.0831 7.78688 10.0831 7.78688 10.0831 7.78689C10.0831 7.78689 10.0831 7.78689 10.0831 7.7869C10.0831 7.7869 10.0831 7.7869 10.0831 7.78691C10.0831 7.78691 10.0831 7.78691 10.0831 7.78692C10.0831 7.78692 10.0831 7.78693 10.0831 7.78693C10.0831 7.78693 10.0831 7.78694 10.0831 7.78694C10.0831 7.78694 10.0831 7.78695 10.0831 7.78695C10.0831 7.78695 10.0831 7.78696 10.0831 7.78696C10.0831 7.78696 10.0831 7.78697 10.0831 7.78697C10.0831 7.78697 10.0831 7.78698 10.0831 7.78698C10.0831 7.78699 10.0831 7.78699 10.0831 7.78699C10.0831 7.787 10.0831 7.787 10.0831 7.787C10.0831 7.78701 10.0831 7.78701 10.0831 7.78701C10.0831 7.78702 10.0831 7.78702 10.0831 7.78702C10.0831 7.78703 10.0831 7.78703 10.0831 7.78704C10.0831 7.78704 10.0831 7.78704 10.0831 7.78705C10.0831 7.78705 10.0831 7.78705 10.0831 7.78706C10.0831 7.78706 10.0831 7.78706 10.0831 7.78707C10.0831 7.78707 10.0831 7.78707 10.0831 7.78708C10.0831 7.78708 10.0831 7.78709 10.0831 7.78709C10.0831 7.78709 10.0831 7.7871 10.0831 7.7871C10.0831 7.7871 10.0831 7.78711 10.0831 7.78711C10.0831 7.78711 10.0831 7.78712 10.0831 7.78712C10.0831 7.78712 10.0831 7.78713 10.0831 7.78713C10.0831 7.78714 10.0831 7.78714 10.0831 7.78714C10.0831 7.78715 10.0831 7.78715 10.0831 7.78715C10.0831 7.78716 10.0831 7.78716 10.0831 7.78716C10.0831 7.78717 10.0831 7.78717 10.0831 7.78717C10.0831 7.78718 10.0831 7.78718 10.0831 7.78719C10.0831 7.78719 10.0831 7.78719 10.0831 7.7872C10.0831 7.7872 10.0831 7.7872 10.0831 7.78721C10.0831 7.78721 10.0831 7.78721 10.0831 7.78722C10.0831 7.78722 10.0831 7.78723 10.0831 7.78723C10.0831 7.78723 10.0831 7.78724 10.0831 7.78724C10.0831 7.78724 10.0831 7.78725 10.0831 7.78725C10.0831 7.78725 10.0831 7.78726 10.0831 7.78726C10.0831 7.78726 10.0831 7.78727 10.0831 7.78727C10.0831 7.78728 10.0831 7.78728 10.0831 7.78728C10.0831 7.78729 10.0831 7.78729 10.0831 7.78729C10.0831 7.7873 10.0831 7.7873 10.0831 7.7873C10.0831 7.78731 10.0831 7.78731 10.0831 7.78732C10.0831 7.78732 10.0831 7.78732 10.0831 7.78733C10.0831 7.78733 10.0831 7.78733 10.0831 7.78734C10.0831 7.78734 10.0831 7.78734 10.0831 7.78735C10.0831 7.78735 10.0831 7.78735 10.0831 7.78736C10.0831 7.78736 10.0831 7.78737 10.0831 7.78737C10.0831 7.78737 10.0831 7.78738 10.0831 7.78738C10.0831 7.78738 10.0831 7.78739 10.0831 7.78739C10.0831 7.7874 10.0831 7.7874 10.0831 7.7874C10.0831 7.78741 10.0831 7.78741 10.0831 7.78741C10.0831 7.78742 10.0831 7.78742 10.0831 7.78742C10.0831 7.78743 10.0831 7.78743 10.0831 7.78744C10.0831 7.78744 10.0831 7.78744 10.0831 7.78745C10.0831 7.78745 10.0831 7.78745 10.0831 7.78746C10.0831 7.78746 10.0831 7.78746 10.0831 7.78747C10.0831 7.78747 10.0831 7.78748 10.0831 7.78748C10.0831 7.78748 10.0831 7.78749 10.0831 7.78749C10.0831 7.78749 10.0831 7.7875 10.0831 7.7875C10.0831 7.7875 10.0831 7.78751 10.0831 7.78751C10.0831 7.78752 10.0831 7.78752 10.0831 7.78752C10.0831 7.78753 10.0831 7.78753 10.0831 7.78753H10.4831C10.4831 7.78753 10.4831 7.78753 10.4831 7.78752C10.4831 7.78752 10.4831 7.78752 10.4831 7.78751C10.4831 7.78751 10.4831 7.7875 10.4831 7.7875C10.4831 7.7875 10.4831 7.78749 10.4831 7.78749C10.4831 7.78749 10.4831 7.78748 10.4831 7.78748C10.4831 7.78748 10.4831 7.78747 10.4831 7.78747C10.4831 7.78746 10.4831 7.78746 10.4831 7.78746C10.4831 7.78745 10.4831 7.78745 10.4831 7.78745C10.4831 7.78744 10.4831 7.78744 10.4831 7.78744C10.4831 7.78743 10.4831 7.78743 10.4831 7.78742C10.4831 7.78742 10.4831 7.78742 10.4831 7.78741C10.4831 7.78741 10.4831 7.78741 10.4831 7.7874C10.4831 7.7874 10.4831 7.7874 10.4831 7.78739C10.4831 7.78739 10.4831 7.78738 10.4831 7.78738C10.4831 7.78738 10.4831 7.78737 10.4831 7.78737C10.4831 7.78737 10.4831 7.78736 10.4831 7.78736C10.4831 7.78735 10.4831 7.78735 10.4831 7.78735C10.4831 7.78734 10.4831 7.78734 10.4831 7.78734C10.4831 7.78733 10.4831 7.78733 10.4831 7.78733C10.4831 7.78732 10.4831 7.78732 10.4831 7.78732C10.4831 7.78731 10.4831 7.78731 10.4831 7.7873C10.4831 7.7873 10.4831 7.7873 10.4831 7.78729C10.4831 7.78729 10.4831 7.78729 10.4831 7.78728C10.4831 7.78728 10.4831 7.78728 10.4831 7.78727C10.4831 7.78727 10.4831 7.78726 10.4831 7.78726C10.4831 7.78726 10.4831 7.78725 10.4831 7.78725C10.4831 7.78725 10.4831 7.78724 10.4831 7.78724C10.4831 7.78724 10.4831 7.78723 10.4831 7.78723C10.4831 7.78723 10.4831 7.78722 10.4831 7.78722C10.4831 7.78721 10.4831 7.78721 10.4831 7.78721C10.4831 7.7872 10.4831 7.7872 10.4831 7.7872C10.4831 7.78719 10.4831 7.78719 10.4831 7.78719C10.4831 7.78718 10.4831 7.78718 10.4831 7.78717C10.4831 7.78717 10.4831 7.78717 10.4831 7.78716C10.4831 7.78716 10.4831 7.78716 10.4831 7.78715C10.4831 7.78715 10.4831 7.78715 10.4831 7.78714C10.4831 7.78714 10.4831 7.78714 10.4831 7.78713C10.4831 7.78713 10.4831 7.78712 10.4831 7.78712C10.4831 7.78712 10.4831 7.78711 10.4831 7.78711C10.4831 7.78711 10.4831 7.7871 10.4831 7.7871C10.4831 7.7871 10.4831 7.78709 10.4831 7.78709C10.4831 7.78709 10.4831 7.78708 10.4831 7.78708C10.4831 7.78707 10.4831 7.78707 10.4831 7.78707C10.4831 7.78706 10.4831 7.78706 10.4831 7.78706C10.4831 7.78705 10.4831 7.78705 10.4831 7.78705C10.4831 7.78704 10.4831 7.78704 10.4831 7.78704C10.4831 7.78703 10.4831 7.78703 10.4831 7.78702C10.4831 7.78702 10.4831 7.78702 10.4831 7.78701C10.4831 7.78701 10.4831 7.78701 10.4831 7.787C10.4831 7.787 10.4831 7.787 10.4831 7.78699C10.4831 7.78699 10.4831 7.78699 10.4831 7.78698C10.4831 7.78698 10.4831 7.78697 10.4831 7.78697C10.4831 7.78697 10.4831 7.78696 10.4831 7.78696C10.4831 7.78696 10.4831 7.78695 10.4831 7.78695C10.4831 7.78695 10.4831 7.78694 10.4831 7.78694C10.4831 7.78694 10.4831 7.78693 10.4831 7.78693C10.4831 7.78693 10.4831 7.78692 10.4831 7.78692C10.4831 7.78691 10.4831 7.78691 10.4831 7.78691C10.4831 7.7869 10.4831 7.7869 10.4831 7.7869C10.4831 7.78689 10.4831 7.78689 10.4831 7.78689C10.4831 7.78688 10.4831 7.78688 10.4831 7.78688C10.4831 7.78687 10.4831 7.78687 10.4831 7.78686C10.4831 7.78686 10.4831 7.78686 10.4831 7.78685C10.4831 7.78685 10.4831 7.78685 10.4831 7.78684C10.4831 7.78684 10.4831 7.78684 10.4831 7.78683C10.4831 7.78683 10.4831 7.78683 10.4831 7.78682C10.4831 7.78682 10.4831 7.78682 10.4831 7.78681C10.4831 7.78681 10.4831 7.78681 10.4831 7.7868C10.4831 7.7868 10.4831 7.78679 10.4831 7.78679C10.4831 7.78679 10.4831 7.78678 10.4831 7.78678C10.4831 7.78678 10.4831 7.78677 10.4831 7.78677C10.4831 7.78677 10.4831 7.78676 10.4831 7.78676C10.4831 7.78676 10.4831 7.78675 10.4831 7.78675C10.4831 7.78675 10.4831 7.78674 10.4831 7.78674C10.4831 7.78673 10.4831 7.78673 10.4831 7.78673C10.4831 7.78672 10.4831 7.78672 10.4831 7.78672C10.4831 7.78671 10.4831 7.78671 10.4831 7.78671C10.4831 7.7867 10.4831 7.7867 10.4831 7.7867C10.4831 7.78669 10.4831 7.78669 10.4831 7.78669C10.4831 7.78668 10.4831 7.78668 10.4831 7.78667C10.4831 7.78667 10.4831 7.78667 10.4831 7.78666C10.4831 7.78666 10.4831 7.78666 10.4831 7.78665C10.4831 7.78665 10.4831 7.78665 10.4831 7.78664C10.4831 7.78664 10.4831 7.78664 10.4831 7.78663C10.4831 7.78663 10.4831 7.78663 10.4831 7.78662C10.4831 7.78662 10.4831 7.78662 10.4831 7.78661C10.4831 7.78661 10.4831 7.7866 10.4831 7.7866C10.4831 7.7866 10.4831 7.78659 10.4831 7.78659C10.4831 7.78659 10.4831 7.78658 10.4831 7.78658C10.4831 7.78658 10.4831 7.78657 10.4831 7.78657C10.4831 7.78657 10.4831 7.78656 10.4831 7.78656C10.4831 7.78656 10.4831 7.78655 10.4831 7.78655C10.4831 7.78655 10.4831 7.78654 10.4831 7.78654C10.4831 7.78654 10.4831 7.78653 10.4831 7.78653C10.4831 7.78652 10.4831 7.78652 10.4831 7.78652C10.4831 7.78651 10.4831 7.78651 10.4831 7.78651C10.4831 7.7865 10.4831 7.7865 10.4831 7.7865C10.4831 7.78649 10.4831 7.78649 10.4831 7.78649C10.4831 7.78648 10.4831 7.78648 10.4831 7.78648C10.4831 7.78647 10.4831 7.78647 10.4831 7.78647C10.4831 7.78646 10.4831 7.78646 10.4831 7.78646C10.4831 7.78645 10.4831 7.78645 10.4831 7.78645C10.4831 7.78644 10.4831 7.78644 10.4831 7.78643C10.4831 7.78643 10.4831 7.78643 10.4831 7.78642C10.4831 7.78642 10.4831 7.78642 10.4831 7.78641C10.4831 7.78641 10.4831 7.78641 10.4831 7.7864C10.4831 7.7864 10.4831 7.7864 10.4831 7.78639C10.4831 7.78639 10.4831 7.78639 10.4831 7.78638C10.4831 7.78638 10.4831 7.78638 10.4831 7.78637C10.4831 7.78637 10.4831 7.78637 10.4831 7.78636C10.4831 7.78636 10.4831 7.78636 10.4831 7.78635C10.4831 7.78635 10.4831 7.78634 10.4831 7.78634C10.4831 7.78634 10.4831 7.78633 10.4831 7.78633C10.4831 7.78633 10.4831 7.78632 10.4831 7.78632C10.4831 7.78632 10.4831 7.78631 10.4831 7.78631C10.4831 7.78631 10.4831 7.7863 10.4831 7.7863C10.4831 7.7863 10.4831 7.78629 10.4831 7.78629C10.4831 7.78629 10.4831 7.78628 10.4831 7.78628C10.4831 7.78628 10.4831 7.78627 10.4831 7.78627C10.4831 7.78627 10.4831 7.78626 10.4831 7.78626C10.4831 7.78625 10.4831 7.78625 10.4831 7.78625C10.4831 7.78624 10.4831 7.78624 10.4831 7.78624C10.4831 7.78623 10.4831 7.78623 10.4831 7.78623C10.4831 7.78622 10.4831 7.78622 10.4831 7.78622C10.4831 7.78621 10.4831 7.78621 10.4831 7.78621C10.4831 7.7862 10.4831 7.7862 10.4831 7.7862C10.4831 7.78619 10.4831 7.78619 10.4831 7.78619C10.4831 7.78618 10.4831 7.78618 10.4831 7.78618C10.4831 7.78617 10.4831 7.78617 10.4831 7.78617C10.4831 7.78616 10.4831 7.78616 10.4831 7.78616C10.4831 7.78615 10.4831 7.78615 10.4831 7.78614C10.4831 7.78614 10.4831 7.78614 10.4831 7.78613C10.4831 7.78613 10.4831 7.78613 10.4831 7.78612C10.4831 7.78612 10.4831 7.78612 10.4831 7.78611C10.4831 7.78611 10.4831 7.78611 10.4831 7.7861C10.4831 7.7861 10.4831 7.7861 10.4831 7.78609C10.4831 7.78609 10.4831 7.78609 10.4831 7.78608C10.4831 7.78608 10.4831 7.78608 10.4831 7.78607C10.4831 7.78607 10.4831 7.78607 10.4831 7.78606C10.4831 7.78606 10.4831 7.78606 10.4831 7.78605C10.4831 7.78605 10.4831 7.78605 10.4831 7.78604C10.4831 7.78604 10.4831 7.78604 10.4831 7.78603C10.4831 7.78603 10.4831 7.78603 10.4831 7.78602C10.4831 7.78602 10.4831 7.78602 10.4831 7.78601C10.4831 7.78601 10.4831 7.786 10.4831 7.786C10.4831 7.786 10.4831 7.78599 10.4831 7.78599C10.4831 7.78599 10.4831 7.78598 10.4831 7.78598C10.4831 7.78598 10.4831 7.78597 10.4831 7.78597C10.4831 7.78597 10.4831 7.78596 10.4831 7.78596C10.4831 7.78596 10.4831 7.78595 10.4831 7.78595C10.4831 7.78595 10.4831 7.78594 10.4831 7.78594C10.4831 7.78594 10.4831 7.78593 10.4831 7.78593C10.4831 7.78593 10.4831 7.78592 10.4831 7.78592C10.4831 7.78592 10.4831 7.78591 10.4831 7.78591C10.4831 7.78591 10.4831 7.7859 10.4831 7.7859C10.4831 7.7859 10.4831 7.78589 10.4831 7.78589C10.4831 7.78589 10.4831 7.78588 10.4831 7.78588C10.4831 7.78587 10.4831 7.78587 10.4831 7.78587C10.4831 7.78586 10.4831 7.78586 10.4831 7.78586C10.4831 7.78585 10.4831 7.78585 10.4831 7.78585C10.4831 7.78584 10.4831 7.78584 10.4831 7.78584C10.4831 7.78583 10.4831 7.78583 10.4831 7.78583C10.4831 7.78582 10.4831 7.78582 10.4831 7.78582C10.4831 7.78581 10.4831 7.78581 10.4831 7.78581C10.4831 7.7858 10.4831 7.7858 10.4831 7.7858C10.4831 7.78579 10.4831 7.78579 10.4831 7.78579C10.4831 7.78578 10.4831 7.78578 10.4831 7.78578C10.4831 7.78577 10.4831 7.78577 10.4831 7.78577C10.4831 7.78576 10.4831 7.78576 10.4831 7.78576C10.4831 7.78575 10.4831 7.78575 10.4831 7.78575C10.4831 7.78574 10.4831 7.78574 10.4831 7.78574C10.4831 7.78573 10.4831 7.78573 10.4831 7.78573C10.4831 7.78572 10.4831 7.78572 10.4831 7.78572C10.4831 7.78571 10.4831 7.78571 10.4831 7.78571C10.4831 7.7857 10.4831 7.7857 10.4831 7.7857C10.4831 7.78569 10.4831 7.78569 10.4831 7.78569C10.4831 7.78568 10.4831 7.78568 10.4831 7.78567C10.4831 7.78567 10.4831 7.78567 10.4831 7.78566C10.4831 7.78566 10.4831 7.78566 10.4831 7.78565C10.4831 7.78565 10.4831 7.78565 10.4831 7.78564C10.4831 7.78564 10.4831 7.78564 10.4831 7.78563C10.4831 7.78563 10.4831 7.78563 10.4831 7.78562C10.4831 7.78562 10.4831 7.78562 10.4831 7.78561C10.4831 7.78561 10.4831 7.78561 10.4831 7.7856C10.4831 7.7856 10.4831 7.7856 10.4831 7.78559C10.4831 7.78559 10.4831 7.78559 10.4831 7.78558C10.4831 7.78558 10.4831 7.78558 10.4831 7.78557C10.4831 7.78557 10.4831 7.78557 10.4831 7.78556C10.4831 7.78556 10.4831 7.78556 10.4831 7.78555C10.4831 7.78555 10.4831 7.78555 10.4831 7.78554C10.4831 7.78554 10.4831 7.78554 10.4831 7.78553C10.4831 7.78553 10.4831 7.78553 10.4831 7.78552C10.4831 7.78552 10.4831 7.78552 10.4831 7.78551C10.4831 7.78551 10.4831 7.78551 10.4831 7.7855C10.4831 7.7855 10.4831 7.7855 10.4831 7.78549C10.4831 7.78549 10.4831 7.78549 10.4831 7.78548C10.4831 7.78548 10.4831 7.78548 10.4831 7.78547C10.4831 7.78547 10.4831 7.78547 10.4831 7.78546C10.4831 7.78546 10.4831 7.78546 10.4831 7.78545C10.4831 7.78545 10.4831 7.78544 10.4831 7.78544C10.4831 7.78544 10.4831 7.78543 10.4831 7.78543C10.4831 7.78543 10.4831 7.78542 10.4831 7.78542C10.4831 7.78542 10.4831 7.78541 10.4831 7.78541C10.4831 7.78541 10.4831 7.7854 10.4831 7.7854C10.4831 7.7854 10.4831 7.78539 10.4831 7.78539C10.4831 7.78539 10.4831 7.78538 10.4831 7.78538C10.4831 7.78538 10.4831 7.78537 10.4831 7.78537C10.4831 7.78537 10.4831 7.78536 10.4831 7.78536C10.4831 7.78536 10.4831 7.78535 10.4831 7.78535C10.4831 7.78535 10.4831 7.78534 10.4831 7.78534C10.4831 7.78534 10.4831 7.78533 10.4831 7.78533C10.4831 7.78533 10.4831 7.78532 10.4831 7.78532C10.4831 7.78532 10.4831 7.78531 10.4831 7.78531C10.4831 7.78531 10.4831 7.7853 10.4831 7.7853C10.4831 7.7853 10.4831 7.78529 10.4831 7.78529C10.4831 7.78529 10.4831 7.78528 10.4831 7.78528C10.4831 7.78528 10.4831 7.78527 10.4831 7.78527C10.4831 7.78527 10.4831 7.78526 10.4831 7.78526C10.4831 7.78526 10.4831 7.78525 10.4831 7.78525C10.4831 7.78525 10.4831 7.78524 10.4831 7.78524C10.4831 7.78524 10.4831 7.78523 10.4831 7.78523C10.4831 7.78523 10.4831 7.78522 10.4831 7.78522C10.4831 7.78522 10.4831 7.78521 10.4831 7.78521C10.4831 7.78521 10.4831 7.7852 10.4831 7.7852C10.4831 7.7852 10.4831 7.78519 10.4831 7.78519C10.4831 7.78519 10.4831 7.78518 10.4831 7.78518C10.4831 7.78518 10.4831 7.78517 10.4831 7.78517C10.4831 7.78517 10.4831 7.78516 10.4831 7.78516C10.4831 7.78516 10.4831 7.78515 10.4831 7.78515C10.4831 7.78515 10.4831 7.78514 10.4831 7.78514C10.4831 7.78514 10.4831 7.78513 10.4831 7.78513C10.4831 7.78513 10.4831 7.78512 10.4831 7.78512C10.4831 7.78512 10.4831 7.78511 10.4831 7.78511C10.4831 7.78511 10.4831 7.7851 10.4831 7.7851C10.4831 7.78509 10.4831 7.78509 10.4831 7.78509C10.4831 7.78508 10.4831 7.78508 10.4831 7.78508C10.4831 7.78507 10.4831 7.78507 10.4831 7.78507C10.4831 7.78506 10.4831 7.78506 10.4831 7.78506C10.4831 7.78505 10.4831 7.78505 10.4831 7.78505C10.4831 7.78504 10.4831 7.78504 10.4831 7.78504C10.4831 7.78503 10.4831 7.78503 10.4831 7.78503C10.4831 7.78502 10.4831 7.78502 10.4831 7.78502C10.4831 7.78501 10.4831 7.78501 10.4831 7.78501C10.4831 7.785 10.4831 7.785 10.4831 7.785C10.4831 7.78499 10.4831 7.78499 10.4831 7.78499C10.4831 7.78498 10.4831 7.78498 10.4831 7.78498C10.4831 7.78497 10.4831 7.78497 10.4831 7.78497C10.4831 7.78496 10.4831 7.78496 10.4831 7.78496C10.4831 7.78495 10.4831 7.78495 10.4831 7.78495C10.4831 7.78494 10.4831 7.78494 10.4831 7.78494C10.4831 7.78493 10.4831 7.78493 10.4831 7.78493C10.4831 7.78492 10.4831 7.78492 10.4831 7.78492C10.4831 7.78491 10.4831 7.78491 10.4831 7.78491C10.4831 7.7849 10.4831 7.7849 10.4831 7.7849C10.4831 7.78489 10.4831 7.78489 10.4831 7.78489C10.4831 7.78488 10.4831 7.78488 10.4831 7.78488C10.4831 7.78487 10.4831 7.78487 10.4831 7.78487C10.4831 7.78486 10.4831 7.78486 10.4831 7.78486C10.4831 7.78485 10.4831 7.78485 10.4831 7.78485C10.4831 7.78484 10.4831 7.78484 10.4831 7.78484C10.4831 7.78483 10.4831 7.78483 10.4831 7.78483C10.4831 7.78482 10.4831 7.78482 10.4831 7.78482C10.4831 7.78481 10.4831 7.78481 10.4831 7.78481C10.4831 7.7848 10.4831 7.7848 10.4831 7.7848C10.4831 7.78479 10.4831 7.78479 10.4831 7.78479C10.4831 7.78478 10.4831 7.78478 10.4831 7.78478C10.4831 7.78477 10.4831 7.78477 10.4831 7.78477C10.4831 7.78476 10.4831 7.78476 10.4831 7.78476C10.4831 7.78475 10.4831 7.78475 10.4831 7.78475C10.4831 7.78474 10.4831 7.78474 10.4831 7.78474C10.4831 7.78473 10.4831 7.78473 10.4831 7.78473C10.4831 7.78472 10.4831 7.78472 10.4831 7.78472C10.4831 7.78471 10.4831 7.78471 10.4831 7.78471C10.4831 7.7847 10.4831 7.7847 10.4831 7.7847C10.4831 7.78469 10.4831 7.78469 10.4831 7.78469C10.4831 7.78468 10.4831 7.78468 10.4831 7.78468C10.4831 7.78467 10.4831 7.78467 10.4831 7.78467C10.4831 7.78466 10.4831 7.78466 10.4831 7.78466C10.4831 7.78465 10.4831 7.78465 10.4831 7.78465C10.4831 7.78464 10.4831 7.78464 10.4831 7.78463C10.4831 7.78463 10.4831 7.78463 10.4831 7.78462C10.4831 7.78462 10.4831 7.78462 10.4831 7.78461C10.4831 7.78461 10.4831 7.78461 10.4831 7.7846C10.4831 7.7846 10.4831 7.7846 10.4831 7.78459C10.4831 7.78459 10.4831 7.78459 10.4831 7.78458C10.4831 7.78458 10.4831 7.78458 10.4831 7.78457C10.4831 7.78457 10.4831 7.78457 10.4831 7.78456C10.4831 7.78456 10.4831 7.78456 10.4831 7.78455C10.4831 7.78455 10.4831 7.78455 10.4831 7.78454C10.4831 7.78454 10.4831 7.78454 10.4831 7.78453C10.4831 7.78453 10.4831 7.78453 10.4831 7.78452C10.4831 7.78452 10.4831 7.78452 10.4831 7.78451C10.4831 7.78451 10.4831 7.78451 10.4831 7.7845C10.4831 7.7845 10.4831 7.7845 10.4831 7.78449C10.4831 7.78449 10.4831 7.78449 10.4831 7.78448C10.4831 7.78448 10.4831 7.78448 10.4831 7.78447C10.4831 7.78447 10.4831 7.78447 10.4831 7.78446C10.4831 7.78446 10.4831 7.78446 10.4831 7.78445C10.4831 7.78445 10.4831 7.78445 10.4831 7.78444C10.4831 7.78444 10.4831 7.78444 10.4831 7.78443C10.4831 7.78443 10.4831 7.78443 10.4831 7.78442C10.4831 7.78442 10.4831 7.78442 10.4831 7.78441C10.4831 7.78441 10.4831 7.78441 10.4831 7.7844C10.4831 7.7844 10.4831 7.7844 10.4831 7.78439C10.4831 7.78439 10.4831 7.78439 10.4831 7.78438C10.4831 7.78438 10.4831 7.78438 10.4831 7.78437C10.4831 7.78437 10.4831 7.78437 10.4831 7.78436C10.4831 7.78436 10.4831 7.78436 10.4831 7.78435C10.4831 7.78435 10.4831 7.78435 10.4831 7.78434C10.4831 7.78434 10.4831 7.78434 10.4831 7.78433C10.4831 7.78433 10.4831 7.78433 10.4831 7.78432C10.4831 7.78432 10.4831 7.78432 10.4831 7.78431C10.4831 7.78431 10.4831 7.78431 10.4831 7.7843C10.4831 7.7843 10.4831 7.78429 10.4831 7.78429C10.4831 7.78429 10.4831 7.78428 10.4831 7.78428C10.4831 7.78428 10.4831 7.78427 10.4831 7.78427C10.4831 7.78427 10.4831 7.78426 10.4831 7.78426C10.4831 7.78426 10.4831 7.78425 10.4831 7.78425C10.4831 7.78425 10.4831 7.78424 10.4831 7.78424C10.4831 7.78424 10.4831 7.78423 10.4831 7.78423C10.4831 7.78423 10.4831 7.78422 10.4831 7.78422C10.4831 7.78422 10.4831 7.78421 10.4831 7.78421C10.4831 7.78421 10.4831 7.7842 10.4831 7.7842C10.4831 7.7842 10.4831 7.78419 10.4831 7.78419C10.4831 7.78419 10.4831 7.78418 10.4831 7.78418C10.4831 7.78418 10.4831 7.78417 10.4831 7.78417C10.4831 7.78417 10.4831 7.78416 10.4831 7.78416C10.4831 7.78416 10.4831 7.78415 10.4831 7.78415C10.4831 7.78415 10.4831 7.78414 10.4831 7.78414C10.4831 7.78414 10.4831 7.78413 10.4831 7.78413C10.4831 7.78413 10.4831 7.78412 10.4831 7.78412C10.4831 7.78412 10.4831 7.78411 10.4831 7.78411C10.4831 7.78411 10.4831 7.7841 10.4831 7.7841C10.4831 7.7841 10.4831 7.78409 10.4831 7.78409C10.4831 7.78409 10.4831 7.78408 10.4831 7.78408C10.4831 7.78408 10.4831 7.78407 10.4831 7.78407C10.4831 7.78406 10.4831 7.78406 10.4831 7.78406C10.4831 7.78405 10.4831 7.78405 10.4831 7.78405C10.4831 7.78404 10.4831 7.78404 10.4831 7.78404C10.4831 7.78403 10.4831 7.78403 10.4831 7.78403C10.4831 7.78402 10.4831 7.78402 10.4831 7.78402C10.4831 7.78401 10.4831 7.78401 10.4831 7.78401C10.4831 7.784 10.4831 7.784 10.4831 7.784C10.4831 7.78399 10.4831 7.78399 10.4831 7.78399C10.4831 7.78398 10.4831 7.78398 10.4831 7.78398C10.4831 7.78397 10.4831 7.78397 10.4831 7.78397C10.4831 7.78396 10.4831 7.78396 10.4831 7.78396C10.4831 7.78395 10.4831 7.78395 10.4831 7.78395C10.4831 7.78394 10.4831 7.78394 10.4831 7.78394C10.4831 7.78393 10.4831 7.78393 10.4831 7.78393C10.4831 7.78392 10.4831 7.78392 10.4831 7.78392C10.4831 7.78391 10.4831 7.78391 10.4831 7.78391C10.4831 7.7839 10.4831 7.7839 10.4831 7.7839C10.4831 7.78389 10.4831 7.78389 10.4831 7.78389C10.4831 7.78388 10.4831 7.78388 10.4831 7.78387C10.4831 7.78387 10.4831 7.78387 10.4831 7.78386C10.4831 7.78386 10.4831 7.78386 10.4831 7.78385C10.4831 7.78385 10.4831 7.78385 10.4831 7.78384C10.4831 7.78384 10.4831 7.78384 10.4831 7.78383C10.4831 7.78383 10.4831 7.78383 10.4831 7.78382C10.4831 7.78382 10.4831 7.78382 10.4831 7.78381C10.4831 7.78381 10.4831 7.78381 10.4831 7.7838C10.4831 7.7838 10.4831 7.7838 10.4831 7.78379C10.4831 7.78379 10.4831 7.78379 10.4831 7.78378C10.4831 7.78378 10.4831 7.78378 10.4831 7.78377C10.4831 7.78377 10.4831 7.78377 10.4831 7.78376C10.4831 7.78376 10.4831 7.78376 10.4831 7.78375C10.4831 7.78375 10.4831 7.78375 10.4831 7.78374C10.4831 7.78374 10.4831 7.78373 10.4831 7.78373C10.4831 7.78373 10.4831 7.78372 10.4831 7.78372C10.4831 7.78372 10.4831 7.78371 10.4831 7.78371C10.4831 7.78371 10.4831 7.7837 10.4831 7.7837C10.4831 7.7837 10.4831 7.78369 10.4831 7.78369C10.4831 7.78369 10.4831 7.78368 10.4831 7.78368C10.4831 7.78368 10.4831 7.78367 10.4831 7.78367C10.4831 7.78367 10.4831 7.78366 10.4831 7.78366C10.4831 7.78366 10.4831 7.78365 10.4831 7.78365C10.4831 7.78365 10.4831 7.78364 10.4831 7.78364C10.4831 7.78364 10.4831 7.78363 10.4831 7.78363C10.4831 7.78363 10.4831 7.78362 10.4831 7.78362C10.4831 7.78362 10.4831 7.78361 10.4831 7.78361C10.4831 7.78361 10.4831 7.7836 10.4831 7.7836C10.4831 7.78359 10.4831 7.78359 10.4831 7.78359C10.4831 7.78358 10.4831 7.78358 10.4831 7.78358C10.4831 7.78357 10.4831 7.78357 10.4831 7.78357C10.4831 7.78356 10.4831 7.78356 10.4831 7.78356C10.4831 7.78355 10.4831 7.78355 10.4831 7.78355C10.4831 7.78354 10.4831 7.78354 10.4831 7.78354C10.4831 7.78353 10.4831 7.78353 10.4831 7.78353C10.4831 7.78352 10.4831 7.78352 10.4831 7.78352C10.4831 7.78351 10.4831 7.78351 10.4831 7.7835C10.4831 7.7835 10.4831 7.7835 10.4831 7.78349C10.4831 7.78349 10.4831 7.78349 10.4831 7.78348C10.4831 7.78348 10.4831 7.78348 10.4831 7.78347C10.4831 7.78347 10.4831 7.78347 10.4831 7.78346C10.4831 7.78346 10.4831 7.78346 10.4831 7.78345C10.4831 7.78345 10.4831 7.78345 10.4831 7.78344C10.4831 7.78344 10.4831 7.78344 10.4831 7.78343C10.4831 7.78343 10.4831 7.78343 10.4831 7.78342C10.4831 7.78342 10.4831 7.78342 10.4831 7.78341C10.4831 7.78341 10.4831 7.78341 10.4831 7.7834C10.4831 7.7834 10.4831 7.78339 10.4831 7.78339C10.4831 7.78339 10.4831 7.78338 10.4831 7.78338C10.4831 7.78338 10.4831 7.78337 10.4831 7.78337C10.4831 7.78337 10.4831 7.78336 10.4831 7.78336C10.4831 7.78336 10.4831 7.78335 10.4831 7.78335C10.4831 7.78335 10.4831 7.78334 10.4831 7.78334C10.4831 7.78334 10.4831 7.78333 10.4831 7.78333C10.4831 7.78333 10.4831 7.78332 10.4831 7.78332C10.4831 7.78332 10.4831 7.78331 10.4831 7.78331C10.4831 7.7833 10.4831 7.7833 10.4831 7.7833C10.4831 7.78329 10.4831 7.78329 10.4831 7.78329C10.4831 7.78328 10.4831 7.78328 10.4831 7.78328C10.4831 7.78327 10.4831 7.78327 10.4831 7.78327C10.4831 7.78326 10.4831 7.78326 10.4831 7.78326C10.4831 7.78325 10.4831 7.78325 10.4831 7.78325C10.4831 7.78324 10.4831 7.78324 10.4831 7.78324C10.4831 7.78323 10.4831 7.78323 10.4831 7.78323C10.4831 7.78322 10.4831 7.78322 10.4831 7.78321C10.4831 7.78321 10.4831 7.78321 10.4831 7.7832C10.4831 7.7832 10.4831 7.7832 10.4831 7.78319C10.4831 7.78319 10.4831 7.78319 10.4831 7.78318C10.4831 7.78318 10.4831 7.78318 10.4831 7.78317C10.4831 7.78317 10.4831 7.78317 10.4831 7.78316C10.4831 7.78316 10.4831 7.78315 10.4831 7.78315C10.4831 7.78315 10.4831 7.78314 10.4831 7.78314C10.4831 7.78314 10.4831 7.78313 10.4831 7.78313C10.4831 7.78313 10.4831 7.78312 10.4831 7.78312C10.4831 7.78312 10.4831 7.78311 10.4831 7.78311C10.4831 7.78311 10.4831 7.7831 10.4831 7.7831C10.4831 7.7831 10.4831 7.78309 10.4831 7.78309C10.4831 7.78309 10.4831 7.78308 10.4831 7.78308C10.4831 7.78307 10.4831 7.78307 10.4831 7.78307C10.4831 7.78306 10.4831 7.78306 10.4831 7.78306C10.4831 7.78305 10.4831 7.78305 10.4831 7.78305C10.4831 7.78304 10.4831 7.78304 10.4831 7.78304C10.4831 7.78303 10.4831 7.78303 10.4831 7.78303C10.4831 7.78302 10.4831 7.78302 10.4831 7.78302C10.4831 7.78301 10.4831 7.78301 10.4831 7.783C10.4831 7.783 10.4831 7.783 10.4831 7.78299C10.4831 7.78299 10.4831 7.78299 10.4831 7.78298C10.4831 7.78298 10.4831 7.78298 10.4831 7.78297C10.4831 7.78297 10.4831 7.78297 10.4831 7.78296C10.4831 7.78296 10.4831 7.78296 10.4831 7.78295C10.4831 7.78295 10.4831 7.78294 10.4831 7.78294C10.4831 7.78294 10.4831 7.78293 10.4831 7.78293C10.4831 7.78293 10.4831 7.78292 10.4831 7.78292C10.4831 7.78292 10.4831 7.78291 10.4831 7.78291C10.4831 7.78291 10.4831 7.7829 10.4831 7.7829C10.4831 7.7829 10.4831 7.78289 10.4831 7.78289C10.4831 7.78288 10.4831 7.78288 10.4831 7.78288C10.4831 7.78287 10.4831 7.78287 10.4831 7.78287C10.4831 7.78286 10.4831 7.78286 10.4831 7.78286C10.4831 7.78285 10.4831 7.78285 10.4831 7.78285C10.4831 7.78284 10.4831 7.78284 10.4831 7.78284C10.4831 7.78283 10.4831 7.78283 10.4831 7.78282C10.4831 7.78282 10.4831 7.78282 10.4831 7.78281C10.4831 7.78281 10.4831 7.78281 10.4831 7.7828C10.4831 7.7828 10.4831 7.7828 10.4831 7.78279C10.4831 7.78279 10.4831 7.78279 10.4831 7.78278C10.4831 7.78278 10.4831 7.78277 10.4831 7.78277C10.4831 7.78277 10.4831 7.78276 10.4831 7.78276C10.4831 7.78276 10.4831 7.78275 10.4831 7.78275C10.4831 7.78275 10.4831 7.78274 10.4831 7.78274C10.4831 7.78274 10.4831 7.78273 10.4831 7.78273C10.4831 7.78273 10.4831 7.78272 10.4831 7.78272C10.4831 7.78271 10.4831 7.78271 10.4831 7.78271C10.4831 7.7827 10.4831 7.7827 10.4831 7.7827C10.4831 7.78269 10.4831 7.78269 10.4831 7.78269C10.4831 7.78268 10.4831 7.78268 10.4831 7.78268C10.4831 7.78267 10.4831 7.78267 10.4831 7.78266C10.4831 7.78266 10.4831 7.78266 10.4831 7.78265C10.4831 7.78265 10.4831 7.78265 10.4831 7.78264C10.4831 7.78264 10.4831 7.78264 10.4831 7.78263C10.4831 7.78263 10.4831 7.78263 10.4831 7.78262C10.4831 7.78262 10.4831 7.78261 10.4831 7.78261C10.4831 7.78261 10.4831 7.7826 10.4831 7.7826C10.4831 7.7826 10.4831 7.78259 10.4831 7.78259C10.4831 7.78259 10.4831 7.78258 10.4831 7.78258C10.4831 7.78258 10.4831 7.78257 10.4831 7.78257C10.4831 7.78256 10.4831 7.78256 10.4831 7.78256C10.4831 7.78255 10.4831 7.78255 10.4831 7.78255C10.4831 7.78254 10.4831 7.78254 10.4831 7.78254C10.4831 7.78253 10.4831 7.78253 10.4831 7.78252C10.4831 7.78252 10.4831 7.78252 10.4831 7.78251C10.4831 7.78251 10.4831 7.78251 10.4831 7.7825C10.4831 7.7825 10.4831 7.7825 10.4831 7.78249C10.4831 7.78249 10.4831 7.78249 10.4831 7.78248C10.4831 7.78248 10.4831 7.78247 10.4831 7.78247C10.4831 7.78247 10.4831 7.78246 10.4831 7.78246C10.4831 7.78246 10.4831 7.78245 10.4831 7.78245C10.4831 7.78245 10.4831 7.78244 10.4831 7.78244C10.4831 7.78243 10.4831 7.78243 10.4831 7.78243C10.4831 7.78242 10.4831 7.78242 10.4831 7.78242C10.4831 7.78241 10.4831 7.78241 10.4831 7.78241C10.4831 7.7824 10.4831 7.7824 10.4831 7.78239C10.4831 7.78239 10.4831 7.78239 10.4831 7.78238C10.4831 7.78238 10.4831 7.78238 10.4831 7.78237C10.4831 7.78237 10.4831 7.78237 10.4831 7.78236C10.4831 7.78236 10.4831 7.78235 10.4831 7.78235C10.4831 7.78235 10.4831 7.78234 10.4831 7.78234C10.4831 7.78234 10.4831 7.78233 10.4831 7.78233C10.4831 7.78233 10.4831 7.78232 10.4831 7.78232C10.4831 7.78231 10.4831 7.78231 10.4831 7.78231C10.4831 7.7823 10.4831 7.7823 10.4831 7.7823C10.4831 7.78229 10.4831 7.78229 10.4831 7.78229C10.4831 7.78228 10.4831 7.78228 10.4831 7.78227C10.4831 7.78227 10.4831 7.78227 10.4831 7.78226C10.4831 7.78226 10.4831 7.78226 10.4831 7.78225C10.4831 7.78225 10.4831 7.78225 10.4831 7.78224C10.4831 7.78224 10.4831 7.78223 10.4831 7.78223C10.4831 7.78223 10.4831 7.78222 10.4831 7.78222H10.0831ZM10.0831 7.78753V9.78153H10.4831V7.78753H10.0831ZM10.4246 9.64013L8.17841 7.39325L7.89552 7.67605L10.1417 9.92293L10.4246 9.64013ZM8.18041 7.39528C8.07921 7.29113 7.93745 7.22649 7.78104 7.22649V7.62649C7.82525 7.62649 7.86473 7.64438 7.89353 7.67402L8.18041 7.39528ZM7.78072 7.2265C7.47387 7.22698 7.22417 7.47585 7.22417 7.78347H7.62417C7.62417 7.69723 7.69447 7.62663 7.78136 7.62649L7.78072 7.2265ZM7.22417 7.78347C7.22417 7.94018 7.2893 8.08187 7.39289 8.18257L7.67171 7.89576C7.64217 7.86705 7.62417 7.82745 7.62417 7.78347H7.22417ZM7.39084 8.18056L9.63671 10.4274L9.91962 10.1447L7.67375 7.89778L7.39084 8.18056ZM9.77816 10.086H7.78479V10.486H9.77816V10.086ZM7.78479 10.086C7.78479 10.086 7.78478 10.086 7.78478 10.086C7.78478 10.086 7.78477 10.086 7.78477 10.086C7.78477 10.086 7.78476 10.086 7.78476 10.086C7.78476 10.086 7.78475 10.086 7.78475 10.086C7.78475 10.086 7.78475 10.086 7.78474 10.086C7.78474 10.086 7.78474 10.086 7.78473 10.086C7.78473 10.086 7.78473 10.086 7.78472 10.086C7.78472 10.086 7.78472 10.086 7.78472 10.086C7.78471 10.086 7.78471 10.086 7.78471 10.086C7.7847 10.086 7.7847 10.086 7.7847 10.086C7.78469 10.086 7.78469 10.086 7.78469 10.086C7.78468 10.086 7.78468 10.086 7.78468 10.086C7.78468 10.086 7.78467 10.086 7.78467 10.086C7.78467 10.086 7.78466 10.086 7.78466 10.086C7.78466 10.086 7.78465 10.086 7.78465 10.086C7.78465 10.086 7.78465 10.086 7.78464 10.086C7.78464 10.086 7.78464 10.086 7.78463 10.086C7.78463 10.086 7.78463 10.086 7.78462 10.086C7.78462 10.086 7.78462 10.086 7.78461 10.086C7.78461 10.086 7.78461 10.086 7.78461 10.086C7.7846 10.086 7.7846 10.086 7.7846 10.086C7.78459 10.086 7.78459 10.086 7.78459 10.086C7.78458 10.086 7.78458 10.086 7.78458 10.086C7.78457 10.086 7.78457 10.086 7.78457 10.086C7.78457 10.086 7.78456 10.086 7.78456 10.086C7.78456 10.086 7.78455 10.086 7.78455 10.086C7.78455 10.086 7.78454 10.086 7.78454 10.086C7.78454 10.086 7.78453 10.086 7.78453 10.086C7.78453 10.086 7.78453 10.086 7.78452 10.086C7.78452 10.086 7.78452 10.086 7.78451 10.086C7.78451 10.086 7.78451 10.086 7.7845 10.086C7.7845 10.086 7.7845 10.086 7.7845 10.086C7.78449 10.086 7.78449 10.086 7.78449 10.086C7.78448 10.086 7.78448 10.086 7.78448 10.086C7.78447 10.086 7.78447 10.086 7.78447 10.086C7.78446 10.086 7.78446 10.086 7.78446 10.086C7.78446 10.086 7.78445 10.086 7.78445 10.086C7.78445 10.086 7.78444 10.086 7.78444 10.086C7.78444 10.086 7.78443 10.086 7.78443 10.086C7.78443 10.086 7.78443 10.086 7.78442 10.086C7.78442 10.086 7.78442 10.086 7.78441 10.086C7.78441 10.086 7.78441 10.086 7.7844 10.086C7.7844 10.086 7.7844 10.086 7.78439 10.086C7.78439 10.086 7.78439 10.086 7.78439 10.086C7.78438 10.086 7.78438 10.086 7.78438 10.086C7.78437 10.086 7.78437 10.086 7.78437 10.086C7.78436 10.086 7.78436 10.086 7.78436 10.086C7.78435 10.086 7.78435 10.086 7.78435 10.086C7.78435 10.086 7.78434 10.086 7.78434 10.086C7.78434 10.086 7.78433 10.086 7.78433 10.086C7.78433 10.086 7.78432 10.086 7.78432 10.086C7.78432 10.086 7.78432 10.086 7.78431 10.086C7.78431 10.086 7.78431 10.086 7.7843 10.086C7.7843 10.086 7.7843 10.086 7.78429 10.086C7.78429 10.086 7.78429 10.086 7.78428 10.086C7.78428 10.086 7.78428 10.086 7.78428 10.086C7.78427 10.086 7.78427 10.086 7.78427 10.086C7.78426 10.086 7.78426 10.086 7.78426 10.086C7.78425 10.086 7.78425 10.086 7.78425 10.086C7.78424 10.086 7.78424 10.086 7.78424 10.086C7.78424 10.086 7.78423 10.086 7.78423 10.086C7.78423 10.086 7.78422 10.086 7.78422 10.086C7.78422 10.086 7.78421 10.086 7.78421 10.086C7.78421 10.086 7.7842 10.086 7.7842 10.086C7.7842 10.086 7.7842 10.086 7.78419 10.086C7.78419 10.086 7.78419 10.086 7.78418 10.086C7.78418 10.086 7.78418 10.086 7.78417 10.086C7.78417 10.086 7.78417 10.086 7.78416 10.086C7.78416 10.086 7.78416 10.086 7.78416 10.086C7.78415 10.086 7.78415 10.086 7.78415 10.086C7.78414 10.086 7.78414 10.086 7.78414 10.086C7.78413 10.086 7.78413 10.086 7.78413 10.086C7.78413 10.086 7.78412 10.086 7.78412 10.086C7.78412 10.086 7.78411 10.086 7.78411 10.086C7.78411 10.086 7.7841 10.086 7.7841 10.086C7.7841 10.086 7.78409 10.086 7.78409 10.086C7.78409 10.086 7.78409 10.086 7.78408 10.086C7.78408 10.086 7.78408 10.086 7.78407 10.086C7.78407 10.086 7.78407 10.086 7.78406 10.086C7.78406 10.086 7.78406 10.086 7.78405 10.086C7.78405 10.086 7.78405 10.086 7.78405 10.086C7.78404 10.086 7.78404 10.086 7.78404 10.086C7.78403 10.086 7.78403 10.086 7.78403 10.086C7.78402 10.086 7.78402 10.086 7.78402 10.086C7.78401 10.086 7.78401 10.086 7.78401 10.086C7.78401 10.086 7.784 10.086 7.784 10.086C7.784 10.086 7.78399 10.086 7.78399 10.086C7.78399 10.086 7.78398 10.086 7.78398 10.086C7.78398 10.086 7.78398 10.086 7.78397 10.086C7.78397 10.086 7.78397 10.086 7.78396 10.086C7.78396 10.086 7.78396 10.086 7.78395 10.086C7.78395 10.086 7.78395 10.086 7.78394 10.086C7.78394 10.086 7.78394 10.086 7.78394 10.086C7.78393 10.086 7.78393 10.086 7.78393 10.086C7.78392 10.086 7.78392 10.086 7.78392 10.086C7.78391 10.086 7.78391 10.086 7.78391 10.086C7.7839 10.086 7.7839 10.086 7.7839 10.086C7.7839 10.086 7.78389 10.086 7.78389 10.086C7.78389 10.086 7.78388 10.086 7.78388 10.086C7.78388 10.086 7.78387 10.086 7.78387 10.086C7.78387 10.086 7.78386 10.086 7.78386 10.086C7.78386 10.086 7.78385 10.086 7.78385 10.086C7.78385 10.086 7.78385 10.086 7.78384 10.086C7.78384 10.086 7.78384 10.086 7.78383 10.086C7.78383 10.086 7.78383 10.086 7.78382 10.086C7.78382 10.086 7.78382 10.086 7.78382 10.086C7.78381 10.086 7.78381 10.086 7.78381 10.086C7.7838 10.086 7.7838 10.086 7.7838 10.086C7.78379 10.086 7.78379 10.086 7.78379 10.086C7.78378 10.086 7.78378 10.086 7.78378 10.086C7.78378 10.086 7.78377 10.086 7.78377 10.086C7.78377 10.086 7.78376 10.086 7.78376 10.086C7.78376 10.086 7.78375 10.086 7.78375 10.086C7.78375 10.086 7.78374 10.086 7.78374 10.086C7.78374 10.086 7.78374 10.086 7.78373 10.086C7.78373 10.086 7.78373 10.086 7.78372 10.086C7.78372 10.086 7.78372 10.086 7.78371 10.086C7.78371 10.086 7.78371 10.086 7.7837 10.086C7.7837 10.086 7.7837 10.086 7.78369 10.086C7.78369 10.086 7.78369 10.086 7.78369 10.086C7.78368 10.086 7.78368 10.086 7.78368 10.086C7.78367 10.086 7.78367 10.086 7.78367 10.086C7.78366 10.086 7.78366 10.086 7.78366 10.086C7.78365 10.086 7.78365 10.086 7.78365 10.086C7.78365 10.086 7.78364 10.086 7.78364 10.086C7.78364 10.086 7.78363 10.086 7.78363 10.086C7.78363 10.086 7.78362 10.086 7.78362 10.086C7.78362 10.086 7.78361 10.086 7.78361 10.086C7.78361 10.086 7.78361 10.086 7.7836 10.086C7.7836 10.086 7.7836 10.086 7.78359 10.086C7.78359 10.086 7.78359 10.086 7.78358 10.086C7.78358 10.086 7.78358 10.086 7.78357 10.086C7.78357 10.086 7.78357 10.086 7.78357 10.086C7.78356 10.086 7.78356 10.086 7.78356 10.086C7.78355 10.086 7.78355 10.086 7.78355 10.086C7.78354 10.086 7.78354 10.086 7.78354 10.086C7.78353 10.086 7.78353 10.086 7.78353 10.086C7.78352 10.086 7.78352 10.086 7.78352 10.086C7.78352 10.086 7.78351 10.086 7.78351 10.086C7.78351 10.086 7.7835 10.086 7.7835 10.086C7.7835 10.086 7.78349 10.086 7.78349 10.086C7.78349 10.086 7.78348 10.086 7.78348 10.086C7.78348 10.086 7.78348 10.086 7.78347 10.086C7.78347 10.086 7.78347 10.086 7.78346 10.086C7.78346 10.086 7.78346 10.086 7.78345 10.086C7.78345 10.086 7.78345 10.086 7.78344 10.086C7.78344 10.086 7.78344 10.086 7.78344 10.086C7.78343 10.086 7.78343 10.086 7.78343 10.086C7.78342 10.086 7.78342 10.086 7.78342 10.086C7.78341 10.086 7.78341 10.086 7.78341 10.086C7.7834 10.086 7.7834 10.086 7.7834 10.086C7.78339 10.086 7.78339 10.086 7.78339 10.086C7.78339 10.086 7.78338 10.086 7.78338 10.086C7.78338 10.086 7.78337 10.086 7.78337 10.086C7.78337 10.086 7.78336 10.086 7.78336 10.086C7.78336 10.086 7.78335 10.086 7.78335 10.086C7.78335 10.086 7.78335 10.086 7.78334 10.086C7.78334 10.086 7.78334 10.086 7.78333 10.086C7.78333 10.086 7.78333 10.086 7.78332 10.086C7.78332 10.086 7.78332 10.086 7.78331 10.086C7.78331 10.086 7.78331 10.086 7.7833 10.086C7.7833 10.086 7.7833 10.086 7.7833 10.086C7.78329 10.086 7.78329 10.086 7.78329 10.086C7.78328 10.086 7.78328 10.086 7.78328 10.086C7.78327 10.086 7.78327 10.086 7.78327 10.086C7.78326 10.086 7.78326 10.086 7.78326 10.086C7.78325 10.086 7.78325 10.086 7.78325 10.086C7.78325 10.086 7.78324 10.086 7.78324 10.086C7.78324 10.086 7.78323 10.086 7.78323 10.086C7.78323 10.086 7.78322 10.086 7.78322 10.086C7.78322 10.086 7.78321 10.086 7.78321 10.086C7.78321 10.086 7.78321 10.086 7.7832 10.086C7.7832 10.086 7.7832 10.086 7.78319 10.086C7.78319 10.086 7.78319 10.086 7.78318 10.086C7.78318 10.086 7.78318 10.086 7.78317 10.086C7.78317 10.086 7.78317 10.086 7.78316 10.086C7.78316 10.086 7.78316 10.086 7.78315 10.086C7.78315 10.086 7.78315 10.086 7.78315 10.086C7.78314 10.086 7.78314 10.086 7.78314 10.086C7.78313 10.086 7.78313 10.086 7.78313 10.086C7.78312 10.086 7.78312 10.086 7.78312 10.086C7.78311 10.086 7.78311 10.086 7.78311 10.086C7.7831 10.086 7.7831 10.086 7.7831 10.086C7.7831 10.086 7.78309 10.086 7.78309 10.086C7.78309 10.086 7.78308 10.086 7.78308 10.086C7.78308 10.086 7.78307 10.086 7.78307 10.086C7.78307 10.086 7.78306 10.086 7.78306 10.086C7.78306 10.086 7.78305 10.086 7.78305 10.086C7.78305 10.086 7.78305 10.086 7.78304 10.086C7.78304 10.086 7.78304 10.086 7.78303 10.086C7.78303 10.086 7.78303 10.086 7.78302 10.086C7.78302 10.086 7.78302 10.086 7.78301 10.086C7.78301 10.086 7.78301 10.086 7.783 10.086C7.783 10.086 7.783 10.086 7.783 10.086C7.78299 10.086 7.78299 10.086 7.78299 10.086C7.78298 10.086 7.78298 10.086 7.78298 10.086C7.78297 10.086 7.78297 10.086 7.78297 10.086C7.78296 10.086 7.78296 10.086 7.78296 10.086C7.78295 10.086 7.78295 10.086 7.78295 10.086C7.78295 10.086 7.78294 10.086 7.78294 10.086C7.78294 10.086 7.78293 10.086 7.78293 10.086C7.78293 10.086 7.78292 10.086 7.78292 10.086C7.78292 10.086 7.78291 10.086 7.78291 10.086C7.78291 10.086 7.7829 10.086 7.7829 10.086C7.7829 10.086 7.78289 10.086 7.78289 10.086C7.78289 10.086 7.78289 10.086 7.78288 10.086C7.78288 10.086 7.78288 10.086 7.78287 10.086C7.78287 10.086 7.78287 10.086 7.78286 10.086C7.78286 10.086 7.78286 10.086 7.78285 10.086C7.78285 10.086 7.78285 10.086 7.78284 10.086C7.78284 10.086 7.78284 10.086 7.78283 10.086C7.78283 10.086 7.78283 10.086 7.78283 10.086C7.78282 10.086 7.78282 10.086 7.78282 10.086C7.78281 10.086 7.78281 10.086 7.78281 10.086C7.7828 10.086 7.7828 10.086 7.7828 10.086C7.78279 10.086 7.78279 10.086 7.78279 10.086C7.78278 10.086 7.78278 10.086 7.78278 10.086C7.78277 10.086 7.78277 10.086 7.78277 10.086C7.78277 10.086 7.78276 10.086 7.78276 10.086C7.78276 10.086 7.78275 10.086 7.78275 10.086C7.78275 10.086 7.78274 10.086 7.78274 10.086C7.78274 10.086 7.78273 10.086 7.78273 10.086C7.78273 10.086 7.78272 10.086 7.78272 10.086C7.78272 10.086 7.78271 10.086 7.78271 10.086C7.78271 10.086 7.7827 10.086 7.7827 10.086C7.7827 10.086 7.7827 10.086 7.78269 10.086C7.78269 10.086 7.78269 10.086 7.78268 10.086C7.78268 10.086 7.78268 10.086 7.78267 10.086C7.78267 10.086 7.78267 10.086 7.78266 10.086C7.78266 10.086 7.78266 10.086 7.78265 10.086C7.78265 10.086 7.78265 10.086 7.78264 10.086C7.78264 10.086 7.78264 10.086 7.78264 10.086C7.78263 10.086 7.78263 10.086 7.78263 10.086C7.78262 10.086 7.78262 10.086 7.78262 10.086C7.78261 10.086 7.78261 10.086 7.78261 10.086C7.7826 10.086 7.7826 10.086 7.7826 10.086C7.78259 10.086 7.78259 10.086 7.78259 10.086C7.78258 10.086 7.78258 10.086 7.78258 10.086C7.78257 10.086 7.78257 10.086 7.78257 10.086C7.78257 10.086 7.78256 10.086 7.78256 10.086C7.78256 10.086 7.78255 10.086 7.78255 10.086C7.78255 10.086 7.78254 10.086 7.78254 10.086C7.78254 10.086 7.78253 10.086 7.78253 10.086C7.78253 10.086 7.78252 10.086 7.78252 10.086C7.78252 10.086 7.78251 10.086 7.78251 10.086C7.78251 10.086 7.7825 10.086 7.7825 10.086C7.7825 10.086 7.7825 10.086 7.78249 10.086C7.78249 10.086 7.78249 10.086 7.78248 10.086C7.78248 10.086 7.78248 10.086 7.78247 10.086C7.78247 10.086 7.78247 10.086 7.78246 10.086C7.78246 10.086 7.78246 10.086 7.78245 10.086C7.78245 10.086 7.78245 10.086 7.78244 10.086C7.78244 10.086 7.78244 10.086 7.78243 10.086C7.78243 10.086 7.78243 10.086 7.78242 10.086C7.78242 10.086 7.78242 10.086 7.78241 10.086C7.78241 10.086 7.78241 10.086 7.78241 10.086C7.7824 10.086 7.7824 10.086 7.7824 10.086C7.78239 10.086 7.78239 10.086 7.78239 10.086C7.78238 10.086 7.78238 10.086 7.78238 10.086C7.78237 10.086 7.78237 10.086 7.78237 10.086C7.78236 10.086 7.78236 10.086 7.78236 10.086C7.78235 10.086 7.78235 10.086 7.78235 10.086C7.78234 10.086 7.78234 10.086 7.78234 10.086C7.78233 10.086 7.78233 10.086 7.78233 10.086C7.78233 10.086 7.78232 10.086 7.78232 10.086C7.78232 10.086 7.78231 10.086 7.78231 10.086C7.78231 10.086 7.7823 10.086 7.7823 10.086C7.7823 10.086 7.78229 10.086 7.78229 10.086C7.78229 10.086 7.78228 10.086 7.78228 10.086C7.78228 10.086 7.78227 10.086 7.78227 10.086C7.78227 10.086 7.78226 10.086 7.78226 10.086C7.78226 10.086 7.78225 10.086 7.78225 10.086C7.78225 10.086 7.78224 10.086 7.78224 10.086C7.78224 10.086 7.78224 10.086 7.78223 10.086C7.78223 10.086 7.78223 10.086 7.78222 10.086C7.78222 10.086 7.78222 10.086 7.78221 10.086C7.78221 10.086 7.78221 10.086 7.7822 10.086C7.7822 10.086 7.7822 10.086 7.78219 10.086C7.78219 10.086 7.78219 10.086 7.78218 10.086C7.78218 10.086 7.78218 10.086 7.78217 10.086C7.78217 10.086 7.78217 10.086 7.78216 10.086C7.78216 10.086 7.78216 10.086 7.78215 10.086C7.78215 10.086 7.78215 10.086 7.78214 10.086C7.78214 10.086 7.78214 10.086 7.78214 10.086C7.78213 10.086 7.78213 10.086 7.78212 10.086C7.78212 10.086 7.78212 10.086 7.78212 10.086C7.78211 10.086 7.78211 10.086 7.78211 10.086C7.7821 10.086 7.7821 10.086 7.7821 10.086C7.78209 10.086 7.78209 10.086 7.78209 10.086C7.78208 10.086 7.78208 10.086 7.78208 10.086C7.78207 10.086 7.78207 10.086 7.78207 10.086C7.78206 10.086 7.78206 10.086 7.78206 10.086C7.78205 10.086 7.78205 10.086 7.78205 10.086C7.78204 10.086 7.78204 10.086 7.78204 10.086C7.78203 10.086 7.78203 10.086 7.78203 10.086C7.78202 10.086 7.78202 10.086 7.78202 10.086C7.78201 10.086 7.78201 10.086 7.78201 10.086C7.782 10.086 7.782 10.086 7.782 10.086C7.782 10.086 7.78199 10.086 7.78199 10.086C7.78199 10.086 7.78198 10.086 7.78198 10.086C7.78198 10.086 7.78197 10.086 7.78197 10.086C7.78197 10.086 7.78196 10.086 7.78196 10.086C7.78196 10.086 7.78195 10.086 7.78195 10.086C7.78195 10.086 7.78194 10.086 7.78194 10.086C7.78194 10.086 7.78193 10.086 7.78193 10.086C7.78193 10.086 7.78192 10.086 7.78192 10.086C7.78192 10.086 7.78191 10.086 7.78191 10.086C7.78191 10.086 7.7819 10.086 7.7819 10.086C7.7819 10.086 7.78189 10.086 7.78189 10.086C7.78189 10.086 7.78188 10.086 7.78188 10.086C7.78188 10.086 7.78187 10.086 7.78187 10.086C7.78187 10.086 7.78186 10.086 7.78186 10.086C7.78186 10.086 7.78185 10.086 7.78185 10.086C7.78185 10.086 7.78184 10.086 7.78184 10.086C7.78184 10.086 7.78184 10.086 7.78183 10.086C7.78183 10.086 7.78183 10.086 7.78182 10.086C7.78182 10.086 7.78182 10.086 7.78181 10.086C7.78181 10.086 7.78181 10.086 7.7818 10.086C7.7818 10.086 7.7818 10.086 7.78179 10.086C7.78179 10.086 7.78179 10.086 7.78178 10.086C7.78178 10.086 7.78178 10.086 7.78177 10.086C7.78177 10.086 7.78177 10.086 7.78176 10.086C7.78176 10.086 7.78176 10.086 7.78175 10.086C7.78175 10.086 7.78175 10.086 7.78174 10.086C7.78174 10.086 7.78174 10.086 7.78173 10.086C7.78173 10.086 7.78173 10.086 7.78172 10.086C7.78172 10.086 7.78172 10.086 7.78171 10.086C7.78171 10.086 7.78171 10.086 7.7817 10.086C7.7817 10.086 7.7817 10.086 7.78169 10.086C7.78169 10.086 7.78169 10.086 7.78168 10.086C7.78168 10.086 7.78168 10.086 7.78167 10.086C7.78167 10.086 7.78167 10.086 7.78166 10.086C7.78166 10.086 7.78166 10.086 7.78165 10.086C7.78165 10.086 7.78165 10.086 7.78164 10.086C7.78164 10.086 7.78164 10.086 7.78163 10.086C7.78163 10.086 7.78163 10.086 7.78162 10.086C7.78162 10.086 7.78162 10.086 7.78161 10.086C7.78161 10.086 7.78161 10.086 7.7816 10.086C7.7816 10.086 7.7816 10.086 7.78159 10.086C7.78159 10.086 7.78159 10.086 7.78158 10.086C7.78158 10.086 7.78158 10.086 7.78157 10.086C7.78157 10.086 7.78157 10.086 7.78156 10.086C7.78156 10.086 7.78156 10.086 7.78155 10.086C7.78155 10.086 7.78155 10.086 7.78154 10.086C7.78154 10.086 7.78154 10.086 7.78153 10.086C7.78153 10.086 7.78153 10.086 7.78152 10.086C7.78152 10.086 7.78152 10.086 7.78151 10.086C7.78151 10.086 7.78151 10.086 7.7815 10.086C7.7815 10.086 7.7815 10.086 7.78149 10.086C7.78149 10.086 7.78149 10.086 7.78148 10.086C7.78148 10.086 7.78148 10.086 7.78147 10.086C7.78147 10.086 7.78147 10.086 7.78146 10.086C7.78146 10.086 7.78146 10.086 7.78145 10.086C7.78145 10.086 7.78145 10.086 7.78144 10.086C7.78144 10.086 7.78144 10.086 7.78143 10.086C7.78143 10.086 7.78143 10.086 7.78142 10.086C7.78142 10.086 7.78142 10.086 7.78141 10.086C7.78141 10.086 7.78141 10.086 7.7814 10.086C7.7814 10.086 7.7814 10.086 7.78139 10.086C7.78139 10.086 7.78139 10.086 7.78138 10.086C7.78138 10.086 7.78138 10.086 7.78137 10.086C7.78137 10.086 7.78137 10.086 7.78136 10.086C7.78136 10.086 7.78136 10.086 7.78135 10.086C7.78135 10.086 7.78135 10.086 7.78134 10.086C7.78134 10.086 7.78134 10.086 7.78133 10.086C7.78133 10.086 7.78133 10.086 7.78132 10.086C7.78132 10.086 7.78132 10.086 7.78131 10.086C7.78131 10.086 7.78131 10.086 7.7813 10.086C7.7813 10.086 7.7813 10.086 7.78129 10.086C7.78129 10.086 7.78129 10.086 7.78128 10.086C7.78128 10.086 7.78128 10.086 7.78127 10.086C7.78127 10.086 7.78127 10.086 7.78126 10.086C7.78126 10.086 7.78126 10.086 7.78125 10.086C7.78125 10.086 7.78125 10.086 7.78124 10.086C7.78124 10.086 7.78124 10.086 7.78123 10.086C7.78123 10.086 7.78123 10.086 7.78122 10.086C7.78122 10.086 7.78122 10.086 7.78121 10.086C7.78121 10.086 7.78121 10.086 7.7812 10.086C7.7812 10.086 7.7812 10.086 7.78119 10.086C7.78119 10.086 7.78119 10.086 7.78118 10.086C7.78118 10.086 7.78117 10.086 7.78117 10.086C7.78117 10.086 7.78116 10.086 7.78116 10.086C7.78116 10.086 7.78115 10.086 7.78115 10.086C7.78115 10.086 7.78114 10.086 7.78114 10.086C7.78114 10.086 7.78113 10.086 7.78113 10.086C7.78113 10.086 7.78112 10.086 7.78112 10.086C7.78112 10.086 7.78111 10.086 7.78111 10.086C7.78111 10.086 7.7811 10.086 7.7811 10.086C7.7811 10.086 7.78109 10.086 7.78109 10.086C7.78109 10.086 7.78108 10.086 7.78108 10.086C7.78108 10.086 7.78107 10.086 7.78107 10.086C7.78107 10.086 7.78106 10.086 7.78106 10.086C7.78106 10.086 7.78105 10.086 7.78105 10.086C7.78105 10.086 7.78104 10.086 7.78104 10.086C7.78104 10.086 7.78103 10.086 7.78103 10.086C7.78102 10.086 7.78102 10.086 7.78102 10.086C7.78101 10.086 7.78101 10.086 7.78101 10.086C7.781 10.086 7.781 10.086 7.781 10.086C7.78099 10.086 7.78099 10.086 7.78099 10.086C7.78098 10.086 7.78098 10.086 7.78098 10.086C7.78097 10.086 7.78097 10.086 7.78097 10.086C7.78096 10.086 7.78096 10.086 7.78096 10.086C7.78095 10.086 7.78095 10.086 7.78095 10.086C7.78094 10.086 7.78094 10.086 7.78094 10.086C7.78093 10.086 7.78093 10.086 7.78093 10.086C7.78092 10.086 7.78092 10.086 7.78092 10.086C7.78091 10.086 7.78091 10.086 7.78091 10.086C7.7809 10.086 7.7809 10.086 7.78089 10.086C7.78089 10.086 7.78089 10.086 7.78088 10.086C7.78088 10.086 7.78088 10.086 7.78087 10.086C7.78087 10.086 7.78087 10.086 7.78086 10.086C7.78086 10.086 7.78086 10.086 7.78085 10.086C7.78085 10.086 7.78085 10.086 7.78084 10.086C7.78084 10.086 7.78084 10.086 7.78083 10.086C7.78083 10.086 7.78083 10.086 7.78082 10.086C7.78082 10.086 7.78082 10.086 7.78081 10.086C7.78081 10.086 7.78081 10.086 7.7808 10.086C7.7808 10.086 7.78079 10.086 7.78079 10.086C7.78079 10.086 7.78078 10.086 7.78078 10.086C7.78078 10.086 7.78077 10.086 7.78077 10.086C7.78077 10.086 7.78076 10.086 7.78076 10.086C7.78076 10.086 7.78075 10.086 7.78075 10.086C7.78075 10.086 7.78074 10.086 7.78074 10.086C7.78074 10.086 7.78073 10.086 7.78073 10.086C7.78073 10.086 7.78072 10.086 7.78072 10.086C7.78071 10.086 7.78071 10.086 7.78071 10.086C7.7807 10.086 7.7807 10.086 7.7807 10.086C7.78069 10.086 7.78069 10.086 7.78069 10.086C7.78068 10.086 7.78068 10.086 7.78068 10.086C7.78067 10.086 7.78067 10.086 7.78067 10.086C7.78066 10.086 7.78066 10.086 7.78066 10.086C7.78065 10.086 7.78065 10.086 7.78065 10.086C7.78064 10.086 7.78064 10.086 7.78063 10.086C7.78063 10.086 7.78063 10.086 7.78062 10.086C7.78062 10.086 7.78062 10.086 7.78061 10.086C7.78061 10.086 7.78061 10.086 7.7806 10.086C7.7806 10.086 7.7806 10.086 7.78059 10.086C7.78059 10.086 7.78059 10.086 7.78058 10.086C7.78058 10.086 7.78058 10.086 7.78057 10.086C7.78057 10.086 7.78057 10.086 7.78056 10.086C7.78056 10.086 7.78055 10.086 7.78055 10.086C7.78055 10.086 7.78054 10.086 7.78054 10.086C7.78054 10.086 7.78053 10.086 7.78053 10.086C7.78053 10.086 7.78052 10.086 7.78052 10.086C7.78052 10.086 7.78051 10.086 7.78051 10.086C7.78051 10.086 7.7805 10.086 7.7805 10.086C7.7805 10.086 7.78049 10.086 7.78049 10.086C7.78048 10.086 7.78048 10.086 7.78048 10.086C7.78047 10.086 7.78047 10.086 7.78047 10.086C7.78046 10.086 7.78046 10.086 7.78046 10.086C7.78045 10.086 7.78045 10.086 7.78045 10.086C7.78044 10.086 7.78044 10.086 7.78044 10.086C7.78043 10.086 7.78043 10.086 7.78042 10.086C7.78042 10.086 7.78042 10.086 7.78041 10.086C7.78041 10.086 7.78041 10.086 7.7804 10.086C7.7804 10.086 7.7804 10.086 7.78039 10.086C7.78039 10.086 7.78039 10.086 7.78038 10.086C7.78038 10.086 7.78038 10.086 7.78037 10.086C7.78037 10.086 7.78036 10.086 7.78036 10.086C7.78036 10.086 7.78035 10.086 7.78035 10.086C7.78035 10.086 7.78034 10.086 7.78034 10.086C7.78034 10.086 7.78033 10.086 7.78033 10.086C7.78033 10.086 7.78032 10.086 7.78032 10.086C7.78031 10.086 7.78031 10.086 7.78031 10.086C7.7803 10.086 7.7803 10.086 7.7803 10.086C7.78029 10.086 7.78029 10.086 7.78029 10.086C7.78028 10.086 7.78028 10.086 7.78028 10.086C7.78027 10.086 7.78027 10.086 7.78026 10.086C7.78026 10.086 7.78026 10.086 7.78025 10.086C7.78025 10.086 7.78025 10.086 7.78024 10.086C7.78024 10.086 7.78024 10.086 7.78023 10.086C7.78023 10.086 7.78023 10.086 7.78022 10.086C7.78022 10.086 7.78022 10.086 7.78021 10.086C7.78021 10.086 7.7802 10.086 7.7802 10.086C7.7802 10.086 7.78019 10.086 7.78019 10.086C7.78019 10.086 7.78018 10.086 7.78018 10.086C7.78018 10.086 7.78017 10.086 7.78017 10.086C7.78016 10.086 7.78016 10.086 7.78016 10.086C7.78015 10.086 7.78015 10.086 7.78015 10.086C7.78014 10.086 7.78014 10.086 7.78014 10.086C7.78013 10.086 7.78013 10.086 7.78013 10.086C7.78012 10.086 7.78012 10.086 7.78011 10.086C7.78011 10.086 7.78011 10.086 7.7801 10.086C7.7801 10.086 7.7801 10.086 7.78009 10.086C7.78009 10.086 7.78009 10.086 7.78008 10.086C7.78008 10.086 7.78008 10.086 7.78007 10.086C7.78007 10.086 7.78006 10.086 7.78006 10.086C7.78006 10.086 7.78005 10.086 7.78005 10.086C7.78005 10.086 7.78004 10.086 7.78004 10.086C7.78004 10.086 7.78003 10.086 7.78003 10.086C7.78002 10.086 7.78002 10.086 7.78002 10.086C7.78001 10.086 7.78001 10.086 7.78001 10.086C7.78 10.086 7.78 10.086 7.78 10.086C7.77999 10.086 7.77999 10.086 7.77998 10.086C7.77998 10.086 7.77998 10.086 7.77997 10.086C7.77997 10.086 7.77997 10.086 7.77996 10.086C7.77996 10.086 7.77996 10.086 7.77995 10.086C7.77995 10.086 7.77994 10.086 7.77994 10.086C7.77994 10.086 7.77993 10.086 7.77993 10.086C7.77993 10.086 7.77992 10.086 7.77992 10.086C7.77992 10.086 7.77991 10.086 7.77991 10.086C7.7799 10.086 7.7799 10.086 7.7799 10.086C7.77989 10.086 7.77989 10.086 7.77989 10.086C7.77988 10.086 7.77988 10.086 7.77988 10.086C7.77987 10.086 7.77987 10.086 7.77986 10.086C7.77986 10.086 7.77986 10.086 7.77985 10.086C7.77985 10.086 7.77985 10.086 7.77984 10.086C7.77984 10.086 7.77984 10.086 7.77983 10.086C7.77983 10.086 7.77982 10.086 7.77982 10.086C7.77982 10.086 7.77981 10.086 7.77981 10.086C7.77981 10.086 7.7798 10.086 7.7798 10.086C7.7798 10.086 7.77979 10.086 7.77979 10.086V10.486C7.77979 10.486 7.7798 10.486 7.7798 10.486C7.7798 10.486 7.77981 10.486 7.77981 10.486C7.77981 10.486 7.77982 10.486 7.77982 10.486C7.77982 10.486 7.77983 10.486 7.77983 10.486C7.77984 10.486 7.77984 10.486 7.77984 10.486C7.77985 10.486 7.77985 10.486 7.77985 10.486C7.77986 10.486 7.77986 10.486 7.77986 10.486C7.77987 10.486 7.77987 10.486 7.77988 10.486C7.77988 10.486 7.77988 10.486 7.77989 10.486C7.77989 10.486 7.77989 10.486 7.7799 10.486C7.7799 10.486 7.7799 10.486 7.77991 10.486C7.77991 10.486 7.77992 10.486 7.77992 10.486C7.77992 10.486 7.77993 10.486 7.77993 10.486C7.77993 10.486 7.77994 10.486 7.77994 10.486C7.77994 10.486 7.77995 10.486 7.77995 10.486C7.77996 10.486 7.77996 10.486 7.77996 10.486C7.77997 10.486 7.77997 10.486 7.77997 10.486C7.77998 10.486 7.77998 10.486 7.77998 10.486C7.77999 10.486 7.77999 10.486 7.78 10.486C7.78 10.486 7.78 10.486 7.78001 10.486C7.78001 10.486 7.78001 10.486 7.78002 10.486C7.78002 10.486 7.78002 10.486 7.78003 10.486C7.78003 10.486 7.78004 10.486 7.78004 10.486C7.78004 10.486 7.78005 10.486 7.78005 10.486C7.78005 10.486 7.78006 10.486 7.78006 10.486C7.78006 10.486 7.78007 10.486 7.78007 10.486C7.78008 10.486 7.78008 10.486 7.78008 10.486C7.78009 10.486 7.78009 10.486 7.78009 10.486C7.7801 10.486 7.7801 10.486 7.7801 10.486C7.78011 10.486 7.78011 10.486 7.78011 10.486C7.78012 10.486 7.78012 10.486 7.78013 10.486C7.78013 10.486 7.78013 10.486 7.78014 10.486C7.78014 10.486 7.78014 10.486 7.78015 10.486C7.78015 10.486 7.78015 10.486 7.78016 10.486C7.78016 10.486 7.78016 10.486 7.78017 10.486C7.78017 10.486 7.78018 10.486 7.78018 10.486C7.78018 10.486 7.78019 10.486 7.78019 10.486C7.78019 10.486 7.7802 10.486 7.7802 10.486C7.7802 10.486 7.78021 10.486 7.78021 10.486C7.78022 10.486 7.78022 10.486 7.78022 10.486C7.78023 10.486 7.78023 10.486 7.78023 10.486C7.78024 10.486 7.78024 10.486 7.78024 10.486C7.78025 10.486 7.78025 10.486 7.78025 10.486C7.78026 10.486 7.78026 10.486 7.78026 10.486C7.78027 10.486 7.78027 10.486 7.78028 10.486C7.78028 10.486 7.78028 10.486 7.78029 10.486C7.78029 10.486 7.78029 10.486 7.7803 10.486C7.7803 10.486 7.7803 10.486 7.78031 10.486C7.78031 10.486 7.78031 10.486 7.78032 10.486C7.78032 10.486 7.78033 10.486 7.78033 10.486C7.78033 10.486 7.78034 10.486 7.78034 10.486C7.78034 10.486 7.78035 10.486 7.78035 10.486C7.78035 10.486 7.78036 10.486 7.78036 10.486C7.78036 10.486 7.78037 10.486 7.78037 10.486C7.78038 10.486 7.78038 10.486 7.78038 10.486C7.78039 10.486 7.78039 10.486 7.78039 10.486C7.7804 10.486 7.7804 10.486 7.7804 10.486C7.78041 10.486 7.78041 10.486 7.78041 10.486C7.78042 10.486 7.78042 10.486 7.78042 10.486C7.78043 10.486 7.78043 10.486 7.78044 10.486C7.78044 10.486 7.78044 10.486 7.78045 10.486C7.78045 10.486 7.78045 10.486 7.78046 10.486C7.78046 10.486 7.78046 10.486 7.78047 10.486C7.78047 10.486 7.78047 10.486 7.78048 10.486C7.78048 10.486 7.78048 10.486 7.78049 10.486C7.78049 10.486 7.7805 10.486 7.7805 10.486C7.7805 10.486 7.78051 10.486 7.78051 10.486C7.78051 10.486 7.78052 10.486 7.78052 10.486C7.78052 10.486 7.78053 10.486 7.78053 10.486C7.78053 10.486 7.78054 10.486 7.78054 10.486C7.78054 10.486 7.78055 10.486 7.78055 10.486C7.78055 10.486 7.78056 10.486 7.78056 10.486C7.78057 10.486 7.78057 10.486 7.78057 10.486C7.78058 10.486 7.78058 10.486 7.78058 10.486C7.78059 10.486 7.78059 10.486 7.78059 10.486C7.7806 10.486 7.7806 10.486 7.7806 10.486C7.78061 10.486 7.78061 10.486 7.78061 10.486C7.78062 10.486 7.78062 10.486 7.78062 10.486C7.78063 10.486 7.78063 10.486 7.78063 10.486C7.78064 10.486 7.78064 10.486 7.78065 10.486C7.78065 10.486 7.78065 10.486 7.78066 10.486C7.78066 10.486 7.78066 10.486 7.78067 10.486C7.78067 10.486 7.78067 10.486 7.78068 10.486C7.78068 10.486 7.78068 10.486 7.78069 10.486C7.78069 10.486 7.78069 10.486 7.7807 10.486C7.7807 10.486 7.7807 10.486 7.78071 10.486C7.78071 10.486 7.78071 10.486 7.78072 10.486C7.78072 10.486 7.78073 10.486 7.78073 10.486C7.78073 10.486 7.78074 10.486 7.78074 10.486C7.78074 10.486 7.78075 10.486 7.78075 10.486C7.78075 10.486 7.78076 10.486 7.78076 10.486C7.78076 10.486 7.78077 10.486 7.78077 10.486C7.78077 10.486 7.78078 10.486 7.78078 10.486C7.78078 10.486 7.78079 10.486 7.78079 10.486C7.78079 10.486 7.7808 10.486 7.7808 10.486C7.78081 10.486 7.78081 10.486 7.78081 10.486C7.78082 10.486 7.78082 10.486 7.78082 10.486C7.78083 10.486 7.78083 10.486 7.78083 10.486C7.78084 10.486 7.78084 10.486 7.78084 10.486C7.78085 10.486 7.78085 10.486 7.78085 10.486C7.78086 10.486 7.78086 10.486 7.78086 10.486C7.78087 10.486 7.78087 10.486 7.78087 10.486C7.78088 10.486 7.78088 10.486 7.78088 10.486C7.78089 10.486 7.78089 10.486 7.78089 10.486C7.7809 10.486 7.7809 10.486 7.78091 10.486C7.78091 10.486 7.78091 10.486 7.78092 10.486C7.78092 10.486 7.78092 10.486 7.78093 10.486C7.78093 10.486 7.78093 10.486 7.78094 10.486C7.78094 10.486 7.78094 10.486 7.78095 10.486C7.78095 10.486 7.78095 10.486 7.78096 10.486C7.78096 10.486 7.78096 10.486 7.78097 10.486C7.78097 10.486 7.78097 10.486 7.78098 10.486C7.78098 10.486 7.78098 10.486 7.78099 10.486C7.78099 10.486 7.78099 10.486 7.781 10.486C7.781 10.486 7.781 10.486 7.78101 10.486C7.78101 10.486 7.78101 10.486 7.78102 10.486C7.78102 10.486 7.78102 10.486 7.78103 10.486C7.78103 10.486 7.78104 10.486 7.78104 10.486C7.78104 10.486 7.78105 10.486 7.78105 10.486C7.78105 10.486 7.78106 10.486 7.78106 10.486C7.78106 10.486 7.78107 10.486 7.78107 10.486C7.78107 10.486 7.78108 10.486 7.78108 10.486C7.78108 10.486 7.78109 10.486 7.78109 10.486C7.78109 10.486 7.7811 10.486 7.7811 10.486C7.7811 10.486 7.78111 10.486 7.78111 10.486C7.78111 10.486 7.78112 10.486 7.78112 10.486C7.78112 10.486 7.78113 10.486 7.78113 10.486C7.78113 10.486 7.78114 10.486 7.78114 10.486C7.78114 10.486 7.78115 10.486 7.78115 10.486C7.78115 10.486 7.78116 10.486 7.78116 10.486C7.78116 10.486 7.78117 10.486 7.78117 10.486C7.78117 10.486 7.78118 10.486 7.78118 10.486C7.78119 10.486 7.78119 10.486 7.78119 10.486C7.7812 10.486 7.7812 10.486 7.7812 10.486C7.78121 10.486 7.78121 10.486 7.78121 10.486C7.78122 10.486 7.78122 10.486 7.78122 10.486C7.78123 10.486 7.78123 10.486 7.78123 10.486C7.78124 10.486 7.78124 10.486 7.78124 10.486C7.78125 10.486 7.78125 10.486 7.78125 10.486C7.78126 10.486 7.78126 10.486 7.78126 10.486C7.78127 10.486 7.78127 10.486 7.78127 10.486C7.78128 10.486 7.78128 10.486 7.78128 10.486C7.78129 10.486 7.78129 10.486 7.78129 10.486C7.7813 10.486 7.7813 10.486 7.7813 10.486C7.78131 10.486 7.78131 10.486 7.78131 10.486C7.78132 10.486 7.78132 10.486 7.78132 10.486C7.78133 10.486 7.78133 10.486 7.78133 10.486C7.78134 10.486 7.78134 10.486 7.78134 10.486C7.78135 10.486 7.78135 10.486 7.78135 10.486C7.78136 10.486 7.78136 10.486 7.78136 10.486C7.78137 10.486 7.78137 10.486 7.78137 10.486C7.78138 10.486 7.78138 10.486 7.78138 10.486C7.78139 10.486 7.78139 10.486 7.78139 10.486C7.7814 10.486 7.7814 10.486 7.7814 10.486C7.78141 10.486 7.78141 10.486 7.78141 10.486C7.78142 10.486 7.78142 10.486 7.78142 10.486C7.78143 10.486 7.78143 10.486 7.78143 10.486C7.78144 10.486 7.78144 10.486 7.78144 10.486C7.78145 10.486 7.78145 10.486 7.78145 10.486C7.78146 10.486 7.78146 10.486 7.78146 10.486C7.78147 10.486 7.78147 10.486 7.78147 10.486C7.78148 10.486 7.78148 10.486 7.78148 10.486C7.78149 10.486 7.78149 10.486 7.78149 10.486C7.7815 10.486 7.7815 10.486 7.7815 10.486C7.78151 10.486 7.78151 10.486 7.78151 10.486C7.78152 10.486 7.78152 10.486 7.78152 10.486C7.78153 10.486 7.78153 10.486 7.78153 10.486C7.78154 10.486 7.78154 10.486 7.78154 10.486C7.78155 10.486 7.78155 10.486 7.78155 10.486C7.78156 10.486 7.78156 10.486 7.78156 10.486C7.78157 10.486 7.78157 10.486 7.78157 10.486C7.78158 10.486 7.78158 10.486 7.78158 10.486C7.78159 10.486 7.78159 10.486 7.78159 10.486C7.7816 10.486 7.7816 10.486 7.7816 10.486C7.78161 10.486 7.78161 10.486 7.78161 10.486C7.78162 10.486 7.78162 10.486 7.78162 10.486C7.78163 10.486 7.78163 10.486 7.78163 10.486C7.78164 10.486 7.78164 10.486 7.78164 10.486C7.78165 10.486 7.78165 10.486 7.78165 10.486C7.78166 10.486 7.78166 10.486 7.78166 10.486C7.78167 10.486 7.78167 10.486 7.78167 10.486C7.78168 10.486 7.78168 10.486 7.78168 10.486C7.78169 10.486 7.78169 10.486 7.78169 10.486C7.7817 10.486 7.7817 10.486 7.7817 10.486C7.78171 10.486 7.78171 10.486 7.78171 10.486C7.78172 10.486 7.78172 10.486 7.78172 10.486C7.78173 10.486 7.78173 10.486 7.78173 10.486C7.78174 10.486 7.78174 10.486 7.78174 10.486C7.78175 10.486 7.78175 10.486 7.78175 10.486C7.78176 10.486 7.78176 10.486 7.78176 10.486C7.78177 10.486 7.78177 10.486 7.78177 10.486C7.78178 10.486 7.78178 10.486 7.78178 10.486C7.78179 10.486 7.78179 10.486 7.78179 10.486C7.7818 10.486 7.7818 10.486 7.7818 10.486C7.78181 10.486 7.78181 10.486 7.78181 10.486C7.78182 10.486 7.78182 10.486 7.78182 10.486C7.78183 10.486 7.78183 10.486 7.78183 10.486C7.78184 10.486 7.78184 10.486 7.78184 10.486C7.78184 10.486 7.78185 10.486 7.78185 10.486C7.78185 10.486 7.78186 10.486 7.78186 10.486C7.78186 10.486 7.78187 10.486 7.78187 10.486C7.78187 10.486 7.78188 10.486 7.78188 10.486C7.78188 10.486 7.78189 10.486 7.78189 10.486C7.78189 10.486 7.7819 10.486 7.7819 10.486C7.7819 10.486 7.78191 10.486 7.78191 10.486C7.78191 10.486 7.78192 10.486 7.78192 10.486C7.78192 10.486 7.78193 10.486 7.78193 10.486C7.78193 10.486 7.78194 10.486 7.78194 10.486C7.78194 10.486 7.78195 10.486 7.78195 10.486C7.78195 10.486 7.78196 10.486 7.78196 10.486C7.78196 10.486 7.78197 10.486 7.78197 10.486C7.78197 10.486 7.78198 10.486 7.78198 10.486C7.78198 10.486 7.78199 10.486 7.78199 10.486C7.78199 10.486 7.782 10.486 7.782 10.486C7.782 10.486 7.782 10.486 7.78201 10.486C7.78201 10.486 7.78201 10.486 7.78202 10.486C7.78202 10.486 7.78202 10.486 7.78203 10.486C7.78203 10.486 7.78203 10.486 7.78204 10.486C7.78204 10.486 7.78204 10.486 7.78205 10.486C7.78205 10.486 7.78205 10.486 7.78206 10.486C7.78206 10.486 7.78206 10.486 7.78207 10.486C7.78207 10.486 7.78207 10.486 7.78208 10.486C7.78208 10.486 7.78208 10.486 7.78209 10.486C7.78209 10.486 7.78209 10.486 7.7821 10.486C7.7821 10.486 7.7821 10.486 7.78211 10.486C7.78211 10.486 7.78211 10.486 7.78212 10.486C7.78212 10.486 7.78212 10.486 7.78212 10.486C7.78213 10.486 7.78213 10.486 7.78214 10.486C7.78214 10.486 7.78214 10.486 7.78214 10.486C7.78215 10.486 7.78215 10.486 7.78215 10.486C7.78216 10.486 7.78216 10.486 7.78216 10.486C7.78217 10.486 7.78217 10.486 7.78217 10.486C7.78218 10.486 7.78218 10.486 7.78218 10.486C7.78219 10.486 7.78219 10.486 7.78219 10.486C7.7822 10.486 7.7822 10.486 7.7822 10.486C7.78221 10.486 7.78221 10.486 7.78221 10.486C7.78222 10.486 7.78222 10.486 7.78222 10.486C7.78223 10.486 7.78223 10.486 7.78223 10.486C7.78224 10.486 7.78224 10.486 7.78224 10.486C7.78224 10.486 7.78225 10.486 7.78225 10.486C7.78225 10.486 7.78226 10.486 7.78226 10.486C7.78226 10.486 7.78227 10.486 7.78227 10.486C7.78227 10.486 7.78228 10.486 7.78228 10.486C7.78228 10.486 7.78229 10.486 7.78229 10.486C7.78229 10.486 7.7823 10.486 7.7823 10.486C7.7823 10.486 7.78231 10.486 7.78231 10.486C7.78231 10.486 7.78232 10.486 7.78232 10.486C7.78232 10.486 7.78233 10.486 7.78233 10.486C7.78233 10.486 7.78233 10.486 7.78234 10.486C7.78234 10.486 7.78234 10.486 7.78235 10.486C7.78235 10.486 7.78235 10.486 7.78236 10.486C7.78236 10.486 7.78236 10.486 7.78237 10.486C7.78237 10.486 7.78237 10.486 7.78238 10.486C7.78238 10.486 7.78238 10.486 7.78239 10.486C7.78239 10.486 7.78239 10.486 7.7824 10.486C7.7824 10.486 7.7824 10.486 7.78241 10.486C7.78241 10.486 7.78241 10.486 7.78241 10.486C7.78242 10.486 7.78242 10.486 7.78242 10.486C7.78243 10.486 7.78243 10.486 7.78243 10.486C7.78244 10.486 7.78244 10.486 7.78244 10.486C7.78245 10.486 7.78245 10.486 7.78245 10.486C7.78246 10.486 7.78246 10.486 7.78246 10.486C7.78247 10.486 7.78247 10.486 7.78247 10.486C7.78248 10.486 7.78248 10.486 7.78248 10.486C7.78249 10.486 7.78249 10.486 7.78249 10.486C7.7825 10.486 7.7825 10.486 7.7825 10.486C7.7825 10.486 7.78251 10.486 7.78251 10.486C7.78251 10.486 7.78252 10.486 7.78252 10.486C7.78252 10.486 7.78253 10.486 7.78253 10.486C7.78253 10.486 7.78254 10.486 7.78254 10.486C7.78254 10.486 7.78255 10.486 7.78255 10.486C7.78255 10.486 7.78256 10.486 7.78256 10.486C7.78256 10.486 7.78257 10.486 7.78257 10.486C7.78257 10.486 7.78257 10.486 7.78258 10.486C7.78258 10.486 7.78258 10.486 7.78259 10.486C7.78259 10.486 7.78259 10.486 7.7826 10.486C7.7826 10.486 7.7826 10.486 7.78261 10.486C7.78261 10.486 7.78261 10.486 7.78262 10.486C7.78262 10.486 7.78262 10.486 7.78263 10.486C7.78263 10.486 7.78263 10.486 7.78264 10.486C7.78264 10.486 7.78264 10.486 7.78264 10.486C7.78265 10.486 7.78265 10.486 7.78265 10.486C7.78266 10.486 7.78266 10.486 7.78266 10.486C7.78267 10.486 7.78267 10.486 7.78267 10.486C7.78268 10.486 7.78268 10.486 7.78268 10.486C7.78269 10.486 7.78269 10.486 7.78269 10.486C7.7827 10.486 7.7827 10.486 7.7827 10.486C7.7827 10.486 7.78271 10.486 7.78271 10.486C7.78271 10.486 7.78272 10.486 7.78272 10.486C7.78272 10.486 7.78273 10.486 7.78273 10.486C7.78273 10.486 7.78274 10.486 7.78274 10.486C7.78274 10.486 7.78275 10.486 7.78275 10.486C7.78275 10.486 7.78276 10.486 7.78276 10.486C7.78276 10.486 7.78277 10.486 7.78277 10.486C7.78277 10.486 7.78277 10.486 7.78278 10.486C7.78278 10.486 7.78278 10.486 7.78279 10.486C7.78279 10.486 7.78279 10.486 7.7828 10.486C7.7828 10.486 7.7828 10.486 7.78281 10.486C7.78281 10.486 7.78281 10.486 7.78282 10.486C7.78282 10.486 7.78282 10.486 7.78283 10.486C7.78283 10.486 7.78283 10.486 7.78283 10.486C7.78284 10.486 7.78284 10.486 7.78284 10.486C7.78285 10.486 7.78285 10.486 7.78285 10.486C7.78286 10.486 7.78286 10.486 7.78286 10.486C7.78287 10.486 7.78287 10.486 7.78287 10.486C7.78288 10.486 7.78288 10.486 7.78288 10.486C7.78289 10.486 7.78289 10.486 7.78289 10.486C7.78289 10.486 7.7829 10.486 7.7829 10.486C7.7829 10.486 7.78291 10.486 7.78291 10.486C7.78291 10.486 7.78292 10.486 7.78292 10.486C7.78292 10.486 7.78293 10.486 7.78293 10.486C7.78293 10.486 7.78294 10.486 7.78294 10.486C7.78294 10.486 7.78295 10.486 7.78295 10.486C7.78295 10.486 7.78295 10.486 7.78296 10.486C7.78296 10.486 7.78296 10.486 7.78297 10.486C7.78297 10.486 7.78297 10.486 7.78298 10.486C7.78298 10.486 7.78298 10.486 7.78299 10.486C7.78299 10.486 7.78299 10.486 7.783 10.486C7.783 10.486 7.783 10.486 7.783 10.486C7.78301 10.486 7.78301 10.486 7.78301 10.486C7.78302 10.486 7.78302 10.486 7.78302 10.486C7.78303 10.486 7.78303 10.486 7.78303 10.486C7.78304 10.486 7.78304 10.486 7.78304 10.486C7.78305 10.486 7.78305 10.486 7.78305 10.486C7.78305 10.486 7.78306 10.486 7.78306 10.486C7.78306 10.486 7.78307 10.486 7.78307 10.486C7.78307 10.486 7.78308 10.486 7.78308 10.486C7.78308 10.486 7.78309 10.486 7.78309 10.486C7.78309 10.486 7.7831 10.486 7.7831 10.486C7.7831 10.486 7.7831 10.486 7.78311 10.486C7.78311 10.486 7.78311 10.486 7.78312 10.486C7.78312 10.486 7.78312 10.486 7.78313 10.486C7.78313 10.486 7.78313 10.486 7.78314 10.486C7.78314 10.486 7.78314 10.486 7.78315 10.486C7.78315 10.486 7.78315 10.486 7.78315 10.486C7.78316 10.486 7.78316 10.486 7.78316 10.486C7.78317 10.486 7.78317 10.486 7.78317 10.486C7.78318 10.486 7.78318 10.486 7.78318 10.486C7.78319 10.486 7.78319 10.486 7.78319 10.486C7.7832 10.486 7.7832 10.486 7.7832 10.486C7.78321 10.486 7.78321 10.486 7.78321 10.486C7.78321 10.486 7.78322 10.486 7.78322 10.486C7.78322 10.486 7.78323 10.486 7.78323 10.486C7.78323 10.486 7.78324 10.486 7.78324 10.486C7.78324 10.486 7.78325 10.486 7.78325 10.486C7.78325 10.486 7.78325 10.486 7.78326 10.486C7.78326 10.486 7.78326 10.486 7.78327 10.486C7.78327 10.486 7.78327 10.486 7.78328 10.486C7.78328 10.486 7.78328 10.486 7.78329 10.486C7.78329 10.486 7.78329 10.486 7.7833 10.486C7.7833 10.486 7.7833 10.486 7.7833 10.486C7.78331 10.486 7.78331 10.486 7.78331 10.486C7.78332 10.486 7.78332 10.486 7.78332 10.486C7.78333 10.486 7.78333 10.486 7.78333 10.486C7.78334 10.486 7.78334 10.486 7.78334 10.486C7.78335 10.486 7.78335 10.486 7.78335 10.486C7.78335 10.486 7.78336 10.486 7.78336 10.486C7.78336 10.486 7.78337 10.486 7.78337 10.486C7.78337 10.486 7.78338 10.486 7.78338 10.486C7.78338 10.486 7.78339 10.486 7.78339 10.486C7.78339 10.486 7.78339 10.486 7.7834 10.486C7.7834 10.486 7.7834 10.486 7.78341 10.486C7.78341 10.486 7.78341 10.486 7.78342 10.486C7.78342 10.486 7.78342 10.486 7.78343 10.486C7.78343 10.486 7.78343 10.486 7.78344 10.486C7.78344 10.486 7.78344 10.486 7.78344 10.486C7.78345 10.486 7.78345 10.486 7.78345 10.486C7.78346 10.486 7.78346 10.486 7.78346 10.486C7.78347 10.486 7.78347 10.486 7.78347 10.486C7.78348 10.486 7.78348 10.486 7.78348 10.486C7.78348 10.486 7.78349 10.486 7.78349 10.486C7.78349 10.486 7.7835 10.486 7.7835 10.486C7.7835 10.486 7.78351 10.486 7.78351 10.486C7.78351 10.486 7.78352 10.486 7.78352 10.486C7.78352 10.486 7.78352 10.486 7.78353 10.486C7.78353 10.486 7.78353 10.486 7.78354 10.486C7.78354 10.486 7.78354 10.486 7.78355 10.486C7.78355 10.486 7.78355 10.486 7.78356 10.486C7.78356 10.486 7.78356 10.486 7.78357 10.486C7.78357 10.486 7.78357 10.486 7.78357 10.486C7.78358 10.486 7.78358 10.486 7.78358 10.486C7.78359 10.486 7.78359 10.486 7.78359 10.486C7.7836 10.486 7.7836 10.486 7.7836 10.486C7.78361 10.486 7.78361 10.486 7.78361 10.486C7.78361 10.486 7.78362 10.486 7.78362 10.486C7.78362 10.486 7.78363 10.486 7.78363 10.486C7.78363 10.486 7.78364 10.486 7.78364 10.486C7.78364 10.486 7.78365 10.486 7.78365 10.486C7.78365 10.486 7.78365 10.486 7.78366 10.486C7.78366 10.486 7.78366 10.486 7.78367 10.486C7.78367 10.486 7.78367 10.486 7.78368 10.486C7.78368 10.486 7.78368 10.486 7.78369 10.486C7.78369 10.486 7.78369 10.486 7.78369 10.486C7.7837 10.486 7.7837 10.486 7.7837 10.486C7.78371 10.486 7.78371 10.486 7.78371 10.486C7.78372 10.486 7.78372 10.486 7.78372 10.486C7.78373 10.486 7.78373 10.486 7.78373 10.486C7.78374 10.486 7.78374 10.486 7.78374 10.486C7.78374 10.486 7.78375 10.486 7.78375 10.486C7.78375 10.486 7.78376 10.486 7.78376 10.486C7.78376 10.486 7.78377 10.486 7.78377 10.486C7.78377 10.486 7.78378 10.486 7.78378 10.486C7.78378 10.486 7.78378 10.486 7.78379 10.486C7.78379 10.486 7.78379 10.486 7.7838 10.486C7.7838 10.486 7.7838 10.486 7.78381 10.486C7.78381 10.486 7.78381 10.486 7.78382 10.486C7.78382 10.486 7.78382 10.486 7.78382 10.486C7.78383 10.486 7.78383 10.486 7.78383 10.486C7.78384 10.486 7.78384 10.486 7.78384 10.486C7.78385 10.486 7.78385 10.486 7.78385 10.486C7.78385 10.486 7.78386 10.486 7.78386 10.486C7.78386 10.486 7.78387 10.486 7.78387 10.486C7.78387 10.486 7.78388 10.486 7.78388 10.486C7.78388 10.486 7.78389 10.486 7.78389 10.486C7.78389 10.486 7.7839 10.486 7.7839 10.486C7.7839 10.486 7.7839 10.486 7.78391 10.486C7.78391 10.486 7.78391 10.486 7.78392 10.486C7.78392 10.486 7.78392 10.486 7.78393 10.486C7.78393 10.486 7.78393 10.486 7.78394 10.486C7.78394 10.486 7.78394 10.486 7.78394 10.486C7.78395 10.486 7.78395 10.486 7.78395 10.486C7.78396 10.486 7.78396 10.486 7.78396 10.486C7.78397 10.486 7.78397 10.486 7.78397 10.486C7.78398 10.486 7.78398 10.486 7.78398 10.486C7.78398 10.486 7.78399 10.486 7.78399 10.486C7.78399 10.486 7.784 10.486 7.784 10.486C7.784 10.486 7.78401 10.486 7.78401 10.486C7.78401 10.486 7.78401 10.486 7.78402 10.486C7.78402 10.486 7.78402 10.486 7.78403 10.486C7.78403 10.486 7.78403 10.486 7.78404 10.486C7.78404 10.486 7.78404 10.486 7.78405 10.486C7.78405 10.486 7.78405 10.486 7.78405 10.486C7.78406 10.486 7.78406 10.486 7.78406 10.486C7.78407 10.486 7.78407 10.486 7.78407 10.486C7.78408 10.486 7.78408 10.486 7.78408 10.486C7.78409 10.486 7.78409 10.486 7.78409 10.486C7.78409 10.486 7.7841 10.486 7.7841 10.486C7.7841 10.486 7.78411 10.486 7.78411 10.486C7.78411 10.486 7.78412 10.486 7.78412 10.486C7.78412 10.486 7.78413 10.486 7.78413 10.486C7.78413 10.486 7.78413 10.486 7.78414 10.486C7.78414 10.486 7.78414 10.486 7.78415 10.486C7.78415 10.486 7.78415 10.486 7.78416 10.486C7.78416 10.486 7.78416 10.486 7.78416 10.486C7.78417 10.486 7.78417 10.486 7.78417 10.486C7.78418 10.486 7.78418 10.486 7.78418 10.486C7.78419 10.486 7.78419 10.486 7.78419 10.486C7.7842 10.486 7.7842 10.486 7.7842 10.486C7.7842 10.486 7.78421 10.486 7.78421 10.486C7.78421 10.486 7.78422 10.486 7.78422 10.486C7.78422 10.486 7.78423 10.486 7.78423 10.486C7.78423 10.486 7.78424 10.486 7.78424 10.486C7.78424 10.486 7.78424 10.486 7.78425 10.486C7.78425 10.486 7.78425 10.486 7.78426 10.486C7.78426 10.486 7.78426 10.486 7.78427 10.486C7.78427 10.486 7.78427 10.486 7.78428 10.486C7.78428 10.486 7.78428 10.486 7.78428 10.486C7.78429 10.486 7.78429 10.486 7.78429 10.486C7.7843 10.486 7.7843 10.486 7.7843 10.486C7.78431 10.486 7.78431 10.486 7.78431 10.486C7.78432 10.486 7.78432 10.486 7.78432 10.486C7.78432 10.486 7.78433 10.486 7.78433 10.486C7.78433 10.486 7.78434 10.486 7.78434 10.486C7.78434 10.486 7.78435 10.486 7.78435 10.486C7.78435 10.486 7.78435 10.486 7.78436 10.486C7.78436 10.486 7.78436 10.486 7.78437 10.486C7.78437 10.486 7.78437 10.486 7.78438 10.486C7.78438 10.486 7.78438 10.486 7.78439 10.486C7.78439 10.486 7.78439 10.486 7.78439 10.486C7.7844 10.486 7.7844 10.486 7.7844 10.486C7.78441 10.486 7.78441 10.486 7.78441 10.486C7.78442 10.486 7.78442 10.486 7.78442 10.486C7.78443 10.486 7.78443 10.486 7.78443 10.486C7.78443 10.486 7.78444 10.486 7.78444 10.486C7.78444 10.486 7.78445 10.486 7.78445 10.486C7.78445 10.486 7.78446 10.486 7.78446 10.486C7.78446 10.486 7.78446 10.486 7.78447 10.486C7.78447 10.486 7.78447 10.486 7.78448 10.486C7.78448 10.486 7.78448 10.486 7.78449 10.486C7.78449 10.486 7.78449 10.486 7.7845 10.486C7.7845 10.486 7.7845 10.486 7.7845 10.486C7.78451 10.486 7.78451 10.486 7.78451 10.486C7.78452 10.486 7.78452 10.486 7.78452 10.486C7.78453 10.486 7.78453 10.486 7.78453 10.486C7.78453 10.486 7.78454 10.486 7.78454 10.486C7.78454 10.486 7.78455 10.486 7.78455 10.486C7.78455 10.486 7.78456 10.486 7.78456 10.486C7.78456 10.486 7.78457 10.486 7.78457 10.486C7.78457 10.486 7.78457 10.486 7.78458 10.486C7.78458 10.486 7.78458 10.486 7.78459 10.486C7.78459 10.486 7.78459 10.486 7.7846 10.486C7.7846 10.486 7.7846 10.486 7.78461 10.486C7.78461 10.486 7.78461 10.486 7.78461 10.486C7.78462 10.486 7.78462 10.486 7.78462 10.486C7.78463 10.486 7.78463 10.486 7.78463 10.486C7.78464 10.486 7.78464 10.486 7.78464 10.486C7.78465 10.486 7.78465 10.486 7.78465 10.486C7.78465 10.486 7.78466 10.486 7.78466 10.486C7.78466 10.486 7.78467 10.486 7.78467 10.486C7.78467 10.486 7.78468 10.486 7.78468 10.486C7.78468 10.486 7.78468 10.486 7.78469 10.486C7.78469 10.486 7.78469 10.486 7.7847 10.486C7.7847 10.486 7.7847 10.486 7.78471 10.486C7.78471 10.486 7.78471 10.486 7.78472 10.486C7.78472 10.486 7.78472 10.486 7.78472 10.486C7.78473 10.486 7.78473 10.486 7.78473 10.486C7.78474 10.486 7.78474 10.486 7.78474 10.486C7.78475 10.486 7.78475 10.486 7.78475 10.486C7.78475 10.486 7.78476 10.486 7.78476 10.486C7.78476 10.486 7.78477 10.486 7.78477 10.486C7.78477 10.486 7.78478 10.486 7.78478 10.486C7.78478 10.486 7.78479 10.486 7.78479 10.486V10.086ZM7.77979 10.086C7.47209 10.086 7.22292 10.3354 7.22292 10.643H7.62292C7.62292 10.5562 7.69312 10.486 7.77979 10.486V10.086ZM7.22292 10.643C7.22292 10.9507 7.47209 11.2 7.77979 11.2V10.8C7.69312 10.8 7.62292 10.7299 7.62292 10.643H7.22292ZM7.77979 11.2C7.77979 11.2 7.7798 11.2 7.7798 11.2C7.7798 11.2 7.77981 11.2 7.77981 11.2C7.77981 11.2 7.77982 11.2 7.77982 11.2C7.77982 11.2 7.77983 11.2 7.77983 11.2C7.77984 11.2 7.77984 11.2 7.77984 11.2C7.77985 11.2 7.77985 11.2 7.77985 11.2C7.77986 11.2 7.77986 11.2 7.77986 11.2C7.77987 11.2 7.77987 11.2 7.77988 11.2C7.77988 11.2 7.77988 11.2 7.77989 11.2C7.77989 11.2 7.77989 11.2 7.7799 11.2C7.7799 11.2 7.7799 11.2 7.77991 11.2C7.77991 11.2 7.77992 11.2 7.77992 11.2C7.77992 11.2 7.77993 11.2 7.77993 11.2C7.77993 11.2 7.77994 11.2 7.77994 11.2C7.77994 11.2 7.77995 11.2 7.77995 11.2C7.77996 11.2 7.77996 11.2 7.77996 11.2C7.77997 11.2 7.77997 11.2 7.77997 11.2C7.77998 11.2 7.77998 11.2 7.77998 11.2C7.77999 11.2 7.77999 11.2 7.78 11.2C7.78 11.2 7.78 11.2 7.78001 11.2C7.78001 11.2 7.78001 11.2 7.78002 11.2C7.78002 11.2 7.78002 11.2 7.78003 11.2C7.78003 11.2 7.78004 11.2 7.78004 11.2C7.78004 11.2 7.78005 11.2 7.78005 11.2C7.78005 11.2 7.78006 11.2 7.78006 11.2C7.78006 11.2 7.78007 11.2 7.78007 11.2C7.78008 11.2 7.78008 11.2 7.78008 11.2C7.78009 11.2 7.78009 11.2 7.78009 11.2C7.7801 11.2 7.7801 11.2 7.7801 11.2C7.78011 11.2 7.78011 11.2 7.78011 11.2C7.78012 11.2 7.78012 11.2 7.78013 11.2C7.78013 11.2 7.78013 11.2 7.78014 11.2C7.78014 11.2 7.78014 11.2 7.78015 11.2C7.78015 11.2 7.78015 11.2 7.78016 11.2C7.78016 11.2 7.78017 11.2 7.78017 11.2C7.78017 11.2 7.78018 11.2 7.78018 11.2C7.78018 11.2 7.78019 11.2 7.78019 11.2C7.78019 11.2 7.7802 11.2 7.7802 11.2C7.7802 11.2 7.78021 11.2 7.78021 11.2C7.78022 11.2 7.78022 11.2 7.78022 11.2C7.78023 11.2 7.78023 11.2 7.78023 11.2C7.78024 11.2 7.78024 11.2 7.78024 11.2C7.78025 11.2 7.78025 11.2 7.78025 11.2C7.78026 11.2 7.78026 11.2 7.78027 11.2C7.78027 11.2 7.78027 11.2 7.78028 11.2C7.78028 11.2 7.78028 11.2 7.78029 11.2C7.78029 11.2 7.78029 11.2 7.7803 11.2C7.7803 11.2 7.7803 11.2 7.78031 11.2C7.78031 11.2 7.78031 11.2 7.78032 11.2C7.78032 11.2 7.78033 11.2 7.78033 11.2C7.78033 11.2 7.78034 11.2 7.78034 11.2C7.78034 11.2 7.78035 11.2 7.78035 11.2C7.78035 11.2 7.78036 11.2 7.78036 11.2C7.78036 11.2 7.78037 11.2 7.78037 11.2C7.78038 11.2 7.78038 11.2 7.78038 11.2C7.78039 11.2 7.78039 11.2 7.78039 11.2C7.7804 11.2 7.7804 11.2 7.7804 11.2C7.78041 11.2 7.78041 11.2 7.78041 11.2C7.78042 11.2 7.78042 11.2 7.78043 11.2C7.78043 11.2 7.78043 11.2 7.78044 11.2C7.78044 11.2 7.78044 11.2 7.78045 11.2C7.78045 11.2 7.78045 11.2 7.78046 11.2C7.78046 11.2 7.78046 11.2 7.78047 11.2C7.78047 11.2 7.78047 11.2 7.78048 11.2C7.78048 11.2 7.78049 11.2 7.78049 11.2C7.78049 11.2 7.7805 11.2 7.7805 11.2C7.7805 11.2 7.78051 11.2 7.78051 11.2C7.78051 11.2 7.78052 11.2 7.78052 11.2C7.78052 11.2 7.78053 11.2 7.78053 11.2C7.78053 11.2 7.78054 11.2 7.78054 11.2C7.78054 11.2 7.78055 11.2 7.78055 11.2C7.78056 11.2 7.78056 11.2 7.78056 11.2C7.78057 11.2 7.78057 11.2 7.78057 11.2C7.78058 11.2 7.78058 11.2 7.78058 11.2C7.78059 11.2 7.78059 11.2 7.78059 11.2C7.7806 11.2 7.7806 11.2 7.7806 11.2C7.78061 11.2 7.78061 11.2 7.78062 11.2C7.78062 11.2 7.78062 11.2 7.78063 11.2C7.78063 11.2 7.78063 11.2 7.78064 11.2C7.78064 11.2 7.78064 11.2 7.78065 11.2C7.78065 11.2 7.78065 11.2 7.78066 11.2C7.78066 11.2 7.78066 11.2 7.78067 11.2C7.78067 11.2 7.78067 11.2 7.78068 11.2C7.78068 11.2 7.78068 11.2 7.78069 11.2C7.78069 11.2 7.7807 11.2 7.7807 11.2C7.7807 11.2 7.78071 11.2 7.78071 11.2C7.78071 11.2 7.78072 11.2 7.78072 11.2C7.78072 11.2 7.78073 11.2 7.78073 11.2C7.78073 11.2 7.78074 11.2 7.78074 11.2C7.78074 11.2 7.78075 11.2 7.78075 11.2C7.78076 11.2 7.78076 11.2 7.78076 11.2C7.78077 11.2 7.78077 11.2 7.78077 11.2C7.78078 11.2 7.78078 11.2 7.78078 11.2C7.78079 11.2 7.78079 11.2 7.78079 11.2C7.7808 11.2 7.7808 11.2 7.7808 11.2C7.78081 11.2 7.78081 11.2 7.78081 11.2C7.78082 11.2 7.78082 11.2 7.78082 11.2C7.78083 11.2 7.78083 11.2 7.78084 11.2C7.78084 11.2 7.78084 11.2 7.78085 11.2C7.78085 11.2 7.78085 11.2 7.78086 11.2C7.78086 11.2 7.78086 11.2 7.78087 11.2C7.78087 11.2 7.78087 11.2 7.78088 11.2C7.78088 11.2 7.78088 11.2 7.78089 11.2C7.78089 11.2 7.78089 11.2 7.7809 11.2C7.7809 11.2 7.7809 11.2 7.78091 11.2C7.78091 11.2 7.78091 11.2 7.78092 11.2C7.78092 11.2 7.78093 11.2 7.78093 11.2C7.78093 11.2 7.78094 11.2 7.78094 11.2C7.78094 11.2 7.78095 11.2 7.78095 11.2C7.78095 11.2 7.78096 11.2 7.78096 11.2C7.78096 11.2 7.78097 11.2 7.78097 11.2C7.78097 11.2 7.78098 11.2 7.78098 11.2C7.78098 11.2 7.78099 11.2 7.78099 11.2C7.78099 11.2 7.781 11.2 7.781 11.2C7.781 11.2 7.78101 11.2 7.78101 11.2C7.78101 11.2 7.78102 11.2 7.78102 11.2C7.78103 11.2 7.78103 11.2 7.78103 11.2C7.78104 11.2 7.78104 11.2 7.78104 11.2C7.78105 11.2 7.78105 11.2 7.78105 11.2C7.78106 11.2 7.78106 11.2 7.78106 11.2C7.78107 11.2 7.78107 11.2 7.78107 11.2C7.78108 11.2 7.78108 11.2 7.78108 11.2C7.78109 11.2 7.78109 11.2 7.78109 11.2C7.7811 11.2 7.7811 11.2 7.7811 11.2C7.78111 11.2 7.78111 11.2 7.78111 11.2C7.78112 11.2 7.78112 11.2 7.78113 11.2C7.78113 11.2 7.78113 11.2 7.78114 11.2C7.78114 11.2 7.78114 11.2 7.78115 11.2C7.78115 11.2 7.78115 11.2 7.78116 11.2C7.78116 11.2 7.78116 11.2 7.78117 11.2C7.78117 11.2 7.78117 11.2 7.78118 11.2C7.78118 11.2 7.78118 11.2 7.78119 11.2C7.78119 11.2 7.78119 11.2 7.7812 11.2C7.7812 11.2 7.7812 11.2 7.78121 11.2C7.78121 11.2 7.78121 11.2 7.78122 11.2C7.78122 11.2 7.78122 11.2 7.78123 11.2C7.78123 11.2 7.78123 11.2 7.78124 11.2C7.78124 11.2 7.78125 11.2 7.78125 11.2C7.78125 11.2 7.78126 11.2 7.78126 11.2C7.78126 11.2 7.78127 11.2 7.78127 11.2C7.78127 11.2 7.78128 11.2 7.78128 11.2C7.78128 11.2 7.78129 11.2 7.78129 11.2C7.78129 11.2 7.7813 11.2 7.7813 11.2C7.7813 11.2 7.78131 11.2 7.78131 11.2C7.78131 11.2 7.78132 11.2 7.78132 11.2C7.78132 11.2 7.78133 11.2 7.78133 11.2C7.78133 11.2 7.78134 11.2 7.78134 11.2C7.78134 11.2 7.78135 11.2 7.78135 11.2C7.78135 11.2 7.78136 11.2 7.78136 11.2C7.78136 11.2 7.78137 11.2 7.78137 11.2C7.78137 11.2 7.78138 11.2 7.78138 11.2C7.78138 11.2 7.78139 11.2 7.78139 11.2C7.7814 11.2 7.7814 11.2 7.7814 11.2C7.78141 11.2 7.78141 11.2 7.78141 11.2C7.78142 11.2 7.78142 11.2 7.78142 11.2C7.78143 11.2 7.78143 11.2 7.78143 11.2C7.78144 11.2 7.78144 11.2 7.78144 11.2C7.78145 11.2 7.78145 11.2 7.78145 11.2C7.78146 11.2 7.78146 11.2 7.78146 11.2C7.78147 11.2 7.78147 11.2 7.78147 11.2C7.78148 11.2 7.78148 11.2 7.78148 11.2C7.78149 11.2 7.78149 11.2 7.78149 11.2C7.7815 11.2 7.7815 11.2 7.7815 11.2C7.78151 11.2 7.78151 11.2 7.78151 11.2C7.78152 11.2 7.78152 11.2 7.78152 11.2C7.78153 11.2 7.78153 11.2 7.78153 11.2C7.78154 11.2 7.78154 11.2 7.78155 11.2C7.78155 11.2 7.78155 11.2 7.78156 11.2C7.78156 11.2 7.78156 11.2 7.78157 11.2C7.78157 11.2 7.78157 11.2 7.78158 11.2C7.78158 11.2 7.78158 11.2 7.78159 11.2C7.78159 11.2 7.78159 11.2 7.7816 11.2C7.7816 11.2 7.7816 11.2 7.78161 11.2C7.78161 11.2 7.78161 11.2 7.78162 11.2C7.78162 11.2 7.78162 11.2 7.78163 11.2C7.78163 11.2 7.78163 11.2 7.78164 11.2C7.78164 11.2 7.78164 11.2 7.78165 11.2C7.78165 11.2 7.78165 11.2 7.78166 11.2C7.78166 11.2 7.78166 11.2 7.78167 11.2C7.78167 11.2 7.78167 11.2 7.78168 11.2C7.78168 11.2 7.78168 11.2 7.78169 11.2C7.78169 11.2 7.78169 11.2 7.7817 11.2C7.7817 11.2 7.7817 11.2 7.78171 11.2C7.78171 11.2 7.78171 11.2 7.78172 11.2C7.78172 11.2 7.78172 11.2 7.78173 11.2C7.78173 11.2 7.78173 11.2 7.78174 11.2C7.78174 11.2 7.78174 11.2 7.78175 11.2C7.78175 11.2 7.78175 11.2 7.78176 11.2C7.78176 11.2 7.78176 11.2 7.78177 11.2C7.78177 11.2 7.78177 11.2 7.78178 11.2C7.78178 11.2 7.78179 11.2 7.78179 11.2C7.78179 11.2 7.7818 11.2 7.7818 11.2C7.7818 11.2 7.78181 11.2 7.78181 11.2C7.78181 11.2 7.78182 11.2 7.78182 11.2C7.78182 11.2 7.78183 11.2 7.78183 11.2C7.78183 11.2 7.78184 11.2 7.78184 11.2C7.78184 11.2 7.78185 11.2 7.78185 11.2C7.78185 11.2 7.78186 11.2 7.78186 11.2C7.78186 11.2 7.78187 11.2 7.78187 11.2C7.78187 11.2 7.78188 11.2 7.78188 11.2C7.78188 11.2 7.78189 11.2 7.78189 11.2C7.78189 11.2 7.7819 11.2 7.7819 11.2C7.7819 11.2 7.78191 11.2 7.78191 11.2C7.78191 11.2 7.78192 11.2 7.78192 11.2C7.78192 11.2 7.78193 11.2 7.78193 11.2C7.78193 11.2 7.78194 11.2 7.78194 11.2C7.78194 11.2 7.78195 11.2 7.78195 11.2C7.78195 11.2 7.78196 11.2 7.78196 11.2C7.78196 11.2 7.78197 11.2 7.78197 11.2C7.78197 11.2 7.78198 11.2 7.78198 11.2C7.78198 11.2 7.78199 11.2 7.78199 11.2C7.78199 11.2 7.782 11.2 7.782 11.2C7.782 11.2 7.78201 11.2 7.78201 11.2C7.78201 11.2 7.78202 11.2 7.78202 11.2C7.78202 11.2 7.78203 11.2 7.78203 11.2C7.78203 11.2 7.78204 11.2 7.78204 11.2C7.78204 11.2 7.78205 11.2 7.78205 11.2C7.78205 11.2 7.78206 11.2 7.78206 11.2C7.78206 11.2 7.78207 11.2 7.78207 11.2C7.78207 11.2 7.78208 11.2 7.78208 11.2C7.78208 11.2 7.78209 11.2 7.78209 11.2C7.78209 11.2 7.7821 11.2 7.7821 11.2C7.78211 11.2 7.78211 11.2 7.78211 11.2C7.78212 11.2 7.78212 11.2 7.78212 11.2C7.78213 11.2 7.78213 11.2 7.78213 11.2C7.78214 11.2 7.78214 11.2 7.78214 11.2C7.78215 11.2 7.78215 11.2 7.78215 11.2C7.78216 11.2 7.78216 11.2 7.78216 11.2C7.78217 11.2 7.78217 11.2 7.78217 11.2C7.78218 11.2 7.78218 11.2 7.78218 11.2C7.78219 11.2 7.78219 11.2 7.78219 11.2C7.7822 11.2 7.7822 11.2 7.7822 11.2C7.78221 11.2 7.78221 11.2 7.78221 11.2C7.78222 11.2 7.78222 11.2 7.78222 11.2C7.78223 11.2 7.78223 11.2 7.78223 11.2C7.78224 11.2 7.78224 11.2 7.78224 11.2C7.78225 11.2 7.78225 11.2 7.78225 11.2C7.78226 11.2 7.78226 11.2 7.78226 11.2C7.78227 11.2 7.78227 11.2 7.78227 11.2C7.78228 11.2 7.78228 11.2 7.78228 11.2C7.78229 11.2 7.78229 11.2 7.78229 11.2C7.7823 11.2 7.7823 11.2 7.7823 11.2C7.78231 11.2 7.78231 11.2 7.78231 11.2C7.78232 11.2 7.78232 11.2 7.78232 11.2C7.78233 11.2 7.78233 11.2 7.78233 11.2C7.78234 11.2 7.78234 11.2 7.78234 11.2C7.78235 11.2 7.78235 11.2 7.78235 11.2C7.78236 11.2 7.78236 11.2 7.78236 11.2C7.78237 11.2 7.78237 11.2 7.78237 11.2C7.78238 11.2 7.78238 11.2 7.78238 11.2C7.78239 11.2 7.78239 11.2 7.78239 11.2C7.7824 11.2 7.7824 11.2 7.7824 11.2C7.78241 11.2 7.78241 11.2 7.78241 11.2C7.78242 11.2 7.78242 11.2 7.78242 11.2C7.78243 11.2 7.78243 11.2 7.78243 11.2C7.78244 11.2 7.78244 11.2 7.78244 11.2C7.78245 11.2 7.78245 11.2 7.78245 11.2C7.78246 11.2 7.78246 11.2 7.78246 11.2C7.78247 11.2 7.78247 11.2 7.78247 11.2C7.78248 11.2 7.78248 11.2 7.78249 11.2C7.78249 11.2 7.78249 11.2 7.7825 11.2C7.7825 11.2 7.7825 11.2 7.78251 11.2C7.78251 11.2 7.78251 11.2 7.78252 11.2C7.78252 11.2 7.78252 11.2 7.78253 11.2C7.78253 11.2 7.78253 11.2 7.78254 11.2C7.78254 11.2 7.78254 11.2 7.78255 11.2C7.78255 11.2 7.78255 11.2 7.78256 11.2C7.78256 11.2 7.78256 11.2 7.78257 11.2C7.78257 11.2 7.78257 11.2 7.78258 11.2C7.78258 11.2 7.78258 11.2 7.78259 11.2C7.78259 11.2 7.78259 11.2 7.7826 11.2C7.7826 11.2 7.7826 11.2 7.78261 11.2C7.78261 11.2 7.78261 11.2 7.78262 11.2C7.78262 11.2 7.78262 11.2 7.78263 11.2C7.78263 11.2 7.78263 11.2 7.78264 11.2C7.78264 11.2 7.78264 11.2 7.78265 11.2C7.78265 11.2 7.78265 11.2 7.78266 11.2C7.78266 11.2 7.78266 11.2 7.78267 11.2C7.78267 11.2 7.78267 11.2 7.78268 11.2C7.78268 11.2 7.78268 11.2 7.78269 11.2C7.78269 11.2 7.78269 11.2 7.7827 11.2C7.7827 11.2 7.7827 11.2 7.78271 11.2C7.78271 11.2 7.78271 11.2 7.78272 11.2C7.78272 11.2 7.78272 11.2 7.78273 11.2C7.78273 11.2 7.78273 11.2 7.78274 11.2C7.78274 11.2 7.78274 11.2 7.78275 11.2C7.78275 11.2 7.78275 11.2 7.78276 11.2C7.78276 11.2 7.78276 11.2 7.78277 11.2C7.78277 11.2 7.78277 11.2 7.78278 11.2C7.78278 11.2 7.78278 11.2 7.78279 11.2C7.78279 11.2 7.78279 11.2 7.7828 11.2C7.7828 11.2 7.7828 11.2 7.78281 11.2C7.78281 11.2 7.78281 11.2 7.78282 11.2C7.78282 11.2 7.78282 11.2 7.78283 11.2C7.78283 11.2 7.78283 11.2 7.78284 11.2C7.78284 11.2 7.78284 11.2 7.78285 11.2C7.78285 11.2 7.78285 11.2 7.78286 11.2C7.78286 11.2 7.78286 11.2 7.78287 11.2C7.78287 11.2 7.78287 11.2 7.78288 11.2C7.78288 11.2 7.78288 11.2 7.78289 11.2C7.78289 11.2 7.78289 11.2 7.7829 11.2C7.7829 11.2 7.7829 11.2 7.78291 11.2C7.78291 11.2 7.78292 11.2 7.78292 11.2C7.78292 11.2 7.78293 11.2 7.78293 11.2C7.78293 11.2 7.78294 11.2 7.78294 11.2C7.78294 11.2 7.78295 11.2 7.78295 11.2C7.78295 11.2 7.78296 11.2 7.78296 11.2C7.78296 11.2 7.78297 11.2 7.78297 11.2C7.78297 11.2 7.78298 11.2 7.78298 11.2C7.78298 11.2 7.78299 11.2 7.78299 11.2C7.78299 11.2 7.783 11.2 7.783 11.2C7.783 11.2 7.78301 11.2 7.78301 11.2C7.78301 11.2 7.78302 11.2 7.78302 11.2C7.78302 11.2 7.78303 11.2 7.78303 11.2C7.78303 11.2 7.78304 11.2 7.78304 11.2C7.78304 11.2 7.78305 11.2 7.78305 11.2C7.78305 11.2 7.78306 11.2 7.78306 11.2C7.78306 11.2 7.78307 11.2 7.78307 11.2C7.78307 11.2 7.78308 11.2 7.78308 11.2C7.78308 11.2 7.78309 11.2 7.78309 11.2C7.78309 11.2 7.7831 11.2 7.7831 11.2C7.7831 11.2 7.78311 11.2 7.78311 11.2C7.78311 11.2 7.78312 11.2 7.78312 11.2C7.78312 11.2 7.78313 11.2 7.78313 11.2C7.78313 11.2 7.78314 11.2 7.78314 11.2C7.78314 11.2 7.78315 11.2 7.78315 11.2C7.78315 11.2 7.78316 11.2 7.78316 11.2C7.78316 11.2 7.78317 11.2 7.78317 11.2C7.78317 11.2 7.78318 11.2 7.78318 11.2C7.78319 11.2 7.78319 11.2 7.78319 11.2C7.7832 11.2 7.7832 11.2 7.7832 11.2C7.78321 11.2 7.78321 11.2 7.78321 11.2C7.78322 11.2 7.78322 11.2 7.78322 11.2C7.78323 11.2 7.78323 11.2 7.78323 11.2C7.78324 11.2 7.78324 11.2 7.78324 11.2C7.78325 11.2 7.78325 11.2 7.78325 11.2C7.78326 11.2 7.78326 11.2 7.78326 11.2C7.78327 11.2 7.78327 11.2 7.78327 11.2C7.78328 11.2 7.78328 11.2 7.78328 11.2C7.78329 11.2 7.78329 11.2 7.78329 11.2C7.7833 11.2 7.7833 11.2 7.7833 11.2C7.78331 11.2 7.78331 11.2 7.78331 11.2C7.78332 11.2 7.78332 11.2 7.78332 11.2C7.78333 11.2 7.78333 11.2 7.78333 11.2C7.78334 11.2 7.78334 11.2 7.78334 11.2C7.78335 11.2 7.78335 11.2 7.78335 11.2C7.78336 11.2 7.78336 11.2 7.78336 11.2C7.78337 11.2 7.78337 11.2 7.78337 11.2C7.78338 11.2 7.78338 11.2 7.78338 11.2C7.78339 11.2 7.78339 11.2 7.78339 11.2C7.7834 11.2 7.7834 11.2 7.78341 11.2C7.78341 11.2 7.78341 11.2 7.78342 11.2C7.78342 11.2 7.78342 11.2 7.78343 11.2C7.78343 11.2 7.78343 11.2 7.78344 11.2C7.78344 11.2 7.78344 11.2 7.78345 11.2C7.78345 11.2 7.78345 11.2 7.78346 11.2C7.78346 11.2 7.78346 11.2 7.78347 11.2C7.78347 11.2 7.78347 11.2 7.78348 11.2C7.78348 11.2 7.78348 11.2 7.78349 11.2C7.78349 11.2 7.78349 11.2 7.7835 11.2C7.7835 11.2 7.7835 11.2 7.78351 11.2C7.78351 11.2 7.78351 11.2 7.78352 11.2C7.78352 11.2 7.78352 11.2 7.78353 11.2C7.78353 11.2 7.78353 11.2 7.78354 11.2C7.78354 11.2 7.78355 11.2 7.78355 11.2C7.78355 11.2 7.78356 11.2 7.78356 11.2C7.78356 11.2 7.78357 11.2 7.78357 11.2C7.78357 11.2 7.78358 11.2 7.78358 11.2C7.78358 11.2 7.78359 11.2 7.78359 11.2C7.78359 11.2 7.7836 11.2 7.7836 11.2C7.7836 11.2 7.78361 11.2 7.78361 11.2C7.78361 11.2 7.78362 11.2 7.78362 11.2C7.78362 11.2 7.78363 11.2 7.78363 11.2C7.78363 11.2 7.78364 11.2 7.78364 11.2C7.78364 11.2 7.78365 11.2 7.78365 11.2C7.78365 11.2 7.78366 11.2 7.78366 11.2C7.78366 11.2 7.78367 11.2 7.78367 11.2C7.78367 11.2 7.78368 11.2 7.78368 11.2C7.78369 11.2 7.78369 11.2 7.78369 11.2C7.7837 11.2 7.7837 11.2 7.7837 11.2C7.78371 11.2 7.78371 11.2 7.78371 11.2C7.78372 11.2 7.78372 11.2 7.78372 11.2C7.78373 11.2 7.78373 11.2 7.78373 11.2C7.78374 11.2 7.78374 11.2 7.78374 11.2C7.78375 11.2 7.78375 11.2 7.78375 11.2C7.78376 11.2 7.78376 11.2 7.78376 11.2C7.78377 11.2 7.78377 11.2 7.78377 11.2C7.78378 11.2 7.78378 11.2 7.78378 11.2C7.78379 11.2 7.78379 11.2 7.78379 11.2C7.7838 11.2 7.7838 11.2 7.78381 11.2C7.78381 11.2 7.78381 11.2 7.78382 11.2C7.78382 11.2 7.78382 11.2 7.78383 11.2C7.78383 11.2 7.78383 11.2 7.78384 11.2C7.78384 11.2 7.78384 11.2 7.78385 11.2C7.78385 11.2 7.78385 11.2 7.78386 11.2C7.78386 11.2 7.78386 11.2 7.78387 11.2C7.78387 11.2 7.78387 11.2 7.78388 11.2C7.78388 11.2 7.78388 11.2 7.78389 11.2C7.78389 11.2 7.78389 11.2 7.7839 11.2C7.7839 11.2 7.78391 11.2 7.78391 11.2C7.78391 11.2 7.78392 11.2 7.78392 11.2C7.78392 11.2 7.78393 11.2 7.78393 11.2C7.78393 11.2 7.78394 11.2 7.78394 11.2C7.78394 11.2 7.78395 11.2 7.78395 11.2C7.78395 11.2 7.78396 11.2 7.78396 11.2C7.78396 11.2 7.78397 11.2 7.78397 11.2C7.78397 11.2 7.78398 11.2 7.78398 11.2C7.78398 11.2 7.78399 11.2 7.78399 11.2C7.784 11.2 7.784 11.2 7.784 11.2C7.78401 11.2 7.78401 11.2 7.78401 11.2C7.78402 11.2 7.78402 11.2 7.78402 11.2C7.78403 11.2 7.78403 11.2 7.78403 11.2C7.78404 11.2 7.78404 11.2 7.78404 11.2C7.78405 11.2 7.78405 11.2 7.78405 11.2C7.78406 11.2 7.78406 11.2 7.78406 11.2C7.78407 11.2 7.78407 11.2 7.78407 11.2C7.78408 11.2 7.78408 11.2 7.78409 11.2C7.78409 11.2 7.78409 11.2 7.7841 11.2C7.7841 11.2 7.7841 11.2 7.78411 11.2C7.78411 11.2 7.78411 11.2 7.78412 11.2C7.78412 11.2 7.78412 11.2 7.78413 11.2C7.78413 11.2 7.78413 11.2 7.78414 11.2C7.78414 11.2 7.78414 11.2 7.78415 11.2C7.78415 11.2 7.78415 11.2 7.78416 11.2C7.78416 11.2 7.78417 11.2 7.78417 11.2C7.78417 11.2 7.78418 11.2 7.78418 11.2C7.78418 11.2 7.78419 11.2 7.78419 11.2C7.78419 11.2 7.7842 11.2 7.7842 11.2C7.7842 11.2 7.78421 11.2 7.78421 11.2C7.78421 11.2 7.78422 11.2 7.78422 11.2C7.78422 11.2 7.78423 11.2 7.78423 11.2C7.78424 11.2 7.78424 11.2 7.78424 11.2C7.78425 11.2 7.78425 11.2 7.78425 11.2C7.78426 11.2 7.78426 11.2 7.78426 11.2C7.78427 11.2 7.78427 11.2 7.78427 11.2C7.78428 11.2 7.78428 11.2 7.78428 11.2C7.78429 11.2 7.78429 11.2 7.7843 11.2C7.7843 11.2 7.7843 11.2 7.78431 11.2C7.78431 11.2 7.78431 11.2 7.78432 11.2C7.78432 11.2 7.78432 11.2 7.78433 11.2C7.78433 11.2 7.78433 11.2 7.78434 11.2C7.78434 11.2 7.78434 11.2 7.78435 11.2C7.78435 11.2 7.78435 11.2 7.78436 11.2C7.78436 11.2 7.78437 11.2 7.78437 11.2C7.78437 11.2 7.78438 11.2 7.78438 11.2C7.78438 11.2 7.78439 11.2 7.78439 11.2C7.78439 11.2 7.7844 11.2 7.7844 11.2C7.7844 11.2 7.78441 11.2 7.78441 11.2C7.78441 11.2 7.78442 11.2 7.78442 11.2C7.78443 11.2 7.78443 11.2 7.78443 11.2C7.78444 11.2 7.78444 11.2 7.78444 11.2C7.78445 11.2 7.78445 11.2 7.78445 11.2C7.78446 11.2 7.78446 11.2 7.78446 11.2C7.78447 11.2 7.78447 11.2 7.78447 11.2C7.78448 11.2 7.78448 11.2 7.78449 11.2C7.78449 11.2 7.78449 11.2 7.7845 11.2C7.7845 11.2 7.7845 11.2 7.78451 11.2C7.78451 11.2 7.78451 11.2 7.78452 11.2C7.78452 11.2 7.78452 11.2 7.78453 11.2C7.78453 11.2 7.78453 11.2 7.78454 11.2C7.78454 11.2 7.78455 11.2 7.78455 11.2C7.78455 11.2 7.78456 11.2 7.78456 11.2C7.78456 11.2 7.78457 11.2 7.78457 11.2C7.78457 11.2 7.78458 11.2 7.78458 11.2C7.78458 11.2 7.78459 11.2 7.78459 11.2C7.7846 11.2 7.7846 11.2 7.7846 11.2C7.78461 11.2 7.78461 11.2 7.78461 11.2C7.78462 11.2 7.78462 11.2 7.78462 11.2C7.78463 11.2 7.78463 11.2 7.78463 11.2C7.78464 11.2 7.78464 11.2 7.78465 11.2C7.78465 11.2 7.78465 11.2 7.78466 11.2C7.78466 11.2 7.78466 11.2 7.78467 11.2C7.78467 11.2 7.78467 11.2 7.78468 11.2C7.78468 11.2 7.78468 11.2 7.78469 11.2C7.78469 11.2 7.7847 11.2 7.7847 11.2C7.7847 11.2 7.78471 11.2 7.78471 11.2C7.78471 11.2 7.78472 11.2 7.78472 11.2C7.78472 11.2 7.78473 11.2 7.78473 11.2C7.78473 11.2 7.78474 11.2 7.78474 11.2C7.78475 11.2 7.78475 11.2 7.78475 11.2C7.78476 11.2 7.78476 11.2 7.78476 11.2C7.78477 11.2 7.78477 11.2 7.78477 11.2C7.78478 11.2 7.78478 11.2 7.78478 11.2C7.78479 11.2 7.78479 11.2 7.7848 11.2C7.7848 11.2 7.7848 11.2 7.78481 11.2C7.78481 11.2 7.78481 11.2 7.78482 11.2C7.78482 11.2 7.78482 11.2 7.78483 11.2C7.78483 11.2 7.78484 11.2 7.78484 11.2C7.78484 11.2 7.78485 11.2 7.78485 11.2C7.78485 11.2 7.78486 11.2 7.78486 11.2C7.78486 11.2 7.78487 11.2 7.78487 11.2C7.78487 11.2 7.78488 11.2 7.78488 11.2C7.78489 11.2 7.78489 11.2 7.78489 11.2C7.7849 11.2 7.7849 11.2 7.7849 11.2C7.78491 11.2 7.78491 11.2 7.78491 11.2C7.78492 11.2 7.78492 11.2 7.78493 11.2C7.78493 11.2 7.78493 11.2 7.78494 11.2C7.78494 11.2 7.78494 11.2 7.78495 11.2C7.78495 11.2 7.78496 11.2 7.78496 11.2C7.78496 11.2 7.78497 11.2 7.78497 11.2C7.78497 11.2 7.78498 11.2 7.78498 11.2C7.78498 11.2 7.78499 11.2 7.78499 11.2C7.78499 11.2 7.785 11.2 7.785 11.2C7.78501 11.2 7.78501 11.2 7.78501 11.2C7.78502 11.2 7.78502 11.2 7.78502 11.2C7.78503 11.2 7.78503 11.2 7.78504 11.2C7.78504 11.2 7.78504 11.2 7.78505 11.2C7.78505 11.2 7.78505 11.2 7.78506 11.2C7.78506 11.2 7.78506 11.2 7.78507 11.2C7.78507 11.2 7.78508 11.2 7.78508 11.2C7.78508 11.2 7.78509 11.2 7.78509 11.2C7.78509 11.2 7.7851 11.2 7.7851 11.2V10.8C7.7851 10.8 7.78509 10.8 7.78509 10.8C7.78509 10.8 7.78508 10.8 7.78508 10.8C7.78508 10.8 7.78507 10.8 7.78507 10.8C7.78506 10.8 7.78506 10.8 7.78506 10.8C7.78505 10.8 7.78505 10.8 7.78505 10.8C7.78504 10.8 7.78504 10.8 7.78504 10.8C7.78503 10.8 7.78503 10.8 7.78502 10.8C7.78502 10.8 7.78502 10.8 7.78501 10.8C7.78501 10.8 7.78501 10.8 7.785 10.8C7.785 10.8 7.78499 10.8 7.78499 10.8C7.78499 10.8 7.78498 10.8 7.78498 10.8C7.78498 10.8 7.78497 10.8 7.78497 10.8C7.78497 10.8 7.78496 10.8 7.78496 10.8C7.78496 10.8 7.78495 10.8 7.78495 10.8C7.78494 10.8 7.78494 10.8 7.78494 10.8C7.78493 10.8 7.78493 10.8 7.78493 10.8C7.78492 10.8 7.78492 10.8 7.78491 10.8C7.78491 10.8 7.78491 10.8 7.7849 10.8C7.7849 10.8 7.7849 10.8 7.78489 10.8C7.78489 10.8 7.78489 10.8 7.78488 10.8C7.78488 10.8 7.78487 10.8 7.78487 10.8C7.78487 10.8 7.78486 10.8 7.78486 10.8C7.78486 10.8 7.78485 10.8 7.78485 10.8C7.78485 10.8 7.78484 10.8 7.78484 10.8C7.78484 10.8 7.78483 10.8 7.78483 10.8C7.78482 10.8 7.78482 10.8 7.78482 10.8C7.78481 10.8 7.78481 10.8 7.78481 10.8C7.7848 10.8 7.7848 10.8 7.7848 10.8C7.78479 10.8 7.78479 10.8 7.78478 10.8C7.78478 10.8 7.78478 10.8 7.78477 10.8C7.78477 10.8 7.78477 10.8 7.78476 10.8C7.78476 10.8 7.78476 10.8 7.78475 10.8C7.78475 10.8 7.78475 10.8 7.78474 10.8C7.78474 10.8 7.78473 10.8 7.78473 10.8C7.78473 10.8 7.78472 10.8 7.78472 10.8C7.78472 10.8 7.78471 10.8 7.78471 10.8C7.78471 10.8 7.7847 10.8 7.7847 10.8C7.7847 10.8 7.78469 10.8 7.78469 10.8C7.78468 10.8 7.78468 10.8 7.78468 10.8C7.78467 10.8 7.78467 10.8 7.78467 10.8C7.78466 10.8 7.78466 10.8 7.78466 10.8C7.78465 10.8 7.78465 10.8 7.78465 10.8C7.78464 10.8 7.78464 10.8 7.78463 10.8C7.78463 10.8 7.78463 10.8 7.78462 10.8C7.78462 10.8 7.78462 10.8 7.78461 10.8C7.78461 10.8 7.78461 10.8 7.7846 10.8C7.7846 10.8 7.7846 10.8 7.78459 10.8C7.78459 10.8 7.78458 10.8 7.78458 10.8C7.78458 10.8 7.78457 10.8 7.78457 10.8C7.78457 10.8 7.78456 10.8 7.78456 10.8C7.78456 10.8 7.78455 10.8 7.78455 10.8C7.78455 10.8 7.78454 10.8 7.78454 10.8C7.78453 10.8 7.78453 10.8 7.78453 10.8C7.78452 10.8 7.78452 10.8 7.78452 10.8C7.78451 10.8 7.78451 10.8 7.78451 10.8C7.7845 10.8 7.7845 10.8 7.7845 10.8C7.78449 10.8 7.78449 10.8 7.78449 10.8C7.78448 10.8 7.78448 10.8 7.78447 10.8C7.78447 10.8 7.78447 10.8 7.78446 10.8C7.78446 10.8 7.78446 10.8 7.78445 10.8C7.78445 10.8 7.78445 10.8 7.78444 10.8C7.78444 10.8 7.78444 10.8 7.78443 10.8C7.78443 10.8 7.78443 10.8 7.78442 10.8C7.78442 10.8 7.78441 10.8 7.78441 10.8C7.78441 10.8 7.7844 10.8 7.7844 10.8C7.7844 10.8 7.78439 10.8 7.78439 10.8C7.78439 10.8 7.78438 10.8 7.78438 10.8C7.78438 10.8 7.78437 10.8 7.78437 10.8C7.78437 10.8 7.78436 10.8 7.78436 10.8C7.78435 10.8 7.78435 10.8 7.78435 10.8C7.78434 10.8 7.78434 10.8 7.78434 10.8C7.78433 10.8 7.78433 10.8 7.78433 10.8C7.78432 10.8 7.78432 10.8 7.78432 10.8C7.78431 10.8 7.78431 10.8 7.78431 10.8C7.7843 10.8 7.7843 10.8 7.7843 10.8C7.78429 10.8 7.78429 10.8 7.78428 10.8C7.78428 10.8 7.78428 10.8 7.78427 10.8C7.78427 10.8 7.78427 10.8 7.78426 10.8C7.78426 10.8 7.78426 10.8 7.78425 10.8C7.78425 10.8 7.78425 10.8 7.78424 10.8C7.78424 10.8 7.78424 10.8 7.78423 10.8C7.78423 10.8 7.78422 10.8 7.78422 10.8C7.78422 10.8 7.78421 10.8 7.78421 10.8C7.78421 10.8 7.7842 10.8 7.7842 10.8C7.7842 10.8 7.78419 10.8 7.78419 10.8C7.78419 10.8 7.78418 10.8 7.78418 10.8C7.78418 10.8 7.78417 10.8 7.78417 10.8C7.78417 10.8 7.78416 10.8 7.78416 10.8C7.78415 10.8 7.78415 10.8 7.78415 10.8C7.78414 10.8 7.78414 10.8 7.78414 10.8C7.78413 10.8 7.78413 10.8 7.78413 10.8C7.78412 10.8 7.78412 10.8 7.78412 10.8C7.78411 10.8 7.78411 10.8 7.78411 10.8C7.7841 10.8 7.7841 10.8 7.7841 10.8C7.78409 10.8 7.78409 10.8 7.78409 10.8C7.78408 10.8 7.78408 10.8 7.78407 10.8C7.78407 10.8 7.78407 10.8 7.78406 10.8C7.78406 10.8 7.78406 10.8 7.78405 10.8C7.78405 10.8 7.78405 10.8 7.78404 10.8C7.78404 10.8 7.78404 10.8 7.78403 10.8C7.78403 10.8 7.78403 10.8 7.78402 10.8C7.78402 10.8 7.78402 10.8 7.78401 10.8C7.78401 10.8 7.78401 10.8 7.784 10.8C7.784 10.8 7.784 10.8 7.78399 10.8C7.78399 10.8 7.78398 10.8 7.78398 10.8C7.78398 10.8 7.78397 10.8 7.78397 10.8C7.78397 10.8 7.78396 10.8 7.78396 10.8C7.78396 10.8 7.78395 10.8 7.78395 10.8C7.78395 10.8 7.78394 10.8 7.78394 10.8C7.78394 10.8 7.78393 10.8 7.78393 10.8C7.78393 10.8 7.78392 10.8 7.78392 10.8C7.78392 10.8 7.78391 10.8 7.78391 10.8C7.78391 10.8 7.7839 10.8 7.7839 10.8C7.78389 10.8 7.78389 10.8 7.78389 10.8C7.78388 10.8 7.78388 10.8 7.78388 10.8C7.78387 10.8 7.78387 10.8 7.78387 10.8C7.78386 10.8 7.78386 10.8 7.78386 10.8C7.78385 10.8 7.78385 10.8 7.78385 10.8C7.78384 10.8 7.78384 10.8 7.78384 10.8C7.78383 10.8 7.78383 10.8 7.78383 10.8C7.78382 10.8 7.78382 10.8 7.78382 10.8C7.78381 10.8 7.78381 10.8 7.78381 10.8C7.7838 10.8 7.7838 10.8 7.78379 10.8C7.78379 10.8 7.78379 10.8 7.78378 10.8C7.78378 10.8 7.78378 10.8 7.78377 10.8C7.78377 10.8 7.78377 10.8 7.78376 10.8C7.78376 10.8 7.78376 10.8 7.78375 10.8C7.78375 10.8 7.78375 10.8 7.78374 10.8C7.78374 10.8 7.78374 10.8 7.78373 10.8C7.78373 10.8 7.78373 10.8 7.78372 10.8C7.78372 10.8 7.78372 10.8 7.78371 10.8C7.78371 10.8 7.78371 10.8 7.7837 10.8C7.7837 10.8 7.7837 10.8 7.78369 10.8C7.78369 10.8 7.78369 10.8 7.78368 10.8C7.78368 10.8 7.78367 10.8 7.78367 10.8C7.78367 10.8 7.78366 10.8 7.78366 10.8C7.78366 10.8 7.78365 10.8 7.78365 10.8C7.78365 10.8 7.78364 10.8 7.78364 10.8C7.78364 10.8 7.78363 10.8 7.78363 10.8C7.78363 10.8 7.78362 10.8 7.78362 10.8C7.78362 10.8 7.78361 10.8 7.78361 10.8C7.78361 10.8 7.7836 10.8 7.7836 10.8C7.7836 10.8 7.78359 10.8 7.78359 10.8C7.78359 10.8 7.78358 10.8 7.78358 10.8C7.78358 10.8 7.78357 10.8 7.78357 10.8C7.78357 10.8 7.78356 10.8 7.78356 10.8C7.78356 10.8 7.78355 10.8 7.78355 10.8C7.78355 10.8 7.78354 10.8 7.78354 10.8C7.78353 10.8 7.78353 10.8 7.78353 10.8C7.78352 10.8 7.78352 10.8 7.78352 10.8C7.78351 10.8 7.78351 10.8 7.78351 10.8C7.7835 10.8 7.7835 10.8 7.7835 10.8C7.78349 10.8 7.78349 10.8 7.78349 10.8C7.78348 10.8 7.78348 10.8 7.78348 10.8C7.78347 10.8 7.78347 10.8 7.78347 10.8C7.78346 10.8 7.78346 10.8 7.78346 10.8C7.78345 10.8 7.78345 10.8 7.78345 10.8C7.78344 10.8 7.78344 10.8 7.78344 10.8C7.78343 10.8 7.78343 10.8 7.78343 10.8C7.78342 10.8 7.78342 10.8 7.78342 10.8C7.78341 10.8 7.78341 10.8 7.78341 10.8C7.7834 10.8 7.7834 10.8 7.78339 10.8C7.78339 10.8 7.78339 10.8 7.78338 10.8C7.78338 10.8 7.78338 10.8 7.78337 10.8C7.78337 10.8 7.78337 10.8 7.78336 10.8C7.78336 10.8 7.78336 10.8 7.78335 10.8C7.78335 10.8 7.78335 10.8 7.78334 10.8C7.78334 10.8 7.78334 10.8 7.78333 10.8C7.78333 10.8 7.78333 10.8 7.78332 10.8C7.78332 10.8 7.78332 10.8 7.78331 10.8C7.78331 10.8 7.78331 10.8 7.7833 10.8C7.7833 10.8 7.7833 10.8 7.78329 10.8C7.78329 10.8 7.78329 10.8 7.78328 10.8C7.78328 10.8 7.78328 10.8 7.78327 10.8C7.78327 10.8 7.78327 10.8 7.78326 10.8C7.78326 10.8 7.78326 10.8 7.78325 10.8C7.78325 10.8 7.78325 10.8 7.78324 10.8C7.78324 10.8 7.78324 10.8 7.78323 10.8C7.78323 10.8 7.78323 10.8 7.78322 10.8C7.78322 10.8 7.78322 10.8 7.78321 10.8C7.78321 10.8 7.78321 10.8 7.7832 10.8C7.7832 10.8 7.7832 10.8 7.78319 10.8C7.78319 10.8 7.78319 10.8 7.78318 10.8C7.78318 10.8 7.78317 10.8 7.78317 10.8C7.78317 10.8 7.78316 10.8 7.78316 10.8C7.78316 10.8 7.78315 10.8 7.78315 10.8C7.78315 10.8 7.78314 10.8 7.78314 10.8C7.78314 10.8 7.78313 10.8 7.78313 10.8C7.78313 10.8 7.78312 10.8 7.78312 10.8C7.78312 10.8 7.78311 10.8 7.78311 10.8C7.78311 10.8 7.7831 10.8 7.7831 10.8C7.7831 10.8 7.78309 10.8 7.78309 10.8C7.78309 10.8 7.78308 10.8 7.78308 10.8C7.78308 10.8 7.78307 10.8 7.78307 10.8C7.78307 10.8 7.78306 10.8 7.78306 10.8C7.78306 10.8 7.78305 10.8 7.78305 10.8C7.78305 10.8 7.78304 10.8 7.78304 10.8C7.78304 10.8 7.78303 10.8 7.78303 10.8C7.78303 10.8 7.78302 10.8 7.78302 10.8C7.78302 10.8 7.78301 10.8 7.78301 10.8C7.78301 10.8 7.783 10.8 7.783 10.8C7.783 10.8 7.78299 10.8 7.78299 10.8C7.78299 10.8 7.78298 10.8 7.78298 10.8C7.78298 10.8 7.78297 10.8 7.78297 10.8C7.78297 10.8 7.78296 10.8 7.78296 10.8C7.78296 10.8 7.78295 10.8 7.78295 10.8C7.78295 10.8 7.78294 10.8 7.78294 10.8C7.78294 10.8 7.78293 10.8 7.78293 10.8C7.78293 10.8 7.78292 10.8 7.78292 10.8C7.78292 10.8 7.78291 10.8 7.78291 10.8C7.7829 10.8 7.7829 10.8 7.7829 10.8C7.78289 10.8 7.78289 10.8 7.78289 10.8C7.78288 10.8 7.78288 10.8 7.78288 10.8C7.78287 10.8 7.78287 10.8 7.78287 10.8C7.78286 10.8 7.78286 10.8 7.78286 10.8C7.78285 10.8 7.78285 10.8 7.78285 10.8C7.78284 10.8 7.78284 10.8 7.78284 10.8C7.78283 10.8 7.78283 10.8 7.78283 10.8C7.78282 10.8 7.78282 10.8 7.78282 10.8C7.78281 10.8 7.78281 10.8 7.78281 10.8C7.7828 10.8 7.7828 10.8 7.7828 10.8C7.78279 10.8 7.78279 10.8 7.78279 10.8C7.78278 10.8 7.78278 10.8 7.78278 10.8C7.78277 10.8 7.78277 10.8 7.78277 10.8C7.78276 10.8 7.78276 10.8 7.78276 10.8C7.78275 10.8 7.78275 10.8 7.78275 10.8C7.78274 10.8 7.78274 10.8 7.78274 10.8C7.78273 10.8 7.78273 10.8 7.78273 10.8C7.78272 10.8 7.78272 10.8 7.78272 10.8C7.78271 10.8 7.78271 10.8 7.78271 10.8C7.7827 10.8 7.7827 10.8 7.7827 10.8C7.78269 10.8 7.78269 10.8 7.78269 10.8C7.78268 10.8 7.78268 10.8 7.78268 10.8C7.78267 10.8 7.78267 10.8 7.78267 10.8C7.78266 10.8 7.78266 10.8 7.78266 10.8C7.78265 10.8 7.78265 10.8 7.78265 10.8C7.78264 10.8 7.78264 10.8 7.78264 10.8C7.78263 10.8 7.78263 10.8 7.78263 10.8C7.78262 10.8 7.78262 10.8 7.78262 10.8C7.78261 10.8 7.78261 10.8 7.78261 10.8C7.7826 10.8 7.7826 10.8 7.7826 10.8C7.78259 10.8 7.78259 10.8 7.78259 10.8C7.78258 10.8 7.78258 10.8 7.78258 10.8C7.78257 10.8 7.78257 10.8 7.78257 10.8C7.78256 10.8 7.78256 10.8 7.78256 10.8C7.78255 10.8 7.78255 10.8 7.78255 10.8C7.78254 10.8 7.78254 10.8 7.78254 10.8C7.78253 10.8 7.78253 10.8 7.78253 10.8C7.78252 10.8 7.78252 10.8 7.78252 10.8C7.78251 10.8 7.78251 10.8 7.78251 10.8C7.7825 10.8 7.7825 10.8 7.7825 10.8C7.78249 10.8 7.78249 10.8 7.78249 10.8C7.78248 10.8 7.78248 10.8 7.78247 10.8C7.78247 10.8 7.78247 10.8 7.78246 10.8C7.78246 10.8 7.78246 10.8 7.78245 10.8C7.78245 10.8 7.78245 10.8 7.78244 10.8C7.78244 10.8 7.78244 10.8 7.78243 10.8C7.78243 10.8 7.78243 10.8 7.78242 10.8C7.78242 10.8 7.78242 10.8 7.78241 10.8C7.78241 10.8 7.78241 10.8 7.7824 10.8C7.7824 10.8 7.7824 10.8 7.78239 10.8C7.78239 10.8 7.78239 10.8 7.78238 10.8C7.78238 10.8 7.78238 10.8 7.78237 10.8C7.78237 10.8 7.78237 10.8 7.78236 10.8C7.78236 10.8 7.78236 10.8 7.78235 10.8C7.78235 10.8 7.78235 10.8 7.78234 10.8C7.78234 10.8 7.78234 10.8 7.78233 10.8C7.78233 10.8 7.78233 10.8 7.78232 10.8C7.78232 10.8 7.78232 10.8 7.78231 10.8C7.78231 10.8 7.78231 10.8 7.7823 10.8C7.7823 10.8 7.7823 10.8 7.78229 10.8C7.78229 10.8 7.78229 10.8 7.78228 10.8C7.78228 10.8 7.78228 10.8 7.78227 10.8C7.78227 10.8 7.78227 10.8 7.78226 10.8C7.78226 10.8 7.78226 10.8 7.78225 10.8C7.78225 10.8 7.78225 10.8 7.78224 10.8C7.78224 10.8 7.78224 10.8 7.78223 10.8C7.78223 10.8 7.78223 10.8 7.78222 10.8C7.78222 10.8 7.78222 10.8 7.78221 10.8C7.78221 10.8 7.78221 10.8 7.7822 10.8C7.7822 10.8 7.7822 10.8 7.78219 10.8C7.78219 10.8 7.78219 10.8 7.78218 10.8C7.78218 10.8 7.78218 10.8 7.78217 10.8C7.78217 10.8 7.78217 10.8 7.78216 10.8C7.78216 10.8 7.78216 10.8 7.78215 10.8C7.78215 10.8 7.78215 10.8 7.78214 10.8C7.78214 10.8 7.78214 10.8 7.78213 10.8C7.78213 10.8 7.78213 10.8 7.78212 10.8C7.78212 10.8 7.78212 10.8 7.78211 10.8C7.78211 10.8 7.78211 10.8 7.7821 10.8C7.7821 10.8 7.78209 10.8 7.78209 10.8C7.78209 10.8 7.78208 10.8 7.78208 10.8C7.78208 10.8 7.78207 10.8 7.78207 10.8C7.78207 10.8 7.78206 10.8 7.78206 10.8C7.78206 10.8 7.78205 10.8 7.78205 10.8C7.78205 10.8 7.78204 10.8 7.78204 10.8C7.78204 10.8 7.78203 10.8 7.78203 10.8C7.78203 10.8 7.78202 10.8 7.78202 10.8C7.78202 10.8 7.78201 10.8 7.78201 10.8C7.78201 10.8 7.782 10.8 7.782 10.8C7.782 10.8 7.78199 10.8 7.78199 10.8C7.78199 10.8 7.78198 10.8 7.78198 10.8C7.78198 10.8 7.78197 10.8 7.78197 10.8C7.78197 10.8 7.78196 10.8 7.78196 10.8C7.78196 10.8 7.78195 10.8 7.78195 10.8C7.78195 10.8 7.78194 10.8 7.78194 10.8C7.78194 10.8 7.78193 10.8 7.78193 10.8C7.78193 10.8 7.78192 10.8 7.78192 10.8C7.78192 10.8 7.78191 10.8 7.78191 10.8C7.78191 10.8 7.7819 10.8 7.7819 10.8C7.7819 10.8 7.78189 10.8 7.78189 10.8C7.78189 10.8 7.78188 10.8 7.78188 10.8C7.78188 10.8 7.78187 10.8 7.78187 10.8C7.78187 10.8 7.78186 10.8 7.78186 10.8C7.78186 10.8 7.78185 10.8 7.78185 10.8C7.78185 10.8 7.78184 10.8 7.78184 10.8C7.78184 10.8 7.78183 10.8 7.78183 10.8C7.78183 10.8 7.78182 10.8 7.78182 10.8C7.78182 10.8 7.78181 10.8 7.78181 10.8C7.78181 10.8 7.7818 10.8 7.7818 10.8C7.7818 10.8 7.78179 10.8 7.78179 10.8C7.78179 10.8 7.78178 10.8 7.78178 10.8C7.78177 10.8 7.78177 10.8 7.78177 10.8C7.78176 10.8 7.78176 10.8 7.78176 10.8C7.78175 10.8 7.78175 10.8 7.78175 10.8C7.78174 10.8 7.78174 10.8 7.78174 10.8C7.78173 10.8 7.78173 10.8 7.78173 10.8C7.78172 10.8 7.78172 10.8 7.78172 10.8C7.78171 10.8 7.78171 10.8 7.78171 10.8C7.7817 10.8 7.7817 10.8 7.7817 10.8C7.78169 10.8 7.78169 10.8 7.78169 10.8C7.78168 10.8 7.78168 10.8 7.78168 10.8C7.78167 10.8 7.78167 10.8 7.78167 10.8C7.78166 10.8 7.78166 10.8 7.78166 10.8C7.78165 10.8 7.78165 10.8 7.78165 10.8C7.78164 10.8 7.78164 10.8 7.78164 10.8C7.78163 10.8 7.78163 10.8 7.78163 10.8C7.78162 10.8 7.78162 10.8 7.78162 10.8C7.78161 10.8 7.78161 10.8 7.78161 10.8C7.7816 10.8 7.7816 10.8 7.7816 10.8C7.78159 10.8 7.78159 10.8 7.78159 10.8C7.78158 10.8 7.78158 10.8 7.78158 10.8C7.78157 10.8 7.78157 10.8 7.78157 10.8C7.78156 10.8 7.78156 10.8 7.78156 10.8C7.78155 10.8 7.78155 10.8 7.78155 10.8C7.78154 10.8 7.78154 10.8 7.78153 10.8C7.78153 10.8 7.78153 10.8 7.78152 10.8C7.78152 10.8 7.78152 10.8 7.78151 10.8C7.78151 10.8 7.78151 10.8 7.7815 10.8C7.7815 10.8 7.7815 10.8 7.78149 10.8C7.78149 10.8 7.78149 10.8 7.78148 10.8C7.78148 10.8 7.78148 10.8 7.78147 10.8C7.78147 10.8 7.78147 10.8 7.78146 10.8C7.78146 10.8 7.78146 10.8 7.78145 10.8C7.78145 10.8 7.78145 10.8 7.78144 10.8C7.78144 10.8 7.78144 10.8 7.78143 10.8C7.78143 10.8 7.78143 10.8 7.78142 10.8C7.78142 10.8 7.78142 10.8 7.78141 10.8C7.78141 10.8 7.78141 10.8 7.7814 10.8C7.7814 10.8 7.7814 10.8 7.78139 10.8C7.78139 10.8 7.78138 10.8 7.78138 10.8C7.78138 10.8 7.78137 10.8 7.78137 10.8C7.78137 10.8 7.78136 10.8 7.78136 10.8C7.78136 10.8 7.78135 10.8 7.78135 10.8C7.78135 10.8 7.78134 10.8 7.78134 10.8C7.78134 10.8 7.78133 10.8 7.78133 10.8C7.78133 10.8 7.78132 10.8 7.78132 10.8C7.78132 10.8 7.78131 10.8 7.78131 10.8C7.78131 10.8 7.7813 10.8 7.7813 10.8C7.7813 10.8 7.78129 10.8 7.78129 10.8C7.78129 10.8 7.78128 10.8 7.78128 10.8C7.78128 10.8 7.78127 10.8 7.78127 10.8C7.78127 10.8 7.78126 10.8 7.78126 10.8C7.78126 10.8 7.78125 10.8 7.78125 10.8C7.78125 10.8 7.78124 10.8 7.78124 10.8C7.78123 10.8 7.78123 10.8 7.78123 10.8C7.78122 10.8 7.78122 10.8 7.78122 10.8C7.78121 10.8 7.78121 10.8 7.78121 10.8C7.7812 10.8 7.7812 10.8 7.7812 10.8C7.78119 10.8 7.78119 10.8 7.78119 10.8C7.78118 10.8 7.78118 10.8 7.78118 10.8C7.78117 10.8 7.78117 10.8 7.78117 10.8C7.78116 10.8 7.78116 10.8 7.78116 10.8C7.78115 10.8 7.78115 10.8 7.78115 10.8C7.78114 10.8 7.78114 10.8 7.78114 10.8C7.78113 10.8 7.78113 10.8 7.78113 10.8C7.78112 10.8 7.78112 10.8 7.78111 10.8C7.78111 10.8 7.78111 10.8 7.7811 10.8C7.7811 10.8 7.7811 10.8 7.78109 10.8C7.78109 10.8 7.78109 10.8 7.78108 10.8C7.78108 10.8 7.78108 10.8 7.78107 10.8C7.78107 10.8 7.78107 10.8 7.78106 10.8C7.78106 10.8 7.78106 10.8 7.78105 10.8C7.78105 10.8 7.78105 10.8 7.78104 10.8C7.78104 10.8 7.78104 10.8 7.78103 10.8C7.78103 10.8 7.78103 10.8 7.78102 10.8C7.78102 10.8 7.78101 10.8 7.78101 10.8C7.78101 10.8 7.781 10.8 7.781 10.8C7.781 10.8 7.78099 10.8 7.78099 10.8C7.78099 10.8 7.78098 10.8 7.78098 10.8C7.78098 10.8 7.78097 10.8 7.78097 10.8C7.78097 10.8 7.78096 10.8 7.78096 10.8C7.78096 10.8 7.78095 10.8 7.78095 10.8C7.78095 10.8 7.78094 10.8 7.78094 10.8C7.78094 10.8 7.78093 10.8 7.78093 10.8C7.78093 10.8 7.78092 10.8 7.78092 10.8C7.78091 10.8 7.78091 10.8 7.78091 10.8C7.7809 10.8 7.7809 10.8 7.7809 10.8C7.78089 10.8 7.78089 10.8 7.78089 10.8C7.78088 10.8 7.78088 10.8 7.78088 10.8C7.78087 10.8 7.78087 10.8 7.78087 10.8C7.78086 10.8 7.78086 10.8 7.78086 10.8C7.78085 10.8 7.78085 10.8 7.78085 10.8C7.78084 10.8 7.78084 10.8 7.78084 10.8C7.78083 10.8 7.78083 10.8 7.78082 10.8C7.78082 10.8 7.78082 10.8 7.78081 10.8C7.78081 10.8 7.78081 10.8 7.7808 10.8C7.7808 10.8 7.7808 10.8 7.78079 10.8C7.78079 10.8 7.78079 10.8 7.78078 10.8C7.78078 10.8 7.78078 10.8 7.78077 10.8C7.78077 10.8 7.78077 10.8 7.78076 10.8C7.78076 10.8 7.78076 10.8 7.78075 10.8C7.78075 10.8 7.78074 10.8 7.78074 10.8C7.78074 10.8 7.78073 10.8 7.78073 10.8C7.78073 10.8 7.78072 10.8 7.78072 10.8C7.78072 10.8 7.78071 10.8 7.78071 10.8C7.78071 10.8 7.7807 10.8 7.7807 10.8C7.7807 10.8 7.78069 10.8 7.78069 10.8C7.78068 10.8 7.78068 10.8 7.78068 10.8C7.78067 10.8 7.78067 10.8 7.78067 10.8C7.78066 10.8 7.78066 10.8 7.78066 10.8C7.78065 10.8 7.78065 10.8 7.78065 10.8C7.78064 10.8 7.78064 10.8 7.78064 10.8C7.78063 10.8 7.78063 10.8 7.78063 10.8C7.78062 10.8 7.78062 10.8 7.78062 10.8C7.78061 10.8 7.78061 10.8 7.7806 10.8C7.7806 10.8 7.7806 10.8 7.78059 10.8C7.78059 10.8 7.78059 10.8 7.78058 10.8C7.78058 10.8 7.78058 10.8 7.78057 10.8C7.78057 10.8 7.78057 10.8 7.78056 10.8C7.78056 10.8 7.78056 10.8 7.78055 10.8C7.78055 10.8 7.78054 10.8 7.78054 10.8C7.78054 10.8 7.78053 10.8 7.78053 10.8C7.78053 10.8 7.78052 10.8 7.78052 10.8C7.78052 10.8 7.78051 10.8 7.78051 10.8C7.78051 10.8 7.7805 10.8 7.7805 10.8C7.7805 10.8 7.78049 10.8 7.78049 10.8C7.78049 10.8 7.78048 10.8 7.78048 10.8C7.78047 10.8 7.78047 10.8 7.78047 10.8C7.78046 10.8 7.78046 10.8 7.78046 10.8C7.78045 10.8 7.78045 10.8 7.78045 10.8C7.78044 10.8 7.78044 10.8 7.78044 10.8C7.78043 10.8 7.78043 10.8 7.78043 10.8C7.78042 10.8 7.78042 10.8 7.78041 10.8C7.78041 10.8 7.78041 10.8 7.7804 10.8C7.7804 10.8 7.7804 10.8 7.78039 10.8C7.78039 10.8 7.78039 10.8 7.78038 10.8C7.78038 10.8 7.78038 10.8 7.78037 10.8C7.78037 10.8 7.78036 10.8 7.78036 10.8C7.78036 10.8 7.78035 10.8 7.78035 10.8C7.78035 10.8 7.78034 10.8 7.78034 10.8C7.78034 10.8 7.78033 10.8 7.78033 10.8C7.78033 10.8 7.78032 10.8 7.78032 10.8C7.78031 10.8 7.78031 10.8 7.78031 10.8C7.7803 10.8 7.7803 10.8 7.7803 10.8C7.78029 10.8 7.78029 10.8 7.78029 10.8C7.78028 10.8 7.78028 10.8 7.78028 10.8C7.78027 10.8 7.78027 10.8 7.78027 10.8C7.78026 10.8 7.78026 10.8 7.78025 10.8C7.78025 10.8 7.78025 10.8 7.78024 10.8C7.78024 10.8 7.78024 10.8 7.78023 10.8C7.78023 10.8 7.78023 10.8 7.78022 10.8C7.78022 10.8 7.78022 10.8 7.78021 10.8C7.78021 10.8 7.7802 10.8 7.7802 10.8C7.7802 10.8 7.78019 10.8 7.78019 10.8C7.78019 10.8 7.78018 10.8 7.78018 10.8C7.78018 10.8 7.78017 10.8 7.78017 10.8C7.78017 10.8 7.78016 10.8 7.78016 10.8C7.78015 10.8 7.78015 10.8 7.78015 10.8C7.78014 10.8 7.78014 10.8 7.78014 10.8C7.78013 10.8 7.78013 10.8 7.78013 10.8C7.78012 10.8 7.78012 10.8 7.78011 10.8C7.78011 10.8 7.78011 10.8 7.7801 10.8C7.7801 10.8 7.7801 10.8 7.78009 10.8C7.78009 10.8 7.78009 10.8 7.78008 10.8C7.78008 10.8 7.78008 10.8 7.78007 10.8C7.78007 10.8 7.78006 10.8 7.78006 10.8C7.78006 10.8 7.78005 10.8 7.78005 10.8C7.78005 10.8 7.78004 10.8 7.78004 10.8C7.78004 10.8 7.78003 10.8 7.78003 10.8C7.78002 10.8 7.78002 10.8 7.78002 10.8C7.78001 10.8 7.78001 10.8 7.78001 10.8C7.78 10.8 7.78 10.8 7.78 10.8C7.77999 10.8 7.77999 10.8 7.77998 10.8C7.77998 10.8 7.77998 10.8 7.77997 10.8C7.77997 10.8 7.77997 10.8 7.77996 10.8C7.77996 10.8 7.77996 10.8 7.77995 10.8C7.77995 10.8 7.77994 10.8 7.77994 10.8C7.77994 10.8 7.77993 10.8 7.77993 10.8C7.77993 10.8 7.77992 10.8 7.77992 10.8C7.77992 10.8 7.77991 10.8 7.77991 10.8C7.7799 10.8 7.7799 10.8 7.7799 10.8C7.77989 10.8 7.77989 10.8 7.77989 10.8C7.77988 10.8 7.77988 10.8 7.77988 10.8C7.77987 10.8 7.77987 10.8 7.77986 10.8C7.77986 10.8 7.77986 10.8 7.77985 10.8C7.77985 10.8 7.77985 10.8 7.77984 10.8C7.77984 10.8 7.77984 10.8 7.77983 10.8C7.77983 10.8 7.77982 10.8 7.77982 10.8C7.77982 10.8 7.77981 10.8 7.77981 10.8C7.77981 10.8 7.7798 10.8 7.7798 10.8C7.7798 10.8 7.77979 10.8 7.77979 10.8V11.2ZM7.7851 11.2H10.64V10.8H7.7851V11.2ZM10.64 11.2C10.6985 11.2 10.7557 11.1907 10.8093 11.1735L10.687 10.7927C10.6724 10.7974 10.6565 10.8 10.64 10.8V11.2ZM10.6996 10.7891L10.6971 10.7897L10.7941 11.1778L10.7966 11.1772L10.6996 10.7891ZM10.8244 11.1676C10.8305 11.165 10.835 11.1628 10.8372 11.1616C10.8377 11.1614 10.8364 11.162 10.835 11.1627C10.8337 11.1634 10.8295 11.1654 10.8239 11.1677C10.8123 11.1724 10.785 11.1825 10.7484 11.1825V10.7825C10.7118 10.7825 10.6843 10.7926 10.6724 10.7975C10.6668 10.7998 10.6625 10.8019 10.661 10.8026C10.66 10.803 10.6593 10.8034 10.6589 10.8036C10.6587 10.8037 10.6586 10.8038 10.6585 10.8038C10.6584 10.8038 10.6583 10.8039 10.6583 10.8039C10.6582 10.804 10.6587 10.8037 10.6593 10.8034C10.6599 10.8031 10.6607 10.8027 10.6616 10.8023C10.6635 10.8014 10.6652 10.8006 10.6668 10.7999L10.8244 11.1676ZM10.659 10.8036L10.6571 10.8046L10.836 11.1623L10.8379 11.1614L10.659 10.8036ZM10.8045 11.1749C10.8252 11.1686 10.8431 11.162 10.8607 11.1544L10.7031 10.7868C10.6988 10.7886 10.6948 10.7901 10.6887 10.792L10.8045 11.1749ZM10.7031 10.7868L10.7009 10.7877L10.8585 11.1554L10.8607 11.1544L10.7031 10.7868ZM10.8609 11.1543C10.8654 11.1523 10.869 11.1507 10.8732 11.1486L10.6943 10.7908C10.6941 10.7909 10.6948 10.7906 10.6956 10.7901C10.6965 10.7897 10.6973 10.7893 10.6979 10.789C10.699 10.7886 10.6994 10.7884 10.6984 10.7888L10.8609 11.1543ZM10.6943 10.7908L10.6924 10.7917L10.8713 11.1495L10.8732 11.1486L10.6943 10.7908ZM10.8618 11.1539C10.8799 11.1461 10.8953 11.1384 10.9099 11.1303L10.7176 10.7796C10.7129 10.7822 10.7083 10.7845 10.7019 10.7873L10.8618 11.1539ZM10.7243 10.7761L10.7224 10.7771L10.9014 11.1348L10.9032 11.1339L10.7243 10.7761ZM10.9148 11.1274C10.9287 11.119 10.9389 11.1107 10.9452 11.1053C10.9454 11.1051 10.9456 11.1049 10.9458 11.1048C10.9458 11.1047 10.9459 11.1047 10.9459 11.1046C10.9459 11.1046 10.9459 11.1046 10.9459 11.1046C10.946 11.1046 10.946 11.1046 10.946 11.1046C10.946 11.1046 10.946 11.1046 10.946 11.1046C10.9461 11.1045 10.9456 11.1049 10.945 11.1055C10.9443 11.1061 10.9399 11.1099 10.9339 11.1144C10.9282 11.1187 10.9153 11.128 10.897 11.1363C10.8772 11.1454 10.8488 11.1544 10.8141 11.1544V10.7544C10.7792 10.7544 10.7508 10.7634 10.7309 10.7724C10.7125 10.7808 10.6995 10.7902 10.6938 10.7945C10.6877 10.7991 10.6832 10.803 10.6823 10.8038C10.682 10.8041 10.6817 10.8043 10.6815 10.8045C10.6813 10.8047 10.6812 10.8048 10.6811 10.8048C10.681 10.8049 10.6813 10.8046 10.6817 10.8043C10.6873 10.7994 10.6966 10.7919 10.709 10.7844L10.9148 11.1274ZM10.7031 10.788L10.7021 10.7886L10.9241 11.1214L10.9251 11.1207L10.7031 10.788ZM10.9108 11.1295C10.9372 11.1148 10.9617 11.0988 10.9856 11.0799L10.7381 10.7657C10.7327 10.77 10.726 10.7746 10.7155 10.7804L10.9108 11.1295ZM10.7204 10.7814L10.7198 10.782L11.0027 11.0648L11.0033 11.0642L10.7204 10.7814ZM10.9828 11.0823C10.9926 11.0747 11.0001 11.0684 11.0052 11.064L10.7448 10.7603C10.7412 10.7634 10.7405 10.764 10.7397 10.7646L10.9828 11.0823ZM10.7856 10.7333L10.785 10.7336L10.9638 11.0914L10.9644 11.0911L10.7856 10.7333ZM11.0036 11.0651C11.0177 11.0532 11.03 11.0414 11.0411 11.0298L10.752 10.7533C10.7494 10.756 10.7473 10.758 10.7452 10.7598L11.0036 11.0651ZM11.038 11.0329C11.0386 11.0323 11.0376 11.0333 11.0382 11.0327C11.0396 11.0314 11.037 11.0339 11.0384 11.0326C11.0384 11.0326 11.0384 11.0325 11.0384 11.0325C11.0409 11.0301 11.036 11.0349 11.0385 11.0325C11.0387 11.0322 11.0387 11.0322 11.0389 11.032L10.7561 10.7492C10.7554 10.7498 10.7565 10.7488 10.7558 10.7494C10.7545 10.7508 10.757 10.7482 10.7557 10.7495C10.7557 10.7496 10.7557 10.7496 10.7557 10.7496C10.7532 10.7521 10.758 10.7472 10.7556 10.7497C10.7553 10.7499 10.7554 10.7499 10.7551 10.7501L11.038 11.0329ZM11.0417 11.0292C11.0654 11.0046 11.0885 10.9761 11.109 10.9436L10.7704 10.7307C10.7665 10.7369 10.7609 10.7441 10.7533 10.752L11.0417 11.0292ZM11.1112 10.94L11.1121 10.9385L10.7691 10.7327L10.7682 10.7342L11.1112 10.94ZM10.7617 10.7462C10.7607 10.7483 10.7589 10.7519 10.7569 10.7565C10.7561 10.7583 10.7502 10.7713 10.7459 10.7887C10.7448 10.7929 10.7366 10.8233 10.7415 10.8622C10.7441 10.8828 10.753 10.9274 10.7898 10.9693C10.8331 11.0184 10.8911 11.0372 10.9403 11.0372C10.9816 11.0371 11.0121 11.0243 11.0252 11.0181C11.0404 11.0109 11.0516 11.0033 11.0577 10.9989C11.0643 10.994 11.0695 10.9896 11.0729 10.9866C11.0747 10.985 11.0763 10.9835 11.0777 10.9822C11.0784 10.9815 11.0791 10.9809 11.0797 10.9803C11.08 10.98 11.0803 10.9797 11.0806 10.9794C11.0807 10.9793 11.0809 10.9791 11.081 10.979C11.0811 10.9789 11.0812 10.9788 11.0812 10.9788C11.0813 10.9787 11.0814 10.9786 10.94 10.8371C10.7986 10.6957 10.7987 10.6956 10.7988 10.6955C10.7988 10.6955 10.7989 10.6954 10.799 10.6953C10.7991 10.6952 10.7993 10.695 10.7994 10.6949C10.7997 10.6946 10.8 10.6943 10.8003 10.694C10.801 10.6934 10.8016 10.6928 10.8023 10.6921C10.8037 10.6908 10.8053 10.6893 10.8071 10.6877C10.8105 10.6847 10.8157 10.6803 10.8223 10.6754C10.8284 10.671 10.8395 10.6634 10.8547 10.6562C10.8678 10.6501 10.8983 10.6372 10.9396 10.6372C10.9888 10.6371 11.0469 10.6559 11.0901 10.7051C11.1269 10.7469 11.1358 10.7915 11.1384 10.812C11.1412 10.8346 11.1396 10.8526 11.1384 10.8618C11.1372 10.872 11.1353 10.8803 11.134 10.8855C11.1297 10.9027 11.124 10.9154 11.1234 10.9167C11.1216 10.9208 11.1201 10.9238 11.1195 10.925L10.7617 10.7462ZM11.1189 10.9266L11.1198 10.9247L10.762 10.7458L10.7611 10.7477L11.1189 10.9266ZM11.1083 10.9447C11.1171 10.9313 11.1266 10.9153 11.1353 10.8984L10.7797 10.7153C10.7778 10.7189 10.7754 10.723 10.7735 10.7258L11.1083 10.9447ZM11.1364 10.8962L11.1373 10.8944L10.7795 10.7155L10.7786 10.7174L11.1364 10.8962ZM10.7795 10.7155C10.7785 10.7176 10.7767 10.7213 10.7747 10.7258C10.7739 10.7276 10.7681 10.7406 10.7638 10.7579C10.7627 10.7622 10.7545 10.7924 10.7593 10.8311C10.7618 10.8515 10.7704 10.8959 10.8069 10.9378C10.8498 10.9871 10.9078 11.0064 10.9574 11.0065C10.9989 11.0066 11.0296 10.9937 11.0428 10.9876C11.0581 10.9804 11.0693 10.9727 11.0754 10.9683C11.0821 10.9634 11.0873 10.959 11.0907 10.956C11.0925 10.9544 11.0941 10.9529 11.0955 10.9516C11.0962 10.9509 11.0969 10.9503 11.0975 10.9497C11.0978 10.9494 11.0981 10.9491 11.0984 10.9488C11.0985 10.9486 11.0987 10.9485 11.0988 10.9483C11.0989 10.9483 11.099 10.9482 11.099 10.9481C11.0991 10.948 11.0992 10.9479 10.9578 10.8065C10.8164 10.6651 10.8165 10.665 10.8166 10.6649C10.8166 10.6648 10.8167 10.6647 10.8168 10.6647C10.817 10.6645 10.8171 10.6644 10.8172 10.6642C10.8175 10.664 10.8178 10.6637 10.8181 10.6634C10.8188 10.6627 10.8194 10.6621 10.8201 10.6614C10.8215 10.6601 10.8231 10.6586 10.8249 10.657C10.8284 10.654 10.8335 10.6496 10.8402 10.6447C10.8463 10.6403 10.8575 10.6327 10.8728 10.6255C10.8859 10.6193 10.9167 10.6064 10.9582 10.6065C11.0078 10.6066 11.0658 10.6259 11.1087 10.6753C11.1451 10.7171 11.1537 10.7616 11.1562 10.7819C11.159 10.8043 11.1574 10.8223 11.1562 10.8314C11.1549 10.8416 11.1531 10.8498 11.1518 10.855C11.1475 10.8721 11.1418 10.8848 11.1412 10.8861C11.1394 10.8902 11.1379 10.8932 11.1373 10.8944L10.7795 10.7155ZM11.1367 10.8959L11.1376 10.8941L10.7799 10.7152L10.7789 10.7171L11.1367 10.8959ZM11.1364 10.8964C11.1524 10.8656 11.1663 10.8307 11.1763 10.794L10.7905 10.6883C10.7881 10.6973 10.7845 10.7062 10.7811 10.7129L11.1364 10.8964ZM11.1775 10.7896L11.1781 10.7871L10.79 10.6902L10.7894 10.6927L11.1775 10.7896ZM10.7868 10.7058C10.7868 10.7056 10.7869 10.7052 10.787 10.7046C10.7871 10.704 10.7873 10.7029 10.7876 10.7013C10.7878 10.7002 10.7885 10.6968 10.7896 10.6924C10.7901 10.6902 10.7911 10.6861 10.7927 10.681C10.7937 10.6778 10.7975 10.6655 10.8048 10.6508C10.8082 10.644 10.8167 10.6277 10.8319 10.6099C10.8431 10.5969 10.8849 10.5508 10.9593 10.5416C11.0503 10.5304 11.1115 10.5811 11.1372 10.6119C11.1602 10.6393 11.1698 10.666 11.1728 10.6748C11.1799 10.6954 11.1819 10.7125 11.1823 10.7155C11.183 10.7217 11.1833 10.7266 11.1834 10.7289C11.1838 10.7358 11.1838 10.7426 11.1838 10.7396H10.7838C10.7838 10.7396 10.7838 10.7397 10.7838 10.7398C10.7838 10.7399 10.7838 10.74 10.7838 10.7401C10.7838 10.7404 10.7838 10.741 10.7838 10.7417C10.7838 10.7425 10.7838 10.7463 10.7841 10.751C10.7842 10.7534 10.7845 10.7583 10.7853 10.7646C10.7857 10.7677 10.7876 10.7848 10.7947 10.8054C10.7978 10.8142 10.8074 10.8409 10.8303 10.8683C10.856 10.8991 10.9173 10.9498 11.0083 10.9386C11.0827 10.9294 11.1244 10.8833 11.1356 10.8702C11.1508 10.8525 11.1593 10.8362 11.1627 10.8294C11.1701 10.8147 11.1739 10.8023 11.1749 10.799C11.1765 10.7939 11.1775 10.7897 11.1781 10.7875C11.1792 10.783 11.1799 10.7794 11.1802 10.7781C11.1808 10.775 11.1812 10.7724 11.1813 10.7715L10.7868 10.7058ZM11.1778 10.7881L11.1784 10.7856L10.7903 10.6886L10.7897 10.6911L11.1778 10.7881ZM11.1769 10.7911C11.1889 10.7485 11.1956 10.7026 11.1965 10.6562L10.7966 10.648C10.7963 10.6622 10.7942 10.6745 10.7918 10.6831L11.1769 10.7911ZM11.1966 10.6521V10.6518H10.7966V10.6521H11.1966ZM11.1938 10.6846C11.1963 10.6701 11.1966 10.6581 11.1968 10.6542C11.1969 10.6494 11.1969 10.6448 11.1969 10.644H10.7969C10.7969 10.6463 10.7969 10.6447 10.7969 10.6425C10.797 10.6411 10.7971 10.6385 10.7973 10.635C10.7976 10.6317 10.7981 10.626 10.7993 10.6189L11.1938 10.6846ZM11.1969 10.644V7.78722H10.7969V10.644H11.1969ZM11.1969 7.78722C11.1969 7.78722 11.1969 7.78722 11.1969 7.78721C11.1969 7.78721 11.1969 7.78721 11.1969 7.7872C11.1969 7.7872 11.1969 7.7872 11.1969 7.78719C11.1969 7.78719 11.1969 7.78719 11.1969 7.78718C11.1969 7.78718 11.1969 7.78718 11.1969 7.78718C11.1969 7.78717 11.1969 7.78717 11.1969 7.78717C11.1969 7.78716 11.1969 7.78716 11.1969 7.78716C11.1969 7.78715 11.1969 7.78715 11.1969 7.78715C11.1969 7.78715 11.1969 7.78714 11.1969 7.78714C11.1969 7.78714 11.1969 7.78713 11.1969 7.78713C11.1969 7.78713 11.1969 7.78712 11.1969 7.78712C11.1969 7.78712 11.1969 7.78711 11.1969 7.78711C11.1969 7.78711 11.1969 7.78711 11.1969 7.7871C11.1969 7.7871 11.1969 7.7871 11.1969 7.78709C11.1969 7.78709 11.1969 7.78709 11.1969 7.78708C11.1969 7.78708 11.1969 7.78708 11.1969 7.78707C11.1969 7.78707 11.1969 7.78707 11.1969 7.78707C11.1969 7.78706 11.1969 7.78706 11.1969 7.78706C11.1969 7.78705 11.1969 7.78705 11.1969 7.78705C11.1969 7.78704 11.1969 7.78704 11.1969 7.78704C11.1969 7.78703 11.1969 7.78703 11.1969 7.78703C11.1969 7.78703 11.1969 7.78702 11.1969 7.78702C11.1969 7.78702 11.1969 7.78701 11.1969 7.78701C11.1969 7.78701 11.1969 7.787 11.1969 7.787C11.1969 7.787 11.1969 7.787 11.1969 7.78699C11.1969 7.78699 11.1969 7.78699 11.1969 7.78698C11.1969 7.78698 11.1969 7.78698 11.1969 7.78697C11.1969 7.78697 11.1969 7.78697 11.1969 7.78696C11.1969 7.78696 11.1969 7.78696 11.1969 7.78696C11.1969 7.78695 11.1969 7.78695 11.1969 7.78695C11.1969 7.78694 11.1969 7.78694 11.1969 7.78694C11.1969 7.78693 11.1969 7.78693 11.1969 7.78693C11.1969 7.78693 11.1969 7.78692 11.1969 7.78692C11.1969 7.78692 11.1969 7.78691 11.1969 7.78691C11.1969 7.78691 11.1969 7.7869 11.1969 7.7869C11.1969 7.7869 11.1969 7.78689 11.1969 7.78689C11.1969 7.78689 11.1969 7.78689 11.1969 7.78688C11.1969 7.78688 11.1969 7.78688 11.1969 7.78687C11.1969 7.78687 11.1969 7.78687 11.1969 7.78686C11.1969 7.78686 11.1969 7.78686 11.1969 7.78685C11.1969 7.78685 11.1969 7.78685 11.1969 7.78685C11.1969 7.78684 11.1969 7.78684 11.1969 7.78684C11.1969 7.78683 11.1969 7.78683 11.1969 7.78683C11.1969 7.78682 11.1969 7.78682 11.1969 7.78682C11.1969 7.78682 11.1969 7.78681 11.1969 7.78681C11.1969 7.78681 11.1969 7.7868 11.1969 7.7868C11.1969 7.7868 11.1969 7.78679 11.1969 7.78679C11.1969 7.78679 11.1969 7.78678 11.1969 7.78678C11.1969 7.78678 11.1969 7.78678 11.1969 7.78677C11.1969 7.78677 11.1969 7.78677 11.1969 7.78676C11.1969 7.78676 11.1969 7.78676 11.1969 7.78675C11.1969 7.78675 11.1969 7.78675 11.1969 7.78675C11.1969 7.78674 11.1969 7.78674 11.1969 7.78674C11.1969 7.78673 11.1969 7.78673 11.1969 7.78673C11.1969 7.78672 11.1969 7.78672 11.1969 7.78672C11.1969 7.78671 11.1969 7.78671 11.1969 7.78671C11.1969 7.78671 11.1969 7.7867 11.1969 7.7867C11.1969 7.7867 11.1969 7.78669 11.1969 7.78669C11.1969 7.78669 11.1969 7.78668 11.1969 7.78668C11.1969 7.78668 11.1969 7.78667 11.1969 7.78667C11.1969 7.78667 11.1969 7.78667 11.1969 7.78666C11.1969 7.78666 11.1969 7.78666 11.1969 7.78665C11.1969 7.78665 11.1969 7.78665 11.1969 7.78664C11.1969 7.78664 11.1969 7.78664 11.1969 7.78663C11.1969 7.78663 11.1969 7.78663 11.1969 7.78663C11.1969 7.78662 11.1969 7.78662 11.1969 7.78662C11.1969 7.78661 11.1969 7.78661 11.1969 7.78661C11.1969 7.7866 11.1969 7.7866 11.1969 7.7866C11.1969 7.7866 11.1969 7.78659 11.1969 7.78659C11.1969 7.78659 11.1969 7.78658 11.1969 7.78658C11.1969 7.78658 11.1969 7.78657 11.1969 7.78657C11.1969 7.78657 11.1969 7.78656 11.1969 7.78656C11.1969 7.78656 11.1969 7.78656 11.1969 7.78655C11.1969 7.78655 11.1969 7.78655 11.1969 7.78654C11.1969 7.78654 11.1969 7.78654 11.1969 7.78653C11.1969 7.78653 11.1969 7.78653 11.1969 7.78653C11.1969 7.78652 11.1969 7.78652 11.1969 7.78652C11.1969 7.78651 11.1969 7.78651 11.1969 7.78651C11.1969 7.7865 11.1969 7.7865 11.1969 7.7865C11.1969 7.78649 11.1969 7.78649 11.1969 7.78649C11.1969 7.78649 11.1969 7.78648 11.1969 7.78648C11.1969 7.78648 11.1969 7.78647 11.1969 7.78647C11.1969 7.78647 11.1969 7.78646 11.1969 7.78646C11.1969 7.78646 11.1969 7.78646 11.1969 7.78645C11.1969 7.78645 11.1969 7.78645 11.1969 7.78644C11.1969 7.78644 11.1969 7.78644 11.1969 7.78643C11.1969 7.78643 11.1969 7.78643 11.1969 7.78642C11.1969 7.78642 11.1969 7.78642 11.1969 7.78642C11.1969 7.78641 11.1969 7.78641 11.1969 7.78641C11.1969 7.7864 11.1969 7.7864 11.1969 7.7864C11.1969 7.78639 11.1969 7.78639 11.1969 7.78639C11.1969 7.78639 11.1969 7.78638 11.1969 7.78638C11.1969 7.78638 11.1969 7.78637 11.1969 7.78637C11.1969 7.78637 11.1969 7.78636 11.1969 7.78636C11.1969 7.78636 11.1969 7.78635 11.1969 7.78635C11.1969 7.78635 11.1969 7.78635 11.1969 7.78634C11.1969 7.78634 11.1969 7.78634 11.1969 7.78633C11.1969 7.78633 11.1969 7.78633 11.1969 7.78632C11.1969 7.78632 11.1969 7.78632 11.1969 7.78631C11.1969 7.78631 11.1969 7.78631 11.1969 7.78631C11.1969 7.7863 11.1969 7.7863 11.1969 7.7863C11.1969 7.78629 11.1969 7.78629 11.1969 7.78629C11.1969 7.78628 11.1969 7.78628 11.1969 7.78628C11.1969 7.78627 11.1969 7.78627 11.1969 7.78627C11.1969 7.78627 11.1969 7.78626 11.1969 7.78626C11.1969 7.78626 11.1969 7.78625 11.1969 7.78625C11.1969 7.78625 11.1969 7.78624 11.1969 7.78624C11.1969 7.78624 11.1969 7.78624 11.1969 7.78623C11.1969 7.78623 11.1969 7.78623 11.1969 7.78622C11.1969 7.78622 11.1969 7.78622 11.1969 7.78621C11.1969 7.78621 11.1969 7.78621 11.1969 7.7862C11.1969 7.7862 11.1969 7.7862 11.1969 7.7862C11.1969 7.78619 11.1969 7.78619 11.1969 7.78619C11.1969 7.78618 11.1969 7.78618 11.1969 7.78618C11.1969 7.78617 11.1969 7.78617 11.1969 7.78617C11.1969 7.78617 11.1969 7.78616 11.1969 7.78616C11.1969 7.78616 11.1969 7.78615 11.1969 7.78615C11.1969 7.78615 11.1969 7.78614 11.1969 7.78614C11.1969 7.78614 11.1969 7.78613 11.1969 7.78613C11.1969 7.78613 11.1969 7.78613 11.1969 7.78612C11.1969 7.78612 11.1969 7.78612 11.1969 7.78611C11.1969 7.78611 11.1969 7.78611 11.1969 7.7861C11.1969 7.7861 11.1969 7.7861 11.1969 7.78609C11.1969 7.78609 11.1969 7.78609 11.1969 7.78609C11.1969 7.78608 11.1969 7.78608 11.1969 7.78608C11.1969 7.78607 11.1969 7.78607 11.1969 7.78607C11.1969 7.78606 11.1969 7.78606 11.1969 7.78606C11.1969 7.78606 11.1969 7.78605 11.1969 7.78605C11.1969 7.78605 11.1969 7.78604 11.1969 7.78604C11.1969 7.78604 11.1969 7.78603 11.1969 7.78603C11.1969 7.78603 11.1969 7.78602 11.1969 7.78602C11.1969 7.78602 11.1969 7.78602 11.1969 7.78601C11.1969 7.78601 11.1969 7.78601 11.1969 7.786C11.1969 7.786 11.1969 7.786 11.1969 7.78599C11.1969 7.78599 11.1969 7.78599 11.1969 7.78598C11.1969 7.78598 11.1969 7.78598 11.1969 7.78598C11.1969 7.78597 11.1969 7.78597 11.1969 7.78597C11.1969 7.78596 11.1969 7.78596 11.1969 7.78596C11.1969 7.78595 11.1969 7.78595 11.1969 7.78595C11.1969 7.78595 11.1969 7.78594 11.1969 7.78594C11.1969 7.78594 11.1969 7.78593 11.1969 7.78593C11.1969 7.78593 11.1969 7.78592 11.1969 7.78592C11.1969 7.78592 11.1969 7.78591 11.1969 7.78591C11.1969 7.78591 11.1969 7.78591 11.1969 7.7859C11.1969 7.7859 11.1969 7.7859 11.1969 7.78589C11.1969 7.78589 11.1969 7.78589 11.1969 7.78588C11.1969 7.78588 11.1969 7.78588 11.1969 7.78587C11.1969 7.78587 11.1969 7.78587 11.1969 7.78587C11.1969 7.78586 11.1969 7.78586 11.1969 7.78586C11.1969 7.78585 11.1969 7.78585 11.1969 7.78585C11.1969 7.78584 11.1969 7.78584 11.1969 7.78584C11.1969 7.78584 11.1969 7.78583 11.1969 7.78583C11.1969 7.78583 11.1969 7.78582 11.1969 7.78582C11.1969 7.78582 11.1969 7.78581 11.1969 7.78581C11.1969 7.78581 11.1969 7.7858 11.1969 7.7858C11.1969 7.7858 11.1969 7.7858 11.1969 7.78579C11.1969 7.78579 11.1969 7.78579 11.1969 7.78578C11.1969 7.78578 11.1969 7.78578 11.1969 7.78577C11.1969 7.78577 11.1969 7.78577 11.1969 7.78577C11.1969 7.78576 11.1969 7.78576 11.1969 7.78576C11.1969 7.78575 11.1969 7.78575 11.1969 7.78575C11.1969 7.78574 11.1969 7.78574 11.1969 7.78574C11.1969 7.78573 11.1969 7.78573 11.1969 7.78573C11.1969 7.78573 11.1969 7.78572 11.1969 7.78572C11.1969 7.78572 11.1969 7.78571 11.1969 7.78571C11.1969 7.78571 11.1969 7.7857 11.1969 7.7857C11.1969 7.7857 11.1969 7.7857 11.1969 7.78569C11.1969 7.78569 11.1969 7.78569 11.1969 7.78568C11.1969 7.78568 11.1969 7.78568 11.1969 7.78567C11.1969 7.78567 11.1969 7.78567 11.1969 7.78566C11.1969 7.78566 11.1969 7.78566 11.1969 7.78566C11.1969 7.78565 11.1969 7.78565 11.1969 7.78565C11.1969 7.78564 11.1969 7.78564 11.1969 7.78564C11.1969 7.78563 11.1969 7.78563 11.1969 7.78563C11.1969 7.78562 11.1969 7.78562 11.1969 7.78562C11.1969 7.78562 11.1969 7.78561 11.1969 7.78561C11.1969 7.78561 11.1969 7.7856 11.1969 7.7856C11.1969 7.7856 11.1969 7.78559 11.1969 7.78559C11.1969 7.78559 11.1969 7.78558 11.1969 7.78558C11.1969 7.78558 11.1969 7.78558 11.1969 7.78557C11.1969 7.78557 11.1969 7.78557 11.1969 7.78556C11.1969 7.78556 11.1969 7.78556 11.1969 7.78555C11.1969 7.78555 11.1969 7.78555 11.1969 7.78555C11.1969 7.78554 11.1969 7.78554 11.1969 7.78554C11.1969 7.78553 11.1969 7.78553 11.1969 7.78553C11.1969 7.78552 11.1969 7.78552 11.1969 7.78552C11.1969 7.78551 11.1969 7.78551 11.1969 7.78551C11.1969 7.78551 11.1969 7.7855 11.1969 7.7855C11.1969 7.7855 11.1969 7.78549 11.1969 7.78549C11.1969 7.78549 11.1969 7.78548 11.1969 7.78548C11.1969 7.78548 11.1969 7.78548 11.1969 7.78547C11.1969 7.78547 11.1969 7.78547 11.1969 7.78546C11.1969 7.78546 11.1969 7.78546 11.1969 7.78545C11.1969 7.78545 11.1969 7.78545 11.1969 7.78544C11.1969 7.78544 11.1969 7.78544 11.1969 7.78544C11.1969 7.78543 11.1969 7.78543 11.1969 7.78543C11.1969 7.78542 11.1969 7.78542 11.1969 7.78542C11.1969 7.78541 11.1969 7.78541 11.1969 7.78541C11.1969 7.78541 11.1969 7.7854 11.1969 7.7854C11.1969 7.7854 11.1969 7.78539 11.1969 7.78539C11.1969 7.78539 11.1969 7.78538 11.1969 7.78538C11.1969 7.78538 11.1969 7.78537 11.1969 7.78537C11.1969 7.78537 11.1969 7.78537 11.1969 7.78536C11.1969 7.78536 11.1969 7.78536 11.1969 7.78535C11.1969 7.78535 11.1969 7.78535 11.1969 7.78534C11.1969 7.78534 11.1969 7.78534 11.1969 7.78533C11.1969 7.78533 11.1969 7.78533 11.1969 7.78533C11.1969 7.78532 11.1969 7.78532 11.1969 7.78532C11.1969 7.78531 11.1969 7.78531 11.1969 7.78531C11.1969 7.7853 11.1969 7.7853 11.1969 7.7853C11.1969 7.7853 11.1969 7.78529 11.1969 7.78529C11.1969 7.78529 11.1969 7.78528 11.1969 7.78528C11.1969 7.78528 11.1969 7.78527 11.1969 7.78527C11.1969 7.78527 11.1969 7.78526 11.1969 7.78526C11.1969 7.78526 11.1969 7.78526 11.1969 7.78525C11.1969 7.78525 11.1969 7.78525 11.1969 7.78524C11.1969 7.78524 11.1969 7.78524 11.1969 7.78523C11.1969 7.78523 11.1969 7.78523 11.1969 7.78522C11.1969 7.78522 11.1969 7.78522 11.1969 7.78522C11.1969 7.78521 11.1969 7.78521 11.1969 7.78521C11.1969 7.7852 11.1969 7.7852 11.1969 7.7852C11.1969 7.78519 11.1969 7.78519 11.1969 7.78519C11.1969 7.78519 11.1969 7.78518 11.1969 7.78518C11.1969 7.78518 11.1969 7.78517 11.1969 7.78517C11.1969 7.78517 11.1969 7.78516 11.1969 7.78516C11.1969 7.78516 11.1969 7.78515 11.1969 7.78515C11.1969 7.78515 11.1969 7.78515 11.1969 7.78514C11.1969 7.78514 11.1969 7.78514 11.1969 7.78513C11.1969 7.78513 11.1969 7.78513 11.1969 7.78512C11.1969 7.78512 11.1969 7.78512 11.1969 7.78512C11.1969 7.78511 11.1969 7.78511 11.1969 7.78511C11.1969 7.7851 11.1969 7.7851 11.1969 7.7851C11.1969 7.78509 11.1969 7.78509 11.1969 7.78509C11.1969 7.78508 11.1969 7.78508 11.1969 7.78508C11.1969 7.78508 11.1969 7.78507 11.1969 7.78507C11.1969 7.78507 11.1969 7.78506 11.1969 7.78506C11.1969 7.78506 11.1969 7.78505 11.1969 7.78505C11.1969 7.78505 11.1969 7.78504 11.1969 7.78504C11.1969 7.78504 11.1969 7.78504 11.1969 7.78503C11.1969 7.78503 11.1969 7.78503 11.1969 7.78502C11.1969 7.78502 11.1969 7.78502 11.1969 7.78501C11.1969 7.78501 11.1969 7.78501 11.1969 7.78501C11.1969 7.785 11.1969 7.785 11.1969 7.785C11.1969 7.78499 11.1969 7.78499 11.1969 7.78499C11.1969 7.78498 11.1969 7.78498 11.1969 7.78498C11.1969 7.78497 11.1969 7.78497 11.1969 7.78497C11.1969 7.78497 11.1969 7.78496 11.1969 7.78496C11.1969 7.78496 11.1969 7.78495 11.1969 7.78495C11.1969 7.78495 11.1969 7.78494 11.1969 7.78494C11.1969 7.78494 11.1969 7.78493 11.1969 7.78493C11.1969 7.78493 11.1969 7.78493 11.1969 7.78492C11.1969 7.78492 11.1969 7.78492 11.1969 7.78491C11.1969 7.78491 11.1969 7.78491 11.1969 7.7849C11.1969 7.7849 11.1969 7.7849 11.1969 7.7849C11.1969 7.78489 11.1969 7.78489 11.1969 7.78489C11.1969 7.78488 11.1969 7.78488 11.1969 7.78488C11.1969 7.78487 11.1969 7.78487 11.1969 7.78487C11.1969 7.78486 11.1969 7.78486 11.1969 7.78486C11.1969 7.78486 11.1969 7.78485 11.1969 7.78485C11.1969 7.78485 11.1969 7.78484 11.1969 7.78484C11.1969 7.78484 11.1969 7.78483 11.1969 7.78483C11.1969 7.78483 11.1969 7.78482 11.1969 7.78482C11.1969 7.78482 11.1969 7.78482 11.1969 7.78481C11.1969 7.78481 11.1969 7.78481 11.1969 7.7848C11.1969 7.7848 11.1969 7.7848 11.1969 7.78479C11.1969 7.78479 11.1969 7.78479 11.1969 7.78479C11.1969 7.78478 11.1969 7.78478 11.1969 7.78478C11.1969 7.78477 11.1969 7.78477 11.1969 7.78477C11.1969 7.78476 11.1969 7.78476 11.1969 7.78476C11.1969 7.78475 11.1969 7.78475 11.1969 7.78475C11.1969 7.78475 11.1969 7.78474 11.1969 7.78474C11.1969 7.78474 11.1969 7.78473 11.1969 7.78473C11.1969 7.78473 11.1969 7.78472 11.1969 7.78472C11.1969 7.78472 11.1969 7.78472 11.1969 7.78471C11.1969 7.78471 11.1969 7.78471 11.1969 7.7847C11.1969 7.7847 11.1969 7.7847 11.1969 7.78469C11.1969 7.78469 11.1969 7.78469 11.1969 7.78468C11.1969 7.78468 11.1969 7.78468 11.1969 7.78468C11.1969 7.78467 11.1969 7.78467 11.1969 7.78467C11.1969 7.78466 11.1969 7.78466 11.1969 7.78466C11.1969 7.78465 11.1969 7.78465 11.1969 7.78465C11.1969 7.78465 11.1969 7.78464 11.1969 7.78464C11.1969 7.78464 11.1969 7.78463 11.1969 7.78463C11.1969 7.78463 11.1969 7.78462 11.1969 7.78462C11.1969 7.78462 11.1969 7.78461 11.1969 7.78461C11.1969 7.78461 11.1969 7.78461 11.1969 7.7846C11.1969 7.7846 11.1969 7.7846 11.1969 7.78459C11.1969 7.78459 11.1969 7.78459 11.1969 7.78458C11.1969 7.78458 11.1969 7.78458 11.1969 7.78457C11.1969 7.78457 11.1969 7.78457 11.1969 7.78457C11.1969 7.78456 11.1969 7.78456 11.1969 7.78456C11.1969 7.78455 11.1969 7.78455 11.1969 7.78455C11.1969 7.78454 11.1969 7.78454 11.1969 7.78454C11.1969 7.78453 11.1969 7.78453 11.1969 7.78453C11.1969 7.78453 11.1969 7.78452 11.1969 7.78452C11.1969 7.78452 11.1969 7.78451 11.1969 7.78451C11.1969 7.78451 11.1969 7.7845 11.1969 7.7845C11.1969 7.7845 11.1969 7.7845 11.1969 7.78449C11.1969 7.78449 11.1969 7.78449 11.1969 7.78448C11.1969 7.78448 11.1969 7.78448 11.1969 7.78447C11.1969 7.78447 11.1969 7.78447 11.1969 7.78446C11.1969 7.78446 11.1969 7.78446 11.1969 7.78446C11.1969 7.78445 11.1969 7.78445 11.1969 7.78445C11.1969 7.78444 11.1969 7.78444 11.1969 7.78444C11.1969 7.78443 11.1969 7.78443 11.1969 7.78443C11.1969 7.78443 11.1969 7.78442 11.1969 7.78442C11.1969 7.78442 11.1969 7.78441 11.1969 7.78441C11.1969 7.78441 11.1969 7.7844 11.1969 7.7844C11.1969 7.7844 11.1969 7.78439 11.1969 7.78439C11.1969 7.78439 11.1969 7.78439 11.1969 7.78438C11.1969 7.78438 11.1969 7.78438 11.1969 7.78437C11.1969 7.78437 11.1969 7.78437 11.1969 7.78436C11.1969 7.78436 11.1969 7.78436 11.1969 7.78436C11.1969 7.78435 11.1969 7.78435 11.1969 7.78435C11.1969 7.78434 11.1969 7.78434 11.1969 7.78434C11.1969 7.78433 11.1969 7.78433 11.1969 7.78433C11.1969 7.78432 11.1969 7.78432 11.1969 7.78432C11.1969 7.78432 11.1969 7.78431 11.1969 7.78431C11.1969 7.78431 11.1969 7.7843 11.1969 7.7843C11.1969 7.7843 11.1969 7.78429 11.1969 7.78429C11.1969 7.78429 11.1969 7.78428 11.1969 7.78428C11.1969 7.78428 11.1969 7.78428 11.1969 7.78427C11.1969 7.78427 11.1969 7.78427 11.1969 7.78426C11.1969 7.78426 11.1969 7.78426 11.1969 7.78425C11.1969 7.78425 11.1969 7.78425 11.1969 7.78425C11.1969 7.78424 11.1969 7.78424 11.1969 7.78424C11.1969 7.78423 11.1969 7.78423 11.1969 7.78423C11.1969 7.78422 11.1969 7.78422 11.1969 7.78422C11.1969 7.78421 11.1969 7.78421 11.1969 7.78421C11.1969 7.78421 11.1969 7.7842 11.1969 7.7842C11.1969 7.7842 11.1969 7.78419 11.1969 7.78419C11.1969 7.78419 11.1969 7.78418 11.1969 7.78418C11.1969 7.78418 11.1969 7.78417 11.1969 7.78417C11.1969 7.78417 11.1969 7.78417 11.1969 7.78416C11.1969 7.78416 11.1969 7.78416 11.1969 7.78415C11.1969 7.78415 11.1969 7.78415 11.1969 7.78414C11.1969 7.78414 11.1969 7.78414 11.1969 7.78414C11.1969 7.78413 11.1969 7.78413 11.1969 7.78413C11.1969 7.78412 11.1969 7.78412 11.1969 7.78412C11.1969 7.78411 11.1969 7.78411 11.1969 7.78411C11.1969 7.7841 11.1969 7.7841 11.1969 7.7841C11.1969 7.7841 11.1969 7.78409 11.1969 7.78409C11.1969 7.78409 11.1969 7.78408 11.1969 7.78408C11.1969 7.78408 11.1969 7.78407 11.1969 7.78407C11.1969 7.78407 11.1969 7.78406 11.1969 7.78406C11.1969 7.78406 11.1969 7.78406 11.1969 7.78405C11.1969 7.78405 11.1969 7.78405 11.1969 7.78404C11.1969 7.78404 11.1969 7.78404 11.1969 7.78403C11.1969 7.78403 11.1969 7.78403 11.1969 7.78403C11.1969 7.78402 11.1969 7.78402 11.1969 7.78402C11.1969 7.78401 11.1969 7.78401 11.1969 7.78401C11.1969 7.784 11.1969 7.784 11.1969 7.784C11.1969 7.78399 11.1969 7.78399 11.1969 7.78399C11.1969 7.78399 11.1969 7.78398 11.1969 7.78398C11.1969 7.78398 11.1969 7.78397 11.1969 7.78397C11.1969 7.78397 11.1969 7.78396 11.1969 7.78396C11.1969 7.78396 11.1969 7.78396 11.1969 7.78395C11.1969 7.78395 11.1969 7.78395 11.1969 7.78394C11.1969 7.78394 11.1969 7.78394 11.1969 7.78393C11.1969 7.78393 11.1969 7.78393 11.1969 7.78392C11.1969 7.78392 11.1969 7.78392 11.1969 7.78392C11.1969 7.78391 11.1969 7.78391 11.1969 7.78391C11.1969 7.7839 11.1969 7.7839 11.1969 7.7839C11.1969 7.78389 11.1969 7.78389 11.1969 7.78389C11.1969 7.78389 11.1969 7.78388 11.1969 7.78388C11.1969 7.78388 11.1969 7.78387 11.1969 7.78387C11.1969 7.78387 11.1969 7.78386 11.1969 7.78386C11.1969 7.78386 11.1969 7.78385 11.1969 7.78385C11.1969 7.78385 11.1969 7.78385 11.1969 7.78384C11.1969 7.78384 11.1969 7.78384 11.1969 7.78383C11.1969 7.78383 11.1969 7.78383 11.1969 7.78382C11.1969 7.78382 11.1969 7.78382 11.1969 7.78381C11.1969 7.78381 11.1969 7.78381 11.1969 7.78381C11.1969 7.7838 11.1969 7.7838 11.1969 7.7838C11.1969 7.78379 11.1969 7.78379 11.1969 7.78379C11.1969 7.78378 11.1969 7.78378 11.1969 7.78378C11.1969 7.78377 11.1969 7.78377 11.1969 7.78377C11.1969 7.78377 11.1969 7.78376 11.1969 7.78376C11.1969 7.78376 11.1969 7.78375 11.1969 7.78375C11.1969 7.78375 11.1969 7.78374 11.1969 7.78374C11.1969 7.78374 11.1969 7.78374 11.1969 7.78373C11.1969 7.78373 11.1969 7.78373 11.1969 7.78372C11.1969 7.78372 11.1969 7.78372 11.1969 7.78371C11.1969 7.78371 11.1969 7.78371 11.1969 7.7837C11.1969 7.7837 11.1969 7.7837 11.1969 7.7837C11.1969 7.78369 11.1969 7.78369 11.1969 7.78369C11.1969 7.78368 11.1969 7.78368 11.1969 7.78368C11.1969 7.78367 11.1969 7.78367 11.1969 7.78367C11.1969 7.78367 11.1969 7.78366 11.1969 7.78366C11.1969 7.78366 11.1969 7.78365 11.1969 7.78365C11.1969 7.78365 11.1969 7.78364 11.1969 7.78364C11.1969 7.78364 11.1969 7.78363 11.1969 7.78363C11.1969 7.78363 11.1969 7.78363 11.1969 7.78362C11.1969 7.78362 11.1969 7.78362 11.1969 7.78361C11.1969 7.78361 11.1969 7.78361 11.1969 7.7836C11.1969 7.7836 11.1969 7.7836 11.1969 7.7836C11.1969 7.78359 11.1969 7.78359 11.1969 7.78359C11.1969 7.78358 11.1969 7.78358 11.1969 7.78358C11.1969 7.78357 11.1969 7.78357 11.1969 7.78357C11.1969 7.78356 11.1969 7.78356 11.1969 7.78356C11.1969 7.78356 11.1969 7.78355 11.1969 7.78355C11.1969 7.78355 11.1969 7.78354 11.1969 7.78354C11.1969 7.78354 11.1969 7.78353 11.1969 7.78353C11.1969 7.78353 11.1969 7.78352 11.1969 7.78352C11.1969 7.78352 11.1969 7.78352 11.1969 7.78351C11.1969 7.78351 11.1969 7.78351 11.1969 7.7835C11.1969 7.7835 11.1969 7.7835 11.1969 7.78349C11.1969 7.78349 11.1969 7.78349 11.1969 7.78348C11.1969 7.78348 11.1969 7.78348 11.1969 7.78348C11.1969 7.78347 11.1969 7.78347 11.1969 7.78347C11.1969 7.78346 11.1969 7.78346 11.1969 7.78346C11.1969 7.78345 11.1969 7.78345 11.1969 7.78345C11.1969 7.78345 11.1969 7.78344 11.1969 7.78344C11.1969 7.78344 11.1969 7.78343 11.1969 7.78343C11.1969 7.78343 11.1969 7.78342 11.1969 7.78342C11.1969 7.78342 11.1969 7.78341 11.1969 7.78341C11.1969 7.78341 11.1969 7.78341 11.1969 7.7834C11.1969 7.7834 11.1969 7.7834 11.1969 7.78339C11.1969 7.78339 11.1969 7.78339 11.1969 7.78338C11.1969 7.78338 11.1969 7.78338 11.1969 7.78338C11.1969 7.78337 11.1969 7.78337 11.1969 7.78337C11.1969 7.78336 11.1969 7.78336 11.1969 7.78336C11.1969 7.78335 11.1969 7.78335 11.1969 7.78335C11.1969 7.78334 11.1969 7.78334 11.1969 7.78334C11.1969 7.78334 11.1969 7.78333 11.1969 7.78333C11.1969 7.78333 11.1969 7.78332 11.1969 7.78332C11.1969 7.78332 11.1969 7.78331 11.1969 7.78331C11.1969 7.78331 11.1969 7.7833 11.1969 7.7833C11.1969 7.7833 11.1969 7.7833 11.1969 7.78329C11.1969 7.78329 11.1969 7.78329 11.1969 7.78328C11.1969 7.78328 11.1969 7.78328 11.1969 7.78327C11.1969 7.78327 11.1969 7.78327 11.1969 7.78327C11.1969 7.78326 11.1969 7.78326 11.1969 7.78326C11.1969 7.78325 11.1969 7.78325 11.1969 7.78325C11.1969 7.78324 11.1969 7.78324 11.1969 7.78324C11.1969 7.78323 11.1969 7.78323 11.1969 7.78323C11.1969 7.78323 11.1969 7.78322 11.1969 7.78322C11.1969 7.78322 11.1969 7.78321 11.1969 7.78321C11.1969 7.78321 11.1969 7.7832 11.1969 7.7832C11.1969 7.7832 11.1969 7.7832 11.1969 7.78319C11.1969 7.78319 11.1969 7.78319 11.1969 7.78318C11.1969 7.78318 11.1969 7.78318 11.1969 7.78317C11.1969 7.78317 11.1969 7.78317 11.1969 7.78316C11.1969 7.78316 11.1969 7.78316 11.1969 7.78316C11.1969 7.78315 11.1969 7.78315 11.1969 7.78315C11.1969 7.78314 11.1969 7.78314 11.1969 7.78314C11.1969 7.78313 11.1969 7.78313 11.1969 7.78313C11.1969 7.78312 11.1969 7.78312 11.1969 7.78312C11.1969 7.78312 11.1969 7.78311 11.1969 7.78311C11.1969 7.78311 11.1969 7.7831 11.1969 7.7831C11.1969 7.7831 11.1969 7.78309 11.1969 7.78309C11.1969 7.78309 11.1969 7.78309 11.1969 7.78308C11.1969 7.78308 11.1969 7.78308 11.1969 7.78307C11.1969 7.78307 11.1969 7.78307 11.1969 7.78306C11.1969 7.78306 11.1969 7.78306 11.1969 7.78305C11.1969 7.78305 11.1969 7.78305 11.1969 7.78305C11.1969 7.78304 11.1969 7.78304 11.1969 7.78304C11.1969 7.78303 11.1969 7.78303 11.1969 7.78303C11.1969 7.78302 11.1969 7.78302 11.1969 7.78302C11.1969 7.78301 11.1969 7.78301 11.1969 7.78301C11.1969 7.78301 11.1969 7.783 11.1969 7.783C11.1969 7.783 11.1969 7.78299 11.1969 7.78299C11.1969 7.78299 11.1969 7.78298 11.1969 7.78298C11.1969 7.78298 11.1969 7.78298 11.1969 7.78297C11.1969 7.78297 11.1969 7.78297 11.1969 7.78296C11.1969 7.78296 11.1969 7.78296 11.1969 7.78295C11.1969 7.78295 11.1969 7.78295 11.1969 7.78294C11.1969 7.78294 11.1969 7.78294 11.1969 7.78294C11.1969 7.78293 11.1969 7.78293 11.1969 7.78293C11.1969 7.78292 11.1969 7.78292 11.1969 7.78292C11.1969 7.78291 11.1969 7.78291 11.1969 7.78291C11.1969 7.78291 11.1969 7.7829 11.1969 7.7829C11.1969 7.7829 11.1969 7.78289 11.1969 7.78289C11.1969 7.78289 11.1969 7.78288 11.1969 7.78288C11.1969 7.78288 11.1969 7.78287 11.1969 7.78287C11.1969 7.78287 11.1969 7.78287 11.1969 7.78286C11.1969 7.78286 11.1969 7.78286 11.1969 7.78285C11.1969 7.78285 11.1969 7.78285 11.1969 7.78284C11.1969 7.78284 11.1969 7.78284 11.1969 7.78284C11.1969 7.78283 11.1969 7.78283 11.1969 7.78283C11.1969 7.78282 11.1969 7.78282 11.1969 7.78282C11.1969 7.78281 11.1969 7.78281 11.1969 7.78281C11.1969 7.7828 11.1969 7.7828 11.1969 7.7828C11.1969 7.78279 11.1969 7.78279 11.1969 7.78279C11.1969 7.78279 11.1969 7.78278 11.1969 7.78278C11.1969 7.78278 11.1969 7.78277 11.1969 7.78277C11.1969 7.78277 11.1969 7.78276 11.1969 7.78276C11.1969 7.78276 11.1969 7.78276 11.1969 7.78275C11.1969 7.78275 11.1969 7.78275 11.1969 7.78274C11.1969 7.78274 11.1969 7.78274 11.1969 7.78273C11.1969 7.78273 11.1969 7.78273 11.1969 7.78272C11.1969 7.78272 11.1969 7.78272 11.1969 7.78272C11.1969 7.78271 11.1969 7.78271 11.1969 7.78271C11.1969 7.7827 11.1969 7.7827 11.1969 7.7827C11.1969 7.78269 11.1969 7.78269 11.1969 7.78269C11.1969 7.78269 11.1969 7.78268 11.1969 7.78268C11.1969 7.78268 11.1969 7.78267 11.1969 7.78267C11.1969 7.78267 11.1969 7.78266 11.1969 7.78266C11.1969 7.78266 11.1969 7.78265 11.1969 7.78265C11.1969 7.78265 11.1969 7.78265 11.1969 7.78264C11.1969 7.78264 11.1969 7.78264 11.1969 7.78263C11.1969 7.78263 11.1969 7.78263 11.1969 7.78262C11.1969 7.78262 11.1969 7.78262 11.1969 7.78262C11.1969 7.78261 11.1969 7.78261 11.1969 7.78261C11.1969 7.7826 11.1969 7.7826 11.1969 7.7826C11.1969 7.78259 11.1969 7.78259 11.1969 7.78259C11.1969 7.78258 11.1969 7.78258 11.1969 7.78258C11.1969 7.78258 11.1969 7.78257 11.1969 7.78257C11.1969 7.78257 11.1969 7.78256 11.1969 7.78256C11.1969 7.78256 11.1969 7.78255 11.1969 7.78255C11.1969 7.78255 11.1969 7.78254 11.1969 7.78254C11.1969 7.78254 11.1969 7.78254 11.1969 7.78253H10.7969C10.7969 7.78254 10.7969 7.78254 10.7969 7.78254C10.7969 7.78254 10.7969 7.78255 10.7969 7.78255C10.7969 7.78255 10.7969 7.78256 10.7969 7.78256C10.7969 7.78256 10.7969 7.78257 10.7969 7.78257C10.7969 7.78257 10.7969 7.78258 10.7969 7.78258C10.7969 7.78258 10.7969 7.78258 10.7969 7.78259C10.7969 7.78259 10.7969 7.78259 10.7969 7.7826C10.7969 7.7826 10.7969 7.7826 10.7969 7.78261C10.7969 7.78261 10.7969 7.78261 10.7969 7.78262C10.7969 7.78262 10.7969 7.78262 10.7969 7.78262C10.7969 7.78263 10.7969 7.78263 10.7969 7.78263C10.7969 7.78264 10.7969 7.78264 10.7969 7.78264C10.7969 7.78265 10.7969 7.78265 10.7969 7.78265C10.7969 7.78265 10.7969 7.78266 10.7969 7.78266C10.7969 7.78266 10.7969 7.78267 10.7969 7.78267C10.7969 7.78267 10.7969 7.78268 10.7969 7.78268C10.7969 7.78268 10.7969 7.78269 10.7969 7.78269C10.7969 7.78269 10.7969 7.78269 10.7969 7.7827C10.7969 7.7827 10.7969 7.7827 10.7969 7.78271C10.7969 7.78271 10.7969 7.78271 10.7969 7.78272C10.7969 7.78272 10.7969 7.78272 10.7969 7.78272C10.7969 7.78273 10.7969 7.78273 10.7969 7.78273C10.7969 7.78274 10.7969 7.78274 10.7969 7.78274C10.7969 7.78275 10.7969 7.78275 10.7969 7.78275C10.7969 7.78276 10.7969 7.78276 10.7969 7.78276C10.7969 7.78276 10.7969 7.78277 10.7969 7.78277C10.7969 7.78277 10.7969 7.78278 10.7969 7.78278C10.7969 7.78278 10.7969 7.78279 10.7969 7.78279C10.7969 7.78279 10.7969 7.78279 10.7969 7.7828C10.7969 7.7828 10.7969 7.7828 10.7969 7.78281C10.7969 7.78281 10.7969 7.78281 10.7969 7.78282C10.7969 7.78282 10.7969 7.78282 10.7969 7.78283C10.7969 7.78283 10.7969 7.78283 10.7969 7.78284C10.7969 7.78284 10.7969 7.78284 10.7969 7.78284C10.7969 7.78285 10.7969 7.78285 10.7969 7.78285C10.7969 7.78286 10.7969 7.78286 10.7969 7.78286C10.7969 7.78287 10.7969 7.78287 10.7969 7.78287C10.7969 7.78287 10.7969 7.78288 10.7969 7.78288C10.7969 7.78288 10.7969 7.78289 10.7969 7.78289C10.7969 7.78289 10.7969 7.7829 10.7969 7.7829C10.7969 7.7829 10.7969 7.78291 10.7969 7.78291C10.7969 7.78291 10.7969 7.78291 10.7969 7.78292C10.7969 7.78292 10.7969 7.78292 10.7969 7.78293C10.7969 7.78293 10.7969 7.78293 10.7969 7.78294C10.7969 7.78294 10.7969 7.78294 10.7969 7.78294C10.7969 7.78295 10.7969 7.78295 10.7969 7.78295C10.7969 7.78296 10.7969 7.78296 10.7969 7.78296C10.7969 7.78297 10.7969 7.78297 10.7969 7.78297C10.7969 7.78298 10.7969 7.78298 10.7969 7.78298C10.7969 7.78298 10.7969 7.78299 10.7969 7.78299C10.7969 7.78299 10.7969 7.783 10.7969 7.783C10.7969 7.783 10.7969 7.78301 10.7969 7.78301C10.7969 7.78301 10.7969 7.78301 10.7969 7.78302C10.7969 7.78302 10.7969 7.78302 10.7969 7.78303C10.7969 7.78303 10.7969 7.78303 10.7969 7.78304C10.7969 7.78304 10.7969 7.78304 10.7969 7.78305C10.7969 7.78305 10.7969 7.78305 10.7969 7.78305C10.7969 7.78306 10.7969 7.78306 10.7969 7.78306C10.7969 7.78307 10.7969 7.78307 10.7969 7.78307C10.7969 7.78308 10.7969 7.78308 10.7969 7.78308C10.7969 7.78309 10.7969 7.78309 10.7969 7.78309C10.7969 7.78309 10.7969 7.7831 10.7969 7.7831C10.7969 7.7831 10.7969 7.78311 10.7969 7.78311C10.7969 7.78311 10.7969 7.78312 10.7969 7.78312C10.7969 7.78312 10.7969 7.78312 10.7969 7.78313C10.7969 7.78313 10.7969 7.78313 10.7969 7.78314C10.7969 7.78314 10.7969 7.78314 10.7969 7.78315C10.7969 7.78315 10.7969 7.78315 10.7969 7.78316C10.7969 7.78316 10.7969 7.78316 10.7969 7.78316C10.7969 7.78317 10.7969 7.78317 10.7969 7.78317C10.7969 7.78318 10.7969 7.78318 10.7969 7.78318C10.7969 7.78319 10.7969 7.78319 10.7969 7.78319C10.7969 7.7832 10.7969 7.7832 10.7969 7.7832C10.7969 7.7832 10.7969 7.78321 10.7969 7.78321C10.7969 7.78321 10.7969 7.78322 10.7969 7.78322C10.7969 7.78322 10.7969 7.78323 10.7969 7.78323C10.7969 7.78323 10.7969 7.78323 10.7969 7.78324C10.7969 7.78324 10.7969 7.78324 10.7969 7.78325C10.7969 7.78325 10.7969 7.78325 10.7969 7.78326C10.7969 7.78326 10.7969 7.78326 10.7969 7.78327C10.7969 7.78327 10.7969 7.78327 10.7969 7.78327C10.7969 7.78328 10.7969 7.78328 10.7969 7.78328C10.7969 7.78329 10.7969 7.78329 10.7969 7.78329C10.7969 7.7833 10.7969 7.7833 10.7969 7.7833C10.7969 7.7833 10.7969 7.78331 10.7969 7.78331C10.7969 7.78331 10.7969 7.78332 10.7969 7.78332C10.7969 7.78332 10.7969 7.78333 10.7969 7.78333C10.7969 7.78333 10.7969 7.78334 10.7969 7.78334C10.7969 7.78334 10.7969 7.78334 10.7969 7.78335C10.7969 7.78335 10.7969 7.78335 10.7969 7.78336C10.7969 7.78336 10.7969 7.78336 10.7969 7.78337C10.7969 7.78337 10.7969 7.78337 10.7969 7.78338C10.7969 7.78338 10.7969 7.78338 10.7969 7.78338C10.7969 7.78339 10.7969 7.78339 10.7969 7.78339C10.7969 7.7834 10.7969 7.7834 10.7969 7.7834C10.7969 7.78341 10.7969 7.78341 10.7969 7.78341C10.7969 7.78341 10.7969 7.78342 10.7969 7.78342C10.7969 7.78342 10.7969 7.78343 10.7969 7.78343C10.7969 7.78343 10.7969 7.78344 10.7969 7.78344C10.7969 7.78344 10.7969 7.78345 10.7969 7.78345C10.7969 7.78345 10.7969 7.78345 10.7969 7.78346C10.7969 7.78346 10.7969 7.78346 10.7969 7.78347C10.7969 7.78347 10.7969 7.78347 10.7969 7.78348C10.7969 7.78348 10.7969 7.78348 10.7969 7.78348C10.7969 7.78349 10.7969 7.78349 10.7969 7.78349C10.7969 7.7835 10.7969 7.7835 10.7969 7.7835C10.7969 7.78351 10.7969 7.78351 10.7969 7.78351C10.7969 7.78352 10.7969 7.78352 10.7969 7.78352C10.7969 7.78352 10.7969 7.78353 10.7969 7.78353C10.7969 7.78353 10.7969 7.78354 10.7969 7.78354C10.7969 7.78354 10.7969 7.78355 10.7969 7.78355C10.7969 7.78355 10.7969 7.78356 10.7969 7.78356C10.7969 7.78356 10.7969 7.78356 10.7969 7.78357C10.7969 7.78357 10.7969 7.78357 10.7969 7.78358C10.7969 7.78358 10.7969 7.78358 10.7969 7.78359C10.7969 7.78359 10.7969 7.78359 10.7969 7.7836C10.7969 7.7836 10.7969 7.7836 10.7969 7.7836C10.7969 7.78361 10.7969 7.78361 10.7969 7.78361C10.7969 7.78362 10.7969 7.78362 10.7969 7.78362C10.7969 7.78363 10.7969 7.78363 10.7969 7.78363C10.7969 7.78363 10.7969 7.78364 10.7969 7.78364C10.7969 7.78364 10.7969 7.78365 10.7969 7.78365C10.7969 7.78365 10.7969 7.78366 10.7969 7.78366C10.7969 7.78366 10.7969 7.78367 10.7969 7.78367C10.7969 7.78367 10.7969 7.78367 10.7969 7.78368C10.7969 7.78368 10.7969 7.78368 10.7969 7.78369C10.7969 7.78369 10.7969 7.78369 10.7969 7.7837C10.7969 7.7837 10.7969 7.7837 10.7969 7.7837C10.7969 7.78371 10.7969 7.78371 10.7969 7.78371C10.7969 7.78372 10.7969 7.78372 10.7969 7.78372C10.7969 7.78373 10.7969 7.78373 10.7969 7.78373C10.7969 7.78374 10.7969 7.78374 10.7969 7.78374C10.7969 7.78374 10.7969 7.78375 10.7969 7.78375C10.7969 7.78375 10.7969 7.78376 10.7969 7.78376C10.7969 7.78376 10.7969 7.78377 10.7969 7.78377C10.7969 7.78377 10.7969 7.78377 10.7969 7.78378C10.7969 7.78378 10.7969 7.78378 10.7969 7.78379C10.7969 7.78379 10.7969 7.78379 10.7969 7.7838C10.7969 7.7838 10.7969 7.7838 10.7969 7.78381C10.7969 7.78381 10.7969 7.78381 10.7969 7.78381C10.7969 7.78382 10.7969 7.78382 10.7969 7.78382C10.7969 7.78383 10.7969 7.78383 10.7969 7.78383C10.7969 7.78384 10.7969 7.78384 10.7969 7.78384C10.7969 7.78385 10.7969 7.78385 10.7969 7.78385C10.7969 7.78385 10.7969 7.78386 10.7969 7.78386C10.7969 7.78386 10.7969 7.78387 10.7969 7.78387C10.7969 7.78387 10.7969 7.78388 10.7969 7.78388C10.7969 7.78388 10.7969 7.78389 10.7969 7.78389C10.7969 7.78389 10.7969 7.78389 10.7969 7.7839C10.7969 7.7839 10.7969 7.7839 10.7969 7.78391C10.7969 7.78391 10.7969 7.78391 10.7969 7.78392C10.7969 7.78392 10.7969 7.78392 10.7969 7.78392C10.7969 7.78393 10.7969 7.78393 10.7969 7.78393C10.7969 7.78394 10.7969 7.78394 10.7969 7.78394C10.7969 7.78395 10.7969 7.78395 10.7969 7.78395C10.7969 7.78396 10.7969 7.78396 10.7969 7.78396C10.7969 7.78396 10.7969 7.78397 10.7969 7.78397C10.7969 7.78397 10.7969 7.78398 10.7969 7.78398C10.7969 7.78398 10.7969 7.78399 10.7969 7.78399C10.7969 7.78399 10.7969 7.78399 10.7969 7.784C10.7969 7.784 10.7969 7.784 10.7969 7.78401C10.7969 7.78401 10.7969 7.78401 10.7969 7.78402C10.7969 7.78402 10.7969 7.78402 10.7969 7.78403C10.7969 7.78403 10.7969 7.78403 10.7969 7.78403C10.7969 7.78404 10.7969 7.78404 10.7969 7.78404C10.7969 7.78405 10.7969 7.78405 10.7969 7.78405C10.7969 7.78406 10.7969 7.78406 10.7969 7.78406C10.7969 7.78406 10.7969 7.78407 10.7969 7.78407C10.7969 7.78407 10.7969 7.78408 10.7969 7.78408C10.7969 7.78408 10.7969 7.78409 10.7969 7.78409C10.7969 7.78409 10.7969 7.7841 10.7969 7.7841C10.7969 7.7841 10.7969 7.7841 10.7969 7.78411C10.7969 7.78411 10.7969 7.78411 10.7969 7.78412C10.7969 7.78412 10.7969 7.78412 10.7969 7.78413C10.7969 7.78413 10.7969 7.78413 10.7969 7.78414C10.7969 7.78414 10.7969 7.78414 10.7969 7.78414C10.7969 7.78415 10.7969 7.78415 10.7969 7.78415C10.7969 7.78416 10.7969 7.78416 10.7969 7.78416C10.7969 7.78417 10.7969 7.78417 10.7969 7.78417C10.7969 7.78417 10.7969 7.78418 10.7969 7.78418C10.7969 7.78418 10.7969 7.78419 10.7969 7.78419C10.7969 7.78419 10.7969 7.7842 10.7969 7.7842C10.7969 7.7842 10.7969 7.78421 10.7969 7.78421C10.7969 7.78421 10.7969 7.78421 10.7969 7.78422C10.7969 7.78422 10.7969 7.78422 10.7969 7.78423C10.7969 7.78423 10.7969 7.78423 10.7969 7.78424C10.7969 7.78424 10.7969 7.78424 10.7969 7.78425C10.7969 7.78425 10.7969 7.78425 10.7969 7.78425C10.7969 7.78426 10.7969 7.78426 10.7969 7.78426C10.7969 7.78427 10.7969 7.78427 10.7969 7.78427C10.7969 7.78428 10.7969 7.78428 10.7969 7.78428C10.7969 7.78428 10.7969 7.78429 10.7969 7.78429C10.7969 7.78429 10.7969 7.7843 10.7969 7.7843C10.7969 7.7843 10.7969 7.78431 10.7969 7.78431C10.7969 7.78431 10.7969 7.78432 10.7969 7.78432C10.7969 7.78432 10.7969 7.78432 10.7969 7.78433C10.7969 7.78433 10.7969 7.78433 10.7969 7.78434C10.7969 7.78434 10.7969 7.78434 10.7969 7.78435C10.7969 7.78435 10.7969 7.78435 10.7969 7.78436C10.7969 7.78436 10.7969 7.78436 10.7969 7.78436C10.7969 7.78437 10.7969 7.78437 10.7969 7.78437C10.7969 7.78438 10.7969 7.78438 10.7969 7.78438C10.7969 7.78439 10.7969 7.78439 10.7969 7.78439C10.7969 7.78439 10.7969 7.7844 10.7969 7.7844C10.7969 7.7844 10.7969 7.78441 10.7969 7.78441C10.7969 7.78441 10.7969 7.78442 10.7969 7.78442C10.7969 7.78442 10.7969 7.78443 10.7969 7.78443C10.7969 7.78443 10.7969 7.78443 10.7969 7.78444C10.7969 7.78444 10.7969 7.78444 10.7969 7.78445C10.7969 7.78445 10.7969 7.78445 10.7969 7.78446C10.7969 7.78446 10.7969 7.78446 10.7969 7.78446C10.7969 7.78447 10.7969 7.78447 10.7969 7.78447C10.7969 7.78448 10.7969 7.78448 10.7969 7.78448C10.7969 7.78449 10.7969 7.78449 10.7969 7.78449C10.7969 7.7845 10.7969 7.7845 10.7969 7.7845C10.7969 7.7845 10.7969 7.78451 10.7969 7.78451C10.7969 7.78451 10.7969 7.78452 10.7969 7.78452C10.7969 7.78452 10.7969 7.78453 10.7969 7.78453C10.7969 7.78453 10.7969 7.78453 10.7969 7.78454C10.7969 7.78454 10.7969 7.78454 10.7969 7.78455C10.7969 7.78455 10.7969 7.78455 10.7969 7.78456C10.7969 7.78456 10.7969 7.78456 10.7969 7.78457C10.7969 7.78457 10.7969 7.78457 10.7969 7.78457C10.7969 7.78458 10.7969 7.78458 10.7969 7.78458C10.7969 7.78459 10.7969 7.78459 10.7969 7.78459C10.7969 7.7846 10.7969 7.7846 10.7969 7.7846C10.7969 7.78461 10.7969 7.78461 10.7969 7.78461C10.7969 7.78461 10.7969 7.78462 10.7969 7.78462C10.7969 7.78462 10.7969 7.78463 10.7969 7.78463C10.7969 7.78463 10.7969 7.78464 10.7969 7.78464C10.7969 7.78464 10.7969 7.78465 10.7969 7.78465C10.7969 7.78465 10.7969 7.78465 10.7969 7.78466C10.7969 7.78466 10.7969 7.78466 10.7969 7.78467C10.7969 7.78467 10.7969 7.78467 10.7969 7.78468C10.7969 7.78468 10.7969 7.78468 10.7969 7.78468C10.7969 7.78469 10.7969 7.78469 10.7969 7.78469C10.7969 7.7847 10.7969 7.7847 10.7969 7.7847C10.7969 7.78471 10.7969 7.78471 10.7969 7.78471C10.7969 7.78472 10.7969 7.78472 10.7969 7.78472C10.7969 7.78472 10.7969 7.78473 10.7969 7.78473C10.7969 7.78473 10.7969 7.78474 10.7969 7.78474C10.7969 7.78474 10.7969 7.78475 10.7969 7.78475C10.7969 7.78475 10.7969 7.78475 10.7969 7.78476C10.7969 7.78476 10.7969 7.78476 10.7969 7.78477C10.7969 7.78477 10.7969 7.78477 10.7969 7.78478C10.7969 7.78478 10.7969 7.78478 10.7969 7.78479C10.7969 7.78479 10.7969 7.78479 10.7969 7.78479C10.7969 7.7848 10.7969 7.7848 10.7969 7.7848C10.7969 7.78481 10.7969 7.78481 10.7969 7.78481C10.7969 7.78482 10.7969 7.78482 10.7969 7.78482C10.7969 7.78482 10.7969 7.78483 10.7969 7.78483C10.7969 7.78483 10.7969 7.78484 10.7969 7.78484C10.7969 7.78484 10.7969 7.78485 10.7969 7.78485C10.7969 7.78485 10.7969 7.78486 10.7969 7.78486C10.7969 7.78486 10.7969 7.78486 10.7969 7.78487C10.7969 7.78487 10.7969 7.78487 10.7969 7.78488C10.7969 7.78488 10.7969 7.78488 10.7969 7.78489C10.7969 7.78489 10.7969 7.78489 10.7969 7.7849C10.7969 7.7849 10.7969 7.7849 10.7969 7.7849C10.7969 7.78491 10.7969 7.78491 10.7969 7.78491C10.7969 7.78492 10.7969 7.78492 10.7969 7.78492C10.7969 7.78493 10.7969 7.78493 10.7969 7.78493C10.7969 7.78493 10.7969 7.78494 10.7969 7.78494C10.7969 7.78494 10.7969 7.78495 10.7969 7.78495C10.7969 7.78495 10.7969 7.78496 10.7969 7.78496C10.7969 7.78496 10.7969 7.78497 10.7969 7.78497C10.7969 7.78497 10.7969 7.78497 10.7969 7.78498C10.7969 7.78498 10.7969 7.78498 10.7969 7.78499C10.7969 7.78499 10.7969 7.78499 10.7969 7.785C10.7969 7.785 10.7969 7.785 10.7969 7.78501C10.7969 7.78501 10.7969 7.78501 10.7969 7.78501C10.7969 7.78502 10.7969 7.78502 10.7969 7.78502C10.7969 7.78503 10.7969 7.78503 10.7969 7.78503C10.7969 7.78504 10.7969 7.78504 10.7969 7.78504C10.7969 7.78504 10.7969 7.78505 10.7969 7.78505C10.7969 7.78505 10.7969 7.78506 10.7969 7.78506C10.7969 7.78506 10.7969 7.78507 10.7969 7.78507C10.7969 7.78507 10.7969 7.78508 10.7969 7.78508C10.7969 7.78508 10.7969 7.78508 10.7969 7.78509C10.7969 7.78509 10.7969 7.78509 10.7969 7.7851C10.7969 7.7851 10.7969 7.7851 10.7969 7.78511C10.7969 7.78511 10.7969 7.78511 10.7969 7.78512C10.7969 7.78512 10.7969 7.78512 10.7969 7.78512C10.7969 7.78513 10.7969 7.78513 10.7969 7.78513C10.7969 7.78514 10.7969 7.78514 10.7969 7.78514C10.7969 7.78515 10.7969 7.78515 10.7969 7.78515C10.7969 7.78515 10.7969 7.78516 10.7969 7.78516C10.7969 7.78516 10.7969 7.78517 10.7969 7.78517C10.7969 7.78517 10.7969 7.78518 10.7969 7.78518C10.7969 7.78518 10.7969 7.78519 10.7969 7.78519C10.7969 7.78519 10.7969 7.78519 10.7969 7.7852C10.7969 7.7852 10.7969 7.7852 10.7969 7.78521C10.7969 7.78521 10.7969 7.78521 10.7969 7.78522C10.7969 7.78522 10.7969 7.78522 10.7969 7.78522C10.7969 7.78523 10.7969 7.78523 10.7969 7.78523C10.7969 7.78524 10.7969 7.78524 10.7969 7.78524C10.7969 7.78525 10.7969 7.78525 10.7969 7.78525C10.7969 7.78526 10.7969 7.78526 10.7969 7.78526C10.7969 7.78526 10.7969 7.78527 10.7969 7.78527C10.7969 7.78527 10.7969 7.78528 10.7969 7.78528C10.7969 7.78528 10.7969 7.78529 10.7969 7.78529C10.7969 7.78529 10.7969 7.7853 10.7969 7.7853C10.7969 7.7853 10.7969 7.7853 10.7969 7.78531C10.7969 7.78531 10.7969 7.78531 10.7969 7.78532C10.7969 7.78532 10.7969 7.78532 10.7969 7.78533C10.7969 7.78533 10.7969 7.78533 10.7969 7.78533C10.7969 7.78534 10.7969 7.78534 10.7969 7.78534C10.7969 7.78535 10.7969 7.78535 10.7969 7.78535C10.7969 7.78536 10.7969 7.78536 10.7969 7.78536C10.7969 7.78537 10.7969 7.78537 10.7969 7.78537C10.7969 7.78537 10.7969 7.78538 10.7969 7.78538C10.7969 7.78538 10.7969 7.78539 10.7969 7.78539C10.7969 7.78539 10.7969 7.7854 10.7969 7.7854C10.7969 7.7854 10.7969 7.78541 10.7969 7.78541C10.7969 7.78541 10.7969 7.78541 10.7969 7.78542C10.7969 7.78542 10.7969 7.78542 10.7969 7.78543C10.7969 7.78543 10.7969 7.78543 10.7969 7.78544C10.7969 7.78544 10.7969 7.78544 10.7969 7.78544C10.7969 7.78545 10.7969 7.78545 10.7969 7.78545C10.7969 7.78546 10.7969 7.78546 10.7969 7.78546C10.7969 7.78547 10.7969 7.78547 10.7969 7.78547C10.7969 7.78548 10.7969 7.78548 10.7969 7.78548C10.7969 7.78548 10.7969 7.78549 10.7969 7.78549C10.7969 7.78549 10.7969 7.7855 10.7969 7.7855C10.7969 7.7855 10.7969 7.78551 10.7969 7.78551C10.7969 7.78551 10.7969 7.78551 10.7969 7.78552C10.7969 7.78552 10.7969 7.78552 10.7969 7.78553C10.7969 7.78553 10.7969 7.78553 10.7969 7.78554C10.7969 7.78554 10.7969 7.78554 10.7969 7.78555C10.7969 7.78555 10.7969 7.78555 10.7969 7.78555C10.7969 7.78556 10.7969 7.78556 10.7969 7.78556C10.7969 7.78557 10.7969 7.78557 10.7969 7.78557C10.7969 7.78558 10.7969 7.78558 10.7969 7.78558C10.7969 7.78558 10.7969 7.78559 10.7969 7.78559C10.7969 7.78559 10.7969 7.7856 10.7969 7.7856C10.7969 7.7856 10.7969 7.78561 10.7969 7.78561C10.7969 7.78561 10.7969 7.78562 10.7969 7.78562C10.7969 7.78562 10.7969 7.78562 10.7969 7.78563C10.7969 7.78563 10.7969 7.78563 10.7969 7.78564C10.7969 7.78564 10.7969 7.78564 10.7969 7.78565C10.7969 7.78565 10.7969 7.78565 10.7969 7.78566C10.7969 7.78566 10.7969 7.78566 10.7969 7.78566C10.7969 7.78567 10.7969 7.78567 10.7969 7.78567C10.7969 7.78568 10.7969 7.78568 10.7969 7.78568C10.7969 7.78569 10.7969 7.78569 10.7969 7.78569C10.7969 7.7857 10.7969 7.7857 10.7969 7.7857C10.7969 7.7857 10.7969 7.78571 10.7969 7.78571C10.7969 7.78571 10.7969 7.78572 10.7969 7.78572C10.7969 7.78572 10.7969 7.78573 10.7969 7.78573C10.7969 7.78573 10.7969 7.78573 10.7969 7.78574C10.7969 7.78574 10.7969 7.78574 10.7969 7.78575C10.7969 7.78575 10.7969 7.78575 10.7969 7.78576C10.7969 7.78576 10.7969 7.78576 10.7969 7.78577C10.7969 7.78577 10.7969 7.78577 10.7969 7.78577C10.7969 7.78578 10.7969 7.78578 10.7969 7.78578C10.7969 7.78579 10.7969 7.78579 10.7969 7.78579C10.7969 7.7858 10.7969 7.7858 10.7969 7.7858C10.7969 7.7858 10.7969 7.78581 10.7969 7.78581C10.7969 7.78581 10.7969 7.78582 10.7969 7.78582C10.7969 7.78582 10.7969 7.78583 10.7969 7.78583C10.7969 7.78583 10.7969 7.78584 10.7969 7.78584C10.7969 7.78584 10.7969 7.78584 10.7969 7.78585C10.7969 7.78585 10.7969 7.78585 10.7969 7.78586C10.7969 7.78586 10.7969 7.78586 10.7969 7.78587C10.7969 7.78587 10.7969 7.78587 10.7969 7.78587C10.7969 7.78588 10.7969 7.78588 10.7969 7.78588C10.7969 7.78589 10.7969 7.78589 10.7969 7.78589C10.7969 7.7859 10.7969 7.7859 10.7969 7.7859C10.7969 7.78591 10.7969 7.78591 10.7969 7.78591C10.7969 7.78591 10.7969 7.78592 10.7969 7.78592C10.7969 7.78592 10.7969 7.78593 10.7969 7.78593C10.7969 7.78593 10.7969 7.78594 10.7969 7.78594C10.7969 7.78594 10.7969 7.78595 10.7969 7.78595C10.7969 7.78595 10.7969 7.78595 10.7969 7.78596C10.7969 7.78596 10.7969 7.78596 10.7969 7.78597C10.7969 7.78597 10.7969 7.78597 10.7969 7.78598C10.7969 7.78598 10.7969 7.78598 10.7969 7.78598C10.7969 7.78599 10.7969 7.78599 10.7969 7.78599C10.7969 7.786 10.7969 7.786 10.7969 7.786C10.7969 7.78601 10.7969 7.78601 10.7969 7.78601C10.7969 7.78602 10.7969 7.78602 10.7969 7.78602C10.7969 7.78602 10.7969 7.78603 10.7969 7.78603C10.7969 7.78603 10.7969 7.78604 10.7969 7.78604C10.7969 7.78604 10.7969 7.78605 10.7969 7.78605C10.7969 7.78605 10.7969 7.78606 10.7969 7.78606C10.7969 7.78606 10.7969 7.78606 10.7969 7.78607C10.7969 7.78607 10.7969 7.78607 10.7969 7.78608C10.7969 7.78608 10.7969 7.78608 10.7969 7.78609C10.7969 7.78609 10.7969 7.78609 10.7969 7.78609C10.7969 7.7861 10.7969 7.7861 10.7969 7.7861C10.7969 7.78611 10.7969 7.78611 10.7969 7.78611C10.7969 7.78612 10.7969 7.78612 10.7969 7.78612C10.7969 7.78613 10.7969 7.78613 10.7969 7.78613C10.7969 7.78613 10.7969 7.78614 10.7969 7.78614C10.7969 7.78614 10.7969 7.78615 10.7969 7.78615C10.7969 7.78615 10.7969 7.78616 10.7969 7.78616C10.7969 7.78616 10.7969 7.78617 10.7969 7.78617C10.7969 7.78617 10.7969 7.78617 10.7969 7.78618C10.7969 7.78618 10.7969 7.78618 10.7969 7.78619C10.7969 7.78619 10.7969 7.78619 10.7969 7.7862C10.7969 7.7862 10.7969 7.7862 10.7969 7.7862C10.7969 7.78621 10.7969 7.78621 10.7969 7.78621C10.7969 7.78622 10.7969 7.78622 10.7969 7.78622C10.7969 7.78623 10.7969 7.78623 10.7969 7.78623C10.7969 7.78624 10.7969 7.78624 10.7969 7.78624C10.7969 7.78624 10.7969 7.78625 10.7969 7.78625C10.7969 7.78625 10.7969 7.78626 10.7969 7.78626C10.7969 7.78626 10.7969 7.78627 10.7969 7.78627C10.7969 7.78627 10.7969 7.78627 10.7969 7.78628C10.7969 7.78628 10.7969 7.78628 10.7969 7.78629C10.7969 7.78629 10.7969 7.78629 10.7969 7.7863C10.7969 7.7863 10.7969 7.7863 10.7969 7.78631C10.7969 7.78631 10.7969 7.78631 10.7969 7.78631C10.7969 7.78632 10.7969 7.78632 10.7969 7.78632C10.7969 7.78633 10.7969 7.78633 10.7969 7.78633C10.7969 7.78634 10.7969 7.78634 10.7969 7.78634C10.7969 7.78635 10.7969 7.78635 10.7969 7.78635C10.7969 7.78635 10.7969 7.78636 10.7969 7.78636C10.7969 7.78636 10.7969 7.78637 10.7969 7.78637C10.7969 7.78637 10.7969 7.78638 10.7969 7.78638C10.7969 7.78638 10.7969 7.78639 10.7969 7.78639C10.7969 7.78639 10.7969 7.78639 10.7969 7.7864C10.7969 7.7864 10.7969 7.7864 10.7969 7.78641C10.7969 7.78641 10.7969 7.78641 10.7969 7.78642C10.7969 7.78642 10.7969 7.78642 10.7969 7.78642C10.7969 7.78643 10.7969 7.78643 10.7969 7.78643C10.7969 7.78644 10.7969 7.78644 10.7969 7.78644C10.7969 7.78645 10.7969 7.78645 10.7969 7.78645C10.7969 7.78646 10.7969 7.78646 10.7969 7.78646C10.7969 7.78646 10.7969 7.78647 10.7969 7.78647C10.7969 7.78647 10.7969 7.78648 10.7969 7.78648C10.7969 7.78648 10.7969 7.78649 10.7969 7.78649C10.7969 7.78649 10.7969 7.78649 10.7969 7.7865C10.7969 7.7865 10.7969 7.7865 10.7969 7.78651C10.7969 7.78651 10.7969 7.78651 10.7969 7.78652C10.7969 7.78652 10.7969 7.78652 10.7969 7.78653C10.7969 7.78653 10.7969 7.78653 10.7969 7.78653C10.7969 7.78654 10.7969 7.78654 10.7969 7.78654C10.7969 7.78655 10.7969 7.78655 10.7969 7.78655C10.7969 7.78656 10.7969 7.78656 10.7969 7.78656C10.7969 7.78656 10.7969 7.78657 10.7969 7.78657C10.7969 7.78657 10.7969 7.78658 10.7969 7.78658C10.7969 7.78658 10.7969 7.78659 10.7969 7.78659C10.7969 7.78659 10.7969 7.7866 10.7969 7.7866C10.7969 7.7866 10.7969 7.7866 10.7969 7.78661C10.7969 7.78661 10.7969 7.78661 10.7969 7.78662C10.7969 7.78662 10.7969 7.78662 10.7969 7.78663C10.7969 7.78663 10.7969 7.78663 10.7969 7.78663C10.7969 7.78664 10.7969 7.78664 10.7969 7.78664C10.7969 7.78665 10.7969 7.78665 10.7969 7.78665C10.7969 7.78666 10.7969 7.78666 10.7969 7.78666C10.7969 7.78667 10.7969 7.78667 10.7969 7.78667C10.7969 7.78667 10.7969 7.78668 10.7969 7.78668C10.7969 7.78668 10.7969 7.78669 10.7969 7.78669C10.7969 7.78669 10.7969 7.7867 10.7969 7.7867C10.7969 7.7867 10.7969 7.78671 10.7969 7.78671C10.7969 7.78671 10.7969 7.78671 10.7969 7.78672C10.7969 7.78672 10.7969 7.78672 10.7969 7.78673C10.7969 7.78673 10.7969 7.78673 10.7969 7.78674C10.7969 7.78674 10.7969 7.78674 10.7969 7.78675C10.7969 7.78675 10.7969 7.78675 10.7969 7.78675C10.7969 7.78676 10.7969 7.78676 10.7969 7.78676C10.7969 7.78677 10.7969 7.78677 10.7969 7.78677C10.7969 7.78678 10.7969 7.78678 10.7969 7.78678C10.7969 7.78678 10.7969 7.78679 10.7969 7.78679C10.7969 7.78679 10.7969 7.7868 10.7969 7.7868C10.7969 7.7868 10.7969 7.78681 10.7969 7.78681C10.7969 7.78681 10.7969 7.78682 10.7969 7.78682C10.7969 7.78682 10.7969 7.78682 10.7969 7.78683C10.7969 7.78683 10.7969 7.78683 10.7969 7.78684C10.7969 7.78684 10.7969 7.78684 10.7969 7.78685C10.7969 7.78685 10.7969 7.78685 10.7969 7.78685C10.7969 7.78686 10.7969 7.78686 10.7969 7.78686C10.7969 7.78687 10.7969 7.78687 10.7969 7.78687C10.7969 7.78688 10.7969 7.78688 10.7969 7.78688C10.7969 7.78689 10.7969 7.78689 10.7969 7.78689C10.7969 7.78689 10.7969 7.7869 10.7969 7.7869C10.7969 7.7869 10.7969 7.78691 10.7969 7.78691C10.7969 7.78691 10.7969 7.78692 10.7969 7.78692C10.7969 7.78692 10.7969 7.78693 10.7969 7.78693C10.7969 7.78693 10.7969 7.78693 10.7969 7.78694C10.7969 7.78694 10.7969 7.78694 10.7969 7.78695C10.7969 7.78695 10.7969 7.78695 10.7969 7.78696C10.7969 7.78696 10.7969 7.78696 10.7969 7.78696C10.7969 7.78697 10.7969 7.78697 10.7969 7.78697C10.7969 7.78698 10.7969 7.78698 10.7969 7.78698C10.7969 7.78699 10.7969 7.78699 10.7969 7.78699C10.7969 7.787 10.7969 7.787 10.7969 7.787C10.7969 7.787 10.7969 7.78701 10.7969 7.78701C10.7969 7.78701 10.7969 7.78702 10.7969 7.78702C10.7969 7.78702 10.7969 7.78703 10.7969 7.78703C10.7969 7.78703 10.7969 7.78703 10.7969 7.78704C10.7969 7.78704 10.7969 7.78704 10.7969 7.78705C10.7969 7.78705 10.7969 7.78705 10.7969 7.78706C10.7969 7.78706 10.7969 7.78706 10.7969 7.78707C10.7969 7.78707 10.7969 7.78707 10.7969 7.78707C10.7969 7.78708 10.7969 7.78708 10.7969 7.78708C10.7969 7.78709 10.7969 7.78709 10.7969 7.78709C10.7969 7.7871 10.7969 7.7871 10.7969 7.7871C10.7969 7.78711 10.7969 7.78711 10.7969 7.78711C10.7969 7.78711 10.7969 7.78712 10.7969 7.78712C10.7969 7.78712 10.7969 7.78713 10.7969 7.78713C10.7969 7.78713 10.7969 7.78714 10.7969 7.78714C10.7969 7.78714 10.7969 7.78715 10.7969 7.78715C10.7969 7.78715 10.7969 7.78715 10.7969 7.78716C10.7969 7.78716 10.7969 7.78716 10.7969 7.78717C10.7969 7.78717 10.7969 7.78717 10.7969 7.78718C10.7969 7.78718 10.7969 7.78718 10.7969 7.78718C10.7969 7.78719 10.7969 7.78719 10.7969 7.78719C10.7969 7.7872 10.7969 7.7872 10.7969 7.7872C10.7969 7.78721 10.7969 7.78721 10.7969 7.78721C10.7969 7.78722 10.7969 7.78722 10.7969 7.78722H11.1969ZM11.1969 7.78253C11.1969 7.47489 10.9477 7.22556 10.64 7.22556V7.62556C10.7267 7.62556 10.7969 7.69569 10.7969 7.78253H11.1969ZM10.64 7.22556C10.64 7.22556 10.64 7.22556 10.64 7.22556C10.64 7.22556 10.64 7.22556 10.64 7.22556C10.64 7.22556 10.64 7.22556 10.64 7.22556C10.64 7.22556 10.64 7.22556 10.64 7.22556C10.64 7.22556 10.64 7.22556 10.64 7.22556C10.64 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6399 7.22556C10.6399 7.22556 10.6399 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6398 7.22556C10.6398 7.22556 10.6398 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6397 7.22556C10.6397 7.22556 10.6397 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6396 7.22556 10.6396 7.22556 10.6396 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6395 7.22556 10.6395 7.22556 10.6395 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6394 7.22556 10.6394 7.22556 10.6394 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6393 7.22556 10.6393 7.22556 10.6393 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6392 7.22556 10.6392 7.22556C10.6392 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.6391 7.22556 10.6391 7.22556C10.6391 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.639 7.22556 10.639 7.22556C10.639 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6389 7.22556C10.6389 7.22556 10.6389 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6388 7.22556C10.6388 7.22556 10.6388 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6387 7.22556C10.6387 7.22556 10.6387 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6386 7.22556 10.6386 7.22556 10.6386 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6385 7.22556 10.6385 7.22556 10.6385 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6384 7.22556 10.6384 7.22556 10.6384 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6383 7.22556 10.6383 7.22556C10.6383 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6382 7.22556 10.6382 7.22556C10.6382 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.6381 7.22556 10.6381 7.22556C10.6381 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.638 7.22556 10.638 7.22556C10.638 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6379 7.22556C10.6379 7.22556 10.6379 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6378 7.22556C10.6378 7.22556 10.6378 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6377 7.22556C10.6377 7.22556 10.6377 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6376 7.22556 10.6376 7.22556 10.6376 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6375 7.22556 10.6375 7.22556 10.6375 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6374 7.22556 10.6374 7.22556 10.6374 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6373 7.22556 10.6373 7.22556C10.6373 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6372 7.22556 10.6372 7.22556C10.6372 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.6371 7.22556 10.6371 7.22556C10.6371 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.637 7.22556C10.637 7.22556 10.637 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6369 7.22556C10.6369 7.22556 10.6369 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6368 7.22556C10.6368 7.22556 10.6368 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6367 7.22556 10.6367 7.22556 10.6367 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6366 7.22556 10.6366 7.22556 10.6366 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6365 7.22556 10.6365 7.22556 10.6365 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6364 7.22556 10.6364 7.22556 10.6364 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6363 7.22556 10.6363 7.22556C10.6363 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6362 7.22556 10.6362 7.22556C10.6362 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.6361 7.22556 10.6361 7.22556C10.6361 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.636 7.22556C10.636 7.22556 10.636 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6359 7.22556C10.6359 7.22556 10.6359 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6358 7.22556C10.6358 7.22556 10.6358 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6357 7.22556 10.6357 7.22556 10.6357 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6356 7.22556 10.6356 7.22556 10.6356 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6355 7.22556 10.6355 7.22556 10.6355 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6354 7.22556 10.6354 7.22556C10.6354 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6353 7.22556 10.6353 7.22556C10.6353 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6352 7.22556 10.6352 7.22556C10.6352 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.6351 7.22556 10.6351 7.22556C10.6351 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.635 7.22556C10.635 7.22556 10.635 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6349 7.22556C10.6349 7.22556 10.6349 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6348 7.22556C10.6348 7.22556 10.6348 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6347 7.22556 10.6347 7.22556 10.6347 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6346 7.22556 10.6346 7.22556 10.6346 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6345 7.22556 10.6345 7.22556 10.6345 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556C10.6344 7.22556 10.6344 7.22556 10.6344 7.22556V7.62556C10.6344 7.62556 10.6344 7.62556 10.6344 7.62556C10.6344 7.62556 10.6344 7.62556 10.6344 7.62556C10.6344 7.62556 10.6344 7.62556 10.6344 7.62556C10.6344 7.62556 10.6344 7.62556 10.6344 7.62556C10.6344 7.62556 10.6344 7.62556 10.6344 7.62556C10.6344 7.62556 10.6344 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6345 7.62556C10.6345 7.62556 10.6345 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6346 7.62556C10.6346 7.62556 10.6346 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6347 7.62556 10.6347 7.62556 10.6347 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6348 7.62556 10.6348 7.62556 10.6348 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.6349 7.62556 10.6349 7.62556 10.6349 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.635 7.62556 10.635 7.62556C10.635 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6351 7.62556 10.6351 7.62556C10.6351 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6352 7.62556 10.6352 7.62556C10.6352 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6353 7.62556 10.6353 7.62556C10.6353 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6354 7.62556C10.6354 7.62556 10.6354 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6355 7.62556C10.6355 7.62556 10.6355 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6356 7.62556C10.6356 7.62556 10.6356 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6357 7.62556 10.6357 7.62556 10.6357 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6358 7.62556 10.6358 7.62556 10.6358 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.6359 7.62556 10.6359 7.62556 10.6359 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.636 7.62556 10.636 7.62556C10.636 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6361 7.62556 10.6361 7.62556C10.6361 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6362 7.62556 10.6362 7.62556C10.6362 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6363 7.62556C10.6363 7.62556 10.6363 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6364 7.62556C10.6364 7.62556 10.6364 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6365 7.62556C10.6365 7.62556 10.6365 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6366 7.62556C10.6366 7.62556 10.6366 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6367 7.62556 10.6367 7.62556 10.6367 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6368 7.62556 10.6368 7.62556 10.6368 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.6369 7.62556 10.6369 7.62556 10.6369 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.637 7.62556 10.637 7.62556C10.637 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6371 7.62556 10.6371 7.62556C10.6371 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6372 7.62556 10.6372 7.62556C10.6372 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6373 7.62556C10.6373 7.62556 10.6373 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6374 7.62556C10.6374 7.62556 10.6374 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6375 7.62556C10.6375 7.62556 10.6375 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6376 7.62556 10.6376 7.62556 10.6376 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6377 7.62556 10.6377 7.62556 10.6377 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6378 7.62556 10.6378 7.62556 10.6378 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.6379 7.62556 10.6379 7.62556C10.6379 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.638 7.62556 10.638 7.62556C10.638 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6381 7.62556 10.6381 7.62556C10.6381 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6382 7.62556 10.6382 7.62556C10.6382 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6383 7.62556C10.6383 7.62556 10.6383 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6384 7.62556C10.6384 7.62556 10.6384 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6385 7.62556C10.6385 7.62556 10.6385 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6386 7.62556 10.6386 7.62556 10.6386 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6387 7.62556 10.6387 7.62556 10.6387 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6388 7.62556 10.6388 7.62556 10.6388 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.6389 7.62556 10.6389 7.62556C10.6389 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.639 7.62556 10.639 7.62556C10.639 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6391 7.62556 10.6391 7.62556C10.6391 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6392 7.62556C10.6392 7.62556 10.6392 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6393 7.62556C10.6393 7.62556 10.6393 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6394 7.62556C10.6394 7.62556 10.6394 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6395 7.62556C10.6395 7.62556 10.6395 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6396 7.62556 10.6396 7.62556 10.6396 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6397 7.62556 10.6397 7.62556 10.6397 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6398 7.62556 10.6398 7.62556 10.6398 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.6399 7.62556 10.6399 7.62556C10.6399 7.62556 10.64 7.62556 10.64 7.62556C10.64 7.62556 10.64 7.62556 10.64 7.62556C10.64 7.62556 10.64 7.62556 10.64 7.62556C10.64 7.62556 10.64 7.62556 10.64 7.62556C10.64 7.62556 10.64 7.62556 10.64 7.62556C10.64 7.62556 10.64 7.62556 10.64 7.62556V7.22556ZM10.7238 7.60447L10.7244 7.60415L10.5456 7.24634L10.545 7.24665L10.7238 7.60447Z" fill="#637579" mask="url(#path-1-outside-1_5223_27640)"/> +</svg> diff --git a/src/assets/icons/ic_shrink.svg b/src/assets/icons/ic_shrink.svg new file mode 100644 index 000000000..b5edd7a06 --- /dev/null +++ b/src/assets/icons/ic_shrink.svg @@ -0,0 +1,16 @@ +<svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg"> +<mask id="path-1-outside-1_5163_9498" maskUnits="userSpaceOnUse" x="0" y="0" width="12" height="11" fill="black"> +<rect fill="white" width="12" height="11"/> +<path d="M3.91677 1.35698C3.91677 1.16161 4.07364 1.00313 4.26864 1L4.27364 1.00031C4.47082 1.00031 4.6305 1.16005 4.6305 1.35729V1.36198V4.21872C4.6305 4.22185 4.63019 4.22684 4.63019 4.22684C4.62956 4.25717 4.62519 4.28624 4.618 4.31187L4.61769 4.31343L4.61706 4.31593C4.61353 4.32883 4.6091 4.34153 4.60417 4.35352L4.60417 4.35351C4.60686 4.3494 4.60212 4.35928 4.59748 4.36871C4.5957 4.37249 4.59389 4.37615 4.59206 4.3797L4.59194 4.37987C4.5933 4.37713 4.59538 4.37297 4.59748 4.36871C4.59978 4.36381 4.60202 4.35873 4.60417 4.35352L4.57331 4.4119C4.56113 4.43128 4.54581 4.45003 4.53019 4.46629C4.52806 4.46851 4.50817 4.48263 4.48699 4.49756C4.49946 4.49171 4.5077 4.48771 4.50863 4.48692C4.47314 4.51047 4.45241 4.52407 4.44203 4.5307C4.44834 4.52844 4.45087 4.52779 4.44738 4.52974C4.43769 4.53506 4.42769 4.54006 4.41551 4.54537L4.41332 4.54631L4.41356 4.5462C4.40316 4.55058 4.3919 4.55468 4.37926 4.5585L4.38176 4.55788C4.38176 4.55788 4.38145 4.55756 4.37926 4.5585C4.3919 4.55468 4.40316 4.55058 4.41356 4.5462L4.41738 4.54443L4.41551 4.54537C4.42769 4.54006 4.43769 4.53506 4.44738 4.52974C4.45087 4.52779 4.44834 4.52844 4.44203 4.5307C4.4312 4.53762 4.43163 4.53694 4.43828 4.53206C4.41684 4.53999 4.36852 4.55935 4.34434 4.56765C4.35709 4.56506 4.36958 4.56179 4.38176 4.55788L4.37926 4.5585C4.38145 4.55756 4.38176 4.55788 4.38176 4.55788C4.36958 4.56179 4.35709 4.56506 4.34434 4.56765C4.33347 4.57138 4.32748 4.57288 4.33102 4.57009C4.31229 4.57316 4.29309 4.57476 4.27364 4.57476H1.41873H1.41341C1.21623 4.57476 1.05655 4.41502 1.05655 4.21778C1.05655 4.02054 1.21623 3.86081 1.41341 3.86081H1.41841H3.41179L1.16592 1.61392C1.09936 1.54922 1.0578 1.45857 1.0578 1.35823C1.0578 1.1613 1.21779 1.00156 1.41466 1.00125C1.51497 1.00125 1.60559 1.04251 1.67059 1.10941L3.91677 3.35629V1.36229V1.35698Z"/> +<path d="M4.59748 4.36871C4.59538 4.37297 4.5933 4.37713 4.59194 4.37987L4.59113 4.38158C4.58972 4.38431 4.59035 4.38305 4.59194 4.37987L4.59206 4.3797C4.59389 4.37615 4.5957 4.37249 4.59748 4.36871Z"/> +<path d="M7.98861 1.00375C7.79362 1.00688 7.63675 1.16536 7.63675 1.36073V1.36604V4.22184V4.22372C7.63675 4.23404 7.63737 4.24435 7.63831 4.25435L7.638 4.25279C7.63831 4.2556 7.63831 4.25873 7.63831 4.25873V4.25748C7.63925 4.2681 7.64081 4.27717 7.64237 4.28624L7.64206 4.28405L7.64425 4.29624L7.64394 4.29405C7.65136 4.3284 7.66277 4.35907 7.67754 4.38698C7.67948 4.39102 7.68093 4.39333 7.68237 4.39564L7.68144 4.39377C7.68675 4.40315 7.69112 4.41065 7.69612 4.41815L7.69518 4.4169C7.69737 4.42065 7.69894 4.42284 7.7005 4.42503L7.69956 4.42377C7.71956 4.45222 7.74237 4.47692 7.76831 4.49786L7.77206 4.5013C7.83018 4.54725 7.90424 4.57601 7.98455 4.57788C7.98455 4.57788 7.98955 4.57819 7.99267 4.57819H10.8485H10.8535C11.0507 4.57819 11.2104 4.41846 11.2104 4.22122C11.2104 4.02398 11.0507 3.86424 10.8535 3.86424H10.8482H8.85515L11.101 1.61736C11.1676 1.55234 11.2088 1.462 11.2088 1.36166C11.2088 1.16442 11.0491 1.00469 10.852 1.00469C10.8485 1.00469 10.8448 1.00469 10.8413 1.005C10.7451 1.00781 10.6592 1.04845 10.5967 1.11253L8.35048 3.35941V1.3651V1.36041C8.35048 1.16317 8.19048 1.00344 7.99361 1.00344L7.98861 1.00375Z"/> +<path d="M4.17084 7.07851C4.18365 7.07663 4.19677 7.07538 4.21052 7.07507C4.21396 7.07476 4.21709 7.07476 4.22052 7.07476C4.41771 7.07476 4.57739 7.23449 4.57739 7.43173C4.57739 7.4483 4.57614 7.46487 4.57426 7.47893V10.291V10.2963C4.57426 10.4935 4.41458 10.6533 4.2174 10.6533C4.02022 10.6533 3.86054 10.4935 3.86054 10.2963V10.2913V8.29729L1.61436 10.5442C1.54967 10.6086 1.4603 10.6486 1.36186 10.6486C1.16468 10.6486 1.00469 10.4888 1.00469 10.2916C1.00469 10.1928 1.04469 10.1037 1.10937 10.039L3.35555 7.79214H1.36218H1.35686C1.15968 7.79214 1 7.63241 1 7.43517C1 7.23793 1.15968 7.07819 1.35686 7.07819H1.36186H4.17271L4.17084 7.07851Z"/> +<path d="M7.77206 7.43548C7.77206 7.23855 7.93174 7.07882 8.12861 7.07851C8.14517 7.07851 8.16142 7.08007 8.17548 7.08226H10.987H10.9923C11.1895 7.08226 11.3491 7.2423 11.3491 7.43923C11.3491 7.63616 11.1895 7.79621 10.9923 7.79621H10.9873H8.99358L11.2398 10.0431C11.3044 10.1078 11.3444 10.1969 11.3444 10.2957C11.3444 10.4926 11.1848 10.6526 10.9876 10.6526C10.8891 10.6526 10.8001 10.6129 10.7354 10.5482L8.48922 8.30135V10.295V10.3004C8.48922 10.4976 8.32923 10.6573 8.13236 10.6573C7.93549 10.6573 7.77549 10.4976 7.77549 10.3004V10.2953V7.4855L7.77581 7.48737C7.77331 7.47018 7.77206 7.45299 7.77206 7.43548Z"/> +</mask> +<path d="M3.91677 1.35698C3.91677 1.16161 4.07364 1.00313 4.26864 1L4.27364 1.00031C4.47082 1.00031 4.6305 1.16005 4.6305 1.35729V1.36198V4.21872C4.6305 4.22185 4.63019 4.22684 4.63019 4.22684C4.62956 4.25717 4.62519 4.28624 4.618 4.31187L4.61769 4.31343L4.61706 4.31593C4.61353 4.32883 4.6091 4.34153 4.60417 4.35352L4.60417 4.35351C4.60686 4.3494 4.60212 4.35928 4.59748 4.36871C4.5957 4.37249 4.59389 4.37615 4.59206 4.3797L4.59194 4.37987C4.5933 4.37713 4.59538 4.37297 4.59748 4.36871C4.59978 4.36381 4.60202 4.35873 4.60417 4.35352L4.57331 4.4119C4.56113 4.43128 4.54581 4.45003 4.53019 4.46629C4.52806 4.46851 4.50817 4.48263 4.48699 4.49756C4.49946 4.49171 4.5077 4.48771 4.50863 4.48692C4.47314 4.51047 4.45241 4.52407 4.44203 4.5307C4.44834 4.52844 4.45087 4.52779 4.44738 4.52974C4.43769 4.53506 4.42769 4.54006 4.41551 4.54537L4.41332 4.54631L4.41356 4.5462C4.40316 4.55058 4.3919 4.55468 4.37926 4.5585L4.38176 4.55788C4.38176 4.55788 4.38145 4.55756 4.37926 4.5585C4.3919 4.55468 4.40316 4.55058 4.41356 4.5462L4.41738 4.54443L4.41551 4.54537C4.42769 4.54006 4.43769 4.53506 4.44738 4.52974C4.45087 4.52779 4.44834 4.52844 4.44203 4.5307C4.4312 4.53762 4.43163 4.53694 4.43828 4.53206C4.41684 4.53999 4.36852 4.55935 4.34434 4.56765C4.35709 4.56506 4.36958 4.56179 4.38176 4.55788L4.37926 4.5585C4.38145 4.55756 4.38176 4.55788 4.38176 4.55788C4.36958 4.56179 4.35709 4.56506 4.34434 4.56765C4.33347 4.57138 4.32748 4.57288 4.33102 4.57009C4.31229 4.57316 4.29309 4.57476 4.27364 4.57476H1.41873H1.41341C1.21623 4.57476 1.05655 4.41502 1.05655 4.21778C1.05655 4.02054 1.21623 3.86081 1.41341 3.86081H1.41841H3.41179L1.16592 1.61392C1.09936 1.54922 1.0578 1.45857 1.0578 1.35823C1.0578 1.1613 1.21779 1.00156 1.41466 1.00125C1.51497 1.00125 1.60559 1.04251 1.67059 1.10941L3.91677 3.35629V1.36229V1.35698Z" fill="#637579"/> +<path d="M4.59748 4.36871C4.59538 4.37297 4.5933 4.37713 4.59194 4.37987L4.59113 4.38158C4.58972 4.38431 4.59035 4.38305 4.59194 4.37987L4.59206 4.3797C4.59389 4.37615 4.5957 4.37249 4.59748 4.36871Z" fill="#637579"/> +<path d="M7.98861 1.00375C7.79362 1.00688 7.63675 1.16536 7.63675 1.36073V1.36604V4.22184V4.22372C7.63675 4.23404 7.63737 4.24435 7.63831 4.25435L7.638 4.25279C7.63831 4.2556 7.63831 4.25873 7.63831 4.25873V4.25748C7.63925 4.2681 7.64081 4.27717 7.64237 4.28624L7.64206 4.28405L7.64425 4.29624L7.64394 4.29405C7.65136 4.3284 7.66277 4.35907 7.67754 4.38698C7.67948 4.39102 7.68093 4.39333 7.68237 4.39564L7.68144 4.39377C7.68675 4.40315 7.69112 4.41065 7.69612 4.41815L7.69518 4.4169C7.69737 4.42065 7.69894 4.42284 7.7005 4.42503L7.69956 4.42377C7.71956 4.45222 7.74237 4.47692 7.76831 4.49786L7.77206 4.5013C7.83018 4.54725 7.90424 4.57601 7.98455 4.57788C7.98455 4.57788 7.98955 4.57819 7.99267 4.57819H10.8485H10.8535C11.0507 4.57819 11.2104 4.41846 11.2104 4.22122C11.2104 4.02398 11.0507 3.86424 10.8535 3.86424H10.8482H8.85515L11.101 1.61736C11.1676 1.55234 11.2088 1.462 11.2088 1.36166C11.2088 1.16442 11.0491 1.00469 10.852 1.00469C10.8485 1.00469 10.8448 1.00469 10.8413 1.005C10.7451 1.00781 10.6592 1.04845 10.5967 1.11253L8.35048 3.35941V1.3651V1.36041C8.35048 1.16317 8.19048 1.00344 7.99361 1.00344L7.98861 1.00375Z" fill="#637579"/> +<path d="M4.17084 7.07851C4.18365 7.07663 4.19677 7.07538 4.21052 7.07507C4.21396 7.07476 4.21709 7.07476 4.22052 7.07476C4.41771 7.07476 4.57739 7.23449 4.57739 7.43173C4.57739 7.4483 4.57614 7.46487 4.57426 7.47893V10.291V10.2963C4.57426 10.4935 4.41458 10.6533 4.2174 10.6533C4.02022 10.6533 3.86054 10.4935 3.86054 10.2963V10.2913V8.29729L1.61436 10.5442C1.54967 10.6086 1.4603 10.6486 1.36186 10.6486C1.16468 10.6486 1.00469 10.4888 1.00469 10.2916C1.00469 10.1928 1.04469 10.1037 1.10937 10.039L3.35555 7.79214H1.36218H1.35686C1.15968 7.79214 1 7.63241 1 7.43517C1 7.23793 1.15968 7.07819 1.35686 7.07819H1.36186H4.17271L4.17084 7.07851Z" fill="#637579"/> +<path d="M7.77206 7.43548C7.77206 7.23855 7.93174 7.07882 8.12861 7.07851C8.14517 7.07851 8.16142 7.08007 8.17548 7.08226H10.987H10.9923C11.1895 7.08226 11.3491 7.2423 11.3491 7.43923C11.3491 7.63616 11.1895 7.79621 10.9923 7.79621H10.9873H8.99358L11.2398 10.0431C11.3044 10.1078 11.3444 10.1969 11.3444 10.2957C11.3444 10.4926 11.1848 10.6526 10.9876 10.6526C10.8891 10.6526 10.8001 10.6129 10.7354 10.5482L8.48922 8.30135V10.295V10.3004C8.48922 10.4976 8.32923 10.6573 8.13236 10.6573C7.93549 10.6573 7.77549 10.4976 7.77549 10.3004V10.2953V7.4855L7.77581 7.48737C7.77331 7.47018 7.77206 7.45299 7.77206 7.43548Z" fill="#637579"/> +<path d="M4.33102 4.57009L4.27026 4.49067L4.34717 4.66878L4.33102 4.57009ZM4.34434 4.56765L4.36426 4.66565L4.36426 4.66565L4.34434 4.56765ZM4.38176 4.55788L4.41234 4.65309L4.56829 4.60299L4.45247 4.48717L4.38176 4.55788ZM4.37926 4.5585L4.33986 4.46659L4.40354 4.65551L4.37926 4.5585ZM4.41356 4.5462L4.37477 4.45403L4.37476 4.45403L4.41356 4.5462ZM4.41551 4.54537L4.45489 4.63729L4.45548 4.63704L4.41551 4.54537ZM4.44738 4.52974L4.49548 4.61742L4.4962 4.61701L4.44738 4.52974ZM4.44203 4.5307L4.4083 4.43656L4.4083 4.43656L4.44203 4.5307ZM4.43828 4.53206L4.37916 4.45142L4.47296 4.62586L4.43828 4.53206ZM4.48699 4.49756L4.5446 4.57929L4.44454 4.40702L4.48699 4.49756ZM4.59748 4.36871L4.68799 4.41123L4.50777 4.32452L4.59748 4.36871ZM4.59194 4.37987L4.50246 4.33521L4.67154 4.44039L4.59194 4.37987ZM4.59206 4.3797L4.67166 4.44023L4.67692 4.43331L4.68091 4.42559L4.59206 4.3797ZM7.67754 4.38698L7.58728 4.43021L7.58916 4.43376L7.67754 4.38698ZM7.678 4.38783L7.58979 4.43493L7.76746 4.34314L7.678 4.38783ZM7.67706 4.38595L7.76652 4.34127L7.58645 4.42826L7.67706 4.38595ZM4.34717 4.66878C4.3529 4.66784 4.3586 4.6668 4.36426 4.66565L4.32443 4.46965C4.32126 4.4703 4.31807 4.47088 4.31487 4.47141L4.34717 4.66878ZM4.36426 4.66565C4.38061 4.66232 4.39666 4.65812 4.41234 4.65309L4.35118 4.46267C4.3425 4.46545 4.33357 4.4678 4.32443 4.46965L4.36426 4.66565ZM4.35748 4.46087L4.35498 4.46149L4.40354 4.65551L4.40604 4.65488L4.35748 4.46087ZM4.41866 4.65041C4.41599 4.65156 4.40621 4.65568 4.39241 4.65722C4.38512 4.65803 4.37331 4.65853 4.35924 4.65529C4.35197 4.65362 4.3438 4.65088 4.33537 4.64646C4.33116 4.64426 4.32695 4.64167 4.32282 4.63866C4.32077 4.63716 4.31875 4.63557 4.31678 4.63389C4.31579 4.63304 4.31482 4.63218 4.31386 4.6313C4.31339 4.63085 4.31291 4.63041 4.31244 4.62996C4.31221 4.62973 4.31197 4.6295 4.31174 4.62928C4.31163 4.62916 4.31145 4.62899 4.31139 4.62893C4.31122 4.62876 4.31105 4.62859 4.38176 4.55788C4.45247 4.48717 4.4523 4.48699 4.45212 4.48682C4.45206 4.48676 4.45189 4.48659 4.45177 4.48648C4.45154 4.48625 4.45131 4.48602 4.45107 4.4858C4.4506 4.48534 4.45013 4.4849 4.44965 4.48446C4.44869 4.48357 4.44772 4.48271 4.44674 4.48187C4.44476 4.48018 4.44274 4.47858 4.44068 4.47708C4.43656 4.47407 4.43234 4.47148 4.42811 4.46927C4.41965 4.46484 4.41144 4.46208 4.40411 4.46039C4.38992 4.45712 4.37789 4.4576 4.37025 4.45845C4.35574 4.46007 4.34472 4.46451 4.33986 4.46659L4.41866 4.65041ZM4.4082 4.65422C4.42413 4.6494 4.43869 4.64412 4.45236 4.63836L4.37476 4.45403C4.36764 4.45703 4.35967 4.45995 4.35031 4.46278L4.4082 4.65422ZM4.45235 4.63837C4.45324 4.638 4.45409 4.63763 4.45489 4.63729L4.37612 4.45346C4.37564 4.45366 4.37519 4.45385 4.37477 4.45403L4.45235 4.63837ZM4.45548 4.63704C4.47059 4.63045 4.4833 4.6241 4.49548 4.61742L4.39928 4.44207C4.39209 4.44602 4.3848 4.44967 4.37554 4.45371L4.45548 4.63704ZM4.4026 4.44033L4.40073 4.44127L4.49028 4.6201L4.49216 4.61916L4.4026 4.44033ZM4.4962 4.61701C4.49757 4.61625 4.50011 4.6148 4.50305 4.61288C4.50452 4.61192 4.50697 4.61028 4.50983 4.60807C4.51195 4.60643 4.51801 4.60169 4.52442 4.59431C4.52761 4.59063 4.53345 4.58341 4.53858 4.57302C4.54341 4.56326 4.55155 4.54277 4.54816 4.51605C4.53938 4.44688 4.47657 4.43214 4.46839 4.43051C4.45353 4.42756 4.44159 4.4288 4.43883 4.42908C4.43413 4.42954 4.43041 4.43025 4.42844 4.43065C4.41887 4.4326 4.40909 4.43627 4.4083 4.43656L4.47576 4.62484C4.48128 4.62286 4.47592 4.62509 4.46832 4.62663C4.4666 4.62698 4.46309 4.62765 4.45856 4.6281C4.45597 4.62836 4.44415 4.62961 4.42939 4.62667C4.42129 4.62506 4.35853 4.61035 4.34975 4.54124C4.34637 4.51455 4.3545 4.49408 4.35931 4.48436C4.36443 4.47401 4.37023 4.46683 4.37339 4.46319C4.37972 4.4559 4.38566 4.45126 4.38762 4.44975C4.39032 4.44767 4.39255 4.44617 4.39377 4.44538C4.39621 4.44379 4.39806 4.44275 4.39856 4.44247L4.4962 4.61701ZM4.4083 4.43656C4.40678 4.4371 4.4052 4.43768 4.40361 4.43827L4.47296 4.62586C4.4741 4.62544 4.47503 4.6251 4.47577 4.62484L4.4083 4.43656ZM4.39177 4.64952C4.38827 4.6522 4.38539 4.65402 4.38432 4.65469C4.38294 4.65555 4.38184 4.65619 4.38126 4.65652C4.3801 4.65718 4.37932 4.65759 4.37928 4.65761C4.37913 4.65769 4.37958 4.65745 4.38096 4.65678C4.38358 4.65549 4.38763 4.65357 4.39308 4.65101C4.40388 4.64595 4.41856 4.63917 4.43489 4.63166C4.4671 4.61687 4.50573 4.59922 4.52944 4.5881L4.44454 4.40702C4.42175 4.4177 4.38449 4.43472 4.35138 4.44994C4.33505 4.45744 4.31973 4.46451 4.30815 4.46994C4.30242 4.47263 4.29719 4.47511 4.29307 4.47712C4.29108 4.4781 4.28879 4.47924 4.28661 4.48037C4.28556 4.48092 4.28395 4.48178 4.28214 4.48281C4.28164 4.48309 4.27623 4.4861 4.27026 4.49067L4.39177 4.64952ZM4.49741 4.61271C4.50542 4.60684 4.52448 4.59348 4.5446 4.57929L4.42938 4.41582C4.41088 4.42886 4.38916 4.44409 4.37916 4.45142L4.49741 4.61271ZM4.50777 4.32452C4.5058 4.32851 4.50384 4.33245 4.50246 4.33521L4.68141 4.42452C4.68277 4.4218 4.68496 4.41742 4.68718 4.4129L4.50777 4.32452ZM4.67154 4.44039L4.67166 4.44023L4.51246 4.31917L4.51234 4.31934L4.67154 4.44039ZM4.68091 4.42559C4.68333 4.42092 4.68569 4.41612 4.68799 4.41123L4.50696 4.3262C4.50572 4.32885 4.50446 4.33139 4.50321 4.33381L4.68091 4.42559ZM7.58916 4.43376C7.58936 4.43414 7.58957 4.43453 7.58979 4.43493L7.76621 4.34072C7.76612 4.34056 7.76603 4.34038 7.76593 4.34019L7.58916 4.43376ZM7.76746 4.34314L7.76652 4.34127L7.5876 4.43064L7.58854 4.43251L7.76746 4.34314ZM7.58645 4.42826C7.58675 4.42889 7.58705 4.42953 7.58736 4.43018L7.76773 4.34377C7.76773 4.34376 7.7677 4.34372 7.76767 4.34364L7.58645 4.42826ZM4.26864 1L4.28112 0.80039L4.27328 0.7999L4.26543 0.800026L4.26864 1ZM3.91677 3.35629L3.77533 3.49769L4.11677 3.83924V3.35629H3.91677ZM1.67059 1.10941L1.52714 1.24879L1.52915 1.2508L1.67059 1.10941ZM1.41466 1.00125L1.41466 0.801251L1.41434 0.801251L1.41466 1.00125ZM1.16592 1.61392L1.30739 1.47252L1.30533 1.47052L1.16592 1.61392ZM3.41179 3.86081V4.06081H3.89448L3.55324 3.71942L3.41179 3.86081ZM4.33102 4.57009L4.45475 4.72722L4.29871 4.37272L4.33102 4.57009ZM4.34434 4.56765L4.40928 4.75681L4.40928 4.75681L4.34434 4.56765ZM4.41356 4.5462L4.49737 4.72779L4.49744 4.72776L4.41356 4.5462ZM4.41551 4.54537L4.49448 4.72949L4.50502 4.72422L4.41551 4.54537ZM4.41332 4.54631L4.32951 4.36472L4.49216 4.73011L4.41332 4.54631ZM4.41738 4.54443L4.5069 4.72328L4.3335 4.36287L4.41738 4.54443ZM4.44203 4.5307L4.54969 4.69925L4.54969 4.69925L4.44203 4.5307ZM4.43828 4.53206L4.55654 4.69336L4.36893 4.34448L4.43828 4.53206ZM4.48699 4.49756L4.37176 4.33408L4.5719 4.67864L4.48699 4.49756ZM4.50863 4.48692L4.63882 4.63874L4.39806 4.32026L4.50863 4.48692ZM4.53019 4.46629L4.386 4.32769L4.38564 4.32806L4.53019 4.46629ZM4.57331 4.4119L4.74262 4.51836L4.74663 4.51199L4.75014 4.50534L4.57331 4.4119ZM4.60417 4.35351L4.43676 4.24408L4.43044 4.25374L4.42528 4.26407L4.60417 4.35351ZM4.59748 4.36871L4.41645 4.28369L4.77689 4.45709L4.59748 4.36871ZM4.59194 4.37987L4.77269 4.46547L4.41298 4.29056L4.59194 4.37987ZM4.59113 4.38158L4.76903 4.4732L4.77188 4.46718L4.59113 4.38158ZM4.61706 4.31593L4.81001 4.36878L4.81109 4.36444L4.61706 4.31593ZM4.61769 4.31343L4.81194 4.362L4.8138 4.35266L4.61769 4.31343ZM4.618 4.31187L4.42543 4.25787L4.42337 4.26519L4.42188 4.27265L4.618 4.31187ZM4.63019 4.22684L4.4304 4.21434L4.43023 4.22272L4.63019 4.22684ZM4.27364 1.00031L4.26112 1.20031H4.27364V1.00031ZM7.98861 1.00375L7.99182 1.20394L8.0011 1.20336L7.98861 1.00375ZM7.63831 4.25435L7.44217 4.29346L7.83744 4.23569L7.63831 4.25435ZM7.638 4.25279L7.83414 4.21368L7.43922 4.27486L7.638 4.25279ZM7.63831 4.25873H7.43831L7.83831 4.25876L7.63831 4.25873ZM7.63831 4.25748L7.83754 4.2399L7.43831 4.25748H7.63831ZM7.64237 4.28624L7.44528 4.32021L7.84036 4.2579L7.64237 4.28624ZM7.64206 4.28405L7.83892 4.24871L7.44408 4.31238L7.64206 4.28405ZM7.64425 4.29624L7.4474 4.33157L7.84223 4.26791L7.64425 4.29624ZM7.64394 4.29405L7.83942 4.2518L7.44595 4.32238L7.64394 4.29405ZM7.67754 4.38698L7.85802 4.30042L7.85429 4.29337L7.67754 4.38698ZM7.68237 4.39564L7.51276 4.50163L7.86126 4.3062L7.68237 4.39564ZM7.68144 4.39377L7.85545 4.29519L7.50255 4.48321L7.68144 4.39377ZM7.69612 4.41815L7.53606 4.53807L7.86255 4.30723L7.69612 4.41815ZM7.69518 4.4169L7.85524 4.29697L7.52241 4.51764L7.69518 4.4169ZM7.7005 4.42503L7.5405 4.54503L7.86326 4.3088L7.7005 4.42503ZM7.69956 4.42377L7.85956 4.30377L7.53595 4.53881L7.69956 4.42377ZM7.76831 4.49786L7.90371 4.35013L7.89396 4.34226L7.76831 4.49786ZM7.77206 4.5013L7.63692 4.64873L7.6423 4.65366L7.64802 4.65819L7.77206 4.5013ZM7.98455 4.57788L7.99705 4.37812L7.98922 4.37794L7.98455 4.57788ZM8.85515 3.86424L8.7137 3.72285L8.37246 4.06424H8.85515V3.86424ZM11.101 1.61736L10.9613 1.47428L10.9596 1.47597L11.101 1.61736ZM10.8413 1.005L10.8472 1.20529L10.8595 1.20418L10.8413 1.005ZM10.5967 1.11253L10.7381 1.25394L10.7398 1.25217L10.5967 1.11253ZM8.35048 3.35941H8.15048V3.84236L8.49192 3.50081L8.35048 3.35941ZM7.99361 1.00344V0.803046L7.98113 0.803827L7.99361 1.00344ZM4.21052 7.07507L4.21508 7.27548L4.22865 7.27425L4.21052 7.07507ZM4.17084 7.07851L4.13793 6.88123L4.19981 7.2764L4.17084 7.07851ZM4.17271 7.07819L4.20563 7.27547L4.17271 6.87819V7.07819ZM3.35555 7.79214L3.497 7.93354L3.83829 7.59214H3.35555V7.79214ZM1.10937 10.039L0.967928 9.89763L0.967928 9.89763L1.10937 10.039ZM1.61436 10.5442L1.75546 10.6859L1.7558 10.6856L1.61436 10.5442ZM3.86054 8.29729H4.06054V7.81434L3.71909 8.15589L3.86054 8.29729ZM4.57426 7.47893L4.37602 7.45251L4.37426 7.46566V7.47893H4.57426ZM8.12861 7.07851L8.12861 6.87851L8.12829 6.87851L8.12861 7.07851ZM7.77581 7.48737L7.57853 7.52025L7.97373 7.45859L7.77581 7.48737ZM7.77549 7.4855L7.97277 7.45262L7.57549 7.4855H7.77549ZM8.48922 8.30135L8.63067 8.15995L8.28922 7.8184V8.30135H8.48922ZM10.7354 10.5482L10.594 10.6896L10.594 10.6896L10.7354 10.5482ZM11.2398 10.0431L11.0983 10.1845L11.0983 10.1845L11.2398 10.0431ZM8.99358 7.79621V7.59621H8.51085L8.85214 7.93761L8.99358 7.79621ZM8.17548 7.08226L8.14473 7.27988L8.16001 7.28226H8.17548V7.08226ZM4.26543 0.800026C3.96179 0.804893 3.71677 1.05186 3.71677 1.35698H4.11677C4.11677 1.27136 4.1855 1.20136 4.27184 1.19997L4.26543 0.800026ZM3.71677 1.35698V1.36229H4.11677V1.35698H3.71677ZM3.71677 1.36229V3.35629H4.11677V1.36229H3.71677ZM4.05822 3.21489L1.81204 0.968006L1.52915 1.2508L3.77533 3.49769L4.05822 3.21489ZM1.81403 0.970031C1.71284 0.865883 1.57107 0.801251 1.41466 0.801251V1.20125C1.45887 1.20125 1.49835 1.21914 1.52715 1.24878L1.81403 0.970031ZM1.41434 0.801251C1.1075 0.801739 0.857798 1.05061 0.857798 1.35823H1.2578C1.2578 1.27198 1.32809 1.20139 1.41498 1.20125L1.41434 0.801251ZM0.857798 1.35823C0.857798 1.51493 0.922928 1.65663 1.02651 1.75733L1.30533 1.47052C1.27579 1.4418 1.2578 1.4022 1.2578 1.35823H0.857798ZM1.02447 1.75531L3.27033 4.00219L3.55324 3.71942L1.30737 1.47253L1.02447 1.75531ZM3.41179 3.66081H1.41841V4.06081H3.41179V3.66081ZM1.41841 3.66081H1.41341V4.06081H1.41841V3.66081ZM1.41341 3.66081C1.10572 3.66081 0.856548 3.91014 0.856548 4.21778H1.25655C1.25655 4.13094 1.32675 4.06081 1.41341 4.06081V3.66081ZM0.856548 4.21778C0.856548 4.52542 1.10572 4.77476 1.41341 4.77476V4.37476C1.32675 4.37476 1.25655 4.30463 1.25655 4.21778H0.856548ZM1.41341 4.77476H1.41873V4.37476H1.41341V4.77476ZM1.41873 4.77476H4.27364V4.37476H1.41873V4.77476ZM4.27364 4.77476C4.30403 4.77476 4.33404 4.77226 4.36332 4.76747L4.29871 4.37272C4.29054 4.37406 4.28214 4.37476 4.27364 4.37476V4.77476ZM4.33666 4.36157L4.33448 4.36251L4.49216 4.73011L4.49435 4.72918L4.33666 4.36157ZM4.49713 4.7279L4.49737 4.72779L4.32975 4.36461L4.32951 4.36472L4.49713 4.7279ZM4.49744 4.72776L4.50126 4.72599L4.3335 4.36287L4.32968 4.36464L4.49744 4.72776ZM4.32787 4.36558L4.32599 4.36652L4.50502 4.72422L4.5069 4.72328L4.32787 4.36558ZM4.36893 4.34448C4.33513 4.35697 4.30285 4.37043 4.2794 4.37849L4.40928 4.75681C4.43418 4.74826 4.49855 4.72302 4.50764 4.71965L4.36893 4.34448ZM4.2794 4.37849C4.27261 4.38082 4.28015 4.37783 4.2923 4.37535C4.29565 4.37467 4.30676 4.37243 4.32147 4.37175C4.32866 4.37141 4.34326 4.37108 4.36147 4.37395C4.37576 4.3762 4.41714 4.38393 4.45743 4.4172C4.51014 4.46073 4.53561 4.52677 4.52896 4.59162C4.52387 4.64126 4.50169 4.67466 4.49373 4.68598C4.47627 4.71081 4.45715 4.72534 4.45475 4.72722L4.20728 4.41296C4.204 4.41555 4.18429 4.43064 4.16652 4.4559C4.15841 4.46745 4.13615 4.50103 4.13104 4.55082C4.12438 4.61583 4.1499 4.682 4.20273 4.72562C4.24313 4.75899 4.28469 4.76679 4.29923 4.76908C4.31769 4.77198 4.3326 4.77166 4.34015 4.77131C4.3556 4.77059 4.36769 4.76821 4.37225 4.76728C4.38923 4.76382 4.4052 4.75821 4.40928 4.75681L4.2794 4.37849ZM4.5719 4.67864C4.5784 4.67559 4.58481 4.67255 4.59011 4.66996C4.5926 4.66874 4.59612 4.667 4.59975 4.66508C4.60145 4.66419 4.60467 4.66248 4.60846 4.66027C4.61034 4.65918 4.61355 4.65728 4.6174 4.65477C4.62 4.65308 4.62874 4.64738 4.63882 4.63874L4.37844 4.3351C4.38405 4.33028 4.38884 4.32672 4.39173 4.32464C4.39484 4.32241 4.39748 4.32065 4.39934 4.31944C4.40296 4.31708 4.40589 4.31535 4.40743 4.31446C4.41055 4.31265 4.41287 4.31142 4.41347 4.31111C4.41491 4.31035 4.41542 4.31012 4.41417 4.31073C4.41199 4.3118 4.40805 4.31368 4.40208 4.31648L4.5719 4.67864ZM4.39806 4.32026C4.36234 4.34396 4.34306 4.3566 4.33438 4.36214L4.54969 4.69925C4.56177 4.69153 4.58393 4.67698 4.6192 4.65358L4.39806 4.32026ZM4.33438 4.36214C4.33208 4.36361 4.33172 4.36382 4.33248 4.36336C4.33265 4.36325 4.33482 4.36193 4.33798 4.3602C4.33941 4.35941 4.34307 4.35742 4.34794 4.3551C4.35037 4.35394 4.35469 4.35195 4.36023 4.34976C4.36426 4.34817 4.37638 4.34345 4.39265 4.34004C4.40063 4.33837 4.41666 4.33548 4.43712 4.33584C4.45432 4.33615 4.49866 4.33891 4.54432 4.36928C4.60143 4.40727 4.62997 4.46749 4.63322 4.52441C4.63581 4.56985 4.62218 4.60372 4.61646 4.61665C4.60439 4.64395 4.58885 4.66185 4.58615 4.66504C4.58062 4.67155 4.57585 4.67632 4.57347 4.67864C4.56854 4.68346 4.56448 4.68691 4.5631 4.68808C4.56123 4.68966 4.55974 4.69085 4.55896 4.69147C4.55651 4.69342 4.5551 4.69441 4.55654 4.69336L4.32003 4.37077C4.31814 4.37216 4.31418 4.37507 4.31012 4.3783C4.3097 4.37863 4.30216 4.3845 4.29391 4.39256C4.29145 4.39496 4.28661 4.3998 4.28104 4.40637C4.27829 4.40961 4.26272 4.42756 4.25063 4.45489C4.2449 4.46784 4.23127 4.50172 4.23387 4.54718C4.23711 4.6041 4.26565 4.66433 4.32278 4.70233C4.36844 4.7327 4.41279 4.73547 4.43001 4.73578C4.4505 4.73614 4.46655 4.73324 4.47455 4.73157C4.49087 4.72815 4.50306 4.72341 4.50718 4.72179C4.5128 4.71956 4.51723 4.71752 4.51978 4.71631C4.5249 4.71387 4.52886 4.71172 4.53068 4.71072C4.53461 4.70856 4.53785 4.70661 4.5394 4.70568C4.54292 4.70355 4.54657 4.70124 4.54969 4.69925L4.33438 4.36214ZM4.60221 4.66103C4.61278 4.65358 4.62377 4.64582 4.63252 4.63952C4.6368 4.63644 4.64139 4.63311 4.64544 4.63007C4.64739 4.62862 4.65017 4.62651 4.65315 4.62413C4.65463 4.62296 4.65696 4.62108 4.65966 4.61877C4.6614 4.61728 4.66762 4.61196 4.67474 4.60452L4.38564 4.32806C4.38957 4.32396 4.39286 4.32088 4.3947 4.31919C4.39672 4.31734 4.3984 4.31588 4.39951 4.31492C4.40168 4.31306 4.40335 4.31173 4.40403 4.31118C4.40543 4.31007 4.40615 4.30954 4.4056 4.30995C4.40467 4.31065 4.40256 4.3122 4.39895 4.3148C4.39193 4.31984 4.38238 4.3266 4.37176 4.33408L4.60221 4.66103ZM4.67438 4.60489C4.69738 4.58096 4.72175 4.55156 4.74262 4.51836L4.40401 4.30543C4.40051 4.311 4.39425 4.31911 4.386 4.32769L4.67438 4.60489ZM4.75014 4.50534L4.78099 4.44696L4.42734 4.26007L4.39648 4.31846L4.75014 4.50534ZM4.78305 4.44296L4.78305 4.44296L4.42528 4.26407L4.42528 4.26407L4.78305 4.44296ZM4.77157 4.46294C4.77068 4.46431 4.76847 4.46765 4.76538 4.47184C4.76502 4.47232 4.75441 4.48733 4.7373 4.50245C4.73598 4.50362 4.69876 4.53968 4.63778 4.54983C4.59709 4.55661 4.53791 4.55264 4.48427 4.51206C4.43582 4.4754 4.41824 4.42841 4.41181 4.40453C4.40033 4.36185 4.40661 4.32659 4.4072 4.32272C4.4089 4.31151 4.4112 4.30289 4.41228 4.29901C4.41459 4.29076 4.41692 4.28456 4.41764 4.28265C4.41867 4.27992 4.41953 4.27784 4.41998 4.27677C4.42087 4.27464 4.42151 4.27324 4.42157 4.27312C4.42174 4.27273 4.42153 4.27321 4.42071 4.27492C4.41998 4.27643 4.41908 4.27827 4.41806 4.28034L4.77689 4.45709C4.77914 4.45252 4.78273 4.44518 4.78557 4.43895C4.78634 4.43726 4.78758 4.43451 4.78893 4.43129C4.78902 4.43107 4.79373 4.42025 4.79753 4.40664C4.79865 4.40264 4.80098 4.39392 4.80269 4.38263C4.80329 4.37867 4.80957 4.34334 4.79808 4.30063C4.79165 4.27673 4.77406 4.22972 4.7256 4.19306C4.67195 4.15247 4.61275 4.14849 4.57204 4.15527C4.51103 4.16544 4.47377 4.20153 4.47239 4.20275C4.45516 4.21797 4.44438 4.23318 4.44379 4.23397C4.44047 4.23845 4.43799 4.2422 4.43676 4.24408L4.77157 4.46294ZM4.41298 4.29056C4.41266 4.29121 4.41127 4.29398 4.41042 4.29574C4.41031 4.29597 4.4096 4.29742 4.40876 4.29925C4.40863 4.29954 4.40703 4.30297 4.40523 4.30736C4.40469 4.30868 4.40377 4.31098 4.4027 4.31387C4.40193 4.31595 4.39962 4.32225 4.39737 4.33054C4.39631 4.33443 4.39406 4.34306 4.39243 4.35425C4.39191 4.35782 4.38568 4.39362 4.39767 4.43671C4.40673 4.46236 4.44351 4.51887 4.47384 4.54564C4.51386 4.56788 4.59377 4.58305 4.62954 4.5792C4.68883 4.56735 4.72453 4.53139 4.72565 4.53036C4.74206 4.51529 4.75226 4.50048 4.75273 4.49983C4.7558 4.49556 4.75804 4.49207 4.75906 4.49047C4.76124 4.48706 4.76282 4.48433 4.76337 4.48339C4.76467 4.48114 4.76565 4.47935 4.76591 4.47887C4.76664 4.47755 4.7672 4.47648 4.76734 4.47621C4.76799 4.47498 4.76867 4.47365 4.76893 4.47315L4.41332 4.29C4.41287 4.29087 4.41311 4.29042 4.41353 4.28962C4.41362 4.28945 4.41413 4.28847 4.41483 4.2872C4.41508 4.28674 4.41604 4.28497 4.41734 4.28274C4.41787 4.28181 4.41946 4.27908 4.42163 4.27568C4.42265 4.27408 4.42489 4.27059 4.42796 4.26632C4.42842 4.26568 4.43863 4.25087 4.45504 4.23579C4.45616 4.23477 4.49185 4.19881 4.55115 4.18696C4.58692 4.18311 4.66682 4.19828 4.70684 4.22051C4.73718 4.24728 4.77396 4.30379 4.78302 4.32945C4.79501 4.37253 4.78877 4.40834 4.78826 4.4119C4.78663 4.4231 4.78438 4.43172 4.78332 4.43561C4.78106 4.4439 4.77875 4.45021 4.77799 4.45228C4.77692 4.45517 4.776 4.45746 4.77546 4.45878C4.77367 4.46316 4.77208 4.46658 4.77196 4.46684C4.77113 4.46863 4.77046 4.47001 4.7704 4.47014C4.7699 4.47116 4.76963 4.4717 4.77089 4.46917L4.41298 4.29056ZM4.77188 4.46718L4.77269 4.46547L4.41118 4.29426L4.41037 4.29597L4.77188 4.46718ZM4.7785 4.45374C4.78217 4.44593 4.78572 4.43788 4.78911 4.42963L4.41922 4.2774C4.41832 4.27958 4.41739 4.28169 4.41645 4.28369L4.7785 4.45374ZM4.78911 4.42963C4.79686 4.41081 4.80405 4.39033 4.80996 4.36877L4.42417 4.2631C4.42301 4.26733 4.42134 4.27224 4.41922 4.2774L4.78911 4.42963ZM4.81109 4.36444L4.81172 4.36194L4.42366 4.26493L4.42303 4.26743L4.81109 4.36444ZM4.8138 4.35266L4.81412 4.35109L4.42188 4.27265L4.42157 4.27421L4.8138 4.35266ZM4.81057 4.36587C4.82252 4.32326 4.82919 4.27738 4.83014 4.23097L4.43023 4.22272C4.42994 4.23695 4.42785 4.24922 4.42543 4.25787L4.81057 4.36587ZM4.63019 4.22684C4.8298 4.23933 4.8298 4.23933 4.8298 4.23933C4.8298 4.23933 4.8298 4.23932 4.8298 4.23932C4.8298 4.23931 4.8298 4.23931 4.8298 4.2393C4.8298 4.23929 4.8298 4.23928 4.8298 4.23927C4.8298 4.23925 4.8298 4.23922 4.82981 4.2392C4.82981 4.23914 4.82981 4.23909 4.82982 4.23902C4.82982 4.2389 4.82983 4.23875 4.82984 4.23858C4.82986 4.23825 4.82989 4.23782 4.82992 4.23733C4.82997 4.23636 4.83004 4.23503 4.83012 4.23348C4.83022 4.23132 4.8305 4.22531 4.8305 4.21872H4.4305C4.4305 4.21525 4.43062 4.21331 4.43057 4.21443C4.43057 4.21452 4.43056 4.21463 4.43056 4.2147C4.43055 4.21472 4.43056 4.21472 4.43056 4.21467C4.43056 4.21464 4.43056 4.2146 4.43057 4.21455C4.43057 4.21453 4.43057 4.2145 4.43057 4.21447C4.43057 4.21445 4.43057 4.21443 4.43057 4.21441C4.43057 4.2144 4.43057 4.21439 4.43058 4.21439C4.43058 4.21438 4.43058 4.21438 4.43058 4.21437C4.43058 4.21437 4.43058 4.21436 4.43058 4.21436C4.43058 4.21436 4.43058 4.21436 4.63019 4.22684ZM4.8305 4.21872V1.36198H4.4305V4.21872H4.8305ZM4.8305 1.36198V1.35729H4.4305V1.36198H4.8305ZM4.8305 1.35729C4.8305 1.04965 4.58133 0.800313 4.27364 0.800313V1.20031C4.3603 1.20031 4.4305 1.27044 4.4305 1.35729H4.8305ZM4.28612 0.800703L4.28112 0.80039L4.25615 1.19961L4.26115 1.19992L4.28612 0.800703ZM7.98541 0.803776C7.68176 0.808643 7.43675 1.05561 7.43675 1.36073H7.83675C7.83675 1.27511 7.90547 1.20511 7.99182 1.20372L7.98541 0.803776ZM7.43675 1.36073V1.36604H7.83675V1.36073H7.43675ZM7.43675 1.36604V4.22184H7.83675V1.36604H7.43675ZM7.43675 4.22184V4.22372H7.83675V4.22184H7.43675ZM7.43675 4.22372C7.43675 4.24192 7.43784 4.25871 7.43918 4.27301L7.83744 4.23569C7.8369 4.22999 7.83675 4.22615 7.83675 4.22372H7.43675ZM7.83445 4.21524L7.83414 4.21368L7.44186 4.2919L7.44217 4.29346L7.83445 4.21524ZM7.43922 4.27486C7.43859 4.26914 7.43844 4.265 7.43839 4.26368C7.43836 4.26269 7.43834 4.26182 7.43833 4.26106C7.43832 4.26068 7.43832 4.26029 7.43832 4.2599C7.43831 4.25971 7.43831 4.25951 7.43831 4.25931C7.43831 4.25921 7.43831 4.25911 7.43831 4.25901C7.43831 4.25896 7.43831 4.2589 7.43831 4.25885C7.43831 4.25883 7.43831 4.2588 7.43831 4.25878C7.43831 4.25876 7.43831 4.25875 7.43831 4.25874C7.43831 4.25873 7.43831 4.25872 7.43831 4.25872C7.43831 4.25871 7.43831 4.2587 7.63831 4.25873C7.83831 4.25876 7.83831 4.25875 7.83831 4.25874C7.83831 4.25874 7.83831 4.25873 7.83831 4.25872C7.83831 4.25871 7.83831 4.25869 7.83831 4.25868C7.83831 4.25865 7.83831 4.25863 7.83831 4.2586C7.83831 4.25854 7.83831 4.25849 7.83831 4.25843C7.83831 4.25832 7.83831 4.2582 7.83831 4.25808C7.83831 4.25783 7.83831 4.25756 7.83831 4.25728C7.8383 4.25671 7.8383 4.25605 7.83829 4.25533C7.83827 4.2539 7.83823 4.25207 7.83815 4.24995C7.83803 4.24636 7.83773 4.23925 7.83678 4.23072L7.43922 4.27486ZM7.83831 4.25873V4.25748H7.43831V4.25873H7.83831ZM7.43908 4.27505C7.44084 4.29496 7.44379 4.31159 7.44528 4.32021L7.83947 4.25226C7.83783 4.24276 7.83766 4.24125 7.83754 4.2399L7.43908 4.27505ZM7.84036 4.2579L7.84004 4.25572L7.44408 4.31238L7.44439 4.31457L7.84036 4.2579ZM7.44521 4.31939L7.4474 4.33157L7.8411 4.2609L7.83892 4.24871L7.44521 4.31939ZM7.84223 4.26791L7.84192 4.26572L7.44595 4.32238L7.44627 4.32457L7.84223 4.26791ZM7.44845 4.33631C7.4597 4.38836 7.47737 4.43633 7.5008 4.48058L7.85429 4.29337C7.84816 4.28181 7.84302 4.26844 7.83942 4.2518L7.44845 4.33631ZM7.49721 4.47346C7.50397 4.48755 7.51003 4.49725 7.51276 4.50163L7.85198 4.28966C7.85114 4.28831 7.85237 4.29025 7.85379 4.29273C7.85542 4.29557 7.8568 4.29824 7.85788 4.30049L7.49721 4.47346ZM7.86126 4.3062L7.86032 4.30433L7.50255 4.48321L7.50349 4.48508L7.86126 4.3062ZM7.50742 4.49235C7.51314 4.50245 7.52046 4.51521 7.52969 4.52906L7.86255 4.30723C7.86178 4.30608 7.86036 4.30385 7.85545 4.29519L7.50742 4.49235ZM7.85618 4.29823L7.85524 4.29697L7.53513 4.53682L7.53606 4.53807L7.85618 4.29823ZM7.52241 4.51764C7.52927 4.52941 7.53505 4.5375 7.53774 4.54125L7.86326 4.3088C7.86238 4.30757 7.86335 4.3089 7.86451 4.31064C7.86587 4.31268 7.86704 4.31458 7.86796 4.31615L7.52241 4.51764ZM7.8605 4.30503L7.85956 4.30377L7.53956 4.54377L7.5405 4.54503L7.8605 4.30503ZM7.53595 4.53881C7.56592 4.58143 7.60128 4.62005 7.64266 4.65346L7.89396 4.34226C7.88346 4.33378 7.8732 4.32301 7.86317 4.30874L7.53595 4.53881ZM7.63317 4.6453L7.63692 4.64873L7.9072 4.35386L7.90345 4.35042L7.63317 4.6453ZM7.64802 4.65819C7.73884 4.72999 7.85446 4.7749 7.97988 4.77783L7.98922 4.37794C7.95402 4.37711 7.92152 4.36451 7.89609 4.3444L7.64802 4.65819ZM7.98455 4.57788C7.97206 4.77749 7.97207 4.77749 7.97207 4.77749C7.97207 4.77749 7.97207 4.77749 7.97208 4.77749C7.97208 4.77749 7.97209 4.77749 7.97209 4.77749C7.9721 4.77749 7.97212 4.77749 7.97213 4.77749C7.97215 4.7775 7.97217 4.7775 7.9722 4.7775C7.97225 4.7775 7.97231 4.77751 7.97237 4.77751C7.9725 4.77752 7.97265 4.77753 7.97281 4.77754C7.97315 4.77756 7.97357 4.77758 7.97407 4.77761C7.97503 4.77766 7.97637 4.77774 7.97792 4.77781C7.98007 4.77791 7.98608 4.77819 7.99267 4.77819V4.37819C7.99614 4.37819 7.99809 4.37832 7.99696 4.37826C7.99687 4.37826 7.99676 4.37825 7.99669 4.37825C7.99667 4.37825 7.99668 4.37825 7.99673 4.37825C7.99675 4.37825 7.99679 4.37826 7.99684 4.37826C7.99687 4.37826 7.9969 4.37826 7.99693 4.37826C7.99695 4.37827 7.99696 4.37827 7.99698 4.37827C7.99699 4.37827 7.997 4.37827 7.99701 4.37827C7.99701 4.37827 7.99702 4.37827 7.99702 4.37827C7.99703 4.37827 7.99703 4.37827 7.99703 4.37827C7.99704 4.37827 7.99704 4.37827 7.98455 4.57788ZM7.99267 4.77819H10.8485V4.37819H7.99267V4.77819ZM10.8485 4.77819H10.8535V4.37819H10.8485V4.77819ZM10.8535 4.77819C11.1612 4.77819 11.4104 4.52886 11.4104 4.22122H11.0104C11.0104 4.30806 10.9402 4.37819 10.8535 4.37819V4.77819ZM11.4104 4.22122C11.4104 3.91358 11.1612 3.66424 10.8535 3.66424V4.06424C10.9402 4.06424 11.0104 4.13437 11.0104 4.22122H11.4104ZM10.8535 3.66424H10.8482V4.06424H10.8535V3.66424ZM10.8482 3.66424H8.85515V4.06424H10.8482V3.66424ZM8.9966 4.00563L11.2425 1.75875L10.9596 1.47597L8.7137 3.72285L8.9966 4.00563ZM11.2408 1.76043C11.3441 1.65945 11.4088 1.5182 11.4088 1.36166H11.0088C11.0088 1.40581 10.991 1.44524 10.9613 1.47429L11.2408 1.76043ZM11.4088 1.36166C11.4088 1.05402 11.1597 0.804688 10.852 0.804688V1.20469C10.9386 1.20469 11.0088 1.27482 11.0088 1.36166H11.4088ZM10.852 0.804688C10.8504 0.804688 10.8373 0.804541 10.8232 0.805823L10.8595 1.20418C10.855 1.20459 10.8518 1.20466 10.851 1.20468C10.8503 1.2047 10.8499 1.20469 10.852 1.20469V0.804688ZM10.8355 0.805086C10.6852 0.80948 10.5506 0.873273 10.4535 0.972887L10.7398 1.25217C10.7677 1.22362 10.805 1.20615 10.8472 1.20492L10.8355 0.805086ZM10.4552 0.971131L8.20903 3.21801L8.49192 3.50081L10.7381 1.25393L10.4552 0.971131ZM8.55048 3.35941V1.3651H8.15048V3.35941H8.55048ZM8.55048 1.3651V1.36041H8.15048V1.3651H8.55048ZM8.55048 1.36041C8.55048 1.05266 8.30088 0.803437 7.99361 0.803437V1.20344C8.08008 1.20344 8.15048 1.27368 8.15048 1.36041H8.55048ZM7.98113 0.803827L7.97613 0.80414L8.0011 1.20336L8.0061 1.20305L7.98113 0.803827ZM4.20598 6.87512C4.18291 6.87565 4.16155 6.87773 4.14187 6.88062L4.19981 7.2764C4.20575 7.27553 4.21064 7.27512 4.21507 7.27502L4.20598 6.87512ZM4.20375 7.27578L4.20563 7.27547L4.1398 6.88092L4.13793 6.88123L4.20375 7.27578ZM4.17271 6.87819H1.36186V7.27819H4.17271V6.87819ZM1.36186 6.87819H1.35686V7.27819H1.36186V6.87819ZM1.35686 6.87819C1.04917 6.87819 0.8 7.12753 0.8 7.43517H1.2C1.2 7.34832 1.2702 7.27819 1.35686 7.27819V6.87819ZM0.8 7.43517C0.8 7.74281 1.04917 7.99214 1.35686 7.99214V7.59214C1.2702 7.59214 1.2 7.52201 1.2 7.43517H0.8ZM1.35686 7.99214H1.36218V7.59214H1.35686V7.99214ZM1.36218 7.99214H3.35555V7.59214H1.36218V7.99214ZM3.21411 7.65075L0.967928 9.89763L1.25082 10.1804L3.497 7.93354L3.21411 7.65075ZM0.967928 9.89763C0.867389 9.9982 0.804687 10.1375 0.804687 10.2916H1.20469C1.20469 10.2481 1.22198 10.2093 1.25082 10.1804L0.967928 9.89763ZM0.804687 10.2916C0.804687 10.5995 1.05439 10.8486 1.36186 10.8486V10.4486C1.27497 10.4486 1.20469 10.3782 1.20469 10.2916H0.804687ZM1.36186 10.8486C1.51551 10.8486 1.65497 10.7859 1.75546 10.6859L1.47325 10.4024C1.44437 10.4312 1.40509 10.4486 1.36186 10.4486V10.8486ZM1.7558 10.6856L4.00198 8.43869L3.71909 8.15589L1.47291 10.4028L1.7558 10.6856ZM3.66054 8.29729V10.2913H4.06054V8.29729H3.66054ZM3.66054 10.2913V10.2963H4.06054V10.2913H3.66054ZM3.66054 10.2963C3.66054 10.6039 3.9097 10.8533 4.2174 10.8533V10.4533C4.13073 10.4533 4.06054 10.3831 4.06054 10.2963H3.66054ZM4.2174 10.8533C4.5251 10.8533 4.77426 10.6039 4.77426 10.2963H4.37426C4.37426 10.3831 4.30406 10.4533 4.2174 10.4533V10.8533ZM4.77426 10.2963V10.291H4.37426V10.2963H4.77426ZM4.77426 10.291V7.47893H4.37426V10.291H4.77426ZM4.77251 7.50536C4.77547 7.48313 4.77739 7.45772 4.77739 7.43173H4.37739C4.37739 7.43888 4.3768 7.4466 4.37602 7.45251L4.77251 7.50536ZM4.77739 7.43173C4.77739 7.12409 4.52822 6.87476 4.22052 6.87476V7.27476C4.30719 7.27476 4.37739 7.34489 4.37739 7.43173H4.77739ZM4.22052 6.87476C4.21815 6.87476 4.20623 6.87463 4.1924 6.87589L4.22865 7.27425C4.22169 7.27488 4.21602 7.27476 4.22052 7.27476V6.87476ZM8.12829 6.87851C7.82122 6.87899 7.57206 7.12809 7.57206 7.43548H7.97206C7.97206 7.34901 8.04226 7.27864 8.12893 7.27851L8.12829 6.87851ZM7.57206 7.43548C7.57206 7.46263 7.574 7.48944 7.57789 7.51615L7.97373 7.45859C7.97261 7.45092 7.97206 7.44334 7.97206 7.43548H7.57206ZM7.97309 7.45449L7.97277 7.45262L7.57822 7.51838L7.57853 7.52025L7.97309 7.45449ZM7.57549 7.4855V10.2953H7.97549V7.4855H7.57549ZM7.57549 10.2953V10.3004H7.97549V10.2953H7.57549ZM7.57549 10.3004C7.57549 10.6081 7.82509 10.8573 8.13236 10.8573V10.4573C8.04589 10.4573 7.97549 10.3871 7.97549 10.3004H7.57549ZM8.13236 10.8573C8.43963 10.8573 8.68922 10.6081 8.68922 10.3004H8.28922C8.28922 10.3871 8.21883 10.4573 8.13236 10.4573V10.8573ZM8.68922 10.3004V10.295H8.28922V10.3004H8.68922ZM8.68922 10.295V8.30135H8.28922V10.295H8.68922ZM8.34778 8.44275L10.594 10.6896L10.8768 10.4068L8.63067 8.15995L8.34778 8.44275ZM10.594 10.6896C10.6948 10.7905 10.8341 10.8526 10.9876 10.8526V10.4526C10.9441 10.4526 10.9054 10.4354 10.8768 10.4068L10.594 10.6896ZM10.9876 10.8526C11.2954 10.8526 11.5444 10.6029 11.5444 10.2957H11.1444C11.1444 10.3823 11.0741 10.4526 10.9876 10.4526V10.8526ZM11.5444 10.2957C11.5444 10.1416 11.4817 10.0023 11.3812 9.90169L11.0983 10.1845C11.1272 10.2133 11.1444 10.2522 11.1444 10.2957H11.5444ZM11.3812 9.90169L9.13503 7.65481L8.85214 7.93761L11.0983 10.1845L11.3812 9.90169ZM8.99358 7.99621H10.9873V7.59621H8.99358V7.99621ZM10.9873 7.99621H10.9923V7.59621H10.9873V7.99621ZM10.9923 7.99621C11.3001 7.99621 11.5491 7.74645 11.5491 7.43923H11.1491C11.1491 7.52588 11.0788 7.59621 10.9923 7.59621V7.99621ZM11.5491 7.43923C11.5491 7.13202 11.3001 6.88226 10.9923 6.88226V7.28226C11.0788 7.28226 11.1491 7.35258 11.1491 7.43923H11.5491ZM10.9923 6.88226H10.987V7.28226H10.9923V6.88226ZM10.987 6.88226H8.17548V7.28226H10.987V6.88226ZM8.20624 6.88463C8.18386 6.88115 8.1572 6.87851 8.12861 6.87851V7.27851C8.13315 7.27851 8.13898 7.27898 8.14473 7.27988L8.20624 6.88463Z" fill="#637579" mask="url(#path-1-outside-1_5163_9498)"/> +</svg> diff --git a/src/components/elements/Button/Button.tsx b/src/components/elements/Button/Button.tsx index c02409887..68a1a6837 100644 --- a/src/components/elements/Button/Button.tsx +++ b/src/components/elements/Button/Button.tsx @@ -54,9 +54,9 @@ const Button: FC<IButtonProps> = props => { const variantClasses = useMemo(() => { const nonTextClasses = "rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10"; - const nonTextSpanClasses = "flex items-center text-bold-caption-200"; + const nonTextSpanClasses = "flex items-center text-bold-caption-200 !leading-[normal]"; const newText = - "flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary"; + "flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]"; switch (variant) { case "primary": @@ -85,7 +85,7 @@ const Button: FC<IButtonProps> = props => { return { container: "group bg-white border border-primary-500 uppercase leading-[normal] px-4 py-[10.5px] rounded-lg hover:bg-grey-900 disabled:border-transparent disabled:bg-grey-750", - span: "text-primary-500 text-12-bold group-disabled:text-grey-730" + span: "text-primary-500 text-12-bold group-disabled:text-grey-730 !leading-[normal]" }; case "white": return { @@ -95,7 +95,7 @@ const Button: FC<IButtonProps> = props => { case "white-page-admin": return { container: "py-2 px-3 bg-white rounded-lg text-darkCustom-100 border border-grey-750 hover:bg-grey-900", - span: "flex items-center text-bold-caption-200 text-inherit uppercase" + span: "flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" }; case "sky": return { @@ -106,7 +106,7 @@ const Button: FC<IButtonProps> = props => { return { container: "group py-2 px-3 bg-primary-200 rounded-lg text-darkCustom-100 border border-grey-750 hover:text-primary-500", - span: "flex items-center text-bold-caption-200 text-inherit uppercase" + span: "flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" }; case "text": return { container: "", span: "text-12-bold" }; @@ -129,14 +129,14 @@ const Button: FC<IButtonProps> = props => { return { container: "group bg-white border-[3px] border-grey-500 hover:border-primary-500 disabled:border-neutral-1000 px-4 py-2 rounded-lg", - span: "uppercase text-14-bold text-grey-500 group-hover:text-primary-500" + span: "uppercase text-14-bold text-grey-500 group-hover:text-primary-500 !leading-[normal]" }; case "orange": return { container: "group bg-tertiary-600 py-1.5 px-5 rounded-lg hover:opacity-90 disabled:bg-tertiary-600 disabled:opacity-70", - span: "normal-case text-10-bold text-white h-min" + span: "normal-case text-10-bold text-white h-min !leading-[normal]" }; case "semi-red": @@ -148,28 +148,28 @@ const Button: FC<IButtonProps> = props => { case "white-toggle": return { container: "group bg-white py-1 px-3 rounded", - span: "text-14-semibold text-darkCustom" + span: "text-14-semibold text-darkCustom !leading-[normal]" }; case "transparent-toggle": return { container: "group bg-transparent px-3 py-1 rounded", - span: "text-14-light text-darkCustom-100" + span: "text-14-light text-darkCustom-100 !leading-[normal]" }; case "white-button-map": return { container: "h-fit rounded-lg bg-white px-4 py-2 shadow hover:bg-neutral-200", - span: "flex items-center gap-2" + span: "flex items-center gap-2 !leading-[normal]" }; case "purple": return { container: "h-fit rounded-lg px-4 py-1 hover:bg-purpleCustom-60 text-purpleCustom-500 bg-purpleCustom-50 border border-purpleCustom-60", - span: "flex items-center gap-2 text-purpleCustom-500 text-14" + span: "flex items-center gap-2 text-purpleCustom-500 text-14 !leading-[normal]" }; case "about-us": return { container: "h-fit rounded-lg bg-green-200 px-5 py-[18px] hover:bg-green-60 text-white", - span: "flex items-center text-16-bold" + span: "flex items-center text-16-bold !leading-[normal]" }; default: return { container: "", span: "" }; diff --git a/src/components/elements/Button/__snapshots__/Button.stories.storyshot b/src/components/elements/Button/__snapshots__/Button.stories.storyshot index 654b3e4d2..6b1f1a829 100644 --- a/src/components/elements/Button/__snapshots__/Button.stories.storyshot +++ b/src/components/elements/Button/__snapshots__/Button.stories.storyshot @@ -7,7 +7,7 @@ exports[`Storyshots Components/Elements/Buttons Disabled Link 1`] = ` href="/" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Disabled Link </span> @@ -19,7 +19,7 @@ exports[`Storyshots Components/Elements/Buttons Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Primary </span> @@ -32,7 +32,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Disabled 1`] = ` disabled={true} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Primary </span> @@ -52,7 +52,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Icon 1`] = ` } /> <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Primary </span> @@ -65,7 +65,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Link 1`] = ` href="/" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Primary Link </span> @@ -77,7 +77,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Secondary </span> @@ -90,7 +90,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary Disabled 1`] = ` disabled={true} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Secondary </span> @@ -110,7 +110,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary Icon 1`] = ` } /> <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Secondary </span> diff --git a/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot b/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot index 3a835078c..c72dd6b56 100644 --- a/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot +++ b/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot @@ -66,7 +66,7 @@ exports[`Storyshots Components/Elements/Cards/FundingCard Default 1`] = ` target="_blank" > <span - className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary" + className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]" > Read More </span> @@ -80,7 +80,7 @@ exports[`Storyshots Components/Elements/Cards/FundingCard Default 1`] = ` onTouchStart={[Function]} > <span - className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary" + className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]" > Apply Now </span> diff --git a/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot b/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot index 68669f0a6..6adf8306c 100644 --- a/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot +++ b/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot @@ -114,7 +114,7 @@ exports[`Storyshots Components/Elements/Cards/GenericCard Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center gap-1.5 tracking-wide w-full justify-center" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> diff --git a/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot b/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot index 47369020c..9b549c93c 100644 --- a/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot +++ b/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot @@ -24,7 +24,7 @@ exports[`Storyshots Components/Elements/Cards/UpcomingOpportunitiesCard Primary onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Find out more </span> diff --git a/src/components/elements/Drawer/Drawer.tsx b/src/components/elements/Drawer/Drawer.tsx index ac734c19e..dfef681c8 100644 --- a/src/components/elements/Drawer/Drawer.tsx +++ b/src/components/elements/Drawer/Drawer.tsx @@ -2,6 +2,7 @@ import classNames from "classnames"; import React, { ReactNode, useEffect, useState } from "react"; import Icon, { IconNames } from "@/components/extensive/Icon/Icon"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; import Button from "../Button/Button"; import { DRAWER_VARIANT_DEFAULT, DrawerVariant } from "./DrawerVariants"; @@ -29,6 +30,7 @@ const Drawer = (props: DrawerProps) => { const [isScrolled, setIsScrolled] = useState(isScrolledDefault); const [isScrollingDown, setIsScrollingDown] = useState(isScrolledDefault); const [prevScrollPos, setPrevScrollPos] = useState(0); + const { setSelectPolygonFromMap } = useMonitoredDataContext(); useEffect(() => { const handleScroll = () => { @@ -70,6 +72,7 @@ const Drawer = (props: DrawerProps) => { onClick={() => { setIsOpen(false); setPolygonFromMap && setPolygonFromMap({ isOpen: false, uuid: "" }); + setSelectPolygonFromMap?.({ uuid: "", isOpen: false }); }} > <Icon name={IconNames.CLEAR} className={classNames("h-5 w-5", variant.iconClassName)} /> diff --git a/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot b/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot index baf314c2c..2da708b1c 100644 --- a/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot +++ b/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Elements/Drawer Primary 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open </span> diff --git a/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot b/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot index f15e70e7a..3fe1b5087 100644 --- a/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot +++ b/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot @@ -21,7 +21,7 @@ exports[`Storyshots Components/Elements/Fields/ButtonField Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> diff --git a/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot b/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot index fecd13e93..3cd317126 100644 --- a/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot +++ b/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot @@ -96,7 +96,7 @@ exports[`Storyshots Components/Elements/Fields/FieldsExpander Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Download </span> diff --git a/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot b/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot index ef2ec9b5c..47e98144b 100644 --- a/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot +++ b/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot @@ -35,7 +35,7 @@ exports[`Storyshots Components/Elements/Inputs/DataTable Default 1`] = ` } /> <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Add funding source </span> diff --git a/src/components/elements/Inputs/Dropdown/Dropdown.tsx b/src/components/elements/Inputs/Dropdown/Dropdown.tsx index 224654044..b6815374e 100644 --- a/src/components/elements/Inputs/Dropdown/Dropdown.tsx +++ b/src/components/elements/Inputs/Dropdown/Dropdown.tsx @@ -59,6 +59,7 @@ export interface DropdownProps { onClear?: () => void; onInternalError?: (error: ErrorOption) => void; showSelectAll?: boolean; + titleClassname?: string; } const otherKey = "other#value#key"; const getAllowedValues = (values: OptionValue[], options: Option[]) => @@ -208,7 +209,7 @@ const Dropdown = (props: PropsWithChildren<DropdownProps>) => { <div className={tw("flex items-center gap-2", variant.titleContainerClassName)}> <Text variant={props.inputVariant ?? "text-14-light"} - className={tw("w-full", variant.titleClassname)} + className={tw("w-full", variant.titleClassname, props.titleClassname)} title={formatSelectedValues( selected, options, diff --git a/src/components/elements/Inputs/Map/RHFMap.tsx b/src/components/elements/Inputs/Map/RHFMap.tsx index cd929ad06..2c5bc2301 100644 --- a/src/components/elements/Inputs/Map/RHFMap.tsx +++ b/src/components/elements/Inputs/Map/RHFMap.tsx @@ -6,6 +6,7 @@ import InputWrapper, { InputWrapperProps } from "@/components/elements/Inputs/In import MapContainer from "@/components/elements/Map-mapbox/Map"; import { FORM_POLYGONS } from "@/constants/statuses"; import { useMapAreaContext } from "@/context/mapArea.provider"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; import { SitePolygonDataProvider } from "@/context/sitePolygon.provider"; import { fetchGetV2TerrafundPolygonBboxUuid, useGetV2TerrafundProjectPolygon } from "@/generated/apiComponents"; import { SitePolygonsDataResponse } from "@/generated/apiSchemas"; @@ -47,6 +48,7 @@ const RHFMap = ({ const [polygonDataMap, setPolygonDataMap] = useState<any>({}); const [polygonFromMap, setPolygonFromMap] = useState<any>(null); const { setSiteData } = useMapAreaContext(); + const { setSelectPolygonFromMap } = useMonitoredDataContext(); const refetchData = () => { reloadProjectPolygonData(); @@ -84,6 +86,7 @@ const RHFMap = ({ if (!projectPolygon?.project_polygon) { setPolygonDataMap({ [FORM_POLYGONS]: [] }); setPolygonFromMap({ isOpen: false, uuid: "" }); + setSelectPolygonFromMap?.({ uuid: "", isOpen: false }); } else { setBbboxAndZoom(); setPolygonDataMap({ [FORM_POLYGONS]: [projectPolygon?.project_polygon?.poly_uuid] }); diff --git a/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot index f84bb9534..4bdc97c09 100644 --- a/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot @@ -33,7 +33,7 @@ exports[`Storyshots Components/Elements/LandingPage/AlternatingSection Left 1`] onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn more </span> @@ -111,7 +111,7 @@ exports[`Storyshots Components/Elements/LandingPage/AlternatingSection Right 1`] onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn more </span> diff --git a/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot index 38c3daa47..84fe30f77 100644 --- a/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot @@ -38,7 +38,7 @@ exports[`Storyshots Components/Elements/LandingPage/TwoByOneSection Primary 1`] className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Launch Resource Library </span> diff --git a/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot index 57a2a84d2..e890b9b14 100644 --- a/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot @@ -40,7 +40,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Find out more </span> @@ -69,7 +69,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Find out more </span> @@ -98,7 +98,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Find out more </span> diff --git a/src/components/elements/Map-mapbox/MapControls/ProcessBulkPolygonsControl.tsx b/src/components/elements/Map-mapbox/MapControls/ProcessBulkPolygonsControl.tsx index a5853f7a9..d57df4bc9 100644 --- a/src/components/elements/Map-mapbox/MapControls/ProcessBulkPolygonsControl.tsx +++ b/src/components/elements/Map-mapbox/MapControls/ProcessBulkPolygonsControl.tsx @@ -116,7 +116,9 @@ const ProcessBulkPolygonsControl = ({ fixPolygons( { body: { - uuids: selectedUUIDs + uuids: selectedUUIDs, + entity_uuid: entityData?.uuid, + entity_type: "sites" } }, { @@ -173,7 +175,9 @@ const ProcessBulkPolygonsControl = ({ checkPolygons( { body: { - uuids: selectedUUIDs + uuids: selectedUUIDs, + entity_uuid: entityData?.uuid, + entity_type: "sites" } }, { diff --git a/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot b/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot index 716b6733c..953345b9d 100644 --- a/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot +++ b/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot @@ -9,7 +9,7 @@ exports[`Storyshots Components/Elements/Menu Placement Bottom Left 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> @@ -60,7 +60,7 @@ exports[`Storyshots Components/Elements/Menu Placement Bottom Right 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> @@ -111,7 +111,7 @@ exports[`Storyshots Components/Elements/Menu Placement Left Bottom 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> @@ -162,7 +162,7 @@ exports[`Storyshots Components/Elements/Menu Placement Right Top 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> @@ -213,7 +213,7 @@ exports[`Storyshots Components/Elements/Menu Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> @@ -264,7 +264,7 @@ exports[`Storyshots Components/Elements/Menu Secondary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Open/Close </span> diff --git a/src/components/elements/Notification/FloatNotification.tsx b/src/components/elements/Notification/FloatNotification.tsx new file mode 100644 index 000000000..45e6e2af9 --- /dev/null +++ b/src/components/elements/Notification/FloatNotification.tsx @@ -0,0 +1,98 @@ +import classNames from "classnames"; +import { useState } from "react"; +import { When } from "react-if"; + +import Icon, { IconNames } from "@/components/extensive/Icon/Icon"; + +import LinearProgressBar from "../ProgressBar/LinearProgressBar/LinearProgressBar"; +import Text from "../Text/Text"; + +export interface FloatNotificationDataProps { + label: string; + site: string; + value: string; +} + +export interface FloatNotificationProps { + data: FloatNotificationDataProps[]; +} + +const FloatNotification = ({ data }: FloatNotificationProps) => { + const [openModalNotification, setOpenModalNotification] = useState(false); + + return ( + <div className="fixed bottom-10 right-10 z-50"> + <div className="relative"> + <div + className={classNames( + "absolute right-[107%] flex max-h-[80vh] w-[460px] flex-col overflow-hidden rounded-xl bg-white shadow-monitored transition-all duration-300", + { " bottom-[-4px] z-10 opacity-100": openModalNotification }, + { " bottom-[-300px] -z-10 opacity-0": !openModalNotification } + )} + > + <Text variant="text-20-bold" className="border-b border-grey-350 p-6 text-blueCustom-900"> + Notifications + </Text> + <div className="flex flex-col overflow-hidden px-6 pb-8 pt-6"> + <div className="mb-2 flex items-center justify-between"> + <Text variant="text-14-light" className="text-neutral-400"> + Actions Taken + </Text> + <Text variant="text-12-semibold" className="text-primary"> + Clear completed + </Text> + </div> + <div className="-mr-2 flex flex-1 flex-col gap-3 overflow-auto pr-2"> + {data.map((item, index) => ( + <div key={index} className="rounded-lg border-2 border-grey-350 bg-white p-4 hover:border-primary"> + <div className="mb-2 flex items-center gap-1"> + <div className="h-2 w-2 rounded-full bg-primary" /> + <Text variant="text-14-light" className="leading-[normal] text-darkCustom " as={"span"}> + {item.label} + </Text> + </div> + <Text variant="text-14-light" className="text-darkCustom"> + Site: <b>{item.site}</b> + </Text> + <div className="mt-2 flex items-center gap-2"> + <LinearProgressBar value={parseInt(item.value)} className="h-2 bg-success-40" color="success-600" /> + <Text variant="text-12-semibold" className="text-black"> + {item.value} + </Text> + </div> + </div> + ))} + </div> + </div> + </div> + <When condition={data.length > 0}> + <div className="text-14-bold absolute right-[-5px] top-[-5px] z-20 flex min-h-[24px] min-w-[24px] items-center justify-center rounded-full bg-red-300 leading-[normal] text-white"> + {data.length} + </div> + </When> + <button + onClick={() => { + setOpenModalNotification(!openModalNotification); + }} + className={classNames( + "z-10 flex h-15 w-15 items-center justify-center rounded-full border border-grey-950 bg-primary duration-300 hover:scale-105", + { + hidden: data.length < 1, + visible: data.length > 0 + } + )} + > + <Icon + name={openModalNotification ? IconNames.CLEAR : IconNames.FLOAT_NOTIFICATION} + className={classNames("text-white", { + "h-6 w-6": openModalNotification, + "h-8 w-8": !openModalNotification + })} + /> + </button> + </div> + </div> + ); +}; + +export default FloatNotification; diff --git a/src/components/elements/ProgressBar/LinearProgressBar/LineProgressBarMonitored.tsx b/src/components/elements/ProgressBar/LinearProgressBar/LineProgressBarMonitored.tsx index 4c03d1416..a02566fe8 100644 --- a/src/components/elements/ProgressBar/LinearProgressBar/LineProgressBarMonitored.tsx +++ b/src/components/elements/ProgressBar/LinearProgressBar/LineProgressBarMonitored.tsx @@ -53,21 +53,26 @@ const LinearProgressBarMonitored = ({ data }: LinearProgressBarMonitoredProps) = > <TooltipLineProgressBarMonitored value={tooltipValue} label={statusHover} /> </div> - {data.map((item, index) => ( - <div key={index} style={{ width: totalCount > 0 ? `${(item.count / totalCount) * 100}%` : "0%" }}> - <div - className={classNames( - "h-[6px] w-full cursor-pointer rounded-sm hover:shadow-item-monitored lg:h-[8px] wide:h-[10px]", - colorBg[item.status] + {data.map((item, index) => { + const percentage = totalCount > 0 ? (item.count / totalCount) * 100 : 0; + return ( + <div key={index} style={{ width: `${percentage}%` }}> + <div + className={classNames( + "h-[6px] w-full cursor-pointer rounded-sm hover:shadow-item-monitored lg:h-[8px] wide:h-[10px]", + colorBg[item.status] + )} + onMouseEnter={e => openTooltip(e, item)} + onMouseLeave={exitTooltip} + /> + {percentage > 10 && ( + <Text variant="text-12" className="pt-1 text-darkCustom-300"> + {item.status} + </Text> )} - onMouseEnter={e => openTooltip(e, item)} - onMouseLeave={exitTooltip} - /> - <Text variant="text-12" className="pt-1 text-darkCustom-300"> - {item.status} - </Text> - </div> - ))} + </div> + ); + })} </div> ); }; diff --git a/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot b/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot index 5f83d7788..f1c1b5806 100644 --- a/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot +++ b/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot @@ -14,7 +14,7 @@ exports[`Storyshots Components/Elements/Section/Header Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View more </span> diff --git a/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot b/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot index 99aab4ca6..039562e59 100644 --- a/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot +++ b/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot @@ -48,7 +48,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Feedback </span> @@ -57,7 +57,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn More </span> @@ -66,7 +66,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Setup Project </span> @@ -125,7 +125,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Feedback </span> @@ -134,7 +134,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn More </span> @@ -143,7 +143,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Setup Project </span> @@ -202,7 +202,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Feedback </span> @@ -211,7 +211,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn More </span> @@ -220,7 +220,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Setup Project </span> @@ -279,7 +279,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Feedback </span> @@ -288,7 +288,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn More </span> @@ -297,7 +297,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Setup Project </span> @@ -356,7 +356,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Feedback </span> @@ -365,7 +365,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Learn More </span> @@ -374,7 +374,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Setup Project </span> diff --git a/src/components/elements/Table/TableVariants.ts b/src/components/elements/Table/TableVariants.ts index ba9ae3485..fd80fb984 100644 --- a/src/components/elements/Table/TableVariants.ts +++ b/src/components/elements/Table/TableVariants.ts @@ -186,14 +186,14 @@ export const VARIANT_TABLE_MONITORED = { table: "w-full border-separate border-spacing-0", name: "border-airtable", tableWrapper: "border-b rounded-lg border-neutral-200", - trHeader: "bg-white static z-[1] top-[70px] lg:top-[75px] first:rounded-tl-lg last:rounded-tr-lg first:!border-b-0", + trHeader: "bg-white static z-[1] top-[72px] lg:top-[77px] first:rounded-tl-lg last:rounded-tr-lg first:!border-b-0", thHeader: - "border-collapse first:border-l last:border-r last:!border-l-0 first:rounded-tl-lg last:rounded-tr-lg z-[1] sticky top-[70px] lg:top-[75px] text-nowrap first:pl-2 first:pr-2 last:pr-2 border-neutral-200 text-10-semibold px-1.5 border-y py-2 bg-neutral-50", + "border-collapse first:border-l last:border-r last:!border-l-0 first:rounded-tl-lg last:rounded-tr-lg z-[1] sticky top-[77px] lg:top-[77px] text-nowrap first:pl-2 first:pr-2 last:pr-2 border-neutral-200 text-12-semibold px-1.5 border-y py-2 bg-neutral-50", tBody: "", thHeaderSort: "!border-x !place-items-center py-2", - trBody: "bg-white border-y border-neutral-200 sticky z-[0] top-[85px] last:border-b", + trBody: "bg-white border-y border-neutral-200 sticky z-[0] top-[87px] last:border-b", tdBody: - "text-10-light px-1.5 py-2 first:pl-2 first:pr-2 last:pr-2 bg-white border-collapse sticky z-[0] top-[85px] first:border-l last:border-r border-neutral-200 ", + "text-12-light px-1.5 py-2 first:pl-2 first:pr-2 last:pr-2 bg-white border-collapse sticky z-[0] top-[87px] first:border-l last:border-r border-neutral-200 ", thead: "bg-white ", paginationVariant: VARIANT_PAGINATION_MONITORED, thHeaderSticky: "sticky left-0 z-10 after:drop-shadow-lg drop-shadow-lg", diff --git a/src/components/elements/Table/__snapshots__/Table.stories.storyshot b/src/components/elements/Table/__snapshots__/Table.stories.storyshot index 3ff9deb0d..4049211ad 100644 --- a/src/components/elements/Table/__snapshots__/Table.stories.storyshot +++ b/src/components/elements/Table/__snapshots__/Table.stories.storyshot @@ -95,7 +95,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -309,7 +309,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -369,7 +369,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -429,7 +429,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -489,7 +489,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -549,7 +549,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -609,7 +609,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -669,7 +669,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -729,7 +729,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -789,7 +789,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -849,7 +849,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -958,7 +958,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -1172,7 +1172,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1232,7 +1232,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1292,7 +1292,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1352,7 +1352,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1412,7 +1412,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1472,7 +1472,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1532,7 +1532,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1592,7 +1592,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1652,7 +1652,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1712,7 +1712,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -1821,7 +1821,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -2035,7 +2035,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2095,7 +2095,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2155,7 +2155,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2215,7 +2215,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2275,7 +2275,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2335,7 +2335,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2395,7 +2395,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2455,7 +2455,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2515,7 +2515,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2575,7 +2575,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2684,7 +2684,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -2898,7 +2898,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -2958,7 +2958,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3018,7 +3018,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3078,7 +3078,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3138,7 +3138,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3198,7 +3198,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3258,7 +3258,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3318,7 +3318,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3378,7 +3378,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3438,7 +3438,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3550,7 +3550,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -3764,7 +3764,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3824,7 +3824,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3884,7 +3884,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -3944,7 +3944,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4004,7 +4004,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4064,7 +4064,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4124,7 +4124,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4184,7 +4184,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4244,7 +4244,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4304,7 +4304,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4414,7 +4414,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -4628,7 +4628,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4688,7 +4688,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4748,7 +4748,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4808,7 +4808,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4868,7 +4868,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4928,7 +4928,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -4988,7 +4988,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5048,7 +5048,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5108,7 +5108,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5168,7 +5168,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5277,7 +5277,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -5491,7 +5491,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5551,7 +5551,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5611,7 +5611,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5671,7 +5671,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5731,7 +5731,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5791,7 +5791,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5851,7 +5851,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5911,7 +5911,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -5971,7 +5971,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6031,7 +6031,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6143,7 +6143,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -6357,7 +6357,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6417,7 +6417,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6477,7 +6477,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6537,7 +6537,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6597,7 +6597,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6657,7 +6657,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6717,7 +6717,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6777,7 +6777,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6837,7 +6837,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -6897,7 +6897,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7010,7 +7010,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -7224,7 +7224,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7284,7 +7284,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7344,7 +7344,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7404,7 +7404,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7464,7 +7464,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7524,7 +7524,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7584,7 +7584,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7644,7 +7644,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7704,7 +7704,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7764,7 +7764,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -7877,7 +7877,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -8091,7 +8091,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8151,7 +8151,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8211,7 +8211,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8271,7 +8271,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8331,7 +8331,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8391,7 +8391,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8451,7 +8451,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8511,7 +8511,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8571,7 +8571,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8631,7 +8631,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -8741,7 +8741,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -8955,7 +8955,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9015,7 +9015,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9075,7 +9075,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9135,7 +9135,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9195,7 +9195,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9255,7 +9255,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9315,7 +9315,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9375,7 +9375,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9435,7 +9435,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9495,7 +9495,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9607,7 +9607,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Create </span> @@ -9821,7 +9821,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9881,7 +9881,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -9941,7 +9941,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10001,7 +10001,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10061,7 +10061,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10121,7 +10121,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10181,7 +10181,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10241,7 +10241,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10301,7 +10301,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> @@ -10361,7 +10361,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View </span> diff --git a/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot b/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot index 8ee7f08e9..30932df5f 100644 --- a/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot +++ b/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot @@ -7,7 +7,7 @@ Array [ onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Trigger </span> @@ -25,7 +25,7 @@ Array [ onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Trigger </span> diff --git a/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot b/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot index e688fa6bc..56f82acf1 100644 --- a/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot +++ b/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot @@ -412,7 +412,7 @@ exports[`Storyshots Components/Extensive/ActionTracker/ActionTrackerCard Empty 1 className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content mt-6" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > CTA here </span> diff --git a/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot b/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot index 0e4327602..69d8f432d 100644 --- a/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot +++ b/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot @@ -32,7 +32,7 @@ exports[`Storyshots Components/Extensive/Banner/HeroBanner Default 1`] = ` onTouchStart={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Sign up </span> diff --git a/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot b/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot index 270e00f0a..c3cceb223 100644 --- a/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot +++ b/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot @@ -46,7 +46,7 @@ exports[`Storyshots Components/Extensive/Banner/BannerCard Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center gap-1.5 tracking-wide w-full justify-center" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > View Profile </span> diff --git a/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot b/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot index ba6ff9c31..3f30be0f5 100644 --- a/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot +++ b/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot @@ -20,7 +20,7 @@ exports[`Storyshots Components/Extensive/BuildStrongerProfile Neutral 150 1`] = className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Edit Profile </span> @@ -102,7 +102,7 @@ exports[`Storyshots Components/Extensive/BuildStrongerProfile White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Edit Profile </span> diff --git a/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot b/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot index 8e4617baa..b0f10d6c3 100644 --- a/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot +++ b/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot @@ -18,7 +18,7 @@ exports[`Storyshots Components/Extensive/CookieBanner Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Ok </span> diff --git a/src/components/extensive/Icon/Icon.tsx b/src/components/extensive/Icon/Icon.tsx index 6b5861781..8aee895d3 100644 --- a/src/components/extensive/Icon/Icon.tsx +++ b/src/components/extensive/Icon/Icon.tsx @@ -201,6 +201,9 @@ export enum IconNames { IC_NOTIFICATION = "notification", IC_LOADING = "loading", IC_INFO_WHITE_BLACK = "ic-info-white-black", + FLOAT_NOTIFICATION = "float-notification", + IC_EXPAND = "ic_expand", + IC_SHINK = "ic_shrink", IC_ADD_BUTTON = "add-button", TRASH_TA = "trash-ta", EDIT_TA = "edit-ta", diff --git a/src/components/extensive/Modal/ModalRunAnalysis.tsx b/src/components/extensive/Modal/ModalRunAnalysis.tsx index ff380a543..9c0fbd085 100644 --- a/src/components/extensive/Modal/ModalRunAnalysis.tsx +++ b/src/components/extensive/Modal/ModalRunAnalysis.tsx @@ -1,28 +1,37 @@ -import { FC } from "react"; +import { FC, useState } from "react"; import { When } from "react-if"; +import { useMonitoredData } from "@/admin/components/ResourceTabs/MonitoredTab/hooks/useMonitoredData"; import Button from "@/components/elements/Button/Button"; import Dropdown from "@/components/elements/Inputs/Dropdown/Dropdown"; import { VARIANT_DROPDOWN_DEFAULT } from "@/components/elements/Inputs/Dropdown/DropdownVariant"; -import FileInput from "@/components/elements/Inputs/FileInput/FileInput"; -import { VARIANT_FILE_INPUT_MODAL_ADD } from "@/components/elements/Inputs/FileInput/FileInputVariants"; import Input from "@/components/elements/Inputs/Input/Input"; import Text from "@/components/elements/Text/Text"; +import InlineLoader from "@/components/generic/Loading/InlineLoader"; +import { useMonitoredDataContext } from "@/context/monitoredData.provider"; +import { useNotificationContext } from "@/context/notification.provider"; +import { EntityName } from "@/types/common"; import Icon, { IconNames } from "../Icon/Icon"; import { ModalProps } from "./Modal"; -import { ModalBaseWithLogo } from "./ModalsBases"; +import { ModalBaseWithMonitored } from "./ModalsBases"; export interface ModalRunAnalysisProps extends ModalProps { secondaryButtonText?: string; onClose?: () => void; primaryButtonText: string; title: string; + projectName?: string; + entityType?: EntityName; + entityUuid?: string; } const ModalRunAnalysis: FC<ModalRunAnalysisProps> = ({ primaryButtonProps, title, + projectName, + entityType, + entityUuid, primaryButtonText, secondaryButtonProps, secondaryButtonText, @@ -31,11 +40,44 @@ const ModalRunAnalysis: FC<ModalRunAnalysisProps> = ({ onClose, ...rest }) => { + const { indicatorSlugAnalysis, setIndicatorSlugAnalysis, setLoadingAnalysis, indicatorSlug } = + useMonitoredDataContext(); + const { runAnalysisIndicator, dropdownAnalysisOptions, loadingVerify, analysisToSlug } = useMonitoredData( + entityType, + entityUuid + ); + const { openNotification } = useNotificationContext(); + const [selectSlug, setSelectSlug] = useState<string | undefined>(); + const runAnalysis = async () => { + const indicatorSlugSelected = selectSlug ? indicatorSlugAnalysis : indicatorSlug; + setLoadingAnalysis?.(true); + if (analysisToSlug[`${indicatorSlugSelected}`]?.message) { + setLoadingAnalysis?.(false); + return openNotification("warning", "Warning", analysisToSlug[`${indicatorSlugSelected}`].message); + } + await runAnalysisIndicator({ + pathParams: { + slug: indicatorSlugSelected! + }, + body: { + uuids: analysisToSlug[`${indicatorSlugSelected}`] + } + }); + setIndicatorSlugAnalysis?.("treeCoverLoss"); + onClose?.(); + }; + return ( - <ModalBaseWithLogo {...rest}> + <ModalBaseWithMonitored {...rest}> <header className="flex w-full items-center justify-between border-b border-b-neutral-200 px-8 py-5"> <Icon name={IconNames.WRI_LOGO} width={108} height={30} className="min-w-[108px]" /> - <button onClick={onClose} className="ml-2 rounded p-1 hover:bg-grey-800"> + <button + onClick={() => { + setIndicatorSlugAnalysis?.("treeCoverLoss"); + onClose?.(); + }} + className="ml-2 rounded p-1 hover:bg-grey-800" + > <Icon name={IconNames.CLEAR} width={16} height={16} className="text-darkCustom-100" /> </button> </header> @@ -50,7 +92,7 @@ const ModalRunAnalysis: FC<ModalRunAnalysisProps> = ({ <Input type="text" name="projectName" - placeholder="Project Name" + placeholder={projectName!} label="Project Name" variant="default" labelClassName="!capitalize !text-darkCustom" @@ -58,37 +100,32 @@ const ModalRunAnalysis: FC<ModalRunAnalysisProps> = ({ disabled={true} className="bg-neutral-150" /> - <Dropdown - placeholder="Tree Cover Loss (16 polygons not run)" - label="Indicator" - options={[ - { title: "Global", value: "Global" }, - { title: "Country", value: "Country" }, - { title: "Subnational", value: "Subnational" } - ]} - onChange={() => {}} - variant={VARIANT_DROPDOWN_DEFAULT} - className="!min-h-[44px] !py-[9px]" - labelClassName="!capitalize !text-darkCustom" - labelVariant="text-14-light" - /> - <FileInput - label="Upload Manually" - labelClassName="!capitalize !text-darkCustom" - labelVariant="text-14-light" - files={[]} - variant={VARIANT_FILE_INPUT_MODAL_ADD} - descriptionInput={ - <Text variant="text-12-light" className="min-w-max text-center"> - Drag and drop a CSV File based on the required{" "} - <Text variant="text-12-bold" className="text-primary" as="span"> - data table - </Text>{" "} - schema - </Text> - } - /> + <When condition={!loadingVerify}> + <Dropdown + placeholder={dropdownAnalysisOptions.find(option => option.slug === indicatorSlug)?.title} + label="Indicator" + options={dropdownAnalysisOptions} + onChange={e => { + const indicator = dropdownAnalysisOptions.find(option => option.value === e[0])?.slug; + setIndicatorSlugAnalysis?.(indicator!); + setSelectSlug(indicator); + }} + variant={VARIANT_DROPDOWN_DEFAULT} + className="!min-h-[44px] !py-[9px]" + labelClassName="!capitalize !text-darkCustom" + labelVariant="text-14-light" + /> + </When> </div> + <br /> + <br /> + <br /> + <br /> + <br /> + <br /> + <br /> + <br /> + <br /> </div> <div className="flex w-full justify-end gap-3 px-8 py-4"> <When condition={!!secondaryButtonProps}> @@ -98,13 +135,14 @@ const ModalRunAnalysis: FC<ModalRunAnalysisProps> = ({ </Text> </Button> </When> - <Button {...primaryButtonProps}> + <Button {...primaryButtonProps} onClick={runAnalysis} disabled={loadingVerify}> <Text variant="text-14-bold" className="capitalize text-white"> {primaryButtonText} </Text> + <InlineLoader loading={loadingVerify} /> </Button> </div> - </ModalBaseWithLogo> + </ModalBaseWithMonitored> ); }; diff --git a/src/components/extensive/Modal/ModalsBases.tsx b/src/components/extensive/Modal/ModalsBases.tsx index 7ff17e5e4..e27d4effd 100644 --- a/src/components/extensive/Modal/ModalsBases.tsx +++ b/src/components/extensive/Modal/ModalsBases.tsx @@ -32,6 +32,10 @@ export const ModalBaseImageGallery = createModalComponent( export const ModalBaseWithClose = createModalComponent(commonBaseClasses + " max-w-[800px] p-8", "margin-4 z-50"); export const ModalBaseWithLogo = createModalComponent(commonBaseClasses + " h-[95%] w-[776px]", "margin-4 z-50"); +export const ModalBaseWithMonitored = createModalComponent( + commonBaseClasses + " max-h-[95%] w-[776px]", + "margin-4 z-50" +); export const ModalBaseWithLogoAuto = createModalComponent( commonBaseClasses + " h-auto w-[700px] !max-h-max", diff --git a/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot b/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot index 1547d4708..8bf54f6bc 100644 --- a/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Extensive/Modal/FormModal Default 1`] = ` type="submit" > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Save </span> diff --git a/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot b/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot index d363bc3c5..8fb324735 100644 --- a/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Extensive/Modal Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Cancel </span> @@ -49,7 +49,7 @@ exports[`Storyshots Components/Extensive/Modal Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Close and continue later </span> diff --git a/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot index e1f36725e..60fe7aaf0 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot @@ -148,7 +148,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalAdd Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > <p className="capitalize text-white text-14-bold" diff --git a/src/components/extensive/Modal/__snapshots__/ModalConfirm.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalConfirm.stories.storyshot index f3a705067..65df9f6a5 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalConfirm.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalConfirm.stories.storyshot @@ -44,7 +44,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalConfirm Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200 text-inherit uppercase" + className="flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" > <p className="capitalize text-12-bold" @@ -59,7 +59,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalConfirm Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > <p className="capitalize text-12-bold" diff --git a/src/components/extensive/Modal/__snapshots__/ModalSubmit.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalSubmit.stories.storyshot index 82a266b59..4500c4b71 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalSubmit.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalSubmit.stories.storyshot @@ -117,7 +117,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalSubmit Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200 text-inherit uppercase" + className="flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" > <p className="capitalize text-14-bold" @@ -132,7 +132,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalSubmit Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > <p className="capitalize text-white text-14-bold" diff --git a/src/components/extensive/Modal/__snapshots__/ModalWithClose.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalWithClose.stories.storyshot index e641c38ab..6f0044485 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalWithClose.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalWithClose.stories.storyshot @@ -56,7 +56,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithClose Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Cancel </span> @@ -66,7 +66,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithClose Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > Close and continue later </span> diff --git a/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot index bbda4b201..bfc3407e1 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot @@ -239,7 +239,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithLogo Default 1`] = ` } /> <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > <p className="text-white text-12-bold" @@ -261,7 +261,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithLogo Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200 text-inherit uppercase" + className="flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" > <p className="capitalize text-14-bold" @@ -274,7 +274,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithLogo Default 1`] = ` onClick={[Function]} > <span - className="flex items-center text-bold-caption-200" + className="flex items-center text-bold-caption-200 !leading-[normal]" > <p className="capitalize text-white text-14-bold" diff --git a/src/components/extensive/TaskList/__snapshots__/TaskList.stories.storyshot b/src/components/extensive/TaskList/__snapshots__/TaskList.stories.storyshot index 3f1d20ef1..3ddcf223e 100644 --- a/src/components/extensive/TaskList/__snapshots__/TaskList.stories.storyshot +++ b/src/components/extensive/TaskList/__snapshots__/TaskList.stories.storyshot @@ -66,7 +66,7 @@ exports[`Storyshots Components/Extensive/TaskList Default 1`] = ` href="/" > <span - className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary" + className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]" > View </span> @@ -113,7 +113,7 @@ exports[`Storyshots Components/Extensive/TaskList Default 1`] = ` href="/" > <span - className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary" + className="flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]" > View </span> diff --git a/src/constants/dashboardConsts.ts b/src/constants/dashboardConsts.ts index 8d7c4f611..71f1f109e 100644 --- a/src/constants/dashboardConsts.ts +++ b/src/constants/dashboardConsts.ts @@ -44,6 +44,25 @@ export const TERRAFUND_MONITORING_LINK = "https://www.wri.org/update/land-degrad export const TERRAFUND_MRV_LINK = `<a href=${TERRAFUND_MONITORING_LINK} class="underline !text-black" target="_blank">TerraFund's MRV framework</a>`; +export const DEFAULT_POLYGONS_DATA = { + graphicTargetLandUseTypes: [], + totalSection: { + totalHectaresRestored: 0 + } +}; + +export const DEFAULT_POLYGONS_DATA_STRATEGIES = [ + { label: "Direct Seeding", value: 0 }, + { label: "Assisted Natural Regeneration", value: 0 }, + { label: "Tree Planting", value: 0 }, + { label: "Multiple Strategies", value: 0 } +]; + +export const DEFAULT_POLYGONS_DATA_ECOREGIONS = { + chartData: [], + total: 0 +}; + export const DUMMY_DATA_FOR_CHART_MULTI_LINE_CHART = [ { name: "Total", diff --git a/src/context/floatNotification.provider.tsx b/src/context/floatNotification.provider.tsx new file mode 100644 index 000000000..7b2b27aa8 --- /dev/null +++ b/src/context/floatNotification.provider.tsx @@ -0,0 +1,44 @@ +import React, { useContext } from "react"; + +import FloatNotification from "@/components/elements/Notification/FloatNotification"; + +type FloatNotificationContextType = { + data: { label: string; site: string; value: string }[]; + addDataFloatNotification: (data: FloatNotificationContextType["data"]) => void; +}; + +export const FloatNotificationContext = React.createContext<FloatNotificationContextType>({ + data: [], + addDataFloatNotification: () => {} +}); + +type FloatNotificationProviderProps = { + children: React.ReactNode; +}; + +const FloatNotificationProvider = ({ children }: FloatNotificationProviderProps) => { + const [data, setData] = React.useState<FloatNotificationContextType["data"]>([]); + + const addDataFloatNotification = (data: FloatNotificationContextType["data"]) => { + setData(data); + }; + + const value = React.useMemo( + () => ({ + data, + addDataFloatNotification + }), + [data] + ); + + return ( + <FloatNotificationContext.Provider value={value}> + {children} + <FloatNotification data={data} /> + </FloatNotificationContext.Provider> + ); +}; + +export const useFloatNotificationContex = () => useContext(FloatNotificationContext); + +export default FloatNotificationProvider; diff --git a/src/context/modal.provider.tsx b/src/context/modal.provider.tsx index a3b87c747..31a01301e 100644 --- a/src/context/modal.provider.tsx +++ b/src/context/modal.provider.tsx @@ -13,6 +13,7 @@ type ModalContextType = { openModal: (id: string, content: ReactNode, coverToolbar?: boolean) => void; closeModal: (id: string) => void; setModalLoading: (id: string, loading: boolean) => void; + modalOpened: (id: string) => boolean; }; export const ModalContext = React.createContext<ModalContextType>({ @@ -20,7 +21,8 @@ export const ModalContext = React.createContext<ModalContextType>({ setModalContent: () => {}, openModal: () => {}, closeModal: () => {}, - setModalLoading: () => {} + setModalLoading: () => {}, + modalOpened: () => false }); type ModalProviderProps = { @@ -48,13 +50,17 @@ const ModalProvider = ({ children }: ModalProviderProps) => { setModals(prevModals => prevModals.map(modal => (modal.id === id ? { ...modal, loading } : modal))); }; + /** Checks if the modal is opened. */ + const modalOpened = (id: string) => modals.some(modal => modal.id === id); + const value = useMemo( () => ({ modals, setModalContent, openModal, closeModal, - setModalLoading + setModalLoading, + modalOpened }), [modals] ); diff --git a/src/context/monitoredData.provider.tsx b/src/context/monitoredData.provider.tsx new file mode 100644 index 000000000..9dc1a1ff5 --- /dev/null +++ b/src/context/monitoredData.provider.tsx @@ -0,0 +1,74 @@ +import React, { createContext, ReactNode, useContext } from "react"; + +import { IpolygonFromMap } from "@/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons"; + +type MonitoredDataType = { + filters: { + uuid: string; + }; + setFilters: React.Dispatch< + React.SetStateAction<{ + uuid: string; + }> + >; + searchTerm: string; + setSearchTerm: React.Dispatch<React.SetStateAction<string>>; + indicatorSlug?: string; + setIndicatorSlug?: React.Dispatch<React.SetStateAction<string>>; + indicatorSlugAnalysis?: string; + setIndicatorSlugAnalysis?: React.Dispatch<React.SetStateAction<string>>; + loadingAnalysis?: boolean; + setLoadingAnalysis?: React.Dispatch<React.SetStateAction<boolean>>; + setSelectPolygonFromMap?: (value: IpolygonFromMap) => void; + selectPolygonFromMap?: IpolygonFromMap; +}; +const defaultValues: MonitoredDataType = { + filters: { + uuid: "" + }, + setFilters: () => {}, + searchTerm: "", + setSearchTerm: () => {}, + indicatorSlug: "treeCoverLoss", + setIndicatorSlug: () => {}, + indicatorSlugAnalysis: "treeCoverLoss", + setIndicatorSlugAnalysis: () => {}, + loadingAnalysis: false, + setLoadingAnalysis: () => {}, + setSelectPolygonFromMap: () => {}, + selectPolygonFromMap: { isOpen: false, uuid: "" } +}; +const MonitoredDataContext = createContext<MonitoredDataType>(defaultValues); + +export const MonitoredDataProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const [filters, setFilters] = React.useState<MonitoredDataType["filters"]>(defaultValues.filters); + const [searchTerm, setSearchTerm] = React.useState(""); + const [indicatorSlug, setIndicatorSlug] = React.useState("treeCoverLoss"); + const [indicatorSlugAnalysis, setIndicatorSlugAnalysis] = React.useState("treeCoverLoss"); + const [loadingAnalysis, setLoadingAnalysis] = React.useState<boolean>(false); + const [selectPolygonFromMap, setSelectPolygonFromMap] = React.useState<IpolygonFromMap>({ isOpen: false, uuid: "" }); + + const contextValue: MonitoredDataType = { + filters, + setFilters, + searchTerm, + setSearchTerm, + indicatorSlug, + setIndicatorSlug, + indicatorSlugAnalysis, + setIndicatorSlugAnalysis, + loadingAnalysis, + setLoadingAnalysis, + setSelectPolygonFromMap, + selectPolygonFromMap + }; + return <MonitoredDataContext.Provider value={contextValue}>{children}</MonitoredDataContext.Provider>; +}; + +export const useMonitoredDataContext = () => { + const context = useContext(MonitoredDataContext); + if (!context) { + throw new Error("useMonitoredDataContext must be used within a MonitoredDataProvider"); + } + return context; +}; diff --git a/src/generated/apiComponents.ts b/src/generated/apiComponents.ts index df4c9136a..a4e07fa0b 100644 --- a/src/generated/apiComponents.ts +++ b/src/generated/apiComponents.ts @@ -38051,6 +38051,14 @@ export type PostV2TerrafundClipPolygonsPolygonsResponse = { export type PostV2TerrafundClipPolygonsPolygonsRequestBody = { uuids?: string[]; + /** + * The entity type of the polygon geometries to be fixed + */ + entity_type?: string; + /** + * The entity ID of the polygon geometries to be fixed + */ + entity_uuid?: string; }; export type PostV2TerrafundClipPolygonsPolygonsVariables = { @@ -38103,6 +38111,8 @@ export type PostV2TerrafundValidationPolygonsResponse = { export type PostV2TerrafundValidationPolygonsRequestBody = { uuids?: string[]; + entity_uuid?: string; + entity_type?: string; }; export type PostV2TerrafundValidationPolygonsVariables = { @@ -38144,6 +38154,314 @@ export const usePostV2TerrafundValidationPolygons = ( ); }; +export type GetV2IndicatorsEntityUuidSlugPathParams = { + /** + * Filter counts and metrics by entity. + */ + entity: string; + /** + * Filter counts and metrics by entity uuid. + */ + uuid: string; + /** + * Filter counts and metrics by slug. + */ + slug: string; +}; + +export type GetV2IndicatorsEntityUuidSlugError = Fetcher.ErrorWrapper<undefined>; + +export type GetV2IndicatorsEntityUuidSlugResponse = { + ["2015"]?: number; + ["2016"]?: number; + ["2017"]?: number; + ["2018"]?: number; + ["2019"]?: number; + ["2020"]?: number; + ["2021"]?: number; + ["2022"]?: number; + ["2023"]?: number; + ["2024"]?: number; + id?: number; + poly_name?: string; + status?: string; + /** + * @format date + */ + plantstart?: string; + site_name?: string; + size?: void; + /** + * @format date + */ + created_at?: string; + indicator_slug?: string; + year_of_analysis?: number; + value?: Record<string, any>; +}[]; + +export type GetV2IndicatorsEntityUuidSlugVariables = { + pathParams: GetV2IndicatorsEntityUuidSlugPathParams; +} & ApiContext["fetcherOptions"]; + +export const fetchGetV2IndicatorsEntityUuidSlug = ( + variables: GetV2IndicatorsEntityUuidSlugVariables, + signal?: AbortSignal +) => + apiFetch< + GetV2IndicatorsEntityUuidSlugResponse, + GetV2IndicatorsEntityUuidSlugError, + undefined, + {}, + {}, + GetV2IndicatorsEntityUuidSlugPathParams + >({ url: "/v2/indicators/{entity}/{uuid}/{slug}", method: "get", ...variables, signal }); + +export const useGetV2IndicatorsEntityUuidSlug = <TData = GetV2IndicatorsEntityUuidSlugResponse>( + variables: GetV2IndicatorsEntityUuidSlugVariables, + options?: Omit< + reactQuery.UseQueryOptions<GetV2IndicatorsEntityUuidSlugResponse, GetV2IndicatorsEntityUuidSlugError, TData>, + "queryKey" | "queryFn" + > +) => { + const { fetcherOptions, queryOptions, queryKeyFn } = useApiContext(options); + return reactQuery.useQuery<GetV2IndicatorsEntityUuidSlugResponse, GetV2IndicatorsEntityUuidSlugError, TData>( + queryKeyFn({ + path: "/v2/indicators/{entity}/{uuid}/{slug}", + operationId: "getV2IndicatorsEntityUuidSlug", + variables + }), + ({ signal }) => fetchGetV2IndicatorsEntityUuidSlug({ ...fetcherOptions, ...variables }, signal), + { + ...options, + ...queryOptions + } + ); +}; + +export type PostV2IndicatorsSlugPathParams = { + /** + * Optional. Filter counts and metrics by slug. + */ + slug: string; +}; + +export type PostV2IndicatorsSlugError = Fetcher.ErrorWrapper<undefined>; + +export type PostV2IndicatorsSlugResponse = { + uuids?: string[]; +}; + +export type PostV2IndicatorsSlugRequestBody = { + uuids?: string[]; +}; + +export type PostV2IndicatorsSlugVariables = { + body?: PostV2IndicatorsSlugRequestBody; + pathParams: PostV2IndicatorsSlugPathParams; +} & ApiContext["fetcherOptions"]; + +export const fetchPostV2IndicatorsSlug = (variables: PostV2IndicatorsSlugVariables, signal?: AbortSignal) => + apiFetch< + PostV2IndicatorsSlugResponse, + PostV2IndicatorsSlugError, + PostV2IndicatorsSlugRequestBody, + {}, + {}, + PostV2IndicatorsSlugPathParams + >({ url: "/v2/indicators/{slug}", method: "post", ...variables, signal }); + +export const usePostV2IndicatorsSlug = ( + options?: Omit< + reactQuery.UseMutationOptions< + PostV2IndicatorsSlugResponse, + PostV2IndicatorsSlugError, + PostV2IndicatorsSlugVariables + >, + "mutationFn" + > +) => { + const { fetcherOptions } = useApiContext(); + return reactQuery.useMutation<PostV2IndicatorsSlugResponse, PostV2IndicatorsSlugError, PostV2IndicatorsSlugVariables>( + (variables: PostV2IndicatorsSlugVariables) => fetchPostV2IndicatorsSlug({ ...fetcherOptions, ...variables }), + options + ); +}; + +export type GetV2IndicatorsEntityUuidPathParams = { + /** + * Filter counts and metrics by entity. + */ + entity: string; + /** + * Filter counts and metrics by entity uuid. + */ + uuid: string; +}; + +export type GetV2IndicatorsEntityUuidError = Fetcher.ErrorWrapper<undefined>; + +export type GetV2IndicatorsEntityUuidResponse = { + draft?: number; + submitted?: number; + approved?: number; + ["needs-more-information"]?: number; +}[]; + +export type GetV2IndicatorsEntityUuidVariables = { + pathParams: GetV2IndicatorsEntityUuidPathParams; +} & ApiContext["fetcherOptions"]; + +export const fetchGetV2IndicatorsEntityUuid = (variables: GetV2IndicatorsEntityUuidVariables, signal?: AbortSignal) => + apiFetch< + GetV2IndicatorsEntityUuidResponse, + GetV2IndicatorsEntityUuidError, + undefined, + {}, + {}, + GetV2IndicatorsEntityUuidPathParams + >({ url: "/v2/indicators/{entity}/{uuid}", method: "get", ...variables, signal }); + +export const useGetV2IndicatorsEntityUuid = <TData = GetV2IndicatorsEntityUuidResponse>( + variables: GetV2IndicatorsEntityUuidVariables, + options?: Omit< + reactQuery.UseQueryOptions<GetV2IndicatorsEntityUuidResponse, GetV2IndicatorsEntityUuidError, TData>, + "queryKey" | "queryFn" + > +) => { + const { fetcherOptions, queryOptions, queryKeyFn } = useApiContext(options); + return reactQuery.useQuery<GetV2IndicatorsEntityUuidResponse, GetV2IndicatorsEntityUuidError, TData>( + queryKeyFn({ path: "/v2/indicators/{entity}/{uuid}", operationId: "getV2IndicatorsEntityUuid", variables }), + ({ signal }) => fetchGetV2IndicatorsEntityUuid({ ...fetcherOptions, ...variables }, signal), + { + ...options, + ...queryOptions + } + ); +}; + +export type GetV2IndicatorsEntityUuidSlugVerifyPathParams = { + /** + * Filter counts and metrics by entity. + */ + entity: string; + /** + * Filter counts and metrics by entity uuid. + */ + uuid: string; + /** + * Filter counts and metrics by slug. + */ + slug: string; +}; + +export type GetV2IndicatorsEntityUuidSlugVerifyError = Fetcher.ErrorWrapper<undefined>; + +export type GetV2IndicatorsEntityUuidSlugVerifyResponse = any[]; + +export type GetV2IndicatorsEntityUuidSlugVerifyVariables = { + pathParams: GetV2IndicatorsEntityUuidSlugVerifyPathParams; +} & ApiContext["fetcherOptions"]; + +export const fetchGetV2IndicatorsEntityUuidSlugVerify = ( + variables: GetV2IndicatorsEntityUuidSlugVerifyVariables, + signal?: AbortSignal +) => + apiFetch< + GetV2IndicatorsEntityUuidSlugVerifyResponse, + GetV2IndicatorsEntityUuidSlugVerifyError, + undefined, + {}, + {}, + GetV2IndicatorsEntityUuidSlugVerifyPathParams + >({ url: "/v2/indicators/{entity}/{uuid}/{slug}/verify", method: "get", ...variables, signal }); + +export const useGetV2IndicatorsEntityUuidSlugVerify = <TData = GetV2IndicatorsEntityUuidSlugVerifyResponse>( + variables: GetV2IndicatorsEntityUuidSlugVerifyVariables, + options?: Omit< + reactQuery.UseQueryOptions< + GetV2IndicatorsEntityUuidSlugVerifyResponse, + GetV2IndicatorsEntityUuidSlugVerifyError, + TData + >, + "queryKey" | "queryFn" + > +) => { + const { fetcherOptions, queryOptions, queryKeyFn } = useApiContext(options); + return reactQuery.useQuery< + GetV2IndicatorsEntityUuidSlugVerifyResponse, + GetV2IndicatorsEntityUuidSlugVerifyError, + TData + >( + queryKeyFn({ + path: "/v2/indicators/{entity}/{uuid}/{slug}/verify", + operationId: "getV2IndicatorsEntityUuidSlugVerify", + variables + }), + ({ signal }) => fetchGetV2IndicatorsEntityUuidSlugVerify({ ...fetcherOptions, ...variables }, signal), + { + ...options, + ...queryOptions + } + ); +}; + +export type GetV2IndicatorsEntityUuidSlugExportPathParams = { + /** + * Filter counts and metrics by entity. + */ + entity: string; + /** + * Filter counts and metrics by entity uuid. + */ + uuid: string; + /** + * Filter counts and metrics by slug. + */ + slug: string; +}; + +export type GetV2IndicatorsEntityUuidSlugExportError = Fetcher.ErrorWrapper<undefined>; + +export type GetV2IndicatorsEntityUuidSlugExportVariables = { + pathParams: GetV2IndicatorsEntityUuidSlugExportPathParams; +} & ApiContext["fetcherOptions"]; + +export const fetchGetV2IndicatorsEntityUuidSlugExport = ( + variables: GetV2IndicatorsEntityUuidSlugExportVariables, + signal?: AbortSignal +) => + apiFetch< + undefined, + GetV2IndicatorsEntityUuidSlugExportError, + undefined, + {}, + {}, + GetV2IndicatorsEntityUuidSlugExportPathParams + >({ url: "/v2/indicators/{entity}/{uuid}/{slug}/export", method: "get", ...variables, signal }); + +export const useGetV2IndicatorsEntityUuidSlugExport = <TData = undefined>( + variables: GetV2IndicatorsEntityUuidSlugExportVariables, + options?: Omit< + reactQuery.UseQueryOptions<undefined, GetV2IndicatorsEntityUuidSlugExportError, TData>, + "queryKey" | "queryFn" + > +) => { + const { fetcherOptions, queryOptions, queryKeyFn } = useApiContext(options); + return reactQuery.useQuery<undefined, GetV2IndicatorsEntityUuidSlugExportError, TData>( + queryKeyFn({ + path: "/v2/indicators/{entity}/{uuid}/{slug}/export", + operationId: "getV2IndicatorsEntityUuidSlugExport", + variables + }), + ({ signal }) => fetchGetV2IndicatorsEntityUuidSlugExport({ ...fetcherOptions, ...variables }, signal), + { + ...options, + ...queryOptions + } + ); +}; + export type QueryOperation = | { path: "/v2/tree-species/{entity}/{UUID}"; @@ -38849,4 +39167,24 @@ export type QueryOperation = path: "/v2/site-polygon/{uuid}/versions"; operationId: "getV2SitePolygonUuidVersions"; variables: GetV2SitePolygonUuidVersionsVariables; + } + | { + path: "/v2/indicators/{entity}/{uuid}/{slug}"; + operationId: "getV2IndicatorsEntityUuidSlug"; + variables: GetV2IndicatorsEntityUuidSlugVariables; + } + | { + path: "/v2/indicators/{entity}/{uuid}"; + operationId: "getV2IndicatorsEntityUuid"; + variables: GetV2IndicatorsEntityUuidVariables; + } + | { + path: "/v2/indicators/{entity}/{uuid}/{slug}/verify"; + operationId: "getV2IndicatorsEntityUuidSlugVerify"; + variables: GetV2IndicatorsEntityUuidSlugVerifyVariables; + } + | { + path: "/v2/indicators/{entity}/{uuid}/{slug}/export"; + operationId: "getV2IndicatorsEntityUuidSlugExport"; + variables: GetV2IndicatorsEntityUuidSlugExportVariables; }; diff --git a/src/generated/apiFetcher.ts b/src/generated/apiFetcher.ts index 3dcd9484f..9c489d679 100644 --- a/src/generated/apiFetcher.ts +++ b/src/generated/apiFetcher.ts @@ -193,11 +193,11 @@ async function processDelayedJob<TData>(signal: AbortSignal | undefined, delayed jobResult = await loadJob(signal, delayedJobId) ) { //@ts-ignore - const { total_content, processed_content, proccess_message } = jobResult.data?.attributes; + const { total_content, processed_content, progress_message } = jobResult.data?.attributes; if (total_content != null) { ApiSlice.addTotalContent(total_content); ApiSlice.addProgressContent(processed_content); - ApiSlice.addProgressMessage(proccess_message); + ApiSlice.addProgressMessage(progress_message); } if (signal?.aborted || ApiSlice.apiDataStore.abort_delayed_job) throw new Error("Aborted"); diff --git a/src/generated/apiSchemas.ts b/src/generated/apiSchemas.ts index 0ca65e9b5..c68f2fe35 100644 --- a/src/generated/apiSchemas.ts +++ b/src/generated/apiSchemas.ts @@ -23660,3 +23660,43 @@ export type UserCreateComplete = { export type V2AdminProjectUpdate = { is_test?: boolean; }; + +export type IndicatorPost = { + uuids?: string[]; +}; + +export type Indicators = { + ["2015"]?: number; + ["2016"]?: number; + ["2017"]?: number; + ["2018"]?: number; + ["2019"]?: number; + ["2020"]?: number; + ["2021"]?: number; + ["2022"]?: number; + ["2023"]?: number; + ["2024"]?: number; + id?: number; + poly_name?: string; + status?: string; + /** + * @format date + */ + plantstart?: string; + site_name?: string; + size?: void; + /** + * @format date + */ + created_at?: string; + indicator_slug?: string; + year_of_analysis?: number; + value?: Record<string, any>; +}; + +export type IndicatorPolygonsStatus = { + draft?: number; + submitted?: number; + approved?: number; + ["needs-more-information"]?: number; +}; diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index d1ab92b7e..c0d979182 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -35,6 +35,9 @@ if (typeof window !== "undefined") { (window as any).terramatch = { environment }; } +import FloatNotificationProvider from "@/context/floatNotification.provider"; +import { MonitoredDataProvider } from "@/context/monitoredData.provider"; + import DashboardAnalyticsWrapper from "./dashboard/DashboardAnalyticsWrapper"; const CookieBanner = dynamic(() => import("@/components/extensive/CookieBanner/CookieBanner"), { @@ -92,12 +95,16 @@ const _App = ({ Component, ...rest }: AppProps) => { <ReduxProvider store={store}> <WrappedQueryClientProvider> <LoadingProvider> - <NotificationProvider> - <ModalProvider> - <ModalRoot /> - <Component {...pageProps} /> - </ModalProvider> - </NotificationProvider> + <FloatNotificationProvider> + <NotificationProvider> + <MonitoredDataProvider> + <ModalProvider> + <ModalRoot /> + <Component {...pageProps} /> + </ModalProvider> + </MonitoredDataProvider> + </NotificationProvider> + </FloatNotificationProvider> </LoadingProvider> </WrappedQueryClientProvider> </ReduxProvider> diff --git a/src/pages/dashboard/components/SecDashboard.tsx b/src/pages/dashboard/components/SecDashboard.tsx index ded2cb9f9..b62a676b4 100644 --- a/src/pages/dashboard/components/SecDashboard.tsx +++ b/src/pages/dashboard/components/SecDashboard.tsx @@ -55,7 +55,8 @@ const SecDashboard = ({ dataForChart, chartType, isUserAllowed = true, - isLoading = false + isLoading = false, + showTreesRestoredGraph = true }: { title: string; type?: "legend" | "toggle"; @@ -73,6 +74,7 @@ const SecDashboard = ({ chartType?: string; isUserAllowed?: boolean; isLoading?: boolean; + showTreesRestoredGraph?: boolean; }) => { const router = useRouter(); const [toggleValue, setToggleValue] = useState(0); @@ -161,7 +163,7 @@ const SecDashboard = ({ {data?.value !== undefined && ( <ValueNumberDashboard value={data.value} unit={data.unit} totalValue={data.totalValue} /> )} - <When condition={data?.totalValue}> + <When condition={data?.totalValue && showTreesRestoredGraph}> <div className="relative h-9 w-[315px]"> <div className="absolute inset-0 z-0 h-full w-full"> <HorizontalStackedBarChart data={restorationGoalResume} className="h-full w-full" /> diff --git a/src/store/apiSlice.ts b/src/store/apiSlice.ts index b4a7eb2b4..605d1cbf8 100644 --- a/src/store/apiSlice.ts +++ b/src/store/apiSlice.ts @@ -85,7 +85,7 @@ export type ApiDataStore = ApiResources & { }; total_content: number; processed_content: number; - proccess_message: string; + progress_message: string; abort_delayed_job: boolean; }; @@ -103,7 +103,7 @@ export const INITIAL_STATE = { }, total_content: 0, processed_content: 0, - proccess_message: "", + progress_message: "", abort_delayed_job: false } as ApiDataStore; @@ -208,8 +208,8 @@ export const apiSlice = createSlice({ state.abort_delayed_job = action.payload; }, - setProccessMessage: (state, action: PayloadAction<string>) => { - state.proccess_message = action.payload; + setProgressMessage: (state, action: PayloadAction<string>) => { + state.progress_message = action.payload; } }, @@ -240,7 +240,7 @@ export const apiSlice = createSlice({ state.total_content = payloadState.total_content ?? state.total_content; state.processed_content = payloadState.processed_content ?? state.processed_content; - state.proccess_message = payloadState.proccess_message ?? state.proccess_message; + state.progress_message = payloadState.progress_message ?? state.progress_message; state.abort_delayed_job = payloadState.abort_delayed_job ?? state.abort_delayed_job; }); } @@ -301,8 +301,8 @@ export default class ApiSlice { this.redux.dispatch(apiSlice.actions.setProgressContent(processed_content)); } - static addProgressMessage(proccess_message: string) { - this.redux.dispatch(apiSlice.actions.setProccessMessage(proccess_message)); + static addProgressMessage(progress_message: string) { + this.redux.dispatch(apiSlice.actions.setProgressMessage(progress_message)); } static abortDelayedJob(abort_delayed_job: boolean) { diff --git a/src/types/common.ts b/src/types/common.ts index 90d155be4..c68464509 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -2,7 +2,16 @@ import { ReactNode } from "react"; -export type Colors = "white" | "black" | "neutral" | "secondary" | "tertiary" | "primary" | "success" | "error"; +export type Colors = + | "white" + | "black" + | "neutral" + | "secondary" + | "tertiary" + | "primary" + | "success" + | "error" + | "success-600"; export type ColorCodes = "none" | 50 | 100 | 150 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; export type TextSizes = "xs" | "sm" | "base" | "md" | "m" | "lg"; export type TextWeights = "regular" | "bold"; diff --git a/src/utils/dashboardUtils.ts b/src/utils/dashboardUtils.ts index dca701d44..645e3830f 100644 --- a/src/utils/dashboardUtils.ts +++ b/src/utils/dashboardUtils.ts @@ -1,4 +1,4 @@ -import { CHART_TYPES, MONTHS } from "@/constants/dashboardConsts"; +import { CHART_TYPES, DEFAULT_POLYGONS_DATA, MONTHS } from "@/constants/dashboardConsts"; import { DashboardTreeRestorationGoalResponse } from "@/generated/apiSchemas"; type DataPoint = { @@ -123,6 +123,33 @@ interface ChartCategory { values: ChartDataPoint[]; } +interface PolygonIndicator { + id?: number; + poly_name?: string; + status?: string; + data?: Record<string, number>; + value?: Record<string, any>; + [key: string]: any; +} + +export interface ParsedPolygonsData { + graphicTargetLandUseTypes: ParsedLandUseType[]; + totalSection: { + totalHectaresRestored: number; + }; +} + +interface ParsedResult { + chartData: ChartDataItem[]; + total: number; +} + +type YearlyData = { + name: number; + treeCoverLoss: number; + treeCoverLossFires: number; +}; + export const formatNumberUS = (value: number) => value ? (value >= 1000000 ? `${(value / 1000000).toFixed(2)}M` : value.toLocaleString("en-US")) : ""; @@ -416,3 +443,146 @@ export const isEmptyChartData = (chartType: string, data: any): boolean => { return false; } }; + +const formatLabel = (key: string): string => { + return key + .split("_") + .map(word => word.charAt(0).toUpperCase() + word.slice(1)) + .join(" "); +}; + +export const parsePolygonsIndicatorDataForLandUse = ( + polygonsIndicator: PolygonIndicator[], + totalHectares: number +): ParsedPolygonsData => { + if (!polygonsIndicator?.length) { + return DEFAULT_POLYGONS_DATA; + } + + const { aggregatedData } = polygonsIndicator.reduce( + (acc, polygon) => { + if (!polygon.data) return acc; + + Object.entries(polygon.data).forEach(([key, value]) => { + const label = formatLabel(key); + const numericValue = Number(value); + acc.aggregatedData[label] = (acc.aggregatedData[label] || 0) + numericValue; + }); + + return acc; + }, + { + aggregatedData: {} as Record<string, number> + } + ); + + const graphicTargetLandUseTypes = Object.entries(aggregatedData).map(([label, value]) => { + const percentage = calculatePercentage(value as number, totalHectares); + return { + label, + value: value as number, + valueText: `${Math.round(value as number)} ha ${percentage.toFixed(2)}%` + }; + }); + + return { + graphicTargetLandUseTypes, + totalSection: { + totalHectaresRestored: totalHectares + } + }; +}; + +export const parsePolygonsIndicatorDataForStrategies = (polygonsIndicator: PolygonIndicator[]): ParsedDataItem[] => { + const totals = { + "Tree Planting": 0, + "Direct Seeding": 0, + "Assisted Natural Regeneration": 0, + "Multiple Strategies": 0 + }; + + polygonsIndicator.forEach(polygon => { + const strategies = polygon.data ? Object.keys(polygon.data) : []; + + if (strategies.length === 1) { + const strategy = strategies[0]; + switch (strategy) { + case "tree_planting": + totals["Tree Planting"] += polygon.data?.[strategy] || 0; + break; + case "direct_seeding": + totals["Direct Seeding"] += polygon.data?.[strategy] || 0; + break; + case "assisted_natural_regeneration": + totals["Assisted Natural Regeneration"] += polygon.data?.[strategy] || 0; + break; + } + } else if (strategies.length > 1) { + const totalValue = polygon.data ? Object.values(polygon.data).reduce((sum, value) => sum + (value || 0), 0) : 0; + totals["Multiple Strategies"] += totalValue; + } + }); + + return Object.entries(totals) + .filter(([_, value]) => value > 0) + .map(([label, value]) => ({ + label, + value: Number(value.toFixed(2)) + })); +}; + +export const parsePolygonsIndicatorDataForEcoRegion = (polygons: PolygonIndicator[]): ParsedResult => { + const result: ParsedResult = { + chartData: [], + total: 0 + }; + + const ecoRegionMap = new Map<string, number>(); + + polygons.forEach(polygon => { + polygon.data && + Object.entries(polygon.data).forEach(([name, value]) => { + ecoRegionMap.set(name, (ecoRegionMap.get(name) || 0) + value); + }); + }); + + result.chartData = Array.from(ecoRegionMap, ([name, value]) => ({ + name: formatLabel(name), + value: Number(value.toFixed(3)) + })); + + result.total = Number(result.chartData.reduce((sum, item) => sum + Number(item.value), 0).toFixed(3)); + + return result; +}; + +export function parseTreeCoverData( + treeCoverLossData: PolygonIndicator[], + treeCoverLossFiresData: PolygonIndicator[] +): YearlyData[] { + const years = Array.from( + new Set( + treeCoverLossData + .flatMap(entry => (entry.data ? Object.keys(entry.data) : [])) + .concat(treeCoverLossFiresData.flatMap(entry => (entry.data ? Object.keys(entry.data) : []))) + ) + ).sort(); + + return years.map(year => { + const yearNumber = parseInt(year, 10); + + const treeCoverLossSum = treeCoverLossData.reduce((sum, entry) => { + return sum + (entry.data?.[year] || 0); + }, 0); + + const treeCoverLossFiresSum = treeCoverLossFiresData.reduce((sum, entry) => { + return sum + (entry.data?.[year] || 0); + }, 0); + + return { + name: yearNumber, + treeCoverLoss: treeCoverLossSum, + treeCoverLossFires: treeCoverLossFiresSum + }; + }); +} diff --git a/tailwind.config.js b/tailwind.config.js index 197389d0d..665a4e100 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -94,7 +94,8 @@ module.exports = { 400: "#9EDD8F", 300: "#C7ECC4", 200: "#E0F3E9", - 100: "#EFF9F4" + 100: "#EFF9F4", + 40: "#a9e7d6" }, neutral: { DEFAULT: "#9B9B9B", @@ -219,6 +220,7 @@ module.exports = { DEFAULT: "#FF6464", 100: "#CBC8D2", 200: "#E42222", + 300: "#D33838", 900: "#8D2D0E", 1000: "#632424" } diff --git a/yarn.lock b/yarn.lock index a9895a337..46a26cb32 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11704,15 +11704,10 @@ nano-time@1.0.0: dependencies: big-integer "^1.6.16" -nanoid@^3.3.1: - version "3.3.6" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== - -nanoid@^3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== +nanoid@^3.3.1, nanoid@^3.3.4: + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== natural-compare-lite@^1.4.0: version "1.4.0" @@ -16353,4 +16348,4 @@ zen-observable@0.8.15: zwitch@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7" - integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== \ No newline at end of file + integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==