flowchart TD
start-- through --> second
second -- through again --> third
sequenceDiagram
participant First
participant Second
participant Third
participant 4th
participant 5th
participant 6th
participant last
First->> Second : Some text from first
Second -->> Second : Circular thing
loop get next
5th ->> Second : loop
Note right of 5th: some note thing
5th ->> 4th : store 4th
end
loop another loop
5th->>4th: get last4th
5th ->>6th: save 6th
Note right of 5th: last note
end
last--> 5th : ...