{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"Cancellation","meta":[{"name":"robots","content":"noindex"}],"llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"cancellation","__idx":0},"children":["Cancellation"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["These operations cover the cancellation of hotel bookings, either initiated by the traveler or by the hotel/vendor."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Webhook used:"]}," ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/docs/openapi/webhookeventapi/webhooks/paths/pnr_v3/post"},"children":["PNR_V3"]}]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Step"},"children":["Step"]},{"$$mdtype":"Tag","name":"th","attributes":{"width":"25%","data-label":"Operation"},"children":["Operation "]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Event trigger"},"children":["Event trigger"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Context"},"children":["Context"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["1"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["BOOKING_CANCELED_ BY_TRAVELER"]}]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When the hotel booking is canceled by the traveler."]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The hotel reservation has been cancelled by the traveler."," ",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},"The refund amount depends on the hotel's cancellation policy:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Refundable"]}," (canceled before the cancellation deadline): The full prepaid amount is refunded."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Partially refundable"]}," (canceled after the deadline):"," ","The penalty is deducted from full price and then refunded (e.g., one night's stay deducted as penalty)."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Non-refundable:"]}," No refund is received."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Pay-at-hotel bookings"]},": There is no Spotnana-side refund to process, however a cancellation fee may still apply per hotel policy."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example:"]}," A traveler booked a refundable $750 hotel stay with free cancellation until 48 hours before check-in."," ","They cancel 5 days before check-in. The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["BOOKING_CANCELED_BY_TRAVELER"]}," event is triggered and the full $750 is refunded."]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["2"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["BOOKING_CANCELED_ BY_VENDOR"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["When the hotel booking is canceled by the hotel or the supplier."]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["The hotel or booking supplier has canceled the reservation."," ","This scenario is less common and could occur due to hotel overbooking, property closure, renovation,"," ","natural disaster, or operational issues."," ","The refund processing follows the same rules as traveler-initiated cancellations."," ","For a vendor cancellation, the traveler is typically entitled to a full refund since the cancellation was not their doing,"," ","though the actual refund may depend on the hotel policies."," ",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example:"]}," A traveler has a confirmed reservation at a beachfront hotel."," ","A hurricane warning forces the hotel to close, and the hotel cancels all reservations for the affected dates."," ","The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["BOOKING_CANCELED_BY_VENDOR"]}," event is triggered. The full prepaid amount is refunded."]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"hotel-cancellation-flow-diagram","__idx":1},"children":["Hotel cancellation flow diagram"]},{"$$mdtype":"Tag","name":"Mermaid","attributes":{"data-language":"mermaid","diagramSource":"flowchart LR\n    subgraph cancellation[\"Cancellation\"]\n        A([\"Confirmed hotel<br>booking\"]) --> B{\"Who initiates<br>the cancellation?\"}\n\n        B -->|\"Traveler<br>cancels\"| C{\"Cancellation<br>policy?\"}\n\n        C -->|\"Free<br>cancellation\"| D[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Full prepaid price refunded if canceled before deadline\"]\n\n        C -->|\"Penalty<br>applies\"| E[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Penalty (e.g., one night's stay) deducted and remainder refunded, if canceled after deadline.\"]\n\n        C -->|\"Non-<br>refundable\"| F[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Non-refundable rate.<br>No refund processed ($0).\"]\n\n        B -->|\"Hotel/supplier<br>cancels\"| G[\"<b>BOOKING_CANCELED_<br>BY_VENDOR</b><br>―――――――――――<br>Hotel proactively canceled.<br>e.g., Due to overbooking, closure, etc.<br>Typically full refund.\"]\n        D --> H[\"<b>INVOICE_GENERATED</b><br>―――――――――――<br>Credit note / refund<br>adjustment invoice.\"]\n        E --> H\n        G --> H\n    end\n\n    style A fill:#f0f0f0,stroke:#999\n    style D fill:#F44336,color:#fff\n    style E fill:#F44336,color:#fff\n    style F fill:#F44336,color:#fff\n    style G fill:#F44336,color:#fff\n    style H fill:#FF9800,color:#fff\n","diagramHtml":"<div class=\"mermaid\" data-processed=\"true\"><svg id=\"mermaid-1773137744006\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" class=\"flowchart\" style=\"max-width: 1269.03125px;\" viewBox=\"0 0 1269.03125 1246.3125\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#mermaid-1773137744006{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#mermaid-1773137744006 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#mermaid-1773137744006 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#mermaid-1773137744006 .error-icon{fill:#552222;}#mermaid-1773137744006 .error-text{fill:#552222;stroke:#552222;}#mermaid-1773137744006 .edge-thickness-normal{stroke-width:1px;}#mermaid-1773137744006 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1773137744006 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1773137744006 .edge-thickness-invisible{stroke-width:0;fill:none;}#mermaid-1773137744006 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1773137744006 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1773137744006 .marker{fill:#333333;stroke:#333333;}#mermaid-1773137744006 .marker.cross{stroke:#333333;}#mermaid-1773137744006 svg{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;}#mermaid-1773137744006 p{margin:0;}#mermaid-1773137744006 .label{font-family:\"trebuchet ms\",verdana,arial,sans-serif;color:#333;}#mermaid-1773137744006 .cluster-label text{fill:#333;}#mermaid-1773137744006 .cluster-label span{color:#333;}#mermaid-1773137744006 .cluster-label span p{background-color:transparent;}#mermaid-1773137744006 .label text,#mermaid-1773137744006 span{fill:#333;color:#333;}#mermaid-1773137744006 .node rect,#mermaid-1773137744006 .node circle,#mermaid-1773137744006 .node ellipse,#mermaid-1773137744006 .node polygon,#mermaid-1773137744006 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1773137744006 .rough-node .label text,#mermaid-1773137744006 .node .label text,#mermaid-1773137744006 .image-shape .label,#mermaid-1773137744006 .icon-shape .label{text-anchor:middle;}#mermaid-1773137744006 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#mermaid-1773137744006 .rough-node .label,#mermaid-1773137744006 .node .label,#mermaid-1773137744006 .image-shape .label,#mermaid-1773137744006 .icon-shape .label{text-align:center;}#mermaid-1773137744006 .node.clickable{cursor:pointer;}#mermaid-1773137744006 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#mermaid-1773137744006 .arrowheadPath{fill:#333333;}#mermaid-1773137744006 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1773137744006 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1773137744006 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1773137744006 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#mermaid-1773137744006 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1773137744006 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#mermaid-1773137744006 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1773137744006 .cluster text{fill:#333;}#mermaid-1773137744006 .cluster span{color:#333;}#mermaid-1773137744006 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-1773137744006 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#mermaid-1773137744006 rect.text{fill:none;stroke-width:0;}#mermaid-1773137744006 .icon-shape,#mermaid-1773137744006 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1773137744006 .icon-shape p,#mermaid-1773137744006 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#mermaid-1773137744006 .icon-shape rect,#mermaid-1773137744006 .image-shape rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1773137744006 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#mermaid-1773137744006 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#mermaid-1773137744006 :root{--mermaid-font-family:\"trebuchet ms\",verdana,arial,sans-serif;}</style><g><marker id=\"mermaid-1773137744006_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1773137744006_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1773137744006_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1773137744006_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"mermaid-1773137744006_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"mermaid-1773137744006_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"></g><g class=\"edgeLabels\"></g><g class=\"nodes\"><g class=\"root\" transform=\"translate(0, 0)\"><g class=\"clusters\"><g class=\"cluster\" id=\"cancellation\" data-look=\"classic\"><rect style=\"\" x=\"8\" y=\"8\" width=\"1253.03125\" height=\"1230.3125\"></rect><g class=\"cluster-label\" transform=\"translate(588.7265625, 8)\"><foreignObject width=\"91.578125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Cancellation</p></span></div></foreignObject></g></g></g><g class=\"edgePaths\"><path d=\"M790.016,109L789.932,115.167C789.849,121.333,789.682,133.667,789.599,145.417C789.516,157.167,789.516,168.333,789.516,173.917L789.516,179.5\" id=\"L_A_B_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_A_B_0\" data-points=\"W3sieCI6NzkwLjAxNTYyNSwieSI6MTA5fSx7IngiOjc4OS41MTU2MjUsInkiOjE0Nn0seyJ4Ijo3ODkuNTE1NjI1LCJ5IjoxODMuNX1d\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M723.321,320.04L683.267,341.322C643.214,362.605,563.107,405.169,523.053,436.035C483,466.901,483,486.068,483,495.651L483,505.234\" id=\"L_B_C_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_C_0\" data-points=\"W3sieCI6NzIzLjMyMDk4Mzg1OTI5LCJ5IjozMjAuMDM5NzMzODU5Mjl9LHsieCI6NDgzLCJ5Ijo0NDcuNzM0Mzc1fSx7IngiOjQ4MywieSI6NTA5LjIzNDM3NX1d\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M425.395,621.207L383.329,641.058C341.263,660.909,257.132,700.611,215.066,732.045C173,763.479,173,786.646,173,798.229L173,809.813\" id=\"L_C_D_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_C_D_0\" data-points=\"W3sieCI6NDI1LjM5NDgyOTIwOTgyNzk1LCJ5Ijo2MjEuMjA3MzI5MjA5ODI3OX0seyJ4IjoxNzMsInkiOjc0MC4zMTI1fSx7IngiOjE3MywieSI6ODEzLjgxMjV9XQ==\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M483,678.813L483,689.063C483,699.313,483,719.813,483,739.646C483,759.479,483,778.646,483,788.229L483,797.813\" id=\"L_C_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_C_E_0\" data-points=\"W3sieCI6NDgzLCJ5Ijo2NzguODEyNX0seyJ4Ijo0ODMsInkiOjc0MC4zMTI1fSx7IngiOjQ4MywieSI6ODAxLjgxMjV9XQ==\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M540.396,621.417L581.916,641.233C623.436,661.049,706.476,700.681,747.996,734.08C789.516,767.479,789.516,794.646,789.516,808.229L789.516,821.813\" id=\"L_C_F_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_C_F_0\" data-points=\"W3sieCI6NTQwLjM5NTk4ODE2NjIwMzcsInkiOjYyMS40MTY1MTE4MzM3OTYzfSx7IngiOjc4OS41MTU2MjUsInkiOjc0MC4zMTI1fSx7IngiOjc4OS41MTU2MjUsInkiOjgyNS44MTI1fV0=\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M855.71,320.04L895.764,341.322C935.817,362.605,1015.924,405.169,1055.978,450.833C1096.031,496.497,1096.031,545.26,1096.031,594.023C1096.031,642.786,1096.031,691.549,1096.031,725.514C1096.031,759.479,1096.031,778.646,1096.031,788.229L1096.031,797.813\" id=\"L_B_G_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_G_0\" data-points=\"W3sieCI6ODU1LjcxMDI2NjE0MDcxLCJ5IjozMjAuMDM5NzMzODU5Mjl9LHsieCI6MTA5Ni4wMzEyNSwieSI6NDQ3LjczNDM3NX0seyJ4IjoxMDk2LjAzMTI1LCJ5Ijo1OTQuMDIzNDM3NX0seyJ4IjoxMDk2LjAzMTI1LCJ5Ijo3NDAuMzEyNX0seyJ4IjoxMDk2LjAzMTI1LCJ5Ijo4MDEuODEyNX1d\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M173,987.813L173,996.063C173,1004.313,173,1020.813,204.366,1039.231C235.732,1057.65,298.463,1077.987,329.829,1088.155L361.195,1098.324\" id=\"L_D_H_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_D_H_0\" data-points=\"W3sieCI6MTczLCJ5Ijo5ODcuODEyNX0seyJ4IjoxNzMsInkiOjEwMzcuMzEyNX0seyJ4IjozNjUsInkiOjEwOTkuNTU3NjYxMjkwMzIyNn1d\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M483,999.813L483,1006.063C483,1012.313,483,1024.813,483,1036.646C483,1048.479,483,1059.646,483,1065.229L483,1070.813\" id=\"L_E_H_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_H_0\" data-points=\"W3sieCI6NDgzLCJ5Ijo5OTkuODEyNX0seyJ4Ijo0ODMsInkiOjEwMzcuMzEyNX0seyJ4Ijo0ODMsInkiOjEwNzQuODEyNX1d\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path><path d=\"M1096.031,999.813L1096.031,1006.063C1096.031,1012.313,1096.031,1024.813,1014.184,1044.481C932.337,1064.149,768.642,1090.985,686.795,1104.403L604.947,1117.821\" id=\"L_G_H_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_G_H_0\" data-points=\"W3sieCI6MTA5Ni4wMzEyNSwieSI6OTk5LjgxMjV9LHsieCI6MTA5Ni4wMzEyNSwieSI6MTAzNy4zMTI1fSx7IngiOjYwMSwieSI6MTExOC40Njc2NDYwNDY3OTZ9XQ==\" marker-end=\"url(#mermaid-1773137744006_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_A_B_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(483, 447.734375)\"><g class=\"label\" data-id=\"L_B_C_0\" transform=\"translate(-30.390625, -24)\"><foreignObject width=\"60.78125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Traveler<br>cancels</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(173, 740.3125)\"><g class=\"label\" data-id=\"L_C_D_0\" transform=\"translate(-44.5859375, -24)\"><foreignObject width=\"89.171875\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Free<br>cancellation</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(483, 740.3125)\"><g class=\"label\" data-id=\"L_C_E_0\" transform=\"translate(-27.5390625, -24)\"><foreignObject width=\"55.078125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Penalty<br>applies</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(789.515625, 740.3125)\"><g class=\"label\" data-id=\"L_C_F_0\" transform=\"translate(-41.015625, -24)\"><foreignObject width=\"82.03125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Non-<br>refundable</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(1096.03125, 594.0234375)\"><g class=\"label\" data-id=\"L_B_G_0\" transform=\"translate(-53.3203125, -24)\"><foreignObject width=\"106.640625\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Hotel/supplier<br>cancels</p></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_D_H_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_E_H_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_G_H_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"flowchart-A-0\" transform=\"translate(789.515625, 77)\"><g class=\"basic label-container outer-path\"><path d=\"M-44.5703125 -31.5 C-12.277185703084932 -31.5, 20.015941093830136 -31.5, 44.5703125 -31.5 C44.5703125 -31.5, 44.5703125 -31.5, 44.5703125 -31.5 C45.34708593497032 -31.47509038783827, 46.12385936994065 -31.450180775676543, 46.58852442939246 -31.435279871635593 C47.02068104124423 -31.39359024303462, 47.452837653096005 -31.351900614433646, 48.59844309306194 -31.241385435432253 C49.33831208070977 -31.121769155279047, 50.078181068357594 -31.002152875125837, 50.591809304093225 -30.91911344521856 C51.071394870098324 -30.80965116936619, 51.550980436103416 -30.700188893513822, 52.56043189314948 -30.469788185729428 C53.022472700314246 -30.332656899464613, 53.484513507479015 -30.1955256131998, 54.49622136774405 -29.895256030836062 C55.06062090459144 -29.687551784024095, 55.625020441438835 -29.47984753721213, 56.39122315370028 -29.197877856399685 C56.78802361091531 -29.022226064657943, 57.18482406813035 -28.8465742729162, 58.23765028220308 -28.380519338926202 C58.78908759391198 -28.09283484662012, 59.34052490562089 -27.805150354314044, 60.027915388124036 -27.44653917988677 C60.545990162984005 -27.13247920682134, 61.06406493784397 -26.81841923375591, 61.754661888132276 -26.399775304092984 C62.11914528641981 -26.145527463679613, 62.48362868470734 -25.891279623266243, 63.4107942104733 -25.244529088840633 C63.96801561891951 -24.800159843889205, 64.52523702736572 -24.35579059893778, 64.98950695219533 -23.985547688627737 C65.28876180958115 -23.713772344999576, 65.58801666696696 -23.441997001371416, 66.48431284400982 -22.62800452807842 C67.03826465051921 -22.05600380756834, 67.5922164570286 -21.48400308705826, 67.88906940787243 -21.177478043231485 C68.22515048104637 -20.78269809112657, 68.5612315542203 -20.38791813902165, 69.19800419774293 -19.63992875855011 C69.67181176409736 -19.00506978439246, 70.14561933045178 -18.37021081023481, 70.4057385198041 -18.02167479384835 C70.74275692960579 -17.50392401427844, 71.07977533940748 -16.98617323470853, 71.5073095346684 -16.329365901781543 C71.73303416833338 -15.928568957611681, 71.95875880199836 -15.527772013441819, 72.4981906507495 -14.56995614258631 C72.80650976866661 -13.929724897259117, 73.11482888658372 -13.289493651931922, 73.37431012499809 -12.750675308355413 C73.5985949372007 -12.196687485963116, 73.82287974940331 -11.642699663570816, 74.13206779456745 -10.878999214271206 C74.34709565457706 -10.231369559959155, 74.56212351458667 -9.583739905647104, 74.76834987065482 -8.962618978877531 C74.87513222119307 -8.555411596511707, 74.98191457173131 -8.148204214145885, 75.28054173372745 -7.009409419623907 C75.39366377206866 -6.428551661093004, 75.5067858104099 -5.847693902562101, 75.66653867755518 -5.027396693551458 C75.76725391710154 -4.246269184103422, 75.86796915664792 -3.4651416746553867, 75.92475455789975 -3.024725316091981 C75.97339940683732 -2.2670425284740294, 76.02204425577489 -1.5093597408560777, 76.05412831032167 -1.0096246935071378 C76.05412831032167 -0.5125817093513652, 76.05412831032167 -0.015538725195592629, 76.05412831032167 1.00962469350713 C76.01577254313635 1.6070467276364329, 75.97741677595104 2.204468761765736, 75.92475455789975 3.02472531609196 C75.82495434865677 3.79875603120004, 75.7251541394138 4.57278674630812, 75.66653867755518 5.027396693551435 C75.56494450458872 5.549061299798115, 75.46335033162228 6.070725906044795, 75.28054173372745 7.0094094196239 C75.08700389193655 7.747453090203851, 74.89346605014563 8.485496760783802, 74.76834987065482 8.96261897887751 C74.52522428400506 9.694874509064904, 74.28209869735531 10.427130039252297, 74.13206779456746 10.878999214271184 C73.95014654650792 11.328348214186281, 73.7682252984484 11.77769721410138, 73.37431012499809 12.750675308355405 C73.15368926294856 13.208799248931486, 72.93306840089903 13.666923189507568, 72.4981906507495 14.569956142586303 C72.17949910360346 15.135825255562601, 71.86080755645742 15.701694368538899, 71.50730953466841 16.329365901781536 C71.11220793734783 16.936348054900176, 70.71710634002724 17.54333020801882, 70.40573851980412 18.021674793848334 C70.05322312651273 18.494013306045797, 69.70070773322135 18.966351818243258, 69.19800419774295 19.639928758550102 C68.76343759458341 20.150395418161516, 68.32887099142387 20.66086207777293, 67.88906940787246 21.177478043231467 C67.5887052303119 21.487628716920337, 67.28834105275133 21.797779390609207, 66.48431284400982 22.628004528078414 C65.89191493837615 23.16600463198524, 65.29951703274249 23.704004735892063, 64.98950695219536 23.985547688627715 C64.40822080614352 24.449107921430066, 63.82693466009169 24.912668154232414, 63.41079421047331 25.24452908884063 C63.03361182304427 25.50763519434874, 62.656429435615216 25.77074129985685, 61.7546618881323 26.399775304092973 C61.267852787391426 26.69488184176991, 60.781043686650555 26.989988379446846, 60.02791538812404 27.446539179886766 C59.60863365086706 27.665278193650963, 59.18935191361008 27.88401720741516, 58.237650282203084 28.3805193389262 C57.85687858838612 28.549075672587993, 57.47610689456914 28.71763200624979, 56.391223153700295 29.197877856399682 C55.911286082405965 29.37449913512565, 55.43134901111163 29.551120413851617, 54.49622136774407 29.895256030836055 C53.76242566969275 30.11304274224547, 53.028629971641436 30.330829453654882, 52.56043189314951 30.46978818572942 C51.89087370152366 30.62261047369249, 51.22131550989781 30.77543276165556, 50.59180930409324 30.919113445218557 C50.03525825137218 31.009092303304623, 49.47870719865111 31.09907116139069, 48.59844309306196 31.24138543543225 C48.052940319135196 31.294009431969894, 47.507437545208425 31.346633428507538, 46.58852442939246 31.435279871635593 C46.08768746392639 31.451340738298075, 45.586850498460336 31.467401604960557, 44.57031250000001 31.5 C44.57031250000001 31.5, 44.5703125 31.5, 44.5703125 31.5 C10.644650209533587 31.5, -23.281012080932825 31.5, -44.57031249999999 31.5 C-44.98314438357531 31.486761285022254, -45.39597626715063 31.47352257004451, -46.58852442939244 31.435279871635593 C-47.148366878966215 31.381272543834267, -47.708209328539986 31.327265216032938, -48.598443093061945 31.24138543543225 C-49.34239503886924 31.12110905426763, -50.086346984676545 31.000832673103016, -50.591809304093225 30.919113445218557 C-51.21600292389417 30.776645324743022, -51.84019654369513 30.63417720426749, -52.56043189314947 30.469788185729428 C-53.18063732783965 30.285714468238144, -53.800842762529825 30.10164075074686, -54.496221367744035 29.89525603083607 C-54.94766130672308 29.72912196022673, -55.39910124570212 29.562987889617393, -56.39122315370029 29.197877856399685 C-57.11115597796684 28.879184951145334, -57.83108880223339 28.560492045890985, -58.23765028220308 28.380519338926206 C-58.94645365464812 28.010737073531857, -59.65525702709316 27.640954808137508, -60.02791538812403 27.446539179886773 C-60.70059556211459 27.0387565053062, -61.373275736105164 26.63097383072563, -61.75466188813226 26.399775304092994 C-62.36069715161869 25.97703133912859, -62.96673241510511 25.554287374164186, -63.4107942104733 25.244529088840636 C-63.85381837787277 24.891229104707776, -64.29684254527224 24.53792912057492, -64.98950695219533 23.98554768862774 C-65.38723277394142 23.624343620566528, -65.78495859568751 23.26313955250531, -66.4843128440098 22.628004528078435 C-66.99414073224102 22.101565375831633, -67.50396862047224 21.575126223584835, -67.88906940787244 21.177478043231478 C-68.37662575854672 20.604766610987188, -68.86418210922102 20.0320551787429, -69.19800419774293 19.639928758550113 C-69.62457912873109 19.068357212801676, -70.05115405971922 18.496785667053235, -70.4057385198041 18.021674793848355 C-70.79137582886229 17.42923232901801, -71.17701313792045 16.836789864187665, -71.5073095346684 16.329365901781557 C-71.70568965526137 15.977121909503234, -71.90406977585435 15.624877917224909, -72.4981906507495 14.569956142586314 C-72.69086285842049 14.169868180832703, -72.88353506609145 13.76978021907909, -73.37431012499809 12.750675308355417 C-73.6219111121984 12.139096082931198, -73.86951209939873 11.527516857506978, -74.13206779456745 10.878999214271209 C-74.37264937886529 10.154405813836071, -74.61323096316312 9.429812413400931, -74.76834987065482 8.962618978877522 C-74.96721039686355 8.204277605746329, -75.1660709230723 7.445936232615136, -75.28054173372743 7.009409419623911 C-75.39057260079271 6.444424172275691, -75.500603467858 5.879438924927472, -75.66653867755518 5.027396693551461 C-75.73215641308305 4.518478494484827, -75.79777414861091 4.0095602954181935, -75.92475455789975 3.024725316091999 C-75.96241668890403 2.4381072253752336, -76.00007881990832 1.8514891346584679, -76.05412831032167 1.0096246935071416 C-76.05412831032167 0.5340127945164783, -76.05412831032167 0.058400895525814955, -76.05412831032167 -1.0096246935071262 C-76.02025928361887 -1.5371621229896055, -75.98639025691607 -2.064699552472085, -75.92475455789975 -3.024725316091956 C-75.85895833957984 -3.53502779244828, -75.79316212125993 -4.045330268804603, -75.66653867755518 -5.027396693551446 C-75.55106661530483 -5.6203213281780044, -75.43559455305447 -6.213245962804563, -75.28054173372745 -7.009409419623896 C-75.1322159018677 -7.575040101327313, -74.98389007000794 -8.14067078303073, -74.76834987065482 -8.962618978877506 C-74.54390286636513 -9.638617595024307, -74.31945586207544 -10.314616211171108, -74.13206779456746 -10.878999214271168 C-73.87480710462646 -11.514438092222521, -73.61754641468545 -12.149876970173874, -73.37431012499809 -12.750675308355401 C-73.03795411142997 -13.44912576739539, -72.70159809786185 -14.147576226435381, -72.4981906507495 -14.5699561425863 C-72.10397883616398 -15.269919137657713, -71.70976702157846 -15.969882132729124, -71.5073095346684 -16.329365901781546 C-71.1656680090105 -16.854219028787032, -70.82402648335261 -17.37907215579252, -70.40573851980412 -18.021674793848344 C-69.97005190654701 -18.60545516374585, -69.53436529328991 -19.18923553364336, -69.19800419774295 -19.639928758550102 C-68.78241663767538 -20.128101554207543, -68.36682907760782 -20.61627434986498, -67.88906940787246 -21.177478043231467 C-67.41119455940145 -21.67092305853249, -66.93331971093045 -22.16436807383352, -66.48431284400984 -22.628004528078403 C-66.16419926116839 -22.918723214273733, -65.84408567832693 -23.209441900469063, -64.98950695219536 -23.98554768862771 C-64.61333365180309 -24.285535885298618, -64.23716035141081 -24.58552408196952, -63.41079421047331 -25.244529088840626 C-63.01785695398702 -25.51862510898578, -62.62491969750074 -25.792721129130936, -61.754661888132304 -26.39977530409297 C-61.13233854550344 -26.77703137157249, -60.51001520287456 -27.154287439052013, -60.02791538812404 -27.446539179886763 C-59.35930872211702 -27.795350849279618, -58.690702056110005 -28.144162518672474, -58.23765028220309 -28.3805193389262 C-57.504306933079995 -28.705148685725455, -56.770963583956906 -29.02977803252471, -56.3912231537003 -29.19787785639968 C-55.93738428426191 -29.364894755593525, -55.483545414823524 -29.531911654787375, -54.49622136774408 -29.895256030836055 C-53.7628209681177 -30.11292541974791, -53.02942056849132 -30.33059480865976, -52.56043189314951 -30.469788185729417 C-52.14396486271961 -30.564844067723687, -51.727497832289714 -30.659899949717953, -50.59180930409324 -30.919113445218553 C-49.8140565630202 -31.044854476832654, -49.036303821947165 -31.170595508446755, -48.59844309306196 -31.24138543543225 C-48.158417894023195 -31.28383413717579, -47.71839269498442 -31.326282838919333, -46.58852442939246 -31.435279871635593 C-46.13046727007155 -31.449968873180843, -45.67241011075065 -31.46465787472609, -44.57031250000001 -31.5 C-44.57031250000001 -31.5, -44.5703125 -31.5, -44.5703125 -31.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#f0f0f0\" style=\"fill:#f0f0f0 !important;stroke:#999 !important\"></path><path d=\"M-44.5703125 -31.5 C-11.738852486614796 -31.5, 21.092607526770408 -31.5, 44.5703125 -31.5 M-44.5703125 -31.5 C-25.07602829713435 -31.5, -5.5817440942687 -31.5, 44.5703125 -31.5 M44.5703125 -31.5 C44.5703125 -31.5, 44.5703125 -31.5, 44.5703125 -31.5 M44.5703125 -31.5 C44.5703125 -31.5, 44.5703125 -31.5, 44.5703125 -31.5 M44.5703125 -31.5 C45.14872111991267 -31.48145156136348, 45.72712973982535 -31.46290312272696, 46.58852442939246 -31.435279871635593 M44.5703125 -31.5 C45.09710406722645 -31.48310681977663, 45.623895634452886 -31.46621363955326, 46.58852442939246 -31.435279871635593 M46.58852442939246 -31.435279871635593 C47.194303210825176 -31.376841121146356, 47.80008199225789 -31.318402370657118, 48.59844309306194 -31.241385435432253 M46.58852442939246 -31.435279871635593 C47.07153788715104 -31.388684144274297, 47.55455134490961 -31.342088416913, 48.59844309306194 -31.241385435432253 M48.59844309306194 -31.241385435432253 C49.00986496573528 -31.1748699376827, 49.421286838408626 -31.10835443993315, 50.591809304093225 -30.91911344521856 M48.59844309306194 -31.241385435432253 C49.18113994851034 -31.14717952672496, 49.76383680395874 -31.052973618017667, 50.591809304093225 -30.91911344521856 M50.591809304093225 -30.91911344521856 C51.06422427986707 -30.811287809794, 51.53663925564091 -30.703462174369438, 52.56043189314948 -30.469788185729428 M50.591809304093225 -30.91911344521856 C51.04107400758544 -30.816571708372635, 51.49033871107767 -30.71402997152671, 52.56043189314948 -30.469788185729428 M52.56043189314948 -30.469788185729428 C53.25215231546566 -30.264489195300573, 53.943872737781845 -30.059190204871722, 54.49622136774405 -29.895256030836062 M52.56043189314948 -30.469788185729428 C53.18025448113269 -30.285828095131166, 53.80007706911591 -30.101868004532903, 54.49622136774405 -29.895256030836062 M54.49622136774405 -29.895256030836062 C55.2434495187351 -29.620269163970047, 55.990677669726146 -29.34528229710403, 56.39122315370028 -29.197877856399685 M54.49622136774405 -29.895256030836062 C55.018538460231696 -29.703038512554333, 55.54085555271935 -29.510820994272603, 56.39122315370028 -29.197877856399685 M56.39122315370028 -29.197877856399685 C57.020095666504645 -28.919494649821477, 57.648968179309016 -28.64111144324327, 58.23765028220308 -28.380519338926202 M56.39122315370028 -29.197877856399685 C56.843553957108995 -28.99764442764719, 57.295884760517716 -28.797410998894698, 58.23765028220308 -28.380519338926202 M58.23765028220308 -28.380519338926202 C58.93881037704584 -28.01472456656121, 59.6399704718886 -27.648929794196217, 60.027915388124036 -27.44653917988677 M58.23765028220308 -28.380519338926202 C58.76400187216121 -28.10592205158933, 59.290353462119334 -27.83132476425246, 60.027915388124036 -27.44653917988677 M60.027915388124036 -27.44653917988677 C60.64497755972037 -27.072472465205244, 61.26203973131669 -26.698405750523722, 61.754661888132276 -26.399775304092984 M60.027915388124036 -27.44653917988677 C60.47058125207893 -27.178192531763948, 60.913247116033816 -26.909845883641125, 61.754661888132276 -26.399775304092984 M61.754661888132276 -26.399775304092984 C62.111793927151965 -26.150655453669646, 62.46892596617165 -25.901535603246305, 63.4107942104733 -25.244529088840633 M61.754661888132276 -26.399775304092984 C62.17384460771031 -26.107371585042817, 62.59302732728834 -25.814967865992646, 63.4107942104733 -25.244529088840633 M63.4107942104733 -25.244529088840633 C63.99433778182042 -24.7791686194379, 64.57788135316754 -24.31380815003517, 64.98950695219533 -23.985547688627737 M63.4107942104733 -25.244529088840633 C63.81804694721778 -24.919755868737376, 64.22529968396226 -24.59498264863412, 64.98950695219533 -23.985547688627737 M64.98950695219533 -23.985547688627737 C65.35203248936773 -23.65631158766785, 65.71455802654013 -23.32707548670797, 66.48431284400982 -22.62800452807842 M64.98950695219533 -23.985547688627737 C65.58683946046294 -23.443066109171202, 66.18417196873054 -22.90058452971467, 66.48431284400982 -22.62800452807842 M66.48431284400982 -22.62800452807842 C66.86475396409419 -22.235167836794464, 67.24519508417856 -21.842331145510506, 67.88906940787243 -21.177478043231485 M66.48431284400982 -22.62800452807842 C66.84477079631496 -22.2558020981751, 67.2052287486201 -21.883599668271778, 67.88906940787243 -21.177478043231485 M67.88906940787243 -21.177478043231485 C68.21543802503882 -20.794106894607427, 68.54180664220522 -20.41073574598337, 69.19800419774293 -19.63992875855011 M67.88906940787243 -21.177478043231485 C68.36688034276398 -20.61621413089546, 68.84469127765554 -20.054950218559433, 69.19800419774293 -19.63992875855011 M69.19800419774293 -19.63992875855011 C69.48240067478835 -19.258863388361302, 69.76679715183377 -18.8777980181725, 70.4057385198041 -18.02167479384835 M69.19800419774293 -19.63992875855011 C69.66870210992232 -19.009236437691694, 70.1394000221017 -18.37854411683328, 70.4057385198041 -18.02167479384835 M70.4057385198041 -18.02167479384835 C70.82257415740452 -17.3813033184529, 71.23940979500492 -16.740931843057446, 71.5073095346684 -16.329365901781543 M70.4057385198041 -18.02167479384835 C70.79405316269646 -17.4251192252839, 71.18236780558883 -16.828563656719453, 71.5073095346684 -16.329365901781543 M71.5073095346684 -16.329365901781543 C71.7169934877468 -15.957050810288168, 71.92667744082522 -15.584735718794793, 72.4981906507495 -14.56995614258631 M71.5073095346684 -16.329365901781543 C71.79493777480604 -15.818652835899584, 72.08256601494368 -15.307939770017624, 72.4981906507495 -14.56995614258631 M72.4981906507495 -14.56995614258631 C72.83824020645743 -13.863835964263878, 73.17828976216536 -13.157715785941447, 73.37431012499809 -12.750675308355413 M72.4981906507495 -14.56995614258631 C72.79401910093543 -13.955662036060417, 73.08984755112134 -13.341367929534524, 73.37431012499809 -12.750675308355413 M73.37431012499809 -12.750675308355413 C73.6578088339203 -12.050428016242897, 73.94130754284251 -11.350180724130379, 74.13206779456745 -10.878999214271206 M73.37431012499809 -12.750675308355413 C73.52782828653267 -12.371482481293276, 73.68134644806725 -11.992289654231136, 74.13206779456745 -10.878999214271206 M74.13206779456745 -10.878999214271206 C74.27993684456739 -10.43364119540503, 74.42780589456733 -9.988283176538857, 74.76834987065482 -8.962618978877531 M74.13206779456745 -10.878999214271206 C74.31530071420616 -10.327130854520497, 74.49853363384487 -9.77526249476979, 74.76834987065482 -8.962618978877531 M74.76834987065482 -8.962618978877531 C74.92857973525425 -8.351593061097287, 75.08880959985369 -7.74056714331704, 75.28054173372745 -7.009409419623907 M74.76834987065482 -8.962618978877531 C74.91954231552982 -8.386056659348982, 75.07073476040485 -7.809494339820436, 75.28054173372745 -7.009409419623907 M75.28054173372745 -7.009409419623907 C75.4111993684188 -6.338510079984656, 75.54185700311017 -5.667610740345404, 75.66653867755518 -5.027396693551458 M75.28054173372745 -7.009409419623907 C75.42305923897278 -6.277612151274523, 75.5655767442181 -5.545814882925139, 75.66653867755518 -5.027396693551458 M75.66653867755518 -5.027396693551458 C75.73113000769573 -4.5264390919822315, 75.79572133783627 -4.025481490413005, 75.92475455789975 -3.024725316091981 M75.66653867755518 -5.027396693551458 C75.74978247959774 -4.381774203257413, 75.83302628164029 -3.736151712963368, 75.92475455789975 -3.024725316091981 M75.92475455789975 -3.024725316091981 C75.9594863996205 -2.483748846253279, 75.99421824134124 -1.9427723764145768, 76.05412831032167 -1.0096246935071378 M75.92475455789975 -3.024725316091981 C75.96260658802059 -2.4351493933510495, 76.00045861814144 -1.8455734706101177, 76.05412831032167 -1.0096246935071378 M76.05412831032167 -1.0096246935071378 C76.05412831032167 -0.3436650584067169, 76.05412831032167 0.322294576693704, 76.05412831032167 1.00962469350713 M76.05412831032167 -1.0096246935071378 C76.05412831032167 -0.5076287582088196, 76.05412831032167 -0.005632822910501378, 76.05412831032167 1.00962469350713 M76.05412831032167 1.00962469350713 C76.01840991028112 1.5659676055121832, 75.98269151024058 2.122310517517236, 75.92475455789975 3.02472531609196 M76.05412831032167 1.00962469350713 C76.00336818165214 1.8002546703734832, 75.95260805298261 2.5908846472398364, 75.92475455789975 3.02472531609196 M75.92475455789975 3.02472531609196 C75.87250563594912 3.4299576370243168, 75.8202567139985 3.8351899579566737, 75.66653867755518 5.027396693551435 M75.92475455789975 3.02472531609196 C75.8351450718831 3.7197187942425662, 75.74553558586645 4.414712272393173, 75.66653867755518 5.027396693551435 M75.66653867755518 5.027396693551435 C75.5827016191124 5.4578822696865394, 75.49886456066962 5.888367845821643, 75.28054173372745 7.0094094196239 M75.66653867755518 5.027396693551435 C75.5567552152429 5.591111569781994, 75.44697175293064 6.154826446012551, 75.28054173372745 7.0094094196239 M75.28054173372745 7.0094094196239 C75.10061505422637 7.695547829277702, 74.92068837472529 8.381686238931504, 74.76834987065482 8.96261897887751 M75.28054173372745 7.0094094196239 C75.0936366472531 7.7221595195274535, 74.90673156077877 8.434909619431007, 74.76834987065482 8.96261897887751 M74.76834987065482 8.96261897887751 C74.58032973412742 9.52890567315753, 74.3923095976 10.095192367437548, 74.13206779456746 10.878999214271184 M74.76834987065482 8.96261897887751 C74.58310953652631 9.520533351233436, 74.39786920239779 10.078447723589361, 74.13206779456746 10.878999214271184 M74.13206779456746 10.878999214271184 C73.91948249557997 11.404089012827416, 73.7068971965925 11.929178811383647, 73.37431012499809 12.750675308355405 M74.13206779456746 10.878999214271184 C73.9591684953999 11.306063825995611, 73.78626919623233 11.733128437720037, 73.37431012499809 12.750675308355405 M73.37431012499809 12.750675308355405 C73.14740091000134 13.221857148375587, 72.9204916950046 13.693038988395768, 72.4981906507495 14.569956142586303 M73.37431012499809 12.750675308355405 C73.05595356551498 13.411749515861228, 72.73759700603188 14.07282372336705, 72.4981906507495 14.569956142586303 M72.4981906507495 14.569956142586303 C72.21852562865448 15.066529708470345, 71.93886060655944 15.563103274354384, 71.50730953466841 16.329365901781536 M72.4981906507495 14.569956142586303 C72.17169361765372 15.149684686257537, 71.84519658455793 15.72941322992877, 71.50730953466841 16.329365901781536 M71.50730953466841 16.329365901781536 C71.09155864389022 16.968070914762734, 70.67580775311204 17.606775927743932, 70.40573851980412 18.021674793848334 M71.50730953466841 16.329365901781536 C71.18993028673496 16.81694565486847, 70.8725510388015 17.3045254079554, 70.40573851980412 18.021674793848334 M70.40573851980412 18.021674793848334 C69.98530283639802 18.585020307133792, 69.56486715299192 19.14836582041925, 69.19800419774295 19.639928758550102 M70.40573851980412 18.021674793848334 C70.07731625491897 18.461730708910597, 69.74889399003382 18.90178662397286, 69.19800419774295 19.639928758550102 M69.19800419774295 19.639928758550102 C68.93618361879636 19.947478108593735, 68.6743630398498 20.25502745863737, 67.88906940787246 21.177478043231467 M69.19800419774295 19.639928758550102 C68.88104167643523 20.01225097175653, 68.56407915512753 20.38457318496296, 67.88906940787246 21.177478043231467 M67.88906940787246 21.177478043231467 C67.45018214855358 21.630665171792327, 67.01129488923469 22.083852300353186, 66.48431284400982 22.628004528078414 M67.88906940787246 21.177478043231467 C67.40447295355678 21.677863668421228, 66.91987649924108 22.178249293610985, 66.48431284400982 22.628004528078414 M66.48431284400982 22.628004528078414 C65.97671552754403 23.088990980603604, 65.46911821107825 23.5499774331288, 64.98950695219536 23.985547688627715 M66.48431284400982 22.628004528078414 C66.17722705157375 22.906891719724026, 65.87014125913768 23.18577891136964, 64.98950695219536 23.985547688627715 M64.98950695219536 23.985547688627715 C64.63114761070679 24.271329727122268, 64.27278826921822 24.55711176561682, 63.41079421047331 25.24452908884063 M64.98950695219536 23.985547688627715 C64.41512472327933 24.443602231235204, 63.84074249436332 24.901656773842692, 63.41079421047331 25.24452908884063 M63.41079421047331 25.24452908884063 C62.99739363850832 25.53289943202108, 62.58399306654332 25.82126977520153, 61.7546618881323 26.399775304092973 M63.41079421047331 25.24452908884063 C62.90788769850941 25.595334901114622, 62.40498118654551 25.946140713388615, 61.7546618881323 26.399775304092973 M61.7546618881323 26.399775304092973 C61.09998842136706 26.796642206934393, 60.44531495460182 27.193509109775814, 60.02791538812404 27.446539179886766 M61.7546618881323 26.399775304092973 C61.314696055907724 26.66648517711373, 60.874730223683144 26.933195050134486, 60.02791538812404 27.446539179886766 M60.02791538812404 27.446539179886766 C59.61494770819574 27.661984153986936, 59.20198002826744 27.87742912808711, 58.237650282203084 28.3805193389262 M60.02791538812404 27.446539179886766 C59.625378272084404 27.65654253548732, 59.222841156044765 27.866545891087867, 58.237650282203084 28.3805193389262 M58.237650282203084 28.3805193389262 C57.78793808993008 28.579593586207256, 57.338225897657075 28.77866783348831, 56.391223153700295 29.197877856399682 M58.237650282203084 28.3805193389262 C57.75537564063589 28.594008016579053, 57.2731009990687 28.807496694231904, 56.391223153700295 29.197877856399682 M56.391223153700295 29.197877856399682 C55.861128838916194 29.39295746437836, 55.3310345241321 29.58803707235704, 54.49622136774407 29.895256030836055 M56.391223153700295 29.197877856399682 C55.77548143268335 29.42447650158799, 55.15973971166641 29.6510751467763, 54.49622136774407 29.895256030836055 M54.49622136774407 29.895256030836055 C53.824217123687056 30.09470336304992, 53.15221287963004 30.294150695263784, 52.56043189314951 30.46978818572942 M54.49622136774407 29.895256030836055 C53.75834264543266 30.11425456241363, 53.020463923121255 30.333253093991207, 52.56043189314951 30.46978818572942 M52.56043189314951 30.46978818572942 C51.89130950761381 30.622511003796312, 51.22218712207812 30.775233821863207, 50.59180930409324 30.919113445218557 M52.56043189314951 30.46978818572942 C51.843189765329754 30.633494020961987, 51.12594763750999 30.797199856194553, 50.59180930409324 30.919113445218557 M50.59180930409324 30.919113445218557 C49.88822414178336 31.032863637876392, 49.18463897947348 31.14661383053423, 48.59844309306196 31.24138543543225 M50.59180930409324 30.919113445218557 C49.87772419901204 31.034561187195386, 49.163639093930854 31.150008929172216, 48.59844309306196 31.24138543543225 M48.59844309306196 31.24138543543225 C47.86392716895349 31.31224330324635, 47.12941124484501 31.383101171060453, 46.58852442939246 31.435279871635593 M48.59844309306196 31.24138543543225 C47.89048675308505 31.30968113210775, 47.18253041310813 31.377976828783257, 46.58852442939246 31.435279871635593 M46.58852442939246 31.435279871635593 C45.904916776114774 31.45720183851463, 45.22130912283709 31.47912380539367, 44.57031250000001 31.5 M46.58852442939246 31.435279871635593 C45.98422178506056 31.454658681235575, 45.37991914072867 31.47403749083556, 44.57031250000001 31.5 M44.57031250000001 31.5 C44.57031250000001 31.5, 44.5703125 31.5, 44.5703125 31.5 M44.57031250000001 31.5 C44.57031250000001 31.5, 44.5703125 31.5, 44.5703125 31.5 M44.5703125 31.5 C24.355175287636836 31.5, 4.140038075273672 31.5, -44.57031249999999 31.5 M44.5703125 31.5 C15.290281826619768 31.5, -13.989748846760463 31.5, -44.57031249999999 31.5 M-44.57031249999999 31.5 C-45.179142569245045 31.48047600469515, -45.787972638490096 31.4609520093903, -46.58852442939244 31.435279871635593 M-44.57031249999999 31.5 C-45.32593034558909 31.47576880641287, -46.08154819117819 31.451537612825742, -46.58852442939244 31.435279871635593 M-46.58852442939244 31.435279871635593 C-47.29257565547175 31.367360896601205, -47.99662688155105 31.299441921566817, -48.598443093061945 31.24138543543225 M-46.58852442939244 31.435279871635593 C-47.06237161101927 31.389568403908665, -47.53621879264611 31.343856936181737, -48.598443093061945 31.24138543543225 M-48.598443093061945 31.24138543543225 C-49.09090145847504 31.16176858598392, -49.58335982388813 31.082151736535597, -50.591809304093225 30.919113445218557 M-48.598443093061945 31.24138543543225 C-49.07110004111003 31.16496992558121, -49.54375698915811 31.088554415730176, -50.591809304093225 30.919113445218557 M-50.591809304093225 30.919113445218557 C-51.1315803561103 30.795914224930954, -51.67135140812737 30.67271500464335, -52.56043189314947 30.469788185729428 M-50.591809304093225 30.919113445218557 C-51.06829305097889 30.810359139338935, -51.54477679786455 30.701604833459317, -52.56043189314947 30.469788185729428 M-52.56043189314947 30.469788185729428 C-53.307642552816255 30.24801998412912, -54.05485321248304 30.026251782528806, -54.496221367744035 29.89525603083607 M-52.56043189314947 30.469788185729428 C-53.12104692529498 30.303400586916997, -53.6816619574405 30.137012988104562, -54.496221367744035 29.89525603083607 M-54.496221367744035 29.89525603083607 C-54.94024109475123 29.731852666824057, -55.384260821758424 29.56844930281205, -56.39122315370029 29.197877856399685 M-54.496221367744035 29.89525603083607 C-54.99763408664887 29.710731515270727, -55.49904680555371 29.526206999705384, -56.39122315370029 29.197877856399685 M-56.39122315370029 29.197877856399685 C-57.106614194383326 28.88119546401053, -57.822005235066364 28.56451307162138, -58.23765028220308 28.380519338926206 M-56.39122315370029 29.197877856399685 C-56.8776215386203 28.982563719891036, -57.36401992354032 28.76724958338239, -58.23765028220308 28.380519338926206 M-58.23765028220308 28.380519338926206 C-58.92237675478277 28.02329797676962, -59.607103227362465 27.66607661461303, -60.02791538812403 27.446539179886773 M-58.23765028220308 28.380519338926206 C-58.77600150201519 28.09966185238064, -59.31435272182731 27.81880436583507, -60.02791538812403 27.446539179886773 M-60.02791538812403 27.446539179886773 C-60.45731014585186 27.186237554348477, -60.886704903579684 26.925935928810176, -61.75466188813226 26.399775304092994 M-60.02791538812403 27.446539179886773 C-60.57749496013201 27.113380813647485, -61.12707453213998 26.780222447408192, -61.75466188813226 26.399775304092994 M-61.75466188813226 26.399775304092994 C-62.34456972931996 25.98828113077932, -62.93447757050766 25.57678695746565, -63.4107942104733 25.244529088840636 M-61.75466188813226 26.399775304092994 C-62.2367715410825 26.063476480385415, -62.71888119403274 25.72717765667784, -63.4107942104733 25.244529088840636 M-63.4107942104733 25.244529088840636 C-64.0168371373064 24.76122598217084, -64.62288006413948 24.277922875501044, -64.98950695219533 23.98554768862774 M-63.4107942104733 25.244529088840636 C-63.80934432011158 24.926695982267944, -64.20789442974986 24.60886287569525, -64.98950695219533 23.98554768862774 M-64.98950695219533 23.98554768862774 C-65.50717944438821 23.515411228081735, -66.02485193658111 23.045274767535727, -66.4843128440098 22.628004528078435 M-64.98950695219533 23.98554768862774 C-65.4661563920461 23.552667278808357, -65.94280583189688 23.119786868988975, -66.4843128440098 22.628004528078435 M-66.4843128440098 22.628004528078435 C-66.86260386489688 22.23738799074211, -67.24089488578396 21.846771453405786, -67.88906940787244 21.177478043231478 M-66.4843128440098 22.628004528078435 C-66.85154818015586 22.248803892925814, -67.21878351630191 21.86960325777319, -67.88906940787244 21.177478043231478 M-67.88906940787244 21.177478043231478 C-68.18605106338646 20.82862649192979, -68.48303271890049 20.479774940628097, -69.19800419774293 19.639928758550113 M-67.88906940787244 21.177478043231478 C-68.25250116645131 20.75057041975183, -68.6159329250302 20.32366279627219, -69.19800419774293 19.639928758550113 M-69.19800419774293 19.639928758550113 C-69.46621128007936 19.280555702387147, -69.73441836241581 18.92118264622418, -70.4057385198041 18.021674793848355 M-69.19800419774293 19.639928758550113 C-69.4929191338943 19.244769611410664, -69.78783407004569 18.849610464271215, -70.4057385198041 18.021674793848355 M-70.4057385198041 18.021674793848355 C-70.65249438469368 17.642591522150507, -70.89925024958328 17.26350825045266, -71.5073095346684 16.329365901781557 M-70.4057385198041 18.021674793848355 C-70.67595760686223 17.60654571214229, -70.94617669392035 17.191416630436223, -71.5073095346684 16.329365901781557 M-71.5073095346684 16.329365901781557 C-71.82134257223008 15.771768444297527, -72.13537560979178 15.214170986813498, -72.4981906507495 14.569956142586314 M-71.5073095346684 16.329365901781557 C-71.76425421725949 15.873134599370616, -72.02119889985057 15.416903296959674, -72.4981906507495 14.569956142586314 M-72.4981906507495 14.569956142586314 C-72.8197248841427 13.902283427214847, -73.14125911753591 13.23461071184338, -73.37431012499809 12.750675308355417 M-72.4981906507495 14.569956142586314 C-72.69516727069106 14.160929976653193, -72.8921438906326 13.751903810720073, -73.37431012499809 12.750675308355417 M-73.37431012499809 12.750675308355417 C-73.66449803441853 12.033905561685364, -73.95468594383898 11.317135815015313, -74.13206779456745 10.878999214271209 M-73.37431012499809 12.750675308355417 C-73.59093646986594 12.215604048346384, -73.80756281473379 11.680532788337349, -74.13206779456745 10.878999214271209 M-74.13206779456745 10.878999214271209 C-74.26512792357455 10.478243305954322, -74.39818805258166 10.077487397637436, -74.76834987065482 8.962618978877522 M-74.13206779456745 10.878999214271209 C-74.32687878633611 10.292259545980391, -74.52168977810476 9.705519877689573, -74.76834987065482 8.962618978877522 M-74.76834987065482 8.962618978877522 C-74.87203176052698 8.567234996779641, -74.97571365039914 8.17185101468176, -75.28054173372743 7.009409419623911 M-74.76834987065482 8.962618978877522 C-74.87640997193785 8.550538979141173, -74.98447007322088 8.138458979404826, -75.28054173372743 7.009409419623911 M-75.28054173372743 7.009409419623911 C-75.38060124307373 6.495624986715508, -75.48066075242002 5.981840553807103, -75.66653867755518 5.027396693551461 M-75.28054173372743 7.009409419623911 C-75.4173797581004 6.306775085195495, -75.55421778247334 5.604140750767079, -75.66653867755518 5.027396693551461 M-75.66653867755518 5.027396693551461 C-75.75832927053366 4.315486980513111, -75.85011986351215 3.60357726747476, -75.92475455789975 3.024725316091999 M-75.66653867755518 5.027396693551461 C-75.72550917535736 4.570033157639655, -75.78447967315955 4.112669621727848, -75.92475455789975 3.024725316091999 M-75.92475455789975 3.024725316091999 C-75.96253735914821 2.4362276889187626, -76.0003201603967 1.8477300617455268, -76.05412831032167 1.0096246935071416 M-75.92475455789975 3.024725316091999 C-75.95534488420702 2.548256291789291, -75.98593521051428 2.0717872674865823, -76.05412831032167 1.0096246935071416 M-76.05412831032167 1.0096246935071416 C-76.05412831032167 0.3850582339168882, -76.05412831032167 -0.23950822567336516, -76.05412831032167 -1.0096246935071262 M-76.05412831032167 1.0096246935071416 C-76.05412831032167 0.39286261682781976, -76.05412831032167 -0.22389945985150206, -76.05412831032167 -1.0096246935071262 M-76.05412831032167 -1.0096246935071262 C-76.0212656782686 -1.521486713972837, -75.98840304621554 -2.0333487344385475, -75.92475455789975 -3.024725316091956 M-76.05412831032167 -1.0096246935071262 C-76.02289422332794 -1.4961208101357815, -75.9916601363342 -1.982616926764437, -75.92475455789975 -3.024725316091956 M-75.92475455789975 -3.024725316091956 C-75.84908413397233 -3.611610181257684, -75.7734137100449 -4.198495046423413, -75.66653867755518 -5.027396693551446 M-75.92475455789975 -3.024725316091956 C-75.87087347787859 -3.4426163327132886, -75.81699239785745 -3.860507349334621, -75.66653867755518 -5.027396693551446 M-75.66653867755518 -5.027396693551446 C-75.54328770364015 -5.660264395502563, -75.42003672972513 -6.293132097453679, -75.28054173372745 -7.009409419623896 M-75.66653867755518 -5.027396693551446 C-75.56072127751042 -5.570746678265821, -75.45490387746568 -6.114096662980197, -75.28054173372745 -7.009409419623896 M-75.28054173372745 -7.009409419623896 C-75.1172235885898 -7.632212289565626, -74.95390544345214 -8.255015159507355, -74.76834987065482 -8.962618978877506 M-75.28054173372745 -7.009409419623896 C-75.10837645031373 -7.665950262186239, -74.93621116690001 -8.322491104748583, -74.76834987065482 -8.962618978877506 M-74.76834987065482 -8.962618978877506 C-74.59968996036842 -9.470595756352733, -74.43103005008204 -9.97857253382796, -74.13206779456746 -10.878999214271168 M-74.76834987065482 -8.962618978877506 C-74.56306604079151 -9.580901166889284, -74.35778221092819 -10.199183354901061, -74.13206779456746 -10.878999214271168 M-74.13206779456746 -10.878999214271168 C-73.95809515051437 -11.30871500861457, -73.78412250646127 -11.738430802957973, -73.37431012499809 -12.750675308355401 M-74.13206779456746 -10.878999214271168 C-73.84422399173694 -11.589978972343907, -73.5563801889064 -12.300958730416646, -73.37431012499809 -12.750675308355401 M-73.37431012499809 -12.750675308355401 C-73.0249743864992 -13.476078443935764, -72.6756386480003 -14.201481579516127, -72.4981906507495 -14.5699561425863 M-73.37431012499809 -12.750675308355401 C-73.1790717124707 -13.156092049401344, -72.98383329994331 -13.56150879044729, -72.4981906507495 -14.5699561425863 M-72.4981906507495 -14.5699561425863 C-72.2487931439873 -15.012786670078643, -71.99939563722508 -15.455617197570987, -71.5073095346684 -16.329365901781546 M-72.4981906507495 -14.5699561425863 C-72.21737915034348 -15.068565396805024, -71.93656764993746 -15.567174651023748, -71.5073095346684 -16.329365901781546 M-71.5073095346684 -16.329365901781546 C-71.22264379216612 -16.766688925719983, -70.93797804966387 -17.20401194965842, -70.40573851980412 -18.021674793848344 M-71.5073095346684 -16.329365901781546 C-71.17005817289346 -16.847474558138735, -70.83280681111853 -17.36558321449592, -70.40573851980412 -18.021674793848344 M-70.40573851980412 -18.021674793848344 C-70.02833418022115 -18.527362226646872, -69.65092984063818 -19.033049659445403, -69.19800419774295 -19.639928758550102 M-70.40573851980412 -18.021674793848344 C-69.9975285329877 -18.568638987487493, -69.5893185461713 -19.115603181126637, -69.19800419774295 -19.639928758550102 M-69.19800419774295 -19.639928758550102 C-68.74406688306806 -20.17314935813216, -68.29012956839316 -20.706369957714223, -67.88906940787246 -21.177478043231467 M-69.19800419774295 -19.639928758550102 C-68.7819869558628 -20.12860628291418, -68.36596971398266 -20.61728380727826, -67.88906940787246 -21.177478043231467 M-67.88906940787246 -21.177478043231467 C-67.53197192062784 -21.546210517060473, -67.17487443338324 -21.91494299088948, -66.48431284400984 -22.628004528078403 M-67.88906940787246 -21.177478043231467 C-67.6062205650173 -21.469542695801287, -67.32337172216215 -21.761607348371104, -66.48431284400984 -22.628004528078403 M-66.48431284400984 -22.628004528078403 C-66.15328517902925 -22.9286350949017, -65.82225751404867 -23.229265661725, -64.98950695219536 -23.98554768862771 M-66.48431284400984 -22.628004528078403 C-66.18458416853932 -22.90021018075455, -65.8848554930688 -23.17241583343069, -64.98950695219536 -23.98554768862771 M-64.98950695219536 -23.98554768862771 C-64.67198152065285 -24.238765770576258, -64.35445608911036 -24.491983852524807, -63.41079421047331 -25.244529088840626 M-64.98950695219536 -23.98554768862771 C-64.5875225376334 -24.306119561986346, -64.18553812307144 -24.62669143534498, -63.41079421047331 -25.244529088840626 M-63.41079421047331 -25.244529088840626 C-62.87516431926958 -25.618161313900067, -62.33953442806585 -25.991793538959513, -61.754661888132304 -26.39977530409297 M-63.41079421047331 -25.244529088840626 C-63.072557762945564 -25.480468192616158, -62.734321315417816 -25.716407296391694, -61.754661888132304 -26.39977530409297 M-61.754661888132304 -26.39977530409297 C-61.363686690191386 -26.636786766710053, -60.97271149225046 -26.873798229327132, -60.02791538812404 -27.446539179886763 M-61.754661888132304 -26.39977530409297 C-61.0920190735762 -26.801473272398294, -60.42937625902011 -27.203171240703618, -60.02791538812404 -27.446539179886763 M-60.02791538812404 -27.446539179886763 C-59.44392576104236 -27.751206194272072, -58.85993613396067 -28.05587320865738, -58.23765028220309 -28.3805193389262 M-60.02791538812404 -27.446539179886763 C-59.55185984951639 -27.69489704945025, -59.07580431090873 -27.943254919013743, -58.23765028220309 -28.3805193389262 M-58.23765028220309 -28.3805193389262 C-57.75510059156053 -28.59412977264568, -57.27255090091796 -28.807740206365157, -56.3912231537003 -29.19787785639968 M-58.23765028220309 -28.3805193389262 C-57.56665018836597 -28.67755117595732, -56.89565009452884 -28.974583012988436, -56.3912231537003 -29.19787785639968 M-56.3912231537003 -29.19787785639968 C-55.678603633837604 -29.46012842709178, -54.965984113974905 -29.722378997783885, -54.49622136774408 -29.895256030836055 M-56.3912231537003 -29.19787785639968 C-55.95923948189088 -29.356851840838836, -55.527255810081456 -29.51582582527799, -54.49622136774408 -29.895256030836055 M-54.49622136774408 -29.895256030836055 C-54.050585890909055 -30.027518301172336, -53.60495041407404 -30.15978057150862, -52.56043189314951 -30.469788185729417 M-54.49622136774408 -29.895256030836055 C-53.963235925873676 -30.053443312285516, -53.43025048400327 -30.211630593734977, -52.56043189314951 -30.469788185729417 M-52.56043189314951 -30.469788185729417 C-52.13623374728887 -30.56660864437051, -51.71203560142823 -30.6634291030116, -50.59180930409324 -30.919113445218553 M-52.56043189314951 -30.469788185729417 C-51.84921285033671 -30.632119291113447, -51.13799380752392 -30.794450396497478, -50.59180930409324 -30.919113445218553 M-50.59180930409324 -30.919113445218553 C-49.862298711041 -31.0370550604641, -49.13278811798876 -31.15499667570964, -48.59844309306196 -31.24138543543225 M-50.59180930409324 -30.919113445218553 C-49.92532672679635 -31.026865179666334, -49.25884414949946 -31.134616914114115, -48.59844309306196 -31.24138543543225 M-48.59844309306196 -31.24138543543225 C-47.96912177601966 -31.3020953060177, -47.33980045897736 -31.362805176603157, -46.58852442939246 -31.435279871635593 M-48.59844309306196 -31.24138543543225 C-47.98508284657276 -31.30055556073744, -47.37172260008355 -31.359725686042633, -46.58852442939246 -31.435279871635593 M-46.58852442939246 -31.435279871635593 C-45.84245399845535 -31.45920489821775, -45.09638356751824 -31.483129924799904, -44.57031250000001 -31.5 M-46.58852442939246 -31.435279871635593 C-45.85654499207536 -31.45875302747881, -45.12456555475825 -31.482226183322027, -44.57031250000001 -31.5 M-44.57031250000001 -31.5 C-44.57031250000001 -31.5, -44.57031250000001 -31.5, -44.5703125 -31.5 M-44.57031250000001 -31.5 C-44.57031250000001 -31.5, -44.5703125 -31.5, -44.5703125 -31.5\" stroke=\"#999\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"fill:#f0f0f0 !important;stroke:#999 !important\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-60.6953125, -24)\"><rect></rect><foreignObject width=\"121.390625\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Confirmed hotel<br>booking</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-B-1\" transform=\"translate(789.515625, 284.8671875)\"><polygon points=\"101.3671875,0 202.734375,-101.3671875 101.3671875,-202.734375 0,-101.3671875\" class=\"label-container\" transform=\"translate(-100.8671875, 101.3671875)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-62.3671875, -24)\"><rect></rect><foreignObject width=\"124.734375\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Who initiates<br>the cancellation?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-C-3\" transform=\"translate(483, 594.0234375)\"><polygon points=\"84.7890625,0 169.578125,-84.7890625 84.7890625,-169.578125 0,-84.7890625\" class=\"label-container\" transform=\"translate(-84.2890625, 84.7890625)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-45.7890625, -24)\"><rect></rect><foreignObject width=\"91.578125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Cancellation<br>policy?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-D-5\" transform=\"translate(173, 900.8125)\"><rect class=\"basic label-container\" style=\"fill:#F44336 !important\" x=\"-130\" y=\"-87\" width=\"260\" height=\"174\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-100, -72)\"><rect></rect><foreignObject width=\"200\" height=\"144\"><div style=\"color: rgb(255, 255, 255) !important; display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\" xmlns=\"http://www.w3.org/1999/xhtml\"><span style=\"color:#fff !important\" class=\"nodeLabel\"><p><b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Full prepaid price refunded if canceled before deadline</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E-7\" transform=\"translate(483, 900.8125)\"><rect class=\"basic label-container\" style=\"fill:#F44336 !important\" x=\"-130\" y=\"-99\" width=\"260\" height=\"198\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-100, -84)\"><rect></rect><foreignObject width=\"200\" height=\"168\"><div style=\"color: rgb(255, 255, 255) !important; display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\" xmlns=\"http://www.w3.org/1999/xhtml\"><span style=\"color:#fff !important\" class=\"nodeLabel\"><p><b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Penalty (e.g., one night's stay) deducted and remainder refunded, if canceled after deadline.</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-F-9\" transform=\"translate(789.515625, 900.8125)\"><rect class=\"basic label-container\" style=\"fill:#F44336 !important\" x=\"-126.515625\" y=\"-75\" width=\"253.03125\" height=\"150\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-96.515625, -60)\"><rect></rect><foreignObject width=\"193.03125\" height=\"120\"><div style=\"color: rgb(255, 255, 255) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\" xmlns=\"http://www.w3.org/1999/xhtml\"><span style=\"color:#fff !important\" class=\"nodeLabel\"><p><b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Non-refundable rate.<br>No refund processed ($0).</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-G-11\" transform=\"translate(1096.03125, 900.8125)\"><rect class=\"basic label-container\" style=\"fill:#F44336 !important\" x=\"-130\" y=\"-99\" width=\"260\" height=\"198\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-100, -84)\"><rect></rect><foreignObject width=\"200\" height=\"168\"><div style=\"color: rgb(255, 255, 255) !important; display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\" xmlns=\"http://www.w3.org/1999/xhtml\"><span style=\"color:#fff !important\" class=\"nodeLabel\"><p><b>BOOKING_CANCELED_<br>BY_VENDOR</b><br>―――――――――――<br>Hotel proactively canceled.<br>e.g., Due to overbooking, closure, etc.<br>Typically full refund.</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-H-13\" transform=\"translate(483, 1137.8125)\"><rect class=\"basic label-container\" style=\"fill:#FF9800 !important\" x=\"-118\" y=\"-63\" width=\"236\" height=\"126\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-88, -48)\"><rect></rect><foreignObject width=\"176\" height=\"96\"><div style=\"color: rgb(255, 255, 255) !important; display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\" xmlns=\"http://www.w3.org/1999/xhtml\"><span style=\"color:#fff !important\" class=\"nodeLabel\"><p><b>INVOICE_GENERATED</b><br>―――――――――――<br>Credit note / refund<br>adjustment invoice.</p></span></div></foreignObject></g></g></g></g></g></g></g></svg></div>"},"children":["flowchart LR\n    subgraph cancellation[\"Cancellation\"]\n        A([\"Confirmed hotel<br>booking\"]) --> B{\"Who initiates<br>the cancellation?\"}\n\n        B -->|\"Traveler<br>cancels\"| C{\"Cancellation<br>policy?\"}\n\n        C -->|\"Free<br>cancellation\"| D[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Full prepaid price refunded if canceled before deadline\"]\n\n        C -->|\"Penalty<br>applies\"| E[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Penalty (e.g., one night's stay) deducted and remainder refunded, if canceled after deadline.\"]\n\n        C -->|\"Non-<br>refundable\"| F[\"<b>BOOKING_CANCELED_<br>BY_TRAVELER</b><br>―――――――――――<br>Non-refundable rate.<br>No refund processed ($0).\"]\n\n        B -->|\"Hotel/supplier<br>cancels\"| G[\"<b>BOOKING_CANCELED_<br>BY_VENDOR</b><br>―――――――――――<br>Hotel proactively canceled.<br>e.g., Due to overbooking, closure, etc.<br>Typically full refund.\"]\n        D --> H[\"<b>INVOICE_GENERATED</b><br>―――――――――――<br>Credit note / refund<br>adjustment invoice.\"]\n        E --> H\n        G --> H\n    end\n\n    style A fill:#f0f0f0,stroke:#999\n    style D fill:#F44336,color:#fff\n    style E fill:#F44336,color:#fff\n    style F fill:#F44336,color:#fff\n    style G fill:#F44336,color:#fff\n    style H fill:#FF9800,color:#fff\n"]}]},"headings":[{"value":"Cancellation","id":"cancellation","depth":1},{"value":"Hotel cancellation flow diagram","id":"hotel-cancellation-flow-diagram","depth":2}],"frontmatter":{"seo":{"title":"Cancellation"}},"lastModified":"2026-03-11T17:17:12.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/webhooks/booking-lifecycle/hotel-booking-lifecycle/hotel-cancellation-lifecycle","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}