diff --git a/data.csv b/data.csv new file mode 100644 index 0000000000000000000000000000000000000000..32f82b6299e8cce24e9c6a9ce70c949e193225b8 --- /dev/null +++ b/data.csv @@ -0,0 +1,22588 @@ +instruction,code,output +Create a DOT diagram showing a compiler pipeline,"dotDiagram +digraph Compiler { + bgcolor=""#fafafa"" + node [shape=""box"", bgcolor=""#e3f2fd""] + + source[""Source Code""] + lexer[""Lexer""] + tokens[""Tokens""] + parser[""Parser""] + ast[""AST""] + semantic[""Semantic Analyzer""] + ir[""IR""] + optimizer[""Optimizer""] + codegen[""Code Generator""] + output[""Machine Code""] + + source -> lexer + lexer -> tokens + tokens -> parser + parser -> ast + ast -> semantic + semantic -> ir + ir -> optimizer + optimizer -> codegen + codegen -> output +}",output/978.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n11 [shape=""circle"", label=""Node n11""] + n9 -> n3 + n5 -> n3 + n0 -> n9 + n11 -> n9 + n7 -> n0 + n1 -> n8 + n2 -> n11 + n11 -> n1 + n9 -> n10 + n7 -> n0 + n4 -> n6 +}",output/800.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2-->>P0: msg_26 +P0->>P1: msg_36 +P1-->P2: msg_37 +P2->>P1: msg_19 +P2-->P1: msg_74 +P2-->P0: msg_11 +P2-->>P0: msg_9 +P0->>P1: msg_84 +P1-->P2: msg_42 +P1-->>P0: msg_81 +P1->P0: msg_83 +P0-->>P1: msg_98 +P0->>P1: msg_35",output/199.pintora.png +Create a Gantt chart for a software release cycle,"gantt +title Software Release v2.0 +dateFormat YYYY-MM-DD +axisFormat %b %d +axisInterval 1w +section Design +""Architecture Review"" : arch, 2024-04-01, 7d +""API Design"" : after arch, 5d +section Development +""Core Features"" : core, 2024-04-08, 21d +""API Implementation"" : after core, 14d +section QA +""Unit Testing"" : 2024-04-15, 28d +""Integration Testing"" : 2024-05-06, 14d +""UAT"" : 2024-05-13, 7d +section Release +""Code Freeze"" : milestone, 2024-05-20, 0d +""Production Deploy"" : milestone, 2024-05-22, 0d",output/968.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 o-- Class3 +Class3 o-- Class4",output/189.pintora.png +Design a comprehensive Entity Relationship diagram.,"erDiagram +title: Hospital System +CATEGORY { + int category_id PK + datetime status + text phone + text description +} +INVENTORY { + int inventory_id PK + int quantity + bool name +} +ORDER { + int order_id PK + string date + bool address FK + datetime description + text address + float address +} +SHIPMENT { + int shipment_id PK + text email + float description + bool description +} +REVIEW { + int review_id PK + text email + string email +} +CUSTOMER { + int customer_id PK + int description + string description + string description + bool quantity +} +USER { + int user_id PK + text quantity + text description +} +CATEGORY ||--|{ REVIEW : contains +INVENTORY ||--|| ORDER : includes +ORDER ||--o{ CUSTOMER : has +SHIPMENT }|--|| REVIEW : includes +REVIEW }o--o{ USER : manages +CUSTOMER }o--o{ USER : owns",output/810.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 7d +""Task 2"" : 2024-01-13, 8d",output/387.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n3 -> n1 + n2 -> n4 + n4 -> n2 + n3 -> n1 + n4 -> n3 + n3 -> n0 + n1 -> n0 + n3 -> n2 + n1 -> n3 + n0 -> n4 +}",output/397.pintora.png +Write a DOT diagram for a linked list,"dotDiagram +digraph LinkedList { + bgcolor=""white"" + node [shape=""record"", bgcolor=""#e8f5e9""] + + head [label=""head"", shape=""plaintext""] + n1 [label=""{ 10 | next }""] + n2 [label=""{ 20 | next }""] + n3 [label=""{ 30 | next }""] + n4 [label=""{ 40 | null }""] + + head -> n1 + n1 -> n2 + n2 -> n3 + n3 -> n4 +}",output/1002.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +end",output/246.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2 +Class2 *-- Class3",output/256.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +:Action 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Action 4; +fork + :Parallel 1 5; +forkagain + :Parallel 2 5; +endfork +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/413.pintora.png +Create a sequence diagram showing interaction between participants. Include about 7 elements.,"sequenceDiagram +autonumber +P3->P1: msg_7 +P1->P2: msg_85 +P4->P1: msg_34 +P3-->P0: msg_92 +P0-->>P1: msg_98 +P0-->P3: msg_69 +P3-->P2: msg_92",output/403.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n4 -> n1 + n2 -> n3 + n3 -> n1 + n2 -> n4 + n4 -> n2 + n2 -> n3 +}",output/775.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +autonumber +participant Service_3 +alt Condition + Service_2->Service_1: Message 626 +else Other case + Service_1-->>Service_2: Response +end +Service_3-->>Service_2: Message 216 +Service_2-->>Service_3: Message 645 +Service_3->>Service_2: Message 349 +@note right of Service_0: Note processing +Service_0-xService_3: Message 788 +Service_2->Service_0: Message 476 +Service_0->>Service_1: Message 501 +Service_0->>Service_3: Message 407",output/765.pintora.png +Schedule tasks using a Gantt chart. Include about 10 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 10d +""Task 2"" : 2024-01-18, 2d +""Task 3"" : 2024-01-20, 6d",output/120.pintora.png +Visualize a graph structure using DOT syntax. Include about 10 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n6 -> n4 + n6 -> n5 + n5 -> n3 + n3 -> n1 + n0 -> n2 + n2 -> n3 + n2 -> n5 + n1 -> n0 + n2 -> n5 + n4 -> n2 +}",output/130.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P3-->P2: msg_55 +P3->P1: msg_32 +P2-->P0: msg_14 +P4->>P0: msg_68 +P0-->P4: msg_38",output/142.pintora.png +Design an Entity Relationship diagram. Include about 8 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 ||--|| Ent2 : relates",output/152.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + float field_2 + string field_3 + string field_4 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 +} +TABLE_2 { + int id PK + bool field_0 + bool field_1 +} +TABLE_3 { + int id PK + float field_0 + bool field_1 + int field_2 +} +TABLE_4 { + int id PK + string field_0 + int field_1 + float field_2 + float field_3 + int field_4 +} +TABLE_0 ||--|{ TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : manages +TABLE_2 ||--o{ TABLE_3 : contains +TABLE_3 }|--|| TABLE_4 : has",output/717.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +:Process 2; +:Process 3; +:Action 4; +:Process 5; +:Action 6; +:Process 7; +:Process 8; +end",output/707.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + float field_1 + int field_2 + int field_3 +} +TABLE_1 { + int id PK + bool field_0 + int field_1 + datetime field_2 + datetime field_3 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 + float field_2 +} +TABLE_3 { + int id PK + float field_0 + datetime field_1 + string field_2 + datetime field_3 + bool field_4 +} +TABLE_4 { + int id PK + float field_0 + int field_1 + string field_2 + string field_3 +} +TABLE_5 { + int id PK + int field_0 + int field_1 + float field_2 + string field_3 + bool field_4 +} +TABLE_0 ||--o{ TABLE_1 : manages +TABLE_1 ||--|{ TABLE_2 : manages +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 ||--|| TABLE_5 : has",output/509.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n3 -> n4 + n6 -> n3 + n0 -> n1 + n4 -> n1 + n5 -> n2 + n4 -> n0 + n4 -> n6 +}",output/471.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n5 -> n4 + n0 -> n1 + n1 -> n8 + n6 -> n8 + n9 -> n7 + n8 -> n3 + n10 -> n0 + n8 -> n1 + n3 -> n5 + n4 -> n5 +}",output/519.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Action 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +:Process 4; +:Action 5; +end",output/461.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 3d +""Task 2"" : 2024-01-14, 6d +""Task 3"" : 2024-01-20, 6d +""Task 4"" : 2024-01-26, 9d",output/224.pintora.png +Create a sequence diagram showing interaction between participants. Include about 11 elements.,"sequenceDiagram +autonumber +P3-->P1: msg_52 +P0->P2: msg_100 +P3-->P4: msg_11 +P1->>P3: msg_94 +P4->>P2: msg_4 +P1-->>P4: msg_17 +P3-->P4: msg_66 +P2-->P4: msg_48 +P1->P2: msg_92 +P4->P1: msg_1 +P2->P0: msg_84",output/234.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +:step_9; +:step_10; +:step_11; +:step_12; +:step_13; +:step_14; +end",output/19.pintora.png +Write a Pintora diagram: map a complex business process with activity diagram.,"activityDiagram +start +partition Validation { + while (Check 0?) is (yes) + :Process 0; + endwhile (done) + fork + :Parallel Task A1; + forkagain + :Parallel Task B1; + endfork + :Step 2; + :Step 3; + switch (Type 4?) + case (A) + :Handle A4; + case (B) + :Handle B4; + endswitch + if (Condition 5?) then (yes) + :Action True 5; + else (no) + :Action False 5; + endif + if (Condition 6?) then (yes) + :Action True 6; + else (no) + :Action False 6; + endif + if (Condition 7?) then (yes) + :Action True 7; + else (no) + :Action False 7; + endif + :Step 8; +} +end",output/862.pintora.png +Create an advanced sequence diagram with complex interactions. Include nested structures.,"sequenceDiagram +title: System Communication +autonumber +participant [ ServiceE] +ServiceD-->>ServiceE: Validate +ServiceD->ServiceA: Query 1 +ServiceE->ServiceB: Fetch data +ServiceD->ServiceB: Query 3 +loop Poll + ServiceB-->>ServiceD: Update 4 + ServiceD-->>ServiceB: Response +end +ServiceD->>ServiceE: Update 5 +loop Poll + ServiceE-->>ServiceC: Fetch data + ServiceC-->>ServiceE: Response +end +ServiceB->>ServiceC: Fetch data +ServiceC-->ServiceB: Process event +alt Success + ServiceB->>ServiceA: Request 9 + ServiceA-->>ServiceB: OK +else Error + ServiceA-->>ServiceB: Error code +end +alt Valid + ServiceC->>ServiceD: Query 10 + ServiceD-->>ServiceC: OK +else Error + ServiceD-->>ServiceC: Error code +end +ServiceE-xServiceC: Validate +ServiceE->ServiceC: Request 12 +alt Authenticated + ServiceC-->ServiceE: Query 13 + ServiceE-->>ServiceC: OK +else Error + ServiceE-->>ServiceC: Error code +end",output/872.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + datetime field_2 + int field_3 + float field_4 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 + string field_2 + bool field_3 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + datetime field_2 +} +TABLE_3 { + int id PK + string field_0 + datetime field_1 + bool field_2 + bool field_3 + datetime field_4 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--|{ TABLE_3 : owns",output/632.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +Service_0->>Service_2: Message 453 +Service_2-->Service_0: Message 309 +loop Loop check + Service_2-->Service_1: Message 759 +end +Service_1->Service_2: Message 699 +Service_2-->>Service_1: Message 246 +loop Loop check + Service_0-xService_2: Message 244 +end +Service_2-->>Service_0: Message 559",output/622.pintora.png +Write a Pintora diagram: model an object-oriented system with class diagram.,"classDiagram +class ManagerA { + +int attr0 + #string attr1 + ~string attr2 + +method0() T + ~method1() boolean + ~{static} method2() boolean +} +class RepositoryB { + <> + ~List~T~ attr0 + -{static} method0() T + -{static} method1() boolean + ~method2() T +} +class ServiceC { + -List~T~ attr0 + #boolean attr1 + #boolean attr2 + ~int attr3 + +method0() string +} +class RepositoryD { + #string attr0 + ~int attr1 + #boolean attr2 + -int attr3 + #method0() string +} +class ObserverE { + +int attr0 + ~int attr1 + ~int attr2 + ~int attr3 + ~method0() T + #{static} method1() T + +method2() T +} +ManagerA <|.. ServiceC +RepositoryB o-- RepositoryD +ServiceC --> RepositoryD +RepositoryD ..> ObserverE",output/886.pintora.png +Map a complex business process with activity diagram. Include nested structures.,"activityDiagram +title: Data Processing +start +partition Processing { + if (Condition 0?) then (yes) + :Action True 0; + else (no) + :Action False 0; + endif + :Step 1; + :Step 2; + :Step 3; + if (Condition 4?) then (yes) + :Action True 4; + else (no) + :Action False 4; + endif + :Step 5; + if (Condition 6?) then (yes) + :Action True 6; + else (no) + :Action False 6; + endif + fork + :Parallel Task A7; + forkagain + :Parallel Task B7; + endfork +end",output/896.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 15 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Feature 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1 +** Idea 3 +*** Subitem 3.0 +**** Detail 3.0.1",output/301.pintora.png +Create a sequence diagram showing interaction between participants. Include about 12 elements.,"sequenceDiagram +autonumber +P1->>P0: msg_43 +P0->>P1: msg_49 +P1-->P0: msg_19 +P0-->P1: msg_51 +P0->P1: msg_78 +P1-->>P0: msg_70 +P1->P0: msg_80 +P1-->P0: msg_37 +P0-->>P1: msg_73 +P1->>P0: msg_62 +P0-->>P1: msg_15 +P0-->P1: msg_89",output/279.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 *-- Class2 +Class2 <|-- Class3 +Class3 --> Class4 +Class4 --> Class5",output/311.pintora.png +Design an Entity Relationship diagram. Include about 13 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|{ Ent4 : relates",output/269.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 +} +TABLE_2 { + int id PK + string field_0 + float field_1 + string field_2 + int field_3 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 +} +TABLE_4 { + int id PK + string field_0 + bool field_1 +} +TABLE_5 { + int id PK + string field_0 + datetime field_1 +} +TABLE_6 { + int id PK + float field_0 + int field_1 + int field_2 + string field_3 + datetime field_4 +} +TABLE_7 { + int id PK + bool field_0 + float field_1 + datetime field_2 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 ||--|| TABLE_3 : has +TABLE_3 ||--|{ TABLE_4 : owns +TABLE_4 }|--|| TABLE_5 : has +TABLE_5 ||--o{ TABLE_6 : owns +TABLE_6 }|--|| TABLE_7 : manages",output/554.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +:Action 5; +:Action 6; +:Process 7; +:Action 8; +:Process 9; +end",output/544.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 o-- Class3 +Class3 --> Class4",output/44.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""ellipse"", label=""Node n10""] + n5 -> n9 + n6 -> n1 + n1 -> n5 + n3 -> n6 + n7 -> n3 + n6 -> n4 + n7 -> n0 + n8 -> n9 + n7 -> n9 + n7 -> n3 + n7 -> n4 + n2 -> n9 + n0 -> n5 +}",output/495.pintora.png +Create a sequence diagram showing interaction between participants. Include about 7 elements.,"sequenceDiagram +autonumber +P1->P0: msg_58 +P1->>P3: msg_81 +P0-->P3: msg_73 +P0->>P2: msg_18 +P2->P0: msg_20 +P0-->>P3: msg_28 +P2-->>P3: msg_6",output/54.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +end",output/485.pintora.png +Write a class diagram with all relationship types,"classDiagram +class A +class B +class C +class D +class E +class F +class G +class H +%% Inheritance +A <|-- B +%% Composition +C *-- D +%% Aggregation +E o-- F +%% Association +G --> H +%% Dashed inheritance (interface implementation) +A <|.. C",output/947.pintora.png +Create a sequence diagram for a REST API CRUD operation,"sequenceDiagram +title: REST API CRUD Operations +participant Client +participant API +participant DB +%% Create +Client->>API: POST /users +API->>DB: INSERT user +DB-->>API: user_id +API-->>Client: 201 Created +== Read == +Client->>API: GET /users/1 +API->>DB: SELECT user +DB-->>API: user data +API-->>Client: 200 OK +== Update == +Client->>API: PUT /users/1 +API->>DB: UPDATE user +API-->>Client: 200 OK +== Delete == +Client->>API: DELETE /users/1 +API->>DB: DELETE user +API-->>Client: 204 No Content",output/957.pintora.png +Create an activity diagram for a user registration process,"activityDiagram +title: User Registration Process +start +:Enter registration form; +:Submit form; +if (Valid input?) then (yes) + :Check email exists; + if (Email available?) then (yes) + :Create user account; + :Send verification email; + :Show success message; + else (no) + :Show email exists error; + endif +else (no) + :Show validation errors; +endif +end",output/925.pintora.png +Create a mind map with multiline text nodes,"mindmap +* Project Plan +** :Phase 1 +Complete by Q1; +** :Phase 2 +Complete by Q2; +** :Phase 3 +Complete by Q3;",output/935.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""circle"", label=""Node n10""] + n10 -> n7 + n5 -> n8 + n1 -> n8 + n1 -> n4 + n10 -> n7 + n6 -> n10 + n8 -> n9 + n4 -> n9 + n10 -> n9 + n1 -> n6 + n6 -> n4 + n2 -> n4 + n5 -> n4 +}",output/791.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n0 -> n6 + n1 -> n0 + n6 -> n2 + n1 -> n4 + n6 -> n3 + n6 -> n4 + n6 -> n0 + n7 -> n2 + n5 -> n6 + n1 -> n2 +}",output/781.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n2 -> n3 + n5 -> n7 + n4 -> n5 + n3 -> n0 + n7 -> n2 + n7 -> n4 + n2 -> n3 + n4 -> n1 + n6 -> n3 + n4 -> n6 + n4 -> n7 + n2 -> n3 + n3 -> n7 + n4 -> n6 + n6 -> n4 +}",output/26.pintora.png +Schedule tasks using a Gantt chart. Include about 9 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 6d +""Task 2"" : 2024-01-16, 3d",output/36.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Action 2; +:Action 3; +:Action 4; +:Process 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/536.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + datetime field_2 + datetime field_3 +} +TABLE_1 { + int id PK + int field_0 + string field_1 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + float field_2 + int field_3 +} +TABLE_0 ||--|| TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : contains",output/526.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1->>P0: msg_30 +P2->P0: msg_73 +P0-->>P2: msg_50 +P1->P3: msg_78 +P3-->>P2: msg_62 +P2-->P0: msg_4 +P3->>P1: msg_54",output/363.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0->>P3: msg_65 +P2-->>P0: msg_51 +P2->>P0: msg_57 +P1-->>P0: msg_52 +P0-->>P4: msg_88 +P0->P4: msg_50 +P3->>P4: msg_93 +P3->P2: msg_76 +P1->P2: msg_2",output/373.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + float field_1 + bool field_2 + int field_3 +} +TABLE_1 { + int id PK + string field_0 + bool field_1 + int field_2 + bool field_3 + datetime field_4 +} +TABLE_2 { + int id PK + string field_0 + float field_1 + string field_2 + int field_3 + float field_4 +} +TABLE_3 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_0 ||--o{ TABLE_1 : owns +TABLE_1 }|--|| TABLE_2 : manages +TABLE_2 }|--|| TABLE_3 : manages",output/650.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +end",output/728.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Action 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +end",output/640.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""diamond"", label=""Node n9""] + n2 -> n3 + n4 -> n9 + n6 -> n7 + n1 -> n9 + n4 -> n0 + n1 -> n6 + n8 -> n0 + n5 -> n0 + n4 -> n7 + n8 -> n5 + n0 -> n1 + n3 -> n2 +}",output/738.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n0 -> n2 + n0 -> n5 + n0 -> n1 + n1 -> n3 + n0 -> n4 + n0 -> n2 + n5 -> n0 + n2 -> n1 +}",output/676.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 + float field_2 + float field_3 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 + datetime field_2 + float field_3 + int field_4 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 +} +TABLE_3 { + int id PK + string field_0 + int field_1 + datetime field_2 + float field_3 +} +TABLE_4 { + int id PK + bool field_0 + int field_1 + datetime field_2 +} +TABLE_5 { + int id PK + int field_0 + string field_1 + datetime field_2 +} +TABLE_6 { + int id PK + bool field_0 + int field_1 +} +TABLE_7 { + int id PK + int field_0 + int field_1 + string field_2 + float field_3 + int field_4 +} +TABLE_0 ||--o{ TABLE_1 : owns +TABLE_1 }|--|| TABLE_2 : owns +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 ||--|| TABLE_4 : manages +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 ||--|{ TABLE_6 : contains +TABLE_6 ||--|{ TABLE_7 : contains",output/666.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + datetime field_1 + int field_2 +} +TABLE_1 { + int id PK + int field_0 + string field_1 +} +TABLE_2 { + int id PK + bool field_0 + bool field_1 + datetime field_2 + bool field_3 +} +TABLE_3 { + int id PK + string field_0 + datetime field_1 + datetime field_2 + float field_3 +} +TABLE_4 { + int id PK + float field_0 + datetime field_1 + bool field_2 +} +TABLE_0 ||--|{ TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : contains +TABLE_3 }|--|| TABLE_4 : owns",output/510.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + bool field_1 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 +} +TABLE_2 { + int id PK + float field_0 + float field_1 + string field_2 +} +TABLE_3 { + int id PK + bool field_0 + string field_1 + datetime field_2 + int field_3 + bool field_4 +} +TABLE_0 ||--|{ TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : manages",output/468.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""ellipse"", label=""Node n10""] + n10 -> n8 + n9 -> n7 + n1 -> n8 + n8 -> n3 + n2 -> n1 + n3 -> n7 + n4 -> n0 + n1 -> n3 + n8 -> n7 + n3 -> n0 +}",output/500.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n5 -> n7 + n5 -> n7 + n4 -> n6 + n0 -> n8 + n2 -> n8 + n6 -> n8 + n0 -> n8 + n7 -> n5 + n3 -> n6 + n8 -> n0 +}",output/478.pintora.png +Create a sequence diagram showing interaction between participants. Include about 12 elements.,"sequenceDiagram +autonumber +P2->P0: msg_46 +P1-->P3: msg_89 +P3-->P0: msg_86 +P3-->>P0: msg_35 +P2-->>P3: msg_55 +P2-->P1: msg_6 +P3-->P0: msg_83 +P0-->>P1: msg_68 +P3->>P2: msg_5 +P0->P3: msg_91 +P0-->P3: msg_53 +P1->>P2: msg_37",output/345.pintora.png +Schedule tasks using a Gantt chart. Include about 12 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 4d +""Task 2"" : 2024-01-12, 9d +""Task 3"" : 2024-01-21, 5d",output/355.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 14 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +** Feature 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1 +*** Subitem 1.2 +**** Detail 1.2.1",output/10.pintora.png +Visualize a graph structure using DOT syntax. Include about 9 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n0 -> n3 + n2 -> n0 + n0 -> n3 + n2 -> n1 + n0 -> n3 + n3 -> n1 + n0 -> n2 + n3 -> n1 + n0 -> n2 +}",output/284.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 --> Class2",output/294.pintora.png +Build a detailed component architecture diagram. Use advanced syntax features.,"componentDiagram +cloud ""GCP"" { + [Comp0_0] + [Comp0_1] +} +cloud ""AWS"" { + [Comp1_0] + [Comp1_1] +} +package ""Services"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] + [Comp2_3] + () I2 +} +database ""Data Store"" { + [Comp3_0] + [Comp3_1] + [Comp3_2] + [Comp3_3] + () I3 +} +[Comp3_1] ..|> [Comp2_0] +[Comp2_2] --> [Comp2_1] +[Comp3_1] -- [Comp0_1] +[Comp2_0] --> [Comp1_0] +[Comp3_1] -- [Comp2_3] +[Comp1_0] -- [Comp0_1] +[Comp3_1] ..|> [Comp1_1] +I3 ..|> [Comp0_1] +I2 ..> [Comp3_3] +[Comp0_1] --> [Comp1_1] +[Comp2_0] -- [Comp2_1] +[Comp2_0] ..> [Comp0_1] +[Comp0_1] -- [Comp2_3] +[Comp2_1] -- [Comp3_1] +[Comp3_2] -- [Comp1_1] +[Comp0_1] ..> I3 +I2 ..> [Comp0_0] +[Comp2_3] ..|> [Comp1_0] +[Comp2_0] ..> [Comp0_1] +[Comp3_3] -- [Comp3_0] +[Comp2_2] ..> [Comp3_3] +[Comp2_0] --> [Comp0_0] +[Comp3_1] --> [Comp0_1] +I2 ..|> [Comp2_0]",output/903.pintora.png +Create a sequence diagram with activate/deactivate lifelines,"sequenceDiagram +participant Browser +participant Server +participant Cache +Browser->>Server: HTTP Request +activate Server +Server->>Cache: Check cache +activate Cache +Cache-->>Server: Cache miss +deactivate Cache +Server->>Server: Generate response +Server-->>Browser: HTTP Response +deactivate Browser",output/913.pintora.png +Write an ER diagram for a library system,"erDiagram +BOOK { + int isbn PK + string title + int year_published + int copies_available +} +AUTHOR { + int author_id PK + string name + string nationality +} +MEMBER { + int member_id PK + string name + date membership_date +} +LOAN { + int loan_id PK + int isbn FK + int member_id FK + date loan_date + date return_date +} +BOOK }|--|| AUTHOR : ""written by"" +MEMBER ||--o{ LOAN : borrows +BOOK ||--o{ LOAN : ""is loaned"" ",output/961.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +:step_11; +end",output/180.pintora.png +Model an object-oriented system with class diagram. Use advanced syntax features.,"classDiagram +class HandlerA { + #string attr0 + #string attr1 + +boolean attr2 + #method0() void +} +class FactoryB { + -string attr0 + #method0() string +} +class ControllerC { + -boolean attr0 + ~int attr1 + #List~T~ attr2 + #method0() boolean + ~{static} method1() boolean + +method2() string +} +class FactoryD { + ~string attr0 + #List~T~ attr1 + +boolean attr2 + +method0() T +} +class RepositoryE { + <> + +int attr0 + +string attr1 + +string attr2 + +method0() boolean +} +HandlerA o-- FactoryD +FactoryB <|.. RepositoryE +ControllerC *-- FactoryD +FactoryD <|-- RepositoryE",output/819.pintora.png +Write a DOT diagram with edge colors and labels,"dotDiagram +@param ranksep 40 +@param edgeType curved +digraph Network { + bgcolor=""white"" + node [bgcolor=""#ffe0b2""] + + client[""Client""] + lb[""Load Balancer""] + server1[""Server 1""] + server2[""Server 2""] + db[""Database""] + + client -> lb [color=""#1976d2"", label=""HTTPS""] + lb -> server1 [color=""#388e3c"", label=""HTTP""] + lb -> server2 [color=""#388e3c"", label=""HTTP""] + server1 -> db [color=""#7b1fa2"", label=""SQL""] + server2 -> db [color=""#7b1fa2"", label=""SQL""] +}",output/971.pintora.png +Write a Pintora diagram: design a comprehensive entity relationship diagram.,"erDiagram +title: School System +@config({""er"": {""edgeType"": ""ortho""}}) +CATEGORY { + int category_id PK + datetime status + bool quantity + int date +} +SHIPMENT { + int shipment_id PK + int name + float quantity + string quantity FK + int status FK + float phone +} +CUSTOMER { + int customer_id PK + int price + text quantity + string date + bool description + text quantity +} +INVENTORY { + int inventory_id PK + float price + float price +} +USER { + int user_id PK + int status + text name + datetime email FK + text description + text price +} +ORDER { + int order_id PK + float quantity + float address + bool email +} +INVOICE { + int invoice_id PK + string quantity + float phone + int description + string status +} +CATEGORY ||--|| SHIPMENT : belongs to +SHIPMENT }|--|| USER : includes +CUSTOMER ||--o{ USER : owns +INVENTORY }o--o{ INVOICE : manages +USER ||--|{ ORDER : processes +ORDER ||--|{ INVOICE : references",output/809.pintora.png +Design an Entity Relationship diagram. Include about 11 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 }|--|| Ent3 : relates +Ent3 }|--|| Ent4 : relates +Ent4 ||--o{ Ent5 : relates",output/190.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 4d +""Task 2"" : 2024-01-10, 6d +""Task 3"" : 2024-01-16, 7d +""Task 4"" : 2024-01-23, 7d +""Task 5"" : 2024-01-30, 6d",output/62.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n0 -> n2 + n3 -> n2 + n1 -> n5 + n4 -> n1 + n5 -> n4 + n4 -> n2 + n1 -> n4 + n3 -> n1 + n0 -> n3 + n1 -> n2 + n5 -> n2 + n3 -> n2 + n2 -> n5 + n2 -> n4 + n1 -> n4 +}",output/72.pintora.png +Create a Gantt chart for Q1 roadmap,"gantt +title Q1 Roadmap +dateFormat YYYY-MM-DD +section Dev +""Feature A"" : 2024-01-01, 30d +""Feature B"" : 2024-02-01, 20d",output/3.pintora.png +Map out a process flow using an activity diagram. Include about 15 elements.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +if (check11?) then (yes) + :action_yes_11; +else (no) + :action_no_11; +endif +if (check12?) then (yes) + :action_yes_12; +else (no) + :action_no_12; +endif +:step_13; +if (check14?) then (yes) + :action_yes_14; +else (no) + :action_no_14; +endif +end",output/327.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 <|-- Class2 +Class2 --> Class3 +Class3 --> Class4",output/337.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + string field_2 + string field_3 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + int field_2 + bool field_3 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 + float field_2 + int field_3 +} +TABLE_3 { + int id PK + datetime field_0 + string field_1 + float field_2 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--|{ TABLE_3 : uses",output/572.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Action 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +end",output/562.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +:Process 3; +:Process 4; +:Action 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +end",output/614.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +participant Service_0 +Service_2-->>Service_1: Message 489 +Service_0-->>Service_1: Message 563 +Service_0->Service_3: Message 934 +Service_2-->Service_1: Message 742 +loop Loop check + Service_2-->>Service_1: Message 436 +end +Service_2-->>Service_1: Message 426 +Service_0-->Service_2: Message 536",output/604.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +:step_7; +:step_8; +:step_9; +:step_10; +:step_11; +if (check12?) then (yes) + :action_yes_12; +else (no) + :action_no_12; +endif +end",output/139.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n7 -> n0 + n0 -> n2 + n2 -> n4 + n1 -> n0 + n3 -> n6 +}",output/129.pintora.png +Illustrate a complex business process with activity diagram.,"activityDiagram +title: Order Fulfillment +start +fork + :Parallel Task A0; +forkagain + :Parallel Task B0; +endfork +switch (Type 1?) +case (A) + :Handle A1; +case (B) + :Handle B1; +endswitch +:Step 2; +:Step 3; +:Step 4; +while (Check 5?) is (yes) + :Process 5; +endwhile (done) +:Step 6; +if (Condition 7?) then (yes) + :Action True 7; +else (no) + :Action False 7; +endif +end",output/844.pintora.png +Model an object-oriented system with class diagram.,"classDiagram +class HandlerA { + <> + -string attr0 + #method0() boolean + #method1() string + -method2() string +} +class ServiceB { + +boolean attr0 + ~boolean attr1 + -boolean attr2 + -string attr3 + -method0() boolean + ~{static} method1() string + #method2() T +} +class ControllerC { + #List~T~ attr0 + ~{static} method0() string + -{static} method1() boolean + ~{static} method2() string +} +class HandlerD { + #int attr0 + +{static} method0() void + +method1() boolean + ~{static} method2() boolean +} +class ControllerE { + -int attr0 + ~method0() void +} +HandlerA <|.. ControllerC +ServiceB o-- ControllerC +ControllerC --> HandlerD +HandlerD <|-- ControllerE",output/854.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n0 -> n1 + n0 -> n4 + n1 -> n5 + n4 -> n2 + n8 -> n1 + n0 -> n3 + n1 -> n0 + n8 -> n6 + n0 -> n4 + n6 -> n3 +}",output/788.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n0 -> n3 + n3 -> n1 + n7 -> n4 + n7 -> n1 + n6 -> n5 + n0 -> n5 + n7 -> n6 + n7 -> n5 + n0 -> n6 +}",output/798.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +autonumber +alt Condition + Service_1-->>Service_0: Message 128 +else Other case + Service_0-->>Service_1: Response +end +alt Condition + Service_1-->>Service_0: Message 184 +else Other case + Service_0-->>Service_1: Response +end +Service_0-xService_1: Message 174 +Service_0->>Service_1: Message 922 +Service_0-->>Service_1: Message 151 +Service_1->>Service_0: Message 564 +Service_0->Service_1: Message 541 +Service_0-->>Service_1: Message 699 +Service_0-xService_1: Message 229 +alt Condition + Service_1->>Service_0: Message 960 +else Other case + Service_0-->>Service_1: Response +end +alt Condition + Service_0->>Service_1: Message 866 +else Other case + Service_1-->>Service_0: Response +end +Service_1->>Service_0: Message 585 +alt Condition + Service_1-->>Service_0: Message 508 +else Other case + Service_0-->>Service_1: Response +end +alt Condition + Service_1->>Service_0: Message 531 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->Service_1: Message 212",output/596.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +autonumber +participant Service_1 +Service_0->Service_1: Message 838 +Service_1->>Service_0: Message 153 +Service_0->>Service_1: Message 743 +Service_0-xService_1: Message 121 +Service_0-->Service_1: Message 404",output/586.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +end",output/86.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n1 -> n4 + n8 -> n9 + n4 -> n7 + n9 -> n5 + n2 -> n8 + n7 -> n9 + n6 -> n2 + n1 -> n2 + n5 -> n1 + n0 -> n9 + n7 -> n8 +}",output/457.pintora.png +Schedule tasks using a Gantt chart. Include about 14 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 7d +""Task 2"" : 2024-01-12, 5d",output/96.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n6 -> n2 + n2 -> n7 + n6 -> n0 + n0 -> n3 + n4 -> n6 + n4 -> n3 + n7 -> n4 + n4 -> n2 +}",output/447.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 <|-- Class2",output/202.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 7d +""Task 2"" : 2024-01-16, 2d",output/212.pintora.png +Create a Gantt chart for agile sprint,"gantt +title Sprint 23 +dateFormat YYYY-MM-DD +axisFormat %a +axisInterval 1d +section User Stories +""US-101: Login feature"" : us101, 2024-05-06, 3d +""US-102: Dashboard"" : us102, after us101, 4d +""US-103: Reports"" : us103, 2024-05-08, 5d +section Tasks +""Code review"" : 2024-05-07, 8d +""Daily standups"" : 2024-05-06, 10d +section Milestones +""Sprint Review"" : milestone, 2024-05-17, 0d",output/985.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +end",output/164.pintora.png +Create an ER diagram with optional attributes,"erDiagram +PERSON { + int id PK + string first_name + string last_name + string middle_name ""optional"" + date birth_date + string phone ""optional"" +} +ADDRESS { + int id PK + int person_id FK + string street + string city + string state + string zip + string country +} +PERSON ||--o{ ADDRESS : ""lives at"" ",output/995.pintora.png +Design an Entity Relationship diagram. Include about 8 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 ||--o{ Ent2 : relates",output/174.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + float field_1 + datetime field_2 + datetime field_3 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + string field_2 + int field_3 +} +TABLE_2 { + int id PK + bool field_0 + int field_1 + int field_2 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 +} +TABLE_4 { + int id PK + int field_0 + string field_1 +} +TABLE_5 { + int id PK + datetime field_0 + float field_1 + datetime field_2 + float field_3 +} +TABLE_6 { + int id PK + string field_0 + string field_1 + int field_2 + string field_3 + int field_4 +} +TABLE_7 { + int id PK + bool field_0 + float field_1 + string field_2 + float field_3 +} +TABLE_0 ||--|{ TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : manages +TABLE_3 ||--|| TABLE_4 : has +TABLE_4 ||--|{ TABLE_5 : manages +TABLE_5 ||--o{ TABLE_6 : uses +TABLE_6 ||--o{ TABLE_7 : has",output/649.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n5 -> n6 + n5 -> n1 + n1 -> n2 + n6 -> n2 + n2 -> n5 + n3 -> n5 + n0 -> n1 +}",output/731.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +Service_1-->>Service_0: Message 330 +Service_0-->Service_1: Message 424 +Service_2-->Service_0: Message 316 +Service_1->Service_2: Message 963 +Service_1-->Service_2: Message 214 +Service_1-xService_0: Message 316",output/659.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +autonumber +participant Service_1 +alt Condition + Service_0->>Service_1: Message 882 +else Other case + Service_1-->>Service_0: Response +end +Service_0->Service_1: Message 622 +loop Loop check + Service_0->Service_1: Message 497 +end +Service_0-->>Service_1: Message 622 +alt Condition + Service_0-->Service_1: Message 506 +else Other case + Service_1-->>Service_0: Response +end +Service_0->Service_1: Message 207 +Service_1-->>Service_0: Message 588 +Service_1-xService_0: Message 973",output/721.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +:Action 3; +:Action 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +end",output/753.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_1-->Service_0: Message 667 +Service_1-->Service_0: Message 622 +Service_1-->>Service_0: Message 306 +@note right of Service_0: Note processing +Service_0->Service_1: Message 516 +Service_1-->Service_0: Message 110 +@note right of Service_1: Note processing +Service_1->>Service_0: Message 552 +loop Loop check + Service_0->>Service_1: Message 955 +end +Service_0->>Service_1: Message 523 +Service_1-->>Service_0: Message 803 +Service_0->Service_1: Message 311",output/743.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +** Task 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +*** Subitem 2.2 +**** Detail 2.2.1",output/106.pintora.png +Model an object-oriented system with a class diagram. Include about 11 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 <|-- Class2 +Class2 --> Class3",output/116.pintora.png +Create a sequence diagram showing interaction between participants. Include about 15 elements.,"sequenceDiagram +autonumber +P0->P1: msg_31 +P1-->>P0: msg_6 +P0-->>P1: msg_19 +P0->P1: msg_42 +P1-->>P0: msg_87 +P1-->>P0: msg_37 +P0-->P1: msg_5 +P1-->>P0: msg_23 +P1->>P0: msg_74 +P0->P1: msg_51 +P1-->P0: msg_88 +P1->P0: msg_53 +P1-->>P0: msg_47 +P0->>P1: msg_7 +P1->P0: msg_31",output/318.pintora.png +Schedule tasks using a Gantt chart. Include about 14 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 10d +""Task 2"" : 2024-01-21, 4d",output/260.pintora.png +Model an object-oriented system with a class diagram. Include about 7 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2 +Class2 <|-- Class3 +Class3 --> Class4 +Class4 --> Class5",output/308.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 <|-- Class2 +Class2 o-- Class3",output/270.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n6 -> n2 + n6 -> n7 + n8 -> n7 + n8 -> n5 + n7 -> n0 + n6 -> n5 + n5 -> n1 + n7 -> n3 + n9 -> n3 + n3 -> n5 + n0 -> n5 + n0 -> n8 +}",output/435.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +:Process 3; +:Action 4; +end",output/425.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n7 -> n5 + n8 -> n5 + n5 -> n1 + n1 -> n7 + n6 -> n5 + n1 -> n5 + n2 -> n8 + n4 -> n2 + n8 -> n7 + n0 -> n3 +}",output/692.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +:Process 6; +:Process 7; +:Process 8; +end",output/682.pintora.png +Map a complex business process with activity diagram. Use advanced syntax features.,"activityDiagram +start +while (Check 0?) is (yes) + :Process 0; +endwhile (done) +@note right: Important step 1 +:Critical action 1; +:Step 2; +:Step 3; +:Step 4; +:Step 5; +fork + :Parallel Task A6; +forkagain + :Parallel Task B6; +endfork +:Step 7; +:Step 8; +:Step 9; +} +end",output/826.pintora.png +Design an advanced sequence diagram with complex interactions.,"sequenceDiagram +autonumber +participant [ ServiceB] +par Parallel processing + ServiceB->ServiceA: Task A +and + ServiceB->ServiceB: Task B +end +ServiceC-->ServiceB: Process event +@note right of ServiceC: Processing +ServiceC-->ServiceB: Update 2 +ServiceA->ServiceC: Query 3 +par Parallel processing + ServiceC->ServiceA: Task A +and + ServiceC->ServiceB: Task B +end +ServiceA-->ServiceB: Update 5 +loop Batch process + ServiceB->ServiceC: Validate + ServiceC-->>ServiceB: Response +end +ServiceB->ServiceA: Process event +par Parallel processing + ServiceC-->ServiceA: Task A +and + ServiceC-->ServiceB: Task B +end +activate ServiceB +ServiceA->ServiceB: Request 9 +deactivate ServiceB",output/836.pintora.png +Schedule tasks using a Gantt chart. Include about 7 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 10d +""Task 2"" : 2024-01-19, 10d",output/295.pintora.png +Design an Entity Relationship diagram. Include about 5 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates",output/285.pintora.png +Map out a process flow using an activity diagram. Include about 7 elements.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +:step_6; +end",output/11.pintora.png +Write a sequence diagram showing parallel processing with fork,"sequenceDiagram +title: Parallel Data Processing +participant Controller +participant Worker1 +participant Worker2 +participant Aggregator +Controller->>Worker1: Process batch 1 +Controller->>Worker2: Process batch 2 +par #aaddff Parallel processing + Worker1->>Worker1: Compute + Worker1-->>Aggregator: Results 1 +and + Worker2->>Worker2: Compute + Worker2-->>Aggregator: Results 2 +end +Aggregator-->>Controller: Combined results",output/912.pintora.png +Visualize a complex graph with DOT diagram. Use advanced syntax features.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""plaintext"", bgcolor=""#e3f2fd""] + subgraph cluster_0 { + label=""Group A"" + a0 [label=""Node a0""] + a1 [label=""Node a1""] + } + subgraph cluster_1 { + label=""Group B"" + b0 [label=""Node b0""] + b1 [label=""Node b1""] + } + b0 -- a1 + a0 -- b1 + a0 -- b1 + b1 -- b0 + a1 -- b1 +}",output/902.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + datetime field_2 + string field_3 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 +} +TABLE_2 { + int id PK + int field_0 + bool field_1 + datetime field_2 + int field_3 +} +TABLE_3 { + int id PK + int field_0 + datetime field_1 +} +TABLE_4 { + int id PK + int field_0 + datetime field_1 + string field_2 + string field_3 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : contains +TABLE_4 ||--|{ TABLE_5 : uses",output/667.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n0 -> n5 + n0 -> n2 + n1 -> n0 + n0 -> n4 + n3 -> n5 + n1 -> n7 + n6 -> n3 + n5 -> n1 + n8 -> n0 + n3 -> n8 + n5 -> n7 +}",output/677.pintora.png +Create a sequence diagram showing interaction between participants. Include about 15 elements.,"sequenceDiagram +autonumber +P4-->>P2: msg_60 +P3-->>P1: msg_33 +P0->P1: msg_43 +P3-->>P2: msg_10 +P2-->>P0: msg_97 +P0->P2: msg_79 +P1->P2: msg_73 +P3->P4: msg_87 +P3-->>P1: msg_77 +P0->>P2: msg_25 +P0->P3: msg_21 +P4-->P3: msg_29 +P2->>P1: msg_24 +P3-->>P2: msg_68 +P0->P1: msg_17",output/354.pintora.png +Create a sequence diagram showing interaction between participants. Include about 12 elements.,"sequenceDiagram +autonumber +P1->P0: msg_42 +P2-->>P1: msg_59 +P2-->P0: msg_14 +P1-->>P3: msg_1 +P2->P4: msg_23 +P4-->P1: msg_28 +P2-->P3: msg_94 +P4->>P1: msg_42 +P4-->>P1: msg_11 +P0->>P4: msg_39 +P0->>P2: msg_24 +P0-->P1: msg_97",output/344.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + bool field_1 + datetime field_2 + bool field_3 + string field_4 +} +TABLE_1 { + int id PK + int field_0 + bool field_1 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 +} +TABLE_3 { + int id PK + int field_0 + int field_1 + int field_2 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : has +TABLE_2 }|--|| TABLE_3 : manages",output/479.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +autonumber +participant Service_0 +alt Condition + Service_0->>Service_1: Message 101 +else Other case + Service_1-->>Service_0: Response +end +Service_0-xService_1: Message 189 +Service_1->>Service_0: Message 901 +loop Loop check + Service_0-->Service_1: Message 516 +end +loop Loop check + Service_0->Service_1: Message 378 +end",output/501.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + datetime field_1 + float field_2 +} +TABLE_1 { + int id PK + float field_0 + string field_1 + string field_2 + string field_3 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + datetime field_2 +} +TABLE_3 { + int id PK + bool field_0 + int field_1 +} +TABLE_4 { + int id PK + int field_0 + float field_1 + bool field_2 + datetime field_3 +} +TABLE_5 { + int id PK + string field_0 + string field_1 +} +TABLE_6 { + int id PK + string field_0 + string field_1 + float field_2 + int field_3 + float field_4 +} +TABLE_0 ||--|{ TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : owns +TABLE_2 ||--|{ TABLE_3 : uses +TABLE_3 ||--|| TABLE_4 : contains +TABLE_4 ||--|{ TABLE_5 : owns +TABLE_5 }|--|| TABLE_6 : has",output/469.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +:Process 4; +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +fork + :Parallel 1 7; +forkagain + :Parallel 2 7; +endfork +end",output/511.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_0-xService_1: Message 911 +Service_1-->>Service_0: Message 112 +@note right of Service_0: Note processing +Service_0-->>Service_1: Message 879 +loop Loop check + Service_1->>Service_0: Message 608 +end +Service_1->Service_0: Message 685 +Service_0-->>Service_1: Message 156 +Service_1->>Service_0: Message 873 +Service_1-->Service_0: Message 192 +Service_0-->>Service_1: Message 263 +Service_0->>Service_1: Message 228 +Service_0-xService_1: Message 903 +Service_0->>Service_1: Message 834 +loop Loop check + Service_0-->Service_1: Message 478 +end +Service_0->>Service_1: Message 181 +Service_0->>Service_1: Message 235",output/563.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + string field_1 + string field_2 + bool field_3 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 + bool field_2 +} +TABLE_2 { + int id PK + bool field_0 + datetime field_1 + string field_2 + bool field_3 +} +TABLE_3 { + int id PK + datetime field_0 + bool field_1 + bool field_2 + float field_3 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : uses",output/573.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 5d +""Task 2"" : 2024-01-10, 2d +""Task 3"" : 2024-01-12, 7d",output/336.pintora.png +Model an object-oriented system with a class diagram. Include about 10 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 *-- Class3 +Class3 *-- Class4",output/326.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 9d +""Task 2"" : 2024-01-18, 7d +""Task 3"" : 2024-01-25, 10d +""Task 4"" : 2024-02-04, 3d",output/128.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +end",output/138.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n1 -> n5 + n2 -> n3 + n5 -> n2 + n1 -> n2 + n4 -> n2 + n3 -> n4 + n0 -> n1 +}",output/605.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + datetime field_1 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + int field_2 + float field_3 + string field_4 +} +TABLE_2 { + int id PK + int field_0 + int field_1 + string field_2 + string field_3 +} +TABLE_3 { + int id PK + string field_0 + float field_1 + string field_2 + bool field_3 + int field_4 +} +TABLE_4 { + int id PK + float field_0 + string field_1 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 +} +TABLE_6 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 +} +TABLE_7 { + int id PK + string field_0 + float field_1 + string field_2 + float field_3 +} +TABLE_0 ||--|{ TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : uses +TABLE_3 ||--|{ TABLE_4 : contains +TABLE_4 ||--o{ TABLE_5 : manages +TABLE_5 }|--|| TABLE_6 : uses +TABLE_6 ||--|| TABLE_7 : manages",output/615.pintora.png +Create a detailed hierarchical mind map. Use advanced syntax features.,"mindmap +* System Architecture +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +*** Subtopic A.2 +**** Detail A.2.1 +**** Detail A.2.2 +**** Detail A.2.3 +*** Subtopic A.3 +*** Subtopic A.4 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +*** Subtopic B.3 +**** Detail B.3.1 +*** Subtopic B.4 +**** Detail B.4.1 +**** Detail B.4.2 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +**** Detail C.2.1 +*** Subtopic C.3 +**** Detail C.3.1 +**** Detail C.3.2 +*** Subtopic C.4 +**** Detail C.4.1 +**** Detail C.4.2 +**** Detail C.4.3 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2 +*** Subtopic D.3 +**** Detail D.3.1 +**** Detail D.3.2 +**** Detail D.3.3 +*** Subtopic D.4 +** Topic E +*** Subtopic E.1 +**** Detail E.1.1 +**** Detail E.1.2 +**** Detail E.1.3 +*** Subtopic E.2 +*** Subtopic E.3 +**** Detail E.3.1 +*** Subtopic E.4 +**** Detail E.4.1",output/808.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 }|--|| Ent3 : relates +Ent3 ||--o{ Ent4 : relates +Ent4 ||--|| Ent5 : relates",output/191.pintora.png +Create a DOT diagram for a state machine,"dotDiagram +digraph StateMachine { + bgcolor=""#fefefe"" + node [bgcolor=""#e1f5fe""] + + idle [shape=""ellipse"", label=""Idle""] + running [shape=""box"", label=""Running""] + paused [shape=""box"", label=""Paused""] + stopped [shape=""ellipse"", label=""Stopped""] + + idle -> running [label=""start""] + running -> paused [label=""pause""] + paused -> running [label=""resume""] + running -> stopped [label=""stop""] + paused -> stopped [label=""stop""] + stopped -> idle [label=""reset""] +}",output/970.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2",output/181.pintora.png +Build a detailed component architecture diagram. Use advanced syntax features.,"componentDiagram +title: Microservices +package ""Backend"" { + [Comp0_0] + [Comp0_1] + () I0 +} +database ""Data Store"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + [Comp1_3] +} +node ""Container Group"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] +} +I0 ..> [Comp1_1] +[Comp1_1] ..> [Comp1_2] +[Comp2_2] ..> [Comp2_1] +[Comp1_3] ..> [Comp1_2] +I0 --> [Comp0_1] +[Comp1_1] -- [Comp1_3] +[Comp0_0] --> [Comp2_1] +[Comp0_1] --> I0 +[Comp0_1] ..> [Comp1_2] +[Comp1_2] --> [Comp2_1] +[Comp1_0] -- [Comp2_2] +[Comp1_0] ..|> [Comp1_3] +[Comp1_1] -- [Comp0_0]",output/818.pintora.png +Create an ER diagram for a school management system,"erDiagram +STUDENT { + int student_id PK + string name + date birth_date + string email +} +TEACHER { + int teacher_id PK + string name + string department +} +COURSE { + int course_id PK + string name + int credits + int teacher_id FK +} +ENROLLMENT { + int student_id PK + int course_id PK + string grade + date enrolled_date +} +STUDENT ||--o{ ENROLLMENT : enrolls +COURSE ||--o{ ENROLLMENT : has +TEACHER ||--o{ COURSE : teaches",output/960.pintora.png +Draw a mindmap for project planning,"mindmap +* Project +** Phase 1 +*** Design +*** Proto +** Phase 2 +*** Dev +*** Test",output/2.pintora.png +Design an Entity Relationship diagram. Include about 9 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 }|--|| Ent3 : relates +Ent3 }|--|| Ent4 : relates",output/73.pintora.png +Map out a process flow using an activity diagram. Include about 13 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +:step_10; +:step_11; +:step_12; +end",output/63.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +*** Subitem 1.2",output/213.pintora.png +Visualize a graph structure using DOT syntax. Include about 11 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n2 -> n1 + n0 -> n5 + n1 -> n2 + n2 -> n0 + n2 -> n1 + n6 -> n2 + n6 -> n5 + n1 -> n2 + n2 -> n4 + n0 -> n4 + n6 -> n4 +}",output/203.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + float field_2 + bool field_3 +} +TABLE_1 { + int id PK + string field_0 + float field_1 + bool field_2 + datetime field_3 + int field_4 +} +TABLE_2 { + int id PK + bool field_0 + datetime field_1 + bool field_2 + string field_3 + string field_4 +} +TABLE_3 { + int id PK + bool field_0 + datetime field_1 + int field_2 + string field_3 +} +TABLE_4 { + int id PK + datetime field_0 + string field_1 + int field_2 + float field_3 + int field_4 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 ||--o{ TABLE_3 : has +TABLE_3 ||--o{ TABLE_4 : uses",output/446.pintora.png +Draft a component diagram for system architecture. Include about 12 elements.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] + [Comp4] + [Comp5] + [Comp6] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5] +[Comp5] --> [Comp6]",output/97.pintora.png +Write a component diagram showing a system with 6 components distributed across packages.,"componentDiagram +package ""System A"" { + [Comp0] + [Comp1] + [Comp2] +} +package ""System B"" { + [Comp3] + [Comp4] + [Comp5] +} +() HTTP +() DB_Conn +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5] +[Comp0] --> HTTP +[Comp5] --> DB_Conn",output/456.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 8 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +** Task 1 +*** Subitem 1.0",output/87.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n2 -> n0 + n0 -> n3 + n4 -> n1 + n4 -> n0 + n4 -> n0 +}",output/720.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + string field_1 +} +TABLE_1 { + int id PK + float field_0 + datetime field_1 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 + string field_2 +} +TABLE_0 ||--|| TABLE_1 : has +TABLE_1 ||--|{ TABLE_2 : manages",output/658.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + datetime field_1 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 + float field_2 + float field_3 + bool field_4 +} +TABLE_3 { + int id PK + string field_0 + bool field_1 + float field_2 + datetime field_3 + string field_4 +} +TABLE_4 { + int id PK + string field_0 + datetime field_1 + bool field_2 + int field_3 + bool field_4 +} +TABLE_5 { + int id PK + int field_0 + bool field_1 + datetime field_2 + int field_3 +} +TABLE_0 ||--|{ TABLE_1 : contains +TABLE_1 ||--|| TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : owns +TABLE_3 }|--|| TABLE_4 : owns +TABLE_4 ||--|{ TABLE_5 : has",output/730.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 +} +TABLE_1 { + int id PK + bool field_0 + bool field_1 +} +TABLE_2 { + int id PK + datetime field_0 + int field_1 +} +TABLE_3 { + int id PK + datetime field_0 + string field_1 + int field_2 + datetime field_3 + bool field_4 +} +TABLE_0 ||--|{ TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : contains",output/648.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 14 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1",output/175.pintora.png +Write a DOT diagram for module dependencies,"dotDiagram +@param edgeType curved +digraph Modules { + bgcolor=""#f5f5f5"" + node [bgcolor=""#c8e6c9""] + + subgraph core { + label=""Core"" + utils[""utils""] + config[""config""] + logger[""logger""] + } + + subgraph services { + label=""Services"" + auth[""auth""] + api[""api""] + db[""database""] + } + + auth -> utils + auth -> config + api -> auth + api -> logger + db -> config + db -> logger +}",output/994.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1",output/165.pintora.png +Write a mind map for API design,"mindmap +* REST API Design +** HTTP Methods +*** GET +*** POST +*** PUT +*** DELETE +*** PATCH +** Status Codes +*** 2xx Success +*** 4xx Client Error +*** 5xx Server Error +** Best Practices +*** Versioning +*** Pagination +*** Rate Limiting +*** HATEOAS +** Security +*** Authentication +*** Authorization +*** Input Validation",output/984.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""circle"", label=""Node n10""] + n2 -> n6 + n1 -> n3 + n3 -> n7 + n10 -> n8 + n7 -> n2 + n3 -> n6 + n4 -> n0 + n1 -> n6 + n9 -> n1 + n9 -> n2 +}",output/799.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +end",output/789.pintora.png +Schedule a project timeline with Gantt chart.,"gantt +title Software Release +dateFormat YYYY-MM-DD +axisFormat %b %d +section Marketing +""Task Mar1"" : 2024-01-01, 15d +""Task Mar2"" : 2024-01-16, 7d +section Testing +""Task Tes1"" : 2024-01-23, 10d +""Task Tes2"" : 2024-02-02, 6d +""Milestone"" : milestone, 2024-02-08, 0d +section Operations +""Task Ope1"" : 2024-02-08, 5d +""Task Ope2"" : 2024-02-13, 9d +""Task Ope3"" : 2024-02-22, 10d",output/855.pintora.png +Model an object-oriented system with class diagram.,"classDiagram +title: Singleton Pattern +class RepositoryA { + +List~T~ attr0 + -method0() T +} +class ControllerB { + <> + #string attr0 + ~boolean attr1 + ~List~T~ attr2 + +List~T~ attr3 + #method0() boolean + +method1() void + -{static} method2() void +} +class ManagerC { + +string attr0 + ~method0() string + +method1() T + ~method2() void +} +class StrategyD { + -int attr0 + -List~T~ attr1 + +boolean attr2 + ~{static} method0() boolean + -method1() void +} +class ControllerE { + <> + ~string attr0 + -boolean attr1 + -method0() void + -method1() T +} +RepositoryA --> StrategyD +ControllerB --> StrategyD +ManagerC <|.. StrategyD +StrategyD <|.. ControllerE",output/845.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + string field_1 + datetime field_2 + int field_3 + bool field_4 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + int field_2 +} +TABLE_2 { + int id PK + string field_0 + bool field_1 + float field_2 +} +TABLE_3 { + int id PK + bool field_0 + int field_1 + float field_2 + datetime field_3 + int field_4 +} +TABLE_4 { + int id PK + int field_0 + float field_1 + int field_2 + datetime field_3 + datetime field_4 +} +TABLE_5 { + int id PK + string field_0 + int field_1 + datetime field_2 + datetime field_3 +} +TABLE_6 { + int id PK + datetime field_0 + datetime field_1 + int field_2 +} +TABLE_7 { + int id PK + datetime field_0 + datetime field_1 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : uses +TABLE_3 ||--|{ TABLE_4 : manages +TABLE_4 ||--|{ TABLE_5 : uses +TABLE_5 }|--|| TABLE_6 : has +TABLE_6 ||--o{ TABLE_7 : uses",output/587.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +:Process 4; +end",output/597.pintora.png +Build a detailed component architecture diagram.,"componentDiagram +title: Microservices +cloud ""Azure"" { + [Comp0_0] + [Comp0_1] +} +node ""Server Farm"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + () I1 +} +node ""Container Group"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] + [Comp2_3] +} +[Comp2_0] -- [Comp1_0] +I1 -- [Comp2_3] +[Comp2_0] ..> [Comp1_2] +[Comp1_1] ..> [Comp2_0] +[Comp0_0] ..|> I1 +[Comp2_1] ..> [Comp2_3] +[Comp0_0] ..> I1 +[Comp0_1] -- [Comp1_2] +[Comp2_2] ..|> [Comp0_1] +[Comp2_3] --> [Comp2_2] +[Comp0_1] ..|> [Comp2_1] +[Comp2_2] ..|> [Comp2_0] +[Comp1_2] ..> [Comp1_0] +[Comp1_0] -- [Comp2_0] +[Comp2_0] -- [Comp1_1]",output/837.pintora.png +Schedule a project timeline with Gantt chart.,"gantt +title Software Release +dateFormat YYYY-MM-DD +axisFormat %b %d +section Deployment +""Task Dep1"" : 2024-03-01, 4d +""Task Dep2"" : 2024-03-05, 20d +""Task Dep3"" : 2024-03-25, 17d +""Task Dep4"" : 2024-04-11, 8d +section Testing +""Task Tes1"" : 2024-04-19, 3d +""Task Tes2"" : 2024-04-22, 5d",output/827.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +end",output/683.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +Service_1-->>Service_0: Message 196 +loop Loop check + Service_1-xService_0: Message 973 +end +Service_0->>Service_1: Message 694 +Service_1->>Service_0: Message 574 +Service_1->>Service_0: Message 728 +Service_0-xService_1: Message 125 +Service_0->>Service_1: Message 677 +Service_1-->Service_0: Message 338 +alt Condition + Service_0-->>Service_1: Message 825 +else Other case + Service_1-->>Service_0: Response +end +Service_0->Service_1: Message 123 +Service_1-xService_0: Message 204 +@note right of Service_1: Note processing +Service_1-->>Service_0: Message 725 +Service_1->Service_0: Message 577 +alt Condition + Service_0-->>Service_1: Message 741 +else Other case + Service_1-->>Service_0: Response +end",output/693.pintora.png +Model an object-oriented system with a class diagram. Include about 11 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 <|-- Class3 +Class3 *-- Class4",output/117.pintora.png +Map out a process flow using an activity diagram. Include about 12 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +:step_9; +:step_10; +if (check11?) then (yes) + :action_yes_11; +else (no) + :action_no_11; +endif +end",output/107.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +Service_3->Service_1: Message 341 +Service_1->>Service_2: Message 982 +Service_1->>Service_3: Message 281 +Service_3-xService_0: Message 711 +Service_2->>Service_3: Message 410",output/742.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Action 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +end",output/752.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Process 4; +:Process 5; +:Process 6; +end",output/424.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + datetime field_1 + string field_2 + datetime field_3 +} +TABLE_1 { + int id PK + datetime field_0 + bool field_1 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 +} +TABLE_3 { + int id PK + bool field_0 + float field_1 + datetime field_2 + string field_3 +} +TABLE_0 }|--|| TABLE_1 : has +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--|{ TABLE_3 : manages",output/434.pintora.png +Map out a process flow using an activity diagram. Include about 5 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +end",output/271.pintora.png +Design an Entity Relationship diagram. Include about 7 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--o{ Ent2 : relates +Ent2 ||--|{ Ent3 : relates",output/309.pintora.png +Schedule tasks using a Gantt chart. Include about 6 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 10d +""Task 2"" : 2024-01-14, 2d +""Task 3"" : 2024-01-16, 9d +""Task 4"" : 2024-01-25, 5d +""Task 5"" : 2024-01-30, 2d",output/261.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 *-- Class2 +Class2 --> Class3 +Class3 <|-- Class4 +Class4 <|-- Class5",output/319.pintora.png +Model an object-oriented system with a class diagram. Include about 10 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 --> Class2 +Class2 o-- Class3 +Class3 *-- Class4 +Class4 *-- Class5",output/402.pintora.png +Write a component diagram showing a system with 4 components distributed across packages.,"componentDiagram +package ""System A"" { + [Comp0] + [Comp1] +} +package ""System B"" { + [Comp2] + [Comp3] +} +() HTTP +() DB_Conn +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp0] --> HTTP +[Comp3] --> DB_Conn",output/412.pintora.png +Design an Entity Relationship diagram. Include about 15 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates",output/257.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +** Feature 3 +*** Subitem 3.0 +**** Detail 3.0.1 +*** Subitem 3.1 +**** Detail 3.1.1",output/247.pintora.png +Schedule tasks using a Gantt chart. Include about 12 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 6d +""Task 2"" : 2024-01-15, 2d",output/131.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 <|-- Class2",output/121.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +Service_0->>Service_1: Message 387 +Service_1-->>Service_0: Message 490 +@note right of Service_1: Note processing +Service_1-->>Service_0: Message 219 +alt Condition + Service_1-->Service_0: Message 495 +else Other case + Service_0-->>Service_1: Response +end +@note right of Service_0: Note processing +Service_0-->>Service_1: Message 733 +alt Condition + Service_0->>Service_1: Message 199 +else Other case + Service_1-->>Service_0: Response +end +Service_0-->Service_1: Message 410 +Service_0->>Service_1: Message 487 +Service_1->Service_0: Message 678 +Service_1-->Service_0: Message 671 +Service_1-->>Service_0: Message 991 +alt Condition + Service_0-->>Service_1: Message 130 +else Other case + Service_1-->>Service_0: Response +end",output/764.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_4 +Service_2-xService_3: Message 309 +Service_2->>Service_3: Message 209 +alt Condition + Service_3->>Service_2: Message 343 +else Other case + Service_2-->>Service_3: Response +end +@note right of Service_0: Note processing +Service_0->Service_2: Message 507 +Service_2->Service_3: Message 854 +Service_0-->>Service_3: Message 538 +Service_4-->>Service_2: Message 181 +Service_4-->Service_1: Message 522 +Service_1-->>Service_4: Message 806 +Service_0-->Service_1: Message 211 +Service_1->Service_2: Message 225 +Service_4-xService_0: Message 928",output/774.pintora.png +Model an object-oriented system with a class diagram. Include about 8 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 o-- Class2 +Class2 o-- Class3 +Class3 <|-- Class4",output/188.pintora.png +Schedule a project timeline with Gantt chart.,"gantt +title Infrastructure Upgrade +dateFormat YYYY-MM-DD +section Testing +""Task Tes1"" : 2024-03-01, 7d +""Task Tes2"" : 2024-03-08, 3d +section Deployment +""Task Dep1"" : 2024-03-11, 5d +""Task Dep2"" : 2024-03-16, 10d +""Milestone"" : milestone, 2024-04-02, 0d",output/811.pintora.png +Write a Gantt chart for daily schedule,"gantt +title Daily Schedule +dateFormat HH:mm +axisFormat %H:%M +axisInterval 1h +section Morning +""Wake up & Exercise"" : 06:00, 1h +""Breakfast"" : 07:00, 30m +""Commute"" : 07:30, 45m +section Work +""Morning meetings"" : 08:30, 2h +""Deep work"" : 10:30, 3h +""Lunch"" : 13:30, 1h +section Afternoon +""Collaborative work"" : 14:30, 3h +""Wrap up"" : 17:30, 30m +""Commute home"" : 18:00, 45m",output/969.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +participant Service_0 +participant Service_4 +Service_4->Service_2: Message 381 +Service_1-->>Service_0: Message 665 +alt Condition + Service_1->>Service_3: Message 443 +else Other case + Service_3-->>Service_1: Response +end +Service_2-xService_3: Message 363 +Service_1-->>Service_0: Message 819 +Service_1->Service_0: Message 820 +Service_3->>Service_0: Message 722 +Service_1->>Service_4: Message 294 +Service_0-xService_4: Message 594 +Service_1->Service_3: Message 427 +Service_0->>Service_4: Message 994",output/801.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +:step_10; +:step_11; +end",output/198.pintora.png +Create a sequence diagram for database transaction,"sequenceDiagram +title: Database Transaction +participant App +participant Connection +participant [ DB] +App->>Connection: Begin transaction +activate Connection +Connection->>DB: START TRANSACTION +App->>Connection: Execute query 1 +Connection->>DB: INSERT INTO orders +App->>Connection: Execute query 2 +Connection->>DB: UPDATE inventory +alt All successful + App->>Connection: Commit + Connection->>DB: COMMIT +else Error occurred + App->>Connection: Rollback + Connection->>DB: ROLLBACK +end +deactivate Connection",output/979.pintora.png +Create a class diagram for singleton pattern,"classDiagram +class Singleton { + {static} -instance Singleton + -data + -Singleton() + {static} +getInstance() Singleton + +getData() + +setData(data) +} +@note ""Private constructor prevents direct instantiation.\ngetInstance() creates instance if null."" +class Client { + +doSomething() +} +Client --> Singleton : uses",output/1003.pintora.png +Map out a process flow using an activity diagram. Include about 8 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +end",output/396.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 <|-- Class2 +Class2 *-- Class3",output/386.pintora.png +Map out a process flow using an activity diagram. Include about 15 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +:step_11; +:step_12; +:step_13; +if (check14?) then (yes) + :action_yes_14; +else (no) + :action_no_14; +endif +end",output/18.pintora.png +Write a Pintora diagram: schedule a project timeline with gantt chart.,"gantt +title Marketing Campaign +dateFormat YYYY-MM-DD +axisFormat %b %d +section Deployment +""Task Dep1"" : 2024-02-01, 18d +""Task Dep2"" : 2024-02-19, 13d +""Task Dep3"" : 2024-03-03, 3d +""Task Dep4"" : 2024-03-06, 11d +""Task Dep5"" : 2024-03-17, 16d +section Operations +""Task Ope1"" : 2024-04-02, 5d +""Task Ope2"" : 2024-04-07, 5d +""Task Ope3"" : 2024-04-12, 19d +""Milestone"" : milestone, 2024-05-04, 0d",output/873.pintora.png +Illustrate a complex business process with activity diagram.,"activityDiagram +start +fork + :Parallel Task A0; +forkagain + :Parallel Task B0; +endfork +if (Condition 1?) then (yes) + :Action True 1; +else (no) + :Action False 1; +endif +if (Condition 2?) then (yes) + :Action True 2; +else (no) + :Action False 2; +endif +fork + :Parallel Task A3; +forkagain + :Parallel Task B3; +endfork +switch (Type 4?) +case (A) + :Handle A4; +case (B) + :Handle B4; +endswitch +fork + :Parallel Task A5; +forkagain + :Parallel Task B5; +endfork +switch (Type 6?) +case (A) + :Handle A6; +case (B) + :Handle B6; +endswitch +@note right: Important step 7 +:Critical action 7; +:Step 8; +@note right: Important step 9 +:Critical action 9; +end",output/863.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +:Process 5; +:Process 6; +end",output/706.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + int field_1 + string field_2 + datetime field_3 +} +TABLE_1 { + int id PK + datetime field_0 + int field_1 + float field_2 + string field_3 + datetime field_4 +} +TABLE_2 { + int id PK + float field_0 + bool field_1 + int field_2 + datetime field_3 +} +TABLE_3 { + int id PK + float field_0 + datetime field_1 + string field_2 + float field_3 + datetime field_4 +} +TABLE_4 { + int id PK + string field_0 + int field_1 + bool field_2 +} +TABLE_5 { + int id PK + float field_0 + string field_1 +} +TABLE_6 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_0 ||--|{ TABLE_1 : has +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : manages +TABLE_4 ||--o{ TABLE_5 : contains +TABLE_5 }|--|| TABLE_6 : manages",output/716.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 15 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Feature 1 +*** Subitem 1.0 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1",output/153.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n6 -> n4 + n5 -> n1 + n5 -> n6 + n4 -> n0 + n5 -> n1 + n2 -> n6 + n3 -> n1 +}",output/143.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 10d +""Task 2"" : 2024-01-17, 9d",output/235.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n1 -> n0 + n1 -> n2 + n6 -> n2 + n5 -> n1 + n4 -> n6 + n4 -> n3 + n0 -> n1 + n0 -> n2 + n3 -> n1 + n0 -> n4 + n5 -> n0 + n6 -> n2 + n6 -> n2 + n6 -> n0 + n4 -> n1 +}",output/225.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""ellipse"", label=""Node n10""] + n11 [shape=""circle"", label=""Node n11""] + n7 -> n3 + n7 -> n5 + n10 -> n11 + n4 -> n1 + n9 -> n10 + n7 -> n1 + n9 -> n4 + n8 -> n1 + n10 -> n3 + n11 -> n7 + n4 -> n3 + n1 -> n0 + n0 -> n4 + n7 -> n9 +}",output/460.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 + bool field_2 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + string field_2 + int field_3 + bool field_4 +} +TABLE_2 { + int id PK + string field_0 + string field_1 + bool field_2 +} +TABLE_3 { + int id PK + bool field_0 + int field_1 + bool field_2 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + float field_2 +} +TABLE_5 { + int id PK + datetime field_0 + string field_1 + datetime field_2 + string field_3 + datetime field_4 +} +TABLE_6 { + int id PK + float field_0 + datetime field_1 + int field_2 + datetime field_3 +} +TABLE_0 ||--o{ TABLE_1 : manages +TABLE_1 }|--|| TABLE_2 : manages +TABLE_2 ||--|{ TABLE_3 : uses +TABLE_3 ||--|| TABLE_4 : owns +TABLE_4 ||--o{ TABLE_5 : manages +TABLE_5 }|--|| TABLE_6 : uses",output/518.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +end",output/470.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +:Process 0; +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +:Action 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Process 7; +end",output/508.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + datetime field_1 + int field_2 + string field_3 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + bool field_2 +} +TABLE_2 { + int id PK + int field_0 + bool field_1 + string field_2 +} +TABLE_3 { + int id PK + string field_0 + string field_1 +} +TABLE_4 { + int id PK + float field_0 + float field_1 + string field_2 +} +TABLE_5 { + int id PK + float field_0 + int field_1 +} +TABLE_6 { + int id PK + datetime field_0 + int field_1 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : manages +TABLE_2 ||--|| TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : manages +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 ||--o{ TABLE_6 : uses",output/484.pintora.png +Map out a process flow using an activity diagram. Include about 7 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +end",output/55.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_3 +Service_0-->>Service_1: Message 591 +loop Loop check + Service_1-xService_3: Message 597 +end +@note right of Service_3: Note processing +Service_3-xService_2: Message 593 +loop Loop check + Service_4-xService_1: Message 244 +end +Service_2->>Service_1: Message 251 +Service_0->Service_4: Message 675 +Service_1->Service_4: Message 414 +alt Condition + Service_2-xService_1: Message 469 +else Other case + Service_1-->>Service_2: Response +end +Service_3->Service_4: Message 744 +loop Loop check + Service_0-->>Service_4: Message 761 +end",output/494.pintora.png +Draft a component diagram for system architecture.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2]",output/45.pintora.png +Create a diagram demonstrating different comment styles,"dotDiagram +%% This is a pintora-style line comment +digraph G { + // This is a C-style line comment + bgcolor=""white"" + + /* This is a + multi-line comment */ + + a -> b %% inline comment +}",output/956.pintora.png +Create a class diagram for a simple OOP hierarchy,"classDiagram +title: Animal Hierarchy +class Animal { + <> + +string name + +int age + +makeSound() + +move() +} +class Dog { + +string breed + +bark() + +fetch() +} +class Cat { + +boolean isIndoor + +meow() + +scratch() +} +Animal <|-- Dog +Animal <|-- Cat",output/946.pintora.png +Model an object-oriented system with class diagram. Include nested structures.,"classDiagram +class ManagerA { + #string attr0 + #method0() T + +{static} method1() boolean +} +class HandlerB { + <> + #boolean attr0 + ~string attr1 + -method0() string +} +class ServiceC { + <> + +List~T~ attr0 + -string attr1 + #List~T~ attr2 + ~List~T~ attr3 + ~{static} method0() void + ~{static} method1() T + #method2() T +} +class ManagerD { + <> + #List~T~ attr0 + ~method0() T + -method1() string + -method2() string +} +class RepositoryE { + ~string attr0 + #List~T~ attr1 + -List~T~ attr2 + +method0() boolean +} +ManagerA <|.. ServiceC +HandlerB o-- ManagerD +ServiceC ..> ManagerD +ManagerD <|-- RepositoryE",output/897.pintora.png +Design a detailed hierarchical mind map.,"mindmap +@param layoutDirection RL +* Technology Stack +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +**** Detail A.1.2 +*** Subtopic A.2 +*** Subtopic A.3 +**** Detail A.3.1 +**** Detail A.3.2 +**** Detail A.3.3 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +**** Detail B.2.1 +**** Detail B.2.2 +**** Detail B.2.3 +*** Subtopic B.3 +*** Subtopic B.4 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +**** Detail C.2.1 +**** Detail C.2.2 +*** Subtopic C.3 +**** Detail C.3.1 +**** Detail C.3.2 +**** Detail C.3.3",output/887.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n11 [shape=""box"", label=""Node n11""] + n7 -> n2 + n11 -> n10 + n3 -> n4 + n1 -> n8 + n8 -> n6 + n8 -> n1 + n6 -> n8 + n2 -> n11 + n6 -> n0 + n3 -> n6 + n2 -> n6 + n8 -> n10 + n11 -> n3 +}",output/623.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 + string field_2 + string field_3 +} +TABLE_1 { + int id PK + float field_0 + datetime field_1 + int field_2 + float field_3 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 + int field_2 + datetime field_3 + datetime field_4 +} +TABLE_3 { + int id PK + string field_0 + bool field_1 + bool field_2 + string field_3 +} +TABLE_4 { + int id PK + string field_0 + float field_1 + int field_2 + float field_3 +} +TABLE_5 { + int id PK + datetime field_0 + string field_1 + datetime field_2 +} +TABLE_6 { + int id PK + string field_0 + float field_1 + int field_2 + string field_3 +} +TABLE_7 { + int id PK + string field_0 + int field_1 + float field_2 + string field_3 +} +TABLE_0 ||--|{ TABLE_1 : owns +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 }|--|| TABLE_3 : uses +TABLE_3 }|--|| TABLE_4 : contains +TABLE_4 }|--|| TABLE_5 : has +TABLE_5 ||--o{ TABLE_6 : owns +TABLE_6 }|--|| TABLE_7 : contains",output/633.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n2 -> n3 + n3 -> n0 + n1 -> n3 + n4 -> n1 + n3 -> n4 +}",output/545.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n0 -> n3 + n5 -> n2 + n4 -> n5 + n4 -> n2 + n4 -> n3 + n1 -> n0 + n2 -> n1 + n2 -> n6 + n6 -> n2 +}",output/555.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +:step_9; +end",output/268.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +*** Subitem 0.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1",output/310.pintora.png +Map out a process flow using an activity diagram. Include about 15 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +:step_8; +:step_9; +:step_10; +:step_11; +:step_12; +:step_13; +if (check14?) then (yes) + :action_yes_14; +else (no) + :action_no_14; +endif +end",output/278.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +end",output/300.pintora.png +Schedule tasks using a Gantt chart. Include about 6 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 4d +""Task 2"" : 2024-01-09, 2d +""Task 3"" : 2024-01-11, 10d +""Task 4"" : 2024-01-21, 7d",output/372.pintora.png +Visualize a graph structure using DOT syntax. Include about 6 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n2 -> n4 + n3 -> n5 + n1 -> n2 + n2 -> n1 + n0 -> n5 + n5 -> n4 +}",output/362.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n6 -> n4 + n4 -> n1 + n2 -> n4 + n5 -> n0 + n1 -> n6 + n6 -> n1 + n5 -> n0 + n1 -> n3 + n4 -> n6 +}",output/527.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n4 -> n6 + n0 -> n7 + n6 -> n5 + n0 -> n4 + n5 -> n3 + n0 -> n2 + n2 -> n6 + n3 -> n7 +}",output/537.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + string field_1 +} +TABLE_1 { + int id PK + bool field_0 + int field_1 + int field_2 +} +TABLE_2 { + int id PK + int field_0 + float field_1 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : owns",output/739.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +end",output/641.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 + float field_2 + string field_3 + datetime field_4 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + bool field_2 + int field_3 + int field_4 +} +TABLE_2 { + int id PK + int field_0 + bool field_1 + int field_2 + string field_3 +} +TABLE_3 { + int id PK + int field_0 + int field_1 +} +TABLE_4 { + int id PK + datetime field_0 + int field_1 + int field_2 +} +TABLE_5 { + int id PK + datetime field_0 + float field_1 +} +TABLE_6 { + int id PK + int field_0 + string field_1 +} +TABLE_7 { + int id PK + bool field_0 + string field_1 + int field_2 + bool field_3 +} +TABLE_0 ||--|| TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : owns +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 ||--o{ TABLE_6 : manages +TABLE_6 }|--|| TABLE_7 : has",output/729.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 +} +TABLE_1 { + int id PK + float field_0 + float field_1 + bool field_2 + bool field_3 +} +TABLE_2 { + int id PK + string field_0 + string field_1 + int field_2 +} +TABLE_3 { + int id PK + string field_0 + datetime field_1 +} +TABLE_4 { + int id PK + string field_0 + float field_1 + datetime field_2 + string field_3 +} +TABLE_0 ||--|{ TABLE_1 : has +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 ||--|{ TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : contains",output/651.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Action 4; +:Process 5; +:Action 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/780.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 +} +TABLE_1 { + int id PK + datetime field_0 + float field_1 +} +TABLE_2 { + int id PK + datetime field_0 + bool field_1 + float field_2 +} +TABLE_3 { + int id PK + datetime field_0 + datetime field_1 +} +TABLE_4 { + int id PK + string field_0 + string field_1 +} +TABLE_0 ||--o{ TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 ||--|| TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : contains",output/790.pintora.png +Write a mind map with custom colors and layout,"mindmap +@param layoutDirection TB +@param { + l1NodeBgColor #2B7A5D + l1NodeTextColor #ffffff + l2NodeBgColor #26946C + l2NodeTextColor #ffffff + nodeBgColor #67B599 + textColor #ffffff +} ++ Data Science +++ Statistics ++++ Probability ++++ Hypothesis Testing +++ Programming ++++ Python ++++ R",output/934.pintora.png +Create a component diagram for a data pipeline,"componentDiagram +title: Data Pipeline Architecture +rectangle ""Data Sources"" { + [Kafka] + [S3 Bucket] +} +frame ""Processing"" { + [Spark Job] + [Airflow] +} +database ""Storage"" { + [Data Warehouse] + [Redis Cache] +} +[Kafka] --> [Spark Job] +[S3 Bucket] --> [Spark Job] +[Airflow] --> [Spark Job] : orchestrates +[Spark Job] --> [Data Warehouse] +[Data Warehouse] ..> [Redis Cache] : cache layer",output/924.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates",output/37.pintora.png +Visualize a graph structure using DOT syntax. Include about 7 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n3 -> n1 + n2 -> n3 + n3 -> n0 + n1 -> n2 + n1 -> n0 + n1 -> n2 + n1 -> n0 +}",output/27.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + int field_2 + float field_3 + float field_4 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 + float field_2 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 +} +TABLE_3 { + int id PK + datetime field_0 + datetime field_1 + datetime field_2 + bool field_3 +} +TABLE_4 { + int id PK + int field_0 + string field_1 + float field_2 + string field_3 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : uses +TABLE_2 ||--|| TABLE_3 : owns +TABLE_3 }|--|| TABLE_4 : has",output/617.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n11 [shape=""diamond"", label=""Node n11""] + n11 -> n3 + n1 -> n5 + n8 -> n10 + n0 -> n2 + n3 -> n6 + n3 -> n10 + n8 -> n3 + n8 -> n10 + n6 -> n3 + n6 -> n4 + n2 -> n3 + n11 -> n2 + n1 -> n10 + n11 -> n7 +}",output/607.pintora.png +Design an Entity Relationship diagram. Include about 12 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 }|--|| Ent4 : relates",output/324.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1",output/334.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n2 -> n3 + n1 -> n4 + n2 -> n3 + n2 -> n0 + n0 -> n2 + n2 -> n0 + n4 -> n1 +}",output/409.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + bool field_1 +} +TABLE_1 { + int id PK + string field_0 + string field_1 +} +TABLE_2 { + int id PK + bool field_0 + bool field_1 + bool field_2 +} +TABLE_3 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 }|--|| TABLE_2 : uses +TABLE_2 ||--|{ TABLE_3 : has",output/571.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_3 +loop Loop check + Service_0->Service_1: Message 405 +end +Service_1->Service_2: Message 632 +alt Condition + Service_0-xService_3: Message 343 +else Other case + Service_3-->>Service_0: Response +end +Service_3-xService_0: Message 921 +Service_2-->>Service_1: Message 775 +loop Loop check + Service_3-->>Service_0: Message 810 +end +Service_1-xService_2: Message 862 +Service_2->>Service_0: Message 564 +Service_0->Service_1: Message 972 +loop Loop check + Service_1-xService_3: Message 667 +end +Service_0-->Service_1: Message 706",output/419.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_2 +participant Service_3 +Service_0-->Service_1: Message 244 +@note right of Service_3: Note processing +Service_3-xService_0: Message 505 +Service_2-xService_1: Message 128 +Service_0-->>Service_2: Message 913 +Service_0-->>Service_3: Message 847 +Service_0->>Service_1: Message 251",output/561.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0-->P1: msg_37 +P0->>P1: msg_69 +P0->P1: msg_94 +P1-->>P0: msg_18 +P0->P1: msg_73 +P1-->P0: msg_64 +P1->P0: msg_81 +P0->>P1: msg_36 +P0->>P1: msg_55",output/61.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0->P1: msg_29 +P0-->P2: msg_47 +P1->>P3: msg_69 +P0-->P1: msg_57 +P1-->>P0: msg_75 +P2->>P3: msg_26 +P3->P0: msg_30 +P1-->>P2: msg_94 +P2->P3: msg_69 +P2-->>P3: msg_49 +P1-->>P0: msg_1 +P0->P2: msg_95 +P0-->>P1: msg_49 +P2-->P0: msg_41 +P3->P1: msg_50",output/71.pintora.png +Create a sequence diagram for a user login flow,"sequenceDiagram +participant User +participant API +User->>API: Login +API-->>User: Token",output/0.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 7 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +** Task 2 +*** Subitem 2.0",output/183.pintora.png +Create a component diagram for a CI/CD pipeline,"componentDiagram +title: CI/CD Pipeline +rectangle ""Source Control"" { + [GitHub Repository] +} +rectangle ""CI Server"" { + [Jenkins] + () ""Build Trigger"" +} +cloud ""Container Registry"" { + [Docker Hub] +} +node ""Kubernetes Cluster"" { + [Staging Pod] + [Production Pod] +} +[GitHub Repository] --> ""Build Trigger"" +""Build Trigger"" --> [Jenkins] +[Jenkins] --> [Docker Hub] : push image +[Docker Hub] --> [Staging Pod] : deploy +[Staging Pod] ..> [Production Pod] : promote",output/962.pintora.png +Model an object-oriented system with a class diagram. Include about 9 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2",output/193.pintora.png +Create a class diagram for a design pattern (Factory),"classDiagram +title: Factory Pattern +class Product { + <> + +operation() +} +class ConcreteProductA { + +operation() +} +class ConcreteProductB { + +operation() +} +class Creator { + <> + +factoryMethod() Product + +someOperation() +} +class ConcreteCreatorA { + +factoryMethod() Product +} +class ConcreteCreatorB { + +factoryMethod() Product +} +Product <|.. ConcreteProductA +Product <|.. ConcreteProductB +Creator <|-- ConcreteCreatorA +Creator <|-- ConcreteCreatorB +Creator --> Product : creates",output/972.pintora.png +Write a Pintora diagram: model an object-oriented system with class diagram.,"classDiagram +class ObserverA { + <> + -List~T~ attr0 + #boolean attr1 + #boolean attr2 + +string attr3 + ~method0() string +} +class ManagerB { + -boolean attr0 + #method0() boolean + -method1() string +} +class ControllerC { + #List~T~ attr0 + ~List~T~ attr1 + +List~T~ attr2 + -int attr3 + #method0() T +} +class ControllerD { + -int attr0 + -string attr1 + ~method0() void + -{static} method1() boolean +} +class ObserverE { + <> + +int attr0 + +boolean attr1 + ~List~T~ attr2 + #method0() void + -method1() boolean +} +class FactoryF { + #List~T~ attr0 + #method0() boolean + +method1() boolean + +method2() void +} +class StrategyG { + +List~T~ attr0 + -method0() void + -method1() string + #method2() string +} +ObserverA ..> FactoryF +ManagerB <|.. ObserverE +ControllerC *-- ObserverE +ControllerD *-- StrategyG +ObserverE o-- StrategyG +FactoryF <|-- StrategyG",output/878.pintora.png +Build a detailed component architecture diagram. Include nested structures.,"componentDiagram +database ""Cache Layer"" { + [Comp0_0] + [Comp0_1] +} +package ""Services"" { + [Comp1_0] + [Comp1_1] +} +package ""Backend"" { + [Comp2_0] + [Comp2_1] +} +database ""Data Store"" { + [Comp3_0] + [Comp3_1] +} +[Comp3_1] ..> [Comp3_0] +[Comp1_0] -- [Comp3_1] +[Comp1_1] ..|> [Comp0_1] +[Comp1_0] --> [Comp2_1] +[Comp0_1] ..> [Comp3_0] +[Comp0_0] -- [Comp0_1] +[Comp0_0] ..|> [Comp1_1] +[Comp0_1] ..> [Comp3_1] +[Comp1_0] ..> [Comp3_0] +[Comp1_1] ..|> [Comp0_1] +[Comp2_1] ..> [Comp1_0]",output/900.pintora.png +Write a sequence diagram using participant boxes and classifiers,"sequenceDiagram +box #e7f2ff ""Frontend Services"" +participant [ User] +participant WebApp +endbox +box #fff2e7 ""Backend Services"" +participant [ DB] as ""Database"" +participant [ API] +endbox +User->>WebApp: Request data +WebApp->>API: GET /data +API->>DB: SELECT query +DB-->>API: Results +API-->>WebApp: JSON response +WebApp-->>User: Display data",output/910.pintora.png +Design an Entity Relationship diagram. Include about 5 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates",output/13.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n2 -> n5 + n3 -> n1 + n3 -> n5 + n1 -> n5 + n1 -> n2 + n1 -> n3 +}",output/287.pintora.png +Model an object-oriented system with a class diagram. Include about 15 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 --> Class2 +Class2 <|-- Class3 +Class3 --> Class4",output/297.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_2 +Service_2-->Service_1: Message 886 +Service_1->>Service_2: Message 234 +Service_2-->Service_1: Message 844 +alt Condition + Service_2-->>Service_1: Message 208 +else Other case + Service_1-->>Service_2: Response +end +Service_2->Service_1: Message 338 +Service_2-xService_1: Message 419 +Service_0->>Service_2: Message 610",output/513.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n11 [shape=""diamond"", label=""Node n11""] + n2 -> n6 + n6 -> n10 + n0 -> n7 + n10 -> n11 + n10 -> n4 + n11 -> n9 + n5 -> n4 + n8 -> n11 + n8 -> n4 + n0 -> n5 + n3 -> n10 + n11 -> n1 + n5 -> n6 +}",output/503.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +** Feature 1 +*** Subitem 1.0 +*** Subitem 1.1",output/346.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 o-- Class2",output/356.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1 +*** Subitem 1.2 +** Task 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1",output/158.pintora.png +Design an Entity Relationship diagram. Include about 9 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates",output/148.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +:Process 3; +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +:Process 7; +:Process 8; +end",output/675.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + datetime field_1 + datetime field_2 + int field_3 +} +TABLE_1 { + int id PK + float field_0 + datetime field_1 + string field_2 +} +TABLE_2 { + int id PK + float field_0 + bool field_1 +} +TABLE_0 ||--o{ TABLE_1 : manages +TABLE_1 ||--|| TABLE_2 : manages",output/665.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n5 -> n1 + n4 -> n8 + n8 -> n2 + n7 -> n4 + n2 -> n5 + n8 -> n5 + n3 -> n0 + n4 -> n2 + n4 -> n0 +}",output/691.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Process 2; +:Action 3; +:Action 4; +:Action 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +:Process 9; +end",output/681.pintora.png +Write a Pintora diagram: map a complex business process with activity diagram.,"activityDiagram +title: Workflow +start +partition Completion { + :Step 0; + if (Condition 1?) then (yes) + :Action True 1; + else (no) + :Action False 1; + endif + :Step 2; + :Step 3; + while (Check 4?) is (yes) + :Process 4; + endwhile (done) + fork + :Parallel Task A5; + forkagain + :Parallel Task B5; + endfork + if (Condition 6?) then (yes) + :Action True 6; + else (no) + :Action False 6; + endif + switch (Type 7?) + case (A) + :Handle A7; + case (B) + :Handle B7; + endswitch +end",output/825.pintora.png +Design a detailed hierarchical mind map.,"mindmap +* Project Plan +** Topic A +*** Subtopic A.1 +*** Subtopic A.2 +*** Subtopic A.3 +**** Detail A.3.1 +**** Detail A.3.2 +**** Detail A.3.3 +*** Subtopic A.4 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +**** Detail B.2.1 +**** Detail B.2.2 +*** Subtopic B.3 +**** Detail B.3.1 +**** Detail B.3.2 +**** Detail B.3.3 +*** Subtopic B.4 +**** Detail B.4.1 +**** Detail B.4.2 +**** Detail B.4.3 +** Topic C +*** Subtopic C.1 +**** Detail C.1.1 +**** Detail C.1.2 +**** Detail C.1.3 +*** Subtopic C.2 +**** Detail C.2.1 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2",output/835.pintora.png +Schedule tasks using a Gantt chart. Include about 8 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 2d +""Task 1"" : 2024-01-03, 3d +""Task 2"" : 2024-01-06, 2d +""Task 3"" : 2024-01-08, 8d +""Task 4"" : 2024-01-16, 6d",output/263.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +:step_11; +:step_12; +:step_13; +end",output/273.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +participant Service_3 +Service_2->Service_1: Message 738 +Service_2-->>Service_1: Message 775 +Service_3-->>Service_0: Message 811 +Service_2-->Service_1: Message 236 +loop Loop check + Service_3-->Service_2: Message 687 +end +Service_1-xService_0: Message 413 +Service_2-xService_3: Message 618",output/436.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + datetime field_1 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + datetime field_2 +} +TABLE_2 { + int id PK + string field_0 + float field_1 + float field_2 +} +TABLE_3 { + int id PK + datetime field_0 + string field_1 + bool field_2 + datetime field_3 +} +TABLE_4 { + int id PK + string field_0 + bool field_1 +} +TABLE_5 { + int id PK + int field_0 + float field_1 + float field_2 + float field_3 + bool field_4 +} +TABLE_6 { + int id PK + bool field_0 + float field_1 +} +TABLE_7 { + int id PK + float field_0 + float field_1 + bool field_2 + string field_3 + int field_4 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : manages +TABLE_2 ||--|{ TABLE_3 : owns +TABLE_3 ||--|| TABLE_4 : uses +TABLE_4 ||--|| TABLE_5 : contains +TABLE_5 ||--o{ TABLE_6 : owns +TABLE_6 }|--|| TABLE_7 : manages",output/426.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +autonumber +Service_0-->>Service_1: Message 229 +Service_1-xService_0: Message 285 +Service_1->>Service_0: Message 703 +Service_0-xService_1: Message 437 +Service_1->>Service_0: Message 149 +Service_1->>Service_0: Message 289 +Service_0->>Service_1: Message 656 +Service_0->>Service_1: Message 420",output/750.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + bool field_1 + float field_2 +} +TABLE_1 { + int id PK + datetime field_0 + bool field_1 + bool field_2 + bool field_3 + float field_4 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 + int field_2 + bool field_3 + datetime field_4 +} +TABLE_0 ||--|| TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : contains",output/628.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +participant Service_1 +@note right of Service_1: Note processing +Service_1->Service_0: Message 689 +alt Condition + Service_0->>Service_1: Message 693 +else Other case + Service_1-->>Service_0: Response +end +Service_0-xService_1: Message 122 +alt Condition + Service_0-xService_1: Message 388 +else Other case + Service_1-->>Service_0: Response +end +Service_1-xService_0: Message 783 +Service_0->Service_1: Message 958 +Service_0-->Service_1: Message 626 +alt Condition + Service_1->Service_0: Message 353 +else Other case + Service_0-->>Service_1: Response +end +Service_1-->>Service_0: Message 959 +@note right of Service_1: Note processing +Service_1->>Service_0: Message 976 +Service_0-xService_1: Message 174 +Service_1-xService_0: Message 498 +Service_0->>Service_1: Message 191 +@note right of Service_0: Note processing +Service_0-->Service_1: Message 191",output/740.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n1 -> n2 + n1 -> n3 + n4 -> n1 + n5 -> n2 + n1 -> n5 + n1 -> n3 + n0 -> n2 + n1 -> n3 +}",output/638.pintora.png +Design an Entity Relationship diagram. Include about 5 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 ||--o{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--o{ Ent4 : relates +Ent4 ||--|| Ent5 : relates",output/105.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 14 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2 +**** Detail 2.2.1",output/115.pintora.png +Create a sequence diagram showing interaction between participants. Include about 13 elements.,"sequenceDiagram +autonumber +P1->>P0: msg_5 +P0->P2: msg_91 +P0->P1: msg_8 +P0->>P1: msg_8 +P2-->>P0: msg_50 +P0-->>P1: msg_11 +P1-->P2: msg_15 +P0->P2: msg_8 +P0->P1: msg_54 +P2->P1: msg_79 +P1->>P0: msg_54 +P0->P1: msg_83 +P2-->P0: msg_41",output/167.pintora.png +Write a DOT diagram for a binary tree,"dotDiagram +digraph BinaryTree { + bgcolor=""white"" + node [shape=""circle"", bgcolor=""#fff9c4""] + + root[""50""] + l1[""30""] + r1[""70""] + ll[""20""] + lr[""40""] + rl[""60""] + rr[""80""] + + root -> l1 + root -> r1 + l1 -> ll + l1 -> lr + r1 -> rl + r1 -> rr +}",output/986.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates +Ent3 }|--|| Ent4 : relates",output/177.pintora.png +Write a component diagram for plugin architecture,"componentDiagram +package ""Core Application"" { + [Plugin Manager] + () IPlugin + [Core Engine] +} +package ""Plugins"" { + [Auth Plugin] + [Analytics Plugin] + [Export Plugin] +} +[Plugin Manager] --> IPlugin +IPlugin <|-- [Auth Plugin] +IPlugin <|-- [Analytics Plugin] +IPlugin <|-- [Export Plugin] +[Core Engine] --> [Plugin Manager]",output/996.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n5 -> n6 + n3 -> n0 + n2 -> n0 + n5 -> n4 + n0 -> n4 + n3 -> n1 + n0 -> n4 +}",output/732.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/722.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +:Process 6; +:Action 7; +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +end",output/454.pintora.png +Map out a process flow using an activity diagram. Include about 14 elements.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +:step_10; +if (check11?) then (yes) + :action_yes_11; +else (no) + :action_no_11; +endif +:step_12; +if (check13?) then (yes) + :action_yes_13; +else (no) + :action_no_13; +endif +end",output/85.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +Service_1-->>Service_0: Message 164 +Service_0->Service_1: Message 433 +Service_0->Service_1: Message 719 +Service_1-->Service_0: Message 154 +Service_1->>Service_0: Message 274 +Service_1-->Service_0: Message 872 +Service_1-xService_0: Message 786 +Service_0->Service_1: Message 863 +Service_0-->>Service_1: Message 235 +Service_1-xService_0: Message 291 +Service_1-xService_0: Message 343 +alt Condition + Service_0->>Service_1: Message 805 +else Other case + Service_1-->>Service_0: Response +end +Service_1->Service_0: Message 693 +loop Loop check + Service_1->Service_0: Message 651 +end",output/444.pintora.png +Create a sequence diagram showing interaction between participants. Include about 5 elements.,"sequenceDiagram +autonumber +P0-->>P1: msg_6 +P1-->P0: msg_94 +P0-->>P3: msg_35 +P2->P3: msg_74 +P2->P1: msg_88",output/95.pintora.png +Design an Entity Relationship diagram. Include about 15 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--o{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates",output/201.pintora.png +Map out a process flow using an activity diagram. Include about 7 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +end",output/379.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 8 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Idea 1 +*** Subitem 1.0 +** Concept 2 +*** Subitem 2.0 +*** Subitem 2.1 +** Task 3 +*** Subitem 3.0",output/211.pintora.png +Map out a process flow using an activity diagram. Include about 6 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +end",output/369.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +alt Condition + Service_2-->Service_1: Message 697 +else Other case + Service_1-->>Service_2: Response +end +Service_2-->>Service_0: Message 475 +Service_0-xService_2: Message 939 +Service_0->>Service_1: Message 670 +Service_2-->>Service_1: Message 682 +Service_0-xService_2: Message 900 +Service_2->>Service_0: Message 119 +loop Loop check + Service_0->Service_2: Message 770 +end +Service_1-xService_2: Message 772 +Service_1->Service_0: Message 871 +Service_2-xService_1: Message 713 +Service_1->>Service_2: Message 644 +Service_2->>Service_0: Message 514 +Service_0->>Service_1: Message 493 +Service_1->>Service_0: Message 256",output/595.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +Service_0-->Service_1: Message 592 +Service_0-->>Service_1: Message 445 +Service_0-xService_1: Message 272 +Service_0-->Service_1: Message 820 +Service_1->Service_0: Message 382 +@note right of Service_0: Note processing +Service_0-->Service_1: Message 232 +Service_1-->Service_0: Message 953 +loop Loop check + Service_1->Service_0: Message 579 +end +Service_0->>Service_1: Message 307 +Service_1-xService_0: Message 724 +loop Loop check + Service_0-xService_1: Message 782 +end +@note right of Service_0: Note processing +Service_0->Service_1: Message 741 +Service_1-xService_0: Message 868",output/585.pintora.png +Create an advanced sequence diagram with complex interactions.,"sequenceDiagram +title: System Communication +autonumber +participant [ ServiceB] +participant [ ServiceC] +loop Batch process + ServiceB-->>ServiceC: Update 0 + ServiceC-->>ServiceB: Response +end +ServiceA-->ServiceB: Process event +ServiceA-->>ServiceB: Validate +ServiceB-->>ServiceA: Query 3 +ServiceB->ServiceA: Process event +par Parallel processing + ServiceC-->ServiceA: Task A +and + ServiceC-->ServiceB: Task B +end +alt Success + ServiceC-->>ServiceB: Update 6 + ServiceB-->>ServiceC: OK +else Error + ServiceB-->>ServiceC: Error code +end +par Parallel processing + ServiceB-->>ServiceA: Task A +and + ServiceB-->>ServiceB: Task B +end +par Parallel processing + ServiceB->ServiceA: Task A +and + ServiceB->ServiceB: Task B +end +ServiceB-->>ServiceC: Process event",output/847.pintora.png +Design a detailed hierarchical mind map.,"mindmap +@param layoutDirection BT +* Project Plan +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +*** Subtopic A.2 +**** Detail A.2.1 +**** Detail A.2.2 +**** Detail A.2.3 +** Topic B +*** Subtopic B.1 +**** Detail B.1.1 +*** Subtopic B.2 +*** Subtopic B.3 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +*** Subtopic C.3 +**** Detail C.3.1 +**** Detail C.3.2 +**** Detail C.3.3 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2 +**** Detail D.2.1 +**** Detail D.2.2 +** Topic E +*** Subtopic E.1 +*** Subtopic E.2 +*** Subtopic E.3 +*** Subtopic E.4 +**** Detail E.4.1 +**** Detail E.4.2",output/857.pintora.png +Create an advanced sequence diagram with complex interactions. Use advanced syntax features.,"sequenceDiagram +autonumber +participant ServiceA +participant [ ServiceB] +participant [ ServiceD] +participant [ ServiceE] +ServiceF-xServiceD: Validate +loop Retry + ServiceC-->ServiceA: Query 1 + ServiceA-->>ServiceC: Response +end +loop Batch process + ServiceD->>ServiceE: Process event + ServiceE-->>ServiceD: Response +end +alt Authenticated + ServiceF-xServiceC: Fetch data + ServiceC-->>ServiceF: OK +else Error + ServiceC-->>ServiceF: Error code +end +ServiceB->>ServiceC: Process event +alt Authenticated + ServiceB-xServiceC: Request 5 + ServiceC-->>ServiceB: OK +else Error + ServiceC-->>ServiceB: Error code +end +ServiceE->ServiceC: Fetch data +alt Authenticated + ServiceF->ServiceE: Update 7 + ServiceE-->>ServiceF: OK +else Error + ServiceE-->>ServiceF: Error code +end +ServiceC->ServiceD: Query 8 +ServiceE-->ServiceB: Fetch data",output/861.pintora.png +Create an ER diagram with custom styling,"erDiagram +@param fill #aabb00 +@param stroke #aacc00 +@param textColor #333333 +@param attributeFill #fcfff2 +@param labelBackground #ffffff +@param fontSize 14 +@param edgeType ortho +ARTIST { + int id PK + string name + string genre +} +ALBUM { + int id PK + string title + date release_date +} +ARTIST ||--o{ ALBUM : creates",output/919.pintora.png +Design an advanced sequence diagram with complex interactions.,"sequenceDiagram +title: User Flow +participant [ ServiceB] +participant [ ServiceC] +ServiceA->>ServiceC: Validate +par Parallel processing + ServiceA-->ServiceA: Task A +and + ServiceA-->ServiceB: Task B +end +par Parallel processing + ServiceD-->>ServiceA: Task A +and + ServiceD-->>ServiceB: Task B +end +par Parallel processing + ServiceD-->ServiceA: Task A +and + ServiceD-->ServiceB: Task B +end +ServiceA->ServiceC: Validate +ServiceC->ServiceD: Fetch data +par Parallel processing + ServiceD-->>ServiceA: Task A +and + ServiceD-->>ServiceB: Task B +end +alt Success + ServiceA-->>ServiceB: Validate + ServiceB-->>ServiceA: OK +else Error + ServiceB-->>ServiceA: Error code +end +ServiceA-->ServiceD: Request 8 +@note right of ServiceA: Validating +ServiceA->ServiceC: Fetch data +alt Success + ServiceC->ServiceB: Query 10 + ServiceB-->>ServiceC: OK +else Error + ServiceB-->>ServiceC: Error code +end +ServiceD-->>ServiceA: Process event",output/871.pintora.png +Create a sequence diagram with multiline notes and dividers,"sequenceDiagram +Alice->>Bob: Hello Bob +@note over Alice,Bob: This is a note over both participants +== First Section == +Bob->>Alice: Hi Alice! +@start_note left of Alice +This is a multiline note +on the left side +of Alice +@end_note +== Second Section == +Alice-->>Bob: How are you? +@note right of Bob: Short note",output/909.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +autonumber +Service_2-xService_1: Message 394 +Service_3->>Service_0: Message 945 +alt Condition + Service_2-->>Service_1: Message 825 +else Other case + Service_1-->>Service_2: Response +end +alt Condition + Service_3-xService_0: Message 374 +else Other case + Service_0-->>Service_3: Response +end +Service_0-->Service_2: Message 578 +Service_0-->Service_1: Message 531 +Service_2->>Service_0: Message 169 +Service_0->Service_2: Message 355 +loop Loop check + Service_3->Service_0: Message 467 +end +Service_0-xService_2: Message 729 +Service_2-xService_0: Message 503 +Service_2->>Service_1: Message 159 +Service_2-->>Service_1: Message 210",output/472.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Action 7; +end",output/462.pintora.png +Schedule tasks using a Gantt chart. Include about 8 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 2d +""Task 2"" : 2024-01-12, 10d +""Task 3"" : 2024-01-22, 8d +""Task 4"" : 2024-01-30, 7d +""Task 5"" : 2024-02-06, 10d",output/227.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 --> Class2 +Class2 *-- Class3",output/237.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1",output/141.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 <|-- Class2 +Class2 o-- Class3 +Class3 <|-- Class4 +Class4 o-- Class5",output/151.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n1 -> n3 + n8 -> n9 + n6 -> n4 + n7 -> n6 + n9 -> n1 + n1 -> n4 + n7 -> n1 + n6 -> n2 + n3 -> n5 + n2 -> n9 + n8 -> n7 +}",output/714.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +participant Service_0 +participant Service_2 +Service_0-->Service_1: Message 204 +@note right of Service_0: Note processing +Service_0-->Service_3: Message 244 +@note right of Service_0: Note processing +Service_0-->>Service_2: Message 805 +Service_0-->Service_1: Message 532 +loop Loop check + Service_1->Service_2: Message 985 +end +Service_3-->Service_2: Message 980 +Service_3-->>Service_1: Message 521 +Service_0-->>Service_3: Message 404",output/704.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +autonumber +participant Service_0 +alt Condition + Service_0-xService_1: Message 170 +else Other case + Service_1-->>Service_0: Response +end +alt Condition + Service_1->>Service_0: Message 862 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->>Service_1: Message 748 +Service_0-xService_1: Message 553 +loop Loop check + Service_0-->>Service_1: Message 540 +end +loop Loop check + Service_0->Service_1: Message 294 +end +Service_1-xService_0: Message 342",output/776.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + datetime field_2 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 + int field_2 +} +TABLE_2 { + int id PK + string field_0 + bool field_1 + string field_2 + datetime field_3 +} +TABLE_3 { + int id PK + datetime field_0 + float field_1 + datetime field_2 + int field_3 +} +TABLE_4 { + int id PK + bool field_0 + bool field_1 + int field_2 + float field_3 +} +TABLE_5 { + int id PK + float field_0 + datetime field_1 + datetime field_2 + bool field_3 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 }|--|| TABLE_4 : owns +TABLE_4 }|--|| TABLE_5 : contains",output/766.pintora.png +Schedule tasks using a Gantt chart. Include about 15 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 4d +""Task 2"" : 2024-01-09, 7d",output/123.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +end",output/133.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P3-->P4: msg_94 +P2-->P3: msg_33 +P1->P2: msg_86 +P0->>P4: msg_37 +P1-->P4: msg_85 +P0->P3: msg_30 +P0-->>P4: msg_3 +P3-->P0: msg_97 +P4->P2: msg_63 +P3->>P1: msg_18",output/245.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1",output/255.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Action 4; +end",output/410.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +:Process 7; +:Action 8; +end",output/568.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +*** Subitem 2.2 +** Feature 3 +*** Subitem 3.0 +*** Subitem 3.1",output/400.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + float field_1 + int field_2 + bool field_3 + datetime field_4 +} +TABLE_1 { + int id PK + datetime field_0 + float field_1 + float field_2 + string field_3 + string field_4 +} +TABLE_2 { + int id PK + datetime field_0 + bool field_1 + string field_2 + datetime field_3 +} +TABLE_3 { + int id PK + float field_0 + int field_1 + bool field_2 + string field_3 +} +TABLE_4 { + int id PK + float field_0 + int field_1 + datetime field_2 + bool field_3 +} +TABLE_5 { + int id PK + bool field_0 + float field_1 + string field_2 + bool field_3 + float field_4 +} +TABLE_6 { + int id PK + bool field_0 + string field_1 + datetime field_2 + datetime field_3 + int field_4 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : has +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 }|--|| TABLE_5 : has +TABLE_5 }|--|| TABLE_6 : manages",output/578.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 8 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +** Feature 2 +*** Subitem 2.0 +** Idea 3 +*** Subitem 3.0 +**** Detail 3.0.1 +*** Subitem 3.1 +**** Detail 3.1.1",output/384.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +end",output/394.pintora.png +Design an Entity Relationship diagram. Include about 12 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|{ Ent3 : relates",output/78.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1->>P0: msg_72 +P1-->>P0: msg_74 +P0->P1: msg_49 +P1-->>P2: msg_66 +P0-->P1: msg_76 +P1->P2: msg_33 +P1->>P0: msg_65",output/9.pintora.png +Create a mind map for database concepts,"mindmap ++ Database Systems +++ Relational ++++ PostgreSQL ++++ MySQL ++++ SQLite +++ NoSQL ++++ Document Store +++++ MongoDB +++++ CouchDB ++++ Key-Value +++++ Redis +++++ DynamoDB ++++ Graph +++++ Neo4j +++++ Amazon Neptune +-- Concepts +--- ACID +--- CAP Theorem +--- Indexing +--- Normalization",output/1001.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--|| Ent3 : relates",output/68.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n4 -> n2 + n1 -> n4 + n3 -> n4 + n0 -> n4 + n4 -> n2 + n4 -> n1 +}",output/803.pintora.png +Illustrate a complex business process with activity diagram.,"activityDiagram +title: Data Processing +start +while (Check 0?) is (yes) + :Process 0; +endwhile (done) +while (Check 1?) is (yes) + :Process 1; +endwhile (done) +while (Check 2?) is (yes) + :Process 2; +endwhile (done) +if (Condition 3?) then (yes) + :Action True 3; +else (no) + :Action False 3; +endif +while (Check 4?) is (yes) + :Process 4; +endwhile (done) +if (Condition 5?) then (yes) + :Action True 5; +else (no) + :Action False 5; +endif +:Step 6; +if (Condition 7?) then (yes) + :Action True 7; +else (no) + :Action False 7; +endif +} +end",output/813.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n3 -> n4 + n4 -> n6 + n8 -> n1 + n7 -> n1 + n4 -> n0 + n8 -> n2 + n5 -> n6 + n4 -> n8 +}",output/653.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n1 -> n8 + n7 -> n8 + n3 -> n4 + n5 -> n4 + n0 -> n5 + n7 -> n4 + n4 -> n8 + n2 -> n7 + n1 -> n4 + n0 -> n8 + n7 -> n6 +}",output/643.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Action 1; +:Process 2; +:Action 3; +:Action 4; +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +fork + :Parallel 1 7; +forkagain + :Parallel 2 7; +endfork +:Action 8; +end",output/535.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n6 -> n2 + n7 -> n6 + n3 -> n1 + n6 -> n0 + n0 -> n7 + n6 -> n2 + n3 -> n5 + n7 -> n4 + n2 -> n6 + n1 -> n7 +}",output/525.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Feature 1 +*** Subitem 1.0 +** Task 2 +*** Subitem 2.0 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2 +** Concept 3 +*** Subitem 3.0 +**** Detail 3.0.1 +*** Subitem 3.1 +**** Detail 3.1.1",output/218.pintora.png +Map out a process flow using an activity diagram. Include about 5 elements.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +end",output/360.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0->>P1: msg_97 +P1->P0: msg_79 +P0->>P1: msg_81 +P0->>P1: msg_96 +P1-->P0: msg_40 +P0-->P1: msg_92 +P1-->P0: msg_62",output/208.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 2d +""Task 2"" : 2024-01-06, 2d +""Task 3"" : 2024-01-08, 5d +""Task 4"" : 2024-01-13, 3d",output/370.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1->>P0: msg_28 +P0->P1: msg_71 +P0-->>P2: msg_64 +P1->>P2: msg_4 +P1->>P0: msg_91 +P2-->P0: msg_56",output/25.pintora.png +Visualize a graph structure using DOT syntax. Include about 14 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n1 -> n2 + n0 -> n3 + n4 -> n1 + n1 -> n0 + n3 -> n1 + n2 -> n1 + n1 -> n3 + n4 -> n1 + n3 -> n0 + n2 -> n4 + n4 -> n2 + n3 -> n4 + n4 -> n0 + n2 -> n3 +}",output/35.pintora.png +Write an activity diagram with while and repeat loops,"activityDiagram +start +:Initialize counter; +while (counter < 10) is (yes) + :Process item; + :Increment counter; +endwhile (done) +repeat + :Read next batch; + :Process batch; +repeatwhile (more batches?) is (yes) not (no) +:Finalize results; +end",output/926.pintora.png +Create a Gantt chart for a product launch,"gantt +title Product Launch Timeline +dateFormat YYYY-MM-DD +axisFormat MM-DD +axisInterval 1w +section Research +""Market Analysis"" : 2024-01-01, 2024-01-15 +""User Research"" : 2024-01-08, 2024-01-22 +section Development +""MVP Development"" : dev-mvp, 2024-01-22, 30d +""Testing"" : after dev-mvp, 14d +section Launch +""Beta Release"" : milestone, 2024-03-01, 0d +""Marketing Campaign"" : 2024-03-01, 2024-03-15 +""Public Launch"" : milestone, 2024-03-15, 0d",output/936.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n3 -> n4 + n1 -> n4 + n4 -> n5 + n4 -> n2 + n5 -> n2 + n4 -> n7 + n2 -> n3 + n4 -> n6 + n2 -> n0 +}",output/792.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + float field_1 + string field_2 + float field_3 + bool field_4 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + bool field_2 +} +TABLE_2 { + int id PK + string field_0 + bool field_1 + bool field_2 + int field_3 +} +TABLE_3 { + int id PK + datetime field_0 + bool field_1 + datetime field_2 + float field_3 +} +TABLE_4 { + int id PK + string field_0 + datetime field_1 + float field_2 + string field_3 + bool field_4 +} +TABLE_5 { + int id PK + float field_0 + float field_1 + string field_2 + int field_3 +} +TABLE_6 { + int id PK + int field_0 + string field_1 +} +TABLE_7 { + int id PK + datetime field_0 + int field_1 + int field_2 + float field_3 +} +TABLE_0 }|--|| TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : uses +TABLE_2 ||--o{ TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : manages +TABLE_4 ||--|{ TABLE_5 : uses +TABLE_5 ||--o{ TABLE_6 : manages +TABLE_6 ||--|{ TABLE_7 : uses",output/782.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +participant Service_4 +alt Condition + Service_3->>Service_2: Message 743 +else Other case + Service_2-->>Service_3: Response +end +loop Loop check + Service_0-->Service_2: Message 764 +end +@note right of Service_3: Note processing +Service_3-xService_4: Message 322 +@note right of Service_3: Note processing +Service_3-->>Service_0: Message 743 +Service_4-->>Service_0: Message 347 +Service_4->Service_0: Message 922 +Service_0-->Service_1: Message 107 +Service_3->Service_1: Message 724 +Service_2->Service_4: Message 891 +Service_4-xService_3: Message 764 +Service_0->Service_3: Message 387 +Service_0->>Service_4: Message 998 +Service_1-xService_2: Message 389",output/688.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +end",output/698.pintora.png +Create a DOT diagram with edge and node styles,"dotDiagram +digraph Styles { + bgcolor=""#ffffff"" + + solid_node [style=""solid"", label=""Solid""] + dashed_node [style=""dashed"", label=""Dashed""] + dotted_node [style=""dotted"", label=""Dotted""] + bold_node [style=""bold"", label=""Bold""] + + solid_node -> dashed_node [style=""solid""] + dashed_node -> dotted_node [style=""dashed""] + dotted_node -> bold_node [style=""dotted""] + bold_node -> solid_node [style=""bold""] +}",output/944.pintora.png +Create a component diagram with custom style selectors,"@pre +@style { + .component__interface { + backgroundColor: #61afef; + } + .component__component { + backgroundColor: #98c379; + } +} +@endpre +componentDiagram +[Application] +() IDatabase +() ILogger +[Application] --> IDatabase +[Application] --> ILogger",output/954.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +autonumber +participant Service_1 +alt Condition + Service_4-->Service_0: Message 726 +else Other case + Service_0-->>Service_4: Response +end +Service_0-->Service_4: Message 345 +loop Loop check + Service_1-xService_3: Message 568 +end +Service_4-->Service_0: Message 578 +@note right of Service_0: Note processing +Service_0->Service_3: Message 902 +loop Loop check + Service_0-->>Service_1: Message 709 +end +Service_4->>Service_2: Message 864 +Service_0->>Service_1: Message 920 +loop Loop check + Service_4-xService_3: Message 622 +end +Service_1->>Service_2: Message 138 +alt Condition + Service_2-->Service_4: Message 365 +else Other case + Service_4-->>Service_2: Response +end +Service_0-->>Service_4: Message 604",output/496.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1",output/47.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +autonumber +participant Service_0 +loop Loop check + Service_0-->>Service_1: Message 148 +end +Service_0-->>Service_1: Message 419 +Service_0-->>Service_1: Message 326 +Service_1->Service_0: Message 899 +alt Condition + Service_0-->Service_1: Message 934 +else Other case + Service_1-->>Service_0: Response +end +Service_1-->Service_0: Message 792 +Service_0-->Service_1: Message 988 +@note right of Service_0: Note processing +Service_0-->>Service_1: Message 130 +alt Condition + Service_1->>Service_0: Message 150 +else Other case + Service_0-->>Service_1: Response +end +Service_0->Service_1: Message 701 +Service_1-->>Service_0: Message 795 +loop Loop check + Service_1->>Service_0: Message 850 +end +Service_0-->Service_1: Message 246 +Service_1-->>Service_0: Message 742",output/486.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 }|--|| Ent3 : relates +Ent3 ||--o{ Ent4 : relates +Ent4 }|--|| Ent5 : relates",output/57.pintora.png +Schedule tasks using a Gantt chart. Include about 6 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 9d +""Task 2"" : 2024-01-20, 8d",output/302.pintora.png +Model an object-oriented system with a class diagram. Include about 12 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2 +Class2 o-- Class3 +Class3 --> Class4",output/312.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +Service_0-xService_1: Message 791 +Service_1-xService_0: Message 753 +Service_1-xService_0: Message 424 +Service_0-xService_1: Message 489 +Service_1-->Service_0: Message 484 +alt Condition + Service_1-xService_0: Message 357 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->Service_1: Message 698 +Service_1-xService_0: Message 392 +Service_1->Service_0: Message 111 +Service_0->Service_1: Message 704",output/557.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + datetime field_1 + bool field_2 +} +TABLE_1 { + int id PK + float field_0 + float field_1 +} +TABLE_2 { + int id PK + float field_0 + bool field_1 + float field_2 + datetime field_3 +} +TABLE_3 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_4 { + int id PK + int field_0 + int field_1 + datetime field_2 + bool field_3 + float field_4 +} +TABLE_0 ||--|{ TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : manages",output/547.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Action 2; +:Process 3; +:Process 4; +:Process 5; +:Action 6; +:Action 7; +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +:Action 9; +end",output/749.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n3 -> n2 + n4 -> n2 + n2 -> n0 + n5 -> n7 + n0 -> n5 + n5 -> n7 + n6 -> n5 +}",output/631.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + string field_2 + datetime field_3 + int field_4 +} +TABLE_1 { + int id PK + int field_0 + float field_1 + datetime field_2 + datetime field_3 + string field_4 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 +} +TABLE_3 { + int id PK + int field_0 + int field_1 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : contains",output/759.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +end",output/621.pintora.png +Write a Pintora diagram: model an object-oriented system with class diagram.,"classDiagram +title: Factory Pattern +class FactoryA { + +List~T~ attr0 + ~List~T~ attr1 + -method0() T +} +class HandlerB { + #int attr0 + #method0() T +} +class ControllerC { + <> + #List~T~ attr0 + #method0() boolean + ~method1() T + ~method2() string +} +class ControllerD { + ~int attr0 + +List~T~ attr1 + #int attr2 + -int attr3 + -method0() boolean + ~method1() string +} +class ServiceE { + ~List~T~ attr0 + -int attr1 + ~boolean attr2 + -List~T~ attr3 + +method0() T + #method1() boolean +} +class ControllerF { + #string attr0 + +boolean attr1 + +{static} method0() boolean + -method1() void +} +FactoryA <|-- HandlerB +HandlerB ..> ControllerD +ControllerC *-- ControllerF +ControllerD *-- ServiceE +ServiceE *-- ControllerF",output/885.pintora.png +Write a Pintora diagram: visualize a complex graph with dot diagram.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""plaintext"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n8 [label=""Node n8""] + n9 [label=""Node n9""] + n1 -- n2 + n3 -- n4 [color=""purple""] + n2 -- n6 + n6 -- n4 + n0 -- n2 + n2 -- n5 [color=""blue""] + n3 -- n4 + n1 -- n0 [color=""purple""] + n7 -- n8 + n3 -- n4 +}",output/895.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1-->P0: msg_94 +P1-->P0: msg_98 +P1-->>P0: msg_96 +P1-->>P0: msg_99 +P1-->P0: msg_5 +P0->P1: msg_74 +P0->>P1: msg_10 +P0-->P1: msg_93 +P0-->>P1: msg_55 +P1-->>P0: msg_3 +P1-->>P0: msg_88 +P0->P1: msg_80 +P1-->P0: msg_63 +P1-->>P0: msg_13",output/236.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0-->P1: msg_85 +P1->P0: msg_8 +P0-->>P1: msg_98 +P1->P0: msg_55 +P1->P0: msg_52 +P1-->P0: msg_100 +P0->>P1: msg_9 +P1-->>P0: msg_3 +P1->>P0: msg_29 +P1-->>P0: msg_92 +P0-->P1: msg_27 +P0->P1: msg_22 +P0-->>P1: msg_47 +P0->P1: msg_48 +P1-->>P0: msg_73",output/226.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n7 -> n2 + n0 -> n5 + n9 -> n3 + n1 -> n4 + n5 -> n8 + n1 -> n8 + n6 -> n9 + n7 -> n6 + n8 -> n6 +}",output/463.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 + int field_2 +} +TABLE_1 { + int id PK + string field_0 + int field_1 +} +TABLE_2 { + int id PK + float field_0 + string field_1 + int field_2 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : uses",output/473.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n3 -> n0 + n0 -> n2 + n3 -> n2 + n1 -> n0 + n3 -> n2 + n2 -> n3 + n2 -> n4 + n0 -> n5 +}",output/705.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +:Process 5; +end",output/715.pintora.png +Create a sequence diagram showing interaction between participants. Include about 8 elements.,"sequenceDiagram +autonumber +P0->P1: msg_70 +P1-->>P0: msg_29 +P0->>P1: msg_25 +P0-->P1: msg_27 +P1-->P0: msg_63 +P1->>P0: msg_47 +P1->>P0: msg_13 +P1-->P0: msg_25",output/150.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P3-->>P2: msg_68 +P4-->P3: msg_42 +P2->P4: msg_89 +P3-->P2: msg_8 +P4->>P2: msg_75 +P0-->>P2: msg_44 +P3-->P0: msg_49 +P3-->P0: msg_30",output/140.pintora.png +Write a sequence diagram for an e-commerce checkout process,"sequenceDiagram +title: E-commerce Checkout +autonumber +participant Customer +participant Cart +participant Payment +participant Inventory +Customer->>Cart: Add items +Cart->>Inventory: Check stock +Inventory-->>Cart: Items available +Customer->>Cart: Checkout +Cart->>Payment: Process payment +activate Payment +Payment->>Payment: Validate card +Payment-->>Cart: Payment confirmed +deactivate Payment +Cart->>Inventory: Update stock +Inventory-->>Cart: Stock updated +Cart-->>Customer: Order confirmed",output/908.pintora.png +Create a detailed hierarchical mind map. Include nested structures.,"mindmap +@param layoutDirection RL +* Learning Path +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +**** Detail A.1.2 +*** Subtopic A.2 +*** Subtopic A.3 +*** Subtopic A.4 +**** Detail A.4.1 +**** Detail A.4.2 +**** Detail A.4.3 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +*** Subtopic B.3 +**** Detail B.3.1 +**** Detail B.3.2 +*** Subtopic B.4 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +**** Detail C.2.1 +*** Subtopic C.3 +**** Detail C.3.1 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2 +*** Subtopic D.3 +**** Detail D.3.1 +*** Subtopic D.4 +**** Detail D.4.1 +**** Detail D.4.2 +**** Detail D.4.3 +** Topic E +*** Subtopic E.1 +**** Detail E.1.1 +*** Subtopic E.2 +*** Subtopic E.3 +*** Subtopic E.4",output/870.pintora.png +Write an ER diagram with all cardinality types,"erDiagram +%% Demonstrating all cardinality types +A ||--|| B : ""exactly one to exactly one"" +C ||--o| D : ""exactly one to zero or one"" +E ||--o{ F : ""exactly one to zero or more"" +G ||--|{ H : ""exactly one to one or more"" +I }|--|| J : ""one or more to exactly one"" +K }o--o{ L : ""zero or more to zero or more"" ",output/918.pintora.png +Write a Pintora diagram: visualize a complex graph with dot diagram.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""plaintext"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n8 [label=""Node n8""] + n2 -- n5 + n7 -- n1 + n6 -- n7 [color=""blue""] + n7 -- n6 + n0 -- n4 + n6 -- n2 + n7 -- n8 [color=""red""] + n8 -- n5 + n7 -- n6 [color=""blue""] + n8 -- n5 + n5 -- n3 [color=""green""] + n5 -- n3 + n3 -- n7 + n3 -- n6 + n7 -- n8 [color=""blue""] + n7 -- n4 + n5 -- n1 [color=""red""] + n2 -- n4 +}",output/860.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 <|-- Class2 +Class2 o-- Class3 +Class3 o-- Class4",output/69.pintora.png +Design an Entity Relationship diagram. Include about 15 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 }|--|| Ent3 : relates",output/8.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 }|--|| Ent3 : relates",output/79.pintora.png +Write a sequence diagram for cache invalidation,"sequenceDiagram +title: Cache Invalidation Pattern +participant Writer +participant CacheService +participant Database +participant Reader +Writer->>Database: Update data +Database-->>Writer: Success +Writer->>CacheService: Invalidate cache key +CacheService->>CacheService: Delete cached entry +Reader->>CacheService: Request data +CacheService->>CacheService: Cache miss +CacheService->>Database: Fetch fresh data +Database-->>CacheService: Data +CacheService->>CacheService: Store in cache +CacheService-->>Reader: Return data",output/1000.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 5d +""Task 2"" : 2024-01-15, 6d +""Task 3"" : 2024-01-21, 3d +""Task 4"" : 2024-01-24, 8d",output/395.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 10d +""Task 2"" : 2024-01-18, 4d +""Task 3"" : 2024-01-22, 3d",output/385.pintora.png +Write a Pintora diagram: map a complex business process with activity diagram.,"activityDiagram +start +partition Processing { + switch (Type 0?) + case (A) + :Handle A0; + case (B) + :Handle B0; + endswitch + :Step 1; + :Step 2; + @note right: Important step 3 + :Critical action 3; + fork + :Parallel Task A4; + forkagain + :Parallel Task B4; + endfork + fork + :Parallel Task A5; + forkagain + :Parallel Task B5; + endfork +end",output/812.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +participant Service_2 +alt Condition + Service_1-->>Service_0: Message 173 +else Other case + Service_0-->>Service_1: Response +end +Service_1-xService_2: Message 425 +Service_0-xService_1: Message 608 +Service_1->Service_2: Message 996 +Service_0->>Service_2: Message 727 +Service_0-->>Service_1: Message 353",output/802.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 8d +""Task 2"" : 2024-01-12, 3d +""Task 3"" : 2024-01-15, 2d +""Task 4"" : 2024-01-17, 4d +""Task 5"" : 2024-01-21, 6d",output/132.pintora.png +Map out a process flow using an activity diagram. Include about 10 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +:step_9; +end",output/122.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + float field_1 + int field_2 + int field_3 +} +TABLE_1 { + int id PK + float field_0 + bool field_1 + float field_2 + int field_3 + string field_4 +} +TABLE_2 { + int id PK + datetime field_0 + bool field_1 + string field_2 +} +TABLE_3 { + int id PK + string field_0 + datetime field_1 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--o{ TABLE_3 : contains",output/767.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 + bool field_2 + datetime field_3 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + datetime field_2 + datetime field_3 + int field_4 +} +TABLE_2 { + int id PK + bool field_0 + datetime field_1 + float field_2 + string field_3 + int field_4 +} +TABLE_3 { + int id PK + datetime field_0 + datetime field_1 + datetime field_2 + datetime field_3 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + float field_2 +} +TABLE_5 { + int id PK + datetime field_0 + float field_1 +} +TABLE_6 { + int id PK + string field_0 + int field_1 + float field_2 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : manages +TABLE_4 ||--|{ TABLE_5 : uses +TABLE_5 ||--|| TABLE_6 : manages",output/777.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n6 -> n5 + n3 -> n2 + n2 -> n6 + n1 -> n4 + n0 -> n6 + n1 -> n4 + n6 -> n4 + n0 -> n4 + n4 -> n3 +}",output/579.pintora.png +Create a sequence diagram showing interaction between participants. Include about 6 elements.,"sequenceDiagram +autonumber +P0->P1: msg_81 +P0-->>P1: msg_87 +P1->>P0: msg_18 +P0-->>P1: msg_7 +P0-->P1: msg_47 +P1-->>P0: msg_10",output/401.pintora.png +Create a sequence diagram with random interaction patterns involving 9 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +participant Service_2 +participant Service_3 +Service_3-->Service_2: Message 830 +Service_1->Service_3: Message 769 +Service_1->>Service_0: Message 426 +Service_0->>Service_1: Message 891 +Service_2-->Service_0: Message 121 +Service_3-->>Service_1: Message 889 +alt Condition + Service_2-->Service_1: Message 331 +else Other case + Service_1-->>Service_2: Response +end +alt Condition + Service_0->>Service_1: Message 936 +else Other case + Service_1-->>Service_0: Response +end +Service_0-xService_3: Message 939",output/569.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n8 -> n2 + n0 -> n6 + n1 -> n4 + n2 -> n5 + n4 -> n1 + n0 -> n3 + n3 -> n4 + n3 -> n1 + n4 -> n7 + n1 -> n3 + n8 -> n6 +}",output/411.pintora.png +Schedule tasks using a Gantt chart. Include about 6 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 10d +""Task 2"" : 2024-01-19, 2d",output/254.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n1 -> n4 + n4 -> n1 + n1 -> n0 + n3 -> n2 + n1 -> n3 + n0 -> n1 + n0 -> n5 + n3 -> n2 + n0 -> n2 + n1 -> n2 + n3 -> n0 +}",output/244.pintora.png +Schedule tasks using a Gantt chart. Include about 6 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 10d +""Task 2"" : 2024-01-19, 4d +""Task 3"" : 2024-01-23, 9d +""Task 4"" : 2024-02-01, 4d +""Task 5"" : 2024-02-05, 9d",output/34.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2-->P0: msg_88 +P2-->P0: msg_72 +P3-->>P0: msg_87 +P4->>P0: msg_96 +P3-->>P0: msg_56 +P3-->P0: msg_75 +P0->>P4: msg_99",output/24.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +participant Service_1 +participant Service_2 +Service_1->Service_2: Message 945 +Service_1-->Service_0: Message 557 +Service_1-->>Service_2: Message 479 +alt Condition + Service_2-->Service_3: Message 755 +else Other case + Service_3-->>Service_2: Response +end +Service_3->Service_0: Message 781",output/783.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + string field_2 + int field_3 +} +TABLE_1 { + int id PK + float field_0 + string field_1 + bool field_2 + datetime field_3 +} +TABLE_2 { + int id PK + int field_0 + float field_1 + string field_2 +} +TABLE_3 { + int id PK + int field_0 + float field_1 + int field_2 + string field_3 + int field_4 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + string field_2 + float field_3 + bool field_4 +} +TABLE_5 { + int id PK + string field_0 + bool field_1 + bool field_2 + string field_3 +} +TABLE_6 { + int id PK + bool field_0 + string field_1 + float field_2 + int field_3 + string field_4 +} +TABLE_0 ||--o{ TABLE_1 : manages +TABLE_1 ||--|{ TABLE_2 : contains +TABLE_2 ||--|{ TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : owns +TABLE_4 ||--|{ TABLE_5 : manages +TABLE_5 ||--|| TABLE_6 : has",output/793.pintora.png +Write a Gantt chart with task dependencies,"gantt +title Sprint Planning +dateFormat YYYY-MM-DD +section Backend +""Design API"" : api-design, 2024-02-01, 5d +""Implement API"" : api-impl, after api-design, 10d +""API Testing"" : after api-impl, 5d +section Frontend +""UI Mockups"" : ui-design, 2024-02-01, 7d +""Implement UI"" : after ui-design, 14d +section Integration +""Integration Testing"" : after api-impl, 7d",output/937.pintora.png +Create an activity diagram with parallel processing,"activityDiagram +title: Parallel Order Processing +start +:Receive order; +fork + :Validate payment; +forkagain + :Check inventory; +forkagain + :Calculate shipping; +endfork +:Confirm order; +:Send notification; +end",output/927.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/642.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + int field_2 + datetime field_3 + int field_4 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 + bool field_2 + bool field_3 + datetime field_4 +} +TABLE_0 ||--|| TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : manages",output/652.pintora.png +Design an Entity Relationship diagram. Include about 12 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates",output/371.pintora.png +Design an Entity Relationship diagram. Include about 8 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates +Ent3 ||--|{ Ent4 : relates +Ent4 ||--|{ Ent5 : relates",output/209.pintora.png +Create a sequence diagram showing interaction between participants. Include about 5 elements.,"sequenceDiagram +autonumber +P0-->>P1: msg_91 +P0->>P1: msg_93 +P0->>P1: msg_29 +P0-->>P1: msg_31 +P1->>P0: msg_63",output/361.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 *-- Class2 +Class2 <|-- Class3",output/219.pintora.png +Write a component diagram showing a system with 7 components distributed across packages.,"componentDiagram +package ""System A"" { + [Comp0] + [Comp1] + [Comp2] +} +package ""System B"" { + [Comp3] + [Comp4] + [Comp5] + [Comp6] +} +() HTTP +() DB_Conn +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5] +[Comp5] --> [Comp6] +[Comp0] --> HTTP +[Comp6] --> DB_Conn",output/524.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + float field_1 + int field_2 + int field_3 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + string field_2 +} +TABLE_2 { + int id PK + datetime field_0 + int field_1 + string field_2 + float field_3 +} +TABLE_3 { + int id PK + float field_0 + int field_1 +} +TABLE_4 { + int id PK + int field_0 + datetime field_1 +} +TABLE_5 { + int id PK + float field_0 + bool field_1 + string field_2 + string field_3 +} +TABLE_6 { + int id PK + bool field_0 + int field_1 + float field_2 + float field_3 + float field_4 +} +TABLE_7 { + int id PK + datetime field_0 + bool field_1 + bool field_2 + string field_3 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : manages +TABLE_3 }|--|| TABLE_4 : manages +TABLE_4 }|--|| TABLE_5 : uses +TABLE_5 ||--|{ TABLE_6 : owns +TABLE_6 }|--|| TABLE_7 : owns",output/534.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 + bool field_2 +} +TABLE_1 { + int id PK + datetime field_0 + bool field_1 + datetime field_2 + datetime field_3 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 + datetime field_2 + datetime field_3 +} +TABLE_4 { + int id PK + float field_0 + int field_1 + bool field_2 +} +TABLE_5 { + int id PK + bool field_0 + datetime field_1 + string field_2 + int field_3 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : manages +TABLE_3 ||--|| TABLE_4 : manages +TABLE_4 }|--|| TABLE_5 : owns",output/546.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +end",output/556.pintora.png +Schedule tasks using a Gantt chart. Include about 11 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 10d +""Task 2"" : 2024-01-20, 8d",output/313.pintora.png +Create a sequence diagram showing interaction between participants. Include about 14 elements.,"sequenceDiagram +autonumber +P3->>P1: msg_86 +P0-->>P2: msg_52 +P0-->>P3: msg_27 +P0-->>P1: msg_30 +P0->P2: msg_73 +P1->>P3: msg_84 +P3->P2: msg_43 +P3->P1: msg_100 +P3-->P1: msg_5 +P0->>P3: msg_50 +P1->P3: msg_13 +P0->P3: msg_25 +P1->P2: msg_11 +P2-->>P0: msg_65",output/303.pintora.png +Create an advanced sequence diagram with complex interactions.,"sequenceDiagram +autonumber +participant [ ServiceA] +participant [ ServiceD] +participant [ ServiceE] +participant [ ServiceF] +ServiceB->>ServiceF: Query 0 +loop Retry + ServiceC-->ServiceB: Validate + ServiceB-->>ServiceC: Response +end +loop Retry + ServiceF-xServiceE: Process event + ServiceE-->>ServiceF: Response +end +@note right of ServiceB: Validating +ServiceB-->ServiceE: Validate +ServiceE->ServiceB: Query 4 +ServiceE-xServiceB: Request 5 +ServiceF-->>ServiceA: Update 6 +ServiceA-->>ServiceF: Fetch data +ServiceF-xServiceE: Request 8 +ServiceF->>ServiceB: Query 9 +par Parallel processing + ServiceD-->>ServiceA: Task A +and + ServiceD-->>ServiceB: Task B +end",output/894.pintora.png +Write a Pintora diagram: visualize a complex graph with dot diagram.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""circle"", bgcolor=""#e3f2fd""] + subgraph cluster_0 { + label=""Group A"" + a0 [label=""Node a0""] + a1 [label=""Node a1""] + a2 [label=""Node a2""] + a3 [label=""Node a3""] + } + subgraph cluster_1 { + label=""Group B"" + b0 [label=""Node b0""] + b1 [label=""Node b1""] + } + a1 -- a0 [color=""green""] + a1 -- b1 + a0 -- a1 [color=""blue""] + b1 -- a3 + a3 -- a1 + a2 -- b0 [color=""purple""] + a2 -- b1 + b1 -- a3 [color=""purple""] + a3 -- b0 [color=""blue""] + a1 -- b0 +}",output/884.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Action 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Action 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Action 6; +end",output/620.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + float field_1 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 +} +TABLE_2 { + int id PK + float field_0 + string field_1 + datetime field_2 + int field_3 + string field_4 +} +TABLE_3 { + int id PK + bool field_0 + int field_1 + int field_2 + datetime field_3 +} +TABLE_4 { + int id PK + int field_0 + float field_1 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 + string field_2 + string field_3 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : uses +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 ||--|{ TABLE_5 : owns",output/758.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +:Process 7; +end",output/630.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + datetime field_1 + float field_2 +} +TABLE_1 { + int id PK + string field_0 + float field_1 + datetime field_2 + datetime field_3 +} +TABLE_2 { + int id PK + float field_0 + float field_1 +} +TABLE_3 { + int id PK + datetime field_0 + float field_1 +} +TABLE_4 { + int id PK + int field_0 + bool field_1 + string field_2 +} +TABLE_5 { + int id PK + bool field_0 + bool field_1 + bool field_2 + datetime field_3 +} +TABLE_6 { + int id PK + float field_0 + bool field_1 +} +TABLE_0 }|--|| TABLE_1 : manages +TABLE_1 ||--|{ TABLE_2 : contains +TABLE_2 ||--o{ TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : contains +TABLE_4 ||--o{ TABLE_5 : owns +TABLE_5 ||--|{ TABLE_6 : owns",output/748.pintora.png +Write an activity diagram with @bindClass,"@pre +@style { + .highlight { + actionBackground: #ff6b6b; + textColor: #ffffff; + } +} +@endpre +activityDiagram +start +:Normal action; +:Important action; +@bindClass action-1 highlight +end",output/955.pintora.png +Write a DOT undirected graph,"dotDiagram +graph Network { + bgcolor=""#f0f0f0"" + node [bgcolor=""#aaddff""] + + server1 -- switch1 + server2 -- switch1 + server3 -- switch2 + switch1 -- router + switch2 -- router + router -- firewall + firewall -- internet +}",output/945.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +participant Service_3 +participant Service_4 +Service_4->>Service_3: Message 267 +Service_0-xService_4: Message 642 +Service_3->>Service_2: Message 410 +Service_0-->Service_4: Message 518 +Service_2-->>Service_3: Message 137 +loop Loop check + Service_4-->Service_0: Message 496 +end +Service_0->>Service_4: Message 633 +Service_1->Service_3: Message 298 +Service_2->Service_0: Message 181 +Service_3->>Service_0: Message 308",output/699.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n4 -> n5 + n5 -> n3 + n3 -> n0 + n3 -> n5 + n0 -> n3 + n3 -> n4 + n5 -> n4 + n2 -> n4 +}",output/689.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +*** Subitem 1.2 +**** Detail 1.2.1 +** Idea 2 +*** Subitem 2.0",output/56.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +participant Service_1 +Service_1-xService_0: Message 146 +Service_0->>Service_1: Message 810 +Service_0-xService_1: Message 823 +Service_1-->Service_0: Message 950 +Service_0-->>Service_1: Message 653 +Service_1-->>Service_0: Message 331 +Service_0-->>Service_1: Message 813 +Service_1-xService_0: Message 755 +Service_0-xService_1: Message 315 +Service_1-->Service_0: Message 468 +alt Condition + Service_0-xService_1: Message 869 +else Other case + Service_1-->>Service_0: Response +end +Service_0->Service_1: Message 610",output/487.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates",output/46.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n0 -> n1 + n0 -> n4 + n1 -> n2 + n3 -> n4 + n0 -> n1 + n3 -> n4 +}",output/497.pintora.png +Create a complex sequence diagram with loops and alts,"sequenceDiagram +participant Client +participant Server +loop Retry +Client->>Server: Ping +alt Success +Server-->>Client: Pong +else Timeout +Server-->>Client: Error +end +end",output/1.pintora.png +Design an Entity Relationship diagram. Include about 12 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 }|--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates +Ent4 ||--o{ Ent5 : relates",output/70.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 10 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1",output/60.pintora.png +Write a class diagram for a repository pattern,"classDiagram +class IRepository { + <> + +getById(id) T + +getAll() List~T~ + +add(entity) void + +update(entity) void + +delete(id) void +} +class UserRepository { + -DbContext context + +getById(id) User + +getAll() List~User~ + +add(user) void + +findByEmail(email) User +} +class OrderRepository { + -DbContext context + +getById(id) Order + +getAll() List~Order~ + +findByUser(userId) List~Order~ +} +IRepository <|.. UserRepository +IRepository <|.. OrderRepository",output/973.pintora.png +Model an object-oriented system with a class diagram. Include about 5 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 <|-- Class3 +Class3 o-- Class4 +Class4 o-- Class5",output/192.pintora.png +Write a component diagram for a message queue architecture,"componentDiagram +title: Message Queue Architecture +package ""Producers"" { + [Order Service] + [Notification Service] +} +package ""Message Broker"" { + [RabbitMQ] + () ""Exchange"" + () ""Queue"" +} +package ""Consumers"" { + [Email Worker] + [SMS Worker] + [Analytics Worker] +} +[Order Service] --> ""Exchange"" +[Notification Service] --> ""Exchange"" +""Exchange"" --> ""Queue"" +""Queue"" --> [Email Worker] +""Queue"" --> [SMS Worker] +""Queue"" --> [Analytics Worker]",output/963.pintora.png +Create a sequence diagram showing interaction between participants. Include about 7 elements.,"sequenceDiagram +autonumber +P1-->P3: msg_89 +P2->>P3: msg_31 +P2-->>P0: msg_12 +P2-->P0: msg_86 +P0-->P3: msg_78 +P0->>P1: msg_41 +P0-->P1: msg_98",output/182.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +participant Service_3 +@note right of Service_4: Note processing +Service_4-->Service_3: Message 287 +loop Loop check + Service_2->Service_3: Message 308 +end +Service_1->Service_0: Message 450 +Service_4-->>Service_0: Message 471 +Service_0->Service_2: Message 913 +Service_4->>Service_0: Message 814 +@note right of Service_1: Note processing +Service_1->>Service_0: Message 225 +Service_3-->>Service_0: Message 719 +Service_4-->Service_3: Message 671 +Service_3-xService_1: Message 359 +@note right of Service_3: Note processing +Service_3->Service_1: Message 825 +loop Loop check + Service_1->>Service_3: Message 902 +end +loop Loop check + Service_4->Service_0: Message 721 +end",output/606.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n0 -> n2 + n0 -> n2 + n3 -> n6 + n2 -> n4 + n1 -> n6 + n6 -> n4 + n5 -> n3 +}",output/616.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + bool field_1 + float field_2 + datetime field_3 + int field_4 +} +TABLE_1 { + int id PK + datetime field_0 + float field_1 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 +} +TABLE_0 ||--|| TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : contains",output/560.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""diamond"", label=""Node n9""] + n10 [shape=""circle"", label=""Node n10""] + n1 -> n3 + n5 -> n0 + n0 -> n8 + n6 -> n5 + n6 -> n9 + n5 -> n8 + n2 -> n5 + n2 -> n9 + n8 -> n3 + n4 -> n1 + n3 -> n7 +}",output/418.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +:Process 2; +:Action 3; +:Process 4; +:Action 5; +:Process 6; +:Action 7; +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +:Process 9; +end",output/570.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +** Feature 1 +*** Subitem 1.0",output/408.pintora.png +Map out a process flow using an activity diagram. Include about 11 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +end",output/335.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 5d +""Task 2"" : 2024-01-12, 8d +""Task 3"" : 2024-01-20, 8d +""Task 4"" : 2024-01-28, 3d +""Task 5"" : 2024-01-31, 7d",output/325.pintora.png +Schedule tasks using a Gantt chart. Include about 7 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 8d +""Task 2"" : 2024-01-13, 9d +""Task 3"" : 2024-01-22, 10d",output/357.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1-->>P0: msg_79 +P0-->>P1: msg_32 +P1-->P0: msg_26 +P1-->P0: msg_88 +P0->>P1: msg_82",output/347.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +alt Condition + Service_0-xService_1: Message 935 +else Other case + Service_1-->>Service_0: Response +end +Service_1->Service_0: Message 782 +alt Condition + Service_0-->Service_1: Message 927 +else Other case + Service_1-->>Service_0: Response +end +Service_0-->Service_1: Message 850 +Service_0-->Service_1: Message 481 +Service_1-->>Service_0: Message 485",output/502.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + bool field_1 +} +TABLE_1 { + int id PK + int field_0 + bool field_1 +} +TABLE_2 { + int id PK + float field_0 + float field_1 + bool field_2 +} +TABLE_0 ||--|| TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : has",output/512.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +end",output/664.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +Service_1->Service_0: Message 412 +alt Condition + Service_0->>Service_1: Message 372 +else Other case + Service_1-->>Service_0: Response +end +@note right of Service_1: Note processing +Service_1-xService_0: Message 103 +Service_0->Service_1: Message 141 +Service_1-xService_0: Message 134 +Service_0->>Service_1: Message 826 +Service_0-->>Service_1: Message 246 +Service_1-->>Service_0: Message 499 +Service_1-->>Service_0: Message 966 +Service_1-xService_0: Message 284 +@note right of Service_1: Note processing +Service_1-->Service_0: Message 371 +alt Condition + Service_0->Service_1: Message 866 +else Other case + Service_1-->>Service_0: Response +end +Service_1->>Service_0: Message 182 +Service_1-xService_0: Message 177 +alt Condition + Service_0-->>Service_1: Message 905 +else Other case + Service_1-->>Service_0: Response +end",output/674.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n3 -> n4 + n7 -> n5 + n4 -> n5 + n0 -> n7 + n6 -> n2 + n6 -> n5 + n7 -> n3 + n4 -> n7 + n0 -> n6 + n5 -> n2 + n0 -> n3 + n6 -> n5 +}",output/149.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n2 -> n0 + n0 -> n2 + n0 -> n1 + n1 -> n2 + n2 -> n0 + n1 -> n2 + n1 -> n3 + n1 -> n2 + n0 -> n1 + n0 -> n1 + n0 -> n2 + n1 -> n2 + n1 -> n3 +}",output/159.pintora.png +Create a sequence diagram with colored groups and loops,"sequenceDiagram +@param loopLineColor #79caf1 +@param actorBackground #61afef +participant Client +participant Server +loop #88bbf4 Retry mechanism + Client->>Server: Request + alt #ccdd77 Success + Server-->>Client: 200 OK + else #ee776f Error + Server-->>Client: 500 Error + end +end",output/911.pintora.png +Design a comprehensive Entity Relationship diagram.,"erDiagram +ORDER { + int order_id PK + text description + float email + float quantity + int address +} +SHIPMENT { + int shipment_id PK + datetime price + bool phone + bool email FK +} +USER { + int user_id PK + string email FK + text email +} +CATEGORY { + int category_id PK + datetime phone + int description + datetime date +} +INVOICE { + int invoice_id PK + datetime phone + float email + datetime phone + string quantity +} +PRODUCT { + int product_id PK + float price + text date + float phone + datetime address + int name +} +ORDER ||--o{ USER : references +SHIPMENT }o--o{ PRODUCT : references +USER ||--|| INVOICE : references +CATEGORY ||--|{ PRODUCT : belongs to +INVOICE }|..|{ PRODUCT : has",output/869.pintora.png +Write a Pintora diagram: map a complex business process with activity diagram.,"activityDiagram +start +partition Validation { + if (Condition 0?) then (yes) + :Action True 0; + else (no) + :Action False 0; + endif + :Step 1; + @note right: Important step 2 + :Critical action 2; + :Step 3; + switch (Type 4?) + case (A) + :Handle A4; + case (B) + :Handle B4; + endswitch + :Step 5; +end",output/901.pintora.png +Build a detailed component architecture diagram.,"componentDiagram +node ""Server Farm"" { + [Comp0_0] + [Comp0_1] + () I0 +} +node ""Cluster"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + [Comp1_3] +} +package ""Backend"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] +} +database ""Persistence"" { + [Comp3_0] + [Comp3_1] + [Comp3_2] +} +I0 ..|> [Comp2_0] +[Comp1_0] ..|> [Comp0_1] +[Comp0_0] --> [Comp2_2] +[Comp2_1] ..|> [Comp2_0] +I0 -- [Comp1_0] +[Comp3_2] -- [Comp2_0] +[Comp3_0] ..|> I0 +[Comp3_2] ..|> [Comp0_1] +[Comp2_1] ..> [Comp1_1] +[Comp0_0] -- [Comp1_2] +[Comp1_0] -- [Comp3_1] +[Comp1_1] --> [Comp3_0] +I0 -- [Comp0_1] +[Comp3_1] -- [Comp1_1] +[Comp2_0] --> [Comp1_0] +[Comp3_0] ..> [Comp1_0] +[Comp1_0] ..> [Comp1_2] +[Comp2_2] ..|> [Comp1_1] +[Comp1_3] ..> [Comp2_2]",output/879.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +:step_6; +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +end",output/296.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Idea 1 +*** Subitem 1.0 +** Idea 2 +*** Subitem 2.0 +*** Subitem 2.1 +** Feature 3 +*** Subitem 3.0 +*** Subitem 3.1",output/286.pintora.png +Visualize a graph structure using DOT syntax. Include about 8 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n3 -> n2 + n2 -> n3 + n1 -> n0 + n2 -> n3 + n1 -> n0 + n3 -> n2 + n3 -> n0 + n2 -> n0 +}",output/12.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +:Process 5; +:Action 6; +:Process 7; +end",output/427.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + string field_1 + float field_2 + datetime field_3 +} +TABLE_1 { + int id PK + string field_0 + bool field_1 + float field_2 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 + string field_2 + bool field_3 + bool field_4 +} +TABLE_3 { + int id PK + float field_0 + string field_1 +} +TABLE_4 { + int id PK + int field_0 + int field_1 +} +TABLE_5 { + int id PK + float field_0 + int field_1 +} +TABLE_0 ||--|{ TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : uses +TABLE_2 ||--|| TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : contains +TABLE_4 ||--|{ TABLE_5 : has",output/437.pintora.png +Create a sequence diagram showing interaction between participants. Include about 14 elements.,"sequenceDiagram +autonumber +P1-->>P0: msg_24 +P0->>P1: msg_57 +P0->P1: msg_60 +P0->>P1: msg_87 +P0-->>P1: msg_60 +P0->P1: msg_9 +P1->>P0: msg_79 +P1-->P0: msg_31 +P1->>P0: msg_10 +P0->P1: msg_75 +P0-->P1: msg_70 +P1->>P0: msg_17 +P1->>P0: msg_52 +P0->P1: msg_9",output/272.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n3 -> n1 + n5 -> n2 + n5 -> n0 + n2 -> n4 + n5 -> n4 +}",output/262.pintora.png +Design an Entity Relationship diagram. Include about 9 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates",output/114.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2-->>P1: msg_1 +P1-->>P3: msg_8 +P0-->>P2: msg_11 +P1-->>P2: msg_51 +P1->>P2: msg_6 +P3->>P2: msg_29 +P0-->P2: msg_15 +P0->>P1: msg_80 +P1-->P0: msg_86 +P0->P3: msg_45 +P2-->P0: msg_37 +P0->>P2: msg_48 +P0->P2: msg_78 +P1->P3: msg_35 +P1->P2: msg_41",output/104.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +:Process 5; +end",output/639.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +participant Service_0 +participant Service_2 +Service_2-->Service_0: Message 600 +Service_1-xService_0: Message 290 +Service_1-xService_2: Message 806 +alt Condition + Service_2-->Service_1: Message 686 +else Other case + Service_1-->>Service_2: Response +end +Service_0-->Service_1: Message 247 +alt Condition + Service_0-xService_2: Message 525 +else Other case + Service_2-->>Service_0: Response +end +@note right of Service_2: Note processing +Service_2->Service_1: Message 260",output/741.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +participant Service_2 +Service_1-xService_0: Message 478 +Service_0-xService_3: Message 403 +Service_1->Service_0: Message 173 +Service_0-xService_2: Message 253 +Service_3->Service_0: Message 576 +Service_3-->>Service_4: Message 129 +alt Condition + Service_2->Service_4: Message 553 +else Other case + Service_4-->>Service_2: Response +end +@note right of Service_0: Note processing +Service_0->Service_3: Message 806 +alt Condition + Service_2->Service_0: Message 867 +else Other case + Service_0-->>Service_2: Response +end +Service_2->>Service_0: Message 905 +Service_0-->>Service_4: Message 415",output/629.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n11 [shape=""diamond"", label=""Node n11""] + n0 -> n10 + n1 -> n2 + n4 -> n11 + n9 -> n7 + n6 -> n0 + n11 -> n9 + n10 -> n1 + n10 -> n5 + n9 -> n5 + n6 -> n11 + n8 -> n2 + n5 -> n0 +}",output/751.pintora.png +Build a detailed component architecture diagram. Use advanced syntax features.,"componentDiagram +title: Cloud Architecture +cloud ""GCP"" { + [Comp0_0] + [Comp0_1] + () I0 +} +package ""Frontend"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + [Comp1_3] + () I1 +} +database ""Data Store"" { + [Comp2_0] + [Comp2_1] +} +[Comp1_3] ..> [Comp2_1] +[Comp2_1] ..> [Comp1_2] +[Comp2_0] --> [Comp1_1] +[Comp0_0] -- [Comp2_0] +[Comp1_2] -- [Comp2_1] +[Comp1_0] ..> [Comp2_0] +[Comp0_1] -- [Comp0_0] +[Comp1_0] -- I1 +[Comp2_0] --> I0 +[Comp1_1] -- [Comp2_0] +I1 ..> [Comp1_2] +[Comp2_0] ..|> I1 +I0 ..|> [Comp1_3] +[Comp0_1] -- I0 +[Comp0_1] ..|> [Comp0_0] +[Comp2_0] -- [Comp1_1] +[Comp0_1] ..> [Comp1_1]",output/834.pintora.png +Map a complex business process with activity diagram.,"activityDiagram +start +if (Condition 0?) then (yes) + :Action True 0; +else (no) + :Action False 0; +endif +fork + :Parallel Task A1; +forkagain + :Parallel Task B1; +endfork +if (Condition 2?) then (yes) + :Action True 2; +else (no) + :Action False 2; +endif +:Step 3; +if (Condition 4?) then (yes) + :Action True 4; +else (no) + :Action False 4; +endif +:Step 5; +while (Check 6?) is (yes) + :Process 6; +endwhile (done) +:Step 7; +:Step 8; +:Step 9; +@note right: Important step 10 +:Critical action 10; +} +end",output/824.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n6 -> n7 + n5 -> n7 + n3 -> n9 + n1 -> n4 + n9 -> n8 + n6 -> n9 + n0 -> n5 + n3 -> n9 + n1 -> n8 + n7 -> n3 + n9 -> n5 + n9 -> n3 +}",output/680.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n11 [shape=""ellipse"", label=""Node n11""] + n9 -> n7 + n0 -> n1 + n9 -> n11 + n11 -> n10 + n1 -> n10 + n2 -> n4 + n8 -> n6 + n10 -> n1 + n6 -> n10 + n1 -> n11 + n9 -> n5 + n2 -> n4 +}",output/690.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n6 -> n5 + n3 -> n6 + n3 -> n1 + n3 -> n6 + n0 -> n3 + n3 -> n7 + n4 -> n1 + n8 -> n1 + n6 -> n5 + n2 -> n0 +}",output/584.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +participant Service_2 +participant Service_3 +Service_3->Service_4: Message 351 +Service_1->>Service_4: Message 943 +alt Condition + Service_2->>Service_0: Message 322 +else Other case + Service_0-->>Service_2: Response +end +@note right of Service_0: Note processing +Service_0-->Service_3: Message 400 +Service_2->>Service_1: Message 979 +Service_2-->>Service_1: Message 230 +Service_4->>Service_2: Message 713 +alt Condition + Service_1->>Service_4: Message 603 +else Other case + Service_4-->>Service_1: Response +end +alt Condition + Service_3-->Service_2: Message 370 +else Other case + Service_2-->>Service_3: Response +end +loop Loop check + Service_4-->>Service_0: Message 370 +end +loop Loop check + Service_3->Service_0: Message 454 +end",output/594.pintora.png +Build a detailed component architecture diagram.,"componentDiagram +title: Microservices +package ""Services"" { + [Comp0_0] + [Comp0_1] +} +package ""Services"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + [Comp1_3] +} +[Comp1_0] --> [Comp1_2] +[Comp1_1] -- [Comp1_0] +[Comp0_1] --> [Comp0_0] +[Comp1_2] --> [Comp1_0] +[Comp0_1] --> [Comp1_1] +[Comp1_2] ..|> [Comp1_0] +[Comp1_0] --> [Comp1_2]",output/856.pintora.png +Create an advanced sequence diagram with complex interactions. Use advanced syntax features.,"sequenceDiagram +title: API Interaction +autonumber +participant [ ServiceA] +participant [ ServiceB] +participant [ ServiceE] +participant [ ServiceF] +ServiceB->>ServiceF: Validate +par Parallel processing + ServiceB-->>ServiceA: Task A +and + ServiceB-->>ServiceB: Task B +end +ServiceD-->ServiceA: Validate +alt Valid + ServiceD->>ServiceA: Query 3 + ServiceA-->>ServiceD: OK +else Error + ServiceA-->>ServiceD: Error code +end +alt Valid + ServiceB-xServiceF: Query 4 + ServiceF-->>ServiceB: OK +else Error + ServiceF-->>ServiceB: Error code +end +par Parallel processing + ServiceA-->ServiceA: Task A +and + ServiceA-->ServiceB: Task B +end +loop Batch process + ServiceC-xServiceD: Validate + ServiceD-->>ServiceC: Response +end +alt Authenticated + ServiceE-xServiceB: Query 7 + ServiceB-->>ServiceE: OK +else Error + ServiceB-->>ServiceE: Error code +end +ServiceD->ServiceB: Process event",output/846.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +autonumber +participant Service_1 +participant Service_2 +loop Loop check + Service_2-->>Service_0: Message 104 +end +Service_1-->>Service_0: Message 590 +Service_0-->>Service_1: Message 867 +Service_0-xService_2: Message 505 +Service_2-xService_0: Message 943 +loop Loop check + Service_0->Service_2: Message 544 +end +alt Condition + Service_1-->Service_2: Message 844 +else Other case + Service_2-->>Service_1: Response +end +Service_1-->Service_2: Message 319 +Service_2-->>Service_0: Message 927 +Service_1->Service_0: Message 167 +Service_0->Service_2: Message 244 +alt Condition + Service_1-->Service_0: Message 901 +else Other case + Service_0-->>Service_1: Response +end +Service_2->Service_1: Message 814",output/723.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +:Process 4; +end",output/733.pintora.png +Create an activity diagram for batch processing,"activityDiagram +title: Batch Processing Job +start +:Load configuration; +:Connect to data source; +while (Has more batches?) is (yes) + :Read batch of records; + fork + :Transform records; + forkagain + :Validate records; + endfork + if (Validation passed?) then (yes) + :Write to destination; + :Update progress; + else (no) + :Log errors; + :Move to error queue; + endif +endwhile (no more) +:Generate report; +:Send notification; +end",output/997.pintora.png +Schedule tasks using a Gantt chart. Include about 8 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 8d +""Task 2"" : 2024-01-12, 7d +""Task 3"" : 2024-01-19, 5d",output/176.pintora.png +Create a sequence diagram with optional fragment,"sequenceDiagram +participant User +participant API +participant Cache +participant DB +User->>API: Request data +API->>Cache: Check cache +opt Cache hit + Cache-->>API: Cached data + API-->>User: Return cached +end +API->>DB: Query database +DB-->>API: Fresh data +API->>Cache: Update cache +API-->>User: Return data",output/987.pintora.png +Map out a process flow using an activity diagram. Include about 9 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +end",output/166.pintora.png +Model an object-oriented system with a class diagram. Include about 10 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 o-- Class3 +Class3 --> Class4",output/368.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +:step_9; +:step_10; +end",output/210.pintora.png +Map out a process flow using an activity diagram. Include about 10 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +end",output/378.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 *-- Class3 +Class3 --> Class4 +Class4 --> Class5",output/200.pintora.png +Schedule tasks using a Gantt chart. Include about 5 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 5d +""Task 2"" : 2024-01-15, 9d",output/94.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n3 -> n5 + n2 -> n4 + n0 -> n1 + n5 -> n3 + n4 -> n2 + n3 -> n0 + n0 -> n4 +}",output/445.pintora.png +Schedule tasks using a Gantt chart. Include about 5 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 3d +""Task 2"" : 2024-01-14, 8d +""Task 3"" : 2024-01-22, 10d +""Task 4"" : 2024-02-01, 2d +""Task 5"" : 2024-02-03, 5d",output/84.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +Service_1-->>Service_0: Message 607 +alt Condition + Service_0-xService_1: Message 290 +else Other case + Service_1-->>Service_0: Response +end +Service_0->>Service_1: Message 665 +Service_1->>Service_0: Message 360 +Service_0-xService_1: Message 875 +loop Loop check + Service_0->Service_1: Message 360 +end +Service_0-->>Service_1: Message 701 +loop Loop check + Service_1->Service_0: Message 904 +end +Service_0-->>Service_1: Message 152 +Service_1->Service_0: Message 725 +Service_1->>Service_0: Message 751",output/455.pintora.png +Schedule a project timeline with Gantt chart. Include nested structures.,"gantt +title Marketing Campaign +dateFormat YYYY-MM-DD +section Marketing +""Task Mar1"" : 2024-06-01, 12d +""Task Mar2"" : 2024-06-13, 4d +""Task Mar3"" : 2024-06-17, 5d +""Task Mar4"" : 2024-06-22, 13d +section Planning +""Task Pla1"" : 2024-07-05, 13d +""Task Pla2"" : 2024-07-18, 8d +""Task Pla3"" : 2024-07-26, 10d",output/898.pintora.png +Create a sequence diagram showing interaction between participants. Include about 13 elements.,"sequenceDiagram +autonumber +P3->P0: msg_12 +P1-->>P3: msg_84 +P3-->>P0: msg_24 +P3->P4: msg_45 +P0-->>P1: msg_18 +P2-->>P4: msg_52 +P1-->>P3: msg_67 +P2-->P4: msg_80 +P2-->>P4: msg_63 +P2->>P1: msg_35 +P3-->>P2: msg_57 +P1-->>P0: msg_23 +P2-->>P3: msg_49",output/101.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n1 -> n3 + n1 -> n4 + n2 -> n1 + n2 -> n3 + n2 -> n4 + n2 -> n0 + n1 -> n0 + n1 -> n2 + n1 -> n0 + n4 -> n2 +}",output/111.pintora.png +Model an object-oriented system with class diagram. Use advanced syntax features.,"classDiagram +title: Singleton Pattern +class FactoryA { + -List~T~ attr0 + ~boolean attr1 + -method0() boolean + #method1() string + -method2() string +} +class ManagerB { + ~boolean attr0 + #List~T~ attr1 + ~method0() string + -method1() boolean + #method2() string +} +class RepositoryC { + <> + -List~T~ attr0 + #List~T~ attr1 + ~string attr2 + +method0() void +} +class ObserverD { + <> + +boolean attr0 + -method0() void + #method1() string + -{static} method2() boolean +} +class HandlerE { + <> + ~List~T~ attr0 + -boolean attr1 + #List~T~ attr2 + ~method0() T + ~method1() string + +{static} method2() void +} +class HandlerF { + +boolean attr0 + +boolean attr1 + -method0() void + -{static} method1() string +} +class RepositoryG { + +int attr0 + #int attr1 + -int attr2 + #string attr3 + +method0() string + -method1() string + #{static} method2() boolean +} +FactoryA o-- HandlerF +ManagerB *-- RepositoryC +RepositoryC --> RepositoryG +ObserverD <|-- HandlerE +HandlerE <|.. HandlerF +HandlerF <|.. RepositoryG",output/888.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/754.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +:Action 7; +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/744.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +autonumber +participant Service_1 +Service_1->Service_0: Message 868 +Service_0->>Service_1: Message 515 +Service_1->Service_0: Message 714 +Service_0-->Service_1: Message 694 +Service_1->>Service_0: Message 426 +loop Loop check + Service_0->Service_1: Message 315 +end +Service_1-->Service_0: Message 378 +Service_1->>Service_0: Message 711 +Service_1->>Service_0: Message 324 +Service_0->Service_1: Message 770",output/432.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + bool field_1 + datetime field_2 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + datetime field_2 + datetime field_3 + float field_4 +} +TABLE_2 { + int id PK + int field_0 + string field_1 +} +TABLE_3 { + int id PK + float field_0 + string field_1 +} +TABLE_4 { + int id PK + string field_0 + int field_1 +} +TABLE_5 { + int id PK + float field_0 + string field_1 + int field_2 +} +TABLE_6 { + int id PK + float field_0 + float field_1 + bool field_2 + int field_3 + string field_4 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : owns +TABLE_2 }|--|| TABLE_3 : has +TABLE_3 ||--|{ TABLE_4 : manages +TABLE_4 }|--|| TABLE_5 : uses +TABLE_5 ||--|| TABLE_6 : uses",output/422.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 14 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +*** Subitem 1.2 +** Idea 2 +*** Subitem 2.0 +*** Subitem 2.1",output/267.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1",output/277.pintora.png +Create a sequence diagram for OAuth2 authorization flow,"sequenceDiagram +title: OAuth2 Authorization Code Flow +participant User +participant App +participant AuthServer +participant ResourceServer +User->>App: Click login +App->>AuthServer: Redirect to authorize +AuthServer->>User: Show login form +User->>AuthServer: Enter credentials +AuthServer->>App: Authorization code +App->>AuthServer: Exchange code for token +AuthServer-->>App: Access token + Refresh token +App->>ResourceServer: Request with token +ResourceServer-->>App: Protected resource +App-->>User: Show data",output/959.pintora.png +Design an advanced sequence diagram with complex interactions.,"sequenceDiagram +participant [ ServiceD] +ServiceD->ServiceA: Process event +ServiceB->>ServiceC: Fetch data +loop Poll + ServiceC-->>ServiceB: Update 2 + ServiceB-->>ServiceC: Response +end +ServiceD->ServiceC: Validate +ServiceA-xServiceB: Query 4 +ServiceB-xServiceA: Update 5 +ServiceC-xServiceB: Process event +loop Batch process + ServiceB->ServiceC: Update 7 + ServiceC-->>ServiceB: Response +end +@note right of ServiceC: Validating +ServiceC-xServiceA: Request 8 +ServiceC-xServiceA: Process event +ServiceA-xServiceC: Request 10 +activate ServiceB +ServiceA->>ServiceB: Query 11 +deactivate ServiceB +loop Retry + ServiceB->ServiceC: Query 12 + ServiceC-->>ServiceB: Response +end",output/821.pintora.png +Write a class diagram with cardinality labels,"classDiagram +class Company { + +string name + +string address +} +class Department { + +string name + +int budget +} +class Employee { + +string name + +string title +} +Company ""1"" *-- ""many"" Department : has +Department ""1"" *-- ""1..*"" Employee : employs +Employee ""many"" --> ""1"" Department : works in",output/949.pintora.png +Visualize a complex graph with DOT diagram.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""plaintext"", bgcolor=""#e3f2fd""] + subgraph cluster_0 { + label=""Group A"" + a0 [label=""Node a0""] + a1 [label=""Node a1""] + a2 [label=""Node a2""] + } + subgraph cluster_1 { + label=""Group B"" + b0 [label=""Node b0""] + b1 [label=""Node b1""] + b2 [label=""Node b2""] + b3 [label=""Node b3""] + } + b2 -- a1 + b2 -- b0 + b1 -- a2 + a2 -- b0 + b0 -- b3 [color=""purple""] + a0 -- a1 + b2 -- b1 + a0 -- b1 + b3 -- a0 + a2 -- b3 + a0 -- b0 + b0 -- a1 + b0 -- b2 +}",output/831.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n0 -> n3 + n1 -> n3 + n3 -> n0 + n4 -> n3 + n1 -> n3 + n3 -> n0 +}",output/695.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n0 -> n7 + n2 -> n0 + n6 -> n0 + n3 -> n5 + n2 -> n3 + n5 -> n6 + n6 -> n2 + n7 -> n5 +}",output/685.pintora.png +Design a detailed hierarchical mind map.,"mindmap +* Product Strategy +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +**** Detail A.1.2 +*** Subtopic A.2 +*** Subtopic A.3 +*** Subtopic A.4 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +*** Subtopic B.3 +*** Subtopic B.4 +** Topic C +*** Subtopic C.1 +**** Detail C.1.1 +*** Subtopic C.2 +**** Detail C.2.1 +*** Subtopic C.3 +**** Detail C.3.1 +** Topic D +*** Subtopic D.1 +**** Detail D.1.1 +**** Detail D.1.2 +**** Detail D.1.3 +*** Subtopic D.2 +**** Detail D.2.1 +*** Subtopic D.3 +**** Detail D.3.1 +*** Subtopic D.4 +** Topic E +*** Subtopic E.1 +*** Subtopic E.2 +**** Detail E.2.1",output/843.pintora.png +Map a complex business process with activity diagram. Use advanced syntax features.,"activityDiagram +start +:Step 0; +@note right: Important step 1 +:Critical action 1; +fork + :Parallel Task A2; +forkagain + :Parallel Task B2; +endfork +fork + :Parallel Task A3; +forkagain + :Parallel Task B3; +endfork +@note right: Important step 4 +:Critical action 4; +:Step 5; +while (Check 6?) is (yes) + :Process 6; +endwhile (done) +:Step 7; +fork + :Parallel Task A8; +forkagain + :Parallel Task B8; +endfork +switch (Type 9?) +case (A) + :Handle A9; +case (B) + :Handle B9; +endswitch +while (Check 10?) is (yes) + :Process 10; +endwhile (done) +end",output/853.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Action 2; +:Process 3; +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Action 6; +end",output/591.pintora.png +Design an Entity Relationship diagram. Include about 13 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 }|--|| Ent2 : relates",output/38.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Idea 1 +*** Subitem 1.0",output/28.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +:Process 4; +end",output/581.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 15 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Task 2 +*** Subitem 2.0 +*** Subitem 2.1 +**** Detail 2.1.1",output/205.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 12 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +** Idea 2 +*** Subitem 2.0 +*** Subitem 2.1 +**** Detail 2.1.1",output/215.pintora.png +Create a sequence diagram showing interaction between participants. Include about 8 elements.,"sequenceDiagram +autonumber +P1-->>P2: msg_92 +P0-->>P1: msg_42 +P1->P2: msg_51 +P2->P0: msg_3 +P1-->>P2: msg_1 +P2->>P0: msg_62 +P0-->>P2: msg_37 +P2->P0: msg_5",output/81.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n9 -> n1 + n1 -> n9 + n6 -> n3 + n3 -> n8 + n1 -> n6 + n2 -> n8 + n4 -> n1 + n7 -> n4 + n3 -> n9 + n6 -> n2 +}",output/528.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +fork + :Parallel 1 5; +forkagain + :Parallel 2 5; +endfork +:Process 6; +:Action 7; +end",output/450.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +end",output/538.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P4-->>P1: msg_42 +P2->>P4: msg_54 +P2-->>P1: msg_98 +P3-->>P4: msg_79 +P4->P3: msg_11 +P4->>P3: msg_54 +P4-->>P3: msg_60 +P4->>P2: msg_19",output/91.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + datetime field_1 + float field_2 +} +TABLE_1 { + int id PK + float field_0 + datetime field_1 + float field_2 + int field_3 +} +TABLE_2 { + int id PK + datetime field_0 + int field_1 + int field_2 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : uses",output/440.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 + datetime field_2 + float field_3 +} +TABLE_1 { + int id PK + bool field_0 + bool field_1 + datetime field_2 + float field_3 + datetime field_4 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 + float field_2 + datetime field_3 +} +TABLE_3 { + int id PK + float field_0 + datetime field_1 + float field_2 + int field_3 + string field_4 +} +TABLE_4 { + int id PK + int field_0 + float field_1 + string field_2 +} +TABLE_5 { + int id PK + int field_0 + string field_1 + string field_2 +} +TABLE_6 { + int id PK + int field_0 + int field_1 + float field_2 + int field_3 +} +TABLE_7 { + int id PK + float field_0 + bool field_1 + datetime field_2 + int field_3 +} +TABLE_0 ||--o{ TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 ||--|{ TABLE_3 : owns +TABLE_3 ||--o{ TABLE_4 : manages +TABLE_4 ||--|| TABLE_5 : contains +TABLE_5 ||--|| TABLE_6 : owns +TABLE_6 ||--|{ TABLE_7 : manages",output/736.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +autonumber +participant Service_2 +@note right of Service_1: Note processing +Service_1-->Service_0: Message 325 +Service_2-xService_1: Message 346 +@note right of Service_0: Note processing +Service_0-->>Service_1: Message 426 +Service_1->Service_0: Message 564 +Service_0-->>Service_2: Message 730 +loop Loop check + Service_0-->>Service_2: Message 144 +end +@note right of Service_1: Note processing +Service_1->Service_2: Message 174 +loop Loop check + Service_0->Service_2: Message 434 +end +alt Condition + Service_0-xService_2: Message 904 +else Other case + Service_2-->>Service_0: Response +end +Service_1->>Service_2: Message 652 +Service_0->>Service_2: Message 454 +Service_1-xService_0: Message 163 +Service_0-xService_2: Message 405 +Service_0-xService_1: Message 109 +Service_0-->Service_1: Message 473",output/726.pintora.png +Write an activity diagram with nested conditions,"activityDiagram +start +:Get user input; +if (Input valid?) then (yes) + if (User authenticated?) then (yes) + if (Has permission?) then (yes) + :Execute action; + else (no) + :Show permission denied; + endif + else (no) + :Redirect to login; + endif +else (no) + :Show validation error; +endif +end",output/982.pintora.png +Model an object-oriented system with a class diagram. Include about 5 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 o-- Class2 +Class2 --> Class3 +Class3 --> Class4",output/163.pintora.png +Write a mind map for DevOps practices,"mindmap +@param layoutDirection TB +* DevOps +** Culture +*** Collaboration +*** Continuous Improvement +*** Shared Responsibility +** Practices +*** CI/CD +*** Infrastructure as Code +*** Monitoring +** Tools +*** Jenkins +*** Docker +*** Kubernetes +*** Terraform",output/992.pintora.png +Model an object-oriented system with a class diagram. Include about 9 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 --> Class2 +Class2 o-- Class3 +Class3 --> Class4 +Class4 o-- Class5",output/173.pintora.png +Create a mind map for learning a programming language,"mindmap ++ Python Learning Path +++ Basics ++++ Variables ++++ Data Types ++++ Control Flow ++++ Functions +++ Intermediate ++++ OOP ++++ File I/O ++++ Error Handling ++++ Modules +-- Advanced +--- Decorators +--- Generators +--- Async/Await +--- Metaclasses +-- Libraries +--- NumPy +--- Pandas +--- Django +--- FastAPI",output/966.pintora.png +Map out a process flow using an activity diagram. Include about 12 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +:step_10; +:step_11; +end",output/187.pintora.png +Create a component diagram for a serverless architecture,"componentDiagram +title: Serverless Architecture +cloud ""AWS"" { + rectangle ""API Layer"" { + [API Gateway] + } + rectangle ""Compute"" { + [Lambda - Auth] + [Lambda - Users] + [Lambda - Orders] + } + database ""Storage"" { + [DynamoDB] + [S3] + } + rectangle ""Events"" { + [SNS] + [SQS] + } +} +[API Gateway] --> [Lambda - Auth] +[API Gateway] --> [Lambda - Users] +[API Gateway] --> [Lambda - Orders] +[Lambda - Users] --> [DynamoDB] +[Lambda - Orders] --> [DynamoDB] +[Lambda - Orders] --> [SNS] +[SNS] --> [SQS] +[Lambda - Orders] --> [S3]",output/976.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2 +Class2 <|-- Class3",output/197.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n4 -> n2 + n5 -> n1 + n4 -> n3 + n2 -> n0 + n0 -> n1 +}",output/65.pintora.png +Write a class diagram with inheritance,"classDiagram +class Animal +class Dog +class Cat +Animal <|-- Dog +Animal <|-- Cat",output/4.pintora.png +Draft a component diagram for system architecture.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] + [Comp4] + [Comp5] + [Comp6] + [Comp7] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5] +[Comp5] --> [Comp6] +[Comp6] --> [Comp7]",output/75.pintora.png +Visualize a graph structure using DOT syntax. Include about 9 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n1 -> n2 + n5 -> n3 + n5 -> n3 + n1 -> n3 + n1 -> n0 + n5 -> n6 + n2 -> n4 + n3 -> n4 + n6 -> n3 +}",output/399.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 10 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1 +** Feature 3 +*** Subitem 3.0 +*** Subitem 3.1 +**** Detail 3.1.1 +*** Subitem 3.2",output/389.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 + datetime field_3 + int field_4 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + int field_2 + bool field_3 +} +TABLE_2 { + int id PK + bool field_0 + int field_1 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 }|--|| TABLE_2 : uses",output/575.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""ellipse"", label=""Node n10""] + n11 [shape=""ellipse"", label=""Node n11""] + n11 -> n9 + n10 -> n6 + n5 -> n10 + n8 -> n11 + n4 -> n8 + n6 -> n9 + n1 -> n4 + n6 -> n2 + n11 -> n6 + n3 -> n0 + n3 -> n9 + n6 -> n2 + n8 -> n5 + n5 -> n0 +}",output/565.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 2d +""Task 2"" : 2024-01-09, 4d",output/320.pintora.png +Create a sequence diagram showing interaction between participants. Include about 12 elements.,"sequenceDiagram +autonumber +P1->P0: msg_45 +P0->P1: msg_38 +P0-->P1: msg_17 +P1-->P0: msg_21 +P1-->P0: msg_35 +P0-->>P1: msg_32 +P1-->P0: msg_40 +P1-->>P0: msg_1 +P1->>P0: msg_4 +P1->>P0: msg_14 +P0->P1: msg_89 +P0-->P1: msg_73",output/258.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0-->>P1: msg_39 +P1-->>P0: msg_82 +P1-->>P0: msg_58 +P1->P0: msg_43 +P0->>P1: msg_100 +P1-->>P0: msg_17",output/330.pintora.png +Create a sequence diagram showing interaction between participants. Include about 12 elements.,"sequenceDiagram +autonumber +P1-->>P0: msg_89 +P4->P1: msg_1 +P1->P4: msg_58 +P4->P2: msg_69 +P1-->P4: msg_27 +P1-->P3: msg_88 +P2-->>P1: msg_29 +P2->>P1: msg_57 +P1->P2: msg_92 +P3-->P4: msg_43 +P0->P2: msg_54 +P0->P1: msg_24",output/248.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +end",output/613.pintora.png +Create a sequence diagram with random interaction patterns involving 15 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_1-xService_0: Message 201 +loop Loop check + Service_0-xService_1: Message 926 +end +Service_1->Service_0: Message 509 +Service_1-->Service_0: Message 828 +Service_1-->>Service_0: Message 608 +Service_0-xService_1: Message 896 +Service_0-xService_1: Message 483 +Service_0->Service_1: Message 739 +@note right of Service_0: Note processing +Service_0-xService_1: Message 767 +Service_1-->Service_0: Message 468 +Service_1->>Service_0: Message 471 +Service_0->>Service_1: Message 719 +Service_1->Service_0: Message 296 +@note right of Service_1: Note processing +Service_1-xService_0: Message 758 +loop Loop check + Service_0-xService_1: Message 283 +end",output/603.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +participant Service_1 +Service_4->Service_1: Message 768 +alt Condition + Service_0-->Service_3: Message 643 +else Other case + Service_3-->>Service_0: Response +end +alt Condition + Service_2->Service_4: Message 772 +else Other case + Service_4-->>Service_2: Response +end +Service_3-->Service_1: Message 807 +loop Loop check + Service_0->Service_2: Message 826 +end +Service_3->>Service_2: Message 788",output/671.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +participant Service_0 +participant Service_2 +participant Service_3 +participant Service_4 +Service_3-->Service_4: Message 723 +@note right of Service_3: Note processing +Service_3-->>Service_2: Message 591 +@note right of Service_4: Note processing +Service_4->>Service_1: Message 117 +Service_2->>Service_4: Message 838 +Service_1-xService_3: Message 253 +Service_2-->Service_1: Message 744 +Service_1-->>Service_3: Message 498 +alt Condition + Service_4-->Service_0: Message 631 +else Other case + Service_0-->>Service_4: Response +end +@note right of Service_0: Note processing +Service_0->>Service_4: Message 135 +Service_2-xService_1: Message 352 +Service_2-xService_1: Message 168 +alt Condition + Service_1-->>Service_0: Message 773 +else Other case + Service_0-->>Service_1: Response +end +Service_2-xService_4: Message 876",output/709.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n1 -> n0 + n8 -> n6 + n2 -> n1 + n1 -> n4 + n8 -> n2 + n3 -> n6 + n1 -> n7 + n8 -> n0 +}",output/661.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + string field_1 + bool field_2 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + string field_2 + string field_3 + bool field_4 +} +TABLE_2 { + int id PK + string field_0 + string field_1 +} +TABLE_3 { + int id PK + float field_0 + datetime field_1 + string field_2 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 +} +TABLE_0 ||--o{ TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 ||--|{ TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : manages",output/719.pintora.png +Schedule tasks using a Gantt chart. Include about 5 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 5d +""Task 2"" : 2024-01-11, 2d +""Task 3"" : 2024-01-13, 8d +""Task 4"" : 2024-01-21, 2d +""Task 5"" : 2024-01-23, 9d",output/342.pintora.png +Create a sequence diagram showing interaction between participants. Include about 14 elements.,"sequenceDiagram +autonumber +P1->P0: msg_25 +P1-->P0: msg_68 +P1->P0: msg_36 +P0-->P1: msg_86 +P0->>P1: msg_33 +P0->P1: msg_96 +P1->>P0: msg_70 +P0-->P1: msg_89 +P1->>P0: msg_76 +P0-->P1: msg_43 +P1->>P0: msg_35 +P0->>P1: msg_75 +P0-->P1: msg_75 +P0-->P1: msg_31",output/352.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + string field_1 + bool field_2 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + bool field_2 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 + bool field_2 + bool field_3 + string field_4 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 + string field_2 + datetime field_3 +} +TABLE_4 { + int id PK + string field_0 + float field_1 + datetime field_2 + bool field_3 + int field_4 +} +TABLE_5 { + int id PK + int field_0 + float field_1 + string field_2 + datetime field_3 + string field_4 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : uses +TABLE_3 ||--|| TABLE_4 : contains +TABLE_4 }|--|| TABLE_5 : owns",output/517.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +participant Service_2 +Service_1-xService_2: Message 564 +Service_2-->Service_0: Message 535 +@note right of Service_2: Note processing +Service_2-->Service_1: Message 451 +Service_1-xService_0: Message 225 +Service_1-->>Service_0: Message 739 +Service_1->Service_0: Message 917 +alt Condition + Service_1-->Service_0: Message 597 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->>Service_1: Message 784",output/507.pintora.png +Schedule tasks using a Gantt chart. Include about 8 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 4d +""Task 2"" : 2024-01-11, 3d +""Task 3"" : 2024-01-14, 6d +""Task 4"" : 2024-01-20, 5d +""Task 5"" : 2024-01-25, 8d",output/283.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--o{ Ent2 : relates +Ent2 }|--|| Ent3 : relates",output/293.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +*** Subitem 1.1",output/17.pintora.png +Schedule a project timeline with Gantt chart.,"gantt +title Product Launch +dateFormat YYYY-MM-DD +section Testing +""Task Tes1"" : 2024-05-01, 18d +""Task Tes2"" : 2024-05-19, 21d +""Task Tes3"" : 2024-06-09, 21d +""Task Tes4"" : 2024-06-30, 15d +""Task Tes5"" : 2024-07-15, 15d +section Operations +""Task Ope1"" : 2024-07-30, 21d +""Task Ope2"" : 2024-08-20, 19d +""Milestone"" : milestone, 2024-09-09, 0d +""Task Ope3"" : 2024-09-08, 17d +section Development +""Task Dev1"" : 2024-09-25, 15d +""Task Dev2"" : 2024-10-10, 10d +""Task Dev3"" : 2024-10-20, 6d +section Marketing +""Task Mar1"" : 2024-10-26, 16d +""Task Mar2"" : 2024-11-11, 5d +""Task Mar3"" : 2024-11-16, 9d +""Milestone"" : milestone, 2024-12-02, 0d +""Task Mar4"" : 2024-11-25, 13d",output/904.pintora.png +Write a sequence diagram with multiline message text,"sequenceDiagram +Alice->>Bob: Hello!\nHow are you doing today? +Bob-->>Alice: I'm fine,\nthanks for asking! +Alice->>Bob: Great to hear!\nLet's meet later.",output/914.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +:Process 7; +end",output/796.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + datetime field_1 + bool field_2 + datetime field_3 +} +TABLE_1 { + int id PK + string field_0 + bool field_1 + string field_2 + float field_3 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 +} +TABLE_3 { + int id PK + string field_0 + float field_1 + float field_2 +} +TABLE_4 { + int id PK + int field_0 + string field_1 + float field_2 +} +TABLE_5 { + int id PK + int field_0 + int field_1 + int field_2 + string field_3 + float field_4 +} +TABLE_6 { + int id PK + int field_0 + float field_1 + float field_2 +} +TABLE_7 { + int id PK + bool field_0 + datetime field_1 + bool field_2 + bool field_3 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : uses +TABLE_3 }|--|| TABLE_4 : owns +TABLE_4 ||--|{ TABLE_5 : owns +TABLE_5 ||--|| TABLE_6 : uses +TABLE_6 ||--o{ TABLE_7 : contains",output/786.pintora.png +Create a component diagram with cloud and database groupings,"componentDiagram +cloud ""AWS Cloud"" { + [Load Balancer] + node ""EC2 Instances"" { + [App Server 1] + [App Server 2] + } +} +database ""RDS"" { + folder ""Primary"" { + [MySQL Primary] + } + folder ""Replica"" { + [MySQL Replica] + } +} +[Load Balancer] --> [App Server 1] +[Load Balancer] --> [App Server 2] +[App Server 1] --> [MySQL Primary] +[App Server 2] --> [MySQL Primary] +[MySQL Primary] ..> [MySQL Replica] : replication",output/922.pintora.png +Write a mind map using +/- side notation,"mindmap ++ Machine Learning +++ Supervised Learning ++++ Classification ++++ Regression +++ Unsupervised Learning ++++ Clustering ++++ Dimensionality Reduction +-- Deep Learning +--- Neural Networks +--- CNN +--- RNN +-- Reinfortic Learning +--- Q-Learning +--- Policy Gradient",output/932.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 2d +""Task 1"" : 2024-01-03, 4d +""Task 2"" : 2024-01-07, 9d +""Task 3"" : 2024-01-16, 8d +""Task 4"" : 2024-01-24, 3d +""Task 5"" : 2024-01-27, 3d",output/21.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n6 -> n5 + n0 -> n1 + n6 -> n1 + n4 -> n5 + n7 -> n6 + n0 -> n5 + n6 -> n4 + n3 -> n6 +}",output/588.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n8 -> n1 + n4 -> n2 + n0 -> n2 + n3 -> n9 + n9 -> n4 + n4 -> n6 + n8 -> n2 + n0 -> n2 + n8 -> n7 + n1 -> n8 + n9 -> n0 +}",output/598.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 --> Class3 +Class3 <|-- Class4",output/31.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +:step_6; +:step_7; +:step_8; +:step_9; +:step_10; +if (check11?) then (yes) + :action_yes_11; +else (no) + :action_no_11; +endif +if (check12?) then (yes) + :action_yes_12; +else (no) + :action_no_12; +endif +:step_13; +if (check14?) then (yes) + :action_yes_14; +else (no) + :action_no_14; +endif +end",output/364.pintora.png +Model an object-oriented system with a class diagram. Include about 14 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 o-- Class2 +Class2 --> Class3 +Class3 --> Class4",output/374.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +participant Service_1 +participant Service_2 +Service_1-xService_2: Message 997 +Service_0->>Service_1: Message 385 +Service_2-->Service_1: Message 117 +Service_1->>Service_2: Message 703 +Service_0->>Service_2: Message 600 +Service_1->Service_0: Message 554 +Service_1->>Service_0: Message 684 +loop Loop check + Service_1-xService_2: Message 466 +end +Service_1->>Service_0: Message 747 +Service_2-->Service_0: Message 415",output/531.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +end",output/98.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +participant Service_0 +participant Service_3 +alt Condition + Service_0-->Service_3: Message 667 +else Other case + Service_3-->>Service_0: Response +end +Service_3-->>Service_2: Message 669 +Service_0-->Service_3: Message 483 +alt Condition + Service_0-->Service_3: Message 295 +else Other case + Service_3-->>Service_0: Response +end +Service_1-xService_2: Message 108 +Service_0->Service_1: Message 487 +alt Condition + Service_0-xService_2: Message 206 +else Other case + Service_2-->>Service_0: Response +end +Service_3-xService_2: Message 634 +Service_4-->>Service_3: Message 813 +Service_3-xService_0: Message 596 +Service_4-->Service_2: Message 541",output/449.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 6 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1",output/88.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +:Process 4; +:Process 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +:Process 7; +end",output/521.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + bool field_1 +} +TABLE_1 { + int id PK + int field_0 + string field_1 + datetime field_2 + int field_3 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + datetime field_2 + datetime field_3 + float field_4 +} +TABLE_0 }|--|| TABLE_1 : manages +TABLE_1 }|--|| TABLE_2 : manages",output/459.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n11 [shape=""diamond"", label=""Node n11""] + n8 -> n2 + n4 -> n1 + n3 -> n7 + n1 -> n2 + n11 -> n4 + n4 -> n7 + n3 -> n5 + n9 -> n5 + n10 -> n3 + n11 -> n4 +}",output/657.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + int field_1 +} +TABLE_1 { + int id PK + datetime field_0 + datetime field_1 +} +TABLE_2 { + int id PK + int field_0 + datetime field_1 + int field_2 + datetime field_3 + int field_4 +} +TABLE_0 ||--|{ TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : has",output/647.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 3d +""Task 2"" : 2024-01-13, 8d",output/118.pintora.png +Write a Pintora diagram: design a comprehensive entity relationship diagram.,"erDiagram +title: Inventory System +CATEGORY { + int category_id PK + bool date + float date + text phone +} +REVIEW { + int review_id PK + datetime name FK + bool address + datetime status + bool phone FK + float status +} +SHIPMENT { + int shipment_id PK + bool quantity + datetime status FK +} +PAYMENT { + int payment_id PK + float price + float status +} +INVOICE { + int invoice_id PK + int status + string price + bool name + int address FK +} +CATEGORY }o--o{ REVIEW : belongs to +REVIEW ||--|| INVOICE : belongs to +SHIPMENT }|..|{ PAYMENT : manages +PAYMENT }o--o{ INVOICE : owns",output/881.pintora.png +Design a comprehensive Entity Relationship diagram. Include nested structures.,"erDiagram +REVIEW { + int review_id PK + string address FK + bool phone +} +PRODUCT { + int product_id PK + bool name + string name +} +CATEGORY { + int category_id PK + int address + text phone + datetime quantity + datetime description + bool name +} +ORDER { + int order_id PK + text date + float price + text description +} +USER { + int user_id PK + datetime description FK + bool date + int status + string description + float status +} +REVIEW }|--|| PRODUCT : has +PRODUCT }|..|{ USER : manages +CATEGORY ||--|{ USER : processes +ORDER }|..|{ USER : processes",output/891.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 3d +""Task 2"" : 2024-01-12, 9d +""Task 3"" : 2024-01-21, 9d +""Task 4"" : 2024-01-30, 9d +""Task 5"" : 2024-02-08, 5d",output/108.pintora.png +Create a sequence diagram with random interaction patterns involving 9 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +Service_0-xService_1: Message 239 +Service_1-->>Service_0: Message 924 +alt Condition + Service_0-->Service_1: Message 532 +else Other case + Service_1-->>Service_0: Response +end +Service_1-->Service_0: Message 598 +Service_1->Service_0: Message 595 +Service_1-->>Service_0: Message 979 +Service_1-xService_0: Message 159 +Service_0-->Service_1: Message 254 +Service_0-->Service_1: Message 573",output/635.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Action 2; +:Action 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Action 7; +end",output/625.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +:Action 2; +:Action 3; +:Action 4; +:Process 5; +end",output/553.pintora.png +Create a sequence diagram with random interaction patterns involving 9 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +Service_0-->Service_1: Message 308 +Service_0->>Service_1: Message 817 +Service_1->Service_0: Message 275 +loop Loop check + Service_1-xService_0: Message 778 +end +Service_1->Service_0: Message 858 +Service_0->>Service_1: Message 870 +Service_1-xService_0: Message 386 +Service_0-xService_1: Message 524 +Service_1-->Service_0: Message 456",output/543.pintora.png +Map out a process flow using an activity diagram. Include about 9 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +end",output/306.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 11 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Concept 1 +*** Subitem 1.0 +*** Subitem 1.1",output/316.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1",output/43.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + bool field_2 + datetime field_3 + float field_4 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + int field_2 + string field_3 + int field_4 +} +TABLE_2 { + int id PK + string field_0 + int field_1 + datetime field_2 + string field_3 + string field_4 +} +TABLE_3 { + int id PK + int field_0 + int field_1 + float field_2 + float field_3 + float field_4 +} +TABLE_4 { + int id PK + string field_0 + datetime field_1 + datetime field_2 +} +TABLE_5 { + int id PK + int field_0 + bool field_1 +} +TABLE_6 { + int id PK + int field_0 + datetime field_1 + float field_2 +} +TABLE_7 { + int id PK + int field_0 + float field_1 + bool field_2 + float field_3 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 }|--|| TABLE_3 : uses +TABLE_3 ||--|{ TABLE_4 : owns +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 ||--|{ TABLE_6 : uses +TABLE_6 ||--o{ TABLE_7 : uses",output/492.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--o{ Ent2 : relates",output/53.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/482.pintora.png +Create a DOT diagram for a package dependency graph,"dotDiagram +digraph Dependencies { + bgcolor=""#fafafa"" + node [bgcolor=""#61afef"", color=""#333""] + + app[""Application""] + core[""Core Library""] + utils[""Utilities""] + logger[""Logger""] + config[""Config""] + + app -> core + app -> utils + core -> logger + core -> config + utils -> logger +}",output/940.pintora.png +Write a Pintora diagram: create an advanced sequence diagram with complex interactions.,"sequenceDiagram +title: System Communication +participant [ ServiceA] +participant ServiceB +ServiceC-->ServiceA: Validate +loop Batch process + ServiceC->>ServiceA: Query 1 + ServiceA-->>ServiceC: Response +end +ServiceC-->ServiceA: Validate +loop Poll + ServiceC-xServiceB: Process event + ServiceB-->>ServiceC: Response +end +par Parallel processing + ServiceA->ServiceA: Task A +and + ServiceA->ServiceB: Task B +end +ServiceA->>ServiceC: Fetch data +par Parallel processing + ServiceA->>ServiceA: Task A +and + ServiceA->>ServiceB: Task B +end +@note right of ServiceC: Validating +ServiceC-->ServiceB: Query 7",output/838.pintora.png +Create a class diagram with annotations,"classDiagram +class IRepository { + <> + +find(id) + +save(entity) + +delete(id) +} +class Status { + <> + PENDING + ACTIVE + COMPLETED +} +class UserRepository { + +find(id) + +save(user) + +findByEmail(email) +} +IRepository <|.. UserRepository",output/950.pintora.png +Build a detailed component architecture diagram.,"componentDiagram +database ""Cache Layer"" { + [Comp0_0] + [Comp0_1] + () I0 +} +cloud ""GCP"" { + [Comp1_0] + [Comp1_1] +} +[Comp0_0] ..> [Comp1_0] +[Comp1_1] --> I0 +[Comp0_0] ..|> [Comp1_1] +I0 ..> [Comp0_0] +[Comp1_0] ..|> I0 +[Comp0_0] ..> [Comp1_1] +[Comp0_1] -- [Comp1_1] +[Comp1_1] -- I0 +[Comp0_1] ..|> [Comp1_0]",output/828.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""circle"", label=""Node n10""] + n2 -> n6 + n5 -> n9 + n7 -> n9 + n2 -> n5 + n2 -> n8 + n8 -> n6 + n7 -> n5 + n5 -> n3 + n8 -> n0 + n0 -> n2 + n0 -> n4 + n2 -> n6 +}",output/668.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + datetime field_1 + int field_2 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + int field_2 + float field_3 +} +TABLE_2 { + int id PK + int field_0 + string field_1 + string field_2 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 + float field_2 + int field_3 + int field_4 +} +TABLE_4 { + int id PK + string field_0 + datetime field_1 +} +TABLE_5 { + int id PK + datetime field_0 + bool field_1 + datetime field_2 +} +TABLE_6 { + int id PK + bool field_0 + int field_1 + string field_2 + datetime field_3 +} +TABLE_7 { + int id PK + string field_0 + bool field_1 + datetime field_2 +} +TABLE_0 }|--|| TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--|| TABLE_3 : uses +TABLE_3 }|--|| TABLE_4 : contains +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 ||--|| TABLE_6 : has +TABLE_6 }|--|| TABLE_7 : uses",output/710.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Action 2; +:Process 3; +:Action 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +end",output/678.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +:Process 5; +:Action 6; +end",output/700.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 3d +""Task 2"" : 2024-01-09, 6d +""Task 3"" : 2024-01-15, 9d",output/145.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 *-- Class2",output/155.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 }|--|| Ent4 : relates",output/223.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n6 -> n3 + n3 -> n2 + n6 -> n4 + n3 -> n4 + n2 -> n3 + n4 -> n6 + n1 -> n2 + n6 -> n2 + n1 -> n6 + n6 -> n4 + n2 -> n6 + n4 -> n3 +}",output/233.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +:Process 4; +:Process 5; +:Process 6; +:Action 7; +:Process 8; +:Action 9; +end",output/476.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_1->>Service_0: Message 487 +Service_1->Service_0: Message 453 +Service_0->>Service_1: Message 532 +Service_0->>Service_1: Message 486 +Service_1-->Service_0: Message 606 +Service_1-xService_0: Message 796 +loop Loop check + Service_1-xService_0: Message 376 +end +Service_0-->>Service_1: Message 775",output/466.pintora.png +Design a comprehensive Entity Relationship diagram. Include nested structures.,"erDiagram +title: CRM System +PRODUCT { + int product_id PK + bool date + text description + float name + string price FK + text quantity +} +PAYMENT { + int payment_id PK + int email FK + string address +} +INVOICE { + int invoice_id PK + text name FK + text phone + bool email + int name +} +CUSTOMER { + int customer_id PK + datetime name FK + datetime price +} +PRODUCT ||--o{ CUSTOMER : processes +PAYMENT ||--|| CUSTOMER : owns +INVOICE }o--o{ CUSTOMER : references",output/865.pintora.png +Model an object-oriented system with class diagram. Include nested structures.,"classDiagram +class ServiceA { + +int attr0 + -boolean attr1 + -boolean attr2 + ~method0() T + +{static} method1() boolean + ~method2() void +} +class ManagerB { + <> + -List~T~ attr0 + ~int attr1 + +string attr2 + #method0() string + -method1() T +} +class ObserverC { + -int attr0 + +{static} method0() string + ~method1() boolean + ~method2() T +} +class StrategyD { + #boolean attr0 + #List~T~ attr1 + +string attr2 + #boolean attr3 + +method0() boolean +} +class RepositoryE { + <> + +string attr0 + +string attr1 + ~int attr2 + -List~T~ attr3 + -method0() T +} +ServiceA <|-- RepositoryE +ManagerB *-- ObserverC +ObserverC ..> StrategyD +StrategyD --> RepositoryE",output/875.pintora.png +Design a detailed hierarchical mind map.,"mindmap +@param layoutDirection LR +* Project Plan +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +**** Detail A.1.2 +**** Detail A.1.3 +*** Subtopic A.2 +**** Detail A.2.1 +*** Subtopic A.3 +*** Subtopic A.4 +**** Detail A.4.1 +**** Detail A.4.2 +** Topic B +*** Subtopic B.1 +**** Detail B.1.1 +**** Detail B.1.2 +**** Detail B.1.3 +*** Subtopic B.2 +*** Subtopic B.3 +**** Detail B.3.1 +**** Detail B.3.2 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +**** Detail C.2.1 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2 +**** Detail D.2.1 +**** Detail D.2.2 +*** Subtopic D.3 +**** Detail D.3.1 +**** Detail D.3.2 +*** Subtopic D.4 +**** Detail D.4.1 +** Topic E +*** Subtopic E.1 +**** Detail E.1.1 +**** Detail E.1.2 +*** Subtopic E.2 +**** Detail E.2.1 +*** Subtopic E.3 +**** Detail E.3.1",output/807.pintora.png +Write a Pintora diagram: map a complex business process with activity diagram.,"activityDiagram +start +partition Completion { + while (Check 0?) is (yes) + :Process 0; + endwhile (done) + fork + :Parallel Task A1; + forkagain + :Parallel Task B1; + endfork + if (Condition 2?) then (yes) + :Action True 2; + else (no) + :Action False 2; + endif + :Step 3; + switch (Type 4?) + case (A) + :Handle A4; + case (B) + :Handle B4; + endswitch + fork + :Parallel Task A5; + forkagain + :Parallel Task B5; + endfork + if (Condition 6?) then (yes) + :Action True 6; + else (no) + :Action False 6; + endif +end",output/817.pintora.png +Create a component diagram for logging infrastructure,"componentDiagram +title: Centralized Logging +package ""Applications"" { + [Web Server] + [API Server] + [Background Jobs] +} +package ""Log Collection"" { + [Fluentd] + () ""Log Input"" +} +package ""Storage & Analysis"" { + [Elasticsearch] + [Kibana] +} +[Web Server] --> ""Log Input"" +[API Server] --> ""Log Input"" +[Background Jobs] --> ""Log Input"" +""Log Input"" -- [Fluentd] +[Fluentd] --> [Elasticsearch] +[Elasticsearch] <-- [Kibana] : query",output/1005.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 5 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Feature 1 +*** Subitem 1.0 +** Concept 2 +*** Subitem 2.0 +**** Detail 2.0.1",output/380.pintora.png +Map out a process flow using an activity diagram. Include about 5 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +end",output/390.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n4 -> n0 + n0 -> n3 + n0 -> n1 + n5 -> n4 + n2 -> n5 +}",output/414.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 6 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +** Idea 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1 +*** Subitem 1.2",output/404.pintora.png +Create a sequence diagram showing interaction between participants. Include about 7 elements.,"sequenceDiagram +autonumber +P1-->>P0: msg_89 +P1->P0: msg_82 +P1->>P0: msg_57 +P1-->P0: msg_13 +P0-->P1: msg_35 +P0->P1: msg_35 +P1-->>P0: msg_21",output/339.pintora.png +Create a sequence diagram showing interaction between participants. Include about 11 elements.,"sequenceDiagram +autonumber +P0->>P3: msg_19 +P0->>P3: msg_85 +P0->P1: msg_24 +P0-->P3: msg_61 +P1->>P0: msg_42 +P2-->P0: msg_2 +P3->>P0: msg_28 +P2->P1: msg_44 +P0->>P2: msg_53 +P2->>P0: msg_49 +P2->P0: msg_39",output/241.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +:step_9; +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +end",output/329.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--|{ Ent4 : relates",output/251.pintora.png +Create a sequence diagram showing interaction between participants. Include about 13 elements.,"sequenceDiagram +autonumber +P1-->>P0: msg_18 +P1->>P0: msg_10 +P0->>P1: msg_13 +P0->>P1: msg_44 +P0->>P1: msg_5 +P1-->P0: msg_10 +P1-->>P0: msg_7 +P0-->>P1: msg_56 +P0->>P1: msg_8 +P0-->P1: msg_93 +P1-->>P0: msg_67 +P1-->P0: msg_1 +P0->>P1: msg_21",output/127.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n0 -> n1 + n2 -> n4 + n0 -> n7 + n3 -> n5 + n0 -> n5 + n6 -> n4 + n3 -> n2 + n3 -> n1 + n6 -> n5 + n3 -> n7 + n4 -> n6 + n3 -> n7 + n6 -> n3 + n6 -> n5 + n2 -> n1 +}",output/137.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Action 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +:Action 4; +:Process 5; +end",output/772.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/762.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n8 -> n4 + n1 -> n5 + n6 -> n8 + n0 -> n8 + n2 -> n8 + n4 -> n7 + n5 -> n1 + n6 -> n3 + n0 -> n5 + n0 -> n1 +}",output/458.pintora.png +Draft a component diagram for system architecture. Include about 5 elements.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3]",output/89.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +:Process 3; +:Process 4; +end",output/520.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +:Process 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Action 8; +end",output/448.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +autonumber +Service_1-->>Service_0: Message 983 +Service_1-xService_0: Message 828 +Service_0-->>Service_1: Message 985 +Service_1-->>Service_0: Message 218 +Service_1-xService_0: Message 493 +Service_1->Service_0: Message 966 +Service_0->Service_1: Message 572 +Service_1->Service_0: Message 668 +Service_1->>Service_0: Message 702 +Service_0->>Service_1: Message 723 +Service_0-->>Service_1: Message 891 +Service_0->>Service_1: Message 635",output/530.pintora.png +Schedule tasks using a Gantt chart. Include about 14 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 7d +""Task 2"" : 2024-01-11, 4d +""Task 3"" : 2024-01-15, 4d",output/99.pintora.png +Visualize a graph structure using DOT syntax. Include about 7 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n6 -> n1 + n2 -> n5 + n3 -> n1 + n1 -> n0 + n5 -> n6 + n2 -> n1 + n5 -> n6 +}",output/375.pintora.png +Schedule tasks using a Gantt chart. Include about 14 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 2d +""Task 1"" : 2024-01-03, 3d +""Task 2"" : 2024-01-06, 7d +""Task 3"" : 2024-01-13, 6d +""Task 4"" : 2024-01-19, 6d +""Task 5"" : 2024-01-25, 5d",output/365.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +end",output/646.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/656.pintora.png +Create a multiroot mind map,"mindmap +* Frontend Technologies +** React +** Vue +** Angular +* Backend Technologies +** Node.js +** Python +** Go +* Database Systems +** PostgreSQL +** MongoDB +** Redis",output/933.pintora.png +Write a component diagram with custom colors,"componentDiagram +@param componentBackground #61afef +@param componentBorderColor #4a9de0 +package ""Frontend"" { + [React App] + [Redux Store] +} +package ""Backend"" { + [Express Server] + [MongoDB] +} +[React App] --> [Redux Store] +[React App] ..> [Express Server] : REST API +[Express Server] --> [MongoDB]",output/923.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + int field_1 +} +TABLE_1 { + int id PK + datetime field_0 + int field_1 + string field_2 +} +TABLE_2 { + int id PK + bool field_0 + datetime field_1 + float field_2 + float field_3 + float field_4 +} +TABLE_3 { + int id PK + int field_0 + string field_1 + datetime field_2 + string field_3 + bool field_4 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--|| TABLE_2 : manages +TABLE_2 ||--|{ TABLE_3 : manages",output/787.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +:Action 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +end",output/797.pintora.png +Create a sequence diagram with random interaction patterns involving 9 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +Service_0->>Service_1: Message 463 +Service_2-->>Service_0: Message 531 +Service_0-->Service_1: Message 478 +Service_0->Service_1: Message 679 +Service_0-->Service_1: Message 741 +Service_0-->>Service_2: Message 298 +Service_2-xService_1: Message 958 +loop Loop check + Service_0-xService_2: Message 117 +end +loop Loop check + Service_0-->>Service_2: Message 141 +end",output/599.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n4 -> n6 + n3 -> n4 + n5 -> n1 + n1 -> n0 + n3 -> n1 + n0 -> n2 +}",output/30.pintora.png +Map out a process flow using an activity diagram. Include about 7 elements.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +end",output/20.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + int field_1 + bool field_2 + bool field_3 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + float field_2 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 + float field_2 + float field_3 + datetime field_4 +} +TABLE_4 { + int id PK + float field_0 + int field_1 + int field_2 +} +TABLE_5 { + int id PK + int field_0 + datetime field_1 +} +TABLE_6 { + int id PK + bool field_0 + string field_1 +} +TABLE_7 { + int id PK + datetime field_0 + string field_1 + bool field_2 + bool field_3 + bool field_4 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 ||--|{ TABLE_3 : owns +TABLE_3 ||--|| TABLE_4 : contains +TABLE_4 ||--o{ TABLE_5 : uses +TABLE_5 }|--|| TABLE_6 : contains +TABLE_6 ||--|{ TABLE_7 : uses",output/589.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + bool field_1 + datetime field_2 + datetime field_3 +} +TABLE_1 { + int id PK + datetime field_0 + float field_1 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 + int field_2 +} +TABLE_3 { + int id PK + datetime field_0 + datetime field_1 + int field_2 + datetime field_3 +} +TABLE_4 { + int id PK + int field_0 + bool field_1 +} +TABLE_0 ||--o{ TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 ||--|{ TABLE_4 : manages",output/483.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n2 -> n0 + n1 -> n2 + n0 -> n2 + n2 -> n3 + n3 -> n0 + n1 -> n2 + n2 -> n1 + n1 -> n2 + n2 -> n1 + n2 -> n3 + n0 -> n2 + n3 -> n1 + n2 -> n0 +}",output/52.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +autonumber +participant Service_3 +participant Service_4 +loop Loop check + Service_2->>Service_4: Message 580 +end +Service_3-->>Service_4: Message 601 +Service_3->>Service_2: Message 626 +Service_2->Service_3: Message 275 +Service_3-xService_0: Message 746 +Service_1-->Service_4: Message 597 +@note right of Service_1: Note processing +Service_1->Service_4: Message 751 +Service_4-->Service_2: Message 303 +Service_2-xService_1: Message 525 +loop Loop check + Service_3-->Service_0: Message 355 +end +Service_3->Service_1: Message 563 +Service_2->>Service_0: Message 879 +Service_1-->Service_2: Message 132 +Service_0->>Service_3: Message 328",output/493.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 14 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +** Task 1 +*** Subitem 1.0",output/42.pintora.png +Visualize a complex graph with DOT diagram.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""ellipse"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n8 [label=""Node n8""] + n8 -- n0 + n5 -- n4 + n1 -- n7 + n5 -- n0 + n3 -- n4 [color=""green""] + n5 -- n8 + n4 -- n8 + n3 -- n4 + n8 -- n0 + n3 -- n8 + n4 -- n6 + n7 -- n6 + n0 -- n3 + n4 -- n8 [color=""purple""] +}",output/829.pintora.png +Write a class diagram with static members,"classDiagram +class DatabaseConnection { + {static} DatabaseConnection instance + -string connectionString + {static} getInstance() DatabaseConnection + +connect() void + +disconnect() void + +executeQuery(sql) ResultSet +} +class Logger { + {static} Logger defaultLogger + -string logLevel + {static} getLogger(name) Logger + +log(message) void + +error(message) void +}",output/951.pintora.png +Build a detailed component architecture diagram. Use advanced syntax features.,"componentDiagram +title: Cloud Architecture +node ""Server Farm"" { + [Comp0_0] + [Comp0_1] + [Comp0_2] + () I0 +} +package ""Backend"" { + [Comp1_0] + [Comp1_1] + () I1 +} +cloud ""Cloud Infrastructure"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] + [Comp2_3] + () I2 +} +database ""Persistence"" { + [Comp3_0] + [Comp3_1] + [Comp3_2] + [Comp3_3] +} +[Comp2_2] --> [Comp1_1] +[Comp1_1] -- I0 +I0 -- [Comp2_3] +[Comp2_0] --> [Comp0_0] +[Comp3_3] -- [Comp0_2] +[Comp3_2] ..> [Comp3_3] +I1 --> [Comp0_0] +[Comp0_2] -- [Comp0_1] +I1 ..|> [Comp2_0] +I0 --> I1 +[Comp2_3] ..> [Comp0_2] +[Comp1_0] --> [Comp0_2] +I2 ..> [Comp2_2] +[Comp2_0] -- [Comp0_2] +[Comp3_3] -- [Comp2_1] +[Comp3_2] --> [Comp3_1] +I0 ..> [Comp0_1]",output/839.pintora.png +Write a DOT diagram with subgraphs,"dotDiagram +digraph Architecture { + bgcolor=""white"" + node [color=""#111"", bgcolor=orange] + + subgraph Frontend { + label=""Frontend Layer"" + web[""Web App""] + mobile[""Mobile App""] + } + + subgraph Backend { + label=""Backend Layer"" + api[""API Server""] + worker[""Background Worker""] + } + + web -> api + mobile -> api + api -> worker +}",output/941.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + float field_2 + string field_3 +} +TABLE_1 { + int id PK + float field_0 + float field_1 + string field_2 + datetime field_3 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 + int field_2 + bool field_3 +} +TABLE_3 { + int id PK + bool field_0 + datetime field_1 + string field_2 + float field_3 + float field_4 +} +TABLE_4 { + int id PK + datetime field_0 + bool field_1 + int field_2 +} +TABLE_5 { + int id PK + int field_0 + datetime field_1 + int field_2 + float field_3 + bool field_4 +} +TABLE_6 { + int id PK + int field_0 + bool field_1 +} +TABLE_7 { + int id PK + datetime field_0 + bool field_1 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : manages +TABLE_2 }|--|| TABLE_3 : has +TABLE_3 }|--|| TABLE_4 : manages +TABLE_4 ||--|{ TABLE_5 : contains +TABLE_5 ||--|| TABLE_6 : contains +TABLE_6 ||--|{ TABLE_7 : owns",output/624.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + bool field_1 + bool field_2 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 +} +TABLE_2 { + int id PK + int field_0 + bool field_1 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 +} +TABLE_4 { + int id PK + datetime field_0 + string field_1 + datetime field_2 + string field_3 +} +TABLE_5 { + int id PK + int field_0 + float field_1 + datetime field_2 + datetime field_3 + float field_4 +} +TABLE_6 { + int id PK + bool field_0 + datetime field_1 + bool field_2 + bool field_3 +} +TABLE_7 { + int id PK + int field_0 + int field_1 + datetime field_2 +} +TABLE_0 }|--|| TABLE_1 : manages +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--o{ TABLE_3 : owns +TABLE_3 ||--|{ TABLE_4 : owns +TABLE_4 ||--|| TABLE_5 : contains +TABLE_5 }|--|| TABLE_6 : has +TABLE_6 ||--|| TABLE_7 : contains",output/634.pintora.png +Design a comprehensive Entity Relationship diagram. Include nested structures.,"erDiagram +CUSTOMER { + int customer_id PK + datetime description + int phone + float price + string description FK +} +USER { + int user_id PK + datetime address + string phone FK +} +CATEGORY { + int category_id PK + int status FK + bool name +} +INVENTORY { + int inventory_id PK + datetime date + int price + float address FK + string description FK +} +CUSTOMER }|--|| USER : manages +USER }o--o{ INVENTORY : contains +CATEGORY }|--|| INVENTORY : contains",output/890.pintora.png +Design an Entity Relationship diagram. Include about 10 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates +Ent3 ||--o{ Ent4 : relates",output/109.pintora.png +Schedule tasks using a Gantt chart. Include about 14 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 3d +""Task 1"" : 2024-01-04, 10d +""Task 2"" : 2024-01-14, 7d +""Task 3"" : 2024-01-21, 4d +""Task 4"" : 2024-01-25, 2d",output/119.pintora.png +Design an advanced sequence diagram with complex interactions.,"sequenceDiagram +title: API Interaction +participant [ ServiceA] +participant [ ServiceB] +participant [ ServiceC] +ServiceC-->ServiceB: Validate +ServiceA-->>ServiceC: Update 1 +alt Success + ServiceE-->>ServiceB: Fetch data + ServiceB-->>ServiceE: OK +else Error + ServiceB-->>ServiceE: Error code +end +alt Success + ServiceA-->ServiceB: Request 3 + ServiceB-->>ServiceA: OK +else Error + ServiceB-->>ServiceA: Error code +end +ServiceE-->>ServiceA: Fetch data +ServiceC->ServiceA: Fetch data +alt Authenticated + ServiceA-->ServiceC: Process event + ServiceC-->>ServiceA: OK +else Error + ServiceC-->>ServiceA: Error code +end +par Parallel processing + ServiceB-->>ServiceA: Task A +and + ServiceB-->>ServiceB: Task B +end +ServiceB-->ServiceA: Query 8 +activate ServiceD +ServiceC-xServiceD: Request 9 +deactivate ServiceD +alt Success + ServiceE->>ServiceA: Validate + ServiceA-->>ServiceE: OK +else Error + ServiceA-->>ServiceE: Error code +end +ServiceB->ServiceE: Request 11",output/880.pintora.png +Map out a process flow using an activity diagram. Include about 11 elements.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +end",output/317.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 *-- Class2 +Class2 --> Class3 +Class3 *-- Class4 +Class4 *-- Class5",output/307.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +end",output/542.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n3 -> n2 + n3 -> n2 + n2 -> n1 + n6 -> n1 + n3 -> n6 + n4 -> n6 +}",output/552.pintora.png +Illustrate a complex business process with activity diagram.,"activityDiagram +start +if (Condition 0?) then (yes) + :Action True 0; +else (no) + :Action False 0; +endif +if (Condition 1?) then (yes) + :Action True 1; +else (no) + :Action False 1; +endif +if (Condition 2?) then (yes) + :Action True 2; +else (no) + :Action False 2; +endif +:Step 3; +if (Condition 4?) then (yes) + :Action True 4; +else (no) + :Action False 4; +endif +:Step 5; +if (Condition 6?) then (yes) + :Action True 6; +else (no) + :Action False 6; +endif +:Step 7; +:Step 8; +:Step 9; +} +end",output/874.pintora.png +Design a detailed hierarchical mind map.,"mindmap +@param layoutDirection TB +* Product Strategy +** Topic A +*** Subtopic A.1 +*** Subtopic A.2 +*** Subtopic A.3 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +** Topic C +*** Subtopic C.1 +**** Detail C.1.1 +**** Detail C.1.2 +**** Detail C.1.3 +*** Subtopic C.2 +**** Detail C.2.1 +**** Detail C.2.2 +**** Detail C.2.3 +*** Subtopic C.3",output/864.pintora.png +Model an object-oriented system with a class diagram. Include about 14 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 *-- Class2 +Class2 *-- Class3",output/154.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--o{ Ent4 : relates +Ent4 }|--|| Ent5 : relates",output/144.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + datetime field_1 + datetime field_2 + int field_3 + string field_4 +} +TABLE_1 { + int id PK + int field_0 + float field_1 + string field_2 +} +TABLE_2 { + int id PK + string field_0 + string field_1 + bool field_2 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 + float field_2 + int field_3 + datetime field_4 +} +TABLE_4 { + int id PK + float field_0 + float field_1 + bool field_2 +} +TABLE_5 { + int id PK + string field_0 + int field_1 +} +TABLE_6 { + int id PK + string field_0 + datetime field_1 + datetime field_2 + int field_3 +} +TABLE_0 ||--o{ TABLE_1 : owns +TABLE_1 ||--|{ TABLE_2 : contains +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : owns +TABLE_4 ||--|| TABLE_5 : has +TABLE_5 }|--|| TABLE_6 : contains",output/701.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + float field_1 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + float field_2 + float field_3 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 + int field_2 +} +TABLE_4 { + int id PK + int field_0 + datetime field_1 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--|| TABLE_2 : owns +TABLE_2 }|--|| TABLE_3 : has +TABLE_3 ||--|| TABLE_4 : contains +TABLE_4 ||--|| TABLE_5 : owns",output/679.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n11 [shape=""ellipse"", label=""Node n11""] + n8 -> n3 + n5 -> n3 + n10 -> n9 + n3 -> n9 + n10 -> n11 + n4 -> n11 + n8 -> n10 + n8 -> n6 + n3 -> n5 + n11 -> n0 + n10 -> n3 +}",output/711.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Action 3; +:Process 4; +fork + :Parallel 1 5; +forkagain + :Parallel 2 5; +endfork +end",output/669.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n2 -> n4 + n4 -> n0 + n2 -> n1 + n3 -> n1 + n2 -> n3 +}",output/467.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n4 -> n7 + n3 -> n6 + n1 -> n0 + n2 -> n5 + n3 -> n6 + n0 -> n5 + n6 -> n7 + n2 -> n6 + n2 -> n1 +}",output/477.pintora.png +Map out a process flow using an activity diagram. Include about 5 elements.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +end",output/232.pintora.png +Create a sequence diagram showing interaction between participants. Include about 8 elements.,"sequenceDiagram +autonumber +P1->P2: msg_62 +P2-->P1: msg_7 +P0->>P2: msg_98 +P0-->>P1: msg_94 +P0-->>P2: msg_20 +P1->>P2: msg_68 +P2->P1: msg_16 +P0-->>P2: msg_48",output/222.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +*** Subitem 0.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +** Feature 2 +*** Subitem 2.0 +** Task 3 +*** Subitem 3.0 +**** Detail 3.0.1",output/250.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 8d +""Task 2"" : 2024-01-14, 8d +""Task 3"" : 2024-01-22, 10d +""Task 4"" : 2024-02-01, 2d",output/328.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n1 -> n3 + n4 -> n3 + n1 -> n5 + n3 -> n1 + n2 -> n3 + n3 -> n1 + n5 -> n3 + n0 -> n4 + n5 -> n2 + n2 -> n5 + n2 -> n4 + n1 -> n5 + n4 -> n1 +}",output/240.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1->P0: msg_17 +P0-->P1: msg_55 +P1->>P0: msg_10 +P1->>P0: msg_3 +P1-->>P0: msg_14 +P1-->>P0: msg_72 +P0->P1: msg_30 +P1-->P0: msg_77 +P0-->P1: msg_30 +P0-->>P1: msg_69 +P0->P1: msg_46 +P0-->P1: msg_31 +P0-->>P1: msg_6 +P1->>P0: msg_12 +P0->P1: msg_90",output/338.pintora.png +Visualize a graph structure using DOT syntax. Include about 13 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n5 -> n1 + n0 -> n2 + n3 -> n5 + n0 -> n1 + n0 -> n6 + n4 -> n0 + n2 -> n5 + n3 -> n6 + n5 -> n1 + n4 -> n0 + n4 -> n3 + n3 -> n1 + n2 -> n3 +}",output/405.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Action 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +end",output/415.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +participant Service_3 +Service_1-->>Service_2: Message 753 +alt Condition + Service_0-->Service_2: Message 810 +else Other case + Service_2-->>Service_0: Response +end +Service_3-xService_1: Message 932 +Service_0->Service_3: Message 585 +alt Condition + Service_1-->Service_3: Message 601 +else Other case + Service_3-->>Service_1: Response +end +Service_3-xService_2: Message 381 +loop Loop check + Service_2-->Service_0: Message 824 +end +Service_2-->>Service_1: Message 454 +loop Loop check + Service_2-xService_1: Message 669 +end +Service_1-->Service_0: Message 250 +Service_3-->>Service_0: Message 378 +Service_3-->>Service_0: Message 868 +Service_1->>Service_3: Message 214 +loop Loop check + Service_2->>Service_3: Message 248 +end",output/763.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n4 -> n3 + n2 -> n4 + n1 -> n7 + n4 -> n1 + n6 -> n0 + n4 -> n6 +}",output/773.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n1 -> n5 + n4 -> n2 + n3 -> n5 + n5 -> n2 + n0 -> n2 +}",output/136.pintora.png +Schedule tasks using a Gantt chart. Include about 15 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 4d +""Task 2"" : 2024-01-14, 7d",output/126.pintora.png +Illustrate a complex business process with activity diagram.,"activityDiagram +start +if (Condition 0?) then (yes) + :Action True 0; +else (no) + :Action False 0; +endif +if (Condition 1?) then (yes) + :Action True 1; +else (no) + :Action False 1; +endif +:Step 2; +:Step 3; +while (Check 4?) is (yes) + :Process 4; +endwhile (done) +if (Condition 5?) then (yes) + :Action True 5; +else (no) + :Action False 5; +endif +:Step 6; +} +end",output/816.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Action 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Action 4; +end",output/806.pintora.png +Schedule tasks using a Gantt chart. Include about 9 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 6d +""Task 2"" : 2024-01-13, 8d",output/391.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2->P1: msg_58 +P1-->>P0: msg_91 +P2->>P0: msg_4 +P0->P1: msg_99 +P1->P2: msg_5 +P1-->>P0: msg_29",output/381.pintora.png +Write an activity diagram for file upload,"activityDiagram +title: File Upload Process +start +:Select file; +if (File size within limit?) then (yes) + if (Valid file type?) then (yes) + :Calculate checksum; + :Upload to server; + if (Upload successful?) then (yes) + :Store metadata; + :Generate thumbnail; + :Return file URL; + else (no) + :Show upload error; + endif + else (no) + :Show invalid type error; + endif +else (no) + :Show size limit error; +endif +end",output/1004.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Process 2; +:Process 3; +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/684.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Action 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +end",output/694.pintora.png +Design an advanced sequence diagram with complex interactions.,"sequenceDiagram +title: API Interaction +autonumber +participant [ ServiceB] +participant ServiceC +participant [ ServiceD] +participant [ ServiceE] +loop Poll + ServiceC->>ServiceB: Request 0 + ServiceB-->>ServiceC: Response +end +ServiceC-->ServiceB: Update 1 +ServiceD-xServiceA: Fetch data +par Parallel processing + ServiceA-->ServiceA: Task A +and + ServiceA-->ServiceB: Task B +end +par Parallel processing + ServiceB-->ServiceA: Task A +and + ServiceB-->ServiceB: Task B +end +@note right of ServiceD: Processing +ServiceD-->>ServiceA: Fetch data +ServiceB-xServiceD: Request 6 +ServiceA->ServiceC: Fetch data +loop Batch process + ServiceA-xServiceD: Request 8 + ServiceD-->>ServiceA: Response +end",output/830.pintora.png +Create a class diagram with visibility modifiers,"classDiagram +class BankAccount { + -double balance + -string accountNumber + #string ownerName + +getBalance() double + +deposit(amount) void + -validateAmount(amount) boolean + ~internalAudit() void +}",output/948.pintora.png +Write a Pintora diagram: create an advanced sequence diagram with complex interactions.,"sequenceDiagram +participant [ ServiceA] +participant [ ServiceD] +participant [ ServiceE] +ServiceB-xServiceA: Query 0 +par Parallel processing + ServiceC-->>ServiceA: Task A +and + ServiceC-->>ServiceB: Task B +end +ServiceE-->>ServiceB: Validate +activate ServiceE +ServiceD->ServiceE: Validate +deactivate ServiceE +ServiceA-->ServiceE: Query 4 +activate ServiceD +ServiceE->ServiceD: Process event +deactivate ServiceD +activate ServiceC +ServiceD->>ServiceC: Update 6 +deactivate ServiceC +loop Retry + ServiceE->ServiceB: Query 7 + ServiceB-->>ServiceE: Response +end",output/820.pintora.png +Write a sequence diagram for WebSocket communication,"sequenceDiagram +title: WebSocket Chat +participant [ User1] +participant Server +participant [ User2] +User1->>Server: Connect WebSocket +Server-->>User1: Connection established +User2->>Server: Connect WebSocket +Server-->>User2: Connection established +User1->>Server: Send message ""Hello"" +Server->>User2: Broadcast ""Hello"" +User2->>Server: Send message ""Hi!"" +Server->>User1: Broadcast ""Hi!"" ",output/958.pintora.png +Create a flow activity diagram with approximately 8 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +:Process 3; +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +fork + :Parallel 1 5; +forkagain + :Parallel 2 5; +endfork +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +fork + :Parallel 1 7; +forkagain + :Parallel 2 7; +endfork +end",output/745.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 +} +TABLE_1 { + int id PK + float field_0 + float field_1 + int field_2 +} +TABLE_2 { + int id PK + datetime field_0 + bool field_1 + string field_2 +} +TABLE_3 { + int id PK + datetime field_0 + string field_1 + datetime field_2 + int field_3 + int field_4 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 }|--|| TABLE_3 : manages",output/755.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--|| Ent4 : relates",output/110.pintora.png +Visualize a complex graph with DOT diagram.,"dotDiagram +digraph G { + bgcolor=""#f5f5f5"" + node [shape=""diamond"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n2 -> n5 + n3 -> n1 + n5 -> n3 + n0 -> n4 [color=""purple""] + n3 -> n0 [color=""red""] + n3 -> n4 + n2 -> n5 [color=""purple""] + n4 -> n3 [color=""purple""] + n4 -> n1 + n0 -> n5 + n0 -> n5 + n5 -> n3 [color=""blue""] +}",output/889.pintora.png +Design a comprehensive Entity Relationship diagram. Include nested structures.,"erDiagram +CATEGORY { + int category_id PK + bool quantity FK + text quantity FK + text price + int status + bool phone +} +PRODUCT { + int product_id PK + float email FK + datetime date FK + bool status FK + datetime price FK +} +INVOICE { + int invoice_id PK + bool date + text address +} +USER { + int user_id PK + datetime price + text date + text description + text status + int name +} +CATEGORY ||--|{ PRODUCT : belongs to +PRODUCT }|..|{ USER : belongs to +INVOICE }|--|| USER : manages",output/899.pintora.png +Schedule tasks using a Gantt chart. Include about 11 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 7d +""Task 2"" : 2024-01-17, 6d +""Task 3"" : 2024-01-23, 4d",output/100.pintora.png +Schedule tasks using a Gantt chart. Include about 11 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 5d +""Task 2"" : 2024-01-12, 5d +""Task 3"" : 2024-01-17, 5d",output/276.pintora.png +Create a sequence diagram showing interaction between participants. Include about 5 elements.,"sequenceDiagram +autonumber +P0-->>P1: msg_94 +P0->P1: msg_98 +P1-->>P0: msg_41 +P0->P1: msg_51 +P0->P1: msg_64",output/266.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n0 -> n7 + n2 -> n0 + n5 -> n4 + n0 -> n4 + n5 -> n1 + n5 -> n8 + n0 -> n3 + n7 -> n5 + n5 -> n7 + n1 -> n8 + n7 -> n3 +}",output/423.pintora.png +Write a component diagram showing a system with 8 components distributed across packages.,"componentDiagram +package ""System A"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] +} +package ""System B"" { + [Comp4] + [Comp5] + [Comp6] + [Comp7] +} +() HTTP +() DB_Conn +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5] +[Comp5] --> [Comp6] +[Comp6] --> [Comp7] +[Comp0] --> HTTP +[Comp7] --> DB_Conn",output/433.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n8 -> n7 + n6 -> n3 + n8 -> n7 + n4 -> n1 + n2 -> n5 + n4 -> n6 + n0 -> n1 + n3 -> n6 + n2 -> n3 +}",output/441.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Process 4; +:Action 5; +end",output/539.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n7 -> n5 + n5 -> n1 + n1 -> n0 + n3 -> n2 + n3 -> n6 + n6 -> n4 + n4 -> n2 + n2 -> n6 + n4 -> n5 + n2 -> n7 + n0 -> n4 + n7 -> n0 +}",output/90.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + bool field_1 + string field_2 + float field_3 +} +TABLE_1 { + int id PK + float field_0 + int field_1 + bool field_2 + int field_3 +} +TABLE_2 { + int id PK + int field_0 + float field_1 + float field_2 + float field_3 + bool field_4 +} +TABLE_3 { + int id PK + float field_0 + datetime field_1 +} +TABLE_4 { + int id PK + string field_0 + float field_1 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 ||--o{ TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : contains",output/451.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +*** Subitem 0.2 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +** Task 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +** Idea 3 +*** Subitem 3.0 +*** Subitem 3.1",output/80.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + float field_1 + int field_2 + bool field_3 +} +TABLE_1 { + int id PK + int field_0 + float field_1 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + string field_2 + bool field_3 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 + string field_2 + string field_3 + int field_4 +} +TABLE_0 ||--|| TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : uses",output/529.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +if (check11?) then (yes) + :action_yes_11; +else (no) + :action_no_11; +endif +:step_12; +end",output/214.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n0 -> n3 + n1 -> n3 + n1 -> n2 + n3 -> n4 + n4 -> n0 + n3 -> n1 + n2 -> n3 + n2 -> n0 + n3 -> n0 + n3 -> n2 + n0 -> n4 + n0 -> n2 + n0 -> n3 + n1 -> n4 + n1 -> n4 +}",output/204.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 8d +""Task 2"" : 2024-01-16, 3d +""Task 3"" : 2024-01-19, 10d +""Task 4"" : 2024-01-29, 3d +""Task 5"" : 2024-02-01, 2d",output/172.pintora.png +Create a sequence diagram for rate limiting,"sequenceDiagram +participant Client +participant RateLimiter +participant API +Client->>RateLimiter: Request +RateLimiter->>RateLimiter: Check token bucket +alt Tokens available + RateLimiter->>RateLimiter: Consume token + RateLimiter->>API: Forward request + API-->>RateLimiter: Response + RateLimiter-->>Client: 200 OK +else No tokens + RateLimiter-->>Client: 429 Too Many Requests + @note right of Client: Retry-After header included +end",output/993.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 10 elements.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Task 1 +*** Subitem 1.0",output/162.pintora.png +Create a class diagram for observer pattern,"classDiagram +class Subject { + <> + +attach(observer) + +detach(observer) + +notify() +} +class Observer { + <> + +update() +} +class ConcreteSubject { + -state + -observers List~Observer~ + +getState() + +setState(state) +} +class ConcreteObserver { + -subject + +update() +} +Subject <|.. ConcreteSubject +Observer <|.. ConcreteObserver +Subject --> Observer : notifies +ConcreteObserver --> ConcreteSubject : observes",output/983.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +:Process 5; +:Process 6; +end",output/727.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n6 -> n2 + n7 -> n6 + n0 -> n3 + n0 -> n6 + n1 -> n2 + n5 -> n6 + n4 -> n3 +}",output/737.pintora.png +Visualize a complex graph with DOT diagram. Include nested structures.,"dotDiagram +graph G { + bgcolor=""#f5f5f5"" + node [shape=""ellipse"", bgcolor=""#e3f2fd""] + subgraph cluster_0 { + label=""Group A"" + a0 [label=""Node a0""] + a1 [label=""Node a1""] + a2 [label=""Node a2""] + a3 [label=""Node a3""] + } + subgraph cluster_1 { + label=""Group B"" + b0 [label=""Node b0""] + b1 [label=""Node b1""] + b2 [label=""Node b2""] + } + b2 -- b1 + b2 -- a1 [color=""red""] + a0 -- a2 + b1 -- a1 [color=""blue""] + a3 -- b0 + b0 -- a3 [color=""blue""] + b2 -- b1 + a3 -- a0 [color=""green""] + a0 -- a3 [color=""red""] + b1 -- b0 [color=""blue""] + b1 -- a0 + a0 -- a3 +}",output/852.pintora.png +Write a Pintora diagram: create a detailed hierarchical mind map.,"mindmap +* System Architecture +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +*** Subtopic A.2 +*** Subtopic A.3 +**** Detail A.3.1 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +**** Detail B.2.1 +** Topic C +*** Subtopic C.1 +**** Detail C.1.1 +**** Detail C.1.2 +*** Subtopic C.2 +*** Subtopic C.3 +*** Subtopic C.4",output/842.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 6d +""Task 2"" : 2024-01-13, 5d +""Task 3"" : 2024-01-18, 7d +""Task 4"" : 2024-01-25, 8d +""Task 5"" : 2024-02-02, 7d",output/29.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +autonumber +participant Service_2 +participant Service_3 +participant Service_4 +Service_0->Service_2: Message 467 +Service_2-->Service_1: Message 269 +loop Loop check + Service_1-->>Service_2: Message 305 +end +Service_0-->Service_4: Message 924 +Service_4-->Service_1: Message 195 +@note right of Service_4: Note processing +Service_4-xService_0: Message 240 +Service_4->Service_2: Message 142 +Service_1->>Service_4: Message 140 +alt Condition + Service_0->Service_3: Message 416 +else Other case + Service_3-->>Service_0: Response +end +Service_4->Service_0: Message 713 +Service_2->Service_3: Message 850",output/580.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + string field_1 + datetime field_2 + datetime field_3 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + string field_2 + float field_3 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 + int field_2 + float field_3 +} +TABLE_3 { + int id PK + int field_0 + datetime field_1 + int field_2 + int field_3 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + int field_2 + string field_3 +} +TABLE_5 { + int id PK + bool field_0 + datetime field_1 + string field_2 + bool field_3 +} +TABLE_6 { + int id PK + int field_0 + float field_1 +} +TABLE_7 { + int id PK + float field_0 + float field_1 + int field_2 + string field_3 +} +TABLE_0 ||--|| TABLE_1 : has +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : contains +TABLE_3 ||--|| TABLE_4 : owns +TABLE_4 ||--|{ TABLE_5 : owns +TABLE_5 }|--|| TABLE_6 : has +TABLE_6 ||--|{ TABLE_7 : uses",output/590.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates +Ent4 ||--|{ Ent5 : relates",output/39.pintora.png +Create a sequence diagram showing interaction between participants. Include about 11 elements.,"sequenceDiagram +autonumber +P2-->P4: msg_77 +P1-->P3: msg_51 +P2-->P3: msg_32 +P1-->P0: msg_62 +P2-->P1: msg_70 +P4->>P1: msg_70 +P3-->>P2: msg_10 +P2-->>P0: msg_79 +P4-->P3: msg_65 +P4->>P1: msg_90 +P3->>P1: msg_30",output/249.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P0-->P1: msg_4 +P0-->P1: msg_26 +P1-->P0: msg_67 +P1->>P0: msg_62 +P1-->>P0: msg_8 +P1-->>P0: msg_47 +P1-->>P0: msg_81 +P0->>P1: msg_96",output/331.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +:step_11; +:step_12; +if (check13?) then (yes) + :action_yes_13; +else (no) + :action_no_13; +endif +end",output/259.pintora.png +Create a sequence diagram showing interaction between participants. Include about 14 elements.,"sequenceDiagram +autonumber +P1-->>P0: msg_86 +P0-->P1: msg_36 +P0->>P1: msg_23 +P1->P0: msg_18 +P1-->>P0: msg_55 +P1-->>P0: msg_22 +P0->P1: msg_38 +P1->P0: msg_38 +P1-->>P0: msg_99 +P0-->P1: msg_39 +P1-->P0: msg_6 +P0-->P1: msg_68 +P1-->>P0: msg_37 +P0-->P1: msg_20",output/321.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +fork + :Parallel 1 7; +forkagain + :Parallel 2 7; +endfork +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +end",output/564.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + string field_2 + datetime field_3 + int field_4 +} +TABLE_1 { + int id PK + string field_0 + float field_1 + bool field_2 + int field_3 + string field_4 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + datetime field_2 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : has",output/574.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +:Process 2; +:Process 3; +:Process 4; +:Process 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +end",output/602.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +:Process 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +end",output/612.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P3-->P2: msg_89 +P3->>P4: msg_70 +P1-->>P4: msg_51 +P2-->>P4: msg_73 +P2->P0: msg_46 +P4->>P3: msg_55 +P2->P0: msg_68 +P2-->P4: msg_34",output/196.pintora.png +Write an activity diagram for CI/CD pipeline,"activityDiagram +title: CI/CD Pipeline +start +:Code commit; +partition ""Continuous Integration"" { + fork + :Run unit tests; + forkagain + :Static code analysis; + forkagain + :Security scan; + endfork + if (All checks pass?) then (yes) + :Build artifact; + else (no) + :Notify developer; + end + endif +} +partition ""Continuous Deployment"" { + :Deploy to staging; + :Run integration tests; + if (Tests pass?) then (yes) + :Deploy to production; + :Health check; + else (no) + :Rollback; + endif +} +end",output/977.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 8 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +** Feature 1 +*** Subitem 1.0",output/186.pintora.png +Write a mind map for project management,"mindmap +@param layoutDirection LR +* Project Management +** Initiation +*** Define scope +*** Identify stakeholders +*** Create charter +** Planning +*** Create WBS +*** Estimate resources +*** Develop schedule +** Execution +*** Assign tasks +*** Manage team +*** Track progress +** Closure +*** Final deliverables +*** Lessons learned +*** Archive documents",output/967.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +end",output/388.pintora.png +Visualize a graph structure using DOT syntax. Include about 13 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n3 -> n2 + n3 -> n1 + n1 -> n2 + n0 -> n1 + n0 -> n2 + n2 -> n0 + n1 -> n3 + n3 -> n1 + n2 -> n0 + n0 -> n3 + n2 -> n0 + n2 -> n1 + n0 -> n1 +}",output/398.pintora.png +Map out a process flow using an activity diagram. Include about 11 elements.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +:step_9; +:step_10; +end",output/74.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1 +** Task 3 +*** Subitem 3.0",output/5.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 *-- Class2 +Class2 o-- Class3 +Class3 o-- Class4 +Class4 *-- Class5",output/64.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n3 -> n0 + n3 -> n6 + n1 -> n4 + n1 -> n5 + n5 -> n1 + n2 -> n7 + n5 -> n0 + n2 -> n5 + n4 -> n1 + n5 -> n4 + n5 -> n3 +}",output/16.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1->P2: msg_28 +P0->>P1: msg_36 +P2->>P0: msg_77 +P2-->P0: msg_48 +P1->>P0: msg_78 +P4-->P3: msg_78 +P2->>P3: msg_93 +P3-->P4: msg_20",output/292.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Idea 2 +*** Subitem 2.0",output/282.pintora.png +"Create an ER diagram for a blog system with users, posts, and comments","erDiagram +title: Blog System ER Diagram +USER { + int id PK + string username + string email + datetime created_at +} +POST { + int id PK + int author_id FK ""references USER"" + string title + text content + datetime published_at +} +COMMENT { + int id PK + int post_id FK + int user_id FK + text content +} +USER ||--o{ POST : writes +USER ||--o{ COMMENT : makes +POST ||--o{ COMMENT : has",output/915.pintora.png +Build a detailed component architecture diagram. Include nested structures.,"componentDiagram +title: Cloud Architecture +cloud ""Cloud Infrastructure"" { + [Comp0_0] + [Comp0_1] +} +node ""Container Group"" { + [Comp1_0] + [Comp1_1] +} +package ""Backend"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] +} +[Comp0_1] --> [Comp2_2] +[Comp0_1] ..|> [Comp0_0] +[Comp2_1] --> [Comp1_0] +[Comp2_2] ..|> [Comp1_1] +[Comp0_0] --> [Comp1_0] +[Comp2_0] --> [Comp1_0] +[Comp1_1] -- [Comp1_0] +[Comp2_1] --> [Comp2_0] +[Comp1_1] ..> [Comp2_1] +[Comp0_1] ..|> [Comp2_0] +[Comp2_2] ..|> [Comp0_1]",output/905.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""box"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n9 -> n3 + n5 -> n0 + n0 -> n7 + n10 -> n4 + n8 -> n0 + n9 -> n6 + n3 -> n10 + n7 -> n5 + n6 -> n5 + n6 -> n10 + n10 -> n2 + n6 -> n0 +}",output/718.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n5 -> n1 + n6 -> n0 + n3 -> n4 + n4 -> n2 + n4 -> n2 + n2 -> n4 + n6 -> n3 + n5 -> n6 +}",output/660.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n10 [shape=""circle"", label=""Node n10""] + n11 [shape=""ellipse"", label=""Node n11""] + n7 -> n6 + n7 -> n0 + n11 -> n4 + n3 -> n5 + n9 -> n11 + n2 -> n1 + n5 -> n7 + n7 -> n0 + n6 -> n3 + n7 -> n2 + n3 -> n0 + n9 -> n8 + n3 -> n1 +}",output/708.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +participant Service_1 +participant Service_2 +participant Service_3 +participant Service_4 +Service_3-->>Service_0: Message 591 +Service_0-->Service_1: Message 627 +Service_0-xService_2: Message 624 +@note right of Service_2: Note processing +Service_2->Service_0: Message 767 +Service_1-->Service_3: Message 773 +Service_0-->Service_3: Message 352 +Service_4-->>Service_2: Message 982 +Service_0-xService_1: Message 475 +loop Loop check + Service_0-->Service_2: Message 676 +end +Service_4->Service_3: Message 426 +alt Condition + Service_3-->>Service_0: Message 943 +else Other case + Service_0-->>Service_3: Response +end +Service_4->>Service_1: Message 913",output/670.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +fork + :Parallel 1 5; +forkagain + :Parallel 2 5; +endfork +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +:Process 9; +end",output/506.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Action 1; +:Process 2; +:Process 3; +:Process 4; +end",output/516.pintora.png +Design an Entity Relationship diagram. Include about 5 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|| Ent2 : relates",output/353.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2-->P3: msg_20 +P0->P3: msg_47 +P3-->P1: msg_50 +P1-->>P3: msg_99 +P0->>P2: msg_49 +P1->P0: msg_29 +P3->P0: msg_39 +P0->P1: msg_75 +P0-->>P1: msg_80 +P2-->>P3: msg_83 +P1-->>P0: msg_23 +P0-->P2: msg_72 +P2->P3: msg_100 +P3-->>P1: msg_6 +P2->>P3: msg_5",output/343.pintora.png +Write a DOT diagram with arrow styles,"dotDiagram +digraph Arrows { + bgcolor=""#faf5f5"" + node [bgcolor=orange] + + a -> b [arrowhead=""normal""] + c -> d [arrowhead=""diamond""] + e -> f [arrowhead=""dot""] + g -> h [arrowhead=""open""] + i -> j [arrowhead=""box""] + k -> l [arrowhead=""odot""] +}",output/943.pintora.png +Write an ER diagram with @config styling,"erDiagram +@config({ + ""themeConfig"": { + ""theme"": ""larkLight"" + }, + ""er"": { + ""edgeType"": ""ortho"" + } +}) +@param fontSize 16 +@param fontStyle italic +USER { + int id PK + string name +} +POST { + int id PK + int user_id FK +} +USER ||--o{ POST : creates",output/953.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/491.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +:step_6; +:step_7; +end",output/40.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +end",output/481.pintora.png +Draft a component diagram for system architecture. Include about 8 elements.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] + [Comp4] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4]",output/50.pintora.png +Create a flow activity diagram with approximately 6 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Action 1; +:Action 2; +:Action 3; +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +:Action 5; +end",output/428.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +autonumber +Service_0->>Service_1: Message 910 +Service_0-->>Service_1: Message 817 +loop Loop check + Service_0-->Service_1: Message 695 +end +Service_1-->>Service_0: Message 307 +alt Condition + Service_0-->Service_1: Message 588 +else Other case + Service_1-->>Service_0: Response +end +alt Condition + Service_0-xService_1: Message 639 +else Other case + Service_1-->>Service_0: Response +end +Service_1-->Service_0: Message 253",output/550.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + int field_1 + datetime field_2 + float field_3 + bool field_4 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + string field_2 +} +TABLE_3 { + int id PK + string field_0 + datetime field_1 + datetime field_2 +} +TABLE_4 { + int id PK + datetime field_0 + string field_1 + bool field_2 +} +TABLE_5 { + int id PK + datetime field_0 + bool field_1 + datetime field_2 + datetime field_3 +} +TABLE_6 { + int id PK + string field_0 + int field_1 + bool field_2 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--|{ TABLE_3 : has +TABLE_3 ||--o{ TABLE_4 : owns +TABLE_4 ||--o{ TABLE_5 : contains +TABLE_5 ||--o{ TABLE_6 : owns",output/438.pintora.png +Create a sequence diagram with random interaction patterns involving 13 steps.,"sequenceDiagram +autonumber +participant Service_2 +participant Service_3 +participant Service_4 +Service_0-->>Service_1: Message 708 +Service_4-->Service_0: Message 973 +Service_3-xService_0: Message 299 +Service_2-xService_3: Message 933 +Service_0->Service_4: Message 813 +Service_4->>Service_1: Message 873 +loop Loop check + Service_2-->Service_4: Message 953 +end +Service_2-xService_3: Message 908 +Service_3-xService_2: Message 195 +Service_3-->Service_4: Message 774 +Service_4-xService_3: Message 505 +@note right of Service_0: Note processing +Service_0->Service_4: Message 596 +Service_1->Service_4: Message 298",output/540.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 10d +""Task 2"" : 2024-01-21, 3d +""Task 3"" : 2024-01-24, 5d",output/305.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +end",output/315.pintora.png +Design a comprehensive Entity Relationship diagram.,"erDiagram +title: E-Commerce System +ORDER { + int order_id PK + string quantity + float name + string phone FK + datetime price FK + string date +} +USER { + int user_id PK + bool description FK + string name FK + string date + int price +} +PRODUCT { + int product_id PK + string price + float status + string description + float quantity +} +REVIEW { + int review_id PK + text name FK + datetime address + datetime quantity +} +INVENTORY { + int inventory_id PK + bool phone + bool phone + float email + string quantity + float phone +} +CATEGORY { + int category_id PK + int description FK + float name +} +ORDER ||--o{ USER : manages +USER ||--o{ PRODUCT : owns +PRODUCT ||--o{ CATEGORY : processes +REVIEW ||--|{ INVENTORY : manages +INVENTORY ||--|{ CATEGORY : has",output/882.pintora.png +Create a detailed hierarchical mind map. Use advanced syntax features.,"mindmap +@param layoutDirection TB +* Product Strategy +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +*** Subtopic A.2 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +** Topic C +*** Subtopic C.1 +**** Detail C.1.1 +**** Detail C.1.2 +**** Detail C.1.3 +*** Subtopic C.2 +**** Detail C.2.1 +**** Detail C.2.2 +*** Subtopic C.3 +*** Subtopic C.4 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2 +*** Subtopic D.3 +** Topic E +*** Subtopic E.1 +*** Subtopic E.2",output/892.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + int field_2 + bool field_3 + int field_4 +} +TABLE_1 { + int id PK + float field_0 + float field_1 + datetime field_2 + float field_3 + string field_4 +} +TABLE_2 { + int id PK + datetime field_0 + bool field_1 +} +TABLE_0 ||--o{ TABLE_1 : has +TABLE_1 }|--|| TABLE_2 : has",output/636.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + string field_1 + int field_2 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + datetime field_2 + bool field_3 +} +TABLE_2 { + int id PK + int field_0 + string field_1 + int field_2 + int field_3 +} +TABLE_3 { + int id PK + string field_0 + string field_1 + bool field_2 + float field_3 + datetime field_4 +} +TABLE_4 { + int id PK + bool field_0 + string field_1 + int field_2 +} +TABLE_5 { + int id PK + datetime field_0 + float field_1 + string field_2 + datetime field_3 +} +TABLE_6 { + int id PK + int field_0 + datetime field_1 + int field_2 + int field_3 +} +TABLE_7 { + int id PK + float field_0 + bool field_1 + float field_2 + datetime field_3 +} +TABLE_0 ||--|{ TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : contains +TABLE_2 }|--|| TABLE_3 : manages +TABLE_3 ||--|| TABLE_4 : manages +TABLE_4 ||--|| TABLE_5 : contains +TABLE_5 ||--o{ TABLE_6 : uses +TABLE_6 ||--|| TABLE_7 : uses",output/626.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Process 2; +:Action 3; +:Action 4; +end",output/654.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +participant Service_2 +Service_1-->>Service_0: Message 522 +Service_3-->Service_1: Message 939 +Service_1->Service_3: Message 328 +Service_2->Service_0: Message 908 +Service_1-xService_0: Message 111 +Service_3->Service_2: Message 391 +loop Loop check + Service_3-->>Service_0: Message 255 +end +Service_2->>Service_1: Message 128 +loop Loop check + Service_3-xService_2: Message 643 +end +loop Loop check + Service_1->>Service_3: Message 131 +end",output/644.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 o-- Class2 +Class2 --> Class3",output/179.pintora.png +Write a class diagram for builder pattern,"classDiagram +class Product { + -partA + -partB + -partC +} +class Builder { + <> + +buildPartA() + +buildPartB() + +buildPartC() + +getResult() Product +} +class ConcreteBuilder { + -product Product + +buildPartA() + +buildPartB() + +buildPartC() + +getResult() Product +} +class Director { + -builder Builder + +construct() +} +Builder <|.. ConcreteBuilder +Director --> Builder +ConcreteBuilder --> Product : creates",output/998.pintora.png +Create a sequence diagram showing interaction between participants. Include about 9 elements.,"sequenceDiagram +autonumber +P3->P4: msg_99 +P3->P1: msg_33 +P3->P4: msg_71 +P0-->P4: msg_72 +P0-->P2: msg_20 +P0->>P3: msg_53 +P4-->>P1: msg_44 +P2-->>P4: msg_4 +P1->P3: msg_26",output/169.pintora.png +Write an ER diagram for inventory management,"erDiagram +WAREHOUSE { + int id PK + string name + string location +} +PRODUCT { + int id PK + string sku + string name + float price +} +INVENTORY { + int warehouse_id PK + int product_id PK + int quantity + date last_updated +} +SUPPLIER { + int id PK + string name + string contact +} +SUPPLY { + int supplier_id FK + int product_id FK + float cost +} +WAREHOUSE ||--o{ INVENTORY : stores +PRODUCT ||--o{ INVENTORY : ""stored in"" +SUPPLIER ||--o{ SUPPLY : provides +PRODUCT ||--o{ SUPPLY : ""supplied by"" ",output/988.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 o-- Class2",output/367.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 10 elements.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Concept 1 +*** Subitem 1.0",output/377.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +:Action 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +end",output/532.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + datetime field_1 + float field_2 + float field_3 +} +TABLE_1 { + int id PK + int field_0 + int field_1 + bool field_2 +} +TABLE_2 { + int id PK + string field_0 + float field_1 + float field_2 +} +TABLE_3 { + int id PK + int field_0 + int field_1 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + string field_2 + int field_3 +} +TABLE_5 { + int id PK + datetime field_0 + float field_1 +} +TABLE_6 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 + bool field_3 + string field_4 +} +TABLE_7 { + int id PK + float field_0 + int field_1 + int field_2 +} +TABLE_0 ||--o{ TABLE_1 : has +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : owns +TABLE_3 ||--o{ TABLE_4 : manages +TABLE_4 ||--|{ TABLE_5 : manages +TABLE_5 ||--|| TABLE_6 : contains +TABLE_6 ||--|{ TABLE_7 : has",output/522.pintora.png +Create a sequence diagram showing interaction between participants. Include about 14 elements.,"sequenceDiagram +autonumber +P2-->P0: msg_34 +P0->P1: msg_73 +P2-->>P1: msg_89 +P1-->P3: msg_63 +P1-->>P0: msg_21 +P0->P3: msg_49 +P3->P2: msg_14 +P3-->>P1: msg_15 +P3-->>P0: msg_36 +P0->>P1: msg_49 +P0->>P1: msg_11 +P1->P3: msg_52 +P2-->P1: msg_75 +P1-->>P3: msg_13",output/22.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +class Class5 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 --> Class2 +Class2 o-- Class3 +Class3 <|-- Class4 +Class4 <|-- Class5",output/32.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + bool field_1 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + float field_2 + int field_3 + bool field_4 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 +} +TABLE_3 { + int id PK + string field_0 + bool field_1 + bool field_2 + bool field_3 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : owns +TABLE_2 ||--|| TABLE_3 : contains",output/795.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + float field_1 + bool field_2 + int field_3 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 +} +TABLE_2 { + int id PK + bool field_0 + datetime field_1 + bool field_2 + int field_3 + datetime field_4 +} +TABLE_3 { + int id PK + datetime field_0 + int field_1 + datetime field_2 + bool field_3 +} +TABLE_4 { + int id PK + string field_0 + int field_1 + int field_2 +} +TABLE_5 { + int id PK + float field_0 + bool field_1 + datetime field_2 +} +TABLE_6 { + int id PK + datetime field_0 + float field_1 +} +TABLE_7 { + int id PK + int field_0 + datetime field_1 + int field_2 +} +TABLE_0 ||--|| TABLE_1 : has +TABLE_1 ||--o{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : uses +TABLE_3 }|--|| TABLE_4 : owns +TABLE_4 ||--o{ TABLE_5 : owns +TABLE_5 ||--|{ TABLE_6 : contains +TABLE_6 ||--o{ TABLE_7 : owns",output/785.pintora.png +Map a complex business process with activity diagram.,"activityDiagram +start +partition Validation { + :Step 0; + :Step 1; + :Step 2; + while (Check 3?) is (yes) + :Process 3; + endwhile (done) + if (Condition 4?) then (yes) + :Action True 4; + else (no) + :Action False 4; + endif + @note right: Important step 5 + :Critical action 5; +} +end",output/859.pintora.png +Write a component diagram showing interfaces and dependencies,"componentDiagram +component Backend +[Frontend] +() ""HTTP API"" as HTTP +() ""WebSocket"" as WS +interface ""Database"" as DB +[Frontend] --> HTTP : uses +[Frontend] --> WS : subscribes +HTTP -- Backend +WS -- Backend +Backend --> DB",output/921.pintora.png +Write a Pintora diagram: build a detailed component architecture diagram.,"componentDiagram +cloud ""Azure"" { + [Comp0_0] + [Comp0_1] + [Comp0_2] + [Comp0_3] + () I0 +} +package ""Frontend"" { + [Comp1_0] + [Comp1_1] + () I1 +} +cloud ""Cloud Infrastructure"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] + () I2 +} +package ""API Layer"" { + [Comp3_0] + [Comp3_1] + () I3 +} +I0 -- [Comp0_3] +[Comp3_1] -- I2 +[Comp1_0] --> [Comp2_1] +[Comp2_0] --> I0 +[Comp0_0] -- [Comp2_2] +I0 -- I1 +[Comp1_1] -- [Comp3_0] +I1 ..|> [Comp0_3] +[Comp3_0] ..> [Comp0_3] +[Comp0_2] -- I0 +I1 --> [Comp3_0] +[Comp2_1] --> [Comp0_1] +[Comp0_0] ..|> [Comp2_2] +[Comp2_1] ..|> [Comp0_3] +[Comp0_0] --> [Comp0_3] +[Comp2_2] ..> [Comp0_3] +[Comp1_1] ..> I0",output/849.pintora.png +Create a mind map for a software development project,"mindmap +title: Software Development +* Project +** Planning +*** Requirements +*** Timeline +*** Budget +** Development +*** Frontend +*** Backend +*** Database +** Testing +*** Unit Tests +*** Integration +*** E2E Tests +** Deployment +*** Staging +*** Production",output/931.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 4d +""Task 2"" : 2024-01-10, 3d +""Task 3"" : 2024-01-13, 10d +""Task 4"" : 2024-01-23, 6d",output/124.pintora.png +Create a sequence diagram showing interaction between participants. Include about 13 elements.,"sequenceDiagram +autonumber +P3-->P2: msg_4 +P0->>P2: msg_2 +P2->>P1: msg_6 +P2->>P1: msg_68 +P0->>P3: msg_49 +P2->P3: msg_29 +P3-->P0: msg_86 +P3-->>P0: msg_1 +P0->P2: msg_29 +P2->>P1: msg_74 +P0->>P3: msg_70 +P1-->>P0: msg_19 +P1->P0: msg_69",output/134.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""circle"", label=""Node n8""] + n9 [shape=""ellipse"", label=""Node n9""] + n3 -> n5 + n9 -> n3 + n7 -> n5 + n1 -> n5 + n6 -> n3 + n8 -> n2 + n7 -> n5 + n9 -> n3 + n6 -> n0 + n4 -> n2 + n4 -> n7 +}",output/771.pintora.png +Write an Entity Relationship diagram with 8 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + string field_1 + bool field_2 +} +TABLE_1 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_2 { + int id PK + string field_0 + int field_1 + bool field_2 + float field_3 +} +TABLE_3 { + int id PK + datetime field_0 + int field_1 + int field_2 + string field_3 +} +TABLE_4 { + int id PK + bool field_0 + bool field_1 + float field_2 + int field_3 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 + datetime field_2 + bool field_3 + bool field_4 +} +TABLE_6 { + int id PK + datetime field_0 + string field_1 + int field_2 + datetime field_3 +} +TABLE_7 { + int id PK + string field_0 + datetime field_1 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--|| TABLE_3 : owns +TABLE_3 ||--|{ TABLE_4 : uses +TABLE_4 }|--|| TABLE_5 : uses +TABLE_5 ||--|{ TABLE_6 : owns +TABLE_6 }|--|| TABLE_7 : contains",output/609.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Action 1; +:Process 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +end",output/761.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n2 -> n0 + n8 -> n3 + n3 -> n7 + n8 -> n0 + n0 -> n6 + n9 -> n5 + n0 -> n1 + n7 -> n2 +}",output/619.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n10 [shape=""ellipse"", label=""Node n10""] + n3 -> n4 + n0 -> n10 + n4 -> n5 + n1 -> n4 + n1 -> n10 + n8 -> n10 + n2 -> n6 + n3 -> n6 + n1 -> n4 + n9 -> n1 + n8 -> n2 +}",output/417.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +:step_7; +:step_8; +end",output/407.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 --> Class3",output/242.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +*** Subitem 1.2 +**** Detail 1.2.1 +** Feature 2 +*** Subitem 2.0 +*** Subitem 2.1 +*** Subitem 2.2",output/252.pintora.png +Write an ER diagram for a ticketing system,"erDiagram +title: Support Ticketing System +TICKET { + int id PK + string title + text description + string status + string priority + datetime created_at +} +USER { + int id PK + string name + string email + string role +} +COMMENT { + int id PK + int ticket_id FK + int user_id FK + text content + datetime posted_at +} +ATTACHMENT { + int id PK + int ticket_id FK + string filename + string url +} +USER ||--o{ TICKET : creates +USER ||--o{ TICKET : ""assigned to"" +TICKET ||--o{ COMMENT : has +USER ||--o{ COMMENT : writes +TICKET ||--o{ ATTACHMENT : contains",output/1006.pintora.png +Map out a process flow using an activity diagram. Include about 7 elements.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +end",output/383.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P2-->>P0: msg_6 +P2-->>P1: msg_84 +P2->>P1: msg_11 +P1-->P2: msg_44 +P0-->>P2: msg_25 +P0->P2: msg_13 +P0-->>P1: msg_70 +P2-->P1: msg_55",output/393.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + int field_1 + int field_2 + float field_3 +} +TABLE_1 { + int id PK + string field_0 + float field_1 + datetime field_2 +} +TABLE_2 { + int id PK + float field_0 + bool field_1 + string field_2 + datetime field_3 + string field_4 +} +TABLE_0 ||--o{ TABLE_1 : has +TABLE_1 ||--o{ TABLE_2 : owns",output/804.pintora.png +Write a Pintora diagram: build a detailed component architecture diagram.,"componentDiagram +package ""Services"" { + [Comp0_0] + [Comp0_1] + [Comp0_2] +} +database ""Persistence"" { + [Comp1_0] + [Comp1_1] + () I1 +} +node ""Cluster"" { + [Comp2_0] + [Comp2_1] + [Comp2_2] + () I2 +} +[Comp2_2] ..> [Comp2_1] +[Comp2_1] ..|> I1 +[Comp0_1] ..> [Comp2_0] +I2 --> [Comp2_1] +[Comp2_0] ..|> [Comp2_2] +[Comp2_1] -- [Comp0_2] +[Comp0_2] --> [Comp0_1] +[Comp1_1] --> [Comp0_2] +I1 ..> I2 +[Comp0_1] ..|> [Comp2_0] +I1 --> [Comp1_1]",output/814.pintora.png +Visualize a complex graph with DOT diagram.,"dotDiagram +digraph G { + bgcolor=""#f5f5f5"" + node [shape=""plaintext"", bgcolor=""#e3f2fd""] + subgraph cluster_0 { + label=""Group A"" + a0 [label=""Node a0""] + a1 [label=""Node a1""] + a2 [label=""Node a2""] + } + subgraph cluster_1 { + label=""Group B"" + b0 [label=""Node b0""] + b1 [label=""Node b1""] + } + b1 -> a2 + a2 -> b0 + a0 -> a1 [color=""blue""] + a2 -> a0 [color=""purple""] + b1 -> a0 [color=""blue""] + b0 -> a1 + a0 -> b1 + a2 -> a1 + a1 -> a0 [color=""purple""] + a1 -> b1 +}",output/866.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates",output/299.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1",output/289.pintora.png +Map out a process flow using an activity diagram. Include about 10 elements.,"activityDiagram +start +:step_0; +:step_1; +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +end",output/220.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 5 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Feature 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1",output/358.pintora.png +Schedule tasks using a Gantt chart. Include about 9 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 4d +""Task 2"" : 2024-01-10, 10d +""Task 3"" : 2024-01-20, 3d +""Task 4"" : 2024-01-23, 3d +""Task 5"" : 2024-01-26, 5d",output/230.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--o{ Ent4 : relates",output/348.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + string field_1 + bool field_2 + string field_3 + string field_4 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + datetime field_2 + float field_3 + bool field_4 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 +} +TABLE_0 ||--|| TABLE_1 : owns +TABLE_1 ||--o{ TABLE_2 : manages",output/475.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n5 -> n0 + n1 -> n5 + n0 -> n4 + n3 -> n5 + n4 -> n0 + n5 -> n0 +}",output/465.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + int field_1 + bool field_2 + float field_3 +} +TABLE_1 { + int id PK + string field_0 + datetime field_1 + datetime field_2 +} +TABLE_2 { + int id PK + int field_0 + string field_1 + float field_2 + datetime field_3 + int field_4 +} +TABLE_3 { + int id PK + int field_0 + bool field_1 + string field_2 + int field_3 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : has",output/713.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n2 -> n9 + n2 -> n1 + n4 -> n2 + n5 -> n10 + n6 -> n10 + n9 -> n7 + n3 -> n8 + n9 -> n7 + n2 -> n5 + n2 -> n1 + n9 -> n2 +}",output/703.pintora.png +Model an object-oriented system with a class diagram. Include about 9 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 o-- Class2 +Class2 o-- Class3",output/146.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 o-- Class2 +Class2 *-- Class3",output/156.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n0 -> n2 + n3 -> n0 + n2 -> n4 + n4 -> n3 + n2 -> n1 + n0 -> n4 +}",output/735.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + bool field_1 + datetime field_2 + int field_3 +} +TABLE_1 { + int id PK + float field_0 + float field_1 + float field_2 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + bool field_2 + string field_3 +} +TABLE_0 ||--|| TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : has",output/725.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n3 -> n1 + n2 -> n0 + n3 -> n2 + n0 -> n2 + n2 -> n0 + n3 -> n1 + n2 -> n3 + n3 -> n2 + n1 -> n3 + n0 -> n3 + n1 -> n2 + n0 -> n1 + n0 -> n3 + n0 -> n3 + n3 -> n1 +}",output/160.pintora.png +Create a component diagram with frame and folder containers,"componentDiagram +frame ""Application Framework"" { + folder ""Core Modules"" { + [Authentication] + [Authorization] + [Logging] + } + folder ""Business Logic"" { + [User Management] + [Order Processing] + } +} +[User Management] --> [Authentication] +[User Management] --> [Authorization] +[Order Processing] --> [Logging]",output/981.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 --> Class2 +Class2 o-- Class3 +Class3 o-- Class4",output/170.pintora.png +Create a class diagram for MVC pattern,"classDiagram +title: MVC Pattern +class Model { + -data + +getData() + +setData(data) + +notifyObservers() +} +class View { + -controller + +render() + +getUserInput() +} +class Controller { + -model + -view + +handleUserAction(action) + +updateView() +} +Controller --> Model : updates +Controller --> View : controls +View --> Controller : user actions +Model ..> View : notifies",output/991.pintora.png +Create a sequence diagram showing interaction between participants. Include about 11 elements.,"sequenceDiagram +autonumber +P4->>P1: msg_43 +P2->>P3: msg_13 +P0->P2: msg_30 +P4->>P1: msg_42 +P1-->P0: msg_47 +P2->>P4: msg_5 +P4-->>P0: msg_75 +P2-->>P4: msg_22 +P2-->P3: msg_30 +P2-->P4: msg_78 +P4->P2: msg_76",output/206.pintora.png +Model an object-oriented system with a class diagram. Include about 8 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 <|-- Class2 +Class2 --> Class3",output/216.pintora.png +Create a sequence diagram with random interaction patterns involving 12 steps.,"sequenceDiagram +autonumber +Service_0->>Service_1: Message 823 +Service_0->Service_1: Message 287 +Service_1->Service_0: Message 693 +loop Loop check + Service_1->Service_0: Message 231 +end +Service_0->Service_1: Message 791 +alt Condition + Service_0-xService_1: Message 685 +else Other case + Service_1-->>Service_0: Response +end +Service_0->Service_1: Message 789 +Service_1-xService_0: Message 882 +Service_0->Service_1: Message 967 +Service_0->Service_1: Message 194 +Service_1-->Service_0: Message 635 +Service_0-->Service_1: Message 509",output/453.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 o-- Class2 +Class2 <|-- Class3 +Class3 *-- Class4",output/82.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +end",output/443.pintora.png +Model an object-oriented system with a class diagram. Include about 7 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 <|-- Class2",output/92.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n3 -> n5 + n3 -> n4 + n1 -> n4 + n0 -> n5 + n1 -> n3 + n0 -> n1 + n0 -> n2 + n0 -> n3 +}",output/592.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Action 1; +:Action 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Action 5; +:Process 6; +:Process 7; +:Process 8; +end",output/582.pintora.png +Create a Gantt chart with custom styling,"gantt +@param barHeight 25 +@config({ + ""gantt"": { + ""barBackground"": ""#61afef"", + ""sectionBackgrounds"": [""#e6f3ff"", ""#fff3e6"", null], + ""sectionLabelColor"": ""#333333"" + } +}) +title Project Schedule +dateFormat YYYY-MM-DD +section Planning +""Kickoff"" : 2024-01-01, 1d +""Requirements"" : 2024-01-02, 5d +section Development +""Sprint 1"" : 2024-01-08, 14d +""Sprint 2"" : 2024-01-22, 14d +section Delivery +""Release"" : milestone, 2024-02-05, 0d",output/938.pintora.png +Map a complex business process with activity diagram. Use advanced syntax features.,"activityDiagram +title: Workflow +start +partition Processing { + @note right: Important step 0 + :Critical action 0; + fork + :Parallel Task A1; + forkagain + :Parallel Task B1; + endfork + if (Condition 2?) then (yes) + :Action True 2; + else (no) + :Action False 2; + endif + @note right: Important step 3 + :Critical action 3; + while (Check 4?) is (yes) + :Process 4; + endwhile (done) + :Step 5; + :Step 6; +} +end",output/850.pintora.png +Write an activity diagram with switch-case,"activityDiagram +start +:Get user role; +switch (role?) +case (admin) + :Show admin dashboard; +case (editor) + :Show editor panel; +case (viewer) + :Show read-only view; +endswitch +:Load permissions; +end",output/928.pintora.png +Build a detailed component architecture diagram.,"componentDiagram +title: Microservices +cloud ""Azure"" { + [Comp0_0] + [Comp0_1] + [Comp0_2] + [Comp0_3] +} +cloud ""GCP"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + () I1 +} +package ""Services"" { + [Comp2_0] + [Comp2_1] + () I2 +} +package ""Frontend"" { + [Comp3_0] + [Comp3_1] +} +[Comp1_1] ..> [Comp3_1] +[Comp1_1] -- [Comp0_1] +[Comp1_1] -- [Comp2_1] +[Comp1_1] ..> [Comp2_0] +[Comp0_0] -- [Comp0_2] +[Comp1_0] ..> [Comp0_1] +[Comp3_0] --> [Comp0_2] +[Comp1_1] ..|> I2 +[Comp2_0] ..> [Comp1_1] +[Comp1_0] ..|> [Comp3_0] +[Comp0_3] ..|> [Comp0_1] +[Comp1_1] --> [Comp0_3] +[Comp3_0] ..> [Comp2_1] +[Comp0_0] ..> [Comp1_0] +[Comp3_0] --> [Comp0_2] +[Comp0_3] ..|> I1 +[Comp0_1] ..> [Comp2_0] +[Comp0_0] ..|> [Comp0_3] +[Comp1_0] -- I1 +I2 -- [Comp1_2] +I1 ..> [Comp0_3] +[Comp1_0] ..> [Comp0_2] +I1 --> [Comp3_1] +[Comp1_0] -- [Comp1_1]",output/822.pintora.png +Write a Pintora diagram: model an object-oriented system with class diagram.,"classDiagram +title: Factory Pattern +class FactoryA { + -string attr0 + #boolean attr1 + ~int attr2 + -method0() T + +{static} method1() string +} +class ServiceB { + -int attr0 + +int attr1 + +method0() void + #method1() string + ~method2() boolean +} +class ManagerC { + +string attr0 + ~string attr1 + -boolean attr2 + -method0() string + +method1() T +} +class StrategyD { + ~int attr0 + #string attr1 + #List~T~ attr2 + #method0() T + #method1() void + +method2() string +} +class HandlerE { + ~int attr0 + -method0() void + #{static} method1() T +} +class FactoryF { + -boolean attr0 + #method0() void + ~method1() void + #method2() string +} +class HandlerG { + <> + -int attr0 + #method0() string + +{static} method1() string + ~{static} method2() void +} +FactoryA <|.. ManagerC +ServiceB o-- HandlerG +ManagerC <|-- StrategyD +StrategyD <|.. HandlerE +HandlerE ..> HandlerG +FactoryF --> HandlerG",output/832.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n6 -> n7 + n2 -> n6 + n0 -> n3 + n5 -> n3 + n6 -> n7 + n3 -> n6 + n0 -> n4 + n2 -> n6 +}",output/696.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + float field_1 +} +TABLE_1 { + int id PK + datetime field_0 + string field_1 + float field_2 + int field_3 + bool field_4 +} +TABLE_2 { + int id PK + int field_0 + bool field_1 + int field_2 + string field_3 +} +TABLE_3 { + int id PK + float field_0 + string field_1 +} +TABLE_4 { + int id PK + float field_0 + string field_1 + float field_2 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : manages +TABLE_3 ||--|| TABLE_4 : has",output/686.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +participant Service_2 +participant Service_3 +Service_0-->>Service_3: Message 605 +Service_0-xService_2: Message 300 +loop Loop check + Service_0-->>Service_2: Message 113 +end +Service_3->Service_1: Message 150 +Service_0-->>Service_1: Message 970 +@note right of Service_0: Note processing +Service_0->>Service_3: Message 938 +alt Condition + Service_1-->Service_2: Message 277 +else Other case + Service_2-->>Service_1: Response +end +Service_3->>Service_2: Message 312 +alt Condition + Service_2-->Service_0: Message 505 +else Other case + Service_0-->>Service_2: Response +end +loop Loop check + Service_1-->>Service_3: Message 203 +end +Service_0->>Service_1: Message 187 +Service_0->>Service_1: Message 724 +Service_1->>Service_0: Message 143 +Service_2-xService_0: Message 200",output/488.pintora.png +Design an Entity Relationship diagram. Include about 12 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 }|--|| Ent4 : relates",output/59.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Action 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +end",output/498.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 2d +""Task 1"" : 2024-01-03, 9d +""Task 2"" : 2024-01-12, 8d +""Task 3"" : 2024-01-20, 2d +""Task 4"" : 2024-01-22, 3d +""Task 5"" : 2024-01-25, 9d",output/49.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n10 [shape=""box"", label=""Node n10""] + n5 -> n3 + n6 -> n7 + n4 -> n9 + n10 -> n0 + n5 -> n4 + n6 -> n1 + n5 -> n3 + n5 -> n4 + n9 -> n4 + n4 -> n9 + n8 -> n5 +}",output/431.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_0-->>Service_1: Message 807 +Service_0-->Service_1: Message 977 +Service_0-xService_1: Message 989 +Service_1-xService_0: Message 360 +Service_1-->Service_0: Message 362",output/549.pintora.png +Write a component diagram showing a system with 5 components distributed across packages.,"componentDiagram +package ""System A"" { + [Comp0] + [Comp1] +} +package ""System B"" { + [Comp2] + [Comp3] + [Comp4] +} +() HTTP +() DB_Conn +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp0] --> HTTP +[Comp4] --> DB_Conn",output/421.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Action 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +:Process 4; +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +end",output/559.pintora.png +Create a sequence diagram showing interaction between participants.,"sequenceDiagram +autonumber +P1-->P2: msg_18 +P3->P2: msg_37 +P3->>P2: msg_79 +P0-->P1: msg_47 +P0-->P2: msg_66 +P0-->P2: msg_18 +P3-->P0: msg_92",output/264.pintora.png +Model an object-oriented system with a class diagram. Include about 12 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 <|-- Class2 +Class2 <|-- Class3",output/274.pintora.png +Draft a component diagram for system architecture. Include about 7 elements.,"componentDiagram +package ""System"" { + [Comp0] + [Comp1] + [Comp2] + [Comp3] + [Comp4] + [Comp5] +} +[Comp0] --> [Comp1] +[Comp1] --> [Comp2] +[Comp2] --> [Comp3] +[Comp3] --> [Comp4] +[Comp4] --> [Comp5]",output/102.pintora.png +Schedule tasks using a Gantt chart. Include about 12 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 4d +""Task 1"" : 2024-01-05, 9d +""Task 2"" : 2024-01-14, 4d +""Task 3"" : 2024-01-18, 7d +""Task 4"" : 2024-01-25, 8d",output/112.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +end",output/757.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + bool field_1 + string field_2 + datetime field_3 + int field_4 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + bool field_2 + datetime field_3 +} +TABLE_2 { + int id PK + int field_0 + int field_1 +} +TABLE_0 ||--|{ TABLE_1 : has +TABLE_1 ||--|{ TABLE_2 : uses",output/747.pintora.png +Create a Pintora sequence diagram showing a user login flow with authentication service,"sequenceDiagram +title: User Login Flow +participant User +participant Frontend +participant AuthService +participant Database +User->>Frontend: Enter credentials +Frontend->>AuthService: POST /login +AuthService->>Database: Query user +Database-->>AuthService: User data +alt Valid credentials + AuthService-->>Frontend: JWT Token + Frontend-->>User: Login successful +else Invalid credentials + AuthService-->>Frontend: 401 Unauthorized + Frontend-->>User: Show error +end",output/907.pintora.png +Create an ER diagram showing inheritance relationships,"erDiagram +PERSON { + int id PK + string name + string phone +} +EMPLOYEE inherit PERSON +CUSTOMER inherit PERSON +EMPLOYEE { + string department + float salary + date hire_date +} +CUSTOMER { + string address + int loyalty_points +} +EMPLOYEE ||--o{ ORDER : processes +CUSTOMER ||--o{ ORDER : places",output/917.pintora.png +Create a sequence diagram showing interaction between participants. Include about 7 elements.,"sequenceDiagram +autonumber +P3->>P2: msg_60 +P0->>P1: msg_4 +P2-->>P3: msg_30 +P1-->P3: msg_81 +P3-->P2: msg_50 +P3-->>P1: msg_90 +P2-->>P3: msg_35",output/280.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 7 elements.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Concept 2 +*** Subitem 2.0 +** Feature 3 +*** Subitem 3.0 +*** Subitem 3.1 +**** Detail 3.1.1",output/290.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +:step_1; +:step_2; +:step_3; +:step_4; +:step_5; +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +end",output/14.pintora.png +Visualize a graph structure using DOT syntax. Include about 15 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n1 -> n3 + n1 -> n3 + n0 -> n2 + n4 -> n3 + n3 -> n2 + n1 -> n2 + n2 -> n1 + n2 -> n1 + n1 -> n4 + n2 -> n1 + n1 -> n0 + n2 -> n0 + n1 -> n0 + n4 -> n2 + n1 -> n3 +}",output/239.pintora.png +Map out a process flow using an activity diagram. Include about 15 elements.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +:step_3; +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +:step_9; +:step_10; +:step_11; +:step_12; +:step_13; +if (check14?) then (yes) + :action_yes_14; +else (no) + :action_no_14; +endif +end",output/341.pintora.png +Visualize a graph structure using DOT syntax. Include about 8 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n2 -> n1 + n4 -> n2 + n1 -> n4 + n3 -> n2 + n4 -> n2 + n3 -> n0 + n1 -> n2 + n4 -> n2 +}",output/229.pintora.png +Visualize a graph structure using DOT syntax. Include about 5 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n2 -> n0 + n6 -> n2 + n3 -> n4 + n3 -> n4 + n5 -> n2 +}",output/351.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n0 -> n3 + n2 -> n3 + n2 -> n5 + n1 -> n2 + n0 -> n2 + n2 -> n0 + n4 -> n1 +}",output/514.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n3 -> n1 + n3 -> n8 + n3 -> n8 + n0 -> n3 + n0 -> n3 + n4 -> n7 + n3 -> n8 + n4 -> n1 + n7 -> n0 + n0 -> n2 +}",output/504.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Action 3; +:Process 4; +end",output/672.pintora.png +Generate a DOT directed graph with 11 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""box"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n8 [shape=""diamond"", label=""Node n8""] + n9 [shape=""diamond"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n6 -> n2 + n5 -> n0 + n0 -> n10 + n10 -> n4 + n8 -> n0 + n10 -> n5 + n0 -> n9 + n9 -> n5 + n5 -> n10 + n9 -> n1 + n10 -> n0 +}",output/662.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""circle"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n3 -> n1 + n4 -> n1 + n2 -> n0 + n1 -> n0 + n4 -> n6 + n2 -> n1 + n4 -> n3 + n0 -> n6 + n4 -> n5 +}",output/768.pintora.png +Generate a DOT directed graph with 12 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""ellipse"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""diamond"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n9 [shape=""diamond"", label=""Node n9""] + n10 [shape=""diamond"", label=""Node n10""] + n11 [shape=""box"", label=""Node n11""] + n7 -> n2 + n6 -> n8 + n4 -> n6 + n10 -> n5 + n7 -> n3 + n7 -> n1 + n0 -> n8 + n7 -> n9 + n5 -> n0 + n0 -> n5 + n4 -> n9 +}",output/610.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +:Action 2; +:Action 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +:Process 7; +:Process 8; +:Process 9; +end",output/778.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +:Action 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +:Process 5; +fork + :Parallel 1 6; +forkagain + :Parallel 2 6; +endfork +:Process 7; +:Process 8; +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/600.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +participant Service_0 +participant Service_2 +participant Service_3 +Service_0->Service_2: Message 557 +Service_0-xService_2: Message 967 +Service_2-->Service_1: Message 735 +Service_1-->Service_3: Message 693 +Service_2-->>Service_3: Message 798 +Service_2-->Service_3: Message 188 +@note right of Service_1: Note processing +Service_1-xService_3: Message 113 +Service_0-->Service_2: Message 375",output/576.pintora.png +Create a sequence diagram with random interaction patterns involving 7 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +participant Service_2 +participant Service_3 +loop Loop check + Service_2-xService_0: Message 633 +end +Service_2-xService_0: Message 328 +Service_2-->>Service_0: Message 476 +alt Condition + Service_1-xService_0: Message 351 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->>Service_3: Message 112 +Service_0-->Service_3: Message 975 +alt Condition + Service_3-xService_2: Message 841 +else Other case + Service_2-->>Service_3: Response +end",output/566.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 8d +""Task 1"" : 2024-01-09, 3d +""Task 2"" : 2024-01-12, 7d +""Task 3"" : 2024-01-19, 6d +""Task 4"" : 2024-01-25, 6d +""Task 5"" : 2024-01-31, 5d",output/323.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2",output/333.pintora.png +Model an object-oriented system with a class diagram. Include about 5 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 o-- Class2 +Class2 o-- Class3 +Class3 --> Class4",output/66.pintora.png +Schedule tasks using a Gantt chart. Include about 7 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 9d +""Task 2"" : 2024-01-17, 5d +""Task 3"" : 2024-01-22, 7d +""Task 4"" : 2024-01-29, 7d",output/7.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 4d +""Task 2"" : 2024-01-15, 7d",output/76.pintora.png +Visualize a graph structure using DOT syntax. Include about 10 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n0 -> n4 + n5 -> n1 + n3 -> n5 + n5 -> n0 + n4 -> n0 + n3 -> n4 + n5 -> n2 + n3 -> n0 + n2 -> n1 + n4 -> n3 +}",output/184.pintora.png +Write an activity diagram for order fulfillment,"activityDiagram +title: Order Fulfillment +start +:Receive order; +partition Validation { + :Validate payment; + if (Payment valid?) then (yes) + :Validate inventory; + else (no) + :Cancel order; + end + endif +} +partition Fulfillment { + :Pick items from warehouse; + :Pack items; + :Generate shipping label; +} +partition Shipping { + :Hand to carrier; + :Update tracking; + :Send notification; +} +end",output/965.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 7d +""Task 1"" : 2024-01-08, 2d +""Task 2"" : 2024-01-10, 10d",output/194.pintora.png +Write an ER diagram for a social media platform,"erDiagram +title: Social Media Database +USER { + int user_id PK + string username + string email + datetime created_at +} +POST { + int post_id PK + int user_id FK + text content + datetime posted_at +} +COMMENT { + int comment_id PK + int post_id FK + int user_id FK + text content +} +LIKE { + int user_id PK + int post_id PK + datetime liked_at +} +FOLLOW { + int follower_id PK + int following_id PK +} +USER ||--o{ POST : creates +USER ||--o{ COMMENT : writes +USER ||--o{ LIKE : gives +POST ||--o{ COMMENT : has +POST ||--o{ LIKE : receives +USER ||--o{ FOLLOW : follows",output/975.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Action 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Action 6; +:Process 7; +:Process 8; +:Process 9; +end",output/583.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +loop Loop check + Service_0-->Service_1: Message 783 +end +Service_1-->Service_0: Message 953 +Service_1->>Service_0: Message 573 +Service_1->Service_0: Message 851 +loop Loop check + Service_0->Service_1: Message 525 +end +Service_1-->Service_0: Message 667 +Service_1->Service_0: Message 484 +Service_0->Service_1: Message 396 +Service_0-xService_1: Message 604 +Service_0-->Service_1: Message 319",output/593.pintora.png +Create an activity diagram with partitions and notes,"activityDiagram +start +partition Initialization { + :Load configuration; + @note right: Read from config.yaml + group #88bbf4 ""Setup"" { + :Initialize database; + :Setup logging; + } +} +partition Processing { + :Start main loop; + @start_note left + Main processing loop + runs until shutdown signal + @end_note +} +end",output/929.pintora.png +Visualize a complex graph with DOT diagram. Use advanced syntax features.,"dotDiagram +digraph G { + bgcolor=""#f5f5f5"" + node [shape=""box"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n6 -> n2 + n7 -> n0 [color=""purple""] + n0 -> n3 [color=""purple""] + n1 -> n7 + n4 -> n0 + n7 -> n3 + n1 -> n7 + n3 -> n0 + n0 -> n1 + n1 -> n2 +}",output/851.pintora.png +Write a Gantt chart with mark dates,"gantt +title Development Timeline +dateFormat YYYY-MM-DDTHH +axisFormat MM-DD +section Phase 1 +""Planning"" : 2024-03-01, 2024-03-07 +""Design"" : 2024-03-07, 2024-03-14 +markDate 2024-03-10T12 +section Phase 2 +""Implementation"" : 2024-03-14, 2024-03-28 +""Review"" : 2024-03-28, 2024-04-01 +markDate 2024-03-21T09",output/939.pintora.png +Create an advanced sequence diagram with complex interactions.,"sequenceDiagram +autonumber +loop Poll + ServiceE->ServiceA: Process event + ServiceA-->>ServiceE: Response +end +ServiceC->ServiceD: Fetch data +ServiceC-->ServiceF: Process event +ServiceA-->>ServiceD: Process event +activate ServiceC +ServiceB-xServiceC: Request 4 +deactivate ServiceC +loop Retry + ServiceC-xServiceF: Query 5 + ServiceF-->>ServiceC: Response +end +loop Retry + ServiceC-xServiceE: Fetch data + ServiceE-->>ServiceC: Response +end +@note right of ServiceE: Computing +ServiceE-->ServiceF: Query 7 +ServiceC->>ServiceA: Request 8",output/841.pintora.png +Write an activity diagram for exception handling,"activityDiagram +start +:Try block; +if (Exception thrown?) then (yes) + switch (Exception type?) + case (IOException) + :Log IO error; + :Retry operation; + case (SQLException) + :Rollback transaction; + :Log DB error; + case (Other) + :Log generic error; + endswitch + :Execute finally block; +else (no) + :Continue execution; + :Execute finally block; +endif +end",output/990.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 8 elements.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +*** Subitem 0.2 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +*** Subitem 1.2 +**** Detail 1.2.1 +** Feature 2 +*** Subitem 2.0 +**** Detail 2.0.1 +** Idea 3 +*** Subitem 3.0",output/171.pintora.png +Write an ER diagram with dashed relationships,"erDiagram +%% Dashed lines indicate non-identifying relationships +EMPLOYEE { + int id PK + string name +} +PROJECT { + int id PK + string name +} +ASSIGNMENT { + int employee_id PK + int project_id PK + date start_date +} +%% Solid line: identifying relationship +EMPLOYEE ||--|{ ASSIGNMENT : has +%% Dashed line: non-identifying relationship +PROJECT }|..|{ ASSIGNMENT : includes",output/980.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +:step_5; +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +:step_9; +:step_10; +:step_11; +if (check12?) then (yes) + :action_yes_12; +else (no) + :action_no_12; +endif +end",output/161.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 + int field_2 + bool field_3 +} +TABLE_1 { + int id PK + int field_0 + float field_1 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 + bool field_2 +} +TABLE_3 { + int id PK + datetime field_0 + int field_1 +} +TABLE_4 { + int id PK + float field_0 + float field_1 + datetime field_2 + string field_3 +} +TABLE_5 { + int id PK + float field_0 + bool field_1 + datetime field_2 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--|| TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 ||--|| TABLE_5 : owns",output/724.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + int field_0 + int field_1 + string field_2 + bool field_3 + datetime field_4 +} +TABLE_1 { + int id PK + datetime field_0 + int field_1 + bool field_2 + int field_3 +} +TABLE_2 { + int id PK + string field_0 + datetime field_1 +} +TABLE_3 { + int id PK + int field_0 + string field_1 + bool field_2 + float field_3 +} +TABLE_4 { + int id PK + int field_0 + int field_1 + float field_2 + int field_3 + bool field_4 +} +TABLE_5 { + int id PK + bool field_0 + bool field_1 + float field_2 + string field_3 + string field_4 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : manages +TABLE_2 ||--|| TABLE_3 : uses +TABLE_3 ||--|| TABLE_4 : uses +TABLE_4 ||--|| TABLE_5 : uses",output/734.pintora.png +Visualize a graph structure using DOT syntax. Include about 7 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n2 -> n0 + n3 -> n2 + n3 -> n0 + n3 -> n0 + n1 -> n2 + n1 -> n0 + n3 -> n2 +}",output/93.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +:Process 2; +:Process 3; +:Process 4; +:Process 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Action 8; +end",output/442.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--|{ Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--|| Ent3 : relates",output/83.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""diamond"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n8 [shape=""box"", label=""Node n8""] + n8 -> n2 + n3 -> n2 + n0 -> n2 + n1 -> n0 + n4 -> n5 + n6 -> n2 + n6 -> n3 + n5 -> n1 + n1 -> n0 + n5 -> n1 +}",output/452.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n1 -> n0 + n3 -> n4 + n4 -> n0 + n3 -> n4 + n3 -> n2 + n2 -> n0 + n2 -> n3 + n0 -> n1 + n4 -> n1 + n3 -> n1 + n3 -> n1 +}",output/217.pintora.png +Design an Entity Relationship diagram. Include about 15 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--|{ Ent3 : relates +Ent3 ||--|| Ent4 : relates",output/207.pintora.png +Create a sequence diagram showing interaction between participants. Include about 8 elements.,"sequenceDiagram +autonumber +P1-->P0: msg_56 +P3->P2: msg_41 +P3-->P2: msg_89 +P2->P4: msg_31 +P0->P3: msg_46 +P2->>P4: msg_65 +P3-->>P1: msg_36 +P1->>P4: msg_72",output/275.pintora.png +Map out a process flow using an activity diagram. Include about 11 elements.,"activityDiagram +start +:step_0; +:step_1; +:step_2; +:step_3; +if (check4?) then (yes) + :action_yes_4; +else (no) + :action_no_4; +endif +if (check5?) then (yes) + :action_yes_5; +else (no) + :action_no_5; +endif +:step_6; +if (check7?) then (yes) + :action_yes_7; +else (no) + :action_no_7; +endif +:step_8; +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +end",output/265.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +:Process 2; +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/558.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + bool field_2 + bool field_3 + float field_4 +} +TABLE_1 { + int id PK + string field_0 + string field_1 + string field_2 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + string field_2 + string field_3 +} +TABLE_0 }|--|| TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : uses",output/420.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + datetime field_1 + int field_2 + bool field_3 + float field_4 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 +} +TABLE_2 { + int id PK + int field_0 + float field_1 + bool field_2 + datetime field_3 + datetime field_4 +} +TABLE_3 { + int id PK + float field_0 + float field_1 + bool field_2 + string field_3 + int field_4 +} +TABLE_4 { + int id PK + string field_0 + float field_1 + datetime field_2 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--o{ TABLE_2 : manages +TABLE_2 ||--|{ TABLE_3 : owns +TABLE_3 ||--o{ TABLE_4 : owns",output/548.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + string field_1 + datetime field_2 +} +TABLE_1 { + int id PK + int field_0 + string field_1 +} +TABLE_2 { + int id PK + string field_0 + int field_1 + bool field_2 + bool field_3 +} +TABLE_3 { + int id PK + float field_0 + string field_1 + string field_2 + int field_3 + int field_4 +} +TABLE_4 { + int id PK + int field_0 + datetime field_1 + datetime field_2 + bool field_3 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : has",output/430.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + string field_0 + string field_1 + int field_2 + int field_3 + int field_4 +} +TABLE_1 { + int id PK + int field_0 + string field_1 + string field_2 +} +TABLE_2 { + int id PK + bool field_0 + float field_1 + string field_2 + string field_3 + int field_4 +} +TABLE_3 { + int id PK + datetime field_0 + float field_1 + int field_2 + int field_3 + string field_4 +} +TABLE_4 { + int id PK + datetime field_0 + float field_1 + datetime field_2 + int field_3 +} +TABLE_0 ||--|| TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : contains +TABLE_2 ||--|| TABLE_3 : has +TABLE_3 ||--o{ TABLE_4 : has",output/746.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +:Process 8; +end",output/756.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +if (check0?) then (yes) + :action_yes_0; +else (no) + :action_no_0; +endif +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +if (check2?) then (yes) + :action_yes_2; +else (no) + :action_no_2; +endif +:step_3; +:step_4; +:step_5; +if (check6?) then (yes) + :action_yes_6; +else (no) + :action_no_6; +endif +:step_7; +:step_8; +:step_9; +if (check10?) then (yes) + :action_yes_10; +else (no) + :action_no_10; +endif +:step_11; +:step_12; +:step_13; +:step_14; +end",output/113.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 <|-- Class2 +Class2 *-- Class3 +Class3 o-- Class4",output/103.pintora.png +Generate a DOT directed graph with 7 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n6 -> n0 + n5 -> n3 + n6 -> n5 + n4 -> n0 +}",output/687.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + string field_1 + string field_2 + string field_3 +} +TABLE_1 { + int id PK + string field_0 + int field_1 + bool field_2 + bool field_3 + string field_4 +} +TABLE_2 { + int id PK + float field_0 + datetime field_1 + datetime field_2 + bool field_3 + bool field_4 +} +TABLE_3 { + int id PK + int field_0 + float field_1 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 + float field_2 + string field_3 + datetime field_4 +} +TABLE_5 { + int id PK + bool field_0 + string field_1 +} +TABLE_0 }|--|| TABLE_1 : contains +TABLE_1 ||--|{ TABLE_2 : owns +TABLE_2 }|--|| TABLE_3 : uses +TABLE_3 ||--|| TABLE_4 : has +TABLE_4 }|--|| TABLE_5 : owns",output/697.pintora.png +Design a comprehensive Entity Relationship diagram.,"erDiagram +@config({""er"": {""edgeType"": ""ortho""}}) +PRODUCT { + int product_id PK + float phone + datetime address + int email + int name +} +REVIEW { + int review_id PK + int phone + text address + float phone +} +INVOICE { + int invoice_id PK + int address + string email +} +ORDER { + int order_id PK + datetime email + datetime date +} +SHIPMENT { + int shipment_id PK + text quantity + float address FK +} +PRODUCT }|..|{ REVIEW : manages +REVIEW }|..|{ INVOICE : contains +INVOICE ||--o{ SHIPMENT : includes +ORDER }|..|{ SHIPMENT : contains",output/833.pintora.png +Build a detailed component architecture diagram. Use advanced syntax features.,"componentDiagram +title: Data Pipeline +cloud ""Azure"" { + [Comp0_0] + [Comp0_1] + () I0 +} +cloud ""Azure"" { + [Comp1_0] + [Comp1_1] + [Comp1_2] + [Comp1_3] +} +[Comp1_3] ..> [Comp1_1] +[Comp1_1] -- [Comp1_0] +[Comp1_3] ..> [Comp0_0] +[Comp1_3] -- I0 +[Comp1_0] --> [Comp0_0] +[Comp0_0] ..> [Comp1_3] +[Comp1_0] ..> [Comp0_1] +[Comp1_0] ..|> [Comp1_1] +I0 -- [Comp1_2] +[Comp1_2] --> [Comp0_1] +[Comp1_2] -- I0 +[Comp1_0] ..|> [Comp0_0] +[Comp1_1] ..|> I0",output/823.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 6d +""Task 2"" : 2024-01-16, 4d",output/48.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + float field_1 +} +TABLE_1 { + int id PK + int field_0 + datetime field_1 + float field_2 +} +TABLE_2 { + int id PK + datetime field_0 + datetime field_1 + bool field_2 + int field_3 + float field_4 +} +TABLE_3 { + int id PK + datetime field_0 + bool field_1 + int field_2 + bool field_3 +} +TABLE_4 { + int id PK + bool field_0 + int field_1 +} +TABLE_5 { + int id PK + bool field_0 + int field_1 + datetime field_2 + int field_3 +} +TABLE_6 { + int id PK + bool field_0 + datetime field_1 +} +TABLE_0 ||--|{ TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : manages +TABLE_2 ||--o{ TABLE_3 : manages +TABLE_3 }|--|| TABLE_4 : has +TABLE_4 ||--o{ TABLE_5 : owns +TABLE_5 }|--|| TABLE_6 : manages",output/499.pintora.png +Design an Entity Relationship diagram. Include about 5 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--|{ Ent4 : relates +Ent4 ||--o{ Ent5 : relates",output/58.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n6 [shape=""circle"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n5 -> n1 + n2 -> n7 + n0 -> n4 + n7 -> n5 + n0 -> n6 + n4 -> n0 + n6 -> n2 + n4 -> n7 +}",output/489.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +:Action 5; +:Process 6; +if (Check 7?) then (yes) + :Handle Yes 7; +else (no) + :Handle No 7; +endif +if (Check 8?) then (yes) + :Handle Yes 8; +else (no) + :Handle No 8; +endif +if (Check 9?) then (yes) + :Handle Yes 9; +else (no) + :Handle No 9; +endif +end",output/505.pintora.png +Write an Entity Relationship diagram with 7 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + float field_1 +} +TABLE_1 { + int id PK + int field_0 + float field_1 + bool field_2 + datetime field_3 + bool field_4 +} +TABLE_2 { + int id PK + string field_0 + bool field_1 + float field_2 + bool field_3 + datetime field_4 +} +TABLE_3 { + int id PK + datetime field_0 + float field_1 + string field_2 + bool field_3 +} +TABLE_4 { + int id PK + datetime field_0 + datetime field_1 +} +TABLE_5 { + int id PK + string field_0 + int field_1 +} +TABLE_6 { + int id PK + datetime field_0 + float field_1 + bool field_2 + float field_3 + string field_4 +} +TABLE_0 ||--|| TABLE_1 : has +TABLE_1 ||--|| TABLE_2 : manages +TABLE_2 }|--|| TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : owns +TABLE_4 ||--|| TABLE_5 : contains +TABLE_5 ||--o{ TABLE_6 : contains",output/515.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n2 -> n0 + n2 -> n1 + n3 -> n1 + n0 -> n1 + n2 -> n1 +}",output/350.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n5 -> n0 + n2 -> n1 + n2 -> n1 + n2 -> n1 + n2 -> n0 + n5 -> n3 + n1 -> n4 + n0 -> n4 + n4 -> n5 + n0 -> n2 +}",output/228.pintora.png +Create a sequence diagram showing interaction between participants. Include about 8 elements.,"sequenceDiagram +autonumber +P0-->>P3: msg_99 +P3-->P1: msg_98 +P1->P3: msg_82 +P1-->>P2: msg_10 +P0->P2: msg_85 +P2->P3: msg_15 +P1-->>P2: msg_10 +P0->>P2: msg_90",output/340.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent0 }|--|| Ent1 : relates +Ent1 ||--o{ Ent2 : relates",output/238.pintora.png +Create a sequence diagram with random interaction patterns involving 9 steps.,"sequenceDiagram +autonumber +Service_1->>Service_0: Message 356 +Service_0->>Service_1: Message 459 +Service_0->>Service_1: Message 990 +Service_1->>Service_0: Message 232 +Service_1-->Service_0: Message 475 +Service_0-->Service_1: Message 184 +Service_0-->>Service_1: Message 502 +Service_0-->Service_1: Message 918 +Service_1-->>Service_0: Message 684",output/663.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +:Process 1; +:Process 2; +fork + :Parallel 1 3; +forkagain + :Parallel 2 3; +endfork +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Process 7; +:Action 8; +end",output/673.pintora.png +Write an ER diagram for an e-commerce database schema,"erDiagram +CUSTOMER { + int id PK + string name + string email +} +ORDER { + int id PK + int customer_id FK + datetime order_date + float total +} +PRODUCT { + int id PK + string name + float price + int stock +} +ORDER_ITEM { + int order_id PK + int product_id PK + int quantity + float unit_price +} +CUSTOMER ||--o{ ORDER : places +ORDER ||--|{ ORDER_ITEM : contains +PRODUCT ||--o{ ORDER_ITEM : ""included in"" ",output/916.pintora.png +Schedule a project timeline with Gantt chart.,"gantt +title Infrastructure Upgrade +dateFormat YYYY-MM-DD +section Planning +""Task Pla1"" : 2024-01-01, 13d +""Task Pla2"" : 2024-01-14, 8d +section Testing +""Task Tes1"" : 2024-01-22, 13d +""Task Tes2"" : 2024-02-04, 7d +""Milestone"" : milestone, 2024-02-16, 0d +section Marketing +""Task Mar1"" : 2024-02-11, 16d +""Milestone"" : milestone, 2024-03-05, 0d +""Task Mar2"" : 2024-02-27, 18d +""Task Mar3"" : 2024-03-16, 11d +""Task Mar4"" : 2024-03-27, 16d +""Task Mar5"" : 2024-04-12, 4d",output/906.pintora.png +Create a sequence diagram showing interaction between participants. Include about 9 elements.,"sequenceDiagram +autonumber +P2-->P0: msg_79 +P2->>P1: msg_66 +P1-->>P2: msg_72 +P1-->>P2: msg_8 +P1->P0: msg_91 +P1->P2: msg_16 +P2-->>P0: msg_76 +P0->P2: msg_9 +P2->>P1: msg_34",output/15.pintora.png +Model an object-oriented system with a class diagram. Include about 15 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 o-- Class1 +Class1 *-- Class2 +Class2 <|-- Class3 +Class3 *-- Class4",output/291.pintora.png +Visualize a graph structure using DOT syntax. Include about 8 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n2 -> n1 + n3 -> n0 + n4 -> n2 + n3 -> n4 + n3 -> n1 + n4 -> n1 + n2 -> n1 + n3 -> n0 +}",output/281.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 *-- Class1 +Class1 --> Class2 +Class2 <|-- Class3 +Class3 *-- Class4",output/77.pintora.png +Visualize a graph structure using DOT syntax. Include about 5 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n5 -> n2 + n0 -> n1 + n0 -> n2 + n3 -> n1 + n3 -> n2 +}",output/6.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates",output/67.pintora.png +Create a sequence diagram for microservice communication with message queue,"sequenceDiagram +title: Async Order Processing +participant [ Client] +participant OrderService +participant [ MessageQueue] +participant InventoryService +participant NotificationService +Client->>OrderService: Create order +OrderService->>MessageQueue: Publish OrderCreated event +OrderService-->>Client: 202 Accepted +par Process asynchronously + MessageQueue->>InventoryService: OrderCreated + InventoryService->>InventoryService: Reserve items + InventoryService->>MessageQueue: ItemsReserved +and + MessageQueue->>NotificationService: OrderCreated + NotificationService->>NotificationService: Send confirmation +end",output/974.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n0 -> n5 + n0 -> n1 + n0 -> n1 + n4 -> n2 + n5 -> n3 + n4 -> n0 + n3 -> n5 + n0 -> n5 + n2 -> n0 + n5 -> n4 + n3 -> n2 + n5 -> n3 + n0 -> n1 + n1 -> n0 +}",output/195.pintora.png +Create an activity diagram for a code review process,"activityDiagram +title: Code Review Process +start +:Create pull request; +:Assign reviewers; +fork + :Review code quality; +forkagain + :Run automated tests; +forkagain + :Check coding standards; +endfork +if (All checks pass?) then (yes) + if (Approved by reviewers?) then (yes) + :Merge to main branch; + :Deploy to staging; + else (no) + :Request changes; + :Update code; + endif +else (no) + :Fix failing checks; +endif +end",output/964.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +Class0 <|-- Class1 +Class1 --> Class2",output/185.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""ellipse"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""ellipse"", label=""Node n7""] + n2 -> n3 + n4 -> n1 + n6 -> n0 + n5 -> n7 + n3 -> n5 + n2 -> n1 + n5 -> n0 + n2 -> n0 + n7 -> n0 + n5 -> n4 +}",output/601.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + float field_2 + float field_3 +} +TABLE_1 { + int id PK + bool field_0 + int field_1 + datetime field_2 + datetime field_3 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + datetime field_2 + float field_3 +} +TABLE_3 { + int id PK + float field_0 + bool field_1 +} +TABLE_4 { + int id PK + bool field_0 + int field_1 + string field_2 + int field_3 +} +TABLE_5 { + int id PK + float field_0 + datetime field_1 + bool field_2 + float field_3 + int field_4 +} +TABLE_0 ||--|| TABLE_1 : manages +TABLE_1 ||--|| TABLE_2 : contains +TABLE_2 ||--|| TABLE_3 : contains +TABLE_3 ||--|{ TABLE_4 : has +TABLE_4 ||--|{ TABLE_5 : has",output/779.pintora.png +Generate a DOT directed graph with 8 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""box"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""box"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n5 [shape=""ellipse"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""box"", label=""Node n7""] + n2 -> n1 + n6 -> n0 + n4 -> n2 + n1 -> n2 + n0 -> n6 + n0 -> n3 + n1 -> n2 + n2 -> n6 +}",output/611.pintora.png +Write an Entity Relationship diagram with 6 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + string field_1 +} +TABLE_1 { + int id PK + bool field_0 + int field_1 + string field_2 + datetime field_3 + string field_4 +} +TABLE_2 { + int id PK + bool field_0 + int field_1 +} +TABLE_3 { + int id PK + bool field_0 + string field_1 + datetime field_2 + bool field_3 + string field_4 +} +TABLE_4 { + int id PK + bool field_0 + datetime field_1 + string field_2 +} +TABLE_5 { + int id PK + bool field_0 + string field_1 + datetime field_2 +} +TABLE_0 }|--|| TABLE_1 : uses +TABLE_1 ||--|| TABLE_2 : has +TABLE_2 ||--|{ TABLE_3 : contains +TABLE_3 ||--o{ TABLE_4 : uses +TABLE_4 }|--|| TABLE_5 : owns",output/769.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 6 elements.,"mindmap +* Root Topic +** Feature 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +**** Detail 1.1.1 +*** Subitem 1.2 +**** Detail 1.2.1 +** Feature 2 +*** Subitem 2.0 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2",output/332.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 }|--|| Ent2 : relates +Ent2 ||--o{ Ent3 : relates +Ent3 ||--|| Ent4 : relates +Ent4 ||--o{ Ent5 : relates",output/322.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 + bool field_2 +} +TABLE_1 { + int id PK + string field_0 + float field_1 + string field_2 + bool field_3 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 + bool field_2 + bool field_3 + datetime field_4 +} +TABLE_0 ||--|| TABLE_1 : uses +TABLE_1 ||--o{ TABLE_2 : uses",output/567.pintora.png +Create a sequence diagram with random interaction patterns involving 8 steps.,"sequenceDiagram +participant Service_2 +participant Service_3 +participant Service_4 +loop Loop check + Service_3-->>Service_1: Message 584 +end +Service_3->Service_0: Message 359 +Service_0-->Service_1: Message 392 +Service_1->>Service_0: Message 342 +Service_2-->Service_0: Message 904 +loop Loop check + Service_2-xService_4: Message 885 +end +Service_2->Service_0: Message 507 +Service_2-->Service_4: Message 198",output/577.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|{ Ent3 : relates +Ent3 ||--o{ Ent4 : relates",output/314.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 15 elements.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Concept 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1 +** Task 2 +*** Subitem 2.0 +*** Subitem 2.1 +** Task 3 +*** Subitem 3.0 +**** Detail 3.0.1 +*** Subitem 3.1 +*** Subitem 3.2 +**** Detail 3.2.1",output/304.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + bool field_1 +} +TABLE_1 { + int id PK + int field_0 + string field_1 + datetime field_2 + int field_3 + float field_4 +} +TABLE_2 { + int id PK + float field_0 + int field_1 + int field_2 + float field_3 + datetime field_4 +} +TABLE_3 { + int id PK + bool field_0 + float field_1 + float field_2 +} +TABLE_0 ||--|| TABLE_1 : manages +TABLE_1 ||--o{ TABLE_2 : uses +TABLE_2 ||--|{ TABLE_3 : owns",output/541.pintora.png +Write an Entity Relationship diagram with 3 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + datetime field_0 + int field_1 + string field_2 + bool field_3 + int field_4 +} +TABLE_1 { + int id PK + datetime field_0 + int field_1 +} +TABLE_2 { + int id PK + bool field_0 + string field_1 + int field_2 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|| TABLE_2 : manages",output/439.pintora.png +Create a sequence diagram with random interaction patterns involving 14 steps.,"sequenceDiagram +autonumber +participant Service_2 +Service_1-->>Service_0: Message 619 +alt Condition + Service_1-->Service_0: Message 517 +else Other case + Service_0-->>Service_1: Response +end +Service_0-->Service_2: Message 577 +Service_0-->Service_2: Message 969 +Service_0->>Service_1: Message 979 +Service_1-->Service_2: Message 905 +Service_1-->Service_2: Message 348 +loop Loop check + Service_0->>Service_1: Message 884 +end +loop Loop check + Service_2-->>Service_1: Message 785 +end +Service_0->>Service_1: Message 122 +Service_0->Service_1: Message 715 +alt Condition + Service_1-->>Service_0: Message 676 +else Other case + Service_0-->>Service_1: Response +end +Service_1->>Service_2: Message 675 +Service_2-->>Service_0: Message 818",output/551.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + int field_1 + int field_2 + datetime field_3 +} +TABLE_1 { + int id PK + datetime field_0 + int field_1 + string field_2 + string field_3 + int field_4 +} +TABLE_2 { + int id PK + int field_0 + datetime field_1 + datetime field_2 + string field_3 +} +TABLE_3 { + int id PK + float field_0 + int field_1 +} +TABLE_4 { + int id PK + int field_0 + bool field_1 + datetime field_2 + int field_3 +} +TABLE_0 ||--o{ TABLE_1 : uses +TABLE_1 ||--|{ TABLE_2 : manages +TABLE_2 ||--|| TABLE_3 : owns +TABLE_3 ||--|{ TABLE_4 : uses",output/429.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Action 0; +fork + :Parallel 1 1; +forkagain + :Parallel 2 1; +endfork +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +:Action 4; +end",output/627.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + bool field_0 + bool field_1 + datetime field_2 + string field_3 + bool field_4 +} +TABLE_1 { + int id PK + bool field_0 + float field_1 + float field_2 +} +TABLE_2 { + int id PK + datetime field_0 + float field_1 +} +TABLE_3 { + int id PK + bool field_0 + bool field_1 + float field_2 +} +TABLE_0 ||--|| TABLE_1 : manages +TABLE_1 ||--|| TABLE_2 : owns +TABLE_2 ||--o{ TABLE_3 : manages",output/637.pintora.png +Design a comprehensive Entity Relationship diagram. Include nested structures.,"erDiagram +title: Inventory System +PAYMENT { + int payment_id PK + datetime quantity + datetime description + int email + float price + text phone +} +PRODUCT { + int product_id PK + float phone + datetime price + bool email + int name FK +} +INVOICE { + int invoice_id PK + text email + float quantity FK + int date +} +CUSTOMER { + int customer_id PK + float description + datetime name FK + float address + string quantity +} +INVENTORY { + int inventory_id PK + text quantity FK + float quantity + float status +} +PAYMENT }|--|| CUSTOMER : includes +PRODUCT }|--|| INVOICE : contains +INVOICE ||--|| INVENTORY : owns +CUSTOMER ||--|{ INVENTORY : belongs to",output/893.pintora.png +Model an object-oriented system with class diagram.,"classDiagram +class FactoryA { + <> + #string attr0 + #int attr1 + -List~T~ attr2 + ~method0() string + -method1() boolean +} +class RepositoryB { + -boolean attr0 + -method0() T + -method1() boolean +} +class RepositoryC { + #boolean attr0 + +{static} method0() string +} +class FactoryD { + <> + +int attr0 + #boolean attr1 + +{static} method0() void + -method1() string +} +class ControllerE { + +List~T~ attr0 + -List~T~ attr1 + +string attr2 + ~method0() string + ~{static} method1() string + ~method2() void +} +class HandlerF { + +boolean attr0 + ~method0() void +} +class StrategyG { + +int attr0 + +int attr1 + #boolean attr2 + -List~T~ attr3 + -method0() string + -method1() T +} +FactoryA o-- HandlerF +RepositoryB o-- HandlerF +RepositoryC <|.. StrategyG +FactoryD o-- ControllerE +ControllerE ..> StrategyG +HandlerF --> StrategyG",output/883.pintora.png +Create a sequence diagram with @param styling,"sequenceDiagram +@param loopLineColor #79caf1 +@param actorBackground #61afef +@param actorTextColor #ffffff +@param messageFontFamily Consolas +@param dividerTextColor #61afef +User->>API: Request +loop Retry + API-->>API: Process +end +== Section == +API-->>User: Response",output/952.pintora.png +Create a DOT diagram with different node shapes,"dotDiagram +digraph Shapes { + bgcolor=""#f5f5f5"" + + start [shape=""ellipse"", label=""Start""] + decision [shape=""diamond"", label=""Decision?""] + process1 [shape=""box"", label=""Process A""] + process2 [shape=""box"", label=""Process B""] + end_node [shape=""circle"", label=""End""] + note [shape=""plaintext"", label=""This is a note""] + + start -> decision + decision -> process1 [label=""yes""] + decision -> process2 [label=""no""] + process1 -> end_node + process2 -> end_node +}",output/942.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 3d +""Task 2"" : 2024-01-10, 6d",output/51.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +autonumber +participant Service_0 +Service_1-->>Service_0: Message 623 +Service_1-->Service_0: Message 895 +Service_0->Service_1: Message 414 +alt Condition + Service_0-xService_1: Message 755 +else Other case + Service_1-->>Service_0: Response +end +Service_1->Service_0: Message 685 +Service_1->>Service_0: Message 793 +Service_1-->>Service_0: Message 324 +Service_0-->Service_1: Message 964 +Service_0->>Service_1: Message 795 +Service_1->>Service_0: Message 684 +Service_1-->>Service_0: Message 886",output/480.pintora.png +Schedule tasks using a Gantt chart. Include about 13 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 8d +""Task 2"" : 2024-01-18, 9d +""Task 3"" : 2024-01-27, 2d",output/41.pintora.png +Write an Entity Relationship diagram with 4 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + float field_1 + datetime field_2 + string field_3 + string field_4 +} +TABLE_1 { + int id PK + bool field_0 + string field_1 +} +TABLE_2 { + int id PK + float field_0 + bool field_1 + bool field_2 +} +TABLE_3 { + int id PK + datetime field_0 + datetime field_1 + float field_2 + datetime field_3 + datetime field_4 +} +TABLE_0 ||--|{ TABLE_1 : uses +TABLE_1 }|--|| TABLE_2 : has +TABLE_2 ||--|| TABLE_3 : owns",output/490.pintora.png +Visualize a graph structure using DOT syntax. Include about 7 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n3 -> n0 + n2 -> n0 + n2 -> n4 + n0 -> n1 + n4 -> n2 + n1 -> n2 + n3 -> n0 +}",output/33.pintora.png +Model an object-oriented system with a class diagram. Include about 7 elements.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +class Class4 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 *-- Class3 +Class3 --> Class4",output/23.pintora.png +Write an activity diagram with custom styling,"activityDiagram +@param actionBackground #61afef +@param textColor #ffffff +@param noteTextColor #333333 +@param edgeColor #143C9A +@param edgeType curved +start +:First action; +-> proceed to next; +:Second action; +if (condition?) then (yes) + :Handle yes case; +else (no) + :Handle no case; +endif +end",output/930.pintora.png +Create a detailed hierarchical mind map.,"mindmap +* Learning Path +** Topic A +*** Subtopic A.1 +*** Subtopic A.2 +**** Detail A.2.1 +**** Detail A.2.2 +**** Detail A.2.3 +*** Subtopic A.3 +*** Subtopic A.4 +** Topic B +*** Subtopic B.1 +**** Detail B.1.1 +*** Subtopic B.2 +*** Subtopic B.3 +**** Detail B.3.1 +**** Detail B.3.2 +**** Detail B.3.3 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +*** Subtopic C.3 +*** Subtopic C.4 +** Topic D +*** Subtopic D.1 +**** Detail D.1.1 +**** Detail D.1.2 +*** Subtopic D.2 +*** Subtopic D.3 +**** Detail D.3.1 +**** Detail D.3.2 +**** Detail D.3.3 +*** Subtopic D.4",output/848.pintora.png +Create a component diagram for a microservices architecture,"componentDiagram +title: Microservices Architecture +package ""API Gateway"" { + [Gateway] + () REST +} +package ""Services"" { + [User Service] + [Order Service] + [Payment Service] +} +database ""Databases"" { + [UserDB] + [OrderDB] +} +[Gateway] --> REST +REST --> [User Service] +REST --> [Order Service] +[Order Service] --> [Payment Service] +[User Service] --> [UserDB] +[Order Service] --> [OrderDB]",output/920.pintora.png +Design a comprehensive Entity Relationship diagram. Use advanced syntax features.,"erDiagram +@config({""er"": {""edgeType"": ""ortho""}}) +SHIPMENT { + int shipment_id PK + text email + int address + text phone + string quantity + float price +} +INVOICE { + int invoice_id PK + string phone + text date + string status +} +CUSTOMER { + int customer_id PK + float address + bool quantity FK + datetime email +} +INVENTORY { + int inventory_id PK + bool phone + float price +} +SHIPMENT }o--o{ CUSTOMER : references +INVOICE ||--|{ INVENTORY : processes +CUSTOMER }o--o{ INVENTORY : references",output/858.pintora.png +Write an Entity Relationship diagram with 5 tables and random relationships.,"erDiagram +TABLE_0 { + int id PK + float field_0 + datetime field_1 + string field_2 + bool field_3 +} +TABLE_1 { + int id PK + bool field_0 + bool field_1 + int field_2 + datetime field_3 +} +TABLE_2 { + int id PK + string field_0 + string field_1 + int field_2 + string field_3 +} +TABLE_3 { + int id PK + int field_0 + string field_1 + datetime field_2 + float field_3 + bool field_4 +} +TABLE_4 { + int id PK + datetime field_0 + string field_1 +} +TABLE_0 }|--|| TABLE_1 : owns +TABLE_1 ||--|{ TABLE_2 : has +TABLE_2 ||--o{ TABLE_3 : manages +TABLE_3 ||--o{ TABLE_4 : owns",output/784.pintora.png +Generate a DOT directed graph with 10 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""ellipse"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""diamond"", label=""Node n4""] + n5 [shape=""box"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n9 [shape=""circle"", label=""Node n9""] + n6 -> n5 + n7 -> n3 + n2 -> n6 + n5 -> n6 + n6 -> n4 + n2 -> n9 + n1 -> n9 + n5 -> n9 + n8 -> n3 + n6 -> n1 +}",output/794.pintora.png +Create a component diagram for event-driven architecture,"componentDiagram +title: Event-Driven Architecture +rectangle ""Event Producers"" { + [Web App] + [Mobile App] + [IoT Devices] +} +rectangle ""Event Bus"" { + [Apache Kafka] + () ""Topics"" +} +rectangle ""Event Consumers"" { + [Analytics Service] + [Notification Service] + [Audit Service] +} +[Web App] --> ""Topics"" +[Mobile App] --> ""Topics"" +[IoT Devices] --> ""Topics"" +""Topics"" -- [Apache Kafka] +[Apache Kafka] --> [Analytics Service] +[Apache Kafka] --> [Notification Service] +[Apache Kafka] --> [Audit Service]",output/989.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 11 elements.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +** Task 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +*** Subitem 1.2 +** Feature 2 +*** Subitem 2.0 +*** Subitem 2.1 +*** Subitem 2.2",output/168.pintora.png +Create a Gantt chart showing parallel workstreams,"gantt +title Parallel Development Streams +dateFormat YYYY-MM-DD +axisFormat %b %d +section Stream A - Backend +""API Design"" : a1, 2024-06-01, 5d +""API Development"" : a2, after a1, 10d +""API Testing"" : after a2, 5d +section Stream B - Frontend +""UI Design"" : b1, 2024-06-01, 7d +""UI Development"" : b2, after b1, 12d +""UI Testing"" : after b2, 5d +section Integration +""Integration Testing"" : 2024-06-25, 7d +""UAT"" : 2024-07-02, 5d +""Go Live"" : milestone, 2024-07-07, 0d",output/999.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 6d +""Task 1"" : 2024-01-07, 4d +""Task 2"" : 2024-01-11, 8d +""Task 3"" : 2024-01-19, 7d",output/178.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +if (Check 0?) then (yes) + :Handle Yes 0; +else (no) + :Handle No 0; +endif +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +:Process 3; +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Process 7; +:Process 8; +end",output/645.pintora.png +Generate a DOT directed graph with 6 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""circle"", label=""Node n1""] + n2 [shape=""circle"", label=""Node n2""] + n3 [shape=""ellipse"", label=""Node n3""] + n4 [shape=""ellipse"", label=""Node n4""] + n5 [shape=""circle"", label=""Node n5""] + n2 -> n4 + n2 -> n1 + n4 -> n2 + n1 -> n2 + n0 -> n4 + n0 -> n1 + n2 -> n1 +}",output/655.pintora.png +Create a sequence diagram with random interaction patterns involving 5 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +participant Service_2 +participant Service_3 +Service_1-->Service_2: Message 476 +alt Condition + Service_4-->>Service_2: Message 662 +else Other case + Service_2-->>Service_4: Response +end +loop Loop check + Service_1->>Service_2: Message 371 +end +Service_4-xService_1: Message 243 +Service_4->>Service_3: Message 927",output/523.pintora.png +Create a sequence diagram with random interaction patterns involving 11 steps.,"sequenceDiagram +participant Service_0 +participant Service_3 +Service_3-xService_1: Message 140 +loop Loop check + Service_1->>Service_0: Message 517 +end +Service_0->>Service_2: Message 314 +Service_2-->>Service_0: Message 254 +Service_1-->Service_0: Message 161 +Service_3->Service_2: Message 771 +Service_1->>Service_3: Message 171 +Service_0-->>Service_2: Message 237 +Service_3-xService_2: Message 598 +alt Condition + Service_3-->>Service_2: Message 808 +else Other case + Service_2-->>Service_3: Response +end +Service_0->Service_1: Message 414",output/533.pintora.png +Map out a process flow using an activity diagram.,"activityDiagram +start +:step_0; +if (check1?) then (yes) + :action_yes_1; +else (no) + :action_no_1; +endif +:step_2; +if (check3?) then (yes) + :action_yes_3; +else (no) + :action_no_3; +endif +:step_4; +:step_5; +:step_6; +:step_7; +if (check8?) then (yes) + :action_yes_8; +else (no) + :action_no_8; +endif +if (check9?) then (yes) + :action_yes_9; +else (no) + :action_no_9; +endif +:step_10; +end",output/376.pintora.png +Model an object-oriented system with a class diagram.,"classDiagram +class Class0 { + +attribute1 + +method1() +} +class Class1 { + +attribute1 + +method1() +} +class Class2 { + +attribute1 + +method1() +} +class Class3 { + +attribute1 + +method1() +} +Class0 --> Class1 +Class1 *-- Class2 +Class2 <|-- Class3",output/366.pintora.png +Design an Entity Relationship diagram.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent5 { + int id PK + string name +} +Ent0 ||--o{ Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates +Ent4 ||--|| Ent5 : relates",output/392.pintora.png +Design an Entity Relationship diagram. Include about 6 elements.,"erDiagram +Ent0 { + int id PK + string name +} +Ent1 { + int id PK + string name +} +Ent2 { + int id PK + string name +} +Ent3 { + int id PK + string name +} +Ent4 { + int id PK + string name +} +Ent0 ||--|| Ent1 : relates +Ent1 ||--|{ Ent2 : relates +Ent2 ||--|| Ent3 : relates +Ent3 ||--|| Ent4 : relates",output/382.pintora.png +Schedule a project timeline with Gantt chart. Include nested structures.,"gantt +title Product Launch +dateFormat YYYY-MM-DD +section Development +""Task Dev1"" : 2024-04-01, 5d +""Task Dev2"" : 2024-04-06, 19d +""Task Dev3"" : 2024-04-25, 18d +""Task Dev4"" : 2024-05-13, 21d +""Task Dev5"" : 2024-06-03, 18d +section Deployment +""Task Dep1"" : 2024-06-21, 16d +""Task Dep2"" : 2024-07-07, 5d +""Task Dep3"" : 2024-07-12, 11d +section Marketing +""Task Mar1"" : 2024-07-23, 16d +""Task Mar2"" : 2024-08-08, 17d +""Task Mar3"" : 2024-08-25, 11d +""Task Mar4"" : 2024-09-05, 20d +""Task Mar5"" : 2024-09-25, 6d +section Testing +""Task Tes1"" : 2024-10-01, 7d +""Task Tes2"" : 2024-10-08, 5d +""Task Tes3"" : 2024-10-13, 7d +""Task Tes4"" : 2024-10-20, 8d +""Task Tes5"" : 2024-10-28, 11d +""Milestone"" : milestone, 2024-11-14, 0d",output/815.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""diamond"", label=""Node n0""] + n1 [shape=""box"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n3 -> n1 + n4 -> n2 + n2 -> n4 + n3 -> n4 +}",output/805.pintora.png +Generate a DOT directed graph with 9 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""box"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""box"", label=""Node n4""] + n5 [shape=""diamond"", label=""Node n5""] + n6 [shape=""ellipse"", label=""Node n6""] + n7 [shape=""circle"", label=""Node n7""] + n8 [shape=""ellipse"", label=""Node n8""] + n1 -> n7 + n8 -> n2 + n3 -> n7 + n7 -> n4 + n1 -> n7 + n0 -> n5 + n1 -> n4 + n2 -> n5 + n5 -> n1 +}",output/618.pintora.png +Create a sequence diagram with random interaction patterns involving 6 steps.,"sequenceDiagram +participant Service_0 +participant Service_1 +participant Service_2 +participant Service_3 +Service_0-xService_1: Message 275 +Service_1->Service_0: Message 512 +Service_3->>Service_1: Message 443 +alt Condition + Service_3->Service_2: Message 526 +else Other case + Service_2-->>Service_3: Response +end +Service_1->Service_3: Message 759 +Service_3-->Service_2: Message 616",output/760.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_2 +participant Service_3 +Service_0-xService_2: Message 888 +alt Condition + Service_0-xService_1: Message 207 +else Other case + Service_1-->>Service_0: Response +end +Service_3->Service_0: Message 276 +Service_2->>Service_1: Message 520 +Service_1-->Service_3: Message 701 +Service_0-xService_2: Message 744 +alt Condition + Service_1->Service_3: Message 426 +else Other case + Service_3-->>Service_1: Response +end +Service_3->>Service_2: Message 384 +Service_3-xService_0: Message 547 +loop Loop check + Service_0-xService_2: Message 613 +end",output/608.pintora.png +Create a sequence diagram with random interaction patterns involving 10 steps.,"sequenceDiagram +autonumber +participant Service_0 +participant Service_1 +participant Service_3 +participant Service_4 +Service_1-xService_4: Message 775 +Service_0->Service_3: Message 593 +Service_0-xService_3: Message 210 +Service_3-xService_1: Message 369 +Service_2->Service_3: Message 990 +Service_2->>Service_1: Message 633 +loop Loop check + Service_1-->>Service_0: Message 993 +end +Service_2-->>Service_4: Message 108 +loop Loop check + Service_2-->>Service_1: Message 555 +end +alt Condition + Service_0-->>Service_4: Message 577 +else Other case + Service_4-->>Service_0: Response +end",output/770.pintora.png +Schedule tasks using a Gantt chart. Include about 5 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 9d +""Task 1"" : 2024-01-10, 9d +""Task 2"" : 2024-01-19, 2d +""Task 3"" : 2024-01-21, 3d +""Task 4"" : 2024-01-24, 10d +""Task 5"" : 2024-02-03, 9d",output/135.pintora.png +Brainstorm a topic hierarchy with a mind map. Include about 12 elements.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +** Feature 1 +*** Subitem 1.0 +** Task 2 +*** Subitem 2.0",output/125.pintora.png +Schedule tasks using a Gantt chart. Include about 12 elements.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 5d +""Task 1"" : 2024-01-06, 9d +""Task 2"" : 2024-01-15, 8d +""Task 3"" : 2024-01-23, 10d +""Task 4"" : 2024-02-02, 7d",output/253.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 10d +""Task 1"" : 2024-01-11, 10d +""Task 2"" : 2024-01-21, 3d +""Task 3"" : 2024-01-24, 3d +""Task 4"" : 2024-01-27, 5d +""Task 5"" : 2024-02-01, 4d",output/243.pintora.png +Visualize a graph structure using DOT syntax. Include about 7 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n0 -> n4 + n2 -> n1 + n4 -> n0 + n4 -> n5 + n4 -> n0 + n2 -> n1 + n2 -> n5 +}",output/406.pintora.png +Create a flow activity diagram with approximately 10 logical steps including conditions.,"activityDiagram +start +fork + :Parallel 1 0; +forkagain + :Parallel 2 0; +endfork +if (Check 1?) then (yes) + :Handle Yes 1; +else (no) + :Handle No 1; +endif +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +if (Check 6?) then (yes) + :Handle Yes 6; +else (no) + :Handle No 6; +endif +:Action 7; +fork + :Parallel 1 8; +forkagain + :Parallel 2 8; +endfork +fork + :Parallel 1 9; +forkagain + :Parallel 2 9; +endfork +end",output/416.pintora.png +Create a flow activity diagram with approximately 7 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +fork + :Parallel 1 2; +forkagain + :Parallel 2 2; +endfork +:Action 3; +:Process 4; +if (Check 5?) then (yes) + :Handle Yes 5; +else (no) + :Handle No 5; +endif +:Process 6; +end",output/464.pintora.png +Generate a DOT directed graph with 5 nodes and random connections.,"dotDiagram +digraph G { + bgcolor=""white"" + n0 [shape=""circle"", label=""Node n0""] + n1 [shape=""diamond"", label=""Node n1""] + n2 [shape=""diamond"", label=""Node n2""] + n3 [shape=""diamond"", label=""Node n3""] + n4 [shape=""circle"", label=""Node n4""] + n2 -> n0 + n1 -> n4 + n0 -> n1 + n3 -> n4 + n1 -> n2 +}",output/474.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +**** Detail 0.0.1 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Task 1 +*** Subitem 1.0 +*** Subitem 1.1 +**** Detail 1.1.1 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2 +**** Detail 2.2.1 +** Task 3 +*** Subitem 3.0 +**** Detail 3.0.1",output/349.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Concept 0 +*** Subitem 0.0 +*** Subitem 0.1 +**** Detail 0.1.1 +*** Subitem 0.2 +**** Detail 0.2.1 +** Concept 1 +*** Subitem 1.0 +**** Detail 1.0.1 +** Idea 2 +*** Subitem 2.0 +**** Detail 2.0.1 +*** Subitem 2.1 +**** Detail 2.1.1 +*** Subitem 2.2 +** Task 3 +*** Subitem 3.0 +**** Detail 3.0.1",output/231.pintora.png +Visualize a graph structure using DOT syntax. Include about 10 elements.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n6 [label=""Node n6""] + n7 [label=""Node n7""] + n7 -> n0 + n3 -> n0 + n2 -> n1 + n3 -> n1 + n1 -> n2 + n2 -> n0 + n4 -> n5 + n5 -> n2 + n5 -> n1 + n0 -> n4 +}",output/359.pintora.png +Create a sequence diagram showing interaction between participants. Include about 6 elements.,"sequenceDiagram +autonumber +P3->P4: msg_92 +P2->P0: msg_73 +P4-->>P1: msg_35 +P4->>P1: msg_82 +P2-->>P0: msg_80 +P3-->>P2: msg_19",output/221.pintora.png +Schedule tasks using a Gantt chart.,"gantt +title Project Schedule +dateFormat YYYY-MM-DD +section Phase 1 +""Task 0"" : 2024-01-01, 2d +""Task 1"" : 2024-01-03, 3d +""Task 2"" : 2024-01-06, 7d +""Task 3"" : 2024-01-13, 7d +""Task 4"" : 2024-01-20, 6d",output/157.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Task 0 +*** Subitem 0.0 +*** Subitem 0.1 +*** Subitem 0.2 +** Idea 1 +*** Subitem 1.0 +**** Detail 1.0.1 +*** Subitem 1.1 +*** Subitem 1.2",output/147.pintora.png +Create a flow activity diagram with approximately 9 logical steps including conditions.,"activityDiagram +start +:Process 0; +:Process 1; +if (Check 2?) then (yes) + :Handle Yes 2; +else (no) + :Handle No 2; +endif +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +if (Check 4?) then (yes) + :Handle Yes 4; +else (no) + :Handle No 4; +endif +:Process 5; +:Process 6; +:Process 7; +:Process 8; +end",output/702.pintora.png +Create a flow activity diagram with approximately 5 logical steps including conditions.,"activityDiagram +start +:Action 0; +:Process 1; +:Process 2; +if (Check 3?) then (yes) + :Handle Yes 3; +else (no) + :Handle No 3; +endif +fork + :Parallel 1 4; +forkagain + :Parallel 2 4; +endfork +end",output/712.pintora.png +Write a Pintora diagram: visualize a complex graph with dot diagram.,"dotDiagram +digraph G { + bgcolor=""#f5f5f5"" + node [shape=""circle"", bgcolor=""#e3f2fd""] + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n4 [label=""Node n4""] + n5 [label=""Node n5""] + n1 -> n0 + n4 -> n1 + n1 -> n4 + n2 -> n5 + n4 -> n3 [color=""green""] + n0 -> n2 [color=""green""] + n2 -> n3 + n2 -> n5 + n3 -> n4 + n2 -> n0 +}",output/877.pintora.png +Write a Pintora diagram: create a detailed hierarchical mind map.,"mindmap +@param layoutDirection TB +* System Architecture +** Topic A +*** Subtopic A.1 +**** Detail A.1.1 +*** Subtopic A.2 +**** Detail A.2.1 +**** Detail A.2.2 +**** Detail A.2.3 +*** Subtopic A.3 +** Topic B +*** Subtopic B.1 +*** Subtopic B.2 +**** Detail B.2.1 +*** Subtopic B.3 +**** Detail B.3.1 +**** Detail B.3.2 +*** Subtopic B.4 +** Topic C +*** Subtopic C.1 +*** Subtopic C.2 +*** Subtopic C.3 +**** Detail C.3.1 +**** Detail C.3.2 +**** Detail C.3.3 +*** Subtopic C.4 +**** Detail C.4.1 +**** Detail C.4.2 +** Topic D +*** Subtopic D.1 +*** Subtopic D.2",output/867.pintora.png +Brainstorm a topic hierarchy with a mind map.,"mindmap +* Root Topic +** Idea 0 +*** Subitem 0.0 +** Task 1 +*** Subitem 1.0 +** Task 2 +*** Subitem 2.0 +**** Detail 2.0.1 +** Idea 3 +*** Subitem 3.0 +*** Subitem 3.1",output/288.pintora.png +Visualize a graph structure using DOT syntax.,"dotDiagram +digraph G { + n0 [label=""Node n0""] + n1 [label=""Node n1""] + n2 [label=""Node n2""] + n3 [label=""Node n3""] + n2 -> n1 + n3 -> n2 + n0 -> n2 + n1 -> n0 + n2 -> n1 + n1 -> n2 + n0 -> n1 + n2 -> n1 + n1 -> n0 + n3 -> n1 + n0 -> n2 + n2 -> n1 +}",output/298.pintora.png diff --git a/output/.DS_Store b/output/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 Binary files /dev/null and b/output/.DS_Store differ diff --git a/output/0.pintora.png b/output/0.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8bbcfeb5d1d72248141ef205d15992a03a89aa29 --- /dev/null +++ b/output/0.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c4849e86781c1652d69895516d1ef8edafed1102111c9cbd01c67edf21cafc +size 14274 diff --git a/output/1.pintora.png b/output/1.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9881c75bef01fdd77f86643a8d655c09a4a188 --- /dev/null +++ b/output/1.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e7d4e258efee5916806a2a21e48b1822307fe64a63d10f5d7f263921020c8e +size 36324 diff --git a/output/10.pintora.png b/output/10.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..179fb5a8dd185c40295dadb79cc1fcd6d637e4d9 --- /dev/null +++ b/output/10.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526684d1e9759e78a8b2edde56e04661b993968d5c71821083f64b3d30f838f7 +size 37450 diff --git a/output/100.pintora.png b/output/100.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1b6bbb7f962df66c3368da2c365c1742a37424ee --- /dev/null +++ b/output/100.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272b193404c70f47a816de8fc29a925920cada16244b8c6a0fcd53faf0d87673 +size 33154 diff --git a/output/1000.pintora.png b/output/1000.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..292cccd018d86a7679ee86f479ea0b2b8bc9b527 --- /dev/null +++ b/output/1000.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed4c88e07e25ed8b309320938bd4fa77deb6a904e375873b7ecbcbe9e857ce5 +size 113728 diff --git a/output/1001.pintora.png b/output/1001.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..64aea5b7d0956f03c8758ea378cf9bb89111d371 --- /dev/null +++ b/output/1001.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b891e85406817b065a0fee680c3d4d71295713f8db7c1bb4a65babd17b6f1f +size 93826 diff --git a/output/1002.pintora.png b/output/1002.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ca6936c303c6d43531214fe906c85fe54a8295f2 --- /dev/null +++ b/output/1002.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c39ed50a833ebcdfa84c57e6733e6b6d66474134e302e14aeeee2dbec13028a +size 20702 diff --git a/output/1004.pintora.png b/output/1004.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..faddde53778e3db5788b31d08b2219b830115376 --- /dev/null +++ b/output/1004.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09a0d4a40d8861b29123dbc23195ec929747694c6ee58f7c3167265173d1e35 +size 132245 diff --git a/output/1006.pintora.png b/output/1006.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6766938c21b79c84818035d21c30e102b72be53f --- /dev/null +++ b/output/1006.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05ab448b99372ccfe39987e24ea072f371ae2227058489efd9d1b3bc938b198 +size 127464 diff --git a/output/101.pintora.png b/output/101.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..62200db0553804b73b19356ca46fec9d848c55f0 --- /dev/null +++ b/output/101.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1d3ef4b0ed0fa568ed20172cc6c3362a9e963d104564b22adc2957c1926ced +size 82383 diff --git a/output/102.pintora.png b/output/102.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f71da4b545adf07a1d7ffc523ebb4a5111f848dc --- /dev/null +++ b/output/102.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b234ac58e82364839ab3bacf226719ab588c3beedb5d4764345f0677a0bb9f +size 29888 diff --git a/output/103.pintora.png b/output/103.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..05a0f8cf3f1129fee11b25b2935bc2854e8b5882 --- /dev/null +++ b/output/103.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec491d0de217b3d096f899b43ee9eea2973d2e58e2226d17d6edf69c30be63a3 +size 54022 diff --git a/output/104.pintora.png b/output/104.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3b8a91da953bc8ee53f459e90839d53878bdaca0 --- /dev/null +++ b/output/104.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d35051a89bc45a71604ba8de58a060aff782ddd2bc24b6cf14ff9252bf066c1 +size 86261 diff --git a/output/105.pintora.png b/output/105.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bab3556ca5cc6d4c53d174809e1269480de49e4b --- /dev/null +++ b/output/105.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af23e1e1252db192b43e597ba532eb549542dab292f8706cd226a5d398db7113 +size 66165 diff --git a/output/106.pintora.png b/output/106.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fff900676ff6bff9db87722aa27beca1ba1cef83 --- /dev/null +++ b/output/106.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c06494047d7f1ae20348d761a67aa60309d2b467837142e416b2dbfbfd41c14 +size 65948 diff --git a/output/107.pintora.png b/output/107.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d51e28ca0d60aeaffb8fcedf602fa71960f2a884 --- /dev/null +++ b/output/107.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bd8ea5571e3a05c1efe8743ecfdaa8ec6674f890ddb0d9c5d45766a0455123 +size 124181 diff --git a/output/108.pintora.png b/output/108.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c09d44743b88d68e37a256a1c3abd196a38eba --- /dev/null +++ b/output/108.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fe5c99f24cbf5b7db4c56b23918d1f5f8ee56b152af4210a73d600cbccb8dc +size 45053 diff --git a/output/109.pintora.png b/output/109.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d37723b32e565896d08ece8fe233bdd5854474ec --- /dev/null +++ b/output/109.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e068e42b5e4e40d6b1cd6c7dcac2eecfb2779a0baa13b4018ba6b0ddea8f4ede +size 54499 diff --git a/output/11.pintora.png b/output/11.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b095d5618f190ed9b2a71a14ee35c53bd98765ed --- /dev/null +++ b/output/11.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3116ed4343d38107f3f0cd3265bfd24d2ae686e1808523574b17571ee180c6 +size 68460 diff --git a/output/110.pintora.png b/output/110.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0bd0a31d9b7e0da7e2ff1aaa6337ee2d2e38626f --- /dev/null +++ b/output/110.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d397b3cf67c1dd59b1c9ce00d8d62b3b5cc96ebf0ccaa86a51b8f814548455ff +size 52232 diff --git a/output/111.pintora.png b/output/111.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b00e7beacd394fdc5efb27ff7b672ff9b03ac9cd --- /dev/null +++ b/output/111.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a9d7f18621d556c66f1f8e21c506fc9202b17abfa3d0434e4926167d849362 +size 26521 diff --git a/output/112.pintora.png b/output/112.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3b7ecfd6c1a57635ba1a351d04ddb6d89ccebfe3 --- /dev/null +++ b/output/112.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7729997dec4ceb33f5e641abf936ba42ac1862c428baf432e75b182f426905d6 +size 38743 diff --git a/output/113.pintora.png b/output/113.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7e26eb5ae5b9e064aca3de008dc84d4462214aa5 --- /dev/null +++ b/output/113.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2557a2d87bde6393815644d9a9ea2a8d1981682d04595a5bd8abb0fb45d88a +size 155908 diff --git a/output/114.pintora.png b/output/114.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..554628bb1ec50e06406047a8a6dbbfe825a72207 --- /dev/null +++ b/output/114.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6baff98b48c6700660b49682aa4a8c28e509140961d8c0336fc480e4f6ab721e +size 29917 diff --git a/output/115.pintora.png b/output/115.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7c678c0121004bc8c9dab6541bd41918ffe7fd0c --- /dev/null +++ b/output/115.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:518aba36329742e4c2e5ff6c79d818c803630d4f9efd0d2d1d367b30df84eb43 +size 73125 diff --git a/output/116.pintora.png b/output/116.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..24ac01d70a9ba382910cd957835fcf930d327844 --- /dev/null +++ b/output/116.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3950623c4b65c54b5d4670e50f4838a2ca5b39d9a9070b21fe1bc6885ae9f8 +size 44047 diff --git a/output/117.pintora.png b/output/117.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..52e3d96d3e4c75dff76df010c020b2756299693a --- /dev/null +++ b/output/117.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f182060af8ac7b955095295e0a9c38f605a3d975d04dfe2aacace9f11a89046 +size 54012 diff --git a/output/118.pintora.png b/output/118.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e2d0290f91e6b543d9af3666c511e17c29ced501 --- /dev/null +++ b/output/118.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74439483493eccbeb13c6e655caeb9a324c33ff60c31692bcd1a44be158da25b +size 28298 diff --git a/output/119.pintora.png b/output/119.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9c1591cebc2c17002cfc95e5bf1fe5b832ca0eaa --- /dev/null +++ b/output/119.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5eea8446350f627450126019c1f7d57f9c35dc0464627f93e6e0f0e5d6323f5 +size 36226 diff --git a/output/12.pintora.png b/output/12.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d46f8729b0d1449da92b1a5daff8289f72823c9b --- /dev/null +++ b/output/12.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe79c37e038aa27f8bf8f2f2a1c07f2075cb72961759aac3cc1942fd05a5bf6 +size 18332 diff --git a/output/120.pintora.png b/output/120.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0c8806d1e22e34ae601013d7ff704d6615d6e203 --- /dev/null +++ b/output/120.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae85b325b1313e235b36bc074efba6dded09433fd09e7760003261c0852ff896 +size 32803 diff --git a/output/121.pintora.png b/output/121.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1a23fdb9afdd1f624b0d8c7ce06a6001e2dcc8d4 --- /dev/null +++ b/output/121.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ac7e8dbfd42504b0644e7d1489651fb397f565e27b648245f4cf0dcef4f8d8 +size 32128 diff --git a/output/122.pintora.png b/output/122.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7b02c9334fef247201933e1bd1e1801de49c41a5 --- /dev/null +++ b/output/122.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0305c40755ba3deb63ff124722ac7ac99bd50f86d4a6ab31f259ef453a400b +size 59842 diff --git a/output/123.pintora.png b/output/123.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cd92248b14523b2239e32b5a0e2dccad69b45783 --- /dev/null +++ b/output/123.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fac43c883570cebc1569a35d7784960147e0f3d31b3d7d53f2af996fdcb5cb +size 27280 diff --git a/output/124.pintora.png b/output/124.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ddec54c7a7726965fe325c206e31d42b9e389acf --- /dev/null +++ b/output/124.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113a53de71b9b7ba280a0d112189f16f4a0100fc63f9aab6f5444b5311d67e55 +size 36842 diff --git a/output/125.pintora.png b/output/125.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dd7d7a751a715e2d2757d2cfa8e69f8741a85a48 --- /dev/null +++ b/output/125.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c691880d4f72d6efdb459403d5f6403036b6cffda8e5423f531e477a4c1b234b +size 49373 diff --git a/output/126.pintora.png b/output/126.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b118fea3ef83272641528a25e88af9b52bb394b0 --- /dev/null +++ b/output/126.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2e82d8eedf49eca7c2202b32e45c0f3b53b70cd12d566b3493bd99cd015057 +size 28300 diff --git a/output/127.pintora.png b/output/127.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..324086bdc0261f2287511ce77f404589d7828219 --- /dev/null +++ b/output/127.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0512419ad4d4fa998de9cb74e3aff212e893673bdec38695a082089b19ee60f2 +size 67354 diff --git a/output/128.pintora.png b/output/128.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ef76d64263129a08eb783b4a3c542714da618a90 --- /dev/null +++ b/output/128.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a365b8898f1cd505c2908ab71998ce9a9e0eda8c3a8455c7d2e25d48703df5 +size 40270 diff --git a/output/129.pintora.png b/output/129.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e5dcfb7fc349be06c659248e54dbec6a0ea02ec3 --- /dev/null +++ b/output/129.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3f2a5ceed3ba0c5796df64a5f1490495fd7c967b5088edf05cf55e310e3d2b +size 27502 diff --git a/output/13.pintora.png b/output/13.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cd2dd357f796065fc7eb2db978c78e2dac1f8b8a --- /dev/null +++ b/output/13.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850961de1e728e60a4fa790818fa317c8cf4acfb44184aaa4d01e43a2b177982 +size 41888 diff --git a/output/130.pintora.png b/output/130.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12ac35401e7d001c3357b26e82f734e990659a65 --- /dev/null +++ b/output/130.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a718221eceabcd7cb2483a8030cca82564967a67a6eb6ca603b530b7ca432ac +size 35624 diff --git a/output/131.pintora.png b/output/131.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce1ff799c92ef86565db3a7e34781c8c8a47808 --- /dev/null +++ b/output/131.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0616cd20e76d5f27396bc5831b109a3e9695daf97c7c5bbf98bda1edb224e226 +size 27436 diff --git a/output/132.pintora.png b/output/132.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6c4d8e5c69d378e98a781a2b2d3c6b3d8b95b616 --- /dev/null +++ b/output/132.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5a1c04177453a692d7e5335d9f1ea1580da86d60a37826b7f8f6ebfcf18cf7 +size 39434 diff --git a/output/133.pintora.png b/output/133.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..906d9da217fa22cb9afc181565c809d9a3051eff --- /dev/null +++ b/output/133.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19a0645c237c1d529aaaee2643f0c37e1cf46e4964e9b19709b33fb8bdb1e68 +size 52266 diff --git a/output/134.pintora.png b/output/134.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..87324f7c635dc41a024cd85978692feb1affe563 --- /dev/null +++ b/output/134.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f39a23eb643d9894401e5a67885cacc867be8c220dbcdbf812cd3ed8a8c222 +size 76560 diff --git a/output/135.pintora.png b/output/135.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5cb2ff47a23be74b26c2651cc4588fad09cf5e --- /dev/null +++ b/output/135.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67df7c883cad02f53fae964c9c11b3f0ab9b627deb4ece9160c0044c3ea6c205 +size 44847 diff --git a/output/136.pintora.png b/output/136.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f408d75c3ea98e39f6e6fdfefc1d8483180f856f --- /dev/null +++ b/output/136.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca8610bc9885dee1beac0a48bdab196c74585ed56a35da55e9d9126657449e1 +size 24650 diff --git a/output/137.pintora.png b/output/137.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..24c8b7e60993e4905a56bb139a5d725dff72a54d --- /dev/null +++ b/output/137.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda3d533541c772ba7e3febe547d80c54d529b0d8796f44c2fe16158f607154b +size 41583 diff --git a/output/138.pintora.png b/output/138.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a73abe7b4fe2dcbf7dc4b98d6188dd030d108566 --- /dev/null +++ b/output/138.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf723f987ce0680f691f17325984bbbae16be5f82ea5fc5e9faca49a8c6d5b3 +size 45721 diff --git a/output/139.pintora.png b/output/139.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d7e9720f48e13238f7576e0f8405a641efff9ad9 --- /dev/null +++ b/output/139.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978dfaff1b262a1af7c9e0b25bf6cd1254ab81e95b4b195c2e5ee4d99bd7274a +size 128416 diff --git a/output/14.pintora.png b/output/14.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9ab9341286e95f4842bd10245b0ead4d5e5cb044 --- /dev/null +++ b/output/14.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52322f744be51c6a0e12e1ba16d7e0e2baae7256a00d2db5892712412dda7fbb +size 99090 diff --git a/output/140.pintora.png b/output/140.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f54a6aea80e78125a9fca27c18e9a2646da59028 --- /dev/null +++ b/output/140.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d940adae34398f7fd039c161767480a90c34a5f2ec546ddf76e7072e140bb0a +size 51739 diff --git a/output/141.pintora.png b/output/141.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..06e780abdd82f6a401296674db1c2fa9510b1fef --- /dev/null +++ b/output/141.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7729c47951c438a83fea5f10eb205a1434f49ff31b0ee282a8634c5ba6a161fd +size 33522 diff --git a/output/142.pintora.png b/output/142.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2f3c4a45fd0ddfb864ee18a333f73df7ce7296 --- /dev/null +++ b/output/142.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5a4313268fb16d011b5b701537033ad749c477d8e1bc8612efd8b7650c214c +size 37149 diff --git a/output/143.pintora.png b/output/143.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0bee8c364641c82afcdc7dd5d85ef8ea6fbb6578 --- /dev/null +++ b/output/143.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e343ffea05d81ee2feda0f8118e07e202a7e9019070c798fbb57c4655f854b85 +size 22435 diff --git a/output/144.pintora.png b/output/144.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d108cb94a2718cf612a7dd317d96d57dd897787d --- /dev/null +++ b/output/144.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb98480a7491bf9304fb0843e56cc5ef7759531443c398d9715b5bf12a8413f +size 66147 diff --git a/output/145.pintora.png b/output/145.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1de2f9a2f0927f2f28c386e516b5ca2efb068513 --- /dev/null +++ b/output/145.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006ce9b6d42c9a53618a6e6b28b49f35887d8085897351af56d4db961dde843f +size 32271 diff --git a/output/146.pintora.png b/output/146.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ea267c7bc5c2403d36f920b02c3be6d1ef365628 --- /dev/null +++ b/output/146.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d84d92543255056b7581d1a3ab9993febb095655ffe902382e3f0e70c209a66 +size 44104 diff --git a/output/147.pintora.png b/output/147.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..740974accb12a6ce794dba4a64d9a765c493491a --- /dev/null +++ b/output/147.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150420cbe1b9ef5e021cf7d3e14c68b059e47bcb1a4ff9f7238c013b6e32ad62 +size 44638 diff --git a/output/148.pintora.png b/output/148.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9a80128405f374ea10f9ea9bab9a93fb51f7ca9a --- /dev/null +++ b/output/148.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab5a3a57b99a422af4cabd4bfd4df4e2e800f055a906b7663cff3381eba55d +size 29958 diff --git a/output/149.pintora.png b/output/149.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..34458996241ca9c8d539b96d4c5de50fcc4d7b06 --- /dev/null +++ b/output/149.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972adcb892f8debf732169f9232aefe6ac38169d891d4138b1ba8445851c5623 +size 38867 diff --git a/output/15.pintora.png b/output/15.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f4c1589fe7dd3fd3cd12192f1d3ca85f2c7ee1ae --- /dev/null +++ b/output/15.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb092019e235d17a248155572ac792930078238ee207bcbe4810a9852947692 +size 52723 diff --git a/output/150.pintora.png b/output/150.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b7fc96d9d5cabee5f4154ff713bd1c6063a752a6 --- /dev/null +++ b/output/150.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c565615ec82d91d8f8ea6db70ed7b07cde9d1133d57b1c4527b32f1e7c22e9db +size 44427 diff --git a/output/151.pintora.png b/output/151.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f295acbaa72266ac56dcfa5579dad4e3a2162108 --- /dev/null +++ b/output/151.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a48ae914e3ea610de92c76ad1c3aac59b494d30bdba0bb3dbd829f29cae239 +size 65685 diff --git a/output/152.pintora.png b/output/152.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..27d0d4f39b07035f1f84800fbaa3d2f0f0d20658 --- /dev/null +++ b/output/152.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae76354b05dae82abba825001f1b6c8cf9dee5356178cd6ece95a441ee7b70a3 +size 29936 diff --git a/output/153.pintora.png b/output/153.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d8eef33cc13e113d0094d61937bf3edc486eb1c1 --- /dev/null +++ b/output/153.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7688d3ce5d1156262d04aba2ef5dd52f0d9e75ca5d261042ad4d964dd2a71c3d +size 56299 diff --git a/output/154.pintora.png b/output/154.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f174d076eb9f202faa33a9d94e4151163611e3b3 --- /dev/null +++ b/output/154.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd5b1fb849fdae96d77f6fbaebd22faf5d20e5fd19021010fc2bf8d491f41f3 +size 43037 diff --git a/output/155.pintora.png b/output/155.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6c49366bffa416c768af5b8dfd924d1734ca65 --- /dev/null +++ b/output/155.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927fb8ff49bcb52a434c8398279965e612514c46e5fb6a04cfbc0f3c4f0b9536 +size 32099 diff --git a/output/156.pintora.png b/output/156.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..400290f9fe765c28b802dab32dca0ad30d542db7 --- /dev/null +++ b/output/156.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90d5e15009168f41c90fd1273d6d9d9d908301644f3c4f16c343f75d5160e73 +size 43746 diff --git a/output/157.pintora.png b/output/157.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..25c93c0001406d2c8d400523a138a5ea9ff6ab8b --- /dev/null +++ b/output/157.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f567e34d36e972c02a2cfcde8453592b7638298aae07231553efdb5cb0cbf14d +size 35866 diff --git a/output/158.pintora.png b/output/158.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9756e7f3987883f6d4c42403b1808a70ac823868 --- /dev/null +++ b/output/158.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67c4df76b7d6b7b73e8f348707a55828a01da2c865169ffd4efd29edf8c7e43 +size 47703 diff --git a/output/159.pintora.png b/output/159.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c39ac8faa4ae1a8cd1bed861611fe4326471974d --- /dev/null +++ b/output/159.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f4dc103fdb8beb13fe4b9044280ed1b5f67b9575a994674ee5a4f77cdc45e3 +size 18271 diff --git a/output/16.pintora.png b/output/16.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d89d25997c0633a0853f2760bed676261b63dcc0 --- /dev/null +++ b/output/16.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c06b77425dcfe042d316675f4ec3b342fcaa6822edaf71fa88369b6b6ba192 +size 36645 diff --git a/output/160.pintora.png b/output/160.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c719f5e5cbb01bbce38b5d9c51f8c27d36aa118c --- /dev/null +++ b/output/160.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2844fa5cdc009db02218bf7cb2cfbe827acdb8567ce9a49fda821a3b6b431e +size 23677 diff --git a/output/161.pintora.png b/output/161.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9b3491ee3c6d84d2abb265de8de4acc9307b316c --- /dev/null +++ b/output/161.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90064fd5de2c0f58e6e572d00d11228159462de30c05fafec526909f96a0f958 +size 108698 diff --git a/output/162.pintora.png b/output/162.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dd83fad9e85ae8e2345a8c7d0685f6f89c6ee301 --- /dev/null +++ b/output/162.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c77419174fed95b9a5f5e718f9426585716d8a1db5bb1a9cb07da2519b2cff +size 34799 diff --git a/output/163.pintora.png b/output/163.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e088da7c62d2b98a5ffb06b975cedbff9b4701 --- /dev/null +++ b/output/163.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1788987fb03852494d88d7d15229cac14221edd7af910477a2ca5127f7ff52 +size 53198 diff --git a/output/164.pintora.png b/output/164.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c73d52ebf0fca345a631d124574301f3f3fc5e42 --- /dev/null +++ b/output/164.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56681ff9e116b865dbed4163fff42503d9f3a4fe8cc6d268fbc0d4a5ea9b6f34 +size 70785 diff --git a/output/165.pintora.png b/output/165.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..50e7e2d51017138544b1104bae25533cfaa4c796 --- /dev/null +++ b/output/165.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d735cc9956ab4fa6ac388185fae242347baaba57c5baa5ff2a9ad7f15df97d9 +size 30635 diff --git a/output/166.pintora.png b/output/166.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..958d0200c37561457c87329fa9878a280290cc77 --- /dev/null +++ b/output/166.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0acccb985bb115406cca44c1ea4cc776df3d7929b124d45519ea98ff5ea95e1 +size 113091 diff --git a/output/167.pintora.png b/output/167.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8bc0e2c0ca524172a648c5875422d8b598e55a8d --- /dev/null +++ b/output/167.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae62c5c6a8d39fa7aa59f88b4e32813ed739ee790becefa2a3c59f899461b0d +size 70476 diff --git a/output/168.pintora.png b/output/168.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2e904f982b37c5b9e2b635aad97732ee8b9500 --- /dev/null +++ b/output/168.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4371ecccd6e3e788be1f1966166eec005cc34222bbf1efb6ef034607fb151c53 +size 55581 diff --git a/output/169.pintora.png b/output/169.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..48adb29ed879ad3fa797aa7d105a93b520ed61f9 --- /dev/null +++ b/output/169.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6429e8ed68fd4a7e8c5e603f9dca162a63165799c27183d768b71187d6d31839 +size 57598 diff --git a/output/17.pintora.png b/output/17.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d57a28f9bbaf861e5bc434b2dca30bbb5a0f75be --- /dev/null +++ b/output/17.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe5a642690384d5f45e7b0ac23a9ee2b0687bc27928e5c52dda6ba0422cd134 +size 24762 diff --git a/output/170.pintora.png b/output/170.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..222875d5ca6b89d6c1875223c69027e84211f4f2 --- /dev/null +++ b/output/170.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4754a65321f271be38a87359db79e37ea14036d103fe8ac265ce42628438d4ba +size 54002 diff --git a/output/171.pintora.png b/output/171.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bcdfe92c8e9116c668c690e7caa18b7b2feb4f8b --- /dev/null +++ b/output/171.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29183e125b08da94a1f43555317373a493c496a1533e62c6db14e3bc7798b7f4 +size 73582 diff --git a/output/172.pintora.png b/output/172.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..605ad5768cb30db15551e537a1e34e481c31a605 --- /dev/null +++ b/output/172.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a767e53be168764cd6eee7fb0ec881f98b66fbacb5e951553f05ca03ec2f9adc +size 42279 diff --git a/output/173.pintora.png b/output/173.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..71c54f9586166724e1d8436274ee14995136d1ea --- /dev/null +++ b/output/173.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e17463abc825c8bc815aecd7a6e69006878f6bb7f60c9611bcbe572edf267f5 +size 62996 diff --git a/output/174.pintora.png b/output/174.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..caa11fb5e5c75cbe4190071361e9e306a61764dc --- /dev/null +++ b/output/174.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f7c434525f6f16e3a8311f44416759678af4536a304e91c3f65a26a011bba6 +size 31944 diff --git a/output/175.pintora.png b/output/175.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..915f823b0351cdbbbfe9cd6fdc3942e3931c025f --- /dev/null +++ b/output/175.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd62ed11859249494f2c9623afda293340afb8d51db7a1e439f8e2829fcc2203 +size 40928 diff --git a/output/176.pintora.png b/output/176.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fd77da56a7a1901957edaa48c43ee6e6f467b8ae --- /dev/null +++ b/output/176.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c677a9795bd700a7fa63f44e83c2012f2931bd10814fc50459b8c9be5045ed7 +size 32280 diff --git a/output/177.pintora.png b/output/177.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a2111e236776924f062d652134ca52151b06248c --- /dev/null +++ b/output/177.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919fa414c6955f88f8d509a997781ead596f775a5ed30aea7f26ca91cb0240a6 +size 53670 diff --git a/output/178.pintora.png b/output/178.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b2b0c52f5556a0e553e1ae0b4a53eea7cb89df76 --- /dev/null +++ b/output/178.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1020bec291c8173e964536da9e97e1e188dc1815d0c6da60d238648b7d5c72 +size 32815 diff --git a/output/179.pintora.png b/output/179.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b4564d785d7c35fadba26210ac85cd8e7d0d63a4 --- /dev/null +++ b/output/179.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c510b732ed04a0078758d3a0f85c762cb9b8987c591ec7f28d16f64e1f0238 +size 44348 diff --git a/output/18.pintora.png b/output/18.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c4b344baf1ec6a4e6f9c7688f9103fb385591413 --- /dev/null +++ b/output/18.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d145897f080d34b52e813ebad206d8ae56ac55bd4f98629fba0d048d7c3377e +size 136679 diff --git a/output/180.pintora.png b/output/180.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cfacf080bd20f4b672947fe09d2739ad702fd76a --- /dev/null +++ b/output/180.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eabc4fbb82889d50e5513bef5a8f16ab9c1c98a81e50cac73b44470ef30d892 +size 143862 diff --git a/output/181.pintora.png b/output/181.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..aaedb96af5d6eff94bcb30d6b93b0a455b37e3df --- /dev/null +++ b/output/181.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23926b6a5ab1c07e299a96436af3851281b6602b870448744a77597ffc0ba9ca +size 32082 diff --git a/output/182.pintora.png b/output/182.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3d032eddec0236a8a24c05813ca7fcbd8c9652f9 --- /dev/null +++ b/output/182.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b7cc885133087dc37d941daa4e5f53b0edf246960fa572d32c1535192ff808 +size 46105 diff --git a/output/183.pintora.png b/output/183.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f4f69a387848738baf7042f50b1228b5bc361213 --- /dev/null +++ b/output/183.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc122e25615533e3270a2eade7ddf62ce4ea5123e6082b45276b12959ef8d85 +size 56804 diff --git a/output/184.pintora.png b/output/184.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fdca2b00c342d4db5f3a30c814b2c5cf4d2ed0e4 --- /dev/null +++ b/output/184.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f737a79cba43b456233a978ecc233a7aa3e5cc89f1af61e8891d18cec7c81cc5 +size 33590 diff --git a/output/185.pintora.png b/output/185.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f0be637ddea5da210a7d95702d6f253096542f30 --- /dev/null +++ b/output/185.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65824517d1137f64942308ae6bcc081da8a78ac07022afec6cad0b111cd72dfd +size 32404 diff --git a/output/186.pintora.png b/output/186.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..597bfe8216e2e6bc5c8f86e8837f25c82a61a601 --- /dev/null +++ b/output/186.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e294c520effca48803eb7e8a9a0bfa02a9478b1bd6a0134da6ada49dc3d081e +size 26784 diff --git a/output/187.pintora.png b/output/187.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1d7e4c0dcfb88eca533686ff6fbc89c645f59338 --- /dev/null +++ b/output/187.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9e452b3f7549aa70a7ea9acb6047c53c6ed4d1cc17291eeb7d7cb620364b1d +size 87267 diff --git a/output/188.pintora.png b/output/188.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..284648e3eda7eafc8c2f3798c7d9476c9e6832d1 --- /dev/null +++ b/output/188.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36d61733adbe8fcfbb75425ccd1d549f067fea9ec5ab787a6c57c3070c6322d +size 55682 diff --git a/output/189.pintora.png b/output/189.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..690f8888e684f2491f79c6ff0dcb20f6ad184b5e --- /dev/null +++ b/output/189.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c078cc3644ae11b2788ace85903ec0fab1d0fd7ddc118e28e7d61f91b74457 +size 55640 diff --git a/output/19.pintora.png b/output/19.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d2dab6430df07c3c3a8e51f6da39dd9880caaaf5 --- /dev/null +++ b/output/19.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4f986b72749f2d88d0cc38d9d5eb1a3dbcd6e15cad85fe21935db45da19284 +size 136115 diff --git a/output/190.pintora.png b/output/190.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7f63298503f6cf365c3694087580245b32a3b3d6 --- /dev/null +++ b/output/190.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bcceb8167836898b362828304651b31863ef2991c418db358d4ab867d49b67 +size 67425 diff --git a/output/191.pintora.png b/output/191.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d54983de96bc9e7595db6fd1dfb96bc5857056b9 --- /dev/null +++ b/output/191.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfea41dba170e90fc653392aba297c7f00a107b29953845c2401fe1330be267 +size 66389 diff --git a/output/192.pintora.png b/output/192.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ef86b44aa92c1f9842b8189a240e43a23622f1ab --- /dev/null +++ b/output/192.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac6a62102e0beecdab6aa5b6383e9fdbbbbe82453bb745fba8c1d1e74666418 +size 65681 diff --git a/output/193.pintora.png b/output/193.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9e9336d1ead25b617915829e69ff1434a985ff6f --- /dev/null +++ b/output/193.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ea30909347e85fcbd56fe00233962c6b43aac5666837663944d3dd3b17e35f +size 32430 diff --git a/output/194.pintora.png b/output/194.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..171926d986af9761403701dc3608e99d2abf62ac --- /dev/null +++ b/output/194.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4562bede3c608def33ccc3eb67a0391c798f6a28f65cb43efffebd8f73d54af6 +size 28071 diff --git a/output/195.pintora.png b/output/195.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cceed63be257dba8c1036f2b06cfab8357ed69b8 --- /dev/null +++ b/output/195.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330aa93947d314ab4350d9ca6dd7d04a099c010bb740c3f2e1665d1f031be094 +size 30060 diff --git a/output/196.pintora.png b/output/196.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..311e25bb4bfcbe785513874a38ae78bccb381b7e --- /dev/null +++ b/output/196.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c55a79c53d3a5a7bd5f930f319460144a80fbb35d886fa78f14cdae3eb93ee +size 53750 diff --git a/output/197.pintora.png b/output/197.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b2438da4fdfc421da8e1d0d33e00c6de44409487 --- /dev/null +++ b/output/197.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41046a3d188a294f996aa09b0f14516f6fb9bffcc10a1a8e1c881668b894d9be +size 43060 diff --git a/output/198.pintora.png b/output/198.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2534ff622ee08cf27a50e5528222ba86a7af19a6 --- /dev/null +++ b/output/198.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfa4a47d802e1a7c6efa76a4a55b2e5040dab5c2fae7ac6470d8876332c9aea +size 87293 diff --git a/output/199.pintora.png b/output/199.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0c24870d3085bf0420168efe6701ae242d5e21aa --- /dev/null +++ b/output/199.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195a7fd92d92bf4505403747166ac47ca490701aa202484f93c75656624728c6 +size 74203 diff --git a/output/2.pintora.png b/output/2.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fedc1866a069e48452324a08c3cafffe10015b26 --- /dev/null +++ b/output/2.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a2acd2e420fbabb2b766c7c77a961997934e65806a660452b6af37c0343c5a +size 23081 diff --git a/output/20.pintora.png b/output/20.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0d2d98a6afc6b1af2f4440f621e178d962e05d29 --- /dev/null +++ b/output/20.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c833983495fc24d280274bc8a3835c9c32cc22e36a4823954268b527553599 +size 106498 diff --git a/output/200.pintora.png b/output/200.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fb68885796da10499234181ca869ed580dd6bee1 --- /dev/null +++ b/output/200.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd89d17ec6ac45b81ced720c2ef412c50a9da0e93f25404ff803610e08a4ab0 +size 64492 diff --git a/output/201.pintora.png b/output/201.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7d80039beea8f5b1173d96931943eb03fe0e6309 --- /dev/null +++ b/output/201.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aad14c9860303d6b54e7f3093205453827ef3914800e27469f70fcc7631b660 +size 53379 diff --git a/output/202.pintora.png b/output/202.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..930bc5c7c737d7b2372d70a36dd760034888f669 --- /dev/null +++ b/output/202.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2024deb1e9830e2e0b3b2f13872755ad883842bdc181b6a2e44f24405b9d297c +size 32438 diff --git a/output/203.pintora.png b/output/203.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9409eae64e5c8520d0573ce840a9a776c596b050 --- /dev/null +++ b/output/203.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66642684fe4d5b85aa0eac71dc7ab1960b4f17f9609e42d0e1e6b5a485d729ed +size 33148 diff --git a/output/204.pintora.png b/output/204.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f61eb823c09ab4a17438b389e3de3e5c078f34a3 --- /dev/null +++ b/output/204.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f159639479929b34f62cb269554c649341c0f776fd2d2cde93c2b5cc8a7753a6 +size 32144 diff --git a/output/205.pintora.png b/output/205.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..62b4a90e0018eb90b509d964a81ade6636da83ef --- /dev/null +++ b/output/205.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de059947e94194a5ace4527200a678f5271413b927689c3b30b68766794675 +size 49639 diff --git a/output/206.pintora.png b/output/206.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e291f62a44a31d55303a41581e85c6d0d1fe5b55 --- /dev/null +++ b/output/206.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48f3624abe68e960e4b27ee387c3edaddc41acc74988e1c255721f520291999 +size 68628 diff --git a/output/207.pintora.png b/output/207.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..91bfdce04e0223cc93782e2d9f0710a891f023ed --- /dev/null +++ b/output/207.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1ce2722c5413dca1a67f49c9f9a6609ee6671b6b00bae98c38b3e52ecea2d0 +size 53634 diff --git a/output/208.pintora.png b/output/208.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a44394121712c597b4d4cfc6a35e34bb46c6cf4b --- /dev/null +++ b/output/208.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f12c74e9b8fc55da09d7c3b0cd260038e82a14e0171bdaabd45569109466a7 +size 40125 diff --git a/output/209.pintora.png b/output/209.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0dfcc04615ce555e40b765449d3d4a93db2ef88b --- /dev/null +++ b/output/209.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0588aea5c165bfb0364076638f11ad6d6c782452aca18a7e8428faca0e3b2d24 +size 65431 diff --git a/output/21.pintora.png b/output/21.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..53ae3492886b99c1118b57beb3b58343a29922f8 --- /dev/null +++ b/output/21.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ce5e42d943c19e879bd3cab1b3723cee59097681ed0f78a401f9b7281d4ccb +size 40804 diff --git a/output/210.pintora.png b/output/210.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f57f2c574a99235580c84ac8103300b1d66f84a9 --- /dev/null +++ b/output/210.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa70544149aec24b3cb26c3aedb4c91a66e2f2098f25e82556b3b473a84bde6d +size 102233 diff --git a/output/211.pintora.png b/output/211.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a34e2febbe896f3fda7baa2a10a2c859245ec132 --- /dev/null +++ b/output/211.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c608da9852138b4928aff92ac41885b41b516d93b301805ec505e356001a188a +size 54145 diff --git a/output/212.pintora.png b/output/212.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce04b29831931ecc0c4a02962678bc28d767f3eb --- /dev/null +++ b/output/212.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa59940a86b7db61a0426242515d86828bdc0a33815af83ef702c0c3b534a2e +size 27507 diff --git a/output/213.pintora.png b/output/213.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b9c352591266c491ea127a524703ffd8464c958a --- /dev/null +++ b/output/213.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd782f5466fd78db9b15f9681cc51435e9baa3d48cc5acbe4237fe33245fde89 +size 44348 diff --git a/output/214.pintora.png b/output/214.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8d55cd479d966238a69499997e11794e1f56cf9c --- /dev/null +++ b/output/214.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010c6d4513ae1959449da124e61c57f04078bef6df8f0e63078a02660b9f0635 +size 166857 diff --git a/output/215.pintora.png b/output/215.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8726e88e7c4a606c04fcfa7625e64e28e95eab96 --- /dev/null +++ b/output/215.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0956bace63cd843e794b96a76606d1533e8d37997e148361bb71556593a5a90 +size 61703 diff --git a/output/216.pintora.png b/output/216.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..018d3c1f79c5c8fdbde57966615aec8056618c7a --- /dev/null +++ b/output/216.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff13854c25a5509cefcd088e7c0e626e8c3aab1ab25194b6f050f447d908b290 +size 41675 diff --git a/output/217.pintora.png b/output/217.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5351d27a083680dfaa9a9b0a90ab1dc0e8b3c4ec --- /dev/null +++ b/output/217.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ce690a802a0c2736ae96c708cae0b8fb141e8ac1a2f141ff0e44d0932bec93 +size 27355 diff --git a/output/218.pintora.png b/output/218.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e4740ebc98b9aadd312e937baeb163d6a4b57b46 --- /dev/null +++ b/output/218.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b81586ecf37d01107c7335448967e30b4bc73f5b7daf8a8a38132e894f6b37 +size 84528 diff --git a/output/219.pintora.png b/output/219.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf7e557a8aa0ff09b5165bb6c6a7839ceca3b2d --- /dev/null +++ b/output/219.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c93487b70183a9fb29726430ee44d2d278c082933c5c00b47a8f91b49bec6e +size 43418 diff --git a/output/22.pintora.png b/output/22.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..acb98e904e2c91e9923a8bca85c61f9e552a6723 --- /dev/null +++ b/output/22.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58483385f4974d7560e754e65375f609412bd330ad371222aa89116ba86408c5 +size 81652 diff --git a/output/220.pintora.png b/output/220.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..40a9ae65fc11219f743ef3349c59b4291909330d --- /dev/null +++ b/output/220.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d727673c06718861c3fd453650870e69fa24d23028a12a9de6776da12a8a847 +size 136796 diff --git a/output/221.pintora.png b/output/221.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..43dc1c29a7d7755c8a8ef54a5b439b7250fbadb0 --- /dev/null +++ b/output/221.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68895d21e76e490f33f64973d1882dc5a28684482ca8e6e1a3200ab4a5048d54 +size 44058 diff --git a/output/222.pintora.png b/output/222.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d47166ace8dbcfb68e8798fb8f962a6ccd97d8f8 --- /dev/null +++ b/output/222.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6580d2fd6771337582aa2ebba19f9707abb9afe922f10ed0ab8f0f8b8f741ed +size 49029 diff --git a/output/223.pintora.png b/output/223.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d22d7e7d579d65ccb33a74c9ff18e40ef459f310 --- /dev/null +++ b/output/223.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e714a2a86037a93e78f419b46829eb3ef35b273479208a153c22abc5484bd39 +size 54623 diff --git a/output/224.pintora.png b/output/224.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..26d5c6aaff6fc9fd882617024bd24b564d593fb6 --- /dev/null +++ b/output/224.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9150453d04ee1f7e3e4b2c562dea09daee999a66c897f84b4b8f639bb7a85c8d +size 39268 diff --git a/output/225.pintora.png b/output/225.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0e29f866a4307544b21bf87e8ec930d90a21853a --- /dev/null +++ b/output/225.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f16fab7240707b8e6f567a265429de5e53715845c576815ae44aef85f55bb2 +size 38032 diff --git a/output/226.pintora.png b/output/226.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3695875eeb7ceb882b14b5af0f0a2f7d03115180 --- /dev/null +++ b/output/226.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd72621a983402e28943c6b327f87eecf6f5160bf39bdcc4586799e69fda4aa5 +size 82494 diff --git a/output/227.pintora.png b/output/227.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..83a9b8e1c86e5b61c29c0a1abb4e47cbbb2f9723 --- /dev/null +++ b/output/227.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fc0b8beea9fae01d381d759fb3fdcc16f5b93554c29e01c27983f845ac7924f +size 46140 diff --git a/output/228.pintora.png b/output/228.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..58b5babc2c14bc97e1ce9ce8da33a89b57c7e3cc --- /dev/null +++ b/output/228.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3087fa238fcf1130871466ce7ab9245198fec0101533479687fc8431bd125d7 +size 26254 diff --git a/output/229.pintora.png b/output/229.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a81f3160fa99e96862ef4253245ad7c908dcdf6d --- /dev/null +++ b/output/229.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e66f10b301385d412c255f3a6d251ca9d664e0144009d66a5143d2f996b593 +size 18678 diff --git a/output/23.pintora.png b/output/23.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..44ed0528e34c315741052283233d78af59bed501 --- /dev/null +++ b/output/23.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b2c9479a7c4d4ee55045d971ccee4f788aadf00a98a5e9df6be2c91b0a922f +size 55004 diff --git a/output/230.pintora.png b/output/230.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..eec2d8dbac7960d82631ac3763eaa329c4a3e22c --- /dev/null +++ b/output/230.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc9038d1d9a2be8e7b51e5a9a0fe89ae785fcbfb89ab4cabb37876e95a2c18d +size 41033 diff --git a/output/231.pintora.png b/output/231.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..25fd5667792e1b7410aa3d9a5f3ad2acda029af1 --- /dev/null +++ b/output/231.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f7902157fbb12fc892f24fbe207650e00b20bf593119d7c33f431f245c56f2 +size 83029 diff --git a/output/232.pintora.png b/output/232.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..02f14dd989501610d10a5b2f38e0e6be5d88ad28 --- /dev/null +++ b/output/232.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d358b7cfb1dd6dc92642c641d8d8eff28cb13566424fa44760426a458f088b +size 42199 diff --git a/output/233.pintora.png b/output/233.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..507ca0d3f2258406cc2b9c4ba5d0706047af0f4f --- /dev/null +++ b/output/233.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882a51b637c626f384702091f8034ca37911e20d8c212843ccdd0aeb026c97f2 +size 34905 diff --git a/output/234.pintora.png b/output/234.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..15abe0905d4c2fa61b95011cef46b03eb4d16d3d --- /dev/null +++ b/output/234.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ff15fdacb31f9294d69c9bf4e3ac905eb1d15f8411ad5a4a823cff151e869c +size 69477 diff --git a/output/235.pintora.png b/output/235.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..323f0bd8fe5746d4ea04fc02c08f899e5b6c8709 --- /dev/null +++ b/output/235.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088c35453093c912eb1201d90813a479ef2ae39d2710f897b34563066f11147a +size 29475 diff --git a/output/236.pintora.png b/output/236.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..87d2cf420c99a7af6575fdaec24281f61bee3426 --- /dev/null +++ b/output/236.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e6201baabd31919bf6d587863f4944c37d389a271022ac35da9cb570232a7a +size 75545 diff --git a/output/237.pintora.png b/output/237.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..63ea7e0a1bea523dec45cc6f559840ee9422a130 --- /dev/null +++ b/output/237.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61650e8612ce882ae5da7013beda96a18e0e5d9fdeb404f73736c36f27d55d46 +size 41629 diff --git a/output/238.pintora.png b/output/238.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0275dda370c050a080f5d6ef8dc1ef436639bc --- /dev/null +++ b/output/238.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6b386e28c12146114c7c61b15f4f5affe4c7141d0aab52be827de8bd1a9f4d +size 31956 diff --git a/output/239.pintora.png b/output/239.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a347abd39b4650ca3271342d3c918832cb1bf08b --- /dev/null +++ b/output/239.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae153dfd8ccdad4a18b8ba31c58d6af1f3849d133dc7a9bcc29e038aeeebdee2 +size 28069 diff --git a/output/24.pintora.png b/output/24.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..20a7f1a8a3cd3ab598906866e13bc5692ecac8e5 --- /dev/null +++ b/output/24.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787c9883c4f0f12ff733f27ada68ec094012d0c44e783004b9471e78377de686 +size 47727 diff --git a/output/240.pintora.png b/output/240.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c7b9d3f4e31d0ef932718b60bc7bc26aa5fdb843 --- /dev/null +++ b/output/240.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6c9840c9e2f7e4e73824a27b5a266d20e4fe130318ee7e5e77b5c89e439138 +size 31832 diff --git a/output/241.pintora.png b/output/241.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b29111cd5297d83afd550966248b175337f25649 --- /dev/null +++ b/output/241.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f41362448663d07414fc56759f924bb47bbfcd9ac4d27f828a556e15521f01 +size 66460 diff --git a/output/242.pintora.png b/output/242.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7a979928372907b75a271f7e13fd4a042f0aa6c0 --- /dev/null +++ b/output/242.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08703731402079b18e7ed9223053595aab748c508b30bed8b2bd3a520a2d3e70 +size 41258 diff --git a/output/243.pintora.png b/output/243.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3b165ec640accf27048ca47ebb8a753e63a8e8 --- /dev/null +++ b/output/243.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dfb9ff6a9cf8f752c8a0702dcb24f6bbb238fde661f5a486fa1e4e4844e09b0 +size 42949 diff --git a/output/244.pintora.png b/output/244.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4a56f85392b4b4d35161d8220b1f459b03accc4d --- /dev/null +++ b/output/244.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973d568dae53ddddf87304d170799b781bddbc9b86769f8f72817495c2af29e5 +size 32092 diff --git a/output/245.pintora.png b/output/245.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1d31aa45655737e1660c37b13b86ae29af7b455a --- /dev/null +++ b/output/245.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41921b89a839487ad1cefc24ed5efbbde1418c7ac2eda5c57efb7828b2df058d +size 65095 diff --git a/output/246.pintora.png b/output/246.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..951469ec347bc44acd24d0a167553ef2a40818bf --- /dev/null +++ b/output/246.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3785360410fdf684c81491729c54652254bde576823fbd9985961808a4327f72 +size 137377 diff --git a/output/247.pintora.png b/output/247.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f50294adefd15d0da831748553b90b906deedfec --- /dev/null +++ b/output/247.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8462454595fb836484998f3d5fd4bf7888436e8407f0f48e2689a09cc4c843b5 +size 86788 diff --git a/output/248.pintora.png b/output/248.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..320125ce8ab3d4385e941156d48382e24c3dea26 --- /dev/null +++ b/output/248.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815071e7b32560a1cde41299c01dc8bcdf3e1b4a7c70a1daf8e002f34eb303e4 +size 74149 diff --git a/output/249.pintora.png b/output/249.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..71353279c6bec331f9ac5ebe7d92ae0c974b5688 --- /dev/null +++ b/output/249.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe47f13ae24c103c26ee7ceab4f3688cdeed7af52eae9d49a33eeae2e1ee8dd +size 69935 diff --git a/output/25.pintora.png b/output/25.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a8a19eb3bf8efe8ebdae57a80fb3ea355f1a860e --- /dev/null +++ b/output/25.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044ed08219743efbd50c3f6330216ddcb9a4f6ae3d8a0a4ade670ca23703bb2f +size 37242 diff --git a/output/250.pintora.png b/output/250.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cc680daa4475cd74f40498c7d1e18bd26feafacb --- /dev/null +++ b/output/250.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bb249dac4ae8e3d3d292b12961822fc88f34357db9ee6769c3b32f08e251e8 +size 69857 diff --git a/output/251.pintora.png b/output/251.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c98f5fb9294fd0664fa8c1fd82fbc7f3fcebea60 --- /dev/null +++ b/output/251.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99af2da53febb31bcc88ed9bb1bdafcb4d8e0badaa9e9578fb2add66393fe189 +size 53287 diff --git a/output/252.pintora.png b/output/252.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..95737caadd06304f36a771fa22f9158a55d65877 --- /dev/null +++ b/output/252.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9eb8e5a5317bdb5380bb05efecf5cf07917c3beb32b0624164da92510e8d53 +size 69175 diff --git a/output/253.pintora.png b/output/253.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b9540d56f950ace9b789501b3817ac76f5b30e99 --- /dev/null +++ b/output/253.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10524e5c3f8b1260d758a60451a49a6cb8f11a27d21fc86d24c779b298da817 +size 40684 diff --git a/output/254.pintora.png b/output/254.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..02a0d9d10f23df363121a58e59b430aa2a4c3bb8 --- /dev/null +++ b/output/254.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3963886a1452ade6a934adf9ad6cd1e2a7707ed85d80c63eeb5718ef4c2e2a40 +size 28324 diff --git a/output/255.pintora.png b/output/255.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6beb264e8e70efe58135b5d32873004f3a4f9bb7 --- /dev/null +++ b/output/255.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80142b4e147cc95fae0fae7f56cea610c13e41eea421c4dc76e3ecaaf7efb601 +size 32080 diff --git a/output/256.pintora.png b/output/256.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7b7e0effeed817628e74bd526f51b4148cc8f5ff --- /dev/null +++ b/output/256.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a752fcee20f80b9f9c8c94aa4cda8e2eadeaf710a8998ae6e7fce3d571d78fcb +size 43048 diff --git a/output/257.pintora.png b/output/257.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb70638897f3f4c0ca5889c2bad8d5ef3818e56 --- /dev/null +++ b/output/257.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6059c7aa8cca7f17b351bcd7f816c085d3a4f4c693109f25b03009e81c4ed017 +size 42758 diff --git a/output/258.pintora.png b/output/258.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..32f954194be2946a58186e714658dfdfc0972980 --- /dev/null +++ b/output/258.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1171ec0d73283de2bb8f3848a3808380d64c18ab926c227d98932aa5e04a832b +size 61557 diff --git a/output/259.pintora.png b/output/259.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..405082a3a9d0d87d324dae4ce159fc170efab305 --- /dev/null +++ b/output/259.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc9807a3610163c3fdb9d9ab07a1c0f1a679eac6c5c913b67f2b28340feb1b1 +size 171681 diff --git a/output/26.pintora.png b/output/26.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb221239ed300c6996170cc148d3d0e9b9933d9 --- /dev/null +++ b/output/26.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c251aaa11aa0e1a369a16b2ee35118ba1a4a426f1b151eb8104e94786f77f13c +size 41364 diff --git a/output/260.pintora.png b/output/260.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6b70e79285b37e89401b137ae33ea35420066d62 --- /dev/null +++ b/output/260.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32cfd9a60afc1f8413d1f6c3ab8478a84b0ce9bc88ac21ff23502398f654a11 +size 29391 diff --git a/output/261.pintora.png b/output/261.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..70bdda361c83c22f346eb1d61720cfdf08b59419 --- /dev/null +++ b/output/261.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e11fb06c6f95d4b073c4d89fc4b3f19b31feaff0b4accb67c2f4d7cce91dd9 +size 41637 diff --git a/output/262.pintora.png b/output/262.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..90584ca796727cbb05de061f8bbd12db7abab1b7 --- /dev/null +++ b/output/262.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9e6e0a9d9c74dc9e1ae720640f5295e576fd2c9b0225968c567e0dbbafe353 +size 20510 diff --git a/output/263.pintora.png b/output/263.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3dbbd0470c0cd8544cb5ba71bc8e7bca78be9e --- /dev/null +++ b/output/263.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1af18da57aa095c6a4265809bc98a89d3816de1bb4d82f4a2a5ca8d426c033 +size 34831 diff --git a/output/264.pintora.png b/output/264.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..adb97f78dc2d941f3109efb19718b2c7310dd249 --- /dev/null +++ b/output/264.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b58de9b2d88ddc337884d844d3517d2da44c45f28203c3511f36c75dc75477 +size 44727 diff --git a/output/265.pintora.png b/output/265.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0e2218597000fea0ea460dadab3cc754f70b3fae --- /dev/null +++ b/output/265.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0c6efc2c838193bc2a0ea6d6858b9c3a7b62a8c75cbeed9fcd2a7204aa8e16 +size 120515 diff --git a/output/266.pintora.png b/output/266.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..95cbca9c391ee4df2dd6e7c2f81fce60960b5c0a --- /dev/null +++ b/output/266.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732af14bb04b2c154c9807714298b0d1d88f40d920433389f5a6d313a030c810 +size 29584 diff --git a/output/267.pintora.png b/output/267.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..aee4dfe7ad4951ea3110e9326022ab5526f6da9e --- /dev/null +++ b/output/267.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1bec1666166a93ac286ff29111274005d02f714f9006b5dc09a857429dac05 +size 48859 diff --git a/output/268.pintora.png b/output/268.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9c0f902024f512a504d5c18ae3314eaa3f5e0ec9 --- /dev/null +++ b/output/268.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e1d85270bf78adfeae885d592bfd1bb6817eccbafb91ab045f353f4a032ba7 +size 79198 diff --git a/output/269.pintora.png b/output/269.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c263578738d186a8690bb7375abdc19e3465a8f4 --- /dev/null +++ b/output/269.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1eabaa5c5ec9202edf84ed15d078a66fbb5da3f5c8b382516494f1fdc40d52 +size 54543 diff --git a/output/27.pintora.png b/output/27.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..84e6c0c5604ecf232bb6e59f896a9d07dfdbc0f5 --- /dev/null +++ b/output/27.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd4dc9fca7339c48913c1a41866bb4d47c1c89fa859bd5f540126efecd4f7afe +size 17680 diff --git a/output/270.pintora.png b/output/270.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..55aa7f0da2708ac8e911adfe1d49ed8ac8ebc67d --- /dev/null +++ b/output/270.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7083c56357981f40251e5a478a6c765e86c6ac8170e73559329f3317bd0bc7c +size 43385 diff --git a/output/271.pintora.png b/output/271.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..88b05d7b0ee5f3b14552250a6901f4f6d13a7303 --- /dev/null +++ b/output/271.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f469fe119994903ac81aed8dcfc2d8b118f39ad65181d3718311d0d84af2b3 +size 60804 diff --git a/output/272.pintora.png b/output/272.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b0bcd1451de85e21c309849893e585f72c653e11 --- /dev/null +++ b/output/272.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fcc4e53e6c97f30a8c3087af4da2c7972a71619ee76b15ce162db32b4b6348 +size 73105 diff --git a/output/273.pintora.png b/output/273.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..51be319ae3a2c70c9b50d8864c28771fb43c4998 --- /dev/null +++ b/output/273.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc558bfec82eaeb7d8d11d37926accaf289d67c8a7f0e349f19f1766d039a1d +size 94740 diff --git a/output/274.pintora.png b/output/274.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..49c116a04e0ee5f3e97ef75b4ba36b1e81d77219 --- /dev/null +++ b/output/274.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9795f8091f3b332fbb8ce4cf727874574e061cb7abab87b177bdf0c471e3a021 +size 44040 diff --git a/output/275.pintora.png b/output/275.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e6069561bb8104fbc4fb02dc4bf64e5d201d33e9 --- /dev/null +++ b/output/275.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ee84b10f0032012a6ce97dfed667f758ab6410af729fbdf55ab260d3bebbfe +size 53176 diff --git a/output/276.pintora.png b/output/276.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f29aeeb509e9e24cbbf396d15fc075cdf0ded8a9 --- /dev/null +++ b/output/276.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba0e11a56bfa8768782d6485ce4d40d2a6ca5491b79d8fe864b3b94e3326bc4 +size 31755 diff --git a/output/277.pintora.png b/output/277.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..088ac7f5b519b1a848ac42b55b6c08ead40460f0 --- /dev/null +++ b/output/277.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502b4d064500cfbed555495c134cfe7569a95a2c1af2e0130b7634ec18b333e4 +size 40691 diff --git a/output/278.pintora.png b/output/278.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..81a6f881f85e83884929ceb6ef9086b96939c3e1 --- /dev/null +++ b/output/278.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab69ce8f623b608d0129a3329abc3b9a9d5b43519dec3ab50459659bbc932404 +size 78815 diff --git a/output/279.pintora.png b/output/279.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9d40f43897aee810ae3d24198b79d1f2511639 --- /dev/null +++ b/output/279.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b28fd02631489585086cb729b2efa7f4eab44cb9e96ee4c8fd008276d64395e6 +size 64509 diff --git a/output/28.pintora.png b/output/28.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..91eb88eff758f06c38e6cd0ce77981adfcc3d08e --- /dev/null +++ b/output/28.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11353a99e77f54474fda8ff2f1ec563e64530cf0a85b99ec1749ae38e6cdd92b +size 31679 diff --git a/output/280.pintora.png b/output/280.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5e21fdd619c8a4817db06caa7be839082b23f415 --- /dev/null +++ b/output/280.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536982a78400573f82cef47db315421ce5becf73920d1fd018eaa45998635e45 +size 47168 diff --git a/output/281.pintora.png b/output/281.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9072aa46bdb05cd40abb9887702c5e77ab078b --- /dev/null +++ b/output/281.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4616cf955410c494c2fe7c9f1aee87e05a4ba133e7b90729f1b7084a793c21 +size 20903 diff --git a/output/282.pintora.png b/output/282.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cbc4cda0fa4105140596e3d702d0eff615b9f2ae --- /dev/null +++ b/output/282.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c591bd06b1c53805092e2d3ed169d6fa11e6f4bc1cbdf327fb79006d92f32534 +size 41806 diff --git a/output/283.pintora.png b/output/283.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7536ce8fdfb542677435b574201e5904b738eada --- /dev/null +++ b/output/283.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a1a3a2415f123d1297c71ca33216bde41e935ff9e15f1433337bce4433da9b +size 41833 diff --git a/output/284.pintora.png b/output/284.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..556d80a6931b56a07b143fe8316749cdd1066d98 --- /dev/null +++ b/output/284.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3529a37d426aadc1c322313d5a21d2ce3515d01857f6eb935c9ebd3c0fb676 +size 17293 diff --git a/output/285.pintora.png b/output/285.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a86684a6f4bfaa62b60743778fc9866746e8def9 --- /dev/null +++ b/output/285.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3083b5e3a80cc597dab0dc2f80eed45869e60010bbadd724322acc9fa54a4380 +size 40732 diff --git a/output/286.pintora.png b/output/286.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c6e76511df506f569bb50ef2bf7d6e78d25455 --- /dev/null +++ b/output/286.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fce227cfc097a8ef849aa0b9929b84efc4405a50aaf833afba31a0756a681c6 +size 52914 diff --git a/output/287.pintora.png b/output/287.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3027ef1ef29b5ad15cb8703bdc04e26f3ebbe37e --- /dev/null +++ b/output/287.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38eb1acc3079687ff218ec95ac8371ea20ba51f8838dd6fb4f802157a34c34a5 +size 23369 diff --git a/output/288.pintora.png b/output/288.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..38ed7559cdda64fd319c1e8fc2eafd71310d6c5c --- /dev/null +++ b/output/288.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76670f8f88b42ab155abd4573a2fb9d6fb46d9c35f5d305cf07923cc2814ccbd +size 46462 diff --git a/output/289.pintora.png b/output/289.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0879fbdece68f832d48de809ec9b1cefce195bf5 --- /dev/null +++ b/output/289.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7eff3a18d3d9f4f7ef885ffd57a7e40bb2f48192a8044ac6ec07bf25cb95c1 +size 36533 diff --git a/output/29.pintora.png b/output/29.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7bc259fb12586d915d48e13475bf9c541e902caf --- /dev/null +++ b/output/29.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc12fe34118830ead35adfcd722a1b0a11ad9cbec8ebaf441b7071ada40b97ff +size 44158 diff --git a/output/290.pintora.png b/output/290.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cfd5aaf1b94fed2a28dfb98111bf77a83efeb5ff --- /dev/null +++ b/output/290.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8562e33a64c5e2e8cb78c89f8b2ba922326bc91f20f6cb3da4e9f56fe62246 +size 53555 diff --git a/output/291.pintora.png b/output/291.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..97d1247a434eec64d30cb4e8b36a80dc15bf202b --- /dev/null +++ b/output/291.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a91bae0a93d24d6adbe59c93760c0855d3f3a18a818ab671e9788e24df8e95 +size 54008 diff --git a/output/292.pintora.png b/output/292.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..810b04938f90b053f65a6d4712ff7d2c3024fa85 --- /dev/null +++ b/output/292.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e13301a2310f26007b3874815fb4733f0b8e09ca90611f41282a11f7f6b391 +size 54090 diff --git a/output/293.pintora.png b/output/293.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab382c4a16fd29080a1d1d5681c8e121b9e8e95 --- /dev/null +++ b/output/293.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132e2a4107a02656196fd53847445c7533edddaa76afc2ae03c8c4a56b8adde5 +size 44865 diff --git a/output/294.pintora.png b/output/294.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5ab8fedc977d803ddf08fc04f5a3325c5c143f3e --- /dev/null +++ b/output/294.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcd09a5f8abada12c972fda289f4cec6033d46ce674594ad14a5408894093d6 +size 32290 diff --git a/output/295.pintora.png b/output/295.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4398eaffa7e3cdd4201d9ac171ea2671da2b9b44 --- /dev/null +++ b/output/295.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd9c78aa01a20b388b38cfcf14b9b961212754a710c1803cf9f2757b883af5e +size 30191 diff --git a/output/296.pintora.png b/output/296.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..32bea28bd51e75a39f0384077ab8ac0753f096ad --- /dev/null +++ b/output/296.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbf03e81def168a541bb97ca240a42b1e4111f4acb46a06f63aec9149cd0469 +size 102944 diff --git a/output/297.pintora.png b/output/297.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a42eaa0aacf3523e52eeae6971565a5322e43c4f --- /dev/null +++ b/output/297.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a90befc40d06ecec09a34ddc91165b8e06e1c18d36617d583a2bb307b95bcd +size 53101 diff --git a/output/298.pintora.png b/output/298.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..62f4d94319029e91cf61150dfaacde2e0b0816b4 --- /dev/null +++ b/output/298.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42b9c59ef50d4d93498970a83846f7bf95bfef5a814c73cf3a2bb591af9448e +size 21754 diff --git a/output/299.pintora.png b/output/299.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dffec64176971dd3218bbc0923b0b82991745cb2 --- /dev/null +++ b/output/299.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da70d424cd741299660ceb3ee240ec9e9e799e9e0885e8ad2f12e7b24a7f541 +size 31943 diff --git a/output/3.pintora.png b/output/3.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3f64189909c9c94b95ca3c81f7e3d1c22cf22331 --- /dev/null +++ b/output/3.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff2730f0af0a48071ec040094c611b6cc1eb7a4b3167572e3b11fb9b8d77976 +size 30972 diff --git a/output/30.pintora.png b/output/30.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..840330689aab6a7b34ca5c0581510e399928780b --- /dev/null +++ b/output/30.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ae608fd78dfe3ea8dbd5e900738fcc31a7626d5e3aa03ab83cb254705b516f +size 24534 diff --git a/output/300.pintora.png b/output/300.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9847c7868e77a6942bd5d52286c5b450f98d0829 --- /dev/null +++ b/output/300.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d482ad2c2b2c8c5865564d86aef1faaa9b7143f35837fb17c401ec601aa94aa5 +size 83251 diff --git a/output/301.pintora.png b/output/301.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..25c384528202f5bb48d25997e9cf9b54464803ec --- /dev/null +++ b/output/301.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d65a6aaba05afc6950ad3e502bb909b2e0107e453988edae98a66f8fcca029 +size 71963 diff --git a/output/302.pintora.png b/output/302.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b36bcccb98656829da573bf03c86038a3da5545c --- /dev/null +++ b/output/302.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a94729db506a7ec484689fce3550c174dbcd3f5301d12666a78a227f7aa161e +size 29894 diff --git a/output/303.pintora.png b/output/303.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cd993cfd763136c6d90760ccd334fae041ce6aae --- /dev/null +++ b/output/303.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f25dadd47f8eb41306db4343cbc5ca8162e86f44461d94ed65723139ecbc978 +size 85868 diff --git a/output/304.pintora.png b/output/304.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2967783030e88bf8bbc7acc463c510342e641276 --- /dev/null +++ b/output/304.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c346f9dd37a13e8333200e989ac170fbf4c829ca7b3edd5183d0e00e0060e4f4 +size 89438 diff --git a/output/305.pintora.png b/output/305.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d04cdd7a1395270b56c3b30f7f0afef7a3bd264e --- /dev/null +++ b/output/305.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fa2c86163d6822792cba1eb22e163ba004877994636c24bc8e961fd2a96e4f +size 33671 diff --git a/output/306.pintora.png b/output/306.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7251b93efd4bc37ecd628cb738d1a6f6d5e60504 --- /dev/null +++ b/output/306.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e256e422fba6e96337bdbacc5d668285b3bd11bac40d043474b968a0174dc02 +size 112793 diff --git a/output/307.pintora.png b/output/307.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2db7d24998ac91bd1648aca5c07af51d19e6b29b --- /dev/null +++ b/output/307.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3659b62246168f0bdc3021178734dd251ca3f62072ce309c16083651339cc421 +size 64317 diff --git a/output/308.pintora.png b/output/308.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec8d6f6071b0f00e90fb04b941aaaccbadc1447 --- /dev/null +++ b/output/308.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287dba37ce7b1d6d611b12d78f6fd76671572f75c39fba531309ec1f608d6fe5 +size 64336 diff --git a/output/309.pintora.png b/output/309.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3348f085d9819d6a2f9346cd4d72565067690a60 --- /dev/null +++ b/output/309.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039354a0c9a50abe575783af2dc9f909727da096adad1e235cfef84d7a5acdc0 +size 44830 diff --git a/output/31.pintora.png b/output/31.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12972e8801b704979aa0be723fb5446a687737dc --- /dev/null +++ b/output/31.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2d1168c98132cdba04c3a6114c7a47104866be62cac3145f813f3be9824384 +size 52587 diff --git a/output/310.pintora.png b/output/310.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c607809b678866a13f616f4565fc15fe62b2b6 --- /dev/null +++ b/output/310.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1c8d7234e5680f1fa54005f8803fd24dd37955922f28b61a9f3027f1268b52 +size 31296 diff --git a/output/311.pintora.png b/output/311.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1b2a7156663db5e92303f2ae2a83896124828066 --- /dev/null +++ b/output/311.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b733f46ce83016ad9ce6269422268fd9503ea92fe26e89453e2e9449666a2d4 +size 64662 diff --git a/output/312.pintora.png b/output/312.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0e9cc7a2db87052f7853e36788c1add2bce198 --- /dev/null +++ b/output/312.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b3c52e2a312d2d2128e9dedf538f47109097c51d5220019dbc36a619af74fb +size 55642 diff --git a/output/313.pintora.png b/output/313.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f4c8fa0eda47bdfbe43b4a16340b5e474b3becdb --- /dev/null +++ b/output/313.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf07323b44e7352082fc990c595d3967d3e6a536fb820daff9ecb8fd879e5e92 +size 29897 diff --git a/output/314.pintora.png b/output/314.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e96056ed8889d7813bf3060832aca6b3fd274e --- /dev/null +++ b/output/314.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c74589dc9557abacd0468fa00896863a7f68dbfb8fbc83cdae8009acee61a8 +size 56511 diff --git a/output/315.pintora.png b/output/315.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..60ecfd2d36a982b9681b0bd88c7866344e4a3006 --- /dev/null +++ b/output/315.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61979a99d5f04905ce9410d8058418e18c1047b5f36ce75df7798f60aa0ecd6e +size 45784 diff --git a/output/316.pintora.png b/output/316.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce6dd17fb892a8b4e0ab3087989e7d3d477e7ad9 --- /dev/null +++ b/output/316.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa1eb18f25ad7d9733815c8b529ffb345bf980f3f0381d467738a572ac74cbe +size 48522 diff --git a/output/317.pintora.png b/output/317.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..499a7fdb08e6b7e27151b789a91f1e01b0dc7bab --- /dev/null +++ b/output/317.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fdd98e67249efbaf057067356b1fa4340b94b0453741c97c7fcfc48bec4792 +size 160274 diff --git a/output/318.pintora.png b/output/318.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..28a169438998c3f366dc0649ea53a89cf72b365d --- /dev/null +++ b/output/318.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677d4efaba250cc06b90408cfdbeb40754f1326d02032a94602f547be567b9b1 +size 76748 diff --git a/output/319.pintora.png b/output/319.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1bbe8bbcf8eeffdaccf7cdda85681b94910e4685 --- /dev/null +++ b/output/319.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36af7e52a6a4a185e7c0fe3d9855ddd61d5783046b9d179395b973bea88ceafe +size 64886 diff --git a/output/32.pintora.png b/output/32.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..79561292f68f15a244756006b7bb158b5bf7c7c2 --- /dev/null +++ b/output/32.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb647ca90ca8f00bd4bde0c6289008789837bf660f1b3c2b33b2d3a66491f57 +size 64175 diff --git a/output/320.pintora.png b/output/320.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e4cb5b1c364b3255c4bb5126da91b829823876be --- /dev/null +++ b/output/320.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3290bb6bb8e5a6625854ce83e8a5074b316ded133acb5b9925aeb9849bf687ae +size 26970 diff --git a/output/321.pintora.png b/output/321.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5c71f3cc58bc8ebac79de843bf7899f45798f27c --- /dev/null +++ b/output/321.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d7940aa3078b9591e39b86e183d12767629ff8bb89d9cdc6a3686d7ac519618 +size 76664 diff --git a/output/322.pintora.png b/output/322.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6f184a7a8a8b825aa9b4a1e244cd764de407ed39 --- /dev/null +++ b/output/322.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf7b51844d8fb99eea3e17019e438929d66190fe1b6ce3546d3ca740e712344 +size 68187 diff --git a/output/323.pintora.png b/output/323.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc6c9b752a0a2eeab91d5753f610684a37a24cb --- /dev/null +++ b/output/323.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00bb0d3ecec463c35a4bf6a8f7fdb9b3c56eed8cac6e4c1a99d9f378e110864 +size 42946 diff --git a/output/324.pintora.png b/output/324.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..552c7f52e12ca002f4d9104260ca085dbf929641 --- /dev/null +++ b/output/324.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f79436b2a310c0a85308fa4ca170c79d5e6888f6064cd805b702c7231e7929 +size 55496 diff --git a/output/325.pintora.png b/output/325.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b769738e15e911a8b9a9566d0c00a458f780d9da --- /dev/null +++ b/output/325.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0aa374c888a5be3ad2fa14ba1cbacbfaa35a3c07e0335a46099f0f6a528f689 +size 43621 diff --git a/output/326.pintora.png b/output/326.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e48f0e74c139fb2b3206cff93b9edc62067a8e99 --- /dev/null +++ b/output/326.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d943a95130eb251dc504ae01552b4c7b648d96deff9a2d2b89b34d934bb91da +size 54047 diff --git a/output/327.pintora.png b/output/327.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..96683b206da9427f467027d702a25e0193f02f6d --- /dev/null +++ b/output/327.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92f6093eb2465a4488a12ebc4bfa065a73e40c25e9a6792d97922a23badeac1 +size 228851 diff --git a/output/328.pintora.png b/output/328.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2fad6ae174dd7af4386078c55d6e9c65e96d54c9 --- /dev/null +++ b/output/328.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2cefbf7265d047a37e4b3548b4e13df5c6358c58055a44149f5106c18f8111 +size 39097 diff --git a/output/329.pintora.png b/output/329.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..78d3fdb318afcaa114484f23587f7a72e58559b9 --- /dev/null +++ b/output/329.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4917c6edfd1384bf86c651f870716cbac0f6ace16bf42c3595a3912c891b4f5 +size 122111 diff --git a/output/33.pintora.png b/output/33.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7da005b4a00fd8472d3e2a8123e78339c3f49d --- /dev/null +++ b/output/33.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01546fdc6abec8efb6c32426421fd83cd4167ad775ecff3b779b61e3f112d06a +size 21371 diff --git a/output/330.pintora.png b/output/330.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6be19ccd751f515cbaeadbf6c34f9a6168a8ad0b --- /dev/null +++ b/output/330.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e318adc2e7af2a7269d1e52db861a436a0af42080bff4d064e2afcb045f9daa +size 38756 diff --git a/output/331.pintora.png b/output/331.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2f8f743b95d6be360660c3f429b305aab83909c0 --- /dev/null +++ b/output/331.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c545a74c46ecbe5cecf90991c0969454fe6229af42eefa508b8f3f8bee4778 +size 44241 diff --git a/output/332.pintora.png b/output/332.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..77d835b4422e2a8ae80adfd9c594eb715fb8e2a3 --- /dev/null +++ b/output/332.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd19c9c2b18052b63915cc53c577b2dc6d32ff2d1a3622e85a2c3785b2ce48a6 +size 75648 diff --git a/output/333.pintora.png b/output/333.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4790a864a8d88cecd8e720094b834dba63385542 --- /dev/null +++ b/output/333.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d5b0436b1783bddd328f973b402c74994c5d22b0c96ea7c9044b40001c1a03 +size 55869 diff --git a/output/334.pintora.png b/output/334.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f5cb94b9265596dd2e435713fce36b46ebaf547f --- /dev/null +++ b/output/334.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ce15fc913e697a16fab340e3244d1ee52bc9f2c494ab779ec0be7229979d9e +size 36736 diff --git a/output/335.pintora.png b/output/335.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..75b63e005ef8967bcf524d03f64184b53d5e55aa --- /dev/null +++ b/output/335.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19507b19b55d43cba281911f83885b4dfc32542251b51f22aac72188cb9aafd4 +size 103192 diff --git a/output/336.pintora.png b/output/336.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..272e7ca4ba61448895d7d99dbd7ffdea20213f17 --- /dev/null +++ b/output/336.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a56011f7503c8170a0b55b594177d9f2f5ea35e99aec82edaedc594343aff18 +size 30465 diff --git a/output/337.pintora.png b/output/337.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..276e34c05e4cdde16d4b667c24bf71fa44ce23ff --- /dev/null +++ b/output/337.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e2af06278b118df758a78f7b8de6f70573953a03197d246ba6887b3a89f9d4 +size 53002 diff --git a/output/338.pintora.png b/output/338.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3c041a4a02c7da8d27c2cb6ab163762f6d9d88cc --- /dev/null +++ b/output/338.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d6d5a7e96753f4ab24ff19a2057a408a5783d072ec96856aa725881b55e1d5 +size 77458 diff --git a/output/339.pintora.png b/output/339.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fa25d3e8492c79be1386e7cee57340b570daf965 --- /dev/null +++ b/output/339.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d145cfb78e648f33b216024228741cbb6ddd76ded6b6f31e551495d15a10d1b9 +size 39744 diff --git a/output/34.pintora.png b/output/34.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2349888a8c7bd77ef5b898bdba86754eda0b469d --- /dev/null +++ b/output/34.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bacc5c7930b87c917c8fe154277f429c2351fe6186b5cf196fc5f6bff1d38c77 +size 45543 diff --git a/output/340.pintora.png b/output/340.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..45b9275bd529640f1b30c44d50839ddecdf46186 --- /dev/null +++ b/output/340.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c480827da07146311188202f31dd063d53caab82257c1e44208e128bb9e12038 +size 52559 diff --git a/output/341.pintora.png b/output/341.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..07d91f50d8eaa4a96514119035545f27f029e7ac --- /dev/null +++ b/output/341.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdec9dc10bff833093a28d1cbfc7f2fe18c79a3ce99f8f5fc25ec286b81a9bc2 +size 137132 diff --git a/output/342.pintora.png b/output/342.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3d82d5fe949f6fa7493de9921588fb55a9af24bf --- /dev/null +++ b/output/342.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223bab65e981d3797956a22acf0e4e49b1de8e8543ffa7fd18402ff13f42eede +size 41613 diff --git a/output/343.pintora.png b/output/343.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ebfcd2f3877a62b7a26f8d3ee2f51b55c1e91655 --- /dev/null +++ b/output/343.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08d62365b3e19edbdaf6e550fe874555f75221c630ff4299a08fdfe6e3775fd +size 92757 diff --git a/output/344.pintora.png b/output/344.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..42ca1cac057446956635844837264af4156534f7 --- /dev/null +++ b/output/344.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1898227bcba15245557eca7daed5abe6ff405452af495e85fb8646ef992698 +size 73061 diff --git a/output/345.pintora.png b/output/345.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2c25f1b753748ed759d992bbc96ad4421607f382 --- /dev/null +++ b/output/345.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435591bafdb82dddf99d6a23b81682a8426c14fa587c65279779f2939a21bcad +size 73456 diff --git a/output/346.pintora.png b/output/346.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..439af7a0d46315b5c64b7669710c6e5e454115f6 --- /dev/null +++ b/output/346.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c6ceea11f43ac767edf8cc48bbf671967ec10752a34c99e3ae2d7b06f47807 +size 27324 diff --git a/output/347.pintora.png b/output/347.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..061f3e8e06ddf825709c9d5b5fabbc5b048398b7 --- /dev/null +++ b/output/347.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd54fba29cb21750f0ddbd3adad7365e7fedbd45b75b6a98480502912689f20 +size 31366 diff --git a/output/348.pintora.png b/output/348.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fd355b8e04f6e25c7136462f3ce6c47291948e61 --- /dev/null +++ b/output/348.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de000c615fe5b32e0099b0b8283b9a458b79ab82a70c3d6661d2982fbfb5dc +size 55397 diff --git a/output/349.pintora.png b/output/349.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec80e213eac718796d3c200bc290c253dffae74 --- /dev/null +++ b/output/349.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbf9e673118a05474c3c90bfcfb9d666373680c6ca27ce476ece701e2669ba6 +size 92795 diff --git a/output/35.pintora.png b/output/35.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..58b7f5012854b1e55b78a9f7829cc2fd5a135314 --- /dev/null +++ b/output/35.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3c12554b6c101a20ea0f11682c0f99f91071cc5d1e5130472bcd3c3ec5b75e +size 35175 diff --git a/output/350.pintora.png b/output/350.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e2aebba5c8d92b6650144816e9166f3c7b8e9fb5 --- /dev/null +++ b/output/350.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a405546f9e8603074091b8ff5550e254a9f65039473ccd995290226dcc798a3 +size 16983 diff --git a/output/351.pintora.png b/output/351.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..287d9a4ad1ab3345d0bf698d9ef461bb31624b6a --- /dev/null +++ b/output/351.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce58fd82046de4b1798abc2c123e245572bb81fd0ed0a407b95e456e1ec1cbdf +size 23832 diff --git a/output/352.pintora.png b/output/352.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..48c09fb1ea9e8a5a7fc11395d7abe23c0bbd7f26 --- /dev/null +++ b/output/352.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9bcd56f80db519da9b434dcd27dad223193033e74f3fb2a6e0041c785754aac +size 75198 diff --git a/output/353.pintora.png b/output/353.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b1b13e33bc3cccd8eaf13b62e8fa47d5f62f3115 --- /dev/null +++ b/output/353.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c19cab1197ccabc9fc931defa4c37ec351938818f91afe6b73ee8de76461a9 +size 30862 diff --git a/output/354.pintora.png b/output/354.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5b317ab2036ab9aa32f72875b39861cfb4cc76eb --- /dev/null +++ b/output/354.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca588eb238c19e88a3f301baecee5e879acd36d4dc5948e2efe783d0fa72c0a +size 91295 diff --git a/output/355.pintora.png b/output/355.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8115ce8890b1b0490e26f062a959391b8c3a69 --- /dev/null +++ b/output/355.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab8b8c76726a3b238710284fbeef793102482170000747d9d0645e8df0cb8e3 +size 32825 diff --git a/output/356.pintora.png b/output/356.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2099cc456976deec05afcd9ed0d4788afcf818 --- /dev/null +++ b/output/356.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c346a6150dfa26df63f7a2c117ee61b62a0bf07f9ef1982300445a28e3ffff5 +size 32784 diff --git a/output/357.pintora.png b/output/357.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..319b95bf096235ad6fbe84c6bb828dae9819c251 --- /dev/null +++ b/output/357.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c18e188ce7cd44d0a10d5c5b008ed8c2e1fafb4c2857662a508b6e506bc1fb +size 35128 diff --git a/output/358.pintora.png b/output/358.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..acb065cf1dc7a385d72cec40fe88677b166e7e9c --- /dev/null +++ b/output/358.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09aa24a3d829ad1bd483c04a002aafa5b125eadc361f738da548252dd834b38 +size 48416 diff --git a/output/359.pintora.png b/output/359.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5bb25c5c0df98a71b806093a92f9c03fce668c --- /dev/null +++ b/output/359.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d021ddda56c40b0c5dc0a97517099a6db978d66dfd908c206a3642bf920c860 +size 34132 diff --git a/output/36.pintora.png b/output/36.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8463d32ac33399648b88ddd1efdf65c078f3e459 --- /dev/null +++ b/output/36.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5172ba556f03d7d83efa3a545fb69537961cfa233f64f415a682d46297b50b76 +size 27558 diff --git a/output/360.pintora.png b/output/360.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5aea0a876519d26ac72941a58f0f9bbf7b006688 --- /dev/null +++ b/output/360.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cddaa8e59894d6be20b0bbe30bf86de180c67ba5da02a798456a12b83cd4df0 +size 60590 diff --git a/output/361.pintora.png b/output/361.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7483914e70b446089078867f4b3a287ca0e1528f --- /dev/null +++ b/output/361.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be2be154d7c1dec7aec9d5c12f4443d02a1c235d08a5d2ed016e6582ed1ec64 +size 31428 diff --git a/output/362.pintora.png b/output/362.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..55e34beaa2c9a81313f7fa45e77df191b1af16ef --- /dev/null +++ b/output/362.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ba58e8af15b306d676b4816d1d47af0848accb101d215341669b16a0a010e2 +size 23406 diff --git a/output/363.pintora.png b/output/363.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f17ff274b279c51a9fa6577e75ec7e585b5aeca2 --- /dev/null +++ b/output/363.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60a4ebfb3b51d29d8564c9566e7365577b9938eba7399362cbda4b96e76f6de +size 45778 diff --git a/output/364.pintora.png b/output/364.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca9d926f5604c3bbbaab9c700d7c1a6e9747372 --- /dev/null +++ b/output/364.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd7718ab9c583ea4589220bc93fc7b009de11047646684299ff595ef8182dbd +size 171975 diff --git a/output/365.pintora.png b/output/365.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4735e79610af88c88a8d35ff8bd09724766e992c --- /dev/null +++ b/output/365.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d9bb75eea26dd4392470a671076a5a55adaae702ef46295bf117b0aea3ca5e +size 40793 diff --git a/output/366.pintora.png b/output/366.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a85c6c9373430e06b0de3f90248e0ca2c3ccefa4 --- /dev/null +++ b/output/366.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937f911873872d94dcd99380e9c1c6c1603c21e92b11ddd327290493b933412b +size 43582 diff --git a/output/367.pintora.png b/output/367.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7f2ec51d6dc800a7977136e2d0cd73503dfe7b --- /dev/null +++ b/output/367.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283f55f54f73846b6df5568dd2611253fdffa4a55199a7892ccbddf5690ba68c +size 32449 diff --git a/output/368.pintora.png b/output/368.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3e9a967903c90afd79089c81122f7152f16a454c --- /dev/null +++ b/output/368.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f70a7433910d323d8a9815580bb2ac1f842b88a6174de18465d7f77b07f4bb9 +size 55989 diff --git a/output/369.pintora.png b/output/369.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..83de33254f892a0006b07bc11d421b1b04007e33 --- /dev/null +++ b/output/369.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe2a88a03d06c89cb1a3bd1264cc6e9450916483f9e09126a8a775c8976cd68 +size 45639 diff --git a/output/37.pintora.png b/output/37.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..653769c76306a4404021c6521432bb1da1fce6e7 --- /dev/null +++ b/output/37.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacad42ad52693788c71c22cc1f85203141a274fe890673a0270f48aa9dea380 +size 41873 diff --git a/output/370.pintora.png b/output/370.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e3eeb9c6f602fc6b64a0ac0eb089d0197396db95 --- /dev/null +++ b/output/370.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15afcc706f33e2f90da3872076dc90987c1fdf018635cf7f501bdef93db4cc7 +size 33338 diff --git a/output/371.pintora.png b/output/371.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2d5b087f13c04aa945bfb202c8137bf34b0b1329 --- /dev/null +++ b/output/371.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006e87466b13b680d97e4c3af9892283b9fa070f845d5d5b1511ada4d00dd5a9 +size 42805 diff --git a/output/372.pintora.png b/output/372.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..71326f9f64bbd7b8ff62d60894a48b8b92ba3d9a --- /dev/null +++ b/output/372.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1182928be79231674f1a375793fe87bcea54efadf392d5327dc4e14f90a8576b +size 36512 diff --git a/output/373.pintora.png b/output/373.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..29b7c1a3a9cb3eeed3cd6bc71224684e42ef26d9 --- /dev/null +++ b/output/373.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41063a5183351f1992b6f8ac2c44b460e2148eec079bf2ac8a6e3d200e50cc0 +size 59612 diff --git a/output/374.pintora.png b/output/374.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..187471faba959bf0387e72d6aaa51073c9a19d95 --- /dev/null +++ b/output/374.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a525fb7feda6a16a25f85cc0b672f52b7ba1d7a08994bbb553ea3c539c3221f3 +size 53289 diff --git a/output/375.pintora.png b/output/375.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4ae08868362e901c8a4d481b6eca190b15cc9ecc --- /dev/null +++ b/output/375.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4b9c05f642d3b6f0f6546a1a92d119861d056b82a856c5d0c31a6f57c083f4 +size 31115 diff --git a/output/376.pintora.png b/output/376.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2b975d75cc7e042424014e8c36b5d095ac9932c9 --- /dev/null +++ b/output/376.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bd058d3c6ba38daa62bced42c98ef80a852ac74d3e0eb54989b37a388123ff +size 121370 diff --git a/output/377.pintora.png b/output/377.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e7a7541a6f579065594d439d6155243e42e999f7 --- /dev/null +++ b/output/377.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e1b6357bf4d80334bdc9e3aee2b1c599157652c21746931638174d885282ea +size 34654 diff --git a/output/378.pintora.png b/output/378.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4c61e7c850adc406e6b15e1e22fbb08dcaccf289 --- /dev/null +++ b/output/378.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d9098fc73622fe4e0a40aade1e44224d51326b9d2f05bca80cfd76d5947a8c +size 118194 diff --git a/output/379.pintora.png b/output/379.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..47970602bd86cf913b553669a4ec666d31c7cb01 --- /dev/null +++ b/output/379.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd93c8cdbbbe8d394420302841668e5083cb4fc8db0de5c100fb44c13fabe3f +size 87292 diff --git a/output/38.pintora.png b/output/38.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..72a8f6f6049daf815b731b6f695f1d5dc270f7ab --- /dev/null +++ b/output/38.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0b534dd647f8a2904f5d49d77637c10f1ade2aa4e7a97128c9e9ab29818546 +size 31060 diff --git a/output/380.pintora.png b/output/380.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..21531e155c897e81b4817871c3215cdbf11dbe52 --- /dev/null +++ b/output/380.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24788c5fc7b8ad8fe8aeb911108ba530a9d1f1507117f51835524c57cf890105 +size 49279 diff --git a/output/381.pintora.png b/output/381.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..41171291ce5b6bff23bd4ac7a25de4a2392d5164 --- /dev/null +++ b/output/381.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdee5f41e6bbf8acc4238abfce3ee63a33a657ccc360bd9ce08fdc9467efbe6 +size 37429 diff --git a/output/382.pintora.png b/output/382.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9d17b3ca2ca198a75c3a217268b5f49ea67caafa --- /dev/null +++ b/output/382.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6baee29d985fe2675cc75f29383132ec0b38c29bfbbb3852a4bd0af983eef2f +size 51348 diff --git a/output/383.pintora.png b/output/383.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..69e43746c02baef812e6ef2560971a80ff68a66e --- /dev/null +++ b/output/383.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d897f34df83a4b88730280fcccea2891823bb1aafc0e53c043e725888d0bcad +size 68010 diff --git a/output/384.pintora.png b/output/384.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5efdc7a06fecec9442d0f13df59671b597e319da --- /dev/null +++ b/output/384.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375956a2d2953fd0dd0603df1edfb6e5cfef80e796079cfad5825e08c0fbf87e +size 63105 diff --git a/output/385.pintora.png b/output/385.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d0667ab716c15994be28b8a00fbacd63db06284f --- /dev/null +++ b/output/385.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8ea433a71f1a85fa5255f4d787de3746a21d0c7121f825b03353d43f517e6f +size 32598 diff --git a/output/386.pintora.png b/output/386.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f0d2e8a4fb50d12f712b0a5fb60546d6c1f99ee0 --- /dev/null +++ b/output/386.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71dc4117895d169ee436db71cd7fdc037c56ed3983acbb80ac980c6c65c786fd +size 43384 diff --git a/output/387.pintora.png b/output/387.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..96f9c45cf815733b5690cf272db9207f08c6ebaa --- /dev/null +++ b/output/387.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56475613e3d9b8f2f609c05c4ad7fec8646aab666e6c4bc956395f8e2ddf3e4f +size 28295 diff --git a/output/388.pintora.png b/output/388.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..95e7442063e9b84eb9d11d73a554df8c0b5fa388 --- /dev/null +++ b/output/388.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f511048655f7d767a4437c8c017866cbc4061e1fe007091941684b0756ee87 +size 94826 diff --git a/output/389.pintora.png b/output/389.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..80e81d38af9b7dbab52e540db1fa17a1ec2cb4de --- /dev/null +++ b/output/389.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b919796e45661387addb5f29f1ef460daa9dabc1c294a62c2f0e2013be6270d0 +size 74678 diff --git a/output/39.pintora.png b/output/39.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7e9f696ca99ddd76ce94cfed49ed6cc3ba988e --- /dev/null +++ b/output/39.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c085d07267a9c9541a8559ed543873960399dcf0fa205a5c3a51d1102e3f1c +size 64329 diff --git a/output/390.pintora.png b/output/390.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1cfcae699cf2bf51526ecf59d5c1065a319f0963 --- /dev/null +++ b/output/390.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c510d2d966524bfa97f1d12fa7ab7a71b1ed2c2f9d190c02a757c4f03828d071 +size 42051 diff --git a/output/391.pintora.png b/output/391.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..69f318e23e977a0d4285091ad3a543a29aa44c39 --- /dev/null +++ b/output/391.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655257e8ad8917de2f758d2726eb8cb9cbaf2704d20f960c63ea6d53299e31b6 +size 28304 diff --git a/output/392.pintora.png b/output/392.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..48db10c500c05d216f85d2abaee6246d1c0d13e9 --- /dev/null +++ b/output/392.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e9871a785877913be76dc5acf1aa1f302765ef9a509f031b0c35ee5c80bd5d +size 64172 diff --git a/output/393.pintora.png b/output/393.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..16ec3183da48e515340e758a52e15939cc4ddede --- /dev/null +++ b/output/393.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7bf5424a8900e6b1acfa06235f61d114bf3806e74aa63ef8e82fa314f27e2cf +size 47065 diff --git a/output/394.pintora.png b/output/394.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..edbc9acca9d80b21556adf0a366f4983eddb6268 --- /dev/null +++ b/output/394.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9571ab452c9c3828720d1819f6d81f91f2fbe8e1a0daf2cc99aefa7b88314a08 +size 64602 diff --git a/output/395.pintora.png b/output/395.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5eacbacb23ba17e2d6fb7ed80fea2653ca5cd2b6 --- /dev/null +++ b/output/395.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde8e66eba710b8234ef85fae14fc20a9ae92da1c02840638c2e7f17bd7045bc +size 38482 diff --git a/output/396.pintora.png b/output/396.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7d4163fe73aa0df1619ac497db2d95c241e982 --- /dev/null +++ b/output/396.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17498bf080ce1d72d3406f866cb0254ede7925a67b6d7684397e18387b27630f +size 70730 diff --git a/output/397.pintora.png b/output/397.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7f599442a8c9d5849b6743c79bff0e24c13ca4 --- /dev/null +++ b/output/397.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bb4c297ef1ff5bb591647075d63bb31edc845899664376a516d5ae007cca05 +size 25383 diff --git a/output/398.pintora.png b/output/398.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..91d027e57d2e755e371f873f33d4394f15cb77fa --- /dev/null +++ b/output/398.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7522852c51dedead08c3209eee824b21ef8864c019213bf171fa52161a257c20 +size 22235 diff --git a/output/399.pintora.png b/output/399.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa4b92c5491d3c7d2b03f823939e55dc41097ad --- /dev/null +++ b/output/399.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284bc82f2d9791545eb1850ac60aa1262a52a6c6d6ec1fb042468f6120c8989e +size 25515 diff --git a/output/4.pintora.png b/output/4.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ba22cd13c75e2d4c021599eef52188339138b2f9 --- /dev/null +++ b/output/4.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645a7a661aebde9d396a38bf61378c775ed9dd031aa42aaebe8338f264c8c84d +size 9004 diff --git a/output/40.pintora.png b/output/40.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f48e8518e051891022d24d95b0ee7011abb5c7f9 --- /dev/null +++ b/output/40.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b948db94332d702490e718fdb94ac01240c895ad8e510a9e4e12ecc9bcd81893 +size 52864 diff --git a/output/400.pintora.png b/output/400.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..eb524cad931bb702a57f631dfc1f67c7c82fc65a --- /dev/null +++ b/output/400.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df11c22cea0f024a090faa3f7030e9a441b279a09219c7e63d07e05a5a3979e +size 66246 diff --git a/output/401.pintora.png b/output/401.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8c647356b46822efc5a64d95134f200680e6002c --- /dev/null +++ b/output/401.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623e56f729b9d8749d349903af634086e02673d4d6a2e63fbfe002f4d41f2f9b +size 33966 diff --git a/output/402.pintora.png b/output/402.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..27418918eeecc8dd39aa71160003a47c0134e3ac --- /dev/null +++ b/output/402.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b4ef1ca00d0ccad80dc540888052596d00263ebb6223b112daa91fcc4a1787 +size 64151 diff --git a/output/403.pintora.png b/output/403.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..16f976f604f63e637808deb97783fbc4691e75d2 --- /dev/null +++ b/output/403.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474da714329c9b3d29851452df7161179ac13e8bc6107bc4fad94c5a9b2cf9f2 +size 47954 diff --git a/output/404.pintora.png b/output/404.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0a1dce3d95b4b4cbd95444682983d1e97e6b519f --- /dev/null +++ b/output/404.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f1454ce114413318fd008b043ddd0c80d28abca1c20d78bb37dc3b6508f556 +size 39929 diff --git a/output/405.pintora.png b/output/405.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..127f7c4e056c7d72a791bacd806e2212e4316830 --- /dev/null +++ b/output/405.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fae1fcfa77a69fe4ec518e67813770cf2475fa69bd8ecdf52b6264658aaaf8ce +size 36087 diff --git a/output/406.pintora.png b/output/406.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf239c866cbbef1f7196ad66581541c8273a9fd --- /dev/null +++ b/output/406.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3b39be097b537daf67c932aa5544b81bad0b428cea1f7241910f1271f29289 +size 24173 diff --git a/output/407.pintora.png b/output/407.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2b69ab1d77a52a291222d24d71d431f95b7ccf8c --- /dev/null +++ b/output/407.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3d267cde13dce18eca72fb3bb69b0461185b2714ea22da155cb8b1558e53ad +size 75546 diff --git a/output/408.pintora.png b/output/408.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c461bff05ba4ac414300152084abdc468198b6 --- /dev/null +++ b/output/408.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d37c162dd902ddbf235745a8b86725becd9e5fc61aae9ed18174028261f8c55 +size 21195 diff --git a/output/409.pintora.png b/output/409.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..97f845e21cf861656d21ef4338e0bea2a0d99257 --- /dev/null +++ b/output/409.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1c8b968f817a6e7c0bf23d6f20b94254e3c005c9a4830e2324354b84c9606f +size 32508 diff --git a/output/41.pintora.png b/output/41.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7007a18623e0034ba10590f0b2deb10de13bba22 --- /dev/null +++ b/output/41.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c77f348c8e4d7dff0980a1145bab02225d184083c512e016617726f9606ea11 +size 33681 diff --git a/output/410.pintora.png b/output/410.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..efa729caee5a3a0547356838f3bd757d0f7bdb16 --- /dev/null +++ b/output/410.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ec3408ae6359c16739d135e9ff23b8e3ef757cc2c9526ac73897b325360607 +size 44711 diff --git a/output/411.pintora.png b/output/411.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..44080d653043c740e00c819e31b9ab807ec180eb --- /dev/null +++ b/output/411.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65df865f1879bd61bdb3c70536de153923dcb94e9db0cc82a4e703b26ef7fbf +size 62614 diff --git a/output/412.pintora.png b/output/412.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c5b7bd0d2657d2818c13d2ebed7bd3d821964db3 --- /dev/null +++ b/output/412.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f324552bb06cfd2550b44915d5a44dc2f88b0997cdfa5dd43aafd281d75783de +size 37279 diff --git a/output/413.pintora.png b/output/413.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b08938400ce8c02f954ca9f6432c4d3a37f9d3f2 --- /dev/null +++ b/output/413.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af275fb1d3b839917b431ef0c99646859601b6ec9af8233076acb116028bbf4c +size 115413 diff --git a/output/414.pintora.png b/output/414.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e2495474ece4c69177dce19a296747976e8f0a --- /dev/null +++ b/output/414.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5c272e3b6f1121a5a2b1634ddaa703138c96b5af1809cfee88eb658f8d8c79 +size 41131 diff --git a/output/415.pintora.png b/output/415.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..82c31e78c67087c2215f554a462de1e4215f7127 --- /dev/null +++ b/output/415.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257af998a0ef22fad3a705361b1a4a655ac26828d3dbe2c16b3bc0b8bdcb5cdd +size 44571 diff --git a/output/416.pintora.png b/output/416.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a52452225e09466bbeaae4dfaa8c08fd7fb832fa --- /dev/null +++ b/output/416.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff1d49f9708b96d11f1573c624b71406485cc1a91d5ea026e934dbdf7cebc62 +size 164832 diff --git a/output/417.pintora.png b/output/417.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d2e331e702105da9797d111ff5057730b22973 --- /dev/null +++ b/output/417.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4822b2544fe04b0ce1b8b4b25f6cc88b737caa5ff4e872bbc6e0cc3706f3f594 +size 83281 diff --git a/output/418.pintora.png b/output/418.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e67eaa572a1543022316db30859e07276a329824 --- /dev/null +++ b/output/418.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766def90bfa7a1f27fc7c88cb5c6512abce76dcfdfa774303a2890d30d5daea1 +size 77617 diff --git a/output/419.pintora.png b/output/419.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5727f5b8d26c1de9f9ab748a150fc649384597af --- /dev/null +++ b/output/419.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13245063c6754135b3acc5f33dfb38039ba24e8a0dfd51a047532ae7d4632907 +size 181085 diff --git a/output/42.pintora.png b/output/42.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0af71d381e1d04287d749ca49b37cbd5750ebe --- /dev/null +++ b/output/42.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef3a2ec35b02138c2b36119555b5ca2fb2a65f4c2d7df39165c4f8ae9b3df5f +size 20250 diff --git a/output/420.pintora.png b/output/420.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ae2e5109b8b37a7acaecb9962925b7d5538aaaf3 --- /dev/null +++ b/output/420.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d6f564ec89f4e06d5b5525eb6fb3dbff162eb85a95bd8f0e337933dfcb45a1 +size 69181 diff --git a/output/421.pintora.png b/output/421.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..54fe97941c4d8c026a304b5b2bc8bc555459ff3a --- /dev/null +++ b/output/421.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21af0be3b2c39f44becf8d450cc6fac748d513087a000635312f3d8aba2f7e93 +size 41148 diff --git a/output/422.pintora.png b/output/422.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c53586e37ba74ef935e0605fa2975fb4c7a664a1 --- /dev/null +++ b/output/422.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4dfbfd362a5790c37eab7ec12f15432d6a490fa0f61fd49a6707ef524815e8 +size 133183 diff --git a/output/423.pintora.png b/output/423.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6e006c14322a1983fd061d0406c6f5826a6b16a0 --- /dev/null +++ b/output/423.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c83a91fc6480856cdfbf9475a5315363c0202e6065b14fb2c5dcf9868a1bac4 +size 83436 diff --git a/output/424.pintora.png b/output/424.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..554fcfb469f68b11a03171900a59a611f9a34b51 --- /dev/null +++ b/output/424.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82d4ce24ca4ab1b12552fb9a17603c783e1eae425039544974c8f1bfbed9140 +size 71908 diff --git a/output/425.pintora.png b/output/425.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4d3d0767e8d3c1080e8ebbb3ffc29e283a397033 --- /dev/null +++ b/output/425.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49f5d8d73525782a4cb48c09097c1bb2ac7457fbca5847eb12eb8fc1db96a95 +size 24699 diff --git a/output/426.pintora.png b/output/426.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1b07d35f4ce1976ea41bde03fa85de3f61ed1a3e --- /dev/null +++ b/output/426.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fef05eeae30d146598efbf30fb7325e5c98c016e36fea36d63cfa0df9e9c667 +size 160955 diff --git a/output/427.pintora.png b/output/427.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d1131820f5fe9cef56fff0076b647aafedd47e1f --- /dev/null +++ b/output/427.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8838d9febe6c64f0e6a1dd18fc962e49fc2897665d86ddf634ec5437a3b8fd +size 49407 diff --git a/output/428.pintora.png b/output/428.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2b820e5623abffa0f5fdacb359ac4231d3a8d546 --- /dev/null +++ b/output/428.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a1a1f9400755445e28a935fa8452831d63683699f55ae57b5968e3a62a2d60 +size 44643 diff --git a/output/429.pintora.png b/output/429.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1565ea13df1428afbd502779e71263ae0c6a890c --- /dev/null +++ b/output/429.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2dcf2e2ee32b303cb257110213f73f4ad4af158eec7256b3d876fc57fed9aa +size 105346 diff --git a/output/43.pintora.png b/output/43.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4d70ff8366687d56ba3b046eb91b5395803dca92 --- /dev/null +++ b/output/43.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8afdfddef54e032d8e3dbafb239634bf0e9c89e9ac8967da01833eaccba894 +size 25847 diff --git a/output/430.pintora.png b/output/430.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..be272e0778c9d45cb141949f93ee40a090daefc8 --- /dev/null +++ b/output/430.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b798f65942c46b4eeb164d797315657b5d80a537730c10cdd94ffa1b06f12a2d +size 104564 diff --git a/output/431.pintora.png b/output/431.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e0f940f4918a7fe59420afc022e5acc611f0de07 --- /dev/null +++ b/output/431.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a897106c69c5830bcc03c77cae16fcebc9a152934450378516c48e8d6724a98c +size 51464 diff --git a/output/432.pintora.png b/output/432.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a5378a9b29b116288c9dc70beffc5022b995de59 --- /dev/null +++ b/output/432.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d015b9b42ff42baa935d05e532be900786c5a22567e055c39be0baf60c561d7 +size 101013 diff --git a/output/433.pintora.png b/output/433.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ba867acafd04e17d14715ec202d7997a931a7c10 --- /dev/null +++ b/output/433.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c50f93c3964c709a6c012a79680e027c47739c4fe6d851cf01c1c91125ba57 +size 53032 diff --git a/output/434.pintora.png b/output/434.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd732ab1586cf8efc91ec2c3a85a60a074bfe36 --- /dev/null +++ b/output/434.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69dd52ff37b468621197e0967f71d81c436dde8c06c9dd3d0ed19a36b7a0cf3e +size 78009 diff --git a/output/435.pintora.png b/output/435.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d705d91f73d51396f6d5e2dfa5baa15f5314ee2e --- /dev/null +++ b/output/435.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629fc99c89fa593cc12bd80ad63ae6c66c6a749d2c8cc6a07e734d7c6177bad8 +size 79016 diff --git a/output/436.pintora.png b/output/436.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ab52cdbe078a85ef87ac7aa122f707273389ec75 --- /dev/null +++ b/output/436.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86893381bb31e9cb29f0a1242326a19f51979662b7649e4de2933723adeea6a5 +size 99300 diff --git a/output/437.pintora.png b/output/437.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bdca27e0fcc7fb78786537f4e49bab553a020a1e --- /dev/null +++ b/output/437.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f3a7eb0c3b2fa14b0289a937b3b4df29c886c12172552e4ff6edd7f590868c7 +size 109466 diff --git a/output/438.pintora.png b/output/438.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0b2022262998a1308cee16d9ca3b833a14e93aa0 --- /dev/null +++ b/output/438.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0f26cadb491315c173d83ad29f32b2c27b98bb0648eee8e643d929eb7ef755 +size 147932 diff --git a/output/439.pintora.png b/output/439.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b828930c89fa1cd07ba1a26b2587f77e4c9b4ba2 --- /dev/null +++ b/output/439.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bfd373b920d41908782c4852ee286d3286bad394af90fe5c6d8fb4584ac0b1 +size 55999 diff --git a/output/44.pintora.png b/output/44.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0b5261a69dbcc6ac5794fa137386dbefb9df4696 --- /dev/null +++ b/output/44.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18763fb82413248a2bf28befd463f7f9cebd21507c4e54125a30addc763b0ba3 +size 55433 diff --git a/output/440.pintora.png b/output/440.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4c12edd5a2351be7379d3f20524e1b739c4ca8ba --- /dev/null +++ b/output/440.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f3fa35a5440f44bd8e6eca156a55392bb332c5a2270e3dc3602b2829c8ede8 +size 55831 diff --git a/output/441.pintora.png b/output/441.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5499aa4eccb7f70b8fc2116f3c0aebddf53e4e75 --- /dev/null +++ b/output/441.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426faacd70cfdea5294cf144c852e09616eea82f4c400801a07425cd108da6d2 +size 45075 diff --git a/output/442.pintora.png b/output/442.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..94291deca35d04a20c462b4e945e2e643e8a6a10 --- /dev/null +++ b/output/442.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8531f6c92d62b06a7036615b6f31620392f42812d62ac252ad7b8b581cd60c +size 80341 diff --git a/output/443.pintora.png b/output/443.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0706cecb6af35eef681a3f33ab4247bec9ecce9e --- /dev/null +++ b/output/443.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606a3e2a62a294c5cb639d3ce15e28f9dc21ff1b5426d93a73688a8812430c04 +size 146239 diff --git a/output/444.pintora.png b/output/444.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a3052fcaf72b321d97e86174fb2999e654148ad1 --- /dev/null +++ b/output/444.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b0a52716db8a3f3c029b983b854e5b5256ea8e2facfd33c1f8909e3443956f +size 134049 diff --git a/output/445.pintora.png b/output/445.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d9092b1583537ee0afed09693c5b3fbedba6cbbe --- /dev/null +++ b/output/445.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9f8c7316977140e5c21822832d70dbc3262b280d5b331072c059aa672d2ab4 +size 38436 diff --git a/output/446.pintora.png b/output/446.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c06aabc3814a66d2b6202271e7fe2617dc30985d --- /dev/null +++ b/output/446.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20e8841e3cc1a340180ff0c1dbbf2c786a418284ce228311afd8f6f74d46483 +size 123879 diff --git a/output/447.pintora.png b/output/447.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bf7190a2db6613443856274e1cff8ea4d1ea491b --- /dev/null +++ b/output/447.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40316df505a598ddafe682ef99024393c1953283d3dba2e6c45a78a94b214a75 +size 61417 diff --git a/output/448.pintora.png b/output/448.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e4a97e4e92104bf394eaf2de0347886532f310 --- /dev/null +++ b/output/448.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fdc106dd70aac35c2ef30c8877dfd0e13ec62932303bf95bb0ee11f10deca2 +size 122321 diff --git a/output/449.pintora.png b/output/449.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2272a24fb14d43a751539486c455944a54cc5a34 --- /dev/null +++ b/output/449.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f299b75f32cb4ef416d4a71412ba704b9cefb83bf635cd471d1db9f295a16b14 +size 192588 diff --git a/output/45.pintora.png b/output/45.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..40772ee5556c59065e0cd70692d21247e552a2ab --- /dev/null +++ b/output/45.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4bd0920baf88e14ffff6ebfa2b003dd2a50e880454c6bed9fc8df87096cea60 +size 17999 diff --git a/output/450.pintora.png b/output/450.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a7d98bcdc5b91f7cc2ca1744a4f76203436a2a04 --- /dev/null +++ b/output/450.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c467e49f0ed848899f2fc17c236c85831a6edcaa3d451274143ede724c7a4598 +size 128655 diff --git a/output/451.pintora.png b/output/451.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..03946cf2dc030f9ee9550a79196750c039643402 --- /dev/null +++ b/output/451.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c1537edb9d1d06d6944a2e8f74cee9b7a2400387a3dc07d6750f2bbd212d08 +size 102321 diff --git a/output/452.pintora.png b/output/452.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9e93c0677d3d766c70a65ee215a2c65e1c9555ad --- /dev/null +++ b/output/452.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01104f3d89611ea07ffc9bc98281671dfbdf177769355745c5655e50a11fe091 +size 56821 diff --git a/output/453.pintora.png b/output/453.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6cfabc5b25cf3ee263616d013c95474c019f352b --- /dev/null +++ b/output/453.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b720ba3402b5846a42f365b8a299ff3f2a4c2b8703f61a65718b362497c04b79 +size 138913 diff --git a/output/454.pintora.png b/output/454.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a2e685c6297062ac15e28a3bd272013d6a61f227 --- /dev/null +++ b/output/454.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0e6f1ea16b27ab1eb16ba972e7bb46efe8ebfe39062cfa1e5501aebb035c5f +size 97914 diff --git a/output/455.pintora.png b/output/455.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4de0d843f257f66fdfb479c647237a19f4e3c070 --- /dev/null +++ b/output/455.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ec68a3d77ea6f759619f4a61637f1f3856cbaec3f330c615b6457f49409a55 +size 140577 diff --git a/output/456.pintora.png b/output/456.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7925c7938125207740235928217d21a75317c4 --- /dev/null +++ b/output/456.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a8268a4d2a0ec1dfa05438f9f014418201ef9a10f7a23ec22b4eac5ca42771 +size 45090 diff --git a/output/457.pintora.png b/output/457.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cd4c3f41cc7640e53f2303ff58761fdb6ad7ebe7 --- /dev/null +++ b/output/457.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9fdcf713f8ef75121576afd3e01a13e49bdf4a6813d2b2b664e0157a847432 +size 73953 diff --git a/output/458.pintora.png b/output/458.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4374ec60fcabc04c22f38365cb9c91bd8663ad --- /dev/null +++ b/output/458.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d5c42e1356fc503cfacec1a2626cdff7c844be07fc26b5dcca2a3f3fd61c1a +size 65870 diff --git a/output/459.pintora.png b/output/459.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5f70a1d243f5c1a89a31be1b819abc701bb275f8 --- /dev/null +++ b/output/459.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b262696833f36cfd29c192bbda8134d401c632a8c1fac718133f6f8bf2d3045d +size 64140 diff --git a/output/46.pintora.png b/output/46.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b55a034dab1e339325c55a5c76f7c98fe1335ba5 --- /dev/null +++ b/output/46.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b794f9978e9a51de3b4baed84661416c1bf63cd89b4e9c07decafd3abe6125 +size 52506 diff --git a/output/460.pintora.png b/output/460.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3cbc4644c492527fa7c0f89c4d6253c9780205 --- /dev/null +++ b/output/460.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87dc40af70804aca0ed32b46ac881cbf6e2dd8a98ab21b81c95d38a35bfc8a9a +size 96601 diff --git a/output/461.pintora.png b/output/461.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..566c2055369b94c6de61fd0539308b896564aec1 --- /dev/null +++ b/output/461.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b2045fd7fec794161bfe30820e91792fd8fd40b6ba90858b126fa2c2a5bf7d +size 45944 diff --git a/output/462.pintora.png b/output/462.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..28116a4fe1b68c8df0693eb02296be5f5f1b1b01 --- /dev/null +++ b/output/462.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520fc8b491d754e8f255b8bd4d562a70540637780729431a203dcdfa82753338 +size 128322 diff --git a/output/463.pintora.png b/output/463.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..30f0505413a2b163268885c3b4dbd9f213b549d5 --- /dev/null +++ b/output/463.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8eae5a76362fd9f9c3a4bafcaa784266a3a9dc1af2644cb56a96875ef62beb +size 76377 diff --git a/output/464.pintora.png b/output/464.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dee972d6bb43e0137667353cbbe3c2ea0f587f21 --- /dev/null +++ b/output/464.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4b3012d9f6ec1ecdb156d1a2d19f660ade5a637a3d9a9945793455d951e8c8 +size 62936 diff --git a/output/465.pintora.png b/output/465.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b8bb0f7e7c938403989fff587b74922ea8c0bfcf --- /dev/null +++ b/output/465.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9828294ac715f58840d2a8ea3281dfc1a403162bc1f0818d3cab07b9f0e4b7f +size 35005 diff --git a/output/466.pintora.png b/output/466.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..60f24d398dd296a805f86829d9003204cbf3d7d3 --- /dev/null +++ b/output/466.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9047065ec9ee856ca7118990be58b9a548aa5da48a2a5054ff092951f1d042 +size 88617 diff --git a/output/467.pintora.png b/output/467.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..61ba0f43ff8a1d64f26a25553fc8051376060299 --- /dev/null +++ b/output/467.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7184a76c51290cc6963eb63e386eb6b7680a4a5b02b3f319114c8d31ebd79b0c +size 31155 diff --git a/output/468.pintora.png b/output/468.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fbf85e4e903e1178980cb150596bbf5739350294 --- /dev/null +++ b/output/468.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603f9b68358a5db7b223032f28536b21de781734dc6ed7969e6993ea25de969f +size 76733 diff --git a/output/469.pintora.png b/output/469.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..58fe2d39a8d85b7c28fcf2fad0818007272c614d --- /dev/null +++ b/output/469.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d11ca0ca09c02e2995112b63badb692b6d99a3c952dc22ff7b2126ed383c4f1 +size 138849 diff --git a/output/47.pintora.png b/output/47.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..73091cde164151ecbd66bcf5cdb727d25f4ec8d5 --- /dev/null +++ b/output/47.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c37029fceae27911cbd816821b425ed7360013e78a6f65a6849a2a9c2c13ff7 +size 34995 diff --git a/output/470.pintora.png b/output/470.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2dfb2a8b48e2442e80f958cb6c9a9a9a22e7b0f4 --- /dev/null +++ b/output/470.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1849f5ac9323b773ce37fc3073f7961f57e688ba19572d2a29714894fe064667 +size 80796 diff --git a/output/471.pintora.png b/output/471.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c281fbf59904cf5380a14f6f099d28ba5d316e70 --- /dev/null +++ b/output/471.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446d6557ef248a2ddaf6cd28d2da30c809ffc192fc0576b1e90fbab1dacea7c7 +size 50611 diff --git a/output/472.pintora.png b/output/472.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..990d2e51797fac7411751755e6c4f7049782a207 --- /dev/null +++ b/output/472.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0f603e30ff2184eb4460701f5487e8217274a95ba41289c6e600839e64f14f +size 200606 diff --git a/output/473.pintora.png b/output/473.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..77bf15beb283159fcac5569843427ef32e782f86 --- /dev/null +++ b/output/473.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de86dfe9fa27daede852dfd604abddc359c13355cd42e0593ed482ebe58b5c1 +size 48570 diff --git a/output/474.pintora.png b/output/474.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8cc82b94d678e3e740c6d6e5798fdd60d47b682c --- /dev/null +++ b/output/474.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c690953c97a103128b9fefcdb7cf3353b90640393df7721a1b28d9ba142ef5 +size 34707 diff --git a/output/475.pintora.png b/output/475.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ba2a7848b8d67ace3660c1ee2c5b60972d0f25c9 --- /dev/null +++ b/output/475.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc3eed5257cd7a0da41bc3e8a021871dc7de69b7453358e02dbe21fcabff9d8 +size 65645 diff --git a/output/476.pintora.png b/output/476.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..692086b06e96163f845401c7c5b56694d3ff0efa --- /dev/null +++ b/output/476.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f164818bd9246dbe443d00b324b6c8507b3d421b00f7c879b4ae186bc08697d9 +size 67252 diff --git a/output/477.pintora.png b/output/477.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..73b6bfecca1cba3e4fe3ca0f796ca5ed545dec7e --- /dev/null +++ b/output/477.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48e1dfd39f37e522f872f4fed3c1ade14658745a20ea6330a51a06be0178d34 +size 40469 diff --git a/output/478.pintora.png b/output/478.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4e40ca9c286b748b4f1629fa7c2603cdbeaa247c --- /dev/null +++ b/output/478.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddc3c5227af2c336af848175bfeb7dfd85c9b1fb6617277bf0b6f3ad13f95a6 +size 62331 diff --git a/output/479.pintora.png b/output/479.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1cdbd05a25e81e8fbdede4c89554151056ddc1 --- /dev/null +++ b/output/479.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea55800a05cfa77645e5cd10120d3d306508ce909747f740fca5e438bdca8fe +size 72246 diff --git a/output/48.pintora.png b/output/48.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..47ba4805c1f114fc6c7374387085d2c64241543b --- /dev/null +++ b/output/48.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394f822387e5226806cd24130ef0e771f208c07553eab860871ecab4debe5535 +size 28090 diff --git a/output/480.pintora.png b/output/480.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..45893af05abd9b575d7cdd9de0b44630e97217c7 --- /dev/null +++ b/output/480.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c268aa23fe3078d1dea071a8f86171ffa94136bd477c4d31c2152a33758a94 +size 123642 diff --git a/output/481.pintora.png b/output/481.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5a21e74cf2adea43b8271e27aedf0ef1bdc8bdde --- /dev/null +++ b/output/481.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04afa4af557c3dc9847e33dabe99630f74c6279cc56b7aff042eb46344dd1bec +size 54645 diff --git a/output/482.pintora.png b/output/482.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1de707c42ed6fa59ce9a6d9795a11995b578aa8b --- /dev/null +++ b/output/482.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bd95248169ebff4bab581be51f780cfa4faa36959e1d34d36c571dff50f4b5 +size 142617 diff --git a/output/483.pintora.png b/output/483.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..87b6d3cdc6c5cec20c75f5d0ecc1e674c1400903 --- /dev/null +++ b/output/483.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e9bf2c6ee035196227b34b9b5b9701a83e9cebe01e5ab355fe8115d2e52498 +size 97848 diff --git a/output/484.pintora.png b/output/484.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a8b309aa3b8a8e9e239fc1a7fe095af4905570fb --- /dev/null +++ b/output/484.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0545a5656bc11d664e23443c557e06e67ef10f898a0ccb3f101545b5249d2224 +size 129193 diff --git a/output/485.pintora.png b/output/485.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5695db013f394c4085fd991d13a0aa13207bfb9a --- /dev/null +++ b/output/485.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fe64ffaafef7f165e8a74625b794c0866a6516f6bebb3c02703ba6c871b98e +size 183021 diff --git a/output/486.pintora.png b/output/486.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..97a7356dd056fe2eeb53d66f29ce06ea2a9b6066 --- /dev/null +++ b/output/486.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b8ea2b11dacb30144db894a649f0d6aac1daefe6ba1e5f1b3df775ecbef00a +size 192127 diff --git a/output/487.pintora.png b/output/487.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3327aeb706b329f8ab1e1a7617f7d19806b6a815 --- /dev/null +++ b/output/487.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d4011d3c12f83112c26fa1f703167cfb24537eb1352b24a58dbd52c5a535fc +size 115744 diff --git a/output/488.pintora.png b/output/488.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c7f54ffe3b74bbf6eb9770aed2978780adb7f7 --- /dev/null +++ b/output/488.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709ce7099d73aaeaea054ca7d282ebde135bb09dc15ec011684f0943b145d415 +size 206977 diff --git a/output/489.pintora.png b/output/489.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6d4e846cef43cbb8663e3d38677b53af08213422 --- /dev/null +++ b/output/489.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de3d7079623dd32d330d53c1e58905a887c2ad3425c111d170c6fc9a432b1a0 +size 64326 diff --git a/output/49.pintora.png b/output/49.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f28fd39cb40a18583fa4344adf02a99b53c8f9 --- /dev/null +++ b/output/49.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155cc25372b3293455e8db70cb808d75f86775fc3fa7372da38ee56b16a871c4 +size 42258 diff --git a/output/490.pintora.png b/output/490.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..01d14513c3680dfd3afb0ed979d7a19164816d36 --- /dev/null +++ b/output/490.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f19b7ba402f3268ed221d5fdd2674448d0974b4ee87f3e2fd164d0da84dbb1 +size 85308 diff --git a/output/491.pintora.png b/output/491.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6142e435fad22482da87e372b0c21d82b3097cb6 --- /dev/null +++ b/output/491.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a18af6ec49af665a6f9f6c8ae96d7376ed2c340acc82472e9d90a342fda3a02c +size 118569 diff --git a/output/492.pintora.png b/output/492.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2dde955956da3a0757437434330627b12c1151c6 --- /dev/null +++ b/output/492.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45393b6b733eec092866b713897c93ba58f8a037fff8e19c417432b1f87e5ce5 +size 177442 diff --git a/output/493.pintora.png b/output/493.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9f38bba9e4ed8bf5465f22c605ccaeee3ac446ba --- /dev/null +++ b/output/493.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c676d0b19b86f19ce155d02ef0adb3298cc75eb5026f908fa538f7ce6b289ae +size 193754 diff --git a/output/494.pintora.png b/output/494.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dc60c5ba5a800ce09cf79f96c0809dba10623555 --- /dev/null +++ b/output/494.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2309505337f15fd429303939b002c3af708c201d0accee1a6c37c54dfd3417f9 +size 190057 diff --git a/output/495.pintora.png b/output/495.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab5f4b8b72bf1199a8baf87158f9617788920f2 --- /dev/null +++ b/output/495.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95b9ec897e80eafbc6009b71fb861a0a2bcf1df0b24aeec778634364239dbdd +size 71249 diff --git a/output/496.pintora.png b/output/496.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1e7bcb70092a27543011c4ac7a0da6ac4cc7f8d7 --- /dev/null +++ b/output/496.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d7293b99c20dd691f0fd85ee779bca57ecba80833106fa53e156fdb8ae4832 +size 234854 diff --git a/output/497.pintora.png b/output/497.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9c7a4f66ac6b3d3a9a125d755934cd9ce0aa484f --- /dev/null +++ b/output/497.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7e8f91ed97e5128112662e071308f15292e8ca05902b4d556d3d24f82dfc9c +size 37669 diff --git a/output/498.pintora.png b/output/498.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..07cc5a5d673be9c9987e91f072844882dc2eaa4c --- /dev/null +++ b/output/498.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19b71ac9a0384019f40a1e58ff2b36fe6858379ae911cbfa26fbe7de8f881de +size 59978 diff --git a/output/499.pintora.png b/output/499.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cfbc7fe821dbb56aae512b2e85ff8f9bd450ddf0 --- /dev/null +++ b/output/499.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f3c7d809a066cdb00ba492ea4b10986f2872d9d77a325d74aee3b45b46c7a5 +size 140831 diff --git a/output/5.pintora.png b/output/5.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3eb2abcbb24492f68b890cdf426ef39e8a997045 --- /dev/null +++ b/output/5.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bb12bd904e900de7f96ab1e58423f58c61272b11a9490f1af0b2cffc0b4f14 +size 65162 diff --git a/output/50.pintora.png b/output/50.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9666f1517a03f4d4bdd86d731936c514975d5822 --- /dev/null +++ b/output/50.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b487fccf3c9e84be6d5837acf06b63e667885cc05c17083e8dc2d2fd45f62d +size 25944 diff --git a/output/500.pintora.png b/output/500.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f796e5453d1bdaf8699c4cd54b0a33f8f724e726 --- /dev/null +++ b/output/500.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d1fdf7692f6444f361dab0f7b41de277c5acb9d1b608ad4aa9a725b0a77eed +size 84955 diff --git a/output/501.pintora.png b/output/501.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a96b425b14831cb320d405e58f53e434a05b0cdb --- /dev/null +++ b/output/501.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1935af677459e85ff7593824fec0cb3a40baa3586987633730033db60d0d0d +size 91848 diff --git a/output/502.pintora.png b/output/502.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..007f7633dd3597deca2e5920b995b4ff795c3e12 --- /dev/null +++ b/output/502.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a2cfd085cd980b82a0624081548993e7d446361e801efd09fc585a45ffeabd +size 103388 diff --git a/output/503.pintora.png b/output/503.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..03332303bc2fa3b0b6f79aa3c2cf15c4e7eab24e --- /dev/null +++ b/output/503.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d9c95f647304459ce22147cab811e8932e353906973e4b292e42771c63e49f +size 87975 diff --git a/output/504.pintora.png b/output/504.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6e9bc96dad2b1f7139df7b8632a1493f5890ba05 --- /dev/null +++ b/output/504.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76051960595cd20096cbd76cfd00f41edf080489796d2a35ba3b2acbf69fc5ef +size 57456 diff --git a/output/505.pintora.png b/output/505.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0ea178e1a0d86366feed71b839edb4c2c57ef6 --- /dev/null +++ b/output/505.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d3d86fddbe61d1c8aa5d1015adc3e89adaf9f77c9886e02a0b646b1fad0465 +size 169315 diff --git a/output/506.pintora.png b/output/506.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..20de9332f97325730cdd551b4c8b4d61ab736e59 --- /dev/null +++ b/output/506.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1757ac71f34c9ae4776e479f968bfacc25681020f8d62d21ef1e5c575878f475 +size 169541 diff --git a/output/507.pintora.png b/output/507.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9a21fcd37b8e41a987de10a96d6b60964845cd70 --- /dev/null +++ b/output/507.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b94fcf4fccdb54e36bd8fd46dc3cadd14113ade7fd5bce028794979b45259f +size 111004 diff --git a/output/508.pintora.png b/output/508.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b8091179d70ae11661f72ec30443431f1bc96b0e --- /dev/null +++ b/output/508.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7343b9c8ccd41652a41b284eb53313e62d36cc9de41b4b91c13ccabb5ed13ea +size 81390 diff --git a/output/509.pintora.png b/output/509.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4928f30cde58e5a8201903593628f123a85b45a7 --- /dev/null +++ b/output/509.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7d926ed45908fc9809c8eab4582b1f640acf0baf981e8b5819ed4752228b7e +size 138546 diff --git a/output/51.pintora.png b/output/51.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..520009eac6f598eeb6a29bbc43f458cd5c693d72 --- /dev/null +++ b/output/51.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb31573ee70fefd3f30c6363eac473d8a53fe102bbfd9f6d5d96c915bf70a687 +size 27278 diff --git a/output/510.pintora.png b/output/510.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..83b8bac9219f00e0167f5d2f2a6eae16d4c3ad88 --- /dev/null +++ b/output/510.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fe9c22f4737775ac444c124b9805429bab94a27a890635f75166e07c56aa25 +size 98943 diff --git a/output/511.pintora.png b/output/511.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6844be38a095f1ce296f8d4455586fe404f73202 --- /dev/null +++ b/output/511.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd1ac94c9d52ad6b1468279264e6d16ee06a31655fc414900ee1f3ce231ce891 +size 103407 diff --git a/output/512.pintora.png b/output/512.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b900eece13622c0e0208bf2463381d7216d7dc35 --- /dev/null +++ b/output/512.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbe256b37247ff0ca2e3bac467472f9ac7cf2f2376df16824b622f7bb86b916 +size 42261 diff --git a/output/513.pintora.png b/output/513.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e82f4df4978b0707ab1dfb54cef760727f437cb1 --- /dev/null +++ b/output/513.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64bf93dbea4b2878811ccd32adc857b87c8a6a8031c0aea3afd8001f1a85976e +size 103741 diff --git a/output/514.pintora.png b/output/514.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..200fd8cbe991137a231c40683b7e5ece74003903 --- /dev/null +++ b/output/514.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7db8e1cd8b35e7d72528c6eba799714cc2396c68f9fcb3c43c47472ac7f926 +size 42314 diff --git a/output/515.pintora.png b/output/515.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..46e5e88c76afae354e55854545c09b8b842d7495 --- /dev/null +++ b/output/515.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f691fa53d41012678c258bede5c9d88b3ef457786978869d28e9ca49ba56767d +size 147408 diff --git a/output/516.pintora.png b/output/516.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9da97232b4730799ef6e77b697feea6f527826 --- /dev/null +++ b/output/516.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6184f8913eddbfc13343fa7640986ddb6404b4bbaeff67bdc5666fbf9b0e9a +size 24689 diff --git a/output/517.pintora.png b/output/517.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9321e767f56e78b1facc97f25f4541074f166b65 --- /dev/null +++ b/output/517.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ffbb5eb20bf09a00af05e33240391401364f26d3d05c9eb39692ce57af1e9d +size 139644 diff --git a/output/518.pintora.png b/output/518.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..30d2e45bb9bf398fc3b75ba504b2db9e9a61db1c --- /dev/null +++ b/output/518.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2ece89c8e67b1cc37efe43c1a3b2bb8fb91b06987ab4181e757c9195a9130a +size 157717 diff --git a/output/519.pintora.png b/output/519.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..65f62648b2e77544c53cbd9865447d592412beba --- /dev/null +++ b/output/519.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2461d1241d45d9ddcd8d4e7af4b4c0194342a34e1ddda4eac798d4aa802983a6 +size 70937 diff --git a/output/52.pintora.png b/output/52.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..589390f2345b14ae1ca778fce7ab7cb59148dd51 --- /dev/null +++ b/output/52.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249a665b1a888c222361905f8f534becfb4b802036b76c3020dfb174ace4f935 +size 21554 diff --git a/output/520.pintora.png b/output/520.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d824213776dfd30b6fd0e93333d8ade6329eb367 --- /dev/null +++ b/output/520.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f978429e611d67e996612724f90b74c0be4344e314c95dca1da954289ea1b414 +size 25412 diff --git a/output/521.pintora.png b/output/521.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b9b9ff703c179ee0d31f24f387e0136817797e0d --- /dev/null +++ b/output/521.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad800a1b6ed5025b2816a59edbceda0380e568f871cdb9d1c28505c4b7e48c7 +size 86570 diff --git a/output/522.pintora.png b/output/522.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c96cc0d08fb55581e446c46d318bc4bf342f4d31 --- /dev/null +++ b/output/522.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd163ec02e008068009eec6df7519773656042db030b6970b543dff89960ef76 +size 159193 diff --git a/output/523.pintora.png b/output/523.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e6df8e7e75ce2369fc077594cbf3202263dc08a2 --- /dev/null +++ b/output/523.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e260ba57fc6f8a4bdf55efeabef1bb814a1f66b10ae120598de313e53ee4e953 +size 117529 diff --git a/output/524.pintora.png b/output/524.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cb452c50f18f779a782f8e2b2236d3c25191623c --- /dev/null +++ b/output/524.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf73554dc2eb3704e9a94641e9c4d6fdd60de400fcdf16473a9ce681d9223f7 +size 49226 diff --git a/output/525.pintora.png b/output/525.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b8dfbe427f419fa9b07a74cebcf81226bb82a94c --- /dev/null +++ b/output/525.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fa132c44ab5a4ed6791450d684b80b3521d24fc7164616c3e8716824c0b863 +size 64598 diff --git a/output/526.pintora.png b/output/526.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a8d603581415745f330931660ddcb9618dd02502 --- /dev/null +++ b/output/526.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06599afdbd899302329d703ee6254ad4947111eb739279687192520aaff7e3fc +size 60329 diff --git a/output/527.pintora.png b/output/527.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c0242e526f3be45825f356cc7a08795b24134a51 --- /dev/null +++ b/output/527.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d943484915c2525072dd2882ca7d8e518213420bdf5107fafdfb10deab77d236 +size 54930 diff --git a/output/528.pintora.png b/output/528.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9feec30279a358a6df0177447cbcdc47866a3487 --- /dev/null +++ b/output/528.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4b87d1d9b7237cf2ce8ed9b36c9e38fd47e61bae9090c642234364be4be976 +size 76755 diff --git a/output/529.pintora.png b/output/529.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bfa6d9d5cf1d8bb324bbdcc1d8cac939d0f40136 --- /dev/null +++ b/output/529.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5880447dbf19bef63098d3a091cc97a6ba9ad091506141c22c001a83b97f10d3 +size 80266 diff --git a/output/53.pintora.png b/output/53.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef5ff1796089fde4029d76a50435683475fadfc --- /dev/null +++ b/output/53.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c8060876b40ea1b0b810115f1c11eda2b2380a22e67507d686bece1d51c778 +size 32862 diff --git a/output/530.pintora.png b/output/530.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..edf991aad3ba3e87ecd42feca3e9d46c3c23b92d --- /dev/null +++ b/output/530.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab857772d530f5b5094a950cbad58af44b4352e447b0746bfe7246532b66511 +size 113998 diff --git a/output/531.pintora.png b/output/531.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5a4226425a4579d49022953a5c85a6e47837fa74 --- /dev/null +++ b/output/531.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090a04b99d2de53c3ddc81bdf8e6c1b9bd56ffe7e407ed9e03dc34af491fa567 +size 102111 diff --git a/output/532.pintora.png b/output/532.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e630b410dd23d278e89aae48cdc0003bbfe18d4a --- /dev/null +++ b/output/532.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61115ca73342cea1a86a5d4699721b0e80532e09774774d3d87de8d379548e4 +size 61708 diff --git a/output/533.pintora.png b/output/533.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c27ec2d6cdc8e30ede2af6d8dcb2ea29575c58dd --- /dev/null +++ b/output/533.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da38cbc287cd64359e751a71706fc8b498505b2f7d0411c30cee4716400ee84 +size 135662 diff --git a/output/534.pintora.png b/output/534.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7b76528fcc314ba387bf39d01fe5d57d46807e79 --- /dev/null +++ b/output/534.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae97c463aa57e6c94aa33c9ab11e869f34a507803c5bb77e67e2b11f36594042 +size 164593 diff --git a/output/535.pintora.png b/output/535.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2b6ba883d2705a76f3e404a26db023969e2fad --- /dev/null +++ b/output/535.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f467e1da2e06be6264dbb238b7af3e27dc3fb41122ca5491ad0373f061222c +size 69799 diff --git a/output/536.pintora.png b/output/536.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d2bf2af284316ae9697e786e05fb4941b02c63fd --- /dev/null +++ b/output/536.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c643252600434577f2a39f0456b1cef1c029d6841688e59ea0b9418739188d8 +size 84113 diff --git a/output/537.pintora.png b/output/537.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a985bf82304d3185868c9ad7b8fcab1d7b553ce7 --- /dev/null +++ b/output/537.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611b79ab157262141ffe6adadd0c0d260426f0819eb2823caa87f85d26787809 +size 64152 diff --git a/output/538.pintora.png b/output/538.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..93808ae5811c7354b31196ad838f744f10de0233 --- /dev/null +++ b/output/538.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ed0e568f4844e1909909a38b2ee755e76f24bf1223c1e2ff40e1c99c22d306 +size 82416 diff --git a/output/539.pintora.png b/output/539.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..aa54e76360c40364537e8e995aa7d4003cf0a498 --- /dev/null +++ b/output/539.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad44744939373e2fbc72153e70640e20691ef34e4264e3ad120063bb09781c8a +size 66451 diff --git a/output/54.pintora.png b/output/54.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12911ff78c07ba34c94e8da095b7fbcb824135c9 --- /dev/null +++ b/output/54.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb505d408cb0853a32851459e7df298d3a9b36a2515dfdc4f12964e1e22c929 +size 46184 diff --git a/output/540.pintora.png b/output/540.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4332772f22d13c37bd8ffcc79d9b0e040cf855f3 --- /dev/null +++ b/output/540.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95ed9a20336f6a8a5490379818955d95d6a0e6142cb807b8a41fb4bd32ffe1e +size 175070 diff --git a/output/541.pintora.png b/output/541.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5cee5b140c40d22a799ff58b35ec76fd74173ddd --- /dev/null +++ b/output/541.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489851a11b0f2f903fa78321d78caf574c06c905884f903d3a921f6b87fe266f +size 81567 diff --git a/output/542.pintora.png b/output/542.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ab46f0c0bff80568447b80e887efbbffdd9c6ab1 --- /dev/null +++ b/output/542.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac32a43d7261faeb2becec7dd718a42b48e923d81f6c31a811a7895654dc0da +size 102644 diff --git a/output/543.pintora.png b/output/543.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..db22e55b0f8004edb47a96f03981646bc1d46fcf --- /dev/null +++ b/output/543.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fbe22705f7507e295c279cf8dcae01e7622dea48dadb014f4edf573e7c00c4 +size 96510 diff --git a/output/544.pintora.png b/output/544.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a12bcd5c6dbacd2f0919a1c1963efb5c9651e7a3 --- /dev/null +++ b/output/544.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668c22396eb166a725adbf7b96d4e6539f3e71142d7fae421337dde1e62deca5 +size 76871 diff --git a/output/545.pintora.png b/output/545.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d5b63f1ee7cf00abed6a0377f1d4564c4682d9 --- /dev/null +++ b/output/545.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c5d2c5ca75af4f4db01a67c6bcdfb458579f99184f9799b82f36af67fd7a15 +size 40107 diff --git a/output/546.pintora.png b/output/546.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4d2f1d9548ef4c5170753094c641affe1ae32f88 --- /dev/null +++ b/output/546.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af78d2bd0bef88ba2ca8ce78733a084d4551088cba938ec81c335eb1491cf9c8 +size 122726 diff --git a/output/547.pintora.png b/output/547.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4d0a48df5e684dfdeb35a5c22768fb646384bb28 --- /dev/null +++ b/output/547.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f1390956eeee4f32b77d165e4256073beced7da365b875eafd481e609a0d6a +size 98542 diff --git a/output/548.pintora.png b/output/548.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..427b4a7ea295d421e661c6bfbff359e162290160 --- /dev/null +++ b/output/548.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee57a540041d1ad1de351e0c5ac9aa7410836d3ef31b0d1fb8e2c88967043fbf +size 113340 diff --git a/output/549.pintora.png b/output/549.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad11a3c9b9ec2066a78791a585db821c90f2c09 --- /dev/null +++ b/output/549.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e6639f62f364428ab6b75031f5b1ee97956abc394360be8fb72b90b132a35b +size 57652 diff --git a/output/55.pintora.png b/output/55.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dd23302740b085739e717ea94c0c5f15fcd63eab --- /dev/null +++ b/output/55.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba12d2c2b025ec4cc7eb564f1554ed0367ffa2b692ee37bfffa753b316a1940e +size 49612 diff --git a/output/550.pintora.png b/output/550.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bc8b1530916156112e247fc902af5c0365381434 --- /dev/null +++ b/output/550.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58fc676194976c9807c1a5eaa527be40d88859acbb3855dc4905761cd3cd87c0 +size 120904 diff --git a/output/551.pintora.png b/output/551.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9b265cd8b7dd176e017c228eeb8341c912cd2829 --- /dev/null +++ b/output/551.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a946799496435cd9a96d9fc0691ba89b30a1994b290ab6eae7cc2a8ea97c8d +size 197557 diff --git a/output/552.pintora.png b/output/552.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ce80dc973ded7908c2a56152bb116345930d30 --- /dev/null +++ b/output/552.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6d753db9cb1429a88933bab64374b3a4683c0b2acdf5aa710e39ebaa2513bf +size 43113 diff --git a/output/553.pintora.png b/output/553.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3702ab60cdebfd7b1b8fc1e09502e3ebb0706c --- /dev/null +++ b/output/553.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1a07a7915a2601f0a906b40fe8ed5973341a84e9443c3555e17e1942883d01 +size 38036 diff --git a/output/554.pintora.png b/output/554.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..73661759093cf309fa60be57d0415e46a57ea4f4 --- /dev/null +++ b/output/554.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cd82e08b5cdef3f44211fb365dcc15c014a61eeee57f46f957b3497b5158a3 +size 145335 diff --git a/output/555.pintora.png b/output/555.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..348d1797319f9a5ae2e8eabba96ef5996d7a4d9a --- /dev/null +++ b/output/555.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9639b73af5ef0a690ad7e09870ae9c1ab63dbc5097b074786da18db18058cf +size 54329 diff --git a/output/556.pintora.png b/output/556.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e0d11f43cfbaea79f27e30ac655bf8d5609b7058 --- /dev/null +++ b/output/556.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afefbfed46a730d270771148cb8ae45d35d64f087730a83cb70828ffc7f3fe3e +size 94475 diff --git a/output/557.pintora.png b/output/557.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8286767974af829842ef671ee9d9ad26f05370de --- /dev/null +++ b/output/557.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab76b3e47042609f731a2c9ac4d3ceb771f8ab726c8498c4d01da3202ba3a55c +size 100053 diff --git a/output/558.pintora.png b/output/558.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ad66fd8c5c791e17a0afb44b3f82ee78e0ad3be3 --- /dev/null +++ b/output/558.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f067fcf44d58479cdbd3784e9a1f6b443385b43047b703b5d786f65d57f7e7a3 +size 120733 diff --git a/output/559.pintora.png b/output/559.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f31dc65276ec160f025673c5857235f300c84482 --- /dev/null +++ b/output/559.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691c73150f1c82e3c6ea31731933c3cb4579fdb1650e946366c72efe60d215e7 +size 88019 diff --git a/output/56.pintora.png b/output/56.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ec1e11dbc03784f1f411eb1732b1c72dc12108da --- /dev/null +++ b/output/56.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4255d1496aac9ce996cc4688c382bf9671c8d408c864b12339cce1e6a0b4758 +size 57392 diff --git a/output/560.pintora.png b/output/560.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e3f51a38ecede022978a3723a1c0aa942dec078d --- /dev/null +++ b/output/560.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ce83a3ea723046690108f6789ef1be3d5b07d03120337da98586ff77da7d42 +size 53484 diff --git a/output/561.pintora.png b/output/561.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ac2f67be16fe8467a569a3af738871aa56fc9e --- /dev/null +++ b/output/561.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7a383a8955cac730da126e7fb1112b15d19f3dd505fc141df08468d6107125 +size 90814 diff --git a/output/562.pintora.png b/output/562.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..089dfb407a2c01d24443ad2c4f919d60371f5819 --- /dev/null +++ b/output/562.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1918f3233089ae688ea775d1b5b35d1b6ff635aa4823a78073967a3975e81db9 +size 66787 diff --git a/output/563.pintora.png b/output/563.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce76ba9660e766812e1aa8a838235352d652ba9a --- /dev/null +++ b/output/563.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e45bc05430367cd446394d9f07dbc53089038e68c46391825f748fb19f94b3f +size 161086 diff --git a/output/564.pintora.png b/output/564.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8a24023296b19df12da144aeaf444930e3f83a92 --- /dev/null +++ b/output/564.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e71ad6a0c2e5553fbac7ea22ac31165993dce05c49f1b24179027bc1cce2dd8 +size 105128 diff --git a/output/565.pintora.png b/output/565.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5ca9495bac53b369202afdaf8d2f88ba3efd31f0 --- /dev/null +++ b/output/565.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507b8c2264d7e51b7345d0955ad16a387ac4d796d08076f044aecef38def68fd +size 93322 diff --git a/output/566.pintora.png b/output/566.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b96e33ee77197ddd8d1ff8c378a926fb54f4e106 --- /dev/null +++ b/output/566.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d12b407e7b6405498feb6f19126275305d3c6f30091e3b56209e2237228a6ff +size 138066 diff --git a/output/567.pintora.png b/output/567.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3a2f06398c0ed2cacf4b414fac8f1cc0bc94be61 --- /dev/null +++ b/output/567.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f157c971b30fd7bc3e21d2d12620ec24e0889bc9c3db0ceae3222135cf7bdc +size 64491 diff --git a/output/568.pintora.png b/output/568.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9478c5950c8c712a72365cf33cd21c61fc63e0fe --- /dev/null +++ b/output/568.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43883633cf922162026a9d22a2b9ff17b10dcf4ed76c4f6c4334b139a32c3e5e +size 80737 diff --git a/output/569.pintora.png b/output/569.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..02ea46c32f17b243fa4366bf894932e1cefe627d --- /dev/null +++ b/output/569.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17580d0cfa9647125aa8df6b118e61076079192c8b2c6ea4dc71713577ef966 +size 158606 diff --git a/output/57.pintora.png b/output/57.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2c1ce1db82c4ab5de2fc4c737302dd48f2fa89a5 --- /dev/null +++ b/output/57.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa45bfe9154ec1a033ac07ac388344984ee16f608a5f9bbc55c9a7ddbaeda55 +size 67548 diff --git a/output/570.pintora.png b/output/570.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..aaac1aec469b2df5d1ec2db9857f1af327754893 --- /dev/null +++ b/output/570.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7853f71df8a64138b65d9f5fd8365b5e00d61bb0a2738255ecc770f06f6843 +size 66712 diff --git a/output/571.pintora.png b/output/571.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fd92dd18aea3c037c2465fb76a3932ef2568bc89 --- /dev/null +++ b/output/571.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc70cec7de187fd9cb6cb7853e18059ad083338ecaf7d0afc7ad99e33ad92ae +size 63017 diff --git a/output/572.pintora.png b/output/572.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8162a3e43c301984f251ad0a9142fb1ee5b126c7 --- /dev/null +++ b/output/572.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f371e3b04f0311fa21a224e567f6d40cf4a51bb2f1330a6e4d67992fe4de7e4 +size 85230 diff --git a/output/573.pintora.png b/output/573.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ff9e61abaa2b49e8adce0905556b356e2a8cb47a --- /dev/null +++ b/output/573.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db0006ecfdefacfb87aeab40e02e35fb2ecb553dbe82a028a481eb92d5a35ae +size 83153 diff --git a/output/574.pintora.png b/output/574.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..64647577d11f50dfe6f7bc120ed47eb7cb62a608 --- /dev/null +++ b/output/574.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:816a9308b3f20ad9b03118ac6628aa2bf1c3f66b0bbd03abbbf7be96eead5de9 +size 69705 diff --git a/output/575.pintora.png b/output/575.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..656f48ef7f0ee0803b8a246d3a0d8b3bb201a466 --- /dev/null +++ b/output/575.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0ad8882631728e11d6f08c70305dec726963cf8e9b16847269df7b06f544c2 +size 61847 diff --git a/output/576.pintora.png b/output/576.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..51148491af8e69d5bd0c361d49273b9255dd1218 --- /dev/null +++ b/output/576.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183eb7a5767ea87843795e83eb7342b1d8220b3b828e898407283d8f82dce73c +size 99201 diff --git a/output/577.pintora.png b/output/577.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2d27e7aaa15b39217886e7ff68afcee0a58ff1 --- /dev/null +++ b/output/577.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12409b3886e735491a6945556f0644164a1d7d139db7e4773a5ba461a586a7d5 +size 119111 diff --git a/output/578.pintora.png b/output/578.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6fe6803ba39f95d966093db74ad97a51c87841b5 --- /dev/null +++ b/output/578.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b229565dc85b991aeb6340374f15e2ea9d62bfa7cc6e133fbbcdeda9d8fdcd +size 167190 diff --git a/output/579.pintora.png b/output/579.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6a5b331c26bfec67465f3a352cc61bd0fc9bf2c1 --- /dev/null +++ b/output/579.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e37878265733c3a199221c6be3f323c56b7f8a6531fb2c70a4f874a69169c88 +size 48978 diff --git a/output/58.pintora.png b/output/58.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..08c8dfed40abfdcd81c39b8ccd2fb35aa91c070b --- /dev/null +++ b/output/58.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7cda15fc01495c2d55081e23fcf9b2211cb92b48a2171c7edec00dc6d6bc9e +size 69215 diff --git a/output/580.pintora.png b/output/580.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a10a1e3889fa0c3b8b05d1844da867c509503936 --- /dev/null +++ b/output/580.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7680cb34aa0c493cdd571450131fc71ffe11d4c5af7fbd817d557431b2c0dd05 +size 175644 diff --git a/output/581.pintora.png b/output/581.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f8070d27f9607e83b0eb9d2e3757902b759690fc --- /dev/null +++ b/output/581.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da64d9e3866fea43fc99fe4eef8de51aed275759d642d299a76eb22421c7a6a +size 35532 diff --git a/output/582.pintora.png b/output/582.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab262f618f2fb67bdf912fa855bb2a7c735af79 --- /dev/null +++ b/output/582.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4cb17bee47cb7154ecb6b1da9e7c269f75f2386aad10e7ca04e0db681c7c35 +size 79056 diff --git a/output/583.pintora.png b/output/583.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2b87569e76c6ff387fd467456b4e59df157e7496 --- /dev/null +++ b/output/583.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049fedda635732886345d379b29315f7f3497257c82d10204a06375cad0071a7 +size 102700 diff --git a/output/584.pintora.png b/output/584.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b6b3e7e5bdfdb8e74f2efd720fd3dd3988203462 --- /dev/null +++ b/output/584.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be49d45e3d1dccd4749802f253fdd6cdab3f63a72db87a2aa956bde9a19775a4 +size 68465 diff --git a/output/585.pintora.png b/output/585.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd5f14ab0e3a755d411c7329c8864b33e6e03a0 --- /dev/null +++ b/output/585.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10212c4f91b97bac6d767f5836c593134c550f9fca24167402e82fb7e0f3f54 +size 133828 diff --git a/output/586.pintora.png b/output/586.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..73a36e41a4843e5c11a93bba4c623c95c1f52c97 --- /dev/null +++ b/output/586.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a4c3333130b0377b5c9059a3de4dff9c2e5c332aa01ee9b6051674b1e6d2b1 +size 55100 diff --git a/output/587.pintora.png b/output/587.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6e9f751d041b5407f63deb02138676777a4f7952 --- /dev/null +++ b/output/587.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca48228cb9de464d9bb0325fcd3cf4b965ae5c1638e2e6be959af304aedc2c8a +size 175670 diff --git a/output/588.pintora.png b/output/588.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3b0298da3afe012efaede4e5d7b8838b7960b2ff --- /dev/null +++ b/output/588.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801fac4fe3daecf8d1a66b52090a0e7f1cfbd5c6060f10dc9d1005db6696ad5a +size 41212 diff --git a/output/589.pintora.png b/output/589.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3953506741800accb7132e31b667257c9008f00a --- /dev/null +++ b/output/589.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b497e569b2242226fcfeb8ce285d289410d726b18abb4442dc062dca02ae9cac +size 156945 diff --git a/output/59.pintora.png b/output/59.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3baf9d3899acfb2ba54ae8b9c04a0ff7c175762e --- /dev/null +++ b/output/59.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f88772479ef07dad01540be88c0e34e5de497a16dfdcaa6a5de9ba5a5416d4 +size 55659 diff --git a/output/590.pintora.png b/output/590.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fef4d283acdd121319630f22579a2a5e5bee7879 --- /dev/null +++ b/output/590.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73104a959c7e26b56ccf939027ea0706575653d9e595a67bcadfcb93b4e0d959 +size 167007 diff --git a/output/591.pintora.png b/output/591.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b4917992145a751cac6d2f8f388021590e954c28 --- /dev/null +++ b/output/591.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8857199254e5944e8604ab98502605cda3819a353eb5284494e89f6d9743312 +size 71330 diff --git a/output/592.pintora.png b/output/592.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cf97b1dd39432a6686bb4cada7d3719f372bf88f --- /dev/null +++ b/output/592.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7ae08989c4aefe388c27d5abff1b6468283655f0345cf306f792bbdf2b64cd +size 46598 diff --git a/output/593.pintora.png b/output/593.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1cbfd56b84ae763ba23604b5d181ffd9da306e --- /dev/null +++ b/output/593.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544c4151bdbc0f11faf204234ba9491e20eadd3d615b15c701a8de163a481194 +size 98083 diff --git a/output/594.pintora.png b/output/594.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6aa75dbc18da3d75cd181fd0ac1e9ecad85de0de --- /dev/null +++ b/output/594.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e862baf9998102cb9b8d333ae54396dc39b702bf0d8b8c3aa565aeadd780c4 +size 223666 diff --git a/output/595.pintora.png b/output/595.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b7a7e1e0f4476639ed392742b3bd3b982c40ada3 --- /dev/null +++ b/output/595.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c7a6a027a9624f5a68b996d58871d397ce4d88f1f286d869eb17a4f5a87ed7 +size 176939 diff --git a/output/596.pintora.png b/output/596.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b689f0b27964b9d59dfb48cad424c86a0132f363 --- /dev/null +++ b/output/596.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303217efe1094c0506674652fd17892841d0ebe4ff64e64dca0e79c5875ac108 +size 254773 diff --git a/output/597.pintora.png b/output/597.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e74dfc7e9bf1fed53a35e64f90e70ac9676c49 --- /dev/null +++ b/output/597.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c3173bf407edf9b4fc516e405e55d2a776f8ea01cdd66c2074af4f881a4ef4 +size 44886 diff --git a/output/598.pintora.png b/output/598.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3d9f5e8a898a947206b10370913edc5f68a07020 --- /dev/null +++ b/output/598.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92eb3253275dda648cc3848c433e5d35c57f886b45f8adfc23ffe6a87016bfbf +size 62128 diff --git a/output/599.pintora.png b/output/599.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9cbd42bab4ba7948bc42ce0efb94336ee823f5 --- /dev/null +++ b/output/599.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccfe47b8edb51afd20ee989488474e384b785d4085d9f5a2fd8681417efe4cd7 +size 114407 diff --git a/output/6.pintora.png b/output/6.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..783d339a725a11ea99d8cc8e1cbf2eb55724486e --- /dev/null +++ b/output/6.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340c6faf0301650f13acd89ac23f346d9e1ed15e05bbef70b361808862adf25c +size 22516 diff --git a/output/60.pintora.png b/output/60.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..430770f19fb3c255ef0f3d4d7875f2def621697e --- /dev/null +++ b/output/60.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e524dbd3525221e63ce5c875245391bd99dd5cbbfd1b94869012544b198a8fa +size 27726 diff --git a/output/600.pintora.png b/output/600.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3efa0ea9dcc0c538bc8139675e70ea6fc58d8a95 --- /dev/null +++ b/output/600.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85625e2675d1c2b57ace3d6409feb9c215712a7cba3ad8791b9c4013a5b35bc +size 116222 diff --git a/output/601.pintora.png b/output/601.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c223a0dfb17399daddca9be2f83a81e79604aa28 --- /dev/null +++ b/output/601.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abafe2c6722e72821b001600f5a9e3c0bf9c8d2618277a754acbacb86a379d1 +size 53813 diff --git a/output/602.pintora.png b/output/602.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..775ff22d292b9c13e35e3572ad35ba1b3660e012 --- /dev/null +++ b/output/602.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768d2071920f8add0c523c812f177dff429340aa7154b1c8ab6d27b3d12e8d68 +size 97940 diff --git a/output/603.pintora.png b/output/603.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1471186f1e6583db6291f1042279dcc702edf89f --- /dev/null +++ b/output/603.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac12838df68bad89e4a4ad0926926a19610506ad83dd3f2b7bb2eabf04853df +size 174565 diff --git a/output/604.pintora.png b/output/604.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..15453c03af54065b7346780758bb06132a46d1d6 --- /dev/null +++ b/output/604.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b13611293eb70c80241790a4c92e9275f5a2505c019f955bf6792cc46be132 +size 93858 diff --git a/output/605.pintora.png b/output/605.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b4cc85802b80be513f5067985834b8d81458ba2d --- /dev/null +++ b/output/605.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ef23acf3b3bffa3c08ec50ea7a25b3ce97b07e235020bea073943b51d9442b +size 42203 diff --git a/output/606.pintora.png b/output/606.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2e01f59fdde40ca418d9d4c3b7810a3ce65f938b --- /dev/null +++ b/output/606.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ddc6886dc4e142ed21b9f5cd7af3644acae836d675b8d7f1b757c961eefdc4 +size 207388 diff --git a/output/607.pintora.png b/output/607.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..47ba9282f36112953a35f3aef696d2c3daed5aab --- /dev/null +++ b/output/607.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1fc23140b4f3c8bcfcbff93b603f4f3598a0c0fd1f90ea649610b7e98144f57 +size 86430 diff --git a/output/608.pintora.png b/output/608.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6099a8946f44685d1441a28520f39bb67ef00caf --- /dev/null +++ b/output/608.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6efd7d3610e87b3ce254b9d0a3c7a21bf9769b652cce67196bf7c5b0c193fa4 +size 176933 diff --git a/output/609.pintora.png b/output/609.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8e7ebcb0a0013768683ad3646c9da65bbb1b92da --- /dev/null +++ b/output/609.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e19bc9a2798940553bc49539464acd3c4b295e04a15f76c292ed61a8a9311ca +size 162740 diff --git a/output/61.pintora.png b/output/61.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b81ee2b9754959b99ff8ff694bb9cec962eb4fec --- /dev/null +++ b/output/61.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e7913a9fb2bcd3ac8c85f2ffa82be5307243cb2f205bb18796863b9c65f77e +size 49934 diff --git a/output/610.pintora.png b/output/610.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a5b3c59c9c55a338824cd7af7f421620dac3bb --- /dev/null +++ b/output/610.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077307902e365fe4cfba80eeb7cfd43d0b73b06267aeac2a99eefc20c345179a +size 79965 diff --git a/output/611.pintora.png b/output/611.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ff592bd492845a88bdb7c9748609a95ac202ad1e --- /dev/null +++ b/output/611.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d113c7f59e7d30714789bbd16fdc27811e0fcf7dcbf3ac978d68d9047f77109e +size 48451 diff --git a/output/612.pintora.png b/output/612.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b4dfe1dbbbf3ec23249abb0e17d0d396de80a51e --- /dev/null +++ b/output/612.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef3b35381c6ad1545571d963129d86c4f91b13e76bc678cf4bbb1806b37e149 +size 83178 diff --git a/output/613.pintora.png b/output/613.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b1adca03e9d8e1d7a8f137e2752de10685baa1a6 --- /dev/null +++ b/output/613.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0187f99730ff766023ef4bcfef30dfe8269d756652de2df3f006cfcc32d5cf9c +size 84763 diff --git a/output/614.pintora.png b/output/614.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec2c520ed1a95b7eb00ebc5d50f906d8b94c29f --- /dev/null +++ b/output/614.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1732dde52d2becc23ffbe16167cbf39b4ea87f0454b9acd44dd9f52cf277d130 +size 58195 diff --git a/output/615.pintora.png b/output/615.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6aeccb94332c935dd21ac81dddbf6063a3eaf669 --- /dev/null +++ b/output/615.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c5e407768e3858d6aaa17ef87d118a4a3fea983e06578b362e66e2094505cd +size 161917 diff --git a/output/616.pintora.png b/output/616.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ca54dd0075a013840fb7f5c38aab409179ccc352 --- /dev/null +++ b/output/616.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5a2fe116e1b07cfbfc3645e906ed72262a04197b0d62099ae2ab9de1dfc1cb +size 41163 diff --git a/output/617.pintora.png b/output/617.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..409bc3819192835de27efb0fae066acac4928fdd --- /dev/null +++ b/output/617.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9308ba1356a08d187121fd9f1ca9c35d54457581c7b314091337eae7dde736 +size 103178 diff --git a/output/618.pintora.png b/output/618.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..57f98cc6c4b9a151edeee1c32fecf7a9013b8a2c --- /dev/null +++ b/output/618.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3c3e56ddfd45d1aee2f83b32e3995e6fe7f5c2218dfa1d4da27c8c28106724 +size 58565 diff --git a/output/619.pintora.png b/output/619.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8137799a8d2677a1d5d2774ea4b7b9eee9acf2df --- /dev/null +++ b/output/619.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ba2f38c9b00f0f25715ac207f0334518cf336146d40403ecd72ff214c033d4 +size 80440 diff --git a/output/62.pintora.png b/output/62.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12c42a67ca62ff606779eb3bd843fa707e0c7d17 --- /dev/null +++ b/output/62.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27834082c75ff6ffb2a9592764ca96781e6755260f8cc746603411389040a38d +size 42940 diff --git a/output/620.pintora.png b/output/620.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0aafa01f95e39784069fb4a0dd6b093eda3ffc27 --- /dev/null +++ b/output/620.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02854d9a36ea2b680a0f019ff8d47c169fe753c538cf4d45d8a42e310dfba271 +size 97766 diff --git a/output/621.pintora.png b/output/621.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a2f30504a7b924b9e5f6bf7ee43d2f4b6e1faba4 --- /dev/null +++ b/output/621.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b4321823f86a9d8cc76c5596af8287b35c45b6338ada9223cfc2f25b57811c +size 66993 diff --git a/output/622.pintora.png b/output/622.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bec579619567471d8f68e5fa264c5470c5679df6 --- /dev/null +++ b/output/622.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8efc7a109aeb99f0420668c2dbc18c8d9cec33a92f70dd9bb84b1abbf03f24 +size 91194 diff --git a/output/623.pintora.png b/output/623.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e046de4560499529334e4ae1e9d7381ad38f3c --- /dev/null +++ b/output/623.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af16a85ba4d99eca2b666b3bf8bb3439629044167b25a52c6be348f096ce631d +size 84828 diff --git a/output/624.pintora.png b/output/624.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..72425ee7d4ef3257f1da9cb5c55cfa439776b7cd --- /dev/null +++ b/output/624.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bffc94b55331cf8d4a830655026781e3d963f93031be58ae21377c869567977f +size 170485 diff --git a/output/625.pintora.png b/output/625.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..121654326c53514c8b7646c3186692d99803acd9 --- /dev/null +++ b/output/625.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae88a8457d32a70a46333bc00bfaaf16d28f23bf485da3d5504d20a91b1d1b1 +size 109932 diff --git a/output/626.pintora.png b/output/626.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e413106468b46bb78e5f398fb4b7ea7cff56d0a6 --- /dev/null +++ b/output/626.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9be758e5a78482321344e2e9cab1bf6734a6385b66cb2aa22441402d2e19f6 +size 175305 diff --git a/output/627.pintora.png b/output/627.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5c8d009b4d1471bcfa13b98440bcfa2ce1e9f35f --- /dev/null +++ b/output/627.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5aa5000aa2074145e419d10e4f2ca337ca06f73f651e657c725684d9d54f047 +size 52704 diff --git a/output/628.pintora.png b/output/628.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b45eec53b3cdd884620a03ace7db774db0d6ff --- /dev/null +++ b/output/628.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58875492d47f233152bf23443ae62fb324bf959e433b085a7190db6ef32d1b5b +size 68102 diff --git a/output/629.pintora.png b/output/629.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2f053422f79299aecd2498313251ad5acba71b --- /dev/null +++ b/output/629.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5eebf33ee9938bd03f6b7db6f5173943d4a4b6c186837de3bc574ca68b0f8b +size 175533 diff --git a/output/63.pintora.png b/output/63.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9fbc42a7697af35cf11ab3d7f5207597c0d583a4 --- /dev/null +++ b/output/63.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d0fa0421636ec466f58bb59553c2db5ec6a7140245196bfcc9a77f03fcb0fe +size 110320 diff --git a/output/630.pintora.png b/output/630.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..64e6b4fcf0c5f0d1877212ac653d2602c5c62e92 --- /dev/null +++ b/output/630.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7afd99f2815642f9ee539ce3a18763bee7b018a8d3632739f090fa79e54f7413 +size 111328 diff --git a/output/631.pintora.png b/output/631.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..65f793e970e1bcdf0bfc818e1d939d5cab87c511 --- /dev/null +++ b/output/631.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab6a6cd06d198a47b49d6014137ef419fc6546d910590e56126d54573a8139b +size 54879 diff --git a/output/632.pintora.png b/output/632.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..368731dada653c83f37fcfbb4ab5d15d1fe99274 --- /dev/null +++ b/output/632.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abba0f49ceebbb6fc2a0e33eb0f7f1e4059fffcab928bed6e0b0743982e20dc7 +size 93325 diff --git a/output/633.pintora.png b/output/633.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..706111ee6842bf915f61526c6751a3b7f152d161 --- /dev/null +++ b/output/633.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3460d371f3e1d81c0d8d403f44d06c14396e1d818885e18c307ca1a6e3f63143 +size 182667 diff --git a/output/634.pintora.png b/output/634.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0ba4b8d026eb5fadddeefc418e59cd636b8905f4 --- /dev/null +++ b/output/634.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584af3f48230135b716afaeb30f5995d98e4fa7a489c00a4642cb7f1ab18a68d +size 156557 diff --git a/output/635.pintora.png b/output/635.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ed3362e550309918941c62989c844a6e4aa6bb --- /dev/null +++ b/output/635.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d882d078fe6bd6b2c7260089cf6c30ed559a296fdb052c6da49ac8c932744d85 +size 94126 diff --git a/output/636.pintora.png b/output/636.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..308c20cf89528f58747b99c50d50adf3c1e61a69 --- /dev/null +++ b/output/636.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef0bae8f2be560ff30bcaa115bf7dc7064ae895cb882fdb024f50355f4f034a +size 62086 diff --git a/output/637.pintora.png b/output/637.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cfdccd1a12ecfdc13b3c6f28318946529129066c --- /dev/null +++ b/output/637.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378ed5fa37bee71ac50069710dfd52ef159a91c11c4819eb2ec16bbbc71ac990 +size 77473 diff --git a/output/638.pintora.png b/output/638.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f60eefa2757204e58fdbbd82e411476c7cb00317 --- /dev/null +++ b/output/638.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b5745777f428bea3069f3480f4e0fa1aa37a0209c9374b0b1e05e5608b282f +size 42428 diff --git a/output/639.pintora.png b/output/639.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d19db430bcb39d8d409ed0b038273abdd7115047 --- /dev/null +++ b/output/639.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fccda924315ac0699d2bf0fbb5ee4f14ff18a3e5a46f12d330f33a8636f4da +size 84647 diff --git a/output/64.pintora.png b/output/64.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..09b3be2df7f53d1eeaa55498246fccc10d82d0f4 --- /dev/null +++ b/output/64.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbab494dc44a9580163c8794e7ccf5537525c26b9d135dacb1d6b466fd2eae76 +size 65306 diff --git a/output/640.pintora.png b/output/640.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c851da57a0194cf1dfac86b2375df0825a10b4 --- /dev/null +++ b/output/640.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697eb250c07e2a3f40897b459f1ce963a0182586d55e2986a9615bc0989fc872 +size 61763 diff --git a/output/641.pintora.png b/output/641.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..42b948b0e19ec5a7199e07226dc7d0cc1d3934b8 --- /dev/null +++ b/output/641.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ca5d060f869cd74c7764c9eec4a904fb56d3357b66aee79619dc48ca960edb +size 72259 diff --git a/output/642.pintora.png b/output/642.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cfe40ddba519909223de81a030ea3bd6908aae49 --- /dev/null +++ b/output/642.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6de54bfb2b6a263447839fb644907148b5991cc521981175bb1ec0e94ff9608 +size 127047 diff --git a/output/643.pintora.png b/output/643.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..95d9e117d3c72ec03aade125320f00c19eef26f3 --- /dev/null +++ b/output/643.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2409daa3a6469dd7fe999941e8ee75c5b7320f0abfebfa532b4905e5917b3def +size 68067 diff --git a/output/644.pintora.png b/output/644.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..24241108bbb5e1dd0a992df98274d6b9dc5ec425 --- /dev/null +++ b/output/644.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08ce11c69f5075709ca2d1e624cbab32b3689ffd9d27668056c149f4b0b28d6 +size 134569 diff --git a/output/645.pintora.png b/output/645.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c386feebf7aea36d62a7d42ea23475bd3b30639d --- /dev/null +++ b/output/645.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29cd61d1c34573308120baecc256f2c5832e575fe5ed643c8004fb19d7a8b54 +size 134004 diff --git a/output/646.pintora.png b/output/646.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9db385047da1330fc181c6c0469d50535f12bf32 --- /dev/null +++ b/output/646.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a03f97f29e2d7b6bfaec21ecf8465f0a8d11c30075a201fb78e430e503ee269 +size 141159 diff --git a/output/647.pintora.png b/output/647.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdd7dd70debc77a3ac695f8687a651ae177e9e7 --- /dev/null +++ b/output/647.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2324b97bb9ceccff570428aeb53ca1adda7bcc892e298a90991f5effb8fcdfc2 +size 53512 diff --git a/output/648.pintora.png b/output/648.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fa5b239077c7763abd04c23d87f55589d50f1c93 --- /dev/null +++ b/output/648.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00280a4a3cdfbd17b03f4c7818deaaf34abf22951738d704b173f79fe7b7cbca +size 69795 diff --git a/output/649.pintora.png b/output/649.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f4b19fdca5240a436643827cfbdf4e6912975a --- /dev/null +++ b/output/649.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b3026eec6fc1a3b3f281787770662b5320e451949551f0544a66ed04a30f89 +size 161105 diff --git a/output/65.pintora.png b/output/65.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..71c8f893ef296074341037df96764bb25096536a --- /dev/null +++ b/output/65.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5495b950649cd492dd6face8efa9fc99206bb97b66de78d51f57d555d6ba670 +size 21061 diff --git a/output/650.pintora.png b/output/650.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fe1b0118dd5db742e7de6f6f0253e65485dd600a --- /dev/null +++ b/output/650.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281fe498832f63cfaa27c817e67d604264306715208090a842da4fde3082fb2b +size 89348 diff --git a/output/651.pintora.png b/output/651.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b96eca487ab7df510b15994b872429e20d9df9c5 --- /dev/null +++ b/output/651.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f31d9d60cf31546b550c3373ac777fc57fc786544c69b5321034b7b1d8f4e2 +size 97875 diff --git a/output/652.pintora.png b/output/652.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..34d2844760f8b3468f806fd66ae47992d1c970ad --- /dev/null +++ b/output/652.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535e4089672eaea48bf001075d092e00f11577c46ac567001dcf176964e51e59 +size 64614 diff --git a/output/653.pintora.png b/output/653.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..734123f096893d7bf2eaf99161e38c973e26f79f --- /dev/null +++ b/output/653.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8c3860cc20f777dab1f202320efc868f1aeb4531d98e7f869df04dbf54f74a +size 61527 diff --git a/output/654.pintora.png b/output/654.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..06aeee1fb63790118b4c0b7af418be460f085a7e --- /dev/null +++ b/output/654.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46316e9ae915f20ff7ac3829254704050dab0ab212610fa9202f7c05b4484c25 +size 43728 diff --git a/output/655.pintora.png b/output/655.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..abe526bcde16f515371a0d6956be868988268999 --- /dev/null +++ b/output/655.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa054b5f2a4cc007b3d053de8cdb7eff5f3b33c393f16931c0de8292d7837f4 +size 56403 diff --git a/output/656.pintora.png b/output/656.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8ddd3ec300791f2bae054351b0c7b0b58ecc3d65 --- /dev/null +++ b/output/656.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6edf1367c5df520b5f8c3fbb53fdeb1c0f7ffd5595543c6f6547e4061125814 +size 89587 diff --git a/output/657.pintora.png b/output/657.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6561c216f6571964db27d33bd0d54054dee2e540 --- /dev/null +++ b/output/657.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f34e850bd37c80f2e5207f83c153141a5e72e82ffc99a7d6795724e4df6334 +size 74732 diff --git a/output/658.pintora.png b/output/658.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..25c0445710325d75018230f632c6ee6caf40dd1b --- /dev/null +++ b/output/658.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec859203ae53c8a1ea4a59c0fd495908dab80bca554fd383fb72b852b51b47b8 +size 48495 diff --git a/output/659.pintora.png b/output/659.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ceaa26510590d9ee69fedcc59c09013f52694446 --- /dev/null +++ b/output/659.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a064b5e51410a32c0251b2f0a4ccf0ec18be3c7d44b2bd538843909cbe61ec94 +size 65759 diff --git a/output/66.pintora.png b/output/66.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9eec9f94ed5ce6e3d4df3d6a193b9436999959c8 --- /dev/null +++ b/output/66.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02a8bc642b5ed2821fc8719a1399b0c2a368b24907c927196a9898306cb51c0 +size 55965 diff --git a/output/660.pintora.png b/output/660.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7dbd2c6483bab33dc7ddc299edc506651fb57a0a --- /dev/null +++ b/output/660.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c45e9d1afd9c1364dc646372ea4a77bebb422c95ac4a8a78216a512f13663d7 +size 54431 diff --git a/output/661.pintora.png b/output/661.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bd3383d201a82242535d6fedb0a125d3d2c8e001 --- /dev/null +++ b/output/661.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d1778263134bde8b158ba24236e966f478d97e4cd549cff579f4b8fb06f6b7 +size 69263 diff --git a/output/662.pintora.png b/output/662.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..134e666511e576ebb8a4461af4799a81490f6938 --- /dev/null +++ b/output/662.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032ab0512e905e83cfefb4980012d6b657bb1bd31ebe88950aa7326eede93f6b +size 86855 diff --git a/output/663.pintora.png b/output/663.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..58e88d9694ac89a77a2daf41b4ba4d18b79b1eab --- /dev/null +++ b/output/663.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ced8e2e8f39faf6c2b2bea40c01c55515cc94f299afd34002472efde2bedc9 +size 87905 diff --git a/output/664.pintora.png b/output/664.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5efb6c61d19ef76c98e312ec7538c3934eefbc --- /dev/null +++ b/output/664.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bacaa4d0e080398961e8554bb8d024666bf7036a2673c116a545886e0bfe9e1 +size 152472 diff --git a/output/665.pintora.png b/output/665.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..272747ce30485eb21b6f04e96d4a65a9269752d5 --- /dev/null +++ b/output/665.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0659b9095985f236c2e9c1c98e4f4c7ecf69904845a02e54d74008b13090350 +size 57487 diff --git a/output/666.pintora.png b/output/666.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..693a65b9e8ea27f4fc9aba4aca1c53974ef0836f --- /dev/null +++ b/output/666.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac31ed20c3353d44e69d8cb4ffd88800cbab52d28589625fcc17f21823614b34 +size 164272 diff --git a/output/667.pintora.png b/output/667.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8244f5b3aff57c80de26b016a0f6f29ce02ee89c --- /dev/null +++ b/output/667.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b36e21dd9d5e9d465a11c618cff433d9b148ccd6ac297ddc1eae5251ce374d +size 111902 diff --git a/output/668.pintora.png b/output/668.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..50ae7a281d786175748f400e139e7604d110e225 --- /dev/null +++ b/output/668.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9874a0bde2befb8d1af63ab49cfb2f1e3ffe31920300d069c3ff33a17a523833 +size 64403 diff --git a/output/669.pintora.png b/output/669.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..57ac8184c2574d94fff1ab80367c4292f50177e0 --- /dev/null +++ b/output/669.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e26de9d0c35f53dc9c52ac9cdfed58e033a4e30a0de9d3f62c7fb1d028c28b +size 64413 diff --git a/output/67.pintora.png b/output/67.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..77ba3c0812909a29e3a7dab4d7e091cb4a2f8c8d --- /dev/null +++ b/output/67.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bb66ebe93375d6bf74466e8052b06f564198495655eebb458f55feaa1bffbd +size 44785 diff --git a/output/670.pintora.png b/output/670.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..569a677cf64a7ef06819fbef8377a9d8d77ace61 --- /dev/null +++ b/output/670.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2b8fb997d1451e7a7ad60f8b99418927af591d640d2a7fe69b107b4bc368a8 +size 168413 diff --git a/output/671.pintora.png b/output/671.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..70a1fc06a4496ece7ad656b0c8f270243d201aa1 --- /dev/null +++ b/output/671.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea09682a1d3e02c261421b521e6d6cc78d2109da7c9866d0eccd8bdd76ff82c +size 141256 diff --git a/output/672.pintora.png b/output/672.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..02b127a0e24f13bb69073aa1d6df40c233a9ae5e --- /dev/null +++ b/output/672.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d1ffcc6c021e144e65e92c94f58a6511700a9338de1e935ff8ce1b1e5ad7c6 +size 62444 diff --git a/output/673.pintora.png b/output/673.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5511b18a020c03169880edab2571f3b99e3c2ac6 --- /dev/null +++ b/output/673.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1c54ab5efd35050da74dc15651b4ea800ab7dd98cba2e68e048cb97665c9f3 +size 109880 diff --git a/output/674.pintora.png b/output/674.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d681bc2817e9794722415da669894c1463b14b54 --- /dev/null +++ b/output/674.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13f8eb950c3aa44a43468024eeab3e448e3cc29a85add0a324785bdbaf8b66b +size 190569 diff --git a/output/675.pintora.png b/output/675.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8dccfb8ff70e71ed91d149a470e9f0091e5c25b8 --- /dev/null +++ b/output/675.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:355a2687845f7dac7ab7229e23a5cb194103b260eb67719997afab4ba1573c32 +size 91692 diff --git a/output/676.pintora.png b/output/676.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4da9d0008b8816d9b126f8a44219021aacf35b --- /dev/null +++ b/output/676.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457cd26090e8a4a11bc2305d7dc7b6c000dc752a14b464fb0cd2bd842c5dce85 +size 43601 diff --git a/output/677.pintora.png b/output/677.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..33030368fafa488b6c44f2d427add19ac8548507 --- /dev/null +++ b/output/677.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9556fc76c7406d96486b42205e8bac14d31976d2a666c627f20552cc8525d9 +size 66890 diff --git a/output/678.pintora.png b/output/678.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef9d068b05d983ba474ab4f4a90cb49a92e2b8f --- /dev/null +++ b/output/678.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d3bdc919b034f8498ee9e61b97da844ca7671db445158847caa37b3d33ceda +size 70986 diff --git a/output/679.pintora.png b/output/679.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..355de67123deeb2f0c77cc7bea1173b9e421e329 --- /dev/null +++ b/output/679.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c3b0cc08b36a0ac2afc966e170b98b28224fbf433218638932344b34d6e223 +size 97544 diff --git a/output/68.pintora.png b/output/68.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..da711a729c2853d16ba07321d46f2bc80258c9a4 --- /dev/null +++ b/output/68.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ad83192abfe1951fff0ab614f736f6e5fb9f07eb5fe4b9a77714d0d69d7f88 +size 41918 diff --git a/output/680.pintora.png b/output/680.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d9eb2bde81211bbabaa534b1124343a9eefdac38 --- /dev/null +++ b/output/680.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f72c7ea35548d0c79713364f87441830de82f12028b8915a73b6b379d3f5afa +size 68524 diff --git a/output/681.pintora.png b/output/681.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2f325503b388d38c54f3d0dc370b19d9eb65bf24 --- /dev/null +++ b/output/681.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18184b26556e2edb6bd2861ebdc538d7b0071b28a36fe7cd9a0f1fce87057ddc +size 112219 diff --git a/output/682.pintora.png b/output/682.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ff6030863ea73c7cda6a97118121bc658d1dd0 --- /dev/null +++ b/output/682.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370101d073cee90469d01e6fac837cc0c301b7cce7b9f0c5fbdc1eeb81c8406f +size 80528 diff --git a/output/683.pintora.png b/output/683.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8d0557b6c2b5c9a02a75d3feef9d605a2bb26e --- /dev/null +++ b/output/683.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2113199fd62456750ba1db6015d510899a43dc45e721744d38f48354872d876a +size 72551 diff --git a/output/684.pintora.png b/output/684.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..90ff93489f7dc3a4c58528e541b8574e22091d66 --- /dev/null +++ b/output/684.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf89aa4c8bf5a3cef98a764f4c2a2c6767a353b7cc786ec69bbdc548b278e8c +size 89588 diff --git a/output/685.pintora.png b/output/685.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e034d6e26d7cded397352ea5ad69af7089086726 --- /dev/null +++ b/output/685.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52662387d02b7e6aef1f707ebe634ba08c658da5624bc3ed1d9da3a8c434942 +size 53687 diff --git a/output/686.pintora.png b/output/686.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..efad3b139211b84112428a2db6ba2db9fac4b573 --- /dev/null +++ b/output/686.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22339ff365f4288ce9d42220e8af0d7468752012f23d8fb2fd37cc2363f8cc17 +size 95433 diff --git a/output/687.pintora.png b/output/687.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dc36bd28f7b21a99f6676d732ad8319b869c68af --- /dev/null +++ b/output/687.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f474c97a44d38f915a83942d3004bcf040f02e90141e1391f97ba09e9768e5 +size 53806 diff --git a/output/688.pintora.png b/output/688.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..08643a342d4f6769179c2c464c7b2288eaa1a3fb --- /dev/null +++ b/output/688.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42ae5dea1088464a3cafb9280772fde9c72966f7412a0fccc63fd0927fe110a +size 185189 diff --git a/output/689.pintora.png b/output/689.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d2fad1215cd0e3bf911c6f0bf9af0f4ef42e0498 --- /dev/null +++ b/output/689.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b65fdbedff2a015ead28fdad5ddf60047a8d521b0203201b16cfd3fe4699db6 +size 44826 diff --git a/output/69.pintora.png b/output/69.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..429af86fcbaf7b27cd14548ec6a6f38e768fe370 --- /dev/null +++ b/output/69.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470fafd311b55de9196ac866b8821c033b0964a28117e37581ab98a87adfbe1a +size 54353 diff --git a/output/690.pintora.png b/output/690.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bfdcaa81f99dc9fa21e1641d705488a609e0eb3b --- /dev/null +++ b/output/690.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9f93485b72419a8bfeeca84f675cb06bf79c673767cce32574224f9637f09d +size 79362 diff --git a/output/691.pintora.png b/output/691.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..db77b8ca5163f54db2b27e2226edfd2bbdc81863 --- /dev/null +++ b/output/691.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d05a23acd95c60bc06a11ddc1b6d73e19354cb832c230ca17d87e3a27ba364 +size 66542 diff --git a/output/692.pintora.png b/output/692.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7d0ce11d1db78ce3049ac9cb631fca0b64937dbd --- /dev/null +++ b/output/692.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac437598f86d4dc17ba48d20c3e193042ab1b863ff7bb0dda72edf89b24f96bb +size 65183 diff --git a/output/693.pintora.png b/output/693.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..51015a34c3c2ba94f0545269fe8d00dd084d5ac9 --- /dev/null +++ b/output/693.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c9812ed4d314060d9df5b46be64321c2b41af7d45c7934fdb13873ccbb27f6 +size 186267 diff --git a/output/694.pintora.png b/output/694.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f87f6c1fe3527d902f0899c836ac0c4e7257c081 --- /dev/null +++ b/output/694.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c656ed827f40a98ef0b94db7f48ef02416066e9a06ba924fdf60a360c8da3bd +size 121524 diff --git a/output/695.pintora.png b/output/695.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c153f05477bf5831e51618450ac0e0015fe8b92c --- /dev/null +++ b/output/695.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de9c08ddf249a60c96c27a8276f9aa2e3f1f5f0d00903384371f920f6fc52b4 +size 36537 diff --git a/output/696.pintora.png b/output/696.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1f624d8918a76007809ee8f3221c928e54b7b74f --- /dev/null +++ b/output/696.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457d9ae1e333210a8aaf2eef12b6edaf8293ccc49f1cc287b67086726595e879 +size 54916 diff --git a/output/697.pintora.png b/output/697.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c020d8e24df6e22a55edb4dc0644f8207559a48c --- /dev/null +++ b/output/697.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2e67b7d26ea836bea458146628d856be9b6748af0b1353e8118302d8c297f0 +size 130858 diff --git a/output/698.pintora.png b/output/698.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6774301d7bf40b88b4d92c0c22b82205d5679f32 --- /dev/null +++ b/output/698.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f60ead94ee0f9610e411995d19f57f0c1bf845b21434f0529e55abc967a757 +size 75928 diff --git a/output/699.pintora.png b/output/699.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..050a14d0938d6b2f57f082ad6ba24c2af974ef80 --- /dev/null +++ b/output/699.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bd66111c5648da99da5aeee9fe6c5a81f7481bd633accec105142775722cfd +size 124176 diff --git a/output/7.pintora.png b/output/7.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..59edb0607ab9928b48655d0a3003e46358fbc0f7 --- /dev/null +++ b/output/7.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84357b2e5a0e6ea8c5c50aaaebe4d5f0a3555655c691fff628fa222ba5fa3f9 +size 39600 diff --git a/output/70.pintora.png b/output/70.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e6d5af6f7e2cde5f0987a3691c4a41675053c0f6 --- /dev/null +++ b/output/70.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5785dae140cf2f750c7a178b7211fd962f798c2e76f0d7b32bd8af200c84e837 +size 66458 diff --git a/output/700.pintora.png b/output/700.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd25815b778689152ae51cd331fbbdba434fa85 --- /dev/null +++ b/output/700.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3055b5fb9a0768a34daa2d56963df7d3e82f9a1dbbc4d10b92111ee8376694d +size 62971 diff --git a/output/701.pintora.png b/output/701.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5fbf499b0e2719ec775aaeedca8952e6b0fc251d --- /dev/null +++ b/output/701.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c8c777d9bcff8a8180821fcb6f1677167e85259e72ce12e5c7d422568c6bcf +size 149276 diff --git a/output/702.pintora.png b/output/702.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bfb99c368adce310ac6f341e7149c92cef712a07 --- /dev/null +++ b/output/702.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102ef8a98d9e7022d8c34694ff9b803cd9c3f665eb2d07f8ed631ea02c49089f +size 98970 diff --git a/output/703.pintora.png b/output/703.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..024281510ca9de4b5a4dca379278f54502a3049c --- /dev/null +++ b/output/703.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f9eb71ede965d676d41ed4b92d813afcd5cf31376d1c93f6255cfd8474427 +size 72995 diff --git a/output/704.pintora.png b/output/704.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3f630daa032beaba97fc7fa92ff97bf7515f76eb --- /dev/null +++ b/output/704.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f226ae3c6b67f461baaa1e74a3aa67df76aef808d50bd2fc1cbd3db25b1f20c6 +size 116740 diff --git a/output/705.pintora.png b/output/705.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3c58a8ff0fcc540d2940bae2f26bb69dd60fbcf0 --- /dev/null +++ b/output/705.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92f91d914e84e0042647f09c16221b19f72b1efd4222b5f29d492dc2fbd5979 +size 41156 diff --git a/output/706.pintora.png b/output/706.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..931ece9cdd1f7561ecee1a3722d1f3a73ca77e4f --- /dev/null +++ b/output/706.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca6587e161f6dea11fb81f1a565a87b71797b9815edc0c8c6b942e3f71f129c +size 89463 diff --git a/output/707.pintora.png b/output/707.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f43b0ccd0485d77c7c04f7eb26509bb8661e46 --- /dev/null +++ b/output/707.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ce9401ae2528ab8c2a7c5b8fa74c51996bb77e2a4ca31c5eb12a003d94f342 +size 60163 diff --git a/output/708.pintora.png b/output/708.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ed772aee954f07d3e2273aa937d981c5673a991c --- /dev/null +++ b/output/708.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce75b16bdff73330586d35387b6e8717274cb9ca43d413e63faacef2093a46b4 +size 90276 diff --git a/output/709.pintora.png b/output/709.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1f84e92ee49cfbdee5713f15c2b0382d86b1ac67 --- /dev/null +++ b/output/709.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abee04bd3ac0d014e8b6cabd268172a74612841d1247e035bfaf80a328ffc71c +size 209516 diff --git a/output/71.pintora.png b/output/71.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bb6bab408fb6034137c2bcae79e45bf0629c05d7 --- /dev/null +++ b/output/71.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3486e55aa200a97ffedaf48d8bb2daf5f44e512ae941fc03c8498c8eeaba6fad +size 87965 diff --git a/output/710.pintora.png b/output/710.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1d052ccb2a961c78e9de89b5d5ef56003705c7cb --- /dev/null +++ b/output/710.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e77c24a571ea64f74ba002ff7852b4191fc63f481324076b17b4ae37ae6d3b6 +size 156885 diff --git a/output/711.pintora.png b/output/711.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c23875f87b83e10305c7138099202b98054b9835 --- /dev/null +++ b/output/711.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb09e3c75fe013d249a918f6ef97aa49e7076c3c380d9a9739f15492e62b26ce +size 82703 diff --git a/output/712.pintora.png b/output/712.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a228324ae161279a76d2d416edc180bb7fb7dfca --- /dev/null +++ b/output/712.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708df0bed9674412d7d94eff7de49bb304726242f79d019937e7f45fc5c1988d +size 53158 diff --git a/output/713.pintora.png b/output/713.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e4c13cdcfbf9410e947fbec963c2a17b08be251c --- /dev/null +++ b/output/713.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e61a2fb8b1561c63c8fcf4163cc7870f60b14e84e66ec5936ceab928c64d0a3 +size 87555 diff --git a/output/714.pintora.png b/output/714.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b3f22e7656c5afb551676f6547bd90064bfc3028 --- /dev/null +++ b/output/714.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c95dee17580e43ef5678d10ca6ab3e810c1a8505ceca9beb11c8e455a672f0 +size 67017 diff --git a/output/715.pintora.png b/output/715.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..94ec5a3226ceac08216fd23d69c185334570a700 --- /dev/null +++ b/output/715.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc95705fa556421b342e0feae9f94ac951fcc269711f8ff3835497482658cea3 +size 76205 diff --git a/output/716.pintora.png b/output/716.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d010544a117f81f4157174d5d0f2797f2ad9dad9 --- /dev/null +++ b/output/716.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac212760d73ef06b34b81547de8f8154a0af439d5ee959d7d386e683b183e01e +size 152551 diff --git a/output/717.pintora.png b/output/717.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..32e8c154a0879ad8322982fa64a01e0d87286aac --- /dev/null +++ b/output/717.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b10f286b5348ac420de30811a4b76c7cfcdbe0b952643e1c2b876d39b9cb39 +size 95733 diff --git a/output/718.pintora.png b/output/718.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e8de3743355334a9ba9c438e4d99f18e89c3f214 --- /dev/null +++ b/output/718.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15800a0159243a4cc46cd33d7e3df5e8f64dc8516457b50a32393699f30505fc +size 78506 diff --git a/output/719.pintora.png b/output/719.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2f5bbc8a170a6031f5d0282935c4070fb06f87c7 --- /dev/null +++ b/output/719.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be31b345bc9f05911ae2e2a3e6c652aa5b200a0841c9d6ddfd1d076e7081a0f +size 100761 diff --git a/output/72.pintora.png b/output/72.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..805dbfcd34f56ac715ea604830c89812e8a664e6 --- /dev/null +++ b/output/72.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1297480a05fffe0c764fcfa03fccfff761afc21ec0eb85217b856bfbd4fa7c57 +size 39706 diff --git a/output/720.pintora.png b/output/720.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9925fdbf7c4195b20a2cd88890f4b6c4eb5d12 --- /dev/null +++ b/output/720.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0543fef00686919d3ff611aa698bdbbfef07374d5a0a7268258f042630f6865b +size 33208 diff --git a/output/721.pintora.png b/output/721.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..46e1e383636a67b26961221ac05786b826b8585e --- /dev/null +++ b/output/721.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3141aa63835404631305f1eb8443bc21c31f48fc81290cf78e32445c2844b1ce +size 128392 diff --git a/output/722.pintora.png b/output/722.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd25984794643ea3b6dd791f5bfb20f60948bce --- /dev/null +++ b/output/722.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c82564224ba463f44304a70d1ab5488a59d8a3cac82c87208e986843ed34d90 +size 173913 diff --git a/output/723.pintora.png b/output/723.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ac279ae8c36f27a27bc212f21555b41589f8b4ba --- /dev/null +++ b/output/723.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f55a7cf2a5ffcab351567824fb883d030d283c1e68d1c5a43f1611aa416d52 +size 188077 diff --git a/output/724.pintora.png b/output/724.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..23ab6b98bcc13ffc83dbbf0b70f3895d3e991b8c --- /dev/null +++ b/output/724.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e1555a84a15d8655fd8856a892e5727aafe0b03448a621cde0524075e52353 +size 111772 diff --git a/output/725.pintora.png b/output/725.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab750f47164dc13b57dd7ab9487fbbbb1e3c962 --- /dev/null +++ b/output/725.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160556a0474f72dc392ae75abc0a35f353853f19743fd19bec3315467374d16b +size 59834 diff --git a/output/726.pintora.png b/output/726.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ece163dec73864bdb22061ecbb8c13dd78623e6c --- /dev/null +++ b/output/726.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8335d0e2d98c6d794f46a3f64b14d9cfabc23769c33bb88644b98b1aad0cb9f3 +size 218297 diff --git a/output/727.pintora.png b/output/727.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..97d4f234eff35a05508c4ecf4a3e37e405490015 --- /dev/null +++ b/output/727.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3f5f15577ac60531472b07474bf72df27a276d948842facf80a6047a09f89e +size 63356 diff --git a/output/728.pintora.png b/output/728.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2b5693a05c6bc1b79c7be5ee2f0eb3a25c5ec7 --- /dev/null +++ b/output/728.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ecdab8719ca2111540303cc094714538a9acbac1c3d3e71f2c44bf8a095149 +size 79889 diff --git a/output/729.pintora.png b/output/729.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..66a25925eb69b435b5890566fa035ada833bd792 --- /dev/null +++ b/output/729.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e312fdfcc40f303d820ccedd510840556102e4edafceb7f9e2f01e5bfdcab6b +size 152092 diff --git a/output/73.pintora.png b/output/73.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4c3f00dfae2b3af8d03dd9236b11e841b9dc4775 --- /dev/null +++ b/output/73.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dceb5a8a95d6f8cb3190b9b9018f43820c99574ba18bd164b311a2c5f607cbd0 +size 55752 diff --git a/output/730.pintora.png b/output/730.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a1502c52390f06282fb9d8a42fddc55300afae09 --- /dev/null +++ b/output/730.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f0d7fa6e204dc11a4a7ec9237d63192d4d6208bbfefc5f40dc14e532c27afc +size 129464 diff --git a/output/731.pintora.png b/output/731.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7f35a55d8bc2feb0b6f9bcdb3bafbfcd26548747 --- /dev/null +++ b/output/731.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab793be963e81fc2588af177101e213c34726b94a4757523112aa792cf7c312c +size 48381 diff --git a/output/732.pintora.png b/output/732.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..49a87b8d47259a7b2564dd953a57ca0c75beffb5 --- /dev/null +++ b/output/732.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496473d444ddbc34c45b23b16b033cbf97c61396727b03fc4a1de1d158c20b49 +size 52810 diff --git a/output/733.pintora.png b/output/733.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6c0c97c256cda2d80a9d96f2e639898d6d64598f --- /dev/null +++ b/output/733.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a13b73cd70287c377da8fe38cc6cb79e410b368153e339015cb7eb449c58e7 +size 71914 diff --git a/output/734.pintora.png b/output/734.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..887e5142285d508a3524a6ad5f60861add4705c1 --- /dev/null +++ b/output/734.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7872f4a1a8d1b6c9bff5414667f4fa337968b47689b43988c4171580d3a09dc8 +size 128198 diff --git a/output/735.pintora.png b/output/735.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f5cdefaac5759f9d764074e8d6bc76c4c3ad4752 --- /dev/null +++ b/output/735.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ff3de4adf3d5ca4e4af6e9de8537ce77c9ba1e09e9e3b62ce374c1f3dcb3bd1 +size 32762 diff --git a/output/736.pintora.png b/output/736.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..069a11f628ac7ebfb127a5b2f1f276386d08fd7f --- /dev/null +++ b/output/736.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66bebcd2b0742d002027460c814a7dbf059f3b5a07718c7eca64493078e9ea1 +size 182131 diff --git a/output/737.pintora.png b/output/737.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bf9f1ae1ebbf843fa97cb510338c67f4d0fd2928 --- /dev/null +++ b/output/737.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff80b956d0a0d09d077b77e21a9f8066722cf72a3449b42f8fc2727ed9c88d48 +size 54211 diff --git a/output/738.pintora.png b/output/738.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..83fcfa5bd75d286d646260e19fcbcb3e9c856876 --- /dev/null +++ b/output/738.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449574b8d5c9ce010c486c38fe9c895361f8ca0c77578df248fbcac77cc4f34b +size 68874 diff --git a/output/739.pintora.png b/output/739.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..22c58e73a44222b52b66d4a1aae6d89029e04dba --- /dev/null +++ b/output/739.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7554f202642d3a95e9be705fa8b279f6a1ad1454fb5cdabd30b2e8a090e912 +size 44885 diff --git a/output/74.pintora.png b/output/74.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7cd978f518171480c454c3e38279b8912887f705 --- /dev/null +++ b/output/74.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11cec4a1d1ca8fd444d516d4fac6555876da5c22a02c7cc67c3c000fc939abf3 +size 102046 diff --git a/output/740.pintora.png b/output/740.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..be0d0eb62dede8f29dce66cd1b0eb723d9e676cd --- /dev/null +++ b/output/740.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4701ed3e0a728a1e2cf6d53959054f3a9c7d41fc9e5942a4626e9564fadddbf0 +size 194740 diff --git a/output/741.pintora.png b/output/741.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5e501c07dcb76eb50764fa8cebe316468da73d3e --- /dev/null +++ b/output/741.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c26be4e681c553b284be7d560c2ff26f086a1519f48cc348fa13ee12c117545 +size 120873 diff --git a/output/742.pintora.png b/output/742.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b298950b66441860a93e3b372a6ce3aef871264e --- /dev/null +++ b/output/742.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddde0dd27785694ad2149602f28895dfe07a7049f2722d5945474315bed7278 +size 73660 diff --git a/output/743.pintora.png b/output/743.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..654af996cf228b9ac779068043c997177231eb73 --- /dev/null +++ b/output/743.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e6706f61a7b25504a34538c60cb27eca7cc82865e45bd59d41fce7bc3b094d +size 121983 diff --git a/output/744.pintora.png b/output/744.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fbc1d33959f85e51f77ccc73a10b29e5abb9ab7b --- /dev/null +++ b/output/744.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b138b9ed2d09f0f59d104744493e4fc919ada607a562e07a06d1fa2eec6c902 +size 139259 diff --git a/output/745.pintora.png b/output/745.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..810933ed317c9b5f886b6315167d8343a91e32fa --- /dev/null +++ b/output/745.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5529f9ba92e0a7fd327af41e3f1c90614be7f5b478bf602a41d563380e9299b +size 88440 diff --git a/output/746.pintora.png b/output/746.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4d89d587bb5af9359d230338460395c45daa3e97 --- /dev/null +++ b/output/746.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f065ca2c40910d3b6a4e2a376c083e31b4a387a28c28ad1f9ddc375940abfab +size 112504 diff --git a/output/747.pintora.png b/output/747.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca7ec22d383a354053376dce7e9de8c8d16c243 --- /dev/null +++ b/output/747.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1553f213caf128a46c53a7c57a687c12d219bb9bf3a284776321bf3e7582e32 +size 59416 diff --git a/output/748.pintora.png b/output/748.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d179831e2184d3afc7514b2b18baa5d9664b2859 --- /dev/null +++ b/output/748.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db317c27397c0b27c2aed8c4831c27ad786521f97c1b9344b56692605953da8 +size 135817 diff --git a/output/749.pintora.png b/output/749.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..874626f32fbceba17ebf0ce5d113ae0f669c62c3 --- /dev/null +++ b/output/749.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af0612fd67ea1fd238b1a32301d16151d2d8891618da311b5049f3a9077dacf +size 84696 diff --git a/output/75.pintora.png b/output/75.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ed2e8dd6fd4d1c76da81d9031ae88e9c03e07a77 --- /dev/null +++ b/output/75.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc28161ffbd4fa4bd71fcac52093cd8316fd2f76ec213c39297281101beb17b +size 37665 diff --git a/output/750.pintora.png b/output/750.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1ffe99b19ee43527b87227126278aa4589db88d6 --- /dev/null +++ b/output/750.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46e51303fcc875406bb61f55d430b4c1333fa256f2d2ffe786a0b1115283c141 +size 80933 diff --git a/output/751.pintora.png b/output/751.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..725d052811fde7075c588708afefa42c537bf2c0 --- /dev/null +++ b/output/751.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1acd008486ea42383867006c51f5cccaee858ca12562b688c325ef4263d6a0 +size 77053 diff --git a/output/752.pintora.png b/output/752.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..85b9914462b40ee86f4a38c5375345fad3449d95 --- /dev/null +++ b/output/752.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1a18d14b0ca64d3f7e9a42492bd35fbce670f6dc92315b82021dd2bd3888c8 +size 144767 diff --git a/output/753.pintora.png b/output/753.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4b8c7c27b030feccae7ca558525942b57fbb2e97 --- /dev/null +++ b/output/753.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02496550057f345611cf6d06c97d830b9e6fe4b065f3b7584a4f109ceb25face +size 71524 diff --git a/output/754.pintora.png b/output/754.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac7b08f9574b766bc502c87a0428d796cdb5f64 --- /dev/null +++ b/output/754.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474a55a3a60fb449cd51cc48eabc2c91cb5c4fbb2282cdb9e4a48c03685773db +size 118725 diff --git a/output/755.pintora.png b/output/755.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..28a76dbae717cde29e62132773531e69410f2c80 --- /dev/null +++ b/output/755.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c04746d09e57deab0dd55b59244196752d0fd6607dfa4e6fd0be938962c823 +size 78007 diff --git a/output/756.pintora.png b/output/756.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..37183610bd35b012ae9ee1f375d81cd5fb68c2ce --- /dev/null +++ b/output/756.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cdb3757b0d33a145ab5d19ccb90727f57648368bd14cd84405be72c60d4e37 +size 109739 diff --git a/output/757.pintora.png b/output/757.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ceda92899c8cf765de75a697e76129a44a84fd41 --- /dev/null +++ b/output/757.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53b9dd619bdd3da4177288abf6f581f31d6ceda862761a510af9be5ab39dc13 +size 62930 diff --git a/output/758.pintora.png b/output/758.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..700ecd8e2e625f48d4d0544f166e40f8052d0437 --- /dev/null +++ b/output/758.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb81728c9666da34a8885b6045484da765f7f5ecdee3b94495dfeabe10408e4a +size 108997 diff --git a/output/759.pintora.png b/output/759.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..af450b0f7d2cdf2cc6bae64d9d978e81b95effba --- /dev/null +++ b/output/759.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788e91596f15dead3dfb63778ab05e2f4ea6fadbfa4783b834eab627e0826002 +size 84611 diff --git a/output/76.pintora.png b/output/76.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..da93dd57dc4ecde85d458e175cfc0ceac582c26f --- /dev/null +++ b/output/76.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ed7a0ce3fa52e34f7d0a097271f8d513763d994760e3d1e21e21ac762f6abd +size 28721 diff --git a/output/760.pintora.png b/output/760.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..814f386326daab506bb9f6e69c955664731d558a --- /dev/null +++ b/output/760.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958f116a94f0bd19042df4c2b08b28f20c82e33e782d899206bacf8999e65c57 +size 95672 diff --git a/output/761.pintora.png b/output/761.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..60a0cc46f0c1a67e0bbf4c7306daab148821ac2c --- /dev/null +++ b/output/761.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e86b3f5df19fc98086ae0f7ff5fa3cf219021330c477fcd1af209be1b8c5f2 +size 62415 diff --git a/output/762.pintora.png b/output/762.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a32f930ddff03b89816aa79afbca2335c9e37036 --- /dev/null +++ b/output/762.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046d2aa6394ab829a4804045ce7a930bd879dee5d49f1652d1f7e84f865add39 +size 100452 diff --git a/output/763.pintora.png b/output/763.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..231ea993cba37c2fdfb0a1575a96052377a4c1e8 --- /dev/null +++ b/output/763.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d71cb8c25313bc806fc745ed44ecb8499b96398dcde61b8b4b149c8f05ebb1 +size 231485 diff --git a/output/764.pintora.png b/output/764.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2b0eab5dd4dd4ea50738a1d1cebf7e39871dc887 --- /dev/null +++ b/output/764.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a58cc4c3c402ffdccffcb84b719ffaece3a54d0f8e027a2a7e4c159a556199 +size 171923 diff --git a/output/765.pintora.png b/output/765.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..33d8b2591889db450f84109b28fed5903b3351e9 --- /dev/null +++ b/output/765.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faca862a26f0f5d194e2bf4716d01332581305a121fd48a1433b6415b374bca0 +size 135260 diff --git a/output/766.pintora.png b/output/766.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b86c381a82dcf442297a09828545e1b7c188d219 --- /dev/null +++ b/output/766.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421c645c2289019fa9cd95c1931588196e65273bffb7090986e6fe6ee283f4dd +size 129333 diff --git a/output/767.pintora.png b/output/767.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..068c55999725f2731515ac0e98adae1a9fb98998 --- /dev/null +++ b/output/767.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9d0f85e7edb92fec43f20ad244501423dc5c976d4e6a604956fff28b3a32e0 +size 81822 diff --git a/output/768.pintora.png b/output/768.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7a752b137687a1614079bf9723ddfebd8ac112eb --- /dev/null +++ b/output/768.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3b850a57aebbb7bc2b834e04d7222724a06b10e9753b5f80c1f5f06a1d944c +size 60982 diff --git a/output/769.pintora.png b/output/769.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..36fdc805db42ccf7cdb8a8333a842e2cad1f9b82 --- /dev/null +++ b/output/769.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf0339973d71aa3c3779b2d7d4be8641d3660eb327679ac2859fb214d4d9c6d +size 121398 diff --git a/output/77.pintora.png b/output/77.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fb6f7a4d975eacdc513f2c0b681d2bbc561f7678 --- /dev/null +++ b/output/77.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64fb1f2057dfcea0839348665a594743af2d459690b1494ac60a0eebe78d5662 +size 53133 diff --git a/output/770.pintora.png b/output/770.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e185b57b7273e6216519ce48b6bf41498f24be93 --- /dev/null +++ b/output/770.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2beec237427521a0ef6591a70998fbd7b11936390d196a6e6dc5b82598716b89 +size 175413 diff --git a/output/771.pintora.png b/output/771.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b4982ef7c573a6fc87032ceb04e368fe7dc5fcde --- /dev/null +++ b/output/771.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76a9afd8706589265526e59ff49f96e5e4fef46ab3858c6e753950250e9c3bf +size 81839 diff --git a/output/772.pintora.png b/output/772.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..df365e9b1c98fa19e635cab36961a6f1059f588d --- /dev/null +++ b/output/772.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef33071e0db280ba92f68c6253338b5de005b7ac5f12a7aed97e0bfd122d0d5b +size 48403 diff --git a/output/773.pintora.png b/output/773.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..390b38bed9150704e22e618f6904dba6e1053488 --- /dev/null +++ b/output/773.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59ebcfdd5f7726abe77ce79eef6a5a8329e7808a5327c04f62356cff14f94da +size 50358 diff --git a/output/774.pintora.png b/output/774.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3b5b041bdda1d51caedbda12c03ce86cb190151d --- /dev/null +++ b/output/774.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f244f9f2d65c293e981af50073528346d4d258de35cf167fcdb35a3b80f6480 +size 180891 diff --git a/output/775.pintora.png b/output/775.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ca41259e2d313bc16567e78e52b2dfabdded7317 --- /dev/null +++ b/output/775.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae32f538009ec058444370bb7cfa290281c443df4ac5cb32028048774d2a07a +size 33723 diff --git a/output/776.pintora.png b/output/776.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1ada06d43e2c3d9e6f1f49c931b239b42367fe94 --- /dev/null +++ b/output/776.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea82f54c0ce5b88bd6c0c9fe338aa289ebc26001052c912c6fc8a08086c9d7a +size 128914 diff --git a/output/777.pintora.png b/output/777.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e54312e470f9b6294e022d449515f45aaeb59b89 --- /dev/null +++ b/output/777.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c965adf2f34b68204f8105c0dd533026a82df6828e147e33569b4e6dd52acc +size 156790 diff --git a/output/778.pintora.png b/output/778.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc0ea29777a1b2f09a88536581c1ff3ba63b90c --- /dev/null +++ b/output/778.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf2a6aba8e32d9ec7a168a47b7a0b3bcbeaf83ba0edf137e61365f15c0318eb +size 66715 diff --git a/output/779.pintora.png b/output/779.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d7db1d2f548bc375024a85c1c98bdd2393f70d9e --- /dev/null +++ b/output/779.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84187a527f1ce87ef0cb52ebc00211d6a5c9da8d0434e60400e0c9673a3d6713 +size 126431 diff --git a/output/78.pintora.png b/output/78.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0027423c305a181581f14d090bf2e016a54b3a5e --- /dev/null +++ b/output/78.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b596851c54e7ccad274692e75000f2b0c89c57cbde725084c8c00a67f13580 +size 42974 diff --git a/output/780.pintora.png b/output/780.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cf65b30a08fbb0bc5131dc2e19ecb24e40e4c9d6 --- /dev/null +++ b/output/780.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ae9fc2392183b93fcc7f0a72e3eb1644ac1e3a0f4d8b9c957d395fbff72e53 +size 120292 diff --git a/output/781.pintora.png b/output/781.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..09c123b1c531e6dd3842afcfea3ddaeea1242e78 --- /dev/null +++ b/output/781.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e730ff256eeaa7bb241740102c33a59a7316e3368a16e9a82ed8256561f1fc92 +size 60500 diff --git a/output/782.pintora.png b/output/782.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2948c4ef916ce64030d2ac873c9165efb1417455 --- /dev/null +++ b/output/782.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86fe5816db9fd3153c38d917c47cd2487024aca75e206d92293c2b4b60b9b42 +size 177322 diff --git a/output/783.pintora.png b/output/783.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8043fe02c398a447971c39caa2df746aa7da5189 --- /dev/null +++ b/output/783.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4070da1f2d2cc13343dfa0146aecd8349d664623bff672bc1f13c077acecea4 +size 88960 diff --git a/output/784.pintora.png b/output/784.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..924ccf37fddd327cd2de2244424a70844c3169b9 --- /dev/null +++ b/output/784.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e27b87ff30efbb76df9223e3a841a3f4062ac4bddb588b27314c2ed18ddb96 +size 110606 diff --git a/output/785.pintora.png b/output/785.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d899a562ce080dbbde63737885c24317c4479d60 --- /dev/null +++ b/output/785.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a2ed7680bf646fb3ef6e2bfa5b316225f4f28e73bf71107d3017f0702767f8 +size 158742 diff --git a/output/786.pintora.png b/output/786.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ab31fd1826eb44082ff220c1b49fa25c0c28694c --- /dev/null +++ b/output/786.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb6526b5b3f9e1e3147bc61b3e5d77b7884d2a557e13fd2bae8f2c91be1af92 +size 161928 diff --git a/output/787.pintora.png b/output/787.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8f06df4b961f4d55c6d0ef1865dd55df4e74ef3c --- /dev/null +++ b/output/787.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9cb3e490c21fefe221f872a6a945a5de234e785b073ff0a59a41053cea3695c +size 84933 diff --git a/output/788.pintora.png b/output/788.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c42bfb1aefb85b61d3dca4c367e9e6b79388048e --- /dev/null +++ b/output/788.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496d3d3491bd5c6f31096b1a8a58f123af28e943bb10267718a6ec66f09914e0 +size 43002 diff --git a/output/789.pintora.png b/output/789.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c35a7af40ebfaa65c4ef4e6ab0ed94bb57354b --- /dev/null +++ b/output/789.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a40699c542949ef90c4e26ce56feb7f48792c1ecd539fb7f418b760a9ded053 +size 84319 diff --git a/output/79.pintora.png b/output/79.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7e66c9bc13c038d8d7cf20f27c58406942a9c72f --- /dev/null +++ b/output/79.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b626dbbfaff912d079e6912dd8ddcf09673da7bd2583b119c4536c5273823b8 +size 43936 diff --git a/output/790.pintora.png b/output/790.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c9979537134f430c6e62963484123cf863a96742 --- /dev/null +++ b/output/790.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1555073f889ebfaed2b8fd11dc5884e63d3259262279824fc5fbac5dab7552 +size 84710 diff --git a/output/791.pintora.png b/output/791.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..65d40abd81f31c78d3bfbd3ee8a7ce0d281204df --- /dev/null +++ b/output/791.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cca00abfb9a86fd8861a489dca7415a532191691494ac5e53ec31a0c08211f +size 89149 diff --git a/output/792.pintora.png b/output/792.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f974b4736e09c4aca8fd7f4e95a583655ad5d578 --- /dev/null +++ b/output/792.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b856a69a25025b114ee85a9c2b9112bdef90b7111f34b6c270215e730e0608 +size 68981 diff --git a/output/793.pintora.png b/output/793.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b1292ab6576d7e3d0781e2b399faf0cd2366dd16 --- /dev/null +++ b/output/793.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2604d0ae6a8754b20666dab55ddd5c577e53cee739d5a0265e9d0e14fad58d55 +size 162249 diff --git a/output/794.pintora.png b/output/794.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3badb5d2a3978c5384fb2401d180f831a21b6b12 --- /dev/null +++ b/output/794.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425064e17870d37ebff72d837cdbcc7e10e715eda92a09a9320cdfd0bd5bb2a2 +size 67714 diff --git a/output/795.pintora.png b/output/795.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3c965b9e721e8deca62f37f0058097f0a45592bf --- /dev/null +++ b/output/795.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a672e7a39299aff5b30db5a77989a59b3923fee09359c435d732800c2fc68e39 +size 75238 diff --git a/output/796.pintora.png b/output/796.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9c63ca4fd865677f772d5df908c86cea4df95e49 --- /dev/null +++ b/output/796.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb212639ab232b564b5753735fd3b313043eb5ffe4cefb48da9a9f594e8d112 +size 104226 diff --git a/output/797.pintora.png b/output/797.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9fe6e4da5941cfe976af87e22af13b22360553fc --- /dev/null +++ b/output/797.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c56083a1d7a026b0d249d708b04c485f1f7c136a6e772afd51feb4f08029ff +size 97304 diff --git a/output/798.pintora.png b/output/798.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2d0a3bad7bd664a3e4bef2fb898392c881184c97 --- /dev/null +++ b/output/798.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c367cf69d774d493686e54135f748573b616e33c3d59b63178816bfac90316f +size 55198 diff --git a/output/799.pintora.png b/output/799.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1644b81b76d3e2074ec2232ee29109ea0c108659 --- /dev/null +++ b/output/799.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf52595441c52a75c76ff839f81b994ceda48b60509e121c04d8c28a6de59ac +size 71982 diff --git a/output/8.pintora.png b/output/8.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d927c3503779c0fc1b94f0b948fd5501272f81cb --- /dev/null +++ b/output/8.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1261ed1402fa6d3f6526ba7d80260a9a7955b65a82da2b8546d06f20336def7 +size 43070 diff --git a/output/80.pintora.png b/output/80.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5626f34a4d6c3f5ff53ad7e25305f7990b48dfeb --- /dev/null +++ b/output/80.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de5a87d7b2d0206f8e98a2e09f958684d25c90be0ace5deb530c6f7317dc9ab +size 83092 diff --git a/output/800.pintora.png b/output/800.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..73fa186033c1f640d75588fa7d5ef9b0b267f4ce --- /dev/null +++ b/output/800.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd85569a21616e6a9febe0795383ea2063b37168eb9f6c8b91ebc34d70e9eda +size 80216 diff --git a/output/801.pintora.png b/output/801.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..266abc580a1e043b3223bac53b84e9b1a265a6ff --- /dev/null +++ b/output/801.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e88a555fa86e3a5e0b619d6d2e4bc2032d576a3352e42693090bf3c47b9b466 +size 144387 diff --git a/output/802.pintora.png b/output/802.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b6880d7b4d21553baab7a2fff76554c64a6323e0 --- /dev/null +++ b/output/802.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efea30e4e0024b6220cb0eb1845d3047416b88482aaf9ab449d3052616c22244 +size 95127 diff --git a/output/803.pintora.png b/output/803.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ea027d071495aa6e6d759ec9adc7bcde20c1ffcc --- /dev/null +++ b/output/803.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8f4c90f16e8087583d4dd7964ac6dc795c5c9d16246693d84042fbd0c30ba +size 39346 diff --git a/output/804.pintora.png b/output/804.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f5755c283eaf6cba19ffa1678614bd09de18fe --- /dev/null +++ b/output/804.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e3dd05a092b3ffc8527eab9f917f56b1f6ca6c2147128c96f589b7a2df6e10 +size 65080 diff --git a/output/805.pintora.png b/output/805.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..67b96702b63b10efbd50b98ee63714f102d351b7 --- /dev/null +++ b/output/805.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36ff4c9dd29a042071285eb5d17cb8bcb99d437199219b6d6ecfe11510b5841 +size 23780 diff --git a/output/806.pintora.png b/output/806.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0fe2ba1c9e7d9562bc59c41d55c1e91d5b40219f --- /dev/null +++ b/output/806.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d06382073139f202dcb47335df75babf20a95bc78ff519f04deb24928d64861 +size 43976 diff --git a/output/807.pintora.png b/output/807.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5612aa9b7e5b8fe479c713883416d71f84c22654 --- /dev/null +++ b/output/807.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ad19ae6863b2c1e89fc26d33050dd7eec821778f884aa1c7baa9fb224407f2 +size 193016 diff --git a/output/808.pintora.png b/output/808.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..686d3e77a4bb4e1611b31b064e4a04288a4d5ee9 --- /dev/null +++ b/output/808.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91cd1fe03b9fe41a7957eae8360d60b1c9b8f7a75bd1fbb4b118a39136f871bf +size 222204 diff --git a/output/81.pintora.png b/output/81.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..182ea0b684847dca0c8618536a93bfd862815de6 --- /dev/null +++ b/output/81.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e82b8c12ea5400f9370cfb1d3ae8a5182c5152ab48207419fff597ddcc949b +size 46217 diff --git a/output/810.pintora.png b/output/810.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b9f517079167b8d0f606ccb47b012732e2844df9 --- /dev/null +++ b/output/810.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5dc3565fa13b1dd49fbfedb47a3584825d4b8f23d867b3d978c0297e91438c +size 197670 diff --git a/output/811.pintora.png b/output/811.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cc6517995a15dbb617e44826692d020ea5093f6c --- /dev/null +++ b/output/811.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fa9dc0181179608159ba3d675990e024443f670d555369c28fc810740d2882 +size 50599 diff --git a/output/815.pintora.png b/output/815.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5d4f9b9032432afff86b53532422fe9883ec06 --- /dev/null +++ b/output/815.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9f634443c9160d7b14389f639fcd2ff2208b5d49d73e78a9cfcfca9b3d1e61 +size 221118 diff --git a/output/82.pintora.png b/output/82.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9b2ae06ba9cd91154836f7063480415ae7ee5158 --- /dev/null +++ b/output/82.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d486729cee10c46ddc81d4ab630eae9e6181c0ead75c89b531d997730cba454 +size 54005 diff --git a/output/821.pintora.png b/output/821.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..558d0117083e1e205f5c2ab7a253dee2bd7aa59d --- /dev/null +++ b/output/821.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d98d3dca3756b0d98a10e6ea408a4dc21400b4d9d2d29d50e098fdd8d85c7e +size 166186 diff --git a/output/827.pintora.png b/output/827.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..173f284c5163218ddd96a2d8e554592dabebe05c --- /dev/null +++ b/output/827.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3517de5ad4abc6ed6bff8833f73f32f79ef619f1f6027796b3b570e7c9bd984e +size 54680 diff --git a/output/829.pintora.png b/output/829.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..38f944788ad330078d824936e17511bf30923d55 --- /dev/null +++ b/output/829.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396ccd3ae891f101830b0258ba61bc9ebf4e419f1f1348f95c1243ee305ba68d +size 64779 diff --git a/output/83.pintora.png b/output/83.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..823a133f175ceee23d9d75a6cdffdef20929057f --- /dev/null +++ b/output/83.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5cebc12672087f815bfb6314e331b394175322d6aafd9c3948371c3022809e +size 41906 diff --git a/output/831.pintora.png b/output/831.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee0287dc3e9a8f208b71025fd98df351facdaee --- /dev/null +++ b/output/831.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19eddfc5f6c90be1baaffcb02566f41a998efc810e61fcd7ad96cf9a0db3bc8a +size 48879 diff --git a/output/833.pintora.png b/output/833.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb0d9c03c235cd17b89d3d9a1545b457381a699 --- /dev/null +++ b/output/833.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73efcf70257a428d588f828c2d08c9128eee9a6030da0c51c916db30e15d005 +size 110590 diff --git a/output/835.pintora.png b/output/835.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ca382368e84fd678c9f37618254a9cbbd622f948 --- /dev/null +++ b/output/835.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e110bd51fe30ef99cc40f82bff5d81ce445fcb605ed8a1b8ccadd4348a33eb49 +size 149728 diff --git a/output/84.pintora.png b/output/84.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..66493a31ece9c67827a5e87f568cb309ab04475c --- /dev/null +++ b/output/84.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77edb35f9577d2025ec5e97b867276aeb7fa2b105b07797d17abf7b60e3e56ed +size 43700 diff --git a/output/841.pintora.png b/output/841.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bafc9e50a2c243cb37b0c47d4ab7597fa6098b97 --- /dev/null +++ b/output/841.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936db88b748c270e60bae1d1d86e481a0804688705fb861daf15695f3abfa7b9 +size 164976 diff --git a/output/842.pintora.png b/output/842.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..525d7e9d0eb787a6a148f7ba719818e4bc27a13e --- /dev/null +++ b/output/842.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24cd756ddb34ed4e4352695f546489789b557c49642b9f677c4c0bb69d0863e +size 90613 diff --git a/output/843.pintora.png b/output/843.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f8cd94b13be4acae8b01cd3dcf84a7edf11def3e --- /dev/null +++ b/output/843.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1fa7c4c23d8c4c3cb0594be9051413cc329de2e1f5e406ad0d3c58a1061725 +size 164139 diff --git a/output/844.pintora.png b/output/844.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..eead0843cafb1d99df08b7daa930a559f7c7866d --- /dev/null +++ b/output/844.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570268dc0e7f4edced10ff9a65eb271ddd4856e55b7ba6c960bbb8a5a18423c0 +size 105786 diff --git a/output/848.pintora.png b/output/848.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f7641e88db74617136863cbc80c6c9b60d724a --- /dev/null +++ b/output/848.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17345f26858ffe8d98e48f6ae040bb049cb2941fdee4b881e7a32a2cc15fb9a7 +size 151372 diff --git a/output/85.pintora.png b/output/85.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..82979ad153226486a0fe5e133c371f22c37bc2ef --- /dev/null +++ b/output/85.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0944d7219b53f03c4114340b6c7a1514849f4819a540a8ca33a0439ed81594 +size 150435 diff --git a/output/851.pintora.png b/output/851.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12d40d27c7a60927e612e3bb8900ab058a43b1f5 --- /dev/null +++ b/output/851.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52c4f8d75e0d90d362dec2fb431226393bf1af1522d2957fec0897180ea78c3 +size 34368 diff --git a/output/852.pintora.png b/output/852.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5342d63b997014c87607714a661992300b286ee3 --- /dev/null +++ b/output/852.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67256f5a7dfe8eeee19e22b034f280afc456bdcfc1013472ecc1598226e93fb +size 67179 diff --git a/output/853.pintora.png b/output/853.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2688a8a840e75fe4e5235a17c739d3000f657f73 --- /dev/null +++ b/output/853.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f72a8ced92dc7a708fd329d036039b03f2fb7be56966e7d93c47207905b65ff +size 153877 diff --git a/output/855.pintora.png b/output/855.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f1462020a34b3bf6fee6ce650f9e8dd0bd56ccb7 --- /dev/null +++ b/output/855.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b992be7a2f5677157cf4598653a334404e7927cc4b307c4f2456be347f7436 +size 70148 diff --git a/output/857.pintora.png b/output/857.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cf24c9f21a432f6c04b8eafe177640861e468c40 --- /dev/null +++ b/output/857.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2400128059c572d4b994764a499aa33921b0d542942b51ad8eb01593385e0c5 +size 125807 diff --git a/output/858.pintora.png b/output/858.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5039746bff4b5612ac2d32b1fcac577c2e15d4af --- /dev/null +++ b/output/858.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a6ee0bacc0a5af9ecac190e6fbd58f54b458aa91d1201e2fae524fc4a885e1 +size 105035 diff --git a/output/859.pintora.png b/output/859.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..885dac039850969a2c869616046849333840114c --- /dev/null +++ b/output/859.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceb15af154013c22e0105f3de0bee8165bfefedcd2f343e1d021b7f8c8713b9 +size 84635 diff --git a/output/86.pintora.png b/output/86.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3b5c925d47a9a3839c65932f2ed9b51e94546032 --- /dev/null +++ b/output/86.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053b2c11206e991e09037b35a689e555f4793e0e5e6c727a24d9da1747cd9b74 +size 41490 diff --git a/output/860.pintora.png b/output/860.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..557b3b62c16e1ad41d6faf7e07595b755837d78e --- /dev/null +++ b/output/860.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413ab05d0b3ba147f0c80168caf23b1507f94dcdbcf654a781a74b173523d239 +size 41829 diff --git a/output/861.pintora.png b/output/861.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe1a4e5357a92bed6a7229a864518a09ac702f3 --- /dev/null +++ b/output/861.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7088a0bd4dce6cc60e6162085682b62df72451a126a5d283c78bb1a173a6496 +size 242035 diff --git a/output/862.pintora.png b/output/862.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..570d8e6a99a351def53780644196951c0bf6823d --- /dev/null +++ b/output/862.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dd2aecc735dbe6c6e3f627827043cfdec39f37dcffc4b7378ba91a18886bb3 +size 166535 diff --git a/output/863.pintora.png b/output/863.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..44e33cbce32941afe4b10afd9c164a24abebd987 --- /dev/null +++ b/output/863.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0c8714075cc61e63d9438f0beb1d10f5fb6a0fdd339736873bd105389442dd +size 167938 diff --git a/output/864.pintora.png b/output/864.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7eafe807aad80052fc66e730b4f2c29ab7bc752c --- /dev/null +++ b/output/864.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f612b792c2b05213b763fd96c7bc692d6c9a203007a081b87aa2fcdd81c67cc3 +size 79882 diff --git a/output/865.pintora.png b/output/865.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..873c3fb26c46b063391d9e7cf67a569b94844c68 --- /dev/null +++ b/output/865.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a9b66f9f176f722266d0c149dd24c71ae6daababb46172324d5828a45ce56c +size 109038 diff --git a/output/866.pintora.png b/output/866.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e0f7b77f897c1a5342e0cc2a122424953ab9a081 --- /dev/null +++ b/output/866.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764fb12456b5cdd7a92c3e7f565d441e28eccc6539f5757514552288e80cb3bf +size 39437 diff --git a/output/867.pintora.png b/output/867.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0d0e4d723d7d1e7290e4233d8ff244dd0b3bed7b --- /dev/null +++ b/output/867.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceec9dfd29bedf3e0729deebe74ea9db85ff32dce1af9200ededc3ff657ac223 +size 127703 diff --git a/output/87.pintora.png b/output/87.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5d95f0ce3ec92b91efbad11937d43472d01a67e9 --- /dev/null +++ b/output/87.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983258965ab07c71d2280254ca5b0aa4859c4145b2db6831c61f2c27aa67b01b +size 30236 diff --git a/output/870.pintora.png b/output/870.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d75088b56a439bc4aa8de4c9e6711f2a26acafe7 --- /dev/null +++ b/output/870.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296c76c3266beef38fa6b4d1795eb0c4a7d9683ad89fe974fa934664e3f6964b +size 183673 diff --git a/output/872.pintora.png b/output/872.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..fba65cdd0f88a563a00d25e17491fcd7b483fa22 --- /dev/null +++ b/output/872.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f922bc80f9e3ada8904e5cd70670b9c174200002915b9a403bce64b59c154bc9 +size 255385 diff --git a/output/873.pintora.png b/output/873.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9eebc02509b48552304f094884b7f466b155cd53 --- /dev/null +++ b/output/873.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6681c2b58389a25142512dab91419723d56d746df4ccc8591ec28a4fe8b5db +size 82925 diff --git a/output/877.pintora.png b/output/877.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..63e82b4eec2438a2eb54183609b52e1ee4005db8 --- /dev/null +++ b/output/877.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10250232cb8b5a29fbb96e3a72ab8fe1555cc9352bd6883768dc301bb9c88bb +size 51330 diff --git a/output/88.pintora.png b/output/88.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3aa909629aaaff95535a4fd2bfeeb5586552184f --- /dev/null +++ b/output/88.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56faaa8f2b5a83579e3fa3960243cdcb3d3076e9226a92c15ff831ba81d8d537 +size 39833 diff --git a/output/882.pintora.png b/output/882.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..34eed1af3813dc5119737227389849070b9b82e1 --- /dev/null +++ b/output/882.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0812ffc76c4d6be0d9a8c401cd8c65d362df3b22e2ef46e8ea91a1a4c2f01f +size 174289 diff --git a/output/884.pintora.png b/output/884.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..524af7d2335b1eea9462e9fcea8dca0407d1b431 --- /dev/null +++ b/output/884.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71dc4e82010ca2ede45f49edf3fd74871f12c7f871ec4b82338a48c31c396d92 +size 74993 diff --git a/output/887.pintora.png b/output/887.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3a391b2a57e6c884d378ff0c56a32708158afb1a --- /dev/null +++ b/output/887.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9873cfe66bdf472e42c71eeb8aa5c0d4f53ba2033d78ed351e665d2f1f1d90bc +size 130019 diff --git a/output/889.pintora.png b/output/889.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..999447644232242c0608232b71a4b5bb4c4f8aa1 --- /dev/null +++ b/output/889.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b3e66119f4f3747d49d6229260c7153be96ba0525c893acb153123d0dd6e1a +size 37159 diff --git a/output/89.pintora.png b/output/89.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe23ab828f745d6c9f0fa5a8c9f7abd9646ccc3 --- /dev/null +++ b/output/89.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec503668e48c0c016ae288ca119230e54c41f3504adae7201349479f3d13456 +size 22071 diff --git a/output/890.pintora.png b/output/890.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f46ac9ab9fff1358ac022b0ded5d187ce20a9403 --- /dev/null +++ b/output/890.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734c572e4fcdd6051ff020c09346022106cd24e9579aca442eed94808e3d9360 +size 102992 diff --git a/output/891.pintora.png b/output/891.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..58107b7782eb6392df5b2c3b3a5d95e862fe539b --- /dev/null +++ b/output/891.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b3f0c0b6c74c2a2fc1a5e39e6c1c959bf3eaa278905a2281808fbcbe7ab2e1 +size 135441 diff --git a/output/892.pintora.png b/output/892.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0c1630feb1efb6bc7e2dd6e5bf0c326b6d297908 --- /dev/null +++ b/output/892.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09032a14cc50e139a865c4a9c2dc9991b3d40cc23d6ddc6e04b575dc64f829f4 +size 106093 diff --git a/output/895.pintora.png b/output/895.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e683fc98091b9621fdbe23b575feec2371c111fd --- /dev/null +++ b/output/895.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bf072c1c07685b9d35e3b5f2012ee95d605c08506b5822c262d498cf8c9e45 +size 33138 diff --git a/output/898.pintora.png b/output/898.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0eee253f4dd0791d300eda6ed6f57018ccda4e8f --- /dev/null +++ b/output/898.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6384d670efada6182b30293ff1791445aeb0a3b42352e27c667a466933c675 +size 69046 diff --git a/output/9.pintora.png b/output/9.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..22b8387564a80e4d8d1377f420b947ede297f900 --- /dev/null +++ b/output/9.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af8e683e62760049418b21bf929694bba74dbd11a3b07277ce904f3f86f0d23 +size 43354 diff --git a/output/90.pintora.png b/output/90.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..eadfd773bc03c9b9aaedfc9a12d3d6814934fd3c --- /dev/null +++ b/output/90.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5bd8c6f3b61686d11e1fd1838b9e60e73173e8def36c774e976e8b31db3690 +size 39518 diff --git a/output/902.pintora.png b/output/902.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..50b50108e7744636175d3d09e113963b2c61bfe9 --- /dev/null +++ b/output/902.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af77ca3bfeb2e2b958f60baf5e20201b722a9efb23eebffbca800224e60330ce +size 22823 diff --git a/output/904.pintora.png b/output/904.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4867be3de3216c13941b1d13134f35487b4b6e83 --- /dev/null +++ b/output/904.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be4714b04d756d2cce16e41bd572eb6f08457067b43e7c0db810b67c77493cf +size 206513 diff --git a/output/906.pintora.png b/output/906.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0bf409ce36c6e728541f2124f20019d2cea8e5c7 --- /dev/null +++ b/output/906.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb1e943b3bac3e7d0616cdaafa17b76689c997467c5e94bf033d99daecbbbf5 +size 109357 diff --git a/output/907.pintora.png b/output/907.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bd65a690885364dbd510b625d098fd492da4e895 --- /dev/null +++ b/output/907.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51937ce22f60d640e38288c6e546051ac9496606c68876d2250cb08704abac2b +size 109891 diff --git a/output/908.pintora.png b/output/908.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..76bbbce46167596084e115bdbcc726d373b0627f --- /dev/null +++ b/output/908.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd8626514301805462151390721cf72b0fac609d1d031871458d217a85015e9 +size 118897 diff --git a/output/909.pintora.png b/output/909.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b56b14f1e7f2591dbcb17fbcc8bcef84ab225910 --- /dev/null +++ b/output/909.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11a7edd10c4a39199371caf5397c3dd1392dc4f0a84441469f20c39833589b1 +size 75705 diff --git a/output/91.pintora.png b/output/91.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9f7aed59f00d2a0b15441172cfb86f792db40caa --- /dev/null +++ b/output/91.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380d0d43ee3f510cadb661630a5a2de604deee43ff2f8484bbcfb9e20ccc9ab2 +size 50948 diff --git a/output/910.pintora.png b/output/910.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..b2eee1bfd892a6e6a2fc1c6656feeb958f6c453d --- /dev/null +++ b/output/910.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b20ad6c9b3096f10668099c26bbb5f3cd4afd3f141c74b64ba9eb819c9ecad8 +size 89681 diff --git a/output/911.pintora.png b/output/911.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d21e2d54fce8b99dc0e34358ad6af9fe53d51e1e --- /dev/null +++ b/output/911.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeffafbbe4690d4723a3a3deb79b4fe39390da0490b96c4b758149dcf9a12647 +size 46231 diff --git a/output/914.pintora.png b/output/914.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e987899ebab899a30945a9c072099a01a786d517 --- /dev/null +++ b/output/914.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:110b21ce4dca21c41e41cffa1ed2a02feb41c39c1ced7b18da47dd2b419a41ef +size 46746 diff --git a/output/915.pintora.png b/output/915.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..359735ffe36a5ce1214417fa317d415f83cdc345 --- /dev/null +++ b/output/915.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859c447f902c4c32685187345ab409472132e32d7ddd3ff04918b94e2bbe215d +size 97793 diff --git a/output/916.pintora.png b/output/916.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ba47dfab646ad1d702512b26f0381d87fc3988c5 --- /dev/null +++ b/output/916.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ec1900b23d1ee43f5cc7f3dad79de4652faf425151473a9a42635a25d19397 +size 86256 diff --git a/output/917.pintora.png b/output/917.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ee0f4c0570ab0a4891f49e6c9a54c75a7c4556f2 --- /dev/null +++ b/output/917.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5eebacd1bcdc3697bd3cbf121a641f768229ed41f25b10a07ea4d2af590f070 +size 86929 diff --git a/output/918.pintora.png b/output/918.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..32a79660fee82309f594385a59c26d23dfbc1bc1 --- /dev/null +++ b/output/918.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28921a5f4eeadf35f6e73e4c5a670d79f78ae5b271eb49dc1f2ceb55a923cfdc +size 40828 diff --git a/output/919.pintora.png b/output/919.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..23cd3a76c16e0480557f60835f30cbc2ecababe7 --- /dev/null +++ b/output/919.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42d9f93b2296203110ea5e95d392e047d4931fa64de957e698e1c6306b11bf6 +size 30794 diff --git a/output/92.pintora.png b/output/92.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e3fb82f51ef81891949a3949884c8013753bc340 --- /dev/null +++ b/output/92.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab675a19ad4956519356b3f11ddd36ce1a1d4b743c3664d5051e161b025da0da +size 32086 diff --git a/output/920.pintora.png b/output/920.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e43d1f1cf2b95f6aaea5fb086848967725af67c8 --- /dev/null +++ b/output/920.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656292da5de103a06b4fb50bde24c53527d6bdaafe568f62e9179d636a30f30e +size 90056 diff --git a/output/921.pintora.png b/output/921.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..63a8c74412cd0b4fb5545a4f32180e810ae6aacf --- /dev/null +++ b/output/921.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf9e4ad4c092bc92559f0658d832f629495984b00c0023e6a77d9f058641ad4 +size 30434 diff --git a/output/922.pintora.png b/output/922.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a35e01cacf91186f6394a2af4d7dfb6477347bc2 --- /dev/null +++ b/output/922.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906aca913c698e66ed4c0f42c46f0dee51050b275ebd82b792807057d3f9da45 +size 77214 diff --git a/output/923.pintora.png b/output/923.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c43709d8d0d900bb2268171b81a7590b62d35a35 --- /dev/null +++ b/output/923.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b562b905de9acff04e31348c208f53728acd03a0f6d627792e0134fa7dcd9d +size 41784 diff --git a/output/924.pintora.png b/output/924.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4c1e11711d7c8ec0b7cd0b0864b9e0a319ed2a --- /dev/null +++ b/output/924.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495bf4101e7a793442e6fcff06795d983b67f6d928884689f633cb5ae728c173 +size 81074 diff --git a/output/925.pintora.png b/output/925.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3aac60c686b29f034bbf1f55bee83d17099a9051 --- /dev/null +++ b/output/925.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0206f50be0d4f30c92b1e1d42f04800a010ada2ca754f22541f6111cae8a84ed +size 110141 diff --git a/output/926.pintora.png b/output/926.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..029c92e8e1f943cc68defae116c1e73aa52217a6 --- /dev/null +++ b/output/926.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aec96a157a27d7dc28a5d6e61ab839016d607002bc1f54d091d5f27881fb1e5 +size 70940 diff --git a/output/927.pintora.png b/output/927.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..22cec3ae1a1aabe0276aa81f87651bec290c15f4 --- /dev/null +++ b/output/927.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7818eae42ddfd6c7f05a64be5f8f76aba3091881ae2ac408452c28e8ebd664 +size 56662 diff --git a/output/928.pintora.png b/output/928.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8579b1d3444d65cea2f36336bbb6c6371d0a0d --- /dev/null +++ b/output/928.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290db28649fcce4e77f0ecf0e8cc610708a30123ee0605124a7ad825625c0079 +size 57778 diff --git a/output/929.pintora.png b/output/929.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1bbfb2ee7f53e4f870d1f1480325ddf314455b08 --- /dev/null +++ b/output/929.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45de070d97547a73c3c5113d501bfc6d81820ed1584665827aabb85d80395f5 +size 72364 diff --git a/output/93.pintora.png b/output/93.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..07e2fefc34f1ea9128f10f50e017adc576ff1007 --- /dev/null +++ b/output/93.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93ecfaf56356573bf96e9f2f9ea2c3f798f4dc26f92212bd59cef560dfe43e8 +size 18971 diff --git a/output/930.pintora.png b/output/930.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..3f1bee6bf0309101f521d8325948bd07c197fc39 --- /dev/null +++ b/output/930.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8028d039dd295e71eac544117a76b001b897e19fd7c91a933b3586c040b71ef0 +size 49531 diff --git a/output/931.pintora.png b/output/931.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..358ba410d06a9a9dffc885b8c7e37d8f317bdc0f --- /dev/null +++ b/output/931.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c3d786d8a1b780917fbed29f0cd3109ecc28a10619fef3b10d0b4e997482c3 +size 81022 diff --git a/output/932.pintora.png b/output/932.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..ee4a1c58430fc7e3156bf2986ce2c5c6705ae40e --- /dev/null +++ b/output/932.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b45769cb7bcfb072136f80a851b719bbe8e49f28a3ba6563e3abfa4830dcdf7 +size 89334 diff --git a/output/933.pintora.png b/output/933.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1edb62e59e71525df33ab1b0afbe71560ff0c387 --- /dev/null +++ b/output/933.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a00c94773df1b018f9dce55a12ea7836851ef6955ea343a15b431d263d9ffd2 +size 65291 diff --git a/output/934.pintora.png b/output/934.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7ace1d46224d983074c96b15e61c97fd4c55406f --- /dev/null +++ b/output/934.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c4e429e0ff03339b10eaf60743c6b94bae0d34479587b855a170f8e665a5e3 +size 33779 diff --git a/output/935.pintora.png b/output/935.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..869cccfaaa5d8c81e830a4c7337e8a00aac9d93f --- /dev/null +++ b/output/935.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84925805abace4a2a12c2c11171839847139a7b6bc78a3a288723ae730a0b65e +size 36607 diff --git a/output/936.pintora.png b/output/936.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7d4070b9254d645c535e45daf8f8eb760b7e8008 --- /dev/null +++ b/output/936.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc5113517c2d511d3b7328e942e2dc467861a06b1551081c0959410c88d586c +size 65087 diff --git a/output/937.pintora.png b/output/937.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4442767bd41e5f230de9b52907c16dbf48b12120 --- /dev/null +++ b/output/937.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecc201683bfba0c9a6f92f1272c2de32fe100df2bbe75f7eefd3c8e166fc0a6 +size 57295 diff --git a/output/938.pintora.png b/output/938.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..037e834a1e36a756a72289ad2ee4c683186bf073 --- /dev/null +++ b/output/938.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a657692c9244ed413756559fedd33acd077154af524403e7da249e34bce40efe +size 54266 diff --git a/output/939.pintora.png b/output/939.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..038ceaa40ac79cdb9d30bd9804cc06b64d93796d --- /dev/null +++ b/output/939.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fea26a2f6fed3f5a561094cea73793520097255a1f456cdba183cc199e0e69 +size 40699 diff --git a/output/94.pintora.png b/output/94.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8c7727d5283b5729c114eae6c9f56e5baf8a4c0b --- /dev/null +++ b/output/94.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ae1c58fc3a868d83f94cc7b244c60f416f94fbebdc265e28fe192c29298f7e +size 29126 diff --git a/output/940.pintora.png b/output/940.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..8080be239f397d8d51f42b5471278948096df353 --- /dev/null +++ b/output/940.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffda1cc5db038907175cffa274794026998df70d3cc8d5b618cb4019ad5a1871 +size 21925 diff --git a/output/941.pintora.png b/output/941.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d47cbd769530e2c63a022609d6b3c8d1b8b5ace3 --- /dev/null +++ b/output/941.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1c052db6057d661cf381df2926cb93642c65ca3fab83e147d5fbf3f06978d1 +size 33628 diff --git a/output/942.pintora.png b/output/942.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e91811b643c2eb3e34d41916aa58c0f78b9421f8 --- /dev/null +++ b/output/942.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28fd352655c51f659b0eded4520b0ff2c938d8eba6434ffac5318f6976184d0 +size 34583 diff --git a/output/943.pintora.png b/output/943.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..5ecf01ccf18eb0e8ffafa6aa32afb48c45ea0a7d --- /dev/null +++ b/output/943.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d8ef538c70271c9a0375146cbf9f6c07951fb20e2527105ad52be0b95e10f7 +size 10145 diff --git a/output/944.pintora.png b/output/944.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f851aadb7caf0768b5088156afe30351bd2fcf55 --- /dev/null +++ b/output/944.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016f83eb86a05c6c4f9cc5ec4a6463720186f7326f4c0edbee512c84a77eb45c +size 14487 diff --git a/output/945.pintora.png b/output/945.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..04b792ac0237a3442d3b8fc9e38297f00ec86517 --- /dev/null +++ b/output/945.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb75384b3e572439f38c40c619dff585e74a5e96dc5ed2577c4d68460ae259a +size 27039 diff --git a/output/946.pintora.png b/output/946.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..12ff63e3da766fb27841730835d3cb721d9af0fd --- /dev/null +++ b/output/946.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc79040bcc3ec282fb94a7fb44c90acfd81a4fedc5e33bf0d9974913dd2d57e +size 57159 diff --git a/output/947.pintora.png b/output/947.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..64a7d283e40218b146782dfc730afb3d989e8079 --- /dev/null +++ b/output/947.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a4fc6d9bfb28910541881ca2ece052f825243bd0da2db6016d820ddc95e8ec +size 12949 diff --git a/output/948.pintora.png b/output/948.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..287fed471350958f4d7dc4912e49d1435a403e2e --- /dev/null +++ b/output/948.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91cec2059a23d7a7b62a15f018b84eb723d702e7caadf3450207fe31ff77f996 +size 55521 diff --git a/output/949.pintora.png b/output/949.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c19b542f6ad88776bab6b1512d10f6dcb9ffd24b --- /dev/null +++ b/output/949.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b320d2b2dadc5d3474fc93f25e38773fb467eab78ccb504fb80a6d52d28bc1 +size 48601 diff --git a/output/95.pintora.png b/output/95.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..1339fdfaa2becad85ba44149e6b1a6bcc5913047 --- /dev/null +++ b/output/95.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360298eb7fa016d9667ed4c8c9391218180e6f815f10f12ae0fa5783ecb52c7c +size 35128 diff --git a/output/950.pintora.png b/output/950.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..664c9535074ad899fb0ee6ff2c029b9bdfae6e4b --- /dev/null +++ b/output/950.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08790ac9f7b61b002f30ebf4b13416036260d2813767d681ac7d9fb94f87eb07 +size 58969 diff --git a/output/951.pintora.png b/output/951.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..786b26a5654a726a747106bf8b7e6c50e6456339 --- /dev/null +++ b/output/951.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86981f76a04dad65554e928f4b05ee6194d5fcecb6308243477db47b29ad70bf +size 98402 diff --git a/output/952.pintora.png b/output/952.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..bd41c52877a13ce19c3a2d501869bcd376d8008c --- /dev/null +++ b/output/952.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5e737e1a8ee23ed219938c46225000be1e9cf910ed5d5953d9516bfce76110 +size 35686 diff --git a/output/953.pintora.png b/output/953.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7b6b43ec207b4f5a4d21a4f2ee48c4e888abb3a9 --- /dev/null +++ b/output/953.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09220d74edf2cc578e00f57607ae59225e33e66c60650cbdc1e6bd264ef3c16c +size 27354 diff --git a/output/954.pintora.png b/output/954.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..838e8c4b0212b47cb9a17ef43ceced932bc81a2d --- /dev/null +++ b/output/954.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20311f5dcc696deba410b2721019b564f6203c1a8fe9648de076dfa5034e12cc +size 16283 diff --git a/output/955.pintora.png b/output/955.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d04e118651a725fe0de61c4035a3f7cde6f78d4a --- /dev/null +++ b/output/955.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab17d7e9bb3ecf5970544be121aada9328f6cdada58a128f08861ec6f2e4596d +size 15516 diff --git a/output/957.pintora.png b/output/957.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0531bc41610e4327d9fd6f8f2f141477e78e0a45 --- /dev/null +++ b/output/957.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c245a27c1c772485841975b88b1e7b494bfee5444fd970af18451915a7a69820 +size 104403 diff --git a/output/958.pintora.png b/output/958.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a9696ec0ce0627ea49dcee326e164c3110c0a7ac --- /dev/null +++ b/output/958.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350c39a66ae634782fccab023535e72954fcc20f39623ec2b574ed4166baaf2c +size 102217 diff --git a/output/959.pintora.png b/output/959.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..a8be140771c6427d3b239325c24ec84ac0c92c28 --- /dev/null +++ b/output/959.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682a4bb9a77ea49f95f84ba205517a92d2ea28a3bbf489efd4dd25e67e56d97a +size 126342 diff --git a/output/96.pintora.png b/output/96.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..15767a14ee843eb4fefbc103754a39d8e437c0b8 --- /dev/null +++ b/output/96.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d69ce62414e005ff1459a8221337d4ab7af7e8ab5508999ab1157c1e67c961 +size 27424 diff --git a/output/960.pintora.png b/output/960.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e23311308dd5a1ad024e06e8d750fcca9067ae2a --- /dev/null +++ b/output/960.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facd4bfec6c11e4997db2c5bda0aa37d73657df96d9a297054eb8ad9336dd04d +size 93899 diff --git a/output/961.pintora.png b/output/961.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..54e6b41781b0c37337efe208ea8397f548001e17 --- /dev/null +++ b/output/961.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43cdeb2250d588a6b010745ef3ad705e40349a8e1ebe19c1c06d1c6e998cd01 +size 97534 diff --git a/output/964.pintora.png b/output/964.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c44aa729f6288b8986c748eb7f237b1a89c61f6c --- /dev/null +++ b/output/964.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77aba342d6aa01de0cb3df0f37479ee7ce99dd940b6469ba3c45ed4338860ba1 +size 131882 diff --git a/output/965.pintora.png b/output/965.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1d335309611f83ea04f1915cf27ad8b62169f4 --- /dev/null +++ b/output/965.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571006de2f2930e32baebaa6e532fc535e461964279b2e20f13634dc83b3df3a +size 111594 diff --git a/output/966.pintora.png b/output/966.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..354c06d49b95e476bf1da184c6aa2a13549bf66f --- /dev/null +++ b/output/966.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3447e6dd30ba7ea3f824edb484d8e6b4817f75d47d2d760a407cec952bf79f1 +size 98997 diff --git a/output/967.pintora.png b/output/967.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2236973fe49b25b13a131ce3a996744316ce0a62 --- /dev/null +++ b/output/967.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b485f015a0544ea60b3612067de61afc164c8ad627e1fb40ed5f61937e11c22c +size 109336 diff --git a/output/968.pintora.png b/output/968.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..9c622b906af2d815b34dc2daa54a5cc6d5b3e1b5 --- /dev/null +++ b/output/968.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae251c3105f23de562ad952aefcc7ace80766e1ebe81fec194df0af1dbb74b4e +size 73698 diff --git a/output/97.pintora.png b/output/97.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d629299e7bcae5f6fbf6fab54f95c4ea563f9f9e --- /dev/null +++ b/output/97.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7ccd96c8b758fcf5fef4fb9b578e14e03830380e4f74f526fef9ed68f4faff +size 33964 diff --git a/output/970.pintora.png b/output/970.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..39bf58a1303563c23d7bcfd872362ca5b840e527 --- /dev/null +++ b/output/970.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02471168a41a7156371ab769748d0afa88505c0a64a2fc14981892e367840aaa +size 33946 diff --git a/output/971.pintora.png b/output/971.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..02dfb6d805c2e6c2f144dc1059dca82568f0d777 --- /dev/null +++ b/output/971.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc04bd4f5eca6e5a3e497cbc216217b4fc2600562d89b870627a9d12ad0423e +size 30927 diff --git a/output/972.pintora.png b/output/972.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..644825e85be2318d1479112b1e774f55ffce1410 --- /dev/null +++ b/output/972.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd93564cafa47e36b394a7790a5f18ff5e80531b4748ab0a242c0d36f33a825 +size 104514 diff --git a/output/973.pintora.png b/output/973.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e5910c5faaefdf37941b2956fca7b2df6222e4 --- /dev/null +++ b/output/973.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d673580da2f073baed40c154db2208774a6a215dd710843face39060ebcd5f +size 120951 diff --git a/output/975.pintora.png b/output/975.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef74826ac3866096adefff2ad17d781d899a4d7 --- /dev/null +++ b/output/975.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2752a32b2229bdb1c2ac3078e2b8716ab8e4e1a5d84d52ce85ca9f5d373dfaf6 +size 161982 diff --git a/output/976.pintora.png b/output/976.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1b88293a2edb58d0d86c13e7d6764d484666a --- /dev/null +++ b/output/976.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24a60dec87bd19ea857f6f4f9da1d217e04a0ebe2dbbb92c20df0390031228d +size 99934 diff --git a/output/977.pintora.png b/output/977.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..47715c24bb555712899d433cb7444bae01ef437a --- /dev/null +++ b/output/977.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43898b18b3c7205e6798c59ec3572722d81e1e30cbf7b653f7ce525664a0f416 +size 144059 diff --git a/output/978.pintora.png b/output/978.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0d362f77d3c5cd4a0933a3c1ee13040435e29e90 --- /dev/null +++ b/output/978.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8787727982a84c4acc06e17ceb9e39ac74c6422d05992a2bb576ec091f952437 +size 42004 diff --git a/output/979.pintora.png b/output/979.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..63eab611f8754caef812c12abcd34abef1c76105 --- /dev/null +++ b/output/979.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c67d90637c986746b14bab5cc7f9f404f3f6fcd94c1872de7b9a8c71b517110 +size 113112 diff --git a/output/98.pintora.png b/output/98.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..7d025325a1201ebab971b5aa04109400329f470f --- /dev/null +++ b/output/98.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839001f3becdf482f96bf0a540f783e2c500725a4b55f17fb74d403cced78f3c +size 79272 diff --git a/output/980.pintora.png b/output/980.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e8b631fe099b86bb7159a5cec2888402a3d645 --- /dev/null +++ b/output/980.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54dde4bab44a5e22da426833795d77b5763b23504e1cc6a5f1ff85ce721ed719 +size 43515 diff --git a/output/981.pintora.png b/output/981.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..205ab682fe99441e6adffde45688d07b71652e43 --- /dev/null +++ b/output/981.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3323eb5d9bdfd386aa46a97e40c85707314850ba20ba4648a1af4cefda6da7 +size 55707 diff --git a/output/982.pintora.png b/output/982.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2a9df8f2b91da02299eb35b39cca3df998af0783 --- /dev/null +++ b/output/982.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450b8632f907c349af6a360ff25933ac185d9c4fedb49f884a1e010f778e8213 +size 95564 diff --git a/output/983.pintora.png b/output/983.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..abe5814848e13261ad1f68dd26e97bcfc8017d6d --- /dev/null +++ b/output/983.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f781bf27c8ae7185dcc57dd4226e9f969e30182e1f36ddb42413c06bac47ad6 +size 93299 diff --git a/output/984.pintora.png b/output/984.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..80aeb7f9abbfd3b04ffe3e0694939a4b1b1e9955 --- /dev/null +++ b/output/984.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e8c23c807c3b0fbab4080d36d7fa01f9e0021ff97ddc4c34b325c28a1a12d6 +size 102039 diff --git a/output/985.pintora.png b/output/985.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c696fcefefddd85ce8f6a1dee4effb81067c0255 --- /dev/null +++ b/output/985.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70592b1b7db3a15213659c7385e63afd88abcb07e6b02e7a09bf36eea95d040 +size 56533 diff --git a/output/986.pintora.png b/output/986.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..979468a69d0dd622e499bfa666f36479e55a12cf --- /dev/null +++ b/output/986.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1351e23f3b42d1b338d78068b926d268700677f5624d4946aecc4ddb92406219 +size 32581 diff --git a/output/987.pintora.png b/output/987.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..496ce66e06990bc7c1e05412b167ef07fd6668e0 --- /dev/null +++ b/output/987.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd88f71af77267a1491b6ed19f196b2f7729128d91c743a619662e828677ff9 +size 75583 diff --git a/output/988.pintora.png b/output/988.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c26728df84df67c8f78f80259385af98ccd7735c --- /dev/null +++ b/output/988.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83d4e7d36c67cd569968567ed46316a8e2790079bf465ba7696d78bc8fcf7f3 +size 102480 diff --git a/output/99.pintora.png b/output/99.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..6b6020a2aa4c418f6b8f9965ce20b0a31f275634 --- /dev/null +++ b/output/99.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9e452c807f56c7ce08efd1dd691acd368d08d2d08ba84dd669284a93146353 +size 30458 diff --git a/output/990.pintora.png b/output/990.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2ae9934c55d6a799d43e26fb07c3a20dcb7be4e0 --- /dev/null +++ b/output/990.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f8b1b1aca681b4d61146e5d1c601d1ba9de8bc782fe5b90c3c408de8dd1968 +size 108453 diff --git a/output/991.pintora.png b/output/991.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..dca9e808fd43f56c58d180681e8573f43be9cb37 --- /dev/null +++ b/output/991.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abc584fa0906409c625af9e0de5a994757c996c5d5027f5ba612d8800be63ac +size 79280 diff --git a/output/992.pintora.png b/output/992.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb3b74b63c7a9d697ab642671706b79d41312ef --- /dev/null +++ b/output/992.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239cf39d2e1cb1c68d1ce4df02d7387bd3a99a0848fd74f1dd0c12e32affcdac +size 63495 diff --git a/output/993.pintora.png b/output/993.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..c828e62d16a8fd99a587c464a0fb9884bcce5a18 --- /dev/null +++ b/output/993.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8aa5a016a78f5e354a1171f65a1dee104ac45cf279a2225ad3c591c3e6af1f +size 104701 diff --git a/output/994.pintora.png b/output/994.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..4f564795f8801e9916efd3d09df498cc7c18397c --- /dev/null +++ b/output/994.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b969adeb683017ee4796d60324ed7b04a266c802224890d529860496b013cbac +size 41940 diff --git a/output/995.pintora.png b/output/995.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..cedceec96e2e3e8858f2c13b027444635b6773e9 --- /dev/null +++ b/output/995.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b201a74f83dec3ce9f64bf9f3aff3b01c8bc9e79fc5d3158cd620edc11d2a58 +size 66418 diff --git a/output/997.pintora.png b/output/997.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..e935c7aede16dfee6cda573b5d11da66335ebbf9 --- /dev/null +++ b/output/997.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5af07e5a879cfd58ea4577025b734f63057e7e267b9f7e8f37fc23fc44ce9c2 +size 132978 diff --git a/output/998.pintora.png b/output/998.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..50ce244bfda40c92bf27b138abd8877a519adcde --- /dev/null +++ b/output/998.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2516ee37d8a175e6998aee04738b205b9dea89d28d237665fa20cecb25ab08f9 +size 90927 diff --git a/output/999.pintora.png b/output/999.pintora.png new file mode 100644 index 0000000000000000000000000000000000000000..0d179c77fd5f875562677694d56795ec5ec33c95 --- /dev/null +++ b/output/999.pintora.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e29d802bec1dccbd006f08903eee3c7d463c7841807835d119422b5cf2406d +size 81414