{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"Seat changes","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":"seat-changes","__idx":0},"children":["Seat changes"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["These operations cover the changes that can be made to seat assignments on the booking."]},{"$$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":"20%","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":["1"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["FLIGHT_SEAT_ CONFIRMED"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["When a requested seat assignment is confirmed by the airline."]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["A seat that was in a pending or requested state has now been confirmed by the airline."," ",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example:"]}," A traveler requested seat 14A (window)."," ","The airline confirms the assignment and the operation is triggered with the confirmed seat details."]}]},{"$$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":["FLIGHT_SEAT_ CHANGED"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["When a confirmed seat is reassigned to a different seat by the airline."]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["The traveler's confirmed seat number has changed."," ","The most common cause is an aircraft equipment swap where the airline changes the plane type and the seat map is completely different."," ","If the traveler paid for a premium seat selection (e.g., extra legroom), the fee is not automatically refunded."," ","The traveler or the agent should contact the airline to request a refund for the seat."," ",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example:"]}," A traveler paid $45 for seat 14A (extra-legroom window)."," ","The airline swaps the aircraft and reassigns them to seat 22C (middle seat, standard legroom)."," ","The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["FLIGHT_SEAT_CHANGED"]},"event is triggered with the updated seat info."," ","The $45 seat fee is not automatically refunded, so the traveler should request a refund through the TMC or airline."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["3"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["FLIGHT_SEAT_ CANCELLED"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["When a confirmed seat assignment is completely removed by the airline."]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["The traveler's seat assignment has been removed entirely."," ","The flight booking and ticket exist but no specific seat is assigned for the traveler."," ","This could be due to an aircraft equipment swap, or a schedule change requiring re-accommodation on a different flight."," ","The system does not automatically rebook a new seat."," ","The traveler must manually select a new seat from the seat map, or the airline will assign one at check-in."," ","Paid seat fees are not automatically refunded and the refund depends on the airline's policy."," ",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example:"]}," A traveler had seat 8F confirmed on a London to Dubai flight."," ","The airline changes the aircraft from an A380 to a 777 and seat 8F no longer exists."," ","The event ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["FLIGHT_SEAT_CANCELLED"]}," is triggered. The traveler can now select a new seat from the available seat map, or wait until check-in for an airline-assigned seat."," ","If they paid for the original seat, they should contact support to request a refund."]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"seat-change-flow-diagram","__idx":1},"children":["Seat change flow diagram"]},{"$$mdtype":"Tag","name":"Mermaid","attributes":{"data-language":"mermaid","diagramSource":"flowchart TD\n    subgraph seats[\"Seat changes\"]\n        A([\"Ticketed booking\"]) --> B{\"Seat change <br>initiated?\"}\n\n        B -->|\"Seat<br>confirmed\"| C[\"<b>FLIGHT_SEAT_<br>CONFIRMED</b><br>―――――――――――<br>Requested seat confirmed<br>by the airline.\"]\n\n        B -->|\"Seat<br>changed\"| D[\"<b>FLIGHT_SEAT_<br>CHANGED</b><br>―――――――――――<br>Seat reassigned<br>(e.g., equipment swap).<br>Paid seat fee NOT<br>auto-refunded.\"]\n\n        B -->|\"Seat<br>cancelled\"| E[\"<b>FLIGHT_SEAT_<br>CANCELLED</b><br>―――――――――――<br>Seat removed<br>(e.g., equipment swap).<br>Traveler must select<br>a new seat.\"]\n    end\n\n    style A fill:#f0f0f0,stroke:#999\n    style C fill:#2196F3,color:#fff\n    style D fill:#FF9800,color:#fff\n    style E fill:#F44336,color:#fff\n","diagramHtml":"<div class=\"mermaid\" data-processed=\"true\"><svg id=\"mermaid-1773211754524\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" class=\"flowchart\" style=\"max-width: 892.99560546875px;\" viewBox=\"0 0 892.99560546875 732\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#mermaid-1773211754524{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-1773211754524 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#mermaid-1773211754524 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#mermaid-1773211754524 .error-icon{fill:#552222;}#mermaid-1773211754524 .error-text{fill:#552222;stroke:#552222;}#mermaid-1773211754524 .edge-thickness-normal{stroke-width:1px;}#mermaid-1773211754524 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1773211754524 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1773211754524 .edge-thickness-invisible{stroke-width:0;fill:none;}#mermaid-1773211754524 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1773211754524 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1773211754524 .marker{fill:#333333;stroke:#333333;}#mermaid-1773211754524 .marker.cross{stroke:#333333;}#mermaid-1773211754524 svg{font-family:\"trebuchet ms\",verdana,arial,sans-serif;font-size:16px;}#mermaid-1773211754524 p{margin:0;}#mermaid-1773211754524 .label{font-family:\"trebuchet ms\",verdana,arial,sans-serif;color:#333;}#mermaid-1773211754524 .cluster-label text{fill:#333;}#mermaid-1773211754524 .cluster-label span{color:#333;}#mermaid-1773211754524 .cluster-label span p{background-color:transparent;}#mermaid-1773211754524 .label text,#mermaid-1773211754524 span{fill:#333;color:#333;}#mermaid-1773211754524 .node rect,#mermaid-1773211754524 .node circle,#mermaid-1773211754524 .node ellipse,#mermaid-1773211754524 .node polygon,#mermaid-1773211754524 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1773211754524 .rough-node .label text,#mermaid-1773211754524 .node .label text,#mermaid-1773211754524 .image-shape .label,#mermaid-1773211754524 .icon-shape .label{text-anchor:middle;}#mermaid-1773211754524 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#mermaid-1773211754524 .rough-node .label,#mermaid-1773211754524 .node .label,#mermaid-1773211754524 .image-shape .label,#mermaid-1773211754524 .icon-shape .label{text-align:center;}#mermaid-1773211754524 .node.clickable{cursor:pointer;}#mermaid-1773211754524 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#mermaid-1773211754524 .arrowheadPath{fill:#333333;}#mermaid-1773211754524 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1773211754524 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1773211754524 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1773211754524 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#mermaid-1773211754524 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1773211754524 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#mermaid-1773211754524 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1773211754524 .cluster text{fill:#333;}#mermaid-1773211754524 .cluster span{color:#333;}#mermaid-1773211754524 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-1773211754524 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#mermaid-1773211754524 rect.text{fill:none;stroke-width:0;}#mermaid-1773211754524 .icon-shape,#mermaid-1773211754524 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#mermaid-1773211754524 .icon-shape p,#mermaid-1773211754524 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#mermaid-1773211754524 .icon-shape rect,#mermaid-1773211754524 .image-shape rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#mermaid-1773211754524 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#mermaid-1773211754524 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#mermaid-1773211754524 :root{--mermaid-font-family:\"trebuchet ms\",verdana,arial,sans-serif;}</style><g><marker id=\"mermaid-1773211754524_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-1773211754524_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-1773211754524_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-1773211754524_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-1773211754524_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-1773211754524_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=\"seats\" data-look=\"classic\"><rect style=\"\" x=\"8\" y=\"8\" width=\"876.9955902099609\" height=\"716\"></rect><g class=\"cluster-label\" transform=\"translate(397.50560760498047, 8)\"><foreignObject width=\"97.984375\" 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>Seat changes</p></span></div></foreignObject></g></g></g><g class=\"edgePaths\"><path d=\"M197.261,342.5L203.428,342.417C209.595,342.333,221.928,342.167,233.678,342.083C245.428,342,256.595,342,262.178,342L267.761,342\" 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=\"W3sieCI6MTk3LjI2MTIxMjQzMTgyNywieSI6MzQyLjV9LHsieCI6MjM0LjI2MTIxNTIwOTk2MDk0LCJ5IjozNDJ9LHsieCI6MjcxLjc2MTIxNTIwOTk2MDk0LCJ5IjozNDJ9XQ==\" marker-end=\"url(#mermaid-1773211754524_flowchart-v2-pointEnd)\"></path><path d=\"M391.017,292.896L411.839,263.747C432.661,234.597,474.305,176.299,507.098,147.149C539.891,118,563.834,118,575.805,118L587.777,118\" 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=\"W3sieCI6MzkxLjAxNjc3MTUyMTM3NjMsInkiOjI5Mi44OTYxODEzMTE0MTU0fSx7IngiOjUxNS45NDg3MTUyMDk5NjA5LCJ5IjoxMTh9LHsieCI6NTkxLjc3Njg0MDIwOTk2MDksInkiOjExOH1d\" marker-end=\"url(#mermaid-1773211754524_flowchart-v2-pointEnd)\"></path><path d=\"M440.121,342L452.759,342C465.397,342,490.673,342,516.925,342C543.178,342,570.407,342,584.022,342L597.636,342\" id=\"L_B_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_B_D_0\" data-points=\"W3sieCI6NDQwLjEyMDU5MDIwOTk2MDk0LCJ5IjozNDJ9LHsieCI6NTE1Ljk0ODcxNTIwOTk2MDksInkiOjM0Mn0seyJ4Ijo2MDEuNjM2MjE1MjA5OTYwOSwieSI6MzQyfV0=\" marker-end=\"url(#mermaid-1773211754524_flowchart-v2-pointEnd)\"></path><path d=\"M388.954,393.167L410.119,425.973C431.285,458.778,473.617,524.389,508.397,557.195C543.178,590,570.407,590,584.022,590L597.636,590\" id=\"L_B_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_B_E_0\" data-points=\"W3sieCI6Mzg4Ljk1MzUyNDYyODM0MjksInkiOjM5My4xNjcwNjU1ODE2MTh9LHsieCI6NTE1Ljk0ODcxNTIwOTk2MDksInkiOjU5MH0seyJ4Ijo2MDEuNjM2MjE1MjA5OTYwOSwieSI6NTkwfV0=\" marker-end=\"url(#mermaid-1773211754524_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(515.9487152099609, 118)\"><g class=\"label\" data-id=\"L_B_C_0\" transform=\"translate(-38.328125, -24)\"><foreignObject width=\"76.65625\" 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>Seat<br>confirmed</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(515.9487152099609, 342)\"><g class=\"label\" data-id=\"L_B_D_0\" transform=\"translate(-31.8203125, -24)\"><foreignObject width=\"63.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>Seat<br>changed</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(515.9487152099609, 590)\"><g class=\"label\" data-id=\"L_B_E_0\" transform=\"translate(-34.9375, -24)\"><foreignObject width=\"69.875\" 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>Seat<br>cancelled</p></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"flowchart-A-0\" transform=\"translate(121.13060760498047, 342)\"><g class=\"basic label-container outer-path\"><path d=\"M-56.140625 -19.5 C-20.4661180846414 -19.5, 15.208388830717197 -19.5, 56.140625 -19.5 C56.140625 -19.5, 56.140625 -19.5, 56.140625 -19.5 C56.421681141890105 -19.49098707657218, 56.70273728378021 -19.481974153144357, 57.3899942896239 -19.45993515863156 C57.66096562272518 -19.433794880017984, 57.93193695582646 -19.407654601404413, 58.634229652847864 -19.3399052695533 C59.03324677978583 -19.275395274894006, 59.43226390672379 -19.21088528023471, 59.86821825967676 -19.140403561325776 C60.12215975724748 -19.082443071628397, 60.376101254818195 -19.024482581931018, 61.08688938623539 -18.862249829261074 C61.43350225240578 -18.759376949989765, 61.78011511857616 -18.65650407071846, 62.285235251460605 -18.50658706670804 C62.52119138438922 -18.41975302863573, 62.75714751731783 -18.332918990563414, 63.4583315951478 -18.074876768247425 C63.801003284155385 -17.923186176518257, 64.14367497316297 -17.771495584789086, 64.60135791279238 -17.568892924097174 C64.86865578683366 -17.429443794422298, 65.13595366087495 -17.28999466474742, 65.70961726407678 -16.990714730406097 C65.96705547163339 -16.834654176110448, 66.22449367919 -16.678593621814798, 66.7785555736057 -16.342718045390892 C67.0005834678797 -16.18784099777799, 67.22261136215369 -16.032963950165083, 67.80378034457871 -15.627565626425154 C68.10275657084242 -15.389140042071368, 68.4017327971061 -15.150714457717584, 68.78107870850187 -14.848196188198123 C69.11448808995729 -14.54540260948914, 69.44789747141272 -14.242609030780155, 69.70643473676799 -14.007812326905688 C69.95478164250068 -13.75137375707653, 70.20312854823337 -13.494935187247373, 70.57604594296865 -13.10986736009568 C70.89516467382731 -12.735012340458907, 71.21428340468597 -12.360157320822132, 71.38633890812658 -12.158051136245305 C71.61312394044643 -11.85417985347818, 71.83990897276627 -11.550308570711056, 72.13398396464063 -11.156274872382312 C72.27852457456305 -10.934221680953161, 72.42306518448547 -10.71216848952401, 72.81590887860425 -10.108655082055241 C73.00580874690536 -9.771468636439794, 73.19570861520646 -9.434282190824346, 73.4293114742735 -9.019496659696287 C73.5826222669797 -8.701143518316409, 73.73593305968589 -8.382790376936532, 73.97167114880834 -7.893275190886684 C74.10481167433076 -7.56441551874937, 74.23795219985317 -7.235555846612056, 74.44075922997033 -6.734618561215508 C74.52167956995757 -6.490899390079231, 74.6025999099448 -6.247180218942954, 74.83464813421489 -5.548287939305138 C74.900849861426 -5.2958320614391114, 74.9670515886371 -5.043376183573084, 75.15171928754556 -4.339158212148133 C75.24634857989342 -3.853256795849889, 75.34097787224128 -3.367355379551645, 75.39066977658177 -3.1121979531509023 C75.43097959134766 -2.7995629898999193, 75.47128940611356 -2.4869280266489358, 75.55051770250937 -1.872449005199798 C75.57562325637318 -1.4814097389325203, 75.600728810237 -1.0903704726652426, 75.63060621591342 -0.6250057626472757 C75.63060621591342 -0.3458125350650308, 75.63060621591342 -0.06661930748278588, 75.63060621591342 0.625005762647271 C75.60280803479395 1.0579848718708986, 75.57500985367449 1.4909639810945263, 75.55051770250937 1.8724490051997846 C75.49936160708974 2.269205579360803, 75.4482055116701 2.665962153521821, 75.39066977658177 3.1121979531508885 C75.30195235293228 3.5677431731569795, 75.21323492928276 4.02328839316307, 75.15171928754556 4.339158212148129 C75.02624985344067 4.817627543186776, 74.90078041933579 5.296096874225424, 74.83464813421489 5.548287939305125 C74.67945510475758 6.0157046173792255, 74.52426207530027 6.483121295453325, 74.44075922997033 6.734618561215495 C74.33186807861365 7.003581810333676, 74.22297692725698 7.272545059451858, 73.97167114880834 7.893275190886679 C73.75941387971496 8.33403195173712, 73.54715661062156 8.774788712587561, 73.4293114742735 9.019496659696284 C73.30285392355574 9.24403484621123, 73.17639637283798 9.468573032726175, 72.81590887860425 10.108655082055236 C72.64059950198131 10.377977361707106, 72.4652901253584 10.647299641358975, 72.13398396464065 11.156274872382301 C71.94253488975288 11.412799191362385, 71.7510858148651 11.669323510342469, 71.38633890812659 12.158051136245302 C71.12209877463995 12.46844263272825, 70.8578586411533 12.778834129211198, 70.57604594296866 13.10986736009567 C70.38078178890608 13.311493630650482, 70.18551763484349 13.513119901205291, 69.70643473676799 14.007812326905684 C69.45183969733833 14.239028805500098, 69.19724465790866 14.470245284094512, 68.7810787085019 14.848196188198111 C68.4936998170395 15.077373206665895, 68.2063209255771 15.30655022513368, 67.80378034457871 15.627565626425152 C67.45436609942963 15.871301877942267, 67.10495185428054 16.115038129459382, 66.7785555736057 16.34271804539089 C66.4658185857904 16.53230104525106, 66.15308159797512 16.721884045111228, 65.70961726407678 16.990714730406093 C65.4043881949219 17.14995254027564, 65.09915912576704 17.309190350145183, 64.60135791279238 17.56889292409717 C64.15097826102773 17.768262635895695, 63.70059860926309 17.967632347694217, 63.458331595147804 18.07487676824742 C63.01502737720173 18.238016818310847, 62.571723159255654 18.40115686837427, 62.28523525146062 18.506587066708033 C61.929936369303476 18.612037909930383, 61.57463748714634 18.717488753152733, 61.08688938623541 18.86224982926107 C60.64095832335007 18.964030684392515, 60.19502726046473 19.065811539523956, 59.868218259676766 19.140403561325773 C59.58761040665722 19.18577006285557, 59.307002553637666 19.231136564385373, 58.63422965284788 19.3399052695533 C58.16738807654293 19.384940914960296, 57.70054650023797 19.429976560367297, 57.3899942896239 19.45993515863156 C56.97280251449059 19.473313686845557, 56.55561073935728 19.486692215059552, 56.14062500000001 19.5 C56.14062500000001 19.5, 56.140625 19.5, 56.140625 19.5 C31.12345084960278 19.5, 6.106276699205559 19.5, -56.14062499999999 19.5 C-56.40716586580743 19.491452553223876, -56.673706731614864 19.482905106447756, -57.38999428962389 19.45993515863156 C-57.664825409991465 19.43342253098248, -57.93965653035904 19.4069099033334, -58.63422965284787 19.3399052695533 C-59.02696077306657 19.276411547711664, -59.41969189328527 19.21291782587003, -59.86821825967676 19.140403561325773 C-60.30507667236093 19.040693479398172, -60.741935085045114 18.940983397470568, -61.086889386235384 18.862249829261074 C-61.50046036311349 18.73950413420201, -61.91403133999159 18.61675843914295, -62.28523525146059 18.506587066708043 C-62.62432492308712 18.381798933038915, -62.963414594713655 18.257010799369787, -63.4583315951478 18.074876768247425 C-63.72133651070278 17.958452293894858, -63.98434142625775 17.84202781954229, -64.60135791279238 17.568892924097174 C-64.82629955513605 17.45154101336848, -65.05124119747971 17.334189102639787, -65.70961726407678 16.990714730406097 C-66.10780566104424 16.749330584149668, -66.5059940580117 16.50794643789324, -66.77855557360569 16.3427180453909 C-67.13584896554724 16.093485642154125, -67.4931423574888 15.844253238917352, -67.80378034457871 15.627565626425156 C-68.0752276492387 15.411093624474956, -68.3466749538987 15.194621622524759, -68.78107870850187 14.848196188198125 C-69.10223888284001 14.556527015296792, -69.42339905717816 14.26485784239546, -69.70643473676797 14.007812326905697 C-70.01334842894832 13.690898741646746, -70.32026212112865 13.373985156387796, -70.57604594296865 13.109867360095677 C-70.83759944100895 12.80263173848189, -71.09915293904925 12.495396116868104, -71.38633890812658 12.158051136245307 C-71.64240216826542 11.814949695502154, -71.89846542840426 11.471848254759003, -72.13398396464063 11.156274872382316 C-72.28882476181893 10.918397827340575, -72.44366555899724 10.680520782298837, -72.81590887860425 10.108655082055249 C-73.05259604754137 9.688393046432612, -73.28928321647851 9.268131010809975, -73.4293114742735 9.019496659696289 C-73.60173198148397 8.661461787265912, -73.77415248869443 8.303426914835534, -73.97167114880834 7.893275190886686 C-74.08677328553009 7.608970687835546, -74.20187542225183 7.324666184784407, -74.44075922997033 6.73461856121551 C-74.58121063702696 6.3116013010536784, -74.72166204408359 5.888584040891846, -74.83464813421489 5.5482879393051325 C-74.90557369769985 5.277818026403319, -74.9764992611848 5.007348113501505, -75.15171928754556 4.339158212148136 C-75.21426341351882 4.018007343981157, -75.27680753949208 3.6968564758141786, -75.39066977658177 3.112197953150904 C-75.43429072822987 2.7738824660994883, -75.47791167987796 2.435566979048072, -75.55051770250937 1.872449005199809 C-75.56691100078456 1.6171101521315658, -75.58330429905975 1.3617712990633228, -75.63060621591342 0.6250057626472781 C-75.63060621591342 0.2921642070448387, -75.63060621591342 -0.040677348557600745, -75.63060621591342 -0.6250057626472687 C-75.61410339083984 -0.8820505840087989, -75.59760056576627 -1.139095405370329, -75.55051770250937 -1.8724490051997822 C-75.50124294798633 -2.2546142708796397, -75.45196819346327 -2.6367795365594975, -75.39066977658177 -3.112197953150895 C-75.33124312829024 -3.417341232301351, -75.2718164799987 -3.722484511451807, -75.15171928754556 -4.339158212148126 C-75.06051313511506 -4.686966800362155, -74.96930698268456 -5.034775388576184, -74.83464813421489 -5.548287939305123 C-74.75233807275386 -5.7961927300984195, -74.67002801129281 -6.044097520891716, -74.44075922997033 -6.734618561215485 C-74.33531396039488 -6.99507041571243, -74.22986869081944 -7.255522270209374, -73.97167114880834 -7.893275190886676 C-73.83001312781826 -8.187431102468656, -73.6883551068282 -8.481587014050636, -73.4293114742735 -9.019496659696282 C-73.21801979008886 -9.394666440569198, -73.00672810590422 -9.769836221442114, -72.81590887860425 -10.108655082055243 C-72.62918056675508 -10.395519912628048, -72.44245225490592 -10.682384743200853, -72.13398396464063 -11.156274872382308 C-71.88886840407831 -11.484707393048886, -71.64375284351598 -11.813139913715462, -71.38633890812659 -12.158051136245302 C-71.09243786700702 -12.50328402258734, -70.79853682588745 -12.848516908929378, -70.57604594296866 -13.10986736009567 C-70.32893127651641 -13.365033541699043, -70.08181661006417 -13.620199723302415, -69.70643473676799 -14.007812326905677 C-69.40981829484036 -14.277191531423362, -69.11320185291272 -14.546570735941046, -68.7810787085019 -14.848196188198107 C-68.55602996274965 -15.027666574136887, -68.33098121699739 -15.207136960075669, -67.80378034457871 -15.627565626425149 C-67.596573111575 -15.772104422311992, -67.38936587857128 -15.916643218198836, -66.77855557360571 -16.342718045390885 C-66.41314895398338 -16.564229685573594, -66.04774233436105 -16.785741325756298, -65.70961726407678 -16.99071473040609 C-65.28962762396269 -17.209823056637415, -64.86963798384858 -17.42893138286874, -64.6013579127924 -17.56889292409717 C-64.31958231864863 -17.693626621048594, -64.03780672450486 -17.818360318000018, -63.458331595147804 -18.07487676824742 C-63.070737071777174 -18.217515135732313, -62.683142548406536 -18.3601535032172, -62.28523525146062 -18.506587066708033 C-61.86651905628034 -18.63085983555138, -61.44780286110006 -18.755132604394728, -61.08688938623541 -18.862249829261067 C-60.61842746041165 -18.969173206830583, -60.14996553458789 -19.0760965844001, -59.868218259676766 -19.140403561325773 C-59.44392711244625 -19.208999663583015, -59.01963596521573 -19.277595765840257, -58.63422965284788 -19.3399052695533 C-58.24358187026257 -19.377590591316608, -57.85293408767725 -19.415275913079917, -57.3899942896239 -19.45993515863156 C-57.087982848198415 -19.469620077728464, -56.78597140677293 -19.47930499682537, -56.14062500000001 -19.5 C-56.14062500000001 -19.5, -56.140625 -19.5, -56.140625 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#f0f0f0\" style=\"fill:#f0f0f0 !important;stroke:#999 !important\"></path><path d=\"M-56.140625 -19.5 C-27.424319764816595 -19.5, 1.2919854703668108 -19.5, 56.140625 -19.5 M-56.140625 -19.5 C-24.962108780052887 -19.5, 6.216407439894226 -19.5, 56.140625 -19.5 M56.140625 -19.5 C56.140625 -19.5, 56.140625 -19.5, 56.140625 -19.5 M56.140625 -19.5 C56.140625 -19.5, 56.140625 -19.5, 56.140625 -19.5 M56.140625 -19.5 C56.61741306841732 -19.48471033465753, 57.09420113683465 -19.469420669315067, 57.3899942896239 -19.45993515863156 M56.140625 -19.5 C56.40078454575693 -19.491657189737413, 56.66094409151385 -19.483314379474823, 57.3899942896239 -19.45993515863156 M57.3899942896239 -19.45993515863156 C57.743218681090525 -19.425860026401256, 58.09644307255715 -19.391784894170954, 58.634229652847864 -19.3399052695533 M57.3899942896239 -19.45993515863156 C57.693059099282735 -19.43069886093253, 57.99612390894158 -19.4014625632335, 58.634229652847864 -19.3399052695533 M58.634229652847864 -19.3399052695533 C58.98043316499309 -19.283933770557994, 59.32663667713831 -19.227962271562692, 59.86821825967676 -19.140403561325776 M58.634229652847864 -19.3399052695533 C58.94911073199356 -19.288997738616263, 59.263991811139256 -19.238090207679228, 59.86821825967676 -19.140403561325776 M59.86821825967676 -19.140403561325776 C60.348223175981644 -19.030845571503995, 60.82822809228653 -18.921287581682215, 61.08688938623539 -18.862249829261074 M59.86821825967676 -19.140403561325776 C60.12538399381764 -19.081707160671368, 60.382549727958526 -19.02301076001696, 61.08688938623539 -18.862249829261074 M61.08688938623539 -18.862249829261074 C61.44689251126397 -18.75540279144756, 61.806895636292545 -18.648555753634042, 62.285235251460605 -18.50658706670804 M61.08688938623539 -18.862249829261074 C61.54110999157515 -18.727439537848845, 61.995330596914904 -18.59262924643662, 62.285235251460605 -18.50658706670804 M62.285235251460605 -18.50658706670804 C62.65267493338161 -18.371365867185922, 63.02011461530262 -18.236144667663808, 63.4583315951478 -18.074876768247425 M62.285235251460605 -18.50658706670804 C62.52436609403076 -18.418584706140944, 62.76349693660092 -18.33058234557385, 63.4583315951478 -18.074876768247425 M63.4583315951478 -18.074876768247425 C63.7916356599146 -17.927332945888953, 64.1249397246814 -17.77978912353048, 64.60135791279238 -17.568892924097174 M63.4583315951478 -18.074876768247425 C63.7937759867172 -17.92638548670398, 64.1292203782866 -17.777894205160532, 64.60135791279238 -17.568892924097174 M64.60135791279238 -17.568892924097174 C65.04310031108997 -17.338436197854833, 65.48484270938756 -17.10797947161249, 65.70961726407678 -16.990714730406097 M64.60135791279238 -17.568892924097174 C64.90912135329019 -17.40833293432136, 65.216884793788 -17.24777294454555, 65.70961726407678 -16.990714730406097 M65.70961726407678 -16.990714730406097 C65.9790047879064 -16.82741043036377, 66.24839231173603 -16.664106130321443, 66.7785555736057 -16.342718045390892 M65.70961726407678 -16.990714730406097 C65.98831552145843 -16.821766208968583, 66.2670137788401 -16.65281768753107, 66.7785555736057 -16.342718045390892 M66.7785555736057 -16.342718045390892 C66.99649189795664 -16.190695099835104, 67.21442822230757 -16.038672154279315, 67.80378034457871 -15.627565626425154 M66.7785555736057 -16.342718045390892 C67.04309211103393 -16.158188808483096, 67.30762864846216 -15.973659571575304, 67.80378034457871 -15.627565626425154 M67.80378034457871 -15.627565626425154 C68.14692466949823 -15.353917158755815, 68.49006899441775 -15.080268691086475, 68.78107870850187 -14.848196188198123 M67.80378034457871 -15.627565626425154 C68.18054848895157 -15.327103057509195, 68.55731663332442 -15.026640488593237, 68.78107870850187 -14.848196188198123 M68.78107870850187 -14.848196188198123 C69.12751205524536 -14.533574588809747, 69.47394540198887 -14.21895298942137, 69.70643473676799 -14.007812326905688 M68.78107870850187 -14.848196188198123 C68.98437798474144 -14.663565164521435, 69.18767726098102 -14.478934140844745, 69.70643473676799 -14.007812326905688 M69.70643473676799 -14.007812326905688 C69.90945456611715 -13.7981776848647, 70.11247439546631 -13.588543042823716, 70.57604594296865 -13.10986736009568 M69.70643473676799 -14.007812326905688 C70.03617750919274 -13.667325841992042, 70.36592028161748 -13.326839357078397, 70.57604594296865 -13.10986736009568 M70.57604594296865 -13.10986736009568 C70.8849915390638 -12.746962283419883, 71.19393713515896 -12.384057206744085, 71.38633890812658 -12.158051136245305 M70.57604594296865 -13.10986736009568 C70.85725115893413 -12.779547712392539, 71.13845637489962 -12.449228064689397, 71.38633890812658 -12.158051136245305 M71.38633890812658 -12.158051136245305 C71.60269644149074 -11.868151752114104, 71.8190539748549 -11.578252367982902, 72.13398396464063 -11.156274872382312 M71.38633890812658 -12.158051136245305 C71.66582110472214 -11.783570454159142, 71.94530330131772 -11.40908977207298, 72.13398396464063 -11.156274872382312 M72.13398396464063 -11.156274872382312 C72.36011444692883 -10.808877727050902, 72.58624492921705 -10.461480581719494, 72.81590887860425 -10.108655082055241 M72.13398396464063 -11.156274872382312 C72.30171484554344 -10.898595197267595, 72.46944572644625 -10.640915522152877, 72.81590887860425 -10.108655082055241 M72.81590887860425 -10.108655082055241 C72.96432341365636 -9.845130046468892, 73.11273794870849 -9.581605010882543, 73.4293114742735 -9.019496659696287 M72.81590887860425 -10.108655082055241 C73.02090122219387 -9.744670418286178, 73.22589356578351 -9.380685754517113, 73.4293114742735 -9.019496659696287 M73.4293114742735 -9.019496659696287 C73.64303593926402 -8.575693235172487, 73.85676040425456 -8.131889810648687, 73.97167114880834 -7.893275190886684 M73.4293114742735 -9.019496659696287 C73.60339411154979 -8.658010338620334, 73.77747674882607 -8.296524017544384, 73.97167114880834 -7.893275190886684 M73.97167114880834 -7.893275190886684 C74.12189341261782 -7.522223294927389, 74.27211567642729 -7.151171398968094, 74.44075922997033 -6.734618561215508 M73.97167114880834 -7.893275190886684 C74.15604684227941 -7.437863663351614, 74.34042253575048 -6.982452135816542, 74.44075922997033 -6.734618561215508 M74.44075922997033 -6.734618561215508 C74.5479116439266 -6.411892562797901, 74.65506405788287 -6.089166564380294, 74.83464813421489 -5.548287939305138 M74.44075922997033 -6.734618561215508 C74.58783867926674 -6.291638693862583, 74.73491812856315 -5.848658826509659, 74.83464813421489 -5.548287939305138 M74.83464813421489 -5.548287939305138 C74.90136221652281 -5.29387822939886, 74.96807629883072 -5.0394685194925835, 75.15171928754556 -4.339158212148133 M74.83464813421489 -5.548287939305138 C74.94586561664659 -5.124167476831289, 75.05708309907827 -4.70004701435744, 75.15171928754556 -4.339158212148133 M75.15171928754556 -4.339158212148133 C75.2139440629225 -4.019647141798486, 75.27616883829944 -3.7001360714488385, 75.39066977658177 -3.1121979531509023 M75.15171928754556 -4.339158212148133 C75.2041771910112 -4.069797964833916, 75.25663509447683 -3.8004377175197, 75.39066977658177 -3.1121979531509023 M75.39066977658177 -3.1121979531509023 C75.42324547063679 -2.859547302858624, 75.4558211646918 -2.6068966525663457, 75.55051770250937 -1.872449005199798 M75.39066977658177 -3.1121979531509023 C75.42437489792195 -2.8507876878655343, 75.45808001926213 -2.5893774225801662, 75.55051770250937 -1.872449005199798 M75.55051770250937 -1.872449005199798 C75.56789098703979 -1.6018460751755543, 75.58526427157022 -1.3312431451513105, 75.63060621591342 -0.6250057626472757 M75.55051770250937 -1.872449005199798 C75.57373101384023 -1.5108829437739468, 75.5969443251711 -1.1493168823480957, 75.63060621591342 -0.6250057626472757 M75.63060621591342 -0.6250057626472757 C75.63060621591342 -0.3740796994415047, 75.63060621591342 -0.12315363623573372, 75.63060621591342 0.625005762647271 M75.63060621591342 -0.6250057626472757 C75.63060621591342 -0.2444824913458699, 75.63060621591342 0.13604077995553587, 75.63060621591342 0.625005762647271 M75.63060621591342 0.625005762647271 C75.61179631962489 0.9179850804161793, 75.59298642333636 1.2109643981850877, 75.55051770250937 1.8724490051997846 M75.63060621591342 0.625005762647271 C75.6011527565976 1.0837671658954846, 75.5716992972818 1.5425285691436983, 75.55051770250937 1.8724490051997846 M75.55051770250937 1.8724490051997846 C75.50280363825894 2.242509865318345, 75.45508957400853 2.6125707254369055, 75.39066977658177 3.1121979531508885 M75.55051770250937 1.8724490051997846 C75.50347944279264 2.237268458807745, 75.4564411830759 2.6020879124157057, 75.39066977658177 3.1121979531508885 M75.39066977658177 3.1121979531508885 C75.33176892098663 3.4146413979317076, 75.27286806539149 3.7170848427125263, 75.15171928754556 4.339158212148129 M75.39066977658177 3.1121979531508885 C75.3003021787132 3.5762164690074414, 75.20993458084463 4.040234984863994, 75.15171928754556 4.339158212148129 M75.15171928754556 4.339158212148129 C75.07579724430938 4.628681867829352, 74.99987520107321 4.918205523510576, 74.83464813421489 5.548287939305125 M75.15171928754556 4.339158212148129 C75.04048523425116 4.763341866503302, 74.92925118095678 5.187525520858474, 74.83464813421489 5.548287939305125 M74.83464813421489 5.548287939305125 C74.71090695781281 5.920976647149133, 74.58716578141073 6.2936653549931405, 74.44075922997033 6.734618561215495 M74.83464813421489 5.548287939305125 C74.74154427511216 5.828701928837076, 74.64844041600945 6.109115918369028, 74.44075922997033 6.734618561215495 M74.44075922997033 6.734618561215495 C74.33437433247266 6.997391314846778, 74.22798943497502 7.260164068478061, 73.97167114880834 7.893275190886679 M74.44075922997033 6.734618561215495 C74.27474559397332 7.1446754517834, 74.10873195797632 7.554732342351306, 73.97167114880834 7.893275190886679 M73.97167114880834 7.893275190886679 C73.85498156824572 8.135583601682015, 73.7382919876831 8.377892012477352, 73.4293114742735 9.019496659696284 M73.97167114880834 7.893275190886679 C73.76135468431065 8.330001829467593, 73.55103821981295 8.766728468048507, 73.4293114742735 9.019496659696284 M73.4293114742735 9.019496659696284 C73.21977386836933 9.391551896962536, 73.01023626246516 9.76360713422879, 72.81590887860425 10.108655082055236 M73.4293114742735 9.019496659696284 C73.25762679222703 9.32434019762901, 73.08594211018055 9.629183735561735, 72.81590887860425 10.108655082055236 M72.81590887860425 10.108655082055236 C72.58846607198343 10.458068309969963, 72.36102326536263 10.807481537884689, 72.13398396464065 11.156274872382301 M72.81590887860425 10.108655082055236 C72.58927803022881 10.456820924063738, 72.36264718185339 10.804986766072242, 72.13398396464065 11.156274872382301 M72.13398396464065 11.156274872382301 C71.91299873148078 11.45237495264762, 71.69201349832092 11.74847503291294, 71.38633890812659 12.158051136245302 M72.13398396464065 11.156274872382301 C71.95928751017514 11.39035220619167, 71.78459105570964 11.624429540001039, 71.38633890812659 12.158051136245302 M71.38633890812659 12.158051136245302 C71.19912886924538 12.377958700468154, 71.01191883036417 12.597866264691007, 70.57604594296866 13.10986736009567 M71.38633890812659 12.158051136245302 C71.144678698841 12.441918968927597, 70.90301848955542 12.72578680160989, 70.57604594296866 13.10986736009567 M70.57604594296866 13.10986736009567 C70.39461373879737 13.297211006763511, 70.21318153462609 13.484554653431353, 69.70643473676799 14.007812326905684 M70.57604594296866 13.10986736009567 C70.25169483158153 13.444786512324375, 69.9273437201944 13.779705664553079, 69.70643473676799 14.007812326905684 M69.70643473676799 14.007812326905684 C69.38763610488543 14.297336809431851, 69.06883747300287 14.586861291958018, 68.7810787085019 14.848196188198111 M69.70643473676799 14.007812326905684 C69.49107912699874 14.203392593700919, 69.27572351722951 14.398972860496151, 68.7810787085019 14.848196188198111 M68.7810787085019 14.848196188198111 C68.51276049877424 15.062172820208476, 68.2444422890466 15.27614945221884, 67.80378034457871 15.627565626425152 M68.7810787085019 14.848196188198111 C68.57227647198155 15.014710415362217, 68.3634742354612 15.181224642526322, 67.80378034457871 15.627565626425152 M67.80378034457871 15.627565626425152 C67.52918709178029 15.819109992627004, 67.25459383898186 16.010654358828855, 66.7785555736057 16.34271804539089 M67.80378034457871 15.627565626425152 C67.40901646679767 15.902935818512368, 67.01425258901662 16.178306010599584, 66.7785555736057 16.34271804539089 M66.7785555736057 16.34271804539089 C66.49280519294192 16.515941605404908, 66.20705481227813 16.689165165418924, 65.70961726407678 16.990714730406093 M66.7785555736057 16.34271804539089 C66.46734370679619 16.53137650793475, 66.15613183998667 16.72003497047861, 65.70961726407678 16.990714730406093 M65.70961726407678 16.990714730406093 C65.48704041068288 17.10683293225441, 65.26446355728899 17.222951134102725, 64.60135791279238 17.56889292409717 M65.70961726407678 16.990714730406093 C65.39664234131818 17.153993547139248, 65.08366741855959 17.3172723638724, 64.60135791279238 17.56889292409717 M64.60135791279238 17.56889292409717 C64.36954728281867 17.671508613568513, 64.13773665284496 17.774124303039855, 63.458331595147804 18.07487676824742 M64.60135791279238 17.56889292409717 C64.231494949756 17.7326202862384, 63.861631986719615 17.89634764837963, 63.458331595147804 18.07487676824742 M63.458331595147804 18.07487676824742 C63.101565618332785 18.206169945623884, 62.744799641517766 18.33746312300035, 62.28523525146062 18.506587066708033 M63.458331595147804 18.07487676824742 C63.030071787306014 18.232480336323466, 62.60181197946423 18.39008390439951, 62.28523525146062 18.506587066708033 M62.28523525146062 18.506587066708033 C62.042071268229805 18.578756860537144, 61.79890728499899 18.650926654366256, 61.08688938623541 18.86224982926107 M62.28523525146062 18.506587066708033 C61.810492960218646 18.647488086775514, 61.33575066897668 18.788389106842992, 61.08688938623541 18.86224982926107 M61.08688938623541 18.86224982926107 C60.74629646535026 18.939987940876588, 60.40570354446511 19.0177260524921, 59.868218259676766 19.140403561325773 M61.08688938623541 18.86224982926107 C60.809024581144165 18.92567065778584, 60.53115977605291 18.989091486310606, 59.868218259676766 19.140403561325773 M59.868218259676766 19.140403561325773 C59.43389171732567 19.210622108440457, 58.99956517497458 19.280840655555142, 58.63422965284788 19.3399052695533 M59.868218259676766 19.140403561325773 C59.452016135904245 19.207691893001638, 59.03581401213173 19.274980224677503, 58.63422965284788 19.3399052695533 M58.63422965284788 19.3399052695533 C58.2532280634058 19.376660034665324, 57.872226473963714 19.41341479977735, 57.3899942896239 19.45993515863156 M58.63422965284788 19.3399052695533 C58.14600619482252 19.387003599374392, 57.65778273679716 19.43410192919548, 57.3899942896239 19.45993515863156 M57.3899942896239 19.45993515863156 C56.98148588607749 19.47303522801992, 56.572977482531094 19.486135297408282, 56.14062500000001 19.5 M57.3899942896239 19.45993515863156 C57.09532149537482 19.469384741597327, 56.80064870112574 19.478834324563095, 56.14062500000001 19.5 M56.14062500000001 19.5 C56.14062500000001 19.5, 56.140625 19.5, 56.140625 19.5 M56.14062500000001 19.5 C56.14062500000001 19.5, 56.140625 19.5, 56.140625 19.5 M56.140625 19.5 C25.5097294586548 19.5, -5.121166082690401 19.5, -56.14062499999999 19.5 M56.140625 19.5 C22.578434144684785 19.5, -10.98375671063043 19.5, -56.14062499999999 19.5 M-56.14062499999999 19.5 C-56.445532306105065 19.490222216159278, -56.750439612210144 19.480444432318556, -57.38999428962389 19.45993515863156 M-56.14062499999999 19.5 C-56.62575123624846 19.484442945844446, -57.11087747249694 19.468885891688895, -57.38999428962389 19.45993515863156 M-57.38999428962389 19.45993515863156 C-57.81038515698636 19.419380557251092, -58.23077602434882 19.378825955870624, -58.63422965284787 19.3399052695533 M-57.38999428962389 19.45993515863156 C-57.8211739834415 19.418339772138427, -58.2523536772591 19.376744385645292, -58.63422965284787 19.3399052695533 M-58.63422965284787 19.3399052695533 C-59.07935228474492 19.267941294405748, -59.52447491664197 19.195977319258198, -59.86821825967676 19.140403561325773 M-58.63422965284787 19.3399052695533 C-58.948576398324455 19.289084125540064, -59.26292314380104 19.23826298152683, -59.86821825967676 19.140403561325773 M-59.86821825967676 19.140403561325773 C-60.33034725167161 19.03492563457645, -60.792476243666464 18.929447707827126, -61.086889386235384 18.862249829261074 M-59.86821825967676 19.140403561325773 C-60.24458485485146 19.054500341998708, -60.62095145002616 18.968597122671643, -61.086889386235384 18.862249829261074 M-61.086889386235384 18.862249829261074 C-61.52571479227652 18.73200875218963, -61.96454019831766 18.601767675118182, -62.28523525146059 18.506587066708043 M-61.086889386235384 18.862249829261074 C-61.416045985519105 18.764557878371914, -61.745202584802826 18.666865927482753, -62.28523525146059 18.506587066708043 M-62.28523525146059 18.506587066708043 C-62.557309538599554 18.406461214013767, -62.82938382573851 18.306335361319487, -63.4583315951478 18.074876768247425 M-62.28523525146059 18.506587066708043 C-62.679927833927046 18.36133654786215, -63.0746204163935 18.216086029016257, -63.4583315951478 18.074876768247425 M-63.4583315951478 18.074876768247425 C-63.86843431153325 17.893336460968435, -64.2785370279187 17.71179615368944, -64.60135791279238 17.568892924097174 M-63.4583315951478 18.074876768247425 C-63.795160380649214 17.925772656576864, -64.13198916615063 17.776668544906304, -64.60135791279238 17.568892924097174 M-64.60135791279238 17.568892924097174 C-64.95278244344989 17.385554971551304, -65.3042069741074 17.202217019005435, -65.70961726407678 16.990714730406097 M-64.60135791279238 17.568892924097174 C-64.9813282287775 17.370662653630344, -65.3612985447626 17.172432383163514, -65.70961726407678 16.990714730406097 M-65.70961726407678 16.990714730406097 C-65.96349662082012 16.836811572387578, -66.21737597756346 16.682908414369056, -66.77855557360569 16.3427180453909 M-65.70961726407678 16.990714730406097 C-66.02806567992003 16.7976694293113, -66.3465140957633 16.604624128216503, -66.77855557360569 16.3427180453909 M-66.77855557360569 16.3427180453909 C-67.05747331152135 16.148157105575205, -67.33639104943703 15.953596165759507, -67.80378034457871 15.627565626425156 M-66.77855557360569 16.3427180453909 C-67.15481030454573 16.080259032891913, -67.53106503548578 15.817800020392928, -67.80378034457871 15.627565626425156 M-67.80378034457871 15.627565626425156 C-68.09894356113594 15.392180815843833, -68.39410677769317 15.15679600526251, -68.78107870850187 14.848196188198125 M-67.80378034457871 15.627565626425156 C-68.17033046402719 15.335251660473325, -68.53688058347568 15.042937694521493, -68.78107870850187 14.848196188198125 M-68.78107870850187 14.848196188198125 C-69.10625028034079 14.552883970222341, -69.43142185217972 14.257571752246557, -69.70643473676797 14.007812326905697 M-68.78107870850187 14.848196188198125 C-69.01349597295274 14.637120978047676, -69.24591323740363 14.426045767897229, -69.70643473676797 14.007812326905697 M-69.70643473676797 14.007812326905697 C-69.92992580982636 13.777039445014577, -70.15341688288474 13.546266563123455, -70.57604594296865 13.109867360095677 M-69.70643473676797 14.007812326905697 C-70.00739774130935 13.697043315194524, -70.30836074585072 13.38627430348335, -70.57604594296865 13.109867360095677 M-70.57604594296865 13.109867360095677 C-70.87936449560293 12.753572128856867, -71.18268304823722 12.397276897618054, -71.38633890812658 12.158051136245307 M-70.57604594296865 13.109867360095677 C-70.81457984061439 12.829671870957721, -71.05311373826011 12.549476381819765, -71.38633890812658 12.158051136245307 M-71.38633890812658 12.158051136245307 C-71.68495701559131 11.757930076911803, -71.98357512305606 11.357809017578301, -72.13398396464063 11.156274872382316 M-71.38633890812658 12.158051136245307 C-71.59068108024886 11.884251241556303, -71.79502325237112 11.6104513468673, -72.13398396464063 11.156274872382316 M-72.13398396464063 11.156274872382316 C-72.28073452441232 10.930826604530058, -72.42748508418401 10.705378336677802, -72.81590887860425 10.108655082055249 M-72.13398396464063 11.156274872382316 C-72.3389308558969 10.841421411466632, -72.54387774715316 10.526567950550948, -72.81590887860425 10.108655082055249 M-72.81590887860425 10.108655082055249 C-72.9633663385252 9.846829430278623, -73.11082379844618 9.585003778501997, -73.4293114742735 9.019496659696289 M-72.81590887860425 10.108655082055249 C-73.0531399201531 9.687427345537426, -73.29037096170195 9.266199609019605, -73.4293114742735 9.019496659696289 M-73.4293114742735 9.019496659696289 C-73.58659851290906 8.69288675856604, -73.74388555154464 8.36627685743579, -73.97167114880834 7.893275190886686 M-73.4293114742735 9.019496659696289 C-73.58116842143805 8.70416245969094, -73.73302536860261 8.388828259685589, -73.97167114880834 7.893275190886686 M-73.97167114880834 7.893275190886686 C-74.10892477240533 7.554256086983821, -74.24617839600234 7.215236983080955, -74.44075922997033 6.73461856121551 M-73.97167114880834 7.893275190886686 C-74.14493163318275 7.465318444718308, -74.31819211755716 7.03736169854993, -74.44075922997033 6.73461856121551 M-74.44075922997033 6.73461856121551 C-74.52823298327485 6.471161553312195, -74.61570673657937 6.20770454540888, -74.83464813421489 5.5482879393051325 M-74.44075922997033 6.73461856121551 C-74.54221084693384 6.42906245504142, -74.64366246389737 6.123506348867329, -74.83464813421489 5.5482879393051325 M-74.83464813421489 5.5482879393051325 C-74.95776827667231 5.078777475507699, -75.08088841912974 4.609267011710264, -75.15171928754556 4.339158212148136 M-74.83464813421489 5.5482879393051325 C-74.95227658371654 5.099719680862823, -75.06990503321819 4.651151422420514, -75.15171928754556 4.339158212148136 M-75.15171928754556 4.339158212148136 C-75.24151694314021 3.878066229410836, -75.33131459873486 3.4169742466735364, -75.39066977658177 3.112197953150904 M-75.15171928754556 4.339158212148136 C-75.23814231280757 3.895394242940575, -75.32456533806958 3.4516302737330142, -75.39066977658177 3.112197953150904 M-75.39066977658177 3.112197953150904 C-75.42490535156016 2.846673594197499, -75.45914092653855 2.5811492352440943, -75.55051770250937 1.872449005199809 M-75.39066977658177 3.112197953150904 C-75.43667785533117 2.755368379693329, -75.48268593408058 2.398538806235754, -75.55051770250937 1.872449005199809 M-75.55051770250937 1.872449005199809 C-75.58096994232552 1.3981307894575667, -75.61142218214168 0.9238125737153244, -75.63060621591342 0.6250057626472781 M-75.55051770250937 1.872449005199809 C-75.57420356527167 1.5035225737924982, -75.597889428034 1.1345961423851874, -75.63060621591342 0.6250057626472781 M-75.63060621591342 0.6250057626472781 C-75.63060621591342 0.2934221557613014, -75.63060621591342 -0.038161451124675394, -75.63060621591342 -0.6250057626472687 M-75.63060621591342 0.6250057626472781 C-75.63060621591342 0.36461610097400693, -75.63060621591342 0.10422643930073572, -75.63060621591342 -0.6250057626472687 M-75.63060621591342 -0.6250057626472687 C-75.60109384627967 -1.0846847416489431, -75.57158147664592 -1.5443637206506176, -75.55051770250937 -1.8724490051997822 M-75.63060621591342 -0.6250057626472687 C-75.6139563914871 -0.8843402175835853, -75.59730656706077 -1.1436746725199018, -75.55051770250937 -1.8724490051997822 M-75.55051770250937 -1.8724490051997822 C-75.49299944088827 -2.3185492840675765, -75.43548117926716 -2.764649562935371, -75.39066977658177 -3.112197953150895 M-75.55051770250937 -1.8724490051997822 C-75.49775329017329 -2.281679367766641, -75.44498887783722 -2.6909097303335003, -75.39066977658177 -3.112197953150895 M-75.39066977658177 -3.112197953150895 C-75.31556870100673 -3.4978261036108464, -75.24046762543168 -3.8834542540707977, -75.15171928754556 -4.339158212148126 M-75.39066977658177 -3.112197953150895 C-75.29609707512101 -3.5978087872043614, -75.20152437366026 -4.0834196212578275, -75.15171928754556 -4.339158212148126 M-75.15171928754556 -4.339158212148126 C-75.03936110145953 -4.767628672040058, -74.92700291537349 -5.196099131931988, -74.83464813421489 -5.548287939305123 M-75.15171928754556 -4.339158212148126 C-75.06166087421818 -4.682589973728687, -74.9716024608908 -5.026021735309247, -74.83464813421489 -5.548287939305123 M-74.83464813421489 -5.548287939305123 C-74.71880683412616 -5.897183478367684, -74.60296553403742 -6.246079017430246, -74.44075922997033 -6.734618561215485 M-74.83464813421489 -5.548287939305123 C-74.74856454152989 -5.807558004914442, -74.66248094884489 -6.066828070523762, -74.44075922997033 -6.734618561215485 M-74.44075922997033 -6.734618561215485 C-74.26396162976299 -7.171312051876676, -74.08716402955565 -7.6080055425378665, -73.97167114880834 -7.893275190886676 M-74.44075922997033 -6.734618561215485 C-74.31089665861873 -7.055381623175929, -74.18103408726715 -7.376144685136373, -73.97167114880834 -7.893275190886676 M-73.97167114880834 -7.893275190886676 C-73.85867748963896 -8.12790894182889, -73.74568383046959 -8.362542692771106, -73.4293114742735 -9.019496659696282 M-73.97167114880834 -7.893275190886676 C-73.75636030075206 -8.340372773789689, -73.54104945269577 -8.7874703566927, -73.4293114742735 -9.019496659696282 M-73.4293114742735 -9.019496659696282 C-73.25946598342897 -9.321074527411664, -73.08962049258444 -9.622652395127044, -72.81590887860425 -10.108655082055243 M-73.4293114742735 -9.019496659696282 C-73.20090954783215 -9.425047408295876, -72.97250762139082 -9.830598156895471, -72.81590887860425 -10.108655082055243 M-72.81590887860425 -10.108655082055243 C-72.60350448744185 -10.434965265445861, -72.39110009627946 -10.76127544883648, -72.13398396464063 -11.156274872382308 M-72.81590887860425 -10.108655082055243 C-72.58083041071035 -10.469798736147567, -72.34575194281645 -10.83094239023989, -72.13398396464063 -11.156274872382308 M-72.13398396464063 -11.156274872382308 C-71.84292612312466 -11.54626586409887, -71.55186828160869 -11.936256855815435, -71.38633890812659 -12.158051136245302 M-72.13398396464063 -11.156274872382308 C-71.83511775808559 -11.556728361894534, -71.53625155153055 -11.957181851406759, -71.38633890812659 -12.158051136245302 M-71.38633890812659 -12.158051136245302 C-71.11866205486844 -12.472479599326755, -70.85098520161029 -12.786908062408209, -70.57604594296866 -13.10986736009567 M-71.38633890812659 -12.158051136245302 C-71.17174853827034 -12.41012119521641, -70.95715816841408 -12.662191254187519, -70.57604594296866 -13.10986736009567 M-70.57604594296866 -13.10986736009567 C-70.39819827737418 -13.293509676386865, -70.22035061177971 -13.477151992678058, -69.70643473676799 -14.007812326905677 M-70.57604594296866 -13.10986736009567 C-70.35027485416043 -13.34299454544128, -70.1245037653522 -13.57612173078689, -69.70643473676799 -14.007812326905677 M-69.70643473676799 -14.007812326905677 C-69.49792416708536 -14.197176109404083, -69.28941359740274 -14.386539891902487, -68.7810787085019 -14.848196188198107 M-69.70643473676799 -14.007812326905677 C-69.39497635202359 -14.290670591193267, -69.08351796727918 -14.573528855480857, -68.7810787085019 -14.848196188198107 M-68.7810787085019 -14.848196188198107 C-68.46981356683433 -15.096421855564698, -68.15854842516677 -15.344647522931288, -67.80378034457871 -15.627565626425149 M-68.7810787085019 -14.848196188198107 C-68.53914492987973 -15.041131938521048, -68.29721115125757 -15.23406768884399, -67.80378034457871 -15.627565626425149 M-67.80378034457871 -15.627565626425149 C-67.48533533288115 -15.84969908132299, -67.1668903211836 -16.071832536220832, -66.77855557360571 -16.342718045390885 M-67.80378034457871 -15.627565626425149 C-67.4718070655541 -15.859135814981085, -67.13983378652951 -16.090706003537022, -66.77855557360571 -16.342718045390885 M-66.77855557360571 -16.342718045390885 C-66.46921653298799 -16.53024118969133, -66.15987749237027 -16.71776433399178, -65.70961726407678 -16.99071473040609 M-66.77855557360571 -16.342718045390885 C-66.54731742551841 -16.482895969667595, -66.31607927743113 -16.62307389394431, -65.70961726407678 -16.99071473040609 M-65.70961726407678 -16.99071473040609 C-65.38740385415264 -17.158813259975982, -65.06519044422849 -17.326911789545875, -64.6013579127924 -17.56889292409717 M-65.70961726407678 -16.99071473040609 C-65.27318252134693 -17.218402456138463, -64.83674777861708 -17.446090181870836, -64.6013579127924 -17.56889292409717 M-64.6013579127924 -17.56889292409717 C-64.23559230508297 -17.730806508578883, -63.86982669737354 -17.892720093060596, -63.458331595147804 -18.07487676824742 M-64.6013579127924 -17.56889292409717 C-64.2258142026255 -17.7351349844797, -63.850270492458606 -17.901377044862233, -63.458331595147804 -18.07487676824742 M-63.458331595147804 -18.07487676824742 C-63.124775449923064 -18.19762851304933, -62.791219304698316 -18.320380257851244, -62.28523525146062 -18.506587066708033 M-63.458331595147804 -18.07487676824742 C-63.04768226115099 -18.225999519159082, -62.637032927154166 -18.377122270070743, -62.28523525146062 -18.506587066708033 M-62.28523525146062 -18.506587066708033 C-61.97291122625789 -18.59928319796594, -61.660587201055165 -18.691979329223848, -61.08688938623541 -18.862249829261067 M-62.28523525146062 -18.506587066708033 C-61.83671601126148 -18.6397052228736, -61.38819677106233 -18.772823379039174, -61.08688938623541 -18.862249829261067 M-61.08688938623541 -18.862249829261067 C-60.705862844794126 -18.94921665091449, -60.32483630335284 -19.036183472567913, -59.868218259676766 -19.140403561325773 M-61.08688938623541 -18.862249829261067 C-60.70803339299551 -18.948721237451675, -60.32917739975561 -19.03519264564228, -59.868218259676766 -19.140403561325773 M-59.868218259676766 -19.140403561325773 C-59.40562474022133 -19.215192094085005, -58.943031220765896 -19.28998062684424, -58.63422965284788 -19.3399052695533 M-59.868218259676766 -19.140403561325773 C-59.38474966768999 -19.218567013923266, -58.90128107570322 -19.296730466520764, -58.63422965284788 -19.3399052695533 M-58.63422965284788 -19.3399052695533 C-58.37693697213259 -19.364725985022183, -58.11964429141731 -19.389546700491064, -57.3899942896239 -19.45993515863156 M-58.63422965284788 -19.3399052695533 C-58.17022484076892 -19.384667255727123, -57.706220028689955 -19.42942924190095, -57.3899942896239 -19.45993515863156 M-57.3899942896239 -19.45993515863156 C-57.016921546225355 -19.471898875370307, -56.6438488028268 -19.483862592109055, -56.14062500000001 -19.5 M-57.3899942896239 -19.45993515863156 C-56.98032045831061 -19.47307260102004, -56.57064662699731 -19.486210043408516, -56.14062500000001 -19.5 M-56.14062500000001 -19.5 C-56.14062500000001 -19.5, -56.140625 -19.5, -56.140625 -19.5 M-56.14062500000001 -19.5 C-56.14062500000001 -19.5, -56.140625 -19.5, -56.140625 -19.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(-63.265625, -12)\"><rect></rect><foreignObject width=\"126.53125\" 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>Ticketed booking</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-B-1\" transform=\"translate(355.94090270996094, 342)\"><polygon points=\"84.1796875,0 168.359375,-84.1796875 84.1796875,-168.359375 0,-84.1796875\" class=\"label-container\" transform=\"translate(-83.6796875, 84.1796875)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-45.1796875, -24)\"><rect></rect><foreignObject width=\"90.359375\" 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>Seat change <br>initiated?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-C-3\" transform=\"translate(719.6362152099609, 118)\"><rect class=\"basic label-container\" style=\"fill:#2196F3 !important\" x=\"-127.859375\" y=\"-75\" width=\"255.71875\" height=\"150\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-97.859375, -60)\"><rect></rect><foreignObject width=\"195.71875\" 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>FLIGHT_SEAT_<br>CONFIRMED</b><br>―――――――――――<br>Requested seat confirmed<br>by the airline.</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-D-5\" transform=\"translate(719.6362152099609, 342)\"><rect class=\"basic label-container\" style=\"fill:#FF9800 !important\" x=\"-118\" y=\"-99\" width=\"236\" height=\"198\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-88, -84)\"><rect></rect><foreignObject width=\"176\" height=\"168\"><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>FLIGHT_SEAT_<br>CHANGED</b><br>―――――――――――<br>Seat reassigned<br>(e.g., equipment swap).<br>Paid seat fee NOT<br>auto-refunded.</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"flowchart-E-7\" transform=\"translate(719.6362152099609, 590)\"><rect class=\"basic label-container\" style=\"fill:#F44336 !important\" x=\"-118\" y=\"-99\" width=\"236\" height=\"198\"></rect><g class=\"label\" style=\"color:#fff !important\" transform=\"translate(-88, -84)\"><rect></rect><foreignObject width=\"176\" height=\"168\"><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>FLIGHT_SEAT_<br>CANCELLED</b><br>―――――――――――<br>Seat removed<br>(e.g., equipment swap).<br>Traveler must select<br>a new seat.</p></span></div></foreignObject></g></g></g></g></g></g></g></svg></div>"},"children":["flowchart TD\n    subgraph seats[\"Seat changes\"]\n        A([\"Ticketed booking\"]) --> B{\"Seat change <br>initiated?\"}\n\n        B -->|\"Seat<br>confirmed\"| C[\"<b>FLIGHT_SEAT_<br>CONFIRMED</b><br>―――――――――――<br>Requested seat confirmed<br>by the airline.\"]\n\n        B -->|\"Seat<br>changed\"| D[\"<b>FLIGHT_SEAT_<br>CHANGED</b><br>―――――――――――<br>Seat reassigned<br>(e.g., equipment swap).<br>Paid seat fee NOT<br>auto-refunded.\"]\n\n        B -->|\"Seat<br>cancelled\"| E[\"<b>FLIGHT_SEAT_<br>CANCELLED</b><br>―――――――――――<br>Seat removed<br>(e.g., equipment swap).<br>Traveler must select<br>a new seat.\"]\n    end\n\n    style A fill:#f0f0f0,stroke:#999\n    style C fill:#2196F3,color:#fff\n    style D fill:#FF9800,color:#fff\n    style E fill:#F44336,color:#fff\n"]}]},"headings":[{"value":"Seat changes","id":"seat-changes","depth":1},{"value":"Seat change flow diagram","id":"seat-change-flow-diagram","depth":2}],"frontmatter":{"seo":{"title":"Seat changes"}},"lastModified":"2026-03-11T17:17:12.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/webhooks/booking-lifecycle/air-booking-lifecycle/seat-changes-lifecycle","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}