react-animated-text-writer 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,180 @@
1
+ # react-animated-text-writer ✍️
2
+
3
+ A highly customizable React component that renders text with a **typing animation**, complete with optional **blinking cursor**, **prefix/suffix injection**, and an optional **code-editor style wrapper** featuring line numbers and syntax highlighting.
4
+
5
+ Perfect for landing pages, developer portfolios, documentation demos, and code walkthroughs.
6
+
7
+ ---
8
+
9
+ ## Features
10
+
11
+ - Typing animation with configurable speed
12
+ - Start delay support
13
+ - Blinking cursor (inline or end-only)
14
+ - Prefix & suffix injection (HTML supported)
15
+ - Replaceable prefix during typing
16
+ - Code editor–style wrapper
17
+ - Syntax highlighting (CSS-based)
18
+ - Line numbers
19
+ - Code prefix & suffix support
20
+ - "Click more / view full content" interaction
21
+ - Fully styleable via className, inline styles, and props
22
+
23
+ ---
24
+
25
+ ## Installation
26
+
27
+ ```bash
28
+ npm install react-animated-text-writer
29
+ ```
30
+
31
+ or
32
+
33
+ ```bash
34
+ yarn add react-animated-text-writer
35
+ ```
36
+
37
+
38
+ ## Basic Usage
39
+
40
+ ```tsx
41
+ import AnimatedTextWriter from "react-animated-text-writer";
42
+
43
+ <AnimatedTextWriter
44
+ delay={50}
45
+ startDelay={1000}
46
+ content={`(PHP, Laravel, Next.js, React, NestJS, Vue.js, Node.js, Spring Boot ...)`}
47
+ prefix={`<li>Full-stack application development<br /><div style="margin: 0 0 .5em; font-size: 0.7em">`}
48
+ suffix={`</div></li>`}
49
+ displayCursorEnd={false}
50
+ cursorColor="#666"
51
+ />;
52
+ ```
53
+
54
+ ---
55
+
56
+ ## Code Editor Style Example
57
+
58
+ ```tsx
59
+ <AnimatedTextWriter
60
+ delay={50}
61
+ content={`<span class="keyword">import </span>
62
+ <span class="bracket">{</span>
63
+ <span class="variable"> useEffect, useRef, useState </span>
64
+ <span class="bracket">} </span>
65
+ <span class="keyword">from </span>
66
+ <span class="quotation">"react"</span><span class="function">;</span><br /><br />
67
+
68
+ <span class="keyword">import </span>
69
+ <span class="quotation">"./AnimatedTextWriter.css"</span><span class="function">;</span><br /><br />
70
+
71
+ <span class="reserve">const </span>
72
+ <span class="function">getIncrement = </span>
73
+ <span class="bracket">(</span>
74
+ <span class="variable">content: <span class="comment">string</span>, index: <span class="comment">number</span>, fistCall=<span class="literal">true</span></span>
75
+ <span class="bracket">) </span>
76
+ <span class="reserve">=> </span>
77
+ <span class="bracket">{</span><br />
78
+ &nbsp;&nbsp;<span class="keyword">return </span>
79
+ <span class="variable">theMaxIncrementPossible</span><span class="function">;</span><br />
80
+ <span class="bracket">}</span>`}
81
+ prefix="<h1 class='animated-text-title-header'>Next.js</h1>"
82
+ codePrefix={`<code class='react'><span class="comment">// This website is built using Next.js</span><br /><br />`}
83
+ codeSuffix={`</code>`}
84
+ displayCodeWrapper
85
+ displayCodeLineNumber
86
+ />
87
+ ```
88
+
89
+ ---
90
+
91
+ ## Props
92
+
93
+ ```ts
94
+ interface AnimatedTextWriterProps {
95
+ content?: string;
96
+ prefix?: string;
97
+ suffix?: string;
98
+ replacablePrefix?: string;
99
+
100
+ codePrefix?: string;
101
+ codeSuffix?: string;
102
+
103
+ delay?: number;
104
+ startDelay?: number;
105
+
106
+ displayCursor?: boolean;
107
+ displayCursorEnd?: boolean;
108
+
109
+ displayCodeWrapper?: boolean;
110
+ displayCodeLineNumber?: boolean;
111
+ displayCodeLineNumberMax?: number;
112
+
113
+ className?: string;
114
+
115
+ cursorColor?: string;
116
+ cursorLineHeight?: string;
117
+
118
+ codeWrapperClasses?: string;
119
+ codeWrapperStyle?: string | React.CSSProperties;
120
+ codeWrapperWhiteSpace?: "auto" | "nowrap";
121
+
122
+ displayClickMoreButtonAndPause?: boolean;
123
+ displayFullContentOnClickMoreButton?: boolean;
124
+
125
+ clickMoreHeaderText?: string;
126
+ clickMoreHeaderClassString?: string;
127
+ viewMoreButtonText?: string;
128
+ viewLessButtonText?: string;
129
+
130
+ showContentAuto?: boolean;
131
+ sx?: React.CSSProperties;
132
+ }
133
+ ```
134
+
135
+ ---
136
+
137
+ ## Styling & Syntax Highlighting
138
+
139
+ This component **does not enforce any syntax highlighting library**.
140
+ You’re free to style code using your own CSS classes:
141
+
142
+ ```css
143
+ .keyword { color: #c792ea; }
144
+ .variable { color: #82aaff; }
145
+ .comment { color: #7f848e; }
146
+ .bracket { color: #89ddff; }
147
+ .quotation { color: #ecc48d; }
148
+ ```
149
+
150
+ This gives you full control over themes and editor appearance.
151
+
152
+ ---
153
+
154
+ ## Tips
155
+
156
+ * `content`, `prefix`, and `suffix` accept **HTML strings**
157
+ * Use `replacablePrefix` to dynamically swap placeholder text
158
+ * Combine `displayClickMoreButtonAndPause` with long content for better UX
159
+ * For code animation, set `displayCodeWrapper={true}`
160
+
161
+ ---
162
+
163
+ ## License
164
+
165
+ MIT © Your Name
166
+
167
+ ---
168
+
169
+ ## Contributing
170
+
171
+ Pull requests are welcome!
172
+ If you have ideas for enhancements or performance improvements, feel free to open an issue.
173
+
174
+ ---
175
+
176
+ ## If you like it…
177
+
178
+ Drop a ⭐ on the repo and use it to make your UI feel alive!
179
+
180
+ ```
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+ import "./AnimatedTextWriter.css";
3
+ interface AnimatedTextWriterProps {
4
+ content?: string;
5
+ prefix?: string;
6
+ suffix?: string;
7
+ replacablePrefix?: string;
8
+ codePrefix?: string;
9
+ codeSuffix?: string;
10
+ delay?: number;
11
+ startDelay?: number;
12
+ displayCursor?: boolean;
13
+ displayCursorEnd?: boolean;
14
+ displayCodeWrapper?: boolean;
15
+ displayCodeLineNumber?: boolean;
16
+ displayCodeLineNumberMax?: number;
17
+ className?: string;
18
+ cursorColor?: string;
19
+ cursorLineHeight?: string;
20
+ codeWrapperClasses?: string;
21
+ codeWrapperStyle?: string | React.CSSProperties;
22
+ codeWrapperWhiteSpace?: "auto" | "nowrap";
23
+ displayClickMoreButtonAndPause?: boolean;
24
+ displayFullContentOnClickMoreButton?: boolean;
25
+ clickMoreHeaderText?: string;
26
+ clickMoreHeaderClassString?: string;
27
+ viewMoreButtonText?: string;
28
+ viewLessButtonText?: string;
29
+ showContentAuto?: boolean;
30
+ sx?: React.CSSProperties;
31
+ }
32
+ declare const AnimatedTextWriter: ({ content, prefix, suffix, replacablePrefix, codePrefix, codeSuffix, delay, startDelay, displayCursor, displayCursorEnd, displayCodeWrapper, displayCodeLineNumber, displayCodeLineNumberMax, className, cursorColor, cursorLineHeight, codeWrapperClasses, codeWrapperStyle, codeWrapperWhiteSpace, displayClickMoreButtonAndPause, displayFullContentOnClickMoreButton, clickMoreHeaderText, clickMoreHeaderClassString, viewMoreButtonText, viewLessButtonText, showContentAuto, sx }: AnimatedTextWriterProps) => import("react/jsx-runtime").JSX.Element;
33
+ export default AnimatedTextWriter;
@@ -0,0 +1,39 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React from 'react';
3
+ import styleInject from 'D:/Code/public-repo/react-animated-text-writer/node_modules/style-inject/dist/style-inject.es.js';
4
+
5
+ var css_248z = "\r\nh1.animated-text-title-header {\r\n text-align: center;\r\n}\r\n\r\n.animated-text-writer-blinking-cursor {\r\n /* line-height: 1rem; */\r\n margin-left: 2px;\r\n animation: pulse-blinking-cursor 1s ease-in-out infinite;\r\n}\r\n\r\n@keyframes pulse-blinking-cursor {\r\n 0% { opacity: 1; }\r\n 50% { opacity: 0; }\r\n 100% { opacity: 1; }\r\n}\r\n\r\n.animated-text-writer-code-container {\r\n font-size: 18px;\r\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;\r\n overflow: auto;\r\n padding: 10px 15px 20px;\r\n line-height: 20px !important;\r\n /* position: relative; */\r\n /* margin: -5px -7px; */\r\n}\r\n\r\n.animated-text-writer-code-container .copy-button {\r\n float: right;\r\n}\r\n\r\n.animated-text-writer-code-container.nowrap {\r\n white-space: pre;\r\n}\r\n\r\n.animated-text-writer-code-container:not(.hide-line-number)::before {\r\n color: #999;\r\n font-size: 15px;\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\";\r\n float: left;\r\n position: sticky;\r\n left: -18px;\r\n /* top: 0px; */\r\n margin-left: -18px;\r\n margin-right: 5px;\r\n margin-top: 1px;\r\n padding-right: 4px;\r\n white-space: pre;\r\n width: 30px;\r\n text-align: right;\r\n overflow-y: hidden;\r\n border-right: 1px solid;\r\n /* line-height: 20.5px!important; */\r\n}\r\n\r\n.animated-text-writer-code-container code {\r\n font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;\r\n color: #000;\r\n overflow-y: auto;\r\n}\r\n\r\n.animated-text-writer-code-container code.dark {\r\n color: #FFF;\r\n}\r\n\r\n.animated-text-writer-code-container code .reserve, .animated-text-writer-code-container code .meta {\r\n color: #00C;\r\n}\r\n\r\n.animated-text-writer-code-container code.dark .reserve, .animated-text-writer-code-container code.dark .meta {\r\n color: #4040f1;\r\n}\r\n\r\n.animated-text-writer-code-container code .keyword {\r\n color: #c03adb;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable {\r\n color: #3BC1FF;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable2, .animated-text-writer-code-container code .class {\r\n color: #2eada3;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable3, .animated-text-writer-code-container code .class_ {\r\n color: #248b83;\r\n}\r\n\r\n.animated-text-writer-code-container code .function {\r\n color: #DCDC9D;\r\n}\r\n\r\n.animated-text-writer-code-container code .built_in {\r\n color: #c9c972;\r\n}\r\n\r\n.animated-text-writer-code-container code .comment {\r\n color: #FF8000;\r\n color: #3C3;\r\n}\r\n\r\n.animated-text-writer-code-container code .comment2 {\r\n color: #090;\r\n}\r\n\r\n.animated-text-writer-code-container code .namespace, .animated-text-writer-code-container code .literal {\r\n color: #2666CB;\r\n}\r\n\r\n.animated-text-writer-code-container code .quotation, .animated-text-writer-code-container code .string {\r\n color: #CE836A;\r\n}\r\n\r\n.animated-text-writer-code-container code .number {\r\n color: #94CE9B;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket {\r\n color: #F19F1C;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket2 {\r\n color: #DA5583;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket3, .animated-text-writer-code-container code .property {\r\n color: #5583DA;\r\n}\r\n\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .include {\r\n color: #0000B7;\r\n background: #00A5AC;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .comment {\r\n color: #009EB3;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .keyword {\r\n color: #FFF;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .function {\r\n color: #FFFF6D;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .quotation {\r\n color: #B50000;\r\n}\r\n\r\n.animated-text-writer-code-container code.java .quotation {\r\n color: #B50000;\r\n}\r\n\r\n.animated-text-writer-code-container code.flutter .reserve {\r\n color: #09F;\r\n}\r\n\r\n.animated-text-writer-code-container code.sql .keyword {\r\n color: #f92672;\r\n}\r\n\r\n.animated-text-writer-code-container code.php .keyword {\r\n color: #f92672;\r\n}\r\n\r\n@media only screen and (max-width: 1200px) {\r\n h1.animated-text-title-header {\r\n font-size: 20px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 16px;\r\n line-height: 18px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 13px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 1000px) {\r\n h1.animated-text-title-header {\r\n font-size: 18px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 14px;\r\n line-height: 16px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 11px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 800px) {\r\n h1.animated-text-title-header {\r\n font-size: 16px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 12px;\r\n padding: 10px 15px 20px;\r\n line-height: 14px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 9px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 600px) {\r\n h1.animated-text-title-header {\r\n font-size: 14px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 10px;\r\n padding: 10px 15px 20px;\r\n line-height: 12px !important;\r\n }\r\n}\r\n\r\n.displayMoreButton .buttonText.showMore {\r\n animation: show-more-loader 0.6s infinite alternate;\r\n}\r\n\r\n.displayMoreButton .buttonText.showLess {\r\n opacity: 0.4;\r\n}\r\n\r\n.bouncingDotAnimation {\r\n display: inline flex;\r\n margin-top: 8px;\r\n margin-left: 10px;\r\n justify-content: center;\r\n}\r\n\r\n.bouncingDotAnimation > div {\r\n width: 4px;\r\n height: 4px;\r\n margin: 3px 2px;\r\n border-radius: 50%;\r\n background-color: var(--accent-color);\r\n opacity: 1;\r\n animation: bouncing-dot-loader 0.6s infinite alternate;\r\n}\r\n\r\n@keyframes bouncing-dot-loader {\r\n to {\r\n opacity: 0.1;\r\n transform: translateY(-4px);\r\n }\r\n}\r\n\r\n@keyframes show-more-loader {\r\n to {\r\n opacity: 0.4;\r\n }\r\n}\r\n\r\n@keyframes showly-appear {\r\n from { opacity: 0; max-height: 0; }\r\n to { opacity: 1; max-height: 100vh; }\r\n}\r\n\r\n@keyframes showly-disappear {\r\n from { opacity: 1; height: var(--client-height); }\r\n to { opacity: 0; height: 0px; }\r\n}\r\n\r\n.bouncingDotAnimation > div:nth-child(2) {\r\n animation-delay: 0.2s;\r\n}\r\n\r\n.bouncingDotAnimation > div:nth-child(3) {\r\n animation-delay: 0.4s;\r\n}\r\n\r\n\r\n.animated-text-writer-code-container.n1:not(.hide-line-number)::before {\r\n content: \"1\";\r\n}\r\n\r\n.animated-text-writer-code-container.n2:not(.hide-line-number)::before {\r\n content: \"1\\A 2\";\r\n}\r\n\r\n.animated-text-writer-code-container.n3:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\";\r\n}\r\n\r\n.animated-text-writer-code-container.n4:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\";\r\n}\r\n\r\n.animated-text-writer-code-container.n5:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\";\r\n}\r\n\r\n.animated-text-writer-code-container.n6:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\";\r\n}\r\n\r\n.animated-text-writer-code-container.n7:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\";\r\n}\r\n\r\n.animated-text-writer-code-container.n8:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\";\r\n}\r\n\r\n.animated-text-writer-code-container.n9:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\";\r\n}\r\n\r\n.animated-text-writer-code-container.n10:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\";\r\n}\r\n\r\n.animated-text-writer-code-container.n11:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\";\r\n}\r\n\r\n.animated-text-writer-code-container.n12:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\";\r\n}\r\n\r\n.animated-text-writer-code-container.n13:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\";\r\n}\r\n\r\n.animated-text-writer-code-container.n14:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\";\r\n}\r\n\r\n.animated-text-writer-code-container.n15:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\";\r\n}\r\n\r\n.animated-text-writer-code-container.n16:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\";\r\n}\r\n\r\n.animated-text-writer-code-container.n17:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\";\r\n}\r\n\r\n.animated-text-writer-code-container.n18:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\";\r\n}\r\n\r\n.animated-text-writer-code-container.n19:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\";\r\n}\r\n\r\n.animated-text-writer-code-container.n20:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\";\r\n}\r\n\r\n.animated-text-writer-code-container.n21:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\";\r\n}\r\n\r\n.animated-text-writer-code-container.n22:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\";\r\n}\r\n\r\n.animated-text-writer-code-container.n23:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\";\r\n}\r\n\r\n.animated-text-writer-code-container.n24:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\";\r\n}\r\n\r\n.animated-text-writer-code-container.n25:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\";\r\n}\r\n\r\n.animated-text-writer-code-container.n26:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\";\r\n}\r\n\r\n.animated-text-writer-code-container.n27:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\";\r\n}\r\n\r\n.animated-text-writer-code-container.n28:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\";\r\n}\r\n\r\n.animated-text-writer-code-container.n29:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\";\r\n}\r\n\r\n.animated-text-writer-code-container.n30:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\";\r\n}\r\n\r\n.animated-text-writer-code-container.n31:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\";\r\n}\r\n\r\n.animated-text-writer-code-container.n32:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\";\r\n}\r\n\r\n.animated-text-writer-code-container.n33:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\";\r\n}\r\n\r\n.animated-text-writer-code-container.n34:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\";\r\n}\r\n\r\n.animated-text-writer-code-container.n35:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\";\r\n}\r\n\r\n.animated-text-writer-code-container.n36:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\";\r\n}\r\n\r\n.animated-text-writer-code-container.n37:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\";\r\n}\r\n\r\n.animated-text-writer-code-container.n38:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\";\r\n}\r\n\r\n.animated-text-writer-code-container.n39:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\";\r\n}\r\n\r\n.animated-text-writer-code-container.n40:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\";\r\n}\r\n\r\n.animated-text-writer-code-container.n41:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\";\r\n}\r\n\r\n.animated-text-writer-code-container.n42:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\";\r\n}\r\n\r\n.animated-text-writer-code-container.n43:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\";\r\n}\r\n\r\n.animated-text-writer-code-container.n44:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\";\r\n}\r\n\r\n.animated-text-writer-code-container.n45:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\";\r\n}\r\n\r\n.animated-text-writer-code-container.n46:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\";\r\n}\r\n\r\n.animated-text-writer-code-container.n47:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\";\r\n}\r\n\r\n.animated-text-writer-code-container.n48:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\";\r\n}\r\n\r\n.animated-text-writer-code-container.n49:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\";\r\n}\r\n\r\n.animated-text-writer-code-container.n50:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\";\r\n}\r\n\r\n.animated-text-writer-code-container.n51:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\";\r\n}\r\n\r\n.animated-text-writer-code-container.n52:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\";\r\n}\r\n\r\n.animated-text-writer-code-container.n53:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\";\r\n}\r\n\r\n.animated-text-writer-code-container.n54:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\";\r\n}\r\n\r\n.animated-text-writer-code-container.n55:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\";\r\n}\r\n\r\n.animated-text-writer-code-container.n56:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\";\r\n}\r\n\r\n.animated-text-writer-code-container.n57:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\";\r\n}\r\n\r\n.animated-text-writer-code-container.n58:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\";\r\n}\r\n\r\n.animated-text-writer-code-container.n59:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\";\r\n}\r\n\r\n.animated-text-writer-code-container.n60:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\";\r\n}\r\n\r\n.animated-text-writer-code-container.n61:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\";\r\n}\r\n\r\n.animated-text-writer-code-container.n62:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\";\r\n}\r\n\r\n.animated-text-writer-code-container.n63:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\";\r\n}\r\n\r\n.animated-text-writer-code-container.n64:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\";\r\n}\r\n\r\n.animated-text-writer-code-container.n65:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\";\r\n}\r\n\r\n.animated-text-writer-code-container.n66:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\";\r\n}\r\n\r\n.animated-text-writer-code-container.n67:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\";\r\n}\r\n\r\n.animated-text-writer-code-container.n68:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\";\r\n}\r\n\r\n.animated-text-writer-code-container.n69:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\";\r\n}\r\n\r\n.animated-text-writer-code-container.n70:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\";\r\n}\r\n\r\n.animated-text-writer-code-container.n71:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\";\r\n}\r\n\r\n.animated-text-writer-code-container.n72:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\";\r\n}\r\n\r\n.animated-text-writer-code-container.n73:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\";\r\n}\r\n\r\n.animated-text-writer-code-container.n74:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\";\r\n}\r\n\r\n.animated-text-writer-code-container.n75:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\";\r\n}\r\n\r\n.animated-text-writer-code-container.n76:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\";\r\n}\r\n\r\n.animated-text-writer-code-container.n77:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\";\r\n}\r\n\r\n.animated-text-writer-code-container.n78:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\";\r\n}\r\n\r\n.animated-text-writer-code-container.n79:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\";\r\n}\r\n\r\n.animated-text-writer-code-container.n80:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\";\r\n}\r\n\r\n.animated-text-writer-code-container.n81:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\";\r\n}\r\n\r\n.animated-text-writer-code-container.n82:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\";\r\n}\r\n\r\n.animated-text-writer-code-container.n83:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\";\r\n}\r\n\r\n.animated-text-writer-code-container.n84:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\";\r\n}\r\n\r\n.animated-text-writer-code-container.n85:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\";\r\n}\r\n\r\n.animated-text-writer-code-container.n86:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\";\r\n}\r\n\r\n.animated-text-writer-code-container.n87:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\";\r\n}\r\n\r\n.animated-text-writer-code-container.n88:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\";\r\n}\r\n\r\n.animated-text-writer-code-container.n89:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\";\r\n}\r\n\r\n.animated-text-writer-code-container.n90:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\";\r\n}\r\n\r\n.animated-text-writer-code-container.n91:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\";\r\n}\r\n\r\n.animated-text-writer-code-container.n92:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\";\r\n}\r\n\r\n.animated-text-writer-code-container.n93:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\";\r\n}\r\n\r\n.animated-text-writer-code-container.n94:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\";\r\n}\r\n\r\n.animated-text-writer-code-container.n95:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\";\r\n}\r\n\r\n.animated-text-writer-code-container.n96:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\";\r\n}\r\n\r\n.animated-text-writer-code-container.n97:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\";\r\n}\r\n\r\n.animated-text-writer-code-container.n98:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98\";\r\n}\r\n\r\n.animated-text-writer-code-container.n99:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98\\A 99\";\r\n}\r\n\r\n.animated-text-writer-code-container.n100:not(.hide-line-number)::before {\r\n content: \"1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98\\A 99\\A 100\";\r\n}\r\n";
6
+ styleInject(css_248z);
7
+
8
+ interface AnimatedTextWriterProps {
9
+ content?: string;
10
+ prefix?: string;
11
+ suffix?: string;
12
+ replacablePrefix?: string;
13
+ codePrefix?: string;
14
+ codeSuffix?: string;
15
+ delay?: number;
16
+ startDelay?: number;
17
+ displayCursor?: boolean;
18
+ displayCursorEnd?: boolean;
19
+ displayCodeWrapper?: boolean;
20
+ displayCodeLineNumber?: boolean;
21
+ displayCodeLineNumberMax?: number;
22
+ className?: string;
23
+ cursorColor?: string;
24
+ cursorLineHeight?: string;
25
+ codeWrapperClasses?: string;
26
+ codeWrapperStyle?: string | React.CSSProperties;
27
+ codeWrapperWhiteSpace?: "auto" | "nowrap";
28
+ displayClickMoreButtonAndPause?: boolean;
29
+ displayFullContentOnClickMoreButton?: boolean;
30
+ clickMoreHeaderText?: string;
31
+ clickMoreHeaderClassString?: string;
32
+ viewMoreButtonText?: string;
33
+ viewLessButtonText?: string;
34
+ showContentAuto?: boolean;
35
+ sx?: React.CSSProperties;
36
+ }
37
+ declare const AnimatedTextWriter: ({ content, prefix, suffix, replacablePrefix, codePrefix, codeSuffix, delay, startDelay, displayCursor, displayCursorEnd, displayCodeWrapper, displayCodeLineNumber, displayCodeLineNumberMax, className, cursorColor, cursorLineHeight, codeWrapperClasses, codeWrapperStyle, codeWrapperWhiteSpace, displayClickMoreButtonAndPause, displayFullContentOnClickMoreButton, clickMoreHeaderText, clickMoreHeaderClassString, viewMoreButtonText, viewLessButtonText, showContentAuto, sx }: AnimatedTextWriterProps) => react_jsx_runtime.JSX.Element;
38
+
39
+ export { AnimatedTextWriter as default };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";var A=require("react/jsx-runtime"),n=require("react");!function(A,n){void 0===n&&(n={});var e=n.insertAt;if("undefined"!=typeof document){var r=document.head||document.getElementsByTagName("head")[0],t=document.createElement("style");t.type="text/css","top"===e&&r.firstChild?r.insertBefore(t,r.firstChild):r.appendChild(t),t.styleSheet?t.styleSheet.cssText=A:t.appendChild(document.createTextNode(A))}}('\r\nh1.animated-text-title-header {\r\n text-align: center;\r\n}\r\n\r\n.animated-text-writer-blinking-cursor {\r\n /* line-height: 1rem; */\r\n margin-left: 2px;\r\n animation: pulse-blinking-cursor 1s ease-in-out infinite;\r\n}\r\n\r\n@keyframes pulse-blinking-cursor {\r\n 0% { opacity: 1; }\r\n 50% { opacity: 0; }\r\n 100% { opacity: 1; }\r\n}\r\n\r\n.animated-text-writer-code-container {\r\n font-size: 18px;\r\n font-family: source-code-pro, Menlo, Monaco, Consolas, \'Courier New\', monospace;\r\n overflow: auto;\r\n padding: 10px 15px 20px;\r\n line-height: 20px !important;\r\n /* position: relative; */\r\n /* margin: -5px -7px; */\r\n}\r\n\r\n.animated-text-writer-code-container .copy-button {\r\n float: right;\r\n}\r\n\r\n.animated-text-writer-code-container.nowrap {\r\n white-space: pre;\r\n}\r\n\r\n.animated-text-writer-code-container:not(.hide-line-number)::before {\r\n color: #999;\r\n font-size: 15px;\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10";\r\n float: left;\r\n position: sticky;\r\n left: -18px;\r\n /* top: 0px; */\r\n margin-left: -18px;\r\n margin-right: 5px;\r\n margin-top: 1px;\r\n padding-right: 4px;\r\n white-space: pre;\r\n width: 30px;\r\n text-align: right;\r\n overflow-y: hidden;\r\n border-right: 1px solid;\r\n /* line-height: 20.5px!important; */\r\n}\r\n\r\n.animated-text-writer-code-container code {\r\n font-family: source-code-pro, Menlo, Monaco, Consolas, \'Courier New\', monospace;\r\n color: #000;\r\n overflow-y: auto;\r\n}\r\n\r\n.animated-text-writer-code-container code.dark {\r\n color: #FFF;\r\n}\r\n\r\n.animated-text-writer-code-container code .reserve, .animated-text-writer-code-container code .meta {\r\n color: #00C;\r\n}\r\n\r\n.animated-text-writer-code-container code.dark .reserve, .animated-text-writer-code-container code.dark .meta {\r\n color: #4040f1;\r\n}\r\n\r\n.animated-text-writer-code-container code .keyword {\r\n color: #c03adb;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable {\r\n color: #3BC1FF;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable2, .animated-text-writer-code-container code .class {\r\n color: #2eada3;\r\n}\r\n\r\n.animated-text-writer-code-container code .variable3, .animated-text-writer-code-container code .class_ {\r\n color: #248b83;\r\n}\r\n\r\n.animated-text-writer-code-container code .function {\r\n color: #DCDC9D;\r\n}\r\n\r\n.animated-text-writer-code-container code .built_in {\r\n color: #c9c972;\r\n}\r\n\r\n.animated-text-writer-code-container code .comment {\r\n color: #FF8000;\r\n color: #3C3;\r\n}\r\n\r\n.animated-text-writer-code-container code .comment2 {\r\n color: #090;\r\n}\r\n\r\n.animated-text-writer-code-container code .namespace, .animated-text-writer-code-container code .literal {\r\n color: #2666CB;\r\n}\r\n\r\n.animated-text-writer-code-container code .quotation, .animated-text-writer-code-container code .string {\r\n color: #CE836A;\r\n}\r\n\r\n.animated-text-writer-code-container code .number {\r\n color: #94CE9B;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket {\r\n color: #F19F1C;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket2 {\r\n color: #DA5583;\r\n}\r\n\r\n.animated-text-writer-code-container code .bracket3, .animated-text-writer-code-container code .property {\r\n color: #5583DA;\r\n}\r\n\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .include {\r\n color: #0000B7;\r\n background: #00A5AC;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .comment {\r\n color: #009EB3;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .keyword {\r\n color: #FFF;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .function {\r\n color: #FFFF6D;\r\n}\r\n\r\n.animated-text-writer-code-container code.c-and-c-plus-plus .quotation {\r\n color: #B50000;\r\n}\r\n\r\n.animated-text-writer-code-container code.java .quotation {\r\n color: #B50000;\r\n}\r\n\r\n.animated-text-writer-code-container code.flutter .reserve {\r\n color: #09F;\r\n}\r\n\r\n.animated-text-writer-code-container code.sql .keyword {\r\n color: #f92672;\r\n}\r\n\r\n.animated-text-writer-code-container code.php .keyword {\r\n color: #f92672;\r\n}\r\n\r\n@media only screen and (max-width: 1200px) {\r\n h1.animated-text-title-header {\r\n font-size: 20px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 16px;\r\n line-height: 18px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 13px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 1000px) {\r\n h1.animated-text-title-header {\r\n font-size: 18px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 14px;\r\n line-height: 16px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 11px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 800px) {\r\n h1.animated-text-title-header {\r\n font-size: 16px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 12px;\r\n padding: 10px 15px 20px;\r\n line-height: 14px !important;\r\n }\r\n\r\n .animated-text-writer-code-container:not(.hide-line-number)::before {\r\n font-size: 9px;\r\n }\r\n}\r\n\r\n@media only screen and (max-width: 600px) {\r\n h1.animated-text-title-header {\r\n font-size: 14px;\r\n }\r\n\r\n .animated-text-writer-code-container {\r\n font-size: 10px;\r\n padding: 10px 15px 20px;\r\n line-height: 12px !important;\r\n }\r\n}\r\n\r\n.displayMoreButton .buttonText.showMore {\r\n animation: show-more-loader 0.6s infinite alternate;\r\n}\r\n\r\n.displayMoreButton .buttonText.showLess {\r\n opacity: 0.4;\r\n}\r\n\r\n.bouncingDotAnimation {\r\n display: inline flex;\r\n margin-top: 8px;\r\n margin-left: 10px;\r\n justify-content: center;\r\n}\r\n\r\n.bouncingDotAnimation > div {\r\n width: 4px;\r\n height: 4px;\r\n margin: 3px 2px;\r\n border-radius: 50%;\r\n background-color: var(--accent-color);\r\n opacity: 1;\r\n animation: bouncing-dot-loader 0.6s infinite alternate;\r\n}\r\n\r\n@keyframes bouncing-dot-loader {\r\n to {\r\n opacity: 0.1;\r\n transform: translateY(-4px);\r\n }\r\n}\r\n\r\n@keyframes show-more-loader {\r\n to {\r\n opacity: 0.4;\r\n }\r\n}\r\n\r\n@keyframes showly-appear {\r\n from { opacity: 0; max-height: 0; }\r\n to { opacity: 1; max-height: 100vh; }\r\n}\r\n\r\n@keyframes showly-disappear {\r\n from { opacity: 1; height: var(--client-height); }\r\n to { opacity: 0; height: 0px; }\r\n}\r\n\r\n.bouncingDotAnimation > div:nth-child(2) {\r\n animation-delay: 0.2s;\r\n}\r\n\r\n.bouncingDotAnimation > div:nth-child(3) {\r\n animation-delay: 0.4s;\r\n}\r\n\r\n\r\n.animated-text-writer-code-container.n1:not(.hide-line-number)::before {\r\n content: "1";\r\n}\r\n\r\n.animated-text-writer-code-container.n2:not(.hide-line-number)::before {\r\n content: "1\\A 2";\r\n}\r\n\r\n.animated-text-writer-code-container.n3:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3";\r\n}\r\n\r\n.animated-text-writer-code-container.n4:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4";\r\n}\r\n\r\n.animated-text-writer-code-container.n5:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5";\r\n}\r\n\r\n.animated-text-writer-code-container.n6:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6";\r\n}\r\n\r\n.animated-text-writer-code-container.n7:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7";\r\n}\r\n\r\n.animated-text-writer-code-container.n8:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8";\r\n}\r\n\r\n.animated-text-writer-code-container.n9:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9";\r\n}\r\n\r\n.animated-text-writer-code-container.n10:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10";\r\n}\r\n\r\n.animated-text-writer-code-container.n11:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11";\r\n}\r\n\r\n.animated-text-writer-code-container.n12:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12";\r\n}\r\n\r\n.animated-text-writer-code-container.n13:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13";\r\n}\r\n\r\n.animated-text-writer-code-container.n14:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14";\r\n}\r\n\r\n.animated-text-writer-code-container.n15:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15";\r\n}\r\n\r\n.animated-text-writer-code-container.n16:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16";\r\n}\r\n\r\n.animated-text-writer-code-container.n17:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17";\r\n}\r\n\r\n.animated-text-writer-code-container.n18:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18";\r\n}\r\n\r\n.animated-text-writer-code-container.n19:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19";\r\n}\r\n\r\n.animated-text-writer-code-container.n20:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20";\r\n}\r\n\r\n.animated-text-writer-code-container.n21:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21";\r\n}\r\n\r\n.animated-text-writer-code-container.n22:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22";\r\n}\r\n\r\n.animated-text-writer-code-container.n23:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23";\r\n}\r\n\r\n.animated-text-writer-code-container.n24:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24";\r\n}\r\n\r\n.animated-text-writer-code-container.n25:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25";\r\n}\r\n\r\n.animated-text-writer-code-container.n26:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26";\r\n}\r\n\r\n.animated-text-writer-code-container.n27:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27";\r\n}\r\n\r\n.animated-text-writer-code-container.n28:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28";\r\n}\r\n\r\n.animated-text-writer-code-container.n29:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29";\r\n}\r\n\r\n.animated-text-writer-code-container.n30:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30";\r\n}\r\n\r\n.animated-text-writer-code-container.n31:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31";\r\n}\r\n\r\n.animated-text-writer-code-container.n32:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32";\r\n}\r\n\r\n.animated-text-writer-code-container.n33:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33";\r\n}\r\n\r\n.animated-text-writer-code-container.n34:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34";\r\n}\r\n\r\n.animated-text-writer-code-container.n35:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35";\r\n}\r\n\r\n.animated-text-writer-code-container.n36:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36";\r\n}\r\n\r\n.animated-text-writer-code-container.n37:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37";\r\n}\r\n\r\n.animated-text-writer-code-container.n38:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38";\r\n}\r\n\r\n.animated-text-writer-code-container.n39:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39";\r\n}\r\n\r\n.animated-text-writer-code-container.n40:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40";\r\n}\r\n\r\n.animated-text-writer-code-container.n41:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41";\r\n}\r\n\r\n.animated-text-writer-code-container.n42:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42";\r\n}\r\n\r\n.animated-text-writer-code-container.n43:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43";\r\n}\r\n\r\n.animated-text-writer-code-container.n44:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44";\r\n}\r\n\r\n.animated-text-writer-code-container.n45:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45";\r\n}\r\n\r\n.animated-text-writer-code-container.n46:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46";\r\n}\r\n\r\n.animated-text-writer-code-container.n47:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47";\r\n}\r\n\r\n.animated-text-writer-code-container.n48:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48";\r\n}\r\n\r\n.animated-text-writer-code-container.n49:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49";\r\n}\r\n\r\n.animated-text-writer-code-container.n50:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50";\r\n}\r\n\r\n.animated-text-writer-code-container.n51:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51";\r\n}\r\n\r\n.animated-text-writer-code-container.n52:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52";\r\n}\r\n\r\n.animated-text-writer-code-container.n53:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53";\r\n}\r\n\r\n.animated-text-writer-code-container.n54:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54";\r\n}\r\n\r\n.animated-text-writer-code-container.n55:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55";\r\n}\r\n\r\n.animated-text-writer-code-container.n56:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56";\r\n}\r\n\r\n.animated-text-writer-code-container.n57:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57";\r\n}\r\n\r\n.animated-text-writer-code-container.n58:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58";\r\n}\r\n\r\n.animated-text-writer-code-container.n59:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59";\r\n}\r\n\r\n.animated-text-writer-code-container.n60:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60";\r\n}\r\n\r\n.animated-text-writer-code-container.n61:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61";\r\n}\r\n\r\n.animated-text-writer-code-container.n62:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62";\r\n}\r\n\r\n.animated-text-writer-code-container.n63:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63";\r\n}\r\n\r\n.animated-text-writer-code-container.n64:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64";\r\n}\r\n\r\n.animated-text-writer-code-container.n65:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65";\r\n}\r\n\r\n.animated-text-writer-code-container.n66:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66";\r\n}\r\n\r\n.animated-text-writer-code-container.n67:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67";\r\n}\r\n\r\n.animated-text-writer-code-container.n68:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68";\r\n}\r\n\r\n.animated-text-writer-code-container.n69:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69";\r\n}\r\n\r\n.animated-text-writer-code-container.n70:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70";\r\n}\r\n\r\n.animated-text-writer-code-container.n71:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71";\r\n}\r\n\r\n.animated-text-writer-code-container.n72:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72";\r\n}\r\n\r\n.animated-text-writer-code-container.n73:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73";\r\n}\r\n\r\n.animated-text-writer-code-container.n74:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74";\r\n}\r\n\r\n.animated-text-writer-code-container.n75:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75";\r\n}\r\n\r\n.animated-text-writer-code-container.n76:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76";\r\n}\r\n\r\n.animated-text-writer-code-container.n77:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77";\r\n}\r\n\r\n.animated-text-writer-code-container.n78:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78";\r\n}\r\n\r\n.animated-text-writer-code-container.n79:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79";\r\n}\r\n\r\n.animated-text-writer-code-container.n80:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80";\r\n}\r\n\r\n.animated-text-writer-code-container.n81:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81";\r\n}\r\n\r\n.animated-text-writer-code-container.n82:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82";\r\n}\r\n\r\n.animated-text-writer-code-container.n83:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83";\r\n}\r\n\r\n.animated-text-writer-code-container.n84:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84";\r\n}\r\n\r\n.animated-text-writer-code-container.n85:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85";\r\n}\r\n\r\n.animated-text-writer-code-container.n86:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86";\r\n}\r\n\r\n.animated-text-writer-code-container.n87:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87";\r\n}\r\n\r\n.animated-text-writer-code-container.n88:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88";\r\n}\r\n\r\n.animated-text-writer-code-container.n89:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89";\r\n}\r\n\r\n.animated-text-writer-code-container.n90:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90";\r\n}\r\n\r\n.animated-text-writer-code-container.n91:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91";\r\n}\r\n\r\n.animated-text-writer-code-container.n92:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92";\r\n}\r\n\r\n.animated-text-writer-code-container.n93:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93";\r\n}\r\n\r\n.animated-text-writer-code-container.n94:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94";\r\n}\r\n\r\n.animated-text-writer-code-container.n95:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95";\r\n}\r\n\r\n.animated-text-writer-code-container.n96:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96";\r\n}\r\n\r\n.animated-text-writer-code-container.n97:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97";\r\n}\r\n\r\n.animated-text-writer-code-container.n98:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98";\r\n}\r\n\r\n.animated-text-writer-code-container.n99:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98\\A 99";\r\n}\r\n\r\n.animated-text-writer-code-container.n100:not(.hide-line-number)::before {\r\n content: "1\\A 2\\A 3\\A 4\\A 5\\A 6\\A 7\\A 8\\A 9\\A 10\\A 11\\A 12\\A 13\\A 14\\A 15\\A 16\\A 17\\A 18\\A 19\\A 20\\A 21\\A 22\\A 23\\A 24\\A 25\\A 26\\A 27\\A 28\\A 29\\A 30\\A 31\\A 32\\A 33\\A 34\\A 35\\A 36\\A 37\\A 38\\A 39\\A 40\\A 41\\A 42\\A 43\\A 44\\A 45\\A 46\\A 47\\A 48\\A 49\\A 50\\A 51\\A 52\\A 53\\A 54\\A 55\\A 56\\A 57\\A 58\\A 59\\A 60\\A 61\\A 62\\A 63\\A 64\\A 65\\A 66\\A 67\\A 68\\A 69\\A 70\\A 71\\A 72\\A 73\\A 74\\A 75\\A 76\\A 77\\A 78\\A 79\\A 80\\A 81\\A 82\\A 83\\A 84\\A 85\\A 86\\A 87\\A 88\\A 89\\A 90\\A 91\\A 92\\A 93\\A 94\\A 95\\A 96\\A 97\\A 98\\A 99\\A 100";\r\n}\r\n');var e=[" ","<","&"],r=["",">",";"],t=function(A,n,o){void 0===o&&(o=!0);var i=1,a=0,c=A.substring(n,n+1),d=e.indexOf(c);if(-1!==d){if(0===r[d].length)i=2,a=1,!1===o&&(i=1,a=0);else{var m=A.indexOf(r[d],n);-1!==m&&(i=m-n+1)}var l=A.substring(n+i-a,n+i-a+1);e.includes(l)&&(i+=t(A,n+i-a,!1))}return i};module.exports=function(e){var r,o=e.content,i=void 0===o?"This is a Sample Text":o,a=e.prefix,c=void 0===a?"":a,d=e.suffix,m=void 0===d?"":d,l=e.replacablePrefix,b=void 0===l?"":l,x=e.codePrefix,u=void 0===x?"":x,s=e.codeSuffix,h=void 0===s?"":s,w=e.delay,f=void 0===w?250:w,p=e.startDelay,v=void 0===p?1e3:p,y=e.displayCursor,g=void 0===y||y,C=e.displayCursorEnd,k=void 0===C||C,T=e.displayCodeWrapper,F=void 0===T||T,M=e.displayCodeLineNumber,B=void 0===M||M,S=e.displayCodeLineNumberMax,j=void 0===S?10:S,z=e.className,D=void 0===z?"":z,N=e.cursorColor,L=void 0===N?"#000":N,E=e.cursorLineHeight,q=void 0===E?"1rem":E,H=e.codeWrapperClasses,_=void 0===H?"":H,W=e.codeWrapperStyle,P=void 0===W?"":W,O=e.codeWrapperWhiteSpace,I=void 0===O?"auto":O,R=e.displayClickMoreButtonAndPause,Y=void 0!==R&&R,G=e.displayFullContentOnClickMoreButton,J=void 0!==G&&G,K=e.clickMoreHeaderText,Q=void 0===K?"":K,U=e.clickMoreHeaderClassString,V=void 0===U?"":U,X=e.viewMoreButtonText,Z=void 0===X?"More":X,$=e.viewLessButtonText,AA=void 0===$?"Less":$,nA=e.showContentAuto,eA=void 0!==nA&&nA,rA=e.sx,tA=void 0===rA?{}:rA,oA=n.useState(0),iA=oA[0],aA=oA[1],cA=n.useState(""),dA=cA[0],mA=cA[1],lA=n.useState(!Y),bA=lA[0],xA=lA[1],uA=n.useState(eA),sA=uA[0],hA=uA[1],wA=n.useState(!eA),fA=wA[0],pA=wA[1],vA=n.useState(0),yA=vA[0],gA=vA[1],CA=n.useState(0),kA=CA[0],TA=CA[1],FA=n.useRef(null),MA=F?'<div class="animated-text-writer-code-container '.concat(B?"":"hide-line-number"," ").concat(j?"n"+j:""," ").concat("auto"===I?B?"nowrap":"":"nowrap"===I?"nowrap":""," ").concat(_,'" style="').concat(P,'">'):"",BA=F?"</div>":"",SA='<span class="animated-text-writer-blinking-cursor" style="color: '.concat(L,"; line-height: ").concat(q,'">𝙸</span>');n.useEffect(function(){var A=(new Date).getTime();if(0===yA&&(mA(SA),gA(A)),yA+v>A)bA&&setTimeout(function(){TA(kA+1)},f);else if(mA(c+(0===kA?b:"")+MA+u+(i.length&&iA<i.length?i.substring(0,iA)+(g&&bA?SA:""):"")+h+BA+m),iA<i.length){var n=t(i,iA);setTimeout(function(){aA(iA+n)},f)}else mA(c+MA+u+i+(k?SA:"")+h+BA+m)},[kA,iA,bA,yA,v,c,b,MA,u,i,g,SA,h,BA,m,f,k]);var jA=function(){J?sA?(document.documentElement.style.setProperty("--client-height",FA.current.clientHeight+"px"),pA(!0),r=setTimeout(function(){hA(!1),pA(!1)},1800)):(pA(!1),hA(!0),r&&clearTimeout(r)):xA(!0)};return A.jsxs("div",{className:D,style:tA,children:[bA&&A.jsx("div",{dangerouslySetInnerHTML:{__html:dA}}),!bA&&A.jsxs("h4",{className:V,onClick:jA,style:{cursor:"pointer"},children:[Q,A.jsxs("button",{className:"displayMoreButton buttonButton",onClick:jA,children:[A.jsx("span",{className:"buttonText ".concat(sA?"showLess":"showMore"),children:sA?AA:Z}),A.jsxs("div",{className:"bouncingDotAnimation",children:[" ",A.jsx("div",{}),A.jsx("div",{})," ",A.jsx("div",{})," "]})]})]}),J&&sA&&A.jsx("div",{ref:FA,style:{animation:fA?"showly-disappear 2s ease":"showly-appear 2s ease",overflow:"hidden",marginTop:"-2px"},dangerouslySetInnerHTML:{__html:i}})]})};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../node_modules/style-inject/dist/style-inject.es.js","../src/components/AnimatedTextWriter.tsx"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n","import React from \"react\";\r\n\r\nimport \"./AnimatedTextWriter.css\";\r\n\r\nconst sTags = [' ', '<', '&'];\r\nconst eTags = ['', '>', ';'];\r\n\r\nconst getIncrement = (content: string, index: number, fistCall=true) => {\r\n let increment = 1;\r\n let decrement = 0;\r\n const currentChar = content.substring(index, index+1);\r\n\r\n const tstart = sTags.indexOf(currentChar);\r\n if (tstart !== -1) {\r\n if (eTags[tstart].length === 0) {\r\n increment = 2;\r\n decrement = 1;\r\n if (fistCall === false) {\r\n increment = 1;\r\n decrement = 0;\r\n }\r\n } else {\r\n const tend = content.indexOf(eTags[tstart], index);\r\n if (tend !== -1) {\r\n increment = tend - index + 1;\r\n }\r\n }\r\n\r\n const nextChar = content.substring(index+increment-decrement, index+increment-decrement+1);\r\n\r\n if (sTags.includes(nextChar)) {\r\n increment += getIncrement(content, index+increment-decrement, false);\r\n }\r\n }\r\n\r\n return increment;\r\n};\r\n\r\ninterface AnimatedTextWriterProps {\r\n content?: string;\r\n prefix?: string;\r\n suffix?: string;\r\n replacablePrefix?: string;\r\n codePrefix?: string;\r\n codeSuffix?: string;\r\n delay?: number;\r\n startDelay?: number;\r\n displayCursor?: boolean;\r\n displayCursorEnd?: boolean;\r\n displayCodeWrapper?: boolean;\r\n displayCodeLineNumber?: boolean;\r\n displayCodeLineNumberMax?: number;\r\n className?: string;\r\n cursorColor?: string;\r\n cursorLineHeight?: string;\r\n codeWrapperClasses?: string;\r\n codeWrapperStyle?: string | React.CSSProperties;\r\n codeWrapperWhiteSpace?: \"auto\" | \"nowrap\";\r\n displayClickMoreButtonAndPause?: boolean;\r\n displayFullContentOnClickMoreButton?: boolean;\r\n clickMoreHeaderText?: string;\r\n clickMoreHeaderClassString?: string;\r\n viewMoreButtonText?: string;\r\n viewLessButtonText?: string;\r\n showContentAuto?: boolean;\r\n sx?: React.CSSProperties;\r\n}\r\n\r\nconst AnimatedTextWriter = ({\r\n content = 'This is a Sample Text',\r\n prefix = '',\r\n suffix = '',\r\n replacablePrefix = '',\r\n codePrefix = '',\r\n codeSuffix = '',\r\n delay = 250,\r\n startDelay = 1000,\r\n displayCursor = true,\r\n displayCursorEnd = true,\r\n displayCodeWrapper = true,\r\n displayCodeLineNumber = true,\r\n displayCodeLineNumberMax = 10,\r\n className = '',\r\n cursorColor = '#000',\r\n cursorLineHeight = '1rem',\r\n codeWrapperClasses = '',\r\n codeWrapperStyle = '',\r\n codeWrapperWhiteSpace = 'auto',\r\n displayClickMoreButtonAndPause = false,\r\n displayFullContentOnClickMoreButton = false,\r\n clickMoreHeaderText = '',\r\n clickMoreHeaderClassString = '',\r\n viewMoreButtonText = 'More',\r\n viewLessButtonText = 'Less',\r\n showContentAuto = false,\r\n sx={}\r\n } : AnimatedTextWriterProps) => {\r\n const [currentIndex, setCurrentIndex] = React.useState(0);\r\n const [currentContent, setCurrentContent] = React.useState('');\r\n const [enabled, setEnabled] = React.useState(!displayClickMoreButtonAndPause);\r\n const [showContent, setShowContent] = React.useState(showContentAuto);\r\n const [showContentDisappear, setShowContentDisappear] = React.useState(!showContentAuto);\r\n const [startTime, setStartTime] = React.useState(0);\r\n const [nextIteration, setNextIteration] = React.useState(0);\r\n const elementRef = React.useRef<HTMLDivElement>(null);\r\n let timerControl:NodeJS.Timeout | undefined;\r\n\r\n const codeWrapperPrefix = displayCodeWrapper ? `<div class=\"animated-text-writer-code-container ${displayCodeLineNumber ? '' : 'hide-line-number'} ${displayCodeLineNumberMax ? 'n'+displayCodeLineNumberMax : ''} ${codeWrapperWhiteSpace === 'auto' ? (displayCodeLineNumber ? 'nowrap' : '' ) : (codeWrapperWhiteSpace === 'nowrap' ? 'nowrap' : '')} ${codeWrapperClasses}\" style=\"${codeWrapperStyle}\">` : '';\r\n const codeWrapperSuffix = displayCodeWrapper ? '</div>' : '';\r\n const cursorContent = `<span class=\"animated-text-writer-blinking-cursor\" style=\"color: ${cursorColor}; line-height: ${cursorLineHeight}\">𝙸</span>`;\r\n\r\n\r\n React.useEffect(() => {\r\n const currentMillis = new Date().getTime();\r\n if (startTime === 0) {\r\n setCurrentContent(cursorContent);\r\n setStartTime(currentMillis);\r\n }\r\n\r\n if (startTime + startDelay > currentMillis) {\r\n if (enabled) {\r\n setTimeout(() => {\r\n setNextIteration(nextIteration+1);\r\n }, delay);\r\n }\r\n return;\r\n }\r\n\r\n setCurrentContent(prefix + (nextIteration === 0 ? replacablePrefix : '') + codeWrapperPrefix + codePrefix + (content.length && currentIndex < content.length ? content.substring(0, currentIndex) + (displayCursor && enabled ? cursorContent : '') : '') + codeSuffix + codeWrapperSuffix + suffix);\r\n if (currentIndex < content.length) {\r\n const increment = getIncrement(content, currentIndex);\r\n\r\n setTimeout(() => {\r\n setCurrentIndex(currentIndex + increment);\r\n }, delay);\r\n } else {\r\n setCurrentContent(prefix + codeWrapperPrefix + codePrefix + content + (displayCursorEnd ? cursorContent : '') + codeSuffix + codeWrapperSuffix + suffix);\r\n }\r\n }, [\r\n nextIteration, currentIndex, enabled,\r\n startTime,\r\n startDelay,\r\n prefix,\r\n replacablePrefix,\r\n codeWrapperPrefix,\r\n codePrefix,\r\n content,\r\n displayCursor,\r\n cursorContent,\r\n codeSuffix,\r\n codeWrapperSuffix,\r\n suffix,\r\n delay,\r\n displayCursorEnd\r\n ]\r\n );\r\n\r\n\r\n const clickMoreLessButton = () => {\r\n if (displayFullContentOnClickMoreButton) {\r\n if (!showContent) {\r\n setShowContentDisappear(false);\r\n setShowContent(true);\r\n if (timerControl) {\r\n clearTimeout(timerControl);\r\n }\r\n } else {\r\n document.documentElement.style.setProperty('--client-height', elementRef.current!.clientHeight + 'px');\r\n setShowContentDisappear(true);\r\n timerControl = setTimeout(() => {\r\n setShowContent(false);\r\n setShowContentDisappear(false);\r\n }, 1800);\r\n }\r\n } else {\r\n setEnabled(true);\r\n }\r\n }\r\n\r\n return (\r\n <div className={className} style={sx}>\r\n {enabled && (<div dangerouslySetInnerHTML={{__html: currentContent}} />)}\r\n {!enabled && (\r\n <h4 className={clickMoreHeaderClassString} onClick={clickMoreLessButton} style={{ cursor: 'pointer' }}>\r\n {clickMoreHeaderText}\r\n <button className='displayMoreButton buttonButton'\r\n onClick={clickMoreLessButton}\r\n >\r\n <span className={`buttonText ${showContent ? 'showLess' : 'showMore'}`} >{showContent ? viewLessButtonText : viewMoreButtonText}</span>\r\n <div className=\"bouncingDotAnimation\"> <div></div><div></div> <div></div> </div>\r\n </button>\r\n </h4>\r\n )}\r\n {displayFullContentOnClickMoreButton && showContent && (<div ref={elementRef} style={{ animation: showContentDisappear ? 'showly-disappear 2s ease' : 'showly-appear 2s ease', overflow: 'hidden', marginTop: '-2px' }} dangerouslySetInnerHTML={{__html: content}} />)}\r\n </div>\r\n );\r\n};\r\n\r\nexport default AnimatedTextWriter;"],"names":["css","ref","insertAt","document","head","getElementsByTagName","style","createElement","type","firstChild","insertBefore","appendChild","styleSheet","cssText","createTextNode","sTags","eTags","getIncrement","content","index","fistCall","increment","decrement","currentChar","substring","tstart","indexOf","length","tend","nextChar","includes","_a","timerControl","_b","_c","prefix","_d","suffix","_e","replacablePrefix","_f","codePrefix","_g","codeSuffix","_h","delay","_j","startDelay","_k","displayCursor","_l","displayCursorEnd","_m","displayCodeWrapper","_o","displayCodeLineNumber","_p","displayCodeLineNumberMax","_q","className","_r","cursorColor","_s","cursorLineHeight","_t","codeWrapperClasses","_u","codeWrapperStyle","_v","codeWrapperWhiteSpace","_w","displayClickMoreButtonAndPause","_x","displayFullContentOnClickMoreButton","_y","clickMoreHeaderText","_z","clickMoreHeaderClassString","_0","viewMoreButtonText","_1","viewLessButtonText","_2","showContentAuto","_3","sx","_4","React","useState","currentIndex","setCurrentIndex","_5","currentContent","setCurrentContent","_6","enabled","setEnabled","_7","showContent","setShowContent","_8","showContentDisappear","setShowContentDisappear","_9","startTime","setStartTime","_10","nextIteration","setNextIteration","elementRef","useRef","codeWrapperPrefix","concat","codeWrapperSuffix","cursorContent","useEffect","currentMillis","Date","getTime","setTimeout","increment_1","clickMoreLessButton","documentElement","setProperty","current","clientHeight","clearTimeout","_jsxs","children","_jsx","dangerouslySetInnerHTML","__html","onClick","cursor","animation","overflow","marginTop"],"mappings":"oEAAA,SAAqBA,EAAKC,YACnBA,IAAiBA,EAAM,CAAA,GAC5B,IAAIC,EAAWD,EAAIC,SAEnB,GAAgC,oBAAbC,SAAnB,CAEA,IAAIC,EAAOD,SAASC,MAAQD,SAASE,qBAAqB,QAAQ,GAC9DC,EAAQH,SAASI,cAAc,SACnCD,EAAME,KAAO,WAEI,QAAbN,GACEE,EAAKK,WACPL,EAAKM,aAAaJ,EAAOF,EAAKK,YAKhCL,EAAKO,YAAYL,GAGfA,EAAMM,WACRN,EAAMM,WAAWC,QAAUb,EAE3BM,EAAMK,YAAYR,SAASW,eAAed,GAnBW,CAqBzD,st6CCrBA,IAAMe,EAAQ,CAAC,IAAK,IAAK,KACnBC,EAAQ,CAAC,GAAI,IAAK,KAElBC,EAAe,SAACC,EAAiBC,EAAeC,QAAA,IAAAA,IAAAA,GAAA,GAClD,IAAIC,EAAY,EACZC,EAAY,EACVC,EAAcL,EAAQM,UAAUL,EAAOA,EAAM,GAE7CM,EAASV,EAAMW,QAAQH,GAC7B,IAAe,IAAXE,EAAe,CACf,GAA6B,IAAzBT,EAAMS,GAAQE,OACdN,EAAY,EACZC,EAAY,GACK,IAAbF,IACAC,EAAY,EACZC,EAAY,OAEb,CACH,IAAMM,EAAOV,EAAQQ,QAAQV,EAAMS,GAASN,IAC/B,IAATS,IACAP,EAAYO,EAAOT,EAAQ,EAEnC,CAEA,IAAMU,EAAWX,EAAQM,UAAUL,EAAME,EAAUC,EAAWH,EAAME,EAAUC,EAAU,GAEpFP,EAAMe,SAASD,KACfR,GAAaJ,EAAaC,EAASC,EAAME,EAAUC,GAAW,GAEtE,CAEA,OAAOD,CACX,iBAgC2B,SAACU,GACpB,IAoCAC,EApCAC,EAAAF,EAAAb,QAAAA,WAAOe,EAAG,wBAAuBA,EACjCC,WAAAC,aAAS,GAAED,EACXE,EAAAL,EAAAM,OAAAA,OAAM,IAAAD,EAAG,KACTE,EAAAP,EAAAQ,iBAAAA,OAAgB,IAAAD,EAAG,GAAEA,EACrBE,eAAAC,aAAa,GAAED,EACfE,EAAAX,EAAAY,WAAAA,OAAU,IAAAD,EAAG,KACbE,EAAAb,EAAAc,MAAAA,OAAK,IAAAD,EAAG,IAAGA,EACXE,eAAAC,aAAa,IAAID,EACjBE,EAAAjB,EAAAkB,cAAAA,WAAaD,KACbE,EAAAnB,EAAAoB,iBAAAA,OAAgB,IAAAD,GAAOA,EACvBE,uBAAAC,cAAyBD,EACzBE,EAAAvB,EAAAwB,sBAAAA,WAAqBD,KACrBE,EAAAzB,EAAA0B,yBAAAA,OAAwB,IAAAD,EAAG,GAAEA,EAC7BE,cAAAC,OAAS,IAAAD,EAAG,KACZE,EAAA7B,EAAA8B,YAAAA,WAAWD,EAAG,OAAMA,EACpBE,qBAAAC,aAAmB,OAAMD,EACzBE,EAAAjC,EAAAkC,mBAAAA,OAAkB,IAAAD,EAAG,KACrBE,EAAAnC,EAAAoC,iBAAAA,OAAgB,IAAAD,EAAG,GAAEA,EACrBE,0BAAAC,aAAwB,OAAMD,EAC9BE,EAAAvC,EAAAwC,+BAAAA,OAA8B,IAAAD,KAC9BE,EAAAzC,EAAA0C,oCAAAA,OAAmC,IAAAD,GAAQA,EAC3CE,wBAAAC,aAAsB,GAAED,EACxBE,EAAA7C,EAAA8C,2BAAAA,OAA0B,IAAAD,EAAG,KAC7BE,EAAA/C,EAAAgD,mBAAAA,OAAkB,IAAAD,EAAG,OAAMA,EAC3BE,uBAAAC,cAAqB,OAAMD,EAC3BE,GAAAnD,EAAAoD,gBAAAA,QAAe,IAAAD,OACfE,GAAArD,EAAAsD,GAAAA,QAAE,IAAAD,GAAC,CAAA,EAAEA,GAEHE,GAAkCC,EAAMC,SAAS,GAAhDC,GAAYH,GAAA,GAAEI,SACfC,GAAsCJ,EAAMC,SAAS,IAApDI,GAAcD,GAAA,GAAEE,SACjBC,GAAwBP,EAAMC,UAAUjB,GAAvCwB,GAAOD,GAAA,GAAEE,SACVC,GAAgCV,EAAMC,SAASL,IAA9Ce,GAAWD,GAAA,GAAEE,SACdC,GAAkDb,EAAMC,UAAUL,IAAjEkB,GAAoBD,GAAA,GAAEE,SACvBC,GAA4BhB,EAAMC,SAAS,GAA1CgB,GAASD,GAAA,GAAEE,SACZC,GAAoCnB,EAAMC,SAAS,GAAlDmB,GAAaD,GAAA,GAAEE,SAChBC,GAAatB,EAAMuB,OAAuB,MAG1CC,GAAoB1D,EAAqB,mDAAA2D,OAAmDzD,EAAwB,GAAK,mBAAkB,KAAAyD,OAAIvD,EAA2B,IAAIA,EAA2B,GAAE,KAAAuD,OAA8B,SAA1B3C,EAAoCd,EAAwB,SAAW,GAAkC,WAA1Bc,EAAqC,SAAW,GAAG,KAAA2C,OAAI/C,EAAkB,aAAA+C,OAAY7C,EAAgB,MAAO,GAC1Y8C,GAAoB5D,EAAqB,SAAW,GACpD6D,GAAgB,oEAAAF,OAAoEnD,EAAW,mBAAAmD,OAAkBjD,iBAGvHwB,EAAM4B,UAAU,WACZ,IAAMC,GAAgB,IAAIC,MAAOC,UAMjC,GALkB,IAAdd,KACAX,GAAkBqB,IAClBT,GAAaW,IAGbZ,GAAYzD,EAAaqE,EACrBrB,IACAwB,WAAW,WACPX,GAAiBD,GAAc,EACnC,EAAG9D,QAMX,GADAgD,GAAkB1D,GAA4B,IAAlBwE,GAAsBpE,EAAmB,IAAMwE,GAAoBtE,GAAcvB,EAAQS,QAAU8D,GAAevE,EAAQS,OAAST,EAAQM,UAAU,EAAGiE,KAAiBxC,GAAiB8C,GAAUmB,GAAgB,IAAM,IAAMvE,EAAasE,GAAoB5E,GACzRoD,GAAevE,EAAQS,OAAQ,CAC/B,IAAM6F,EAAYvG,EAAaC,EAASuE,IAExC8B,WAAW,WACP7B,GAAgBD,GAAe+B,EACnC,EAAG3E,EACP,MACIgD,GAAkB1D,EAAS4E,GAAoBtE,EAAavB,GAAWiC,EAAmB+D,GAAgB,IAAMvE,EAAasE,GAAoB5E,EAEzJ,EAAG,CACKsE,GAAelB,GAAcM,GAC7BS,GACAzD,EACAZ,EACAI,EACAwE,GACAtE,EACAvB,EACA+B,EACAiE,GACAvE,EACAsE,GACA5E,EACAQ,EACAM,IAKR,IAAMsE,GAAsB,WACpBhD,EACKyB,IAOD/F,SAASuH,gBAAgBpH,MAAMqH,YAAY,kBAAmBd,GAAWe,QAASC,aAAe,MACjGvB,IAAwB,GACxBtE,EAAeuF,WAAW,WACtBpB,IAAe,GACfG,IAAwB,EAC5B,EAAG,QAXHA,IAAwB,GACxBH,IAAe,GACXnE,GACA8F,aAAa9F,IAWrBgE,IAAW,EAEnB,EAEA,OACI+B,OAAA,MAAA,CAAKpE,UAAWA,EAAWrD,MAAO+E,GAAE2C,SAAA,CAC/BjC,IAAYkC,EAAAA,WAAKC,wBAAyB,CAACC,OAAQvC,OAClDG,IACFgC,EAAAA,KAAA,KAAA,CAAIpE,UAAWkB,EAA4BuD,QAASX,GAAqBnH,MAAO,CAAE+H,OAAQ,WAAWL,SAAA,CAChGrD,EACDoD,EAAAA,KAAA,SAAA,CAAQpE,UAAU,iCACdyE,QAASX,GAAmBO,SAAA,CAE5BC,EAAAA,IAAA,OAAA,CAAMtE,UAAW,cAAAqD,OAAcd,GAAc,WAAa,YAAY8B,SAAI9B,GAAcjB,GAAqBF,IAC7GgD,EAAAA,KAAA,MAAA,CAAKpE,UAAU,qCAAwBsE,EAAAA,IAAA,MAAA,IAAWA,MAAA,MAAA,CAAA,GAAW,IAACA,EAAAA,IAAA,MAAA,IAAW,aAIhFxD,GAAuCyB,IAAgB+B,EAAAA,IAAA,MAAA,CAAKhI,IAAK4G,GAAYvG,MAAO,CAAEgI,UAAWjC,GAAuB,2BAA6B,wBAAyBkC,SAAU,SAAUC,UAAW,QAAUN,wBAAyB,CAACC,OAAQjH,OAGtQ","x_google_ignoreList":[0]}