From 35c5f19abb6f631af57a40d0d597d4976b358f64 Mon Sep 17 00:00:00 2001 From: Majid Rezaei Date: Tue, 6 Feb 2024 14:25:26 -0500 Subject: [PATCH] fixing isolated graph issues --- DistrictHeatingNetworkAnalysis.py | 0 DistrictHeatingNetworkCreator.py | 143 +- ...strictHeatingNetworkCreator.cpython-39.pyc | Bin 8708 -> 7935 bytes input_files/output_buildings.geojson | 1172 ++++++++--- main.py | 11 +- majid.py | 206 ++ out_files/Westmount.idf | 482 ++--- out_files/Westmount_out.bnd | 2 +- out_files/Westmount_out.eio | 2 +- out_files/Westmount_out.end | 2 +- out_files/Westmount_out.err | 6 +- out_files/Westmount_out.eso | 2 +- out_files/Westmount_out.expidf | 482 ++--- out_files/Westmount_out.mtr | 2 +- out_files/Westmount_out.rvaudit | 8 +- out_files/Westmount_out.shd | 1762 ++++++++--------- out_files/Westmount_tbl.csv | 336 ++-- out_files/Westmount_tbl.htm | 550 ++--- requirements.txt | 32 +- test.py | 28 + 20 files changed, 3063 insertions(+), 2165 deletions(-) create mode 100644 DistrictHeatingNetworkAnalysis.py create mode 100644 majid.py create mode 100644 test.py diff --git a/DistrictHeatingNetworkAnalysis.py b/DistrictHeatingNetworkAnalysis.py new file mode 100644 index 00000000..e69de29b diff --git a/DistrictHeatingNetworkCreator.py b/DistrictHeatingNetworkCreator.py index 2be2f7c9..fc43e781 100644 --- a/DistrictHeatingNetworkCreator.py +++ b/DistrictHeatingNetworkCreator.py @@ -5,16 +5,50 @@ from shapely.geometry import Polygon, Point, LineString, MultiPoint import networkx as nx +def plot_network_graph(network_graph): + """ + Plot the network graph using matplotlib and networkx. + + :param network_graph: The NetworkX graph to be plotted. + """ + plt.figure(figsize=(12, 12)) + pos = {node: (node[0], node[1]) for node in network_graph.nodes()} + + # Draw nodes + nx.draw_networkx_nodes(network_graph, pos, node_color='blue', node_size=50) + + # Draw edges + nx.draw_networkx_edges(network_graph, pos, edge_color='gray') + + # Create a dictionary for node labels for centroids only + node_labels = {node: data['name'] for node, data in network_graph.nodes(data=True) if + data.get('type') == 'centroid'} + + # Adjust node label positions to reduce overlap + label_pos = {node: (coords[0], coords[1] + 0.03) for node, coords in pos.items()} # Shift labels up + + # Draw node labels for centroids + nx.draw_networkx_labels(network_graph, label_pos, labels=node_labels, font_size=8, verticalalignment='bottom') + + plt.title('District Heating Network Graph') + plt.axis('off') + plt.show() + + class DistrictHeatingNetworkCreator: - def __init__(self, buildings_file, roads_file): + def __init__(self, buildings_file, roads_file, central_plant_longitude, central_plant_latitude): """ - Initialize the class with paths to the buildings and roads data files. + Initialize the class with paths to the buildings and roads data files, and central plant coordinates. :param buildings_file: Path to the GeoJSON file containing building data. :param roads_file: Path to the Shapefile containing road data. + :param central_plant_longitude: Longitude of the central plant. + :param central_plant_latitude: Latitude of the central plant. """ self.buildings_file = buildings_file self.roads_file = roads_file + self.central_plant_longitude = central_plant_longitude + self.central_plant_latitude = central_plant_latitude def run(self): """ @@ -29,8 +63,11 @@ class DistrictHeatingNetworkCreator: def _load_and_process_data(self): """ - Load and process the building and road data. + Load and process the building and road data, and add central plant node. """ + # Load road data + self.gdf_road = gpd.read_file(self.roads_file) + # Load building data with open(self.buildings_file, 'r') as file: city = json.load(file) @@ -38,30 +75,30 @@ class DistrictHeatingNetworkCreator: # Extract centroids and building IDs from building data centroids = [] building_ids = [] # List to store building IDs - buildings = city['features'] - for building in buildings: + for building in city['features']: coordinates = building['geometry']['coordinates'][0] building_polygon = Polygon(coordinates) centroid = building_polygon.centroid centroids.append(centroid) - building_ids.append(building['id']) # Extract building ID + building_ids.append(building['id']) + + centroids.append(Point(self.central_plant_longitude, self.central_plant_latitude)) + building_ids.append(1) # Convert centroids to a GeoDataFrame and include building IDs self.centroids_gdf = gpd.GeoDataFrame({ 'geometry': [Point(centroid.x, centroid.y) for centroid in centroids], - 'building_id': building_ids # Add building IDs as a column + 'building_id': building_ids, + 'type': ['centroid' for _ in centroids] # Add type for centroids }, crs='EPSG:4326') - # Load road data - self.gdf_road = gpd.read_file(self.roads_file) - - # Ensure centroids are in the same CRS as roads - self.centroids_gdf = self.centroids_gdf.to_crs(self.gdf_road.crs) - def _find_nearest_roads(self): """ Find the nearest road for each building centroid. """ + # Ensure centroids are in the same CRS as roads + self.centroids_gdf = self.centroids_gdf.to_crs(self.gdf_road.crs) + # Process road geometries self.gdf_clean = gpd.GeoDataFrame( {'geometry': [LineString([coord for coord in line.coords]) for line in self.gdf_road.geometry]}) @@ -88,9 +125,17 @@ class DistrictHeatingNetworkCreator: self.gdf_pts3 = gpd.GeoDataFrame({'geometry': self.nearest_points + list(self.gdf_pts.geometry)}) # Identify intersections and create LineStrings based on intersections - self.gdf_clean["intersect"] = [ - [y for y in range(len(self.gdf_pts2)) if self.gdf_pts2.geometry[y].distance(geom) <= 1.0] for geom in - self.gdf_clean.geometry] + intersects = [] + for geom in self.gdf_clean.geometry: + intersecting_points = [] + if geom is not None: + for y in range(len(self.gdf_pts2)): + point_geom = self.gdf_pts2.geometry[y] + if point_geom is not None and point_geom.distance(geom) <= 1.0: + intersecting_points.append(y) + intersects.append(intersecting_points) + + self.gdf_clean["intersect"] = intersects self.gdf_cleaner = self.gdf_clean[self.gdf_clean["intersect"].apply(len).gt(0)].reset_index(drop=True) self.test_list = [] @@ -127,83 +172,35 @@ class DistrictHeatingNetworkCreator: Create a NetworkX graph from the processed geospatial data. :return: A NetworkX graph representing the district heating network. """ - G = nx.Graph() + g = nx.Graph() # Convert centroids to EPSG:4326 for Google Maps compatibility for idx, row in self.centroids_gdf.iterrows(): - building_name = f"Building_{idx + 1}" - G.add_node((row.geometry.x, row.geometry.y), + building_name = f"Building_{idx}" + g.add_node((row.geometry.x, row.geometry.y), type='centroid', name=building_name, - building_id=row['building_id']) # Add building ID as an attribute + building_id=str(row.get('building_id'))) for point in self.nearest_points: - G.add_node((point.x, point.y), type='nearest_point') + g.add_node((point.x, point.y), type='nearest_point') # Add edges with lengths as weights for the road network for line in self.gdf_cleanest.geometry: length = line.length if isinstance(line.boundary, MultiPoint): - # Handle MultiPoint boundary points = list(line.boundary.geoms) for i in range(len(points) - 1): start_point = points[i] end_point = points[i + 1] - G.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) + g.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) else: - # Handle typical case with two endpoints start_point, end_point = line.boundary - G.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) + g.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) # Add edges connecting nearest points to their centroids for point, centroid in zip(self.nearest_points, self.centroids_gdf.geometry): distance = point.distance(centroid) - G.add_edge((point.x, point.y), (centroid.x, centroid.y), weight=distance) - - return G - - def plot_network_graph(self, network_graph): - """ - Plot the network graph using matplotlib and networkx. - - :param network_graph: The NetworkX graph to be plotted. - """ - plt.figure(figsize=(12, 12)) - pos = {node: (node[0], node[1]) for node in network_graph.nodes()} - - # Draw nodes and edges - nx.draw_networkx_nodes(network_graph, pos, node_color='blue', node_size=50) - nx.draw_networkx_edges(network_graph, pos, edge_color='gray') - - # Create a dictionary for node labels for centroids only - node_labels = {node: data['name'] for node, data in network_graph.nodes(data=True) if - data.get('type') == 'centroid'} - - # Adjust node label positions to reduce overlap - label_pos = {node: (coords[0], coords[1] + 0.03) for node, coords in pos.items()} # Shift labels up - - # Draw node labels for centroids - nx.draw_networkx_labels(network_graph, label_pos, labels=node_labels, font_size=8, verticalalignment='bottom') - - plt.title('District Heating Network Graph') - plt.axis('off') - plt.show() - - def graph_enrich(self, network_graph, city): - """ - Enrich the nodes in the network graph with attributes from corresponding buildings in the city. - - :param network_graph: NetworkX graph object representing the network. - :param city: Hub's City object. - """ - for building in city.buildings: - for node, attrs in network_graph.nodes(data=True): - if attrs.get('type') == 'centroid' and attrs.get('building_id') == building.name: - network_graph.nodes[node]['building_cooling_peak_load'] = building.cooling_peak_load - network_graph.nodes[node]['building_cooling_demand'] = building.cooling_demand - network_graph.nodes[node]['building_domestic_hot_water_demand'] = ( - building.domestic_hot_water_heat_demand) - network_graph.nodes[node]['building_heating_demand'] = building.heating_demand - network_graph.nodes[node]['building_heating_peak_load'] = building.heating_peak_load - network_graph.nodes[node]['building_external_temperature'] = building.external_temperature + g.add_edge((point.x, point.y), (centroid.x, centroid.y), weight=distance) + return g diff --git a/__pycache__/DistrictHeatingNetworkCreator.cpython-39.pyc b/__pycache__/DistrictHeatingNetworkCreator.cpython-39.pyc index 001a517716a540b399034f9352864a014efcc427..3b849761d44715db802b4e5f12b12148d136fa09 100644 GIT binary patch literal 7935 zcmb_h-ILo`R@aqeS(feYj??KRQ%lynH8qTfrJ2bL?9vr7vm`T_U1pkI64*r~B@|z^ zTaInHuhg4vm&{8K#qL9vp?IN|VR1h|?aW`WPdxBvs3=~jqAJA;RaEgnL51HrlI(V; zN%*o$SJM4F_k8@$xkrAp>1g=YIAvGxmnw#H+tMj`t zG~J4zI(=Xbt8R5@yY{f=)`pJjaJ?AR-G(%z`HAK>?`X0jtxq&*9qaCj6nC{w^(p4o zwmW84-H8TAy=atGcA{{UWX?z7D7c%baMa73j}Hb($n{-81B#!CdllC$T=8cp60I+! zkopsW)p^xao9QRoZS7c0MPl^LR7(X>A*)YJp`oV2HMXohF)+pi<`%erhl5j;+p zO|BI)tC-2axGKgOsV-OKs$6>lE+pE_mKRR2GM;L(RXjN-8s@!-y{=DEr;XpvAWGWF zUeF!|$>T^pYWI{s-fJJk*lK&|Cu6h^!iQ~tB+D*`n+^}%8vDv0mbD%a+-l#$T-*6v z-zz3dqV~g}O*18d+~lzx{b>U%QWlDi$f~ z(cF!OR)halh|RHx z4LmoR?tTjkvMe{r_?VmL~5`|m5mX-pI!UIfBMePe)29;utb>EjUdnX zJkq{|k!l6SQ<@{Q9zqABVaLd>5+N^>h03(PCc%@COex;bc`nvqF5XSTb0{y3mTPESRh&!48)gU5UD2GOV&CI=D}epEiTqurcS1P|qI zpCjkYJb=k!n&RmtvyjVODK{MRwlZh2#q9E#`Ag!mjWZ3!a-9mSBpB=}fyG6!Gn>oD6j^`eoF| z94A(6k^d)Od9jc%YDqpMeG)RG$KT@t@e%N&ub&W#7zvQ0Uyqgk_RDo)@- zzYD))YNmE<2yL|XmKJZl2^rG=cX9Q!se#Lc2Q#iBzI(7Wt)vxc!kblaSy#2GmDs6; zxUZU4`?aZ^8Z#%gDJn}%JOLiB!b1yf{~om@bx_g3)jS4Wc^}EW5mT<@5Skhk52hx7 z6o8t)$;M{};=`3EgoUe8hi0u#+_^4%L^wc!Tp^PssGB1lBSj8zzLf34!U~upjag_z zCe*fT??U(B_u|a%1rZci9cA@XaL6t^(?iK_d`TE&DD$x86}3UFpW6cw z#i7?49(WJ-6y7kW{Bxn^Bo;Jh!aGB;`c;g)kBdpgKHtG}RxdHp1NT~}nbh9jxqD~p zowu+53PosL6?fJUsEwst0|H1!PR2XPLhiB+W@a=FMvR1+*^hCiG0A=v@tz6GEPsq1 zl3BaJ$*cj-bQ^~K0fPJ>YqB07K8!ug+^MmlW+u5B*X$yKc5CwXFo*+I)tv#y~%D~RWtbwcf17HE64%%vHV+`28Evv9+ zdva@T&mRD93z%liZL_1_jZ{1EyL*cWq7=-+a9O>U_Pu0^ZS0%X_zIaKovyJ{7$oiU zSmbKm(VrWCt{J37|AoSrMo?jpSk&hS3NnN}T)EBeyhNbSyPWe37Ih^YU~xLBsLLoy zLd*e9_b;a7{r?v_mN-V|RN@$c13NW}6iD(E4{XD{Z3&|NQ8xgBd>x(C78M-6kcnjW zje$RWDE*rws%MD1^?xEWpN)X!QE;@~SyAs}V%JI{IO|xwORM}E6*sB4O$DP=ji9DG z2>g+Iu{(%j^8Un8Iy57M&Q{8hU`)A`I5URfNZrEltj<9JU;tsWTZLDmBRIg1f&jNs z&P7^Hr=2{m;7M{WFh3YAehC9STrr(IwMq-9u>Q<4DT-@|D~uVFxBkbxSrQi=bcy#2 z3_pdrP~flx1MH9s7%=lz7;vSiu@*H6(lvdvZybxuTG0x?U?|Z0nB{>x)hVPvIAIO5aEkVB~=YdL5>f94chx5xp6J5|cxULxvTA7s3md4ogTV zSvLsS2w?DhRhu;v=S0j_Wc36`@cyc#6coYP8Uxt{^jn*?DB<+r?{H|hrd6h?N@I_O zbS|Sr+utCtv1Rp<{;5zq7;|CPNG_&TI@b5sDa1jY4Z3+;YG1{nzo#EF^o{-?wXw@$ z#zz`v_-sDI(kSU%!MGRBb^RqHON#1?^*QoWA=j9OdQQRjwNG^=dCcY1VyAQIQ+;3Jx<|FV9+H1gbfo$yFV>pep1X{l z{Cv<}ipKNfEFB>N979JqW@q6B9kSWZ=w>Dl%p8;P%s?wP1335B|7{>kz zrRdmffw}~~9B!0poDZqu4i(F%GY*T6sGi~NWf9!DXN~h5!gddH;`h(*y0tkgI8a6U z3W+WijX7F<`V7A%7@$3q1L1IwvJbrHbvnoKo^8svE$tWR&CVuIr6HAvAo;)C>t~pe z_qwzwxe8j8T?NIMKY*)%tU3S54nyB&>XG$?S3ST{omu>Cbp2dpRt~%i*P(s`4L`w^ zv-N|QAmdBfnmZ0fsrebHr=i}MP2PsGT0jny}(#o-r^6eu%7d6*ekD-&T(5BBACM~T}k zw(K#*F0W5*tkeq|`!4O0o#&f)is>STY87^!dds-Rp|y!%y9EcjfvbUJ;A^^t_bUj$ zE%E9zOK+k5jc2xDiPxVwMhou_TJbmXQ5*V8gYt9LYe|pD_z4(DDDiz*1K~6$PvF01 zNTUF3wt$@a6iL5S|8wmxbofYt4=nhk(zm#*?jr4-nmC3V_#gsr2)||0XP5mJEXlzP zufUhm7#dOOQ-6G#Arxg?t@kVF^Jh~lwfYVCzb5W0$?CDL{xMmj=l%s8@9m@ok7r}< z>XqClegl5OPHXVgIPk+SR4+sCf%&4po;p~`p_S4)p6dLBJSlzr+5ckykY>fMoc~7e z!{id}0+-&e9P6O;9gM8NdsJo{X#i4PLRCuLuwLRZd3LCO@8oK7Zs0 z+Wy(}(XNVyeDo-U7fA9MF_NgruAa>`mMN%jo}J~nd=o{y^rhu&f@|T0+}f`fxmhni zH{O6wz>U!9Sglh*73w=wEAm=O_W;$c$3fWJOFEa;mr>zXID^k2uKIndu#xTH3_T-9 z9&wY|Wd>+cm+-_OqI{~e02IAsFLOeCD9fYt%zg;umA*PsQi?tg*UJ6%VL_ zSD|cMW=z5{V+{gr3V1WoQ(fvOsb6z`N~X^-StSp9*-!H6=zG*Npq_OsuaX=n+!_w@ z`D4x<#XWx$ z;w;X~>uq;xlxL-#cwXjs-Y}8}1A15Mjsq)lJqE{m1j!~wB^W70(R}<1I!^S6n`V(RnH?7hqZjqH_4Zm)PlEHgl*W@ F{uA@V;YI)e literal 8708 zcmb_h&5s<%b?>j~>FN34erd^-Bf709iiU7#NmLSH!BC315@kVN(O{&-T*(}Ykv`IVZDgR-`BRPIf4W}&`$|7bqo5ZJ zLoeM5y>>5167NBjZh3OS#iYo2Igou(v78*fHs#_<<%#8h>_oZS@|gY{ybWfxp|2J_=iZR}kyt3SvaJtaKL5qyrM6Bl z?Pr_(_rm;D|X>O=JWd^MkhPc1?o(AEzF%#r%cO$;u^KzYF`un1%( z>N%fD4l$f{$7iaVh9nNC`b;ZxJ}au!Ys%gJA}R^vQ_0b@|L_avvkPy{aEjh0(PGv7 zDJm&=)P+(W8h`fufu0&;bEH4k4~%aDzbwtt4ozL_&%LH4Uwjq(r2ik`>SzZhE^A~6 zb45ESjY@0UhpPwn$QIU$CQ7($w3kzBR6f)XoRQNl9aKi<*dA3L>yQfzHCvQdG3 zKP`71;fTsZZDg)#hx*78?spABq$2{2N?IPfptJgzfTV_6Wn4#D>o&NhA`Hk=eRyLc z0Uwb15m4lun1PT9f}BuLrOS2YY(lDb!A<3K!Wbec_f@qWlkP#Y!bFnbD?pvm3wiGvhsL*!9qUe}(@j$nN-BL%>HEM1> zcdz%L1MPTwaN`Qo+T0oN@iDBiP+jnlQ zzH#mK-)ZW~Y|Es1L0R!2>@zwktDC?&S)>z^K3#r}X0U?+MhIng213;UvTIP0cLBzs zsu$mu_#LsSDo|a)P|84utrnZCJS{top(Tm@JSJ?qnPyl7uF7fy@>FFqQLA>0;6zo5 zCorz4%4H&Ju6XnZnOS9OPi(TRW9VgE3Cuot+0b7xE!|=@n?q^qu0DsBnr{5UGL4@* zcEcRL@qgjLjNFhA*tqDPj8LRNOtRR*gf3`Zqs#gbK_?;k7D<&~;?hQMnR-85`$S6} zJXu}yV{KCxu<#EZVILX5S*=?dS4g9wb2@ZLA6Fki=SaiRXQR(x4SZdcp+U~@=0tL)T4Q@&y#b+s|O%X=p!7e`ZyQ?5MJN z@uZ-|>cM?GpOkn0Ur3qRG{Py`v_)KOHOMFv^U3tCL#-VF2nhP^@CUlQgh9BG8fS#E z(Q&T#g6$0v-1rK$^Pb)Ol?csdBS^U)?yom%lAHzk8&teP1p`rqz@Xg=gMMqV-HQ`4 zth9sVe!~A#jl$Xv$T?0VDXcQLqrUugs#V$OLe+uRsto)m7YTSvMz&QeCL~KuCO5O& zJX7}JZx9{y^|FED_i!akD72ELFFmy_8%R*oFX5Wghp+vwH)DoFL=j!YrDPpSa$NZz z!DLL8|B>!nSufg41P5rbr!8q2?Erv7{i2rlIv?u{2IfO&Iv3SM>AFVutiGa+E2;Y! zz##0$`U;FH1qMenf4zfoegos`;|q^9K+Qkj1E?Gr>0Ii<^ux>_>Y{QHCHns9z#N&v zzHi9?#v6_Ce7b-!G~*&U188%)X7<(yPQ!}UF%B7+c78N6r}N#{KGo$~F~jUzqH+oE zoj=$4Z%!z3kFUQop6p~J-@PR`AAn%Ywv=(<6RKO|=it6tBkc6J!eCny^@k3?*%FQG zaBJue=cjTXZcwq4aF3?#$9DL@rrGnIy}>(M9s$z3i`dO82IF})-(D?2ua455%LNu{24EPqJ6AEcMLX7PO7EYX}E7NPGq8f zsez&m;h6}Jc&5t-^d{Wv5x71!2z!NgUzb*4wwiheWAXcsw-EiY6EsMZ*LlO`>uAp{ zh+N^ivWPtlWG8m&9{RJLy7LT3`pi3Z+^m_ZB!hk@RAvtzAYo!tXa3d2y7&CGO zyG3$Uh!j)u%S0;1K;EdCHHi{hli5f9#Uq$X_($->C_;h3G}f7Tc@j-tU41f-@%B& zCou-;St_@OAxt#JeHnFCj{1XM&<@v|7mpe1-=$$>tXpL=)(~3xCN+_0AS{4i(JG|* znkpeI=(J`>U6iKvexG85v7=wJ(O z(TXJDnP^`?jS_#!8j9Q_Fc!?qrfb;0sF^Ptw!Q%0fTD$$p4!F&YFC~*rmeq%askgS zdhs_G;6E(u%f>S!h%?o7Mh3`Bp^VW@TuBR(Os0%;EQlV)$hH8F--K~74om?|7RE*G zue855V8md~MrOCvwYe+<@JtvgWF;wrKe7;)FF*$zy#G8*7>%Z}r7n#`>`rE8=NlMN z=~DFn9g679C(2N- zVx@(Vi|s$s<%uUOAkgn{)qV^tac<-{s-;xqJulR2hM8EeM!QQIr9|KQf4vTA0UM8BNms`B(GDu zF3H3af;|YM&Q{udP8t0@Rk}slGWM$_iMw(FfgBg|W|?K8V1Z3iru1KSC*4wR zltle3tUw$Ns1$+Rmt-5|`!udZCM;L#x2b{Wrc9hNhtVLjdW}qr^;`1m^x`*YTzwM7 z(?_UM=CZT@(4s-Cs$?`&70b&M!9EO+svseeRkQsdt9lan2=NbaB?RhP3970$pvVUP z_RpOXl-8_~+i%qLC8%^wf5~+97tKph=a-D(wP&FFSvkKpA$Rek&6#NMckz(2v_L=6f(#mIh;Zp-0aBf1(AaH(_Sd=97~A6yR#lGs=`SL(tF`EEB=BG}kQ`SarH++)$fXb!C{dU}orK)h9z7y`C z4EFKiE~!t}J@f4*Xd>a_Z>RX0zun_V15VUf6XcQVh}bfLGFG&F7fc3*Ok@54FJck1 z6H*k-UV8^kaN>~NJE=-r==ld+e4bF#8&B`TI~$BbGEmsuTxPo&Giwv%|{;U%mVUtdLTV;Zm9L=H_~{s?0$zRW@W1Nn}+b zZYA=YwBVwU!GnVJdyJ>a$woesP$f7&+lgA5eIci^ltw9~Lxa62!HLmU{GeINe3W@w z#T>+msjn{tf2H5*~Ix=5+ZH0Yw|P0 zAYv%& zQd^(l04qNdr8QQ)_jWgaGx2Vs?qw590rjrrpoQaZP6ZNRww|9@UZgdVi0k-+Fu2bL z46Tc&`b4;mbC=eOlMaDHlmxouZvproASoyPe9ZLa{AjP}n66lKOjmqiGI6+vxsbH* zp)7+?@~O=_&J4Z?qUDeZj`j$@)ch&ZRikLis8N^CAe5HRiBgS%mVEqt@jRhTEuBSD z)1GRlyh3FC78Q)4C6ba;YFXoRK_8(ugzYC7oGE14h5Km%Jz6SFZ1G$6~if^_uVR>;}E8N3uy>AQI_FgtMTM0v}0klKd7GM^sD^c481E zX*hvvLSu14={i;C^Ul2UCFd3AbKKi($SKkfS?2khm~r6>Mr1Lnt%jhHQy!0 zq-rjqQ}*8eRq`L{P%b-nA`_Rzg#;|hDZC6uTwd@jI+b%h`}iAV>^V73$ElRpb 1].reset_index(drop=True) + gdf_pts_drop = gdf_pts_cnt[gdf_pts_cnt["count"] <= 1].reset_index(drop=True) + + # Remove unnecessary geometries from gdf_cleanest + for idx, geom in self.gdf_cleanest.iterrows(): + for coord in geom.geometry.coords: + if coord in [pt.coords[0] for pt in gdf_pts_drop.geometry]: + self.gdf_cleanest = self.gdf_cleanest.drop(idx) + + self.gdf_cleanest.reset_index(drop=True, inplace=True) + + def _create_network_graph(self): + """ + Create a NetworkX graph from the processed geospatial data. + :return: A NetworkX graph representing the district heating network. + """ + g = nx.Graph() + + # Convert centroids to EPSG:4326 for Google Maps compatibility + for idx, row in self.centroids_gdf.iterrows(): + building_name = f"Building_{idx}" + g.add_node((row.geometry.x, row.geometry.y), + type='centroid', + name=building_name, + building_id=str(row.get('building_id'))) + + for point in self.nearest_points: + g.add_node((point.x, point.y), type='nearest_point') + + # Add edges with lengths as weights for the road network + for line in self.gdf_cleanest.geometry: + length = line.length + if isinstance(line.boundary, MultiPoint): + points = list(line.boundary.geoms) + for i in range(len(points) - 1): + start_point = points[i] + end_point = points[i + 1] + g.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) + else: + start_point, end_point = line.boundary + g.add_edge((start_point.x, start_point.y), (end_point.x, end_point.y), weight=length) + + # Add edges connecting nearest points to their centroids + for point, centroid in zip(self.nearest_points, self.centroids_gdf.geometry): + distance = point.distance(centroid) + g.add_edge((point.x, point.y), (centroid.x, centroid.y), weight=distance) + + return g diff --git a/out_files/Westmount.idf b/out_files/Westmount.idf index 6a178981..c120f9bc 100644 --- a/out_files/Westmount.idf +++ b/out_files/Westmount.idf @@ -1147,7 +1147,7 @@ ZONE, Yes; !- Part of Total Floor Area BUILDINGSURFACE:DETAILED, - 4a8c5510-4917-4962-b668-ac2b363e1666, !- Name + 9a71c69c-9586-4da7-9e88-896bcc784f3f, !- Name floor, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1171,7 +1171,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2da3fbe9-639b-41e3-839c-4983a668adec, !- Name + e0ea27a2-2a19-4d76-b071-433b46e55c87, !- Name roof, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1195,7 +1195,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a31b7a34-87da-44c3-b425-1123bf5f537e, !- Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1219,7 +1219,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - feaa02b7-346c-4e97-91a6-2307d00aa8e7, !- Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1243,7 +1243,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e853f7a4-3edf-4174-a4cd-ba9830bc3a35, !- Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1267,7 +1267,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f0c194c6-ecc0-4215-b107-1a3503e6a3b9, !- Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1291,7 +1291,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b92ad645-5c44-42ea-934e-034f6b1a1343, !- Name + 722ee535-59f8-459c-86df-fc04ed4b1ecf, !- Name floor, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1321,7 +1321,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - f5f64b85-e5a1-4786-ad52-7b958ab52689, !- Name + b42c17b9-cde9-4aa6-a608-58e472156ea4, !- Name roof, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1351,7 +1351,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 086891c7-387b-4226-955b-62212750f40d, !- Name + 014478ef-53cf-472b-bd40-b30e67b1defe, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1375,7 +1375,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f, !- Name + c895336e-c7a1-4670-a76d-23fb7aa683c2, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1399,7 +1399,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b, !- Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1423,7 +1423,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323, !- Name + 46a023a1-c717-4123-a8f8-4f59fde90906, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1447,7 +1447,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7, !- Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1471,7 +1471,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4b199b3d-4726-4307-a2f7-ec05cca3d88b, !- Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1495,7 +1495,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d752839c-49cd-4eaf-86cd-0fc5e30438f3, !- Name + 2d7767fe-e37d-46e7-a553-9aa51a1144e5, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1537,7 +1537,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 10 Zcoordinate BUILDINGSURFACE:DETAILED, - 279da31d-1cc4-4eb0-ab0a-e14009514d49, !- Name + 9598f6ef-79b4-4cf3-8b76-48ce29edef6a, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1579,7 +1579,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 10 Zcoordinate BUILDINGSURFACE:DETAILED, - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c, !- Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1603,7 +1603,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7ef81ae6-421d-417b-a884-09d139df7392, !- Name + 6f211d24-7240-45a4-9703-6c5ecc418c18, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1627,7 +1627,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 95999f8c-7787-41fb-842e-57924fb8ce6e, !- Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1651,7 +1651,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d1efc40f-397a-4c21-8aff-6ebc399acf58, !- Name + c4243b0e-e920-4574-8939-dd4d085bed74, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1675,7 +1675,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 23262692-375a-4d61-a4dd-a2c5dd21b7b0, !- Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1699,7 +1699,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e65207b0-7c54-4be8-9fd4-90349a283029, !- Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1723,7 +1723,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 35a8ef37-0672-4b38-9ac0-59954b845c8a, !- Name + 354b85ed-25e9-42c0-946e-4c58060a8a00, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1747,7 +1747,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6c4cad38-03a2-4f52-b991-5094fd62d4dd, !- Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1771,7 +1771,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 02d8231c-67a9-4126-b084-58e3ff3b0a8a, !- Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1795,7 +1795,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9f6d9821-892e-442a-9d43-9c44b45fefc3, !- Name + 426595e5-9869-4f33-b127-b84b81832942, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1819,7 +1819,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1c9914ad-fe1b-47d6-b3e7-5047f366831d, !- Name + cb11d0a5-9bb3-4223-be41-fd4c5796c860, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1858,7 +1858,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 7fb3d965-3400-4b51-9d8a-75c65cc20c80, !- Name + addbe425-ab46-4cb4-9ce6-11995381dc32, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1897,7 +1897,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 207070e8-9afa-4626-98c7-e22d5e77d302, !- Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1921,7 +1921,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 904a3a7e-e83f-4043-ba36-468e01bb63fb, !- Name + 450f3db3-8760-4787-bbb3-924821484118, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1945,7 +1945,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70, !- Name + f25915c6-4f50-4b01-a49c-744f4bf29195, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1969,7 +1969,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7, !- Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1993,7 +1993,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5bccd2ac-041c-45d2-86ab-72637853703f, !- Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2017,7 +2017,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d4f29a65-02ee-44f2-a74b-c18d73b71eda, !- Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2041,7 +2041,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fc904495-fe25-4e1b-832f-41a45e117691, !- Name + 818eb98b-acf9-4c03-9723-b9055ec2b832, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2065,7 +2065,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b286e9d1-994f-418f-b830-754cb313793d, !- Name + 35def65b-3d94-4f14-9a79-f0b95d42801d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2089,7 +2089,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e, !- Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2113,7 +2113,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c04b7482-35ba-4365-b350-048d9a1be91f, !- Name + f862a00a-0a07-495e-8db5-3c87dc9624f6, !- Name floor, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2143,7 +2143,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - b6255ffd-5b63-4f18-b3c3-bc35860b8b80, !- Name + 285a742a-279a-402f-ab7f-228236284edc, !- Name roof, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2173,7 +2173,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 8314f1a8-6a53-4847-b682-b4d052085096, !- Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2197,7 +2197,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8f619fc1-a55a-4dcc-b210-248561825e41, !- Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2221,7 +2221,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc, !- Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2245,7 +2245,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 060ded99-1508-4619-9cea-0110f324d0f2, !- Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2269,7 +2269,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4833f7a-0137-432b-9caf-d5b61b75c7e8, !- Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2293,7 +2293,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fbc4e947-e747-41be-98c3-409bd3bf593e, !- Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2317,7 +2317,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7fe829ca-8df3-498c-8d49-7fe733d68cc0, !- Name + 8959b441-1442-4920-8edd-830232168c72, !- Name floor, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2386,7 +2386,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 19 Zcoordinate BUILDINGSURFACE:DETAILED, - 83557790-0867-4da7-bdb0-aa83fa2e5ce0, !- Name + 380da066-26ff-4f1f-a7a1-9cb7f56001cc, !- Name roof, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2455,7 +2455,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 19 Zcoordinate BUILDINGSURFACE:DETAILED, - 8469da8e-4f42-4197-a645-365e7a06294d, !- Name + b5132ead-74ef-4bbe-995e-e5b024dec326, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2479,7 +2479,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 0b13da9e-94d8-45ea-bc8c-8f36085d727f, !- Name + a32a358c-9091-4864-888c-409cd26814ac, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2503,7 +2503,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 066a7a13-b738-4f65-975f-11a83bf5cd2b, !- Name + fe2d1d14-2c13-42e2-856c-43eebba4797f, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2527,7 +2527,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d6d89ee8-5294-4637-a513-543a1c9e1803, !- Name + fb842419-964d-4916-809f-e199ce2b5ee7, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2551,7 +2551,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 685db9ba-8b51-4a67-8f2a-9963a37c5510, !- Name + 5e60549c-50b0-4407-847a-5861932914f1, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2575,7 +2575,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec035472-9daa-4e36-8ff4-92501f8fbb4f, !- Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2599,7 +2599,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c73a0b58-396a-4617-abcf-0454a7647321, !- Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2623,7 +2623,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a3a28ab7-5eda-48c8-9870-bcb88b3ae469, !- Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2647,7 +2647,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec059d37-2d87-4b09-a2f0-f48893c58d74, !- Name + 1df220c8-4594-4350-9194-965640b21272, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2671,7 +2671,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68, !- Name + e3f35249-c2bc-40a8-8619-f5d02b444417, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2695,7 +2695,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1311cd62-6809-4f52-85b8-2815515c84e3, !- Name + 56880703-96a6-4b3b-9f17-1ef482557d81, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2719,7 +2719,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858, !- Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2743,7 +2743,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b92abbd8-9d06-41f7-889c-306c35cf7f95, !- Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2767,7 +2767,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4ba2dc04-f061-484d-990d-99d39ded0bb8, !- Name + d3dfe970-7ddd-4066-9a44-e5c431173b04, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2791,7 +2791,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c, !- Name + 2494ef78-8fd5-40f6-9649-8207e7b72419, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2815,7 +2815,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3744a296-ac57-41fa-a71d-0c3470cb5f14, !- Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2839,7 +2839,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f31e4707-5001-4563-a5a4-df762203e639, !- Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2863,7 +2863,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 31ca4d09-dbcc-4a4d-8a19-832a531b617e, !- Name + 4b74b268-1555-4305-866b-12071073cc37, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2887,7 +2887,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 354373d3-76f3-483d-9842-74f52495c95c, !- Name + bdf88111-ffad-4314-844f-c6a6d18ae56e, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2911,7 +2911,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 691020f9-5fb5-42fd-8fbf-f29e269cde7e, !- Name + 1fa1f75a-e592-40ce-abac-c52374614494, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -2950,7 +2950,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 831bfde3-7462-4ebf-8d36-440d2201b769, !- Name + b482efb1-b0d1-492d-a5ee-cd0cc081f215, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -2989,7 +2989,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 234e6101-b193-4537-8c3c-89fe6c1c5b4b, !- Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3013,7 +3013,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 69777c37-5c29-4e64-bdc8-2187f5601dfe, !- Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3037,7 +3037,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5bdf1462-af7c-4f06-87d5-93687c433ddd, !- Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3061,7 +3061,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f44d8577-64e0-4369-8209-cd922ece416d, !- Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3085,7 +3085,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 0ea016b3-f825-45b6-9898-e4594818013c, !- Name + 0ca6079f-2460-4171-b8e4-a118f26ea721, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3109,7 +3109,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b, !- Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3133,7 +3133,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 36010500-deef-411a-bdad-f9d9081d9d3b, !- Name + c62daad5-af76-47a2-9ccc-d8b9953782d2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3157,7 +3157,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a649c3e6-4c83-4d7d-8085-ca69227ce408, !- Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3181,7 +3181,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ba59dbe4-1f28-43b0-9666-e348b0352d6a, !- Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3205,7 +3205,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5ebdc6c5-52b7-40aa-92ba-5c06e98bf9a5, !- Name + f331a652-4c5a-45d8-8c2e-d344315dbcd9, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3253,7 +3253,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 12 Zcoordinate BUILDINGSURFACE:DETAILED, - 73643d9d-a887-4698-a613-01f5dc70360b, !- Name + e7536f9f-5c12-465c-9bde-b440c58085b2, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3301,7 +3301,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 12 Zcoordinate BUILDINGSURFACE:DETAILED, - 47a5e611-5db5-4345-b925-f0aba9a7f655, !- Name + 0d1675b6-30be-4315-95f6-432607ef6038, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3325,7 +3325,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d88e8f71-d9df-45f7-af8e-5c71e4abd7af, !- Name + 44cf0901-3097-4000-8843-4f2a7bdc1148, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3349,7 +3349,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e2e667ec-7877-4c1f-a326-da1acee6236b, !- Name + 05d3478f-f729-444f-8d57-638778be8fa6, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3373,7 +3373,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 327fa205-ee88-42c3-98b8-c9f40570608f, !- Name + cebf8668-ae77-42f8-83fa-a52cce144cc3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3397,7 +3397,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4909bd4b-64b0-455f-9f41-7b847d8efd0e, !- Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3421,7 +3421,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7294d66e-272d-45b0-b3d5-498cb6d9005d, !- Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3445,7 +3445,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ab27e866-0c52-46fa-882b-8a7c2f18bca9, !- Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3469,7 +3469,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1378d302-9f65-44a3-96b6-26f66bbd6abb, !- Name + 42b7433d-b004-4bab-9abe-ea1b57133101, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3493,7 +3493,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - be80ff74-da6b-47ea-912d-95830f2f5afc, !- Name + 779afbd5-0e07-4533-9528-8573168e8f7d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3517,7 +3517,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a102be68-0a63-4582-8246-03d675a04440, !- Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3541,7 +3541,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 59df3602-265e-4da0-851c-21f9955d55d1, !- Name + 050515b0-f2a7-47e2-a583-af29a662b779, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3565,7 +3565,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - aaf52cef-f41f-4e17-a34b-327eabec2c17, !- Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3589,10 +3589,10 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a31b7a34-87da-44c3-b425-1123bf5f537e window, !- Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a31b7a34-87da-44c3-b425-1123bf5f537e, !- Building Surface Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3612,10 +3612,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - feaa02b7-346c-4e97-91a6-2307d00aa8e7 window, !- Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - feaa02b7-346c-4e97-91a6-2307d00aa8e7, !- Building Surface Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3635,10 +3635,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e853f7a4-3edf-4174-a4cd-ba9830bc3a35 window, !- Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e853f7a4-3edf-4174-a4cd-ba9830bc3a35, !- Building Surface Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3658,10 +3658,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f0c194c6-ecc0-4215-b107-1a3503e6a3b9 window, !- Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f0c194c6-ecc0-4215-b107-1a3503e6a3b9, !- Building Surface Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3681,10 +3681,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 086891c7-387b-4226-955b-62212750f40d window, !- Name + 014478ef-53cf-472b-bd40-b30e67b1defe window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 086891c7-387b-4226-955b-62212750f40d, !- Building Surface Name + 014478ef-53cf-472b-bd40-b30e67b1defe, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3704,10 +3704,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f window, !- Name + c895336e-c7a1-4670-a76d-23fb7aa683c2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f, !- Building Surface Name + c895336e-c7a1-4670-a76d-23fb7aa683c2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3727,10 +3727,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b window, !- Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b, !- Building Surface Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3750,10 +3750,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323 window, !- Name + 46a023a1-c717-4123-a8f8-4f59fde90906 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323, !- Building Surface Name + 46a023a1-c717-4123-a8f8-4f59fde90906, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3773,10 +3773,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7 window, !- Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7, !- Building Surface Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3796,10 +3796,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4b199b3d-4726-4307-a2f7-ec05cca3d88b window, !- Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4b199b3d-4726-4307-a2f7-ec05cca3d88b, !- Building Surface Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3819,10 +3819,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c window, !- Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c, !- Building Surface Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3842,10 +3842,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7ef81ae6-421d-417b-a884-09d139df7392 window, !- Name + 6f211d24-7240-45a4-9703-6c5ecc418c18 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7ef81ae6-421d-417b-a884-09d139df7392, !- Building Surface Name + 6f211d24-7240-45a4-9703-6c5ecc418c18, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3865,10 +3865,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 95999f8c-7787-41fb-842e-57924fb8ce6e window, !- Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 95999f8c-7787-41fb-842e-57924fb8ce6e, !- Building Surface Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3888,10 +3888,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d1efc40f-397a-4c21-8aff-6ebc399acf58 window, !- Name + c4243b0e-e920-4574-8939-dd4d085bed74 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d1efc40f-397a-4c21-8aff-6ebc399acf58, !- Building Surface Name + c4243b0e-e920-4574-8939-dd4d085bed74, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3911,10 +3911,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 23262692-375a-4d61-a4dd-a2c5dd21b7b0 window, !- Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 23262692-375a-4d61-a4dd-a2c5dd21b7b0, !- Building Surface Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3934,10 +3934,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e65207b0-7c54-4be8-9fd4-90349a283029 window, !- Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e65207b0-7c54-4be8-9fd4-90349a283029, !- Building Surface Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3957,10 +3957,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 35a8ef37-0672-4b38-9ac0-59954b845c8a window, !- Name + 354b85ed-25e9-42c0-946e-4c58060a8a00 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 35a8ef37-0672-4b38-9ac0-59954b845c8a, !- Building Surface Name + 354b85ed-25e9-42c0-946e-4c58060a8a00, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3980,10 +3980,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6c4cad38-03a2-4f52-b991-5094fd62d4dd window, !- Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6c4cad38-03a2-4f52-b991-5094fd62d4dd, !- Building Surface Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4003,10 +4003,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 02d8231c-67a9-4126-b084-58e3ff3b0a8a window, !- Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 02d8231c-67a9-4126-b084-58e3ff3b0a8a, !- Building Surface Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4026,10 +4026,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9f6d9821-892e-442a-9d43-9c44b45fefc3 window, !- Name + 426595e5-9869-4f33-b127-b84b81832942 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9f6d9821-892e-442a-9d43-9c44b45fefc3, !- Building Surface Name + 426595e5-9869-4f33-b127-b84b81832942, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4049,10 +4049,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 207070e8-9afa-4626-98c7-e22d5e77d302 window, !- Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 207070e8-9afa-4626-98c7-e22d5e77d302, !- Building Surface Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4072,10 +4072,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 904a3a7e-e83f-4043-ba36-468e01bb63fb window, !- Name + 450f3db3-8760-4787-bbb3-924821484118 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 904a3a7e-e83f-4043-ba36-468e01bb63fb, !- Building Surface Name + 450f3db3-8760-4787-bbb3-924821484118, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4095,10 +4095,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70 window, !- Name + f25915c6-4f50-4b01-a49c-744f4bf29195 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70, !- Building Surface Name + f25915c6-4f50-4b01-a49c-744f4bf29195, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4118,10 +4118,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7 window, !- Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7, !- Building Surface Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4141,10 +4141,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5bccd2ac-041c-45d2-86ab-72637853703f window, !- Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5bccd2ac-041c-45d2-86ab-72637853703f, !- Building Surface Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4164,10 +4164,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d4f29a65-02ee-44f2-a74b-c18d73b71eda window, !- Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d4f29a65-02ee-44f2-a74b-c18d73b71eda, !- Building Surface Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4187,10 +4187,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fc904495-fe25-4e1b-832f-41a45e117691 window, !- Name + 818eb98b-acf9-4c03-9723-b9055ec2b832 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fc904495-fe25-4e1b-832f-41a45e117691, !- Building Surface Name + 818eb98b-acf9-4c03-9723-b9055ec2b832, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4210,10 +4210,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b286e9d1-994f-418f-b830-754cb313793d window, !- Name + 35def65b-3d94-4f14-9a79-f0b95d42801d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b286e9d1-994f-418f-b830-754cb313793d, !- Building Surface Name + 35def65b-3d94-4f14-9a79-f0b95d42801d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4233,10 +4233,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e window, !- Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e, !- Building Surface Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4256,10 +4256,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8314f1a8-6a53-4847-b682-b4d052085096 window, !- Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8314f1a8-6a53-4847-b682-b4d052085096, !- Building Surface Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4279,10 +4279,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8f619fc1-a55a-4dcc-b210-248561825e41 window, !- Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8f619fc1-a55a-4dcc-b210-248561825e41, !- Building Surface Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4302,10 +4302,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc window, !- Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc, !- Building Surface Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4325,10 +4325,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 060ded99-1508-4619-9cea-0110f324d0f2 window, !- Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 060ded99-1508-4619-9cea-0110f324d0f2, !- Building Surface Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4348,10 +4348,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a4833f7a-0137-432b-9caf-d5b61b75c7e8 window, !- Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a4833f7a-0137-432b-9caf-d5b61b75c7e8, !- Building Surface Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4371,10 +4371,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fbc4e947-e747-41be-98c3-409bd3bf593e window, !- Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fbc4e947-e747-41be-98c3-409bd3bf593e, !- Building Surface Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4394,10 +4394,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8469da8e-4f42-4197-a645-365e7a06294d window, !- Name + b5132ead-74ef-4bbe-995e-e5b024dec326 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8469da8e-4f42-4197-a645-365e7a06294d, !- Building Surface Name + b5132ead-74ef-4bbe-995e-e5b024dec326, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4417,10 +4417,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 0b13da9e-94d8-45ea-bc8c-8f36085d727f window, !- Name + a32a358c-9091-4864-888c-409cd26814ac window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 0b13da9e-94d8-45ea-bc8c-8f36085d727f, !- Building Surface Name + a32a358c-9091-4864-888c-409cd26814ac, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4440,10 +4440,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 066a7a13-b738-4f65-975f-11a83bf5cd2b window, !- Name + fe2d1d14-2c13-42e2-856c-43eebba4797f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 066a7a13-b738-4f65-975f-11a83bf5cd2b, !- Building Surface Name + fe2d1d14-2c13-42e2-856c-43eebba4797f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4463,10 +4463,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d6d89ee8-5294-4637-a513-543a1c9e1803 window, !- Name + fb842419-964d-4916-809f-e199ce2b5ee7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d6d89ee8-5294-4637-a513-543a1c9e1803, !- Building Surface Name + fb842419-964d-4916-809f-e199ce2b5ee7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4486,10 +4486,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 685db9ba-8b51-4a67-8f2a-9963a37c5510 window, !- Name + 5e60549c-50b0-4407-847a-5861932914f1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 685db9ba-8b51-4a67-8f2a-9963a37c5510, !- Building Surface Name + 5e60549c-50b0-4407-847a-5861932914f1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4509,10 +4509,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec035472-9daa-4e36-8ff4-92501f8fbb4f window, !- Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec035472-9daa-4e36-8ff4-92501f8fbb4f, !- Building Surface Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4532,10 +4532,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - c73a0b58-396a-4617-abcf-0454a7647321 window, !- Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - c73a0b58-396a-4617-abcf-0454a7647321, !- Building Surface Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4555,10 +4555,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a3a28ab7-5eda-48c8-9870-bcb88b3ae469 window, !- Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a3a28ab7-5eda-48c8-9870-bcb88b3ae469, !- Building Surface Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4578,10 +4578,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec059d37-2d87-4b09-a2f0-f48893c58d74 window, !- Name + 1df220c8-4594-4350-9194-965640b21272 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec059d37-2d87-4b09-a2f0-f48893c58d74, !- Building Surface Name + 1df220c8-4594-4350-9194-965640b21272, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4601,10 +4601,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68 window, !- Name + e3f35249-c2bc-40a8-8619-f5d02b444417 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68, !- Building Surface Name + e3f35249-c2bc-40a8-8619-f5d02b444417, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4624,10 +4624,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1311cd62-6809-4f52-85b8-2815515c84e3 window, !- Name + 56880703-96a6-4b3b-9f17-1ef482557d81 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1311cd62-6809-4f52-85b8-2815515c84e3, !- Building Surface Name + 56880703-96a6-4b3b-9f17-1ef482557d81, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4647,10 +4647,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858 window, !- Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858, !- Building Surface Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4670,10 +4670,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b92abbd8-9d06-41f7-889c-306c35cf7f95 window, !- Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b92abbd8-9d06-41f7-889c-306c35cf7f95, !- Building Surface Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4693,10 +4693,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4ba2dc04-f061-484d-990d-99d39ded0bb8 window, !- Name + d3dfe970-7ddd-4066-9a44-e5c431173b04 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4ba2dc04-f061-484d-990d-99d39ded0bb8, !- Building Surface Name + d3dfe970-7ddd-4066-9a44-e5c431173b04, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4716,10 +4716,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c window, !- Name + 2494ef78-8fd5-40f6-9649-8207e7b72419 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c, !- Building Surface Name + 2494ef78-8fd5-40f6-9649-8207e7b72419, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4739,10 +4739,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3744a296-ac57-41fa-a71d-0c3470cb5f14 window, !- Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3744a296-ac57-41fa-a71d-0c3470cb5f14, !- Building Surface Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4762,10 +4762,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f31e4707-5001-4563-a5a4-df762203e639 window, !- Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f31e4707-5001-4563-a5a4-df762203e639, !- Building Surface Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4785,10 +4785,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 31ca4d09-dbcc-4a4d-8a19-832a531b617e window, !- Name + 4b74b268-1555-4305-866b-12071073cc37 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 31ca4d09-dbcc-4a4d-8a19-832a531b617e, !- Building Surface Name + 4b74b268-1555-4305-866b-12071073cc37, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4808,10 +4808,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 354373d3-76f3-483d-9842-74f52495c95c window, !- Name + bdf88111-ffad-4314-844f-c6a6d18ae56e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 354373d3-76f3-483d-9842-74f52495c95c, !- Building Surface Name + bdf88111-ffad-4314-844f-c6a6d18ae56e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4831,10 +4831,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 234e6101-b193-4537-8c3c-89fe6c1c5b4b window, !- Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 234e6101-b193-4537-8c3c-89fe6c1c5b4b, !- Building Surface Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4854,10 +4854,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 69777c37-5c29-4e64-bdc8-2187f5601dfe window, !- Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 69777c37-5c29-4e64-bdc8-2187f5601dfe, !- Building Surface Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4877,10 +4877,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5bdf1462-af7c-4f06-87d5-93687c433ddd window, !- Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5bdf1462-af7c-4f06-87d5-93687c433ddd, !- Building Surface Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4900,10 +4900,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f44d8577-64e0-4369-8209-cd922ece416d window, !- Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f44d8577-64e0-4369-8209-cd922ece416d, !- Building Surface Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4923,10 +4923,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 0ea016b3-f825-45b6-9898-e4594818013c window, !- Name + 0ca6079f-2460-4171-b8e4-a118f26ea721 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 0ea016b3-f825-45b6-9898-e4594818013c, !- Building Surface Name + 0ca6079f-2460-4171-b8e4-a118f26ea721, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4946,10 +4946,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b window, !- Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b, !- Building Surface Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4969,10 +4969,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 36010500-deef-411a-bdad-f9d9081d9d3b window, !- Name + c62daad5-af76-47a2-9ccc-d8b9953782d2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 36010500-deef-411a-bdad-f9d9081d9d3b, !- Building Surface Name + c62daad5-af76-47a2-9ccc-d8b9953782d2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4992,10 +4992,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a649c3e6-4c83-4d7d-8085-ca69227ce408 window, !- Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a649c3e6-4c83-4d7d-8085-ca69227ce408, !- Building Surface Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5015,10 +5015,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ba59dbe4-1f28-43b0-9666-e348b0352d6a window, !- Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ba59dbe4-1f28-43b0-9666-e348b0352d6a, !- Building Surface Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5038,10 +5038,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 47a5e611-5db5-4345-b925-f0aba9a7f655 window, !- Name + 0d1675b6-30be-4315-95f6-432607ef6038 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 47a5e611-5db5-4345-b925-f0aba9a7f655, !- Building Surface Name + 0d1675b6-30be-4315-95f6-432607ef6038, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5061,10 +5061,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d88e8f71-d9df-45f7-af8e-5c71e4abd7af window, !- Name + 44cf0901-3097-4000-8843-4f2a7bdc1148 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d88e8f71-d9df-45f7-af8e-5c71e4abd7af, !- Building Surface Name + 44cf0901-3097-4000-8843-4f2a7bdc1148, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5084,10 +5084,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e2e667ec-7877-4c1f-a326-da1acee6236b window, !- Name + 05d3478f-f729-444f-8d57-638778be8fa6 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e2e667ec-7877-4c1f-a326-da1acee6236b, !- Building Surface Name + 05d3478f-f729-444f-8d57-638778be8fa6, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5107,10 +5107,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 327fa205-ee88-42c3-98b8-c9f40570608f window, !- Name + cebf8668-ae77-42f8-83fa-a52cce144cc3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 327fa205-ee88-42c3-98b8-c9f40570608f, !- Building Surface Name + cebf8668-ae77-42f8-83fa-a52cce144cc3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5130,10 +5130,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4909bd4b-64b0-455f-9f41-7b847d8efd0e window, !- Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4909bd4b-64b0-455f-9f41-7b847d8efd0e, !- Building Surface Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5153,10 +5153,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7294d66e-272d-45b0-b3d5-498cb6d9005d window, !- Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7294d66e-272d-45b0-b3d5-498cb6d9005d, !- Building Surface Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5176,10 +5176,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ab27e866-0c52-46fa-882b-8a7c2f18bca9 window, !- Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ab27e866-0c52-46fa-882b-8a7c2f18bca9, !- Building Surface Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5199,10 +5199,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1378d302-9f65-44a3-96b6-26f66bbd6abb window, !- Name + 42b7433d-b004-4bab-9abe-ea1b57133101 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1378d302-9f65-44a3-96b6-26f66bbd6abb, !- Building Surface Name + 42b7433d-b004-4bab-9abe-ea1b57133101, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5222,10 +5222,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - be80ff74-da6b-47ea-912d-95830f2f5afc window, !- Name + 779afbd5-0e07-4533-9528-8573168e8f7d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - be80ff74-da6b-47ea-912d-95830f2f5afc, !- Building Surface Name + 779afbd5-0e07-4533-9528-8573168e8f7d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5245,10 +5245,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a102be68-0a63-4582-8246-03d675a04440 window, !- Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a102be68-0a63-4582-8246-03d675a04440, !- Building Surface Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5268,10 +5268,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 59df3602-265e-4da0-851c-21f9955d55d1 window, !- Name + 050515b0-f2a7-47e2-a583-af29a662b779 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 59df3602-265e-4da0-851c-21f9955d55d1, !- Building Surface Name + 050515b0-f2a7-47e2-a583-af29a662b779, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5291,10 +5291,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - aaf52cef-f41f-4e17-a34b-327eabec2c17 window, !- Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - aaf52cef-f41f-4e17-a34b-327eabec2c17, !- Building Surface Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name diff --git a/out_files/Westmount_out.bnd b/out_files/Westmount_out.bnd index 71e864df..139b6803 100644 --- a/out_files/Westmount_out.bnd +++ b/out_files/Westmount_out.bnd @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 ! This file shows details about the branches, nodes, and other ! elements of the flow connections. ! This file is intended for use in "debugging" potential problems diff --git a/out_files/Westmount_out.eio b/out_files/Westmount_out.eio index 1aab395d..249e6307 100644 --- a/out_files/Westmount_out.eio +++ b/out_files/Westmount_out.eio @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 ! , Version ID Version, 9.5 ! , #TimeSteps, Minutes per TimeStep {minutes} diff --git a/out_files/Westmount_out.end b/out_files/Westmount_out.end index 01a103be..3727102e 100644 --- a/out_files/Westmount_out.end +++ b/out_files/Westmount_out.end @@ -1 +1 @@ -EnergyPlus Completed Successfully-- 36 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 16.32sec +EnergyPlus Completed Successfully-- 36 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.60sec diff --git a/out_files/Westmount_out.err b/out_files/Westmount_out.err index e1fdf2ed..99fa1c90 100644 --- a/out_files/Westmount_out.err +++ b/out_files/Westmount_out.err @@ -1,6 +1,6 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55, +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26, ** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no "Ground Temperatures" were input. - ** ~~~ ** Found first in surface=4A8C5510-4917-4962-B668-AC2B363E1666 + ** ~~~ ** Found first in surface=9A71C69C-9586-4DA7-9E88-896BCC784F3F ** ~~~ ** Defaults, constant throughout the year of (18.0) will be used. ** Warning ** GetInternalHeatGains: People="173256_OCCUPANCY", Activity Level Schedule Name values ** ~~~ ** fall outside typical range [70,1000] W/person for Thermal Comfort Reporting. @@ -73,4 +73,4 @@ Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55, ************* Use Output:Diagnostics,DisplayUnusedObjects; to see them. ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors. ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors. - ************* EnergyPlus Completed Successfully-- 36 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 16.32sec + ************* EnergyPlus Completed Successfully-- 36 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 15.60sec diff --git a/out_files/Westmount_out.eso b/out_files/Westmount_out.eso index e6f612e8..04d132f7 100644 --- a/out_files/Westmount_out.eso +++ b/out_files/Westmount_out.eso @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 1,5,Environment Title[],Latitude[deg],Longitude[deg],Time Zone[],Elevation[m] 2,8,Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],Hour[],StartMinute[],EndMinute[],DayType 3,5,Cumulative Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],DayType ! When Daily Report Variables Requested diff --git a/out_files/Westmount_out.expidf b/out_files/Westmount_out.expidf index 861f4dcd..225b8867 100644 --- a/out_files/Westmount_out.expidf +++ b/out_files/Westmount_out.expidf @@ -1147,7 +1147,7 @@ ZONE, Yes; !- Part of Total Floor Area BUILDINGSURFACE:DETAILED, - 4a8c5510-4917-4962-b668-ac2b363e1666, !- Name + 9a71c69c-9586-4da7-9e88-896bcc784f3f, !- Name floor, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1171,7 +1171,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2da3fbe9-639b-41e3-839c-4983a668adec, !- Name + e0ea27a2-2a19-4d76-b071-433b46e55c87, !- Name roof, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1195,7 +1195,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a31b7a34-87da-44c3-b425-1123bf5f537e, !- Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1219,7 +1219,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - feaa02b7-346c-4e97-91a6-2307d00aa8e7, !- Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1243,7 +1243,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e853f7a4-3edf-4174-a4cd-ba9830bc3a35, !- Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1267,7 +1267,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f0c194c6-ecc0-4215-b107-1a3503e6a3b9, !- Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 173256, !- Zone Name @@ -1291,7 +1291,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b92ad645-5c44-42ea-934e-034f6b1a1343, !- Name + 722ee535-59f8-459c-86df-fc04ed4b1ecf, !- Name floor, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1321,7 +1321,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - f5f64b85-e5a1-4786-ad52-7b958ab52689, !- Name + b42c17b9-cde9-4aa6-a608-58e472156ea4, !- Name roof, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1351,7 +1351,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 086891c7-387b-4226-955b-62212750f40d, !- Name + 014478ef-53cf-472b-bd40-b30e67b1defe, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1375,7 +1375,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f, !- Name + c895336e-c7a1-4670-a76d-23fb7aa683c2, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1399,7 +1399,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b, !- Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1423,7 +1423,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323, !- Name + 46a023a1-c717-4123-a8f8-4f59fde90906, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1447,7 +1447,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7, !- Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1471,7 +1471,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4b199b3d-4726-4307-a2f7-ec05cca3d88b, !- Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 173747, !- Zone Name @@ -1495,7 +1495,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d752839c-49cd-4eaf-86cd-0fc5e30438f3, !- Name + 2d7767fe-e37d-46e7-a553-9aa51a1144e5, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1537,7 +1537,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 10 Zcoordinate BUILDINGSURFACE:DETAILED, - 279da31d-1cc4-4eb0-ab0a-e14009514d49, !- Name + 9598f6ef-79b4-4cf3-8b76-48ce29edef6a, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1579,7 +1579,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 10 Zcoordinate BUILDINGSURFACE:DETAILED, - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c, !- Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1603,7 +1603,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7ef81ae6-421d-417b-a884-09d139df7392, !- Name + 6f211d24-7240-45a4-9703-6c5ecc418c18, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1627,7 +1627,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 95999f8c-7787-41fb-842e-57924fb8ce6e, !- Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1651,7 +1651,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d1efc40f-397a-4c21-8aff-6ebc399acf58, !- Name + c4243b0e-e920-4574-8939-dd4d085bed74, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1675,7 +1675,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 23262692-375a-4d61-a4dd-a2c5dd21b7b0, !- Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1699,7 +1699,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e65207b0-7c54-4be8-9fd4-90349a283029, !- Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1723,7 +1723,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 35a8ef37-0672-4b38-9ac0-59954b845c8a, !- Name + 354b85ed-25e9-42c0-946e-4c58060a8a00, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1747,7 +1747,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6c4cad38-03a2-4f52-b991-5094fd62d4dd, !- Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1771,7 +1771,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 02d8231c-67a9-4126-b084-58e3ff3b0a8a, !- Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1795,7 +1795,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 9f6d9821-892e-442a-9d43-9c44b45fefc3, !- Name + 426595e5-9869-4f33-b127-b84b81832942, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 173993, !- Zone Name @@ -1819,7 +1819,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1c9914ad-fe1b-47d6-b3e7-5047f366831d, !- Name + cb11d0a5-9bb3-4223-be41-fd4c5796c860, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1858,7 +1858,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 7fb3d965-3400-4b51-9d8a-75c65cc20c80, !- Name + addbe425-ab46-4cb4-9ce6-11995381dc32, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1897,7 +1897,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 207070e8-9afa-4626-98c7-e22d5e77d302, !- Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1921,7 +1921,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 904a3a7e-e83f-4043-ba36-468e01bb63fb, !- Name + 450f3db3-8760-4787-bbb3-924821484118, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1945,7 +1945,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70, !- Name + f25915c6-4f50-4b01-a49c-744f4bf29195, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1969,7 +1969,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7, !- Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -1993,7 +1993,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5bccd2ac-041c-45d2-86ab-72637853703f, !- Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2017,7 +2017,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d4f29a65-02ee-44f2-a74b-c18d73b71eda, !- Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2041,7 +2041,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fc904495-fe25-4e1b-832f-41a45e117691, !- Name + 818eb98b-acf9-4c03-9723-b9055ec2b832, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2065,7 +2065,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b286e9d1-994f-418f-b830-754cb313793d, !- Name + 35def65b-3d94-4f14-9a79-f0b95d42801d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2089,7 +2089,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e, !- Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 174567, !- Zone Name @@ -2113,7 +2113,7 @@ BUILDINGSURFACE:DETAILED, 21; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c04b7482-35ba-4365-b350-048d9a1be91f, !- Name + f862a00a-0a07-495e-8db5-3c87dc9624f6, !- Name floor, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2143,7 +2143,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - b6255ffd-5b63-4f18-b3c3-bc35860b8b80, !- Name + 285a742a-279a-402f-ab7f-228236284edc, !- Name roof, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2173,7 +2173,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 6 Zcoordinate BUILDINGSURFACE:DETAILED, - 8314f1a8-6a53-4847-b682-b4d052085096, !- Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2197,7 +2197,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 8f619fc1-a55a-4dcc-b210-248561825e41, !- Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2221,7 +2221,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc, !- Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2245,7 +2245,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 060ded99-1508-4619-9cea-0110f324d0f2, !- Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2269,7 +2269,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a4833f7a-0137-432b-9caf-d5b61b75c7e8, !- Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2293,7 +2293,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - fbc4e947-e747-41be-98c3-409bd3bf593e, !- Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a, !- Name wall, !- Surface Type 1951_1960_6, !- Construction Name 174568, !- Zone Name @@ -2317,7 +2317,7 @@ BUILDINGSURFACE:DETAILED, 13; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7fe829ca-8df3-498c-8d49-7fe733d68cc0, !- Name + 8959b441-1442-4920-8edd-830232168c72, !- Name floor, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2386,7 +2386,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 19 Zcoordinate BUILDINGSURFACE:DETAILED, - 83557790-0867-4da7-bdb0-aa83fa2e5ce0, !- Name + 380da066-26ff-4f1f-a7a1-9cb7f56001cc, !- Name roof, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2455,7 +2455,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 19 Zcoordinate BUILDINGSURFACE:DETAILED, - 8469da8e-4f42-4197-a645-365e7a06294d, !- Name + b5132ead-74ef-4bbe-995e-e5b024dec326, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2479,7 +2479,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 0b13da9e-94d8-45ea-bc8c-8f36085d727f, !- Name + a32a358c-9091-4864-888c-409cd26814ac, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2503,7 +2503,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 066a7a13-b738-4f65-975f-11a83bf5cd2b, !- Name + fe2d1d14-2c13-42e2-856c-43eebba4797f, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2527,7 +2527,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d6d89ee8-5294-4637-a513-543a1c9e1803, !- Name + fb842419-964d-4916-809f-e199ce2b5ee7, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2551,7 +2551,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 685db9ba-8b51-4a67-8f2a-9963a37c5510, !- Name + 5e60549c-50b0-4407-847a-5861932914f1, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2575,7 +2575,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec035472-9daa-4e36-8ff4-92501f8fbb4f, !- Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2599,7 +2599,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - c73a0b58-396a-4617-abcf-0454a7647321, !- Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2623,7 +2623,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a3a28ab7-5eda-48c8-9870-bcb88b3ae469, !- Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2647,7 +2647,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ec059d37-2d87-4b09-a2f0-f48893c58d74, !- Name + 1df220c8-4594-4350-9194-965640b21272, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2671,7 +2671,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68, !- Name + e3f35249-c2bc-40a8-8619-f5d02b444417, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2695,7 +2695,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1311cd62-6809-4f52-85b8-2815515c84e3, !- Name + 56880703-96a6-4b3b-9f17-1ef482557d81, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2719,7 +2719,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858, !- Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2743,7 +2743,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - b92abbd8-9d06-41f7-889c-306c35cf7f95, !- Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2767,7 +2767,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4ba2dc04-f061-484d-990d-99d39ded0bb8, !- Name + d3dfe970-7ddd-4066-9a44-e5c431173b04, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2791,7 +2791,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c, !- Name + 2494ef78-8fd5-40f6-9649-8207e7b72419, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2815,7 +2815,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 3744a296-ac57-41fa-a71d-0c3470cb5f14, !- Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2839,7 +2839,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f31e4707-5001-4563-a5a4-df762203e639, !- Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2863,7 +2863,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 31ca4d09-dbcc-4a4d-8a19-832a531b617e, !- Name + 4b74b268-1555-4305-866b-12071073cc37, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2887,7 +2887,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 354373d3-76f3-483d-9842-74f52495c95c, !- Name + bdf88111-ffad-4314-844f-c6a6d18ae56e, !- Name wall, !- Surface Type 1921_1930_6, !- Construction Name 176023, !- Zone Name @@ -2911,7 +2911,7 @@ BUILDINGSURFACE:DETAILED, 14; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 691020f9-5fb5-42fd-8fbf-f29e269cde7e, !- Name + 1fa1f75a-e592-40ce-abac-c52374614494, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -2950,7 +2950,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 831bfde3-7462-4ebf-8d36-440d2201b769, !- Name + b482efb1-b0d1-492d-a5ee-cd0cc081f215, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -2989,7 +2989,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 9 Zcoordinate BUILDINGSURFACE:DETAILED, - 234e6101-b193-4537-8c3c-89fe6c1c5b4b, !- Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3013,7 +3013,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 69777c37-5c29-4e64-bdc8-2187f5601dfe, !- Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3037,7 +3037,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5bdf1462-af7c-4f06-87d5-93687c433ddd, !- Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3061,7 +3061,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - f44d8577-64e0-4369-8209-cd922ece416d, !- Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3085,7 +3085,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 0ea016b3-f825-45b6-9898-e4594818013c, !- Name + 0ca6079f-2460-4171-b8e4-a118f26ea721, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3109,7 +3109,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b, !- Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3133,7 +3133,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 36010500-deef-411a-bdad-f9d9081d9d3b, !- Name + c62daad5-af76-47a2-9ccc-d8b9953782d2, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3157,7 +3157,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a649c3e6-4c83-4d7d-8085-ca69227ce408, !- Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3181,7 +3181,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ba59dbe4-1f28-43b0-9666-e348b0352d6a, !- Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182419, !- Zone Name @@ -3205,7 +3205,7 @@ BUILDINGSURFACE:DETAILED, 15; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 5ebdc6c5-52b7-40aa-92ba-5c06e98bf9a5, !- Name + f331a652-4c5a-45d8-8c2e-d344315dbcd9, !- Name floor, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3253,7 +3253,7 @@ BUILDINGSURFACE:DETAILED, 0; !- Vertex 12 Zcoordinate BUILDINGSURFACE:DETAILED, - 73643d9d-a887-4698-a613-01f5dc70360b, !- Name + e7536f9f-5c12-465c-9bde-b440c58085b2, !- Name roof, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3301,7 +3301,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 12 Zcoordinate BUILDINGSURFACE:DETAILED, - 47a5e611-5db5-4345-b925-f0aba9a7f655, !- Name + 0d1675b6-30be-4315-95f6-432607ef6038, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3325,7 +3325,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - d88e8f71-d9df-45f7-af8e-5c71e4abd7af, !- Name + 44cf0901-3097-4000-8843-4f2a7bdc1148, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3349,7 +3349,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - e2e667ec-7877-4c1f-a326-da1acee6236b, !- Name + 05d3478f-f729-444f-8d57-638778be8fa6, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3373,7 +3373,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 327fa205-ee88-42c3-98b8-c9f40570608f, !- Name + cebf8668-ae77-42f8-83fa-a52cce144cc3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3397,7 +3397,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 4909bd4b-64b0-455f-9f41-7b847d8efd0e, !- Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3421,7 +3421,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 7294d66e-272d-45b0-b3d5-498cb6d9005d, !- Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3445,7 +3445,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - ab27e866-0c52-46fa-882b-8a7c2f18bca9, !- Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3469,7 +3469,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 1378d302-9f65-44a3-96b6-26f66bbd6abb, !- Name + 42b7433d-b004-4bab-9abe-ea1b57133101, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3493,7 +3493,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - be80ff74-da6b-47ea-912d-95830f2f5afc, !- Name + 779afbd5-0e07-4533-9528-8573168e8f7d, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3517,7 +3517,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - a102be68-0a63-4582-8246-03d675a04440, !- Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3541,7 +3541,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - 59df3602-265e-4da0-851c-21f9955d55d1, !- Name + 050515b0-f2a7-47e2-a583-af29a662b779, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3565,7 +3565,7 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate BUILDINGSURFACE:DETAILED, - aaf52cef-f41f-4e17-a34b-327eabec2c17, !- Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a, !- Name wall, !- Surface Type 1931_1940_6, !- Construction Name 182775, !- Zone Name @@ -3589,10 +3589,10 @@ BUILDINGSURFACE:DETAILED, 12; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a31b7a34-87da-44c3-b425-1123bf5f537e window, !- Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a31b7a34-87da-44c3-b425-1123bf5f537e, !- Building Surface Name + 69e3b9ca-3ad9-49e9-8fb0-0c09f2cd0f25, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3612,10 +3612,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - feaa02b7-346c-4e97-91a6-2307d00aa8e7 window, !- Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - feaa02b7-346c-4e97-91a6-2307d00aa8e7, !- Building Surface Name + fa5d8f82-c017-4d84-af6f-666f3b3c7231, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3635,10 +3635,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e853f7a4-3edf-4174-a4cd-ba9830bc3a35 window, !- Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e853f7a4-3edf-4174-a4cd-ba9830bc3a35, !- Building Surface Name + 803b99ae-c0ab-4b2b-af4f-f047f25dad06, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3658,10 +3658,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f0c194c6-ecc0-4215-b107-1a3503e6a3b9 window, !- Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f0c194c6-ecc0-4215-b107-1a3503e6a3b9, !- Building Surface Name + 1fcad96e-6ba1-49a3-86d2-3496a2bd8804, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3681,10 +3681,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 086891c7-387b-4226-955b-62212750f40d window, !- Name + 014478ef-53cf-472b-bd40-b30e67b1defe window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 086891c7-387b-4226-955b-62212750f40d, !- Building Surface Name + 014478ef-53cf-472b-bd40-b30e67b1defe, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3704,10 +3704,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f window, !- Name + c895336e-c7a1-4670-a76d-23fb7aa683c2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 53d1bc5b-add4-4031-b2ab-d8c1865f7e6f, !- Building Surface Name + c895336e-c7a1-4670-a76d-23fb7aa683c2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3727,10 +3727,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b window, !- Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9b49fe0d-6366-4465-9e8f-c43c0f3b458b, !- Building Surface Name + 5a9cad1e-02b4-416a-8a2b-28fc684b2d85, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3750,10 +3750,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323 window, !- Name + 46a023a1-c717-4123-a8f8-4f59fde90906 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 51c15bbc-cc98-49f0-8ea8-241a8c0cd323, !- Building Surface Name + 46a023a1-c717-4123-a8f8-4f59fde90906, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3773,10 +3773,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7 window, !- Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a2aa3c91-ee42-4661-b73b-0a4dad6e5fc7, !- Building Surface Name + e2b821aa-cf56-4772-b139-2a2e45c4b1ac, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3796,10 +3796,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4b199b3d-4726-4307-a2f7-ec05cca3d88b window, !- Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4b199b3d-4726-4307-a2f7-ec05cca3d88b, !- Building Surface Name + c745040e-c9a0-4dfc-b4a2-bfecfdd6f782, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3819,10 +3819,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c window, !- Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2497c0b0-80a1-4a6c-aa3a-bb349c44591c, !- Building Surface Name + 599ddafe-05d0-4109-95ce-de3ebed73b0d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3842,10 +3842,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7ef81ae6-421d-417b-a884-09d139df7392 window, !- Name + 6f211d24-7240-45a4-9703-6c5ecc418c18 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7ef81ae6-421d-417b-a884-09d139df7392, !- Building Surface Name + 6f211d24-7240-45a4-9703-6c5ecc418c18, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3865,10 +3865,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 95999f8c-7787-41fb-842e-57924fb8ce6e window, !- Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 95999f8c-7787-41fb-842e-57924fb8ce6e, !- Building Surface Name + 10fd8236-5a16-420c-a5ad-a68e14113a8b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3888,10 +3888,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d1efc40f-397a-4c21-8aff-6ebc399acf58 window, !- Name + c4243b0e-e920-4574-8939-dd4d085bed74 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d1efc40f-397a-4c21-8aff-6ebc399acf58, !- Building Surface Name + c4243b0e-e920-4574-8939-dd4d085bed74, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3911,10 +3911,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 23262692-375a-4d61-a4dd-a2c5dd21b7b0 window, !- Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 23262692-375a-4d61-a4dd-a2c5dd21b7b0, !- Building Surface Name + 0cf794ea-eb16-4d16-9a20-f7c8d2be36b7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3934,10 +3934,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e65207b0-7c54-4be8-9fd4-90349a283029 window, !- Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e65207b0-7c54-4be8-9fd4-90349a283029, !- Building Surface Name + 46c2ce57-9120-4794-abf2-f3c7d9b3a1d5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3957,10 +3957,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 35a8ef37-0672-4b38-9ac0-59954b845c8a window, !- Name + 354b85ed-25e9-42c0-946e-4c58060a8a00 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 35a8ef37-0672-4b38-9ac0-59954b845c8a, !- Building Surface Name + 354b85ed-25e9-42c0-946e-4c58060a8a00, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -3980,10 +3980,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6c4cad38-03a2-4f52-b991-5094fd62d4dd window, !- Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6c4cad38-03a2-4f52-b991-5094fd62d4dd, !- Building Surface Name + 9e9da797-cc1e-48bf-8e23-a231998f53e2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4003,10 +4003,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 02d8231c-67a9-4126-b084-58e3ff3b0a8a window, !- Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 02d8231c-67a9-4126-b084-58e3ff3b0a8a, !- Building Surface Name + fcb0588b-666a-4e8c-9463-ed51c74f81ec, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4026,10 +4026,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 9f6d9821-892e-442a-9d43-9c44b45fefc3 window, !- Name + 426595e5-9869-4f33-b127-b84b81832942 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 9f6d9821-892e-442a-9d43-9c44b45fefc3, !- Building Surface Name + 426595e5-9869-4f33-b127-b84b81832942, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4049,10 +4049,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 207070e8-9afa-4626-98c7-e22d5e77d302 window, !- Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 207070e8-9afa-4626-98c7-e22d5e77d302, !- Building Surface Name + 7f06a2b0-0bb3-4130-a75b-7250e42f201b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4072,10 +4072,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 904a3a7e-e83f-4043-ba36-468e01bb63fb window, !- Name + 450f3db3-8760-4787-bbb3-924821484118 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 904a3a7e-e83f-4043-ba36-468e01bb63fb, !- Building Surface Name + 450f3db3-8760-4787-bbb3-924821484118, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4095,10 +4095,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70 window, !- Name + f25915c6-4f50-4b01-a49c-744f4bf29195 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 6c3abc1f-1c38-4d5f-8add-a0f4f4021d70, !- Building Surface Name + f25915c6-4f50-4b01-a49c-744f4bf29195, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4118,10 +4118,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7 window, !- Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8c57f4e5-1bc6-4892-9143-43504a1aa3b7, !- Building Surface Name + 98708c6f-724b-4f3d-89fd-224c9fe79ee0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4141,10 +4141,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5bccd2ac-041c-45d2-86ab-72637853703f window, !- Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5bccd2ac-041c-45d2-86ab-72637853703f, !- Building Surface Name + 4cb616f6-4b22-4735-bb7f-27a2e0f9945a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4164,10 +4164,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d4f29a65-02ee-44f2-a74b-c18d73b71eda window, !- Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d4f29a65-02ee-44f2-a74b-c18d73b71eda, !- Building Surface Name + 160f76f5-aff9-49c9-b6ce-ee0329cad7d0, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4187,10 +4187,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fc904495-fe25-4e1b-832f-41a45e117691 window, !- Name + 818eb98b-acf9-4c03-9723-b9055ec2b832 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fc904495-fe25-4e1b-832f-41a45e117691, !- Building Surface Name + 818eb98b-acf9-4c03-9723-b9055ec2b832, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4210,10 +4210,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b286e9d1-994f-418f-b830-754cb313793d window, !- Name + 35def65b-3d94-4f14-9a79-f0b95d42801d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b286e9d1-994f-418f-b830-754cb313793d, !- Building Surface Name + 35def65b-3d94-4f14-9a79-f0b95d42801d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4233,10 +4233,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e window, !- Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1509551c-3bb9-46f6-81dd-e9a8e893cf2e, !- Building Surface Name + 7dc475d9-eabb-47cc-a185-8654f6e40fd5, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4256,10 +4256,10 @@ FENESTRATIONSURFACE:DETAILED, 12.6; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8314f1a8-6a53-4847-b682-b4d052085096 window, !- Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8314f1a8-6a53-4847-b682-b4d052085096, !- Building Surface Name + 61a1a33e-9dfa-469f-a46a-3702f738dea8, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4279,10 +4279,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8f619fc1-a55a-4dcc-b210-248561825e41 window, !- Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8f619fc1-a55a-4dcc-b210-248561825e41, !- Building Surface Name + 6d22cc13-3522-4ab6-af7f-5c066ce69f22, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4302,10 +4302,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc window, !- Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f174d83d-4d6b-4628-ba02-7ceb1ba5aefc, !- Building Surface Name + 31693dd6-3456-4dfd-b7fd-12bebc85e52b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4325,10 +4325,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 060ded99-1508-4619-9cea-0110f324d0f2 window, !- Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 060ded99-1508-4619-9cea-0110f324d0f2, !- Building Surface Name + 1999f20f-4ace-47cc-9c25-773a3a4ad134, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4348,10 +4348,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a4833f7a-0137-432b-9caf-d5b61b75c7e8 window, !- Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a4833f7a-0137-432b-9caf-d5b61b75c7e8, !- Building Surface Name + 2c95e56d-664a-4d8e-9e80-c4ecdf1d15e1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4371,10 +4371,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - fbc4e947-e747-41be-98c3-409bd3bf593e window, !- Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - fbc4e947-e747-41be-98c3-409bd3bf593e, !- Building Surface Name + 190a77d0-dd84-4037-a9cc-f2de98c48f6a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4394,10 +4394,10 @@ FENESTRATIONSURFACE:DETAILED, 7.8; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 8469da8e-4f42-4197-a645-365e7a06294d window, !- Name + b5132ead-74ef-4bbe-995e-e5b024dec326 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 8469da8e-4f42-4197-a645-365e7a06294d, !- Building Surface Name + b5132ead-74ef-4bbe-995e-e5b024dec326, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4417,10 +4417,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 0b13da9e-94d8-45ea-bc8c-8f36085d727f window, !- Name + a32a358c-9091-4864-888c-409cd26814ac window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 0b13da9e-94d8-45ea-bc8c-8f36085d727f, !- Building Surface Name + a32a358c-9091-4864-888c-409cd26814ac, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4440,10 +4440,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 066a7a13-b738-4f65-975f-11a83bf5cd2b window, !- Name + fe2d1d14-2c13-42e2-856c-43eebba4797f window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 066a7a13-b738-4f65-975f-11a83bf5cd2b, !- Building Surface Name + fe2d1d14-2c13-42e2-856c-43eebba4797f, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4463,10 +4463,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d6d89ee8-5294-4637-a513-543a1c9e1803 window, !- Name + fb842419-964d-4916-809f-e199ce2b5ee7 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d6d89ee8-5294-4637-a513-543a1c9e1803, !- Building Surface Name + fb842419-964d-4916-809f-e199ce2b5ee7, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4486,10 +4486,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 685db9ba-8b51-4a67-8f2a-9963a37c5510 window, !- Name + 5e60549c-50b0-4407-847a-5861932914f1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 685db9ba-8b51-4a67-8f2a-9963a37c5510, !- Building Surface Name + 5e60549c-50b0-4407-847a-5861932914f1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4509,10 +4509,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec035472-9daa-4e36-8ff4-92501f8fbb4f window, !- Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec035472-9daa-4e36-8ff4-92501f8fbb4f, !- Building Surface Name + 7da92c67-4fb5-4430-8de2-af35fab53bfc, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4532,10 +4532,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - c73a0b58-396a-4617-abcf-0454a7647321 window, !- Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - c73a0b58-396a-4617-abcf-0454a7647321, !- Building Surface Name + c3fd65e7-fc14-4d33-bf52-23d74ded88eb, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4555,10 +4555,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a3a28ab7-5eda-48c8-9870-bcb88b3ae469 window, !- Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a3a28ab7-5eda-48c8-9870-bcb88b3ae469, !- Building Surface Name + 1e1c1899-dcc9-48a1-8898-28e04a7c3ec1, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4578,10 +4578,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ec059d37-2d87-4b09-a2f0-f48893c58d74 window, !- Name + 1df220c8-4594-4350-9194-965640b21272 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ec059d37-2d87-4b09-a2f0-f48893c58d74, !- Building Surface Name + 1df220c8-4594-4350-9194-965640b21272, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4601,10 +4601,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68 window, !- Name + e3f35249-c2bc-40a8-8619-f5d02b444417 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 032b678d-fbd1-4f19-81c7-1ec8cf63ea68, !- Building Surface Name + e3f35249-c2bc-40a8-8619-f5d02b444417, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4624,10 +4624,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1311cd62-6809-4f52-85b8-2815515c84e3 window, !- Name + 56880703-96a6-4b3b-9f17-1ef482557d81 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1311cd62-6809-4f52-85b8-2815515c84e3, !- Building Surface Name + 56880703-96a6-4b3b-9f17-1ef482557d81, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4647,10 +4647,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858 window, !- Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 88fe6e02-3bc5-415e-b0d1-e18fb9dae858, !- Building Surface Name + 62142fd5-ae68-4bf9-afc5-905bc9ae7f5d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4670,10 +4670,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - b92abbd8-9d06-41f7-889c-306c35cf7f95 window, !- Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - b92abbd8-9d06-41f7-889c-306c35cf7f95, !- Building Surface Name + 30b5b4e4-d837-4205-a13c-99e472fd70e3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4693,10 +4693,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4ba2dc04-f061-484d-990d-99d39ded0bb8 window, !- Name + d3dfe970-7ddd-4066-9a44-e5c431173b04 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4ba2dc04-f061-484d-990d-99d39ded0bb8, !- Building Surface Name + d3dfe970-7ddd-4066-9a44-e5c431173b04, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4716,10 +4716,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c window, !- Name + 2494ef78-8fd5-40f6-9649-8207e7b72419 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 2288e19b-d4b5-44b7-a6a2-261cfc7f365c, !- Building Surface Name + 2494ef78-8fd5-40f6-9649-8207e7b72419, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4739,10 +4739,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 3744a296-ac57-41fa-a71d-0c3470cb5f14 window, !- Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 3744a296-ac57-41fa-a71d-0c3470cb5f14, !- Building Surface Name + 7a4499e2-1610-41d5-a38d-f92c1a44a441, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4762,10 +4762,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f31e4707-5001-4563-a5a4-df762203e639 window, !- Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f31e4707-5001-4563-a5a4-df762203e639, !- Building Surface Name + 6c2ce294-611f-40a0-9c3a-76312d4e1b96, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4785,10 +4785,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 31ca4d09-dbcc-4a4d-8a19-832a531b617e window, !- Name + 4b74b268-1555-4305-866b-12071073cc37 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 31ca4d09-dbcc-4a4d-8a19-832a531b617e, !- Building Surface Name + 4b74b268-1555-4305-866b-12071073cc37, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4808,10 +4808,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 354373d3-76f3-483d-9842-74f52495c95c window, !- Name + bdf88111-ffad-4314-844f-c6a6d18ae56e window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 354373d3-76f3-483d-9842-74f52495c95c, !- Building Surface Name + bdf88111-ffad-4314-844f-c6a6d18ae56e, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4831,10 +4831,10 @@ FENESTRATIONSURFACE:DETAILED, 8.4; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 234e6101-b193-4537-8c3c-89fe6c1c5b4b window, !- Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 234e6101-b193-4537-8c3c-89fe6c1c5b4b, !- Building Surface Name + 952b28b4-7695-4d41-bb4e-6580fd5066d3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4854,10 +4854,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 69777c37-5c29-4e64-bdc8-2187f5601dfe window, !- Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 69777c37-5c29-4e64-bdc8-2187f5601dfe, !- Building Surface Name + ef26a619-85e8-4d60-84dc-ff2ddaeba8aa, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4877,10 +4877,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 5bdf1462-af7c-4f06-87d5-93687c433ddd window, !- Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 5bdf1462-af7c-4f06-87d5-93687c433ddd, !- Building Surface Name + ea6eb60c-30f4-4a3a-be41-c8cc35d59739, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4900,10 +4900,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - f44d8577-64e0-4369-8209-cd922ece416d window, !- Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - f44d8577-64e0-4369-8209-cd922ece416d, !- Building Surface Name + 9ee15c27-2220-4fbe-bcdc-a3b45c9266fe, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4923,10 +4923,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 0ea016b3-f825-45b6-9898-e4594818013c window, !- Name + 0ca6079f-2460-4171-b8e4-a118f26ea721 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 0ea016b3-f825-45b6-9898-e4594818013c, !- Building Surface Name + 0ca6079f-2460-4171-b8e4-a118f26ea721, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4946,10 +4946,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b window, !- Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 53cd4b62-9f88-4abe-821a-041ee0ce1e5b, !- Building Surface Name + 61690a0c-0a54-44ac-bfe6-5965fa8da5d2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4969,10 +4969,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 36010500-deef-411a-bdad-f9d9081d9d3b window, !- Name + c62daad5-af76-47a2-9ccc-d8b9953782d2 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 36010500-deef-411a-bdad-f9d9081d9d3b, !- Building Surface Name + c62daad5-af76-47a2-9ccc-d8b9953782d2, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -4992,10 +4992,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a649c3e6-4c83-4d7d-8085-ca69227ce408 window, !- Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a649c3e6-4c83-4d7d-8085-ca69227ce408, !- Building Surface Name + 5ebadd8b-8f48-4111-8f9f-0f5461f63407, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5015,10 +5015,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ba59dbe4-1f28-43b0-9666-e348b0352d6a window, !- Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ba59dbe4-1f28-43b0-9666-e348b0352d6a, !- Building Surface Name + 83560d6b-a3c1-4e5c-982e-ed16148d6524, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5038,10 +5038,10 @@ FENESTRATIONSURFACE:DETAILED, 9; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 47a5e611-5db5-4345-b925-f0aba9a7f655 window, !- Name + 0d1675b6-30be-4315-95f6-432607ef6038 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 47a5e611-5db5-4345-b925-f0aba9a7f655, !- Building Surface Name + 0d1675b6-30be-4315-95f6-432607ef6038, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5061,10 +5061,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - d88e8f71-d9df-45f7-af8e-5c71e4abd7af window, !- Name + 44cf0901-3097-4000-8843-4f2a7bdc1148 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - d88e8f71-d9df-45f7-af8e-5c71e4abd7af, !- Building Surface Name + 44cf0901-3097-4000-8843-4f2a7bdc1148, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5084,10 +5084,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - e2e667ec-7877-4c1f-a326-da1acee6236b window, !- Name + 05d3478f-f729-444f-8d57-638778be8fa6 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - e2e667ec-7877-4c1f-a326-da1acee6236b, !- Building Surface Name + 05d3478f-f729-444f-8d57-638778be8fa6, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5107,10 +5107,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 327fa205-ee88-42c3-98b8-c9f40570608f window, !- Name + cebf8668-ae77-42f8-83fa-a52cce144cc3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 327fa205-ee88-42c3-98b8-c9f40570608f, !- Building Surface Name + cebf8668-ae77-42f8-83fa-a52cce144cc3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5130,10 +5130,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 4909bd4b-64b0-455f-9f41-7b847d8efd0e window, !- Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 4909bd4b-64b0-455f-9f41-7b847d8efd0e, !- Building Surface Name + 716ec5be-26a5-445c-9ba3-01f9df8ed5d3, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5153,10 +5153,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 7294d66e-272d-45b0-b3d5-498cb6d9005d window, !- Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 7294d66e-272d-45b0-b3d5-498cb6d9005d, !- Building Surface Name + 83ff1247-78c4-4b4a-a96d-1c1d1848c089, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5176,10 +5176,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - ab27e866-0c52-46fa-882b-8a7c2f18bca9 window, !- Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - ab27e866-0c52-46fa-882b-8a7c2f18bca9, !- Building Surface Name + b9e42f4e-fc9a-4dd6-8b23-125922afae7b, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5199,10 +5199,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 1378d302-9f65-44a3-96b6-26f66bbd6abb window, !- Name + 42b7433d-b004-4bab-9abe-ea1b57133101 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 1378d302-9f65-44a3-96b6-26f66bbd6abb, !- Building Surface Name + 42b7433d-b004-4bab-9abe-ea1b57133101, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5222,10 +5222,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - be80ff74-da6b-47ea-912d-95830f2f5afc window, !- Name + 779afbd5-0e07-4533-9528-8573168e8f7d window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - be80ff74-da6b-47ea-912d-95830f2f5afc, !- Building Surface Name + 779afbd5-0e07-4533-9528-8573168e8f7d, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5245,10 +5245,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - a102be68-0a63-4582-8246-03d675a04440 window, !- Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - a102be68-0a63-4582-8246-03d675a04440, !- Building Surface Name + f5b25e62-443c-4a74-aeb8-a7d79618eae9, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5268,10 +5268,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - 59df3602-265e-4da0-851c-21f9955d55d1 window, !- Name + 050515b0-f2a7-47e2-a583-af29a662b779 window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - 59df3602-265e-4da0-851c-21f9955d55d1, !- Building Surface Name + 050515b0-f2a7-47e2-a583-af29a662b779, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name @@ -5291,10 +5291,10 @@ FENESTRATIONSURFACE:DETAILED, 7.2; !- Vertex 4 Zcoordinate FENESTRATIONSURFACE:DETAILED, - aaf52cef-f41f-4e17-a34b-327eabec2c17 window, !- Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a window, !- Name Window, !- Surface Type window_construction_1, !- Construction Name - aaf52cef-f41f-4e17-a34b-327eabec2c17, !- Building Surface Name + c7b741e8-43f0-4a31-9813-8f71ce72e68a, !- Building Surface Name , !- Outside Boundary Condition Object autocalculate, !- View Factor to Ground , !- Frame and Divider Name diff --git a/out_files/Westmount_out.mtr b/out_files/Westmount_out.mtr index 8a3fc239..632756a7 100644 --- a/out_files/Westmount_out.mtr +++ b/out_files/Westmount_out.mtr @@ -1,4 +1,4 @@ -Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 1,5,Environment Title[],Latitude[deg],Longitude[deg],Time Zone[],Elevation[m] 2,8,Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],Hour[],StartMinute[],EndMinute[],DayType 3,5,Cumulative Day of Simulation[],Month[],Day of Month[],DST Indicator[1=yes 0=no],DayType ! When Daily Meters Requested diff --git a/out_files/Westmount_out.rvaudit b/out_files/Westmount_out.rvaudit index 2dee94de..a577d669 100644 --- a/out_files/Westmount_out.rvaudit +++ b/out_files/Westmount_out.rvaudit @@ -1,16 +1,16 @@ ReadVarsESO - processing:D:\concordia_university\Projects\system_assignation\out_files\Westmount_a8b376.rvi + processing:D:\concordia_university\Projects\system_assignation\out_files\Westmount_fb347d.rvi input file:D:\concordia_university\Projects\system_assignation\out_files\Westmount_out.eso output file:D:\concordia_university\Projects\system_assignation\out_files\Westmount_out.csv getting all vars from:D:\concordia_university\Projects\system_assignation\out_files\Westmount_out.eso number variables requested for output= 44 - ReadVars Run Time=00hr 00min 1.42sec + ReadVars Run Time=00hr 00min 1.12sec ReadVarsESO program completed successfully. ReadVarsESO - processing:D:\concordia_university\Projects\system_assignation\out_files\Westmount_a8b376.mvi + processing:D:\concordia_university\Projects\system_assignation\out_files\Westmount_fb347d.mvi input file:D:\concordia_university\Projects\system_assignation\out_files\Westmount_out.mtr output file:D:\concordia_university\Projects\system_assignation\out_files\Westmount_mtr.csv getting all vars from:D:\concordia_university\Projects\system_assignation\out_files\Westmount_out.mtr number variables requested for output= 4 - ReadVars Run Time=00hr 00min 0.22sec + ReadVars Run Time=00hr 00min 0.20sec ReadVarsESO program completed successfully. diff --git a/out_files/Westmount_out.shd b/out_files/Westmount_out.shd index 78225854..8de7a550 100644 --- a/out_files/Westmount_out.shd +++ b/out_files/Westmount_out.shd @@ -3,1547 +3,1547 @@ Shadowing Combinations ..In the following, only the first 10 reference surfaces will be shown. ..But all surfaces are used in the calculations. ================================== -Surface=A31B7A34-87DA-44C3-B425-1123BF5F537E is used as Receiving Surface in calculations and is convex. +Surface=69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A31B7A34-87DA-44C3-B425-1123BF5F537E WINDOW +....Surface=69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 WINDOW ================================== -Surface=A31B7A34-87DA-44C3-B425-1123BF5F537E WINDOW is not used as Receiving Surface in calculations. +Surface=69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 is used as Receiving Surface in calculations and is convex. +Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF -..Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 +..Surface=05D3478F-F729-444F-8D57-638778BE8FA6 +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 WINDOW +....Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 WINDOW ================================== -Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 WINDOW is not used as Receiving Surface in calculations. +Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 is used as Receiving Surface in calculations and is convex. +Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=42 -..Surface=086891C7-387B-4226-955B-62212750F40D -..Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB +..Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE +..Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 WINDOW +....Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 WINDOW ================================== -Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 WINDOW is not used as Receiving Surface in calculations. +Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 is used as Receiving Surface in calculations and is convex. +Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=17 -..Surface=086891C7-387B-4226-955B-62212750F40D -..Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB +..Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE +..Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 WINDOW +....Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 WINDOW ================================== -Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 WINDOW is not used as Receiving Surface in calculations. +Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=4A8C5510-4917-4962-B668-AC2B363E1666 is not used as Receiving Surface in calculations. +Surface=9A71C69C-9586-4DA7-9E88-896BCC784F3F is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2DA3FBE9-639B-41E3-839C-4983A668ADEC is used as Receiving Surface in calculations and is convex. +Surface=E0EA27A2-2A19-4D76-B071-433B46E55C87 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=27 -..Surface=086891C7-387B-4226-955B-62212750F40D -..Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8469DA8E-4F42-4197-A645-365E7A06294D -..Surface=0B13DA9E-94D8-45EA-BC8C-8F36085D727F -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B +..Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE +..Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 +..Surface=A32A358C-9091-4864-888C-409CD26814AC +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=086891C7-387B-4226-955B-62212750F40D is used as Receiving Surface in calculations and is convex. +Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=086891C7-387B-4226-955B-62212750F40D WINDOW +....Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE WINDOW ================================== -Surface=086891C7-387B-4226-955B-62212750F40D WINDOW is not used as Receiving Surface in calculations. +Surface=014478EF-53CF-472B-BD40-B30E67B1DEFE WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F is used as Receiving Surface in calculations and is convex. +Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F WINDOW +....Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 WINDOW ================================== -Surface=53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F WINDOW is not used as Receiving Surface in calculations. +Surface=C895336E-C7A1-4670-A76D-23FB7AA683C2 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B is used as Receiving Surface in calculations and is convex. +Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=28 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=8F619FC1-A55A-4DCC-B210-248561825E41 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B WINDOW +....Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 WINDOW ================================== -Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B WINDOW is not used as Receiving Surface in calculations. +Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 is used as Receiving Surface in calculations and is convex. +Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=25 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 WINDOW +....Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 WINDOW ================================== -Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 WINDOW is not used as Receiving Surface in calculations. +Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 is used as Receiving Surface in calculations and is convex. +Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=25 -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 WINDOW +....Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC WINDOW ================================== -Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 WINDOW is not used as Receiving Surface in calculations. +Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=4B199B3D-4726-4307-A2F7-EC05CCA3D88B is used as Receiving Surface in calculations and is convex. +Surface=C745040E-C9A0-4DFC-B4A2-BFECFDD6F782 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB +..Surface=450F3DB3-8760-4787-BBB3-924821484118 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=4B199B3D-4726-4307-A2F7-EC05CCA3D88B WINDOW +....Surface=C745040E-C9A0-4DFC-B4A2-BFECFDD6F782 WINDOW ================================== -Surface=4B199B3D-4726-4307-A2F7-EC05CCA3D88B WINDOW is not used as Receiving Surface in calculations. +Surface=C745040E-C9A0-4DFC-B4A2-BFECFDD6F782 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B92AD645-5C44-42EA-934E-034F6B1A1343 is not used as Receiving Surface in calculations. +Surface=722EE535-59F8-459C-86DF-FC04ED4B1ECF is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F5F64B85-E5A1-4786-AD52-7B958AB52689 is used as Receiving Surface in calculations and is non-convex. +Surface=B42C17B9-CDE9-4AA6-A608-58E472156EA4 is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=7 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=69777C37-5C29-4E64-BDC8-2187F5601DFE -..Surface=F44D8577-64E0-4369-8209-CD922ECE416D -..Surface=A649C3E6-4C83-4D7D-8085-CA69227CE408 -..Surface=BA59DBE4-1F28-43B0-9666-E348B0352D6A +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA +..Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE +..Surface=5EBADD8B-8F48-4111-8F9F-0F5461F63407 +..Surface=83560D6B-A3C1-4E5C-982E-ED16148D6524 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C is used as Receiving Surface in calculations and is convex. +Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=30 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C WINDOW +....Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D WINDOW ================================== -Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C WINDOW is not used as Receiving Surface in calculations. +Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7EF81AE6-421D-417B-A884-09D139DF7392 is used as Receiving Surface in calculations and is convex. +Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=36 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=7EF81AE6-421D-417B-A884-09D139DF7392 WINDOW +....Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 WINDOW ================================== -Surface=7EF81AE6-421D-417B-A884-09D139DF7392 WINDOW is not used as Receiving Surface in calculations. +Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=95999F8C-7787-41FB-842E-57924FB8CE6E is used as Receiving Surface in calculations and is convex. +Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=26 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F -..Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 -..Surface=1311CD62-6809-4F52-85B8-2815515C84E3 -..Surface=88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC +..Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 +..Surface=56880703-96A6-4B3B-9F17-1EF482557D81 +..Surface=62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=95999F8C-7787-41FB-842E-57924FB8CE6E WINDOW +....Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B WINDOW ================================== -Surface=95999F8C-7787-41FB-842E-57924FB8CE6E WINDOW is not used as Receiving Surface in calculations. +Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 is used as Receiving Surface in calculations and is convex. +Surface=C4243B0E-E920-4574-8939-DD4D085BED74 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 WINDOW +....Surface=C4243B0E-E920-4574-8939-DD4D085BED74 WINDOW ================================== -Surface=D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 WINDOW is not used as Receiving Surface in calculations. +Surface=C4243B0E-E920-4574-8939-DD4D085BED74 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 is used as Receiving Surface in calculations and is convex. +Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=31 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=C4243B0E-E920-4574-8939-DD4D085BED74 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 WINDOW +....Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 WINDOW ================================== -Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 WINDOW is not used as Receiving Surface in calculations. +Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E65207B0-7C54-4BE8-9FD4-90349A283029 is used as Receiving Surface in calculations and is convex. +Surface=46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=E65207B0-7C54-4BE8-9FD4-90349A283029 WINDOW +....Surface=46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 WINDOW ================================== -Surface=E65207B0-7C54-4BE8-9FD4-90349A283029 WINDOW is not used as Receiving Surface in calculations. +Surface=46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A is used as Receiving Surface in calculations and is convex. +Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=35 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 -..Surface=E65207B0-7C54-4BE8-9FD4-90349A283029 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=C4243B0E-E920-4574-8939-DD4D085BED74 +..Surface=46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A WINDOW +....Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 WINDOW ================================== -Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A WINDOW is not used as Receiving Surface in calculations. +Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6C4CAD38-03A2-4F52-B991-5094FD62D4DD is used as Receiving Surface in calculations and is convex. +Surface=9E9DA797-CC1E-48BF-8E23-A231998F53E2 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6C4CAD38-03A2-4F52-B991-5094FD62D4DD WINDOW +....Surface=9E9DA797-CC1E-48BF-8E23-A231998F53E2 WINDOW ================================== -Surface=6C4CAD38-03A2-4F52-B991-5094FD62D4DD WINDOW is not used as Receiving Surface in calculations. +Surface=9E9DA797-CC1E-48BF-8E23-A231998F53E2 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=02D8231C-67A9-4126-B084-58E3FF3B0A8A is used as Receiving Surface in calculations and is convex. +Surface=FCB0588B-666A-4E8C-9463-ED51C74F81EC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=02D8231C-67A9-4126-B084-58E3FF3B0A8A WINDOW +....Surface=FCB0588B-666A-4E8C-9463-ED51C74F81EC WINDOW ================================== -Surface=02D8231C-67A9-4126-B084-58E3FF3B0A8A WINDOW is not used as Receiving Surface in calculations. +Surface=FCB0588B-666A-4E8C-9463-ED51C74F81EC WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 is used as Receiving Surface in calculations and is convex. +Surface=426595E5-9869-4F33-B127-B84B81832942 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=35 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 WINDOW +....Surface=426595E5-9869-4F33-B127-B84B81832942 WINDOW ================================== -Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 WINDOW is not used as Receiving Surface in calculations. +Surface=426595E5-9869-4F33-B127-B84B81832942 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D752839C-49CD-4EAF-86CD-0FC5E30438F3 is not used as Receiving Surface in calculations. +Surface=2D7767FE-E37D-46E7-A553-9AA51A1144E5 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=279DA31D-1CC4-4EB0-AB0A-E14009514D49 is used as Receiving Surface in calculations and is non-convex. +Surface=9598F6EF-79B4-4CF3-8B76-48CE29EDEF6A is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=21 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=B286E9D1-994F-418F-B830-754CB313793D -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=207070E8-9AFA-4626-98C7-E22D5E77D302 is used as Receiving Surface in calculations and is convex. +Surface=7F06A2B0-0BB3-4130-A75B-7250E42F201B is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=1509551C-3BB9-46F6-81DD-E9A8E893CF2E +..Surface=7DC475D9-EABB-47CC-A185-8654F6E40FD5 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=207070E8-9AFA-4626-98C7-E22D5E77D302 WINDOW +....Surface=7F06A2B0-0BB3-4130-A75B-7250E42F201B WINDOW ================================== -Surface=207070E8-9AFA-4626-98C7-E22D5E77D302 WINDOW is not used as Receiving Surface in calculations. +Surface=7F06A2B0-0BB3-4130-A75B-7250E42F201B WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB is used as Receiving Surface in calculations and is convex. +Surface=450F3DB3-8760-4787-BBB3-924821484118 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=12 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=4B199B3D-4726-4307-A2F7-EC05CCA3D88B -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B -..Surface=A649C3E6-4C83-4D7D-8085-CA69227CE408 -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=C745040E-C9A0-4DFC-B4A2-BFECFDD6F782 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 +..Surface=5EBADD8B-8F48-4111-8F9F-0F5461F63407 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB WINDOW +....Surface=450F3DB3-8760-4787-BBB3-924821484118 WINDOW ================================== -Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB WINDOW is not used as Receiving Surface in calculations. +Surface=450F3DB3-8760-4787-BBB3-924821484118 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 is used as Receiving Surface in calculations and is convex. +Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=31 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 WINDOW +....Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 WINDOW ================================== -Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 WINDOW is not used as Receiving Surface in calculations. +Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 is used as Receiving Surface in calculations and is convex. +Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=27 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 WINDOW +....Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 WINDOW ================================== -Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 WINDOW is not used as Receiving Surface in calculations. +Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=5BCCD2AC-041C-45D2-86AB-72637853703F is used as Receiving Surface in calculations and is convex. +Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=12 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B -..Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F +..Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=5BCCD2AC-041C-45D2-86AB-72637853703F WINDOW +....Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A WINDOW ================================== -Surface=5BCCD2AC-041C-45D2-86AB-72637853703F WINDOW is not used as Receiving Surface in calculations. +Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA is used as Receiving Surface in calculations and is convex. +Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=28 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA WINDOW +....Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 WINDOW ================================== -Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA WINDOW is not used as Receiving Surface in calculations. +Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=FC904495-FE25-4E1B-832F-41A45E117691 is used as Receiving Surface in calculations and is convex. +Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=B286E9D1-994F-418F-B830-754CB313793D -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=FBC4E947-E747-41BE-98C3-409BD3BF593E -..Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 -..Surface=4BA2DC04-F061-484D-990D-99D39DED0BB8 -..Surface=2288E19B-D4B5-44B7-A6A2-261CFC7F365C +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=190A77D0-DD84-4037-A9CC-F2DE98C48F6A +..Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 +..Surface=D3DFE970-7DDD-4066-9A44-E5C431173B04 +..Surface=2494EF78-8FD5-40F6-9649-8207E7B72419 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=FC904495-FE25-4E1B-832F-41A45E117691 WINDOW +....Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 WINDOW ================================== -Surface=FC904495-FE25-4E1B-832F-41A45E117691 WINDOW is not used as Receiving Surface in calculations. +Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B286E9D1-994F-418F-B830-754CB313793D is used as Receiving Surface in calculations and is convex. +Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=8 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 -..Surface=FBC4E947-E747-41BE-98C3-409BD3BF593E -..Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 -..Surface=4BA2DC04-F061-484D-990D-99D39DED0BB8 -..Surface=2288E19B-D4B5-44B7-A6A2-261CFC7F365C +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 +..Surface=190A77D0-DD84-4037-A9CC-F2DE98C48F6A +..Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 +..Surface=D3DFE970-7DDD-4066-9A44-E5C431173B04 +..Surface=2494EF78-8FD5-40F6-9649-8207E7B72419 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=B286E9D1-994F-418F-B830-754CB313793D WINDOW +....Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D WINDOW ================================== -Surface=B286E9D1-994F-418F-B830-754CB313793D WINDOW is not used as Receiving Surface in calculations. +Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1509551C-3BB9-46F6-81DD-E9A8E893CF2E is used as Receiving Surface in calculations and is convex. +Surface=7DC475D9-EABB-47CC-A185-8654F6E40FD5 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=207070E8-9AFA-4626-98C7-E22D5E77D302 +..Surface=7F06A2B0-0BB3-4130-A75B-7250E42F201B Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=1509551C-3BB9-46F6-81DD-E9A8E893CF2E WINDOW +....Surface=7DC475D9-EABB-47CC-A185-8654F6E40FD5 WINDOW ================================== -Surface=1509551C-3BB9-46F6-81DD-E9A8E893CF2E WINDOW is not used as Receiving Surface in calculations. +Surface=7DC475D9-EABB-47CC-A185-8654F6E40FD5 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1C9914AD-FE1B-47D6-B3E7-5047F366831D is not used as Receiving Surface in calculations. +Surface=CB11D0A5-9BB3-4223-BE41-FD4C5796C860 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7FB3D965-3400-4B51-9D8A-75C65CC20C80 is used as Receiving Surface in calculations and is non-convex. +Surface=ADDBE425-AB46-4CB4-9CE6-11995381DC32 is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8314F1A8-6A53-4847-B682-B4D052085096 is used as Receiving Surface in calculations and is convex. +Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=27 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=8314F1A8-6A53-4847-B682-B4D052085096 WINDOW +....Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 WINDOW ================================== -Surface=8314F1A8-6A53-4847-B682-B4D052085096 WINDOW is not used as Receiving Surface in calculations. +Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8F619FC1-A55A-4DCC-B210-248561825E41 is used as Receiving Surface in calculations and is convex. +Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=28 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F -..Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC +..Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=8F619FC1-A55A-4DCC-B210-248561825E41 WINDOW +....Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 WINDOW ================================== -Surface=8F619FC1-A55A-4DCC-B210-248561825E41 WINDOW is not used as Receiving Surface in calculations. +Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC is used as Receiving Surface in calculations and is convex. +Surface=31693DD6-3456-4DFD-B7FD-12BEBC85E52B is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC WINDOW +....Surface=31693DD6-3456-4DFD-B7FD-12BEBC85E52B WINDOW ================================== -Surface=F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC WINDOW is not used as Receiving Surface in calculations. +Surface=31693DD6-3456-4DFD-B7FD-12BEBC85E52B WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=060DED99-1508-4619-9CEA-0110F324D0F2 is used as Receiving Surface in calculations and is convex. +Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=32 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=060DED99-1508-4619-9CEA-0110F324D0F2 WINDOW +....Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 WINDOW ================================== -Surface=060DED99-1508-4619-9CEA-0110F324D0F2 WINDOW is not used as Receiving Surface in calculations. +Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A4833F7A-0137-432B-9CAF-D5B61B75C7E8 is used as Receiving Surface in calculations and is convex. +Surface=2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A4833F7A-0137-432B-9CAF-D5B61B75C7E8 WINDOW +....Surface=2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 WINDOW ================================== -Surface=A4833F7A-0137-432B-9CAF-D5B61B75C7E8 WINDOW is not used as Receiving Surface in calculations. +Surface=2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=FBC4E947-E747-41BE-98C3-409BD3BF593E is used as Receiving Surface in calculations and is convex. +Surface=190A77D0-DD84-4037-A9CC-F2DE98C48F6A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=2 -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=B286E9D1-994F-418F-B830-754CB313793D +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=FBC4E947-E747-41BE-98C3-409BD3BF593E WINDOW +....Surface=190A77D0-DD84-4037-A9CC-F2DE98C48F6A WINDOW ================================== -Surface=FBC4E947-E747-41BE-98C3-409BD3BF593E WINDOW is not used as Receiving Surface in calculations. +Surface=190A77D0-DD84-4037-A9CC-F2DE98C48F6A WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=C04B7482-35BA-4365-B350-048D9A1BE91F is not used as Receiving Surface in calculations. +Surface=F862A00A-0A07-495E-8DB5-3C87DC9624F6 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B6255FFD-5B63-4F18-B3C3-BC35860B8B80 is used as Receiving Surface in calculations and is non-convex. +Surface=285A742A-279A-402F-AB7F-228236284EDC is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=21 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=B286E9D1-994F-418F-B830-754CB313793D -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=8469DA8E-4F42-4197-A645-365E7A06294D is used as Receiving Surface in calculations and is convex. +Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=17 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=354373D3-76F3-483D-9842-74F52495C95C -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=BDF88111-FFAD-4314-844F-C6A6D18AE56E +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=8469DA8E-4F42-4197-A645-365E7A06294D WINDOW +....Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 WINDOW ================================== -Surface=8469DA8E-4F42-4197-A645-365E7A06294D WINDOW is not used as Receiving Surface in calculations. +Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=0B13DA9E-94D8-45EA-BC8C-8F36085D727F is used as Receiving Surface in calculations and is convex. +Surface=A32A358C-9091-4864-888C-409CD26814AC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=A102BE68-0A63-4582-8246-03D675A04440 -..Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 +..Surface=050515B0-F2A7-47E2-A583-AF29A662B779 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=0B13DA9E-94D8-45EA-BC8C-8F36085D727F WINDOW +....Surface=A32A358C-9091-4864-888C-409CD26814AC WINDOW ================================== -Surface=0B13DA9E-94D8-45EA-BC8C-8F36085D727F WINDOW is not used as Receiving Surface in calculations. +Surface=A32A358C-9091-4864-888C-409CD26814AC WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B is used as Receiving Surface in calculations and is convex. +Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=22 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=0B13DA9E-94D8-45EA-BC8C-8F36085D727F -..Surface=3744A296-AC57-41FA-A71D-0C3470CB5F14 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=A32A358C-9091-4864-888C-409CD26814AC +..Surface=7A4499E2-1610-41D5-A38D-F92C1A44A441 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B WINDOW +....Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F WINDOW ================================== -Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B WINDOW is not used as Receiving Surface in calculations. +Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D6D89EE8-5294-4637-A513-543A1C9E1803 is used as Receiving Surface in calculations and is convex. +Surface=FB842419-964D-4916-809F-E199CE2B5EE7 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=685DB9BA-8B51-4A67-8F2A-9963A37C5510 -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=A102BE68-0A63-4582-8246-03D675A04440 -..Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5E60549C-50B0-4407-847A-5861932914F1 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 +..Surface=050515B0-F2A7-47E2-A583-AF29A662B779 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D6D89EE8-5294-4637-A513-543A1C9E1803 WINDOW +....Surface=FB842419-964D-4916-809F-E199CE2B5EE7 WINDOW ================================== -Surface=D6D89EE8-5294-4637-A513-543A1C9E1803 WINDOW is not used as Receiving Surface in calculations. +Surface=FB842419-964D-4916-809F-E199CE2B5EE7 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=685DB9BA-8B51-4A67-8F2A-9963A37C5510 is used as Receiving Surface in calculations and is convex. +Surface=5E60549C-50B0-4407-847A-5861932914F1 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=D6D89EE8-5294-4637-A513-543A1C9E1803 -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=A102BE68-0A63-4582-8246-03D675A04440 -..Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=FB842419-964D-4916-809F-E199CE2B5EE7 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 +..Surface=050515B0-F2A7-47E2-A583-AF29A662B779 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=685DB9BA-8B51-4A67-8F2A-9963A37C5510 WINDOW +....Surface=5E60549C-50B0-4407-847A-5861932914F1 WINDOW ================================== -Surface=685DB9BA-8B51-4A67-8F2A-9963A37C5510 WINDOW is not used as Receiving Surface in calculations. +Surface=5E60549C-50B0-4407-847A-5861932914F1 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F is used as Receiving Surface in calculations and is convex. +Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8F619FC1-A55A-4DCC-B210-248561825E41 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=C73A0B58-396A-4617-ABCF-0454A7647321 -..Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=C3FD65E7-FC14-4D33-BF52-23D74DED88EB +..Surface=1DF220C8-4594-4350-9194-965640B21272 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F WINDOW +....Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC WINDOW ================================== -Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F WINDOW is not used as Receiving Surface in calculations. +Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=C73A0B58-396A-4617-ABCF-0454A7647321 is used as Receiving Surface in calculations and is convex. +Surface=C3FD65E7-FC14-4D33-BF52-23D74DED88EB is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=A102BE68-0A63-4582-8246-03D675A04440 -..Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 +..Surface=050515B0-F2A7-47E2-A583-AF29A662B779 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=C73A0B58-396A-4617-ABCF-0454A7647321 WINDOW +....Surface=C3FD65E7-FC14-4D33-BF52-23D74DED88EB WINDOW ================================== -Surface=C73A0B58-396A-4617-ABCF-0454A7647321 WINDOW is not used as Receiving Surface in calculations. +Surface=C3FD65E7-FC14-4D33-BF52-23D74DED88EB WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 is used as Receiving Surface in calculations and is convex. +Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=10 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8F619FC1-A55A-4DCC-B210-248561825E41 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 -..Surface=032B678D-FBD1-4F19-81C7-1EC8CF63EA68 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=1DF220C8-4594-4350-9194-965640B21272 +..Surface=E3F35249-C2BC-40A8-8619-F5D02B444417 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 WINDOW +....Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 WINDOW ================================== -Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 WINDOW is not used as Receiving Surface in calculations. +Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 is used as Receiving Surface in calculations and is convex. +Surface=1DF220C8-4594-4350-9194-965640B21272 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=13 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F -..Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 -..Surface=032B678D-FBD1-4F19-81C7-1EC8CF63EA68 -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC +..Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 +..Surface=E3F35249-C2BC-40A8-8619-F5D02B444417 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 WINDOW +....Surface=1DF220C8-4594-4350-9194-965640B21272 WINDOW ================================== -Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 WINDOW is not used as Receiving Surface in calculations. +Surface=1DF220C8-4594-4350-9194-965640B21272 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=032B678D-FBD1-4F19-81C7-1EC8CF63EA68 is used as Receiving Surface in calculations and is convex. +Surface=E3F35249-C2BC-40A8-8619-F5D02B444417 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=13 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=EC035472-9DAA-4E36-8FF4-92501F8FBB4F -..Surface=A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 -..Surface=EC059D37-2D87-4B09-A2F0-F48893C58D74 -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC +..Surface=1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 +..Surface=1DF220C8-4594-4350-9194-965640B21272 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=032B678D-FBD1-4F19-81C7-1EC8CF63EA68 WINDOW +....Surface=E3F35249-C2BC-40A8-8619-F5D02B444417 WINDOW ================================== -Surface=032B678D-FBD1-4F19-81C7-1EC8CF63EA68 WINDOW is not used as Receiving Surface in calculations. +Surface=E3F35249-C2BC-40A8-8619-F5D02B444417 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1311CD62-6809-4F52-85B8-2815515C84E3 is used as Receiving Surface in calculations and is convex. +Surface=56880703-96A6-4B3B-9F17-1EF482557D81 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8F619FC1-A55A-4DCC-B210-248561825E41 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=1311CD62-6809-4F52-85B8-2815515C84E3 WINDOW +....Surface=56880703-96A6-4B3B-9F17-1EF482557D81 WINDOW ================================== -Surface=1311CD62-6809-4F52-85B8-2815515C84E3 WINDOW is not used as Receiving Surface in calculations. +Surface=56880703-96A6-4B3B-9F17-1EF482557D81 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 is used as Receiving Surface in calculations and is convex. +Surface=62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=8F619FC1-A55A-4DCC-B210-248561825E41 -..Surface=060DED99-1508-4619-9CEA-0110F324D0F2 -..Surface=1311CD62-6809-4F52-85B8-2815515C84E3 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=6D22CC13-3522-4AB6-AF7F-5C066CE69F22 +..Surface=1999F20F-4ACE-47CC-9C25-773A3A4AD134 +..Surface=56880703-96A6-4B3B-9F17-1EF482557D81 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 WINDOW +....Surface=62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D WINDOW ================================== -Surface=88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 WINDOW is not used as Receiving Surface in calculations. +Surface=62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 is used as Receiving Surface in calculations and is convex. +Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=21 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 WINDOW +....Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 WINDOW ================================== -Surface=B92ABBD8-9D06-41F7-889C-306C35CF7F95 WINDOW is not used as Receiving Surface in calculations. +Surface=30B5B4E4-D837-4205-A13C-99E472FD70E3 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=4BA2DC04-F061-484D-990D-99D39DED0BB8 is used as Receiving Surface in calculations and is convex. +Surface=D3DFE970-7DDD-4066-9A44-E5C431173B04 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=23 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=B286E9D1-994F-418F-B830-754CB313793D +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=4BA2DC04-F061-484D-990D-99D39DED0BB8 WINDOW +....Surface=D3DFE970-7DDD-4066-9A44-E5C431173B04 WINDOW ================================== -Surface=4BA2DC04-F061-484D-990D-99D39DED0BB8 WINDOW is not used as Receiving Surface in calculations. +Surface=D3DFE970-7DDD-4066-9A44-E5C431173B04 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=2288E19B-D4B5-44B7-A6A2-261CFC7F365C is used as Receiving Surface in calculations and is convex. +Surface=2494EF78-8FD5-40F6-9649-8207E7B72419 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=23 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=2288E19B-D4B5-44B7-A6A2-261CFC7F365C WINDOW +....Surface=2494EF78-8FD5-40F6-9649-8207E7B72419 WINDOW ================================== -Surface=2288E19B-D4B5-44B7-A6A2-261CFC7F365C WINDOW is not used as Receiving Surface in calculations. +Surface=2494EF78-8FD5-40F6-9649-8207E7B72419 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=3744A296-AC57-41FA-A71D-0C3470CB5F14 is used as Receiving Surface in calculations and is convex. +Surface=7A4499E2-1610-41D5-A38D-F92C1A44A441 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=15 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=3744A296-AC57-41FA-A71D-0C3470CB5F14 WINDOW +....Surface=7A4499E2-1610-41D5-A38D-F92C1A44A441 WINDOW ================================== -Surface=3744A296-AC57-41FA-A71D-0C3470CB5F14 WINDOW is not used as Receiving Surface in calculations. +Surface=7A4499E2-1610-41D5-A38D-F92C1A44A441 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F31E4707-5001-4563-A5A4-DF762203E639 is used as Receiving Surface in calculations and is convex. +Surface=6C2CE294-611F-40A0-9C3A-76312D4E1B96 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=19 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=F31E4707-5001-4563-A5A4-DF762203E639 WINDOW +....Surface=6C2CE294-611F-40A0-9C3A-76312D4E1B96 WINDOW ================================== -Surface=F31E4707-5001-4563-A5A4-DF762203E639 WINDOW is not used as Receiving Surface in calculations. +Surface=6C2CE294-611F-40A0-9C3A-76312D4E1B96 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=31CA4D09-DBCC-4A4D-8A19-832A531B617E is used as Receiving Surface in calculations and is convex. +Surface=4B74B268-1555-4305-866B-12071073CC37 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=18 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=31CA4D09-DBCC-4A4D-8A19-832A531B617E WINDOW +....Surface=4B74B268-1555-4305-866B-12071073CC37 WINDOW ================================== -Surface=31CA4D09-DBCC-4A4D-8A19-832A531B617E WINDOW is not used as Receiving Surface in calculations. +Surface=4B74B268-1555-4305-866B-12071073CC37 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=354373D3-76F3-483D-9842-74F52495C95C is used as Receiving Surface in calculations and is convex. +Surface=BDF88111-FFAD-4314-844F-C6A6D18AE56E is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=16 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8469DA8E-4F42-4197-A645-365E7A06294D -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=354373D3-76F3-483D-9842-74F52495C95C WINDOW +....Surface=BDF88111-FFAD-4314-844F-C6A6D18AE56E WINDOW ================================== -Surface=354373D3-76F3-483D-9842-74F52495C95C WINDOW is not used as Receiving Surface in calculations. +Surface=BDF88111-FFAD-4314-844F-C6A6D18AE56E WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7FE829CA-8DF3-498C-8D49-7FE733D68CC0 is not used as Receiving Surface in calculations. +Surface=8959B441-1442-4920-8EDD-830232168C72 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=83557790-0867-4DA7-BDB0-AA83FA2E5CE0 is used as Receiving Surface in calculations and is non-convex. +Surface=380DA066-26FF-4F1F-A7A1-9CB7F56001CC is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=10 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=5BCCD2AC-041C-45D2-86AB-72637853703F -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=FC904495-FE25-4E1B-832F-41A45E117691 -..Surface=B286E9D1-994F-418F-B830-754CB313793D -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B -..Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD -..Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B -..Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=4CB616F6-4B22-4735-BB7F-27A2E0F9945A +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=818EB98B-ACF9-4C03-9723-B9055EC2B832 +..Surface=35DEF65B-3D94-4F14-9A79-F0B95D42801D +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 +..Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 +..Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 +..Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B is used as Receiving Surface in calculations and is convex. +Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=11 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=8469DA8E-4F42-4197-A645-365E7A06294D -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B -..Surface=69777C37-5C29-4E64-BDC8-2187F5601DFE -..Surface=F44D8577-64E0-4369-8209-CD922ECE416D -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF -..Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=B5132EAD-74EF-4BBE-995E-E5B024DEC326 +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F +..Surface=EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA +..Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 +..Surface=05D3478F-F729-444F-8D57-638778BE8FA6 +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B WINDOW +....Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 WINDOW ================================== -Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B WINDOW is not used as Receiving Surface in calculations. +Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=69777C37-5C29-4E64-BDC8-2187F5601DFE is used as Receiving Surface in calculations and is convex. +Surface=EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=69777C37-5C29-4E64-BDC8-2187F5601DFE WINDOW +....Surface=EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA WINDOW ================================== -Surface=69777C37-5C29-4E64-BDC8-2187F5601DFE WINDOW is not used as Receiving Surface in calculations. +Surface=EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD is used as Receiving Surface in calculations and is convex. +Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=9 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=066A7A13-B738-4F65-975F-11A83BF5CD2B -..Surface=F44D8577-64E0-4369-8209-CD922ECE416D -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF -..Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=FE2D1D14-2C13-42E2-856C-43EEBBA4797F +..Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 +..Surface=05D3478F-F729-444F-8D57-638778BE8FA6 +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD WINDOW +....Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 WINDOW ================================== -Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD WINDOW is not used as Receiving Surface in calculations. +Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=F44D8577-64E0-4369-8209-CD922ECE416D is used as Receiving Surface in calculations and is convex. +Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=4 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B -..Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 +..Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=F44D8577-64E0-4369-8209-CD922ECE416D WINDOW +....Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE WINDOW ================================== -Surface=F44D8577-64E0-4369-8209-CD922ECE416D WINDOW is not used as Receiving Surface in calculations. +Surface=9EE15C27-2220-4FBE-BCDC-A3B45C9266FE WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=0EA016B3-F825-45B6-9898-E4594818013C is used as Receiving Surface in calculations and is convex. +Surface=0CA6079F-2460-4171-B8E4-A118F26EA721 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E -..Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB -..Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC -..Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=0D1675B6-30BE-4315-95F6-432607EF6038 +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 +..Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 +..Surface=779AFBD5-0E07-4533-9528-8573168E8F7D +..Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=0EA016B3-F825-45B6-9898-E4594818013C WINDOW +....Surface=0CA6079F-2460-4171-B8E4-A118F26EA721 WINDOW ================================== -Surface=0EA016B3-F825-45B6-9898-E4594818013C WINDOW is not used as Receiving Surface in calculations. +Surface=0CA6079F-2460-4171-B8E4-A118F26EA721 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B is used as Receiving Surface in calculations and is convex. +Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=30 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B WINDOW +....Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 WINDOW ================================== -Surface=53CD4B62-9F88-4ABE-821A-041EE0CE1E5B WINDOW is not used as Receiving Surface in calculations. +Surface=61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B is used as Receiving Surface in calculations and is convex. +Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=23 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B WINDOW +....Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 WINDOW ================================== -Surface=36010500-DEEF-411A-BDAD-F9D9081D9D3B WINDOW is not used as Receiving Surface in calculations. +Surface=C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A649C3E6-4C83-4D7D-8085-CA69227CE408 is used as Receiving Surface in calculations and is convex. +Surface=5EBADD8B-8F48-4111-8F9F-0F5461F63407 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=16 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A649C3E6-4C83-4D7D-8085-CA69227CE408 WINDOW +....Surface=5EBADD8B-8F48-4111-8F9F-0F5461F63407 WINDOW ================================== -Surface=A649C3E6-4C83-4D7D-8085-CA69227CE408 WINDOW is not used as Receiving Surface in calculations. +Surface=5EBADD8B-8F48-4111-8F9F-0F5461F63407 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BA59DBE4-1F28-43B0-9666-E348B0352D6A is used as Receiving Surface in calculations and is convex. +Surface=83560D6B-A3C1-4E5C-982E-ED16148D6524 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=3 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=F0C194C6-ECC0-4215-B107-1A3503E6A3B9 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BA59DBE4-1F28-43B0-9666-E348B0352D6A WINDOW +....Surface=83560D6B-A3C1-4E5C-982E-ED16148D6524 WINDOW ================================== -Surface=BA59DBE4-1F28-43B0-9666-E348B0352D6A WINDOW is not used as Receiving Surface in calculations. +Surface=83560D6B-A3C1-4E5C-982E-ED16148D6524 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=691020F9-5FB5-42FD-8FBF-F29E269CDE7E is not used as Receiving Surface in calculations. +Surface=1FA1F75A-E592-40CE-ABAC-C52374614494 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=831BFDE3-7462-4EBF-8D36-440D2201B769 is used as Receiving Surface in calculations and is non-convex. +Surface=B482EFB1-B0D1-492D-A5EE-CD0CC081F215 is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=4 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 is used as Receiving Surface in calculations and is convex. +Surface=0D1675B6-30BE-4315-95F6-432607EF6038 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=30 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 WINDOW +....Surface=0D1675B6-30BE-4315-95F6-432607EF6038 WINDOW ================================== -Surface=47A5E611-5DB5-4345-B925-F0ABA9A7F655 WINDOW is not used as Receiving Surface in calculations. +Surface=0D1675B6-30BE-4315-95F6-432607EF6038 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF is used as Receiving Surface in calculations and is convex. +Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B -..Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD -..Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 +..Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 +..Surface=05D3478F-F729-444F-8D57-638778BE8FA6 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF WINDOW +....Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 WINDOW ================================== -Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF WINDOW is not used as Receiving Surface in calculations. +Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B is used as Receiving Surface in calculations and is convex. +Surface=05D3478F-F729-444F-8D57-638778BE8FA6 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=6 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=234E6101-B193-4537-8C3C-89FE6C1C5B4B -..Surface=5BDF1462-AF7C-4F06-87D5-93687C433DDD -..Surface=D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=952B28B4-7695-4D41-BB4E-6580FD5066D3 +..Surface=EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 +..Surface=44CF0901-3097-4000-8843-4F2A7BDC1148 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B WINDOW +....Surface=05D3478F-F729-444F-8D57-638778BE8FA6 WINDOW ================================== -Surface=E2E667EC-7877-4C1F-A326-DA1ACEE6236B WINDOW is not used as Receiving Surface in calculations. +Surface=05D3478F-F729-444F-8D57-638778BE8FA6 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=327FA205-EE88-42C3-98B8-C9F40570608F is used as Receiving Surface in calculations and is convex. +Surface=CEBF8668-AE77-42F8-83FA-A52CCE144CC3 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=327FA205-EE88-42C3-98B8-C9F40570608F WINDOW +....Surface=CEBF8668-AE77-42F8-83FA-A52CCE144CC3 WINDOW ================================== -Surface=327FA205-EE88-42C3-98B8-C9F40570608F WINDOW is not used as Receiving Surface in calculations. +Surface=CEBF8668-AE77-42F8-83FA-A52CCE144CC3 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E is used as Receiving Surface in calculations and is convex. +Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=25 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=904A3A7E-E83F-4043-BA36-468E01BB63FB -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=450F3DB3-8760-4787-BBB3-924821484118 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E WINDOW +....Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 WINDOW ================================== -Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E WINDOW is not used as Receiving Surface in calculations. +Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=7294D66E-272D-45B0-B3D5-498CB6D9005D is used as Receiving Surface in calculations and is convex. +Surface=83FF1247-78C4-4B4A-A96D-1C1D1848C089 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=1 -..Surface=4909BD4B-64B0-455F-9F41-7B847D8EFD0E +..Surface=716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=7294D66E-272D-45B0-B3D5-498CB6D9005D WINDOW +....Surface=83FF1247-78C4-4B4A-A96D-1C1D1848C089 WINDOW ================================== -Surface=7294D66E-272D-45B0-B3D5-498CB6D9005D WINDOW is not used as Receiving Surface in calculations. +Surface=83FF1247-78C4-4B4A-A96D-1C1D1848C089 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 is used as Receiving Surface in calculations and is convex. +Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=22 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 WINDOW +....Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B WINDOW ================================== -Surface=AB27E866-0C52-46FA-882B-8A7C2F18BCA9 WINDOW is not used as Receiving Surface in calculations. +Surface=B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB is used as Receiving Surface in calculations and is convex. +Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=35 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB WINDOW +....Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 WINDOW ================================== -Surface=1378D302-9F65-44A3-96B6-26F66BBD6ABB WINDOW is not used as Receiving Surface in calculations. +Surface=42B7433D-B004-4BAB-9ABE-EA1B57133101 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC is used as Receiving Surface in calculations and is convex. +Surface=779AFBD5-0E07-4533-9528-8573168E8F7D is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=36 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC WINDOW +....Surface=779AFBD5-0E07-4533-9528-8573168E8F7D WINDOW ================================== -Surface=BE80FF74-DA6B-47EA-912D-95830F2F5AFC WINDOW is not used as Receiving Surface in calculations. +Surface=779AFBD5-0E07-4533-9528-8573168E8F7D WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=A102BE68-0A63-4582-8246-03D675A04440 is used as Receiving Surface in calculations and is convex. +Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=24 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=A102BE68-0A63-4582-8246-03D675A04440 WINDOW +....Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 WINDOW ================================== -Surface=A102BE68-0A63-4582-8246-03D675A04440 WINDOW is not used as Receiving Surface in calculations. +Surface=F5B25E62-443C-4A74-AEB8-A7D79618EAE9 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 is used as Receiving Surface in calculations and is convex. +Surface=050515B0-F2A7-47E2-A583-AF29A662B779 is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=24 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A -..Surface=9F6D9821-892E-442A-9D43-9C44B45FEFC3 -..Surface=6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 -..Surface=8C57F4E5-1BC6-4892-9143-43504A1AA3B7 -..Surface=D4F29A65-02EE-44F2-A74B-C18D73B71EDA -..Surface=8314F1A8-6A53-4847-B682-B4D052085096 +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 +..Surface=426595E5-9869-4F33-B127-B84B81832942 +..Surface=F25915C6-4F50-4B01-A49C-744F4BF29195 +..Surface=98708C6F-724B-4F3D-89FD-224C9FE79EE0 +..Surface=160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 +..Surface=61A1A33E-9DFA-469F-A46A-3702F738DEA8 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 WINDOW +....Surface=050515B0-F2A7-47E2-A583-AF29A662B779 WINDOW ================================== -Surface=59DF3602-265E-4DA0-851C-21F9955D55D1 WINDOW is not used as Receiving Surface in calculations. +Surface=050515B0-F2A7-47E2-A583-AF29A662B779 WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 is used as Receiving Surface in calculations and is convex. +Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A is used as Receiving Surface in calculations and is convex. Number of general casting surfaces=33 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=1 -....Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 WINDOW +....Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A WINDOW ================================== -Surface=AAF52CEF-F41F-4E17-A34B-327EABEC2C17 WINDOW is not used as Receiving Surface in calculations. +Surface=C7B741E8-43F0-4A31-9813-8F71CE72E68A WINDOW is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=5EBDC6C5-52B7-40AA-92BA-5C06E98BF9A5 is not used as Receiving Surface in calculations. +Surface=F331A652-4C5A-45D8-8C2E-D344315DBCD9 is not used as Receiving Surface in calculations. Number of general casting surfaces=0 Number of back surfaces=0 Number of receiving sub surfaces=0 ================================== -Surface=73643D9D-A887-4698-A613-01F5DC70360B is used as Receiving Surface in calculations and is non-convex. +Surface=E7536F9F-5C12-465C-9BDE-B440C58085B2 is used as Receiving Surface in calculations and is non-convex. Number of general casting surfaces=33 -..Surface=FEAA02B7-346C-4E97-91A6-2307D00AA8E7 -..Surface=E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 -..Surface=9B49FE0D-6366-4465-9E8F-C43C0F3B458B -..Surface=51C15BBC-CC98-49F0-8EA8-241A8C0CD323 -..Surface=A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 -..Surface=2497C0B0-80A1-4A6C-AA3A-BB349C44591C -..Surface=7EF81AE6-421D-417B-A884-09D139DF7392 -..Surface=95999F8C-7787-41FB-842E-57924FB8CE6E -..Surface=23262692-375A-4D61-A4DD-A2C5DD21B7B0 -..Surface=35A8EF37-0672-4B38-9AC0-59954B845C8A +..Surface=FA5D8F82-C017-4D84-AF6F-666F3B3C7231 +..Surface=803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 +..Surface=5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 +..Surface=46A023A1-C717-4123-A8F8-4F59FDE90906 +..Surface=E2B821AA-CF56-4772-B139-2A2E45C4B1AC +..Surface=599DDAFE-05D0-4109-95CE-DE3EBED73B0D +..Surface=6F211D24-7240-45A4-9703-6C5ECC418C18 +..Surface=10FD8236-5A16-420C-A5AD-A68E14113A8B +..Surface=0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 +..Surface=354B85ED-25E9-42C0-946E-4C58060A8A00 Number of back surfaces=0 Number of receiving sub surfaces=0 diff --git a/out_files/Westmount_tbl.csv b/out_files/Westmount_tbl.csv index 547ec210..df48f4fb 100644 --- a/out_files/Westmount_tbl.csv +++ b/out_files/Westmount_tbl.csv @@ -1,4 +1,4 @@ -Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 Tabular Output Report in Format: ,Comma Building:,Buildings in b'Westmount' @@ -196,7 +196,7 @@ FOR:,Entire Facility General ,,Value -,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55 +,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26 ,RunPeriod,RUN PERIOD 1 ,Weather File,Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270 ,Latitude [deg],45.47 @@ -352,97 +352,97 @@ FOR:,Entire Facility Opaque Exterior ,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction -,A31B7A34-87DA-44C3-B425-1123BF5F537E,1921_1930_6,0.40,0.644,0.713,220.77,176.66,0.55,90.00,N -,FEAA02B7-346C-4E97-91A6-2307D00AA8E7,1921_1930_6,0.40,0.644,0.713,191.06,152.89,270.50,90.00,W -,E853F7A4-3EDF-4174-A4CD-BA9830BC3A35,1921_1930_6,0.40,0.644,0.713,220.68,176.59,180.51,90.00,S -,F0C194C6-ECC0-4215-B107-1A3503E6A3B9,1921_1930_6,0.40,0.644,0.713,190.93,152.78,90.52,90.00,E -,4A8C5510-4917-4962-B668-AC2B363E1666,1921_1930_6,0.40,0.639,0.713,249.45,249.45,0.51,180.00, -,2DA3FBE9-639B-41E3-839C-4983A668ADEC,1921_1930_6,0.40,0.649,0.713,249.45,249.45,0.55,0.00, -,086891C7-387B-4226-955B-62212750F40D,1951_1960_6,0.40,0.644,0.713,157.00,125.63,352.72,90.00,N -,53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F,1951_1960_6,0.40,0.644,0.713,48.96,39.18,352.46,90.00,N -,9B49FE0D-6366-4465-9E8F-C43C0F3B458B,1951_1960_6,0.40,0.644,0.713,258.53,206.88,261.43,90.00,W -,51C15BBC-CC98-49F0-8EA8-241A8C0CD323,1951_1960_6,0.40,0.644,0.713,7.35,5.88,171.74,90.00,S -,A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7,1951_1960_6,0.40,0.644,0.713,192.82,154.29,172.73,90.00,S -,4B199B3D-4726-4307-A2F7-EC05CCA3D88B,1951_1960_6,0.40,0.644,0.713,258.61,206.94,82.71,90.00,E -,B92AD645-5C44-42EA-934E-034F6B1A1343,1951_1960_6,0.40,0.639,0.713,267.88,267.88,352.73,180.00, -,F5F64B85-E5A1-4786-AD52-7B958AB52689,1951_1960_6,0.40,0.649,0.713,267.88,267.88,352.72,0.00, -,2497C0B0-80A1-4A6C-AA3A-BB349C44591C,1931_1940_6,0.40,0.644,0.713,82.69,66.17,271.16,90.00,W -,7EF81AE6-421D-417B-A884-09D139DF7392,1931_1940_6,0.40,0.644,0.713,19.72,15.78,1.18,90.00,N -,95999F8C-7787-41FB-842E-57924FB8CE6E,1931_1940_6,0.40,0.644,0.713,56.36,45.10,271.29,90.00,W -,D1EFC40F-397A-4C21-8AFF-6EBC399ACF58,1931_1940_6,0.40,0.644,0.713,19.82,15.86,181.00,90.00,S -,23262692-375A-4D61-A4DD-A2C5DD21B7B0,1931_1940_6,0.40,0.644,0.713,102.51,82.03,271.20,90.00,W -,E65207B0-7C54-4BE8-9FD4-90349A283029,1931_1940_6,0.40,0.644,0.713,89.33,71.48,181.12,90.00,S -,35A8EF37-0672-4B38-9AC0-59954B845C8A,1931_1940_6,0.40,0.644,0.713,29.09,23.28,271.28,90.00,W -,6C4CAD38-03A2-4F52-B991-5094FD62D4DD,1931_1940_6,0.40,0.644,0.713,100.99,80.81,181.15,90.00,S -,02D8231C-67A9-4126-B084-58E3FF3B0A8A,1931_1940_6,0.40,0.644,0.713,270.65,216.57,91.15,90.00,E -,9F6D9821-892E-442A-9D43-9C44B45FEFC3,1931_1940_6,0.40,0.644,0.713,190.13,152.14,1.12,90.00,N -,D752839C-49CD-4EAF-86CD-0FC5E30438F3,1931_1940_6,0.40,0.639,0.713,295.74,295.74,1.15,180.00, -,279DA31D-1CC4-4EB0-AB0A-E14009514D49,1931_1940_6,0.40,0.649,0.713,295.74,295.74,1.12,0.00, -,207070E8-9AFA-4626-98C7-E22D5E77D302,1931_1940_6,0.40,0.644,0.713,118.14,94.53,85.51,90.00,E -,904A3A7E-E83F-4043-BA36-468E01BB63FB,1931_1940_6,0.40,0.644,0.713,270.12,216.15,355.50,90.00,N -,6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70,1931_1940_6,0.40,0.644,0.713,267.13,213.76,263.08,90.00,W -,8C57F4E5-1BC6-4892-9143-43504A1AA3B7,1931_1940_6,0.40,0.644,0.713,0.82,0.66,249.05,90.00,W -,5BCCD2AC-041C-45D2-86AB-72637853703F,1931_1940_6,0.40,0.644,0.713,45.51,36.42,174.26,90.00,S -,D4F29A65-02EE-44F2-A74B-C18D73B71EDA,1931_1940_6,0.40,0.644,0.713,112.20,89.78,264.27,90.00,W -,FC904495-FE25-4E1B-832F-41A45E117691,1931_1940_6,0.40,0.644,0.713,203.01,162.45,174.32,90.00,S -,B286E9D1-994F-418F-B830-754CB313793D,1931_1940_6,0.40,0.644,0.713,7.70,6.16,174.91,90.00,S -,1509551C-3BB9-46F6-81DD-E9A8E893CF2E,1931_1940_6,0.40,0.644,0.713,256.46,205.22,85.51,90.00,E -,1C9914AD-FE1B-47D6-B3E7-5047F366831D,1931_1940_6,0.40,0.639,0.713,212.84,212.84,265.51,180.00, -,7FB3D965-3400-4B51-9D8A-75C65CC20C80,1931_1940_6,0.40,0.649,0.713,212.84,212.84,85.51,0.00, -,8314F1A8-6A53-4847-B682-B4D052085096,1951_1960_6,0.40,0.644,0.713,167.53,134.06,356.09,90.00,N -,8F619FC1-A55A-4DCC-B210-248561825E41,1951_1960_6,0.40,0.644,0.713,225.54,180.47,266.05,90.00,W -,F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC,1951_1960_6,0.40,0.644,0.713,58.26,46.62,176.03,90.00,S -,060DED99-1508-4619-9CEA-0110F324D0F2,1951_1960_6,0.40,0.644,0.713,37.15,29.72,266.55,90.00,W -,A4833F7A-0137-432B-9CAF-D5B61B75C7E8,1951_1960_6,0.40,0.644,0.713,109.37,87.52,176.10,90.00,S -,FBC4E947-E747-41BE-98C3-409BD3BF593E,1951_1960_6,0.40,0.644,0.713,262.62,210.15,86.10,90.00,E -,C04B7482-35BA-4365-B350-048D9A1BE91F,1951_1960_6,0.40,0.639,0.713,247.41,247.41,356.10,180.00, -,B6255FFD-5B63-4F18-B3C3-BC35860B8B80,1951_1960_6,0.40,0.649,0.713,247.41,247.41,356.09,0.00, -,8469DA8E-4F42-4197-A645-365E7A06294D,1921_1930_6,0.40,0.644,0.713,3.58,2.86,359.04,90.00,N -,0B13DA9E-94D8-45EA-BC8C-8F36085D727F,1921_1930_6,0.40,0.644,0.713,155.86,124.72,270.08,90.00,W -,066A7A13-B738-4F65-975F-11A83BF5CD2B,1921_1930_6,0.40,0.644,0.713,19.81,15.85,0.33,90.00,N -,D6D89EE8-5294-4637-A513-543A1C9E1803,1921_1930_6,0.40,0.644,0.713,232.12,185.74,269.03,90.00,W -,685DB9BA-8B51-4A67-8F2A-9963A37C5510,1921_1930_6,0.40,0.644,0.713,8.32,6.66,269.69,90.00,W -,EC035472-9DAA-4E36-8FF4-92501F8FBB4F,1921_1930_6,0.40,0.644,0.713,28.28,22.63,176.54,90.00,S -,C73A0B58-396A-4617-ABCF-0454A7647321,1921_1930_6,0.40,0.644,0.713,74.91,59.95,266.64,90.00,W -,A3A28AB7-5EDA-48C8-9870-BCB88B3AE469,1921_1930_6,0.40,0.644,0.713,64.65,51.73,176.50,90.00,S -,EC059D37-2D87-4B09-A2F0-F48893C58D74,1921_1930_6,0.40,0.644,0.713,67.01,53.62,266.55,90.00,W -,032B678D-FBD1-4F19-81C7-1EC8CF63EA68,1921_1930_6,0.40,0.644,0.713,6.52,5.22,268.41,90.00,W -,1311CD62-6809-4F52-85B8-2815515C84E3,1921_1930_6,0.40,0.644,0.713,70.88,56.72,175.70,90.00,S -,88FE6E02-3BC5-415E-B0D1-E18FB9DAE858,1921_1930_6,0.40,0.644,0.713,5.31,4.25,180.60,90.00,S -,B92ABBD8-9D06-41F7-889C-306C35CF7F95,1921_1930_6,0.40,0.644,0.713,323.58,258.93,90.21,90.00,E -,4BA2DC04-F061-484D-990D-99D39DED0BB8,1921_1930_6,0.40,0.644,0.713,45.44,36.37,0.74,90.00,N -,2288E19B-D4B5-44B7-A6A2-261CFC7F365C,1921_1930_6,0.40,0.644,0.713,192.80,154.28,90.76,90.00,E -,3744A296-AC57-41FA-A71D-0C3470CB5F14,1921_1930_6,0.40,0.644,0.713,39.32,31.46,180.96,90.00,S -,F31E4707-5001-4563-A5A4-DF762203E639,1921_1930_6,0.40,0.644,0.713,21.41,17.14,90.82,90.00,E -,31CA4D09-DBCC-4A4D-8A19-832A531B617E,1921_1930_6,0.40,0.644,0.713,5.65,4.52,87.98,90.00,E -,354373D3-76F3-483D-9842-74F52495C95C,1921_1930_6,0.40,0.644,0.713,155.75,124.63,356.37,90.00,N -,7FE829CA-8DF3-498C-8D49-7FE733D68CC0,1921_1930_6,0.40,0.639,0.713,391.13,391.13,270.82,180.00, -,83557790-0867-4DA7-BDB0-AA83FA2E5CE0,1921_1930_6,0.40,0.649,0.713,391.13,391.13,0.74,0.00, -,234E6101-B193-4537-8C3C-89FE6C1C5B4B,1931_1940_6,0.40,0.644,0.713,90.63,72.52,270.19,90.00,W -,69777C37-5C29-4E64-BDC8-2187F5601DFE,1931_1940_6,0.40,0.644,0.713,18.16,14.54,0.40,90.00,N -,5BDF1462-AF7C-4F06-87D5-93687C433DDD,1931_1940_6,0.40,0.644,0.713,55.90,44.73,270.20,90.00,W -,F44D8577-64E0-4369-8209-CD922ECE416D,1931_1940_6,0.40,0.644,0.713,15.76,12.61,359.70,90.00,N -,0EA016B3-F825-45B6-9898-E4594818013C,1931_1940_6,0.40,0.644,0.713,135.81,108.67,270.54,90.00,W -,53CD4B62-9F88-4ABE-821A-041EE0CE1E5B,1931_1940_6,0.40,0.644,0.713,214.93,171.99,180.49,90.00,S -,36010500-DEEF-411A-BDAD-F9D9081D9D3B,1931_1940_6,0.40,0.644,0.713,19.63,15.71,170.75,90.00,S -,A649C3E6-4C83-4D7D-8085-CA69227CE408,1931_1940_6,0.40,0.644,0.713,280.15,224.18,90.56,90.00,E -,BA59DBE4-1F28-43B0-9666-E348B0352D6A,1931_1940_6,0.40,0.644,0.713,201.35,161.12,0.24,90.00,N -,691020F9-5FB5-42FD-8FBF-F29E269CDE7E,1931_1940_6,0.40,0.639,0.713,277.25,277.25,350.75,180.00, -,831BFDE3-7462-4EBF-8D36-440D2201B769,1931_1940_6,0.40,0.649,0.713,277.25,277.25,0.24,0.00, -,47A5E611-5DB5-4345-B925-F0ABA9A7F655,1931_1940_6,0.40,0.644,0.713,5.65,4.52,89.31,90.00,E -,D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF,1931_1940_6,0.40,0.644,0.713,171.16,136.96,358.27,90.00,N -,E2E667EC-7877-4C1F-A326-DA1ACEE6236B,1931_1940_6,0.40,0.644,0.713,7.88,6.31,358.68,90.00,N -,327FA205-EE88-42C3-98B8-C9F40570608F,1931_1940_6,0.40,0.644,0.713,83.53,66.84,266.89,90.00,W -,4909BD4B-64B0-455F-9F41-7B847D8EFD0E,1931_1940_6,0.40,0.644,0.713,58.49,46.80,176.46,90.00,S -,7294D66E-272D-45B0-B3D5-498CB6D9005D,1931_1940_6,0.40,0.644,0.713,149.78,119.86,266.84,90.00,W -,AB27E866-0C52-46FA-882B-8A7C2F18BCA9,1931_1940_6,0.40,0.644,0.713,63.49,50.81,176.51,90.00,S -,1378D302-9F65-44A3-96B6-26F66BBD6ABB,1931_1940_6,0.40,0.644,0.713,2.23,1.78,72.71,90.00,E -,BE80FF74-DA6B-47EA-912D-95830F2F5AFC,1931_1940_6,0.40,0.644,0.713,43.81,35.06,89.15,90.00,E -,A102BE68-0A63-4582-8246-03D675A04440,1931_1940_6,0.40,0.644,0.713,46.42,37.14,179.16,90.00,S -,59DF3602-265E-4DA0-851C-21F9955D55D1,1931_1940_6,0.40,0.644,0.713,6.22,4.98,178.52,90.00,S -,AAF52CEF-F41F-4E17-A34B-327EABEC2C17,1931_1940_6,0.40,0.644,0.713,178.55,142.88,87.80,90.00,E -,5EBDC6C5-52B7-40AA-92BA-5C06E98BF9A5,1931_1940_6,0.40,0.639,0.713,205.94,205.94,267.80,180.00, -,73643D9D-A887-4698-A613-01F5DC70360B,1931_1940_6,0.40,0.649,0.713,205.94,205.94,89.31,0.00, +,69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25,1921_1930_6,0.40,0.644,0.713,220.77,176.66,0.55,90.00,N +,FA5D8F82-C017-4D84-AF6F-666F3B3C7231,1921_1930_6,0.40,0.644,0.713,191.06,152.89,270.50,90.00,W +,803B99AE-C0AB-4B2B-AF4F-F047F25DAD06,1921_1930_6,0.40,0.644,0.713,220.68,176.59,180.51,90.00,S +,1FCAD96E-6BA1-49A3-86D2-3496A2BD8804,1921_1930_6,0.40,0.644,0.713,190.93,152.78,90.52,90.00,E +,9A71C69C-9586-4DA7-9E88-896BCC784F3F,1921_1930_6,0.40,0.639,0.713,249.45,249.45,0.51,180.00, +,E0EA27A2-2A19-4D76-B071-433B46E55C87,1921_1930_6,0.40,0.649,0.713,249.45,249.45,0.55,0.00, +,014478EF-53CF-472B-BD40-B30E67B1DEFE,1951_1960_6,0.40,0.644,0.713,157.00,125.63,352.72,90.00,N +,C895336E-C7A1-4670-A76D-23FB7AA683C2,1951_1960_6,0.40,0.644,0.713,48.96,39.18,352.46,90.00,N +,5A9CAD1E-02B4-416A-8A2B-28FC684B2D85,1951_1960_6,0.40,0.644,0.713,258.53,206.88,261.43,90.00,W +,46A023A1-C717-4123-A8F8-4F59FDE90906,1951_1960_6,0.40,0.644,0.713,7.35,5.88,171.74,90.00,S +,E2B821AA-CF56-4772-B139-2A2E45C4B1AC,1951_1960_6,0.40,0.644,0.713,192.82,154.29,172.73,90.00,S +,C745040E-C9A0-4DFC-B4A2-BFECFDD6F782,1951_1960_6,0.40,0.644,0.713,258.61,206.94,82.71,90.00,E +,722EE535-59F8-459C-86DF-FC04ED4B1ECF,1951_1960_6,0.40,0.639,0.713,267.88,267.88,352.73,180.00, +,B42C17B9-CDE9-4AA6-A608-58E472156EA4,1951_1960_6,0.40,0.649,0.713,267.88,267.88,352.72,0.00, +,599DDAFE-05D0-4109-95CE-DE3EBED73B0D,1931_1940_6,0.40,0.644,0.713,82.69,66.17,271.16,90.00,W +,6F211D24-7240-45A4-9703-6C5ECC418C18,1931_1940_6,0.40,0.644,0.713,19.72,15.78,1.18,90.00,N +,10FD8236-5A16-420C-A5AD-A68E14113A8B,1931_1940_6,0.40,0.644,0.713,56.36,45.10,271.29,90.00,W +,C4243B0E-E920-4574-8939-DD4D085BED74,1931_1940_6,0.40,0.644,0.713,19.82,15.86,181.00,90.00,S +,0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7,1931_1940_6,0.40,0.644,0.713,102.51,82.03,271.20,90.00,W +,46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5,1931_1940_6,0.40,0.644,0.713,89.33,71.48,181.12,90.00,S +,354B85ED-25E9-42C0-946E-4C58060A8A00,1931_1940_6,0.40,0.644,0.713,29.09,23.28,271.28,90.00,W +,9E9DA797-CC1E-48BF-8E23-A231998F53E2,1931_1940_6,0.40,0.644,0.713,100.99,80.81,181.15,90.00,S +,FCB0588B-666A-4E8C-9463-ED51C74F81EC,1931_1940_6,0.40,0.644,0.713,270.65,216.57,91.15,90.00,E +,426595E5-9869-4F33-B127-B84B81832942,1931_1940_6,0.40,0.644,0.713,190.13,152.14,1.12,90.00,N +,2D7767FE-E37D-46E7-A553-9AA51A1144E5,1931_1940_6,0.40,0.639,0.713,295.74,295.74,1.15,180.00, +,9598F6EF-79B4-4CF3-8B76-48CE29EDEF6A,1931_1940_6,0.40,0.649,0.713,295.74,295.74,1.12,0.00, +,7F06A2B0-0BB3-4130-A75B-7250E42F201B,1931_1940_6,0.40,0.644,0.713,118.14,94.53,85.51,90.00,E +,450F3DB3-8760-4787-BBB3-924821484118,1931_1940_6,0.40,0.644,0.713,270.12,216.15,355.50,90.00,N +,F25915C6-4F50-4B01-A49C-744F4BF29195,1931_1940_6,0.40,0.644,0.713,267.13,213.76,263.08,90.00,W +,98708C6F-724B-4F3D-89FD-224C9FE79EE0,1931_1940_6,0.40,0.644,0.713,0.82,0.66,249.05,90.00,W +,4CB616F6-4B22-4735-BB7F-27A2E0F9945A,1931_1940_6,0.40,0.644,0.713,45.51,36.42,174.26,90.00,S +,160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0,1931_1940_6,0.40,0.644,0.713,112.20,89.78,264.27,90.00,W +,818EB98B-ACF9-4C03-9723-B9055EC2B832,1931_1940_6,0.40,0.644,0.713,203.01,162.45,174.32,90.00,S +,35DEF65B-3D94-4F14-9A79-F0B95D42801D,1931_1940_6,0.40,0.644,0.713,7.70,6.16,174.91,90.00,S +,7DC475D9-EABB-47CC-A185-8654F6E40FD5,1931_1940_6,0.40,0.644,0.713,256.46,205.22,85.51,90.00,E +,CB11D0A5-9BB3-4223-BE41-FD4C5796C860,1931_1940_6,0.40,0.639,0.713,212.84,212.84,265.51,180.00, +,ADDBE425-AB46-4CB4-9CE6-11995381DC32,1931_1940_6,0.40,0.649,0.713,212.84,212.84,85.51,0.00, +,61A1A33E-9DFA-469F-A46A-3702F738DEA8,1951_1960_6,0.40,0.644,0.713,167.53,134.06,356.09,90.00,N +,6D22CC13-3522-4AB6-AF7F-5C066CE69F22,1951_1960_6,0.40,0.644,0.713,225.54,180.47,266.05,90.00,W +,31693DD6-3456-4DFD-B7FD-12BEBC85E52B,1951_1960_6,0.40,0.644,0.713,58.26,46.62,176.03,90.00,S +,1999F20F-4ACE-47CC-9C25-773A3A4AD134,1951_1960_6,0.40,0.644,0.713,37.15,29.72,266.55,90.00,W +,2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1,1951_1960_6,0.40,0.644,0.713,109.37,87.52,176.10,90.00,S +,190A77D0-DD84-4037-A9CC-F2DE98C48F6A,1951_1960_6,0.40,0.644,0.713,262.62,210.15,86.10,90.00,E +,F862A00A-0A07-495E-8DB5-3C87DC9624F6,1951_1960_6,0.40,0.639,0.713,247.41,247.41,356.10,180.00, +,285A742A-279A-402F-AB7F-228236284EDC,1951_1960_6,0.40,0.649,0.713,247.41,247.41,356.09,0.00, +,B5132EAD-74EF-4BBE-995E-E5B024DEC326,1921_1930_6,0.40,0.644,0.713,3.58,2.86,359.04,90.00,N +,A32A358C-9091-4864-888C-409CD26814AC,1921_1930_6,0.40,0.644,0.713,155.86,124.72,270.08,90.00,W +,FE2D1D14-2C13-42E2-856C-43EEBBA4797F,1921_1930_6,0.40,0.644,0.713,19.81,15.85,0.33,90.00,N +,FB842419-964D-4916-809F-E199CE2B5EE7,1921_1930_6,0.40,0.644,0.713,232.12,185.74,269.03,90.00,W +,5E60549C-50B0-4407-847A-5861932914F1,1921_1930_6,0.40,0.644,0.713,8.32,6.66,269.69,90.00,W +,7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC,1921_1930_6,0.40,0.644,0.713,28.28,22.63,176.54,90.00,S +,C3FD65E7-FC14-4D33-BF52-23D74DED88EB,1921_1930_6,0.40,0.644,0.713,74.91,59.95,266.64,90.00,W +,1E1C1899-DCC9-48A1-8898-28E04A7C3EC1,1921_1930_6,0.40,0.644,0.713,64.65,51.73,176.50,90.00,S +,1DF220C8-4594-4350-9194-965640B21272,1921_1930_6,0.40,0.644,0.713,67.01,53.62,266.55,90.00,W +,E3F35249-C2BC-40A8-8619-F5D02B444417,1921_1930_6,0.40,0.644,0.713,6.52,5.22,268.41,90.00,W +,56880703-96A6-4B3B-9F17-1EF482557D81,1921_1930_6,0.40,0.644,0.713,70.88,56.72,175.70,90.00,S +,62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D,1921_1930_6,0.40,0.644,0.713,5.31,4.25,180.60,90.00,S +,30B5B4E4-D837-4205-A13C-99E472FD70E3,1921_1930_6,0.40,0.644,0.713,323.58,258.93,90.21,90.00,E +,D3DFE970-7DDD-4066-9A44-E5C431173B04,1921_1930_6,0.40,0.644,0.713,45.44,36.37,0.74,90.00,N +,2494EF78-8FD5-40F6-9649-8207E7B72419,1921_1930_6,0.40,0.644,0.713,192.80,154.28,90.76,90.00,E +,7A4499E2-1610-41D5-A38D-F92C1A44A441,1921_1930_6,0.40,0.644,0.713,39.32,31.46,180.96,90.00,S +,6C2CE294-611F-40A0-9C3A-76312D4E1B96,1921_1930_6,0.40,0.644,0.713,21.41,17.14,90.82,90.00,E +,4B74B268-1555-4305-866B-12071073CC37,1921_1930_6,0.40,0.644,0.713,5.65,4.52,87.98,90.00,E +,BDF88111-FFAD-4314-844F-C6A6D18AE56E,1921_1930_6,0.40,0.644,0.713,155.75,124.63,356.37,90.00,N +,8959B441-1442-4920-8EDD-830232168C72,1921_1930_6,0.40,0.639,0.713,391.13,391.13,270.82,180.00, +,380DA066-26FF-4F1F-A7A1-9CB7F56001CC,1921_1930_6,0.40,0.649,0.713,391.13,391.13,0.74,0.00, +,952B28B4-7695-4D41-BB4E-6580FD5066D3,1931_1940_6,0.40,0.644,0.713,90.63,72.52,270.19,90.00,W +,EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA,1931_1940_6,0.40,0.644,0.713,18.16,14.54,0.40,90.00,N +,EA6EB60C-30F4-4A3A-BE41-C8CC35D59739,1931_1940_6,0.40,0.644,0.713,55.90,44.73,270.20,90.00,W +,9EE15C27-2220-4FBE-BCDC-A3B45C9266FE,1931_1940_6,0.40,0.644,0.713,15.76,12.61,359.70,90.00,N +,0CA6079F-2460-4171-B8E4-A118F26EA721,1931_1940_6,0.40,0.644,0.713,135.81,108.67,270.54,90.00,W +,61690A0C-0A54-44AC-BFE6-5965FA8DA5D2,1931_1940_6,0.40,0.644,0.713,214.93,171.99,180.49,90.00,S +,C62DAAD5-AF76-47A2-9CCC-D8B9953782D2,1931_1940_6,0.40,0.644,0.713,19.63,15.71,170.75,90.00,S +,5EBADD8B-8F48-4111-8F9F-0F5461F63407,1931_1940_6,0.40,0.644,0.713,280.15,224.18,90.56,90.00,E +,83560D6B-A3C1-4E5C-982E-ED16148D6524,1931_1940_6,0.40,0.644,0.713,201.35,161.12,0.24,90.00,N +,1FA1F75A-E592-40CE-ABAC-C52374614494,1931_1940_6,0.40,0.639,0.713,277.25,277.25,350.75,180.00, +,B482EFB1-B0D1-492D-A5EE-CD0CC081F215,1931_1940_6,0.40,0.649,0.713,277.25,277.25,0.24,0.00, +,0D1675B6-30BE-4315-95F6-432607EF6038,1931_1940_6,0.40,0.644,0.713,5.65,4.52,89.31,90.00,E +,44CF0901-3097-4000-8843-4F2A7BDC1148,1931_1940_6,0.40,0.644,0.713,171.16,136.96,358.27,90.00,N +,05D3478F-F729-444F-8D57-638778BE8FA6,1931_1940_6,0.40,0.644,0.713,7.88,6.31,358.68,90.00,N +,CEBF8668-AE77-42F8-83FA-A52CCE144CC3,1931_1940_6,0.40,0.644,0.713,83.53,66.84,266.89,90.00,W +,716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3,1931_1940_6,0.40,0.644,0.713,58.49,46.80,176.46,90.00,S +,83FF1247-78C4-4B4A-A96D-1C1D1848C089,1931_1940_6,0.40,0.644,0.713,149.78,119.86,266.84,90.00,W +,B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B,1931_1940_6,0.40,0.644,0.713,63.49,50.81,176.51,90.00,S +,42B7433D-B004-4BAB-9ABE-EA1B57133101,1931_1940_6,0.40,0.644,0.713,2.23,1.78,72.71,90.00,E +,779AFBD5-0E07-4533-9528-8573168E8F7D,1931_1940_6,0.40,0.644,0.713,43.81,35.06,89.15,90.00,E +,F5B25E62-443C-4A74-AEB8-A7D79618EAE9,1931_1940_6,0.40,0.644,0.713,46.42,37.14,179.16,90.00,S +,050515B0-F2A7-47E2-A583-AF29A662B779,1931_1940_6,0.40,0.644,0.713,6.22,4.98,178.52,90.00,S +,C7B741E8-43F0-4A31-9813-8F71CE72E68A,1931_1940_6,0.40,0.644,0.713,178.55,142.88,87.80,90.00,E +,F331A652-4C5A-45D8-8C2E-D344315DBCD9,1931_1940_6,0.40,0.639,0.713,205.94,205.94,267.80,180.00, +,E7536F9F-5C12-465C-9BDE-B440C58085B2,1931_1940_6,0.40,0.649,0.713,205.94,205.94,89.31,0.00, Opaque Interior @@ -454,81 +454,81 @@ Opaque Interior Exterior Fenestration ,,Construction,Glass Area [m2],Frame Area [m2],Divider Area [m2],Area of One Opening [m2],Area of Multiplied Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Frame Conductance [W/m2-K],Divider Conductance [W/m2-K],Shade Control,Parent Surface,Azimuth [deg],Tilt [deg],Cardinal Direction -,A31B7A34-87DA-44C3-B425-1123BF5F537E WINDOW,WINDOW_CONSTRUCTION_1,44.11,0.00,0.00,44.11,44.11,2.954,0.391,0.305,,,No,A31B7A34-87DA-44C3-B425-1123BF5F537E,0.55,90.00,N -,FEAA02B7-346C-4E97-91A6-2307D00AA8E7 WINDOW,WINDOW_CONSTRUCTION_1,38.17,0.00,0.00,38.17,38.17,2.954,0.391,0.305,,,No,FEAA02B7-346C-4E97-91A6-2307D00AA8E7,270.50,90.00,W -,E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 WINDOW,WINDOW_CONSTRUCTION_1,44.09,0.00,0.00,44.09,44.09,2.954,0.391,0.305,,,No,E853F7A4-3EDF-4174-A4CD-BA9830BC3A35,180.51,90.00,S -,F0C194C6-ECC0-4215-B107-1A3503E6A3B9 WINDOW,WINDOW_CONSTRUCTION_1,38.15,0.00,0.00,38.15,38.15,2.954,0.391,0.305,,,No,F0C194C6-ECC0-4215-B107-1A3503E6A3B9,90.52,90.00,E -,086891C7-387B-4226-955B-62212750F40D WINDOW,WINDOW_CONSTRUCTION_1,31.37,0.00,0.00,31.37,31.37,2.954,0.391,0.305,,,No,086891C7-387B-4226-955B-62212750F40D,352.72,90.00,N -,53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F WINDOW,WINDOW_CONSTRUCTION_1,9.78,0.00,0.00,9.78,9.78,2.954,0.391,0.305,,,No,53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F,352.46,90.00,N -,9B49FE0D-6366-4465-9E8F-C43C0F3B458B WINDOW,WINDOW_CONSTRUCTION_1,51.65,0.00,0.00,51.65,51.65,2.954,0.391,0.305,,,No,9B49FE0D-6366-4465-9E8F-C43C0F3B458B,261.43,90.00,W -,51C15BBC-CC98-49F0-8EA8-241A8C0CD323 WINDOW,WINDOW_CONSTRUCTION_1,1.47,0.00,0.00,1.47,1.47,2.954,0.391,0.305,,,No,51C15BBC-CC98-49F0-8EA8-241A8C0CD323,171.74,90.00,S -,A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 WINDOW,WINDOW_CONSTRUCTION_1,38.52,0.00,0.00,38.52,38.52,2.954,0.391,0.305,,,No,A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7,172.73,90.00,S -,4B199B3D-4726-4307-A2F7-EC05CCA3D88B WINDOW,WINDOW_CONSTRUCTION_1,51.67,0.00,0.00,51.67,51.67,2.954,0.391,0.305,,,No,4B199B3D-4726-4307-A2F7-EC05CCA3D88B,82.71,90.00,E -,2497C0B0-80A1-4A6C-AA3A-BB349C44591C WINDOW,WINDOW_CONSTRUCTION_1,16.52,0.00,0.00,16.52,16.52,2.954,0.391,0.305,,,No,2497C0B0-80A1-4A6C-AA3A-BB349C44591C,271.16,90.00,W -,7EF81AE6-421D-417B-A884-09D139DF7392 WINDOW,WINDOW_CONSTRUCTION_1,3.94,0.00,0.00,3.94,3.94,2.954,0.391,0.305,,,No,7EF81AE6-421D-417B-A884-09D139DF7392,1.18,90.00,N -,95999F8C-7787-41FB-842E-57924FB8CE6E WINDOW,WINDOW_CONSTRUCTION_1,11.26,0.00,0.00,11.26,11.26,2.954,0.391,0.305,,,No,95999F8C-7787-41FB-842E-57924FB8CE6E,271.29,90.00,W -,D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 WINDOW,WINDOW_CONSTRUCTION_1,3.96,0.00,0.00,3.96,3.96,2.954,0.391,0.305,,,No,D1EFC40F-397A-4C21-8AFF-6EBC399ACF58,181.00,90.00,S -,23262692-375A-4D61-A4DD-A2C5DD21B7B0 WINDOW,WINDOW_CONSTRUCTION_1,20.48,0.00,0.00,20.48,20.48,2.954,0.391,0.305,,,No,23262692-375A-4D61-A4DD-A2C5DD21B7B0,271.20,90.00,W -,E65207B0-7C54-4BE8-9FD4-90349A283029 WINDOW,WINDOW_CONSTRUCTION_1,17.85,0.00,0.00,17.85,17.85,2.954,0.391,0.305,,,No,E65207B0-7C54-4BE8-9FD4-90349A283029,181.12,90.00,S -,35A8EF37-0672-4B38-9AC0-59954B845C8A WINDOW,WINDOW_CONSTRUCTION_1,5.81,0.00,0.00,5.81,5.81,2.954,0.391,0.305,,,No,35A8EF37-0672-4B38-9AC0-59954B845C8A,271.28,90.00,W -,6C4CAD38-03A2-4F52-B991-5094FD62D4DD WINDOW,WINDOW_CONSTRUCTION_1,20.18,0.00,0.00,20.18,20.18,2.954,0.391,0.305,,,No,6C4CAD38-03A2-4F52-B991-5094FD62D4DD,181.15,90.00,S -,02D8231C-67A9-4126-B084-58E3FF3B0A8A WINDOW,WINDOW_CONSTRUCTION_1,54.07,0.00,0.00,54.07,54.07,2.954,0.391,0.305,,,No,02D8231C-67A9-4126-B084-58E3FF3B0A8A,91.15,90.00,E -,9F6D9821-892E-442A-9D43-9C44B45FEFC3 WINDOW,WINDOW_CONSTRUCTION_1,37.99,0.00,0.00,37.99,37.99,2.954,0.391,0.305,,,No,9F6D9821-892E-442A-9D43-9C44B45FEFC3,1.12,90.00,N -,207070E8-9AFA-4626-98C7-E22D5E77D302 WINDOW,WINDOW_CONSTRUCTION_1,23.60,0.00,0.00,23.60,23.60,2.954,0.391,0.305,,,No,207070E8-9AFA-4626-98C7-E22D5E77D302,85.51,90.00,E -,904A3A7E-E83F-4043-BA36-468E01BB63FB WINDOW,WINDOW_CONSTRUCTION_1,53.97,0.00,0.00,53.97,53.97,2.954,0.391,0.305,,,No,904A3A7E-E83F-4043-BA36-468E01BB63FB,355.50,90.00,N -,6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 WINDOW,WINDOW_CONSTRUCTION_1,53.37,0.00,0.00,53.37,53.37,2.954,0.391,0.305,,,No,6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70,263.08,90.00,W -,8C57F4E5-1BC6-4892-9143-43504A1AA3B7 WINDOW,WINDOW_CONSTRUCTION_1,0.16,0.00,0.00,0.16,0.16,2.954,0.391,0.305,,,No,8C57F4E5-1BC6-4892-9143-43504A1AA3B7,249.05,90.00,W -,5BCCD2AC-041C-45D2-86AB-72637853703F WINDOW,WINDOW_CONSTRUCTION_1,9.09,0.00,0.00,9.09,9.09,2.954,0.391,0.305,,,No,5BCCD2AC-041C-45D2-86AB-72637853703F,174.26,90.00,S -,D4F29A65-02EE-44F2-A74B-C18D73B71EDA WINDOW,WINDOW_CONSTRUCTION_1,22.42,0.00,0.00,22.42,22.42,2.954,0.391,0.305,,,No,D4F29A65-02EE-44F2-A74B-C18D73B71EDA,264.27,90.00,W -,FC904495-FE25-4E1B-832F-41A45E117691 WINDOW,WINDOW_CONSTRUCTION_1,40.56,0.00,0.00,40.56,40.56,2.954,0.391,0.305,,,No,FC904495-FE25-4E1B-832F-41A45E117691,174.32,90.00,S -,B286E9D1-994F-418F-B830-754CB313793D WINDOW,WINDOW_CONSTRUCTION_1,1.54,0.00,0.00,1.54,1.54,2.954,0.391,0.305,,,No,B286E9D1-994F-418F-B830-754CB313793D,174.91,90.00,S -,1509551C-3BB9-46F6-81DD-E9A8E893CF2E WINDOW,WINDOW_CONSTRUCTION_1,51.24,0.00,0.00,51.24,51.24,2.954,0.391,0.305,,,No,1509551C-3BB9-46F6-81DD-E9A8E893CF2E,85.51,90.00,E -,8314F1A8-6A53-4847-B682-B4D052085096 WINDOW,WINDOW_CONSTRUCTION_1,33.47,0.00,0.00,33.47,33.47,2.954,0.391,0.305,,,No,8314F1A8-6A53-4847-B682-B4D052085096,356.09,90.00,N -,8F619FC1-A55A-4DCC-B210-248561825E41 WINDOW,WINDOW_CONSTRUCTION_1,45.06,0.00,0.00,45.06,45.06,2.954,0.391,0.305,,,No,8F619FC1-A55A-4DCC-B210-248561825E41,266.05,90.00,W -,F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC WINDOW,WINDOW_CONSTRUCTION_1,11.64,0.00,0.00,11.64,11.64,2.954,0.391,0.305,,,No,F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC,176.03,90.00,S -,060DED99-1508-4619-9CEA-0110F324D0F2 WINDOW,WINDOW_CONSTRUCTION_1,7.42,0.00,0.00,7.42,7.42,2.954,0.391,0.305,,,No,060DED99-1508-4619-9CEA-0110F324D0F2,266.55,90.00,W -,A4833F7A-0137-432B-9CAF-D5B61B75C7E8 WINDOW,WINDOW_CONSTRUCTION_1,21.85,0.00,0.00,21.85,21.85,2.954,0.391,0.305,,,No,A4833F7A-0137-432B-9CAF-D5B61B75C7E8,176.10,90.00,S -,FBC4E947-E747-41BE-98C3-409BD3BF593E WINDOW,WINDOW_CONSTRUCTION_1,52.47,0.00,0.00,52.47,52.47,2.954,0.391,0.305,,,No,FBC4E947-E747-41BE-98C3-409BD3BF593E,86.10,90.00,E -,8469DA8E-4F42-4197-A645-365E7A06294D WINDOW,WINDOW_CONSTRUCTION_1,0.71,0.00,0.00,0.71,0.71,2.954,0.391,0.305,,,No,8469DA8E-4F42-4197-A645-365E7A06294D,359.04,90.00,N -,0B13DA9E-94D8-45EA-BC8C-8F36085D727F WINDOW,WINDOW_CONSTRUCTION_1,31.14,0.00,0.00,31.14,31.14,2.954,0.391,0.305,,,No,0B13DA9E-94D8-45EA-BC8C-8F36085D727F,270.08,90.00,W -,066A7A13-B738-4F65-975F-11A83BF5CD2B WINDOW,WINDOW_CONSTRUCTION_1,3.96,0.00,0.00,3.96,3.96,2.954,0.391,0.305,,,No,066A7A13-B738-4F65-975F-11A83BF5CD2B,0.33,90.00,N -,D6D89EE8-5294-4637-A513-543A1C9E1803 WINDOW,WINDOW_CONSTRUCTION_1,46.38,0.00,0.00,46.38,46.38,2.954,0.391,0.305,,,No,D6D89EE8-5294-4637-A513-543A1C9E1803,269.03,90.00,W -,685DB9BA-8B51-4A67-8F2A-9963A37C5510 WINDOW,WINDOW_CONSTRUCTION_1,1.66,0.00,0.00,1.66,1.66,2.954,0.391,0.305,,,No,685DB9BA-8B51-4A67-8F2A-9963A37C5510,269.69,90.00,W -,EC035472-9DAA-4E36-8FF4-92501F8FBB4F WINDOW,WINDOW_CONSTRUCTION_1,5.65,0.00,0.00,5.65,5.65,2.954,0.391,0.305,,,No,EC035472-9DAA-4E36-8FF4-92501F8FBB4F,176.54,90.00,S -,C73A0B58-396A-4617-ABCF-0454A7647321 WINDOW,WINDOW_CONSTRUCTION_1,14.97,0.00,0.00,14.97,14.97,2.954,0.391,0.305,,,No,C73A0B58-396A-4617-ABCF-0454A7647321,266.64,90.00,W -,A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 WINDOW,WINDOW_CONSTRUCTION_1,12.92,0.00,0.00,12.92,12.92,2.954,0.391,0.305,,,No,A3A28AB7-5EDA-48C8-9870-BCB88B3AE469,176.50,90.00,S -,EC059D37-2D87-4B09-A2F0-F48893C58D74 WINDOW,WINDOW_CONSTRUCTION_1,13.39,0.00,0.00,13.39,13.39,2.954,0.391,0.305,,,No,EC059D37-2D87-4B09-A2F0-F48893C58D74,266.55,90.00,W -,032B678D-FBD1-4F19-81C7-1EC8CF63EA68 WINDOW,WINDOW_CONSTRUCTION_1,1.30,0.00,0.00,1.30,1.30,2.954,0.391,0.305,,,No,032B678D-FBD1-4F19-81C7-1EC8CF63EA68,268.41,90.00,W -,1311CD62-6809-4F52-85B8-2815515C84E3 WINDOW,WINDOW_CONSTRUCTION_1,14.16,0.00,0.00,14.16,14.16,2.954,0.391,0.305,,,No,1311CD62-6809-4F52-85B8-2815515C84E3,175.70,90.00,S -,88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 WINDOW,WINDOW_CONSTRUCTION_1,1.06,0.00,0.00,1.06,1.06,2.954,0.391,0.305,,,No,88FE6E02-3BC5-415E-B0D1-E18FB9DAE858,180.60,90.00,S -,B92ABBD8-9D06-41F7-889C-306C35CF7F95 WINDOW,WINDOW_CONSTRUCTION_1,64.65,0.00,0.00,64.65,64.65,2.954,0.391,0.305,,,No,B92ABBD8-9D06-41F7-889C-306C35CF7F95,90.21,90.00,E -,4BA2DC04-F061-484D-990D-99D39DED0BB8 WINDOW,WINDOW_CONSTRUCTION_1,9.08,0.00,0.00,9.08,9.08,2.954,0.391,0.305,,,No,4BA2DC04-F061-484D-990D-99D39DED0BB8,0.74,90.00,N -,2288E19B-D4B5-44B7-A6A2-261CFC7F365C WINDOW,WINDOW_CONSTRUCTION_1,38.52,0.00,0.00,38.52,38.52,2.954,0.391,0.305,,,No,2288E19B-D4B5-44B7-A6A2-261CFC7F365C,90.76,90.00,E -,3744A296-AC57-41FA-A71D-0C3470CB5F14 WINDOW,WINDOW_CONSTRUCTION_1,7.86,0.00,0.00,7.86,7.86,2.954,0.391,0.305,,,No,3744A296-AC57-41FA-A71D-0C3470CB5F14,180.96,90.00,S -,F31E4707-5001-4563-A5A4-DF762203E639 WINDOW,WINDOW_CONSTRUCTION_1,4.28,0.00,0.00,4.28,4.28,2.954,0.391,0.305,,,No,F31E4707-5001-4563-A5A4-DF762203E639,90.82,90.00,E -,31CA4D09-DBCC-4A4D-8A19-832A531B617E WINDOW,WINDOW_CONSTRUCTION_1,1.13,0.00,0.00,1.13,1.13,2.954,0.391,0.305,,,No,31CA4D09-DBCC-4A4D-8A19-832A531B617E,87.98,90.00,E -,354373D3-76F3-483D-9842-74F52495C95C WINDOW,WINDOW_CONSTRUCTION_1,31.12,0.00,0.00,31.12,31.12,2.954,0.391,0.305,,,No,354373D3-76F3-483D-9842-74F52495C95C,356.37,90.00,N -,234E6101-B193-4537-8C3C-89FE6C1C5B4B WINDOW,WINDOW_CONSTRUCTION_1,18.11,0.00,0.00,18.11,18.11,2.954,0.391,0.305,,,No,234E6101-B193-4537-8C3C-89FE6C1C5B4B,270.19,90.00,W -,69777C37-5C29-4E64-BDC8-2187F5601DFE WINDOW,WINDOW_CONSTRUCTION_1,3.63,0.00,0.00,3.63,3.63,2.954,0.391,0.305,,,No,69777C37-5C29-4E64-BDC8-2187F5601DFE,0.40,90.00,N -,5BDF1462-AF7C-4F06-87D5-93687C433DDD WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,5BDF1462-AF7C-4F06-87D5-93687C433DDD,270.20,90.00,W -,F44D8577-64E0-4369-8209-CD922ECE416D WINDOW,WINDOW_CONSTRUCTION_1,3.15,0.00,0.00,3.15,3.15,2.954,0.391,0.305,,,No,F44D8577-64E0-4369-8209-CD922ECE416D,359.70,90.00,N -,0EA016B3-F825-45B6-9898-E4594818013C WINDOW,WINDOW_CONSTRUCTION_1,27.13,0.00,0.00,27.13,27.13,2.954,0.391,0.305,,,No,0EA016B3-F825-45B6-9898-E4594818013C,270.54,90.00,W -,53CD4B62-9F88-4ABE-821A-041EE0CE1E5B WINDOW,WINDOW_CONSTRUCTION_1,42.94,0.00,0.00,42.94,42.94,2.954,0.391,0.305,,,No,53CD4B62-9F88-4ABE-821A-041EE0CE1E5B,180.49,90.00,S -,36010500-DEEF-411A-BDAD-F9D9081D9D3B WINDOW,WINDOW_CONSTRUCTION_1,3.92,0.00,0.00,3.92,3.92,2.954,0.391,0.305,,,No,36010500-DEEF-411A-BDAD-F9D9081D9D3B,170.75,90.00,S -,A649C3E6-4C83-4D7D-8085-CA69227CE408 WINDOW,WINDOW_CONSTRUCTION_1,55.97,0.00,0.00,55.97,55.97,2.954,0.391,0.305,,,No,A649C3E6-4C83-4D7D-8085-CA69227CE408,90.56,90.00,E -,BA59DBE4-1F28-43B0-9666-E348B0352D6A WINDOW,WINDOW_CONSTRUCTION_1,40.23,0.00,0.00,40.23,40.23,2.954,0.391,0.305,,,No,BA59DBE4-1F28-43B0-9666-E348B0352D6A,0.24,90.00,N -,47A5E611-5DB5-4345-B925-F0ABA9A7F655 WINDOW,WINDOW_CONSTRUCTION_1,1.13,0.00,0.00,1.13,1.13,2.954,0.391,0.305,,,No,47A5E611-5DB5-4345-B925-F0ABA9A7F655,89.31,90.00,E -,D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF WINDOW,WINDOW_CONSTRUCTION_1,34.20,0.00,0.00,34.20,34.20,2.954,0.391,0.305,,,No,D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF,358.27,90.00,N -,E2E667EC-7877-4C1F-A326-DA1ACEE6236B WINDOW,WINDOW_CONSTRUCTION_1,1.58,0.00,0.00,1.58,1.58,2.954,0.391,0.305,,,No,E2E667EC-7877-4C1F-A326-DA1ACEE6236B,358.68,90.00,N -,327FA205-EE88-42C3-98B8-C9F40570608F WINDOW,WINDOW_CONSTRUCTION_1,16.69,0.00,0.00,16.69,16.69,2.954,0.391,0.305,,,No,327FA205-EE88-42C3-98B8-C9F40570608F,266.89,90.00,W -,4909BD4B-64B0-455F-9F41-7B847D8EFD0E WINDOW,WINDOW_CONSTRUCTION_1,11.69,0.00,0.00,11.69,11.69,2.954,0.391,0.305,,,No,4909BD4B-64B0-455F-9F41-7B847D8EFD0E,176.46,90.00,S -,7294D66E-272D-45B0-B3D5-498CB6D9005D WINDOW,WINDOW_CONSTRUCTION_1,29.93,0.00,0.00,29.93,29.93,2.954,0.391,0.305,,,No,7294D66E-272D-45B0-B3D5-498CB6D9005D,266.84,90.00,W -,AB27E866-0C52-46FA-882B-8A7C2F18BCA9 WINDOW,WINDOW_CONSTRUCTION_1,12.69,0.00,0.00,12.69,12.69,2.954,0.391,0.305,,,No,AB27E866-0C52-46FA-882B-8A7C2F18BCA9,176.51,90.00,S -,1378D302-9F65-44A3-96B6-26F66BBD6ABB WINDOW,WINDOW_CONSTRUCTION_1,0.44,0.00,0.00,0.44,0.44,2.954,0.391,0.305,,,No,1378D302-9F65-44A3-96B6-26F66BBD6ABB,72.71,90.00,E -,BE80FF74-DA6B-47EA-912D-95830F2F5AFC WINDOW,WINDOW_CONSTRUCTION_1,8.75,0.00,0.00,8.75,8.75,2.954,0.391,0.305,,,No,BE80FF74-DA6B-47EA-912D-95830F2F5AFC,89.15,90.00,E -,A102BE68-0A63-4582-8246-03D675A04440 WINDOW,WINDOW_CONSTRUCTION_1,9.27,0.00,0.00,9.27,9.27,2.954,0.391,0.305,,,No,A102BE68-0A63-4582-8246-03D675A04440,179.16,90.00,S -,59DF3602-265E-4DA0-851C-21F9955D55D1 WINDOW,WINDOW_CONSTRUCTION_1,1.24,0.00,0.00,1.24,1.24,2.954,0.391,0.305,,,No,59DF3602-265E-4DA0-851C-21F9955D55D1,178.52,90.00,S -,AAF52CEF-F41F-4E17-A34B-327EABEC2C17 WINDOW,WINDOW_CONSTRUCTION_1,35.67,0.00,0.00,35.67,35.67,2.954,0.391,0.305,,,No,AAF52CEF-F41F-4E17-A34B-327EABEC2C17,87.80,90.00,E +,69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 WINDOW,WINDOW_CONSTRUCTION_1,44.11,0.00,0.00,44.11,44.11,2.954,0.391,0.305,,,No,69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25,0.55,90.00,N +,FA5D8F82-C017-4D84-AF6F-666F3B3C7231 WINDOW,WINDOW_CONSTRUCTION_1,38.17,0.00,0.00,38.17,38.17,2.954,0.391,0.305,,,No,FA5D8F82-C017-4D84-AF6F-666F3B3C7231,270.50,90.00,W +,803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 WINDOW,WINDOW_CONSTRUCTION_1,44.09,0.00,0.00,44.09,44.09,2.954,0.391,0.305,,,No,803B99AE-C0AB-4B2B-AF4F-F047F25DAD06,180.51,90.00,S +,1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 WINDOW,WINDOW_CONSTRUCTION_1,38.15,0.00,0.00,38.15,38.15,2.954,0.391,0.305,,,No,1FCAD96E-6BA1-49A3-86D2-3496A2BD8804,90.52,90.00,E +,014478EF-53CF-472B-BD40-B30E67B1DEFE WINDOW,WINDOW_CONSTRUCTION_1,31.37,0.00,0.00,31.37,31.37,2.954,0.391,0.305,,,No,014478EF-53CF-472B-BD40-B30E67B1DEFE,352.72,90.00,N +,C895336E-C7A1-4670-A76D-23FB7AA683C2 WINDOW,WINDOW_CONSTRUCTION_1,9.78,0.00,0.00,9.78,9.78,2.954,0.391,0.305,,,No,C895336E-C7A1-4670-A76D-23FB7AA683C2,352.46,90.00,N +,5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 WINDOW,WINDOW_CONSTRUCTION_1,51.65,0.00,0.00,51.65,51.65,2.954,0.391,0.305,,,No,5A9CAD1E-02B4-416A-8A2B-28FC684B2D85,261.43,90.00,W +,46A023A1-C717-4123-A8F8-4F59FDE90906 WINDOW,WINDOW_CONSTRUCTION_1,1.47,0.00,0.00,1.47,1.47,2.954,0.391,0.305,,,No,46A023A1-C717-4123-A8F8-4F59FDE90906,171.74,90.00,S +,E2B821AA-CF56-4772-B139-2A2E45C4B1AC WINDOW,WINDOW_CONSTRUCTION_1,38.52,0.00,0.00,38.52,38.52,2.954,0.391,0.305,,,No,E2B821AA-CF56-4772-B139-2A2E45C4B1AC,172.73,90.00,S +,C745040E-C9A0-4DFC-B4A2-BFECFDD6F782 WINDOW,WINDOW_CONSTRUCTION_1,51.67,0.00,0.00,51.67,51.67,2.954,0.391,0.305,,,No,C745040E-C9A0-4DFC-B4A2-BFECFDD6F782,82.71,90.00,E +,599DDAFE-05D0-4109-95CE-DE3EBED73B0D WINDOW,WINDOW_CONSTRUCTION_1,16.52,0.00,0.00,16.52,16.52,2.954,0.391,0.305,,,No,599DDAFE-05D0-4109-95CE-DE3EBED73B0D,271.16,90.00,W +,6F211D24-7240-45A4-9703-6C5ECC418C18 WINDOW,WINDOW_CONSTRUCTION_1,3.94,0.00,0.00,3.94,3.94,2.954,0.391,0.305,,,No,6F211D24-7240-45A4-9703-6C5ECC418C18,1.18,90.00,N +,10FD8236-5A16-420C-A5AD-A68E14113A8B WINDOW,WINDOW_CONSTRUCTION_1,11.26,0.00,0.00,11.26,11.26,2.954,0.391,0.305,,,No,10FD8236-5A16-420C-A5AD-A68E14113A8B,271.29,90.00,W +,C4243B0E-E920-4574-8939-DD4D085BED74 WINDOW,WINDOW_CONSTRUCTION_1,3.96,0.00,0.00,3.96,3.96,2.954,0.391,0.305,,,No,C4243B0E-E920-4574-8939-DD4D085BED74,181.00,90.00,S +,0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 WINDOW,WINDOW_CONSTRUCTION_1,20.48,0.00,0.00,20.48,20.48,2.954,0.391,0.305,,,No,0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7,271.20,90.00,W +,46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 WINDOW,WINDOW_CONSTRUCTION_1,17.85,0.00,0.00,17.85,17.85,2.954,0.391,0.305,,,No,46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5,181.12,90.00,S +,354B85ED-25E9-42C0-946E-4C58060A8A00 WINDOW,WINDOW_CONSTRUCTION_1,5.81,0.00,0.00,5.81,5.81,2.954,0.391,0.305,,,No,354B85ED-25E9-42C0-946E-4C58060A8A00,271.28,90.00,W +,9E9DA797-CC1E-48BF-8E23-A231998F53E2 WINDOW,WINDOW_CONSTRUCTION_1,20.18,0.00,0.00,20.18,20.18,2.954,0.391,0.305,,,No,9E9DA797-CC1E-48BF-8E23-A231998F53E2,181.15,90.00,S +,FCB0588B-666A-4E8C-9463-ED51C74F81EC WINDOW,WINDOW_CONSTRUCTION_1,54.07,0.00,0.00,54.07,54.07,2.954,0.391,0.305,,,No,FCB0588B-666A-4E8C-9463-ED51C74F81EC,91.15,90.00,E +,426595E5-9869-4F33-B127-B84B81832942 WINDOW,WINDOW_CONSTRUCTION_1,37.99,0.00,0.00,37.99,37.99,2.954,0.391,0.305,,,No,426595E5-9869-4F33-B127-B84B81832942,1.12,90.00,N +,7F06A2B0-0BB3-4130-A75B-7250E42F201B WINDOW,WINDOW_CONSTRUCTION_1,23.60,0.00,0.00,23.60,23.60,2.954,0.391,0.305,,,No,7F06A2B0-0BB3-4130-A75B-7250E42F201B,85.51,90.00,E +,450F3DB3-8760-4787-BBB3-924821484118 WINDOW,WINDOW_CONSTRUCTION_1,53.97,0.00,0.00,53.97,53.97,2.954,0.391,0.305,,,No,450F3DB3-8760-4787-BBB3-924821484118,355.50,90.00,N +,F25915C6-4F50-4B01-A49C-744F4BF29195 WINDOW,WINDOW_CONSTRUCTION_1,53.37,0.00,0.00,53.37,53.37,2.954,0.391,0.305,,,No,F25915C6-4F50-4B01-A49C-744F4BF29195,263.08,90.00,W +,98708C6F-724B-4F3D-89FD-224C9FE79EE0 WINDOW,WINDOW_CONSTRUCTION_1,0.16,0.00,0.00,0.16,0.16,2.954,0.391,0.305,,,No,98708C6F-724B-4F3D-89FD-224C9FE79EE0,249.05,90.00,W +,4CB616F6-4B22-4735-BB7F-27A2E0F9945A WINDOW,WINDOW_CONSTRUCTION_1,9.09,0.00,0.00,9.09,9.09,2.954,0.391,0.305,,,No,4CB616F6-4B22-4735-BB7F-27A2E0F9945A,174.26,90.00,S +,160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 WINDOW,WINDOW_CONSTRUCTION_1,22.42,0.00,0.00,22.42,22.42,2.954,0.391,0.305,,,No,160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0,264.27,90.00,W +,818EB98B-ACF9-4C03-9723-B9055EC2B832 WINDOW,WINDOW_CONSTRUCTION_1,40.56,0.00,0.00,40.56,40.56,2.954,0.391,0.305,,,No,818EB98B-ACF9-4C03-9723-B9055EC2B832,174.32,90.00,S +,35DEF65B-3D94-4F14-9A79-F0B95D42801D WINDOW,WINDOW_CONSTRUCTION_1,1.54,0.00,0.00,1.54,1.54,2.954,0.391,0.305,,,No,35DEF65B-3D94-4F14-9A79-F0B95D42801D,174.91,90.00,S +,7DC475D9-EABB-47CC-A185-8654F6E40FD5 WINDOW,WINDOW_CONSTRUCTION_1,51.24,0.00,0.00,51.24,51.24,2.954,0.391,0.305,,,No,7DC475D9-EABB-47CC-A185-8654F6E40FD5,85.51,90.00,E +,61A1A33E-9DFA-469F-A46A-3702F738DEA8 WINDOW,WINDOW_CONSTRUCTION_1,33.47,0.00,0.00,33.47,33.47,2.954,0.391,0.305,,,No,61A1A33E-9DFA-469F-A46A-3702F738DEA8,356.09,90.00,N +,6D22CC13-3522-4AB6-AF7F-5C066CE69F22 WINDOW,WINDOW_CONSTRUCTION_1,45.06,0.00,0.00,45.06,45.06,2.954,0.391,0.305,,,No,6D22CC13-3522-4AB6-AF7F-5C066CE69F22,266.05,90.00,W +,31693DD6-3456-4DFD-B7FD-12BEBC85E52B WINDOW,WINDOW_CONSTRUCTION_1,11.64,0.00,0.00,11.64,11.64,2.954,0.391,0.305,,,No,31693DD6-3456-4DFD-B7FD-12BEBC85E52B,176.03,90.00,S +,1999F20F-4ACE-47CC-9C25-773A3A4AD134 WINDOW,WINDOW_CONSTRUCTION_1,7.42,0.00,0.00,7.42,7.42,2.954,0.391,0.305,,,No,1999F20F-4ACE-47CC-9C25-773A3A4AD134,266.55,90.00,W +,2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 WINDOW,WINDOW_CONSTRUCTION_1,21.85,0.00,0.00,21.85,21.85,2.954,0.391,0.305,,,No,2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1,176.10,90.00,S +,190A77D0-DD84-4037-A9CC-F2DE98C48F6A WINDOW,WINDOW_CONSTRUCTION_1,52.47,0.00,0.00,52.47,52.47,2.954,0.391,0.305,,,No,190A77D0-DD84-4037-A9CC-F2DE98C48F6A,86.10,90.00,E +,B5132EAD-74EF-4BBE-995E-E5B024DEC326 WINDOW,WINDOW_CONSTRUCTION_1,0.71,0.00,0.00,0.71,0.71,2.954,0.391,0.305,,,No,B5132EAD-74EF-4BBE-995E-E5B024DEC326,359.04,90.00,N +,A32A358C-9091-4864-888C-409CD26814AC WINDOW,WINDOW_CONSTRUCTION_1,31.14,0.00,0.00,31.14,31.14,2.954,0.391,0.305,,,No,A32A358C-9091-4864-888C-409CD26814AC,270.08,90.00,W +,FE2D1D14-2C13-42E2-856C-43EEBBA4797F WINDOW,WINDOW_CONSTRUCTION_1,3.96,0.00,0.00,3.96,3.96,2.954,0.391,0.305,,,No,FE2D1D14-2C13-42E2-856C-43EEBBA4797F,0.33,90.00,N +,FB842419-964D-4916-809F-E199CE2B5EE7 WINDOW,WINDOW_CONSTRUCTION_1,46.38,0.00,0.00,46.38,46.38,2.954,0.391,0.305,,,No,FB842419-964D-4916-809F-E199CE2B5EE7,269.03,90.00,W +,5E60549C-50B0-4407-847A-5861932914F1 WINDOW,WINDOW_CONSTRUCTION_1,1.66,0.00,0.00,1.66,1.66,2.954,0.391,0.305,,,No,5E60549C-50B0-4407-847A-5861932914F1,269.69,90.00,W +,7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC WINDOW,WINDOW_CONSTRUCTION_1,5.65,0.00,0.00,5.65,5.65,2.954,0.391,0.305,,,No,7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC,176.54,90.00,S +,C3FD65E7-FC14-4D33-BF52-23D74DED88EB WINDOW,WINDOW_CONSTRUCTION_1,14.97,0.00,0.00,14.97,14.97,2.954,0.391,0.305,,,No,C3FD65E7-FC14-4D33-BF52-23D74DED88EB,266.64,90.00,W +,1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 WINDOW,WINDOW_CONSTRUCTION_1,12.92,0.00,0.00,12.92,12.92,2.954,0.391,0.305,,,No,1E1C1899-DCC9-48A1-8898-28E04A7C3EC1,176.50,90.00,S +,1DF220C8-4594-4350-9194-965640B21272 WINDOW,WINDOW_CONSTRUCTION_1,13.39,0.00,0.00,13.39,13.39,2.954,0.391,0.305,,,No,1DF220C8-4594-4350-9194-965640B21272,266.55,90.00,W +,E3F35249-C2BC-40A8-8619-F5D02B444417 WINDOW,WINDOW_CONSTRUCTION_1,1.30,0.00,0.00,1.30,1.30,2.954,0.391,0.305,,,No,E3F35249-C2BC-40A8-8619-F5D02B444417,268.41,90.00,W +,56880703-96A6-4B3B-9F17-1EF482557D81 WINDOW,WINDOW_CONSTRUCTION_1,14.16,0.00,0.00,14.16,14.16,2.954,0.391,0.305,,,No,56880703-96A6-4B3B-9F17-1EF482557D81,175.70,90.00,S +,62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D WINDOW,WINDOW_CONSTRUCTION_1,1.06,0.00,0.00,1.06,1.06,2.954,0.391,0.305,,,No,62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D,180.60,90.00,S +,30B5B4E4-D837-4205-A13C-99E472FD70E3 WINDOW,WINDOW_CONSTRUCTION_1,64.65,0.00,0.00,64.65,64.65,2.954,0.391,0.305,,,No,30B5B4E4-D837-4205-A13C-99E472FD70E3,90.21,90.00,E +,D3DFE970-7DDD-4066-9A44-E5C431173B04 WINDOW,WINDOW_CONSTRUCTION_1,9.08,0.00,0.00,9.08,9.08,2.954,0.391,0.305,,,No,D3DFE970-7DDD-4066-9A44-E5C431173B04,0.74,90.00,N +,2494EF78-8FD5-40F6-9649-8207E7B72419 WINDOW,WINDOW_CONSTRUCTION_1,38.52,0.00,0.00,38.52,38.52,2.954,0.391,0.305,,,No,2494EF78-8FD5-40F6-9649-8207E7B72419,90.76,90.00,E +,7A4499E2-1610-41D5-A38D-F92C1A44A441 WINDOW,WINDOW_CONSTRUCTION_1,7.86,0.00,0.00,7.86,7.86,2.954,0.391,0.305,,,No,7A4499E2-1610-41D5-A38D-F92C1A44A441,180.96,90.00,S +,6C2CE294-611F-40A0-9C3A-76312D4E1B96 WINDOW,WINDOW_CONSTRUCTION_1,4.28,0.00,0.00,4.28,4.28,2.954,0.391,0.305,,,No,6C2CE294-611F-40A0-9C3A-76312D4E1B96,90.82,90.00,E +,4B74B268-1555-4305-866B-12071073CC37 WINDOW,WINDOW_CONSTRUCTION_1,1.13,0.00,0.00,1.13,1.13,2.954,0.391,0.305,,,No,4B74B268-1555-4305-866B-12071073CC37,87.98,90.00,E +,BDF88111-FFAD-4314-844F-C6A6D18AE56E WINDOW,WINDOW_CONSTRUCTION_1,31.12,0.00,0.00,31.12,31.12,2.954,0.391,0.305,,,No,BDF88111-FFAD-4314-844F-C6A6D18AE56E,356.37,90.00,N +,952B28B4-7695-4D41-BB4E-6580FD5066D3 WINDOW,WINDOW_CONSTRUCTION_1,18.11,0.00,0.00,18.11,18.11,2.954,0.391,0.305,,,No,952B28B4-7695-4D41-BB4E-6580FD5066D3,270.19,90.00,W +,EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA WINDOW,WINDOW_CONSTRUCTION_1,3.63,0.00,0.00,3.63,3.63,2.954,0.391,0.305,,,No,EF26A619-85E8-4D60-84DC-FF2DDAEBA8AA,0.40,90.00,N +,EA6EB60C-30F4-4A3A-BE41-C8CC35D59739 WINDOW,WINDOW_CONSTRUCTION_1,11.17,0.00,0.00,11.17,11.17,2.954,0.391,0.305,,,No,EA6EB60C-30F4-4A3A-BE41-C8CC35D59739,270.20,90.00,W +,9EE15C27-2220-4FBE-BCDC-A3B45C9266FE WINDOW,WINDOW_CONSTRUCTION_1,3.15,0.00,0.00,3.15,3.15,2.954,0.391,0.305,,,No,9EE15C27-2220-4FBE-BCDC-A3B45C9266FE,359.70,90.00,N +,0CA6079F-2460-4171-B8E4-A118F26EA721 WINDOW,WINDOW_CONSTRUCTION_1,27.13,0.00,0.00,27.13,27.13,2.954,0.391,0.305,,,No,0CA6079F-2460-4171-B8E4-A118F26EA721,270.54,90.00,W +,61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 WINDOW,WINDOW_CONSTRUCTION_1,42.94,0.00,0.00,42.94,42.94,2.954,0.391,0.305,,,No,61690A0C-0A54-44AC-BFE6-5965FA8DA5D2,180.49,90.00,S +,C62DAAD5-AF76-47A2-9CCC-D8B9953782D2 WINDOW,WINDOW_CONSTRUCTION_1,3.92,0.00,0.00,3.92,3.92,2.954,0.391,0.305,,,No,C62DAAD5-AF76-47A2-9CCC-D8B9953782D2,170.75,90.00,S +,5EBADD8B-8F48-4111-8F9F-0F5461F63407 WINDOW,WINDOW_CONSTRUCTION_1,55.97,0.00,0.00,55.97,55.97,2.954,0.391,0.305,,,No,5EBADD8B-8F48-4111-8F9F-0F5461F63407,90.56,90.00,E +,83560D6B-A3C1-4E5C-982E-ED16148D6524 WINDOW,WINDOW_CONSTRUCTION_1,40.23,0.00,0.00,40.23,40.23,2.954,0.391,0.305,,,No,83560D6B-A3C1-4E5C-982E-ED16148D6524,0.24,90.00,N +,0D1675B6-30BE-4315-95F6-432607EF6038 WINDOW,WINDOW_CONSTRUCTION_1,1.13,0.00,0.00,1.13,1.13,2.954,0.391,0.305,,,No,0D1675B6-30BE-4315-95F6-432607EF6038,89.31,90.00,E +,44CF0901-3097-4000-8843-4F2A7BDC1148 WINDOW,WINDOW_CONSTRUCTION_1,34.20,0.00,0.00,34.20,34.20,2.954,0.391,0.305,,,No,44CF0901-3097-4000-8843-4F2A7BDC1148,358.27,90.00,N +,05D3478F-F729-444F-8D57-638778BE8FA6 WINDOW,WINDOW_CONSTRUCTION_1,1.58,0.00,0.00,1.58,1.58,2.954,0.391,0.305,,,No,05D3478F-F729-444F-8D57-638778BE8FA6,358.68,90.00,N +,CEBF8668-AE77-42F8-83FA-A52CCE144CC3 WINDOW,WINDOW_CONSTRUCTION_1,16.69,0.00,0.00,16.69,16.69,2.954,0.391,0.305,,,No,CEBF8668-AE77-42F8-83FA-A52CCE144CC3,266.89,90.00,W +,716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 WINDOW,WINDOW_CONSTRUCTION_1,11.69,0.00,0.00,11.69,11.69,2.954,0.391,0.305,,,No,716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3,176.46,90.00,S +,83FF1247-78C4-4B4A-A96D-1C1D1848C089 WINDOW,WINDOW_CONSTRUCTION_1,29.93,0.00,0.00,29.93,29.93,2.954,0.391,0.305,,,No,83FF1247-78C4-4B4A-A96D-1C1D1848C089,266.84,90.00,W +,B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B WINDOW,WINDOW_CONSTRUCTION_1,12.69,0.00,0.00,12.69,12.69,2.954,0.391,0.305,,,No,B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B,176.51,90.00,S +,42B7433D-B004-4BAB-9ABE-EA1B57133101 WINDOW,WINDOW_CONSTRUCTION_1,0.44,0.00,0.00,0.44,0.44,2.954,0.391,0.305,,,No,42B7433D-B004-4BAB-9ABE-EA1B57133101,72.71,90.00,E +,779AFBD5-0E07-4533-9528-8573168E8F7D WINDOW,WINDOW_CONSTRUCTION_1,8.75,0.00,0.00,8.75,8.75,2.954,0.391,0.305,,,No,779AFBD5-0E07-4533-9528-8573168E8F7D,89.15,90.00,E +,F5B25E62-443C-4A74-AEB8-A7D79618EAE9 WINDOW,WINDOW_CONSTRUCTION_1,9.27,0.00,0.00,9.27,9.27,2.954,0.391,0.305,,,No,F5B25E62-443C-4A74-AEB8-A7D79618EAE9,179.16,90.00,S +,050515B0-F2A7-47E2-A583-AF29A662B779 WINDOW,WINDOW_CONSTRUCTION_1,1.24,0.00,0.00,1.24,1.24,2.954,0.391,0.305,,,No,050515B0-F2A7-47E2-A583-AF29A662B779,178.52,90.00,S +,C7B741E8-43F0-4A31-9813-8F71CE72E68A WINDOW,WINDOW_CONSTRUCTION_1,35.67,0.00,0.00,35.67,35.67,2.954,0.391,0.305,,,No,C7B741E8-43F0-4A31-9813-8F71CE72E68A,87.80,90.00,E ,Total or Average,,,,,,1642.42,2.954,0.391,0.305,,,,,,, ,North Total or Average,,,,,,342.29,2.954,0.391,0.305,,,,,,, ,Non-North Total or Average,,,,,,1300.13,2.954,0.391,0.305,,,,,,, diff --git a/out_files/Westmount_tbl.htm b/out_files/Westmount_tbl.htm index 2df8bea6..2ebe2084 100644 --- a/out_files/Westmount_tbl.htm +++ b/out_files/Westmount_tbl.htm @@ -2,27 +2,27 @@ Buildings in b'Westmount' RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270 - 2024-02-02 - 18:55:03 + 2024-02-04 + 23:26:04 - EnergyPlus

