<?xml version="1.0" encoding="UTF-8"?>
<flowchart xmlns="http://wizard4j.org/flowchart">
 <root>
   <switch name="doesItWork" label="Does the bloody thing work?" minNbrOfBranches="1" maxNbrOfBranches="1">
     <branch name="yes" label="yes">
       <info name="dontMess" label="Don't mess with it!"/>
     </branch>
     <branch name="no" label="no">
       <switch name="didYouMess" label="Did you mess with it?" minNbrOfBranches="1" maxNbrOfBranches="1">
         <branch name="yes" label="yes">
           <info name="idiot" label="You are an idiot!"/>
           <switch name="doesAnyoneKnow" label="Does anyone know?" minNbrOfBranches="1" maxNbrOfBranches="1">
             <branch name="yes" label="yes">
               <fragmentPointer name="blameFragment" ref="blame"/>
             </branch>
             <branch name="no" label="no">
               <info name="hide" label="Hide it."/>
             </branch>
           </switch>
         </branch>
         <branch name="no" label="no">
           <switch name="willYouGetScrewed" label="Will you get screwed?" minNbrOfBranches="1" maxNbrOfBranches="1">
             <branch name="yes" label="yes">
               <fragmentPointer name="blameFragment" ref="blame"/>
             </branch>
             <branch name="no" label="no">
               <info name="bin" label="Put it in the bin."/>
             </branch>
           </switch>
         </branch>
       </switch>
     </branch>
   </switch>
 </root>
 <fragment name="blame">
   <switch name="canYouBlame" label="Can you blame someone else?" minNbrOfBranches="1" maxNbrOfBranches="1">
     <branch name="no" label="no"/>
     <branch name="yes" label="yes"/>
   </switch>
 </fragment>
</flowchart>