Table of Contents

-

Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55

+

Program Version:EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26

Tabular Output Report in Format: HTML

Building: Buildings in b'Westmount'

Environment: RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270

-

Simulation Timestamp: 2024-02-02 - 18:55:03

+

Simulation Timestamp: 2024-02-04 + 23:26:04


Table of Contents

Report: Annual Building Utility Performance Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Values gathered over 8760.00 hours



Site and Source Energy

@@ -1458,8 +1458,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Input Verification and Results Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

General

@@ -1468,7 +1468,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -1838,8 +1838,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Demand End Use Components Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

End Uses

Program Version and BuildEnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.02 18:55EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.02.04 23:26
RunPeriod
@@ -2753,15 +2753,15 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Component Sizing Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04


Table of Contents

Report: Adaptive Comfort Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Time Not Meeting the Adaptive Comfort Models during Occupied Hours

@@ -2779,8 +2779,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Climatic Data Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

SizingPeriod:DesignDay

@@ -2820,8 +2820,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Envelope Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Opaque Exterior

@@ -2837,7 +2837,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2849,7 +2849,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2861,7 +2861,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2873,7 +2873,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2885,7 +2885,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2897,7 +2897,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2909,7 +2909,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2921,7 +2921,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2933,7 +2933,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2945,7 +2945,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2957,7 +2957,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2969,7 +2969,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2981,7 +2981,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -2993,7 +2993,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3005,7 +3005,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3017,7 +3017,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3029,7 +3029,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3041,7 +3041,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3053,7 +3053,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3065,7 +3065,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3077,7 +3077,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3089,7 +3089,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3101,7 +3101,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3113,7 +3113,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3125,7 +3125,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3137,7 +3137,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3149,7 +3149,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3161,7 +3161,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3173,7 +3173,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3185,7 +3185,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3197,7 +3197,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3209,7 +3209,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3221,7 +3221,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3233,7 +3233,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3245,7 +3245,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3257,7 +3257,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3269,7 +3269,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3281,7 +3281,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3293,7 +3293,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3305,7 +3305,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3317,7 +3317,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3329,7 +3329,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3341,7 +3341,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3353,7 +3353,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3365,7 +3365,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3377,7 +3377,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3389,7 +3389,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3401,7 +3401,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3413,7 +3413,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3425,7 +3425,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3437,7 +3437,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3449,7 +3449,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3461,7 +3461,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3473,7 +3473,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3485,7 +3485,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3497,7 +3497,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3509,7 +3509,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3521,7 +3521,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3533,7 +3533,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3545,7 +3545,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3557,7 +3557,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3569,7 +3569,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3581,7 +3581,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3593,7 +3593,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3605,7 +3605,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3617,7 +3617,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3629,7 +3629,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3641,7 +3641,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3653,7 +3653,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3665,7 +3665,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3677,7 +3677,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3689,7 +3689,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3701,7 +3701,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3713,7 +3713,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3725,7 +3725,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3737,7 +3737,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3749,7 +3749,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3761,7 +3761,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3773,7 +3773,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3785,7 +3785,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3797,7 +3797,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3809,7 +3809,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3821,7 +3821,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3833,7 +3833,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3845,7 +3845,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3857,7 +3857,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3869,7 +3869,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3881,7 +3881,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3893,7 +3893,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3905,7 +3905,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3917,7 +3917,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3980,7 +3980,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -3993,13 +3993,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4012,13 +4012,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4031,13 +4031,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4050,13 +4050,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4069,13 +4069,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4088,13 +4088,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4107,13 +4107,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4126,13 +4126,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4145,13 +4145,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4164,13 +4164,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4183,13 +4183,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4202,13 +4202,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4221,13 +4221,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4240,13 +4240,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4259,13 +4259,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4278,13 +4278,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4297,13 +4297,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4316,13 +4316,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4335,13 +4335,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4354,13 +4354,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4373,13 +4373,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4392,13 +4392,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4411,13 +4411,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4430,13 +4430,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4449,13 +4449,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4468,13 +4468,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4487,13 +4487,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4506,13 +4506,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4525,13 +4525,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4544,13 +4544,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4563,13 +4563,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4582,13 +4582,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4601,13 +4601,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4620,13 +4620,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4639,13 +4639,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4658,13 +4658,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4677,13 +4677,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4696,13 +4696,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4715,13 +4715,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4734,13 +4734,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4753,13 +4753,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4772,13 +4772,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4791,13 +4791,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4810,13 +4810,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4829,13 +4829,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4848,13 +4848,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4867,13 +4867,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4886,13 +4886,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4905,13 +4905,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4924,13 +4924,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4943,13 +4943,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4962,13 +4962,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -4981,13 +4981,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5000,13 +5000,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5019,13 +5019,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5038,13 +5038,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5057,13 +5057,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5076,13 +5076,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5095,13 +5095,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5114,13 +5114,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5133,13 +5133,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5152,13 +5152,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5171,13 +5171,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5190,13 +5190,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5209,13 +5209,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5228,13 +5228,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5247,13 +5247,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5266,13 +5266,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5285,13 +5285,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5304,13 +5304,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5323,13 +5323,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5342,13 +5342,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5361,13 +5361,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5380,13 +5380,13 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + - + @@ -5399,7 +5399,7 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.
- + @@ -5532,8 +5532,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Lighting Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Interior Lighting

Cardinal Direction
A31B7A34-87DA-44C3-B425-1123BF5F537E69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 1921_1930_6 0.40 0.644 N
FEAA02B7-346C-4E97-91A6-2307D00AA8E7FA5D8F82-C017-4D84-AF6F-666F3B3C7231 1921_1930_6 0.40 0.644 W
E853F7A4-3EDF-4174-A4CD-BA9830BC3A35803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 1921_1930_6 0.40 0.644 S
F0C194C6-ECC0-4215-B107-1A3503E6A3B91FCAD96E-6BA1-49A3-86D2-3496A2BD8804 1921_1930_6 0.40 0.644 E
4A8C5510-4917-4962-B668-AC2B363E16669A71C69C-9586-4DA7-9E88-896BCC784F3F 1921_1930_6 0.40 0.639  
2DA3FBE9-639B-41E3-839C-4983A668ADECE0EA27A2-2A19-4D76-B071-433B46E55C87 1921_1930_6 0.40 0.649  
086891C7-387B-4226-955B-62212750F40D014478EF-53CF-472B-BD40-B30E67B1DEFE 1951_1960_6 0.40 0.644 N
53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6FC895336E-C7A1-4670-A76D-23FB7AA683C2 1951_1960_6 0.40 0.644 N
9B49FE0D-6366-4465-9E8F-C43C0F3B458B5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 1951_1960_6 0.40 0.644 W
51C15BBC-CC98-49F0-8EA8-241A8C0CD32346A023A1-C717-4123-A8F8-4F59FDE90906 1951_1960_6 0.40 0.644 S
A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7E2B821AA-CF56-4772-B139-2A2E45C4B1AC 1951_1960_6 0.40 0.644 S
4B199B3D-4726-4307-A2F7-EC05CCA3D88BC745040E-C9A0-4DFC-B4A2-BFECFDD6F782 1951_1960_6 0.40 0.644 E
B92AD645-5C44-42EA-934E-034F6B1A1343722EE535-59F8-459C-86DF-FC04ED4B1ECF 1951_1960_6 0.40 0.639  
F5F64B85-E5A1-4786-AD52-7B958AB52689B42C17B9-CDE9-4AA6-A608-58E472156EA4 1951_1960_6 0.40 0.649  
2497C0B0-80A1-4A6C-AA3A-BB349C44591C599DDAFE-05D0-4109-95CE-DE3EBED73B0D 1931_1940_6 0.40 0.644 W
7EF81AE6-421D-417B-A884-09D139DF73926F211D24-7240-45A4-9703-6C5ECC418C18 1931_1940_6 0.40 0.644 N
95999F8C-7787-41FB-842E-57924FB8CE6E10FD8236-5A16-420C-A5AD-A68E14113A8B 1931_1940_6 0.40 0.644 W
D1EFC40F-397A-4C21-8AFF-6EBC399ACF58C4243B0E-E920-4574-8939-DD4D085BED74 1931_1940_6 0.40 0.644 S
23262692-375A-4D61-A4DD-A2C5DD21B7B00CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 1931_1940_6 0.40 0.644 W
E65207B0-7C54-4BE8-9FD4-90349A28302946C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 1931_1940_6 0.40 0.644 S
35A8EF37-0672-4B38-9AC0-59954B845C8A354B85ED-25E9-42C0-946E-4C58060A8A00 1931_1940_6 0.40 0.644 W
6C4CAD38-03A2-4F52-B991-5094FD62D4DD9E9DA797-CC1E-48BF-8E23-A231998F53E2 1931_1940_6 0.40 0.644 S
02D8231C-67A9-4126-B084-58E3FF3B0A8AFCB0588B-666A-4E8C-9463-ED51C74F81EC 1931_1940_6 0.40 0.644 E
9F6D9821-892E-442A-9D43-9C44B45FEFC3426595E5-9869-4F33-B127-B84B81832942 1931_1940_6 0.40 0.644 N
D752839C-49CD-4EAF-86CD-0FC5E30438F32D7767FE-E37D-46E7-A553-9AA51A1144E5 1931_1940_6 0.40 0.639  
279DA31D-1CC4-4EB0-AB0A-E14009514D499598F6EF-79B4-4CF3-8B76-48CE29EDEF6A 1931_1940_6 0.40 0.649  
207070E8-9AFA-4626-98C7-E22D5E77D3027F06A2B0-0BB3-4130-A75B-7250E42F201B 1931_1940_6 0.40 0.644 E
904A3A7E-E83F-4043-BA36-468E01BB63FB450F3DB3-8760-4787-BBB3-924821484118 1931_1940_6 0.40 0.644 N
6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70F25915C6-4F50-4B01-A49C-744F4BF29195 1931_1940_6 0.40 0.644 W
8C57F4E5-1BC6-4892-9143-43504A1AA3B798708C6F-724B-4F3D-89FD-224C9FE79EE0 1931_1940_6 0.40 0.644 W
5BCCD2AC-041C-45D2-86AB-72637853703F4CB616F6-4B22-4735-BB7F-27A2E0F9945A 1931_1940_6 0.40 0.644 S
D4F29A65-02EE-44F2-A74B-C18D73B71EDA160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 1931_1940_6 0.40 0.644 W
FC904495-FE25-4E1B-832F-41A45E117691818EB98B-ACF9-4C03-9723-B9055EC2B832 1931_1940_6 0.40 0.644 S
B286E9D1-994F-418F-B830-754CB313793D35DEF65B-3D94-4F14-9A79-F0B95D42801D 1931_1940_6 0.40 0.644 S
1509551C-3BB9-46F6-81DD-E9A8E893CF2E7DC475D9-EABB-47CC-A185-8654F6E40FD5 1931_1940_6 0.40 0.644 E
1C9914AD-FE1B-47D6-B3E7-5047F366831DCB11D0A5-9BB3-4223-BE41-FD4C5796C860 1931_1940_6 0.40 0.639  
7FB3D965-3400-4B51-9D8A-75C65CC20C80ADDBE425-AB46-4CB4-9CE6-11995381DC32 1931_1940_6 0.40 0.649  
8314F1A8-6A53-4847-B682-B4D05208509661A1A33E-9DFA-469F-A46A-3702F738DEA8 1951_1960_6 0.40 0.644 N
8F619FC1-A55A-4DCC-B210-248561825E416D22CC13-3522-4AB6-AF7F-5C066CE69F22 1951_1960_6 0.40 0.644 W
F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC31693DD6-3456-4DFD-B7FD-12BEBC85E52B 1951_1960_6 0.40 0.644 S
060DED99-1508-4619-9CEA-0110F324D0F21999F20F-4ACE-47CC-9C25-773A3A4AD134 1951_1960_6 0.40 0.644 W
A4833F7A-0137-432B-9CAF-D5B61B75C7E82C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 1951_1960_6 0.40 0.644 S
FBC4E947-E747-41BE-98C3-409BD3BF593E190A77D0-DD84-4037-A9CC-F2DE98C48F6A 1951_1960_6 0.40 0.644 E
C04B7482-35BA-4365-B350-048D9A1BE91FF862A00A-0A07-495E-8DB5-3C87DC9624F6 1951_1960_6 0.40 0.639  
B6255FFD-5B63-4F18-B3C3-BC35860B8B80285A742A-279A-402F-AB7F-228236284EDC 1951_1960_6 0.40 0.649  
8469DA8E-4F42-4197-A645-365E7A06294DB5132EAD-74EF-4BBE-995E-E5B024DEC326 1921_1930_6 0.40 0.644 N
0B13DA9E-94D8-45EA-BC8C-8F36085D727FA32A358C-9091-4864-888C-409CD26814AC 1921_1930_6 0.40 0.644 W
066A7A13-B738-4F65-975F-11A83BF5CD2BFE2D1D14-2C13-42E2-856C-43EEBBA4797F 1921_1930_6 0.40 0.644 N
D6D89EE8-5294-4637-A513-543A1C9E1803FB842419-964D-4916-809F-E199CE2B5EE7 1921_1930_6 0.40 0.644 W
685DB9BA-8B51-4A67-8F2A-9963A37C55105E60549C-50B0-4407-847A-5861932914F1 1921_1930_6 0.40 0.644 W
EC035472-9DAA-4E36-8FF4-92501F8FBB4F7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC 1921_1930_6 0.40 0.644 S
C73A0B58-396A-4617-ABCF-0454A7647321C3FD65E7-FC14-4D33-BF52-23D74DED88EB 1921_1930_6 0.40 0.644 W
A3A28AB7-5EDA-48C8-9870-BCB88B3AE4691E1C1899-DCC9-48A1-8898-28E04A7C3EC1 1921_1930_6 0.40 0.644 S
EC059D37-2D87-4B09-A2F0-F48893C58D741DF220C8-4594-4350-9194-965640B21272 1921_1930_6 0.40 0.644 W
032B678D-FBD1-4F19-81C7-1EC8CF63EA68E3F35249-C2BC-40A8-8619-F5D02B444417 1921_1930_6 0.40 0.644 W
1311CD62-6809-4F52-85B8-2815515C84E356880703-96A6-4B3B-9F17-1EF482557D81 1921_1930_6 0.40 0.644 S
88FE6E02-3BC5-415E-B0D1-E18FB9DAE85862142FD5-AE68-4BF9-AFC5-905BC9AE7F5D 1921_1930_6 0.40 0.644 S
B92ABBD8-9D06-41F7-889C-306C35CF7F9530B5B4E4-D837-4205-A13C-99E472FD70E3 1921_1930_6 0.40 0.644 E
4BA2DC04-F061-484D-990D-99D39DED0BB8D3DFE970-7DDD-4066-9A44-E5C431173B04 1921_1930_6 0.40 0.644 N
2288E19B-D4B5-44B7-A6A2-261CFC7F365C2494EF78-8FD5-40F6-9649-8207E7B72419 1921_1930_6 0.40 0.644 E
3744A296-AC57-41FA-A71D-0C3470CB5F147A4499E2-1610-41D5-A38D-F92C1A44A441 1921_1930_6 0.40 0.644 S
F31E4707-5001-4563-A5A4-DF762203E6396C2CE294-611F-40A0-9C3A-76312D4E1B96 1921_1930_6 0.40 0.644 E
31CA4D09-DBCC-4A4D-8A19-832A531B617E4B74B268-1555-4305-866B-12071073CC37 1921_1930_6 0.40 0.644 E
354373D3-76F3-483D-9842-74F52495C95CBDF88111-FFAD-4314-844F-C6A6D18AE56E 1921_1930_6 0.40 0.644 N
7FE829CA-8DF3-498C-8D49-7FE733D68CC08959B441-1442-4920-8EDD-830232168C72 1921_1930_6 0.40 0.639  
83557790-0867-4DA7-BDB0-AA83FA2E5CE0380DA066-26FF-4F1F-A7A1-9CB7F56001CC 1921_1930_6 0.40 0.649  
234E6101-B193-4537-8C3C-89FE6C1C5B4B952B28B4-7695-4D41-BB4E-6580FD5066D3 1931_1940_6 0.40 0.644 W
69777C37-5C29-4E64-BDC8-2187F5601DFEEF26A619-85E8-4D60-84DC-FF2DDAEBA8AA 1931_1940_6 0.40 0.644 N
5BDF1462-AF7C-4F06-87D5-93687C433DDDEA6EB60C-30F4-4A3A-BE41-C8CC35D59739 1931_1940_6 0.40 0.644 W
F44D8577-64E0-4369-8209-CD922ECE416D9EE15C27-2220-4FBE-BCDC-A3B45C9266FE 1931_1940_6 0.40 0.644 N
0EA016B3-F825-45B6-9898-E4594818013C0CA6079F-2460-4171-B8E4-A118F26EA721 1931_1940_6 0.40 0.644 W
53CD4B62-9F88-4ABE-821A-041EE0CE1E5B61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 1931_1940_6 0.40 0.644 S
36010500-DEEF-411A-BDAD-F9D9081D9D3BC62DAAD5-AF76-47A2-9CCC-D8B9953782D2 1931_1940_6 0.40 0.644 S
A649C3E6-4C83-4D7D-8085-CA69227CE4085EBADD8B-8F48-4111-8F9F-0F5461F63407 1931_1940_6 0.40 0.644 E
BA59DBE4-1F28-43B0-9666-E348B0352D6A83560D6B-A3C1-4E5C-982E-ED16148D6524 1931_1940_6 0.40 0.644 N
691020F9-5FB5-42FD-8FBF-F29E269CDE7E1FA1F75A-E592-40CE-ABAC-C52374614494 1931_1940_6 0.40 0.639  
831BFDE3-7462-4EBF-8D36-440D2201B769B482EFB1-B0D1-492D-A5EE-CD0CC081F215 1931_1940_6 0.40 0.649  
47A5E611-5DB5-4345-B925-F0ABA9A7F6550D1675B6-30BE-4315-95F6-432607EF6038 1931_1940_6 0.40 0.644 E
D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF44CF0901-3097-4000-8843-4F2A7BDC1148 1931_1940_6 0.40 0.644 N
E2E667EC-7877-4C1F-A326-DA1ACEE6236B05D3478F-F729-444F-8D57-638778BE8FA6 1931_1940_6 0.40 0.644 N
327FA205-EE88-42C3-98B8-C9F40570608FCEBF8668-AE77-42F8-83FA-A52CCE144CC3 1931_1940_6 0.40 0.644 W
4909BD4B-64B0-455F-9F41-7B847D8EFD0E716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 1931_1940_6 0.40 0.644 S
7294D66E-272D-45B0-B3D5-498CB6D9005D83FF1247-78C4-4B4A-A96D-1C1D1848C089 1931_1940_6 0.40 0.644 W
AB27E866-0C52-46FA-882B-8A7C2F18BCA9B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B 1931_1940_6 0.40 0.644 S
1378D302-9F65-44A3-96B6-26F66BBD6ABB42B7433D-B004-4BAB-9ABE-EA1B57133101 1931_1940_6 0.40 0.644 E
BE80FF74-DA6B-47EA-912D-95830F2F5AFC779AFBD5-0E07-4533-9528-8573168E8F7D 1931_1940_6 0.40 0.644 E
A102BE68-0A63-4582-8246-03D675A04440F5B25E62-443C-4A74-AEB8-A7D79618EAE9 1931_1940_6 0.40 0.644 S
59DF3602-265E-4DA0-851C-21F9955D55D1050515B0-F2A7-47E2-A583-AF29A662B779 1931_1940_6 0.40 0.644 S
AAF52CEF-F41F-4E17-A34B-327EABEC2C17C7B741E8-43F0-4A31-9813-8F71CE72E68A 1931_1940_6 0.40 0.644 E
5EBDC6C5-52B7-40AA-92BA-5C06E98BF9A5F331A652-4C5A-45D8-8C2E-D344315DBCD9 1931_1940_6 0.40 0.639  
73643D9D-A887-4698-A613-01F5DC70360BE7536F9F-5C12-465C-9BDE-B440C58085B2 1931_1940_6 0.40 0.649 Cardinal Direction
A31B7A34-87DA-44C3-B425-1123BF5F537E WINDOW69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 WINDOW WINDOW_CONSTRUCTION_1 44.11 0.00     NoA31B7A34-87DA-44C3-B425-1123BF5F537E69E3B9CA-3AD9-49E9-8FB0-0C09F2CD0F25 0.55 90.00 N
FEAA02B7-346C-4E97-91A6-2307D00AA8E7 WINDOWFA5D8F82-C017-4D84-AF6F-666F3B3C7231 WINDOW WINDOW_CONSTRUCTION_1 38.17 0.00     NoFEAA02B7-346C-4E97-91A6-2307D00AA8E7FA5D8F82-C017-4D84-AF6F-666F3B3C7231 270.50 90.00 W
E853F7A4-3EDF-4174-A4CD-BA9830BC3A35 WINDOW803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 WINDOW WINDOW_CONSTRUCTION_1 44.09 0.00     NoE853F7A4-3EDF-4174-A4CD-BA9830BC3A35803B99AE-C0AB-4B2B-AF4F-F047F25DAD06 180.51 90.00 S
F0C194C6-ECC0-4215-B107-1A3503E6A3B9 WINDOW1FCAD96E-6BA1-49A3-86D2-3496A2BD8804 WINDOW WINDOW_CONSTRUCTION_1 38.15 0.00     NoF0C194C6-ECC0-4215-B107-1A3503E6A3B91FCAD96E-6BA1-49A3-86D2-3496A2BD8804 90.52 90.00 E
086891C7-387B-4226-955B-62212750F40D WINDOW014478EF-53CF-472B-BD40-B30E67B1DEFE WINDOW WINDOW_CONSTRUCTION_1 31.37 0.00     No086891C7-387B-4226-955B-62212750F40D014478EF-53CF-472B-BD40-B30E67B1DEFE 352.72 90.00 N
53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6F WINDOWC895336E-C7A1-4670-A76D-23FB7AA683C2 WINDOW WINDOW_CONSTRUCTION_1 9.78 0.00     No53D1BC5B-ADD4-4031-B2AB-D8C1865F7E6FC895336E-C7A1-4670-A76D-23FB7AA683C2 352.46 90.00 N
9B49FE0D-6366-4465-9E8F-C43C0F3B458B WINDOW5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 WINDOW WINDOW_CONSTRUCTION_1 51.65 0.00     No9B49FE0D-6366-4465-9E8F-C43C0F3B458B5A9CAD1E-02B4-416A-8A2B-28FC684B2D85 261.43 90.00 W
51C15BBC-CC98-49F0-8EA8-241A8C0CD323 WINDOW46A023A1-C717-4123-A8F8-4F59FDE90906 WINDOW WINDOW_CONSTRUCTION_1 1.47 0.00     No51C15BBC-CC98-49F0-8EA8-241A8C0CD32346A023A1-C717-4123-A8F8-4F59FDE90906 171.74 90.00 S
A2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7 WINDOWE2B821AA-CF56-4772-B139-2A2E45C4B1AC WINDOW WINDOW_CONSTRUCTION_1 38.52 0.00     NoA2AA3C91-EE42-4661-B73B-0A4DAD6E5FC7E2B821AA-CF56-4772-B139-2A2E45C4B1AC 172.73 90.00 S
4B199B3D-4726-4307-A2F7-EC05CCA3D88B WINDOWC745040E-C9A0-4DFC-B4A2-BFECFDD6F782 WINDOW WINDOW_CONSTRUCTION_1 51.67 0.00     No4B199B3D-4726-4307-A2F7-EC05CCA3D88BC745040E-C9A0-4DFC-B4A2-BFECFDD6F782 82.71 90.00 E
2497C0B0-80A1-4A6C-AA3A-BB349C44591C WINDOW599DDAFE-05D0-4109-95CE-DE3EBED73B0D WINDOW WINDOW_CONSTRUCTION_1 16.52 0.00     No2497C0B0-80A1-4A6C-AA3A-BB349C44591C599DDAFE-05D0-4109-95CE-DE3EBED73B0D 271.16 90.00 W
7EF81AE6-421D-417B-A884-09D139DF7392 WINDOW6F211D24-7240-45A4-9703-6C5ECC418C18 WINDOW WINDOW_CONSTRUCTION_1 3.94 0.00     No7EF81AE6-421D-417B-A884-09D139DF73926F211D24-7240-45A4-9703-6C5ECC418C18 1.18 90.00 N
95999F8C-7787-41FB-842E-57924FB8CE6E WINDOW10FD8236-5A16-420C-A5AD-A68E14113A8B WINDOW WINDOW_CONSTRUCTION_1 11.26 0.00     No95999F8C-7787-41FB-842E-57924FB8CE6E10FD8236-5A16-420C-A5AD-A68E14113A8B 271.29 90.00 W
D1EFC40F-397A-4C21-8AFF-6EBC399ACF58 WINDOWC4243B0E-E920-4574-8939-DD4D085BED74 WINDOW WINDOW_CONSTRUCTION_1 3.96 0.00     NoD1EFC40F-397A-4C21-8AFF-6EBC399ACF58C4243B0E-E920-4574-8939-DD4D085BED74 181.00 90.00 S
23262692-375A-4D61-A4DD-A2C5DD21B7B0 WINDOW0CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 WINDOW WINDOW_CONSTRUCTION_1 20.48 0.00     No23262692-375A-4D61-A4DD-A2C5DD21B7B00CF794EA-EB16-4D16-9A20-F7C8D2BE36B7 271.20 90.00 W
E65207B0-7C54-4BE8-9FD4-90349A283029 WINDOW46C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 WINDOW WINDOW_CONSTRUCTION_1 17.85 0.00     NoE65207B0-7C54-4BE8-9FD4-90349A28302946C2CE57-9120-4794-ABF2-F3C7D9B3A1D5 181.12 90.00 S
35A8EF37-0672-4B38-9AC0-59954B845C8A WINDOW354B85ED-25E9-42C0-946E-4C58060A8A00 WINDOW WINDOW_CONSTRUCTION_1 5.81 0.00     No35A8EF37-0672-4B38-9AC0-59954B845C8A354B85ED-25E9-42C0-946E-4C58060A8A00 271.28 90.00 W
6C4CAD38-03A2-4F52-B991-5094FD62D4DD WINDOW9E9DA797-CC1E-48BF-8E23-A231998F53E2 WINDOW WINDOW_CONSTRUCTION_1 20.18 0.00     No6C4CAD38-03A2-4F52-B991-5094FD62D4DD9E9DA797-CC1E-48BF-8E23-A231998F53E2 181.15 90.00 S
02D8231C-67A9-4126-B084-58E3FF3B0A8A WINDOWFCB0588B-666A-4E8C-9463-ED51C74F81EC WINDOW WINDOW_CONSTRUCTION_1 54.07 0.00     No02D8231C-67A9-4126-B084-58E3FF3B0A8AFCB0588B-666A-4E8C-9463-ED51C74F81EC 91.15 90.00 E
9F6D9821-892E-442A-9D43-9C44B45FEFC3 WINDOW426595E5-9869-4F33-B127-B84B81832942 WINDOW WINDOW_CONSTRUCTION_1 37.99 0.00     No9F6D9821-892E-442A-9D43-9C44B45FEFC3426595E5-9869-4F33-B127-B84B81832942 1.12 90.00 N
207070E8-9AFA-4626-98C7-E22D5E77D302 WINDOW7F06A2B0-0BB3-4130-A75B-7250E42F201B WINDOW WINDOW_CONSTRUCTION_1 23.60 0.00     No207070E8-9AFA-4626-98C7-E22D5E77D3027F06A2B0-0BB3-4130-A75B-7250E42F201B 85.51 90.00 E
904A3A7E-E83F-4043-BA36-468E01BB63FB WINDOW450F3DB3-8760-4787-BBB3-924821484118 WINDOW WINDOW_CONSTRUCTION_1 53.97 0.00     No904A3A7E-E83F-4043-BA36-468E01BB63FB450F3DB3-8760-4787-BBB3-924821484118 355.50 90.00 N
6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70 WINDOWF25915C6-4F50-4B01-A49C-744F4BF29195 WINDOW WINDOW_CONSTRUCTION_1 53.37 0.00     No6C3ABC1F-1C38-4D5F-8ADD-A0F4F4021D70F25915C6-4F50-4B01-A49C-744F4BF29195 263.08 90.00 W
8C57F4E5-1BC6-4892-9143-43504A1AA3B7 WINDOW98708C6F-724B-4F3D-89FD-224C9FE79EE0 WINDOW WINDOW_CONSTRUCTION_1 0.16 0.00     No8C57F4E5-1BC6-4892-9143-43504A1AA3B798708C6F-724B-4F3D-89FD-224C9FE79EE0 249.05 90.00 W
5BCCD2AC-041C-45D2-86AB-72637853703F WINDOW4CB616F6-4B22-4735-BB7F-27A2E0F9945A WINDOW WINDOW_CONSTRUCTION_1 9.09 0.00     No5BCCD2AC-041C-45D2-86AB-72637853703F4CB616F6-4B22-4735-BB7F-27A2E0F9945A 174.26 90.00 S
D4F29A65-02EE-44F2-A74B-C18D73B71EDA WINDOW160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 WINDOW WINDOW_CONSTRUCTION_1 22.42 0.00     NoD4F29A65-02EE-44F2-A74B-C18D73B71EDA160F76F5-AFF9-49C9-B6CE-EE0329CAD7D0 264.27 90.00 W
FC904495-FE25-4E1B-832F-41A45E117691 WINDOW818EB98B-ACF9-4C03-9723-B9055EC2B832 WINDOW WINDOW_CONSTRUCTION_1 40.56 0.00     NoFC904495-FE25-4E1B-832F-41A45E117691818EB98B-ACF9-4C03-9723-B9055EC2B832 174.32 90.00 S
B286E9D1-994F-418F-B830-754CB313793D WINDOW35DEF65B-3D94-4F14-9A79-F0B95D42801D WINDOW WINDOW_CONSTRUCTION_1 1.54 0.00     NoB286E9D1-994F-418F-B830-754CB313793D35DEF65B-3D94-4F14-9A79-F0B95D42801D 174.91 90.00 S
1509551C-3BB9-46F6-81DD-E9A8E893CF2E WINDOW7DC475D9-EABB-47CC-A185-8654F6E40FD5 WINDOW WINDOW_CONSTRUCTION_1 51.24 0.00     No1509551C-3BB9-46F6-81DD-E9A8E893CF2E7DC475D9-EABB-47CC-A185-8654F6E40FD5 85.51 90.00 E
8314F1A8-6A53-4847-B682-B4D052085096 WINDOW61A1A33E-9DFA-469F-A46A-3702F738DEA8 WINDOW WINDOW_CONSTRUCTION_1 33.47 0.00     No8314F1A8-6A53-4847-B682-B4D05208509661A1A33E-9DFA-469F-A46A-3702F738DEA8 356.09 90.00 N
8F619FC1-A55A-4DCC-B210-248561825E41 WINDOW6D22CC13-3522-4AB6-AF7F-5C066CE69F22 WINDOW WINDOW_CONSTRUCTION_1 45.06 0.00     No8F619FC1-A55A-4DCC-B210-248561825E416D22CC13-3522-4AB6-AF7F-5C066CE69F22 266.05 90.00 W
F174D83D-4D6B-4628-BA02-7CEB1BA5AEFC WINDOW31693DD6-3456-4DFD-B7FD-12BEBC85E52B WINDOW WINDOW_CONSTRUCTION_1 11.64 0.00     NoF174D83D-4D6B-4628-BA02-7CEB1BA5AEFC31693DD6-3456-4DFD-B7FD-12BEBC85E52B 176.03 90.00 S
060DED99-1508-4619-9CEA-0110F324D0F2 WINDOW1999F20F-4ACE-47CC-9C25-773A3A4AD134 WINDOW WINDOW_CONSTRUCTION_1 7.42 0.00     No060DED99-1508-4619-9CEA-0110F324D0F21999F20F-4ACE-47CC-9C25-773A3A4AD134 266.55 90.00 W
A4833F7A-0137-432B-9CAF-D5B61B75C7E8 WINDOW2C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 WINDOW WINDOW_CONSTRUCTION_1 21.85 0.00     NoA4833F7A-0137-432B-9CAF-D5B61B75C7E82C95E56D-664A-4D8E-9E80-C4ECDF1D15E1 176.10 90.00 S
FBC4E947-E747-41BE-98C3-409BD3BF593E WINDOW190A77D0-DD84-4037-A9CC-F2DE98C48F6A WINDOW WINDOW_CONSTRUCTION_1 52.47 0.00     NoFBC4E947-E747-41BE-98C3-409BD3BF593E190A77D0-DD84-4037-A9CC-F2DE98C48F6A 86.10 90.00 E
8469DA8E-4F42-4197-A645-365E7A06294D WINDOWB5132EAD-74EF-4BBE-995E-E5B024DEC326 WINDOW WINDOW_CONSTRUCTION_1 0.71 0.00     No8469DA8E-4F42-4197-A645-365E7A06294DB5132EAD-74EF-4BBE-995E-E5B024DEC326 359.04 90.00 N
0B13DA9E-94D8-45EA-BC8C-8F36085D727F WINDOWA32A358C-9091-4864-888C-409CD26814AC WINDOW WINDOW_CONSTRUCTION_1 31.14 0.00     No0B13DA9E-94D8-45EA-BC8C-8F36085D727FA32A358C-9091-4864-888C-409CD26814AC 270.08 90.00 W
066A7A13-B738-4F65-975F-11A83BF5CD2B WINDOWFE2D1D14-2C13-42E2-856C-43EEBBA4797F WINDOW WINDOW_CONSTRUCTION_1 3.96 0.00     No066A7A13-B738-4F65-975F-11A83BF5CD2BFE2D1D14-2C13-42E2-856C-43EEBBA4797F 0.33 90.00 N
D6D89EE8-5294-4637-A513-543A1C9E1803 WINDOWFB842419-964D-4916-809F-E199CE2B5EE7 WINDOW WINDOW_CONSTRUCTION_1 46.38 0.00     NoD6D89EE8-5294-4637-A513-543A1C9E1803FB842419-964D-4916-809F-E199CE2B5EE7 269.03 90.00 W
685DB9BA-8B51-4A67-8F2A-9963A37C5510 WINDOW5E60549C-50B0-4407-847A-5861932914F1 WINDOW WINDOW_CONSTRUCTION_1 1.66 0.00     No685DB9BA-8B51-4A67-8F2A-9963A37C55105E60549C-50B0-4407-847A-5861932914F1 269.69 90.00 W
EC035472-9DAA-4E36-8FF4-92501F8FBB4F WINDOW7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC WINDOW WINDOW_CONSTRUCTION_1 5.65 0.00     NoEC035472-9DAA-4E36-8FF4-92501F8FBB4F7DA92C67-4FB5-4430-8DE2-AF35FAB53BFC 176.54 90.00 S
C73A0B58-396A-4617-ABCF-0454A7647321 WINDOWC3FD65E7-FC14-4D33-BF52-23D74DED88EB WINDOW WINDOW_CONSTRUCTION_1 14.97 0.00     NoC73A0B58-396A-4617-ABCF-0454A7647321C3FD65E7-FC14-4D33-BF52-23D74DED88EB 266.64 90.00 W
A3A28AB7-5EDA-48C8-9870-BCB88B3AE469 WINDOW1E1C1899-DCC9-48A1-8898-28E04A7C3EC1 WINDOW WINDOW_CONSTRUCTION_1 12.92 0.00     NoA3A28AB7-5EDA-48C8-9870-BCB88B3AE4691E1C1899-DCC9-48A1-8898-28E04A7C3EC1 176.50 90.00 S
EC059D37-2D87-4B09-A2F0-F48893C58D74 WINDOW1DF220C8-4594-4350-9194-965640B21272 WINDOW WINDOW_CONSTRUCTION_1 13.39 0.00     NoEC059D37-2D87-4B09-A2F0-F48893C58D741DF220C8-4594-4350-9194-965640B21272 266.55 90.00 W
032B678D-FBD1-4F19-81C7-1EC8CF63EA68 WINDOWE3F35249-C2BC-40A8-8619-F5D02B444417 WINDOW WINDOW_CONSTRUCTION_1 1.30 0.00     No032B678D-FBD1-4F19-81C7-1EC8CF63EA68E3F35249-C2BC-40A8-8619-F5D02B444417 268.41 90.00 W
1311CD62-6809-4F52-85B8-2815515C84E3 WINDOW56880703-96A6-4B3B-9F17-1EF482557D81 WINDOW WINDOW_CONSTRUCTION_1 14.16 0.00     No1311CD62-6809-4F52-85B8-2815515C84E356880703-96A6-4B3B-9F17-1EF482557D81 175.70 90.00 S
88FE6E02-3BC5-415E-B0D1-E18FB9DAE858 WINDOW62142FD5-AE68-4BF9-AFC5-905BC9AE7F5D WINDOW WINDOW_CONSTRUCTION_1 1.06 0.00     No88FE6E02-3BC5-415E-B0D1-E18FB9DAE85862142FD5-AE68-4BF9-AFC5-905BC9AE7F5D 180.60 90.00 S
B92ABBD8-9D06-41F7-889C-306C35CF7F95 WINDOW30B5B4E4-D837-4205-A13C-99E472FD70E3 WINDOW WINDOW_CONSTRUCTION_1 64.65 0.00     NoB92ABBD8-9D06-41F7-889C-306C35CF7F9530B5B4E4-D837-4205-A13C-99E472FD70E3 90.21 90.00 E
4BA2DC04-F061-484D-990D-99D39DED0BB8 WINDOWD3DFE970-7DDD-4066-9A44-E5C431173B04 WINDOW WINDOW_CONSTRUCTION_1 9.08 0.00     No4BA2DC04-F061-484D-990D-99D39DED0BB8D3DFE970-7DDD-4066-9A44-E5C431173B04 0.74 90.00 N
2288E19B-D4B5-44B7-A6A2-261CFC7F365C WINDOW2494EF78-8FD5-40F6-9649-8207E7B72419 WINDOW WINDOW_CONSTRUCTION_1 38.52 0.00     No2288E19B-D4B5-44B7-A6A2-261CFC7F365C2494EF78-8FD5-40F6-9649-8207E7B72419 90.76 90.00 E
3744A296-AC57-41FA-A71D-0C3470CB5F14 WINDOW7A4499E2-1610-41D5-A38D-F92C1A44A441 WINDOW WINDOW_CONSTRUCTION_1 7.86 0.00     No3744A296-AC57-41FA-A71D-0C3470CB5F147A4499E2-1610-41D5-A38D-F92C1A44A441 180.96 90.00 S
F31E4707-5001-4563-A5A4-DF762203E639 WINDOW6C2CE294-611F-40A0-9C3A-76312D4E1B96 WINDOW WINDOW_CONSTRUCTION_1 4.28 0.00     NoF31E4707-5001-4563-A5A4-DF762203E6396C2CE294-611F-40A0-9C3A-76312D4E1B96 90.82 90.00 E
31CA4D09-DBCC-4A4D-8A19-832A531B617E WINDOW4B74B268-1555-4305-866B-12071073CC37 WINDOW WINDOW_CONSTRUCTION_1 1.13 0.00     No31CA4D09-DBCC-4A4D-8A19-832A531B617E4B74B268-1555-4305-866B-12071073CC37 87.98 90.00 E
354373D3-76F3-483D-9842-74F52495C95C WINDOWBDF88111-FFAD-4314-844F-C6A6D18AE56E WINDOW WINDOW_CONSTRUCTION_1 31.12 0.00     No354373D3-76F3-483D-9842-74F52495C95CBDF88111-FFAD-4314-844F-C6A6D18AE56E 356.37 90.00 N
234E6101-B193-4537-8C3C-89FE6C1C5B4B WINDOW952B28B4-7695-4D41-BB4E-6580FD5066D3 WINDOW WINDOW_CONSTRUCTION_1 18.11 0.00     No234E6101-B193-4537-8C3C-89FE6C1C5B4B952B28B4-7695-4D41-BB4E-6580FD5066D3 270.19 90.00 W
69777C37-5C29-4E64-BDC8-2187F5601DFE WINDOWEF26A619-85E8-4D60-84DC-FF2DDAEBA8AA WINDOW WINDOW_CONSTRUCTION_1 3.63 0.00     No69777C37-5C29-4E64-BDC8-2187F5601DFEEF26A619-85E8-4D60-84DC-FF2DDAEBA8AA 0.40 90.00 N
5BDF1462-AF7C-4F06-87D5-93687C433DDD WINDOWEA6EB60C-30F4-4A3A-BE41-C8CC35D59739 WINDOW WINDOW_CONSTRUCTION_1 11.17 0.00     No5BDF1462-AF7C-4F06-87D5-93687C433DDDEA6EB60C-30F4-4A3A-BE41-C8CC35D59739 270.20 90.00 W
F44D8577-64E0-4369-8209-CD922ECE416D WINDOW9EE15C27-2220-4FBE-BCDC-A3B45C9266FE WINDOW WINDOW_CONSTRUCTION_1 3.15 0.00     NoF44D8577-64E0-4369-8209-CD922ECE416D9EE15C27-2220-4FBE-BCDC-A3B45C9266FE 359.70 90.00 N
0EA016B3-F825-45B6-9898-E4594818013C WINDOW0CA6079F-2460-4171-B8E4-A118F26EA721 WINDOW WINDOW_CONSTRUCTION_1 27.13 0.00     No0EA016B3-F825-45B6-9898-E4594818013C0CA6079F-2460-4171-B8E4-A118F26EA721 270.54 90.00 W
53CD4B62-9F88-4ABE-821A-041EE0CE1E5B WINDOW61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 WINDOW WINDOW_CONSTRUCTION_1 42.94 0.00     No53CD4B62-9F88-4ABE-821A-041EE0CE1E5B61690A0C-0A54-44AC-BFE6-5965FA8DA5D2 180.49 90.00 S
36010500-DEEF-411A-BDAD-F9D9081D9D3B WINDOWC62DAAD5-AF76-47A2-9CCC-D8B9953782D2 WINDOW WINDOW_CONSTRUCTION_1 3.92 0.00     No36010500-DEEF-411A-BDAD-F9D9081D9D3BC62DAAD5-AF76-47A2-9CCC-D8B9953782D2 170.75 90.00 S
A649C3E6-4C83-4D7D-8085-CA69227CE408 WINDOW5EBADD8B-8F48-4111-8F9F-0F5461F63407 WINDOW WINDOW_CONSTRUCTION_1 55.97 0.00     NoA649C3E6-4C83-4D7D-8085-CA69227CE4085EBADD8B-8F48-4111-8F9F-0F5461F63407 90.56 90.00 E
BA59DBE4-1F28-43B0-9666-E348B0352D6A WINDOW83560D6B-A3C1-4E5C-982E-ED16148D6524 WINDOW WINDOW_CONSTRUCTION_1 40.23 0.00     NoBA59DBE4-1F28-43B0-9666-E348B0352D6A83560D6B-A3C1-4E5C-982E-ED16148D6524 0.24 90.00 N
47A5E611-5DB5-4345-B925-F0ABA9A7F655 WINDOW0D1675B6-30BE-4315-95F6-432607EF6038 WINDOW WINDOW_CONSTRUCTION_1 1.13 0.00     No47A5E611-5DB5-4345-B925-F0ABA9A7F6550D1675B6-30BE-4315-95F6-432607EF6038 89.31 90.00 E
D88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF WINDOW44CF0901-3097-4000-8843-4F2A7BDC1148 WINDOW WINDOW_CONSTRUCTION_1 34.20 0.00     NoD88E8F71-D9DF-45F7-AF8E-5C71E4ABD7AF44CF0901-3097-4000-8843-4F2A7BDC1148 358.27 90.00 N
E2E667EC-7877-4C1F-A326-DA1ACEE6236B WINDOW05D3478F-F729-444F-8D57-638778BE8FA6 WINDOW WINDOW_CONSTRUCTION_1 1.58 0.00     NoE2E667EC-7877-4C1F-A326-DA1ACEE6236B05D3478F-F729-444F-8D57-638778BE8FA6 358.68 90.00 N
327FA205-EE88-42C3-98B8-C9F40570608F WINDOWCEBF8668-AE77-42F8-83FA-A52CCE144CC3 WINDOW WINDOW_CONSTRUCTION_1 16.69 0.00     No327FA205-EE88-42C3-98B8-C9F40570608FCEBF8668-AE77-42F8-83FA-A52CCE144CC3 266.89 90.00 W
4909BD4B-64B0-455F-9F41-7B847D8EFD0E WINDOW716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 WINDOW WINDOW_CONSTRUCTION_1 11.69 0.00     No4909BD4B-64B0-455F-9F41-7B847D8EFD0E716EC5BE-26A5-445C-9BA3-01F9DF8ED5D3 176.46 90.00 S
7294D66E-272D-45B0-B3D5-498CB6D9005D WINDOW83FF1247-78C4-4B4A-A96D-1C1D1848C089 WINDOW WINDOW_CONSTRUCTION_1 29.93 0.00     No7294D66E-272D-45B0-B3D5-498CB6D9005D83FF1247-78C4-4B4A-A96D-1C1D1848C089 266.84 90.00 W
AB27E866-0C52-46FA-882B-8A7C2F18BCA9 WINDOWB9E42F4E-FC9A-4DD6-8B23-125922AFAE7B WINDOW WINDOW_CONSTRUCTION_1 12.69 0.00     NoAB27E866-0C52-46FA-882B-8A7C2F18BCA9B9E42F4E-FC9A-4DD6-8B23-125922AFAE7B 176.51 90.00 S
1378D302-9F65-44A3-96B6-26F66BBD6ABB WINDOW42B7433D-B004-4BAB-9ABE-EA1B57133101 WINDOW WINDOW_CONSTRUCTION_1 0.44 0.00     No1378D302-9F65-44A3-96B6-26F66BBD6ABB42B7433D-B004-4BAB-9ABE-EA1B57133101 72.71 90.00 E
BE80FF74-DA6B-47EA-912D-95830F2F5AFC WINDOW779AFBD5-0E07-4533-9528-8573168E8F7D WINDOW WINDOW_CONSTRUCTION_1 8.75 0.00     NoBE80FF74-DA6B-47EA-912D-95830F2F5AFC779AFBD5-0E07-4533-9528-8573168E8F7D 89.15 90.00 E
A102BE68-0A63-4582-8246-03D675A04440 WINDOWF5B25E62-443C-4A74-AEB8-A7D79618EAE9 WINDOW WINDOW_CONSTRUCTION_1 9.27 0.00     NoA102BE68-0A63-4582-8246-03D675A04440F5B25E62-443C-4A74-AEB8-A7D79618EAE9 179.16 90.00 S
59DF3602-265E-4DA0-851C-21F9955D55D1 WINDOW050515B0-F2A7-47E2-A583-AF29A662B779 WINDOW WINDOW_CONSTRUCTION_1 1.24 0.00     No59DF3602-265E-4DA0-851C-21F9955D55D1050515B0-F2A7-47E2-A583-AF29A662B779 178.52 90.00 S
AAF52CEF-F41F-4E17-A34B-327EABEC2C17 WINDOWC7B741E8-43F0-4A31-9813-8F71CE72E68A WINDOW WINDOW_CONSTRUCTION_1 35.67 0.00     NoAAF52CEF-F41F-4E17-A34B-327EABEC2C17C7B741E8-43F0-4A31-9813-8F71CE72E68A 87.80 90.00 E
@@ -5741,8 +5741,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Equipment Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Central Plant

@@ -5966,8 +5966,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: HVAC Sizing Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Zone Sensible Cooling

@@ -6179,8 +6179,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: System Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Economizer

@@ -6380,8 +6380,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Outdoor Air Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Average Outdoor Air During Occupied Hours

@@ -6577,8 +6577,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Object Count Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Surfaces by Class

@@ -6727,8 +6727,8 @@ Note 1: An asterisk (*) indicates that the feature is not yet implemented.

Report: Sensible Heat Gain Summary

For: Entire Facility

-

Timestamp: 2024-02-02 - 18:55:03

+

Timestamp: 2024-02-04 + 23:26:04

Annual Building Sensible Heat Gain Components

diff --git a/requirements.txt b/requirements.txt index 93b455ca..e5c92932 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,26 +1,28 @@ -xmltodict -numpy -trimesh[all] -pyproj -pandas -requests +xmltodict~=0.13.0 +numpy~=1.24.3 +trimesh[all]~=3.12.0 +pyproj~=3.6.0 +pandas~=2.0.2 +requests~=2.31.0 esoreader -geomeppy +geomeppy~=0.11.8 PyWavefront xlrd openpyxl -networkx +networkx~=3.1 parseidf==1.0.0 ply scipy -PyYAML +PyYAML~=6.0 pyecore==0.12.2 -python-dotenv -SQLAlchemy +python-dotenv~=1.0.0 +SQLAlchemy~=2.0.16 bcrypt==4.0.1 -shapely -geopandas +shapely~=2.0.1 +geopandas~=0.13.2 triangle psycopg2-binary -Pillow -pathlib \ No newline at end of file +Pillow~=9.5.0 +pathlib~=1.0.1 +setuptools~=67.8.0 +matplotlib~=3.7.1 \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 00000000..7056f945 --- /dev/null +++ b/test.py @@ -0,0 +1,28 @@ +from DistrictHeatingNetworkCreator import DistrictHeatingNetworkCreator, plot_network_graph +from geojson_creator import process_geojson + +geojson_file = process_geojson(x=-73.59318810862032, y=45.49021341690168, diff=0.0005) + +print("Input geojson file created!") + +buildings_file = './input_files/output_buildings.geojson' +roads_file = './input_files/roads/geobase_mtl.shp' + +central_plant = [45.48895734472743, -73.59311297816515] +# Replace these with the actual longitude and latitude of your central plant +central_plant_longitude = central_plant[1] +central_plant_latitude = central_plant[0] + +# Create an instance of DistrictHeatingNetworkCreator +network_creator = DistrictHeatingNetworkCreator( + buildings_file, + roads_file, + central_plant_longitude, + central_plant_latitude +) + +# Create the network graph +network_graph = network_creator.run() + +# Plot the network graph with the minimum spanning tree +plot_network_graph(network_graph)